content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
# Definition for a binary tree node. class TreeNode(object): def __init__(self, x): self.val = x self.left = None self.right = None def __repr__(self): return "{}".format(self.val) class Solution(object): # @param root, a tree node # @return a boolean # Time: N # Space: N def isValidBST(self, root): output = [] self.inOrderTraversal(root, output) for i in range(1, len(output)): if output[i - 1].val >= output[i].val: return False return True def inOrderTraversal(self, root, output): if root is None: return self.inOrderTraversal(root.left, output) output.append(root) self.inOrderTraversal(root.right, output) if __name__ == "__main__": root = TreeNode(4) root.left = TreeNode(2) root.right = TreeNode(5) root.left.left = TreeNode(1) root.left.right = TreeNode(3) print(Solution().isValidBST(root))
class Treenode(object): def __init__(self, x): self.val = x self.left = None self.right = None def __repr__(self): return '{}'.format(self.val) class Solution(object): def is_valid_bst(self, root): output = [] self.inOrderTraversal(root, output) for i in range(1, len(output)): if output[i - 1].val >= output[i].val: return False return True def in_order_traversal(self, root, output): if root is None: return self.inOrderTraversal(root.left, output) output.append(root) self.inOrderTraversal(root.right, output) if __name__ == '__main__': root = tree_node(4) root.left = tree_node(2) root.right = tree_node(5) root.left.left = tree_node(1) root.left.right = tree_node(3) print(solution().isValidBST(root))
#https://www.hackerearth.com/practice/basic-programming/input-output/basics-of-input-output/practice-problems/algorithm/two-strings-4/ entry = int(input()) for i in range(entry): string1, string2 = input().split() for c in string1: if c in string2: string1 = string1.replace(c, '', 1) string2 = string2.replace(c, '', 1) if len(string1) + len(string2) > 1: print('NO') else: print('YES')
entry = int(input()) for i in range(entry): (string1, string2) = input().split() for c in string1: if c in string2: string1 = string1.replace(c, '', 1) string2 = string2.replace(c, '', 1) if len(string1) + len(string2) > 1: print('NO') else: print('YES')
#a1q2c.py #HUGHXIE #input for color and time from light color = input("What color is the light? (G/Y/R) :") speed = float(input("Enter speed of car in m/s: ")) distance = float(input("Enter distance from light in meters: ")) time = (distance / speed) #checks if color is red and time is greater than 2 or color is yellow and time is less than or equal to 5 if (color == "R" and time <= 2) or (color == "Y" and time <= 5) or (color == "G"): #output print("Go") else: #output print("Stop")
color = input('What color is the light? (G/Y/R) :') speed = float(input('Enter speed of car in m/s: ')) distance = float(input('Enter distance from light in meters: ')) time = distance / speed if color == 'R' and time <= 2 or (color == 'Y' and time <= 5) or color == 'G': print('Go') else: print('Stop')
def without_end(str): if len(str) == 2: return '' else: str = str[1:] l = len(str) -1 str = str[:l] return str
def without_end(str): if len(str) == 2: return '' else: str = str[1:] l = len(str) - 1 str = str[:l] return str
inFile = open("/etc/php5/fpm/pool.d/www.conf", "r", encoding = "utf-8") string = inFile.read() string = string.replace("pm.max_children = 5", "pm.max_children = 100") inFile.close() out = open("/etc/php5/fpm/pool.d/www.conf", "w", encoding = "utf-8") out.write(string) out.close()
in_file = open('/etc/php5/fpm/pool.d/www.conf', 'r', encoding='utf-8') string = inFile.read() string = string.replace('pm.max_children = 5', 'pm.max_children = 100') inFile.close() out = open('/etc/php5/fpm/pool.d/www.conf', 'w', encoding='utf-8') out.write(string) out.close()
""" This file contains the implementation of functions that are not represented as a single node in the computational graph, but are treated as a **compound** function. Note ---- These functions should be replaced by a dedicated implementation in * algopy.Function * algopy.UTPM so they are represented by a single node in the CGraph. """
""" This file contains the implementation of functions that are not represented as a single node in the computational graph, but are treated as a **compound** function. Note ---- These functions should be replaced by a dedicated implementation in * algopy.Function * algopy.UTPM so they are represented by a single node in the CGraph. """
class Calculator(): def __init__(self, number_1, number_2): self.number_1 = number_1 self.number_2 = number_2 def add(self): return self.number_1 + self.number_2 def subtract(self): return self.number_1 - self.number_2 def multiply(self): return self.number_1 * self.number_2 def divide(self): return self.number_1 / self.number_2
class Calculator: def __init__(self, number_1, number_2): self.number_1 = number_1 self.number_2 = number_2 def add(self): return self.number_1 + self.number_2 def subtract(self): return self.number_1 - self.number_2 def multiply(self): return self.number_1 * self.number_2 def divide(self): return self.number_1 / self.number_2
# Copyright 2016-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. An additional grant # of patent rights can be found in the PATENTS file in the same directory. """ Functions that handle correcting 'visiblity' arguments """ load("@fbcode_macros//build_defs:visibility_exceptions.bzl", "WHITELIST") def get_visibility_for_base_path(visibility_attr, name_attr, base_path): """ Gets the default visibility for a given base_path. If the base_path is an experimental path and isn't in a whitelist, this ensures that the target is only visible to the experimental directory. Otherwise, this returns either a default visibility if visibility_attr's value is None, or returns the original value. Args: visibility_attr: The value of the rule's 'visibility' attribute, or None name_attr: The name of the rule base_path: The base path to the package that the target resides in. This will eventually be removed, and native.package() will be used instead. Returns: A visibility array """ if (base_path.startswith("experimental/") and (base_path, name_attr) not in WHITELIST): return ["//experimental/..."] if visibility_attr == None: return ["PUBLIC"] else: return visibility_attr def get_visibility(visibility_attr, name_attr): """ Returns either the provided visibility list, or a default visibility if None """ return get_visibility_for_base_path( visibility_attr, name_attr, native.package_name(), )
""" Functions that handle correcting 'visiblity' arguments """ load('@fbcode_macros//build_defs:visibility_exceptions.bzl', 'WHITELIST') def get_visibility_for_base_path(visibility_attr, name_attr, base_path): """ Gets the default visibility for a given base_path. If the base_path is an experimental path and isn't in a whitelist, this ensures that the target is only visible to the experimental directory. Otherwise, this returns either a default visibility if visibility_attr's value is None, or returns the original value. Args: visibility_attr: The value of the rule's 'visibility' attribute, or None name_attr: The name of the rule base_path: The base path to the package that the target resides in. This will eventually be removed, and native.package() will be used instead. Returns: A visibility array """ if base_path.startswith('experimental/') and (base_path, name_attr) not in WHITELIST: return ['//experimental/...'] if visibility_attr == None: return ['PUBLIC'] else: return visibility_attr def get_visibility(visibility_attr, name_attr): """ Returns either the provided visibility list, or a default visibility if None """ return get_visibility_for_base_path(visibility_attr, name_attr, native.package_name())
happy_nums = set() happy_nums.add(1) class Solution: def sqrSum(self, n: int) -> int: res = 0 for c in str(n): res += int(c)**2 return res def isHappy(self, n: int) -> bool: global happy_nums temp = set() while True: sqr = self.sqrSum(n) if sqr in happy_nums: happy_nums = happy_nums.union(temp) return True elif sqr in temp: return False else: temp.add(n) n = sqr
happy_nums = set() happy_nums.add(1) class Solution: def sqr_sum(self, n: int) -> int: res = 0 for c in str(n): res += int(c) ** 2 return res def is_happy(self, n: int) -> bool: global happy_nums temp = set() while True: sqr = self.sqrSum(n) if sqr in happy_nums: happy_nums = happy_nums.union(temp) return True elif sqr in temp: return False else: temp.add(n) n = sqr
def swap(lst): if len(lst) < 2: return lst first = lst[0] last = lst[-1] return [last] + lst[1:-1] + [first] print(swap([12, 35, 9, 56, 24])) print(swap([1, 2, 3]))
def swap(lst): if len(lst) < 2: return lst first = lst[0] last = lst[-1] return [last] + lst[1:-1] + [first] print(swap([12, 35, 9, 56, 24])) print(swap([1, 2, 3]))
a, b, c = input().split(" ") a = int(a) b = int(b) c = int(c) if (c < a + b) and (b < c + a) and (a < b + c) and (0 < a,b,c < 10**5): if((a != b and b == c) or ( a == c and a != b) or ( a == b and c != b)): print("Valido-Isoceles") if ((a**2 == b**2 + c**2) or (b**2 == a**2 + c**2) or (c**2 == b**2 + a**2)): print("Retangulo: S") elif ((a**2 != b**2 + c**2) or (b**2 != a**2 + c**2) or (c**2 != b**2 + a**2)): print("Retangulo: N") elif (a == b == c): print("Valido-Equilatero") if ((a**2 == b**2 + c**2) or (b**2 == a**2 + c**2) or (c**2 == b**2 + a**2)): print("Retangulo: S") elif ((a**2 != b**2 + c**2) or (b**2 != a**2 + c**2) or (c**2 != b**2 + a**2)): print("Retangulo: N") elif (a != b != c): print("Valido-Escaleno") if ((a**2 == b**2 + c**2) or (b**2 == a**2 + c**2) or (c**2 == b**2 + a**2)): print("Retangulo: S") elif ((a**2 != b**2 + c**2) or (b**2 != a**2 + c**2) or (c**2 != b**2 + a**2)): print("Retangulo: N") else: print("Invalido")
(a, b, c) = input().split(' ') a = int(a) b = int(b) c = int(c) if c < a + b and b < c + a and (a < b + c) and (0 < a, b, c < 10 ** 5): if a != b and b == c or (a == c and a != b) or (a == b and c != b): print('Valido-Isoceles') if a ** 2 == b ** 2 + c ** 2 or b ** 2 == a ** 2 + c ** 2 or c ** 2 == b ** 2 + a ** 2: print('Retangulo: S') elif a ** 2 != b ** 2 + c ** 2 or b ** 2 != a ** 2 + c ** 2 or c ** 2 != b ** 2 + a ** 2: print('Retangulo: N') elif a == b == c: print('Valido-Equilatero') if a ** 2 == b ** 2 + c ** 2 or b ** 2 == a ** 2 + c ** 2 or c ** 2 == b ** 2 + a ** 2: print('Retangulo: S') elif a ** 2 != b ** 2 + c ** 2 or b ** 2 != a ** 2 + c ** 2 or c ** 2 != b ** 2 + a ** 2: print('Retangulo: N') elif a != b != c: print('Valido-Escaleno') if a ** 2 == b ** 2 + c ** 2 or b ** 2 == a ** 2 + c ** 2 or c ** 2 == b ** 2 + a ** 2: print('Retangulo: S') elif a ** 2 != b ** 2 + c ** 2 or b ** 2 != a ** 2 + c ** 2 or c ** 2 != b ** 2 + a ** 2: print('Retangulo: N') else: print('Invalido')
def main(): f = [line.rstrip("\n") for line in open("Data.txt")] coordinates = [] for line in f: coordinate = [int(i) for i in line.split(", ")] coordinates.append(coordinate) count = 0 for i in range(400): for j in range(400): sum_ = 0 for coordinate in coordinates: sum_ += abs(coordinate[0] - i) + abs(coordinate[1] - j) if sum_ < 10000: count += 1 print(count) if __name__ == "__main__": main()
def main(): f = [line.rstrip('\n') for line in open('Data.txt')] coordinates = [] for line in f: coordinate = [int(i) for i in line.split(', ')] coordinates.append(coordinate) count = 0 for i in range(400): for j in range(400): sum_ = 0 for coordinate in coordinates: sum_ += abs(coordinate[0] - i) + abs(coordinate[1] - j) if sum_ < 10000: count += 1 print(count) if __name__ == '__main__': main()
class Solution: def mostCommonWord(self, paragraph: str, banned) -> str: helper = {} tmp_word = "" for i in paragraph: if (ord('a') <= ord(i) <= ord('z') or ord('A') <= ord(i) <= ord('Z')) is False: if len(tmp_word) > 0: if helper.__contains__(tmp_word): helper[tmp_word] += 1 else: helper[tmp_word] = 1 tmp_word = "" else: tmp_word += i.lower() if len(tmp_word) > 0: if helper.__contains__(tmp_word): helper[tmp_word] += 1 else: helper[tmp_word] = 1 max_times = 0 max_word = "" print(helper) for word in helper: if helper[word] > max_times and word not in banned: max_times = helper[word] max_word = word return max_word slu = Solution() print(slu.mostCommonWord("Bob", ["hit"])) ''' "Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. Bob hit a ball the hit BALL flew far after it was hit. " ["hit"] "Bob hit a ball, the hit BALL flew far after it was hit." ["hit"] '''
class Solution: def most_common_word(self, paragraph: str, banned) -> str: helper = {} tmp_word = '' for i in paragraph: if (ord('a') <= ord(i) <= ord('z') or ord('A') <= ord(i) <= ord('Z')) is False: if len(tmp_word) > 0: if helper.__contains__(tmp_word): helper[tmp_word] += 1 else: helper[tmp_word] = 1 tmp_word = '' else: tmp_word += i.lower() if len(tmp_word) > 0: if helper.__contains__(tmp_word): helper[tmp_word] += 1 else: helper[tmp_word] = 1 max_times = 0 max_word = '' print(helper) for word in helper: if helper[word] > max_times and word not in banned: max_times = helper[word] max_word = word return max_word slu = solution() print(slu.mostCommonWord('Bob', ['hit'])) '\n"Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. "\n["hit"]\n\n"Bob hit a ball, the hit BALL flew far after it was hit."\n["hit"]\n'
#!python # -*- coding: utf-8 -*- # @author: Kun ''' Author: Kun Date: 2021-09-30 00:48:14 LastEditTime: 2021-09-30 00:48:14 LastEditors: Kun Description: FilePath: /HomoglyphAttacksDetector/utils/__init__.py '''
""" Author: Kun Date: 2021-09-30 00:48:14 LastEditTime: 2021-09-30 00:48:14 LastEditors: Kun Description: FilePath: /HomoglyphAttacksDetector/utils/__init__.py """
{ 'includes':[ '../common/common.gypi', ], 'targets': [ { 'target_name': 'tizen_network_bearer_selection', 'type': 'loadable_module', 'sources': [ 'network_bearer_selection_api.js', 'network_bearer_selection_connection_mobile.cc', 'network_bearer_selection_connection_mobile.h', 'network_bearer_selection_context.cc', 'network_bearer_selection_context.h', 'network_bearer_selection_context_desktop.cc', 'network_bearer_selection_context_desktop.h', 'network_bearer_selection_context_mobile.cc', 'network_bearer_selection_context_mobile.h', 'network_bearer_selection_request.cc', 'network_bearer_selection_request.h', ], 'conditions': [ [ 'extension_host_os=="mobile"', { 'includes': [ '../common/pkg-config.gypi', ], 'variables': { 'packages': [ 'capi-network-connection', ], }, }], ], }, ], }
{'includes': ['../common/common.gypi'], 'targets': [{'target_name': 'tizen_network_bearer_selection', 'type': 'loadable_module', 'sources': ['network_bearer_selection_api.js', 'network_bearer_selection_connection_mobile.cc', 'network_bearer_selection_connection_mobile.h', 'network_bearer_selection_context.cc', 'network_bearer_selection_context.h', 'network_bearer_selection_context_desktop.cc', 'network_bearer_selection_context_desktop.h', 'network_bearer_selection_context_mobile.cc', 'network_bearer_selection_context_mobile.h', 'network_bearer_selection_request.cc', 'network_bearer_selection_request.h'], 'conditions': [['extension_host_os=="mobile"', {'includes': ['../common/pkg-config.gypi'], 'variables': {'packages': ['capi-network-connection']}}]]}]}
# Resolve the problem!! PALINDROMES = [ 'Acaso hubo buhos aca', 'A la catalana banal atacala', 'Amar da drama', ] NOT_PALINDROMES = [ 'Hola como estas', 'Platzi' 'Oscar', ] def is_palindrome(palindrome): """ validates that the string palindrome is a palindrome (it is a word or phrase that read equal to right and back param str palindrome is a word or Phrase returns True if the word or phrase is a palindorme or False if not. """ reversed_letters = palindrome[::-1] if reversed_letters.lower().replace(' ','') == palindrome.lower().replace(' ',''): return True else: return False def validate(): for palindrome in PALINDROMES: if not is_palindrome(palindrome): return False for not_palindrome in NOT_PALINDROMES: if is_palindrome(not_palindrome): return False return True def run(): if validate(): print('Completaste el test') else: print('No completaste el test') if __name__ == '__main__': run()
palindromes = ['Acaso hubo buhos aca', 'A la catalana banal atacala', 'Amar da drama'] not_palindromes = ['Hola como estas', 'PlatziOscar'] def is_palindrome(palindrome): """ validates that the string palindrome is a palindrome (it is a word or phrase that read equal to right and back param str palindrome is a word or Phrase returns True if the word or phrase is a palindorme or False if not. """ reversed_letters = palindrome[::-1] if reversed_letters.lower().replace(' ', '') == palindrome.lower().replace(' ', ''): return True else: return False def validate(): for palindrome in PALINDROMES: if not is_palindrome(palindrome): return False for not_palindrome in NOT_PALINDROMES: if is_palindrome(not_palindrome): return False return True def run(): if validate(): print('Completaste el test') else: print('No completaste el test') if __name__ == '__main__': run()
def DEBUG(s): #pass print(s)
def debug(s): print(s)
def print_n(s, n): """write a function that prints a string n times""" while n > 0: print(s) n = n - 1 print_n('string', 3)
def print_n(s, n): """write a function that prints a string n times""" while n > 0: print(s) n = n - 1 print_n('string', 3)
def add_to(subparsers): parser = subparsers.add_parser( "wifi", help="Get and set WiFi configuration", ) parser.add_children(__name__, __path__)
def add_to(subparsers): parser = subparsers.add_parser('wifi', help='Get and set WiFi configuration') parser.add_children(__name__, __path__)
''' 1. Write a Python program to print the following string in a specific format (see the output). Go to the editor Sample String : "Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are" Output: Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are ''' print("Twinkle, twinkle, little star, \n\tHow I wonder what you are! \n\t\tUp above the world so high, \n\t\tLike a diamond in the sky. \nTwinkle, twinkle, little star, \n\tHow I wonder what you are!")
""" 1. Write a Python program to print the following string in a specific format (see the output). Go to the editor Sample String : "Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are" Output: Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are """ print('Twinkle, twinkle, little star, \n\tHow I wonder what you are! \n\t\tUp above the world so high, \n\t\tLike a diamond in the sky. \nTwinkle, twinkle, little star, \n\tHow I wonder what you are!')
''' Fill in your credentials from Twitter ''' consumer_key = '' consumer_secret = '' access_token_key = '' access_token_secret = '' account_name = "@" kytten_name = "" #Screen Name without the "@"
""" Fill in your credentials from Twitter """ consumer_key = '' consumer_secret = '' access_token_key = '' access_token_secret = '' account_name = '@' kytten_name = ''
"""Contain constants Ids and labels.""" # pylint: disable=R0903 class DataSourceType: """Data source type Ids.""" CLOUDERA_HIVE_ID = 1 CLOUDERA_IMPALA_ID = 2 MARIADB_ID = 3 MSSQL_ID = 4 MYSQL_ID = 5 ORACLE_ID = 6 POSTGRESQL_ID = 7 SQLITE_ID = 8 TERADATA_ID = 9 SNOWFLAKE_ID = 10 HORTONWORKS_HIVE_ID = 11 class IndicatorType: """Indicator type Ids.""" COMPLETENESS = 1 FRESHNESS = 2 LATENCY = 3 VALIDITY = 4
"""Contain constants Ids and labels.""" class Datasourcetype: """Data source type Ids.""" cloudera_hive_id = 1 cloudera_impala_id = 2 mariadb_id = 3 mssql_id = 4 mysql_id = 5 oracle_id = 6 postgresql_id = 7 sqlite_id = 8 teradata_id = 9 snowflake_id = 10 hortonworks_hive_id = 11 class Indicatortype: """Indicator type Ids.""" completeness = 1 freshness = 2 latency = 3 validity = 4
class Solution: def longestRepeatingSubstring(self, S: str) -> int: # dp[i][j] means the longest repeating string ends at i and j. # (aka the target ends at i and the repeating one ends at j) n = len(S) + 1 dp = [[0] * n for _ in range(n)] result = 0 for i in range(1, n): for j in range(i + 1, n): if S[i - 1] == S[j - 1]: dp[i][j] = dp[i - 1][j - 1] + 1 result = max(result, dp[i][j]) return result # TLE def longestRepeatingSubstring(self, S: str) -> int: if not S: return 0 result = 0 for i in range(len(S) - 1): for length in range(1, len(S)): target = S[i: i + length] for j in range(i + 1, len(S) - length + 1): if S[j: j + length] == target: result = max(result, length) return result
class Solution: def longest_repeating_substring(self, S: str) -> int: n = len(S) + 1 dp = [[0] * n for _ in range(n)] result = 0 for i in range(1, n): for j in range(i + 1, n): if S[i - 1] == S[j - 1]: dp[i][j] = dp[i - 1][j - 1] + 1 result = max(result, dp[i][j]) return result def longest_repeating_substring(self, S: str) -> int: if not S: return 0 result = 0 for i in range(len(S) - 1): for length in range(1, len(S)): target = S[i:i + length] for j in range(i + 1, len(S) - length + 1): if S[j:j + length] == target: result = max(result, length) return result
emojis = \ { 29000000: "<:Unranked:601618883853680653>", 29000001: "<:BronzeLeagueIII:601611929311510528>", 29000002: "<:BronzeLeagueII:601611942850986014>", 29000003: "<:BronzeLeagueI:601611950228635648>", 29000004: "<:SilverLeagueIII:601611958067920906>", 29000005: "<:SilverLeagueII:601611965550428160>", 29000006: "<:SilverLeagueI:601611974849331222>", 29000007: "<:GoldLeagueIII:601611988992262144>", 29000008: "<:GoldLeagueII:601611996290613249>", 29000009: "<:GoldLeagueI:601612010492526592>", 29000010: "<:CrystalLeagueIII:601612021472952330>", 29000011: "<:CrystalLeagueII:601612033976434698>", 29000012: "<:CrystalLeagueI:601612045359775746>", 29000013: "<:MasterLeagueIII:601612064913621002>", 29000014: "<:MasterLeagueII:601612075474616399>", 29000015: "<:MasterLeagueI:601612085327036436>", 29000016: "<:ChampionLeagueIII:601612099226959892>", 29000017: "<:ChampionLeagueII:601612113345249290>", 29000018: "<:ChampionLeagueI:601612124447440912>", 29000019: "<:TitanLeagueIII:601612137491726374>", 29000020: "<:TitanLeagueII:601612148325744640>", 29000021: "<:TitanLeagueI:601612159327141888>", 29000022: "<:LegendLeague:601612163169255436>", 17: "<:clanbadgelv17:601613723630829568>", 13: "<:clanbadgelv13:601613734070321153>", 15: "<:clanbadgelv15:601613740550651944>", 16: "<:clanbadgelv16:601613754773405716>", 18: "<:clanbadgelv18:601613767582679051>", 19: "<:clanbadgelv19:601613781071822886>", 14: "<:clanbadgelv14:601613784393580563>", 12: "<:clanbadgelv12:601613795428663306>", 4: "<:clanbadgelv4:601613804396347392>", 10: "<:clanbadgelv10:601613814894559232>", 11: "<:clanbadgelv11:601613823929090049>", 3: "<:clanbadgelv3:601613825698955275>", 8: "<:clanbadgelv8:601613837526892544>", 7: "<:clanbadgelv7:601613849094782987>", 9: "<:clanbadgelv9:601615742248550400>", 1: "<:clanbadgelv1:601615752696430592>", 2: "<:clanbadgelv2:601615764805517324>", 6: "<:clanbadgelv6:601615768483790864>", 5: "<:clanbadgelv5:601615779309551633>", } number_emojis = \ { 48: "<:rcs48:569362943884656664>", 49: "<:rcs49:569362943951503386>", 47: "<:rcs47:569362944241172491>", 50: "<:rcs50:569362944312475676>", 45: "<:rcs45:569371105752514572>", 46: "<:rcs46:569371105874280459>", 42: "<:rcs42:569371105953972225>", 44: "<:rcs44:569371105966686210>", 37: "<:rcs37:569371106096447498>", 38: "<:rcs38:569371106142715904>", 36: "<:rcs36:569371106176270345>", 43: "<:rcs43:569371106205499402>", 40: "<:rcs40:569371106356756491>", 41: "<:rcs41:569371106373402650>", 39: "<:rcs39:569371106377596949>", 1: "<:rcs1:570030365146873858>", 3: "<:rcs3:570030366128340993>", 2: "<:rcs2:570030366186930219>", 9: "<:rcs9:570030366308564993>", 6: "<:rcs6:570030366400839701>", 4: "<:rcs4:570030366543577098>", 17: "<:rcs17:570030366581063711>", 13: "<:rcs13:570030366593908797>", 8: "<:rcs8:570030366648434698>", 5: "<:rcs5:570030366652366858>", 7: "<:rcs7:570030366656823296>", 27: "<:rcs27:570030366656823348>", 20: "<:rcs20:570030366669275163>", 12: "<:rcs12:570030366690377733>", 21: "<:rcs21:570030366690377779>", 10: "<:rcs10:570030366719606814>", 11: "<:rcs11:570030366740447280>", 14: "<:rcs14:570030366761680906>", 15: "<:rcs15:570030366820270081>", 16: "<:rcs16:570030366820270100>", 18: "<:rcs18:570030366824333332>", 19: "<:rcs19:570030366870470677>", 24: "<:rcs24:570030366979653645>", 22: "<:rcs22:570030367067865088>", 23: "<:rcs23:570030367084380160>", 30: "<:rcs30:570030367084380221>", 31: "<:rcs31:570030367084511233>", 26: "<:rcs26:570030367097094165>", 32: "<:rcs32:570030367109808158>", 34: "<:rcs34:570030367118065664>", 29: "<:rcs29:570030367118065684>", 33: "<:rcs33:570030367122128901>", 35: "<:rcs35:570030367134973962>", 25: "<:rcs25:570030367399084042>", 28: "<:rcs28:570030368422363136>", 55: "<:rcs55:569361240623939616>", 54: "<:rcs54:569361240695242753>", 58: "<:rcs58:569361240858558476>", 57: "<:rcs57:569361240858689573>", 53: "<:rcs53:569361240879661074>", 51: "<:rcs51:569361240904826881>", 52: "<:rcs52:569361240929861674>", 56: "<:rcs56:569361241060147211>", 59: "<:rcs59:569361241110216704>", 60: "<:rcs60:569359633181835265>", 61: "<:rcs61:602126479903424512>", 62: "<:rcs62:602126479652028437>", 63: "<:rcs63:602126480377511966>", 64: "<:rcs64:602126480134242315>", 65: "<:rcs65:602126479995699203>", 66: "<:rcs66:602126480394289172>", 67: "<:rcs67:602126480000155670>", 68: "<:rcs68:602126480390225930>", 69: "<:rcs69:602130664158003202>", 70: "<:rcs70:602130663981711385>", 71: "<:rcs71:602130664581758976>", 72: "<:rcs72:602130664447410196>", 73: "<:rcs73:602130664447279134>", 74: "<:rcs74:602130664581758987>", 75: "<:rcs75:602130664430501911>", 76: "<:rcs76:602132432959045642>", 77: "<:rcs77:602132433038737408>", 78: "<:rcs78:602132433105846272>", 79: "<:rcs79:602132433068097536>", 80: "<:rcs80:602132433286201344>", 81: "<:rcs81:602132433097457665>", 82: "<:rcs82:602132433038606357>", 83: "<:rcs83:602132433063903233>", 84: "<:rcs84:602132433055252480>", 85: "<:rcs85:602132433323950080>", 86: "<:rcs86:602132433063772180>", 87: "<:rcs87:602132433059708928>", 88: "<:rcs88:602132433097457664>", 89: "<:rcs89:602132432744873987>", 90: "<:rcs90:602132432946200588>", 91: "<:rcs91:602132433084612638>", 92: "<:rcs92:602132433051058206>", 93: "<:rcs93:602132433055514624>", 94: "<:rcs94:602132432707125289>", 95: "<:rcs95:602132433080549386>", 96: "<:rcs96:602132433374019584>", 97: "<:rcs97:602132433420419082>", 98: "<:rcs98:602132433030217751>", 99: "<:rcs99:602132433168498699>", 100: "<:rcs100:602132433311236096>", } townhall_emojis = \ { 11: "<:rcsth11:506863668449771526>", 3: "<:rcsth3:506863668563148811>", 10: "<:rcsth10:506863668689108994>", 9: "<:rcsth9:506863668722401290>", 6: "<:rcsth6:506863668726726664>", 4: "<:rcsth4:506863668731052032>", 7: "<:rcsth7:506863668743503872>", 12: "<:rcsth12:506863668802224138>", 5: "<:rcsth5:506863668819001345>", 8: "<:rcsth8:506863668827258919>" } troop_emojis = \ { "babydragon": "<:babydragon:531661745031348235>", "archer": "<:archer:531661745157046274>", "archerqueen": "<:archerqueen:531661745266098200>", "barbking": "<:barbking:531661752027447296>", "hogrider": "<:hogrider:531661752090230785>", "earthquake": "<:earthquake:531661752119853071>", "smair1": "<:smair1:531661752660787201>", "bomber": "<:bomber:531661752706793472>", "barbarian": "<:barbarian:531661752757125149>", "miner": "<:miner:531661752954257430>", "drag": "<:drag:531661752971165708>", "cannoncart": "<:cannoncart:531661753008914451>", "boxergiant": "<:boxergiant:531661753042337793>", "bowler": "<:bowler:531661753495584768>", "haste": "<:haste:531661753541722121>", "battlemachine": "<:battlemachine:531661753642254338>", "smground": "<:smground:531661753721815040>", "poison": "<:poison:531661754007158794>", "loon": "<:loon:531661754162216970>", "skeleton": "<:skeleton:531661754204291101>", "ragedbarb": "<:ragedbarb:531661754254491649>", "wizard": "<:wizard:531661754653212692>", "betaminion": "<:betaminion:531661755022049281>", "grandwarden": "<:grandwarden:531661755022311446>", "clone": "<:clone:531661755114586113>", "goblin": "<:goblin:531661755185627156>", "healer": "<:healer:531661755286552587>", "heal": "<:heal:531661755370307604>", "giant": "<:giant:531661755428896789>", "golem": "<:golem:531661755542405131>", "pekka": "<:pekka:531661755558920203>", "jump": "<:jump:531661755651325962>", "valkyrie": "<:valkyrie:531661755688943627>", "lavahound": "<:lavahound:531661755714371594>", "edrag": "<:edrag:531661755781349396>", "wallbreaker": "<:wallbreaker:531661755815034890>", "sneakyarcher": "<:sneakyarcher:531661755848327178>", "freeze": "<:freeze:531661755873492992>", "lightning": "<:lightning:531661755894595584>", "superpekka": "<:superpekka:531661755911372821>", "rage": "<:rage:531661755940864030>", "witch": "<:witch:531661755953446922>", "dropship": "<:dropship:531661755961835550>", "minion": "<:minion:531661755978481675>", "nightwitch": "<:nightwitch:531661756452569098>", "smair2": "<:smair2:531661989504876553>", "icegolem": "<:icegolem:531662117690933268>", "batspell": "<:batspell:531667965813325832>", } misc = \ { "donated": "<:donated:601622865451941896>", "received": "<:received:601622788515692552>", "offline": "<:offline:604943449241681950>", "online": "<:online:604943467982094347>", "number": "<:number:601623596070338598>", "idle": "<:idle:601626135306043452>", "rcsgap": "<:rcsgap:506646497149059074>", "slack": "<:slack:521472987556216837>", "star_empty": "<:star_empty:524801903016804363>", "star_new": "<:star_new:524801903109079041>", "star_old": "<:star_old:524801903234646017>", "red_x_mark": "<:red_x_mark:531163415335403531>", "upvote": "<:upvote:531246808999919628>", "downvote": "<:downvote:531246835185221643>", "swords": "<:swords:557035830175072257>", "per": "<:per:569361815683858433>", "discord": "<:discord:571884537500401664>", "legend": "<:legend:592028469068824607>", "legendcup": "<:legendcup:592028799768592405>", "tank": "<:tank:594601895163723816>", "clashchamps": "<:clashchamps:600807746664792084>", "greentick": "<:greentick:601900670823694357>", "redtick": "<:redtick:601900691312607242>", "greytick": "<:greytick:601900711974010905>", "trophygain": "<:trophygain:628561448519335946>", "trophyloss": "<:trophyloss:628561532141436960>", "trophygreen": "<:trophygreen:628561697480900618>", "trophyred": "<:trophyred:628561718276128789>", "green_clock": "<:green_clock:629481616091119617>", "defense": "<:defense:632517053953081354>", "attack": "<:attack:632518458713571329>", "trophygold": "<:trophygold:632521243278442505>" }
emojis = {29000000: '<:Unranked:601618883853680653>', 29000001: '<:BronzeLeagueIII:601611929311510528>', 29000002: '<:BronzeLeagueII:601611942850986014>', 29000003: '<:BronzeLeagueI:601611950228635648>', 29000004: '<:SilverLeagueIII:601611958067920906>', 29000005: '<:SilverLeagueII:601611965550428160>', 29000006: '<:SilverLeagueI:601611974849331222>', 29000007: '<:GoldLeagueIII:601611988992262144>', 29000008: '<:GoldLeagueII:601611996290613249>', 29000009: '<:GoldLeagueI:601612010492526592>', 29000010: '<:CrystalLeagueIII:601612021472952330>', 29000011: '<:CrystalLeagueII:601612033976434698>', 29000012: '<:CrystalLeagueI:601612045359775746>', 29000013: '<:MasterLeagueIII:601612064913621002>', 29000014: '<:MasterLeagueII:601612075474616399>', 29000015: '<:MasterLeagueI:601612085327036436>', 29000016: '<:ChampionLeagueIII:601612099226959892>', 29000017: '<:ChampionLeagueII:601612113345249290>', 29000018: '<:ChampionLeagueI:601612124447440912>', 29000019: '<:TitanLeagueIII:601612137491726374>', 29000020: '<:TitanLeagueII:601612148325744640>', 29000021: '<:TitanLeagueI:601612159327141888>', 29000022: '<:LegendLeague:601612163169255436>', 17: '<:clanbadgelv17:601613723630829568>', 13: '<:clanbadgelv13:601613734070321153>', 15: '<:clanbadgelv15:601613740550651944>', 16: '<:clanbadgelv16:601613754773405716>', 18: '<:clanbadgelv18:601613767582679051>', 19: '<:clanbadgelv19:601613781071822886>', 14: '<:clanbadgelv14:601613784393580563>', 12: '<:clanbadgelv12:601613795428663306>', 4: '<:clanbadgelv4:601613804396347392>', 10: '<:clanbadgelv10:601613814894559232>', 11: '<:clanbadgelv11:601613823929090049>', 3: '<:clanbadgelv3:601613825698955275>', 8: '<:clanbadgelv8:601613837526892544>', 7: '<:clanbadgelv7:601613849094782987>', 9: '<:clanbadgelv9:601615742248550400>', 1: '<:clanbadgelv1:601615752696430592>', 2: '<:clanbadgelv2:601615764805517324>', 6: '<:clanbadgelv6:601615768483790864>', 5: '<:clanbadgelv5:601615779309551633>'} number_emojis = {48: '<:rcs48:569362943884656664>', 49: '<:rcs49:569362943951503386>', 47: '<:rcs47:569362944241172491>', 50: '<:rcs50:569362944312475676>', 45: '<:rcs45:569371105752514572>', 46: '<:rcs46:569371105874280459>', 42: '<:rcs42:569371105953972225>', 44: '<:rcs44:569371105966686210>', 37: '<:rcs37:569371106096447498>', 38: '<:rcs38:569371106142715904>', 36: '<:rcs36:569371106176270345>', 43: '<:rcs43:569371106205499402>', 40: '<:rcs40:569371106356756491>', 41: '<:rcs41:569371106373402650>', 39: '<:rcs39:569371106377596949>', 1: '<:rcs1:570030365146873858>', 3: '<:rcs3:570030366128340993>', 2: '<:rcs2:570030366186930219>', 9: '<:rcs9:570030366308564993>', 6: '<:rcs6:570030366400839701>', 4: '<:rcs4:570030366543577098>', 17: '<:rcs17:570030366581063711>', 13: '<:rcs13:570030366593908797>', 8: '<:rcs8:570030366648434698>', 5: '<:rcs5:570030366652366858>', 7: '<:rcs7:570030366656823296>', 27: '<:rcs27:570030366656823348>', 20: '<:rcs20:570030366669275163>', 12: '<:rcs12:570030366690377733>', 21: '<:rcs21:570030366690377779>', 10: '<:rcs10:570030366719606814>', 11: '<:rcs11:570030366740447280>', 14: '<:rcs14:570030366761680906>', 15: '<:rcs15:570030366820270081>', 16: '<:rcs16:570030366820270100>', 18: '<:rcs18:570030366824333332>', 19: '<:rcs19:570030366870470677>', 24: '<:rcs24:570030366979653645>', 22: '<:rcs22:570030367067865088>', 23: '<:rcs23:570030367084380160>', 30: '<:rcs30:570030367084380221>', 31: '<:rcs31:570030367084511233>', 26: '<:rcs26:570030367097094165>', 32: '<:rcs32:570030367109808158>', 34: '<:rcs34:570030367118065664>', 29: '<:rcs29:570030367118065684>', 33: '<:rcs33:570030367122128901>', 35: '<:rcs35:570030367134973962>', 25: '<:rcs25:570030367399084042>', 28: '<:rcs28:570030368422363136>', 55: '<:rcs55:569361240623939616>', 54: '<:rcs54:569361240695242753>', 58: '<:rcs58:569361240858558476>', 57: '<:rcs57:569361240858689573>', 53: '<:rcs53:569361240879661074>', 51: '<:rcs51:569361240904826881>', 52: '<:rcs52:569361240929861674>', 56: '<:rcs56:569361241060147211>', 59: '<:rcs59:569361241110216704>', 60: '<:rcs60:569359633181835265>', 61: '<:rcs61:602126479903424512>', 62: '<:rcs62:602126479652028437>', 63: '<:rcs63:602126480377511966>', 64: '<:rcs64:602126480134242315>', 65: '<:rcs65:602126479995699203>', 66: '<:rcs66:602126480394289172>', 67: '<:rcs67:602126480000155670>', 68: '<:rcs68:602126480390225930>', 69: '<:rcs69:602130664158003202>', 70: '<:rcs70:602130663981711385>', 71: '<:rcs71:602130664581758976>', 72: '<:rcs72:602130664447410196>', 73: '<:rcs73:602130664447279134>', 74: '<:rcs74:602130664581758987>', 75: '<:rcs75:602130664430501911>', 76: '<:rcs76:602132432959045642>', 77: '<:rcs77:602132433038737408>', 78: '<:rcs78:602132433105846272>', 79: '<:rcs79:602132433068097536>', 80: '<:rcs80:602132433286201344>', 81: '<:rcs81:602132433097457665>', 82: '<:rcs82:602132433038606357>', 83: '<:rcs83:602132433063903233>', 84: '<:rcs84:602132433055252480>', 85: '<:rcs85:602132433323950080>', 86: '<:rcs86:602132433063772180>', 87: '<:rcs87:602132433059708928>', 88: '<:rcs88:602132433097457664>', 89: '<:rcs89:602132432744873987>', 90: '<:rcs90:602132432946200588>', 91: '<:rcs91:602132433084612638>', 92: '<:rcs92:602132433051058206>', 93: '<:rcs93:602132433055514624>', 94: '<:rcs94:602132432707125289>', 95: '<:rcs95:602132433080549386>', 96: '<:rcs96:602132433374019584>', 97: '<:rcs97:602132433420419082>', 98: '<:rcs98:602132433030217751>', 99: '<:rcs99:602132433168498699>', 100: '<:rcs100:602132433311236096>'} townhall_emojis = {11: '<:rcsth11:506863668449771526>', 3: '<:rcsth3:506863668563148811>', 10: '<:rcsth10:506863668689108994>', 9: '<:rcsth9:506863668722401290>', 6: '<:rcsth6:506863668726726664>', 4: '<:rcsth4:506863668731052032>', 7: '<:rcsth7:506863668743503872>', 12: '<:rcsth12:506863668802224138>', 5: '<:rcsth5:506863668819001345>', 8: '<:rcsth8:506863668827258919>'} troop_emojis = {'babydragon': '<:babydragon:531661745031348235>', 'archer': '<:archer:531661745157046274>', 'archerqueen': '<:archerqueen:531661745266098200>', 'barbking': '<:barbking:531661752027447296>', 'hogrider': '<:hogrider:531661752090230785>', 'earthquake': '<:earthquake:531661752119853071>', 'smair1': '<:smair1:531661752660787201>', 'bomber': '<:bomber:531661752706793472>', 'barbarian': '<:barbarian:531661752757125149>', 'miner': '<:miner:531661752954257430>', 'drag': '<:drag:531661752971165708>', 'cannoncart': '<:cannoncart:531661753008914451>', 'boxergiant': '<:boxergiant:531661753042337793>', 'bowler': '<:bowler:531661753495584768>', 'haste': '<:haste:531661753541722121>', 'battlemachine': '<:battlemachine:531661753642254338>', 'smground': '<:smground:531661753721815040>', 'poison': '<:poison:531661754007158794>', 'loon': '<:loon:531661754162216970>', 'skeleton': '<:skeleton:531661754204291101>', 'ragedbarb': '<:ragedbarb:531661754254491649>', 'wizard': '<:wizard:531661754653212692>', 'betaminion': '<:betaminion:531661755022049281>', 'grandwarden': '<:grandwarden:531661755022311446>', 'clone': '<:clone:531661755114586113>', 'goblin': '<:goblin:531661755185627156>', 'healer': '<:healer:531661755286552587>', 'heal': '<:heal:531661755370307604>', 'giant': '<:giant:531661755428896789>', 'golem': '<:golem:531661755542405131>', 'pekka': '<:pekka:531661755558920203>', 'jump': '<:jump:531661755651325962>', 'valkyrie': '<:valkyrie:531661755688943627>', 'lavahound': '<:lavahound:531661755714371594>', 'edrag': '<:edrag:531661755781349396>', 'wallbreaker': '<:wallbreaker:531661755815034890>', 'sneakyarcher': '<:sneakyarcher:531661755848327178>', 'freeze': '<:freeze:531661755873492992>', 'lightning': '<:lightning:531661755894595584>', 'superpekka': '<:superpekka:531661755911372821>', 'rage': '<:rage:531661755940864030>', 'witch': '<:witch:531661755953446922>', 'dropship': '<:dropship:531661755961835550>', 'minion': '<:minion:531661755978481675>', 'nightwitch': '<:nightwitch:531661756452569098>', 'smair2': '<:smair2:531661989504876553>', 'icegolem': '<:icegolem:531662117690933268>', 'batspell': '<:batspell:531667965813325832>'} misc = {'donated': '<:donated:601622865451941896>', 'received': '<:received:601622788515692552>', 'offline': '<:offline:604943449241681950>', 'online': '<:online:604943467982094347>', 'number': '<:number:601623596070338598>', 'idle': '<:idle:601626135306043452>', 'rcsgap': '<:rcsgap:506646497149059074>', 'slack': '<:slack:521472987556216837>', 'star_empty': '<:star_empty:524801903016804363>', 'star_new': '<:star_new:524801903109079041>', 'star_old': '<:star_old:524801903234646017>', 'red_x_mark': '<:red_x_mark:531163415335403531>', 'upvote': '<:upvote:531246808999919628>', 'downvote': '<:downvote:531246835185221643>', 'swords': '<:swords:557035830175072257>', 'per': '<:per:569361815683858433>', 'discord': '<:discord:571884537500401664>', 'legend': '<:legend:592028469068824607>', 'legendcup': '<:legendcup:592028799768592405>', 'tank': '<:tank:594601895163723816>', 'clashchamps': '<:clashchamps:600807746664792084>', 'greentick': '<:greentick:601900670823694357>', 'redtick': '<:redtick:601900691312607242>', 'greytick': '<:greytick:601900711974010905>', 'trophygain': '<:trophygain:628561448519335946>', 'trophyloss': '<:trophyloss:628561532141436960>', 'trophygreen': '<:trophygreen:628561697480900618>', 'trophyred': '<:trophyred:628561718276128789>', 'green_clock': '<:green_clock:629481616091119617>', 'defense': '<:defense:632517053953081354>', 'attack': '<:attack:632518458713571329>', 'trophygold': '<:trophygold:632521243278442505>'}
course = 'Python for Beginners' #print the length of the string print(len(course)) #print all in upper print(course.upper()) #print all in lower print(course.lower()) #Find index of the first instance of 'P' print(course.find('P')) #Find index of the first instance of 'o' print(course.find('o')) #Find index of the first instance of '0' --> returns -1 (not found) print(course.find('0')) #Find index of the first instance of 'Beginners' print(course.find('Beginners')) #replace 'Beginners' with 'Absolute Beginners' print(course.replace('Beginners','Absolute Beginners')) #return boolean value if 'Python' is in the course variable print('Python' in course) #return boolean value if 'python' is in the course variable print('python' in course)
course = 'Python for Beginners' print(len(course)) print(course.upper()) print(course.lower()) print(course.find('P')) print(course.find('o')) print(course.find('0')) print(course.find('Beginners')) print(course.replace('Beginners', 'Absolute Beginners')) print('Python' in course) print('python' in course)
#4.2 list_with_integers = [26, 3, 22, 5.9, 1337, 988, 69.544] for i in list_with_integers: print(float(i))
list_with_integers = [26, 3, 22, 5.9, 1337, 988, 69.544] for i in list_with_integers: print(float(i))
projectTwitterDataFile = open("project_twitter_data.csv","r") resultingDataFile = open("resulting_data.csv","w") punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@'] # lists of words to use positive_words = [] with open("positive_words.txt") as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': positive_words.append(lin.strip()) def get_pos(strSentences): strSentences = strip_punctuation(strSentences) listStrSentences= strSentences.split() count=0 for word in listStrSentences: for positiveWord in positive_words: if word == positiveWord: count+=1 return count negative_words = [] with open("negative_words.txt") as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': negative_words.append(lin.strip()) def get_neg(strSentences): strSentences = strip_punctuation(strSentences) listStrSentences = strSentences.split() count=0 for word in listStrSentences: for negativeWord in negative_words: if word == negativeWord: count+=1 return count def strip_punctuation(strWord): for charPunct in punctuation_chars: strWord = strWord.replace(charPunct, "") return strWord def writeInDataFile(resultingDataFile): resultingDataFile.write("Number of Retweets, Number of Replies, Positive Score, Negative Score, Net Score") resultingDataFile.write("\n") linesPTDF = projectTwitterDataFile.readlines() headerDontUsed= linesPTDF.pop(0) for linesTD in linesPTDF: listTD = linesTD.strip().split(',') resultingDataFile.write("{}, {}, {}, {}, {}".format(listTD[1], listTD[2], get_pos(listTD[0]), get_neg(listTD[0]), (get_pos(listTD[0])-get_neg(listTD[0])))) resultingDataFile.write("\n") writeInDataFile(resultingDataFile) projectTwitterDataFile.close() resultingDataFile.close() ############################################### punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@'] # list of positive words to use positive_words = [] with open("positive_words.txt") as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': positive_words.append(lin.strip()) def get_pos(strSentences): strSentences = strip_punctuation(strSentences) listStrSentences= strSentences.split() count=0 for word in listStrSentences: for positiveWord in positive_words: if word == positiveWord: count+=1 return count def strip_punctuation(strWord): for charPunct in punctuation_chars: strWord = strWord.replace(charPunct, "") return strWord ################################## punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@'] negative_words = [] with open("negative_words.txt") as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': negative_words.append(lin.strip()) def get_neg(strSentences): strSentences = strip_punctuation(strSentences) listStrSentences = strSentences.split() count=0 for word in listStrSentences: for negativeWord in negative_words: if word == negativeWord: count+=1 return count def strip_punctuation(strWord): for charPunct in punctuation_chars: strWord = strWord.replace(charPunct, "") return strWord ################################################################# projectTwitterDataFile = open("project_twitter_data.csv","r") resultingDataFile = open("resulting_data.csv","w") punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@'] # lists of words to use positive_words = [] with open("positive_words.txt") as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': positive_words.append(lin.strip()) def get_pos(strSentences): strSentences = strip_punctuation(strSentences) listStrSentences= strSentences.split() count=0 for word in listStrSentences: for positiveWord in positive_words: if word == positiveWord: count+=1 return count negative_words = [] with open("negative_words.txt") as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': negative_words.append(lin.strip()) def get_neg(strSentences): strSentences = strip_punctuation(strSentences) listStrSentences = strSentences.split() count=0 for word in listStrSentences: for negativeWord in negative_words: if word == negativeWord: count+=1 return count def strip_punctuation(strWord): for charPunct in punctuation_chars: strWord = strWord.replace(charPunct, "") return strWord def writeInDataFile(resultingDataFile): resultingDataFile.write("Number of Retweets, Number of Replies, Positive Score, Negative Score, Net Score") resultingDataFile.write("\n") linesPTDF = projectTwitterDataFile.readlines() headerDontUsed= linesPTDF.pop(0) for linesTD in linesPTDF: listTD = linesTD.strip().split(',') resultingDataFile.write("{}, {}, {}, {}, {}".format(listTD[1], listTD[2], get_pos(listTD[0]), get_neg(listTD[0]), (get_pos(listTD[0])-get_neg(listTD[0])))) resultingDataFile.write("\n") writeInDataFile(resultingDataFile) projectTwitterDataFile.close() resultingDataFile.close()
project_twitter_data_file = open('project_twitter_data.csv', 'r') resulting_data_file = open('resulting_data.csv', 'w') punctuation_chars = ["'", '"', ',', '.', '!', ':', ';', '#', '@'] positive_words = [] with open('positive_words.txt') as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': positive_words.append(lin.strip()) def get_pos(strSentences): str_sentences = strip_punctuation(strSentences) list_str_sentences = strSentences.split() count = 0 for word in listStrSentences: for positive_word in positive_words: if word == positiveWord: count += 1 return count negative_words = [] with open('negative_words.txt') as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': negative_words.append(lin.strip()) def get_neg(strSentences): str_sentences = strip_punctuation(strSentences) list_str_sentences = strSentences.split() count = 0 for word in listStrSentences: for negative_word in negative_words: if word == negativeWord: count += 1 return count def strip_punctuation(strWord): for char_punct in punctuation_chars: str_word = strWord.replace(charPunct, '') return strWord def write_in_data_file(resultingDataFile): resultingDataFile.write('Number of Retweets, Number of Replies, Positive Score, Negative Score, Net Score') resultingDataFile.write('\n') lines_ptdf = projectTwitterDataFile.readlines() header_dont_used = linesPTDF.pop(0) for lines_td in linesPTDF: list_td = linesTD.strip().split(',') resultingDataFile.write('{}, {}, {}, {}, {}'.format(listTD[1], listTD[2], get_pos(listTD[0]), get_neg(listTD[0]), get_pos(listTD[0]) - get_neg(listTD[0]))) resultingDataFile.write('\n') write_in_data_file(resultingDataFile) projectTwitterDataFile.close() resultingDataFile.close() punctuation_chars = ["'", '"', ',', '.', '!', ':', ';', '#', '@'] positive_words = [] with open('positive_words.txt') as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': positive_words.append(lin.strip()) def get_pos(strSentences): str_sentences = strip_punctuation(strSentences) list_str_sentences = strSentences.split() count = 0 for word in listStrSentences: for positive_word in positive_words: if word == positiveWord: count += 1 return count def strip_punctuation(strWord): for char_punct in punctuation_chars: str_word = strWord.replace(charPunct, '') return strWord punctuation_chars = ["'", '"', ',', '.', '!', ':', ';', '#', '@'] negative_words = [] with open('negative_words.txt') as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': negative_words.append(lin.strip()) def get_neg(strSentences): str_sentences = strip_punctuation(strSentences) list_str_sentences = strSentences.split() count = 0 for word in listStrSentences: for negative_word in negative_words: if word == negativeWord: count += 1 return count def strip_punctuation(strWord): for char_punct in punctuation_chars: str_word = strWord.replace(charPunct, '') return strWord project_twitter_data_file = open('project_twitter_data.csv', 'r') resulting_data_file = open('resulting_data.csv', 'w') punctuation_chars = ["'", '"', ',', '.', '!', ':', ';', '#', '@'] positive_words = [] with open('positive_words.txt') as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': positive_words.append(lin.strip()) def get_pos(strSentences): str_sentences = strip_punctuation(strSentences) list_str_sentences = strSentences.split() count = 0 for word in listStrSentences: for positive_word in positive_words: if word == positiveWord: count += 1 return count negative_words = [] with open('negative_words.txt') as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': negative_words.append(lin.strip()) def get_neg(strSentences): str_sentences = strip_punctuation(strSentences) list_str_sentences = strSentences.split() count = 0 for word in listStrSentences: for negative_word in negative_words: if word == negativeWord: count += 1 return count def strip_punctuation(strWord): for char_punct in punctuation_chars: str_word = strWord.replace(charPunct, '') return strWord def write_in_data_file(resultingDataFile): resultingDataFile.write('Number of Retweets, Number of Replies, Positive Score, Negative Score, Net Score') resultingDataFile.write('\n') lines_ptdf = projectTwitterDataFile.readlines() header_dont_used = linesPTDF.pop(0) for lines_td in linesPTDF: list_td = linesTD.strip().split(',') resultingDataFile.write('{}, {}, {}, {}, {}'.format(listTD[1], listTD[2], get_pos(listTD[0]), get_neg(listTD[0]), get_pos(listTD[0]) - get_neg(listTD[0]))) resultingDataFile.write('\n') write_in_data_file(resultingDataFile) projectTwitterDataFile.close() resultingDataFile.close()
class Solution(object): def rob(self, nums): """ :type nums: List[int] :rtype: int """ n = len(nums) if n == 0: return 0 elif n == 1: return nums[0] elif n == 2: return max(nums) else: a, b = nums[0], max(nums[0:2]) for num in nums[2:]: c = max(a+num, b) a, b = b, c return b
class Solution(object): def rob(self, nums): """ :type nums: List[int] :rtype: int """ n = len(nums) if n == 0: return 0 elif n == 1: return nums[0] elif n == 2: return max(nums) else: (a, b) = (nums[0], max(nums[0:2])) for num in nums[2:]: c = max(a + num, b) (a, b) = (b, c) return b
def sum_repeat_digits(offset): l = [] for i, c in enumerate(digits): index_to_check = int((i + offset) % len(digits)) if c == digits[index_to_check]: l.append(int(c)) return sum(l) def main(): with open('inputs/solution1.txt') as f: digits = f.read().strip() print('Part 1', sum_repeat_digits(1)) print('Part 2', sum_repeat_digits(len(digits)/2)) if __name__ == '__main__': main()
def sum_repeat_digits(offset): l = [] for (i, c) in enumerate(digits): index_to_check = int((i + offset) % len(digits)) if c == digits[index_to_check]: l.append(int(c)) return sum(l) def main(): with open('inputs/solution1.txt') as f: digits = f.read().strip() print('Part 1', sum_repeat_digits(1)) print('Part 2', sum_repeat_digits(len(digits) / 2)) if __name__ == '__main__': main()
employees = { 'Alice': 100000, 'Bob': 98000, 'Cena': 127000, 'Dwayne': 158000, 'Frank': 88000 } # find the top earner (every one with salary greater than or equal to 1 lakh) top_earners = [] for name,salary in employees.items(): if salary >= 100000: top_earners.append((name,salary)) print(top_earners) ## One-liner top_earners = [(n,s) for n,s in employees.items() if s >= 100000 ] print(top_earners)
employees = {'Alice': 100000, 'Bob': 98000, 'Cena': 127000, 'Dwayne': 158000, 'Frank': 88000} top_earners = [] for (name, salary) in employees.items(): if salary >= 100000: top_earners.append((name, salary)) print(top_earners) top_earners = [(n, s) for (n, s) in employees.items() if s >= 100000] print(top_earners)
VALID_AZURE_ENVIRONMENTS = [ 'AzurePublicCloud', 'AzureUSGovernmentCloud', 'AzureChinaCloud', 'AzureGermanCloud', ]
valid_azure_environments = ['AzurePublicCloud', 'AzureUSGovernmentCloud', 'AzureChinaCloud', 'AzureGermanCloud']
class Lane: def __init__(self, position, objectType, player_id): self.position = position self.object = objectType self.occupied_by_player_id = player_id
class Lane: def __init__(self, position, objectType, player_id): self.position = position self.object = objectType self.occupied_by_player_id = player_id
coordinates_E0E1E1 = ((123, 110), (123, 112), (123, 113), (123, 114), (123, 115), (123, 116), (123, 117), (123, 118), (123, 119), (123, 120), (123, 122), (124, 110), (124, 122), (125, 110), (125, 112), (125, 113), (125, 114), (125, 115), (125, 116), (125, 117), (125, 118), (125, 119), (125, 120), (125, 122), (126, 109), (126, 111), (126, 112), (126, 113), (126, 114), (126, 115), (126, 116), (126, 117), (126, 118), (126, 119), (126, 120), (126, 122), (127, 66), (127, 72), (127, 80), (127, 82), (127, 104), (127, 109), (127, 111), (127, 112), (127, 113), (127, 114), (127, 115), (127, 116), (127, 117), (127, 118), (127, 119), (127, 120), (127, 122), (128, 65), (128, 67), (128, 72), (128, 75), (128, 76), (128, 77), (128, 78), (128, 79), (128, 82), (128, 103), (128, 104), (128, 109), (128, 111), (128, 112), (128, 113), (128, 114), (128, 115), (128, 116), (128, 117), (128, 118), (128, 119), (128, 120), (128, 122), (129, 65), (129, 67), (129, 73), (129, 76), (129, 80), (129, 82), (129, 102), (129, 109), (129, 111), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 117), (129, 118), (129, 119), (129, 120), (129, 122), (130, 65), (130, 68), (130, 73), (130, 75), (130, 76), (130, 77), (130, 78), (130, 79), (130, 80), (130, 82), (130, 91), (130, 102), (130, 103), (130, 108), (130, 110), (130, 111), (130, 112), (130, 113), (130, 114), (130, 115), (130, 116), (130, 117), (130, 118), (130, 119), (130, 120), (130, 122), (131, 65), (131, 68), (131, 73), (131, 75), (131, 76), (131, 77), (131, 78), (131, 79), (131, 81), (131, 91), (131, 92), (131, 103), (131, 108), (131, 110), (131, 111), (131, 112), (131, 113), (131, 114), (131, 115), (131, 116), (131, 117), (131, 118), (131, 119), (131, 120), (131, 122), (132, 65), (132, 67), (132, 69), (132, 72), (132, 73), (132, 74), (132, 75), (132, 76), (132, 77), (132, 78), (132, 79), (132, 81), (132, 92), (132, 101), (132, 103), (132, 104), (132, 107), (132, 109), (132, 110), (132, 111), (132, 117), (132, 118), (132, 119), (132, 120), (132, 122), (133, 66), (133, 68), (133, 71), (133, 73), (133, 74), (133, 75), (133, 76), (133, 77), (133, 78), (133, 79), (133, 81), (133, 93), (133, 101), (133, 103), (133, 104), (133, 105), (133, 106), (133, 108), (133, 109), (133, 110), (133, 113), (133, 114), (133, 115), (133, 118), (133, 119), (133, 120), (133, 122), (134, 66), (134, 68), (134, 69), (134, 72), (134, 77), (134, 78), (134, 79), (134, 80), (134, 82), (134, 95), (134, 100), (134, 102), (134, 103), (134, 104), (134, 107), (134, 108), (134, 109), (134, 111), (134, 117), (134, 120), (134, 122), (134, 128), (135, 66), (135, 68), (135, 69), (135, 70), (135, 73), (135, 74), (135, 75), (135, 76), (135, 78), (135, 79), (135, 80), (135, 81), (135, 83), (135, 94), (135, 96), (135, 97), (135, 98), (135, 101), (135, 102), (135, 103), (135, 104), (135, 105), (135, 106), (135, 107), (135, 108), (135, 110), (135, 118), (135, 121), (135, 122), (135, 128), (135, 129), (136, 67), (136, 69), (136, 72), (136, 77), (136, 79), (136, 80), (136, 81), (136, 82), (136, 84), (136, 95), (136, 100), (136, 101), (136, 102), (136, 103), (136, 104), (136, 105), (136, 106), (136, 107), (136, 109), (136, 120), (136, 123), (137, 67), (137, 70), (137, 78), (137, 80), (137, 81), (137, 82), (137, 85), (137, 95), (137, 97), (137, 98), (137, 99), (137, 100), (137, 101), (137, 102), (137, 103), (137, 104), (137, 105), (137, 106), (137, 108), (137, 121), (137, 123), (137, 129), (137, 130), (138, 67), (138, 69), (138, 79), (138, 81), (138, 82), (138, 83), (138, 84), (138, 86), (138, 94), (138, 96), (138, 97), (138, 98), (138, 99), (138, 100), (138, 101), (138, 102), (138, 103), (138, 104), (138, 105), (138, 106), (138, 108), (138, 122), (138, 124), (138, 130), (139, 67), (139, 69), (139, 79), (139, 81), (139, 82), (139, 83), (139, 84), (139, 85), (139, 88), (139, 93), (139, 95), (139, 96), (139, 97), (139, 98), (139, 99), (139, 100), (139, 101), (139, 102), (139, 103), (139, 104), (139, 105), (139, 107), (139, 123), (139, 124), (139, 130), (139, 132), (140, 67), (140, 70), (140, 78), (140, 80), (140, 85), (140, 86), (140, 89), (140, 90), (140, 91), (140, 94), (140, 95), (140, 96), (140, 97), (140, 98), (140, 99), (140, 100), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 107), (140, 123), (140, 124), (140, 132), (141, 67), (141, 69), (141, 71), (141, 76), (141, 82), (141, 83), (141, 84), (141, 87), (141, 88), (141, 93), (141, 94), (141, 95), (141, 96), (141, 97), (141, 98), (141, 99), (141, 100), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 107), (141, 124), (141, 131), (141, 133), (142, 66), (142, 68), (142, 69), (142, 70), (142, 72), (142, 73), (142, 74), (142, 75), (142, 80), (142, 86), (142, 88), (142, 89), (142, 90), (142, 91), (142, 92), (142, 93), (142, 94), (142, 95), (142, 96), (142, 97), (142, 98), (142, 99), (142, 100), (142, 101), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 131), (142, 133), (143, 67), (143, 69), (143, 70), (143, 71), (143, 78), (143, 87), (143, 89), (143, 90), (143, 91), (143, 92), (143, 93), (143, 94), (143, 95), (143, 96), (143, 97), (143, 98), (143, 99), (143, 100), (143, 101), (143, 102), (143, 103), (143, 104), (143, 105), (143, 107), (143, 131), (143, 132), (144, 67), (144, 73), (144, 74), (144, 75), (144, 87), (144, 88), (144, 89), (144, 90), (144, 91), (144, 92), (144, 93), (144, 94), (144, 95), (144, 96), (144, 97), (144, 98), (144, 99), (144, 100), (144, 101), (144, 102), (144, 103), (144, 104), (144, 105), (144, 107), (144, 131), (144, 132), (145, 69), (145, 71), (145, 72), (145, 88), (145, 90), (145, 91), (145, 92), (145, 93), (145, 94), (145, 95), (145, 96), (145, 97), (145, 98), (145, 99), (145, 100), (145, 101), (145, 102), (145, 103), (145, 104), (145, 105), (145, 106), (145, 108), (145, 131), (145, 132), (146, 88), (146, 90), (146, 91), (146, 92), (146, 93), (146, 94), (146, 95), (146, 96), (146, 97), (146, 98), (146, 99), (146, 100), (146, 101), (146, 102), (146, 103), (146, 104), (146, 105), (146, 106), (146, 107), (146, 109), (146, 131), (146, 132), (147, 88), (147, 90), (147, 91), (147, 92), (147, 93), (147, 94), (147, 95), (147, 96), (147, 97), (147, 98), (147, 99), (147, 100), (147, 101), (147, 102), (147, 103), (147, 104), (147, 105), (147, 106), (147, 107), (147, 110), (147, 131), (147, 132), (148, 89), (148, 91), (148, 92), (148, 93), (148, 94), (148, 95), (148, 96), (148, 97), (148, 98), (148, 99), (148, 100), (148, 101), (148, 102), (148, 103), (148, 104), (148, 105), (148, 106), (148, 107), (148, 108), (148, 111), (148, 131), (148, 132), (149, 90), (149, 92), (149, 93), (149, 94), (149, 95), (149, 96), (149, 97), (149, 98), (149, 99), (149, 100), (149, 101), (149, 102), (149, 103), (149, 104), (149, 105), (149, 106), (149, 107), (149, 108), (149, 109), (149, 112), (149, 131), (149, 132), (150, 90), (150, 92), (150, 93), (150, 94), (150, 95), (150, 96), (150, 97), (150, 98), (150, 99), (150, 100), (150, 101), (150, 102), (150, 103), (150, 104), (150, 105), (150, 106), (150, 107), (150, 108), (150, 109), (150, 110), (150, 111), (150, 114), (150, 115), (150, 132), (151, 90), (151, 92), (151, 93), (151, 96), (151, 97), (151, 98), (151, 99), (151, 100), (151, 101), (151, 102), (151, 103), (151, 104), (151, 105), (151, 106), (151, 107), (151, 108), (151, 109), (151, 110), (151, 111), (151, 112), (151, 113), (151, 116), (151, 118), (151, 132), (151, 144), (152, 89), (152, 91), (152, 92), (152, 95), (152, 98), (152, 99), (152, 100), (152, 101), (152, 102), (152, 103), (152, 104), (152, 105), (152, 106), (152, 107), (152, 108), (152, 109), (152, 110), (152, 111), (152, 112), (152, 113), (152, 114), (152, 115), (152, 119), (152, 121), (152, 132), (152, 143), (152, 144), (153, 89), (153, 91), (153, 93), (153, 96), (153, 98), (153, 99), (153, 100), (153, 101), (153, 102), (153, 103), (153, 104), (153, 105), (153, 106), (153, 107), (153, 108), (153, 109), (153, 110), (153, 111), (153, 112), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 122), (153, 124), (153, 133), (153, 143), (154, 88), (154, 90), (154, 92), (154, 98), (154, 100), (154, 101), (154, 102), (154, 103), (154, 104), (154, 105), (154, 106), (154, 107), (154, 108), (154, 109), (154, 110), (154, 111), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 125), (154, 133), (154, 142), (154, 143), (155, 88), (155, 91), (155, 98), (155, 100), (155, 101), (155, 102), (155, 103), (155, 104), (155, 105), (155, 106), (155, 107), (155, 108), (155, 109), (155, 110), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 132), (155, 133), (155, 142), (155, 143), (156, 87), (156, 90), (156, 99), (156, 101), (156, 102), (156, 103), (156, 104), (156, 105), (156, 106), (156, 107), (156, 108), (156, 109), (156, 110), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (156, 125), (156, 128), (156, 133), (156, 142), (157, 86), (157, 89), (157, 100), (157, 102), (157, 103), (157, 104), (157, 105), (157, 106), (157, 107), (157, 108), (157, 109), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 123), (157, 124), (157, 125), (157, 126), (157, 129), (157, 130), (157, 133), (157, 141), (157, 142), (158, 85), (158, 88), (158, 100), (158, 102), (158, 103), (158, 104), (158, 105), (158, 106), (158, 107), (158, 108), (158, 109), (158, 110), (158, 111), (158, 112), (158, 113), (158, 114), (158, 115), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 121), (158, 122), (158, 123), (158, 124), (158, 125), (158, 126), (158, 127), (158, 128), (158, 132), (158, 133), (158, 135), (158, 140), (158, 142), (159, 84), (159, 86), (159, 99), (159, 100), (159, 102), (159, 103), (159, 104), (159, 105), (159, 106), (159, 107), (159, 108), (159, 109), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 116), (159, 117), (159, 118), (159, 119), (159, 120), (159, 121), (159, 122), (159, 123), (159, 124), (159, 125), (159, 126), (159, 127), (159, 128), (159, 129), (159, 130), (159, 131), (159, 132), (159, 133), (159, 139), (159, 142), (160, 83), (160, 85), (160, 99), (160, 101), (160, 102), (160, 103), (160, 104), (160, 105), (160, 106), (160, 107), (160, 108), (160, 109), (160, 110), (160, 111), (160, 112), (160, 113), (160, 114), (160, 118), (160, 119), (160, 120), (160, 121), (160, 124), (160, 125), (160, 126), (160, 127), (160, 128), (160, 129), (160, 130), (160, 131), (160, 132), (160, 133), (160, 134), (160, 135), (160, 137), (160, 140), (160, 142), (161, 99), (161, 101), (161, 102), (161, 103), (161, 104), (161, 105), (161, 106), (161, 107), (161, 108), (161, 109), (161, 110), (161, 111), (161, 112), (161, 113), (161, 116), (161, 122), (161, 125), (161, 126), (161, 127), (161, 128), (161, 129), (161, 130), (161, 131), (161, 132), (161, 133), (161, 134), (161, 135), (161, 136), (161, 139), (161, 140), (161, 141), (161, 142), (161, 143), (162, 99), (162, 101), (162, 102), (162, 103), (162, 104), (162, 105), (162, 106), (162, 107), (162, 108), (162, 109), (162, 110), (162, 111), (162, 112), (162, 114), (162, 118), (162, 120), (162, 124), (162, 126), (162, 127), (162, 128), (162, 129), (162, 130), (162, 131), (162, 132), (162, 133), (162, 134), (162, 135), (162, 136), (162, 137), (162, 138), (162, 139), (162, 140), (162, 141), (163, 98), (163, 100), (163, 101), (163, 102), (163, 103), (163, 104), (163, 105), (163, 106), (163, 107), (163, 108), (163, 109), (163, 110), (163, 111), (163, 113), (163, 125), (163, 127), (163, 128), (163, 129), (163, 130), (163, 131), (163, 132), (163, 133), (163, 134), (163, 135), (163, 136), (163, 137), (163, 138), (163, 139), (163, 140), (163, 141), (163, 143), (164, 98), (164, 100), (164, 101), (164, 102), (164, 103), (164, 104), (164, 105), (164, 106), (164, 107), (164, 108), (164, 109), (164, 110), (164, 112), (164, 126), (164, 128), (164, 129), (164, 130), (164, 131), (164, 132), (164, 133), (164, 134), (164, 135), (164, 136), (164, 137), (164, 138), (164, 139), (164, 140), (164, 142), (165, 96), (165, 98), (165, 99), (165, 100), (165, 101), (165, 102), (165, 103), (165, 104), (165, 107), (165, 108), (165, 109), (165, 110), (165, 111), (165, 112), (165, 126), (165, 128), (165, 129), (165, 130), (165, 131), (165, 132), (165, 133), (165, 134), (165, 135), (165, 136), (165, 137), (165, 138), (165, 139), (165, 140), (165, 142), (166, 92), (166, 93), (166, 94), (166, 95), (166, 98), (166, 99), (166, 100), (166, 101), (166, 102), (166, 105), (166, 107), (166, 108), (166, 109), (166, 111), (166, 126), (166, 128), (166, 129), (166, 130), (166, 131), (166, 132), (166, 133), (166, 134), (166, 135), (166, 136), (166, 137), (166, 138), (166, 139), (166, 140), (166, 142), (167, 88), (167, 89), (167, 90), (167, 96), (167, 97), (167, 98), (167, 99), (167, 100), (167, 101), (167, 102), (167, 103), (167, 104), (167, 107), (167, 108), (167, 109), (167, 111), (167, 127), (167, 129), (167, 130), (167, 131), (167, 132), (167, 133), (167, 134), (167, 135), (167, 136), (167, 137), (167, 138), (167, 139), (167, 140), (167, 142), (168, 85), (168, 90), (168, 91), (168, 92), (168, 93), (168, 96), (168, 97), (168, 98), (168, 99), (168, 100), (168, 102), (168, 107), (168, 109), (168, 111), (168, 127), (168, 129), (168, 130), (168, 131), (168, 132), (168, 133), (168, 134), (168, 138), (168, 139), (168, 140), (168, 141), (169, 84), (169, 86), (169, 87), (169, 88), (169, 94), (169, 95), (169, 97), (169, 98), (169, 99), (169, 100), (169, 102), (169, 108), (169, 111), (169, 127), (169, 129), (169, 130), (169, 131), (169, 132), (169, 133), (169, 136), (169, 137), (169, 140), (169, 142), (170, 96), (170, 98), (170, 99), (170, 100), (170, 102), (170, 108), (170, 111), (170, 127), (170, 129), (170, 130), (170, 131), (170, 132), (170, 134), (170, 138), (170, 141), (171, 97), (171, 99), (171, 100), (171, 102), (171, 109), (171, 111), (171, 127), (171, 129), (171, 130), (171, 131), (171, 133), (171, 140), (171, 141), (172, 97), (172, 99), (172, 100), (172, 101), (172, 103), (172, 109), (172, 112), (172, 127), (172, 129), (172, 130), (172, 131), (172, 133), (173, 97), (173, 99), (173, 100), (173, 101), (173, 103), (173, 110), (173, 112), (173, 127), (173, 129), (173, 130), (173, 131), (173, 133), (173, 141), (174, 96), (174, 101), (174, 103), (174, 110), (174, 112), (174, 127), (174, 133), (175, 95), (175, 98), (175, 99), (175, 100), (175, 104), (175, 110), (175, 112), (175, 127), (175, 129), (175, 130), (175, 133), (175, 142), (176, 97), (176, 101), (176, 106), (176, 110), (176, 112), (176, 127), (176, 128), (176, 132), (176, 133), (176, 143), (177, 94), (177, 95), (177, 107), (177, 108), (177, 110), (177, 112), (177, 126), (177, 128), (177, 132), (177, 133), (177, 143), (178, 104), (178, 106), (178, 107), (178, 108), (178, 109), (178, 112), (178, 126), (178, 128), (178, 133), (178, 134), (178, 144), (179, 105), (179, 110), (179, 112), (179, 125), (179, 128), (179, 133), (179, 134), (179, 144), (180, 112), (180, 113), (180, 125), (180, 128), (180, 134), (181, 113), (181, 128), (181, 134), (182, 114), (182, 128), (182, 134), (183, 115), (183, 134), (184, 134), ) coordinates_E1E1E1 = ((62, 122), (63, 123), (64, 122), (64, 123), (64, 140), (65, 122), (65, 123), (65, 140), (65, 141), (66, 122), (66, 123), (66, 140), (66, 142), (67, 97), (67, 122), (67, 123), (67, 130), (67, 140), (67, 144), (68, 96), (68, 97), (68, 122), (68, 130), (68, 140), (68, 142), (68, 144), (69, 96), (69, 97), (69, 122), (69, 130), (69, 131), (69, 139), (69, 141), (69, 143), (70, 95), (70, 97), (70, 122), (70, 130), (70, 131), (70, 139), (70, 142), (71, 91), (71, 92), (71, 93), (71, 97), (71, 130), (71, 132), (71, 138), (71, 141), (72, 84), (72, 86), (72, 87), (72, 88), (72, 89), (72, 90), (72, 95), (72, 97), (72, 121), (72, 130), (72, 133), (72, 137), (72, 139), (72, 141), (73, 82), (73, 91), (73, 92), (73, 93), (73, 94), (73, 95), (73, 96), (73, 98), (73, 121), (73, 130), (73, 132), (73, 134), (73, 135), (73, 138), (73, 139), (73, 141), (74, 82), (74, 84), (74, 85), (74, 86), (74, 87), (74, 88), (74, 91), (74, 92), (74, 93), (74, 94), (74, 95), (74, 96), (74, 97), (74, 99), (74, 117), (74, 119), (74, 121), (74, 130), (74, 132), (74, 133), (74, 137), (74, 138), (74, 139), (74, 141), (75, 89), (75, 93), (75, 94), (75, 95), (75, 96), (75, 97), (75, 117), (75, 121), (75, 130), (75, 132), (75, 133), (75, 134), (75, 135), (75, 136), (75, 137), (75, 138), (75, 139), (75, 141), (76, 91), (76, 94), (76, 95), (76, 96), (76, 97), (76, 98), (76, 101), (76, 105), (76, 106), (76, 107), (76, 117), (76, 119), (76, 121), (76, 130), (76, 132), (76, 133), (76, 134), (76, 135), (76, 136), (76, 137), (76, 138), (76, 139), (76, 141), (77, 93), (77, 96), (77, 97), (77, 98), (77, 99), (77, 102), (77, 103), (77, 104), (77, 106), (77, 117), (77, 119), (77, 121), (77, 129), (77, 131), (77, 132), (77, 133), (77, 134), (77, 135), (77, 136), (77, 137), (77, 138), (77, 139), (77, 140), (77, 141), (77, 143), (78, 94), (78, 97), (78, 98), (78, 99), (78, 100), (78, 101), (78, 106), (78, 117), (78, 119), (78, 120), (78, 122), (78, 129), (78, 131), (78, 132), (78, 133), (78, 134), (78, 135), (78, 136), (78, 137), (78, 138), (78, 139), (78, 140), (78, 141), (78, 143), (79, 96), (79, 99), (79, 100), (79, 101), (79, 102), (79, 103), (79, 104), (79, 106), (79, 117), (79, 119), (79, 120), (79, 121), (79, 123), (79, 128), (79, 130), (79, 131), (79, 132), (79, 133), (79, 134), (79, 135), (79, 136), (79, 137), (79, 138), (79, 139), (79, 140), (79, 141), (79, 143), (80, 97), (80, 99), (80, 100), (80, 101), (80, 102), (80, 103), (80, 104), (80, 106), (80, 117), (80, 119), (80, 120), (80, 121), (80, 122), (80, 124), (80, 127), (80, 129), (80, 130), (80, 131), (80, 132), (80, 133), (80, 134), (80, 135), (80, 136), (80, 137), (80, 138), (80, 139), (80, 140), (80, 141), (80, 143), (81, 87), (81, 98), (81, 99), (81, 100), (81, 101), (81, 102), (81, 103), (81, 104), (81, 105), (81, 107), (81, 117), (81, 119), (81, 120), (81, 121), (81, 122), (81, 123), (81, 125), (81, 128), (81, 129), (81, 130), (81, 131), (81, 132), (81, 133), (81, 134), (81, 135), (81, 136), (81, 137), (81, 138), (81, 139), (81, 140), (81, 141), (81, 143), (82, 99), (82, 101), (82, 102), (82, 103), (82, 104), (82, 105), (82, 106), (82, 108), (82, 117), (82, 119), (82, 120), (82, 121), (82, 122), (82, 123), (82, 124), (82, 127), (82, 128), (82, 129), (82, 130), (82, 131), (82, 132), (82, 133), (82, 134), (82, 135), (82, 136), (82, 137), (82, 138), (82, 139), (82, 140), (82, 141), (82, 143), (83, 99), (83, 100), (83, 101), (83, 102), (83, 103), (83, 104), (83, 105), (83, 106), (83, 107), (83, 109), (83, 117), (83, 119), (83, 120), (83, 121), (83, 122), (83, 123), (83, 124), (83, 125), (83, 126), (83, 127), (83, 128), (83, 129), (83, 130), (83, 131), (83, 132), (83, 133), (83, 134), (83, 135), (83, 136), (83, 137), (83, 138), (83, 139), (83, 140), (83, 141), (83, 143), (84, 100), (84, 102), (84, 103), (84, 104), (84, 105), (84, 106), (84, 107), (84, 108), (84, 110), (84, 116), (84, 118), (84, 119), (84, 120), (84, 121), (84, 122), (84, 123), (84, 124), (84, 125), (84, 126), (84, 127), (84, 128), (84, 129), (84, 130), (84, 131), (84, 132), (84, 133), (84, 134), (84, 135), (84, 136), (84, 137), (84, 138), (84, 139), (84, 140), (84, 142), (85, 99), (85, 101), (85, 102), (85, 103), (85, 104), (85, 105), (85, 106), (85, 107), (85, 108), (85, 109), (85, 112), (85, 115), (85, 116), (85, 117), (85, 118), (85, 119), (85, 120), (85, 121), (85, 122), (85, 123), (85, 124), (85, 125), (85, 126), (85, 127), (85, 128), (85, 129), (85, 130), (85, 131), (85, 132), (85, 133), (85, 134), (85, 135), (85, 136), (85, 140), (85, 142), (86, 95), (86, 99), (86, 101), (86, 102), (86, 103), (86, 104), (86, 105), (86, 106), (86, 107), (86, 108), (86, 109), (86, 110), (86, 113), (86, 114), (86, 116), (86, 117), (86, 118), (86, 119), (86, 120), (86, 121), (86, 122), (86, 123), (86, 124), (86, 125), (86, 126), (86, 127), (86, 128), (86, 129), (86, 130), (86, 131), (86, 132), (86, 133), (86, 134), (86, 135), (86, 139), (86, 141), (86, 143), (87, 95), (87, 99), (87, 100), (87, 101), (87, 102), (87, 103), (87, 104), (87, 105), (87, 106), (87, 107), (87, 108), (87, 109), (87, 110), (87, 111), (87, 112), (87, 115), (87, 116), (87, 117), (87, 118), (87, 119), (87, 120), (87, 121), (87, 122), (87, 123), (87, 124), (87, 125), (87, 126), (87, 127), (87, 128), (87, 129), (87, 130), (87, 131), (87, 132), (87, 133), (87, 134), (87, 136), (87, 140), (87, 142), (88, 97), (88, 100), (88, 101), (88, 102), (88, 103), (88, 104), (88, 105), (88, 106), (88, 107), (88, 108), (88, 109), (88, 110), (88, 111), (88, 112), (88, 113), (88, 114), (88, 115), (88, 116), (88, 117), (88, 118), (88, 119), (88, 120), (88, 121), (88, 122), (88, 123), (88, 124), (88, 125), (88, 126), (88, 127), (88, 128), (88, 129), (88, 132), (88, 133), (88, 135), (88, 141), (88, 143), (88, 146), (89, 100), (89, 102), (89, 103), (89, 104), (89, 105), (89, 106), (89, 107), (89, 108), (89, 109), (89, 110), (89, 111), (89, 112), (89, 113), (89, 114), (89, 115), (89, 116), (89, 117), (89, 118), (89, 119), (89, 120), (89, 121), (89, 122), (89, 123), (89, 124), (89, 125), (89, 126), (89, 127), (89, 130), (89, 131), (89, 134), (89, 142), (89, 144), (89, 146), (90, 100), (90, 102), (90, 103), (90, 104), (90, 105), (90, 106), (90, 107), (90, 108), (90, 109), (90, 110), (90, 111), (90, 112), (90, 113), (90, 114), (90, 115), (90, 116), (90, 117), (90, 118), (90, 119), (90, 120), (90, 121), (90, 122), (90, 123), (90, 124), (90, 125), (90, 126), (90, 129), (90, 132), (90, 134), (90, 143), (90, 146), (91, 100), (91, 102), (91, 103), (91, 104), (91, 105), (91, 106), (91, 107), (91, 108), (91, 109), (91, 110), (91, 111), (91, 112), (91, 113), (91, 114), (91, 115), (91, 116), (91, 117), (91, 118), (91, 119), (91, 120), (91, 121), (91, 122), (91, 123), (91, 124), (91, 125), (91, 127), (91, 133), (91, 143), (91, 145), (92, 100), (92, 102), (92, 103), (92, 104), (92, 105), (92, 106), (92, 107), (92, 108), (92, 109), (92, 110), (92, 111), (92, 112), (92, 113), (92, 114), (92, 115), (92, 116), (92, 117), (92, 118), (92, 119), (92, 120), (92, 121), (92, 122), (92, 123), (92, 126), (92, 133), (92, 143), (92, 145), (93, 99), (93, 101), (93, 102), (93, 103), (93, 104), (93, 105), (93, 106), (93, 107), (93, 108), (93, 109), (93, 110), (93, 111), (93, 112), (93, 113), (93, 114), (93, 115), (93, 116), (93, 117), (93, 118), (93, 119), (93, 125), (93, 133), (93, 144), (94, 98), (94, 100), (94, 101), (94, 102), (94, 103), (94, 104), (94, 105), (94, 106), (94, 107), (94, 108), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 115), (94, 116), (94, 120), (94, 121), (94, 123), (94, 133), (94, 144), (95, 100), (95, 101), (95, 102), (95, 103), (95, 104), (95, 105), (95, 106), (95, 107), (95, 108), (95, 109), (95, 110), (95, 111), (95, 112), (95, 113), (95, 114), (95, 117), (95, 118), (95, 119), (95, 133), (96, 70), (96, 96), (96, 99), (96, 100), (96, 101), (96, 102), (96, 103), (96, 104), (96, 105), (96, 106), (96, 107), (96, 108), (96, 109), (96, 110), (96, 111), (96, 112), (96, 115), (96, 116), (96, 133), (96, 134), (97, 69), (97, 71), (97, 96), (97, 98), (97, 99), (97, 100), (97, 101), (97, 102), (97, 103), (97, 104), (97, 105), (97, 106), (97, 107), (97, 108), (97, 109), (97, 110), (97, 113), (97, 134), (98, 69), (98, 73), (98, 75), (98, 95), (98, 97), (98, 98), (98, 99), (98, 100), (98, 101), (98, 102), (98, 103), (98, 104), (98, 105), (98, 106), (98, 107), (98, 108), (98, 109), (98, 111), (98, 134), (98, 135), (99, 68), (99, 70), (99, 71), (99, 77), (99, 87), (99, 89), (99, 90), (99, 91), (99, 92), (99, 93), (99, 96), (99, 97), (99, 98), (99, 99), (99, 100), (99, 101), (99, 102), (99, 103), (99, 104), (99, 105), (99, 106), (99, 107), (99, 108), (99, 110), (99, 134), (99, 135), (100, 68), (100, 70), (100, 71), (100, 72), (100, 73), (100, 74), (100, 75), (100, 80), (100, 86), (100, 95), (100, 96), (100, 97), (100, 98), (100, 99), (100, 100), (100, 101), (100, 102), (100, 103), (100, 104), (100, 105), (100, 106), (100, 107), (100, 109), (100, 135), (101, 68), (101, 70), (101, 71), (101, 72), (101, 73), (101, 74), (101, 75), (101, 76), (101, 77), (101, 81), (101, 82), (101, 85), (101, 88), (101, 89), (101, 90), (101, 91), (101, 92), (101, 93), (101, 94), (101, 95), (101, 96), (101, 97), (101, 98), (101, 99), (101, 100), (101, 101), (101, 102), (101, 103), (101, 104), (101, 105), (101, 106), (101, 108), (101, 134), (101, 135), (102, 68), (102, 70), (102, 71), (102, 72), (102, 73), (102, 74), (102, 75), (102, 76), (102, 77), (102, 78), (102, 79), (102, 80), (102, 83), (102, 86), (102, 87), (102, 88), (102, 89), (102, 90), (102, 97), (102, 98), (102, 99), (102, 100), (102, 101), (102, 102), (102, 103), (102, 104), (102, 105), (102, 107), (102, 134), (103, 68), (103, 71), (103, 72), (103, 73), (103, 74), (103, 75), (103, 76), (103, 77), (103, 78), (103, 79), (103, 80), (103, 81), (103, 82), (103, 84), (103, 85), (103, 86), (103, 87), (103, 88), (103, 91), (103, 92), (103, 93), (103, 94), (103, 95), (103, 99), (103, 100), (103, 101), (103, 102), (103, 103), (103, 104), (103, 105), (103, 107), (103, 133), (103, 134), (104, 69), (104, 72), (104, 73), (104, 74), (104, 75), (104, 76), (104, 77), (104, 78), (104, 79), (104, 80), (104, 81), (104, 82), (104, 83), (104, 84), (104, 85), (104, 86), (104, 90), (104, 97), (104, 99), (104, 100), (104, 101), (104, 102), (104, 103), (104, 104), (104, 105), (104, 107), (104, 133), (104, 134), (105, 71), (105, 73), (105, 74), (105, 75), (105, 76), (105, 77), (105, 78), (105, 79), (105, 80), (105, 81), (105, 82), (105, 83), (105, 84), (105, 85), (105, 88), (105, 99), (105, 101), (105, 102), (105, 103), (105, 104), (105, 105), (105, 107), (105, 108), (105, 132), (105, 133), (106, 72), (106, 74), (106, 75), (106, 76), (106, 77), (106, 78), (106, 79), (106, 80), (106, 81), (106, 82), (106, 83), (106, 86), (106, 100), (106, 102), (106, 103), (106, 104), (106, 105), (106, 106), (106, 108), (106, 123), (106, 131), (106, 133), (107, 73), (107, 75), (107, 76), (107, 77), (107, 78), (107, 79), (107, 80), (107, 81), (107, 82), (107, 85), (107, 100), (107, 102), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107), (107, 109), (107, 123), (107, 131), (107, 132), (108, 73), (108, 75), (108, 76), (108, 77), (108, 78), (108, 79), (108, 80), (108, 81), (108, 83), (108, 99), (108, 101), (108, 102), (108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 109), (108, 122), (108, 123), (108, 130), (108, 132), (109, 72), (109, 74), (109, 75), (109, 76), (109, 77), (109, 78), (109, 79), (109, 80), (109, 82), (109, 98), (109, 100), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 108), (109, 110), (109, 121), (109, 123), (109, 131), (110, 69), (110, 70), (110, 73), (110, 74), (110, 75), (110, 76), (110, 77), (110, 78), (110, 79), (110, 81), (110, 97), (110, 99), (110, 100), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 106), (110, 107), (110, 108), (110, 109), (110, 111), (110, 120), (110, 123), (111, 65), (111, 67), (111, 68), (111, 72), (111, 73), (111, 74), (111, 75), (111, 76), (111, 77), (111, 78), (111, 79), (111, 81), (111, 97), (111, 99), (111, 100), (111, 101), (111, 102), (111, 103), (111, 104), (111, 105), (111, 108), (111, 109), (111, 110), (111, 112), (111, 119), (111, 121), (111, 123), (112, 64), (112, 68), (112, 69), (112, 70), (112, 71), (112, 73), (112, 74), (112, 75), (112, 76), (112, 77), (112, 78), (112, 79), (112, 81), (112, 97), (112, 99), (112, 100), (112, 101), (112, 102), (112, 103), (112, 104), (112, 105), (112, 107), (112, 109), (112, 110), (112, 111), (112, 113), (112, 118), (112, 120), (112, 121), (112, 123), (113, 64), (113, 66), (113, 67), (113, 73), (113, 74), (113, 75), (113, 76), (113, 77), (113, 78), (113, 79), (113, 81), (113, 97), (113, 100), (113, 101), (113, 102), (113, 103), (113, 105), (113, 109), (113, 110), (113, 111), (113, 112), (113, 115), (113, 116), (113, 117), (113, 119), (113, 120), (113, 121), (113, 123), (114, 73), (114, 75), (114, 76), (114, 77), (114, 78), (114, 79), (114, 80), (114, 82), (114, 97), (114, 99), (114, 100), (114, 102), (114, 103), (114, 105), (114, 109), (114, 111), (114, 112), (114, 113), (114, 118), (114, 119), (114, 120), (114, 121), (114, 123), (115, 73), (115, 75), (115, 76), (115, 77), (115, 78), (115, 79), (115, 80), (115, 82), (115, 101), (115, 103), (115, 105), (115, 109), (115, 111), (115, 112), (115, 113), (115, 114), (115, 115), (115, 116), (115, 117), (115, 118), (115, 119), (115, 120), (115, 121), (115, 123), (116, 73), (116, 75), (116, 76), (116, 77), (116, 78), (116, 79), (116, 80), (116, 81), (116, 83), (116, 102), (116, 104), (116, 109), (116, 110), (116, 111), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 117), (116, 118), (116, 119), (116, 120), (116, 121), (116, 123), (117, 73), (117, 77), (117, 78), (117, 79), (117, 80), (117, 81), (117, 83), (117, 103), (117, 104), (117, 110), (117, 112), (117, 113), (117, 114), (117, 115), (117, 116), (117, 117), (117, 118), (117, 119), (117, 120), (117, 121), (117, 123), (118, 75), (118, 76), (118, 77), (118, 78), (118, 79), (118, 80), (118, 81), (118, 83), (118, 110), (118, 112), (118, 113), (118, 114), (118, 115), (118, 116), (118, 117), (118, 118), (118, 119), (118, 120), (118, 121), (118, 123), (119, 72), (119, 110), (119, 123), (120, 110), (120, 112), (120, 113), (120, 114), (120, 115), (120, 116), (120, 117), (120, 118), (120, 119), (120, 120), (120, 121), (120, 123), ) coordinates_CC3E4E = () coordinates_771286 = ((135, 113), (135, 115), (136, 111), (136, 116), (137, 113), (137, 114), (137, 115), (137, 118), (138, 110), (138, 112), (138, 113), (138, 114), (138, 115), (138, 116), (138, 119), (139, 109), (139, 111), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 121), (140, 109), (140, 111), (140, 112), (140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 119), (140, 121), (141, 109), (141, 111), (141, 112), (141, 113), (141, 114), (141, 115), (141, 116), (141, 117), (141, 118), (141, 119), (141, 121), (142, 109), (142, 111), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 119), (142, 120), (142, 122), (143, 109), (143, 111), (143, 112), (143, 113), (143, 114), (143, 115), (143, 116), (143, 117), (143, 118), (143, 119), (143, 120), (143, 121), (143, 122), (144, 109), (144, 111), (144, 112), (144, 113), (144, 114), (144, 115), (144, 116), (144, 117), (144, 118), (144, 119), (144, 120), (144, 121), (144, 123), (145, 110), (145, 113), (145, 114), (145, 115), (145, 116), (145, 117), (145, 118), (145, 119), (145, 120), (145, 121), (145, 122), (145, 124), (146, 111), (146, 114), (146, 115), (146, 116), (146, 117), (146, 118), (146, 119), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (147, 112), (147, 113), (147, 117), (147, 118), (147, 119), (147, 120), (147, 121), (147, 122), (147, 123), (147, 125), (148, 114), (148, 116), (148, 120), (148, 121), (148, 122), (148, 123), (148, 124), (149, 117), (149, 119), (149, 123), (149, 124), (149, 125), (149, 128), (150, 120), (150, 122), (150, 125), (150, 126), (150, 129), (151, 123), (151, 124), (151, 127), (151, 128), (151, 130), (152, 128), (152, 130), (153, 127), (153, 130), (154, 128), (154, 130), (155, 130), ) coordinates_781286 = ((91, 131), (92, 129), (92, 131), (93, 128), (93, 131), (94, 126), (94, 129), (95, 125), (95, 128), (96, 121), (96, 122), (96, 123), (96, 124), (97, 118), (97, 125), (98, 115), (98, 116), (98, 117), (98, 120), (98, 121), (98, 122), (98, 124), (99, 113), (99, 118), (99, 119), (99, 120), (99, 121), (99, 122), (99, 124), (100, 112), (100, 115), (100, 116), (100, 117), (100, 118), (100, 119), (100, 120), (100, 121), (100, 123), (101, 110), (101, 113), (101, 114), (101, 115), (101, 116), (101, 117), (101, 118), (101, 119), (101, 120), (101, 122), (102, 110), (102, 112), (102, 113), (102, 114), (102, 115), (102, 116), (102, 117), (102, 118), (102, 119), (102, 120), (102, 122), (103, 109), (103, 111), (103, 112), (103, 113), (103, 114), (103, 115), (103, 116), (103, 117), (103, 118), (103, 119), (103, 120), (103, 122), (104, 110), (104, 111), (104, 112), (104, 113), (104, 114), (104, 115), (104, 116), (104, 117), (104, 118), (104, 119), (104, 120), (104, 122), (105, 110), (105, 112), (105, 113), (105, 114), (105, 115), (105, 116), (105, 117), (105, 118), (105, 119), (105, 120), (105, 121), (106, 110), (106, 112), (106, 113), (106, 114), (106, 115), (106, 116), (106, 117), (106, 118), (106, 119), (106, 121), (107, 111), (107, 113), (107, 114), (107, 115), (107, 116), (107, 117), (107, 118), (107, 120), (108, 112), (108, 114), (108, 115), (108, 116), (108, 117), (108, 118), (108, 120), (109, 113), (109, 115), (109, 116), (109, 119), (110, 114), (110, 118), (111, 115), (111, 116), ) coordinates_EE0000 = ((116, 71), (117, 70), (118, 69), (118, 70), (119, 68), (119, 70), ) coordinates_CF2090 = ((163, 116), (164, 114), (164, 117), (164, 118), (164, 119), (164, 121), (165, 114), (165, 116), (165, 121), (166, 113), (166, 115), (166, 116), (166, 117), (166, 118), (166, 119), (166, 121), (167, 113), (167, 115), (167, 116), (167, 117), (167, 118), (167, 119), (167, 121), (168, 113), (168, 115), (168, 116), (168, 117), (168, 118), (168, 119), (168, 121), (169, 113), (169, 115), (169, 116), (169, 117), (169, 118), (169, 119), (169, 121), (170, 114), (170, 116), (170, 117), (170, 118), (170, 119), (170, 121), (171, 114), (171, 116), (171, 117), (171, 118), (171, 119), (171, 121), (172, 114), (172, 116), (172, 117), (172, 120), (173, 114), (173, 116), (173, 119), (174, 114), (174, 117), (175, 114), (175, 116), (176, 114), (176, 116), (177, 114), (177, 115), (178, 114), (178, 115), (179, 114), (179, 115), (180, 108), (180, 115), (181, 109), (181, 110), (181, 116), (182, 110), (182, 116), (183, 111), (183, 112), (183, 117), (184, 111), (184, 113), (184, 117), (185, 112), (185, 114), (185, 118), (186, 112), (186, 116), (186, 117), (186, 119), (187, 113), (187, 119), (188, 114), (188, 116), (188, 117), (188, 119), ) coordinates_EFE68C = ((165, 124), (166, 124), (167, 124), (168, 124), (169, 123), (169, 125), (170, 123), (170, 125), (171, 123), (171, 125), (171, 135), (172, 122), (172, 125), (172, 135), (173, 122), (173, 125), (173, 135), (173, 136), (174, 120), (174, 123), (174, 125), (174, 135), (174, 136), (175, 119), (175, 122), (175, 123), (175, 125), (175, 135), (175, 137), (176, 118), (176, 120), (176, 121), (176, 122), (176, 124), (176, 135), (176, 137), (177, 118), (177, 120), (177, 121), (177, 122), (177, 124), (177, 130), (177, 136), (177, 138), (178, 117), (178, 119), (178, 120), (178, 121), (178, 123), (178, 130), (178, 131), (178, 136), (178, 138), (179, 117), (179, 119), (179, 120), (179, 121), (179, 123), (179, 130), (179, 131), (179, 136), (179, 138), (180, 118), (180, 120), (180, 122), (180, 130), (180, 131), (180, 136), (180, 138), (181, 118), (181, 120), (181, 121), (181, 122), (181, 123), (181, 130), (181, 132), (181, 136), (181, 138), (182, 119), (182, 121), (182, 122), (182, 123), (182, 125), (182, 132), (182, 136), (182, 139), (183, 119), (183, 121), (183, 122), (183, 123), (183, 126), (183, 131), (183, 132), (183, 136), (183, 138), (184, 120), (184, 122), (184, 123), (184, 124), (184, 126), (184, 131), (184, 132), (184, 136), (184, 138), (185, 120), (185, 122), (185, 123), (185, 124), (185, 125), (185, 127), (185, 131), (185, 132), (185, 136), (185, 138), (186, 121), (186, 123), (186, 124), (186, 125), (186, 127), (186, 130), (186, 132), (186, 133), (186, 134), (186, 138), (187, 121), (187, 123), (187, 124), (187, 125), (187, 126), (187, 127), (187, 129), (187, 134), (187, 135), (187, 136), (187, 138), (188, 122), (188, 124), (188, 125), (188, 130), (188, 131), (188, 132), (188, 133), (188, 137), (189, 122), (189, 126), (189, 127), (189, 128), (189, 129), (190, 122), (190, 124), (190, 125), ) coordinates_31CD32 = ((166, 144), (167, 144), (167, 146), (168, 145), (168, 147), (169, 145), (169, 149), (170, 144), (170, 146), (170, 147), (170, 148), (170, 152), (171, 137), (171, 143), (171, 145), (171, 146), (171, 147), (171, 148), (171, 152), (172, 138), (172, 143), (172, 145), (172, 146), (172, 147), (172, 148), (172, 150), (173, 138), (173, 139), (173, 143), (173, 145), (173, 146), (173, 147), (173, 148), (174, 139), (174, 143), (174, 145), (174, 146), (174, 148), (175, 139), (175, 140), (175, 144), (175, 147), (176, 140), (176, 141), (176, 145), (176, 147), (177, 140), (177, 141), (177, 146), (177, 148), (178, 141), (178, 146), (178, 148), (179, 141), (179, 142), (179, 146), (179, 149), (180, 141), (180, 142), (180, 145), (180, 149), (181, 141), (181, 142), (181, 145), (181, 148), (182, 141), (182, 143), (182, 147), (183, 140), (183, 141), (183, 142), (183, 146), (184, 140), (184, 142), (184, 143), (184, 145), (185, 140), (185, 142), (185, 144), (186, 141), (186, 143), (187, 142), ) coordinates_D02090 = ((57, 122), (57, 124), (57, 126), (58, 120), (58, 125), (59, 119), (59, 125), (60, 122), (60, 125), (61, 120), (61, 124), (61, 125), (62, 125), (63, 125), (64, 125), (65, 125), (66, 125), (67, 125), (69, 124), (70, 124), (71, 124), (72, 123), (73, 123), (74, 123), (75, 123), (75, 124), (76, 123), (76, 124), (77, 124), (78, 124), ) coordinates_F0E68C = ((57, 128), (57, 136), (58, 127), (58, 129), (58, 130), (58, 131), (58, 132), (58, 133), (58, 134), (58, 136), (59, 127), (59, 136), (60, 127), (60, 129), (60, 130), (60, 131), (60, 132), (60, 133), (60, 134), (60, 135), (60, 137), (61, 127), (61, 129), (61, 130), (61, 131), (61, 132), (61, 133), (61, 134), (61, 135), (61, 137), (62, 127), (62, 129), (62, 130), (62, 131), (62, 132), (62, 133), (62, 134), (62, 135), (62, 137), (63, 127), (63, 131), (63, 132), (63, 133), (63, 134), (63, 135), (63, 136), (63, 138), (64, 127), (64, 132), (64, 133), (64, 134), (64, 135), (64, 136), (64, 138), (65, 127), (65, 131), (65, 133), (65, 134), (65, 135), (65, 136), (65, 138), (66, 127), (66, 128), (66, 132), (66, 134), (66, 135), (66, 136), (66, 138), (67, 127), (67, 128), (67, 132), (67, 134), (67, 135), (67, 136), (67, 138), (68, 127), (68, 133), (68, 135), (68, 137), (69, 126), (69, 127), (69, 133), (69, 135), (69, 137), (70, 126), (70, 128), (70, 134), (70, 136), (71, 126), (71, 128), (71, 134), (71, 135), (72, 126), (72, 128), (73, 126), (73, 128), (74, 126), (74, 128), (75, 126), (75, 128), (76, 126), (76, 128), (77, 126), (77, 127), (78, 126), ) coordinates_32CD32 = ((57, 138), (58, 138), (58, 140), (59, 141), (60, 139), (60, 142), (61, 139), (61, 141), (61, 143), (62, 140), (62, 142), (62, 145), (62, 147), (63, 141), (63, 143), (64, 142), (64, 146), (64, 147), (65, 143), (65, 145), (65, 146), (65, 147), (65, 148), (65, 150), (66, 147), (66, 148), (66, 150), (67, 147), (67, 150), (68, 146), (68, 148), (68, 149), (68, 151), (69, 145), (69, 146), (69, 148), (69, 149), (69, 150), (69, 152), (70, 144), (70, 147), (70, 148), (70, 149), (70, 150), (70, 152), (71, 143), (71, 146), (71, 147), (71, 148), (71, 149), (71, 150), (71, 152), (72, 143), (72, 145), (72, 146), (72, 147), (72, 148), (72, 149), (72, 150), (72, 152), (73, 143), (73, 145), (73, 146), (73, 147), (73, 148), (73, 149), (73, 150), (73, 152), (74, 143), (74, 145), (74, 146), (74, 147), (74, 148), (74, 149), (74, 150), (74, 152), (75, 143), (75, 145), (75, 146), (75, 147), (75, 148), (75, 149), (75, 150), (75, 152), (76, 146), (76, 147), (76, 148), (76, 149), (76, 150), (76, 151), (76, 153), (77, 145), (77, 147), (77, 148), (77, 149), (77, 150), (77, 151), (77, 153), (78, 145), (78, 147), (78, 148), (78, 149), (78, 150), (78, 151), (78, 152), (78, 153), (78, 154), (79, 145), (79, 147), (79, 148), (79, 149), (79, 150), (79, 151), (79, 152), (79, 154), (80, 145), (80, 147), (80, 148), (80, 149), (80, 150), (80, 151), (80, 152), (80, 154), (81, 145), (81, 154), (82, 145), (82, 147), (82, 148), (82, 149), (82, 150), (82, 151), (82, 153), (83, 145), ) coordinates_01FF7F = ((129, 62), (130, 62), (130, 63), (131, 62), (131, 63), (132, 62), (132, 63), (133, 63), (134, 63), (135, 64), (136, 63), (136, 64), (137, 63), (137, 65), (137, 73), (137, 75), (138, 63), (138, 65), (138, 72), (139, 63), (139, 65), (139, 71), (139, 72), (139, 74), (139, 76), (140, 63), (140, 64), (140, 73), (141, 63), (141, 64), (142, 63), (142, 64), (143, 63), (143, 64), (143, 82), (143, 83), (144, 63), (144, 65), (144, 80), (145, 64), (145, 66), (145, 78), (146, 64), (146, 67), (146, 75), (146, 76), (147, 65), (147, 69), (147, 70), (147, 71), (147, 72), (147, 73), (147, 74), (148, 67), (148, 68), (148, 69), ) coordinates_00FF7F = ((81, 74), (81, 76), (82, 73), (82, 77), (83, 72), (83, 74), (83, 75), (83, 76), (83, 78), (84, 72), (84, 74), (84, 75), (84, 76), (84, 77), (84, 79), (85, 71), (85, 73), (85, 74), (85, 75), (85, 78), (86, 71), (86, 73), (86, 74), (86, 75), (86, 76), (87, 71), (87, 73), (87, 75), (88, 70), (88, 72), (88, 73), (88, 75), (89, 70), (89, 72), (89, 73), (89, 74), (89, 75), (89, 77), (90, 70), (90, 72), (90, 73), (90, 74), (90, 75), (90, 78), (91, 70), (91, 72), (91, 73), (91, 74), (91, 75), (91, 76), (91, 77), (91, 80), (92, 69), (92, 71), (92, 72), (92, 73), (92, 74), (92, 75), (92, 76), (92, 77), (92, 78), (92, 81), (93, 68), (93, 72), (93, 73), (93, 74), (93, 75), (93, 76), (93, 77), (93, 78), (93, 79), (93, 80), (93, 83), (94, 67), (94, 70), (94, 73), (94, 74), (94, 75), (94, 76), (94, 77), (94, 78), (94, 79), (94, 80), (94, 81), (94, 84), (94, 85), (95, 66), (95, 68), (95, 72), (95, 77), (95, 78), (95, 79), (95, 80), (95, 81), (95, 82), (95, 83), (95, 86), (95, 87), (96, 67), (96, 73), (96, 75), (96, 76), (96, 79), (96, 80), (96, 81), (96, 82), (96, 83), (96, 84), (96, 85), (96, 89), (96, 90), (96, 91), (96, 92), (96, 94), (97, 64), (97, 67), (97, 77), (97, 78), (97, 82), (97, 83), (97, 84), (97, 87), (97, 88), (97, 89), (97, 90), (97, 91), (97, 93), (98, 64), (98, 66), (98, 79), (98, 80), (98, 86), (99, 64), (99, 66), (99, 82), (99, 84), (99, 85), (100, 66), (101, 65), (101, 66), (102, 65), (102, 66), (102, 78), (102, 80), (103, 66), (103, 77), (103, 80), (104, 66), (104, 78), (104, 79), (105, 66), (106, 66), (106, 69), (107, 65), (107, 67), (107, 71), (108, 63), (108, 68), (108, 70), (109, 61), (109, 65), (109, 66), (109, 67), (110, 61), (110, 63), (111, 62), (112, 62), (113, 62), (114, 62), (114, 69), (114, 71), (115, 62), (115, 65), (115, 66), (115, 67), (115, 69), (116, 62), (116, 64), (116, 68), (117, 62), (117, 67), (118, 63), (118, 65), (118, 66), (118, 67), (119, 66), ) coordinates_FF6347 = ((89, 137), (90, 136), (90, 137), (91, 136), (91, 138), (92, 135), (92, 138), (93, 135), (93, 137), (93, 139), (94, 135), (94, 137), (94, 139), (95, 135), (95, 137), (95, 139), (96, 136), (96, 139), (97, 137), (97, 139), (98, 137), (98, 139), (99, 137), (99, 139), (99, 140), (100, 137), (100, 140), (101, 137), (101, 140), (102, 137), (102, 140), (103, 136), (103, 138), (103, 140), (104, 136), (104, 138), (104, 140), (105, 135), (105, 136), (105, 138), (105, 140), (106, 135), (106, 137), (106, 140), (107, 135), (107, 136), (107, 139), (108, 134), (108, 138), (109, 125), (109, 133), (109, 137), (110, 125), (110, 129), (110, 135), (110, 136), (111, 125), (111, 127), (111, 131), (112, 125), (112, 132), (113, 126), (113, 127), (113, 128), (113, 129), (113, 131), (114, 125), ) coordinates_DBD814 = ((137, 126), (137, 127), (138, 126), (139, 126), (139, 128), (140, 126), (140, 128), (141, 126), (141, 128), (142, 126), (142, 129), (143, 126), (143, 129), (144, 126), (144, 129), (145, 126), (145, 129), (146, 127), (146, 129), (147, 128), (147, 129), (148, 129), ) coordinates_DCD814 = ((96, 129), (96, 131), (97, 128), (97, 131), (98, 127), (98, 129), (98, 130), (98, 132), (99, 126), (99, 128), (99, 129), (99, 130), (99, 132), (100, 126), (100, 127), (100, 128), (100, 129), (100, 130), (100, 132), (101, 126), (101, 127), (101, 128), (101, 129), (101, 130), (101, 132), (102, 125), (102, 126), (102, 127), (102, 128), (102, 129), (102, 130), (102, 132), (103, 125), (103, 126), (103, 127), (103, 128), (103, 129), (103, 131), (104, 125), (104, 126), (104, 127), (104, 128), (104, 130), (105, 126), (105, 128), (105, 130), (106, 125), (106, 126), (106, 127), (106, 129), (107, 126), (107, 129), (108, 128), (109, 127), ) coordinates_2E8B57 = ((60, 117), (61, 117), (61, 118), (62, 117), (62, 119), (63, 118), (63, 119), (64, 118), (65, 118), (65, 120), (66, 118), (66, 120), (67, 118), (67, 120), (68, 116), (68, 118), (68, 120), (69, 115), (69, 118), (69, 120), (70, 115), (70, 117), (70, 118), (70, 120), (71, 115), (71, 120), (72, 114), (72, 117), (72, 119), (73, 114), (74, 114), (74, 115), (75, 113), (75, 114), (76, 113), (76, 114), (77, 113), (77, 114), (78, 113), (79, 113), (79, 115), (80, 113), (80, 115), (81, 114), (81, 115), (82, 115), ) coordinates_CC5C5C = ((140, 141), (141, 141), (141, 142), (142, 141), (142, 142), (143, 141), (143, 143), (144, 141), (144, 144), (145, 141), (145, 144), (146, 141), (146, 143), (146, 145), (147, 141), (147, 143), (147, 144), (147, 146), (148, 141), (148, 146), (149, 141), (149, 144), (149, 145), (149, 147), (150, 140), (150, 142), (150, 146), (150, 148), (151, 140), (151, 142), (151, 146), (151, 148), (152, 139), (152, 141), (152, 146), (152, 149), (153, 139), (153, 141), (153, 146), (153, 149), (154, 138), (154, 140), (154, 145), (154, 147), (154, 149), (155, 138), (155, 140), (155, 145), (155, 147), (155, 148), (156, 137), (156, 139), (156, 145), (156, 147), (156, 149), (157, 137), (157, 139), (157, 144), (157, 146), (157, 147), (157, 149), (158, 137), (158, 144), (158, 146), (158, 147), (158, 148), (159, 144), (159, 146), (159, 147), (159, 148), (159, 149), (159, 152), (159, 153), (160, 144), (160, 146), (160, 147), (160, 148), (160, 149), (160, 150), (160, 151), (160, 153), (161, 145), (161, 147), (161, 148), (161, 149), (161, 150), (161, 151), (161, 152), (161, 154), (162, 146), (162, 148), (162, 149), (162, 150), (162, 151), (162, 152), (162, 154), (163, 145), (163, 147), (163, 148), (163, 149), (163, 150), (163, 151), (163, 152), (163, 154), (164, 144), (164, 147), (164, 148), (164, 149), (164, 150), (164, 151), (164, 153), (165, 146), (165, 149), (165, 150), (165, 151), (165, 153), (166, 148), (166, 151), (166, 153), (167, 149), (167, 153), (168, 151), (168, 152), ) coordinates_CD5C5C = ((84, 148), (84, 149), (84, 150), (84, 151), (84, 153), (85, 145), (85, 147), (85, 153), (86, 146), (86, 148), (86, 149), (86, 150), (86, 151), (86, 152), (86, 154), (87, 147), (87, 149), (87, 150), (87, 151), (87, 153), (88, 138), (88, 139), (88, 148), (88, 150), (88, 152), (89, 139), (89, 140), (89, 149), (89, 151), (90, 141), (90, 148), (90, 150), (91, 140), (91, 141), (91, 148), (91, 150), (92, 141), (92, 147), (92, 149), (93, 141), (93, 147), (93, 148), (94, 141), (94, 142), (94, 146), (94, 148), (95, 141), (95, 142), (95, 147), (96, 142), (96, 144), (96, 146), (97, 142), (97, 145), (98, 142), (98, 144), (99, 142), (99, 144), (100, 142), (101, 142), (101, 143), (102, 142), (102, 143), (103, 142), ) coordinates_779FB0 = ((114, 163), (114, 165), (115, 162), (115, 167), (116, 161), (116, 164), (116, 165), (116, 169), (117, 160), (117, 162), (117, 163), (117, 164), (117, 165), (117, 166), (117, 167), (117, 170), (117, 171), (118, 158), (118, 161), (118, 162), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 172), (118, 173), (118, 175), (119, 158), (119, 160), (119, 161), (119, 162), (119, 163), (119, 164), (119, 165), (119, 166), (119, 167), (119, 168), (119, 169), (119, 170), (119, 171), (119, 176), (120, 158), (120, 160), (120, 161), (120, 162), (120, 163), (120, 164), (120, 165), (120, 166), (120, 167), (120, 168), (120, 169), (120, 170), (120, 171), (120, 172), (120, 173), (120, 174), (120, 175), (120, 177), (121, 159), (121, 161), (121, 162), (121, 163), (121, 164), (121, 165), (121, 166), (121, 167), (121, 168), (121, 169), (121, 170), (121, 171), (121, 172), (121, 173), (121, 174), (121, 175), (121, 176), (121, 178), (122, 159), (122, 161), (122, 162), (122, 163), (122, 164), (122, 165), (122, 166), (122, 167), (122, 168), (122, 169), (122, 170), (122, 171), (122, 172), (122, 173), (122, 174), (122, 175), (122, 176), (122, 177), (122, 179), (123, 159), (123, 161), (123, 162), (123, 163), (123, 164), (123, 165), (123, 166), (123, 167), (123, 168), (123, 169), (123, 170), (123, 171), (123, 172), (123, 173), (123, 174), (123, 175), (123, 176), (123, 177), (123, 178), (123, 180), (124, 159), (124, 161), (124, 162), (124, 163), (124, 164), (124, 165), (124, 166), (124, 167), (124, 168), (124, 169), (124, 170), (124, 171), (124, 172), (124, 173), (124, 174), (124, 175), (124, 176), (124, 177), (124, 178), (124, 180), (125, 158), (125, 160), (125, 161), (125, 162), (125, 163), (125, 164), (125, 165), (125, 166), (125, 167), (125, 168), (125, 169), (125, 170), (125, 171), (125, 172), (125, 173), (125, 174), (125, 175), (125, 176), (125, 177), (125, 178), (125, 179), (125, 181), (126, 158), (126, 160), (126, 161), (126, 162), (126, 163), (126, 164), (126, 165), (126, 166), (126, 167), (126, 168), (126, 169), (126, 170), (126, 171), (126, 172), (126, 173), (126, 174), (126, 175), (126, 176), (126, 177), (126, 178), (126, 181), (127, 158), (127, 160), (127, 161), (127, 162), (127, 163), (127, 164), (127, 165), (127, 166), (127, 167), (127, 168), (127, 169), (127, 170), (127, 171), (127, 172), (127, 173), (127, 174), (127, 175), (127, 176), (127, 180), (128, 157), (128, 159), (128, 160), (128, 161), (128, 162), (128, 163), (128, 164), (128, 165), (128, 166), (128, 167), (128, 168), (128, 169), (128, 170), (128, 171), (128, 172), (128, 173), (128, 174), (128, 175), (128, 178), (129, 157), (129, 159), (129, 160), (129, 161), (129, 162), (129, 163), (129, 164), (129, 165), (129, 166), (129, 167), (129, 168), (129, 169), (129, 170), (129, 171), (129, 176), (130, 157), (130, 159), (130, 160), (130, 161), (130, 162), (130, 163), (130, 164), (130, 165), (130, 166), (130, 167), (130, 168), (130, 169), (130, 173), (130, 175), (131, 158), (131, 160), (131, 161), (131, 162), (131, 163), (131, 164), (131, 165), (131, 166), (131, 167), (131, 170), (131, 171), (132, 159), (132, 161), (132, 162), (132, 163), (132, 164), (132, 165), (132, 168), (133, 160), (133, 162), (133, 163), (133, 164), (133, 167), (134, 161), (134, 163), (134, 165), (135, 162), (135, 164), (136, 163), ) coordinates_FEA600 = ((158, 97), (159, 97), (160, 96), (160, 97), (161, 95), (161, 97), (162, 96), (163, 90), (163, 92), (163, 93), (163, 96), (164, 88), (164, 91), (164, 92), (164, 93), (164, 94), (165, 87), (165, 89), (166, 85), (167, 80), (167, 82), (167, 83), (167, 84), (168, 78), (168, 82), (168, 105), (169, 78), (169, 80), (169, 82), (169, 104), (170, 78), (170, 80), (170, 81), (170, 82), (170, 90), (170, 92), (170, 104), (170, 106), (171, 78), (171, 80), (171, 84), (171, 85), (171, 86), (171, 87), (171, 88), (171, 89), (171, 95), (171, 105), (171, 106), (172, 81), (172, 82), (172, 90), (172, 91), (172, 92), (172, 93), (172, 95), (172, 105), (172, 107), (173, 79), (173, 80), (173, 84), (173, 87), (173, 88), (173, 89), (173, 90), (173, 91), (173, 92), (173, 94), (173, 105), (173, 107), (174, 85), (174, 87), (174, 88), (174, 89), (174, 90), (174, 91), (174, 92), (174, 94), (174, 106), (174, 108), (175, 88), (175, 90), (175, 91), (175, 93), (175, 108), (176, 88), (176, 90), (176, 92), (177, 88), (177, 90), (177, 92), (177, 98), (177, 100), (178, 88), (178, 90), (178, 91), (178, 92), (178, 97), (178, 101), (179, 88), (179, 91), (179, 92), (179, 93), (179, 94), (179, 95), (179, 98), (179, 99), (179, 100), (179, 102), (180, 88), (180, 97), (180, 98), (180, 99), (180, 100), (180, 101), (180, 103), (180, 106), (181, 91), (181, 92), (181, 96), (181, 101), (181, 102), (181, 105), (181, 107), (182, 94), (182, 95), (182, 96), (182, 98), (182, 99), (182, 100), (182, 103), (182, 107), (183, 96), (183, 101), (183, 105), (183, 106), (183, 108), (184, 103), (184, 105), (184, 106), (184, 107), (184, 109), (185, 105), (185, 107), (185, 108), (185, 110), ) coordinates_FEA501 = ((60, 107), (60, 109), (60, 110), (60, 111), (60, 112), (60, 114), (61, 103), (61, 104), (61, 105), (61, 106), (61, 107), (61, 108), (61, 109), (61, 110), (61, 113), (61, 115), (62, 96), (62, 98), (62, 99), (62, 100), (62, 101), (62, 102), (62, 107), (62, 108), (62, 109), (62, 110), (62, 111), (62, 112), (62, 115), (63, 95), (63, 103), (63, 104), (63, 105), (63, 106), (63, 107), (63, 108), (63, 110), (63, 113), (63, 115), (64, 93), (64, 99), (64, 100), (64, 101), (64, 102), (64, 103), (64, 104), (64, 105), (64, 106), (64, 107), (64, 108), (64, 110), (64, 114), (64, 116), (65, 91), (65, 92), (65, 97), (65, 98), (65, 99), (65, 100), (65, 101), (65, 102), (65, 103), (65, 104), (65, 105), (65, 106), (65, 107), (65, 108), (65, 110), (65, 115), (65, 116), (66, 87), (66, 89), (66, 90), (66, 93), (66, 95), (66, 99), (66, 101), (66, 102), (66, 103), (66, 104), (66, 105), (66, 106), (66, 107), (66, 108), (66, 110), (66, 115), (66, 116), (67, 86), (67, 91), (67, 92), (67, 93), (67, 94), (67, 99), (67, 101), (67, 102), (67, 103), (67, 104), (67, 105), (67, 106), (67, 107), (67, 109), (68, 82), (68, 84), (68, 87), (68, 94), (68, 99), (68, 101), (68, 102), (68, 103), (68, 104), (68, 105), (68, 106), (68, 107), (68, 109), (69, 81), (69, 88), (69, 89), (69, 90), (69, 91), (69, 93), (69, 99), (69, 101), (69, 102), (69, 103), (69, 104), (69, 105), (69, 106), (69, 107), (69, 109), (70, 80), (70, 83), (70, 84), (70, 85), (70, 86), (70, 87), (70, 99), (70, 101), (70, 102), (70, 103), (70, 104), (70, 105), (70, 106), (70, 108), (71, 79), (71, 82), (71, 99), (71, 101), (71, 102), (71, 103), (71, 104), (71, 105), (71, 106), (71, 108), (72, 78), (72, 80), (72, 100), (72, 102), (72, 103), (72, 104), (72, 105), (72, 107), (72, 108), (73, 77), (73, 80), (73, 100), (73, 107), (74, 76), (74, 79), (74, 101), (74, 103), (74, 104), (74, 105), (74, 107), (75, 76), (75, 78), (75, 80), (76, 77), (76, 79), (76, 80), (76, 81), (76, 82), (76, 83), (76, 84), (76, 85), (76, 87), (77, 77), (77, 79), (77, 80), (77, 89), (78, 77), (78, 79), (78, 80), (78, 81), (78, 82), (78, 83), (78, 84), (78, 91), (79, 77), (79, 79), (79, 80), (79, 81), (79, 82), (79, 83), (79, 84), (79, 86), (79, 87), (79, 93), (80, 77), (80, 80), (80, 81), (80, 82), (80, 84), (80, 88), (80, 91), (80, 94), (81, 78), (81, 81), (81, 82), (81, 84), (81, 90), (81, 92), (81, 93), (81, 96), (82, 79), (82, 84), (82, 86), (82, 91), (82, 93), (82, 94), (82, 97), (83, 80), (83, 82), (83, 83), (83, 87), (83, 88), (83, 92), (83, 93), (83, 97), (84, 85), (84, 86), (84, 90), (84, 91), (84, 92), (84, 93), (84, 95), (84, 97), (85, 87), (85, 93), (85, 96), (85, 97), (86, 90), (86, 91), (86, 93), (86, 97), ) coordinates_D2B48C = ((64, 112), (65, 112), (66, 112), (66, 113), (67, 112), (67, 114), (68, 111), (68, 113), (69, 111), (69, 113), (70, 111), (70, 113), (71, 110), (71, 112), (72, 110), (72, 112), (73, 110), (73, 112), (74, 109), (74, 111), (75, 109), (75, 111), (76, 109), (76, 111), (77, 109), (77, 111), (78, 108), (78, 110), (79, 108), (79, 110), (80, 109), (80, 111), (81, 110), (81, 111), (82, 111), (82, 112), (83, 112), (83, 113), (84, 113), ) coordinates_DCF8A4 = ((98, 155), (98, 157), (99, 154), (99, 158), (100, 153), (100, 155), (100, 156), (100, 157), (100, 159), (101, 152), (101, 154), (101, 155), (101, 156), (101, 157), (101, 159), (102, 151), (102, 154), (102, 155), (102, 156), (102, 157), (102, 159), (103, 151), (103, 153), (103, 154), (103, 155), (103, 156), (103, 157), (103, 158), (103, 159), (103, 160), (104, 150), (104, 152), (104, 153), (104, 154), (104, 155), (104, 156), (104, 157), (104, 158), (104, 160), (105, 150), (105, 152), (105, 153), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 160), (106, 150), (106, 152), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 160), (107, 150), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 160), (108, 150), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157), (108, 158), (108, 160), (109, 150), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 160), (110, 150), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 160), (111, 152), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 161), (112, 153), (112, 155), (112, 156), (112, 157), (112, 158), (112, 159), (112, 160), (112, 162), (113, 153), (113, 154), (113, 155), (113, 156), (113, 157), (113, 158), (113, 159), (113, 162), (114, 154), (114, 156), (114, 157), (114, 158), (114, 161), (115, 153), (115, 155), (115, 156), (115, 159), (116, 152), (116, 154), (116, 155), (116, 156), (116, 158), (117, 148), (117, 150), (117, 151), (117, 152), (117, 153), (117, 154), (117, 156), (118, 147), ) coordinates_DBF8A4 = ((129, 149), (132, 156), (132, 157), (133, 155), (133, 157), (134, 154), (134, 156), (134, 158), (135, 155), (135, 156), (135, 157), (135, 159), (136, 150), (136, 154), (136, 155), (136, 156), (136, 157), (136, 158), (136, 160), (137, 151), (137, 153), (137, 154), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 161), (138, 150), (138, 152), (138, 153), (138, 154), (138, 155), (138, 156), (138, 157), (138, 158), (138, 159), (138, 161), (139, 150), (139, 152), (139, 153), (139, 154), (139, 155), (139, 156), (139, 157), (139, 158), (139, 159), (139, 160), (139, 162), (140, 150), (140, 152), (140, 153), (140, 154), (140, 155), (140, 156), (140, 157), (140, 158), (140, 159), (140, 160), (140, 162), (141, 150), (141, 152), (141, 153), (141, 154), (141, 155), (141, 156), (141, 157), (141, 158), (141, 159), (141, 160), (141, 162), (142, 151), (142, 152), (142, 153), (142, 154), (142, 155), (142, 156), (142, 157), (142, 158), (142, 159), (142, 161), (143, 151), (143, 153), (143, 154), (143, 155), (143, 156), (143, 157), (143, 158), (143, 159), (143, 161), (144, 152), (144, 154), (144, 155), (144, 156), (144, 157), (144, 158), (144, 159), (144, 161), (145, 152), (145, 154), (145, 155), (145, 156), (145, 157), (145, 158), (145, 160), (146, 153), (146, 155), (146, 156), (146, 157), (146, 158), (146, 160), (147, 156), (147, 157), (147, 159), (148, 154), (148, 157), (148, 159), (149, 155), (149, 159), (150, 156), (150, 158), (151, 157), ) coordinates_2ACCA4 = ((119, 148), (119, 149), (119, 150), (119, 151), (119, 152), (119, 153), (119, 155), (120, 147), (120, 156), (121, 146), (121, 148), (121, 149), (121, 150), (121, 151), (121, 152), (121, 153), (121, 154), (121, 156), (122, 146), (122, 148), (122, 149), (122, 150), (122, 151), (122, 152), (122, 153), (122, 154), (122, 155), (122, 157), (123, 146), (123, 148), (123, 149), (123, 150), (123, 151), (123, 152), (123, 153), (123, 154), (123, 155), (123, 157), (124, 146), (124, 148), (124, 149), (124, 150), (124, 151), (124, 152), (124, 153), (124, 154), (124, 156), (125, 147), (125, 149), (125, 150), (125, 151), (125, 152), (125, 153), (125, 154), (125, 156), (126, 147), (126, 148), (126, 156), (127, 149), (127, 151), (127, 152), (127, 153), (127, 155), ) coordinates_87324A = ((105, 92), (105, 95), (106, 90), (106, 94), (107, 88), (107, 92), (108, 86), (108, 87), (108, 90), (109, 85), (109, 88), (109, 90), (110, 84), (110, 86), (110, 87), (110, 89), (111, 83), (111, 85), (111, 86), (111, 87), (111, 89), (112, 83), (112, 85), (112, 86), (112, 87), (112, 89), (113, 84), (113, 86), (113, 87), (113, 89), (114, 84), (114, 86), (114, 87), (114, 89), (115, 85), (115, 87), (115, 89), (116, 85), (116, 87), (116, 89), (117, 86), (117, 89), (118, 86), (118, 88), (118, 89), (119, 85), (119, 86), (119, 88), (120, 75), (120, 76), (120, 77), (120, 78), (120, 79), (120, 80), (120, 81), (120, 82), (120, 83), (120, 84), (120, 88), (121, 68), (121, 70), (121, 71), (121, 72), (121, 73), (121, 74), (121, 75), (121, 77), (121, 78), (121, 79), (121, 80), (121, 81), (121, 82), (121, 83), (121, 84), (121, 85), (121, 86), (121, 88), (122, 69), (122, 70), (122, 71), (122, 72), (122, 73), (122, 74), ) coordinates_60CC60 = ((82, 162), (82, 163), (83, 161), (83, 164), (84, 160), (84, 162), (84, 164), (85, 159), (85, 161), (85, 162), (85, 163), (85, 165), (86, 160), (86, 161), (86, 162), (86, 163), (86, 165), (87, 155), (87, 159), (87, 160), (87, 161), (87, 162), (87, 163), (87, 165), (87, 170), (88, 157), (88, 158), (88, 159), (88, 160), (88, 161), (88, 162), (88, 163), (88, 164), (88, 165), (88, 166), (88, 169), (89, 154), (89, 156), (89, 157), (89, 158), (89, 159), (89, 160), (89, 161), (89, 162), (89, 163), (89, 164), (89, 165), (89, 167), (90, 153), (90, 155), (90, 156), (90, 157), (90, 158), (90, 159), (90, 160), (90, 161), (90, 162), (90, 163), (90, 164), (90, 165), (90, 167), (91, 152), (91, 154), (91, 155), (91, 156), (91, 157), (91, 158), (91, 159), (91, 160), (91, 161), (91, 162), (91, 163), (91, 164), (91, 165), (91, 167), (91, 170), (92, 151), (92, 153), (92, 154), (92, 155), (92, 156), (92, 157), (92, 158), (92, 159), (92, 160), (92, 161), (92, 162), (92, 163), (92, 164), (92, 165), (92, 166), (92, 167), (92, 168), (92, 170), (93, 151), (93, 153), (93, 154), (93, 155), (93, 156), (93, 157), (93, 158), (93, 159), (93, 160), (93, 161), (93, 162), (93, 163), (93, 164), (93, 165), (93, 166), (93, 167), (93, 169), (94, 150), (94, 152), (94, 153), (94, 154), (94, 155), (94, 157), (94, 158), (94, 159), (94, 160), (94, 161), (94, 162), (94, 163), (94, 164), (94, 165), (94, 166), (94, 167), (94, 169), (95, 149), (95, 151), (95, 152), (95, 153), (95, 156), (95, 159), (95, 160), (95, 161), (95, 162), (95, 163), (95, 164), (95, 165), (95, 166), (95, 167), (95, 169), (96, 148), (96, 150), (96, 151), (96, 152), (96, 155), (96, 157), (96, 160), (96, 161), (96, 162), (96, 163), (96, 164), (96, 165), (96, 166), (96, 167), (96, 169), (97, 148), (97, 150), (97, 151), (97, 153), (97, 159), (97, 161), (97, 162), (97, 163), (97, 164), (97, 165), (97, 166), (97, 167), (97, 168), (97, 170), (98, 147), (98, 149), (98, 150), (98, 152), (98, 160), (98, 162), (98, 163), (98, 164), (98, 165), (98, 166), (98, 167), (98, 168), (98, 169), (98, 171), (99, 146), (99, 148), (99, 149), (99, 150), (99, 152), (99, 160), (99, 162), (99, 163), (99, 164), (99, 165), (99, 166), (99, 167), (99, 168), (99, 169), (99, 171), (100, 146), (100, 148), (100, 149), (100, 151), (100, 161), (100, 163), (100, 164), (100, 165), (100, 166), (100, 167), (100, 168), (100, 169), (100, 170), (100, 172), (101, 145), (101, 147), (101, 148), (101, 150), (101, 161), (101, 162), (101, 164), (101, 165), (101, 166), (101, 167), (101, 168), (101, 169), (101, 170), (101, 172), (102, 145), (102, 147), (102, 149), (102, 162), (102, 164), (102, 165), (102, 166), (102, 167), (102, 168), (102, 169), (102, 170), (102, 172), (103, 145), (103, 148), (103, 162), (103, 164), (103, 165), (103, 166), (103, 167), (103, 168), (103, 169), (103, 170), (103, 171), (104, 144), (104, 146), (104, 148), (104, 162), (104, 164), (104, 165), (104, 166), (104, 167), (104, 168), (104, 170), (105, 143), (105, 145), (105, 146), (105, 148), (105, 162), (105, 164), (105, 165), (105, 166), (105, 167), (105, 168), (105, 170), (106, 143), (106, 145), (106, 146), (106, 148), (106, 162), (106, 164), (106, 165), (106, 166), (106, 167), (106, 168), (106, 170), (107, 141), (107, 143), (107, 144), (107, 145), (107, 147), (107, 162), (107, 164), (107, 165), (107, 166), (107, 167), (107, 168), (107, 169), (107, 171), (108, 140), (108, 143), (108, 144), (108, 145), (108, 147), (108, 162), (108, 164), (108, 165), (108, 166), (108, 167), (108, 168), (108, 169), (108, 170), (108, 172), (109, 139), (109, 141), (109, 142), (109, 143), (109, 144), (109, 145), (109, 147), (109, 162), (109, 164), (109, 165), (109, 166), (109, 167), (109, 168), (109, 169), (109, 170), (109, 171), (109, 173), (110, 138), (110, 140), (110, 141), (110, 142), (110, 143), (110, 144), (110, 145), (110, 146), (110, 148), (110, 163), (110, 165), (110, 166), (110, 167), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 174), (111, 137), (111, 139), (111, 140), (111, 141), (111, 142), (111, 143), (111, 144), (111, 145), (111, 146), (111, 147), (111, 149), (111, 164), (111, 167), (111, 168), (111, 169), (111, 170), (111, 171), (111, 172), (112, 137), (112, 139), (112, 140), (112, 141), (112, 142), (112, 143), (112, 144), (112, 145), (112, 146), (112, 147), (112, 148), (112, 150), (112, 164), (112, 166), (112, 169), (112, 170), (112, 171), (112, 172), (112, 174), (113, 136), (113, 138), (113, 139), (113, 140), (113, 141), (113, 142), (113, 143), (113, 144), (113, 145), (113, 146), (113, 147), (113, 148), (113, 149), (113, 151), (113, 167), (113, 171), (113, 173), (114, 137), (114, 138), (114, 139), (114, 140), (114, 141), (114, 142), (114, 143), (114, 144), (114, 145), (114, 146), (114, 147), (114, 151), (114, 169), (114, 172), (115, 135), (115, 138), (115, 139), (115, 140), (115, 141), (115, 142), (115, 143), (115, 144), (115, 145), (115, 148), (115, 150), (115, 151), (115, 172), (116, 136), (116, 137), (116, 140), (116, 141), (116, 142), (116, 143), (116, 144), (116, 145), (117, 138), (117, 141), (117, 142), (117, 143), (117, 145), (118, 140), (118, 143), (118, 145), (119, 141), (119, 145), (120, 143), (121, 144), ) coordinates_5FCC60 = ((126, 144), (127, 136), (127, 138), (127, 139), (127, 140), (127, 141), (127, 142), (127, 144), (128, 135), (128, 137), (128, 145), (129, 135), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 142), (129, 143), (129, 144), (129, 146), (129, 152), (129, 154), (129, 155), (130, 135), (130, 137), (130, 138), (130, 139), (130, 140), (130, 141), (130, 142), (130, 143), (130, 144), (130, 145), (130, 147), (130, 151), (130, 153), (130, 155), (131, 136), (131, 138), (131, 139), (131, 140), (131, 141), (131, 142), (131, 143), (131, 144), (131, 145), (131, 146), (131, 149), (131, 150), (131, 151), (131, 152), (131, 154), (132, 136), (132, 138), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 145), (132, 146), (132, 147), (132, 151), (132, 153), (132, 173), (132, 175), (133, 136), (133, 139), (133, 140), (133, 141), (133, 142), (133, 143), (133, 144), (133, 145), (133, 146), (133, 149), (133, 152), (133, 170), (133, 173), (133, 175), (134, 138), (134, 141), (134, 142), (134, 143), (134, 144), (134, 145), (134, 147), (134, 150), (134, 151), (134, 168), (134, 173), (134, 175), (135, 139), (135, 142), (135, 143), (135, 144), (135, 145), (135, 147), (135, 167), (135, 170), (135, 173), (135, 174), (135, 176), (136, 140), (136, 143), (136, 144), (136, 145), (136, 146), (136, 148), (136, 166), (136, 168), (136, 169), (136, 170), (136, 171), (136, 172), (136, 173), (136, 174), (136, 175), (136, 177), (137, 142), (137, 144), (137, 145), (137, 146), (137, 147), (137, 148), (137, 164), (137, 167), (137, 168), (137, 169), (137, 170), (137, 171), (137, 172), (137, 173), (137, 174), (137, 175), (137, 176), (137, 178), (138, 142), (138, 144), (138, 145), (138, 146), (138, 148), (138, 166), (138, 167), (138, 168), (138, 169), (138, 170), (138, 171), (138, 172), (138, 173), (138, 174), (138, 175), (138, 176), (138, 177), (138, 179), (139, 143), (139, 145), (139, 147), (139, 164), (139, 166), (139, 167), (139, 168), (139, 169), (139, 170), (139, 171), (139, 172), (139, 173), (139, 174), (139, 175), (139, 176), (139, 177), (139, 179), (140, 143), (140, 145), (140, 147), (140, 164), (140, 166), (140, 167), (140, 168), (140, 169), (140, 170), (140, 171), (140, 172), (140, 173), (140, 174), (140, 175), (140, 179), (141, 144), (141, 146), (141, 148), (141, 164), (141, 166), (141, 167), (141, 168), (141, 169), (141, 170), (141, 171), (141, 172), (141, 173), (141, 174), (141, 176), (141, 178), (142, 145), (142, 148), (142, 164), (142, 166), (142, 167), (142, 168), (142, 169), (142, 170), (142, 171), (142, 172), (142, 173), (142, 175), (143, 145), (143, 147), (143, 149), (143, 163), (143, 165), (143, 166), (143, 167), (143, 168), (143, 169), (143, 170), (143, 171), (143, 172), (144, 146), (144, 149), (144, 163), (144, 165), (144, 166), (144, 167), (144, 168), (144, 169), (144, 170), (144, 171), (144, 173), (145, 147), (145, 150), (145, 163), (145, 165), (145, 166), (145, 167), (145, 168), (145, 169), (145, 170), (145, 172), (146, 147), (146, 150), (146, 162), (146, 164), (146, 165), (146, 166), (146, 167), (146, 168), (146, 169), (146, 170), (146, 172), (147, 148), (147, 151), (147, 162), (147, 164), (147, 165), (147, 166), (147, 167), (147, 168), (147, 169), (147, 170), (147, 172), (148, 149), (148, 152), (148, 161), (148, 163), (148, 164), (148, 165), (148, 166), (148, 167), (148, 168), (148, 169), (148, 170), (148, 172), (149, 149), (149, 151), (149, 153), (149, 161), (149, 163), (149, 164), (149, 165), (149, 166), (149, 167), (149, 168), (149, 169), (149, 170), (149, 172), (150, 150), (150, 152), (150, 154), (150, 160), (150, 162), (150, 163), (150, 164), (150, 165), (150, 166), (150, 167), (150, 168), (150, 169), (150, 170), (150, 172), (151, 151), (151, 153), (151, 155), (151, 160), (151, 162), (151, 163), (151, 164), (151, 165), (151, 166), (151, 167), (151, 168), (151, 169), (151, 171), (152, 151), (152, 153), (152, 154), (152, 156), (152, 159), (152, 161), (152, 162), (152, 163), (152, 164), (152, 165), (152, 166), (152, 167), (152, 168), (152, 169), (152, 171), (153, 151), (153, 153), (153, 154), (153, 155), (153, 157), (153, 160), (153, 161), (153, 162), (153, 163), (153, 164), (153, 165), (153, 166), (153, 167), (153, 168), (153, 169), (153, 171), (154, 152), (154, 154), (154, 155), (154, 156), (154, 159), (154, 160), (154, 161), (154, 162), (154, 163), (154, 164), (154, 165), (154, 166), (154, 167), (154, 168), (154, 171), (155, 152), (155, 153), (155, 154), (155, 155), (155, 156), (155, 157), (155, 158), (155, 159), (155, 160), (155, 161), (155, 162), (155, 163), (155, 164), (155, 165), (155, 166), (155, 167), (155, 168), (155, 170), (156, 153), (156, 155), (156, 156), (156, 157), (156, 158), (156, 159), (156, 160), (156, 161), (156, 162), (156, 163), (156, 164), (156, 165), (156, 166), (156, 167), (156, 169), (157, 153), (157, 155), (157, 156), (157, 157), (157, 158), (157, 159), (157, 160), (157, 161), (157, 162), (157, 163), (157, 164), (157, 165), (157, 166), (157, 168), (158, 154), (158, 156), (158, 157), (158, 158), (158, 159), (158, 160), (158, 161), (158, 162), (158, 163), (158, 164), (158, 165), (158, 166), (158, 168), (159, 155), (159, 157), (159, 158), (159, 161), (159, 162), (159, 163), (159, 164), (159, 165), (159, 167), (160, 156), (160, 159), (160, 161), (160, 162), (160, 163), (160, 164), (160, 166), (161, 156), (161, 161), (161, 163), (161, 165), (162, 161), (162, 164), (163, 161), (163, 164), (164, 161), (164, 164), (165, 161), (165, 163), ) coordinates_F4DEB3 = ((144, 85), (145, 83), (145, 85), (146, 80), (146, 82), (146, 85), (147, 78), (147, 82), (147, 83), (147, 85), (148, 76), (148, 80), (148, 81), (148, 82), (148, 83), (148, 84), (148, 86), (149, 72), (149, 73), (149, 74), (149, 78), (149, 79), (149, 80), (149, 81), (149, 82), (149, 83), (149, 84), (149, 85), (149, 87), (150, 69), (150, 71), (150, 75), (150, 76), (150, 77), (150, 78), (150, 79), (150, 80), (150, 81), (150, 82), (150, 83), (150, 84), (150, 85), (150, 86), (150, 88), (151, 69), (151, 72), (151, 73), (151, 74), (151, 75), (151, 76), (151, 77), (151, 78), (151, 79), (151, 80), (151, 82), (151, 83), (151, 84), (151, 85), (151, 87), (152, 68), (152, 70), (152, 71), (152, 72), (152, 73), (152, 74), (152, 75), (152, 76), (152, 77), (152, 78), (152, 79), (152, 81), (152, 83), (152, 84), (152, 85), (152, 87), (153, 69), (153, 71), (153, 72), (153, 73), (153, 74), (153, 80), (153, 83), (153, 84), (153, 85), (153, 87), (154, 69), (154, 72), (154, 73), (154, 75), (154, 76), (154, 77), (154, 79), (154, 83), (154, 86), (155, 70), (155, 71), (155, 74), (155, 83), (155, 94), (155, 96), (156, 73), (156, 82), (156, 85), (156, 93), (156, 96), (157, 81), (157, 83), (157, 92), (157, 94), (157, 95), (158, 80), (158, 82), (158, 91), (158, 93), (158, 95), (159, 79), (159, 81), (159, 90), (159, 92), (159, 94), (160, 78), (160, 80), (160, 88), (160, 94), (161, 77), (161, 79), (161, 87), (161, 90), (161, 91), (161, 93), (162, 76), (162, 79), (162, 83), (162, 85), (162, 88), (163, 76), (163, 78), (163, 79), (163, 80), (163, 81), (163, 82), (163, 83), (163, 87), (164, 76), (164, 77), (164, 78), (164, 85), (165, 76), (165, 79), (165, 80), (165, 81), (165, 82), (165, 83), (165, 84), (166, 77), (166, 78), ) coordinates_FF00FE = ((123, 125), (124, 96), (124, 98), (124, 99), (124, 100), (124, 101), (124, 102), (124, 103), (124, 104), (124, 105), (124, 106), (124, 108), (125, 96), (125, 104), (125, 107), (125, 124), (126, 97), (126, 99), (126, 100), (126, 106), (126, 107), (127, 97), (127, 99), (127, 101), (127, 106), (127, 107), (127, 124), (128, 97), (128, 99), (128, 101), (128, 106), (128, 107), (128, 124), (129, 97), (129, 100), (129, 106), (130, 98), (130, 100), (130, 106), (130, 125), (130, 126), (131, 98), (131, 99), (131, 105), (131, 125), (131, 127), (131, 128), (131, 129), (132, 98), (132, 99), (132, 125), (132, 128), (132, 129), (132, 131), (133, 98), (133, 125), (133, 127), (133, 130), (133, 132), (134, 126), (134, 131), (134, 132), (135, 125), (135, 131), (135, 133), (136, 132), (136, 133), (137, 132), (137, 133), (138, 133), ) coordinates_FE00FF = ((106, 97), (106, 98), (107, 97), (108, 94), (109, 92), (109, 95), (110, 92), (110, 95), (111, 92), (111, 95), (112, 92), (112, 95), (113, 92), (113, 95), (114, 92), (114, 95), (114, 107), (115, 92), (115, 95), (115, 107), (116, 92), (116, 94), (116, 95), (116, 96), (116, 97), (116, 107), (117, 91), (117, 93), (117, 94), (117, 95), (117, 98), (117, 99), (117, 101), (117, 106), (117, 107), (118, 91), (118, 93), (118, 94), (118, 95), (118, 96), (118, 97), (118, 106), (118, 107), (118, 108), (119, 90), (119, 92), (119, 93), (119, 94), (119, 95), (119, 96), (119, 97), (119, 98), (119, 99), (119, 100), (119, 101), (119, 103), (119, 104), (119, 106), (119, 108), (120, 90), (120, 94), (120, 95), (120, 96), (120, 108), (121, 90), (121, 92), (121, 93), (121, 97), (121, 98), (121, 99), (121, 100), (121, 101), (121, 102), (121, 103), (121, 104), (121, 105), (121, 106), (121, 108), (122, 95), (122, 109), ) coordinates_26408B = ((124, 87), (124, 89), (124, 90), (124, 91), (124, 93), (124, 94), (125, 87), (125, 94), (126, 87), (126, 89), (126, 91), (126, 92), (126, 94), (127, 87), (127, 89), (127, 90), (127, 92), (127, 93), (127, 95), (128, 87), (128, 89), (128, 93), (128, 95), (129, 87), (129, 89), (129, 92), (129, 95), (130, 87), (130, 89), (130, 93), (130, 95), (131, 88), (131, 89), (131, 94), (131, 96), (132, 88), (132, 89), (132, 95), (132, 96), (133, 88), (133, 90), (133, 96), (134, 89), (134, 91), (135, 89), (135, 92), (136, 90), (137, 91), (137, 92), ) coordinates_798732 = ((124, 68), (124, 70), (124, 71), (124, 75), (124, 79), (124, 81), (124, 82), (124, 84), (125, 65), (125, 73), (125, 77), (125, 80), (125, 85), (126, 68), (126, 70), (126, 75), (126, 78), (126, 83), (126, 85), (127, 70), (127, 84), (127, 85), (128, 69), (128, 70), (128, 84), (128, 85), (129, 69), (129, 84), (129, 85), (130, 70), (130, 71), (130, 84), (130, 85), (131, 84), (131, 85), (132, 84), (132, 86), (133, 84), (133, 86), (134, 84), (134, 86), (135, 85), (135, 87), (136, 86), (136, 87), (137, 88), (138, 90), ) coordinates_F5DEB3 = ((85, 81), (85, 83), (86, 80), (86, 84), (86, 85), (87, 79), (87, 81), (87, 82), (87, 83), (87, 87), (87, 88), (88, 79), (88, 81), (88, 82), (88, 83), (88, 84), (88, 85), (88, 89), (88, 90), (88, 91), (88, 92), (89, 80), (89, 83), (89, 84), (89, 85), (89, 86), (89, 87), (89, 88), (89, 93), (89, 95), (90, 81), (90, 84), (90, 85), (90, 86), (90, 87), (90, 88), (90, 89), (90, 90), (90, 91), (90, 92), (90, 96), (90, 98), (91, 83), (91, 86), (91, 87), (91, 88), (91, 89), (91, 90), (91, 91), (91, 92), (91, 93), (91, 94), (91, 95), (91, 98), (92, 84), (92, 89), (92, 90), (92, 91), (92, 92), (92, 93), (92, 94), (92, 95), (92, 96), (92, 98), (93, 87), (93, 88), (93, 89), (93, 97), (94, 90), (94, 91), (94, 92), (94, 93), (94, 94), (94, 96), ) coordinates_016400 = ((134, 135), (135, 135), (136, 135), (136, 138), (137, 135), (137, 139), (138, 135), (138, 137), (138, 138), (138, 140), (139, 135), (139, 137), (139, 138), (139, 140), (140, 135), (140, 137), (140, 139), (141, 135), (141, 137), (141, 139), (142, 135), (142, 137), (142, 139), (143, 135), (143, 137), (143, 139), (144, 134), (144, 136), (144, 137), (144, 139), (145, 134), (145, 136), (145, 137), (145, 139), (146, 134), (146, 136), (146, 137), (146, 139), (147, 134), (147, 136), (147, 137), (147, 139), (148, 134), (148, 136), (148, 137), (148, 139), (149, 134), (149, 136), (149, 138), (150, 134), (150, 136), (150, 138), (151, 134), (151, 135), (151, 137), (152, 135), (152, 137), (153, 135), (153, 136), (154, 135), (154, 136), (155, 135), (156, 135), ) coordinates_B8EDC2 = ((121, 140), (121, 142), (122, 137), (122, 143), (123, 137), (123, 140), (123, 141), (123, 144), (124, 144), (125, 137), (125, 139), (125, 140), (125, 141), (125, 142), )
coordinates_e0_e1_e1 = ((123, 110), (123, 112), (123, 113), (123, 114), (123, 115), (123, 116), (123, 117), (123, 118), (123, 119), (123, 120), (123, 122), (124, 110), (124, 122), (125, 110), (125, 112), (125, 113), (125, 114), (125, 115), (125, 116), (125, 117), (125, 118), (125, 119), (125, 120), (125, 122), (126, 109), (126, 111), (126, 112), (126, 113), (126, 114), (126, 115), (126, 116), (126, 117), (126, 118), (126, 119), (126, 120), (126, 122), (127, 66), (127, 72), (127, 80), (127, 82), (127, 104), (127, 109), (127, 111), (127, 112), (127, 113), (127, 114), (127, 115), (127, 116), (127, 117), (127, 118), (127, 119), (127, 120), (127, 122), (128, 65), (128, 67), (128, 72), (128, 75), (128, 76), (128, 77), (128, 78), (128, 79), (128, 82), (128, 103), (128, 104), (128, 109), (128, 111), (128, 112), (128, 113), (128, 114), (128, 115), (128, 116), (128, 117), (128, 118), (128, 119), (128, 120), (128, 122), (129, 65), (129, 67), (129, 73), (129, 76), (129, 80), (129, 82), (129, 102), (129, 109), (129, 111), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 117), (129, 118), (129, 119), (129, 120), (129, 122), (130, 65), (130, 68), (130, 73), (130, 75), (130, 76), (130, 77), (130, 78), (130, 79), (130, 80), (130, 82), (130, 91), (130, 102), (130, 103), (130, 108), (130, 110), (130, 111), (130, 112), (130, 113), (130, 114), (130, 115), (130, 116), (130, 117), (130, 118), (130, 119), (130, 120), (130, 122), (131, 65), (131, 68), (131, 73), (131, 75), (131, 76), (131, 77), (131, 78), (131, 79), (131, 81), (131, 91), (131, 92), (131, 103), (131, 108), (131, 110), (131, 111), (131, 112), (131, 113), (131, 114), (131, 115), (131, 116), (131, 117), (131, 118), (131, 119), (131, 120), (131, 122), (132, 65), (132, 67), (132, 69), (132, 72), (132, 73), (132, 74), (132, 75), (132, 76), (132, 77), (132, 78), (132, 79), (132, 81), (132, 92), (132, 101), (132, 103), (132, 104), (132, 107), (132, 109), (132, 110), (132, 111), (132, 117), (132, 118), (132, 119), (132, 120), (132, 122), (133, 66), (133, 68), (133, 71), (133, 73), (133, 74), (133, 75), (133, 76), (133, 77), (133, 78), (133, 79), (133, 81), (133, 93), (133, 101), (133, 103), (133, 104), (133, 105), (133, 106), (133, 108), (133, 109), (133, 110), (133, 113), (133, 114), (133, 115), (133, 118), (133, 119), (133, 120), (133, 122), (134, 66), (134, 68), (134, 69), (134, 72), (134, 77), (134, 78), (134, 79), (134, 80), (134, 82), (134, 95), (134, 100), (134, 102), (134, 103), (134, 104), (134, 107), (134, 108), (134, 109), (134, 111), (134, 117), (134, 120), (134, 122), (134, 128), (135, 66), (135, 68), (135, 69), (135, 70), (135, 73), (135, 74), (135, 75), (135, 76), (135, 78), (135, 79), (135, 80), (135, 81), (135, 83), (135, 94), (135, 96), (135, 97), (135, 98), (135, 101), (135, 102), (135, 103), (135, 104), (135, 105), (135, 106), (135, 107), (135, 108), (135, 110), (135, 118), (135, 121), (135, 122), (135, 128), (135, 129), (136, 67), (136, 69), (136, 72), (136, 77), (136, 79), (136, 80), (136, 81), (136, 82), (136, 84), (136, 95), (136, 100), (136, 101), (136, 102), (136, 103), (136, 104), (136, 105), (136, 106), (136, 107), (136, 109), (136, 120), (136, 123), (137, 67), (137, 70), (137, 78), (137, 80), (137, 81), (137, 82), (137, 85), (137, 95), (137, 97), (137, 98), (137, 99), (137, 100), (137, 101), (137, 102), (137, 103), (137, 104), (137, 105), (137, 106), (137, 108), (137, 121), (137, 123), (137, 129), (137, 130), (138, 67), (138, 69), (138, 79), (138, 81), (138, 82), (138, 83), (138, 84), (138, 86), (138, 94), (138, 96), (138, 97), (138, 98), (138, 99), (138, 100), (138, 101), (138, 102), (138, 103), (138, 104), (138, 105), (138, 106), (138, 108), (138, 122), (138, 124), (138, 130), (139, 67), (139, 69), (139, 79), (139, 81), (139, 82), (139, 83), (139, 84), (139, 85), (139, 88), (139, 93), (139, 95), (139, 96), (139, 97), (139, 98), (139, 99), (139, 100), (139, 101), (139, 102), (139, 103), (139, 104), (139, 105), (139, 107), (139, 123), (139, 124), (139, 130), (139, 132), (140, 67), (140, 70), (140, 78), (140, 80), (140, 85), (140, 86), (140, 89), (140, 90), (140, 91), (140, 94), (140, 95), (140, 96), (140, 97), (140, 98), (140, 99), (140, 100), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 107), (140, 123), (140, 124), (140, 132), (141, 67), (141, 69), (141, 71), (141, 76), (141, 82), (141, 83), (141, 84), (141, 87), (141, 88), (141, 93), (141, 94), (141, 95), (141, 96), (141, 97), (141, 98), (141, 99), (141, 100), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 107), (141, 124), (141, 131), (141, 133), (142, 66), (142, 68), (142, 69), (142, 70), (142, 72), (142, 73), (142, 74), (142, 75), (142, 80), (142, 86), (142, 88), (142, 89), (142, 90), (142, 91), (142, 92), (142, 93), (142, 94), (142, 95), (142, 96), (142, 97), (142, 98), (142, 99), (142, 100), (142, 101), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 131), (142, 133), (143, 67), (143, 69), (143, 70), (143, 71), (143, 78), (143, 87), (143, 89), (143, 90), (143, 91), (143, 92), (143, 93), (143, 94), (143, 95), (143, 96), (143, 97), (143, 98), (143, 99), (143, 100), (143, 101), (143, 102), (143, 103), (143, 104), (143, 105), (143, 107), (143, 131), (143, 132), (144, 67), (144, 73), (144, 74), (144, 75), (144, 87), (144, 88), (144, 89), (144, 90), (144, 91), (144, 92), (144, 93), (144, 94), (144, 95), (144, 96), (144, 97), (144, 98), (144, 99), (144, 100), (144, 101), (144, 102), (144, 103), (144, 104), (144, 105), (144, 107), (144, 131), (144, 132), (145, 69), (145, 71), (145, 72), (145, 88), (145, 90), (145, 91), (145, 92), (145, 93), (145, 94), (145, 95), (145, 96), (145, 97), (145, 98), (145, 99), (145, 100), (145, 101), (145, 102), (145, 103), (145, 104), (145, 105), (145, 106), (145, 108), (145, 131), (145, 132), (146, 88), (146, 90), (146, 91), (146, 92), (146, 93), (146, 94), (146, 95), (146, 96), (146, 97), (146, 98), (146, 99), (146, 100), (146, 101), (146, 102), (146, 103), (146, 104), (146, 105), (146, 106), (146, 107), (146, 109), (146, 131), (146, 132), (147, 88), (147, 90), (147, 91), (147, 92), (147, 93), (147, 94), (147, 95), (147, 96), (147, 97), (147, 98), (147, 99), (147, 100), (147, 101), (147, 102), (147, 103), (147, 104), (147, 105), (147, 106), (147, 107), (147, 110), (147, 131), (147, 132), (148, 89), (148, 91), (148, 92), (148, 93), (148, 94), (148, 95), (148, 96), (148, 97), (148, 98), (148, 99), (148, 100), (148, 101), (148, 102), (148, 103), (148, 104), (148, 105), (148, 106), (148, 107), (148, 108), (148, 111), (148, 131), (148, 132), (149, 90), (149, 92), (149, 93), (149, 94), (149, 95), (149, 96), (149, 97), (149, 98), (149, 99), (149, 100), (149, 101), (149, 102), (149, 103), (149, 104), (149, 105), (149, 106), (149, 107), (149, 108), (149, 109), (149, 112), (149, 131), (149, 132), (150, 90), (150, 92), (150, 93), (150, 94), (150, 95), (150, 96), (150, 97), (150, 98), (150, 99), (150, 100), (150, 101), (150, 102), (150, 103), (150, 104), (150, 105), (150, 106), (150, 107), (150, 108), (150, 109), (150, 110), (150, 111), (150, 114), (150, 115), (150, 132), (151, 90), (151, 92), (151, 93), (151, 96), (151, 97), (151, 98), (151, 99), (151, 100), (151, 101), (151, 102), (151, 103), (151, 104), (151, 105), (151, 106), (151, 107), (151, 108), (151, 109), (151, 110), (151, 111), (151, 112), (151, 113), (151, 116), (151, 118), (151, 132), (151, 144), (152, 89), (152, 91), (152, 92), (152, 95), (152, 98), (152, 99), (152, 100), (152, 101), (152, 102), (152, 103), (152, 104), (152, 105), (152, 106), (152, 107), (152, 108), (152, 109), (152, 110), (152, 111), (152, 112), (152, 113), (152, 114), (152, 115), (152, 119), (152, 121), (152, 132), (152, 143), (152, 144), (153, 89), (153, 91), (153, 93), (153, 96), (153, 98), (153, 99), (153, 100), (153, 101), (153, 102), (153, 103), (153, 104), (153, 105), (153, 106), (153, 107), (153, 108), (153, 109), (153, 110), (153, 111), (153, 112), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 122), (153, 124), (153, 133), (153, 143), (154, 88), (154, 90), (154, 92), (154, 98), (154, 100), (154, 101), (154, 102), (154, 103), (154, 104), (154, 105), (154, 106), (154, 107), (154, 108), (154, 109), (154, 110), (154, 111), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 125), (154, 133), (154, 142), (154, 143), (155, 88), (155, 91), (155, 98), (155, 100), (155, 101), (155, 102), (155, 103), (155, 104), (155, 105), (155, 106), (155, 107), (155, 108), (155, 109), (155, 110), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 132), (155, 133), (155, 142), (155, 143), (156, 87), (156, 90), (156, 99), (156, 101), (156, 102), (156, 103), (156, 104), (156, 105), (156, 106), (156, 107), (156, 108), (156, 109), (156, 110), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (156, 125), (156, 128), (156, 133), (156, 142), (157, 86), (157, 89), (157, 100), (157, 102), (157, 103), (157, 104), (157, 105), (157, 106), (157, 107), (157, 108), (157, 109), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 123), (157, 124), (157, 125), (157, 126), (157, 129), (157, 130), (157, 133), (157, 141), (157, 142), (158, 85), (158, 88), (158, 100), (158, 102), (158, 103), (158, 104), (158, 105), (158, 106), (158, 107), (158, 108), (158, 109), (158, 110), (158, 111), (158, 112), (158, 113), (158, 114), (158, 115), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 121), (158, 122), (158, 123), (158, 124), (158, 125), (158, 126), (158, 127), (158, 128), (158, 132), (158, 133), (158, 135), (158, 140), (158, 142), (159, 84), (159, 86), (159, 99), (159, 100), (159, 102), (159, 103), (159, 104), (159, 105), (159, 106), (159, 107), (159, 108), (159, 109), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 116), (159, 117), (159, 118), (159, 119), (159, 120), (159, 121), (159, 122), (159, 123), (159, 124), (159, 125), (159, 126), (159, 127), (159, 128), (159, 129), (159, 130), (159, 131), (159, 132), (159, 133), (159, 139), (159, 142), (160, 83), (160, 85), (160, 99), (160, 101), (160, 102), (160, 103), (160, 104), (160, 105), (160, 106), (160, 107), (160, 108), (160, 109), (160, 110), (160, 111), (160, 112), (160, 113), (160, 114), (160, 118), (160, 119), (160, 120), (160, 121), (160, 124), (160, 125), (160, 126), (160, 127), (160, 128), (160, 129), (160, 130), (160, 131), (160, 132), (160, 133), (160, 134), (160, 135), (160, 137), (160, 140), (160, 142), (161, 99), (161, 101), (161, 102), (161, 103), (161, 104), (161, 105), (161, 106), (161, 107), (161, 108), (161, 109), (161, 110), (161, 111), (161, 112), (161, 113), (161, 116), (161, 122), (161, 125), (161, 126), (161, 127), (161, 128), (161, 129), (161, 130), (161, 131), (161, 132), (161, 133), (161, 134), (161, 135), (161, 136), (161, 139), (161, 140), (161, 141), (161, 142), (161, 143), (162, 99), (162, 101), (162, 102), (162, 103), (162, 104), (162, 105), (162, 106), (162, 107), (162, 108), (162, 109), (162, 110), (162, 111), (162, 112), (162, 114), (162, 118), (162, 120), (162, 124), (162, 126), (162, 127), (162, 128), (162, 129), (162, 130), (162, 131), (162, 132), (162, 133), (162, 134), (162, 135), (162, 136), (162, 137), (162, 138), (162, 139), (162, 140), (162, 141), (163, 98), (163, 100), (163, 101), (163, 102), (163, 103), (163, 104), (163, 105), (163, 106), (163, 107), (163, 108), (163, 109), (163, 110), (163, 111), (163, 113), (163, 125), (163, 127), (163, 128), (163, 129), (163, 130), (163, 131), (163, 132), (163, 133), (163, 134), (163, 135), (163, 136), (163, 137), (163, 138), (163, 139), (163, 140), (163, 141), (163, 143), (164, 98), (164, 100), (164, 101), (164, 102), (164, 103), (164, 104), (164, 105), (164, 106), (164, 107), (164, 108), (164, 109), (164, 110), (164, 112), (164, 126), (164, 128), (164, 129), (164, 130), (164, 131), (164, 132), (164, 133), (164, 134), (164, 135), (164, 136), (164, 137), (164, 138), (164, 139), (164, 140), (164, 142), (165, 96), (165, 98), (165, 99), (165, 100), (165, 101), (165, 102), (165, 103), (165, 104), (165, 107), (165, 108), (165, 109), (165, 110), (165, 111), (165, 112), (165, 126), (165, 128), (165, 129), (165, 130), (165, 131), (165, 132), (165, 133), (165, 134), (165, 135), (165, 136), (165, 137), (165, 138), (165, 139), (165, 140), (165, 142), (166, 92), (166, 93), (166, 94), (166, 95), (166, 98), (166, 99), (166, 100), (166, 101), (166, 102), (166, 105), (166, 107), (166, 108), (166, 109), (166, 111), (166, 126), (166, 128), (166, 129), (166, 130), (166, 131), (166, 132), (166, 133), (166, 134), (166, 135), (166, 136), (166, 137), (166, 138), (166, 139), (166, 140), (166, 142), (167, 88), (167, 89), (167, 90), (167, 96), (167, 97), (167, 98), (167, 99), (167, 100), (167, 101), (167, 102), (167, 103), (167, 104), (167, 107), (167, 108), (167, 109), (167, 111), (167, 127), (167, 129), (167, 130), (167, 131), (167, 132), (167, 133), (167, 134), (167, 135), (167, 136), (167, 137), (167, 138), (167, 139), (167, 140), (167, 142), (168, 85), (168, 90), (168, 91), (168, 92), (168, 93), (168, 96), (168, 97), (168, 98), (168, 99), (168, 100), (168, 102), (168, 107), (168, 109), (168, 111), (168, 127), (168, 129), (168, 130), (168, 131), (168, 132), (168, 133), (168, 134), (168, 138), (168, 139), (168, 140), (168, 141), (169, 84), (169, 86), (169, 87), (169, 88), (169, 94), (169, 95), (169, 97), (169, 98), (169, 99), (169, 100), (169, 102), (169, 108), (169, 111), (169, 127), (169, 129), (169, 130), (169, 131), (169, 132), (169, 133), (169, 136), (169, 137), (169, 140), (169, 142), (170, 96), (170, 98), (170, 99), (170, 100), (170, 102), (170, 108), (170, 111), (170, 127), (170, 129), (170, 130), (170, 131), (170, 132), (170, 134), (170, 138), (170, 141), (171, 97), (171, 99), (171, 100), (171, 102), (171, 109), (171, 111), (171, 127), (171, 129), (171, 130), (171, 131), (171, 133), (171, 140), (171, 141), (172, 97), (172, 99), (172, 100), (172, 101), (172, 103), (172, 109), (172, 112), (172, 127), (172, 129), (172, 130), (172, 131), (172, 133), (173, 97), (173, 99), (173, 100), (173, 101), (173, 103), (173, 110), (173, 112), (173, 127), (173, 129), (173, 130), (173, 131), (173, 133), (173, 141), (174, 96), (174, 101), (174, 103), (174, 110), (174, 112), (174, 127), (174, 133), (175, 95), (175, 98), (175, 99), (175, 100), (175, 104), (175, 110), (175, 112), (175, 127), (175, 129), (175, 130), (175, 133), (175, 142), (176, 97), (176, 101), (176, 106), (176, 110), (176, 112), (176, 127), (176, 128), (176, 132), (176, 133), (176, 143), (177, 94), (177, 95), (177, 107), (177, 108), (177, 110), (177, 112), (177, 126), (177, 128), (177, 132), (177, 133), (177, 143), (178, 104), (178, 106), (178, 107), (178, 108), (178, 109), (178, 112), (178, 126), (178, 128), (178, 133), (178, 134), (178, 144), (179, 105), (179, 110), (179, 112), (179, 125), (179, 128), (179, 133), (179, 134), (179, 144), (180, 112), (180, 113), (180, 125), (180, 128), (180, 134), (181, 113), (181, 128), (181, 134), (182, 114), (182, 128), (182, 134), (183, 115), (183, 134), (184, 134)) coordinates_e1_e1_e1 = ((62, 122), (63, 123), (64, 122), (64, 123), (64, 140), (65, 122), (65, 123), (65, 140), (65, 141), (66, 122), (66, 123), (66, 140), (66, 142), (67, 97), (67, 122), (67, 123), (67, 130), (67, 140), (67, 144), (68, 96), (68, 97), (68, 122), (68, 130), (68, 140), (68, 142), (68, 144), (69, 96), (69, 97), (69, 122), (69, 130), (69, 131), (69, 139), (69, 141), (69, 143), (70, 95), (70, 97), (70, 122), (70, 130), (70, 131), (70, 139), (70, 142), (71, 91), (71, 92), (71, 93), (71, 97), (71, 130), (71, 132), (71, 138), (71, 141), (72, 84), (72, 86), (72, 87), (72, 88), (72, 89), (72, 90), (72, 95), (72, 97), (72, 121), (72, 130), (72, 133), (72, 137), (72, 139), (72, 141), (73, 82), (73, 91), (73, 92), (73, 93), (73, 94), (73, 95), (73, 96), (73, 98), (73, 121), (73, 130), (73, 132), (73, 134), (73, 135), (73, 138), (73, 139), (73, 141), (74, 82), (74, 84), (74, 85), (74, 86), (74, 87), (74, 88), (74, 91), (74, 92), (74, 93), (74, 94), (74, 95), (74, 96), (74, 97), (74, 99), (74, 117), (74, 119), (74, 121), (74, 130), (74, 132), (74, 133), (74, 137), (74, 138), (74, 139), (74, 141), (75, 89), (75, 93), (75, 94), (75, 95), (75, 96), (75, 97), (75, 117), (75, 121), (75, 130), (75, 132), (75, 133), (75, 134), (75, 135), (75, 136), (75, 137), (75, 138), (75, 139), (75, 141), (76, 91), (76, 94), (76, 95), (76, 96), (76, 97), (76, 98), (76, 101), (76, 105), (76, 106), (76, 107), (76, 117), (76, 119), (76, 121), (76, 130), (76, 132), (76, 133), (76, 134), (76, 135), (76, 136), (76, 137), (76, 138), (76, 139), (76, 141), (77, 93), (77, 96), (77, 97), (77, 98), (77, 99), (77, 102), (77, 103), (77, 104), (77, 106), (77, 117), (77, 119), (77, 121), (77, 129), (77, 131), (77, 132), (77, 133), (77, 134), (77, 135), (77, 136), (77, 137), (77, 138), (77, 139), (77, 140), (77, 141), (77, 143), (78, 94), (78, 97), (78, 98), (78, 99), (78, 100), (78, 101), (78, 106), (78, 117), (78, 119), (78, 120), (78, 122), (78, 129), (78, 131), (78, 132), (78, 133), (78, 134), (78, 135), (78, 136), (78, 137), (78, 138), (78, 139), (78, 140), (78, 141), (78, 143), (79, 96), (79, 99), (79, 100), (79, 101), (79, 102), (79, 103), (79, 104), (79, 106), (79, 117), (79, 119), (79, 120), (79, 121), (79, 123), (79, 128), (79, 130), (79, 131), (79, 132), (79, 133), (79, 134), (79, 135), (79, 136), (79, 137), (79, 138), (79, 139), (79, 140), (79, 141), (79, 143), (80, 97), (80, 99), (80, 100), (80, 101), (80, 102), (80, 103), (80, 104), (80, 106), (80, 117), (80, 119), (80, 120), (80, 121), (80, 122), (80, 124), (80, 127), (80, 129), (80, 130), (80, 131), (80, 132), (80, 133), (80, 134), (80, 135), (80, 136), (80, 137), (80, 138), (80, 139), (80, 140), (80, 141), (80, 143), (81, 87), (81, 98), (81, 99), (81, 100), (81, 101), (81, 102), (81, 103), (81, 104), (81, 105), (81, 107), (81, 117), (81, 119), (81, 120), (81, 121), (81, 122), (81, 123), (81, 125), (81, 128), (81, 129), (81, 130), (81, 131), (81, 132), (81, 133), (81, 134), (81, 135), (81, 136), (81, 137), (81, 138), (81, 139), (81, 140), (81, 141), (81, 143), (82, 99), (82, 101), (82, 102), (82, 103), (82, 104), (82, 105), (82, 106), (82, 108), (82, 117), (82, 119), (82, 120), (82, 121), (82, 122), (82, 123), (82, 124), (82, 127), (82, 128), (82, 129), (82, 130), (82, 131), (82, 132), (82, 133), (82, 134), (82, 135), (82, 136), (82, 137), (82, 138), (82, 139), (82, 140), (82, 141), (82, 143), (83, 99), (83, 100), (83, 101), (83, 102), (83, 103), (83, 104), (83, 105), (83, 106), (83, 107), (83, 109), (83, 117), (83, 119), (83, 120), (83, 121), (83, 122), (83, 123), (83, 124), (83, 125), (83, 126), (83, 127), (83, 128), (83, 129), (83, 130), (83, 131), (83, 132), (83, 133), (83, 134), (83, 135), (83, 136), (83, 137), (83, 138), (83, 139), (83, 140), (83, 141), (83, 143), (84, 100), (84, 102), (84, 103), (84, 104), (84, 105), (84, 106), (84, 107), (84, 108), (84, 110), (84, 116), (84, 118), (84, 119), (84, 120), (84, 121), (84, 122), (84, 123), (84, 124), (84, 125), (84, 126), (84, 127), (84, 128), (84, 129), (84, 130), (84, 131), (84, 132), (84, 133), (84, 134), (84, 135), (84, 136), (84, 137), (84, 138), (84, 139), (84, 140), (84, 142), (85, 99), (85, 101), (85, 102), (85, 103), (85, 104), (85, 105), (85, 106), (85, 107), (85, 108), (85, 109), (85, 112), (85, 115), (85, 116), (85, 117), (85, 118), (85, 119), (85, 120), (85, 121), (85, 122), (85, 123), (85, 124), (85, 125), (85, 126), (85, 127), (85, 128), (85, 129), (85, 130), (85, 131), (85, 132), (85, 133), (85, 134), (85, 135), (85, 136), (85, 140), (85, 142), (86, 95), (86, 99), (86, 101), (86, 102), (86, 103), (86, 104), (86, 105), (86, 106), (86, 107), (86, 108), (86, 109), (86, 110), (86, 113), (86, 114), (86, 116), (86, 117), (86, 118), (86, 119), (86, 120), (86, 121), (86, 122), (86, 123), (86, 124), (86, 125), (86, 126), (86, 127), (86, 128), (86, 129), (86, 130), (86, 131), (86, 132), (86, 133), (86, 134), (86, 135), (86, 139), (86, 141), (86, 143), (87, 95), (87, 99), (87, 100), (87, 101), (87, 102), (87, 103), (87, 104), (87, 105), (87, 106), (87, 107), (87, 108), (87, 109), (87, 110), (87, 111), (87, 112), (87, 115), (87, 116), (87, 117), (87, 118), (87, 119), (87, 120), (87, 121), (87, 122), (87, 123), (87, 124), (87, 125), (87, 126), (87, 127), (87, 128), (87, 129), (87, 130), (87, 131), (87, 132), (87, 133), (87, 134), (87, 136), (87, 140), (87, 142), (88, 97), (88, 100), (88, 101), (88, 102), (88, 103), (88, 104), (88, 105), (88, 106), (88, 107), (88, 108), (88, 109), (88, 110), (88, 111), (88, 112), (88, 113), (88, 114), (88, 115), (88, 116), (88, 117), (88, 118), (88, 119), (88, 120), (88, 121), (88, 122), (88, 123), (88, 124), (88, 125), (88, 126), (88, 127), (88, 128), (88, 129), (88, 132), (88, 133), (88, 135), (88, 141), (88, 143), (88, 146), (89, 100), (89, 102), (89, 103), (89, 104), (89, 105), (89, 106), (89, 107), (89, 108), (89, 109), (89, 110), (89, 111), (89, 112), (89, 113), (89, 114), (89, 115), (89, 116), (89, 117), (89, 118), (89, 119), (89, 120), (89, 121), (89, 122), (89, 123), (89, 124), (89, 125), (89, 126), (89, 127), (89, 130), (89, 131), (89, 134), (89, 142), (89, 144), (89, 146), (90, 100), (90, 102), (90, 103), (90, 104), (90, 105), (90, 106), (90, 107), (90, 108), (90, 109), (90, 110), (90, 111), (90, 112), (90, 113), (90, 114), (90, 115), (90, 116), (90, 117), (90, 118), (90, 119), (90, 120), (90, 121), (90, 122), (90, 123), (90, 124), (90, 125), (90, 126), (90, 129), (90, 132), (90, 134), (90, 143), (90, 146), (91, 100), (91, 102), (91, 103), (91, 104), (91, 105), (91, 106), (91, 107), (91, 108), (91, 109), (91, 110), (91, 111), (91, 112), (91, 113), (91, 114), (91, 115), (91, 116), (91, 117), (91, 118), (91, 119), (91, 120), (91, 121), (91, 122), (91, 123), (91, 124), (91, 125), (91, 127), (91, 133), (91, 143), (91, 145), (92, 100), (92, 102), (92, 103), (92, 104), (92, 105), (92, 106), (92, 107), (92, 108), (92, 109), (92, 110), (92, 111), (92, 112), (92, 113), (92, 114), (92, 115), (92, 116), (92, 117), (92, 118), (92, 119), (92, 120), (92, 121), (92, 122), (92, 123), (92, 126), (92, 133), (92, 143), (92, 145), (93, 99), (93, 101), (93, 102), (93, 103), (93, 104), (93, 105), (93, 106), (93, 107), (93, 108), (93, 109), (93, 110), (93, 111), (93, 112), (93, 113), (93, 114), (93, 115), (93, 116), (93, 117), (93, 118), (93, 119), (93, 125), (93, 133), (93, 144), (94, 98), (94, 100), (94, 101), (94, 102), (94, 103), (94, 104), (94, 105), (94, 106), (94, 107), (94, 108), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 115), (94, 116), (94, 120), (94, 121), (94, 123), (94, 133), (94, 144), (95, 100), (95, 101), (95, 102), (95, 103), (95, 104), (95, 105), (95, 106), (95, 107), (95, 108), (95, 109), (95, 110), (95, 111), (95, 112), (95, 113), (95, 114), (95, 117), (95, 118), (95, 119), (95, 133), (96, 70), (96, 96), (96, 99), (96, 100), (96, 101), (96, 102), (96, 103), (96, 104), (96, 105), (96, 106), (96, 107), (96, 108), (96, 109), (96, 110), (96, 111), (96, 112), (96, 115), (96, 116), (96, 133), (96, 134), (97, 69), (97, 71), (97, 96), (97, 98), (97, 99), (97, 100), (97, 101), (97, 102), (97, 103), (97, 104), (97, 105), (97, 106), (97, 107), (97, 108), (97, 109), (97, 110), (97, 113), (97, 134), (98, 69), (98, 73), (98, 75), (98, 95), (98, 97), (98, 98), (98, 99), (98, 100), (98, 101), (98, 102), (98, 103), (98, 104), (98, 105), (98, 106), (98, 107), (98, 108), (98, 109), (98, 111), (98, 134), (98, 135), (99, 68), (99, 70), (99, 71), (99, 77), (99, 87), (99, 89), (99, 90), (99, 91), (99, 92), (99, 93), (99, 96), (99, 97), (99, 98), (99, 99), (99, 100), (99, 101), (99, 102), (99, 103), (99, 104), (99, 105), (99, 106), (99, 107), (99, 108), (99, 110), (99, 134), (99, 135), (100, 68), (100, 70), (100, 71), (100, 72), (100, 73), (100, 74), (100, 75), (100, 80), (100, 86), (100, 95), (100, 96), (100, 97), (100, 98), (100, 99), (100, 100), (100, 101), (100, 102), (100, 103), (100, 104), (100, 105), (100, 106), (100, 107), (100, 109), (100, 135), (101, 68), (101, 70), (101, 71), (101, 72), (101, 73), (101, 74), (101, 75), (101, 76), (101, 77), (101, 81), (101, 82), (101, 85), (101, 88), (101, 89), (101, 90), (101, 91), (101, 92), (101, 93), (101, 94), (101, 95), (101, 96), (101, 97), (101, 98), (101, 99), (101, 100), (101, 101), (101, 102), (101, 103), (101, 104), (101, 105), (101, 106), (101, 108), (101, 134), (101, 135), (102, 68), (102, 70), (102, 71), (102, 72), (102, 73), (102, 74), (102, 75), (102, 76), (102, 77), (102, 78), (102, 79), (102, 80), (102, 83), (102, 86), (102, 87), (102, 88), (102, 89), (102, 90), (102, 97), (102, 98), (102, 99), (102, 100), (102, 101), (102, 102), (102, 103), (102, 104), (102, 105), (102, 107), (102, 134), (103, 68), (103, 71), (103, 72), (103, 73), (103, 74), (103, 75), (103, 76), (103, 77), (103, 78), (103, 79), (103, 80), (103, 81), (103, 82), (103, 84), (103, 85), (103, 86), (103, 87), (103, 88), (103, 91), (103, 92), (103, 93), (103, 94), (103, 95), (103, 99), (103, 100), (103, 101), (103, 102), (103, 103), (103, 104), (103, 105), (103, 107), (103, 133), (103, 134), (104, 69), (104, 72), (104, 73), (104, 74), (104, 75), (104, 76), (104, 77), (104, 78), (104, 79), (104, 80), (104, 81), (104, 82), (104, 83), (104, 84), (104, 85), (104, 86), (104, 90), (104, 97), (104, 99), (104, 100), (104, 101), (104, 102), (104, 103), (104, 104), (104, 105), (104, 107), (104, 133), (104, 134), (105, 71), (105, 73), (105, 74), (105, 75), (105, 76), (105, 77), (105, 78), (105, 79), (105, 80), (105, 81), (105, 82), (105, 83), (105, 84), (105, 85), (105, 88), (105, 99), (105, 101), (105, 102), (105, 103), (105, 104), (105, 105), (105, 107), (105, 108), (105, 132), (105, 133), (106, 72), (106, 74), (106, 75), (106, 76), (106, 77), (106, 78), (106, 79), (106, 80), (106, 81), (106, 82), (106, 83), (106, 86), (106, 100), (106, 102), (106, 103), (106, 104), (106, 105), (106, 106), (106, 108), (106, 123), (106, 131), (106, 133), (107, 73), (107, 75), (107, 76), (107, 77), (107, 78), (107, 79), (107, 80), (107, 81), (107, 82), (107, 85), (107, 100), (107, 102), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107), (107, 109), (107, 123), (107, 131), (107, 132), (108, 73), (108, 75), (108, 76), (108, 77), (108, 78), (108, 79), (108, 80), (108, 81), (108, 83), (108, 99), (108, 101), (108, 102), (108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 109), (108, 122), (108, 123), (108, 130), (108, 132), (109, 72), (109, 74), (109, 75), (109, 76), (109, 77), (109, 78), (109, 79), (109, 80), (109, 82), (109, 98), (109, 100), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 108), (109, 110), (109, 121), (109, 123), (109, 131), (110, 69), (110, 70), (110, 73), (110, 74), (110, 75), (110, 76), (110, 77), (110, 78), (110, 79), (110, 81), (110, 97), (110, 99), (110, 100), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 106), (110, 107), (110, 108), (110, 109), (110, 111), (110, 120), (110, 123), (111, 65), (111, 67), (111, 68), (111, 72), (111, 73), (111, 74), (111, 75), (111, 76), (111, 77), (111, 78), (111, 79), (111, 81), (111, 97), (111, 99), (111, 100), (111, 101), (111, 102), (111, 103), (111, 104), (111, 105), (111, 108), (111, 109), (111, 110), (111, 112), (111, 119), (111, 121), (111, 123), (112, 64), (112, 68), (112, 69), (112, 70), (112, 71), (112, 73), (112, 74), (112, 75), (112, 76), (112, 77), (112, 78), (112, 79), (112, 81), (112, 97), (112, 99), (112, 100), (112, 101), (112, 102), (112, 103), (112, 104), (112, 105), (112, 107), (112, 109), (112, 110), (112, 111), (112, 113), (112, 118), (112, 120), (112, 121), (112, 123), (113, 64), (113, 66), (113, 67), (113, 73), (113, 74), (113, 75), (113, 76), (113, 77), (113, 78), (113, 79), (113, 81), (113, 97), (113, 100), (113, 101), (113, 102), (113, 103), (113, 105), (113, 109), (113, 110), (113, 111), (113, 112), (113, 115), (113, 116), (113, 117), (113, 119), (113, 120), (113, 121), (113, 123), (114, 73), (114, 75), (114, 76), (114, 77), (114, 78), (114, 79), (114, 80), (114, 82), (114, 97), (114, 99), (114, 100), (114, 102), (114, 103), (114, 105), (114, 109), (114, 111), (114, 112), (114, 113), (114, 118), (114, 119), (114, 120), (114, 121), (114, 123), (115, 73), (115, 75), (115, 76), (115, 77), (115, 78), (115, 79), (115, 80), (115, 82), (115, 101), (115, 103), (115, 105), (115, 109), (115, 111), (115, 112), (115, 113), (115, 114), (115, 115), (115, 116), (115, 117), (115, 118), (115, 119), (115, 120), (115, 121), (115, 123), (116, 73), (116, 75), (116, 76), (116, 77), (116, 78), (116, 79), (116, 80), (116, 81), (116, 83), (116, 102), (116, 104), (116, 109), (116, 110), (116, 111), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 117), (116, 118), (116, 119), (116, 120), (116, 121), (116, 123), (117, 73), (117, 77), (117, 78), (117, 79), (117, 80), (117, 81), (117, 83), (117, 103), (117, 104), (117, 110), (117, 112), (117, 113), (117, 114), (117, 115), (117, 116), (117, 117), (117, 118), (117, 119), (117, 120), (117, 121), (117, 123), (118, 75), (118, 76), (118, 77), (118, 78), (118, 79), (118, 80), (118, 81), (118, 83), (118, 110), (118, 112), (118, 113), (118, 114), (118, 115), (118, 116), (118, 117), (118, 118), (118, 119), (118, 120), (118, 121), (118, 123), (119, 72), (119, 110), (119, 123), (120, 110), (120, 112), (120, 113), (120, 114), (120, 115), (120, 116), (120, 117), (120, 118), (120, 119), (120, 120), (120, 121), (120, 123)) coordinates_cc3_e4_e = () coordinates_771286 = ((135, 113), (135, 115), (136, 111), (136, 116), (137, 113), (137, 114), (137, 115), (137, 118), (138, 110), (138, 112), (138, 113), (138, 114), (138, 115), (138, 116), (138, 119), (139, 109), (139, 111), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 121), (140, 109), (140, 111), (140, 112), (140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 119), (140, 121), (141, 109), (141, 111), (141, 112), (141, 113), (141, 114), (141, 115), (141, 116), (141, 117), (141, 118), (141, 119), (141, 121), (142, 109), (142, 111), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 119), (142, 120), (142, 122), (143, 109), (143, 111), (143, 112), (143, 113), (143, 114), (143, 115), (143, 116), (143, 117), (143, 118), (143, 119), (143, 120), (143, 121), (143, 122), (144, 109), (144, 111), (144, 112), (144, 113), (144, 114), (144, 115), (144, 116), (144, 117), (144, 118), (144, 119), (144, 120), (144, 121), (144, 123), (145, 110), (145, 113), (145, 114), (145, 115), (145, 116), (145, 117), (145, 118), (145, 119), (145, 120), (145, 121), (145, 122), (145, 124), (146, 111), (146, 114), (146, 115), (146, 116), (146, 117), (146, 118), (146, 119), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (147, 112), (147, 113), (147, 117), (147, 118), (147, 119), (147, 120), (147, 121), (147, 122), (147, 123), (147, 125), (148, 114), (148, 116), (148, 120), (148, 121), (148, 122), (148, 123), (148, 124), (149, 117), (149, 119), (149, 123), (149, 124), (149, 125), (149, 128), (150, 120), (150, 122), (150, 125), (150, 126), (150, 129), (151, 123), (151, 124), (151, 127), (151, 128), (151, 130), (152, 128), (152, 130), (153, 127), (153, 130), (154, 128), (154, 130), (155, 130)) coordinates_781286 = ((91, 131), (92, 129), (92, 131), (93, 128), (93, 131), (94, 126), (94, 129), (95, 125), (95, 128), (96, 121), (96, 122), (96, 123), (96, 124), (97, 118), (97, 125), (98, 115), (98, 116), (98, 117), (98, 120), (98, 121), (98, 122), (98, 124), (99, 113), (99, 118), (99, 119), (99, 120), (99, 121), (99, 122), (99, 124), (100, 112), (100, 115), (100, 116), (100, 117), (100, 118), (100, 119), (100, 120), (100, 121), (100, 123), (101, 110), (101, 113), (101, 114), (101, 115), (101, 116), (101, 117), (101, 118), (101, 119), (101, 120), (101, 122), (102, 110), (102, 112), (102, 113), (102, 114), (102, 115), (102, 116), (102, 117), (102, 118), (102, 119), (102, 120), (102, 122), (103, 109), (103, 111), (103, 112), (103, 113), (103, 114), (103, 115), (103, 116), (103, 117), (103, 118), (103, 119), (103, 120), (103, 122), (104, 110), (104, 111), (104, 112), (104, 113), (104, 114), (104, 115), (104, 116), (104, 117), (104, 118), (104, 119), (104, 120), (104, 122), (105, 110), (105, 112), (105, 113), (105, 114), (105, 115), (105, 116), (105, 117), (105, 118), (105, 119), (105, 120), (105, 121), (106, 110), (106, 112), (106, 113), (106, 114), (106, 115), (106, 116), (106, 117), (106, 118), (106, 119), (106, 121), (107, 111), (107, 113), (107, 114), (107, 115), (107, 116), (107, 117), (107, 118), (107, 120), (108, 112), (108, 114), (108, 115), (108, 116), (108, 117), (108, 118), (108, 120), (109, 113), (109, 115), (109, 116), (109, 119), (110, 114), (110, 118), (111, 115), (111, 116)) coordinates_ee0000 = ((116, 71), (117, 70), (118, 69), (118, 70), (119, 68), (119, 70)) coordinates_cf2090 = ((163, 116), (164, 114), (164, 117), (164, 118), (164, 119), (164, 121), (165, 114), (165, 116), (165, 121), (166, 113), (166, 115), (166, 116), (166, 117), (166, 118), (166, 119), (166, 121), (167, 113), (167, 115), (167, 116), (167, 117), (167, 118), (167, 119), (167, 121), (168, 113), (168, 115), (168, 116), (168, 117), (168, 118), (168, 119), (168, 121), (169, 113), (169, 115), (169, 116), (169, 117), (169, 118), (169, 119), (169, 121), (170, 114), (170, 116), (170, 117), (170, 118), (170, 119), (170, 121), (171, 114), (171, 116), (171, 117), (171, 118), (171, 119), (171, 121), (172, 114), (172, 116), (172, 117), (172, 120), (173, 114), (173, 116), (173, 119), (174, 114), (174, 117), (175, 114), (175, 116), (176, 114), (176, 116), (177, 114), (177, 115), (178, 114), (178, 115), (179, 114), (179, 115), (180, 108), (180, 115), (181, 109), (181, 110), (181, 116), (182, 110), (182, 116), (183, 111), (183, 112), (183, 117), (184, 111), (184, 113), (184, 117), (185, 112), (185, 114), (185, 118), (186, 112), (186, 116), (186, 117), (186, 119), (187, 113), (187, 119), (188, 114), (188, 116), (188, 117), (188, 119)) coordinates_efe68_c = ((165, 124), (166, 124), (167, 124), (168, 124), (169, 123), (169, 125), (170, 123), (170, 125), (171, 123), (171, 125), (171, 135), (172, 122), (172, 125), (172, 135), (173, 122), (173, 125), (173, 135), (173, 136), (174, 120), (174, 123), (174, 125), (174, 135), (174, 136), (175, 119), (175, 122), (175, 123), (175, 125), (175, 135), (175, 137), (176, 118), (176, 120), (176, 121), (176, 122), (176, 124), (176, 135), (176, 137), (177, 118), (177, 120), (177, 121), (177, 122), (177, 124), (177, 130), (177, 136), (177, 138), (178, 117), (178, 119), (178, 120), (178, 121), (178, 123), (178, 130), (178, 131), (178, 136), (178, 138), (179, 117), (179, 119), (179, 120), (179, 121), (179, 123), (179, 130), (179, 131), (179, 136), (179, 138), (180, 118), (180, 120), (180, 122), (180, 130), (180, 131), (180, 136), (180, 138), (181, 118), (181, 120), (181, 121), (181, 122), (181, 123), (181, 130), (181, 132), (181, 136), (181, 138), (182, 119), (182, 121), (182, 122), (182, 123), (182, 125), (182, 132), (182, 136), (182, 139), (183, 119), (183, 121), (183, 122), (183, 123), (183, 126), (183, 131), (183, 132), (183, 136), (183, 138), (184, 120), (184, 122), (184, 123), (184, 124), (184, 126), (184, 131), (184, 132), (184, 136), (184, 138), (185, 120), (185, 122), (185, 123), (185, 124), (185, 125), (185, 127), (185, 131), (185, 132), (185, 136), (185, 138), (186, 121), (186, 123), (186, 124), (186, 125), (186, 127), (186, 130), (186, 132), (186, 133), (186, 134), (186, 138), (187, 121), (187, 123), (187, 124), (187, 125), (187, 126), (187, 127), (187, 129), (187, 134), (187, 135), (187, 136), (187, 138), (188, 122), (188, 124), (188, 125), (188, 130), (188, 131), (188, 132), (188, 133), (188, 137), (189, 122), (189, 126), (189, 127), (189, 128), (189, 129), (190, 122), (190, 124), (190, 125)) coordinates_31_cd32 = ((166, 144), (167, 144), (167, 146), (168, 145), (168, 147), (169, 145), (169, 149), (170, 144), (170, 146), (170, 147), (170, 148), (170, 152), (171, 137), (171, 143), (171, 145), (171, 146), (171, 147), (171, 148), (171, 152), (172, 138), (172, 143), (172, 145), (172, 146), (172, 147), (172, 148), (172, 150), (173, 138), (173, 139), (173, 143), (173, 145), (173, 146), (173, 147), (173, 148), (174, 139), (174, 143), (174, 145), (174, 146), (174, 148), (175, 139), (175, 140), (175, 144), (175, 147), (176, 140), (176, 141), (176, 145), (176, 147), (177, 140), (177, 141), (177, 146), (177, 148), (178, 141), (178, 146), (178, 148), (179, 141), (179, 142), (179, 146), (179, 149), (180, 141), (180, 142), (180, 145), (180, 149), (181, 141), (181, 142), (181, 145), (181, 148), (182, 141), (182, 143), (182, 147), (183, 140), (183, 141), (183, 142), (183, 146), (184, 140), (184, 142), (184, 143), (184, 145), (185, 140), (185, 142), (185, 144), (186, 141), (186, 143), (187, 142)) coordinates_d02090 = ((57, 122), (57, 124), (57, 126), (58, 120), (58, 125), (59, 119), (59, 125), (60, 122), (60, 125), (61, 120), (61, 124), (61, 125), (62, 125), (63, 125), (64, 125), (65, 125), (66, 125), (67, 125), (69, 124), (70, 124), (71, 124), (72, 123), (73, 123), (74, 123), (75, 123), (75, 124), (76, 123), (76, 124), (77, 124), (78, 124)) coordinates_f0_e68_c = ((57, 128), (57, 136), (58, 127), (58, 129), (58, 130), (58, 131), (58, 132), (58, 133), (58, 134), (58, 136), (59, 127), (59, 136), (60, 127), (60, 129), (60, 130), (60, 131), (60, 132), (60, 133), (60, 134), (60, 135), (60, 137), (61, 127), (61, 129), (61, 130), (61, 131), (61, 132), (61, 133), (61, 134), (61, 135), (61, 137), (62, 127), (62, 129), (62, 130), (62, 131), (62, 132), (62, 133), (62, 134), (62, 135), (62, 137), (63, 127), (63, 131), (63, 132), (63, 133), (63, 134), (63, 135), (63, 136), (63, 138), (64, 127), (64, 132), (64, 133), (64, 134), (64, 135), (64, 136), (64, 138), (65, 127), (65, 131), (65, 133), (65, 134), (65, 135), (65, 136), (65, 138), (66, 127), (66, 128), (66, 132), (66, 134), (66, 135), (66, 136), (66, 138), (67, 127), (67, 128), (67, 132), (67, 134), (67, 135), (67, 136), (67, 138), (68, 127), (68, 133), (68, 135), (68, 137), (69, 126), (69, 127), (69, 133), (69, 135), (69, 137), (70, 126), (70, 128), (70, 134), (70, 136), (71, 126), (71, 128), (71, 134), (71, 135), (72, 126), (72, 128), (73, 126), (73, 128), (74, 126), (74, 128), (75, 126), (75, 128), (76, 126), (76, 128), (77, 126), (77, 127), (78, 126)) coordinates_32_cd32 = ((57, 138), (58, 138), (58, 140), (59, 141), (60, 139), (60, 142), (61, 139), (61, 141), (61, 143), (62, 140), (62, 142), (62, 145), (62, 147), (63, 141), (63, 143), (64, 142), (64, 146), (64, 147), (65, 143), (65, 145), (65, 146), (65, 147), (65, 148), (65, 150), (66, 147), (66, 148), (66, 150), (67, 147), (67, 150), (68, 146), (68, 148), (68, 149), (68, 151), (69, 145), (69, 146), (69, 148), (69, 149), (69, 150), (69, 152), (70, 144), (70, 147), (70, 148), (70, 149), (70, 150), (70, 152), (71, 143), (71, 146), (71, 147), (71, 148), (71, 149), (71, 150), (71, 152), (72, 143), (72, 145), (72, 146), (72, 147), (72, 148), (72, 149), (72, 150), (72, 152), (73, 143), (73, 145), (73, 146), (73, 147), (73, 148), (73, 149), (73, 150), (73, 152), (74, 143), (74, 145), (74, 146), (74, 147), (74, 148), (74, 149), (74, 150), (74, 152), (75, 143), (75, 145), (75, 146), (75, 147), (75, 148), (75, 149), (75, 150), (75, 152), (76, 146), (76, 147), (76, 148), (76, 149), (76, 150), (76, 151), (76, 153), (77, 145), (77, 147), (77, 148), (77, 149), (77, 150), (77, 151), (77, 153), (78, 145), (78, 147), (78, 148), (78, 149), (78, 150), (78, 151), (78, 152), (78, 153), (78, 154), (79, 145), (79, 147), (79, 148), (79, 149), (79, 150), (79, 151), (79, 152), (79, 154), (80, 145), (80, 147), (80, 148), (80, 149), (80, 150), (80, 151), (80, 152), (80, 154), (81, 145), (81, 154), (82, 145), (82, 147), (82, 148), (82, 149), (82, 150), (82, 151), (82, 153), (83, 145)) coordinates_01_ff7_f = ((129, 62), (130, 62), (130, 63), (131, 62), (131, 63), (132, 62), (132, 63), (133, 63), (134, 63), (135, 64), (136, 63), (136, 64), (137, 63), (137, 65), (137, 73), (137, 75), (138, 63), (138, 65), (138, 72), (139, 63), (139, 65), (139, 71), (139, 72), (139, 74), (139, 76), (140, 63), (140, 64), (140, 73), (141, 63), (141, 64), (142, 63), (142, 64), (143, 63), (143, 64), (143, 82), (143, 83), (144, 63), (144, 65), (144, 80), (145, 64), (145, 66), (145, 78), (146, 64), (146, 67), (146, 75), (146, 76), (147, 65), (147, 69), (147, 70), (147, 71), (147, 72), (147, 73), (147, 74), (148, 67), (148, 68), (148, 69)) coordinates_00_ff7_f = ((81, 74), (81, 76), (82, 73), (82, 77), (83, 72), (83, 74), (83, 75), (83, 76), (83, 78), (84, 72), (84, 74), (84, 75), (84, 76), (84, 77), (84, 79), (85, 71), (85, 73), (85, 74), (85, 75), (85, 78), (86, 71), (86, 73), (86, 74), (86, 75), (86, 76), (87, 71), (87, 73), (87, 75), (88, 70), (88, 72), (88, 73), (88, 75), (89, 70), (89, 72), (89, 73), (89, 74), (89, 75), (89, 77), (90, 70), (90, 72), (90, 73), (90, 74), (90, 75), (90, 78), (91, 70), (91, 72), (91, 73), (91, 74), (91, 75), (91, 76), (91, 77), (91, 80), (92, 69), (92, 71), (92, 72), (92, 73), (92, 74), (92, 75), (92, 76), (92, 77), (92, 78), (92, 81), (93, 68), (93, 72), (93, 73), (93, 74), (93, 75), (93, 76), (93, 77), (93, 78), (93, 79), (93, 80), (93, 83), (94, 67), (94, 70), (94, 73), (94, 74), (94, 75), (94, 76), (94, 77), (94, 78), (94, 79), (94, 80), (94, 81), (94, 84), (94, 85), (95, 66), (95, 68), (95, 72), (95, 77), (95, 78), (95, 79), (95, 80), (95, 81), (95, 82), (95, 83), (95, 86), (95, 87), (96, 67), (96, 73), (96, 75), (96, 76), (96, 79), (96, 80), (96, 81), (96, 82), (96, 83), (96, 84), (96, 85), (96, 89), (96, 90), (96, 91), (96, 92), (96, 94), (97, 64), (97, 67), (97, 77), (97, 78), (97, 82), (97, 83), (97, 84), (97, 87), (97, 88), (97, 89), (97, 90), (97, 91), (97, 93), (98, 64), (98, 66), (98, 79), (98, 80), (98, 86), (99, 64), (99, 66), (99, 82), (99, 84), (99, 85), (100, 66), (101, 65), (101, 66), (102, 65), (102, 66), (102, 78), (102, 80), (103, 66), (103, 77), (103, 80), (104, 66), (104, 78), (104, 79), (105, 66), (106, 66), (106, 69), (107, 65), (107, 67), (107, 71), (108, 63), (108, 68), (108, 70), (109, 61), (109, 65), (109, 66), (109, 67), (110, 61), (110, 63), (111, 62), (112, 62), (113, 62), (114, 62), (114, 69), (114, 71), (115, 62), (115, 65), (115, 66), (115, 67), (115, 69), (116, 62), (116, 64), (116, 68), (117, 62), (117, 67), (118, 63), (118, 65), (118, 66), (118, 67), (119, 66)) coordinates_ff6347 = ((89, 137), (90, 136), (90, 137), (91, 136), (91, 138), (92, 135), (92, 138), (93, 135), (93, 137), (93, 139), (94, 135), (94, 137), (94, 139), (95, 135), (95, 137), (95, 139), (96, 136), (96, 139), (97, 137), (97, 139), (98, 137), (98, 139), (99, 137), (99, 139), (99, 140), (100, 137), (100, 140), (101, 137), (101, 140), (102, 137), (102, 140), (103, 136), (103, 138), (103, 140), (104, 136), (104, 138), (104, 140), (105, 135), (105, 136), (105, 138), (105, 140), (106, 135), (106, 137), (106, 140), (107, 135), (107, 136), (107, 139), (108, 134), (108, 138), (109, 125), (109, 133), (109, 137), (110, 125), (110, 129), (110, 135), (110, 136), (111, 125), (111, 127), (111, 131), (112, 125), (112, 132), (113, 126), (113, 127), (113, 128), (113, 129), (113, 131), (114, 125)) coordinates_dbd814 = ((137, 126), (137, 127), (138, 126), (139, 126), (139, 128), (140, 126), (140, 128), (141, 126), (141, 128), (142, 126), (142, 129), (143, 126), (143, 129), (144, 126), (144, 129), (145, 126), (145, 129), (146, 127), (146, 129), (147, 128), (147, 129), (148, 129)) coordinates_dcd814 = ((96, 129), (96, 131), (97, 128), (97, 131), (98, 127), (98, 129), (98, 130), (98, 132), (99, 126), (99, 128), (99, 129), (99, 130), (99, 132), (100, 126), (100, 127), (100, 128), (100, 129), (100, 130), (100, 132), (101, 126), (101, 127), (101, 128), (101, 129), (101, 130), (101, 132), (102, 125), (102, 126), (102, 127), (102, 128), (102, 129), (102, 130), (102, 132), (103, 125), (103, 126), (103, 127), (103, 128), (103, 129), (103, 131), (104, 125), (104, 126), (104, 127), (104, 128), (104, 130), (105, 126), (105, 128), (105, 130), (106, 125), (106, 126), (106, 127), (106, 129), (107, 126), (107, 129), (108, 128), (109, 127)) coordinates_2_e8_b57 = ((60, 117), (61, 117), (61, 118), (62, 117), (62, 119), (63, 118), (63, 119), (64, 118), (65, 118), (65, 120), (66, 118), (66, 120), (67, 118), (67, 120), (68, 116), (68, 118), (68, 120), (69, 115), (69, 118), (69, 120), (70, 115), (70, 117), (70, 118), (70, 120), (71, 115), (71, 120), (72, 114), (72, 117), (72, 119), (73, 114), (74, 114), (74, 115), (75, 113), (75, 114), (76, 113), (76, 114), (77, 113), (77, 114), (78, 113), (79, 113), (79, 115), (80, 113), (80, 115), (81, 114), (81, 115), (82, 115)) coordinates_cc5_c5_c = ((140, 141), (141, 141), (141, 142), (142, 141), (142, 142), (143, 141), (143, 143), (144, 141), (144, 144), (145, 141), (145, 144), (146, 141), (146, 143), (146, 145), (147, 141), (147, 143), (147, 144), (147, 146), (148, 141), (148, 146), (149, 141), (149, 144), (149, 145), (149, 147), (150, 140), (150, 142), (150, 146), (150, 148), (151, 140), (151, 142), (151, 146), (151, 148), (152, 139), (152, 141), (152, 146), (152, 149), (153, 139), (153, 141), (153, 146), (153, 149), (154, 138), (154, 140), (154, 145), (154, 147), (154, 149), (155, 138), (155, 140), (155, 145), (155, 147), (155, 148), (156, 137), (156, 139), (156, 145), (156, 147), (156, 149), (157, 137), (157, 139), (157, 144), (157, 146), (157, 147), (157, 149), (158, 137), (158, 144), (158, 146), (158, 147), (158, 148), (159, 144), (159, 146), (159, 147), (159, 148), (159, 149), (159, 152), (159, 153), (160, 144), (160, 146), (160, 147), (160, 148), (160, 149), (160, 150), (160, 151), (160, 153), (161, 145), (161, 147), (161, 148), (161, 149), (161, 150), (161, 151), (161, 152), (161, 154), (162, 146), (162, 148), (162, 149), (162, 150), (162, 151), (162, 152), (162, 154), (163, 145), (163, 147), (163, 148), (163, 149), (163, 150), (163, 151), (163, 152), (163, 154), (164, 144), (164, 147), (164, 148), (164, 149), (164, 150), (164, 151), (164, 153), (165, 146), (165, 149), (165, 150), (165, 151), (165, 153), (166, 148), (166, 151), (166, 153), (167, 149), (167, 153), (168, 151), (168, 152)) coordinates_cd5_c5_c = ((84, 148), (84, 149), (84, 150), (84, 151), (84, 153), (85, 145), (85, 147), (85, 153), (86, 146), (86, 148), (86, 149), (86, 150), (86, 151), (86, 152), (86, 154), (87, 147), (87, 149), (87, 150), (87, 151), (87, 153), (88, 138), (88, 139), (88, 148), (88, 150), (88, 152), (89, 139), (89, 140), (89, 149), (89, 151), (90, 141), (90, 148), (90, 150), (91, 140), (91, 141), (91, 148), (91, 150), (92, 141), (92, 147), (92, 149), (93, 141), (93, 147), (93, 148), (94, 141), (94, 142), (94, 146), (94, 148), (95, 141), (95, 142), (95, 147), (96, 142), (96, 144), (96, 146), (97, 142), (97, 145), (98, 142), (98, 144), (99, 142), (99, 144), (100, 142), (101, 142), (101, 143), (102, 142), (102, 143), (103, 142)) coordinates_779_fb0 = ((114, 163), (114, 165), (115, 162), (115, 167), (116, 161), (116, 164), (116, 165), (116, 169), (117, 160), (117, 162), (117, 163), (117, 164), (117, 165), (117, 166), (117, 167), (117, 170), (117, 171), (118, 158), (118, 161), (118, 162), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 172), (118, 173), (118, 175), (119, 158), (119, 160), (119, 161), (119, 162), (119, 163), (119, 164), (119, 165), (119, 166), (119, 167), (119, 168), (119, 169), (119, 170), (119, 171), (119, 176), (120, 158), (120, 160), (120, 161), (120, 162), (120, 163), (120, 164), (120, 165), (120, 166), (120, 167), (120, 168), (120, 169), (120, 170), (120, 171), (120, 172), (120, 173), (120, 174), (120, 175), (120, 177), (121, 159), (121, 161), (121, 162), (121, 163), (121, 164), (121, 165), (121, 166), (121, 167), (121, 168), (121, 169), (121, 170), (121, 171), (121, 172), (121, 173), (121, 174), (121, 175), (121, 176), (121, 178), (122, 159), (122, 161), (122, 162), (122, 163), (122, 164), (122, 165), (122, 166), (122, 167), (122, 168), (122, 169), (122, 170), (122, 171), (122, 172), (122, 173), (122, 174), (122, 175), (122, 176), (122, 177), (122, 179), (123, 159), (123, 161), (123, 162), (123, 163), (123, 164), (123, 165), (123, 166), (123, 167), (123, 168), (123, 169), (123, 170), (123, 171), (123, 172), (123, 173), (123, 174), (123, 175), (123, 176), (123, 177), (123, 178), (123, 180), (124, 159), (124, 161), (124, 162), (124, 163), (124, 164), (124, 165), (124, 166), (124, 167), (124, 168), (124, 169), (124, 170), (124, 171), (124, 172), (124, 173), (124, 174), (124, 175), (124, 176), (124, 177), (124, 178), (124, 180), (125, 158), (125, 160), (125, 161), (125, 162), (125, 163), (125, 164), (125, 165), (125, 166), (125, 167), (125, 168), (125, 169), (125, 170), (125, 171), (125, 172), (125, 173), (125, 174), (125, 175), (125, 176), (125, 177), (125, 178), (125, 179), (125, 181), (126, 158), (126, 160), (126, 161), (126, 162), (126, 163), (126, 164), (126, 165), (126, 166), (126, 167), (126, 168), (126, 169), (126, 170), (126, 171), (126, 172), (126, 173), (126, 174), (126, 175), (126, 176), (126, 177), (126, 178), (126, 181), (127, 158), (127, 160), (127, 161), (127, 162), (127, 163), (127, 164), (127, 165), (127, 166), (127, 167), (127, 168), (127, 169), (127, 170), (127, 171), (127, 172), (127, 173), (127, 174), (127, 175), (127, 176), (127, 180), (128, 157), (128, 159), (128, 160), (128, 161), (128, 162), (128, 163), (128, 164), (128, 165), (128, 166), (128, 167), (128, 168), (128, 169), (128, 170), (128, 171), (128, 172), (128, 173), (128, 174), (128, 175), (128, 178), (129, 157), (129, 159), (129, 160), (129, 161), (129, 162), (129, 163), (129, 164), (129, 165), (129, 166), (129, 167), (129, 168), (129, 169), (129, 170), (129, 171), (129, 176), (130, 157), (130, 159), (130, 160), (130, 161), (130, 162), (130, 163), (130, 164), (130, 165), (130, 166), (130, 167), (130, 168), (130, 169), (130, 173), (130, 175), (131, 158), (131, 160), (131, 161), (131, 162), (131, 163), (131, 164), (131, 165), (131, 166), (131, 167), (131, 170), (131, 171), (132, 159), (132, 161), (132, 162), (132, 163), (132, 164), (132, 165), (132, 168), (133, 160), (133, 162), (133, 163), (133, 164), (133, 167), (134, 161), (134, 163), (134, 165), (135, 162), (135, 164), (136, 163)) coordinates_fea600 = ((158, 97), (159, 97), (160, 96), (160, 97), (161, 95), (161, 97), (162, 96), (163, 90), (163, 92), (163, 93), (163, 96), (164, 88), (164, 91), (164, 92), (164, 93), (164, 94), (165, 87), (165, 89), (166, 85), (167, 80), (167, 82), (167, 83), (167, 84), (168, 78), (168, 82), (168, 105), (169, 78), (169, 80), (169, 82), (169, 104), (170, 78), (170, 80), (170, 81), (170, 82), (170, 90), (170, 92), (170, 104), (170, 106), (171, 78), (171, 80), (171, 84), (171, 85), (171, 86), (171, 87), (171, 88), (171, 89), (171, 95), (171, 105), (171, 106), (172, 81), (172, 82), (172, 90), (172, 91), (172, 92), (172, 93), (172, 95), (172, 105), (172, 107), (173, 79), (173, 80), (173, 84), (173, 87), (173, 88), (173, 89), (173, 90), (173, 91), (173, 92), (173, 94), (173, 105), (173, 107), (174, 85), (174, 87), (174, 88), (174, 89), (174, 90), (174, 91), (174, 92), (174, 94), (174, 106), (174, 108), (175, 88), (175, 90), (175, 91), (175, 93), (175, 108), (176, 88), (176, 90), (176, 92), (177, 88), (177, 90), (177, 92), (177, 98), (177, 100), (178, 88), (178, 90), (178, 91), (178, 92), (178, 97), (178, 101), (179, 88), (179, 91), (179, 92), (179, 93), (179, 94), (179, 95), (179, 98), (179, 99), (179, 100), (179, 102), (180, 88), (180, 97), (180, 98), (180, 99), (180, 100), (180, 101), (180, 103), (180, 106), (181, 91), (181, 92), (181, 96), (181, 101), (181, 102), (181, 105), (181, 107), (182, 94), (182, 95), (182, 96), (182, 98), (182, 99), (182, 100), (182, 103), (182, 107), (183, 96), (183, 101), (183, 105), (183, 106), (183, 108), (184, 103), (184, 105), (184, 106), (184, 107), (184, 109), (185, 105), (185, 107), (185, 108), (185, 110)) coordinates_fea501 = ((60, 107), (60, 109), (60, 110), (60, 111), (60, 112), (60, 114), (61, 103), (61, 104), (61, 105), (61, 106), (61, 107), (61, 108), (61, 109), (61, 110), (61, 113), (61, 115), (62, 96), (62, 98), (62, 99), (62, 100), (62, 101), (62, 102), (62, 107), (62, 108), (62, 109), (62, 110), (62, 111), (62, 112), (62, 115), (63, 95), (63, 103), (63, 104), (63, 105), (63, 106), (63, 107), (63, 108), (63, 110), (63, 113), (63, 115), (64, 93), (64, 99), (64, 100), (64, 101), (64, 102), (64, 103), (64, 104), (64, 105), (64, 106), (64, 107), (64, 108), (64, 110), (64, 114), (64, 116), (65, 91), (65, 92), (65, 97), (65, 98), (65, 99), (65, 100), (65, 101), (65, 102), (65, 103), (65, 104), (65, 105), (65, 106), (65, 107), (65, 108), (65, 110), (65, 115), (65, 116), (66, 87), (66, 89), (66, 90), (66, 93), (66, 95), (66, 99), (66, 101), (66, 102), (66, 103), (66, 104), (66, 105), (66, 106), (66, 107), (66, 108), (66, 110), (66, 115), (66, 116), (67, 86), (67, 91), (67, 92), (67, 93), (67, 94), (67, 99), (67, 101), (67, 102), (67, 103), (67, 104), (67, 105), (67, 106), (67, 107), (67, 109), (68, 82), (68, 84), (68, 87), (68, 94), (68, 99), (68, 101), (68, 102), (68, 103), (68, 104), (68, 105), (68, 106), (68, 107), (68, 109), (69, 81), (69, 88), (69, 89), (69, 90), (69, 91), (69, 93), (69, 99), (69, 101), (69, 102), (69, 103), (69, 104), (69, 105), (69, 106), (69, 107), (69, 109), (70, 80), (70, 83), (70, 84), (70, 85), (70, 86), (70, 87), (70, 99), (70, 101), (70, 102), (70, 103), (70, 104), (70, 105), (70, 106), (70, 108), (71, 79), (71, 82), (71, 99), (71, 101), (71, 102), (71, 103), (71, 104), (71, 105), (71, 106), (71, 108), (72, 78), (72, 80), (72, 100), (72, 102), (72, 103), (72, 104), (72, 105), (72, 107), (72, 108), (73, 77), (73, 80), (73, 100), (73, 107), (74, 76), (74, 79), (74, 101), (74, 103), (74, 104), (74, 105), (74, 107), (75, 76), (75, 78), (75, 80), (76, 77), (76, 79), (76, 80), (76, 81), (76, 82), (76, 83), (76, 84), (76, 85), (76, 87), (77, 77), (77, 79), (77, 80), (77, 89), (78, 77), (78, 79), (78, 80), (78, 81), (78, 82), (78, 83), (78, 84), (78, 91), (79, 77), (79, 79), (79, 80), (79, 81), (79, 82), (79, 83), (79, 84), (79, 86), (79, 87), (79, 93), (80, 77), (80, 80), (80, 81), (80, 82), (80, 84), (80, 88), (80, 91), (80, 94), (81, 78), (81, 81), (81, 82), (81, 84), (81, 90), (81, 92), (81, 93), (81, 96), (82, 79), (82, 84), (82, 86), (82, 91), (82, 93), (82, 94), (82, 97), (83, 80), (83, 82), (83, 83), (83, 87), (83, 88), (83, 92), (83, 93), (83, 97), (84, 85), (84, 86), (84, 90), (84, 91), (84, 92), (84, 93), (84, 95), (84, 97), (85, 87), (85, 93), (85, 96), (85, 97), (86, 90), (86, 91), (86, 93), (86, 97)) coordinates_d2_b48_c = ((64, 112), (65, 112), (66, 112), (66, 113), (67, 112), (67, 114), (68, 111), (68, 113), (69, 111), (69, 113), (70, 111), (70, 113), (71, 110), (71, 112), (72, 110), (72, 112), (73, 110), (73, 112), (74, 109), (74, 111), (75, 109), (75, 111), (76, 109), (76, 111), (77, 109), (77, 111), (78, 108), (78, 110), (79, 108), (79, 110), (80, 109), (80, 111), (81, 110), (81, 111), (82, 111), (82, 112), (83, 112), (83, 113), (84, 113)) coordinates_dcf8_a4 = ((98, 155), (98, 157), (99, 154), (99, 158), (100, 153), (100, 155), (100, 156), (100, 157), (100, 159), (101, 152), (101, 154), (101, 155), (101, 156), (101, 157), (101, 159), (102, 151), (102, 154), (102, 155), (102, 156), (102, 157), (102, 159), (103, 151), (103, 153), (103, 154), (103, 155), (103, 156), (103, 157), (103, 158), (103, 159), (103, 160), (104, 150), (104, 152), (104, 153), (104, 154), (104, 155), (104, 156), (104, 157), (104, 158), (104, 160), (105, 150), (105, 152), (105, 153), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 160), (106, 150), (106, 152), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 160), (107, 150), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 160), (108, 150), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157), (108, 158), (108, 160), (109, 150), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 160), (110, 150), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 160), (111, 152), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 161), (112, 153), (112, 155), (112, 156), (112, 157), (112, 158), (112, 159), (112, 160), (112, 162), (113, 153), (113, 154), (113, 155), (113, 156), (113, 157), (113, 158), (113, 159), (113, 162), (114, 154), (114, 156), (114, 157), (114, 158), (114, 161), (115, 153), (115, 155), (115, 156), (115, 159), (116, 152), (116, 154), (116, 155), (116, 156), (116, 158), (117, 148), (117, 150), (117, 151), (117, 152), (117, 153), (117, 154), (117, 156), (118, 147)) coordinates_dbf8_a4 = ((129, 149), (132, 156), (132, 157), (133, 155), (133, 157), (134, 154), (134, 156), (134, 158), (135, 155), (135, 156), (135, 157), (135, 159), (136, 150), (136, 154), (136, 155), (136, 156), (136, 157), (136, 158), (136, 160), (137, 151), (137, 153), (137, 154), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 161), (138, 150), (138, 152), (138, 153), (138, 154), (138, 155), (138, 156), (138, 157), (138, 158), (138, 159), (138, 161), (139, 150), (139, 152), (139, 153), (139, 154), (139, 155), (139, 156), (139, 157), (139, 158), (139, 159), (139, 160), (139, 162), (140, 150), (140, 152), (140, 153), (140, 154), (140, 155), (140, 156), (140, 157), (140, 158), (140, 159), (140, 160), (140, 162), (141, 150), (141, 152), (141, 153), (141, 154), (141, 155), (141, 156), (141, 157), (141, 158), (141, 159), (141, 160), (141, 162), (142, 151), (142, 152), (142, 153), (142, 154), (142, 155), (142, 156), (142, 157), (142, 158), (142, 159), (142, 161), (143, 151), (143, 153), (143, 154), (143, 155), (143, 156), (143, 157), (143, 158), (143, 159), (143, 161), (144, 152), (144, 154), (144, 155), (144, 156), (144, 157), (144, 158), (144, 159), (144, 161), (145, 152), (145, 154), (145, 155), (145, 156), (145, 157), (145, 158), (145, 160), (146, 153), (146, 155), (146, 156), (146, 157), (146, 158), (146, 160), (147, 156), (147, 157), (147, 159), (148, 154), (148, 157), (148, 159), (149, 155), (149, 159), (150, 156), (150, 158), (151, 157)) coordinates_2_acca4 = ((119, 148), (119, 149), (119, 150), (119, 151), (119, 152), (119, 153), (119, 155), (120, 147), (120, 156), (121, 146), (121, 148), (121, 149), (121, 150), (121, 151), (121, 152), (121, 153), (121, 154), (121, 156), (122, 146), (122, 148), (122, 149), (122, 150), (122, 151), (122, 152), (122, 153), (122, 154), (122, 155), (122, 157), (123, 146), (123, 148), (123, 149), (123, 150), (123, 151), (123, 152), (123, 153), (123, 154), (123, 155), (123, 157), (124, 146), (124, 148), (124, 149), (124, 150), (124, 151), (124, 152), (124, 153), (124, 154), (124, 156), (125, 147), (125, 149), (125, 150), (125, 151), (125, 152), (125, 153), (125, 154), (125, 156), (126, 147), (126, 148), (126, 156), (127, 149), (127, 151), (127, 152), (127, 153), (127, 155)) coordinates_87324_a = ((105, 92), (105, 95), (106, 90), (106, 94), (107, 88), (107, 92), (108, 86), (108, 87), (108, 90), (109, 85), (109, 88), (109, 90), (110, 84), (110, 86), (110, 87), (110, 89), (111, 83), (111, 85), (111, 86), (111, 87), (111, 89), (112, 83), (112, 85), (112, 86), (112, 87), (112, 89), (113, 84), (113, 86), (113, 87), (113, 89), (114, 84), (114, 86), (114, 87), (114, 89), (115, 85), (115, 87), (115, 89), (116, 85), (116, 87), (116, 89), (117, 86), (117, 89), (118, 86), (118, 88), (118, 89), (119, 85), (119, 86), (119, 88), (120, 75), (120, 76), (120, 77), (120, 78), (120, 79), (120, 80), (120, 81), (120, 82), (120, 83), (120, 84), (120, 88), (121, 68), (121, 70), (121, 71), (121, 72), (121, 73), (121, 74), (121, 75), (121, 77), (121, 78), (121, 79), (121, 80), (121, 81), (121, 82), (121, 83), (121, 84), (121, 85), (121, 86), (121, 88), (122, 69), (122, 70), (122, 71), (122, 72), (122, 73), (122, 74)) coordinates_60_cc60 = ((82, 162), (82, 163), (83, 161), (83, 164), (84, 160), (84, 162), (84, 164), (85, 159), (85, 161), (85, 162), (85, 163), (85, 165), (86, 160), (86, 161), (86, 162), (86, 163), (86, 165), (87, 155), (87, 159), (87, 160), (87, 161), (87, 162), (87, 163), (87, 165), (87, 170), (88, 157), (88, 158), (88, 159), (88, 160), (88, 161), (88, 162), (88, 163), (88, 164), (88, 165), (88, 166), (88, 169), (89, 154), (89, 156), (89, 157), (89, 158), (89, 159), (89, 160), (89, 161), (89, 162), (89, 163), (89, 164), (89, 165), (89, 167), (90, 153), (90, 155), (90, 156), (90, 157), (90, 158), (90, 159), (90, 160), (90, 161), (90, 162), (90, 163), (90, 164), (90, 165), (90, 167), (91, 152), (91, 154), (91, 155), (91, 156), (91, 157), (91, 158), (91, 159), (91, 160), (91, 161), (91, 162), (91, 163), (91, 164), (91, 165), (91, 167), (91, 170), (92, 151), (92, 153), (92, 154), (92, 155), (92, 156), (92, 157), (92, 158), (92, 159), (92, 160), (92, 161), (92, 162), (92, 163), (92, 164), (92, 165), (92, 166), (92, 167), (92, 168), (92, 170), (93, 151), (93, 153), (93, 154), (93, 155), (93, 156), (93, 157), (93, 158), (93, 159), (93, 160), (93, 161), (93, 162), (93, 163), (93, 164), (93, 165), (93, 166), (93, 167), (93, 169), (94, 150), (94, 152), (94, 153), (94, 154), (94, 155), (94, 157), (94, 158), (94, 159), (94, 160), (94, 161), (94, 162), (94, 163), (94, 164), (94, 165), (94, 166), (94, 167), (94, 169), (95, 149), (95, 151), (95, 152), (95, 153), (95, 156), (95, 159), (95, 160), (95, 161), (95, 162), (95, 163), (95, 164), (95, 165), (95, 166), (95, 167), (95, 169), (96, 148), (96, 150), (96, 151), (96, 152), (96, 155), (96, 157), (96, 160), (96, 161), (96, 162), (96, 163), (96, 164), (96, 165), (96, 166), (96, 167), (96, 169), (97, 148), (97, 150), (97, 151), (97, 153), (97, 159), (97, 161), (97, 162), (97, 163), (97, 164), (97, 165), (97, 166), (97, 167), (97, 168), (97, 170), (98, 147), (98, 149), (98, 150), (98, 152), (98, 160), (98, 162), (98, 163), (98, 164), (98, 165), (98, 166), (98, 167), (98, 168), (98, 169), (98, 171), (99, 146), (99, 148), (99, 149), (99, 150), (99, 152), (99, 160), (99, 162), (99, 163), (99, 164), (99, 165), (99, 166), (99, 167), (99, 168), (99, 169), (99, 171), (100, 146), (100, 148), (100, 149), (100, 151), (100, 161), (100, 163), (100, 164), (100, 165), (100, 166), (100, 167), (100, 168), (100, 169), (100, 170), (100, 172), (101, 145), (101, 147), (101, 148), (101, 150), (101, 161), (101, 162), (101, 164), (101, 165), (101, 166), (101, 167), (101, 168), (101, 169), (101, 170), (101, 172), (102, 145), (102, 147), (102, 149), (102, 162), (102, 164), (102, 165), (102, 166), (102, 167), (102, 168), (102, 169), (102, 170), (102, 172), (103, 145), (103, 148), (103, 162), (103, 164), (103, 165), (103, 166), (103, 167), (103, 168), (103, 169), (103, 170), (103, 171), (104, 144), (104, 146), (104, 148), (104, 162), (104, 164), (104, 165), (104, 166), (104, 167), (104, 168), (104, 170), (105, 143), (105, 145), (105, 146), (105, 148), (105, 162), (105, 164), (105, 165), (105, 166), (105, 167), (105, 168), (105, 170), (106, 143), (106, 145), (106, 146), (106, 148), (106, 162), (106, 164), (106, 165), (106, 166), (106, 167), (106, 168), (106, 170), (107, 141), (107, 143), (107, 144), (107, 145), (107, 147), (107, 162), (107, 164), (107, 165), (107, 166), (107, 167), (107, 168), (107, 169), (107, 171), (108, 140), (108, 143), (108, 144), (108, 145), (108, 147), (108, 162), (108, 164), (108, 165), (108, 166), (108, 167), (108, 168), (108, 169), (108, 170), (108, 172), (109, 139), (109, 141), (109, 142), (109, 143), (109, 144), (109, 145), (109, 147), (109, 162), (109, 164), (109, 165), (109, 166), (109, 167), (109, 168), (109, 169), (109, 170), (109, 171), (109, 173), (110, 138), (110, 140), (110, 141), (110, 142), (110, 143), (110, 144), (110, 145), (110, 146), (110, 148), (110, 163), (110, 165), (110, 166), (110, 167), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 174), (111, 137), (111, 139), (111, 140), (111, 141), (111, 142), (111, 143), (111, 144), (111, 145), (111, 146), (111, 147), (111, 149), (111, 164), (111, 167), (111, 168), (111, 169), (111, 170), (111, 171), (111, 172), (112, 137), (112, 139), (112, 140), (112, 141), (112, 142), (112, 143), (112, 144), (112, 145), (112, 146), (112, 147), (112, 148), (112, 150), (112, 164), (112, 166), (112, 169), (112, 170), (112, 171), (112, 172), (112, 174), (113, 136), (113, 138), (113, 139), (113, 140), (113, 141), (113, 142), (113, 143), (113, 144), (113, 145), (113, 146), (113, 147), (113, 148), (113, 149), (113, 151), (113, 167), (113, 171), (113, 173), (114, 137), (114, 138), (114, 139), (114, 140), (114, 141), (114, 142), (114, 143), (114, 144), (114, 145), (114, 146), (114, 147), (114, 151), (114, 169), (114, 172), (115, 135), (115, 138), (115, 139), (115, 140), (115, 141), (115, 142), (115, 143), (115, 144), (115, 145), (115, 148), (115, 150), (115, 151), (115, 172), (116, 136), (116, 137), (116, 140), (116, 141), (116, 142), (116, 143), (116, 144), (116, 145), (117, 138), (117, 141), (117, 142), (117, 143), (117, 145), (118, 140), (118, 143), (118, 145), (119, 141), (119, 145), (120, 143), (121, 144)) coordinates_5_fcc60 = ((126, 144), (127, 136), (127, 138), (127, 139), (127, 140), (127, 141), (127, 142), (127, 144), (128, 135), (128, 137), (128, 145), (129, 135), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 142), (129, 143), (129, 144), (129, 146), (129, 152), (129, 154), (129, 155), (130, 135), (130, 137), (130, 138), (130, 139), (130, 140), (130, 141), (130, 142), (130, 143), (130, 144), (130, 145), (130, 147), (130, 151), (130, 153), (130, 155), (131, 136), (131, 138), (131, 139), (131, 140), (131, 141), (131, 142), (131, 143), (131, 144), (131, 145), (131, 146), (131, 149), (131, 150), (131, 151), (131, 152), (131, 154), (132, 136), (132, 138), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 145), (132, 146), (132, 147), (132, 151), (132, 153), (132, 173), (132, 175), (133, 136), (133, 139), (133, 140), (133, 141), (133, 142), (133, 143), (133, 144), (133, 145), (133, 146), (133, 149), (133, 152), (133, 170), (133, 173), (133, 175), (134, 138), (134, 141), (134, 142), (134, 143), (134, 144), (134, 145), (134, 147), (134, 150), (134, 151), (134, 168), (134, 173), (134, 175), (135, 139), (135, 142), (135, 143), (135, 144), (135, 145), (135, 147), (135, 167), (135, 170), (135, 173), (135, 174), (135, 176), (136, 140), (136, 143), (136, 144), (136, 145), (136, 146), (136, 148), (136, 166), (136, 168), (136, 169), (136, 170), (136, 171), (136, 172), (136, 173), (136, 174), (136, 175), (136, 177), (137, 142), (137, 144), (137, 145), (137, 146), (137, 147), (137, 148), (137, 164), (137, 167), (137, 168), (137, 169), (137, 170), (137, 171), (137, 172), (137, 173), (137, 174), (137, 175), (137, 176), (137, 178), (138, 142), (138, 144), (138, 145), (138, 146), (138, 148), (138, 166), (138, 167), (138, 168), (138, 169), (138, 170), (138, 171), (138, 172), (138, 173), (138, 174), (138, 175), (138, 176), (138, 177), (138, 179), (139, 143), (139, 145), (139, 147), (139, 164), (139, 166), (139, 167), (139, 168), (139, 169), (139, 170), (139, 171), (139, 172), (139, 173), (139, 174), (139, 175), (139, 176), (139, 177), (139, 179), (140, 143), (140, 145), (140, 147), (140, 164), (140, 166), (140, 167), (140, 168), (140, 169), (140, 170), (140, 171), (140, 172), (140, 173), (140, 174), (140, 175), (140, 179), (141, 144), (141, 146), (141, 148), (141, 164), (141, 166), (141, 167), (141, 168), (141, 169), (141, 170), (141, 171), (141, 172), (141, 173), (141, 174), (141, 176), (141, 178), (142, 145), (142, 148), (142, 164), (142, 166), (142, 167), (142, 168), (142, 169), (142, 170), (142, 171), (142, 172), (142, 173), (142, 175), (143, 145), (143, 147), (143, 149), (143, 163), (143, 165), (143, 166), (143, 167), (143, 168), (143, 169), (143, 170), (143, 171), (143, 172), (144, 146), (144, 149), (144, 163), (144, 165), (144, 166), (144, 167), (144, 168), (144, 169), (144, 170), (144, 171), (144, 173), (145, 147), (145, 150), (145, 163), (145, 165), (145, 166), (145, 167), (145, 168), (145, 169), (145, 170), (145, 172), (146, 147), (146, 150), (146, 162), (146, 164), (146, 165), (146, 166), (146, 167), (146, 168), (146, 169), (146, 170), (146, 172), (147, 148), (147, 151), (147, 162), (147, 164), (147, 165), (147, 166), (147, 167), (147, 168), (147, 169), (147, 170), (147, 172), (148, 149), (148, 152), (148, 161), (148, 163), (148, 164), (148, 165), (148, 166), (148, 167), (148, 168), (148, 169), (148, 170), (148, 172), (149, 149), (149, 151), (149, 153), (149, 161), (149, 163), (149, 164), (149, 165), (149, 166), (149, 167), (149, 168), (149, 169), (149, 170), (149, 172), (150, 150), (150, 152), (150, 154), (150, 160), (150, 162), (150, 163), (150, 164), (150, 165), (150, 166), (150, 167), (150, 168), (150, 169), (150, 170), (150, 172), (151, 151), (151, 153), (151, 155), (151, 160), (151, 162), (151, 163), (151, 164), (151, 165), (151, 166), (151, 167), (151, 168), (151, 169), (151, 171), (152, 151), (152, 153), (152, 154), (152, 156), (152, 159), (152, 161), (152, 162), (152, 163), (152, 164), (152, 165), (152, 166), (152, 167), (152, 168), (152, 169), (152, 171), (153, 151), (153, 153), (153, 154), (153, 155), (153, 157), (153, 160), (153, 161), (153, 162), (153, 163), (153, 164), (153, 165), (153, 166), (153, 167), (153, 168), (153, 169), (153, 171), (154, 152), (154, 154), (154, 155), (154, 156), (154, 159), (154, 160), (154, 161), (154, 162), (154, 163), (154, 164), (154, 165), (154, 166), (154, 167), (154, 168), (154, 171), (155, 152), (155, 153), (155, 154), (155, 155), (155, 156), (155, 157), (155, 158), (155, 159), (155, 160), (155, 161), (155, 162), (155, 163), (155, 164), (155, 165), (155, 166), (155, 167), (155, 168), (155, 170), (156, 153), (156, 155), (156, 156), (156, 157), (156, 158), (156, 159), (156, 160), (156, 161), (156, 162), (156, 163), (156, 164), (156, 165), (156, 166), (156, 167), (156, 169), (157, 153), (157, 155), (157, 156), (157, 157), (157, 158), (157, 159), (157, 160), (157, 161), (157, 162), (157, 163), (157, 164), (157, 165), (157, 166), (157, 168), (158, 154), (158, 156), (158, 157), (158, 158), (158, 159), (158, 160), (158, 161), (158, 162), (158, 163), (158, 164), (158, 165), (158, 166), (158, 168), (159, 155), (159, 157), (159, 158), (159, 161), (159, 162), (159, 163), (159, 164), (159, 165), (159, 167), (160, 156), (160, 159), (160, 161), (160, 162), (160, 163), (160, 164), (160, 166), (161, 156), (161, 161), (161, 163), (161, 165), (162, 161), (162, 164), (163, 161), (163, 164), (164, 161), (164, 164), (165, 161), (165, 163)) coordinates_f4_deb3 = ((144, 85), (145, 83), (145, 85), (146, 80), (146, 82), (146, 85), (147, 78), (147, 82), (147, 83), (147, 85), (148, 76), (148, 80), (148, 81), (148, 82), (148, 83), (148, 84), (148, 86), (149, 72), (149, 73), (149, 74), (149, 78), (149, 79), (149, 80), (149, 81), (149, 82), (149, 83), (149, 84), (149, 85), (149, 87), (150, 69), (150, 71), (150, 75), (150, 76), (150, 77), (150, 78), (150, 79), (150, 80), (150, 81), (150, 82), (150, 83), (150, 84), (150, 85), (150, 86), (150, 88), (151, 69), (151, 72), (151, 73), (151, 74), (151, 75), (151, 76), (151, 77), (151, 78), (151, 79), (151, 80), (151, 82), (151, 83), (151, 84), (151, 85), (151, 87), (152, 68), (152, 70), (152, 71), (152, 72), (152, 73), (152, 74), (152, 75), (152, 76), (152, 77), (152, 78), (152, 79), (152, 81), (152, 83), (152, 84), (152, 85), (152, 87), (153, 69), (153, 71), (153, 72), (153, 73), (153, 74), (153, 80), (153, 83), (153, 84), (153, 85), (153, 87), (154, 69), (154, 72), (154, 73), (154, 75), (154, 76), (154, 77), (154, 79), (154, 83), (154, 86), (155, 70), (155, 71), (155, 74), (155, 83), (155, 94), (155, 96), (156, 73), (156, 82), (156, 85), (156, 93), (156, 96), (157, 81), (157, 83), (157, 92), (157, 94), (157, 95), (158, 80), (158, 82), (158, 91), (158, 93), (158, 95), (159, 79), (159, 81), (159, 90), (159, 92), (159, 94), (160, 78), (160, 80), (160, 88), (160, 94), (161, 77), (161, 79), (161, 87), (161, 90), (161, 91), (161, 93), (162, 76), (162, 79), (162, 83), (162, 85), (162, 88), (163, 76), (163, 78), (163, 79), (163, 80), (163, 81), (163, 82), (163, 83), (163, 87), (164, 76), (164, 77), (164, 78), (164, 85), (165, 76), (165, 79), (165, 80), (165, 81), (165, 82), (165, 83), (165, 84), (166, 77), (166, 78)) coordinates_ff00_fe = ((123, 125), (124, 96), (124, 98), (124, 99), (124, 100), (124, 101), (124, 102), (124, 103), (124, 104), (124, 105), (124, 106), (124, 108), (125, 96), (125, 104), (125, 107), (125, 124), (126, 97), (126, 99), (126, 100), (126, 106), (126, 107), (127, 97), (127, 99), (127, 101), (127, 106), (127, 107), (127, 124), (128, 97), (128, 99), (128, 101), (128, 106), (128, 107), (128, 124), (129, 97), (129, 100), (129, 106), (130, 98), (130, 100), (130, 106), (130, 125), (130, 126), (131, 98), (131, 99), (131, 105), (131, 125), (131, 127), (131, 128), (131, 129), (132, 98), (132, 99), (132, 125), (132, 128), (132, 129), (132, 131), (133, 98), (133, 125), (133, 127), (133, 130), (133, 132), (134, 126), (134, 131), (134, 132), (135, 125), (135, 131), (135, 133), (136, 132), (136, 133), (137, 132), (137, 133), (138, 133)) coordinates_fe00_ff = ((106, 97), (106, 98), (107, 97), (108, 94), (109, 92), (109, 95), (110, 92), (110, 95), (111, 92), (111, 95), (112, 92), (112, 95), (113, 92), (113, 95), (114, 92), (114, 95), (114, 107), (115, 92), (115, 95), (115, 107), (116, 92), (116, 94), (116, 95), (116, 96), (116, 97), (116, 107), (117, 91), (117, 93), (117, 94), (117, 95), (117, 98), (117, 99), (117, 101), (117, 106), (117, 107), (118, 91), (118, 93), (118, 94), (118, 95), (118, 96), (118, 97), (118, 106), (118, 107), (118, 108), (119, 90), (119, 92), (119, 93), (119, 94), (119, 95), (119, 96), (119, 97), (119, 98), (119, 99), (119, 100), (119, 101), (119, 103), (119, 104), (119, 106), (119, 108), (120, 90), (120, 94), (120, 95), (120, 96), (120, 108), (121, 90), (121, 92), (121, 93), (121, 97), (121, 98), (121, 99), (121, 100), (121, 101), (121, 102), (121, 103), (121, 104), (121, 105), (121, 106), (121, 108), (122, 95), (122, 109)) coordinates_26408_b = ((124, 87), (124, 89), (124, 90), (124, 91), (124, 93), (124, 94), (125, 87), (125, 94), (126, 87), (126, 89), (126, 91), (126, 92), (126, 94), (127, 87), (127, 89), (127, 90), (127, 92), (127, 93), (127, 95), (128, 87), (128, 89), (128, 93), (128, 95), (129, 87), (129, 89), (129, 92), (129, 95), (130, 87), (130, 89), (130, 93), (130, 95), (131, 88), (131, 89), (131, 94), (131, 96), (132, 88), (132, 89), (132, 95), (132, 96), (133, 88), (133, 90), (133, 96), (134, 89), (134, 91), (135, 89), (135, 92), (136, 90), (137, 91), (137, 92)) coordinates_798732 = ((124, 68), (124, 70), (124, 71), (124, 75), (124, 79), (124, 81), (124, 82), (124, 84), (125, 65), (125, 73), (125, 77), (125, 80), (125, 85), (126, 68), (126, 70), (126, 75), (126, 78), (126, 83), (126, 85), (127, 70), (127, 84), (127, 85), (128, 69), (128, 70), (128, 84), (128, 85), (129, 69), (129, 84), (129, 85), (130, 70), (130, 71), (130, 84), (130, 85), (131, 84), (131, 85), (132, 84), (132, 86), (133, 84), (133, 86), (134, 84), (134, 86), (135, 85), (135, 87), (136, 86), (136, 87), (137, 88), (138, 90)) coordinates_f5_deb3 = ((85, 81), (85, 83), (86, 80), (86, 84), (86, 85), (87, 79), (87, 81), (87, 82), (87, 83), (87, 87), (87, 88), (88, 79), (88, 81), (88, 82), (88, 83), (88, 84), (88, 85), (88, 89), (88, 90), (88, 91), (88, 92), (89, 80), (89, 83), (89, 84), (89, 85), (89, 86), (89, 87), (89, 88), (89, 93), (89, 95), (90, 81), (90, 84), (90, 85), (90, 86), (90, 87), (90, 88), (90, 89), (90, 90), (90, 91), (90, 92), (90, 96), (90, 98), (91, 83), (91, 86), (91, 87), (91, 88), (91, 89), (91, 90), (91, 91), (91, 92), (91, 93), (91, 94), (91, 95), (91, 98), (92, 84), (92, 89), (92, 90), (92, 91), (92, 92), (92, 93), (92, 94), (92, 95), (92, 96), (92, 98), (93, 87), (93, 88), (93, 89), (93, 97), (94, 90), (94, 91), (94, 92), (94, 93), (94, 94), (94, 96)) coordinates_016400 = ((134, 135), (135, 135), (136, 135), (136, 138), (137, 135), (137, 139), (138, 135), (138, 137), (138, 138), (138, 140), (139, 135), (139, 137), (139, 138), (139, 140), (140, 135), (140, 137), (140, 139), (141, 135), (141, 137), (141, 139), (142, 135), (142, 137), (142, 139), (143, 135), (143, 137), (143, 139), (144, 134), (144, 136), (144, 137), (144, 139), (145, 134), (145, 136), (145, 137), (145, 139), (146, 134), (146, 136), (146, 137), (146, 139), (147, 134), (147, 136), (147, 137), (147, 139), (148, 134), (148, 136), (148, 137), (148, 139), (149, 134), (149, 136), (149, 138), (150, 134), (150, 136), (150, 138), (151, 134), (151, 135), (151, 137), (152, 135), (152, 137), (153, 135), (153, 136), (154, 135), (154, 136), (155, 135), (156, 135)) coordinates_b8_edc2 = ((121, 140), (121, 142), (122, 137), (122, 143), (123, 137), (123, 140), (123, 141), (123, 144), (124, 144), (125, 137), (125, 139), (125, 140), (125, 141), (125, 142))
class Adam: def __init__(self, lr=0.001, beta1=0.9, beta2=0.999): self.lr = lr self.beta1 = beta1 self.beta2 = beta2 self.iter = 0 self.m = None self.v = None def update(self, params, grads): if self.m is None: self.m, self.v = {}, {} for key, val in params.items(): self.m[key] = np.zeros_like(val) self.v[key] = np.zeros_like(val) self.iter += 1 for key in params.keys(): #self.m[key] = self.beta1 * self.m[key] + (1 - np.power(self.beta1,self.iter)) #self.v[key] = self.beta2 * self.v[key] + (1 - np.power(self.beta1,self.iter)) self.m[key] = self.beta1 * self.m[key] + (1 - self.beta1) * grads[key] self.v[key] = self.beta2 * self.v[key] + (1 - self.beta2) * (grads[key] * grads[key]) #self.v[key] = self.beta2 * self.v[key] + (1 - self.beta2) * (grads[key]**2) #m_unbias = (1 - self.beta1) * (grads[key] - self.m[key]) #v_unbias = (1 - self.beta2) * (grads[key]**2 - self.v[key]) m_unbias = self.m[key] / (1 - self.beta1 ** self.iter) v_unbias = self.v[key] / (1 - self.beta2 ** self.iter) params[key] -= self.lr * m_unbias / (np.sqrt(v_unbias) + 1e-7)
class Adam: def __init__(self, lr=0.001, beta1=0.9, beta2=0.999): self.lr = lr self.beta1 = beta1 self.beta2 = beta2 self.iter = 0 self.m = None self.v = None def update(self, params, grads): if self.m is None: (self.m, self.v) = ({}, {}) for (key, val) in params.items(): self.m[key] = np.zeros_like(val) self.v[key] = np.zeros_like(val) self.iter += 1 for key in params.keys(): self.m[key] = self.beta1 * self.m[key] + (1 - self.beta1) * grads[key] self.v[key] = self.beta2 * self.v[key] + (1 - self.beta2) * (grads[key] * grads[key]) m_unbias = self.m[key] / (1 - self.beta1 ** self.iter) v_unbias = self.v[key] / (1 - self.beta2 ** self.iter) params[key] -= self.lr * m_unbias / (np.sqrt(v_unbias) + 1e-07)
# # PySNMP MIB module HH3C-RCP-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-RCP-MIB # Produced by pysmi-0.3.4 at Wed May 1 13:29:20 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion") hh3cRCP, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3cRCP") InterfaceIndexOrZero, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndexOrZero") InetAddress, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddress", "InetAddressType") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") ObjectIdentity, Counter32, Bits, Counter64, Integer32, Gauge32, MibIdentifier, TimeTicks, ModuleIdentity, Unsigned32, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, iso = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Counter32", "Bits", "Counter64", "Integer32", "Gauge32", "MibIdentifier", "TimeTicks", "ModuleIdentity", "Unsigned32", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "iso") RowStatus, DisplayString, TruthValue, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "DisplayString", "TruthValue", "TextualConvention") hh3cRCPMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1)) hh3cRCPMIB.setRevisions(('2006-09-20 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: hh3cRCPMIB.setRevisionsDescriptions(('The Initial Version of h3cRCPMIB.',)) if mibBuilder.loadTexts: hh3cRCPMIB.setLastUpdated('200609200000Z') if mibBuilder.loadTexts: hh3cRCPMIB.setOrganization('Hangzhou H3C Tech. Co., Ltd.') if mibBuilder.loadTexts: hh3cRCPMIB.setContactInfo('Platform Team Hangzhou H3C Tech. Co., Ltd. Hai-Dian District Beijing P.R. China http://www.h3c.com Zip:100085 ') if mibBuilder.loadTexts: hh3cRCPMIB.setDescription('The MIB module is used for managing RCP protocol server.') hh3cRCPLeaf = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1)) hh3cRCPServerEnableStatus = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: hh3cRCPServerEnableStatus.setStatus('current') if mibBuilder.loadTexts: hh3cRCPServerEnableStatus.setDescription('This attribute controls the system wide operation of RCP server. The value TRUE means that the RCP server is enabled. The value FALSE means that the RCP server is disabled.') hh3cRCPConnTimeout = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: hh3cRCPConnTimeout.setStatus('current') if mibBuilder.loadTexts: hh3cRCPConnTimeout.setDescription('Specifies the maximum time in seconds that a RCP client connection is idle.') hh3cRCPRuleTimeout = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 3), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: hh3cRCPRuleTimeout.setStatus('current') if mibBuilder.loadTexts: hh3cRCPRuleTimeout.setDescription('Specifies the time in seconds before a RCP rule is aged out. If its value is 0, it indicates RCP rule will not be aged out.') hh3cRCPServerMaxConn = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: hh3cRCPServerMaxConn.setStatus('current') if mibBuilder.loadTexts: hh3cRCPServerMaxConn.setDescription('Specifies the maximum number of clients that permitted to connect with RCP server at the same time.') hh3cRCPServerCurConn = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPServerCurConn.setStatus('current') if mibBuilder.loadTexts: hh3cRCPServerCurConn.setDescription('The current actual number of clients that connecting with RCP server.') hh3cRCPConnTimeoutMaxValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPConnTimeoutMaxValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPConnTimeoutMaxValue.setDescription('Specifies the maximum value of hh3cRCPConnTimeout.') hh3cRCPRuleTimeoutMaxValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPRuleTimeoutMaxValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPRuleTimeoutMaxValue.setDescription('Specifies the maximum value of hh3cRCPRuleTimeout.') hh3cRCPServerMaxConnMaxValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPServerMaxConnMaxValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPServerMaxConnMaxValue.setDescription('Specifies the maximum value of hh3cRCPServerMaxConn.') hh3cRCPBalanceGroupIdMinValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMinValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMinValue.setDescription('Specifies the minimum value of balance group identity.') hh3cRCPBalanceGroupIdMaxValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMaxValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMaxValue.setDescription('Specifies the maximum value of balance group identity.') hh3cRCPTotalUsers = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPTotalUsers.setStatus('current') if mibBuilder.loadTexts: hh3cRCPTotalUsers.setDescription('Specifies the total number of RCP user.') hh3cRCPTotalClientIPs = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPTotalClientIPs.setStatus('current') if mibBuilder.loadTexts: hh3cRCPTotalClientIPs.setDescription('Specifies the total number of RCP client IP.') hh3cRCPTable = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2)) hh3cRCPUserTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1), ) if mibBuilder.loadTexts: hh3cRCPUserTable.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserTable.setDescription('RCP User Info Table.') hh3cRCPUserEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1), ).setIndexNames((0, "HH3C-RCP-MIB", "hh3cRCPUserName")) if mibBuilder.loadTexts: hh3cRCPUserEntry.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserEntry.setDescription('The entry of hh3cRCPUserTable.') hh3cRCPUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 16))) if mibBuilder.loadTexts: hh3cRCPUserName.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserName.setDescription('The name of RCP user.') hh3cRCPUserPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 16))).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cRCPUserPassword.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserPassword.setDescription(" The password of RCP user. It is invisible to users and displayed as '***'.") hh3cRCPUserRedirectInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 3), InterfaceIndexOrZero()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cRCPUserRedirectInterface.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserRedirectInterface.setDescription('The redirect interface index of RCP user. The RCP rule assigned by the user can be associated with the redirect interface. If the redirect interface is invalid, its value is set to be 0.') hh3cRCPUserRedirectBalanceGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 4), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cRCPUserRedirectBalanceGroup.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserRedirectBalanceGroup.setDescription('The redirect balance group identity of RCP user. The RCP rule assigned by the user can be associated with the redirect balance group. If the balance group is invalid, its value is set to be 0.') hh3cRCPUserRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 5), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cRCPUserRowStatus.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserRowStatus.setDescription('This manages the creation and deletion of rows, and shows the current status of the indexed user name. This object has the following values. active(1) The indexed user name is configured on the device. notInService(2) Not Supported. notReady(3) Not Supported. createAndGo(4) Create a new user. createAndWait(5) Not Supported. destroy(6) Delete this entry. The associated entry can be modified when the value of hh3cRCPUserRowStatus is active(1). When deleting an inexistence entry, return noError.') hh3cRCPClientIPTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2), ) if mibBuilder.loadTexts: hh3cRCPClientIPTable.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIPTable.setDescription('RCP Client IP Table.') hh3cRCPClientIPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1), ).setIndexNames((0, "HH3C-RCP-MIB", "hh3cRCPClientIPType"), (0, "HH3C-RCP-MIB", "hh3cRCPClientIP")) if mibBuilder.loadTexts: hh3cRCPClientIPEntry.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIPEntry.setDescription('The entry of hh3cRCPClientIPTable.') hh3cRCPClientIPType = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 1), InetAddressType()) if mibBuilder.loadTexts: hh3cRCPClientIPType.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIPType.setDescription('The IP address type (IPv4 or IPv6) of RCP client.') hh3cRCPClientIP = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 2), InetAddress()) if mibBuilder.loadTexts: hh3cRCPClientIP.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIP.setDescription('The IP address of RCP client.') hh3cRCPClientIPRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 3), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cRCPClientIPRowStatus.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIPRowStatus.setDescription('This manages the creation and deletion or rows, and shows the current status of the indexed client IP address. This object has the following values. active(1) The indexed client IP is configured on the device. notInService(2) Not Supported. notReady(3) Not Supported. createAndGo(4) Create a new client IP. createAndWait(5) Not Supported. destroy(6) Delete this entry. The associated entry can be modified when the value of hh3cRCPClientIPRowStatus is active(1). When deleting an inexistence entry, return noError.') hh3cRCPSessionTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3), ) if mibBuilder.loadTexts: hh3cRCPSessionTable.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionTable.setDescription('RCP session Table.') hh3cRCPSessionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1), ).setIndexNames((0, "HH3C-RCP-MIB", "hh3cRCPSessionId")) if mibBuilder.loadTexts: hh3cRCPSessionEntry.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionEntry.setDescription('The entry of hh3cRCPSessionTable.') hh3cRCPSessionId = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 1), Integer32()) if mibBuilder.loadTexts: hh3cRCPSessionId.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionId.setDescription('RCP session identity.') hh3cRCPSessionClientIPType = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 2), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPSessionClientIPType.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionClientIPType.setDescription('The IP address type (IPv4 or IPv6) of RCP client.') hh3cRCPSessionClientIP = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 3), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPSessionClientIP.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionClientIP.setDescription('RCP client IP address.') hh3cRCPSessionRunningStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("connected", 1), ("operational", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPSessionRunningStatus.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionRunningStatus.setDescription('RCP server running status. It is one of the following status: connected: The connection is established and the RCP client is waiting for authentication. operational: The RCP client is authenticated and the server is ready for rule configuration request.') hh3cRCPSessionUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cRCPSessionUserName.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionUserName.setDescription('RCP user name.') mibBuilder.exportSymbols("HH3C-RCP-MIB", hh3cRCPTotalUsers=hh3cRCPTotalUsers, hh3cRCPUserTable=hh3cRCPUserTable, hh3cRCPUserPassword=hh3cRCPUserPassword, hh3cRCPSessionTable=hh3cRCPSessionTable, hh3cRCPUserEntry=hh3cRCPUserEntry, hh3cRCPSessionId=hh3cRCPSessionId, hh3cRCPSessionRunningStatus=hh3cRCPSessionRunningStatus, hh3cRCPConnTimeout=hh3cRCPConnTimeout, hh3cRCPUserRowStatus=hh3cRCPUserRowStatus, hh3cRCPClientIPType=hh3cRCPClientIPType, hh3cRCPRuleTimeout=hh3cRCPRuleTimeout, PYSNMP_MODULE_ID=hh3cRCPMIB, hh3cRCPServerCurConn=hh3cRCPServerCurConn, hh3cRCPBalanceGroupIdMinValue=hh3cRCPBalanceGroupIdMinValue, hh3cRCPSessionEntry=hh3cRCPSessionEntry, hh3cRCPRuleTimeoutMaxValue=hh3cRCPRuleTimeoutMaxValue, hh3cRCPUserName=hh3cRCPUserName, hh3cRCPClientIPTable=hh3cRCPClientIPTable, hh3cRCPServerMaxConn=hh3cRCPServerMaxConn, hh3cRCPUserRedirectBalanceGroup=hh3cRCPUserRedirectBalanceGroup, hh3cRCPServerMaxConnMaxValue=hh3cRCPServerMaxConnMaxValue, hh3cRCPBalanceGroupIdMaxValue=hh3cRCPBalanceGroupIdMaxValue, hh3cRCPSessionClientIP=hh3cRCPSessionClientIP, hh3cRCPUserRedirectInterface=hh3cRCPUserRedirectInterface, hh3cRCPTable=hh3cRCPTable, hh3cRCPSessionUserName=hh3cRCPSessionUserName, hh3cRCPSessionClientIPType=hh3cRCPSessionClientIPType, hh3cRCPClientIPRowStatus=hh3cRCPClientIPRowStatus, hh3cRCPServerEnableStatus=hh3cRCPServerEnableStatus, hh3cRCPClientIP=hh3cRCPClientIP, hh3cRCPLeaf=hh3cRCPLeaf, hh3cRCPMIB=hh3cRCPMIB, hh3cRCPTotalClientIPs=hh3cRCPTotalClientIPs, hh3cRCPClientIPEntry=hh3cRCPClientIPEntry, hh3cRCPConnTimeoutMaxValue=hh3cRCPConnTimeoutMaxValue)
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, value_size_constraint, single_value_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion') (hh3c_rcp,) = mibBuilder.importSymbols('HH3C-OID-MIB', 'hh3cRCP') (interface_index_or_zero,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndexOrZero') (inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddress', 'InetAddressType') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (object_identity, counter32, bits, counter64, integer32, gauge32, mib_identifier, time_ticks, module_identity, unsigned32, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Counter32', 'Bits', 'Counter64', 'Integer32', 'Gauge32', 'MibIdentifier', 'TimeTicks', 'ModuleIdentity', 'Unsigned32', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'iso') (row_status, display_string, truth_value, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'DisplayString', 'TruthValue', 'TextualConvention') hh3c_rcpmib = module_identity((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1)) hh3cRCPMIB.setRevisions(('2006-09-20 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: hh3cRCPMIB.setRevisionsDescriptions(('The Initial Version of h3cRCPMIB.',)) if mibBuilder.loadTexts: hh3cRCPMIB.setLastUpdated('200609200000Z') if mibBuilder.loadTexts: hh3cRCPMIB.setOrganization('Hangzhou H3C Tech. Co., Ltd.') if mibBuilder.loadTexts: hh3cRCPMIB.setContactInfo('Platform Team Hangzhou H3C Tech. Co., Ltd. Hai-Dian District Beijing P.R. China http://www.h3c.com Zip:100085 ') if mibBuilder.loadTexts: hh3cRCPMIB.setDescription('The MIB module is used for managing RCP protocol server.') hh3c_rcp_leaf = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1)) hh3c_rcp_server_enable_status = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: hh3cRCPServerEnableStatus.setStatus('current') if mibBuilder.loadTexts: hh3cRCPServerEnableStatus.setDescription('This attribute controls the system wide operation of RCP server. The value TRUE means that the RCP server is enabled. The value FALSE means that the RCP server is disabled.') hh3c_rcp_conn_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: hh3cRCPConnTimeout.setStatus('current') if mibBuilder.loadTexts: hh3cRCPConnTimeout.setDescription('Specifies the maximum time in seconds that a RCP client connection is idle.') hh3c_rcp_rule_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 3), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: hh3cRCPRuleTimeout.setStatus('current') if mibBuilder.loadTexts: hh3cRCPRuleTimeout.setDescription('Specifies the time in seconds before a RCP rule is aged out. If its value is 0, it indicates RCP rule will not be aged out.') hh3c_rcp_server_max_conn = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: hh3cRCPServerMaxConn.setStatus('current') if mibBuilder.loadTexts: hh3cRCPServerMaxConn.setDescription('Specifies the maximum number of clients that permitted to connect with RCP server at the same time.') hh3c_rcp_server_cur_conn = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPServerCurConn.setStatus('current') if mibBuilder.loadTexts: hh3cRCPServerCurConn.setDescription('The current actual number of clients that connecting with RCP server.') hh3c_rcp_conn_timeout_max_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPConnTimeoutMaxValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPConnTimeoutMaxValue.setDescription('Specifies the maximum value of hh3cRCPConnTimeout.') hh3c_rcp_rule_timeout_max_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPRuleTimeoutMaxValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPRuleTimeoutMaxValue.setDescription('Specifies the maximum value of hh3cRCPRuleTimeout.') hh3c_rcp_server_max_conn_max_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 8), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPServerMaxConnMaxValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPServerMaxConnMaxValue.setDescription('Specifies the maximum value of hh3cRCPServerMaxConn.') hh3c_rcp_balance_group_id_min_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 9), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMinValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMinValue.setDescription('Specifies the minimum value of balance group identity.') hh3c_rcp_balance_group_id_max_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMaxValue.setStatus('current') if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMaxValue.setDescription('Specifies the maximum value of balance group identity.') hh3c_rcp_total_users = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 11), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPTotalUsers.setStatus('current') if mibBuilder.loadTexts: hh3cRCPTotalUsers.setDescription('Specifies the total number of RCP user.') hh3c_rcp_total_client_i_ps = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 12), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPTotalClientIPs.setStatus('current') if mibBuilder.loadTexts: hh3cRCPTotalClientIPs.setDescription('Specifies the total number of RCP client IP.') hh3c_rcp_table = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2)) hh3c_rcp_user_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1)) if mibBuilder.loadTexts: hh3cRCPUserTable.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserTable.setDescription('RCP User Info Table.') hh3c_rcp_user_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1)).setIndexNames((0, 'HH3C-RCP-MIB', 'hh3cRCPUserName')) if mibBuilder.loadTexts: hh3cRCPUserEntry.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserEntry.setDescription('The entry of hh3cRCPUserTable.') hh3c_rcp_user_name = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(1, 16))) if mibBuilder.loadTexts: hh3cRCPUserName.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserName.setDescription('The name of RCP user.') hh3c_rcp_user_password = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 16))).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cRCPUserPassword.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserPassword.setDescription(" The password of RCP user. It is invisible to users and displayed as '***'.") hh3c_rcp_user_redirect_interface = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 3), interface_index_or_zero()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cRCPUserRedirectInterface.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserRedirectInterface.setDescription('The redirect interface index of RCP user. The RCP rule assigned by the user can be associated with the redirect interface. If the redirect interface is invalid, its value is set to be 0.') hh3c_rcp_user_redirect_balance_group = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 4), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cRCPUserRedirectBalanceGroup.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserRedirectBalanceGroup.setDescription('The redirect balance group identity of RCP user. The RCP rule assigned by the user can be associated with the redirect balance group. If the balance group is invalid, its value is set to be 0.') hh3c_rcp_user_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 5), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cRCPUserRowStatus.setStatus('current') if mibBuilder.loadTexts: hh3cRCPUserRowStatus.setDescription('This manages the creation and deletion of rows, and shows the current status of the indexed user name. This object has the following values. active(1) The indexed user name is configured on the device. notInService(2) Not Supported. notReady(3) Not Supported. createAndGo(4) Create a new user. createAndWait(5) Not Supported. destroy(6) Delete this entry. The associated entry can be modified when the value of hh3cRCPUserRowStatus is active(1). When deleting an inexistence entry, return noError.') hh3c_rcp_client_ip_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2)) if mibBuilder.loadTexts: hh3cRCPClientIPTable.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIPTable.setDescription('RCP Client IP Table.') hh3c_rcp_client_ip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1)).setIndexNames((0, 'HH3C-RCP-MIB', 'hh3cRCPClientIPType'), (0, 'HH3C-RCP-MIB', 'hh3cRCPClientIP')) if mibBuilder.loadTexts: hh3cRCPClientIPEntry.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIPEntry.setDescription('The entry of hh3cRCPClientIPTable.') hh3c_rcp_client_ip_type = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 1), inet_address_type()) if mibBuilder.loadTexts: hh3cRCPClientIPType.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIPType.setDescription('The IP address type (IPv4 or IPv6) of RCP client.') hh3c_rcp_client_ip = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 2), inet_address()) if mibBuilder.loadTexts: hh3cRCPClientIP.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIP.setDescription('The IP address of RCP client.') hh3c_rcp_client_ip_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 3), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cRCPClientIPRowStatus.setStatus('current') if mibBuilder.loadTexts: hh3cRCPClientIPRowStatus.setDescription('This manages the creation and deletion or rows, and shows the current status of the indexed client IP address. This object has the following values. active(1) The indexed client IP is configured on the device. notInService(2) Not Supported. notReady(3) Not Supported. createAndGo(4) Create a new client IP. createAndWait(5) Not Supported. destroy(6) Delete this entry. The associated entry can be modified when the value of hh3cRCPClientIPRowStatus is active(1). When deleting an inexistence entry, return noError.') hh3c_rcp_session_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3)) if mibBuilder.loadTexts: hh3cRCPSessionTable.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionTable.setDescription('RCP session Table.') hh3c_rcp_session_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1)).setIndexNames((0, 'HH3C-RCP-MIB', 'hh3cRCPSessionId')) if mibBuilder.loadTexts: hh3cRCPSessionEntry.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionEntry.setDescription('The entry of hh3cRCPSessionTable.') hh3c_rcp_session_id = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 1), integer32()) if mibBuilder.loadTexts: hh3cRCPSessionId.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionId.setDescription('RCP session identity.') hh3c_rcp_session_client_ip_type = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 2), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPSessionClientIPType.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionClientIPType.setDescription('The IP address type (IPv4 or IPv6) of RCP client.') hh3c_rcp_session_client_ip = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 3), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPSessionClientIP.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionClientIP.setDescription('RCP client IP address.') hh3c_rcp_session_running_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('connected', 1), ('operational', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPSessionRunningStatus.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionRunningStatus.setDescription('RCP server running status. It is one of the following status: connected: The connection is established and the RCP client is waiting for authentication. operational: The RCP client is authenticated and the server is ready for rule configuration request.') hh3c_rcp_session_user_name = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cRCPSessionUserName.setStatus('current') if mibBuilder.loadTexts: hh3cRCPSessionUserName.setDescription('RCP user name.') mibBuilder.exportSymbols('HH3C-RCP-MIB', hh3cRCPTotalUsers=hh3cRCPTotalUsers, hh3cRCPUserTable=hh3cRCPUserTable, hh3cRCPUserPassword=hh3cRCPUserPassword, hh3cRCPSessionTable=hh3cRCPSessionTable, hh3cRCPUserEntry=hh3cRCPUserEntry, hh3cRCPSessionId=hh3cRCPSessionId, hh3cRCPSessionRunningStatus=hh3cRCPSessionRunningStatus, hh3cRCPConnTimeout=hh3cRCPConnTimeout, hh3cRCPUserRowStatus=hh3cRCPUserRowStatus, hh3cRCPClientIPType=hh3cRCPClientIPType, hh3cRCPRuleTimeout=hh3cRCPRuleTimeout, PYSNMP_MODULE_ID=hh3cRCPMIB, hh3cRCPServerCurConn=hh3cRCPServerCurConn, hh3cRCPBalanceGroupIdMinValue=hh3cRCPBalanceGroupIdMinValue, hh3cRCPSessionEntry=hh3cRCPSessionEntry, hh3cRCPRuleTimeoutMaxValue=hh3cRCPRuleTimeoutMaxValue, hh3cRCPUserName=hh3cRCPUserName, hh3cRCPClientIPTable=hh3cRCPClientIPTable, hh3cRCPServerMaxConn=hh3cRCPServerMaxConn, hh3cRCPUserRedirectBalanceGroup=hh3cRCPUserRedirectBalanceGroup, hh3cRCPServerMaxConnMaxValue=hh3cRCPServerMaxConnMaxValue, hh3cRCPBalanceGroupIdMaxValue=hh3cRCPBalanceGroupIdMaxValue, hh3cRCPSessionClientIP=hh3cRCPSessionClientIP, hh3cRCPUserRedirectInterface=hh3cRCPUserRedirectInterface, hh3cRCPTable=hh3cRCPTable, hh3cRCPSessionUserName=hh3cRCPSessionUserName, hh3cRCPSessionClientIPType=hh3cRCPSessionClientIPType, hh3cRCPClientIPRowStatus=hh3cRCPClientIPRowStatus, hh3cRCPServerEnableStatus=hh3cRCPServerEnableStatus, hh3cRCPClientIP=hh3cRCPClientIP, hh3cRCPLeaf=hh3cRCPLeaf, hh3cRCPMIB=hh3cRCPMIB, hh3cRCPTotalClientIPs=hh3cRCPTotalClientIPs, hh3cRCPClientIPEntry=hh3cRCPClientIPEntry, hh3cRCPConnTimeoutMaxValue=hh3cRCPConnTimeoutMaxValue)
#Two words are blanagrams if they are anagrams but exactly one letter has been substituted for another. #Given two words, check if they are blanagrams of each other. def checkBlanagrams(word1, word2): difference = 0 sortedWord1 = sorted(word1) sortedWord2 = sorted(word2) for a, b in zip(sortedWord1, sortedWord2): if sortedWord1 == sortedWord2: return False if a != b: difference += 1 if difference > 1: return False return True #You are given a sorted array in ascending order that is rotated at some unknown pivot (i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]) #and a target value. #Write a function that returns the target value's index. If the target value is not present in the array, return -1. #You may assume no duplicate exists in the array. #Your algorithm's runtime complexity must be in the order of O(log n). def findValueSortedShiftedArray(nums, target): min = 0 max = len(nums) - 1 while min < max: mid = (min + max) // 2 if nums[mid] == target: return mid if nums[min] <= nums[mid]: if target >= nums[min] and target < nums[mid]: max = mid else: min = mid + 1 else: if target <= nums[max] and target > nums[mid]: min = mid + 1 else: max = mid return -1
def check_blanagrams(word1, word2): difference = 0 sorted_word1 = sorted(word1) sorted_word2 = sorted(word2) for (a, b) in zip(sortedWord1, sortedWord2): if sortedWord1 == sortedWord2: return False if a != b: difference += 1 if difference > 1: return False return True def find_value_sorted_shifted_array(nums, target): min = 0 max = len(nums) - 1 while min < max: mid = (min + max) // 2 if nums[mid] == target: return mid if nums[min] <= nums[mid]: if target >= nums[min] and target < nums[mid]: max = mid else: min = mid + 1 elif target <= nums[max] and target > nums[mid]: min = mid + 1 else: max = mid return -1
arr = [1, 2] brr = [3, 4] print(arr + brr) print([1] * 3)
arr = [1, 2] brr = [3, 4] print(arr + brr) print([1] * 3)
def check_is_prime(n): if n == 2 or n == 3: return True if n % 2 == 0 or n < 2: return False for i in range(3, int(n**0.5)+1, 2): if n % i == 0: return False return True
def check_is_prime(n): if n == 2 or n == 3: return True if n % 2 == 0 or n < 2: return False for i in range(3, int(n ** 0.5) + 1, 2): if n % i == 0: return False return True
if __name__ == '__main__': input = [x.strip().split('-') for x in open('input', 'r').readlines()] map = {} for path in input: if path[0] not in map: map[path[0]] = list() map[path[0]].append(path[1]) if path[1] not in map: map[path[1]] = list() map[path[1]].append(path[0]) paths_to_finish = [(['start'], False)] counter = 0 all_paths = [] while paths_to_finish: current_path, already_revisited = paths_to_finish.pop(-1) if current_path[-1] == 'end': counter += 1 all_paths.append(current_path) continue for next_cave in map[current_path[-1]]: currently_revisiting = already_revisited if next_cave == 'start': continue elif next_cave.islower() and next_cave in current_path and already_revisited: continue elif next_cave.islower() and next_cave in current_path and not already_revisited: currently_revisiting = True paths_to_finish.append((current_path + [next_cave], currently_revisiting)) print(counter)
if __name__ == '__main__': input = [x.strip().split('-') for x in open('input', 'r').readlines()] map = {} for path in input: if path[0] not in map: map[path[0]] = list() map[path[0]].append(path[1]) if path[1] not in map: map[path[1]] = list() map[path[1]].append(path[0]) paths_to_finish = [(['start'], False)] counter = 0 all_paths = [] while paths_to_finish: (current_path, already_revisited) = paths_to_finish.pop(-1) if current_path[-1] == 'end': counter += 1 all_paths.append(current_path) continue for next_cave in map[current_path[-1]]: currently_revisiting = already_revisited if next_cave == 'start': continue elif next_cave.islower() and next_cave in current_path and already_revisited: continue elif next_cave.islower() and next_cave in current_path and (not already_revisited): currently_revisiting = True paths_to_finish.append((current_path + [next_cave], currently_revisiting)) print(counter)
class DH_Endpoint(object): def __init__(self, public_key1, public_key2, private_key): self.public_key1 = public_key1 self.public_key2 = public_key2 self.private_key = private_key self.full_key = None def generate_partial_key(self): partial_key = self.public_key1**self.private_key partial_key = partial_key%self.public_key2 return partial_key def generate_full_key(self, partial_key_r): full_key = partial_key_r**self.private_key full_key = full_key%self.public_key2 self.full_key = full_key return full_key def encrypt_message(self, message): encrypted_message = "" key = self.full_key for c in message: encrypted_message += chr(ord(c)+key) return encrypted_message def decrypt_message(self, encrypted_message): decrypted_message = "" key = self.full_key for c in encrypted_message: decrypted_message += chr(ord(c)-key) return decrypted_message message="This is a very secret message!!!" s_public=197 s_private=199 m_public=151 m_private=157 Sadat = DH_Endpoint(s_public, m_public, s_private) Michael = DH_Endpoint(s_public, m_public, m_private) s_partial=Sadat.generate_partial_key() print(s_partial) m_partial=Michael.generate_partial_key() print(m_partial) s_full=Sadat.generate_full_key(m_partial) print(s_full) #75 m_full=Michael.generate_full_key(s_partial) print(m_full) #75 m_encrypted=Michael.encrypt_message(message) print(m_encrypted) message = Sadat.decrypt_message(m_encrypted) print(message)
class Dh_Endpoint(object): def __init__(self, public_key1, public_key2, private_key): self.public_key1 = public_key1 self.public_key2 = public_key2 self.private_key = private_key self.full_key = None def generate_partial_key(self): partial_key = self.public_key1 ** self.private_key partial_key = partial_key % self.public_key2 return partial_key def generate_full_key(self, partial_key_r): full_key = partial_key_r ** self.private_key full_key = full_key % self.public_key2 self.full_key = full_key return full_key def encrypt_message(self, message): encrypted_message = '' key = self.full_key for c in message: encrypted_message += chr(ord(c) + key) return encrypted_message def decrypt_message(self, encrypted_message): decrypted_message = '' key = self.full_key for c in encrypted_message: decrypted_message += chr(ord(c) - key) return decrypted_message message = 'This is a very secret message!!!' s_public = 197 s_private = 199 m_public = 151 m_private = 157 sadat = dh__endpoint(s_public, m_public, s_private) michael = dh__endpoint(s_public, m_public, m_private) s_partial = Sadat.generate_partial_key() print(s_partial) m_partial = Michael.generate_partial_key() print(m_partial) s_full = Sadat.generate_full_key(m_partial) print(s_full) m_full = Michael.generate_full_key(s_partial) print(m_full) m_encrypted = Michael.encrypt_message(message) print(m_encrypted) message = Sadat.decrypt_message(m_encrypted) print(message)
""" bitToRealHelper.py is a helper class to convert a binary representation to a real numbered representation for the purpose of the assignment. In reality, it would be much simpler to program a GA that uses real values and an interpolation method during crossover. @author Michael Allport 2021 """ class BitToReal(): """BitToReal's purpose it to extract sub bit arrays from a chromosome for its component variables. A BitToReal may be instantated with [10, 10, 10] bitLength, and the proceeding method GetRealValue would take a chromosome as input and be able to extract the 1st, second, or third variable's real value based on 10 bits each, or its bit arrays with GetBitArray. Extra members have been made to print this bit representation's resolution. Error checking has also been enabled so any chromosome input with a BitToReal cannot be of a length less than the total of its variables length. It can however be greater than. So a chromosome can have more bits than this representation, but the extra bits will just be ignored when calculating real values""" def __init__(self, bitLengths: list, minimum, maximum, ): self._bitLengths = bitLengths self._minimum = minimum self._maximum = maximum def GetRealValue(self, chromosome: list, variable): """GetRealValue's purpose is to attain the real value of a given variable number from a given chromosome chromosome: the array containing bits variable: the variable number to get value from, variable 1 being of bit length self._bitLengths[0] """ self.CheckChromosomeLength(chromosome) return self.ConvertBinaryArrToReal(self, self.GetBitArray(chromosome, variable)) def GetBitArray(self, chromosome: list, variable): """GetBitArray's purpose is to return a bit array pertaining to the given variable from the given chromosome chromosome: the array containing bits variable: the variable number of the array to get, variable 1 being of bit length self._bitLengths[0] """ self.CheckChromosomeLength(chromosome) variableBits = chromosome[(sum(self._bitLengths[i-1] for i in range(1, variable))): (sum(self._bitLengths[i-1] for i in range(1, variable+1)))] return variableBits @staticmethod def ConvertBinaryArrToReal(btr, bitArr): """ ConvertBinaryArrToReal's purpose is to convert a given array of bits into its real value""" dec = sum(bitArr[i] * 2**i for i in range(len(bitArr))) return btr._minimum + ((dec) / (2**len(bitArr) - 1)) * (btr._maximum - btr._minimum) def GetBinaryRealResolutions(self): """GetBinaryRealResolutions purpose is to return the precision of a given binary real representation""" return [(self._maximum - self._minimum) / (2**self._bitLengths[i] - 1) for i in range(len(self._bitLengths))] def PrintResolutions(self): """PrintResolutions purpose is to attain an array of resolutions, and print them to console""" resolutions = self.GetBinaryRealResolutions() for i in range(len(resolutions)): print(f'Resolution Variable {i}: {resolutions[i]}') def GetBitArrays(self, chromosome): """GetBitArrays purpose is to extract each variables bit array from a given chromosome and return them in an array""" self.CheckChromosomeLength(chromosome) arr = [] for i in range(1, len(self._bitLengths) +1): arr.append(self.GetBitArray(chromosome, i)) #arr.append(self.GetRealValue(chromosome, i) for i in range(1, len(self._bitLengths) + 1)) return arr def CheckChromosomeLength(self, chromosome): """CheckChromosomeLength's purpose is to ensure that the chromosomes length is not greater than the sum of the variables lengths, if it is throw an exception""" sumLengths = sum(self._bitLengths[i] for i in range(len(self._bitLengths))) if (sumLengths > len(chromosome)): raise Exception(f'Error, chromosome of length({len(chromosome)}) given when total' + f' variable lengths should be {sumLengths}')
""" bitToRealHelper.py is a helper class to convert a binary representation to a real numbered representation for the purpose of the assignment. In reality, it would be much simpler to program a GA that uses real values and an interpolation method during crossover. @author Michael Allport 2021 """ class Bittoreal: """BitToReal's purpose it to extract sub bit arrays from a chromosome for its component variables. A BitToReal may be instantated with [10, 10, 10] bitLength, and the proceeding method GetRealValue would take a chromosome as input and be able to extract the 1st, second, or third variable's real value based on 10 bits each, or its bit arrays with GetBitArray. Extra members have been made to print this bit representation's resolution. Error checking has also been enabled so any chromosome input with a BitToReal cannot be of a length less than the total of its variables length. It can however be greater than. So a chromosome can have more bits than this representation, but the extra bits will just be ignored when calculating real values""" def __init__(self, bitLengths: list, minimum, maximum): self._bitLengths = bitLengths self._minimum = minimum self._maximum = maximum def get_real_value(self, chromosome: list, variable): """GetRealValue's purpose is to attain the real value of a given variable number from a given chromosome chromosome: the array containing bits variable: the variable number to get value from, variable 1 being of bit length self._bitLengths[0] """ self.CheckChromosomeLength(chromosome) return self.ConvertBinaryArrToReal(self, self.GetBitArray(chromosome, variable)) def get_bit_array(self, chromosome: list, variable): """GetBitArray's purpose is to return a bit array pertaining to the given variable from the given chromosome chromosome: the array containing bits variable: the variable number of the array to get, variable 1 being of bit length self._bitLengths[0] """ self.CheckChromosomeLength(chromosome) variable_bits = chromosome[sum((self._bitLengths[i - 1] for i in range(1, variable))):sum((self._bitLengths[i - 1] for i in range(1, variable + 1)))] return variableBits @staticmethod def convert_binary_arr_to_real(btr, bitArr): """ ConvertBinaryArrToReal's purpose is to convert a given array of bits into its real value""" dec = sum((bitArr[i] * 2 ** i for i in range(len(bitArr)))) return btr._minimum + dec / (2 ** len(bitArr) - 1) * (btr._maximum - btr._minimum) def get_binary_real_resolutions(self): """GetBinaryRealResolutions purpose is to return the precision of a given binary real representation""" return [(self._maximum - self._minimum) / (2 ** self._bitLengths[i] - 1) for i in range(len(self._bitLengths))] def print_resolutions(self): """PrintResolutions purpose is to attain an array of resolutions, and print them to console""" resolutions = self.GetBinaryRealResolutions() for i in range(len(resolutions)): print(f'Resolution Variable {i}: {resolutions[i]}') def get_bit_arrays(self, chromosome): """GetBitArrays purpose is to extract each variables bit array from a given chromosome and return them in an array""" self.CheckChromosomeLength(chromosome) arr = [] for i in range(1, len(self._bitLengths) + 1): arr.append(self.GetBitArray(chromosome, i)) return arr def check_chromosome_length(self, chromosome): """CheckChromosomeLength's purpose is to ensure that the chromosomes length is not greater than the sum of the variables lengths, if it is throw an exception""" sum_lengths = sum((self._bitLengths[i] for i in range(len(self._bitLengths)))) if sumLengths > len(chromosome): raise exception(f'Error, chromosome of length({len(chromosome)}) given when total' + f' variable lengths should be {sumLengths}')
def make_sectional_content(data : list) -> list: sections = [] section = [] for item in data: if item == "~~~": sections.append(section) section = [] continue section.append(item) return sections def print_sectional_content(sections : list) -> None: for section in sections: for item in section: print(item) input("Enter to continue...")
def make_sectional_content(data: list) -> list: sections = [] section = [] for item in data: if item == '~~~': sections.append(section) section = [] continue section.append(item) return sections def print_sectional_content(sections: list) -> None: for section in sections: for item in section: print(item) input('Enter to continue...')
def test_find_or_create_invite(logged_rocket): rid = 'GENERAL' find_or_create_invite = logged_rocket.find_or_create_invite(rid=rid, days=7, max_uses=5).json() assert find_or_create_invite.get('success') assert find_or_create_invite.get('days') == 7 assert find_or_create_invite.get('maxUses') == 5 def test_list_invites(logged_rocket): list_invites = logged_rocket.list_invites().json() assert isinstance(list_invites, list)
def test_find_or_create_invite(logged_rocket): rid = 'GENERAL' find_or_create_invite = logged_rocket.find_or_create_invite(rid=rid, days=7, max_uses=5).json() assert find_or_create_invite.get('success') assert find_or_create_invite.get('days') == 7 assert find_or_create_invite.get('maxUses') == 5 def test_list_invites(logged_rocket): list_invites = logged_rocket.list_invites().json() assert isinstance(list_invites, list)
def check_best_ways(matrix: list, row: int, col: int): direction_up = float('-inf') position_direction_up = [] up_sum = 0 for r in range(row - 1, -1, -1): if matrix[r][col] == "X": break up_sum += matrix[r][col] direction_up = up_sum position_direction_up.append([r, col]) direction_down = float('-inf') position_direction_down = [] down_sum = 0 for r in range(row + 1, rows): if matrix[r][col] == "X": break down_sum += matrix[r][col] direction_down = down_sum position_direction_down.append([r, col]) direction_left = float('-inf') left_sum = 0 position_direction_left = [] for c in range(col - 1, -1, -1): if matrix[row][c] == "X": break left_sum += matrix[row][c] direction_left = left_sum position_direction_left.append([row, c]) direction_right = float('-inf') right_sum = 0 position_direction_right = [] for c in range(col + 1, rows): if matrix[row][c] == "X": break right_sum += matrix[row][c] direction_right = right_sum position_direction_right.append([row, c]) best_way = max(direction_up, direction_down, direction_left, direction_right) if best_way == direction_up: return {"up": {"value": direction_up, "position": position_direction_up}} elif best_way == direction_down: return {"down": {"value": direction_down, "position": position_direction_down}} elif best_way == direction_left: return {"left": {"value": direction_left, "position": position_direction_left}} elif best_way == direction_right: return {"right": {"value": direction_right, "position": position_direction_right}} rows = int(input()) matrix = [] bunny_position = None for row in range(rows): matrix.append([el if el.isalpha() else int(el) for el in input().split()]) for col in range(rows): el = matrix[row][col] if el == "B": bunny_position = (row, col) best_way = check_best_ways(matrix, bunny_position[0], bunny_position[1]) for key, value in best_way.items(): print(key) for v in best_way[key]["position"]: print(v) print(best_way[key]["value"])
def check_best_ways(matrix: list, row: int, col: int): direction_up = float('-inf') position_direction_up = [] up_sum = 0 for r in range(row - 1, -1, -1): if matrix[r][col] == 'X': break up_sum += matrix[r][col] direction_up = up_sum position_direction_up.append([r, col]) direction_down = float('-inf') position_direction_down = [] down_sum = 0 for r in range(row + 1, rows): if matrix[r][col] == 'X': break down_sum += matrix[r][col] direction_down = down_sum position_direction_down.append([r, col]) direction_left = float('-inf') left_sum = 0 position_direction_left = [] for c in range(col - 1, -1, -1): if matrix[row][c] == 'X': break left_sum += matrix[row][c] direction_left = left_sum position_direction_left.append([row, c]) direction_right = float('-inf') right_sum = 0 position_direction_right = [] for c in range(col + 1, rows): if matrix[row][c] == 'X': break right_sum += matrix[row][c] direction_right = right_sum position_direction_right.append([row, c]) best_way = max(direction_up, direction_down, direction_left, direction_right) if best_way == direction_up: return {'up': {'value': direction_up, 'position': position_direction_up}} elif best_way == direction_down: return {'down': {'value': direction_down, 'position': position_direction_down}} elif best_way == direction_left: return {'left': {'value': direction_left, 'position': position_direction_left}} elif best_way == direction_right: return {'right': {'value': direction_right, 'position': position_direction_right}} rows = int(input()) matrix = [] bunny_position = None for row in range(rows): matrix.append([el if el.isalpha() else int(el) for el in input().split()]) for col in range(rows): el = matrix[row][col] if el == 'B': bunny_position = (row, col) best_way = check_best_ways(matrix, bunny_position[0], bunny_position[1]) for (key, value) in best_way.items(): print(key) for v in best_way[key]['position']: print(v) print(best_way[key]['value'])
class Asset: def __init__(self, type, nameplate, project): self.type = type self.nameplate = nameplate self.project = project B02 = Asset("Tracker","none", "Saltwood Solar") print(B02.project)
class Asset: def __init__(self, type, nameplate, project): self.type = type self.nameplate = nameplate self.project = project b02 = asset('Tracker', 'none', 'Saltwood Solar') print(B02.project)
pokerNames = ('3','4','5','6','7','8','9','10','J','Q','K','A','2','B','R') pokerValues = ( 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 100,200,300) pokerDict = dict(zip(pokerNames, pokerValues)) def getCardValue(name): return pokerDict[name] if __name__ == '__main__': print(getCardValue('3')) print(getCardValue('4')) print(getCardValue('5')) print(getCardValue('6')) print(getCardValue('7')) print(getCardValue('8')) print(getCardValue('9')) print(getCardValue('10')) print(getCardValue('J')) print(getCardValue('Q')) print(getCardValue('K')) print(getCardValue('A')) print(getCardValue('2')) print(getCardValue('B')) print(getCardValue('R'))
poker_names = ('3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K', 'A', '2', 'B', 'R') poker_values = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 100, 200, 300) poker_dict = dict(zip(pokerNames, pokerValues)) def get_card_value(name): return pokerDict[name] if __name__ == '__main__': print(get_card_value('3')) print(get_card_value('4')) print(get_card_value('5')) print(get_card_value('6')) print(get_card_value('7')) print(get_card_value('8')) print(get_card_value('9')) print(get_card_value('10')) print(get_card_value('J')) print(get_card_value('Q')) print(get_card_value('K')) print(get_card_value('A')) print(get_card_value('2')) print(get_card_value('B')) print(get_card_value('R'))
# Program to find if the numbers given can add # up to a given target or not """ m = target, determines the height of the tree n = array length, determines complexity This has a O(n^m) time complexity and O(m) space complexity when solving without memoization. Memoized Solution: Time = O(m*n) Space = O(m) """ cache = {} def can_sum(target, numbers): global cache if target in cache: return cache[target] if target == 0: return True if target < 0: return False for number in numbers: remainder = target - number if can_sum(remainder, numbers): cache[target] = True return True cache[target] = False return False print(can_sum(7, (2, 3))) cache.clear() print(can_sum(7, (5, 3, 4, 7))) cache.clear() print(can_sum(7, (2, 4))) cache.clear() print(can_sum(8, (2, 3, 5))) cache.clear() print(can_sum(300, (7, 14)))
""" m = target, determines the height of the tree n = array length, determines complexity This has a O(n^m) time complexity and O(m) space complexity when solving without memoization. Memoized Solution: Time = O(m*n) Space = O(m) """ cache = {} def can_sum(target, numbers): global cache if target in cache: return cache[target] if target == 0: return True if target < 0: return False for number in numbers: remainder = target - number if can_sum(remainder, numbers): cache[target] = True return True cache[target] = False return False print(can_sum(7, (2, 3))) cache.clear() print(can_sum(7, (5, 3, 4, 7))) cache.clear() print(can_sum(7, (2, 4))) cache.clear() print(can_sum(8, (2, 3, 5))) cache.clear() print(can_sum(300, (7, 14)))
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: MIT-0 # # Permission is hereby granted, free of charge, to any person obtaining a copy of this # software and associated documentation files (the "Software"), to deal in the Software # without restriction, including without limitation the rights to use, copy, modify, # merge, publish, distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, # INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A # PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # Basic (simplistic?) implementation of Observer pattern # ''' To Use: - subclass Observable for a thing that chagnes - subclass Observer for the things that will use those changes - Observers call Observable's #addObserver to register and #removeObserver to stop - When the thing (the Observable) changes, #notifyObservers calls all the Observers ''' class Observer: def update(observable, arg): '''Called when observed object is modified, from list of Observers in object via notifyObservers. Observers must first register with Observable.''' pass '''NOTE: NOT Implementing the thread synchronization from https://python-3-patterns-idioms-test.readthedocs.io/en/latest/Observer.html for simplicity''' class Observable: def __init__(self): self.observers = [] self.changed = False def addObserver(self, observer): if observer not in self.observers: self.observers.append(observer) def removeObserver(self, observer): self.observers.remove(observer) def notifyObservers(self, arg = None): try: observers = self.observers self.changed = False for o in observers: o.update(arg) except Exception as err: pass # an observable chunk of raw data from the serial port, or a file, or ? class ObservableString(Observable): def __init__(self): super().__init__() self.clear() def clear(self): self.chunk = b'' # call to add to the end of the chunk, notifies observers def append(self, increment): if len(increment) > 0: self.chunk = self.chunk + increment self.notifyObservers(self.chunk) self.clear() # an Observaable wrapped array class ObservableFlatArray(Observable): def __init__(self): super().__init__() self.clear() def clear(self): self.elements = [] def append(self, newElements): if len(newElements) > 0: self.elements.extend(newElements) self.notifyObservers(self.elements) self.clear() # ObservableArray is 'flat' in that it will be extended with the new elements. # sometimes you want to append a deep object to the array... # # use ObservableDeepArray for that class ObservableDeepArray(Observable): def __init__(self): super().__init__() self.clear() def clear(self): self.elements = [] def append(self, newItem): if len(newItem) > 0: self.elements.append(newItem) self.notifyObservers(self.elements) self.clear() # an Observable wrapped dict class ObservableDict(Observable): def __init__(self): super().__init__() self.clear() def clear(self): self.dict = {} def append(self, newDict): if len(newDict) > 0: self.dict.update(newDict) self.notifyObservers(self.dict) def getDict(self): return self.dict
""" To Use: - subclass Observable for a thing that chagnes - subclass Observer for the things that will use those changes - Observers call Observable's #addObserver to register and #removeObserver to stop - When the thing (the Observable) changes, #notifyObservers calls all the Observers """ class Observer: def update(observable, arg): """Called when observed object is modified, from list of Observers in object via notifyObservers. Observers must first register with Observable.""" pass 'NOTE: NOT Implementing the thread synchronization from\nhttps://python-3-patterns-idioms-test.readthedocs.io/en/latest/Observer.html\nfor simplicity' class Observable: def __init__(self): self.observers = [] self.changed = False def add_observer(self, observer): if observer not in self.observers: self.observers.append(observer) def remove_observer(self, observer): self.observers.remove(observer) def notify_observers(self, arg=None): try: observers = self.observers self.changed = False for o in observers: o.update(arg) except Exception as err: pass class Observablestring(Observable): def __init__(self): super().__init__() self.clear() def clear(self): self.chunk = b'' def append(self, increment): if len(increment) > 0: self.chunk = self.chunk + increment self.notifyObservers(self.chunk) self.clear() class Observableflatarray(Observable): def __init__(self): super().__init__() self.clear() def clear(self): self.elements = [] def append(self, newElements): if len(newElements) > 0: self.elements.extend(newElements) self.notifyObservers(self.elements) self.clear() class Observabledeeparray(Observable): def __init__(self): super().__init__() self.clear() def clear(self): self.elements = [] def append(self, newItem): if len(newItem) > 0: self.elements.append(newItem) self.notifyObservers(self.elements) self.clear() class Observabledict(Observable): def __init__(self): super().__init__() self.clear() def clear(self): self.dict = {} def append(self, newDict): if len(newDict) > 0: self.dict.update(newDict) self.notifyObservers(self.dict) def get_dict(self): return self.dict
""" Asked by: LinkedIn [Hard]. Given a string, return whether it represents a number. Here are the different kinds of numbers: "10", a positive integer "-10", a negative integer "10.1", a positive real number "-10.1", a negative real number "1e5", a number in scientific notation And here are examples of non-numbers: "a" "x 1" "a -2" "-" """
""" Asked by: LinkedIn [Hard]. Given a string, return whether it represents a number. Here are the different kinds of numbers: "10", a positive integer "-10", a negative integer "10.1", a positive real number "-10.1", a negative real number "1e5", a number in scientific notation And here are examples of non-numbers: "a" "x 1" "a -2" "-" """
""" Query PyPI from the command line ``qypi`` is a command-line client for querying & searching `PyPI <https://pypi.org>`_ for Python package information and outputting JSON (with some minor opinionated changes to the output data structures). Run ``qypi --help`` or visit <https://github.com/jwodder/qypi> for more information. """ __version__ = "0.7.0.dev1" __author__ = "John Thorvald Wodder II" __author_email__ = "qypi@varonathe.org" __license__ = "MIT" __url__ = "https://github.com/jwodder/qypi"
""" Query PyPI from the command line ``qypi`` is a command-line client for querying & searching `PyPI <https://pypi.org>`_ for Python package information and outputting JSON (with some minor opinionated changes to the output data structures). Run ``qypi --help`` or visit <https://github.com/jwodder/qypi> for more information. """ __version__ = '0.7.0.dev1' __author__ = 'John Thorvald Wodder II' __author_email__ = 'qypi@varonathe.org' __license__ = 'MIT' __url__ = 'https://github.com/jwodder/qypi'
def parse_ner_dataset_file(f): tokens = [] for i, l in enumerate(f): l_split = l.split() if len(l_split) == 0: yield tokens tokens.clear() continue if len(l_split) < 2: continue # todo: fix this else: tokens.append({'text': l_split[0], 'label': l_split[-1]}) if tokens: yield tokens
def parse_ner_dataset_file(f): tokens = [] for (i, l) in enumerate(f): l_split = l.split() if len(l_split) == 0: yield tokens tokens.clear() continue if len(l_split) < 2: continue else: tokens.append({'text': l_split[0], 'label': l_split[-1]}) if tokens: yield tokens
config = { "-varprune":[0,int], "-recompute":[False,bool], "-sort":[False,bool], "-no-sos":[False,bool], "-no-eos":[False,bool], "-write":["./counts",str], "-gtmin":[1,int], "-gtmax":[5,int], "-ndiscount":[False,bool], "-wbdiscount":[False,bool], "-kndiscount":[True,bool], "-ukndiscount":[False,bool], "-interpolate":[True,bool], "-prune":[0,int], "-minprune":[2,int], }
config = {'-varprune': [0, int], '-recompute': [False, bool], '-sort': [False, bool], '-no-sos': [False, bool], '-no-eos': [False, bool], '-write': ['./counts', str], '-gtmin': [1, int], '-gtmax': [5, int], '-ndiscount': [False, bool], '-wbdiscount': [False, bool], '-kndiscount': [True, bool], '-ukndiscount': [False, bool], '-interpolate': [True, bool], '-prune': [0, int], '-minprune': [2, int]}
class Config: # region bug configurations PROJECT_ROOT_PATH = r"/Users/ori/pergit/defects/math_1_buggy" BUG_PROJECT = 'math' BUG_ID = 1 IGNORED_CLASS_LIST = ['FastCosineTransformerTest', 'FastSineTransformerTest', 'FastMathStrictComparisonTest', 'CorrelatedRandomVectorGeneratorTest', 'FastMathTestPerformance'] # this requires complete names: <package>.<class>.<method>(parameters) # example: 'fraction.BigFraction.BigFraction(double_double_int_int)' # another example: 'org.apache.commons.lang3.math.NumberUtils.createNumber(java.lang.String)' actual_faults_method_fullname_set = frozenset( { 'fraction.BigFraction.BigFraction(double_double_int_int)', 'fraction.Fraction.Fraction(double_double_int_int)' }) ON_THE_FLY = True # don't create intermediate files -> this improves performance # endregion DEBUG = False FAIL_SAMPLE_RATE = 1.00 SUCCESS_SAMPLE_RATE = 1.00 # this will NOT override the ON_THE_FLY flag nor sampling rates -> will only sample traces from faulty methods # use `True` only when `actual_faults_method_fullname_set` is properly set SAMPLE_ONLY_ACTUAL_FAULTY_METHODS = True
class Config: project_root_path = '/Users/ori/pergit/defects/math_1_buggy' bug_project = 'math' bug_id = 1 ignored_class_list = ['FastCosineTransformerTest', 'FastSineTransformerTest', 'FastMathStrictComparisonTest', 'CorrelatedRandomVectorGeneratorTest', 'FastMathTestPerformance'] actual_faults_method_fullname_set = frozenset({'fraction.BigFraction.BigFraction(double_double_int_int)', 'fraction.Fraction.Fraction(double_double_int_int)'}) on_the_fly = True debug = False fail_sample_rate = 1.0 success_sample_rate = 1.0 sample_only_actual_faulty_methods = True
# hint: see np.diff() inter_switch_intervals = np.diff(switch_times) # plot inter-switch intervals with plt.xkcd(): plot_interswitch_interval_histogram(inter_switch_intervals)
inter_switch_intervals = np.diff(switch_times) with plt.xkcd(): plot_interswitch_interval_histogram(inter_switch_intervals)
class Solution: def minEatingSpeed(self, piles: List[int], H: int) -> int: if len(piles)==0: return 0 l,r = 1,pow(10,9) while l<=r: m = (l+r)>>1 sum = 0 for i in piles: sum+=(i+m-1)//m if sum<=H: r = m-1 else: l = m+1 return l
class Solution: def min_eating_speed(self, piles: List[int], H: int) -> int: if len(piles) == 0: return 0 (l, r) = (1, pow(10, 9)) while l <= r: m = l + r >> 1 sum = 0 for i in piles: sum += (i + m - 1) // m if sum <= H: r = m - 1 else: l = m + 1 return l
digits = [0,1,2,3,4,5,6,7,8,9] print(digits[-1]) print(digits[-len(digits)]) print(digits[:3]) #stride mige chanta chanta beri print((digits[0:9:2])) #bayad az akhar be aval bzanim print((digits[9:0:-1])) goods = 'success,win,best_coder,elham' print(goods) l = goods.split(",") #ye string ro migire o split mikone be list #va az , migire joda mikone print(l) # 2 ta string joda mikone az horufe win l = goods.split("win") print(l) goods = 'success,win,best_coder,elham' l = goods.split(',') #miad join mikone o vasatesh harchi bkhaym mizare l = " & ".join(l) print(l)
digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] print(digits[-1]) print(digits[-len(digits)]) print(digits[:3]) print(digits[0:9:2]) print(digits[9:0:-1]) goods = 'success,win,best_coder,elham' print(goods) l = goods.split(',') print(l) l = goods.split('win') print(l) goods = 'success,win,best_coder,elham' l = goods.split(',') l = ' & '.join(l) print(l)
class Holding(object): def __init__(self, name, ticker, weight=100, sector=None, news=None, link=None): self.name = name self.ticker = ticker self.weight = weight self.sector = sector self.news = news self.link = link def set_name(self, name): self.name = name def get_name(self): return self.name def get_ticker(self): return self.ticker def get_weight(self): return self.weight def set_weight(self, weight): self.weight = weight def set_sector(self, sector): self.sector = sector def get_sector(self): return self.sector def set_news(self, news): self.news = news def get_news(self): return self.news def set_link(self, link): self.link = link def get_link(self): return self.link def __str__(self): return self.name + ' (' + self.ticker + ') ' + str(self.weight)
class Holding(object): def __init__(self, name, ticker, weight=100, sector=None, news=None, link=None): self.name = name self.ticker = ticker self.weight = weight self.sector = sector self.news = news self.link = link def set_name(self, name): self.name = name def get_name(self): return self.name def get_ticker(self): return self.ticker def get_weight(self): return self.weight def set_weight(self, weight): self.weight = weight def set_sector(self, sector): self.sector = sector def get_sector(self): return self.sector def set_news(self, news): self.news = news def get_news(self): return self.news def set_link(self, link): self.link = link def get_link(self): return self.link def __str__(self): return self.name + ' (' + self.ticker + ') ' + str(self.weight)
"""Top-level package for Nginx Log Analytics.""" __author__ = """Surya Sankar""" __email__ = 'suryashankar.m@gmail.com' __version__ = '0.1.0'
"""Top-level package for Nginx Log Analytics.""" __author__ = 'Surya Sankar' __email__ = 'suryashankar.m@gmail.com' __version__ = '0.1.0'
class BulkOperationProgressInfo(object): """ Contains percent complete progress information for the bulk operation.""" def __init__(self, percent_complete=0): """ Initialize a new instance of this class. :param percent_complete: (optional) Percent complete progress information for the bulk operation. :type percent_complete: int """ self._percent_complete = percent_complete @property def percent_complete(self): """ Percent complete progress information for the bulk operation. :rtype: int """ return self._percent_complete
class Bulkoperationprogressinfo(object): """ Contains percent complete progress information for the bulk operation.""" def __init__(self, percent_complete=0): """ Initialize a new instance of this class. :param percent_complete: (optional) Percent complete progress information for the bulk operation. :type percent_complete: int """ self._percent_complete = percent_complete @property def percent_complete(self): """ Percent complete progress information for the bulk operation. :rtype: int """ return self._percent_complete
# Question : https://www.careercup.com/question?id=5754648968298496 dishes = {"Pasta":["Tomato Sauce", "Onions", "Garlic"], "Chicken Curry":["Chicken", "Curry Sauce"], "Fried Rice":["Rice", "Onions", "Nuts"], "Salad":["Spinach", "Nuts"], "Sandwich":["Cheese", "Bread"], "Quesadilla":["Chicken", "Cheese"]} def groupByIngredients(dishes): ingredients = {} for dish in dishes: for ingredient in dishes[dish]: if ingredient in ingredients: ingredients[ingredient].append(dish) else: ingredients[ingredient] = [dish] return ingredients print(groupByIngredients(dishes)) # Output: ("Pasta", "Fried Rice") ("Fried Rice, "Salad") , ("Chicken Curry", "Quesadilla") ("Sandwich", "Quesadilla")
dishes = {'Pasta': ['Tomato Sauce', 'Onions', 'Garlic'], 'Chicken Curry': ['Chicken', 'Curry Sauce'], 'Fried Rice': ['Rice', 'Onions', 'Nuts'], 'Salad': ['Spinach', 'Nuts'], 'Sandwich': ['Cheese', 'Bread'], 'Quesadilla': ['Chicken', 'Cheese']} def group_by_ingredients(dishes): ingredients = {} for dish in dishes: for ingredient in dishes[dish]: if ingredient in ingredients: ingredients[ingredient].append(dish) else: ingredients[ingredient] = [dish] return ingredients print(group_by_ingredients(dishes))
class Funcionario: def __init__(self, nome, idade, salario): self.nome = nome self.idade = idade self.__salario = salario # atributo privado def set_salario(self, salario): if salario > 0: self.__salario = salario else: print("Valor invalido") def get_salario(self): return self.__salario funcionario1 = Funcionario("Viniciuis", 27, 3500) funcionario1.nome = "Vinicius Reis" funcionario1.idade = 28 funcionario1.__salario = 3000 # erro sem metodo set funcionario1.set_salario(5000) # sem erro por usar metodo set para atributo privado print("Nome: ", funcionario1.nome) print("Salario: ", funcionario1.get_salario())
class Funcionario: def __init__(self, nome, idade, salario): self.nome = nome self.idade = idade self.__salario = salario def set_salario(self, salario): if salario > 0: self.__salario = salario else: print('Valor invalido') def get_salario(self): return self.__salario funcionario1 = funcionario('Viniciuis', 27, 3500) funcionario1.nome = 'Vinicius Reis' funcionario1.idade = 28 funcionario1.__salario = 3000 funcionario1.set_salario(5000) print('Nome: ', funcionario1.nome) print('Salario: ', funcionario1.get_salario())
# phone numbers for countries phone_codes = {} phone_codes["DE"] = 49 phone_codes["TR"] = 90 phone_codes["PK"] = 92 phone_codes["IN"] = 91 code = phone_codes["IN"] print(code)
phone_codes = {} phone_codes['DE'] = 49 phone_codes['TR'] = 90 phone_codes['PK'] = 92 phone_codes['IN'] = 91 code = phone_codes['IN'] print(code)
""" Speech constants related to determining whether the user is in Boston or not. """ GENERIC_GEOLOCATION_PERMISSON_SPEECH = """ Boston Info would like to use your location. To turn on location sharing, please go to your Alexa app and follow the instructions. Alternatively, you can provide an address when asking a question.""" GENERIC_DEVICE_PERMISSON_SPEECH = """ Boston Info would like to use your device's address. To turn on location sharing, please go to your Alexa app and follow the instructions. Alternatively, you can provide an address when asking a question.""" NOT_IN_BOSTON_SPEECH = 'This address is not in Boston. ' \ 'Please use this skill with a Boston address. '\ 'See you later!'
""" Speech constants related to determining whether the user is in Boston or not. """ generic_geolocation_permisson_speech = '\n Boston Info would like to use your location. \n To turn on location sharing, please go to your Alexa app and \n follow the instructions. Alternatively, you can provide an address when\n asking a question.' generic_device_permisson_speech = "\n Boston Info would like to use your device's address. \n To turn on location sharing, please go to your Alexa app and \n follow the instructions. Alternatively, you can provide an address when\n asking a question." not_in_boston_speech = 'This address is not in Boston. Please use this skill with a Boston address. See you later!'
def hello(): return hw() def hw(): cadena = "<h1>Prueba</h1>" cadena += "<h2>Probando</h2>" cadena += "<div>Hello World.</div>" return cadena
def hello(): return hw() def hw(): cadena = '<h1>Prueba</h1>' cadena += '<h2>Probando</h2>' cadena += '<div>Hello World.</div>' return cadena
def test_object(store): test_store_object(store) test_events_object(store.events) test_attendees_object(store.attendees) test_attendees_object(store.waitings) test_users_object(store.users) def test_store_object(store): assert store assert store.events assert store.attendees assert store.waitings assert store.users assert store.reset assert store.clean def test_events_object(events): assert events.create assert events.get_all assert events.get assert events.update assert events.delete assert events.reset assert events.clean def test_attendees_object(attendees): assert attendees.add assert attendees.get_all assert attendees.delete assert attendees.reset assert attendees.clean def test_users_object(users): assert users.create assert users.get_all assert users.get assert users.update assert users.delete assert users.reset assert users.clean
def test_object(store): test_store_object(store) test_events_object(store.events) test_attendees_object(store.attendees) test_attendees_object(store.waitings) test_users_object(store.users) def test_store_object(store): assert store assert store.events assert store.attendees assert store.waitings assert store.users assert store.reset assert store.clean def test_events_object(events): assert events.create assert events.get_all assert events.get assert events.update assert events.delete assert events.reset assert events.clean def test_attendees_object(attendees): assert attendees.add assert attendees.get_all assert attendees.delete assert attendees.reset assert attendees.clean def test_users_object(users): assert users.create assert users.get_all assert users.get assert users.update assert users.delete assert users.reset assert users.clean
# # PySNMP MIB module BAS-PBRF-OSPF-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/BAS-PBRF-OSPF-MIB # Produced by pysmi-0.3.4 at Wed May 1 11:34:08 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection", "ValueRangeConstraint") BasSlotId, BasLogicalPortId, basPbrfOSPF, BasChassisId, BasInterfaceId = mibBuilder.importSymbols("BAS-MIB", "BasSlotId", "BasLogicalPortId", "basPbrfOSPF", "BasChassisId", "BasInterfaceId") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") Integer32, MibIdentifier, Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, NotificationType, Unsigned32, IpAddress, ModuleIdentity, TimeTicks, Counter64, Bits, iso, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "MibIdentifier", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "NotificationType", "Unsigned32", "IpAddress", "ModuleIdentity", "TimeTicks", "Counter64", "Bits", "iso", "ObjectIdentity") RowStatus, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "DisplayString", "TextualConvention") basPbrfOSPFMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1)) if mibBuilder.loadTexts: basPbrfOSPFMIB.setLastUpdated('9812220800Z') if mibBuilder.loadTexts: basPbrfOSPFMIB.setOrganization('Broadband Access Systems, Inc.') if mibBuilder.loadTexts: basPbrfOSPFMIB.setContactInfo(' Tech Support Broadband Access Systems, Inc. 201 Forest Street Marlborough, MA 01752 USA 508-485-8200 support@basystems.com') if mibBuilder.loadTexts: basPbrfOSPFMIB.setDescription('The MIB module defines the configuration MIB objects for Broadband Access Systems, Inc. OSPF Export policy based routing filters.') basPbrfOSPFImport = MibIdentifier((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1)) basPbrfOSPFExport = MibIdentifier((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2)) basPbrfOSPFImportTable = MibTable((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1), ) if mibBuilder.loadTexts: basPbrfOSPFImportTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTable.setDescription('A table of OSPF import PBRF test filter entries.') basPbrfOSPFImportEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1), ).setIndexNames((0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportChassis"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportSlot"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportIf"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportLPort"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportIndex")) if mibBuilder.loadTexts: basPbrfOSPFImportEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportEntry.setDescription('An entry containing management information applicable to an OSPF import PBRF filter used for testing the filter.') basPbrfOSPFImportChassis = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 1), BasChassisId()) if mibBuilder.loadTexts: basPbrfOSPFImportChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportChassis.setDescription('The chassis identifier of this chassis.') basPbrfOSPFImportSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 2), BasSlotId()) if mibBuilder.loadTexts: basPbrfOSPFImportSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportSlot.setDescription('The BAS slot ID of this card.') basPbrfOSPFImportIf = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 3), BasInterfaceId()) if mibBuilder.loadTexts: basPbrfOSPFImportIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportIf.setDescription('The BAS interface ID of this card.') basPbrfOSPFImportLPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 4), BasLogicalPortId()) if mibBuilder.loadTexts: basPbrfOSPFImportLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportLPort.setDescription('The BAS logical port ID of this card.') basPbrfOSPFImportIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 5), Integer32()) if mibBuilder.loadTexts: basPbrfOSPFImportIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportIndex.setDescription('The index of the filter.') basPbrfOSPFImportTemplateCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: basPbrfOSPFImportTemplateCount.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateCount.setDescription('The number of templates assigned to this filter.') basPbrfOSPFImportRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 8), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportRowStatus.setDescription('The row status of the filter.') basPbrfOSPFImportDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportDescr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportDescr.setDescription('The descr of the OSPF Import.') basPbrfOSPFImportFilterTempTable = MibTable((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2), ) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempTable.setDescription('A table of OSPF import PBRF filters.') basPbrfOSPFImportFilterTempEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1), ).setIndexNames((0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportFilterTempChassis"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportFilterTempSlot"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportFilterTempIf"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportFilterTempLPort"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportFilterTempIndex"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportFilterTempTemplate")) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempEntry.setDescription('An entry containing management information applicable to an OSPF import PBRF filter.') basPbrfOSPFImportFilterTempChassis = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 1), BasChassisId()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempChassis.setDescription('The chassis identifier of this chassis.') basPbrfOSPFImportFilterTempSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 2), BasSlotId()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempSlot.setDescription('The BAS slot ID of this card.') basPbrfOSPFImportFilterTempIf = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 3), BasInterfaceId()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempIf.setDescription('The BAS interface ID of this card.') basPbrfOSPFImportFilterTempLPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 4), BasLogicalPortId()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempLPort.setDescription('The BAS logical port ID of this card.') basPbrfOSPFImportFilterTempIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 5), Integer32()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempIndex.setDescription('The index of the filter.') basPbrfOSPFImportFilterTempTemplate = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 6), Integer32()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempTemplate.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempTemplate.setDescription('The index for the specific template.') basPbrfOSPFImportFilterTempOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 7), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempOrder.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempOrder.setDescription('The order in which the template is applied.') basPbrfOSPFImportFilterTempRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 8), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempRowStatus.setDescription('The row status of the filter.') basPbrfOSPFImportTemplateTable = MibTable((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3), ) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateTable.setDescription('A list of OSPF Import template entries.') basPbrfOSPFImportTemplateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1), ).setIndexNames((0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportTemplateChassis"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportTemplateSlot"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportTemplateIf"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportTemplateLPort"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFImportTemplateIndex")) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateEntry.setDescription('An entry containing management information applicable to an OSPF Import PBRF template.') basPbrfOSPFImportTemplateChassis = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 1), BasChassisId()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateChassis.setDescription('The BAS chassis identifier of this chassis.') basPbrfOSPFImportTemplateSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 2), BasSlotId()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateSlot.setDescription('The BAS slot ID of this card.') basPbrfOSPFImportTemplateIf = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 3), BasInterfaceId()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateIf.setDescription('The BAS interface ID of this card.') basPbrfOSPFImportTemplateLPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 4), BasLogicalPortId()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateLPort.setDescription('The BAS logical port ID of this card.') basPbrfOSPFImportTemplateIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 5), Integer32()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateIndex.setDescription('The Route Address key of of the template.') basPbrfOSPFImportTemplateRouteAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 6), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRouteAddr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRouteAddr.setDescription('The Route Address key of of the template.') basPbrfOSPFImportTemplateRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 7), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRouteMask.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRouteMask.setDescription('The Route Mask key of of the template.') basPbrfOSPFImportTemplatePeerAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 8), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePeerAddr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePeerAddr.setDescription('The PeerAddr key of the template.') basPbrfOSPFImportTemplatePeerMask = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 9), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePeerMask.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePeerMask.setDescription('The PeerMask key of the template.') basPbrfOSPFImportTemplateTag = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 10), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplateTag.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateTag.setDescription('The tag key of the template.') basPbrfOSPFImportTemplateKeyBits = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 11), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplateKeyBits.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateKeyBits.setDescription('The key bits key mask of the template.') basPbrfOSPFImportTemplatePref = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 12), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePref.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePref.setDescription('The preference of the template action.') basPbrfOSPFImportTemplateFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 13), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplateFlags.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateFlags.setDescription('The flags of the template action.') basPbrfOSPFImportTemplateRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 14), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRowStatus.setDescription('The row status of the template.') basPbrfOSPFImportTemplateDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 15), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFImportTemplateDescr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateDescr.setDescription('The descr of the OSPF Import template.') basPbrfOSPFExportTable = MibTable((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1), ) if mibBuilder.loadTexts: basPbrfOSPFExportTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTable.setDescription('A table of OSPF import PBRF test filter entries.') basPbrfOSPFExportEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1), ).setIndexNames((0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportChassis"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportSlot"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportIf"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportLPort"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportIndex")) if mibBuilder.loadTexts: basPbrfOSPFExportEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportEntry.setDescription('An entry containing management information applicable to an OSPF import PBRF filter used for testing the filter.') basPbrfOSPFExportChassis = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 1), BasChassisId()) if mibBuilder.loadTexts: basPbrfOSPFExportChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportChassis.setDescription('The chassis identifier of this chassis.') basPbrfOSPFExportSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 2), BasSlotId()) if mibBuilder.loadTexts: basPbrfOSPFExportSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportSlot.setDescription('The BAS slot ID of this card.') basPbrfOSPFExportIf = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 3), BasInterfaceId()) if mibBuilder.loadTexts: basPbrfOSPFExportIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportIf.setDescription('The BAS interface ID of this card.') basPbrfOSPFExportLPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 4), BasLogicalPortId()) if mibBuilder.loadTexts: basPbrfOSPFExportLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportLPort.setDescription('The BAS logical port ID of this card.') basPbrfOSPFExportIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 5), Integer32()) if mibBuilder.loadTexts: basPbrfOSPFExportIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportIndex.setDescription('The index of the filter.') basPbrfOSPFExportTemplateCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateCount.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateCount.setDescription('The number of templates assigned to this filter.') basPbrfOSPFExportRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 8), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportRowStatus.setDescription('The row status of the filter.') basPbrfOSPFExportDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportDescr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportDescr.setDescription('The descr of the OSPF Export.') basPbrfOSPFExportFilterTempTable = MibTable((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2), ) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempTable.setDescription('A table of OSPf Export PBRF filter/template bindings.') basPbrfOSPFExportFilterTempEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1), ).setIndexNames((0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportFilterTempChassis"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportFilterTempSlot"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportFilterTempIf"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportFilterTempLPort"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportFilterTempIndex"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportFilterTempTemplate")) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempEntry.setDescription('An entry containing management information applicable to an OSPF import PBRF filter.') basPbrfOSPFExportFilterTempChassis = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 1), BasChassisId()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempChassis.setDescription('The BAS chassis identifier of this chassis.') basPbrfOSPFExportFilterTempSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 2), BasSlotId()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempSlot.setDescription('The BAS slot ID of this card.') basPbrfOSPFExportFilterTempIf = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 3), BasInterfaceId()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempIf.setDescription('The BAS interface ID of this card.') basPbrfOSPFExportFilterTempLPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 4), BasLogicalPortId()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempLPort.setDescription('The BAS logical port ID of this card.') basPbrfOSPFExportFilterTempIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 5), Integer32()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempIndex.setDescription('The index of the filter.') basPbrfOSPFExportFilterTempTemplate = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 6), Integer32()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempTemplate.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempTemplate.setDescription('The index for the specific template.') basPbrfOSPFExportFilterTempOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 7), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempOrder.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempOrder.setDescription('The order in which the template is applied.') basPbrfOSPFExportFilterTempRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 8), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempRowStatus.setDescription('The row status of the filter.') basPbrfOSPFExportTemplateTable = MibTable((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3), ) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateTable.setDescription('A list of OSPF Export template entries.') basPbrfOSPFExportTemplateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1), ).setIndexNames((0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportTemplateChassis"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportTemplateSlot"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportTemplateIf"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportTemplateLPort"), (0, "BAS-PBRF-OSPF-MIB", "basPbrfOSPFExportTemplateIndex")) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateEntry.setDescription('An entry containing management information applicable to an OSPF Export PBRF template.') basPbrfOSPFExportTemplateChassis = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 1), BasChassisId()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateChassis.setDescription('The BAS chassis identifier of this chassis.') basPbrfOSPFExportTemplateSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 2), BasSlotId()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSlot.setDescription('The BAS slot ID of this card.') basPbrfOSPFExportTemplateIf = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 3), BasInterfaceId()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateIf.setDescription('The BAS interface ID of this card.') basPbrfOSPFExportTemplateLPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 4), BasLogicalPortId()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateLPort.setDescription('The BAS logical port ID of this card.') basPbrfOSPFExportTemplateIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 5), Integer32()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateIndex.setDescription('The index of the template') basPbrfOSPFExportTemplateRouteAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 6), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRouteAddr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRouteAddr.setDescription('The Route Address key of of the template.') basPbrfOSPFExportTemplateRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 7), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRouteMask.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRouteMask.setDescription('The Route Mask key of of the template.') basPbrfOSPFExportTemplateProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 8), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateProtocol.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateProtocol.setDescription('The protocol key of the template.') basPbrfOSPFExportTemplateSpecific1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 9), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSpecific1.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSpecific1.setDescription('The specific1 key of the template.') basPbrfOSPFExportTemplateSpecific2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 10), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSpecific2.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSpecific2.setDescription('The specific2 key of the template.') basPbrfOSPFExportTemplateTag = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 11), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateTag.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateTag.setDescription('The tag key of the template.') basPbrfOSPFExportTemplateKeyBits = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 12), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateKeyBits.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateKeyBits.setDescription('The key bits key mask of the template.') basPbrfOSPFExportTemplateMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 13), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateMetric.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateMetric.setDescription('The metric of the template action.') basPbrfOSPFExportTemplateFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 14), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateFlags.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateFlags.setDescription('The flags of the template action.') basPbrfOSPFExportTemplateActionTag = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 15), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateActionTag.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateActionTag.setDescription('The tag of the template action.') basPbrfOSPFExportTemplateRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 16), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRowStatus.setDescription('The row status of the template.') basPbrfOSPFExportTemplateDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 17), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readcreate") if mibBuilder.loadTexts: basPbrfOSPFExportTemplateDescr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateDescr.setDescription('The descr of the OSPF Export template.') mibBuilder.exportSymbols("BAS-PBRF-OSPF-MIB", basPbrfOSPFExportFilterTempRowStatus=basPbrfOSPFExportFilterTempRowStatus, basPbrfOSPFImportFilterTempTemplate=basPbrfOSPFImportFilterTempTemplate, basPbrfOSPFImportIndex=basPbrfOSPFImportIndex, basPbrfOSPFImportTemplateRouteMask=basPbrfOSPFImportTemplateRouteMask, basPbrfOSPFExportTemplateSlot=basPbrfOSPFExportTemplateSlot, basPbrfOSPFExportLPort=basPbrfOSPFExportLPort, basPbrfOSPFMIB=basPbrfOSPFMIB, basPbrfOSPFExportTable=basPbrfOSPFExportTable, basPbrfOSPFImportFilterTempOrder=basPbrfOSPFImportFilterTempOrder, basPbrfOSPFExportIndex=basPbrfOSPFExportIndex, basPbrfOSPFExportFilterTempTemplate=basPbrfOSPFExportFilterTempTemplate, basPbrfOSPFExportTemplateSpecific2=basPbrfOSPFExportTemplateSpecific2, basPbrfOSPFImportTemplateEntry=basPbrfOSPFImportTemplateEntry, basPbrfOSPFExportTemplateDescr=basPbrfOSPFExportTemplateDescr, basPbrfOSPFImportTemplateLPort=basPbrfOSPFImportTemplateLPort, basPbrfOSPFImportTemplateIf=basPbrfOSPFImportTemplateIf, basPbrfOSPFExportTemplateChassis=basPbrfOSPFExportTemplateChassis, basPbrfOSPFImport=basPbrfOSPFImport, basPbrfOSPFImportLPort=basPbrfOSPFImportLPort, basPbrfOSPFImportTemplatePeerAddr=basPbrfOSPFImportTemplatePeerAddr, basPbrfOSPFImportFilterTempRowStatus=basPbrfOSPFImportFilterTempRowStatus, basPbrfOSPFImportTemplateTag=basPbrfOSPFImportTemplateTag, basPbrfOSPFImportFilterTempEntry=basPbrfOSPFImportFilterTempEntry, basPbrfOSPFImportTemplateRowStatus=basPbrfOSPFImportTemplateRowStatus, basPbrfOSPFImportEntry=basPbrfOSPFImportEntry, basPbrfOSPFImportFilterTempSlot=basPbrfOSPFImportFilterTempSlot, basPbrfOSPFExportFilterTempIf=basPbrfOSPFExportFilterTempIf, basPbrfOSPFExportFilterTempIndex=basPbrfOSPFExportFilterTempIndex, basPbrfOSPFExportTemplateRouteAddr=basPbrfOSPFExportTemplateRouteAddr, basPbrfOSPFImportDescr=basPbrfOSPFImportDescr, basPbrfOSPFExportTemplateActionTag=basPbrfOSPFExportTemplateActionTag, basPbrfOSPFExportFilterTempTable=basPbrfOSPFExportFilterTempTable, basPbrfOSPFExportTemplateCount=basPbrfOSPFExportTemplateCount, basPbrfOSPFExportTemplateSpecific1=basPbrfOSPFExportTemplateSpecific1, basPbrfOSPFImportFilterTempIndex=basPbrfOSPFImportFilterTempIndex, basPbrfOSPFImportIf=basPbrfOSPFImportIf, basPbrfOSPFExport=basPbrfOSPFExport, basPbrfOSPFImportTemplateFlags=basPbrfOSPFImportTemplateFlags, basPbrfOSPFImportTemplateIndex=basPbrfOSPFImportTemplateIndex, basPbrfOSPFExportTemplateMetric=basPbrfOSPFExportTemplateMetric, basPbrfOSPFImportFilterTempTable=basPbrfOSPFImportFilterTempTable, basPbrfOSPFImportSlot=basPbrfOSPFImportSlot, basPbrfOSPFImportFilterTempLPort=basPbrfOSPFImportFilterTempLPort, basPbrfOSPFImportTemplateChassis=basPbrfOSPFImportTemplateChassis, basPbrfOSPFExportFilterTempChassis=basPbrfOSPFExportFilterTempChassis, basPbrfOSPFExportTemplateKeyBits=basPbrfOSPFExportTemplateKeyBits, basPbrfOSPFExportTemplateFlags=basPbrfOSPFExportTemplateFlags, basPbrfOSPFExportTemplateTable=basPbrfOSPFExportTemplateTable, basPbrfOSPFExportFilterTempLPort=basPbrfOSPFExportFilterTempLPort, basPbrfOSPFImportRowStatus=basPbrfOSPFImportRowStatus, basPbrfOSPFExportIf=basPbrfOSPFExportIf, basPbrfOSPFImportTemplateKeyBits=basPbrfOSPFImportTemplateKeyBits, PYSNMP_MODULE_ID=basPbrfOSPFMIB, basPbrfOSPFExportChassis=basPbrfOSPFExportChassis, basPbrfOSPFExportTemplateEntry=basPbrfOSPFExportTemplateEntry, basPbrfOSPFExportTemplateIndex=basPbrfOSPFExportTemplateIndex, basPbrfOSPFImportTemplateCount=basPbrfOSPFImportTemplateCount, basPbrfOSPFImportTemplateRouteAddr=basPbrfOSPFImportTemplateRouteAddr, basPbrfOSPFExportDescr=basPbrfOSPFExportDescr, basPbrfOSPFExportTemplateRouteMask=basPbrfOSPFExportTemplateRouteMask, basPbrfOSPFImportChassis=basPbrfOSPFImportChassis, basPbrfOSPFExportFilterTempEntry=basPbrfOSPFExportFilterTempEntry, basPbrfOSPFExportTemplateIf=basPbrfOSPFExportTemplateIf, basPbrfOSPFImportTable=basPbrfOSPFImportTable, basPbrfOSPFExportSlot=basPbrfOSPFExportSlot, basPbrfOSPFExportTemplateTag=basPbrfOSPFExportTemplateTag, basPbrfOSPFImportFilterTempIf=basPbrfOSPFImportFilterTempIf, basPbrfOSPFImportTemplatePeerMask=basPbrfOSPFImportTemplatePeerMask, basPbrfOSPFExportFilterTempSlot=basPbrfOSPFExportFilterTempSlot, basPbrfOSPFExportTemplateRowStatus=basPbrfOSPFExportTemplateRowStatus, basPbrfOSPFExportRowStatus=basPbrfOSPFExportRowStatus, basPbrfOSPFExportEntry=basPbrfOSPFExportEntry, basPbrfOSPFImportFilterTempChassis=basPbrfOSPFImportFilterTempChassis, basPbrfOSPFExportTemplateProtocol=basPbrfOSPFExportTemplateProtocol, basPbrfOSPFExportFilterTempOrder=basPbrfOSPFExportFilterTempOrder, basPbrfOSPFExportTemplateLPort=basPbrfOSPFExportTemplateLPort, basPbrfOSPFImportTemplateSlot=basPbrfOSPFImportTemplateSlot, basPbrfOSPFImportTemplateDescr=basPbrfOSPFImportTemplateDescr, basPbrfOSPFImportTemplatePref=basPbrfOSPFImportTemplatePref, basPbrfOSPFImportTemplateTable=basPbrfOSPFImportTemplateTable)
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_size_constraint, constraints_union, single_value_constraint, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint') (bas_slot_id, bas_logical_port_id, bas_pbrf_ospf, bas_chassis_id, bas_interface_id) = mibBuilder.importSymbols('BAS-MIB', 'BasSlotId', 'BasLogicalPortId', 'basPbrfOSPF', 'BasChassisId', 'BasInterfaceId') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (integer32, mib_identifier, counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, notification_type, unsigned32, ip_address, module_identity, time_ticks, counter64, bits, iso, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'Integer32', 'MibIdentifier', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'NotificationType', 'Unsigned32', 'IpAddress', 'ModuleIdentity', 'TimeTicks', 'Counter64', 'Bits', 'iso', 'ObjectIdentity') (row_status, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'DisplayString', 'TextualConvention') bas_pbrf_ospfmib = module_identity((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1)) if mibBuilder.loadTexts: basPbrfOSPFMIB.setLastUpdated('9812220800Z') if mibBuilder.loadTexts: basPbrfOSPFMIB.setOrganization('Broadband Access Systems, Inc.') if mibBuilder.loadTexts: basPbrfOSPFMIB.setContactInfo(' Tech Support Broadband Access Systems, Inc. 201 Forest Street Marlborough, MA 01752 USA 508-485-8200 support@basystems.com') if mibBuilder.loadTexts: basPbrfOSPFMIB.setDescription('The MIB module defines the configuration MIB objects for Broadband Access Systems, Inc. OSPF Export policy based routing filters.') bas_pbrf_ospf_import = mib_identifier((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1)) bas_pbrf_ospf_export = mib_identifier((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2)) bas_pbrf_ospf_import_table = mib_table((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1)) if mibBuilder.loadTexts: basPbrfOSPFImportTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTable.setDescription('A table of OSPF import PBRF test filter entries.') bas_pbrf_ospf_import_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1)).setIndexNames((0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportChassis'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportSlot'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportIf'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportLPort'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportIndex')) if mibBuilder.loadTexts: basPbrfOSPFImportEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportEntry.setDescription('An entry containing management information applicable to an OSPF import PBRF filter used for testing the filter.') bas_pbrf_ospf_import_chassis = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 1), bas_chassis_id()) if mibBuilder.loadTexts: basPbrfOSPFImportChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportChassis.setDescription('The chassis identifier of this chassis.') bas_pbrf_ospf_import_slot = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 2), bas_slot_id()) if mibBuilder.loadTexts: basPbrfOSPFImportSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportSlot.setDescription('The BAS slot ID of this card.') bas_pbrf_ospf_import_if = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 3), bas_interface_id()) if mibBuilder.loadTexts: basPbrfOSPFImportIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportIf.setDescription('The BAS interface ID of this card.') bas_pbrf_ospf_import_l_port = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 4), bas_logical_port_id()) if mibBuilder.loadTexts: basPbrfOSPFImportLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportLPort.setDescription('The BAS logical port ID of this card.') bas_pbrf_ospf_import_index = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 5), integer32()) if mibBuilder.loadTexts: basPbrfOSPFImportIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportIndex.setDescription('The index of the filter.') bas_pbrf_ospf_import_template_count = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateCount.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateCount.setDescription('The number of templates assigned to this filter.') bas_pbrf_ospf_import_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 8), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportRowStatus.setDescription('The row status of the filter.') bas_pbrf_ospf_import_descr = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportDescr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportDescr.setDescription('The descr of the OSPF Import.') bas_pbrf_ospf_import_filter_temp_table = mib_table((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2)) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempTable.setDescription('A table of OSPF import PBRF filters.') bas_pbrf_ospf_import_filter_temp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1)).setIndexNames((0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportFilterTempChassis'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportFilterTempSlot'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportFilterTempIf'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportFilterTempLPort'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportFilterTempIndex'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportFilterTempTemplate')) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempEntry.setDescription('An entry containing management information applicable to an OSPF import PBRF filter.') bas_pbrf_ospf_import_filter_temp_chassis = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 1), bas_chassis_id()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempChassis.setDescription('The chassis identifier of this chassis.') bas_pbrf_ospf_import_filter_temp_slot = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 2), bas_slot_id()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempSlot.setDescription('The BAS slot ID of this card.') bas_pbrf_ospf_import_filter_temp_if = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 3), bas_interface_id()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempIf.setDescription('The BAS interface ID of this card.') bas_pbrf_ospf_import_filter_temp_l_port = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 4), bas_logical_port_id()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempLPort.setDescription('The BAS logical port ID of this card.') bas_pbrf_ospf_import_filter_temp_index = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 5), integer32()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempIndex.setDescription('The index of the filter.') bas_pbrf_ospf_import_filter_temp_template = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 6), integer32()) if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempTemplate.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempTemplate.setDescription('The index for the specific template.') bas_pbrf_ospf_import_filter_temp_order = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 7), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempOrder.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempOrder.setDescription('The order in which the template is applied.') bas_pbrf_ospf_import_filter_temp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 2, 1, 8), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportFilterTempRowStatus.setDescription('The row status of the filter.') bas_pbrf_ospf_import_template_table = mib_table((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3)) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateTable.setDescription('A list of OSPF Import template entries.') bas_pbrf_ospf_import_template_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1)).setIndexNames((0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportTemplateChassis'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportTemplateSlot'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportTemplateIf'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportTemplateLPort'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFImportTemplateIndex')) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateEntry.setDescription('An entry containing management information applicable to an OSPF Import PBRF template.') bas_pbrf_ospf_import_template_chassis = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 1), bas_chassis_id()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateChassis.setDescription('The BAS chassis identifier of this chassis.') bas_pbrf_ospf_import_template_slot = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 2), bas_slot_id()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateSlot.setDescription('The BAS slot ID of this card.') bas_pbrf_ospf_import_template_if = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 3), bas_interface_id()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateIf.setDescription('The BAS interface ID of this card.') bas_pbrf_ospf_import_template_l_port = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 4), bas_logical_port_id()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateLPort.setDescription('The BAS logical port ID of this card.') bas_pbrf_ospf_import_template_index = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 5), integer32()) if mibBuilder.loadTexts: basPbrfOSPFImportTemplateIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateIndex.setDescription('The Route Address key of of the template.') bas_pbrf_ospf_import_template_route_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 6), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRouteAddr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRouteAddr.setDescription('The Route Address key of of the template.') bas_pbrf_ospf_import_template_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 7), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRouteMask.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRouteMask.setDescription('The Route Mask key of of the template.') bas_pbrf_ospf_import_template_peer_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 8), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePeerAddr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePeerAddr.setDescription('The PeerAddr key of the template.') bas_pbrf_ospf_import_template_peer_mask = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 9), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePeerMask.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePeerMask.setDescription('The PeerMask key of the template.') bas_pbrf_ospf_import_template_tag = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 10), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateTag.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateTag.setDescription('The tag key of the template.') bas_pbrf_ospf_import_template_key_bits = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 11), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateKeyBits.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateKeyBits.setDescription('The key bits key mask of the template.') bas_pbrf_ospf_import_template_pref = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 12), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePref.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplatePref.setDescription('The preference of the template action.') bas_pbrf_ospf_import_template_flags = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 13), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateFlags.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateFlags.setDescription('The flags of the template action.') bas_pbrf_ospf_import_template_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 14), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateRowStatus.setDescription('The row status of the template.') bas_pbrf_ospf_import_template_descr = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 1, 3, 1, 15), octet_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateDescr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFImportTemplateDescr.setDescription('The descr of the OSPF Import template.') bas_pbrf_ospf_export_table = mib_table((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1)) if mibBuilder.loadTexts: basPbrfOSPFExportTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTable.setDescription('A table of OSPF import PBRF test filter entries.') bas_pbrf_ospf_export_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1)).setIndexNames((0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportChassis'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportSlot'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportIf'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportLPort'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportIndex')) if mibBuilder.loadTexts: basPbrfOSPFExportEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportEntry.setDescription('An entry containing management information applicable to an OSPF import PBRF filter used for testing the filter.') bas_pbrf_ospf_export_chassis = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 1), bas_chassis_id()) if mibBuilder.loadTexts: basPbrfOSPFExportChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportChassis.setDescription('The chassis identifier of this chassis.') bas_pbrf_ospf_export_slot = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 2), bas_slot_id()) if mibBuilder.loadTexts: basPbrfOSPFExportSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportSlot.setDescription('The BAS slot ID of this card.') bas_pbrf_ospf_export_if = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 3), bas_interface_id()) if mibBuilder.loadTexts: basPbrfOSPFExportIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportIf.setDescription('The BAS interface ID of this card.') bas_pbrf_ospf_export_l_port = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 4), bas_logical_port_id()) if mibBuilder.loadTexts: basPbrfOSPFExportLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportLPort.setDescription('The BAS logical port ID of this card.') bas_pbrf_ospf_export_index = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 5), integer32()) if mibBuilder.loadTexts: basPbrfOSPFExportIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportIndex.setDescription('The index of the filter.') bas_pbrf_ospf_export_template_count = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateCount.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateCount.setDescription('The number of templates assigned to this filter.') bas_pbrf_ospf_export_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 8), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportRowStatus.setDescription('The row status of the filter.') bas_pbrf_ospf_export_descr = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportDescr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportDescr.setDescription('The descr of the OSPF Export.') bas_pbrf_ospf_export_filter_temp_table = mib_table((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2)) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempTable.setDescription('A table of OSPf Export PBRF filter/template bindings.') bas_pbrf_ospf_export_filter_temp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1)).setIndexNames((0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportFilterTempChassis'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportFilterTempSlot'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportFilterTempIf'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportFilterTempLPort'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportFilterTempIndex'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportFilterTempTemplate')) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempEntry.setDescription('An entry containing management information applicable to an OSPF import PBRF filter.') bas_pbrf_ospf_export_filter_temp_chassis = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 1), bas_chassis_id()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempChassis.setDescription('The BAS chassis identifier of this chassis.') bas_pbrf_ospf_export_filter_temp_slot = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 2), bas_slot_id()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempSlot.setDescription('The BAS slot ID of this card.') bas_pbrf_ospf_export_filter_temp_if = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 3), bas_interface_id()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempIf.setDescription('The BAS interface ID of this card.') bas_pbrf_ospf_export_filter_temp_l_port = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 4), bas_logical_port_id()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempLPort.setDescription('The BAS logical port ID of this card.') bas_pbrf_ospf_export_filter_temp_index = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 5), integer32()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempIndex.setDescription('The index of the filter.') bas_pbrf_ospf_export_filter_temp_template = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 6), integer32()) if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempTemplate.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempTemplate.setDescription('The index for the specific template.') bas_pbrf_ospf_export_filter_temp_order = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 7), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempOrder.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempOrder.setDescription('The order in which the template is applied.') bas_pbrf_ospf_export_filter_temp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 2, 1, 8), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportFilterTempRowStatus.setDescription('The row status of the filter.') bas_pbrf_ospf_export_template_table = mib_table((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3)) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateTable.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateTable.setDescription('A list of OSPF Export template entries.') bas_pbrf_ospf_export_template_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1)).setIndexNames((0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportTemplateChassis'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportTemplateSlot'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportTemplateIf'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportTemplateLPort'), (0, 'BAS-PBRF-OSPF-MIB', 'basPbrfOSPFExportTemplateIndex')) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateEntry.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateEntry.setDescription('An entry containing management information applicable to an OSPF Export PBRF template.') bas_pbrf_ospf_export_template_chassis = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 1), bas_chassis_id()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateChassis.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateChassis.setDescription('The BAS chassis identifier of this chassis.') bas_pbrf_ospf_export_template_slot = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 2), bas_slot_id()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSlot.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSlot.setDescription('The BAS slot ID of this card.') bas_pbrf_ospf_export_template_if = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 3), bas_interface_id()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateIf.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateIf.setDescription('The BAS interface ID of this card.') bas_pbrf_ospf_export_template_l_port = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 4), bas_logical_port_id()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateLPort.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateLPort.setDescription('The BAS logical port ID of this card.') bas_pbrf_ospf_export_template_index = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 5), integer32()) if mibBuilder.loadTexts: basPbrfOSPFExportTemplateIndex.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateIndex.setDescription('The index of the template') bas_pbrf_ospf_export_template_route_addr = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 6), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRouteAddr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRouteAddr.setDescription('The Route Address key of of the template.') bas_pbrf_ospf_export_template_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 7), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRouteMask.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRouteMask.setDescription('The Route Mask key of of the template.') bas_pbrf_ospf_export_template_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 8), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateProtocol.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateProtocol.setDescription('The protocol key of the template.') bas_pbrf_ospf_export_template_specific1 = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 9), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSpecific1.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSpecific1.setDescription('The specific1 key of the template.') bas_pbrf_ospf_export_template_specific2 = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 10), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSpecific2.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateSpecific2.setDescription('The specific2 key of the template.') bas_pbrf_ospf_export_template_tag = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 11), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateTag.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateTag.setDescription('The tag key of the template.') bas_pbrf_ospf_export_template_key_bits = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 12), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateKeyBits.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateKeyBits.setDescription('The key bits key mask of the template.') bas_pbrf_ospf_export_template_metric = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 13), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateMetric.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateMetric.setDescription('The metric of the template action.') bas_pbrf_ospf_export_template_flags = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 14), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateFlags.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateFlags.setDescription('The flags of the template action.') bas_pbrf_ospf_export_template_action_tag = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 15), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateActionTag.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateActionTag.setDescription('The tag of the template action.') bas_pbrf_ospf_export_template_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 16), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRowStatus.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateRowStatus.setDescription('The row status of the template.') bas_pbrf_ospf_export_template_descr = mib_table_column((1, 3, 6, 1, 4, 1, 3493, 2, 11, 2, 1, 2, 3, 1, 17), octet_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readcreate') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateDescr.setStatus('current') if mibBuilder.loadTexts: basPbrfOSPFExportTemplateDescr.setDescription('The descr of the OSPF Export template.') mibBuilder.exportSymbols('BAS-PBRF-OSPF-MIB', basPbrfOSPFExportFilterTempRowStatus=basPbrfOSPFExportFilterTempRowStatus, basPbrfOSPFImportFilterTempTemplate=basPbrfOSPFImportFilterTempTemplate, basPbrfOSPFImportIndex=basPbrfOSPFImportIndex, basPbrfOSPFImportTemplateRouteMask=basPbrfOSPFImportTemplateRouteMask, basPbrfOSPFExportTemplateSlot=basPbrfOSPFExportTemplateSlot, basPbrfOSPFExportLPort=basPbrfOSPFExportLPort, basPbrfOSPFMIB=basPbrfOSPFMIB, basPbrfOSPFExportTable=basPbrfOSPFExportTable, basPbrfOSPFImportFilterTempOrder=basPbrfOSPFImportFilterTempOrder, basPbrfOSPFExportIndex=basPbrfOSPFExportIndex, basPbrfOSPFExportFilterTempTemplate=basPbrfOSPFExportFilterTempTemplate, basPbrfOSPFExportTemplateSpecific2=basPbrfOSPFExportTemplateSpecific2, basPbrfOSPFImportTemplateEntry=basPbrfOSPFImportTemplateEntry, basPbrfOSPFExportTemplateDescr=basPbrfOSPFExportTemplateDescr, basPbrfOSPFImportTemplateLPort=basPbrfOSPFImportTemplateLPort, basPbrfOSPFImportTemplateIf=basPbrfOSPFImportTemplateIf, basPbrfOSPFExportTemplateChassis=basPbrfOSPFExportTemplateChassis, basPbrfOSPFImport=basPbrfOSPFImport, basPbrfOSPFImportLPort=basPbrfOSPFImportLPort, basPbrfOSPFImportTemplatePeerAddr=basPbrfOSPFImportTemplatePeerAddr, basPbrfOSPFImportFilterTempRowStatus=basPbrfOSPFImportFilterTempRowStatus, basPbrfOSPFImportTemplateTag=basPbrfOSPFImportTemplateTag, basPbrfOSPFImportFilterTempEntry=basPbrfOSPFImportFilterTempEntry, basPbrfOSPFImportTemplateRowStatus=basPbrfOSPFImportTemplateRowStatus, basPbrfOSPFImportEntry=basPbrfOSPFImportEntry, basPbrfOSPFImportFilterTempSlot=basPbrfOSPFImportFilterTempSlot, basPbrfOSPFExportFilterTempIf=basPbrfOSPFExportFilterTempIf, basPbrfOSPFExportFilterTempIndex=basPbrfOSPFExportFilterTempIndex, basPbrfOSPFExportTemplateRouteAddr=basPbrfOSPFExportTemplateRouteAddr, basPbrfOSPFImportDescr=basPbrfOSPFImportDescr, basPbrfOSPFExportTemplateActionTag=basPbrfOSPFExportTemplateActionTag, basPbrfOSPFExportFilterTempTable=basPbrfOSPFExportFilterTempTable, basPbrfOSPFExportTemplateCount=basPbrfOSPFExportTemplateCount, basPbrfOSPFExportTemplateSpecific1=basPbrfOSPFExportTemplateSpecific1, basPbrfOSPFImportFilterTempIndex=basPbrfOSPFImportFilterTempIndex, basPbrfOSPFImportIf=basPbrfOSPFImportIf, basPbrfOSPFExport=basPbrfOSPFExport, basPbrfOSPFImportTemplateFlags=basPbrfOSPFImportTemplateFlags, basPbrfOSPFImportTemplateIndex=basPbrfOSPFImportTemplateIndex, basPbrfOSPFExportTemplateMetric=basPbrfOSPFExportTemplateMetric, basPbrfOSPFImportFilterTempTable=basPbrfOSPFImportFilterTempTable, basPbrfOSPFImportSlot=basPbrfOSPFImportSlot, basPbrfOSPFImportFilterTempLPort=basPbrfOSPFImportFilterTempLPort, basPbrfOSPFImportTemplateChassis=basPbrfOSPFImportTemplateChassis, basPbrfOSPFExportFilterTempChassis=basPbrfOSPFExportFilterTempChassis, basPbrfOSPFExportTemplateKeyBits=basPbrfOSPFExportTemplateKeyBits, basPbrfOSPFExportTemplateFlags=basPbrfOSPFExportTemplateFlags, basPbrfOSPFExportTemplateTable=basPbrfOSPFExportTemplateTable, basPbrfOSPFExportFilterTempLPort=basPbrfOSPFExportFilterTempLPort, basPbrfOSPFImportRowStatus=basPbrfOSPFImportRowStatus, basPbrfOSPFExportIf=basPbrfOSPFExportIf, basPbrfOSPFImportTemplateKeyBits=basPbrfOSPFImportTemplateKeyBits, PYSNMP_MODULE_ID=basPbrfOSPFMIB, basPbrfOSPFExportChassis=basPbrfOSPFExportChassis, basPbrfOSPFExportTemplateEntry=basPbrfOSPFExportTemplateEntry, basPbrfOSPFExportTemplateIndex=basPbrfOSPFExportTemplateIndex, basPbrfOSPFImportTemplateCount=basPbrfOSPFImportTemplateCount, basPbrfOSPFImportTemplateRouteAddr=basPbrfOSPFImportTemplateRouteAddr, basPbrfOSPFExportDescr=basPbrfOSPFExportDescr, basPbrfOSPFExportTemplateRouteMask=basPbrfOSPFExportTemplateRouteMask, basPbrfOSPFImportChassis=basPbrfOSPFImportChassis, basPbrfOSPFExportFilterTempEntry=basPbrfOSPFExportFilterTempEntry, basPbrfOSPFExportTemplateIf=basPbrfOSPFExportTemplateIf, basPbrfOSPFImportTable=basPbrfOSPFImportTable, basPbrfOSPFExportSlot=basPbrfOSPFExportSlot, basPbrfOSPFExportTemplateTag=basPbrfOSPFExportTemplateTag, basPbrfOSPFImportFilterTempIf=basPbrfOSPFImportFilterTempIf, basPbrfOSPFImportTemplatePeerMask=basPbrfOSPFImportTemplatePeerMask, basPbrfOSPFExportFilterTempSlot=basPbrfOSPFExportFilterTempSlot, basPbrfOSPFExportTemplateRowStatus=basPbrfOSPFExportTemplateRowStatus, basPbrfOSPFExportRowStatus=basPbrfOSPFExportRowStatus, basPbrfOSPFExportEntry=basPbrfOSPFExportEntry, basPbrfOSPFImportFilterTempChassis=basPbrfOSPFImportFilterTempChassis, basPbrfOSPFExportTemplateProtocol=basPbrfOSPFExportTemplateProtocol, basPbrfOSPFExportFilterTempOrder=basPbrfOSPFExportFilterTempOrder, basPbrfOSPFExportTemplateLPort=basPbrfOSPFExportTemplateLPort, basPbrfOSPFImportTemplateSlot=basPbrfOSPFImportTemplateSlot, basPbrfOSPFImportTemplateDescr=basPbrfOSPFImportTemplateDescr, basPbrfOSPFImportTemplatePref=basPbrfOSPFImportTemplatePref, basPbrfOSPFImportTemplateTable=basPbrfOSPFImportTemplateTable)
# Synthetic fault scarp parameters fault_dip = 60 fault_slip = 10 fault_slip_rate = 2 fault_scarp_profile_length = 30 fault_scarp_exponential = True # True for simple fault_scarp_steps = 1 fault_scarp_step_width = 5 final_time = fault_slip / fault_slip_rate # Parameters for synthetic fault scarps and for calculating diffusion age from real scarps diffusion_coefficient = 10 # diffusion coefficient in mm per year time_steps_between_plots = 20 change_in_distance = 1 calculation_final_time = 25 # Final time in kyr
fault_dip = 60 fault_slip = 10 fault_slip_rate = 2 fault_scarp_profile_length = 30 fault_scarp_exponential = True fault_scarp_steps = 1 fault_scarp_step_width = 5 final_time = fault_slip / fault_slip_rate diffusion_coefficient = 10 time_steps_between_plots = 20 change_in_distance = 1 calculation_final_time = 25
class Lit_detail: def __init__(self, lit_name, lit_author): self.title = lit_name self.author = lit_author def display(self): return "Title:" + str(self.title) + " Author:" + str(self.author) class Book(Lit_detail): unique_count = 0 total_count = 0 def __init__(self, book_name, book_author, book_genre, book_price, book_pages, book_code, book_year, book_copies): Lit_detail.__init__(self, book_name, book_author) self.genre = book_genre self.price = book_price self.pages = book_pages self.availability = "Yes" self.copies = book_copies self.code = book_code self.year = book_year Book.unique_count += 1 Book.total_count += book_copies def issued(self): if self.availability != "Discontinued": if self.copies > 0: self.copies -= 1 if self.copies == 0: self.availability = "No" else: return "Book not available in library" else: return "Book is discontinued" def returned(self): if self.copies == 0: self.availability = "Yes" self.copies += 1 def get_status(self): if self.availability == "Yes": return "Available" elif self.availability == "No": return "Not Available" else: return "Discontinued" def update_status(self, status): if status in ["Yes", "No", "Discontinued"]: self.availability = status else: return "Enter valid status" def display_details(self): disply = Lit_detail.display(self) return disply + " Book Title:" + str(self.title) + " Book Author:" + str(self.author) + " Book Genre:" + str(self.genre) + " Book Year:" + str(self.year) + " Number of Pages:" + str(self.pages) + " Copies Available:" + str(self.copies) class Periodical(Lit_detail): unique_count = 0 total_count = 0 def __init__(self, periodical_name, periodical_author, periodical_category, periodical_price, periodical_code, periodical_edition, periodical_copies): Lit_detail.__init__(self, periodical_name, periodical_author) self.category = periodical_category self.price = periodical_price self.availability = "Yes" self.copies = periodical_copies self.code = periodical_code self.edition = periodical_edition Periodical.unique_count += 1 Periodical.total_count += periodical_copies def issued(self): if self.availability != "Discontinued": if self.copies > 0: self.copies -= 1 if self.copies == 0: self.availability = "No" else: return "Periodical not available in Library" else: return "Periodical is discontinued" def returned(self): if self.copies == 0: self.availability = "Yes" self.copies += 1 def get_status(self): if self.availability == "Yes": return "Available" elif self.availability == "No": return "Not Available" else: return "Discontinued" def update_status(self, status): if status in ["Yes", "No", "Discontinued"]: self.availability = status else: return "Enter valid status" def display_details(self): disply = Lit_detail.display(self) return disply + " Category:" + str(self.category) + " Edition:" + str(self.edition) + " Copies Available:" + str(self.copies)
class Lit_Detail: def __init__(self, lit_name, lit_author): self.title = lit_name self.author = lit_author def display(self): return 'Title:' + str(self.title) + ' Author:' + str(self.author) class Book(Lit_detail): unique_count = 0 total_count = 0 def __init__(self, book_name, book_author, book_genre, book_price, book_pages, book_code, book_year, book_copies): Lit_detail.__init__(self, book_name, book_author) self.genre = book_genre self.price = book_price self.pages = book_pages self.availability = 'Yes' self.copies = book_copies self.code = book_code self.year = book_year Book.unique_count += 1 Book.total_count += book_copies def issued(self): if self.availability != 'Discontinued': if self.copies > 0: self.copies -= 1 if self.copies == 0: self.availability = 'No' else: return 'Book not available in library' else: return 'Book is discontinued' def returned(self): if self.copies == 0: self.availability = 'Yes' self.copies += 1 def get_status(self): if self.availability == 'Yes': return 'Available' elif self.availability == 'No': return 'Not Available' else: return 'Discontinued' def update_status(self, status): if status in ['Yes', 'No', 'Discontinued']: self.availability = status else: return 'Enter valid status' def display_details(self): disply = Lit_detail.display(self) return disply + ' Book Title:' + str(self.title) + ' Book Author:' + str(self.author) + ' Book Genre:' + str(self.genre) + ' Book Year:' + str(self.year) + ' Number of Pages:' + str(self.pages) + ' Copies Available:' + str(self.copies) class Periodical(Lit_detail): unique_count = 0 total_count = 0 def __init__(self, periodical_name, periodical_author, periodical_category, periodical_price, periodical_code, periodical_edition, periodical_copies): Lit_detail.__init__(self, periodical_name, periodical_author) self.category = periodical_category self.price = periodical_price self.availability = 'Yes' self.copies = periodical_copies self.code = periodical_code self.edition = periodical_edition Periodical.unique_count += 1 Periodical.total_count += periodical_copies def issued(self): if self.availability != 'Discontinued': if self.copies > 0: self.copies -= 1 if self.copies == 0: self.availability = 'No' else: return 'Periodical not available in Library' else: return 'Periodical is discontinued' def returned(self): if self.copies == 0: self.availability = 'Yes' self.copies += 1 def get_status(self): if self.availability == 'Yes': return 'Available' elif self.availability == 'No': return 'Not Available' else: return 'Discontinued' def update_status(self, status): if status in ['Yes', 'No', 'Discontinued']: self.availability = status else: return 'Enter valid status' def display_details(self): disply = Lit_detail.display(self) return disply + ' Category:' + str(self.category) + ' Edition:' + str(self.edition) + ' Copies Available:' + str(self.copies)
# my_string = input("Input as many values as you want separated by whitespace: ") # my_list = my_string.split(" ") # my_numbers = [int(element) for element in my_list] # print(my_numbers, sum(my_numbers), min(my_numbers), max(my_numbers)) # one liner as above but maybe a bit too dense my_nums = [int(t) for t in input("Enter values separated by whitespace").split(" ")] print(my_nums)
my_nums = [int(t) for t in input('Enter values separated by whitespace').split(' ')] print(my_nums)
with open('input18.txt') as f: maths = f.read().split('\n') ops = { '*':[2, 'l', 2, lambda x, y : y * x], '+':[3, 'l', 2, lambda x, y : y + x] } def solve(read): stack = [] out = [] numstack = [] funcstack = [] last = '' for t in read: if t.isspace(): continue if len(numstack) and not (t.isdigit() or t == '.'): out.append("".join(numstack)) numstack = [] if t.isdigit() or t == '.': numstack.append(t) if t.isalpha(): funcstack.append(t) if t == '(': if last.isalpha(): stack.append("".join(funcstack)) funcstack = [] elif last.isdigit() or last == ')': cur = ops['*'] while len(stack) and stack[-1] != '(' and (ops[stack[-1]][0] > cur[0] or (ops[stack[-1]][0] == cur[0] and ops[stack[-1]][1] == 'l')): out.append(stack.pop()) stack.append('*') stack.append(t) elif t == ')': while stack[-1] != '(': out.append(stack.pop()) stack.pop() elif t in ops.keys(): if t == '-' and not len(numstack) and not (last.isdigit() or last == ')'): numstack.append(t) continue cur = ops[t] while len(stack) and stack[-1] != '(' and (ops[stack[-1]][0] > cur[0] or (ops[stack[-1]][0] == cur[0] and ops[stack[-1]][1] == 'l')): out.append(stack.pop()) stack.append(t) last = t if len(numstack): out.append("".join(numstack)) numstack = [] while len(stack): out.append(stack.pop()) stackeroo = [] for t in out: if t in ops: nargs = ops[t][2] args = [stackeroo.pop() for i in range(nargs)] temp = ops[t][3](*args) if temp: stackeroo.append(temp) else: stackeroo.clear() stackeroo.append('Undefined') break else: stackeroo.append(float(t)) return stackeroo[0] total = 0 for math in maths: total += solve(math) print(total)
with open('input18.txt') as f: maths = f.read().split('\n') ops = {'*': [2, 'l', 2, lambda x, y: y * x], '+': [3, 'l', 2, lambda x, y: y + x]} def solve(read): stack = [] out = [] numstack = [] funcstack = [] last = '' for t in read: if t.isspace(): continue if len(numstack) and (not (t.isdigit() or t == '.')): out.append(''.join(numstack)) numstack = [] if t.isdigit() or t == '.': numstack.append(t) if t.isalpha(): funcstack.append(t) if t == '(': if last.isalpha(): stack.append(''.join(funcstack)) funcstack = [] elif last.isdigit() or last == ')': cur = ops['*'] while len(stack) and stack[-1] != '(' and (ops[stack[-1]][0] > cur[0] or (ops[stack[-1]][0] == cur[0] and ops[stack[-1]][1] == 'l')): out.append(stack.pop()) stack.append('*') stack.append(t) elif t == ')': while stack[-1] != '(': out.append(stack.pop()) stack.pop() elif t in ops.keys(): if t == '-' and (not len(numstack)) and (not (last.isdigit() or last == ')')): numstack.append(t) continue cur = ops[t] while len(stack) and stack[-1] != '(' and (ops[stack[-1]][0] > cur[0] or (ops[stack[-1]][0] == cur[0] and ops[stack[-1]][1] == 'l')): out.append(stack.pop()) stack.append(t) last = t if len(numstack): out.append(''.join(numstack)) numstack = [] while len(stack): out.append(stack.pop()) stackeroo = [] for t in out: if t in ops: nargs = ops[t][2] args = [stackeroo.pop() for i in range(nargs)] temp = ops[t][3](*args) if temp: stackeroo.append(temp) else: stackeroo.clear() stackeroo.append('Undefined') break else: stackeroo.append(float(t)) return stackeroo[0] total = 0 for math in maths: total += solve(math) print(total)
def check_prime(integer): if integer == 1: return False if integer == 2: return True if integer % 2 == 0: return False for i in range(3, int(integer**(1/2))+1, 2): if integer % i == 0: return False else: return True num_primes = 0 n = 0 while num_primes < 10001: n += 1 # print("n:", n) if check_prime(n): num_primes += 1 # print("num_primes:", num_primes) print("Prime number", num_primes, "is: \n", n)
def check_prime(integer): if integer == 1: return False if integer == 2: return True if integer % 2 == 0: return False for i in range(3, int(integer ** (1 / 2)) + 1, 2): if integer % i == 0: return False else: return True num_primes = 0 n = 0 while num_primes < 10001: n += 1 if check_prime(n): num_primes += 1 print('Prime number', num_primes, 'is: \n', n)
n = int(input()) upper_sum , lower_sum = 0, 0 arr = [] for _ in range(n): upper, lower = [int(x) for x in input().split()] upper_sum += upper lower_sum += lower arr.append((upper, lower)) if (upper_sum % 2) == 0 and (lower_sum % 2) == 0: print("0") else: msg = "-1" for upper, lower in arr: U = upper_sum - upper L = lower_sum - lower U += lower L += upper if U % 2 == 0 and L % 2 == 0: msg = "1" break print(msg)
n = int(input()) (upper_sum, lower_sum) = (0, 0) arr = [] for _ in range(n): (upper, lower) = [int(x) for x in input().split()] upper_sum += upper lower_sum += lower arr.append((upper, lower)) if upper_sum % 2 == 0 and lower_sum % 2 == 0: print('0') else: msg = '-1' for (upper, lower) in arr: u = upper_sum - upper l = lower_sum - lower u += lower l += upper if U % 2 == 0 and L % 2 == 0: msg = '1' break print(msg)
class RaisesClass(): def func_with_raise(self) -> None: """ Raises: RuntimeError: [description] ValueError: [description] IndexError: [description] """ if 2 == 3: raise RuntimeError() if 2 == 4: raise ValueError() if 2 == 5: raise IndexError() def func_with_raise_and_args(self) -> None: """ Raises: RuntimeError: [description] ValueError: [description] IndexError: [description] """ if 2 == 3: raise RuntimeError() if 2 == 4: raise ValueError() if 2 == 5: raise IndexError() def func_with_raise_and_args_and_return(self, a: int, b: float) -> bool: """[summary] Args: a (int): [description] b (float): [description] Raises: RuntimeError: [description] ValueError: [description] IndexError: [description] Returns: bool: [description] """ if 2 == 3: raise RuntimeError() if 2 == 4: raise ValueError() if 2 == 5: raise IndexError() return True def func_with_missing_raise(self) -> None: """ """ if 2 == 5: raise IndexError() def func_with_incorrect_raise(self) -> None: """[summary] Raises: RuntimeError: [description] IndexError: [description] """ if 2 == 4: raise ValueError() if 2 == 5: raise IndexError() def func_with_raise_count_mismatch(self) -> None: """[summary] Raises: RuntimeError: [description] IndexError: [description] """ if 2 == 3: raise RuntimeError() if 2 == 4: raise ValueError() if 2 == 5: raise IndexError()
class Raisesclass: def func_with_raise(self) -> None: """ Raises: RuntimeError: [description] ValueError: [description] IndexError: [description] """ if 2 == 3: raise runtime_error() if 2 == 4: raise value_error() if 2 == 5: raise index_error() def func_with_raise_and_args(self) -> None: """ Raises: RuntimeError: [description] ValueError: [description] IndexError: [description] """ if 2 == 3: raise runtime_error() if 2 == 4: raise value_error() if 2 == 5: raise index_error() def func_with_raise_and_args_and_return(self, a: int, b: float) -> bool: """[summary] Args: a (int): [description] b (float): [description] Raises: RuntimeError: [description] ValueError: [description] IndexError: [description] Returns: bool: [description] """ if 2 == 3: raise runtime_error() if 2 == 4: raise value_error() if 2 == 5: raise index_error() return True def func_with_missing_raise(self) -> None: """ """ if 2 == 5: raise index_error() def func_with_incorrect_raise(self) -> None: """[summary] Raises: RuntimeError: [description] IndexError: [description] """ if 2 == 4: raise value_error() if 2 == 5: raise index_error() def func_with_raise_count_mismatch(self) -> None: """[summary] Raises: RuntimeError: [description] IndexError: [description] """ if 2 == 3: raise runtime_error() if 2 == 4: raise value_error() if 2 == 5: raise index_error()
class Node: """ Basic node implementation with a single link. """ def __init__(self, val=None): self.val = val self.next = None def __str__(self): return str(self.val) class Queue: """ Queue implementation using Linked List. """ def __init__(self): self.head = None self.tail = None def enqueue(self, value): """ Insert an element into the queue. """ new_node = Node(value) if self.tail == None: self.head = self.tail = new_node else: self.tail.next = new_node self.tail = new_node def dequeue(self): """ Dequeue an element from the queue. """ if self.head == None: raise Exception("Empty queue!") front = self.head self.head = front.next return front def __str__(self): string_rep = "" current_node = self.head while current_node != None: string_rep += str(current_node.val) + " -> " current_node = current_node.next return string_rep def main(): q = Queue() q.enqueue(1) q.enqueue(2) q.enqueue(3) print(q) for _ in range(3): print("Dequeued:", q.dequeue()) print("Current queue:", q) try: q.dequeue() except Exception as e: print("Exception:", e) if __name__ == "__main__": main()
class Node: """ Basic node implementation with a single link. """ def __init__(self, val=None): self.val = val self.next = None def __str__(self): return str(self.val) class Queue: """ Queue implementation using Linked List. """ def __init__(self): self.head = None self.tail = None def enqueue(self, value): """ Insert an element into the queue. """ new_node = node(value) if self.tail == None: self.head = self.tail = new_node else: self.tail.next = new_node self.tail = new_node def dequeue(self): """ Dequeue an element from the queue. """ if self.head == None: raise exception('Empty queue!') front = self.head self.head = front.next return front def __str__(self): string_rep = '' current_node = self.head while current_node != None: string_rep += str(current_node.val) + ' -> ' current_node = current_node.next return string_rep def main(): q = queue() q.enqueue(1) q.enqueue(2) q.enqueue(3) print(q) for _ in range(3): print('Dequeued:', q.dequeue()) print('Current queue:', q) try: q.dequeue() except Exception as e: print('Exception:', e) if __name__ == '__main__': main()
#!/usr/bin/env python3 # encoding: utf-8 """ @author: Medivh Xu @file: __init__.py.py @time: 2020-03-04 21:27 """
""" @author: Medivh Xu @file: __init__.py.py @time: 2020-03-04 21:27 """
l_rate = 0.3 n_epoch = 100 loss = np.zeros(n_epoch) beta = [0.0,0.0,0.0] for epoch in range(n_epoch): sum_error = 0 for row in train: x = row[0:-1] # input features y = row[-1] # output label yhat = predict(row, beta) error = y - yhat sum_error += error**2 beta[0] += l_rate * error * yhat * (1.0 - yhat) beta[1] += l_rate * error * yhat * (1.0 - yhat) * x[0] beta[2] += l_rate * error * yhat * (1.0 - yhat) * x[1] loss[epoch] = sum_error print('Coefficients:',beta) plt.plot(loss) plt.xlabel('Epoch') plt.ylabel('Loss')
l_rate = 0.3 n_epoch = 100 loss = np.zeros(n_epoch) beta = [0.0, 0.0, 0.0] for epoch in range(n_epoch): sum_error = 0 for row in train: x = row[0:-1] y = row[-1] yhat = predict(row, beta) error = y - yhat sum_error += error ** 2 beta[0] += l_rate * error * yhat * (1.0 - yhat) beta[1] += l_rate * error * yhat * (1.0 - yhat) * x[0] beta[2] += l_rate * error * yhat * (1.0 - yhat) * x[1] loss[epoch] = sum_error print('Coefficients:', beta) plt.plot(loss) plt.xlabel('Epoch') plt.ylabel('Loss')
def fetch_data1(): return "data1" def fetch_data2(): return "data2" def process_data1(): return fetch_data1().upper() def process_data2(): return fetch_data2().upper() def process_data3(): return process_data1() + "-" + process_data2() def show_report1(): print(process_data3()) def show_report2(): print(process_data1(), "<->", process_data2()) show_report1() show_report2()
def fetch_data1(): return 'data1' def fetch_data2(): return 'data2' def process_data1(): return fetch_data1().upper() def process_data2(): return fetch_data2().upper() def process_data3(): return process_data1() + '-' + process_data2() def show_report1(): print(process_data3()) def show_report2(): print(process_data1(), '<->', process_data2()) show_report1() show_report2()
''' @author: Kittl ''' def exportStorageTypes(dpf, exportProfile, tables, colHeads): # Get the index in the list of worksheets if exportProfile is 2: cmpStr = "StorageType" elif exportProfile is 3: cmpStr = "" idxWs = [idx for idx,val in enumerate(tables[exportProfile-1]) if val == cmpStr] if not idxWs: dpf.PrintPlain('') dpf.PrintInfo('There is no worksheet '+( cmpStr if not cmpStr == "" else "for storage types" )+' defined. Skip this one!') return (None, None) elif len(idxWs) > 1: dpf.PrintError('There is more than one table with the name '+cmpStr+' defined. Cancel this script.') exit(1) else: idxWs = idxWs[0] colHead = list(); # Index 11 indicates the storageType-Worksheet for cHead in colHeads[exportProfile-1][idxWs]: colHead.append(str(cHead.name)) dpf.PrintPlain('') dpf.PrintPlain('#####################################') dpf.PrintPlain('# Starting to export storage types. #') dpf.PrintPlain('#####################################') expMat = list() expMat.append(colHead) # ~~~~~~~~ Implement storage export! ~~~~~~~~ # reses = dpf.GetCalcRelevantObjects('*.ElmGenstat') # for res in reses: # if exportProfile is 2: # expMat.append([ # res.loc_name, # id # res.bus1.cterm.loc_name, # node # res.cCategory, # type # "", # pvType # "", # wecType # "", # bmType# # res.pgini, # pload # res.cosgini, # cosphi # res.sgn, # sR # res.cpArea.loc_name if res.cpArea is not None else "", # subnet # res.cpZone.loc_name if res.cpZone is not None else "" # voltLvl # ]) # else: # dpf.PrintError("This export profile isn't implemented yet.") # exit(1) return (idxWs, expMat)
""" @author: Kittl """ def export_storage_types(dpf, exportProfile, tables, colHeads): if exportProfile is 2: cmp_str = 'StorageType' elif exportProfile is 3: cmp_str = '' idx_ws = [idx for (idx, val) in enumerate(tables[exportProfile - 1]) if val == cmpStr] if not idxWs: dpf.PrintPlain('') dpf.PrintInfo('There is no worksheet ' + (cmpStr if not cmpStr == '' else 'for storage types') + ' defined. Skip this one!') return (None, None) elif len(idxWs) > 1: dpf.PrintError('There is more than one table with the name ' + cmpStr + ' defined. Cancel this script.') exit(1) else: idx_ws = idxWs[0] col_head = list() for c_head in colHeads[exportProfile - 1][idxWs]: colHead.append(str(cHead.name)) dpf.PrintPlain('') dpf.PrintPlain('#####################################') dpf.PrintPlain('# Starting to export storage types. #') dpf.PrintPlain('#####################################') exp_mat = list() expMat.append(colHead) return (idxWs, expMat)
class MongoUsersUtils: def __init__(self, mongo): self.mongo = mongo self.collection_name = "users" def save(self, user): return self.mongo.db[self.collection_name].insert(user)
class Mongousersutils: def __init__(self, mongo): self.mongo = mongo self.collection_name = 'users' def save(self, user): return self.mongo.db[self.collection_name].insert(user)
# -*- coding: utf-8 -*- """This module contains settings for Animerger""" archive_extensions = [".7z", ".zip", ".rar", ".tar"] video_extensions = [".mkv", ".mp4", ".avi"] audio_extensions = [".mka", ".aac", ".mp3", ".ac3"] subtitles_extensions = [".srt", ".ass", ".ssa"] fonts_extensions = [".ttf", ".otf"]
"""This module contains settings for Animerger""" archive_extensions = ['.7z', '.zip', '.rar', '.tar'] video_extensions = ['.mkv', '.mp4', '.avi'] audio_extensions = ['.mka', '.aac', '.mp3', '.ac3'] subtitles_extensions = ['.srt', '.ass', '.ssa'] fonts_extensions = ['.ttf', '.otf']
def reverseBits(n: int) -> int: bin_n = list(bin(n)[2:]) bin_n.reverse() bin_n.extend(['0'] * (32 - len(bin_n))) return int(''.join(bin_n), 2) def reverseBits(n: int) -> int: rtn = 0 for i in range(32): rtn = (rtn << 1) | (n & 1) n >>= 1 return rtn def reverseBits(n: int) -> int: n = (n >> 16) | (n << 16) n = ((n & 0xff00ff00) >> 8) | ((n & 0x00ff00ff) << 8) n = ((n & 0xf0f0f0f0) >> 4) | ((n & 0x0f0f0f0f) << 4) n = ((n & 0xcccccccc) >> 2) | ((n & 0x33333333) << 2) n = ((n & 0xaaaaaaaa) >> 1) | ((n & 0x55555555) << 1) return n
def reverse_bits(n: int) -> int: bin_n = list(bin(n)[2:]) bin_n.reverse() bin_n.extend(['0'] * (32 - len(bin_n))) return int(''.join(bin_n), 2) def reverse_bits(n: int) -> int: rtn = 0 for i in range(32): rtn = rtn << 1 | n & 1 n >>= 1 return rtn def reverse_bits(n: int) -> int: n = n >> 16 | n << 16 n = (n & 4278255360) >> 8 | (n & 16711935) << 8 n = (n & 4042322160) >> 4 | (n & 252645135) << 4 n = (n & 3435973836) >> 2 | (n & 858993459) << 2 n = (n & 2863311530) >> 1 | (n & 1431655765) << 1 return n
def unique_string_list(element_list, only_string=True): """ Parameters ---------- element_list : only_string : (Default value = True) Returns ------- """ if element_list: if isinstance(element_list, list): element_list = set(element_list) elif isinstance(element_list, str): element_list = [element_list] else: error_message = 'Invalid list data' try: error_message += ' {}'.format(element_list) except: pass raise Exception(error_message) if only_string: non_string_entries = [x for x in element_list if type(x) is not str] assert not non_string_entries, "Invalid list entries {} are not a string!".format( non_string_entries) return element_list def string_list(element_list): """ Parameters ---------- element_list : Returns ------- """ if isinstance(element_list, str): element_list = [element_list] else: assert isinstance(element_list, str), 'Input must be a list or a string' return element_list def ensure_list(element_list): """ Parameters ---------- element_list : Returns ------- """ if not isinstance(element_list, list): element_list = [element_list] return element_list def variation_string_to_dict(variation_string): """Helper function to convert a list of "="-separated strings into a dictionary Returns ------- dict """ var_data = variation_string.split() variation_dict = {} for var in var_data: pos_eq = var.find("=") var_name = var[0:pos_eq] var_value = var[pos_eq+1:].replace('\'', '') variation_dict[var_name] = var_value return variation_dict
def unique_string_list(element_list, only_string=True): """ Parameters ---------- element_list : only_string : (Default value = True) Returns ------- """ if element_list: if isinstance(element_list, list): element_list = set(element_list) elif isinstance(element_list, str): element_list = [element_list] else: error_message = 'Invalid list data' try: error_message += ' {}'.format(element_list) except: pass raise exception(error_message) if only_string: non_string_entries = [x for x in element_list if type(x) is not str] assert not non_string_entries, 'Invalid list entries {} are not a string!'.format(non_string_entries) return element_list def string_list(element_list): """ Parameters ---------- element_list : Returns ------- """ if isinstance(element_list, str): element_list = [element_list] else: assert isinstance(element_list, str), 'Input must be a list or a string' return element_list def ensure_list(element_list): """ Parameters ---------- element_list : Returns ------- """ if not isinstance(element_list, list): element_list = [element_list] return element_list def variation_string_to_dict(variation_string): """Helper function to convert a list of "="-separated strings into a dictionary Returns ------- dict """ var_data = variation_string.split() variation_dict = {} for var in var_data: pos_eq = var.find('=') var_name = var[0:pos_eq] var_value = var[pos_eq + 1:].replace("'", '') variation_dict[var_name] = var_value return variation_dict
input = """ % true negation of terms does not make sense. %g(-a). okay(a). %f(1,-"zwei"). %:- not g(-a). :- not okay(a). %:- not f(1,-"zwei"). """ output = """ % true negation of terms does not make sense. %g(-a). okay(a). %f(1,-"zwei"). %:- not g(-a). :- not okay(a). %:- not f(1,-"zwei"). """
input = '\n% true negation of terms does not make sense.\n\n%g(-a).\nokay(a).\n%f(1,-"zwei").\n%:- not g(-a).\n:- not okay(a).\n%:- not f(1,-"zwei").\n' output = '\n% true negation of terms does not make sense.\n\n%g(-a).\nokay(a).\n%f(1,-"zwei").\n%:- not g(-a).\n:- not okay(a).\n%:- not f(1,-"zwei").\n'
# copy-pasted from https://github.com/toastdriven/pylev/blob/master/pylev.py def recursive_levenshtein(string_1, string_2, len_1=None, len_2=None, offset_1=0, offset_2=0, memo=None) -> float: """ Calculates the Levenshtein distance between two strings. Usage:: >>> recursive_levenshtein('kitten', 'sitting') 3 >>> recursive_levenshtein('kitten', 'kitten') 0 >>> recursive_levenshtein('', '') 0 """ if len_1 is None: len_1 = len(string_1) if len_2 is None: len_2 = len(string_2) if memo is None: memo = {} key = ','.join([str(offset_1), str(len_1), str(offset_2), str(len_2)]) if memo.get(key) is not None: return memo[key] if len_1 == 0: return len_2 elif len_2 == 0: return len_1 cost = 0 if string_1[offset_1] != string_2[offset_2]: cost = 1 dist = min( recursive_levenshtein(string_1, string_2, len_1 - 1, len_2, offset_1 + 1, offset_2, memo) + 1, recursive_levenshtein(string_1, string_2, len_1, len_2 - 1, offset_1, offset_2 + 1, memo) + 1, recursive_levenshtein(string_1, string_2, len_1 - 1, len_2 - 1, offset_1 + 1, offset_2 + 1, memo) + cost, ) memo[key] = dist return dist
def recursive_levenshtein(string_1, string_2, len_1=None, len_2=None, offset_1=0, offset_2=0, memo=None) -> float: """ Calculates the Levenshtein distance between two strings. Usage:: >>> recursive_levenshtein('kitten', 'sitting') 3 >>> recursive_levenshtein('kitten', 'kitten') 0 >>> recursive_levenshtein('', '') 0 """ if len_1 is None: len_1 = len(string_1) if len_2 is None: len_2 = len(string_2) if memo is None: memo = {} key = ','.join([str(offset_1), str(len_1), str(offset_2), str(len_2)]) if memo.get(key) is not None: return memo[key] if len_1 == 0: return len_2 elif len_2 == 0: return len_1 cost = 0 if string_1[offset_1] != string_2[offset_2]: cost = 1 dist = min(recursive_levenshtein(string_1, string_2, len_1 - 1, len_2, offset_1 + 1, offset_2, memo) + 1, recursive_levenshtein(string_1, string_2, len_1, len_2 - 1, offset_1, offset_2 + 1, memo) + 1, recursive_levenshtein(string_1, string_2, len_1 - 1, len_2 - 1, offset_1 + 1, offset_2 + 1, memo) + cost) memo[key] = dist return dist
class NoSolutionException(Exception): """ DESCRIPTION: An exception to handle where there are no terms to choose when performing inference. This exception is launched when there is no solution. """ # Methods def __init__(self): """ DESCRIPTION: Constructor of the class """ super().__init__('No solution found') class InputModificationException(Exception): """ DESCRIPTION: An exception to handle when the conflicts solving procedure demands to modify the input. """ # Methods def __init__(self): """ DESCRIPTION: Constructor of the class """ super().__init__('Input modification detected')
class Nosolutionexception(Exception): """ DESCRIPTION: An exception to handle where there are no terms to choose when performing inference. This exception is launched when there is no solution. """ def __init__(self): """ DESCRIPTION: Constructor of the class """ super().__init__('No solution found') class Inputmodificationexception(Exception): """ DESCRIPTION: An exception to handle when the conflicts solving procedure demands to modify the input. """ def __init__(self): """ DESCRIPTION: Constructor of the class """ super().__init__('Input modification detected')
def get_upstream_conduits(node_id, con_df, in_col_name="InletNode", out_col_name="OutletNode"): us_nodes = get_upstream_nodes(node_id, con_df, in_col_name, out_col_name) us_cons = con_df[(con_df[in_col_name].isin(us_nodes)) | (con_df[out_col_name].isin(us_nodes))] return us_cons.index def get_upstream_nodes_one(node_id, con_df, in_col_name, out_col_name): conids = con_df[con_df[out_col_name] == node_id].index if len(conids)>0: us_node_ids = con_df[in_col_name].loc[conids].tolist() return us_node_ids else: return [] def get_upstream_nodes(node_id, con_df, in_col_name="InletNode", out_col_name="OutletNode"): l = get_upstream_nodes_one(node_id, con_df, in_col_name, out_col_name) for n in l: l.extend(get_upstream_nodes_one(n, con_df, in_col_name, out_col_name)) return l def get_contributing_subs(node_id, con_df, subs_df, **kwargs): us_nodes = get_upstream_nodes(node_id, con_df, **kwargs) us_subs = subs_df[subs_df["Outlet"].isin(us_nodes)] return us_subs def get_contributing_area(node_id, con_df, subs_df, **kwargs): cont_subs = get_contributing_subs(node_id, con_df, subs_df, **kwargs) return cont_subs["Area"].sum()
def get_upstream_conduits(node_id, con_df, in_col_name='InletNode', out_col_name='OutletNode'): us_nodes = get_upstream_nodes(node_id, con_df, in_col_name, out_col_name) us_cons = con_df[con_df[in_col_name].isin(us_nodes) | con_df[out_col_name].isin(us_nodes)] return us_cons.index def get_upstream_nodes_one(node_id, con_df, in_col_name, out_col_name): conids = con_df[con_df[out_col_name] == node_id].index if len(conids) > 0: us_node_ids = con_df[in_col_name].loc[conids].tolist() return us_node_ids else: return [] def get_upstream_nodes(node_id, con_df, in_col_name='InletNode', out_col_name='OutletNode'): l = get_upstream_nodes_one(node_id, con_df, in_col_name, out_col_name) for n in l: l.extend(get_upstream_nodes_one(n, con_df, in_col_name, out_col_name)) return l def get_contributing_subs(node_id, con_df, subs_df, **kwargs): us_nodes = get_upstream_nodes(node_id, con_df, **kwargs) us_subs = subs_df[subs_df['Outlet'].isin(us_nodes)] return us_subs def get_contributing_area(node_id, con_df, subs_df, **kwargs): cont_subs = get_contributing_subs(node_id, con_df, subs_df, **kwargs) return cont_subs['Area'].sum()
#unlicense.org #in case importing the numpy/scipy libraries should be avoided: def zeros(item, quanity): return [item] * quanity def simple_matrix(item,quanity): return [item] * quanity
def zeros(item, quanity): return [item] * quanity def simple_matrix(item, quanity): return [item] * quanity
#!/usr/bin/env python # Copyright 2017 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. # ****************************************************************************** # YOU NEED TO MODIFY THE FOLLOWING METADATA TO ADAPT THE TEMPLATE TO YOUR DATA # ****************************************************************************** # Task type can be either 'classification', 'regression', or 'custom'. # This is based on the target feature in the dataset. TASK_TYPE = 'classification' # List of all the columns (header) present in the input data file(s). # Used for parsing the input data. COLUMN_NAMES = ['age', 'workclass', 'fnlwgt', 'education', 'education_num', 'marital_status', 'occupation', 'relationship', 'race', 'gender', 'capital_gain', 'capital_loss', 'hours_per_week', 'native_country', 'income_bracket'] # List of the columns expected during serving (which is probably different to # the header of the training data). SERVING_COLUMN_NAMES = [ 'age', 'workclass', 'education', 'education_num', 'marital_status', 'occupation', 'relationship', 'race', 'gender', 'capital_gain', 'capital_loss', 'hours_per_week', 'native_country'] # List of the default values of all the columns present in the input data. # This helps decoding the data types of the columns. DEFAULTS = [[0], [''], [0], [''], [0], [''], [''], [''], [''], [''], [0], [0], [0], [''], ['']] # Dictionary of the feature names of type int or float. In the dictionary, # the key is the feature name, and the value is another dictionary includes # the mean and the variance of the numeric features. # E.g. {feature_1: {mean: 0, variance:1}, feature_2: {mean: 10, variance:3}} # The value can be set to None if you don't want to not normalize. NUMERIC_FEATURE_NAMES_WITH_STATS = { 'age': None, 'education_num': None, 'capital_gain': None, 'capital_loss': None, 'hours_per_week': None } # Dictionary of feature names with int values, but to be treated as # categorical features. In the dictionary, the key is the feature name, # and the value is the num_buckets (count of distinct values). CATEGORICAL_FEATURE_NAMES_WITH_IDENTITY = {} # Dictionary of categorical features with few nominal values. In the dictionary, # the key is the feature name, and the value is the list of feature vocabulary. CATEGORICAL_FEATURE_NAMES_WITH_VOCABULARY = { 'gender': ['Female', 'Male'], 'race': [ 'Amer-Indian-Eskimo', 'Asian-Pac-Islander', 'Black', 'Other', 'White' ], 'education': [ 'Bachelors', 'HS-grad', '11th', 'Masters', '9th', 'Some-college', 'Assoc-acdm', 'Assoc-voc', '7th-8th', 'Doctorate', 'Prof-school', '5th-6th', '10th', '1st-4th', 'Preschool', '12th' ], 'marital_status': [ 'Married-civ-spouse', 'Divorced', 'Married-spouse-absent', 'Never-married', 'Separated', 'Married-AF-spouse', 'Widowed' ], 'relationship': [ 'Husband', 'Not-in-family', 'Wife', 'Own-child', 'Unmarried', 'Other-relative' ], 'workclass': [ 'Self-emp-not-inc', 'Private', 'State-gov', 'Federal-gov', 'Local-gov', '?', 'Self-emp-inc', 'Without-pay', 'Never-worked' ] } # Dictionary of categorical features with many values. In the dictionary, # the key is the feature name, and the value is the number of buckets. CATEGORICAL_FEATURE_NAMES_WITH_HASH_BUCKET = { 'occupation': 50, 'native_country': 100 } # Column includes the relative weight of each record. WEIGHT_COLUMN_NAME = 'fnlwgt' # Target feature name (response or class variable). TARGET_NAME = 'income_bracket' # List of the class values (labels) in a classification dataset. TARGET_LABELS = ['<=50K', '>50K']
task_type = 'classification' column_names = ['age', 'workclass', 'fnlwgt', 'education', 'education_num', 'marital_status', 'occupation', 'relationship', 'race', 'gender', 'capital_gain', 'capital_loss', 'hours_per_week', 'native_country', 'income_bracket'] serving_column_names = ['age', 'workclass', 'education', 'education_num', 'marital_status', 'occupation', 'relationship', 'race', 'gender', 'capital_gain', 'capital_loss', 'hours_per_week', 'native_country'] defaults = [[0], [''], [0], [''], [0], [''], [''], [''], [''], [''], [0], [0], [0], [''], ['']] numeric_feature_names_with_stats = {'age': None, 'education_num': None, 'capital_gain': None, 'capital_loss': None, 'hours_per_week': None} categorical_feature_names_with_identity = {} categorical_feature_names_with_vocabulary = {'gender': ['Female', 'Male'], 'race': ['Amer-Indian-Eskimo', 'Asian-Pac-Islander', 'Black', 'Other', 'White'], 'education': ['Bachelors', 'HS-grad', '11th', 'Masters', '9th', 'Some-college', 'Assoc-acdm', 'Assoc-voc', '7th-8th', 'Doctorate', 'Prof-school', '5th-6th', '10th', '1st-4th', 'Preschool', '12th'], 'marital_status': ['Married-civ-spouse', 'Divorced', 'Married-spouse-absent', 'Never-married', 'Separated', 'Married-AF-spouse', 'Widowed'], 'relationship': ['Husband', 'Not-in-family', 'Wife', 'Own-child', 'Unmarried', 'Other-relative'], 'workclass': ['Self-emp-not-inc', 'Private', 'State-gov', 'Federal-gov', 'Local-gov', '?', 'Self-emp-inc', 'Without-pay', 'Never-worked']} categorical_feature_names_with_hash_bucket = {'occupation': 50, 'native_country': 100} weight_column_name = 'fnlwgt' target_name = 'income_bracket' target_labels = ['<=50K', '>50K']
set_name(0x801379C4, "PreGameOnlyTestRoutine__Fv", SN_NOWARN) set_name(0x80139A88, "DRLG_PlaceDoor__Fii", SN_NOWARN) set_name(0x80139F5C, "DRLG_L1Shadows__Fv", SN_NOWARN) set_name(0x8013A374, "DRLG_PlaceMiniSet__FPCUciiiiiii", SN_NOWARN) set_name(0x8013A7E0, "DRLG_L1Floor__Fv", SN_NOWARN) set_name(0x8013A8CC, "StoreBlock__FPiii", SN_NOWARN) set_name(0x8013A978, "DRLG_L1Pass3__Fv", SN_NOWARN) set_name(0x8013AB2C, "DRLG_LoadL1SP__Fv", SN_NOWARN) set_name(0x8013AC08, "DRLG_FreeL1SP__Fv", SN_NOWARN) set_name(0x8013AC38, "DRLG_Init_Globals__Fv", SN_NOWARN) set_name(0x8013ACDC, "set_restore_lighting__Fv", SN_NOWARN) set_name(0x8013AD6C, "DRLG_InitL1Vals__Fv", SN_NOWARN) set_name(0x8013AD74, "LoadL1Dungeon__FPcii", SN_NOWARN) set_name(0x8013AF40, "LoadPreL1Dungeon__FPcii", SN_NOWARN) set_name(0x8013B0F8, "InitL5Dungeon__Fv", SN_NOWARN) set_name(0x8013B158, "L5ClearFlags__Fv", SN_NOWARN) set_name(0x8013B1A4, "L5drawRoom__Fiiii", SN_NOWARN) set_name(0x8013B210, "L5checkRoom__Fiiii", SN_NOWARN) set_name(0x8013B2A4, "L5roomGen__Fiiiii", SN_NOWARN) set_name(0x8013B5A0, "L5firstRoom__Fv", SN_NOWARN) set_name(0x8013B95C, "L5GetArea__Fv", SN_NOWARN) set_name(0x8013B9BC, "L5makeDungeon__Fv", SN_NOWARN) set_name(0x8013BA48, "L5makeDmt__Fv", SN_NOWARN) set_name(0x8013BB30, "L5HWallOk__Fii", SN_NOWARN) set_name(0x8013BC6C, "L5VWallOk__Fii", SN_NOWARN) set_name(0x8013BDB8, "L5HorizWall__Fiici", SN_NOWARN) set_name(0x8013BFF8, "L5VertWall__Fiici", SN_NOWARN) set_name(0x8013C22C, "L5AddWall__Fv", SN_NOWARN) set_name(0x8013C49C, "DRLG_L5GChamber__Fiiiiii", SN_NOWARN) set_name(0x8013C75C, "DRLG_L5GHall__Fiiii", SN_NOWARN) set_name(0x8013C810, "L5tileFix__Fv", SN_NOWARN) set_name(0x8013D0D4, "DRLG_L5Subs__Fv", SN_NOWARN) set_name(0x8013D2CC, "DRLG_L5SetRoom__Fii", SN_NOWARN) set_name(0x8013D3CC, "L5FillChambers__Fv", SN_NOWARN) set_name(0x8013DAB8, "DRLG_L5FTVR__Fiiiii", SN_NOWARN) set_name(0x8013E000, "DRLG_L5FloodTVal__Fv", SN_NOWARN) set_name(0x8013E104, "DRLG_L5TransFix__Fv", SN_NOWARN) set_name(0x8013E314, "DRLG_L5DirtFix__Fv", SN_NOWARN) set_name(0x8013E470, "DRLG_L5CornerFix__Fv", SN_NOWARN) set_name(0x8013E580, "DRLG_L5__Fi", SN_NOWARN) set_name(0x8013EAA0, "CreateL5Dungeon__FUii", SN_NOWARN) set_name(0x8014105C, "DRLG_L2PlaceMiniSet__FPUciiiiii", SN_NOWARN) set_name(0x80141450, "DRLG_L2PlaceRndSet__FPUci", SN_NOWARN) set_name(0x80141750, "DRLG_L2Subs__Fv", SN_NOWARN) set_name(0x80141944, "DRLG_L2Shadows__Fv", SN_NOWARN) set_name(0x80141B08, "InitDungeon__Fv", SN_NOWARN) set_name(0x80141B68, "DRLG_LoadL2SP__Fv", SN_NOWARN) set_name(0x80141C18, "DRLG_FreeL2SP__Fv", SN_NOWARN) set_name(0x80141C48, "DRLG_L2SetRoom__Fii", SN_NOWARN) set_name(0x80141D48, "DefineRoom__Fiiiii", SN_NOWARN) set_name(0x80141F54, "CreateDoorType__Fii", SN_NOWARN) set_name(0x80142038, "PlaceHallExt__Fii", SN_NOWARN) set_name(0x80142070, "AddHall__Fiiiii", SN_NOWARN) set_name(0x80142148, "CreateRoom__Fiiiiiiiii", SN_NOWARN) set_name(0x801427D0, "GetHall__FPiN40", SN_NOWARN) set_name(0x80142868, "ConnectHall__Fiiiii", SN_NOWARN) set_name(0x80142ED0, "DoPatternCheck__Fii", SN_NOWARN) set_name(0x80143184, "L2TileFix__Fv", SN_NOWARN) set_name(0x801432A8, "DL2_Cont__FUcUcUcUc", SN_NOWARN) set_name(0x80143328, "DL2_NumNoChar__Fv", SN_NOWARN) set_name(0x80143384, "DL2_DrawRoom__Fiiii", SN_NOWARN) set_name(0x80143488, "DL2_KnockWalls__Fiiii", SN_NOWARN) set_name(0x80143658, "DL2_FillVoids__Fv", SN_NOWARN) set_name(0x80143FDC, "CreateDungeon__Fv", SN_NOWARN) set_name(0x801442E8, "DRLG_L2Pass3__Fv", SN_NOWARN) set_name(0x80144480, "DRLG_L2FTVR__Fiiiii", SN_NOWARN) set_name(0x801449C8, "DRLG_L2FloodTVal__Fv", SN_NOWARN) set_name(0x80144ACC, "DRLG_L2TransFix__Fv", SN_NOWARN) set_name(0x80144CDC, "L2DirtFix__Fv", SN_NOWARN) set_name(0x80144E3C, "L2LockoutFix__Fv", SN_NOWARN) set_name(0x801451C8, "L2DoorFix__Fv", SN_NOWARN) set_name(0x80145278, "DRLG_L2__Fi", SN_NOWARN) set_name(0x80145CC4, "DRLG_InitL2Vals__Fv", SN_NOWARN) set_name(0x80145CCC, "LoadL2Dungeon__FPcii", SN_NOWARN) set_name(0x80145EBC, "LoadPreL2Dungeon__FPcii", SN_NOWARN) set_name(0x801460A8, "CreateL2Dungeon__FUii", SN_NOWARN) set_name(0x80146A60, "InitL3Dungeon__Fv", SN_NOWARN) set_name(0x80146AE8, "DRLG_L3FillRoom__Fiiii", SN_NOWARN) set_name(0x80146D44, "DRLG_L3CreateBlock__Fiiii", SN_NOWARN) set_name(0x80146FE0, "DRLG_L3FloorArea__Fiiii", SN_NOWARN) set_name(0x80147048, "DRLG_L3FillDiags__Fv", SN_NOWARN) set_name(0x80147178, "DRLG_L3FillSingles__Fv", SN_NOWARN) set_name(0x80147244, "DRLG_L3FillStraights__Fv", SN_NOWARN) set_name(0x80147608, "DRLG_L3Edges__Fv", SN_NOWARN) set_name(0x80147648, "DRLG_L3GetFloorArea__Fv", SN_NOWARN) set_name(0x80147698, "DRLG_L3MakeMegas__Fv", SN_NOWARN) set_name(0x801477DC, "DRLG_L3River__Fv", SN_NOWARN) set_name(0x8014821C, "DRLG_L3SpawnEdge__FiiPi", SN_NOWARN) set_name(0x801484A8, "DRLG_L3Spawn__FiiPi", SN_NOWARN) set_name(0x801486BC, "DRLG_L3Pool__Fv", SN_NOWARN) set_name(0x80148910, "DRLG_L3PoolFix__Fv", SN_NOWARN) set_name(0x80148A44, "DRLG_L3PlaceMiniSet__FPCUciiiiii", SN_NOWARN) set_name(0x80148DC4, "DRLG_L3PlaceRndSet__FPCUci", SN_NOWARN) set_name(0x8014910C, "WoodVertU__Fii", SN_NOWARN) set_name(0x801491B8, "WoodVertD__Fii", SN_NOWARN) set_name(0x80149254, "WoodHorizL__Fii", SN_NOWARN) set_name(0x801492E8, "WoodHorizR__Fii", SN_NOWARN) set_name(0x8014936C, "AddFenceDoors__Fv", SN_NOWARN) set_name(0x80149450, "FenceDoorFix__Fv", SN_NOWARN) set_name(0x80149644, "DRLG_L3Wood__Fv", SN_NOWARN) set_name(0x80149E34, "DRLG_L3Anvil__Fv", SN_NOWARN) set_name(0x8014A090, "FixL3Warp__Fv", SN_NOWARN) set_name(0x8014A178, "FixL3HallofHeroes__Fv", SN_NOWARN) set_name(0x8014A2CC, "DRLG_L3LockRec__Fii", SN_NOWARN) set_name(0x8014A368, "DRLG_L3Lockout__Fv", SN_NOWARN) set_name(0x8014A428, "DRLG_L3__Fi", SN_NOWARN) set_name(0x8014AB48, "DRLG_L3Pass3__Fv", SN_NOWARN) set_name(0x8014ACEC, "CreateL3Dungeon__FUii", SN_NOWARN) set_name(0x8014AE00, "LoadL3Dungeon__FPcii", SN_NOWARN) set_name(0x8014B024, "LoadPreL3Dungeon__FPcii", SN_NOWARN) set_name(0x8014CE70, "DRLG_L4Shadows__Fv", SN_NOWARN) set_name(0x8014CF34, "InitL4Dungeon__Fv", SN_NOWARN) set_name(0x8014CFD0, "DRLG_LoadL4SP__Fv", SN_NOWARN) set_name(0x8014D074, "DRLG_FreeL4SP__Fv", SN_NOWARN) set_name(0x8014D09C, "DRLG_L4SetSPRoom__Fii", SN_NOWARN) set_name(0x8014D19C, "L4makeDmt__Fv", SN_NOWARN) set_name(0x8014D240, "L4HWallOk__Fii", SN_NOWARN) set_name(0x8014D390, "L4VWallOk__Fii", SN_NOWARN) set_name(0x8014D50C, "L4HorizWall__Fiii", SN_NOWARN) set_name(0x8014D6DC, "L4VertWall__Fiii", SN_NOWARN) set_name(0x8014D8A4, "L4AddWall__Fv", SN_NOWARN) set_name(0x8014DD84, "L4tileFix__Fv", SN_NOWARN) set_name(0x8014FF6C, "DRLG_L4Subs__Fv", SN_NOWARN) set_name(0x80150144, "L4makeDungeon__Fv", SN_NOWARN) set_name(0x8015037C, "uShape__Fv", SN_NOWARN) set_name(0x80150620, "GetArea__Fv", SN_NOWARN) set_name(0x8015067C, "L4drawRoom__Fiiii", SN_NOWARN) set_name(0x801506E4, "L4checkRoom__Fiiii", SN_NOWARN) set_name(0x80150780, "L4roomGen__Fiiiii", SN_NOWARN) set_name(0x80150A7C, "L4firstRoom__Fv", SN_NOWARN) set_name(0x80150C98, "L4SaveQuads__Fv", SN_NOWARN) set_name(0x80150D38, "DRLG_L4SetRoom__FPUcii", SN_NOWARN) set_name(0x80150E0C, "DRLG_LoadDiabQuads__FUc", SN_NOWARN) set_name(0x80150F90, "DRLG_L4PlaceMiniSet__FPCUciiiiii", SN_NOWARN) set_name(0x801513A8, "DRLG_L4FTVR__Fiiiii", SN_NOWARN) set_name(0x801518F0, "DRLG_L4FloodTVal__Fv", SN_NOWARN) set_name(0x801519F4, "IsDURWall__Fc", SN_NOWARN) set_name(0x80151A24, "IsDLLWall__Fc", SN_NOWARN) set_name(0x80151A54, "DRLG_L4TransFix__Fv", SN_NOWARN) set_name(0x80151DAC, "DRLG_L4Corners__Fv", SN_NOWARN) set_name(0x80151E40, "L4FixRim__Fv", SN_NOWARN) set_name(0x80151E7C, "DRLG_L4GeneralFix__Fv", SN_NOWARN) set_name(0x80151F20, "DRLG_L4__Fi", SN_NOWARN) set_name(0x8015281C, "DRLG_L4Pass3__Fv", SN_NOWARN) set_name(0x801529C0, "CreateL4Dungeon__FUii", SN_NOWARN) set_name(0x80152AA0, "ObjIndex__Fii", SN_NOWARN) set_name(0x80152B54, "AddSKingObjs__Fv", SN_NOWARN) set_name(0x80152C84, "AddSChamObjs__Fv", SN_NOWARN) set_name(0x80152D00, "AddVileObjs__Fv", SN_NOWARN) set_name(0x80152DAC, "DRLG_SetMapTrans__FPc", SN_NOWARN) set_name(0x80152E70, "LoadSetMap__Fv", SN_NOWARN) set_name(0x80153198, "CM_QuestToBitPattern__Fi", SN_NOWARN) set_name(0x80153270, "CM_ShowMonsterList__Fii", SN_NOWARN) set_name(0x801532E8, "CM_ChooseMonsterList__FiUl", SN_NOWARN) set_name(0x80153388, "NoUiListChoose__FiUl", SN_NOWARN) set_name(0x80153390, "ChooseTask__FP4TASK", SN_NOWARN) set_name(0x801538A4, "ShowTask__FP4TASK", SN_NOWARN) set_name(0x80153AD4, "GetListsAvailable__FiUlPUc", SN_NOWARN) set_name(0x80153BF8, "GetDown__C4CPad", SN_NOWARN) set_name(0x80153C20, "AddL1Door__Fiiii", SN_NOWARN) set_name(0x80153D58, "AddSCambBook__Fi", SN_NOWARN) set_name(0x80153DF8, "AddChest__Fii", SN_NOWARN) set_name(0x80153FD8, "AddL2Door__Fiiii", SN_NOWARN) set_name(0x80154124, "AddL3Door__Fiiii", SN_NOWARN) set_name(0x801541B8, "AddSarc__Fi", SN_NOWARN) set_name(0x80154294, "AddFlameTrap__Fi", SN_NOWARN) set_name(0x801542F0, "AddTrap__Fii", SN_NOWARN) set_name(0x801543E8, "AddArmorStand__Fi", SN_NOWARN) set_name(0x80154470, "AddObjLight__Fii", SN_NOWARN) set_name(0x80154518, "AddBarrel__Fii", SN_NOWARN) set_name(0x801545C8, "AddShrine__Fi", SN_NOWARN) set_name(0x80154718, "AddBookcase__Fi", SN_NOWARN) set_name(0x80154770, "AddBookstand__Fi", SN_NOWARN) set_name(0x801547B8, "AddBloodFtn__Fi", SN_NOWARN) set_name(0x80154800, "AddPurifyingFountain__Fi", SN_NOWARN) set_name(0x801548DC, "AddGoatShrine__Fi", SN_NOWARN) set_name(0x80154924, "AddCauldron__Fi", SN_NOWARN) set_name(0x8015496C, "AddMurkyFountain__Fi", SN_NOWARN) set_name(0x80154A48, "AddTearFountain__Fi", SN_NOWARN) set_name(0x80154A90, "AddDecap__Fi", SN_NOWARN) set_name(0x80154B08, "AddVilebook__Fi", SN_NOWARN) set_name(0x80154B58, "AddMagicCircle__Fi", SN_NOWARN) set_name(0x80154BCC, "AddBrnCross__Fi", SN_NOWARN) set_name(0x80154C14, "AddPedistal__Fi", SN_NOWARN) set_name(0x80154C88, "AddStoryBook__Fi", SN_NOWARN) set_name(0x80154E54, "AddWeaponRack__Fi", SN_NOWARN) set_name(0x80154EDC, "AddTorturedBody__Fi", SN_NOWARN) set_name(0x80154F58, "AddFlameLvr__Fi", SN_NOWARN) set_name(0x80154F98, "GetRndObjLoc__FiRiT1", SN_NOWARN) set_name(0x801550A4, "AddMushPatch__Fv", SN_NOWARN) set_name(0x801551C8, "AddSlainHero__Fv", SN_NOWARN) set_name(0x80155208, "RndLocOk__Fii", SN_NOWARN) set_name(0x801552EC, "TrapLocOk__Fii", SN_NOWARN) set_name(0x80155354, "RoomLocOk__Fii", SN_NOWARN) set_name(0x801553EC, "InitRndLocObj__Fiii", SN_NOWARN) set_name(0x80155598, "InitRndLocBigObj__Fiii", SN_NOWARN) set_name(0x80155790, "InitRndLocObj5x5__Fiii", SN_NOWARN) set_name(0x801558B8, "SetMapObjects__FPUcii", SN_NOWARN) set_name(0x80155B58, "ClrAllObjects__Fv", SN_NOWARN) set_name(0x80155C48, "AddTortures__Fv", SN_NOWARN) set_name(0x80155DD4, "AddCandles__Fv", SN_NOWARN) set_name(0x80155E5C, "AddTrapLine__Fiiii", SN_NOWARN) set_name(0x801561F8, "AddLeverObj__Fiiiiiiii", SN_NOWARN) set_name(0x80156200, "AddBookLever__Fiiiiiiiii", SN_NOWARN) set_name(0x80156414, "InitRndBarrels__Fv", SN_NOWARN) set_name(0x801565B0, "AddL1Objs__Fiiii", SN_NOWARN) set_name(0x801566E8, "AddL2Objs__Fiiii", SN_NOWARN) set_name(0x801567FC, "AddL3Objs__Fiiii", SN_NOWARN) set_name(0x801568FC, "WallTrapLocOk__Fii", SN_NOWARN) set_name(0x80156964, "TorchLocOK__Fii", SN_NOWARN) set_name(0x801569A4, "AddL2Torches__Fv", SN_NOWARN) set_name(0x80156B58, "AddObjTraps__Fv", SN_NOWARN) set_name(0x80156ED0, "AddChestTraps__Fv", SN_NOWARN) set_name(0x80157020, "LoadMapObjects__FPUciiiiiii", SN_NOWARN) set_name(0x8015718C, "AddDiabObjs__Fv", SN_NOWARN) set_name(0x801572E0, "AddStoryBooks__Fv", SN_NOWARN) set_name(0x80157430, "AddHookedBodies__Fi", SN_NOWARN) set_name(0x80157628, "AddL4Goodies__Fv", SN_NOWARN) set_name(0x801576D8, "AddLazStand__Fv", SN_NOWARN) set_name(0x8015786C, "InitObjects__Fv", SN_NOWARN) set_name(0x80157ED0, "PreObjObjAddSwitch__Fiiii", SN_NOWARN) set_name(0x801581D8, "FillSolidBlockTbls__Fv", SN_NOWARN) set_name(0x80158384, "SetDungeonMicros__Fv", SN_NOWARN) set_name(0x8015838C, "DRLG_InitTrans__Fv", SN_NOWARN) set_name(0x80158400, "DRLG_RectTrans__Fiiii", SN_NOWARN) set_name(0x80158480, "DRLG_CopyTrans__Fiiii", SN_NOWARN) set_name(0x801584E8, "DRLG_ListTrans__FiPUc", SN_NOWARN) set_name(0x8015855C, "DRLG_AreaTrans__FiPUc", SN_NOWARN) set_name(0x801585EC, "DRLG_InitSetPC__Fv", SN_NOWARN) set_name(0x80158604, "DRLG_SetPC__Fv", SN_NOWARN) set_name(0x801586B4, "Make_SetPC__Fiiii", SN_NOWARN) set_name(0x80158754, "DRLG_WillThemeRoomFit__FiiiiiPiT5", SN_NOWARN) set_name(0x80158A1C, "DRLG_CreateThemeRoom__Fi", SN_NOWARN) set_name(0x80159A24, "DRLG_PlaceThemeRooms__FiiiiUc", SN_NOWARN) set_name(0x80159CCC, "DRLG_HoldThemeRooms__Fv", SN_NOWARN) set_name(0x80159E80, "SkipThemeRoom__Fii", SN_NOWARN) set_name(0x80159F4C, "InitLevels__Fv", SN_NOWARN) set_name(0x8015A050, "TFit_Shrine__Fi", SN_NOWARN) set_name(0x8015A2C0, "TFit_Obj5__Fi", SN_NOWARN) set_name(0x8015A494, "TFit_SkelRoom__Fi", SN_NOWARN) set_name(0x8015A544, "TFit_GoatShrine__Fi", SN_NOWARN) set_name(0x8015A5DC, "CheckThemeObj3__Fiiii", SN_NOWARN) set_name(0x8015A72C, "TFit_Obj3__Fi", SN_NOWARN) set_name(0x8015A7EC, "CheckThemeReqs__Fi", SN_NOWARN) set_name(0x8015A8B8, "SpecialThemeFit__Fii", SN_NOWARN) set_name(0x8015AA94, "CheckThemeRoom__Fi", SN_NOWARN) set_name(0x8015AD40, "InitThemes__Fv", SN_NOWARN) set_name(0x8015B08C, "HoldThemeRooms__Fv", SN_NOWARN) set_name(0x8015B174, "PlaceThemeMonsts__Fii", SN_NOWARN) set_name(0x8015B318, "Theme_Barrel__Fi", SN_NOWARN) set_name(0x8015B490, "Theme_Shrine__Fi", SN_NOWARN) set_name(0x8015B578, "Theme_MonstPit__Fi", SN_NOWARN) set_name(0x8015B69C, "Theme_SkelRoom__Fi", SN_NOWARN) set_name(0x8015B9A0, "Theme_Treasure__Fi", SN_NOWARN) set_name(0x8015BC04, "Theme_Library__Fi", SN_NOWARN) set_name(0x8015BE74, "Theme_Torture__Fi", SN_NOWARN) set_name(0x8015BFE4, "Theme_BloodFountain__Fi", SN_NOWARN) set_name(0x8015C058, "Theme_Decap__Fi", SN_NOWARN) set_name(0x8015C1C8, "Theme_PurifyingFountain__Fi", SN_NOWARN) set_name(0x8015C23C, "Theme_ArmorStand__Fi", SN_NOWARN) set_name(0x8015C3D4, "Theme_GoatShrine__Fi", SN_NOWARN) set_name(0x8015C524, "Theme_Cauldron__Fi", SN_NOWARN) set_name(0x8015C598, "Theme_MurkyFountain__Fi", SN_NOWARN) set_name(0x8015C60C, "Theme_TearFountain__Fi", SN_NOWARN) set_name(0x8015C680, "Theme_BrnCross__Fi", SN_NOWARN) set_name(0x8015C7F8, "Theme_WeaponRack__Fi", SN_NOWARN) set_name(0x8015C990, "UpdateL4Trans__Fv", SN_NOWARN) set_name(0x8015C9F0, "CreateThemeRooms__Fv", SN_NOWARN) set_name(0x8015CBD4, "InitPortals__Fv", SN_NOWARN) set_name(0x8015CC34, "InitQuests__Fv", SN_NOWARN) set_name(0x8015D038, "DrawButcher__Fv", SN_NOWARN) set_name(0x8015D07C, "DrawSkelKing__Fiii", SN_NOWARN) set_name(0x8015D0B8, "DrawWarLord__Fii", SN_NOWARN) set_name(0x8015D1B4, "DrawSChamber__Fiii", SN_NOWARN) set_name(0x8015D2F0, "DrawLTBanner__Fii", SN_NOWARN) set_name(0x8015D3CC, "DrawBlind__Fii", SN_NOWARN) set_name(0x8015D4A8, "DrawBlood__Fii", SN_NOWARN) set_name(0x8015D588, "DRLG_CheckQuests__Fii", SN_NOWARN) set_name(0x8015D6C4, "InitInv__Fv", SN_NOWARN) set_name(0x8015D718, "InitAutomap__Fv", SN_NOWARN) set_name(0x8015D8DC, "InitAutomapOnce__Fv", SN_NOWARN) set_name(0x8015D8EC, "MonstPlace__Fii", SN_NOWARN) set_name(0x8015D9A8, "InitMonsterGFX__Fi", SN_NOWARN) set_name(0x8015DA80, "PlaceMonster__Fiiii", SN_NOWARN) set_name(0x8015DB20, "AddMonsterType__Fii", SN_NOWARN) set_name(0x8015DC1C, "GetMonsterTypes__FUl", SN_NOWARN) set_name(0x8015DCCC, "ClrAllMonsters__Fv", SN_NOWARN) set_name(0x8015DE0C, "InitLevelMonsters__Fv", SN_NOWARN) set_name(0x8015DE90, "GetLevelMTypes__Fv", SN_NOWARN) set_name(0x8015E2F8, "PlaceQuestMonsters__Fv", SN_NOWARN) set_name(0x8015E6BC, "LoadDiabMonsts__Fv", SN_NOWARN) set_name(0x8015E7CC, "PlaceGroup__FiiUci", SN_NOWARN) set_name(0x8015ED7C, "SetMapMonsters__FPUcii", SN_NOWARN) set_name(0x8015EFA0, "InitMonsters__Fv", SN_NOWARN) set_name(0x8015F350, "PlaceUniqueMonst__Fiii", SN_NOWARN) set_name(0x8015FABC, "PlaceUniques__Fv", SN_NOWARN) set_name(0x8015FC4C, "PreSpawnSkeleton__Fv", SN_NOWARN) set_name(0x8015FD8C, "encode_enemy__Fi", SN_NOWARN) set_name(0x8015FDE4, "decode_enemy__Fii", SN_NOWARN) set_name(0x8015FEFC, "IsGoat__Fi", SN_NOWARN) set_name(0x8015FF28, "InitMissiles__Fv", SN_NOWARN) set_name(0x80160100, "InitNoTriggers__Fv", SN_NOWARN) set_name(0x80160124, "InitTownTriggers__Fv", SN_NOWARN) set_name(0x80160484, "InitL1Triggers__Fv", SN_NOWARN) set_name(0x80160598, "InitL2Triggers__Fv", SN_NOWARN) set_name(0x80160728, "InitL3Triggers__Fv", SN_NOWARN) set_name(0x80160884, "InitL4Triggers__Fv", SN_NOWARN) set_name(0x80160A98, "InitSKingTriggers__Fv", SN_NOWARN) set_name(0x80160AE4, "InitSChambTriggers__Fv", SN_NOWARN) set_name(0x80160B30, "InitPWaterTriggers__Fv", SN_NOWARN) set_name(0x80160B7C, "InitVPTriggers__Fv", SN_NOWARN) set_name(0x80160BC8, "InitStores__Fv", SN_NOWARN) set_name(0x80160C48, "SetupTownStores__Fv", SN_NOWARN) set_name(0x80160DF8, "DeltaLoadLevel__Fv", SN_NOWARN) set_name(0x801616D0, "SmithItemOk__Fi", SN_NOWARN) set_name(0x80161734, "RndSmithItem__Fi", SN_NOWARN) set_name(0x80161840, "WitchItemOk__Fi", SN_NOWARN) set_name(0x80161980, "RndWitchItem__Fi", SN_NOWARN) set_name(0x80161A80, "BubbleSwapItem__FP10ItemStructT0", SN_NOWARN) set_name(0x80161B70, "SortWitch__Fv", SN_NOWARN) set_name(0x80161C90, "RndBoyItem__Fi", SN_NOWARN) set_name(0x80161DB4, "HealerItemOk__Fi", SN_NOWARN) set_name(0x80161F68, "RndHealerItem__Fi", SN_NOWARN) set_name(0x80162068, "RecreatePremiumItem__Fiiii", SN_NOWARN) set_name(0x80162130, "RecreateWitchItem__Fiiii", SN_NOWARN) set_name(0x80162288, "RecreateSmithItem__Fiiii", SN_NOWARN) set_name(0x80162324, "RecreateHealerItem__Fiiii", SN_NOWARN) set_name(0x801623E4, "RecreateBoyItem__Fiiii", SN_NOWARN) set_name(0x801624A8, "RecreateTownItem__FiiUsii", SN_NOWARN) set_name(0x80162534, "SpawnSmith__Fi", SN_NOWARN) set_name(0x801626D4, "SpawnWitch__Fi", SN_NOWARN) set_name(0x80162A50, "SpawnHealer__Fi", SN_NOWARN) set_name(0x80162D7C, "SpawnBoy__Fi", SN_NOWARN) set_name(0x80162ED4, "SortSmith__Fv", SN_NOWARN) set_name(0x80162FE8, "SortHealer__Fv", SN_NOWARN) set_name(0x80163108, "RecreateItem__FiiUsii", SN_NOWARN) set_name(0x80137A30, "themeLoc", SN_NOWARN) set_name(0x80138178, "OldBlock", SN_NOWARN) set_name(0x80138188, "L5dungeon", SN_NOWARN) set_name(0x80137E18, "SPATS", SN_NOWARN) set_name(0x80137F1C, "BSTYPES", SN_NOWARN) set_name(0x80137FEC, "L5BTYPES", SN_NOWARN) set_name(0x801380BC, "STAIRSUP", SN_NOWARN) set_name(0x801380E0, "L5STAIRSUP", SN_NOWARN) set_name(0x80138104, "STAIRSDOWN", SN_NOWARN) set_name(0x80138120, "LAMPS", SN_NOWARN) set_name(0x8013812C, "PWATERIN", SN_NOWARN) set_name(0x80137A20, "L5ConvTbl", SN_NOWARN) set_name(0x801403C8, "RoomList", SN_NOWARN) set_name(0x80140A1C, "predungeon", SN_NOWARN) set_name(0x8013EB40, "Dir_Xadd", SN_NOWARN) set_name(0x8013EB54, "Dir_Yadd", SN_NOWARN) set_name(0x8013EB68, "SPATSL2", SN_NOWARN) set_name(0x8013EB78, "BTYPESL2", SN_NOWARN) set_name(0x8013EC1C, "BSTYPESL2", SN_NOWARN) set_name(0x8013ECC0, "VARCH1", SN_NOWARN) set_name(0x8013ECD4, "VARCH2", SN_NOWARN) set_name(0x8013ECE8, "VARCH3", SN_NOWARN) set_name(0x8013ECFC, "VARCH4", SN_NOWARN) set_name(0x8013ED10, "VARCH5", SN_NOWARN) set_name(0x8013ED24, "VARCH6", SN_NOWARN) set_name(0x8013ED38, "VARCH7", SN_NOWARN) set_name(0x8013ED4C, "VARCH8", SN_NOWARN) set_name(0x8013ED60, "VARCH9", SN_NOWARN) set_name(0x8013ED74, "VARCH10", SN_NOWARN) set_name(0x8013ED88, "VARCH11", SN_NOWARN) set_name(0x8013ED9C, "VARCH12", SN_NOWARN) set_name(0x8013EDB0, "VARCH13", SN_NOWARN) set_name(0x8013EDC4, "VARCH14", SN_NOWARN) set_name(0x8013EDD8, "VARCH15", SN_NOWARN) set_name(0x8013EDEC, "VARCH16", SN_NOWARN) set_name(0x8013EE00, "VARCH17", SN_NOWARN) set_name(0x8013EE10, "VARCH18", SN_NOWARN) set_name(0x8013EE20, "VARCH19", SN_NOWARN) set_name(0x8013EE30, "VARCH20", SN_NOWARN) set_name(0x8013EE40, "VARCH21", SN_NOWARN) set_name(0x8013EE50, "VARCH22", SN_NOWARN) set_name(0x8013EE60, "VARCH23", SN_NOWARN) set_name(0x8013EE70, "VARCH24", SN_NOWARN) set_name(0x8013EE80, "VARCH25", SN_NOWARN) set_name(0x8013EE94, "VARCH26", SN_NOWARN) set_name(0x8013EEA8, "VARCH27", SN_NOWARN) set_name(0x8013EEBC, "VARCH28", SN_NOWARN) set_name(0x8013EED0, "VARCH29", SN_NOWARN) set_name(0x8013EEE4, "VARCH30", SN_NOWARN) set_name(0x8013EEF8, "VARCH31", SN_NOWARN) set_name(0x8013EF0C, "VARCH32", SN_NOWARN) set_name(0x8013EF20, "VARCH33", SN_NOWARN) set_name(0x8013EF34, "VARCH34", SN_NOWARN) set_name(0x8013EF48, "VARCH35", SN_NOWARN) set_name(0x8013EF5C, "VARCH36", SN_NOWARN) set_name(0x8013EF70, "VARCH37", SN_NOWARN) set_name(0x8013EF84, "VARCH38", SN_NOWARN) set_name(0x8013EF98, "VARCH39", SN_NOWARN) set_name(0x8013EFAC, "VARCH40", SN_NOWARN) set_name(0x8013EFC0, "HARCH1", SN_NOWARN) set_name(0x8013EFD0, "HARCH2", SN_NOWARN) set_name(0x8013EFE0, "HARCH3", SN_NOWARN) set_name(0x8013EFF0, "HARCH4", SN_NOWARN) set_name(0x8013F000, "HARCH5", SN_NOWARN) set_name(0x8013F010, "HARCH6", SN_NOWARN) set_name(0x8013F020, "HARCH7", SN_NOWARN) set_name(0x8013F030, "HARCH8", SN_NOWARN) set_name(0x8013F040, "HARCH9", SN_NOWARN) set_name(0x8013F050, "HARCH10", SN_NOWARN) set_name(0x8013F060, "HARCH11", SN_NOWARN) set_name(0x8013F070, "HARCH12", SN_NOWARN) set_name(0x8013F080, "HARCH13", SN_NOWARN) set_name(0x8013F090, "HARCH14", SN_NOWARN) set_name(0x8013F0A0, "HARCH15", SN_NOWARN) set_name(0x8013F0B0, "HARCH16", SN_NOWARN) set_name(0x8013F0C0, "HARCH17", SN_NOWARN) set_name(0x8013F0D0, "HARCH18", SN_NOWARN) set_name(0x8013F0E0, "HARCH19", SN_NOWARN) set_name(0x8013F0F0, "HARCH20", SN_NOWARN) set_name(0x8013F100, "HARCH21", SN_NOWARN) set_name(0x8013F110, "HARCH22", SN_NOWARN) set_name(0x8013F120, "HARCH23", SN_NOWARN) set_name(0x8013F130, "HARCH24", SN_NOWARN) set_name(0x8013F140, "HARCH25", SN_NOWARN) set_name(0x8013F150, "HARCH26", SN_NOWARN) set_name(0x8013F160, "HARCH27", SN_NOWARN) set_name(0x8013F170, "HARCH28", SN_NOWARN) set_name(0x8013F180, "HARCH29", SN_NOWARN) set_name(0x8013F190, "HARCH30", SN_NOWARN) set_name(0x8013F1A0, "HARCH31", SN_NOWARN) set_name(0x8013F1B0, "HARCH32", SN_NOWARN) set_name(0x8013F1C0, "HARCH33", SN_NOWARN) set_name(0x8013F1D0, "HARCH34", SN_NOWARN) set_name(0x8013F1E0, "HARCH35", SN_NOWARN) set_name(0x8013F1F0, "HARCH36", SN_NOWARN) set_name(0x8013F200, "HARCH37", SN_NOWARN) set_name(0x8013F210, "HARCH38", SN_NOWARN) set_name(0x8013F220, "HARCH39", SN_NOWARN) set_name(0x8013F230, "HARCH40", SN_NOWARN) set_name(0x8013F240, "USTAIRS", SN_NOWARN) set_name(0x8013F264, "DSTAIRS", SN_NOWARN) set_name(0x8013F288, "WARPSTAIRS", SN_NOWARN) set_name(0x8013F2AC, "CRUSHCOL", SN_NOWARN) set_name(0x8013F2C0, "BIG1", SN_NOWARN) set_name(0x8013F2CC, "BIG2", SN_NOWARN) set_name(0x8013F2D8, "BIG5", SN_NOWARN) set_name(0x8013F2E4, "BIG8", SN_NOWARN) set_name(0x8013F2F0, "BIG9", SN_NOWARN) set_name(0x8013F2FC, "BIG10", SN_NOWARN) set_name(0x8013F308, "PANCREAS1", SN_NOWARN) set_name(0x8013F328, "PANCREAS2", SN_NOWARN) set_name(0x8013F348, "CTRDOOR1", SN_NOWARN) set_name(0x8013F35C, "CTRDOOR2", SN_NOWARN) set_name(0x8013F370, "CTRDOOR3", SN_NOWARN) set_name(0x8013F384, "CTRDOOR4", SN_NOWARN) set_name(0x8013F398, "CTRDOOR5", SN_NOWARN) set_name(0x8013F3AC, "CTRDOOR6", SN_NOWARN) set_name(0x8013F3C0, "CTRDOOR7", SN_NOWARN) set_name(0x8013F3D4, "CTRDOOR8", SN_NOWARN) set_name(0x8013F3E8, "Patterns", SN_NOWARN) set_name(0x80146420, "lockout", SN_NOWARN) set_name(0x80146180, "L3ConvTbl", SN_NOWARN) set_name(0x80146190, "L3UP", SN_NOWARN) set_name(0x801461A4, "L3DOWN", SN_NOWARN) set_name(0x801461B8, "L3HOLDWARP", SN_NOWARN) set_name(0x801461CC, "L3TITE1", SN_NOWARN) set_name(0x801461F0, "L3TITE2", SN_NOWARN) set_name(0x80146214, "L3TITE3", SN_NOWARN) set_name(0x80146238, "L3TITE6", SN_NOWARN) set_name(0x80146264, "L3TITE7", SN_NOWARN) set_name(0x80146290, "L3TITE8", SN_NOWARN) set_name(0x801462A4, "L3TITE9", SN_NOWARN) set_name(0x801462B8, "L3TITE10", SN_NOWARN) set_name(0x801462CC, "L3TITE11", SN_NOWARN) set_name(0x801462E0, "L3ISLE1", SN_NOWARN) set_name(0x801462F0, "L3ISLE2", SN_NOWARN) set_name(0x80146300, "L3ISLE3", SN_NOWARN) set_name(0x80146310, "L3ISLE4", SN_NOWARN) set_name(0x80146320, "L3ISLE5", SN_NOWARN) set_name(0x8014632C, "L3ANVIL", SN_NOWARN) set_name(0x8014B23C, "dung", SN_NOWARN) set_name(0x8014B3CC, "hallok", SN_NOWARN) set_name(0x8014B3E0, "L4dungeon", SN_NOWARN) set_name(0x8014CCE0, "L4ConvTbl", SN_NOWARN) set_name(0x8014CCF0, "L4USTAIRS", SN_NOWARN) set_name(0x8014CD1C, "L4TWARP", SN_NOWARN) set_name(0x8014CD48, "L4DSTAIRS", SN_NOWARN) set_name(0x8014CD7C, "L4PENTA", SN_NOWARN) set_name(0x8014CDB0, "L4PENTA2", SN_NOWARN) set_name(0x8014CDE4, "L4BTYPES", SN_NOWARN)
set_name(2148760004, 'PreGameOnlyTestRoutine__Fv', SN_NOWARN) set_name(2148768392, 'DRLG_PlaceDoor__Fii', SN_NOWARN) set_name(2148769628, 'DRLG_L1Shadows__Fv', SN_NOWARN) set_name(2148770676, 'DRLG_PlaceMiniSet__FPCUciiiiiii', SN_NOWARN) set_name(2148771808, 'DRLG_L1Floor__Fv', SN_NOWARN) set_name(2148772044, 'StoreBlock__FPiii', SN_NOWARN) set_name(2148772216, 'DRLG_L1Pass3__Fv', SN_NOWARN) set_name(2148772652, 'DRLG_LoadL1SP__Fv', SN_NOWARN) set_name(2148772872, 'DRLG_FreeL1SP__Fv', SN_NOWARN) set_name(2148772920, 'DRLG_Init_Globals__Fv', SN_NOWARN) set_name(2148773084, 'set_restore_lighting__Fv', SN_NOWARN) set_name(2148773228, 'DRLG_InitL1Vals__Fv', SN_NOWARN) set_name(2148773236, 'LoadL1Dungeon__FPcii', SN_NOWARN) set_name(2148773696, 'LoadPreL1Dungeon__FPcii', SN_NOWARN) set_name(2148774136, 'InitL5Dungeon__Fv', SN_NOWARN) set_name(2148774232, 'L5ClearFlags__Fv', SN_NOWARN) set_name(2148774308, 'L5drawRoom__Fiiii', SN_NOWARN) set_name(2148774416, 'L5checkRoom__Fiiii', SN_NOWARN) set_name(2148774564, 'L5roomGen__Fiiiii', SN_NOWARN) set_name(2148775328, 'L5firstRoom__Fv', SN_NOWARN) set_name(2148776284, 'L5GetArea__Fv', SN_NOWARN) set_name(2148776380, 'L5makeDungeon__Fv', SN_NOWARN) set_name(2148776520, 'L5makeDmt__Fv', SN_NOWARN) set_name(2148776752, 'L5HWallOk__Fii', SN_NOWARN) set_name(2148777068, 'L5VWallOk__Fii', SN_NOWARN) set_name(2148777400, 'L5HorizWall__Fiici', SN_NOWARN) set_name(2148777976, 'L5VertWall__Fiici', SN_NOWARN) set_name(2148778540, 'L5AddWall__Fv', SN_NOWARN) set_name(2148779164, 'DRLG_L5GChamber__Fiiiiii', SN_NOWARN) set_name(2148779868, 'DRLG_L5GHall__Fiiii', SN_NOWARN) set_name(2148780048, 'L5tileFix__Fv', SN_NOWARN) set_name(2148782292, 'DRLG_L5Subs__Fv', SN_NOWARN) set_name(2148782796, 'DRLG_L5SetRoom__Fii', SN_NOWARN) set_name(2148783052, 'L5FillChambers__Fv', SN_NOWARN) set_name(2148784824, 'DRLG_L5FTVR__Fiiiii', SN_NOWARN) set_name(2148786176, 'DRLG_L5FloodTVal__Fv', SN_NOWARN) set_name(2148786436, 'DRLG_L5TransFix__Fv', SN_NOWARN) set_name(2148786964, 'DRLG_L5DirtFix__Fv', SN_NOWARN) set_name(2148787312, 'DRLG_L5CornerFix__Fv', SN_NOWARN) set_name(2148787584, 'DRLG_L5__Fi', SN_NOWARN) set_name(2148788896, 'CreateL5Dungeon__FUii', SN_NOWARN) set_name(2148798556, 'DRLG_L2PlaceMiniSet__FPUciiiiii', SN_NOWARN) set_name(2148799568, 'DRLG_L2PlaceRndSet__FPUci', SN_NOWARN) set_name(2148800336, 'DRLG_L2Subs__Fv', SN_NOWARN) set_name(2148800836, 'DRLG_L2Shadows__Fv', SN_NOWARN) set_name(2148801288, 'InitDungeon__Fv', SN_NOWARN) set_name(2148801384, 'DRLG_LoadL2SP__Fv', SN_NOWARN) set_name(2148801560, 'DRLG_FreeL2SP__Fv', SN_NOWARN) set_name(2148801608, 'DRLG_L2SetRoom__Fii', SN_NOWARN) set_name(2148801864, 'DefineRoom__Fiiiii', SN_NOWARN) set_name(2148802388, 'CreateDoorType__Fii', SN_NOWARN) set_name(2148802616, 'PlaceHallExt__Fii', SN_NOWARN) set_name(2148802672, 'AddHall__Fiiiii', SN_NOWARN) set_name(2148802888, 'CreateRoom__Fiiiiiiiii', SN_NOWARN) set_name(2148804560, 'GetHall__FPiN40', SN_NOWARN) set_name(2148804712, 'ConnectHall__Fiiiii', SN_NOWARN) set_name(2148806352, 'DoPatternCheck__Fii', SN_NOWARN) set_name(2148807044, 'L2TileFix__Fv', SN_NOWARN) set_name(2148807336, 'DL2_Cont__FUcUcUcUc', SN_NOWARN) set_name(2148807464, 'DL2_NumNoChar__Fv', SN_NOWARN) set_name(2148807556, 'DL2_DrawRoom__Fiiii', SN_NOWARN) set_name(2148807816, 'DL2_KnockWalls__Fiiii', SN_NOWARN) set_name(2148808280, 'DL2_FillVoids__Fv', SN_NOWARN) set_name(2148810716, 'CreateDungeon__Fv', SN_NOWARN) set_name(2148811496, 'DRLG_L2Pass3__Fv', SN_NOWARN) set_name(2148811904, 'DRLG_L2FTVR__Fiiiii', SN_NOWARN) set_name(2148813256, 'DRLG_L2FloodTVal__Fv', SN_NOWARN) set_name(2148813516, 'DRLG_L2TransFix__Fv', SN_NOWARN) set_name(2148814044, 'L2DirtFix__Fv', SN_NOWARN) set_name(2148814396, 'L2LockoutFix__Fv', SN_NOWARN) set_name(2148815304, 'L2DoorFix__Fv', SN_NOWARN) set_name(2148815480, 'DRLG_L2__Fi', SN_NOWARN) set_name(2148818116, 'DRLG_InitL2Vals__Fv', SN_NOWARN) set_name(2148818124, 'LoadL2Dungeon__FPcii', SN_NOWARN) set_name(2148818620, 'LoadPreL2Dungeon__FPcii', SN_NOWARN) set_name(2148819112, 'CreateL2Dungeon__FUii', SN_NOWARN) set_name(2148821600, 'InitL3Dungeon__Fv', SN_NOWARN) set_name(2148821736, 'DRLG_L3FillRoom__Fiiii', SN_NOWARN) set_name(2148822340, 'DRLG_L3CreateBlock__Fiiii', SN_NOWARN) set_name(2148823008, 'DRLG_L3FloorArea__Fiiii', SN_NOWARN) set_name(2148823112, 'DRLG_L3FillDiags__Fv', SN_NOWARN) set_name(2148823416, 'DRLG_L3FillSingles__Fv', SN_NOWARN) set_name(2148823620, 'DRLG_L3FillStraights__Fv', SN_NOWARN) set_name(2148824584, 'DRLG_L3Edges__Fv', SN_NOWARN) set_name(2148824648, 'DRLG_L3GetFloorArea__Fv', SN_NOWARN) set_name(2148824728, 'DRLG_L3MakeMegas__Fv', SN_NOWARN) set_name(2148825052, 'DRLG_L3River__Fv', SN_NOWARN) set_name(2148827676, 'DRLG_L3SpawnEdge__FiiPi', SN_NOWARN) set_name(2148828328, 'DRLG_L3Spawn__FiiPi', SN_NOWARN) set_name(2148828860, 'DRLG_L3Pool__Fv', SN_NOWARN) set_name(2148829456, 'DRLG_L3PoolFix__Fv', SN_NOWARN) set_name(2148829764, 'DRLG_L3PlaceMiniSet__FPCUciiiiii', SN_NOWARN) set_name(2148830660, 'DRLG_L3PlaceRndSet__FPCUci', SN_NOWARN) set_name(2148831500, 'WoodVertU__Fii', SN_NOWARN) set_name(2148831672, 'WoodVertD__Fii', SN_NOWARN) set_name(2148831828, 'WoodHorizL__Fii', SN_NOWARN) set_name(2148831976, 'WoodHorizR__Fii', SN_NOWARN) set_name(2148832108, 'AddFenceDoors__Fv', SN_NOWARN) set_name(2148832336, 'FenceDoorFix__Fv', SN_NOWARN) set_name(2148832836, 'DRLG_L3Wood__Fv', SN_NOWARN) set_name(2148834868, 'DRLG_L3Anvil__Fv', SN_NOWARN) set_name(2148835472, 'FixL3Warp__Fv', SN_NOWARN) set_name(2148835704, 'FixL3HallofHeroes__Fv', SN_NOWARN) set_name(2148836044, 'DRLG_L3LockRec__Fii', SN_NOWARN) set_name(2148836200, 'DRLG_L3Lockout__Fv', SN_NOWARN) set_name(2148836392, 'DRLG_L3__Fi', SN_NOWARN) set_name(2148838216, 'DRLG_L3Pass3__Fv', SN_NOWARN) set_name(2148838636, 'CreateL3Dungeon__FUii', SN_NOWARN) set_name(2148838912, 'LoadL3Dungeon__FPcii', SN_NOWARN) set_name(2148839460, 'LoadPreL3Dungeon__FPcii', SN_NOWARN) set_name(2148847216, 'DRLG_L4Shadows__Fv', SN_NOWARN) set_name(2148847412, 'InitL4Dungeon__Fv', SN_NOWARN) set_name(2148847568, 'DRLG_LoadL4SP__Fv', SN_NOWARN) set_name(2148847732, 'DRLG_FreeL4SP__Fv', SN_NOWARN) set_name(2148847772, 'DRLG_L4SetSPRoom__Fii', SN_NOWARN) set_name(2148848028, 'L4makeDmt__Fv', SN_NOWARN) set_name(2148848192, 'L4HWallOk__Fii', SN_NOWARN) set_name(2148848528, 'L4VWallOk__Fii', SN_NOWARN) set_name(2148848908, 'L4HorizWall__Fiii', SN_NOWARN) set_name(2148849372, 'L4VertWall__Fiii', SN_NOWARN) set_name(2148849828, 'L4AddWall__Fv', SN_NOWARN) set_name(2148851076, 'L4tileFix__Fv', SN_NOWARN) set_name(2148859756, 'DRLG_L4Subs__Fv', SN_NOWARN) set_name(2148860228, 'L4makeDungeon__Fv', SN_NOWARN) set_name(2148860796, 'uShape__Fv', SN_NOWARN) set_name(2148861472, 'GetArea__Fv', SN_NOWARN) set_name(2148861564, 'L4drawRoom__Fiiii', SN_NOWARN) set_name(2148861668, 'L4checkRoom__Fiiii', SN_NOWARN) set_name(2148861824, 'L4roomGen__Fiiiii', SN_NOWARN) set_name(2148862588, 'L4firstRoom__Fv', SN_NOWARN) set_name(2148863128, 'L4SaveQuads__Fv', SN_NOWARN) set_name(2148863288, 'DRLG_L4SetRoom__FPUcii', SN_NOWARN) set_name(2148863500, 'DRLG_LoadDiabQuads__FUc', SN_NOWARN) set_name(2148863888, 'DRLG_L4PlaceMiniSet__FPCUciiiiii', SN_NOWARN) set_name(2148864936, 'DRLG_L4FTVR__Fiiiii', SN_NOWARN) set_name(2148866288, 'DRLG_L4FloodTVal__Fv', SN_NOWARN) set_name(2148866548, 'IsDURWall__Fc', SN_NOWARN) set_name(2148866596, 'IsDLLWall__Fc', SN_NOWARN) set_name(2148866644, 'DRLG_L4TransFix__Fv', SN_NOWARN) set_name(2148867500, 'DRLG_L4Corners__Fv', SN_NOWARN) set_name(2148867648, 'L4FixRim__Fv', SN_NOWARN) set_name(2148867708, 'DRLG_L4GeneralFix__Fv', SN_NOWARN) set_name(2148867872, 'DRLG_L4__Fi', SN_NOWARN) set_name(2148870172, 'DRLG_L4Pass3__Fv', SN_NOWARN) set_name(2148870592, 'CreateL4Dungeon__FUii', SN_NOWARN) set_name(2148870816, 'ObjIndex__Fii', SN_NOWARN) set_name(2148870996, 'AddSKingObjs__Fv', SN_NOWARN) set_name(2148871300, 'AddSChamObjs__Fv', SN_NOWARN) set_name(2148871424, 'AddVileObjs__Fv', SN_NOWARN) set_name(2148871596, 'DRLG_SetMapTrans__FPc', SN_NOWARN) set_name(2148871792, 'LoadSetMap__Fv', SN_NOWARN) set_name(2148872600, 'CM_QuestToBitPattern__Fi', SN_NOWARN) set_name(2148872816, 'CM_ShowMonsterList__Fii', SN_NOWARN) set_name(2148872936, 'CM_ChooseMonsterList__FiUl', SN_NOWARN) set_name(2148873096, 'NoUiListChoose__FiUl', SN_NOWARN) set_name(2148873104, 'ChooseTask__FP4TASK', SN_NOWARN) set_name(2148874404, 'ShowTask__FP4TASK', SN_NOWARN) set_name(2148874964, 'GetListsAvailable__FiUlPUc', SN_NOWARN) set_name(2148875256, 'GetDown__C4CPad', SN_NOWARN) set_name(2148875296, 'AddL1Door__Fiiii', SN_NOWARN) set_name(2148875608, 'AddSCambBook__Fi', SN_NOWARN) set_name(2148875768, 'AddChest__Fii', SN_NOWARN) set_name(2148876248, 'AddL2Door__Fiiii', SN_NOWARN) set_name(2148876580, 'AddL3Door__Fiiii', SN_NOWARN) set_name(2148876728, 'AddSarc__Fi', SN_NOWARN) set_name(2148876948, 'AddFlameTrap__Fi', SN_NOWARN) set_name(2148877040, 'AddTrap__Fii', SN_NOWARN) set_name(2148877288, 'AddArmorStand__Fi', SN_NOWARN) set_name(2148877424, 'AddObjLight__Fii', SN_NOWARN) set_name(2148877592, 'AddBarrel__Fii', SN_NOWARN) set_name(2148877768, 'AddShrine__Fi', SN_NOWARN) set_name(2148878104, 'AddBookcase__Fi', SN_NOWARN) set_name(2148878192, 'AddBookstand__Fi', SN_NOWARN) set_name(2148878264, 'AddBloodFtn__Fi', SN_NOWARN) set_name(2148878336, 'AddPurifyingFountain__Fi', SN_NOWARN) set_name(2148878556, 'AddGoatShrine__Fi', SN_NOWARN) set_name(2148878628, 'AddCauldron__Fi', SN_NOWARN) set_name(2148878700, 'AddMurkyFountain__Fi', SN_NOWARN) set_name(2148878920, 'AddTearFountain__Fi', SN_NOWARN) set_name(2148878992, 'AddDecap__Fi', SN_NOWARN) set_name(2148879112, 'AddVilebook__Fi', SN_NOWARN) set_name(2148879192, 'AddMagicCircle__Fi', SN_NOWARN) set_name(2148879308, 'AddBrnCross__Fi', SN_NOWARN) set_name(2148879380, 'AddPedistal__Fi', SN_NOWARN) set_name(2148879496, 'AddStoryBook__Fi', SN_NOWARN) set_name(2148879956, 'AddWeaponRack__Fi', SN_NOWARN) set_name(2148880092, 'AddTorturedBody__Fi', SN_NOWARN) set_name(2148880216, 'AddFlameLvr__Fi', SN_NOWARN) set_name(2148880280, 'GetRndObjLoc__FiRiT1', SN_NOWARN) set_name(2148880548, 'AddMushPatch__Fv', SN_NOWARN) set_name(2148880840, 'AddSlainHero__Fv', SN_NOWARN) set_name(2148880904, 'RndLocOk__Fii', SN_NOWARN) set_name(2148881132, 'TrapLocOk__Fii', SN_NOWARN) set_name(2148881236, 'RoomLocOk__Fii', SN_NOWARN) set_name(2148881388, 'InitRndLocObj__Fiii', SN_NOWARN) set_name(2148881816, 'InitRndLocBigObj__Fiii', SN_NOWARN) set_name(2148882320, 'InitRndLocObj5x5__Fiii', SN_NOWARN) set_name(2148882616, 'SetMapObjects__FPUcii', SN_NOWARN) set_name(2148883288, 'ClrAllObjects__Fv', SN_NOWARN) set_name(2148883528, 'AddTortures__Fv', SN_NOWARN) set_name(2148883924, 'AddCandles__Fv', SN_NOWARN) set_name(2148884060, 'AddTrapLine__Fiiii', SN_NOWARN) set_name(2148884984, 'AddLeverObj__Fiiiiiiii', SN_NOWARN) set_name(2148884992, 'AddBookLever__Fiiiiiiiii', SN_NOWARN) set_name(2148885524, 'InitRndBarrels__Fv', SN_NOWARN) set_name(2148885936, 'AddL1Objs__Fiiii', SN_NOWARN) set_name(2148886248, 'AddL2Objs__Fiiii', SN_NOWARN) set_name(2148886524, 'AddL3Objs__Fiiii', SN_NOWARN) set_name(2148886780, 'WallTrapLocOk__Fii', SN_NOWARN) set_name(2148886884, 'TorchLocOK__Fii', SN_NOWARN) set_name(2148886948, 'AddL2Torches__Fv', SN_NOWARN) set_name(2148887384, 'AddObjTraps__Fv', SN_NOWARN) set_name(2148888272, 'AddChestTraps__Fv', SN_NOWARN) set_name(2148888608, 'LoadMapObjects__FPUciiiiiii', SN_NOWARN) set_name(2148888972, 'AddDiabObjs__Fv', SN_NOWARN) set_name(2148889312, 'AddStoryBooks__Fv', SN_NOWARN) set_name(2148889648, 'AddHookedBodies__Fi', SN_NOWARN) set_name(2148890152, 'AddL4Goodies__Fv', SN_NOWARN) set_name(2148890328, 'AddLazStand__Fv', SN_NOWARN) set_name(2148890732, 'InitObjects__Fv', SN_NOWARN) set_name(2148892368, 'PreObjObjAddSwitch__Fiiii', SN_NOWARN) set_name(2148893144, 'FillSolidBlockTbls__Fv', SN_NOWARN) set_name(2148893572, 'SetDungeonMicros__Fv', SN_NOWARN) set_name(2148893580, 'DRLG_InitTrans__Fv', SN_NOWARN) set_name(2148893696, 'DRLG_RectTrans__Fiiii', SN_NOWARN) set_name(2148893824, 'DRLG_CopyTrans__Fiiii', SN_NOWARN) set_name(2148893928, 'DRLG_ListTrans__FiPUc', SN_NOWARN) set_name(2148894044, 'DRLG_AreaTrans__FiPUc', SN_NOWARN) set_name(2148894188, 'DRLG_InitSetPC__Fv', SN_NOWARN) set_name(2148894212, 'DRLG_SetPC__Fv', SN_NOWARN) set_name(2148894388, 'Make_SetPC__Fiiii', SN_NOWARN) set_name(2148894548, 'DRLG_WillThemeRoomFit__FiiiiiPiT5', SN_NOWARN) set_name(2148895260, 'DRLG_CreateThemeRoom__Fi', SN_NOWARN) set_name(2148899364, 'DRLG_PlaceThemeRooms__FiiiiUc', SN_NOWARN) set_name(2148900044, 'DRLG_HoldThemeRooms__Fv', SN_NOWARN) set_name(2148900480, 'SkipThemeRoom__Fii', SN_NOWARN) set_name(2148900684, 'InitLevels__Fv', SN_NOWARN) set_name(2148900944, 'TFit_Shrine__Fi', SN_NOWARN) set_name(2148901568, 'TFit_Obj5__Fi', SN_NOWARN) set_name(2148902036, 'TFit_SkelRoom__Fi', SN_NOWARN) set_name(2148902212, 'TFit_GoatShrine__Fi', SN_NOWARN) set_name(2148902364, 'CheckThemeObj3__Fiiii', SN_NOWARN) set_name(2148902700, 'TFit_Obj3__Fi', SN_NOWARN) set_name(2148902892, 'CheckThemeReqs__Fi', SN_NOWARN) set_name(2148903096, 'SpecialThemeFit__Fii', SN_NOWARN) set_name(2148903572, 'CheckThemeRoom__Fi', SN_NOWARN) set_name(2148904256, 'InitThemes__Fv', SN_NOWARN) set_name(2148905100, 'HoldThemeRooms__Fv', SN_NOWARN) set_name(2148905332, 'PlaceThemeMonsts__Fii', SN_NOWARN) set_name(2148905752, 'Theme_Barrel__Fi', SN_NOWARN) set_name(2148906128, 'Theme_Shrine__Fi', SN_NOWARN) set_name(2148906360, 'Theme_MonstPit__Fi', SN_NOWARN) set_name(2148906652, 'Theme_SkelRoom__Fi', SN_NOWARN) set_name(2148907424, 'Theme_Treasure__Fi', SN_NOWARN) set_name(2148908036, 'Theme_Library__Fi', SN_NOWARN) set_name(2148908660, 'Theme_Torture__Fi', SN_NOWARN) set_name(2148909028, 'Theme_BloodFountain__Fi', SN_NOWARN) set_name(2148909144, 'Theme_Decap__Fi', SN_NOWARN) set_name(2148909512, 'Theme_PurifyingFountain__Fi', SN_NOWARN) set_name(2148909628, 'Theme_ArmorStand__Fi', SN_NOWARN) set_name(2148910036, 'Theme_GoatShrine__Fi', SN_NOWARN) set_name(2148910372, 'Theme_Cauldron__Fi', SN_NOWARN) set_name(2148910488, 'Theme_MurkyFountain__Fi', SN_NOWARN) set_name(2148910604, 'Theme_TearFountain__Fi', SN_NOWARN) set_name(2148910720, 'Theme_BrnCross__Fi', SN_NOWARN) set_name(2148911096, 'Theme_WeaponRack__Fi', SN_NOWARN) set_name(2148911504, 'UpdateL4Trans__Fv', SN_NOWARN) set_name(2148911600, 'CreateThemeRooms__Fv', SN_NOWARN) set_name(2148912084, 'InitPortals__Fv', SN_NOWARN) set_name(2148912180, 'InitQuests__Fv', SN_NOWARN) set_name(2148913208, 'DrawButcher__Fv', SN_NOWARN) set_name(2148913276, 'DrawSkelKing__Fiii', SN_NOWARN) set_name(2148913336, 'DrawWarLord__Fii', SN_NOWARN) set_name(2148913588, 'DrawSChamber__Fiii', SN_NOWARN) set_name(2148913904, 'DrawLTBanner__Fii', SN_NOWARN) set_name(2148914124, 'DrawBlind__Fii', SN_NOWARN) set_name(2148914344, 'DrawBlood__Fii', SN_NOWARN) set_name(2148914568, 'DRLG_CheckQuests__Fii', SN_NOWARN) set_name(2148914884, 'InitInv__Fv', SN_NOWARN) set_name(2148914968, 'InitAutomap__Fv', SN_NOWARN) set_name(2148915420, 'InitAutomapOnce__Fv', SN_NOWARN) set_name(2148915436, 'MonstPlace__Fii', SN_NOWARN) set_name(2148915624, 'InitMonsterGFX__Fi', SN_NOWARN) set_name(2148915840, 'PlaceMonster__Fiiii', SN_NOWARN) set_name(2148916000, 'AddMonsterType__Fii', SN_NOWARN) set_name(2148916252, 'GetMonsterTypes__FUl', SN_NOWARN) set_name(2148916428, 'ClrAllMonsters__Fv', SN_NOWARN) set_name(2148916748, 'InitLevelMonsters__Fv', SN_NOWARN) set_name(2148916880, 'GetLevelMTypes__Fv', SN_NOWARN) set_name(2148918008, 'PlaceQuestMonsters__Fv', SN_NOWARN) set_name(2148918972, 'LoadDiabMonsts__Fv', SN_NOWARN) set_name(2148919244, 'PlaceGroup__FiiUci', SN_NOWARN) set_name(2148920700, 'SetMapMonsters__FPUcii', SN_NOWARN) set_name(2148921248, 'InitMonsters__Fv', SN_NOWARN) set_name(2148922192, 'PlaceUniqueMonst__Fiii', SN_NOWARN) set_name(2148924092, 'PlaceUniques__Fv', SN_NOWARN) set_name(2148924492, 'PreSpawnSkeleton__Fv', SN_NOWARN) set_name(2148924812, 'encode_enemy__Fi', SN_NOWARN) set_name(2148924900, 'decode_enemy__Fii', SN_NOWARN) set_name(2148925180, 'IsGoat__Fi', SN_NOWARN) set_name(2148925224, 'InitMissiles__Fv', SN_NOWARN) set_name(2148925696, 'InitNoTriggers__Fv', SN_NOWARN) set_name(2148925732, 'InitTownTriggers__Fv', SN_NOWARN) set_name(2148926596, 'InitL1Triggers__Fv', SN_NOWARN) set_name(2148926872, 'InitL2Triggers__Fv', SN_NOWARN) set_name(2148927272, 'InitL3Triggers__Fv', SN_NOWARN) set_name(2148927620, 'InitL4Triggers__Fv', SN_NOWARN) set_name(2148928152, 'InitSKingTriggers__Fv', SN_NOWARN) set_name(2148928228, 'InitSChambTriggers__Fv', SN_NOWARN) set_name(2148928304, 'InitPWaterTriggers__Fv', SN_NOWARN) set_name(2148928380, 'InitVPTriggers__Fv', SN_NOWARN) set_name(2148928456, 'InitStores__Fv', SN_NOWARN) set_name(2148928584, 'SetupTownStores__Fv', SN_NOWARN) set_name(2148929016, 'DeltaLoadLevel__Fv', SN_NOWARN) set_name(2148931280, 'SmithItemOk__Fi', SN_NOWARN) set_name(2148931380, 'RndSmithItem__Fi', SN_NOWARN) set_name(2148931648, 'WitchItemOk__Fi', SN_NOWARN) set_name(2148931968, 'RndWitchItem__Fi', SN_NOWARN) set_name(2148932224, 'BubbleSwapItem__FP10ItemStructT0', SN_NOWARN) set_name(2148932464, 'SortWitch__Fv', SN_NOWARN) set_name(2148932752, 'RndBoyItem__Fi', SN_NOWARN) set_name(2148933044, 'HealerItemOk__Fi', SN_NOWARN) set_name(2148933480, 'RndHealerItem__Fi', SN_NOWARN) set_name(2148933736, 'RecreatePremiumItem__Fiiii', SN_NOWARN) set_name(2148933936, 'RecreateWitchItem__Fiiii', SN_NOWARN) set_name(2148934280, 'RecreateSmithItem__Fiiii', SN_NOWARN) set_name(2148934436, 'RecreateHealerItem__Fiiii', SN_NOWARN) set_name(2148934628, 'RecreateBoyItem__Fiiii', SN_NOWARN) set_name(2148934824, 'RecreateTownItem__FiiUsii', SN_NOWARN) set_name(2148934964, 'SpawnSmith__Fi', SN_NOWARN) set_name(2148935380, 'SpawnWitch__Fi', SN_NOWARN) set_name(2148936272, 'SpawnHealer__Fi', SN_NOWARN) set_name(2148937084, 'SpawnBoy__Fi', SN_NOWARN) set_name(2148937428, 'SortSmith__Fv', SN_NOWARN) set_name(2148937704, 'SortHealer__Fv', SN_NOWARN) set_name(2148937992, 'RecreateItem__FiiUsii', SN_NOWARN) set_name(2148760112, 'themeLoc', SN_NOWARN) set_name(2148761976, 'OldBlock', SN_NOWARN) set_name(2148761992, 'L5dungeon', SN_NOWARN) set_name(2148761112, 'SPATS', SN_NOWARN) set_name(2148761372, 'BSTYPES', SN_NOWARN) set_name(2148761580, 'L5BTYPES', SN_NOWARN) set_name(2148761788, 'STAIRSUP', SN_NOWARN) set_name(2148761824, 'L5STAIRSUP', SN_NOWARN) set_name(2148761860, 'STAIRSDOWN', SN_NOWARN) set_name(2148761888, 'LAMPS', SN_NOWARN) set_name(2148761900, 'PWATERIN', SN_NOWARN) set_name(2148760096, 'L5ConvTbl', SN_NOWARN) set_name(2148795336, 'RoomList', SN_NOWARN) set_name(2148796956, 'predungeon', SN_NOWARN) set_name(2148789056, 'Dir_Xadd', SN_NOWARN) set_name(2148789076, 'Dir_Yadd', SN_NOWARN) set_name(2148789096, 'SPATSL2', SN_NOWARN) set_name(2148789112, 'BTYPESL2', SN_NOWARN) set_name(2148789276, 'BSTYPESL2', SN_NOWARN) set_name(2148789440, 'VARCH1', SN_NOWARN) set_name(2148789460, 'VARCH2', SN_NOWARN) set_name(2148789480, 'VARCH3', SN_NOWARN) set_name(2148789500, 'VARCH4', SN_NOWARN) set_name(2148789520, 'VARCH5', SN_NOWARN) set_name(2148789540, 'VARCH6', SN_NOWARN) set_name(2148789560, 'VARCH7', SN_NOWARN) set_name(2148789580, 'VARCH8', SN_NOWARN) set_name(2148789600, 'VARCH9', SN_NOWARN) set_name(2148789620, 'VARCH10', SN_NOWARN) set_name(2148789640, 'VARCH11', SN_NOWARN) set_name(2148789660, 'VARCH12', SN_NOWARN) set_name(2148789680, 'VARCH13', SN_NOWARN) set_name(2148789700, 'VARCH14', SN_NOWARN) set_name(2148789720, 'VARCH15', SN_NOWARN) set_name(2148789740, 'VARCH16', SN_NOWARN) set_name(2148789760, 'VARCH17', SN_NOWARN) set_name(2148789776, 'VARCH18', SN_NOWARN) set_name(2148789792, 'VARCH19', SN_NOWARN) set_name(2148789808, 'VARCH20', SN_NOWARN) set_name(2148789824, 'VARCH21', SN_NOWARN) set_name(2148789840, 'VARCH22', SN_NOWARN) set_name(2148789856, 'VARCH23', SN_NOWARN) set_name(2148789872, 'VARCH24', SN_NOWARN) set_name(2148789888, 'VARCH25', SN_NOWARN) set_name(2148789908, 'VARCH26', SN_NOWARN) set_name(2148789928, 'VARCH27', SN_NOWARN) set_name(2148789948, 'VARCH28', SN_NOWARN) set_name(2148789968, 'VARCH29', SN_NOWARN) set_name(2148789988, 'VARCH30', SN_NOWARN) set_name(2148790008, 'VARCH31', SN_NOWARN) set_name(2148790028, 'VARCH32', SN_NOWARN) set_name(2148790048, 'VARCH33', SN_NOWARN) set_name(2148790068, 'VARCH34', SN_NOWARN) set_name(2148790088, 'VARCH35', SN_NOWARN) set_name(2148790108, 'VARCH36', SN_NOWARN) set_name(2148790128, 'VARCH37', SN_NOWARN) set_name(2148790148, 'VARCH38', SN_NOWARN) set_name(2148790168, 'VARCH39', SN_NOWARN) set_name(2148790188, 'VARCH40', SN_NOWARN) set_name(2148790208, 'HARCH1', SN_NOWARN) set_name(2148790224, 'HARCH2', SN_NOWARN) set_name(2148790240, 'HARCH3', SN_NOWARN) set_name(2148790256, 'HARCH4', SN_NOWARN) set_name(2148790272, 'HARCH5', SN_NOWARN) set_name(2148790288, 'HARCH6', SN_NOWARN) set_name(2148790304, 'HARCH7', SN_NOWARN) set_name(2148790320, 'HARCH8', SN_NOWARN) set_name(2148790336, 'HARCH9', SN_NOWARN) set_name(2148790352, 'HARCH10', SN_NOWARN) set_name(2148790368, 'HARCH11', SN_NOWARN) set_name(2148790384, 'HARCH12', SN_NOWARN) set_name(2148790400, 'HARCH13', SN_NOWARN) set_name(2148790416, 'HARCH14', SN_NOWARN) set_name(2148790432, 'HARCH15', SN_NOWARN) set_name(2148790448, 'HARCH16', SN_NOWARN) set_name(2148790464, 'HARCH17', SN_NOWARN) set_name(2148790480, 'HARCH18', SN_NOWARN) set_name(2148790496, 'HARCH19', SN_NOWARN) set_name(2148790512, 'HARCH20', SN_NOWARN) set_name(2148790528, 'HARCH21', SN_NOWARN) set_name(2148790544, 'HARCH22', SN_NOWARN) set_name(2148790560, 'HARCH23', SN_NOWARN) set_name(2148790576, 'HARCH24', SN_NOWARN) set_name(2148790592, 'HARCH25', SN_NOWARN) set_name(2148790608, 'HARCH26', SN_NOWARN) set_name(2148790624, 'HARCH27', SN_NOWARN) set_name(2148790640, 'HARCH28', SN_NOWARN) set_name(2148790656, 'HARCH29', SN_NOWARN) set_name(2148790672, 'HARCH30', SN_NOWARN) set_name(2148790688, 'HARCH31', SN_NOWARN) set_name(2148790704, 'HARCH32', SN_NOWARN) set_name(2148790720, 'HARCH33', SN_NOWARN) set_name(2148790736, 'HARCH34', SN_NOWARN) set_name(2148790752, 'HARCH35', SN_NOWARN) set_name(2148790768, 'HARCH36', SN_NOWARN) set_name(2148790784, 'HARCH37', SN_NOWARN) set_name(2148790800, 'HARCH38', SN_NOWARN) set_name(2148790816, 'HARCH39', SN_NOWARN) set_name(2148790832, 'HARCH40', SN_NOWARN) set_name(2148790848, 'USTAIRS', SN_NOWARN) set_name(2148790884, 'DSTAIRS', SN_NOWARN) set_name(2148790920, 'WARPSTAIRS', SN_NOWARN) set_name(2148790956, 'CRUSHCOL', SN_NOWARN) set_name(2148790976, 'BIG1', SN_NOWARN) set_name(2148790988, 'BIG2', SN_NOWARN) set_name(2148791000, 'BIG5', SN_NOWARN) set_name(2148791012, 'BIG8', SN_NOWARN) set_name(2148791024, 'BIG9', SN_NOWARN) set_name(2148791036, 'BIG10', SN_NOWARN) set_name(2148791048, 'PANCREAS1', SN_NOWARN) set_name(2148791080, 'PANCREAS2', SN_NOWARN) set_name(2148791112, 'CTRDOOR1', SN_NOWARN) set_name(2148791132, 'CTRDOOR2', SN_NOWARN) set_name(2148791152, 'CTRDOOR3', SN_NOWARN) set_name(2148791172, 'CTRDOOR4', SN_NOWARN) set_name(2148791192, 'CTRDOOR5', SN_NOWARN) set_name(2148791212, 'CTRDOOR6', SN_NOWARN) set_name(2148791232, 'CTRDOOR7', SN_NOWARN) set_name(2148791252, 'CTRDOOR8', SN_NOWARN) set_name(2148791272, 'Patterns', SN_NOWARN) set_name(2148820000, 'lockout', SN_NOWARN) set_name(2148819328, 'L3ConvTbl', SN_NOWARN) set_name(2148819344, 'L3UP', SN_NOWARN) set_name(2148819364, 'L3DOWN', SN_NOWARN) set_name(2148819384, 'L3HOLDWARP', SN_NOWARN) set_name(2148819404, 'L3TITE1', SN_NOWARN) set_name(2148819440, 'L3TITE2', SN_NOWARN) set_name(2148819476, 'L3TITE3', SN_NOWARN) set_name(2148819512, 'L3TITE6', SN_NOWARN) set_name(2148819556, 'L3TITE7', SN_NOWARN) set_name(2148819600, 'L3TITE8', SN_NOWARN) set_name(2148819620, 'L3TITE9', SN_NOWARN) set_name(2148819640, 'L3TITE10', SN_NOWARN) set_name(2148819660, 'L3TITE11', SN_NOWARN) set_name(2148819680, 'L3ISLE1', SN_NOWARN) set_name(2148819696, 'L3ISLE2', SN_NOWARN) set_name(2148819712, 'L3ISLE3', SN_NOWARN) set_name(2148819728, 'L3ISLE4', SN_NOWARN) set_name(2148819744, 'L3ISLE5', SN_NOWARN) set_name(2148819756, 'L3ANVIL', SN_NOWARN) set_name(2148839996, 'dung', SN_NOWARN) set_name(2148840396, 'hallok', SN_NOWARN) set_name(2148840416, 'L4dungeon', SN_NOWARN) set_name(2148846816, 'L4ConvTbl', SN_NOWARN) set_name(2148846832, 'L4USTAIRS', SN_NOWARN) set_name(2148846876, 'L4TWARP', SN_NOWARN) set_name(2148846920, 'L4DSTAIRS', SN_NOWARN) set_name(2148846972, 'L4PENTA', SN_NOWARN) set_name(2148847024, 'L4PENTA2', SN_NOWARN) set_name(2148847076, 'L4BTYPES', SN_NOWARN)
class ValidationException(Exception): pass class RepromptException(Exception): pass
class Validationexception(Exception): pass class Repromptexception(Exception): pass
m,n=map(int,input().split()) mat=[] for i in range(m): k=list(map(int,input().split())) mat.append(k) mat count=mat[0][0] i=0 j=0 while(True): if (i==m-1 and j==n-1): break if (i<m-1 and j<n-1): if (mat[i+1][j]>mat[i][j+1]): count+=mat[i+1][j] i+=1 else: count+=mat[i][j+1] j+=1 elif (i==m-1 and j<=n-1): count+=mat[i][j+1] j+=1 elif (j==n-1 and i<=m-1): count+=mat[i+1][j] i+=1 print(abs(count)+1)
(m, n) = map(int, input().split()) mat = [] for i in range(m): k = list(map(int, input().split())) mat.append(k) mat count = mat[0][0] i = 0 j = 0 while True: if i == m - 1 and j == n - 1: break if i < m - 1 and j < n - 1: if mat[i + 1][j] > mat[i][j + 1]: count += mat[i + 1][j] i += 1 else: count += mat[i][j + 1] j += 1 elif i == m - 1 and j <= n - 1: count += mat[i][j + 1] j += 1 elif j == n - 1 and i <= m - 1: count += mat[i + 1][j] i += 1 print(abs(count) + 1)
def parse_function_path_string(string): """ takes in the function string and splits it into the module path and function path. :param string: :return: """ list_ = string.split('.') module_path = '.'.join(list_[:-1]) function_path = list_[-1] return module_path, function_path
def parse_function_path_string(string): """ takes in the function string and splits it into the module path and function path. :param string: :return: """ list_ = string.split('.') module_path = '.'.join(list_[:-1]) function_path = list_[-1] return (module_path, function_path)
# Solution to part 2 of day 9 of AOC 2021, Smoke Basin # https://adventofcode.com/2021/day/9 def search(search_x: int, search_y: int) -> int: """Starting at x, y... return the size of the basin found.""" if (search_x, search_y) not in floor: return 0 if floor[search_x, search_y] == 9: return 0 floor[search_x, search_y] = 9 size = 0 for dx, dy in [(-1, 0), (1, 0), (0, -1), (0, 1)]: size += search(search_x + dx, search_y + dy) return 1 + size f = open('input.txt') t = f.read() f.close() floor = {} x, y = 0, 0 for row in t.split('\n'): for height in row: floor[(x, y)] = int(height) x += 1 x = 0 y += 1 print(floor) basins = [search(x, y) for x, y in floor] result = 1 for best in sorted(basins, reverse=True)[:3]: # The top 3 largest basins. result *= best print(result)
def search(search_x: int, search_y: int) -> int: """Starting at x, y... return the size of the basin found.""" if (search_x, search_y) not in floor: return 0 if floor[search_x, search_y] == 9: return 0 floor[search_x, search_y] = 9 size = 0 for (dx, dy) in [(-1, 0), (1, 0), (0, -1), (0, 1)]: size += search(search_x + dx, search_y + dy) return 1 + size f = open('input.txt') t = f.read() f.close() floor = {} (x, y) = (0, 0) for row in t.split('\n'): for height in row: floor[x, y] = int(height) x += 1 x = 0 y += 1 print(floor) basins = [search(x, y) for (x, y) in floor] result = 1 for best in sorted(basins, reverse=True)[:3]: result *= best print(result)
""" The original version of the API. .. deprecated:: 0.7.4 Use ``api.v2`` instead. """
""" The original version of the API. .. deprecated:: 0.7.4 Use ``api.v2`` instead. """
input = """ f(1). a(X) :- 1=2+x, f(X). %+(1,2,x), f(X). """ output = """ f(1). a(X) :- 1=2+x, f(X). %+(1,2,x), f(X). """
input = '\nf(1).\na(X) :- 1=2+x, f(X). %+(1,2,x), f(X).\n' output = '\nf(1).\na(X) :- 1=2+x, f(X). %+(1,2,x), f(X).\n'
def generate_LAMMPS_potential(data): #potential_file = '# Potential file generated by aiida plugin (please check citation in the orignal file)\n' potential_file = '' for line in data['file_contents']: potential_file += '{}'.format(line) return potential_file def get_input_potential_lines(data, names=None, potential_filename='potential.pot'): lammps_input_text = 'pair_style eam/{}\n'.format(data['type']) lammps_input_text += 'pair_coeff * * {} {}\n'.format(potential_filename, ' '.join(names)) return lammps_input_text
def generate_lammps_potential(data): potential_file = '' for line in data['file_contents']: potential_file += '{}'.format(line) return potential_file def get_input_potential_lines(data, names=None, potential_filename='potential.pot'): lammps_input_text = 'pair_style eam/{}\n'.format(data['type']) lammps_input_text += 'pair_coeff * * {} {}\n'.format(potential_filename, ' '.join(names)) return lammps_input_text
# AUTOGENERATED BY NBDEV! DO NOT EDIT! __all__ = ["index", "modules", "custom_doc_links", "git_url"] index = {"div2k_path": "00_datasets.ipynb", "div2k_train_lr_path": "00_datasets.ipynb", "div2k_train_lr_x2": "00_datasets.ipynb", "div2k_train_lr_x3": "00_datasets.ipynb", "div2k_train_lr_x4": "00_datasets.ipynb", "div2k_train_hr": "00_datasets.ipynb", "div2k_test_lr_path": "00_datasets.ipynb", "div2k_test_lr_x2": "00_datasets.ipynb", "div2k_test_lr_x3": "00_datasets.ipynb", "div2k_test_lr_x4": "00_datasets.ipynb", "set5_path": "00_datasets.ipynb", "set5_lr_path": "00_datasets.ipynb", "set5_lr_x2": "00_datasets.ipynb", "set5_lr_x3": "00_datasets.ipynb", "set5_lr_x4": "00_datasets.ipynb", "set5_hr": "00_datasets.ipynb", "set14_path": "00_datasets.ipynb", "set14_lr_path": "00_datasets.ipynb", "set14_lr_x2": "00_datasets.ipynb", "set14_lr_x3": "00_datasets.ipynb", "set14_lr_x4": "00_datasets.ipynb", "set14_hr": "00_datasets.ipynb", "div2k_train_hr_crop": "00_datasets.ipynb", "div2k_train_hr_crop_256": "00_datasets.ipynb", "div2k_train_hr_crop_256s4": "00_datasets.ipynb", "crop_image": "00_datasets.ipynb", "crop_images": "00_datasets.ipynb", "resize_image": "01_databunch.ipynb", "lr_image": "01_databunch.ipynb", "crop_center_image": "01_databunch.ipynb", "split_luminance": "01_databunch.ipynb", "after_open_image": "01_databunch.ipynb", "get_sr_transforms": "01_databunch.ipynb", "create_sr_databunch": "01_databunch.ipynb", "extract_y": "01_databunch.ipynb", "denorm_img": "01_databunch.ipynb", "m_psnr": "01_databunch.ipynb", "m_ssim": "01_databunch.ipynb", "reconstruct_image": "01_databunch.ipynb", "sr_predict": "01_databunch.ipynb", "get_metrics": "01_databunch.ipynb", "fmt_metrics": "01_databunch.ipynb", "mean_metrics": "01_databunch.ipynb", "sr_test": "01_databunch.ipynb", "sr_test_upscale": "01_databunch.ipynb", "SRCNN": "2014_srcnn.ipynb", "SRCNN_BN": "2014_srcnn_bn.ipynb", "EPSCN": "2016_epscn.ipynb", "Pixcelshuffer": "2017_srresnet.ipynb", "SRResNet": "2017_srresnet.ipynb", "gram_matrix": "2019_unet_floss.ipynb", "FeatureLoss": "2019_unet_floss.ipynb", "base_loss": "2019_unet_floss.ipynb", "create_feature_loss": "2019_unet_floss.ipynb"} modules = ["datasets.py", "databunch.py", "srcnn.py", "srcnn_bn.py", "epscn.py", "srresnet.py", "sr_unet.py", "sr_unet_floss.py"] doc_url = "https://benymd.github.io/superres/" git_url = "https://github.com/benymd/superres/tree/master/" def custom_doc_links(name): return None
__all__ = ['index', 'modules', 'custom_doc_links', 'git_url'] index = {'div2k_path': '00_datasets.ipynb', 'div2k_train_lr_path': '00_datasets.ipynb', 'div2k_train_lr_x2': '00_datasets.ipynb', 'div2k_train_lr_x3': '00_datasets.ipynb', 'div2k_train_lr_x4': '00_datasets.ipynb', 'div2k_train_hr': '00_datasets.ipynb', 'div2k_test_lr_path': '00_datasets.ipynb', 'div2k_test_lr_x2': '00_datasets.ipynb', 'div2k_test_lr_x3': '00_datasets.ipynb', 'div2k_test_lr_x4': '00_datasets.ipynb', 'set5_path': '00_datasets.ipynb', 'set5_lr_path': '00_datasets.ipynb', 'set5_lr_x2': '00_datasets.ipynb', 'set5_lr_x3': '00_datasets.ipynb', 'set5_lr_x4': '00_datasets.ipynb', 'set5_hr': '00_datasets.ipynb', 'set14_path': '00_datasets.ipynb', 'set14_lr_path': '00_datasets.ipynb', 'set14_lr_x2': '00_datasets.ipynb', 'set14_lr_x3': '00_datasets.ipynb', 'set14_lr_x4': '00_datasets.ipynb', 'set14_hr': '00_datasets.ipynb', 'div2k_train_hr_crop': '00_datasets.ipynb', 'div2k_train_hr_crop_256': '00_datasets.ipynb', 'div2k_train_hr_crop_256s4': '00_datasets.ipynb', 'crop_image': '00_datasets.ipynb', 'crop_images': '00_datasets.ipynb', 'resize_image': '01_databunch.ipynb', 'lr_image': '01_databunch.ipynb', 'crop_center_image': '01_databunch.ipynb', 'split_luminance': '01_databunch.ipynb', 'after_open_image': '01_databunch.ipynb', 'get_sr_transforms': '01_databunch.ipynb', 'create_sr_databunch': '01_databunch.ipynb', 'extract_y': '01_databunch.ipynb', 'denorm_img': '01_databunch.ipynb', 'm_psnr': '01_databunch.ipynb', 'm_ssim': '01_databunch.ipynb', 'reconstruct_image': '01_databunch.ipynb', 'sr_predict': '01_databunch.ipynb', 'get_metrics': '01_databunch.ipynb', 'fmt_metrics': '01_databunch.ipynb', 'mean_metrics': '01_databunch.ipynb', 'sr_test': '01_databunch.ipynb', 'sr_test_upscale': '01_databunch.ipynb', 'SRCNN': '2014_srcnn.ipynb', 'SRCNN_BN': '2014_srcnn_bn.ipynb', 'EPSCN': '2016_epscn.ipynb', 'Pixcelshuffer': '2017_srresnet.ipynb', 'SRResNet': '2017_srresnet.ipynb', 'gram_matrix': '2019_unet_floss.ipynb', 'FeatureLoss': '2019_unet_floss.ipynb', 'base_loss': '2019_unet_floss.ipynb', 'create_feature_loss': '2019_unet_floss.ipynb'} modules = ['datasets.py', 'databunch.py', 'srcnn.py', 'srcnn_bn.py', 'epscn.py', 'srresnet.py', 'sr_unet.py', 'sr_unet_floss.py'] doc_url = 'https://benymd.github.io/superres/' git_url = 'https://github.com/benymd/superres/tree/master/' def custom_doc_links(name): return None
""" Dummy module that just print out some messages""" DATE = 12092019 def hello ( name ): """ Say hello .""" return " hello " + name def ciao ( name ): """ Say ciao .""" return " Ciao " + name def bye (nom ): """ Say bye .""" return " bye " + nom
""" Dummy module that just print out some messages""" date = 12092019 def hello(name): """ Say hello .""" return ' hello ' + name def ciao(name): """ Say ciao .""" return ' Ciao ' + name def bye(nom): """ Say bye .""" return ' bye ' + nom
myStr = input("Enter a String: ") Str = "" for ind in range (2, len(myStr)): if ind%2 == 0: Str = Str + myStr[ind] print (myStr[0] + Str)
my_str = input('Enter a String: ') str = '' for ind in range(2, len(myStr)): if ind % 2 == 0: str = Str + myStr[ind] print(myStr[0] + Str)
# Copyright (c) 2013 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. { 'targets': [ { 'target_name': 'shared', 'type': 'shared_library', 'sources': [ 'file.c' ], }, { 'target_name': 'shared_no_so_suffix', 'product_extension': 'so.0.1', 'type': 'shared_library', 'sources': [ 'file.c' ], }, { 'target_name': 'static', 'type': 'static_library', 'sources': [ 'file.c' ], }, { 'target_name': 'shared_executable', 'type': 'executable', 'sources': [ 'main.c' ], 'dependencies': [ 'shared', ] }, { 'target_name': 'shared_executable_no_so_suffix', 'type': 'executable', 'sources': [ 'main.c' ], 'dependencies': [ 'shared_no_so_suffix', ] }, { 'target_name': 'static_executable', 'type': 'executable', 'sources': [ 'main.c' ], 'dependencies': [ 'static', ] }, ], }
{'targets': [{'target_name': 'shared', 'type': 'shared_library', 'sources': ['file.c']}, {'target_name': 'shared_no_so_suffix', 'product_extension': 'so.0.1', 'type': 'shared_library', 'sources': ['file.c']}, {'target_name': 'static', 'type': 'static_library', 'sources': ['file.c']}, {'target_name': 'shared_executable', 'type': 'executable', 'sources': ['main.c'], 'dependencies': ['shared']}, {'target_name': 'shared_executable_no_so_suffix', 'type': 'executable', 'sources': ['main.c'], 'dependencies': ['shared_no_so_suffix']}, {'target_name': 'static_executable', 'type': 'executable', 'sources': ['main.c'], 'dependencies': ['static']}]}