content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class_names = [ 'agricultural', 'airplane', 'baseballdiamond', 'beach', 'buildings', 'chaparral', 'denseresidential', 'forest', 'freeway', 'golfcourse', 'harbor', 'intersection', 'mediumresidential', 'mobilehomepark', 'overpass', 'parkinglot', 'river', 'runway', 'sparseresidential', 'storagetanks', 'tenniscourt', ]
class_names = ['agricultural', 'airplane', 'baseballdiamond', 'beach', 'buildings', 'chaparral', 'denseresidential', 'forest', 'freeway', 'golfcourse', 'harbor', 'intersection', 'mediumresidential', 'mobilehomepark', 'overpass', 'parkinglot', 'river', 'runway', 'sparseresidential', 'storagetanks', 'tenniscourt']
#! /usr/bin/env python3 # func.py -- This script calls the hello function 10 times. # Author -- Prince Oppong Boamah<regioths@gmail.com> # Date -- 27th August, 2015 def hello(): print("Hello world!") print("I am going to call the hello function 10 times") for i in range(10): print("hello")
def hello(): print('Hello world!') print('I am going to call the hello function 10 times') for i in range(10): print('hello')
#########################################YOLOV3################################################################## yolov3_params={ 'good_model_path' :'/home/ai/model/freezer/ep3587-loss46.704-val_loss52.474.h5', 'anchors_path' :'./goods/freezer/keras_yolo3/model_data/yolo_anchors.txt', 'classes_path' : './goods/freezer/keras_yolo3/model_data/voc_classes.txt', 'label_path':'./goods/freezer/keras_yolo3/model_data/goods_label_map.pbtxt', 'score' :0.1, 'iou' :0.45, 'model_image_size' : (416, 416), 'gpu_num' : 1, "diff_switch_iou":(True,0.6), "single_switch_iou_minscore":(True,0.0,0.3) } ######################################common##################################################################### common_params={ 'freezer_check_yolov3_switch':True }
yolov3_params = {'good_model_path': '/home/ai/model/freezer/ep3587-loss46.704-val_loss52.474.h5', 'anchors_path': './goods/freezer/keras_yolo3/model_data/yolo_anchors.txt', 'classes_path': './goods/freezer/keras_yolo3/model_data/voc_classes.txt', 'label_path': './goods/freezer/keras_yolo3/model_data/goods_label_map.pbtxt', 'score': 0.1, 'iou': 0.45, 'model_image_size': (416, 416), 'gpu_num': 1, 'diff_switch_iou': (True, 0.6), 'single_switch_iou_minscore': (True, 0.0, 0.3)} common_params = {'freezer_check_yolov3_switch': True}
class RestApiException(Exception): def __init__(self, message, status_code): super(RestApiException, self).__init__(message) self.status_code = status_code self.message = message def __unicode__(self, ): return "%s" % self.message def __repr__(self, ): return "%s" % self.message
class Restapiexception(Exception): def __init__(self, message, status_code): super(RestApiException, self).__init__(message) self.status_code = status_code self.message = message def __unicode__(self): return '%s' % self.message def __repr__(self): return '%s' % self.message
QUERIES = { 'add_service': 'insert into services(name, type, repeat_period, metadata, status) values("{name}", {type}, {repeat_period}, "{metadata}", 1)', 'services_last_row_id': 'select max(id) from services', 'get_active_services': 'select services.id, services.name, services.type, service_types.Type, services.repeat_period, services.metadata from services INNER join service_types on services.type = service_types.id', 'get_active_services_type': 'select services.id, services.name, services.type, service_types.Type, services.repeat_period, services.metadata from services INNER join service_types on services.type = service_types.id where services.type = {}' }
queries = {'add_service': 'insert into services(name, type, repeat_period, metadata, status) values("{name}", {type}, {repeat_period}, "{metadata}", 1)', 'services_last_row_id': 'select max(id) from services', 'get_active_services': 'select services.id, services.name, services.type, service_types.Type, services.repeat_period, services.metadata from services INNER join service_types on services.type = service_types.id', 'get_active_services_type': 'select services.id, services.name, services.type, service_types.Type, services.repeat_period, services.metadata from services INNER join service_types on services.type = service_types.id where services.type = {}'}
adj_descriptions = { 'STR': { 'short': [ 'Atk Mod', 'Dmg Adj', 'Test', 'Feat', ], 'long': [ 'Melee Attack', 'Damage Adjustment', 'Test of STR', 'Feat of STR', ], }, 'DEX': { 'short': [ 'Atk Mod', 'Def Adj', 'Test', 'Feat', ], 'long': [ 'Missile Attack', 'Defense Adjustment', 'Test of DEX', 'Feat of DEX', ], }, 'CON': { 'short': [ 'HP Adj', 'Poison Adj', 'Surv', 'Test', 'Feat', ], 'long': [ 'Hit Point Adjustment', 'Poison Adjustment', 'Trauma Survival', 'Test of CON', 'Feat of CON', ], }, 'INT': { 'short': [ 'Lang', 'Bonus Spells', 'Learn Spell', ], 'long': [ 'Languages', 'Bonus Spells Per Day', 'Chance to Learn Spell', ], }, 'WIS': { 'short': [ 'Will Adj', 'Bonus Spells', 'Learn Spell', ], 'long': [ 'Willpower Adjustment', 'Bonus Spells Per Day', 'Chance to Learn Spell', ], }, 'CHA': { 'short': [ 'Reac Adj', 'Max Henchmen', 'Turning Adj', ], 'long': [ 'Reaction / Loyalty Adjustment', 'Maximum Number of Henchmen', 'Undead Turning Adjustment', ], }, } adjustments = { 'STR': { 3: [-2, -2, "1:6", "0%"], 4: [-1, -1, "1:6", "1%"], 5: [-1, -1, "1:6", "1%"], 6: [-1, -1, "1:6", "1%"], 7: [ 0, -1, "2:6", "2%"], 8: [ 0, -1, "2:6", "2%"], 9: [ 0, 0, "2:6", "4%"], 10: [ 0, 0, "2:6", "4%"], 11: [ 0, 0, "2:6", "4%"], 12: [ 0, 0, "2:6", "4%"], 13: [ 0, 1, "3:6", "8%"], 14: [ 0, 1, "3:6", "8%"], 15: [ 1, 1, "3:6", "16%"], 16: [ 1, 1, "3:6", "16%"], 17: [ 1, 2, "4:6", "24%"], 18: [ 2, 3, "5:6", "32%"], }, 'DEX': { 3: [-2, -2, "1:6", "0%"], 4: [-1, -1, "1:6", "1%"], 5: [-1, -1, "1:6", "1%"], 6: [-1, -1, "1:6", "1%"], 7: [-1, 0, "2:6", "2%"], 8: [-1, 0, "2:6", "2%"], 9: [ 0, 0, "2:6", "4%"], 10: [ 0, 0, "2:6", "4%"], 11: [ 0, 0, "2:6", "4%"], 12: [ 0, 0, "2:6", "4%"], 13: [ 1, 0, "3:6", "8%"], 14: [ 1, 0, "3:6", "8%"], 15: [ 1, 1, "3:6", "16%"], 16: [ 1, 1, "3:6", "16%"], 17: [ 2, 1, "4:6", "24%"], 18: [ 3, 2, "5:6", "32%"], }, 'CON': { 3: [-1, -2, "45%", "1:6", "0%"], 4: [-1, -1, "55%", "1:6", "1%"], 5: [-1, -1, "55%", "1:6", "1%"], 6: [-1, -1, "55%", "1:6", "1%"], 7: [ 0, 0, "65%", "2:6", "2%"], 8: [ 0, 0, "65%", "2:6", "2%"], 9: [ 0, 0, "75%", "2:6", "4%"], 10: [ 0, 0, "75%", "2:6", "4%"], 11: [ 0, 0, "75%", "2:6", "4%"], 12: [ 0, 0, "75%", "2:6", "4%"], 13: [ 1, 0, "80%", "3:6", "8%"], 14: [ 1, 0, "80%", "3:6", "8%"], 15: [ 1, 1, "85%", "3:6", "16%"], 16: [ 1, 1, "85%", "3:6", "16%"], 17: [ 2, 1, "90%", "4:6", "24%"], 18: [ 3, 2, "95%", "5:6", "32%"], }, 'INT': { 3: ["Illiterate", "N/A", "N/A"], 4: ["Illiterate", "N/A", "N/A"], 5: ["Illiterate", "N/A", "N/A"], 6: ["Illiterate", "N/A", "N/A"], 7: ["+0", "N/A", "N/A"], 8: ["+0", "N/A", "N/A"], 9: ["+0", "--", "50%"], 10: ["+0", "--", "50%"], 11: ["+0", "--", "50%"], 12: ["+0", "--", "50%"], 13: ["+1", "1st", "65%"], 14: ["+1", "1st", "65%"], 15: ["+1", "1st, 2nd", "75%"], 16: ["+1", "1st, 2nd", "75%"], 17: ["+2", "1st, 2nd, 3rd", "85%"], 18: ["+3", "1st, 2nd, 3rd, 4th", "95%"], }, 'WIS': { 3: [-2, "N/A", "N/A"], 4: [-1, "N/A", "N/A"], 5: [-1, "N/A", "N/A"], 6: [-1, "N/A", "N/A"], 7: [0, "N/A", "N/A"], 8: [0, "N/A", "N/A"], 9: [0, "--", "50%"], 10: [0, "--", "50%"], 11: [0, "--", "50%"], 12: [0, "--", "50%"], 13: [0, "1st", "65%"], 14: [0, "1st", "65%"], 15: [1, "1st, 2nd", "75%"], 16: [1, "1st, 2nd", "75%"], 17: [1, "1st, 2nd, 3rd", "85%"], 18: [2, "1st, 2nd, 3rd, 4th", "95%"], }, 'CHA': { 3: [-3, 1, -1], 4: [-2, 2, -1], 5: [-2, 2, -1], 6: [-2, 2, -1], 7: [-1, 3, 0], 8: [-1, 3, 0], 9: [ 0, 4, 0], 10: [ 0, 4, 0], 11: [ 0, 4, 0], 12: [ 0, 4, 0], 13: [ 1, 6, 0], 14: [ 1, 6, 0], 15: [ 1, 8, 1], 16: [ 1, 8, 1], 17: [ 2, 10, 1], 18: [ 3, 12, 1], }, }
adj_descriptions = {'STR': {'short': ['Atk Mod', 'Dmg Adj', 'Test', 'Feat'], 'long': ['Melee Attack', 'Damage Adjustment', 'Test of STR', 'Feat of STR']}, 'DEX': {'short': ['Atk Mod', 'Def Adj', 'Test', 'Feat'], 'long': ['Missile Attack', 'Defense Adjustment', 'Test of DEX', 'Feat of DEX']}, 'CON': {'short': ['HP Adj', 'Poison Adj', 'Surv', 'Test', 'Feat'], 'long': ['Hit Point Adjustment', 'Poison Adjustment', 'Trauma Survival', 'Test of CON', 'Feat of CON']}, 'INT': {'short': ['Lang', 'Bonus Spells', 'Learn Spell'], 'long': ['Languages', 'Bonus Spells Per Day', 'Chance to Learn Spell']}, 'WIS': {'short': ['Will Adj', 'Bonus Spells', 'Learn Spell'], 'long': ['Willpower Adjustment', 'Bonus Spells Per Day', 'Chance to Learn Spell']}, 'CHA': {'short': ['Reac Adj', 'Max Henchmen', 'Turning Adj'], 'long': ['Reaction / Loyalty Adjustment', 'Maximum Number of Henchmen', 'Undead Turning Adjustment']}} adjustments = {'STR': {3: [-2, -2, '1:6', '0%'], 4: [-1, -1, '1:6', '1%'], 5: [-1, -1, '1:6', '1%'], 6: [-1, -1, '1:6', '1%'], 7: [0, -1, '2:6', '2%'], 8: [0, -1, '2:6', '2%'], 9: [0, 0, '2:6', '4%'], 10: [0, 0, '2:6', '4%'], 11: [0, 0, '2:6', '4%'], 12: [0, 0, '2:6', '4%'], 13: [0, 1, '3:6', '8%'], 14: [0, 1, '3:6', '8%'], 15: [1, 1, '3:6', '16%'], 16: [1, 1, '3:6', '16%'], 17: [1, 2, '4:6', '24%'], 18: [2, 3, '5:6', '32%']}, 'DEX': {3: [-2, -2, '1:6', '0%'], 4: [-1, -1, '1:6', '1%'], 5: [-1, -1, '1:6', '1%'], 6: [-1, -1, '1:6', '1%'], 7: [-1, 0, '2:6', '2%'], 8: [-1, 0, '2:6', '2%'], 9: [0, 0, '2:6', '4%'], 10: [0, 0, '2:6', '4%'], 11: [0, 0, '2:6', '4%'], 12: [0, 0, '2:6', '4%'], 13: [1, 0, '3:6', '8%'], 14: [1, 0, '3:6', '8%'], 15: [1, 1, '3:6', '16%'], 16: [1, 1, '3:6', '16%'], 17: [2, 1, '4:6', '24%'], 18: [3, 2, '5:6', '32%']}, 'CON': {3: [-1, -2, '45%', '1:6', '0%'], 4: [-1, -1, '55%', '1:6', '1%'], 5: [-1, -1, '55%', '1:6', '1%'], 6: [-1, -1, '55%', '1:6', '1%'], 7: [0, 0, '65%', '2:6', '2%'], 8: [0, 0, '65%', '2:6', '2%'], 9: [0, 0, '75%', '2:6', '4%'], 10: [0, 0, '75%', '2:6', '4%'], 11: [0, 0, '75%', '2:6', '4%'], 12: [0, 0, '75%', '2:6', '4%'], 13: [1, 0, '80%', '3:6', '8%'], 14: [1, 0, '80%', '3:6', '8%'], 15: [1, 1, '85%', '3:6', '16%'], 16: [1, 1, '85%', '3:6', '16%'], 17: [2, 1, '90%', '4:6', '24%'], 18: [3, 2, '95%', '5:6', '32%']}, 'INT': {3: ['Illiterate', 'N/A', 'N/A'], 4: ['Illiterate', 'N/A', 'N/A'], 5: ['Illiterate', 'N/A', 'N/A'], 6: ['Illiterate', 'N/A', 'N/A'], 7: ['+0', 'N/A', 'N/A'], 8: ['+0', 'N/A', 'N/A'], 9: ['+0', '--', '50%'], 10: ['+0', '--', '50%'], 11: ['+0', '--', '50%'], 12: ['+0', '--', '50%'], 13: ['+1', '1st', '65%'], 14: ['+1', '1st', '65%'], 15: ['+1', '1st, 2nd', '75%'], 16: ['+1', '1st, 2nd', '75%'], 17: ['+2', '1st, 2nd, 3rd', '85%'], 18: ['+3', '1st, 2nd, 3rd, 4th', '95%']}, 'WIS': {3: [-2, 'N/A', 'N/A'], 4: [-1, 'N/A', 'N/A'], 5: [-1, 'N/A', 'N/A'], 6: [-1, 'N/A', 'N/A'], 7: [0, 'N/A', 'N/A'], 8: [0, 'N/A', 'N/A'], 9: [0, '--', '50%'], 10: [0, '--', '50%'], 11: [0, '--', '50%'], 12: [0, '--', '50%'], 13: [0, '1st', '65%'], 14: [0, '1st', '65%'], 15: [1, '1st, 2nd', '75%'], 16: [1, '1st, 2nd', '75%'], 17: [1, '1st, 2nd, 3rd', '85%'], 18: [2, '1st, 2nd, 3rd, 4th', '95%']}, 'CHA': {3: [-3, 1, -1], 4: [-2, 2, -1], 5: [-2, 2, -1], 6: [-2, 2, -1], 7: [-1, 3, 0], 8: [-1, 3, 0], 9: [0, 4, 0], 10: [0, 4, 0], 11: [0, 4, 0], 12: [0, 4, 0], 13: [1, 6, 0], 14: [1, 6, 0], 15: [1, 8, 1], 16: [1, 8, 1], 17: [2, 10, 1], 18: [3, 12, 1]}}
def permutationWCaseChangeUtil(input_string, output_string): if len(input_string) == 0: print(output_string, end=', ') return modified_output_string1 = output_string + input_string[0].upper() modified_output_string2 = output_string + input_string[0] modified_input_string = input_string[1:] permutationWCaseChangeUtil(modified_input_string, modified_output_string1) permutationWCaseChangeUtil(modified_input_string, modified_output_string2) def permutationWCaseChange(input_string): if len(input_string) == 0: print('Invalid String') return print('permutation with case change of',input_string,':') permutationWCaseChangeUtil(input_string, '') print() permutationWCaseChange('ab')
def permutation_w_case_change_util(input_string, output_string): if len(input_string) == 0: print(output_string, end=', ') return modified_output_string1 = output_string + input_string[0].upper() modified_output_string2 = output_string + input_string[0] modified_input_string = input_string[1:] permutation_w_case_change_util(modified_input_string, modified_output_string1) permutation_w_case_change_util(modified_input_string, modified_output_string2) def permutation_w_case_change(input_string): if len(input_string) == 0: print('Invalid String') return print('permutation with case change of', input_string, ':') permutation_w_case_change_util(input_string, '') print() permutation_w_case_change('ab')
# function = a block of code which is executed only when it is called name = input("What's your name? ") age = str(input("What is your age? ")) def trevi(name, age): print(f'Hello {name}!') if age == "0": print(f'Keep Pounding {name}!') elif age == "1": print(f'Proud of you {name}. Keep going!') else: print(f'Awesome {name}!That\'s the way!') trevi(name, age) print('--------') # return statement = Functions send Python values/objects back to the caller; # These values/objects are known as the function's return value def multiply(number_one, number_two): return number_one * number_two multi = multiply(3, 7) print(multi) # keyword arguments = arguments proceded by an identifier when we pass then to a function # The order of the arguments doest matter, unlike positional arguments # Python knows the names of the arguments that our function receives first = input("What is your first name? ") middle = input("What is your middle name? ") last = input("What is your last name? ") def hello(first, middle, last): print(f"Hello {first} {middle} {last}. Welcome to the new world.") # hello(last=last, first=first, middle=middle) # nested functions calls = function inside other function calls; # innermost functin calls are resolved first; # returned values is used as argument for the next outer function # num = input("Enter a whole positive number: ") # num = float(num) # num = abs(num) # num = round(num) # print(num) print(round(abs(float(input("Enter a whole positive number: ")))))
name = input("What's your name? ") age = str(input('What is your age? ')) def trevi(name, age): print(f'Hello {name}!') if age == '0': print(f'Keep Pounding {name}!') elif age == '1': print(f'Proud of you {name}. Keep going!') else: print(f"Awesome {name}!That's the way!") trevi(name, age) print('--------') def multiply(number_one, number_two): return number_one * number_two multi = multiply(3, 7) print(multi) first = input('What is your first name? ') middle = input('What is your middle name? ') last = input('What is your last name? ') def hello(first, middle, last): print(f'Hello {first} {middle} {last}. Welcome to the new world.') print(round(abs(float(input('Enter a whole positive number: ')))))
def non_capitalized(): """ compute the MACD (Moving Average Convergence/Divergence) using ... """ def capitalized(): """ Compute the MACD (Moving Average Convergence/Divergence) using ... """
def non_capitalized(): """ compute the MACD (Moving Average Convergence/Divergence) using ... """ def capitalized(): """ Compute the MACD (Moving Average Convergence/Divergence) using ... """
# Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution(object): def reorderList(self, head): if head: arr = [] while head: arr += head, head = head.next l, r, prev = 0, len(arr) - 1, ListNode(0) while l < r: prev.next, arr[l].next, prev, l, r = arr[l], arr[r], arr[r], l + 1, r - 1 if l == r: prev.next = arr[l] arr[l].next = None
class Solution(object): def reorder_list(self, head): if head: arr = [] while head: arr += (head,) head = head.next (l, r, prev) = (0, len(arr) - 1, list_node(0)) while l < r: (prev.next, arr[l].next, prev, l, r) = (arr[l], arr[r], arr[r], l + 1, r - 1) if l == r: prev.next = arr[l] arr[l].next = None
for _ in range(int(input())): j=m=0 for joao in range(3): x=list(map(int,input().split())) j+=(x[0]*x[1]) for maria in range(3): x=list(map(int,input().split())) m+=(x[0]*x[1]) print("MARIA") if m>j else print("JOAO")
for _ in range(int(input())): j = m = 0 for joao in range(3): x = list(map(int, input().split())) j += x[0] * x[1] for maria in range(3): x = list(map(int, input().split())) m += x[0] * x[1] print('MARIA') if m > j else print('JOAO')
# Copyright 2017 The Bazel Authors. 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. """Bazel rules for creating watchOS applications and bundles.""" load( "@build_bazel_rules_apple//apple/bundling:binary_support.bzl", "binary_support", ) load( "@build_bazel_rules_apple//apple/bundling:product_support.bzl", "apple_product_type", ) # Alias the internal rules when we load them. This lets the rules keep their # original name in queries and logs since they collide with the wrapper macros. load( "@build_bazel_rules_apple//apple/bundling:watchos_rules.bzl", _watchos_application = "watchos_application", _watchos_extension = "watchos_extension", ) def watchos_application(name, **kwargs): """Builds and bundles a watchOS application. This rule only supports watchOS 2.0 and higher. It cannot be used to produce watchOS 1.x application, as Apple no longer supports that version of the platform. The named target produced by this macro is a zip file. The watch application is not executable or installable by itself; it must be used by adding the target to a companion `"ios_application"` using the `"watch_application"` attribute on that rule. Args: name: The name of the target. app_icons: Files that comprise the app icons for the application. Each file must have a containing directory named `"*.xcassets/*.appiconset"` and there may be only one such `.appiconset` directory in the list. bundle_id: The bundle ID (reverse-DNS path followed by app name) of the application. If specified, it will override the bundle ID in the plist file. If no bundle ID is specified by either this attribute or in the plist file, the build will fail. entitlements: The entitlements file required for device builds of this application. If absent, the default entitlements from the provisioning profile will be used. The following variables are substituted: `$(CFBundleIdentifier)` with the bundle ID and `$(AppIdentifierPrefix)` with the value of the `ApplicationIdentifierPrefix` key from this target's provisioning profile (or the default provisioning profile, if none is specified). entitlements_validation: An `entitlements_validation_mode` to control the validation of the requested entitlements against the provisioning profile to ensure they are supported. extension: The watch extension (see `watchos_extension`) to bundle with this application. This attribute is required. infoplists: A list of `.plist` files that will be merged to form the Info.plist that represents the application. The merge is only at the top level of the plist; so sub-dictionaries are not merged. ipa_post_processor: A tool that edits this target's IPA output after it is assembled but before it is (optionally) signed. The tool is invoked with a single positional argument that represents the path to a directory containing the unzipped contents of the IPA. The only entry in this directory will be the Payload root directory of the IPA. Any changes made by the tool must be made in this directory, and the tool's execution must be hermetic given these inputs to ensure that the result can be safely cached. provisioning_profile: The provisioning profile (`.mobileprovision` file) to use when bundling the application. This is only used for non-simulator builds. strings: A list of files that are plists of strings, often localizable. These files are converted to binary plists (if they are not already) and placed in the bundle root of the final package. If this file's immediate containing directory is named `*.lproj`, it will be placed under a directory of that name in the final bundle. This allows for localizable strings. deps: A list of dependencies whose resources will be included in the final application bundle. (Since a watchOS application does not contain any code of its own, any code in the dependent libraries will be ignored.) """ bundling_args = binary_support.add_entitlements_and_swift_linkopts( name, platform_type = str(apple_common.platform_type.watchos), is_stub = True, **kwargs ) _watchos_application( name = name, **bundling_args ) def watchos_extension(name, **kwargs): """Builds and bundles a watchOS extension. This rule only supports watchOS 2.0 and higher. It cannot be used to produce watchOS 1.x application, as Apple no longer supports that version of the platform. The named target produced by this macro is a ZIP file. This macro also creates a target named `"{name}.apple_binary"` that represents the linked binary executable inside the extension bundle. Args: name: The name of the target. app_icons: Files that comprise the app icons for the extension. Each file must have a containing directory named `"*.xcassets/*.appiconset"` and there may be only one such .appiconset directory in the list. bundle_id: The bundle ID (reverse-DNS path followed by app name) of the extension. If specified, it will override the bundle ID in the plist file. If no bundle ID is specified by either this attribute or in the plist file, the build will fail. entitlements: The entitlements file required for device builds of this application. If absent, the default entitlements from the provisioning profile will be used. The following variables are substituted: `$(CFBundleIdentifier)` with the bundle ID and `$(AppIdentifierPrefix)` with the value of the `ApplicationIdentifierPrefix` key from this target's provisioning profile (or the default provisioning profile, if none is specified). entitlements_validation: An `entitlements_validation_mode` to control the validation of the requested entitlements against the provisioning profile to ensure they are supported. infoplists: A list of `.plist` files that will be merged to form the Info.plist that represents the extension. The merge is only at the top level of the plist; so sub-dictionaries are not merged. ipa_post_processor: A tool that edits this target's archive after it is assembled but before it is (optionally) signed. The tool is invoked with a single positional argument that represents the path to a directory containing the unzipped contents of the archive. The only entry in this directory will be the `.appex` directory for the extension. Any changes made by the tool must be made in this directory, and the tool's execution must be hermetic given these inputs to ensure that the result can be safely cached. linkopts: A list of strings representing extra flags that the underlying `apple_binary` target should pass to the linker. strings: A list of files that are plists of strings, often localizable. These files are converted to binary plists (if they are not already) and placed in the bundle root of the final package. If this file's immediate containing directory is named `*.lproj`, it will be placed under a directory of that name in the final bundle. This allows for localizable strings. deps: A list of dependencies, such as libraries, that are passed into the `apple_binary` rule. Any resources, such as asset catalogs, that are defined by these targets will also be transitively included in the final extension. """ # Add extension-specific linker options. Note that since apple_binary # prepends "-Wl," to each option, we must use the form expected by ld, not # the form expected by clang (i.e., -application_extension, not # -fapplication-extension). linkopts = kwargs.get("linkopts", []) linkopts += ["-application_extension"] kwargs["linkopts"] = linkopts bundling_args = binary_support.create_binary( name, str(apple_common.platform_type.watchos), _product_type = apple_product_type.watch2_extension, **kwargs ) _watchos_extension( name = name, **bundling_args )
"""Bazel rules for creating watchOS applications and bundles.""" load('@build_bazel_rules_apple//apple/bundling:binary_support.bzl', 'binary_support') load('@build_bazel_rules_apple//apple/bundling:product_support.bzl', 'apple_product_type') load('@build_bazel_rules_apple//apple/bundling:watchos_rules.bzl', _watchos_application='watchos_application', _watchos_extension='watchos_extension') def watchos_application(name, **kwargs): """Builds and bundles a watchOS application. This rule only supports watchOS 2.0 and higher. It cannot be used to produce watchOS 1.x application, as Apple no longer supports that version of the platform. The named target produced by this macro is a zip file. The watch application is not executable or installable by itself; it must be used by adding the target to a companion `"ios_application"` using the `"watch_application"` attribute on that rule. Args: name: The name of the target. app_icons: Files that comprise the app icons for the application. Each file must have a containing directory named `"*.xcassets/*.appiconset"` and there may be only one such `.appiconset` directory in the list. bundle_id: The bundle ID (reverse-DNS path followed by app name) of the application. If specified, it will override the bundle ID in the plist file. If no bundle ID is specified by either this attribute or in the plist file, the build will fail. entitlements: The entitlements file required for device builds of this application. If absent, the default entitlements from the provisioning profile will be used. The following variables are substituted: `$(CFBundleIdentifier)` with the bundle ID and `$(AppIdentifierPrefix)` with the value of the `ApplicationIdentifierPrefix` key from this target's provisioning profile (or the default provisioning profile, if none is specified). entitlements_validation: An `entitlements_validation_mode` to control the validation of the requested entitlements against the provisioning profile to ensure they are supported. extension: The watch extension (see `watchos_extension`) to bundle with this application. This attribute is required. infoplists: A list of `.plist` files that will be merged to form the Info.plist that represents the application. The merge is only at the top level of the plist; so sub-dictionaries are not merged. ipa_post_processor: A tool that edits this target's IPA output after it is assembled but before it is (optionally) signed. The tool is invoked with a single positional argument that represents the path to a directory containing the unzipped contents of the IPA. The only entry in this directory will be the Payload root directory of the IPA. Any changes made by the tool must be made in this directory, and the tool's execution must be hermetic given these inputs to ensure that the result can be safely cached. provisioning_profile: The provisioning profile (`.mobileprovision` file) to use when bundling the application. This is only used for non-simulator builds. strings: A list of files that are plists of strings, often localizable. These files are converted to binary plists (if they are not already) and placed in the bundle root of the final package. If this file's immediate containing directory is named `*.lproj`, it will be placed under a directory of that name in the final bundle. This allows for localizable strings. deps: A list of dependencies whose resources will be included in the final application bundle. (Since a watchOS application does not contain any code of its own, any code in the dependent libraries will be ignored.) """ bundling_args = binary_support.add_entitlements_and_swift_linkopts(name, platform_type=str(apple_common.platform_type.watchos), is_stub=True, **kwargs) _watchos_application(name=name, **bundling_args) def watchos_extension(name, **kwargs): """Builds and bundles a watchOS extension. This rule only supports watchOS 2.0 and higher. It cannot be used to produce watchOS 1.x application, as Apple no longer supports that version of the platform. The named target produced by this macro is a ZIP file. This macro also creates a target named `"{name}.apple_binary"` that represents the linked binary executable inside the extension bundle. Args: name: The name of the target. app_icons: Files that comprise the app icons for the extension. Each file must have a containing directory named `"*.xcassets/*.appiconset"` and there may be only one such .appiconset directory in the list. bundle_id: The bundle ID (reverse-DNS path followed by app name) of the extension. If specified, it will override the bundle ID in the plist file. If no bundle ID is specified by either this attribute or in the plist file, the build will fail. entitlements: The entitlements file required for device builds of this application. If absent, the default entitlements from the provisioning profile will be used. The following variables are substituted: `$(CFBundleIdentifier)` with the bundle ID and `$(AppIdentifierPrefix)` with the value of the `ApplicationIdentifierPrefix` key from this target's provisioning profile (or the default provisioning profile, if none is specified). entitlements_validation: An `entitlements_validation_mode` to control the validation of the requested entitlements against the provisioning profile to ensure they are supported. infoplists: A list of `.plist` files that will be merged to form the Info.plist that represents the extension. The merge is only at the top level of the plist; so sub-dictionaries are not merged. ipa_post_processor: A tool that edits this target's archive after it is assembled but before it is (optionally) signed. The tool is invoked with a single positional argument that represents the path to a directory containing the unzipped contents of the archive. The only entry in this directory will be the `.appex` directory for the extension. Any changes made by the tool must be made in this directory, and the tool's execution must be hermetic given these inputs to ensure that the result can be safely cached. linkopts: A list of strings representing extra flags that the underlying `apple_binary` target should pass to the linker. strings: A list of files that are plists of strings, often localizable. These files are converted to binary plists (if they are not already) and placed in the bundle root of the final package. If this file's immediate containing directory is named `*.lproj`, it will be placed under a directory of that name in the final bundle. This allows for localizable strings. deps: A list of dependencies, such as libraries, that are passed into the `apple_binary` rule. Any resources, such as asset catalogs, that are defined by these targets will also be transitively included in the final extension. """ linkopts = kwargs.get('linkopts', []) linkopts += ['-application_extension'] kwargs['linkopts'] = linkopts bundling_args = binary_support.create_binary(name, str(apple_common.platform_type.watchos), _product_type=apple_product_type.watch2_extension, **kwargs) _watchos_extension(name=name, **bundling_args)
def add(x,y): return x + y def subtract(x,y): return x - y def multiply(x,y): return x * y def divide(x,y): return x / y def exponents(x,y): return x ** y while True: print('Basic Calculator\nSelect your Operator') print('1. Add') print('2. Subtract') print('3. Multiply') print('4. Divide') print('5. Exponents') Operator = input("Select your input(1/2/3/4/5): ") if Operator in ('1','2','3','4', '5'): try: num1 = float(input("Enter first Number: ")) num2= float(input("Enter Second Number: ")) if Operator in ('1'): ans = add(num1, num2) num1 = str(num1) num2 = str(num2) ans = str(ans) print(num1+'+'+num2 +'='+ans) if Operator in ('2'): ans = subtract(num1, num2) num1 = str(num1) num2 = str(num2) ans = str(ans) print(num1+ '-'+num2 +'='+ans) if Operator in ('3'): ans = multiply(num1, num2) ans = str(ans) num1 = str(num1) num2 = str(num2) print(num1+'*'+num2 +'='+ans) if Operator in ('4'): ans = divide(num1, num2) ans = str(ans) num1 = str(num1) num2 = str(num2) print(num1+'/'+num2 +'='+ans) if Operator in ('5'): ans = exponents(num1, num2) ans = str(ans) num1 = str(num1) num2 = str(num2) print(num1 + '^' + num2 + '=' + ans) except: print('Invalid Number') print('Next Challenge\n\ngithub.com/abutalhaalam\n\n ') #github.com/abutalhaalam else: print('\nInvalid Operator\nTry Again\n ')
def add(x, y): return x + y def subtract(x, y): return x - y def multiply(x, y): return x * y def divide(x, y): return x / y def exponents(x, y): return x ** y while True: print('Basic Calculator\nSelect your Operator') print('1. Add') print('2. Subtract') print('3. Multiply') print('4. Divide') print('5. Exponents') operator = input('Select your input(1/2/3/4/5): ') if Operator in ('1', '2', '3', '4', '5'): try: num1 = float(input('Enter first Number: ')) num2 = float(input('Enter Second Number: ')) if Operator in '1': ans = add(num1, num2) num1 = str(num1) num2 = str(num2) ans = str(ans) print(num1 + '+' + num2 + '=' + ans) if Operator in '2': ans = subtract(num1, num2) num1 = str(num1) num2 = str(num2) ans = str(ans) print(num1 + '-' + num2 + '=' + ans) if Operator in '3': ans = multiply(num1, num2) ans = str(ans) num1 = str(num1) num2 = str(num2) print(num1 + '*' + num2 + '=' + ans) if Operator in '4': ans = divide(num1, num2) ans = str(ans) num1 = str(num1) num2 = str(num2) print(num1 + '/' + num2 + '=' + ans) if Operator in '5': ans = exponents(num1, num2) ans = str(ans) num1 = str(num1) num2 = str(num2) print(num1 + '^' + num2 + '=' + ans) except: print('Invalid Number') print('Next Challenge\n\ngithub.com/abutalhaalam\n\n ') else: print('\nInvalid Operator\nTry Again\n ')
class Car(): chasisLength = 250 wheels = 4 power = False #self makes reference to the instance in class #self hace referencia a una instancia al objeto de la misma clase #self equivale a this en otros lenguajes def turnOn(self): self.power = True def changeLenght(self, n): self.changeLenght = n car1 = Car() print(car1.power) print(car1.chasisLength) car1.turnOn() car1.changeLenght(1200) print(car1.power) print(car1.chasisLength)
class Car: chasis_length = 250 wheels = 4 power = False def turn_on(self): self.power = True def change_lenght(self, n): self.changeLenght = n car1 = car() print(car1.power) print(car1.chasisLength) car1.turnOn() car1.changeLenght(1200) print(car1.power) print(car1.chasisLength)
def calcula_salario_liquido(salario_bruto): liquido = salario_bruto - (salario_bruto * 0.15) return liquido for c in range(3): salario = float(input("Informe seu salario bruto: ")) liquido = calcula_salario_liquido(salario) print(liquido)
def calcula_salario_liquido(salario_bruto): liquido = salario_bruto - salario_bruto * 0.15 return liquido for c in range(3): salario = float(input('Informe seu salario bruto: ')) liquido = calcula_salario_liquido(salario) print(liquido)
# -*- coding: utf-8 -*- """ Spyder Editor This is the Modelscape lesson script for January 31, 2022. """ # You can also add comments like this. # The shortcut to run a line # Mac - fn + F9 # PC - FN + F9 or Ctrl + F5 print("Hello World") # Introduction to Python built-in data types text = "Data Carpentry" # string number = 42 # integer pi_value = 3.1415 # float - number with decimal places pi_value # call back a value # type() function - to figure out the type of a given variable or data type(number) # print() function - to show a value print(number) # Note, this may seem redundant, but print() is the only way to display output in a script. # Operators 2 + 2 # addition 6 * 7 # multiplication 2 ** 16 # power 13 % 5 # "modulo" - integer remainder 13 / 5 # division # Boolean data types 3 > 4 # greater than # Sequences: Lists and Tuples # Note, Python indexes START WITH ZERO. numbers = [1, 2, 3] numbers[0] # calls first value in the list practice = ["blue", "green", "red"] again = ['blue', 'green', 'red'] blue = 4 green = 3 red = 14 practice_again = [blue, green, red] # without quotes, these need to be recognized as variables # A for loop can be used to access elements in a list. # Must be indented as part of a for loop. # Otherwise, may throw an error if other lines indented unnecessarily. for num in numbers: print(num) # Can use the append method to add to a list. # Akin to using functions in sequence in a tidyverse pipe. numbers.append(4) # Many kinds of methods available, and you can view them using the help() function. help(numbers) numbers.reverse() # Tuples are ordered lists and use parentheses. # Note, tuples cannot be changed. a_tuple = (1, 2, 3) another_tuple = ('blue', 'green', 'red') # Dictionaries contain pairs of objects - keys and values. translation = {'one':'first', 'two':'second'} translation['one'] # Keys are unique identifiers for the value it corresponds to. colors = {'first':'red', 'second':'blue'} # add an item to the dictionary colors['third'] = 'yellow' colors # Can also use for loops on dictionaries # method #1: for key, value in colors.items(): # using the .items method print(key, '->', value) # method #2: for key in colors.keys(): # using the .keys method print(key, '->', colors[key]) # Creating your own function # Note, this always requires the def keyword # function for addition def add_function(a, b): result = a+b return result # Note, user defined functions are not displayed in the Variable Explorer. z = add_function(20, 22) print(z) # If working in the console, elipses (...) appear when typing out for loops # or functions, and for each subsequent line, you do need to indent using tabs. # End of script.
""" Spyder Editor This is the Modelscape lesson script for January 31, 2022. """ print('Hello World') text = 'Data Carpentry' number = 42 pi_value = 3.1415 pi_value type(number) print(number) 2 + 2 6 * 7 2 ** 16 13 % 5 13 / 5 3 > 4 numbers = [1, 2, 3] numbers[0] practice = ['blue', 'green', 'red'] again = ['blue', 'green', 'red'] blue = 4 green = 3 red = 14 practice_again = [blue, green, red] for num in numbers: print(num) numbers.append(4) help(numbers) numbers.reverse() a_tuple = (1, 2, 3) another_tuple = ('blue', 'green', 'red') translation = {'one': 'first', 'two': 'second'} translation['one'] colors = {'first': 'red', 'second': 'blue'} colors['third'] = 'yellow' colors for (key, value) in colors.items(): print(key, '->', value) for key in colors.keys(): print(key, '->', colors[key]) def add_function(a, b): result = a + b return result z = add_function(20, 22) print(z)
x = 5 print(x) def f(): x = 2 print(x) def g(): global x x = 1 f() g() print(x)
x = 5 print(x) def f(): x = 2 print(x) def g(): global x x = 1 f() g() print(x)
# [] => this is an array. an array is a special type of container that can hold multipe items # arrays are indexed (their contents get assigned a number) # the index always starts at 0 choices = ["rock", "paper", "scissors"] player_lives = 5 ai_lives = 5 total_lives = 5 # True and False are boolean data type player = False
choices = ['rock', 'paper', 'scissors'] player_lives = 5 ai_lives = 5 total_lives = 5 player = False
def hint_username(username: str) -> bool: if len(username) < 3: return False elif len(username) > 15: return False else: return True def is_even(number: int): if number % 2 == 0: return True return False
def hint_username(username: str) -> bool: if len(username) < 3: return False elif len(username) > 15: return False else: return True def is_even(number: int): if number % 2 == 0: return True return False
# 338-counting-bits.py class Solution(object): def countBits(self, num): ret = [0]*(num+1) for i in range(0, num+1): ret[i] = ret[i & (i-1)] + 1 return ret
class Solution(object): def count_bits(self, num): ret = [0] * (num + 1) for i in range(0, num + 1): ret[i] = ret[i & i - 1] + 1 return ret
# # PySNMP MIB module BroadworksMaintenance (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/BroadworksMaintenance # Produced by pysmi-0.3.4 at Mon Apr 29 17:25:36 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint") ModuleCompliance, ObjectGroup, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "ObjectGroup", "NotificationGroup") IpAddress, Integer32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, Unsigned32, Counter32, iso, ModuleIdentity, Gauge32, TimeTicks, ObjectIdentity, enterprises, Counter64, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "Integer32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "Unsigned32", "Counter32", "iso", "ModuleIdentity", "Gauge32", "TimeTicks", "ObjectIdentity", "enterprises", "Counter64", "NotificationType") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") broadsoft = ModuleIdentity((1, 3, 6, 1, 4, 1, 6431)) broadsoft.setRevisions(('2006-06-09 09:30', '2006-03-23 19:35', '2005-08-16 10:00', '2000-09-19 14:31',)) if mibBuilder.loadTexts: broadsoft.setLastUpdated('200508161000Z') if mibBuilder.loadTexts: broadsoft.setOrganization('Broadsoft, Inc') broadworks = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1)) common = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1)) managedObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2)) thresholds = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3)) reservedModule = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 10)) bwMtcMibConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20)) moServerModule = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1)) moSoftwareVersionModule = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2)) moDeviceModule = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3)) thCounterModule = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1)) thGaugeModule = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2)) thAlarmModule = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3)) bwServerType = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 1), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwServerType.setStatus('current') bwRedundancyType = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("nonRedundant", 0), ("primary", 1), ("seconday", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bwRedundancyType.setStatus('current') bwActiveSoftwareVersion = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwActiveSoftwareVersion.setStatus('current') bwAdminState = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("lock", 0), ("locking", 1), ("unlock", 2), ("shuttingDown", 3), ("stopped", 4), ("forceLock", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAdminState.setStatus('current') bwOperationalState = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bwOperationalState.setStatus('current') bwResetServer = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("set", 0), ("reset", 1), ("hardReset", 2), ("revertReset", 3), ("hardRevertReset", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwResetServer.setStatus('current') bwSubComponentTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7), ) if mibBuilder.loadTexts: bwSubComponentTable.setStatus('current') bwTargetSoftwareVersion = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 8), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwTargetSoftwareVersion.setStatus('current') bwRevertBackupLocation = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 9), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwRevertBackupLocation.setStatus('current') bwSubComponentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwSubComponentIndex")) if mibBuilder.loadTexts: bwSubComponentEntry.setStatus('current') bwSubComponentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSubComponentIndex.setStatus('current') bwSubComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSubComponentName.setStatus('current') bwSubComponentInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSubComponentInfo.setStatus('current') bwUpdateSoftwareVersionTable = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("idle", 0), ("reload", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwUpdateSoftwareVersionTable.setStatus('current') bwSoftwareVersionTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2), ) if mibBuilder.loadTexts: bwSoftwareVersionTable.setStatus('current') bwSoftwarePatchTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3), ) if mibBuilder.loadTexts: bwSoftwarePatchTable.setStatus('current') bwSoftwareThirdPartyTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4), ) if mibBuilder.loadTexts: bwSoftwareThirdPartyTable.setStatus('current') bwSoftwarePatchHistoryTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5), ) if mibBuilder.loadTexts: bwSoftwarePatchHistoryTable.setStatus('current') bwSoftwarePatchImpactedFileTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6), ) if mibBuilder.loadTexts: bwSoftwarePatchImpactedFileTable.setStatus('current') bwSoftwareVersionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwSoftwareVersionIndex")) if mibBuilder.loadTexts: bwSoftwareVersionEntry.setStatus('current') bwSoftwareVersionIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwareVersionIndex.setStatus('current') bwSoftwareVersionName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwareVersionName.setStatus('current') bwSoftwareVersionInstallDate = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwareVersionInstallDate.setStatus('current') bwSoftwareVersionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("installed", 0), ("active", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwareVersionStatus.setStatus('current') bwSoftwarePatchEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwSoftwarePatchIndex")) if mibBuilder.loadTexts: bwSoftwarePatchEntry.setStatus('current') bwSoftwarePatchIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchIndex.setStatus('current') bwSoftwarePatchVersionName = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchVersionName.setStatus('obsolete') bwSoftwarePatchName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchName.setStatus('current') bwSoftwarePatchType = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchType.setStatus('obsolete') bwSoftwarePatchInstallDate = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchInstallDate.setStatus('obsolete') bwSoftwarePatchState = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("installed", 0), ("active", 1), ("installedPendingActive", 2), ("activePendingInstalled", 3), ("deleted", 4), ("installedMissingDependencies", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchState.setStatus('current') bwSoftwarePatchOperation = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("none", 0), ("apply", 1), ("remove", 2), ("delete", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwSoftwarePatchOperation.setStatus('obsolete') bwSoftwarePatchBundle = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 8), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchBundle.setStatus('current') bwSoftwareThirdPartyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwSoftwareThirdPartyIndex")) if mibBuilder.loadTexts: bwSoftwareThirdPartyEntry.setStatus('current') bwSoftwareThirdPartyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwareThirdPartyIndex.setStatus('current') bwSoftwareThirdPartyName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwareThirdPartyName.setStatus('current') bwSoftwareThirdPartyVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwareThirdPartyVersion.setStatus('current') bwSoftwareThirdPartyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("installed", 0), ("active", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwareThirdPartyStatus.setStatus('current') bwSoftwarePatchHistoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwSoftwarePatchIndex")) if mibBuilder.loadTexts: bwSoftwarePatchHistoryEntry.setStatus('current') bwSoftwarePatchHistoryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchHistoryIndex.setStatus('current') bwSoftwarePatchHistPatchName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchHistPatchName.setStatus('current') bwSoftwarePatchHistTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchHistTimeStamp.setStatus('current') bwSoftwarePatchHistNewState = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("installed", 0), ("active", 1), ("installedPendingActive", 2), ("activePendingInstalled", 3), ("deleted", 4), ("installedMissingDependencies", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchHistNewState.setStatus('current') bwSoftwarePatchImpactedFileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwSoftwarePatchIndex")) if mibBuilder.loadTexts: bwSoftwarePatchImpactedFileEntry.setStatus('current') bwSoftwarePatchImpactedFileIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchImpactedFileIndex.setStatus('current') bwSoftwarePatchImpactedFilePatchName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchImpactedFilePatchName.setStatus('current') bwSoftwarePatchImpactedFileFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwSoftwarePatchImpactedFileFileName.setStatus('current') bwManagedObjectsTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1), ) if mibBuilder.loadTexts: bwManagedObjectsTable.setStatus('current') bwManagedObjectsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwManagedObjectsIndex")) if mibBuilder.loadTexts: bwManagedObjectsEntry.setStatus('current') bwManagedObjectsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwManagedObjectsIndex.setStatus('current') bwManagedObjectsName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwManagedObjectsName.setStatus('current') bwManagedObjectsProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwManagedObjectsProtocol.setStatus('current') bwManagedObjectsType = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwManagedObjectsType.setStatus('current') bwManagedObjectsAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("lock", 0), ("locking", 1), ("unlock", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwManagedObjectsAdminState.setStatus('current') bwManagedObjectsOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bwManagedObjectsOperationalState.setStatus('current') bwCounterThresholdTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1), ) if mibBuilder.loadTexts: bwCounterThresholdTable.setStatus('current') bwCounterThresholdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwCounterThresholdIndex")) if mibBuilder.loadTexts: bwCounterThresholdEntry.setStatus('current') bwCounterThresholdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwCounterThresholdIndex.setStatus('current') bwCounterThresholdDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwCounterThresholdDescription.setStatus('current') bwCounterThresholdName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwCounterThresholdName.setStatus('current') bwCounterThresholdInitialValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwCounterThresholdInitialValue.setStatus('current') bwCounterThresholdOffsetValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 5), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwCounterThresholdOffsetValue.setStatus('current') bwCounterThresholdCurrentValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwCounterThresholdCurrentValue.setStatus('current') bwCounterThresholdSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("informational", 0), ("low", 1), ("medium", 2), ("high", 3), ("critical", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwCounterThresholdSeverity.setStatus('current') bwCounterThresholdControl = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("inactive", 0), ("active", 1), ("delete", 2), ("create", 3), ("invalid", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwCounterThresholdControl.setStatus('current') bwGaugeThresholdTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1), ) if mibBuilder.loadTexts: bwGaugeThresholdTable.setStatus('current') bwGaugeThresholdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwGaugeThresholdIndex")) if mibBuilder.loadTexts: bwGaugeThresholdEntry.setStatus('current') bwGaugeThresholdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwGaugeThresholdIndex.setStatus('current') bwGaugeThresholdDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwGaugeThresholdDescription.setStatus('current') bwGaugeThresholdName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwGaugeThresholdName.setStatus('current') bwGaugeThresholdNotifyLow = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwGaugeThresholdNotifyLow.setStatus('current') bwGaugeThresholdNotifyHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 5), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwGaugeThresholdNotifyHigh.setStatus('current') bwGaugeThresholdSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("informational", 0), ("low", 1), ("medium", 2), ("high", 3), ("critical", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwGaugeThresholdSeverity.setStatus('current') bwGaugeThresholdControl = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("inactive", 0), ("active", 1), ("delete", 2), ("create", 3), ("invalid", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwGaugeThresholdControl.setStatus('current') bwAlarmThresholdTable = MibTable((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1), ) if mibBuilder.loadTexts: bwAlarmThresholdTable.setStatus('current') bwAlarmThresholdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1), ).setIndexNames((0, "BroadworksMaintenance", "bwAlarmThresholdIndex")) if mibBuilder.loadTexts: bwAlarmThresholdEntry.setStatus('current') bwAlarmThresholdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bwAlarmThresholdIndex.setStatus('current') bwAlarmThresholdName = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdName.setStatus('current') bwAlarmThresholdMaxNumTrapsPerTimePeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 3), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdMaxNumTrapsPerTimePeriod.setStatus('current') bwAlarmThresholdTimePeriodInSeconds = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdTimePeriodInSeconds.setStatus('current') bwAlarmThresholdProblemTextVarNum1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 5), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum1.setStatus('current') bwAlarmThresholdProblemTextVarNum2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 6), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum2.setStatus('current') bwAlarmThresholdProblemTextVarNum3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum3.setStatus('current') bwAlarmThresholdProblemTextVarNum4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum4.setStatus('current') bwAlarmThresholdProblemTextVarNum5 = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum5.setStatus('current') bwAlarmThresholdMinimumSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("informational", 0), ("low", 1), ("medium", 2), ("high", 3), ("critical", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdMinimumSeverity.setStatus('current') bwAlarmThresholdControl = MibTableColumn((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("inactive", 0), ("active", 1), ("delete", 2), ("create", 3), ("invalid", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: bwAlarmThresholdControl.setStatus('current') bwReservedScalar = MibScalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 10, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0))).clone(namedValues=NamedValues(("notUsed", 0)))).setMaxAccess("readonly") if mibBuilder.loadTexts: bwReservedScalar.setStatus('current') bwMtcMibGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1)) bwMtcMibCompliancy = MibIdentifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 2)) bwMoServerGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 1)).setObjects(("BroadworksMaintenance", "bwServerType"), ("BroadworksMaintenance", "bwRedundancyType"), ("BroadworksMaintenance", "bwActiveSoftwareVersion"), ("BroadworksMaintenance", "bwAdminState"), ("BroadworksMaintenance", "bwOperationalState"), ("BroadworksMaintenance", "bwResetServer"), ("BroadworksMaintenance", "bwSubComponentTable"), ("BroadworksMaintenance", "bwTargetSoftwareVersion"), ("BroadworksMaintenance", "bwSubComponentIndex"), ("BroadworksMaintenance", "bwSubComponentName"), ("BroadworksMaintenance", "bwSubComponentInfo")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bwMoServerGroup = bwMoServerGroup.setStatus('current') bwMoSoftwareVersionsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 2)).setObjects(("BroadworksMaintenance", "bwUpdateSoftwareVersionTable"), ("BroadworksMaintenance", "bwSoftwareVersionTable"), ("BroadworksMaintenance", "bwSoftwarePatchTable"), ("BroadworksMaintenance", "bwSoftwareThirdPartyTable"), ("BroadworksMaintenance", "bwSoftwareVersionIndex"), ("BroadworksMaintenance", "bwSoftwareVersionName"), ("BroadworksMaintenance", "bwSoftwareVersionInstallDate"), ("BroadworksMaintenance", "bwSoftwareVersionStatus"), ("BroadworksMaintenance", "bwSoftwarePatchIndex"), ("BroadworksMaintenance", "bwSoftwarePatchName"), ("BroadworksMaintenance", "bwSoftwarePatchInstallDate"), ("BroadworksMaintenance", "bwSoftwarePatchState"), ("BroadworksMaintenance", "bwSoftwarePatchBundle"), ("BroadworksMaintenance", "bwSoftwareThirdPartyIndex"), ("BroadworksMaintenance", "bwSoftwareThirdPartyName"), ("BroadworksMaintenance", "bwSoftwareThirdPartyVersion"), ("BroadworksMaintenance", "bwSoftwareThirdPartyStatus"), ("BroadworksMaintenance", "bwSoftwarePatchHistoryTable"), ("BroadworksMaintenance", "bwSoftwarePatchHistoryIndex"), ("BroadworksMaintenance", "bwSoftwarePatchHistPatchName"), ("BroadworksMaintenance", "bwSoftwarePatchHistTimeStamp"), ("BroadworksMaintenance", "bwSoftwarePatchHistNewState"), ("BroadworksMaintenance", "bwSoftwarePatchImpactedFileTable"), ("BroadworksMaintenance", "bwSoftwarePatchImpactedFileIndex"), ("BroadworksMaintenance", "bwSoftwarePatchImpactedFilePatchName"), ("BroadworksMaintenance", "bwSoftwarePatchImpactedFileFileName")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bwMoSoftwareVersionsGroup = bwMoSoftwareVersionsGroup.setStatus('current') bwMoDeviceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 3)).setObjects(("BroadworksMaintenance", "bwManagedObjectsTable"), ("BroadworksMaintenance", "bwManagedObjectsIndex"), ("BroadworksMaintenance", "bwManagedObjectsName"), ("BroadworksMaintenance", "bwManagedObjectsProtocol"), ("BroadworksMaintenance", "bwManagedObjectsType"), ("BroadworksMaintenance", "bwManagedObjectsAdminState"), ("BroadworksMaintenance", "bwManagedObjectsOperationalState")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bwMoDeviceGroup = bwMoDeviceGroup.setStatus('current') bwMoThresholdsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 4)).setObjects(("BroadworksMaintenance", "bwCounterThresholdTable"), ("BroadworksMaintenance", "bwCounterThresholdIndex"), ("BroadworksMaintenance", "bwCounterThresholdDescription"), ("BroadworksMaintenance", "bwCounterThresholdName"), ("BroadworksMaintenance", "bwCounterThresholdInitialValue"), ("BroadworksMaintenance", "bwCounterThresholdOffsetValue"), ("BroadworksMaintenance", "bwCounterThresholdCurrentValue"), ("BroadworksMaintenance", "bwCounterThresholdSeverity"), ("BroadworksMaintenance", "bwCounterThresholdControl"), ("BroadworksMaintenance", "bwGaugeThresholdTable"), ("BroadworksMaintenance", "bwGaugeThresholdIndex"), ("BroadworksMaintenance", "bwGaugeThresholdDescription"), ("BroadworksMaintenance", "bwGaugeThresholdName"), ("BroadworksMaintenance", "bwGaugeThresholdNotifyLow"), ("BroadworksMaintenance", "bwGaugeThresholdNotifyHigh"), ("BroadworksMaintenance", "bwGaugeThresholdSeverity"), ("BroadworksMaintenance", "bwGaugeThresholdControl"), ("BroadworksMaintenance", "bwAlarmThresholdTable"), ("BroadworksMaintenance", "bwAlarmThresholdIndex"), ("BroadworksMaintenance", "bwAlarmThresholdName"), ("BroadworksMaintenance", "bwAlarmThresholdMaxNumTrapsPerTimePeriod"), ("BroadworksMaintenance", "bwAlarmThresholdTimePeriodInSeconds"), ("BroadworksMaintenance", "bwAlarmThresholdProblemTextVarNum1"), ("BroadworksMaintenance", "bwAlarmThresholdProblemTextVarNum2"), ("BroadworksMaintenance", "bwAlarmThresholdProblemTextVarNum3"), ("BroadworksMaintenance", "bwAlarmThresholdProblemTextVarNum4"), ("BroadworksMaintenance", "bwAlarmThresholdProblemTextVarNum5"), ("BroadworksMaintenance", "bwAlarmThresholdMinimumSeverity"), ("BroadworksMaintenance", "bwAlarmThresholdControl")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bwMoThresholdsGroup = bwMoThresholdsGroup.setStatus('current') bwMoReserveGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 10)).setObjects(("BroadworksMaintenance", "bwReservedScalar")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bwMoReserveGroup = bwMoReserveGroup.setStatus('current') bwMoBasicCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 2, 1)).setObjects(("BroadworksMaintenance", "bwMoServerGroup"), ("BroadworksMaintenance", "bwMoSoftwareVersionsGroup"), ("BroadworksMaintenance", "bwMoDeviceGroup"), ("BroadworksMaintenance", "bwMoThresholdsGroup"), ("BroadworksMaintenance", "bwMoReserveGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bwMoBasicCompliance = bwMoBasicCompliance.setStatus('current') mibBuilder.exportSymbols("BroadworksMaintenance", bwSoftwarePatchEntry=bwSoftwarePatchEntry, bwMoReserveGroup=bwMoReserveGroup, bwOperationalState=bwOperationalState, bwAlarmThresholdControl=bwAlarmThresholdControl, bwCounterThresholdCurrentValue=bwCounterThresholdCurrentValue, bwSoftwareThirdPartyStatus=bwSoftwareThirdPartyStatus, bwCounterThresholdIndex=bwCounterThresholdIndex, bwSoftwarePatchHistoryTable=bwSoftwarePatchHistoryTable, bwServerType=bwServerType, bwManagedObjectsOperationalState=bwManagedObjectsOperationalState, bwAdminState=bwAdminState, bwSubComponentEntry=bwSubComponentEntry, bwReservedScalar=bwReservedScalar, bwGaugeThresholdIndex=bwGaugeThresholdIndex, bwActiveSoftwareVersion=bwActiveSoftwareVersion, bwCounterThresholdName=bwCounterThresholdName, bwAlarmThresholdTimePeriodInSeconds=bwAlarmThresholdTimePeriodInSeconds, bwSoftwarePatchImpactedFilePatchName=bwSoftwarePatchImpactedFilePatchName, thCounterModule=thCounterModule, bwSoftwarePatchImpactedFileFileName=bwSoftwarePatchImpactedFileFileName, bwManagedObjectsIndex=bwManagedObjectsIndex, bwManagedObjectsAdminState=bwManagedObjectsAdminState, bwCounterThresholdSeverity=bwCounterThresholdSeverity, bwAlarmThresholdProblemTextVarNum2=bwAlarmThresholdProblemTextVarNum2, bwSoftwareVersionInstallDate=bwSoftwareVersionInstallDate, bwManagedObjectsTable=bwManagedObjectsTable, bwSoftwarePatchBundle=bwSoftwarePatchBundle, bwAlarmThresholdProblemTextVarNum1=bwAlarmThresholdProblemTextVarNum1, bwResetServer=bwResetServer, reservedModule=reservedModule, bwSoftwarePatchOperation=bwSoftwarePatchOperation, bwSoftwarePatchHistoryIndex=bwSoftwarePatchHistoryIndex, bwMoServerGroup=bwMoServerGroup, bwSoftwarePatchVersionName=bwSoftwarePatchVersionName, bwSoftwareVersionIndex=bwSoftwareVersionIndex, bwGaugeThresholdNotifyLow=bwGaugeThresholdNotifyLow, bwSoftwarePatchHistTimeStamp=bwSoftwarePatchHistTimeStamp, bwRedundancyType=bwRedundancyType, moSoftwareVersionModule=moSoftwareVersionModule, bwGaugeThresholdDescription=bwGaugeThresholdDescription, bwMtcMibConformance=bwMtcMibConformance, bwSubComponentInfo=bwSubComponentInfo, bwGaugeThresholdName=bwGaugeThresholdName, bwManagedObjectsProtocol=bwManagedObjectsProtocol, bwSoftwareVersionTable=bwSoftwareVersionTable, bwCounterThresholdDescription=bwCounterThresholdDescription, bwSoftwarePatchHistPatchName=bwSoftwarePatchHistPatchName, bwAlarmThresholdProblemTextVarNum4=bwAlarmThresholdProblemTextVarNum4, bwMoThresholdsGroup=bwMoThresholdsGroup, bwGaugeThresholdSeverity=bwGaugeThresholdSeverity, bwAlarmThresholdProblemTextVarNum3=bwAlarmThresholdProblemTextVarNum3, bwSoftwareThirdPartyIndex=bwSoftwareThirdPartyIndex, bwCounterThresholdInitialValue=bwCounterThresholdInitialValue, bwManagedObjectsName=bwManagedObjectsName, bwCounterThresholdTable=bwCounterThresholdTable, bwCounterThresholdControl=bwCounterThresholdControl, bwMtcMibGroups=bwMtcMibGroups, bwGaugeThresholdEntry=bwGaugeThresholdEntry, bwSoftwarePatchIndex=bwSoftwarePatchIndex, bwRevertBackupLocation=bwRevertBackupLocation, bwSoftwarePatchImpactedFileEntry=bwSoftwarePatchImpactedFileEntry, bwSoftwarePatchHistNewState=bwSoftwarePatchHistNewState, bwSoftwareVersionEntry=bwSoftwareVersionEntry, bwManagedObjectsType=bwManagedObjectsType, thAlarmModule=thAlarmModule, bwMoBasicCompliance=bwMoBasicCompliance, bwUpdateSoftwareVersionTable=bwUpdateSoftwareVersionTable, bwGaugeThresholdNotifyHigh=bwGaugeThresholdNotifyHigh, bwAlarmThresholdTable=bwAlarmThresholdTable, broadsoft=broadsoft, bwSoftwareThirdPartyName=bwSoftwareThirdPartyName, bwCounterThresholdEntry=bwCounterThresholdEntry, bwGaugeThresholdControl=bwGaugeThresholdControl, bwSubComponentName=bwSubComponentName, bwMoSoftwareVersionsGroup=bwMoSoftwareVersionsGroup, bwMoDeviceGroup=bwMoDeviceGroup, managedObjects=managedObjects, bwAlarmThresholdName=bwAlarmThresholdName, bwAlarmThresholdIndex=bwAlarmThresholdIndex, bwManagedObjectsEntry=bwManagedObjectsEntry, thresholds=thresholds, bwSoftwarePatchImpactedFileIndex=bwSoftwarePatchImpactedFileIndex, moDeviceModule=moDeviceModule, bwAlarmThresholdMaxNumTrapsPerTimePeriod=bwAlarmThresholdMaxNumTrapsPerTimePeriod, bwAlarmThresholdEntry=bwAlarmThresholdEntry, bwMtcMibCompliancy=bwMtcMibCompliancy, bwSubComponentTable=bwSubComponentTable, broadworks=broadworks, PYSNMP_MODULE_ID=broadsoft, bwSoftwarePatchImpactedFileTable=bwSoftwarePatchImpactedFileTable, common=common, bwSoftwarePatchInstallDate=bwSoftwarePatchInstallDate, bwSoftwareThirdPartyVersion=bwSoftwareThirdPartyVersion, bwSoftwarePatchState=bwSoftwarePatchState, thGaugeModule=thGaugeModule, bwTargetSoftwareVersion=bwTargetSoftwareVersion, bwGaugeThresholdTable=bwGaugeThresholdTable, bwSoftwareThirdPartyTable=bwSoftwareThirdPartyTable, bwCounterThresholdOffsetValue=bwCounterThresholdOffsetValue, bwAlarmThresholdProblemTextVarNum5=bwAlarmThresholdProblemTextVarNum5, bwSoftwarePatchTable=bwSoftwarePatchTable, moServerModule=moServerModule, bwSoftwareVersionName=bwSoftwareVersionName, bwAlarmThresholdMinimumSeverity=bwAlarmThresholdMinimumSeverity, bwSoftwareVersionStatus=bwSoftwareVersionStatus, bwSoftwarePatchHistoryEntry=bwSoftwarePatchHistoryEntry, bwSubComponentIndex=bwSubComponentIndex, bwSoftwarePatchType=bwSoftwarePatchType, bwSoftwareThirdPartyEntry=bwSoftwareThirdPartyEntry, bwSoftwarePatchName=bwSoftwarePatchName)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, constraints_intersection, constraints_union, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint') (module_compliance, object_group, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'ObjectGroup', 'NotificationGroup') (ip_address, integer32, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, unsigned32, counter32, iso, module_identity, gauge32, time_ticks, object_identity, enterprises, counter64, notification_type) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'Integer32', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'Unsigned32', 'Counter32', 'iso', 'ModuleIdentity', 'Gauge32', 'TimeTicks', 'ObjectIdentity', 'enterprises', 'Counter64', 'NotificationType') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') broadsoft = module_identity((1, 3, 6, 1, 4, 1, 6431)) broadsoft.setRevisions(('2006-06-09 09:30', '2006-03-23 19:35', '2005-08-16 10:00', '2000-09-19 14:31')) if mibBuilder.loadTexts: broadsoft.setLastUpdated('200508161000Z') if mibBuilder.loadTexts: broadsoft.setOrganization('Broadsoft, Inc') broadworks = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1)) common = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1)) managed_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2)) thresholds = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3)) reserved_module = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 10)) bw_mtc_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20)) mo_server_module = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1)) mo_software_version_module = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2)) mo_device_module = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3)) th_counter_module = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1)) th_gauge_module = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2)) th_alarm_module = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3)) bw_server_type = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 1), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwServerType.setStatus('current') bw_redundancy_type = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('nonRedundant', 0), ('primary', 1), ('seconday', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bwRedundancyType.setStatus('current') bw_active_software_version = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwActiveSoftwareVersion.setStatus('current') bw_admin_state = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('lock', 0), ('locking', 1), ('unlock', 2), ('shuttingDown', 3), ('stopped', 4), ('forceLock', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAdminState.setStatus('current') bw_operational_state = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('enabled', 0), ('disabled', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bwOperationalState.setStatus('current') bw_reset_server = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('set', 0), ('reset', 1), ('hardReset', 2), ('revertReset', 3), ('hardRevertReset', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwResetServer.setStatus('current') bw_sub_component_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7)) if mibBuilder.loadTexts: bwSubComponentTable.setStatus('current') bw_target_software_version = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 8), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwTargetSoftwareVersion.setStatus('current') bw_revert_backup_location = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 9), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwRevertBackupLocation.setStatus('current') bw_sub_component_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwSubComponentIndex')) if mibBuilder.loadTexts: bwSubComponentEntry.setStatus('current') bw_sub_component_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSubComponentIndex.setStatus('current') bw_sub_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSubComponentName.setStatus('current') bw_sub_component_info = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 1, 7, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSubComponentInfo.setStatus('current') bw_update_software_version_table = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('idle', 0), ('reload', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwUpdateSoftwareVersionTable.setStatus('current') bw_software_version_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2)) if mibBuilder.loadTexts: bwSoftwareVersionTable.setStatus('current') bw_software_patch_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3)) if mibBuilder.loadTexts: bwSoftwarePatchTable.setStatus('current') bw_software_third_party_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4)) if mibBuilder.loadTexts: bwSoftwareThirdPartyTable.setStatus('current') bw_software_patch_history_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5)) if mibBuilder.loadTexts: bwSoftwarePatchHistoryTable.setStatus('current') bw_software_patch_impacted_file_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6)) if mibBuilder.loadTexts: bwSoftwarePatchImpactedFileTable.setStatus('current') bw_software_version_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwSoftwareVersionIndex')) if mibBuilder.loadTexts: bwSoftwareVersionEntry.setStatus('current') bw_software_version_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwareVersionIndex.setStatus('current') bw_software_version_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwareVersionName.setStatus('current') bw_software_version_install_date = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwareVersionInstallDate.setStatus('current') bw_software_version_status = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('installed', 0), ('active', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwareVersionStatus.setStatus('current') bw_software_patch_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwSoftwarePatchIndex')) if mibBuilder.loadTexts: bwSoftwarePatchEntry.setStatus('current') bw_software_patch_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchIndex.setStatus('current') bw_software_patch_version_name = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchVersionName.setStatus('obsolete') bw_software_patch_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchName.setStatus('current') bw_software_patch_type = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchType.setStatus('obsolete') bw_software_patch_install_date = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchInstallDate.setStatus('obsolete') bw_software_patch_state = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('installed', 0), ('active', 1), ('installedPendingActive', 2), ('activePendingInstalled', 3), ('deleted', 4), ('installedMissingDependencies', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchState.setStatus('current') bw_software_patch_operation = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('none', 0), ('apply', 1), ('remove', 2), ('delete', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwSoftwarePatchOperation.setStatus('obsolete') bw_software_patch_bundle = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 3, 1, 8), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchBundle.setStatus('current') bw_software_third_party_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwSoftwareThirdPartyIndex')) if mibBuilder.loadTexts: bwSoftwareThirdPartyEntry.setStatus('current') bw_software_third_party_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwareThirdPartyIndex.setStatus('current') bw_software_third_party_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwareThirdPartyName.setStatus('current') bw_software_third_party_version = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwareThirdPartyVersion.setStatus('current') bw_software_third_party_status = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('installed', 0), ('active', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwareThirdPartyStatus.setStatus('current') bw_software_patch_history_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwSoftwarePatchIndex')) if mibBuilder.loadTexts: bwSoftwarePatchHistoryEntry.setStatus('current') bw_software_patch_history_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchHistoryIndex.setStatus('current') bw_software_patch_hist_patch_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchHistPatchName.setStatus('current') bw_software_patch_hist_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchHistTimeStamp.setStatus('current') bw_software_patch_hist_new_state = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 5, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('installed', 0), ('active', 1), ('installedPendingActive', 2), ('activePendingInstalled', 3), ('deleted', 4), ('installedMissingDependencies', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchHistNewState.setStatus('current') bw_software_patch_impacted_file_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwSoftwarePatchIndex')) if mibBuilder.loadTexts: bwSoftwarePatchImpactedFileEntry.setStatus('current') bw_software_patch_impacted_file_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchImpactedFileIndex.setStatus('current') bw_software_patch_impacted_file_patch_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchImpactedFilePatchName.setStatus('current') bw_software_patch_impacted_file_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 2, 6, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwSoftwarePatchImpactedFileFileName.setStatus('current') bw_managed_objects_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1)) if mibBuilder.loadTexts: bwManagedObjectsTable.setStatus('current') bw_managed_objects_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwManagedObjectsIndex')) if mibBuilder.loadTexts: bwManagedObjectsEntry.setStatus('current') bw_managed_objects_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwManagedObjectsIndex.setStatus('current') bw_managed_objects_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwManagedObjectsName.setStatus('current') bw_managed_objects_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwManagedObjectsProtocol.setStatus('current') bw_managed_objects_type = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwManagedObjectsType.setStatus('current') bw_managed_objects_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('lock', 0), ('locking', 1), ('unlock', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwManagedObjectsAdminState.setStatus('current') bw_managed_objects_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 2, 3, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('enabled', 0), ('disabled', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bwManagedObjectsOperationalState.setStatus('current') bw_counter_threshold_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1)) if mibBuilder.loadTexts: bwCounterThresholdTable.setStatus('current') bw_counter_threshold_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwCounterThresholdIndex')) if mibBuilder.loadTexts: bwCounterThresholdEntry.setStatus('current') bw_counter_threshold_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwCounterThresholdIndex.setStatus('current') bw_counter_threshold_description = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwCounterThresholdDescription.setStatus('current') bw_counter_threshold_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwCounterThresholdName.setStatus('current') bw_counter_threshold_initial_value = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwCounterThresholdInitialValue.setStatus('current') bw_counter_threshold_offset_value = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 5), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwCounterThresholdOffsetValue.setStatus('current') bw_counter_threshold_current_value = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 6), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwCounterThresholdCurrentValue.setStatus('current') bw_counter_threshold_severity = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('informational', 0), ('low', 1), ('medium', 2), ('high', 3), ('critical', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwCounterThresholdSeverity.setStatus('current') bw_counter_threshold_control = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('inactive', 0), ('active', 1), ('delete', 2), ('create', 3), ('invalid', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwCounterThresholdControl.setStatus('current') bw_gauge_threshold_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1)) if mibBuilder.loadTexts: bwGaugeThresholdTable.setStatus('current') bw_gauge_threshold_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwGaugeThresholdIndex')) if mibBuilder.loadTexts: bwGaugeThresholdEntry.setStatus('current') bw_gauge_threshold_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwGaugeThresholdIndex.setStatus('current') bw_gauge_threshold_description = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwGaugeThresholdDescription.setStatus('current') bw_gauge_threshold_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwGaugeThresholdName.setStatus('current') bw_gauge_threshold_notify_low = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwGaugeThresholdNotifyLow.setStatus('current') bw_gauge_threshold_notify_high = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 5), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwGaugeThresholdNotifyHigh.setStatus('current') bw_gauge_threshold_severity = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('informational', 0), ('low', 1), ('medium', 2), ('high', 3), ('critical', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwGaugeThresholdSeverity.setStatus('current') bw_gauge_threshold_control = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 2, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('inactive', 0), ('active', 1), ('delete', 2), ('create', 3), ('invalid', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwGaugeThresholdControl.setStatus('current') bw_alarm_threshold_table = mib_table((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1)) if mibBuilder.loadTexts: bwAlarmThresholdTable.setStatus('current') bw_alarm_threshold_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1)).setIndexNames((0, 'BroadworksMaintenance', 'bwAlarmThresholdIndex')) if mibBuilder.loadTexts: bwAlarmThresholdEntry.setStatus('current') bw_alarm_threshold_index = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bwAlarmThresholdIndex.setStatus('current') bw_alarm_threshold_name = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdName.setStatus('current') bw_alarm_threshold_max_num_traps_per_time_period = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 3), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdMaxNumTrapsPerTimePeriod.setStatus('current') bw_alarm_threshold_time_period_in_seconds = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdTimePeriodInSeconds.setStatus('current') bw_alarm_threshold_problem_text_var_num1 = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 5), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum1.setStatus('current') bw_alarm_threshold_problem_text_var_num2 = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 6), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum2.setStatus('current') bw_alarm_threshold_problem_text_var_num3 = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum3.setStatus('current') bw_alarm_threshold_problem_text_var_num4 = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum4.setStatus('current') bw_alarm_threshold_problem_text_var_num5 = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdProblemTextVarNum5.setStatus('current') bw_alarm_threshold_minimum_severity = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('informational', 0), ('low', 1), ('medium', 2), ('high', 3), ('critical', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdMinimumSeverity.setStatus('current') bw_alarm_threshold_control = mib_table_column((1, 3, 6, 1, 4, 1, 6431, 1, 1, 3, 3, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('inactive', 0), ('active', 1), ('delete', 2), ('create', 3), ('invalid', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: bwAlarmThresholdControl.setStatus('current') bw_reserved_scalar = mib_scalar((1, 3, 6, 1, 4, 1, 6431, 1, 1, 10, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0))).clone(namedValues=named_values(('notUsed', 0)))).setMaxAccess('readonly') if mibBuilder.loadTexts: bwReservedScalar.setStatus('current') bw_mtc_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1)) bw_mtc_mib_compliancy = mib_identifier((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 2)) bw_mo_server_group = object_group((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 1)).setObjects(('BroadworksMaintenance', 'bwServerType'), ('BroadworksMaintenance', 'bwRedundancyType'), ('BroadworksMaintenance', 'bwActiveSoftwareVersion'), ('BroadworksMaintenance', 'bwAdminState'), ('BroadworksMaintenance', 'bwOperationalState'), ('BroadworksMaintenance', 'bwResetServer'), ('BroadworksMaintenance', 'bwSubComponentTable'), ('BroadworksMaintenance', 'bwTargetSoftwareVersion'), ('BroadworksMaintenance', 'bwSubComponentIndex'), ('BroadworksMaintenance', 'bwSubComponentName'), ('BroadworksMaintenance', 'bwSubComponentInfo')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bw_mo_server_group = bwMoServerGroup.setStatus('current') bw_mo_software_versions_group = object_group((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 2)).setObjects(('BroadworksMaintenance', 'bwUpdateSoftwareVersionTable'), ('BroadworksMaintenance', 'bwSoftwareVersionTable'), ('BroadworksMaintenance', 'bwSoftwarePatchTable'), ('BroadworksMaintenance', 'bwSoftwareThirdPartyTable'), ('BroadworksMaintenance', 'bwSoftwareVersionIndex'), ('BroadworksMaintenance', 'bwSoftwareVersionName'), ('BroadworksMaintenance', 'bwSoftwareVersionInstallDate'), ('BroadworksMaintenance', 'bwSoftwareVersionStatus'), ('BroadworksMaintenance', 'bwSoftwarePatchIndex'), ('BroadworksMaintenance', 'bwSoftwarePatchName'), ('BroadworksMaintenance', 'bwSoftwarePatchInstallDate'), ('BroadworksMaintenance', 'bwSoftwarePatchState'), ('BroadworksMaintenance', 'bwSoftwarePatchBundle'), ('BroadworksMaintenance', 'bwSoftwareThirdPartyIndex'), ('BroadworksMaintenance', 'bwSoftwareThirdPartyName'), ('BroadworksMaintenance', 'bwSoftwareThirdPartyVersion'), ('BroadworksMaintenance', 'bwSoftwareThirdPartyStatus'), ('BroadworksMaintenance', 'bwSoftwarePatchHistoryTable'), ('BroadworksMaintenance', 'bwSoftwarePatchHistoryIndex'), ('BroadworksMaintenance', 'bwSoftwarePatchHistPatchName'), ('BroadworksMaintenance', 'bwSoftwarePatchHistTimeStamp'), ('BroadworksMaintenance', 'bwSoftwarePatchHistNewState'), ('BroadworksMaintenance', 'bwSoftwarePatchImpactedFileTable'), ('BroadworksMaintenance', 'bwSoftwarePatchImpactedFileIndex'), ('BroadworksMaintenance', 'bwSoftwarePatchImpactedFilePatchName'), ('BroadworksMaintenance', 'bwSoftwarePatchImpactedFileFileName')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bw_mo_software_versions_group = bwMoSoftwareVersionsGroup.setStatus('current') bw_mo_device_group = object_group((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 3)).setObjects(('BroadworksMaintenance', 'bwManagedObjectsTable'), ('BroadworksMaintenance', 'bwManagedObjectsIndex'), ('BroadworksMaintenance', 'bwManagedObjectsName'), ('BroadworksMaintenance', 'bwManagedObjectsProtocol'), ('BroadworksMaintenance', 'bwManagedObjectsType'), ('BroadworksMaintenance', 'bwManagedObjectsAdminState'), ('BroadworksMaintenance', 'bwManagedObjectsOperationalState')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bw_mo_device_group = bwMoDeviceGroup.setStatus('current') bw_mo_thresholds_group = object_group((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 4)).setObjects(('BroadworksMaintenance', 'bwCounterThresholdTable'), ('BroadworksMaintenance', 'bwCounterThresholdIndex'), ('BroadworksMaintenance', 'bwCounterThresholdDescription'), ('BroadworksMaintenance', 'bwCounterThresholdName'), ('BroadworksMaintenance', 'bwCounterThresholdInitialValue'), ('BroadworksMaintenance', 'bwCounterThresholdOffsetValue'), ('BroadworksMaintenance', 'bwCounterThresholdCurrentValue'), ('BroadworksMaintenance', 'bwCounterThresholdSeverity'), ('BroadworksMaintenance', 'bwCounterThresholdControl'), ('BroadworksMaintenance', 'bwGaugeThresholdTable'), ('BroadworksMaintenance', 'bwGaugeThresholdIndex'), ('BroadworksMaintenance', 'bwGaugeThresholdDescription'), ('BroadworksMaintenance', 'bwGaugeThresholdName'), ('BroadworksMaintenance', 'bwGaugeThresholdNotifyLow'), ('BroadworksMaintenance', 'bwGaugeThresholdNotifyHigh'), ('BroadworksMaintenance', 'bwGaugeThresholdSeverity'), ('BroadworksMaintenance', 'bwGaugeThresholdControl'), ('BroadworksMaintenance', 'bwAlarmThresholdTable'), ('BroadworksMaintenance', 'bwAlarmThresholdIndex'), ('BroadworksMaintenance', 'bwAlarmThresholdName'), ('BroadworksMaintenance', 'bwAlarmThresholdMaxNumTrapsPerTimePeriod'), ('BroadworksMaintenance', 'bwAlarmThresholdTimePeriodInSeconds'), ('BroadworksMaintenance', 'bwAlarmThresholdProblemTextVarNum1'), ('BroadworksMaintenance', 'bwAlarmThresholdProblemTextVarNum2'), ('BroadworksMaintenance', 'bwAlarmThresholdProblemTextVarNum3'), ('BroadworksMaintenance', 'bwAlarmThresholdProblemTextVarNum4'), ('BroadworksMaintenance', 'bwAlarmThresholdProblemTextVarNum5'), ('BroadworksMaintenance', 'bwAlarmThresholdMinimumSeverity'), ('BroadworksMaintenance', 'bwAlarmThresholdControl')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bw_mo_thresholds_group = bwMoThresholdsGroup.setStatus('current') bw_mo_reserve_group = object_group((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 1, 10)).setObjects(('BroadworksMaintenance', 'bwReservedScalar')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bw_mo_reserve_group = bwMoReserveGroup.setStatus('current') bw_mo_basic_compliance = module_compliance((1, 3, 6, 1, 4, 1, 6431, 1, 1, 20, 2, 1)).setObjects(('BroadworksMaintenance', 'bwMoServerGroup'), ('BroadworksMaintenance', 'bwMoSoftwareVersionsGroup'), ('BroadworksMaintenance', 'bwMoDeviceGroup'), ('BroadworksMaintenance', 'bwMoThresholdsGroup'), ('BroadworksMaintenance', 'bwMoReserveGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): bw_mo_basic_compliance = bwMoBasicCompliance.setStatus('current') mibBuilder.exportSymbols('BroadworksMaintenance', bwSoftwarePatchEntry=bwSoftwarePatchEntry, bwMoReserveGroup=bwMoReserveGroup, bwOperationalState=bwOperationalState, bwAlarmThresholdControl=bwAlarmThresholdControl, bwCounterThresholdCurrentValue=bwCounterThresholdCurrentValue, bwSoftwareThirdPartyStatus=bwSoftwareThirdPartyStatus, bwCounterThresholdIndex=bwCounterThresholdIndex, bwSoftwarePatchHistoryTable=bwSoftwarePatchHistoryTable, bwServerType=bwServerType, bwManagedObjectsOperationalState=bwManagedObjectsOperationalState, bwAdminState=bwAdminState, bwSubComponentEntry=bwSubComponentEntry, bwReservedScalar=bwReservedScalar, bwGaugeThresholdIndex=bwGaugeThresholdIndex, bwActiveSoftwareVersion=bwActiveSoftwareVersion, bwCounterThresholdName=bwCounterThresholdName, bwAlarmThresholdTimePeriodInSeconds=bwAlarmThresholdTimePeriodInSeconds, bwSoftwarePatchImpactedFilePatchName=bwSoftwarePatchImpactedFilePatchName, thCounterModule=thCounterModule, bwSoftwarePatchImpactedFileFileName=bwSoftwarePatchImpactedFileFileName, bwManagedObjectsIndex=bwManagedObjectsIndex, bwManagedObjectsAdminState=bwManagedObjectsAdminState, bwCounterThresholdSeverity=bwCounterThresholdSeverity, bwAlarmThresholdProblemTextVarNum2=bwAlarmThresholdProblemTextVarNum2, bwSoftwareVersionInstallDate=bwSoftwareVersionInstallDate, bwManagedObjectsTable=bwManagedObjectsTable, bwSoftwarePatchBundle=bwSoftwarePatchBundle, bwAlarmThresholdProblemTextVarNum1=bwAlarmThresholdProblemTextVarNum1, bwResetServer=bwResetServer, reservedModule=reservedModule, bwSoftwarePatchOperation=bwSoftwarePatchOperation, bwSoftwarePatchHistoryIndex=bwSoftwarePatchHistoryIndex, bwMoServerGroup=bwMoServerGroup, bwSoftwarePatchVersionName=bwSoftwarePatchVersionName, bwSoftwareVersionIndex=bwSoftwareVersionIndex, bwGaugeThresholdNotifyLow=bwGaugeThresholdNotifyLow, bwSoftwarePatchHistTimeStamp=bwSoftwarePatchHistTimeStamp, bwRedundancyType=bwRedundancyType, moSoftwareVersionModule=moSoftwareVersionModule, bwGaugeThresholdDescription=bwGaugeThresholdDescription, bwMtcMibConformance=bwMtcMibConformance, bwSubComponentInfo=bwSubComponentInfo, bwGaugeThresholdName=bwGaugeThresholdName, bwManagedObjectsProtocol=bwManagedObjectsProtocol, bwSoftwareVersionTable=bwSoftwareVersionTable, bwCounterThresholdDescription=bwCounterThresholdDescription, bwSoftwarePatchHistPatchName=bwSoftwarePatchHistPatchName, bwAlarmThresholdProblemTextVarNum4=bwAlarmThresholdProblemTextVarNum4, bwMoThresholdsGroup=bwMoThresholdsGroup, bwGaugeThresholdSeverity=bwGaugeThresholdSeverity, bwAlarmThresholdProblemTextVarNum3=bwAlarmThresholdProblemTextVarNum3, bwSoftwareThirdPartyIndex=bwSoftwareThirdPartyIndex, bwCounterThresholdInitialValue=bwCounterThresholdInitialValue, bwManagedObjectsName=bwManagedObjectsName, bwCounterThresholdTable=bwCounterThresholdTable, bwCounterThresholdControl=bwCounterThresholdControl, bwMtcMibGroups=bwMtcMibGroups, bwGaugeThresholdEntry=bwGaugeThresholdEntry, bwSoftwarePatchIndex=bwSoftwarePatchIndex, bwRevertBackupLocation=bwRevertBackupLocation, bwSoftwarePatchImpactedFileEntry=bwSoftwarePatchImpactedFileEntry, bwSoftwarePatchHistNewState=bwSoftwarePatchHistNewState, bwSoftwareVersionEntry=bwSoftwareVersionEntry, bwManagedObjectsType=bwManagedObjectsType, thAlarmModule=thAlarmModule, bwMoBasicCompliance=bwMoBasicCompliance, bwUpdateSoftwareVersionTable=bwUpdateSoftwareVersionTable, bwGaugeThresholdNotifyHigh=bwGaugeThresholdNotifyHigh, bwAlarmThresholdTable=bwAlarmThresholdTable, broadsoft=broadsoft, bwSoftwareThirdPartyName=bwSoftwareThirdPartyName, bwCounterThresholdEntry=bwCounterThresholdEntry, bwGaugeThresholdControl=bwGaugeThresholdControl, bwSubComponentName=bwSubComponentName, bwMoSoftwareVersionsGroup=bwMoSoftwareVersionsGroup, bwMoDeviceGroup=bwMoDeviceGroup, managedObjects=managedObjects, bwAlarmThresholdName=bwAlarmThresholdName, bwAlarmThresholdIndex=bwAlarmThresholdIndex, bwManagedObjectsEntry=bwManagedObjectsEntry, thresholds=thresholds, bwSoftwarePatchImpactedFileIndex=bwSoftwarePatchImpactedFileIndex, moDeviceModule=moDeviceModule, bwAlarmThresholdMaxNumTrapsPerTimePeriod=bwAlarmThresholdMaxNumTrapsPerTimePeriod, bwAlarmThresholdEntry=bwAlarmThresholdEntry, bwMtcMibCompliancy=bwMtcMibCompliancy, bwSubComponentTable=bwSubComponentTable, broadworks=broadworks, PYSNMP_MODULE_ID=broadsoft, bwSoftwarePatchImpactedFileTable=bwSoftwarePatchImpactedFileTable, common=common, bwSoftwarePatchInstallDate=bwSoftwarePatchInstallDate, bwSoftwareThirdPartyVersion=bwSoftwareThirdPartyVersion, bwSoftwarePatchState=bwSoftwarePatchState, thGaugeModule=thGaugeModule, bwTargetSoftwareVersion=bwTargetSoftwareVersion, bwGaugeThresholdTable=bwGaugeThresholdTable, bwSoftwareThirdPartyTable=bwSoftwareThirdPartyTable, bwCounterThresholdOffsetValue=bwCounterThresholdOffsetValue, bwAlarmThresholdProblemTextVarNum5=bwAlarmThresholdProblemTextVarNum5, bwSoftwarePatchTable=bwSoftwarePatchTable, moServerModule=moServerModule, bwSoftwareVersionName=bwSoftwareVersionName, bwAlarmThresholdMinimumSeverity=bwAlarmThresholdMinimumSeverity, bwSoftwareVersionStatus=bwSoftwareVersionStatus, bwSoftwarePatchHistoryEntry=bwSoftwarePatchHistoryEntry, bwSubComponentIndex=bwSubComponentIndex, bwSoftwarePatchType=bwSoftwarePatchType, bwSoftwareThirdPartyEntry=bwSoftwareThirdPartyEntry, bwSoftwarePatchName=bwSoftwarePatchName)
render = ez.Node() aspect2D = ez.Node() camera = ez.Camera(parent=render) camera.y = -10 #Create a mouse picker for the camera: mouse_picker = ez.collision.MousePicker(camera, mask=ez.mask[1]) #Create a mouse picker for aspect2D: mouse_picker2D = ez.collision.MousePickre2D(mask=ez.mask[1]) #Load a 2D plane and parent it to aspect2D: mesh = ez.load.mesh('plane.bam') plane = ez.Model(mesh, parent=aspect2D) plane.scale = 0.2 plane.x = -0.2 plane.name = "Aspect2D_Plane" ez.collision.set_mask(plane, ez.mask[1]) #Create a model to click on: dirt = ez.load.texture('dirt.png') hex_land = ez.Model( ez.load.mesh('hex.bam'), parent=render) hex_land.shader = ez.load.shader('base.glsl') hex_land.set_shader_input('texture0', dirt) hex_land.p = 45 hex_land.name = "Hex_Model" # Collision Capsule: capsule = ez.collision.shapes.Capsule((0,0,0), (0,0,1), 0.25, parent=render) ez.collision.set_mask(capsule, ez.mask[1]) capsule.pos = 0, -1, 0 capsule.show() capsule.name = "Collision_Capsule" #Enable the same mask on the picker on the hex_land: ez.collision.set_mask(hex_land, ez.mask[1]) # Lets make a font and turn it in to a clickable node: font = ez.load.font('OpenSans-Regular.ttf') t = ez.Text(font) t.text = "Hello World!" t.align = t.A_CENTER t.scale = 0.1 t.color = 1.0, 0.5, 0.0, 1.0 t.set_frame_margin( (0, 0, 0, 0) ) t.frame_color = 0.0, 0.5, 0.5, 1.0 t.set_card_margin( (0, 0, 0, 0) ) t.card_color = 0.4, 0.1, 0.1, 1 t.frame_width = 3 t.frame_corners = True tmesh = t.make_mesh() tnode = ez.Node(tmesh) tnode.name = "Hello World" tnode.parent = aspect2D tnode.pos = 0.5, 0.5, 0 # Make the generate next node clickable: (It is not perfect, gerated card does not cover text perfectly, need to look in to this) ez.collision.set_mask(tnode, ez.mask[1]) def input(event): device, name, state = event if name == 'mouse1' and state == 1: text = ez['text'] #See if the mouse hits anything in UI: hit = mouse_picker2D.get_hit(aspect2D) if hit: text.text="Mouse Selected UI: "+hit['NODE'].name text.text+="\nPosition: "+str(hit['POS']) hit['NODE'].h += 6.0 else: #See if the mouse hits anying on the render node: hit = mouse_picker.get_hit(render) if hit: text.text="Mouse Selected: "+hit['NODE'].name text.text+="\nSelected Normal: "+str(hit['NORMAL']) text.text+="\nPosition: "+str(hit['POS']) node = hit['NODE'] node.set_rr(-6.0, node) else: text.text="Nothing selected" text.text+="\nPosition: "+str(ez.mouse.pos) if name == 'escape' and state == 0: ez.set_scene(ez['menu']) def logic(dt): pass def enter(): ez.window.background_color = 0, 0.0, 0.0 ez.add_input_events(['mouse1']) #Change the mouse cursor: ez.mouse.cursor = ez.load.cursor('m.cur') text = ez['text'] L, R, T, B = ez.window.get_aspect2D_edges() text.x = L+0.02 text.y = T-0.1 text.text = "" text.parent = aspect2D def exit(): ez.remove_input_events(['mouse1']) #Clear the custom mouse cursor: ez.mouse.cursor = None
render = ez.Node() aspect2_d = ez.Node() camera = ez.Camera(parent=render) camera.y = -10 mouse_picker = ez.collision.MousePicker(camera, mask=ez.mask[1]) mouse_picker2_d = ez.collision.MousePickre2D(mask=ez.mask[1]) mesh = ez.load.mesh('plane.bam') plane = ez.Model(mesh, parent=aspect2D) plane.scale = 0.2 plane.x = -0.2 plane.name = 'Aspect2D_Plane' ez.collision.set_mask(plane, ez.mask[1]) dirt = ez.load.texture('dirt.png') hex_land = ez.Model(ez.load.mesh('hex.bam'), parent=render) hex_land.shader = ez.load.shader('base.glsl') hex_land.set_shader_input('texture0', dirt) hex_land.p = 45 hex_land.name = 'Hex_Model' capsule = ez.collision.shapes.Capsule((0, 0, 0), (0, 0, 1), 0.25, parent=render) ez.collision.set_mask(capsule, ez.mask[1]) capsule.pos = (0, -1, 0) capsule.show() capsule.name = 'Collision_Capsule' ez.collision.set_mask(hex_land, ez.mask[1]) font = ez.load.font('OpenSans-Regular.ttf') t = ez.Text(font) t.text = 'Hello World!' t.align = t.A_CENTER t.scale = 0.1 t.color = (1.0, 0.5, 0.0, 1.0) t.set_frame_margin((0, 0, 0, 0)) t.frame_color = (0.0, 0.5, 0.5, 1.0) t.set_card_margin((0, 0, 0, 0)) t.card_color = (0.4, 0.1, 0.1, 1) t.frame_width = 3 t.frame_corners = True tmesh = t.make_mesh() tnode = ez.Node(tmesh) tnode.name = 'Hello World' tnode.parent = aspect2D tnode.pos = (0.5, 0.5, 0) ez.collision.set_mask(tnode, ez.mask[1]) def input(event): (device, name, state) = event if name == 'mouse1' and state == 1: text = ez['text'] hit = mouse_picker2D.get_hit(aspect2D) if hit: text.text = 'Mouse Selected UI: ' + hit['NODE'].name text.text += '\nPosition: ' + str(hit['POS']) hit['NODE'].h += 6.0 else: hit = mouse_picker.get_hit(render) if hit: text.text = 'Mouse Selected: ' + hit['NODE'].name text.text += '\nSelected Normal: ' + str(hit['NORMAL']) text.text += '\nPosition: ' + str(hit['POS']) node = hit['NODE'] node.set_rr(-6.0, node) else: text.text = 'Nothing selected' text.text += '\nPosition: ' + str(ez.mouse.pos) if name == 'escape' and state == 0: ez.set_scene(ez['menu']) def logic(dt): pass def enter(): ez.window.background_color = (0, 0.0, 0.0) ez.add_input_events(['mouse1']) ez.mouse.cursor = ez.load.cursor('m.cur') text = ez['text'] (l, r, t, b) = ez.window.get_aspect2D_edges() text.x = L + 0.02 text.y = T - 0.1 text.text = '' text.parent = aspect2D def exit(): ez.remove_input_events(['mouse1']) ez.mouse.cursor = None
s2= "I am learning Python everyday" s1="Python" def check(s2, s1): if (s2.count(s1) > 0): print("YES") else: print("NO") check(s2, s1) #b print(len(s1)) #c print(s2.replace("Python","C++")) #d print(s2.upper()) #e s2 = s2[:-1] print(s2)
s2 = 'I am learning Python everyday' s1 = 'Python' def check(s2, s1): if s2.count(s1) > 0: print('YES') else: print('NO') check(s2, s1) print(len(s1)) print(s2.replace('Python', 'C++')) print(s2.upper()) s2 = s2[:-1] print(s2)
# -*- coding: utf-8 -*- # SPDX-License-Identifier: MIT __all__ = [ 'commands_ip_route', 'commands_iptables_forwarding', 'is_ipv6', ] CMD_IP = '/sbin/ip' CMD_IPTABLESv4 = '/sbin/iptables' CMD_IPTABLESv6 = '/sbin/ip6tables' def is_ipv6(ip_addr): return (':' in ip_addr) def commands_ip_route(device_name, ip, *, start=None, stop=None): assert bool(start) ^ bool(stop) cmd_ip = (CMD_IP, '-6') if is_ipv6(ip) else (CMD_IP, '-4') ip_verb = 'add' if start else 'del' commands = [ (*cmd_ip, 'route', ip_verb, ip, 'dev', device_name), ] return commands def commands_iptables_forwarding(device_name, ip, *, start=None, stop=None): assert bool(start) ^ bool(stop) iptables_cmd = '--insert' if start else '--delete' commands = [] iptables = CMD_IPTABLESv6 if is_ipv6(ip) else CMD_IPTABLESv4 commands.extend(( (iptables, iptables_cmd, 'FORWARD', '--in-interface', device_name, '--source', ip, '-j', 'ACCEPT'), (iptables, iptables_cmd, 'FORWARD', '--out-interface', device_name, '--destination', ip, '-j', 'ACCEPT'), )) return commands
__all__ = ['commands_ip_route', 'commands_iptables_forwarding', 'is_ipv6'] cmd_ip = '/sbin/ip' cmd_iptable_sv4 = '/sbin/iptables' cmd_iptable_sv6 = '/sbin/ip6tables' def is_ipv6(ip_addr): return ':' in ip_addr def commands_ip_route(device_name, ip, *, start=None, stop=None): assert bool(start) ^ bool(stop) cmd_ip = (CMD_IP, '-6') if is_ipv6(ip) else (CMD_IP, '-4') ip_verb = 'add' if start else 'del' commands = [(*cmd_ip, 'route', ip_verb, ip, 'dev', device_name)] return commands def commands_iptables_forwarding(device_name, ip, *, start=None, stop=None): assert bool(start) ^ bool(stop) iptables_cmd = '--insert' if start else '--delete' commands = [] iptables = CMD_IPTABLESv6 if is_ipv6(ip) else CMD_IPTABLESv4 commands.extend(((iptables, iptables_cmd, 'FORWARD', '--in-interface', device_name, '--source', ip, '-j', 'ACCEPT'), (iptables, iptables_cmd, 'FORWARD', '--out-interface', device_name, '--destination', ip, '-j', 'ACCEPT'))) return commands
LMS_LEVELS = { "programme_preliminaries": 1, "programming_paradigms": 1, "html_essentials": 1, "css_essentials": 1, "user_centric_frontend_development": 1, "comparative_programming_languages_essentials": 2, "javascript_essentials": 2, "interactive_frontend_development": 2, "python_essentials": 3, "practical_python": 3, "data_centric_development": 3, "backend_development": 3, "full_stack_frameworks_with_django": 4, "alumni": 5, "staff": 6, }
lms_levels = {'programme_preliminaries': 1, 'programming_paradigms': 1, 'html_essentials': 1, 'css_essentials': 1, 'user_centric_frontend_development': 1, 'comparative_programming_languages_essentials': 2, 'javascript_essentials': 2, 'interactive_frontend_development': 2, 'python_essentials': 3, 'practical_python': 3, 'data_centric_development': 3, 'backend_development': 3, 'full_stack_frameworks_with_django': 4, 'alumni': 5, 'staff': 6}
def main(): n, k, l, c, d, p, nl, np = list(map(int, input().split())) total_drink = k*l total_limes = c*d total_salt = p print(int(min(int(total_drink/nl), total_limes, int(total_salt/np))/n)) if __name__=='__main__': main()
def main(): (n, k, l, c, d, p, nl, np) = list(map(int, input().split())) total_drink = k * l total_limes = c * d total_salt = p print(int(min(int(total_drink / nl), total_limes, int(total_salt / np)) / n)) if __name__ == '__main__': main()
input = """ ok(X) :- p(f(X)), q(f(X)). q(X) :- p(X). p(f(a)). p(f(b,a)). p(g(c)). """ output = """ ok(X) :- p(f(X)), q(f(X)). q(X) :- p(X). p(f(a)). p(f(b,a)). p(g(c)). """
input = '\nok(X) :- p(f(X)), q(f(X)).\nq(X) :- p(X).\n\np(f(a)).\np(f(b,a)).\np(g(c)).\n' output = '\nok(X) :- p(f(X)), q(f(X)).\nq(X) :- p(X).\n\np(f(a)).\np(f(b,a)).\np(g(c)).\n'
""" kustomize actions """ def kustomize_build_action(ctx, srcs, deps, dir, out): """Run a build of the kustomize Args: ctx: arguments description, can be multiline with additional indentation. srcs: source files out: output directory deps: dependencies dir: directory to run kustomize from """ # setup the args passed to kustomize launcher_args = ctx.actions.args() launcher_args.add_all([ "build", dir, "-o", out, "--load-restrictor=LoadRestrictionsNone", ]) outputs = [] outputs.append(out) execution_requirements = {} if "no-remote-exec" in ctx.attr.tags: execution_requirements = {"no-remote-exec": "1"} ctx.actions.run( outputs = outputs, inputs = srcs, executable = ctx.toolchains["@ubiquitous_tech_rules_kustomize//kustomize:toolchain_type"].kustomizeinfo.target_tool_path, arguments = [launcher_args], mnemonic = "Kustomize", )
""" kustomize actions """ def kustomize_build_action(ctx, srcs, deps, dir, out): """Run a build of the kustomize Args: ctx: arguments description, can be multiline with additional indentation. srcs: source files out: output directory deps: dependencies dir: directory to run kustomize from """ launcher_args = ctx.actions.args() launcher_args.add_all(['build', dir, '-o', out, '--load-restrictor=LoadRestrictionsNone']) outputs = [] outputs.append(out) execution_requirements = {} if 'no-remote-exec' in ctx.attr.tags: execution_requirements = {'no-remote-exec': '1'} ctx.actions.run(outputs=outputs, inputs=srcs, executable=ctx.toolchains['@ubiquitous_tech_rules_kustomize//kustomize:toolchain_type'].kustomizeinfo.target_tool_path, arguments=[launcher_args], mnemonic='Kustomize')
# contains the processing code for the ticketer. class Processor(object): def __init__(self): pass def say(self, message): return message + "\n"
class Processor(object): def __init__(self): pass def say(self, message): return message + '\n'
""" Event action's base class. """ class BaseEventAction(object): """ Event action's base class. """ key = "" name = "" def func(self, event, character): """ Event action's function. """ pass
""" Event action's base class. """ class Baseeventaction(object): """ Event action's base class. """ key = '' name = '' def func(self, event, character): """ Event action's function. """ pass
EMAIL_SERVER = None PORT = None SENDER_EMAIL = None PASSWORD = None RECIEVER_EMAIL = None
email_server = None port = None sender_email = None password = None reciever_email = None
# Python - 3.6.0 Test.describe('Basic tests') Test.assert_equals(volume(7, 3), 153) Test.assert_equals(volume(56, 30), 98520) Test.assert_equals(volume(0, 10), 0) Test.assert_equals(volume(10, 0), 0) Test.assert_equals(volume(0, 0), 0)
Test.describe('Basic tests') Test.assert_equals(volume(7, 3), 153) Test.assert_equals(volume(56, 30), 98520) Test.assert_equals(volume(0, 10), 0) Test.assert_equals(volume(10, 0), 0) Test.assert_equals(volume(0, 0), 0)
# OpenWeatherMap API Key weather_api_key = "Put Key Here" # Google API Key g_key = "Put key here"
weather_api_key = 'Put Key Here' g_key = 'Put key here'
class Node: """ Class representation of a Node for use in a Doubly Linked List """ def __init__(self, data): self.data = data self.prev = None self.next = None class DoublyLinkedList: """ Representation of a Singly Linked List Methods: - to_list() - O(N) returns a list representation of the SinglyLinkedList - push(data) - O(1) adds data onto the end of the list - pop() - O(1) removes and returns the last node in the list - unshift(data) - O(1) adds data to the front of the list - shift() - O(1) removes first element in list - get(index) - O(N/2) returns Node at index - set(index, data) - O(N/2) sets the data at the given index - insert(index, data) - O(N/2) inserts data at index - delete(index) - O(N/2) removes node at index - clear() - O(1) Removes all nodes """ def __init__(self): self.length = 0 self.head = None self.tail = None def to_list(self): """ Converts the Linked List into a python native datatype List O(N) @return List """ returnList = [] if(self.length <= 0): return returnList currentNode = self.head while(currentNode is not None): returnList.append(currentNode.data) currentNode = currentNode.next return returnList def push(self, data): """ Adds data to the end of the list O(1) @param {*} data @return DoublyLinkedList """ newNode = Node(data) if(self.length == 0): # empty list, set head and tail, do not set next/prev self.head = newNode self.tail = newNode else: # list not empty, push newNode right of tail self.tail.next = newNode newNode.prev = self.tail self.tail = newNode self.length += 1 return self def pop(self): """ Removes and returns the last node in the list O(1) @return Node || None """ if(self.length == 0): return None # pop the tail popped = self.tail if(self.length == 1): # single node in list, remove the head # and null out head/tail self.head = None self.tail = None else: # set the new tail to popped.prev self.tail = popped.prev self.tail.next = None self.length -= 1 popped.prev = None return popped def unshift(self, data): """ Adds data to the front of the list O(1) @param {*} data @return DoublyLinkedList """ if(self.length == 0): return self.push(data) newNode = Node(data) # connect newNode and self.head self.head.prev = newNode newNode.next = self.head # set head to newNode self.head = newNode self.length += 1 return self def shift(self): """ Removes data from the front of the list O(1) @return Node || None """ if(self.length == 0): return None if(self.length == 1): return self.pop() shifted = self.head # move head right and remove references to prev self.head = self.head.next self.head.prev = None # remove shift references to next shifted.next = None # increment lenth and return node self.length -= 1 return shifted def get(self, index): """ Get node at index O(N/2) @param {number} index @return Node || None """ if (index < 0) or (index >= self.length): return None currentNode = None if (index > self.length / 2): # index is right of halfway, work left from tail currentNode = self.tail for _ in range(self.length - 1, index, -1): # from 0 to index (exclusive) # ex: index = 5, loop from 0 to 4 currentNode = currentNode.prev else: # index is left of halfway, work right from head currentNode = self.head for _ in range(0, index): # from 0 to index (exclusive) # ex: index = 5, loop from 0 to 4 currentNode = currentNode.next return currentNode def set(self, index, data): node = self.get(index) if(node is not None): node.data = data return node def insert(self, index, data): """ inserts data at index O(N/2) @param {number} index @param {*} data @return DoublyLinkedList || None """ if (index < 0) or (index > self.length): return None if (index == 0): # insert at head, push return self.unshift(data) if (index == self.length): return self.push(data) newNode = Node(data) indexNode = self.get(index) # push indexNode node right, inserting newNode at the given index newNode.next = indexNode newNode.prev = indexNode.prev indexNode.prev.next = newNode indexNode.prev = newNode self.length += 1 return self def delete(self, index): """ Removes and returns node at index O(N/2) @param {number} index @return None || None """ if(index < 0) or (index >= self.length): return None if(index == 0): # deleting from head, just shift return self.shift() if(index == self.length - 1): return self.pop() # remove node at index, and create connections between # the neighboring left and right nodes indexNode = self.get(index) prevNode = indexNode.prev nextNode = indexNode.next prevNode.next = nextNode nextNode.prev = prevNode self.length -= 1 return indexNode def clear(self): """ Empties list O(1) @return DoublyLinkedList """ self.head = None self.tail = None self.length = 0 return self
class Node: """ Class representation of a Node for use in a Doubly Linked List """ def __init__(self, data): self.data = data self.prev = None self.next = None class Doublylinkedlist: """ Representation of a Singly Linked List Methods: - to_list() - O(N) returns a list representation of the SinglyLinkedList - push(data) - O(1) adds data onto the end of the list - pop() - O(1) removes and returns the last node in the list - unshift(data) - O(1) adds data to the front of the list - shift() - O(1) removes first element in list - get(index) - O(N/2) returns Node at index - set(index, data) - O(N/2) sets the data at the given index - insert(index, data) - O(N/2) inserts data at index - delete(index) - O(N/2) removes node at index - clear() - O(1) Removes all nodes """ def __init__(self): self.length = 0 self.head = None self.tail = None def to_list(self): """ Converts the Linked List into a python native datatype List O(N) @return List """ return_list = [] if self.length <= 0: return returnList current_node = self.head while currentNode is not None: returnList.append(currentNode.data) current_node = currentNode.next return returnList def push(self, data): """ Adds data to the end of the list O(1) @param {*} data @return DoublyLinkedList """ new_node = node(data) if self.length == 0: self.head = newNode self.tail = newNode else: self.tail.next = newNode newNode.prev = self.tail self.tail = newNode self.length += 1 return self def pop(self): """ Removes and returns the last node in the list O(1) @return Node || None """ if self.length == 0: return None popped = self.tail if self.length == 1: self.head = None self.tail = None else: self.tail = popped.prev self.tail.next = None self.length -= 1 popped.prev = None return popped def unshift(self, data): """ Adds data to the front of the list O(1) @param {*} data @return DoublyLinkedList """ if self.length == 0: return self.push(data) new_node = node(data) self.head.prev = newNode newNode.next = self.head self.head = newNode self.length += 1 return self def shift(self): """ Removes data from the front of the list O(1) @return Node || None """ if self.length == 0: return None if self.length == 1: return self.pop() shifted = self.head self.head = self.head.next self.head.prev = None shifted.next = None self.length -= 1 return shifted def get(self, index): """ Get node at index O(N/2) @param {number} index @return Node || None """ if index < 0 or index >= self.length: return None current_node = None if index > self.length / 2: current_node = self.tail for _ in range(self.length - 1, index, -1): current_node = currentNode.prev else: current_node = self.head for _ in range(0, index): current_node = currentNode.next return currentNode def set(self, index, data): node = self.get(index) if node is not None: node.data = data return node def insert(self, index, data): """ inserts data at index O(N/2) @param {number} index @param {*} data @return DoublyLinkedList || None """ if index < 0 or index > self.length: return None if index == 0: return self.unshift(data) if index == self.length: return self.push(data) new_node = node(data) index_node = self.get(index) newNode.next = indexNode newNode.prev = indexNode.prev indexNode.prev.next = newNode indexNode.prev = newNode self.length += 1 return self def delete(self, index): """ Removes and returns node at index O(N/2) @param {number} index @return None || None """ if index < 0 or index >= self.length: return None if index == 0: return self.shift() if index == self.length - 1: return self.pop() index_node = self.get(index) prev_node = indexNode.prev next_node = indexNode.next prevNode.next = nextNode nextNode.prev = prevNode self.length -= 1 return indexNode def clear(self): """ Empties list O(1) @return DoublyLinkedList """ self.head = None self.tail = None self.length = 0 return self
def max_number(input_num): """Create largest possible number out of the input. Parameters ---------- input_num : int Positive integer. Returns ------- max_num : int Maximum number that can be made out of digits present in input_num. """ num_to_str = str(input_num) num_to_list = list(num_to_str) num_to_list.sort(reverse=True) max_str = "".join(num_to_list) max_num = int(max_str) return max_num
def max_number(input_num): """Create largest possible number out of the input. Parameters ---------- input_num : int Positive integer. Returns ------- max_num : int Maximum number that can be made out of digits present in input_num. """ num_to_str = str(input_num) num_to_list = list(num_to_str) num_to_list.sort(reverse=True) max_str = ''.join(num_to_list) max_num = int(max_str) return max_num
""" This script implements Min-Heaps. """ class MinHeap: def __init__(self): self.items = [] def leftIndex(self, parent): return 2*parent def rightIndex(self, parent): return 2*parent+1 def parentIndex(self, child): return (child-1)//2 def hasLeft(self, parent): return len(self.items) > self.leftIndex(parent) def hasRight(self, parent): return len(self.items) > self.rightIndex(parent) def hasParent(self, child): return self.parentIndex(child) > -1 def getLeft(self, parent): return self.items[self.leftIndex(parent)] def getRight(self, parent): return self.items[self.rightIndex(parent)] def getParent(self, child): return self.items[self.parentIndex(child)] def peek(self): return self.items[-1] def minElement(self): return self.items[0] def printHeap(self): return self.items def swap(self, indexOne, indexTwo): self.items[indexOne], self.items[indexTwo] = self.items[indexTwo], self.items[indexOne] def heapifyUp(self): index = len(self.items) - 1 while (self.hasParent(index) and self.getParent(index) > self.items[index]): self.swap(self.parentIndex(index), index) index = self.parentIndex(index) def heapifyDown(self): index = 0 while (self.hasLeft(index)): if (self.hasRight(index) and self.getRight(index) < self.getLeft(index)): smallestChildIndex = self.rightIndex(index) else: smallestChildIndex = self.leftIndex(index) if self.items[index] < self.items[smallestChildIndex]: break else: self.swap(index, smallestChildIndex) index = smallestChildIndex def add(self, item): self.items.append(item) self.heapifyUp() def poll(self): if not self.items: raise Exception("Heap is empty!") self.items[0] = self.items.pop() self.heapifyDown() if __name__ == "__main__": heap = MinHeap() heap.add(10) heap.add(15) heap.add(20) heap.add(17) print(heap.printHeap()) heap.add(8) print(heap.printHeap()) heap.poll() print(heap.printHeap())
""" This script implements Min-Heaps. """ class Minheap: def __init__(self): self.items = [] def left_index(self, parent): return 2 * parent def right_index(self, parent): return 2 * parent + 1 def parent_index(self, child): return (child - 1) // 2 def has_left(self, parent): return len(self.items) > self.leftIndex(parent) def has_right(self, parent): return len(self.items) > self.rightIndex(parent) def has_parent(self, child): return self.parentIndex(child) > -1 def get_left(self, parent): return self.items[self.leftIndex(parent)] def get_right(self, parent): return self.items[self.rightIndex(parent)] def get_parent(self, child): return self.items[self.parentIndex(child)] def peek(self): return self.items[-1] def min_element(self): return self.items[0] def print_heap(self): return self.items def swap(self, indexOne, indexTwo): (self.items[indexOne], self.items[indexTwo]) = (self.items[indexTwo], self.items[indexOne]) def heapify_up(self): index = len(self.items) - 1 while self.hasParent(index) and self.getParent(index) > self.items[index]: self.swap(self.parentIndex(index), index) index = self.parentIndex(index) def heapify_down(self): index = 0 while self.hasLeft(index): if self.hasRight(index) and self.getRight(index) < self.getLeft(index): smallest_child_index = self.rightIndex(index) else: smallest_child_index = self.leftIndex(index) if self.items[index] < self.items[smallestChildIndex]: break else: self.swap(index, smallestChildIndex) index = smallestChildIndex def add(self, item): self.items.append(item) self.heapifyUp() def poll(self): if not self.items: raise exception('Heap is empty!') self.items[0] = self.items.pop() self.heapifyDown() if __name__ == '__main__': heap = min_heap() heap.add(10) heap.add(15) heap.add(20) heap.add(17) print(heap.printHeap()) heap.add(8) print(heap.printHeap()) heap.poll() print(heap.printHeap())
class Node(object): def __init__(self, value, data=None, left=None, right=None): """ Instantiates the first Node """ self.value = value self.data = data self.left = left self.right = right def __str__(self): """ Returns a string """ return f'{self.value}' def __repr__(self): """ Returns a more highly formatted string """ return f' <Node | Value: {self.value} | Data: {self.data} | Left: {self.left} | Right: {self.right} >' class BinaryTree: def __init__(self, iterable=None): """ Instatiates the first BinaryTree """ self.root = None if iterable: for i in iterable: self.insert(i) def __str__(self): """ String representation of the BinaryTree """ return f'{self.value}' def __repr__(self): """ Technical representation of the BinaryTree """ return f' <Node | Value: {self.root.value} | Root : {self.root}>' def insert(self, val): """ Given root node, go left or right, get to child, go left, right or insert? Does not need to be self balancing. """ new_node = Node(val) if self.root is None: self.root = new_node return current = self.root while True: if val == current.value: raise ValueError('Value is already in the tree') if val > current.value: if current.right is None: current.right = new_node return False else: current = current.right if val < current.value: if current.left is None: current.left = new_node return False else: current = current.left def in_order(self, callable=lambda node: print(node)): """ Go left, visit, go right. """ def _walk(node=None): """ recursion! Function calls itself. The recursion needs to know when to stop. The return here acts at the base case when the node is None """ if node is None: return # go left if node.left is not None: _walk(node.left) # visit, runs lambda and prints the node callable(node) # go right if node.right is not None: _walk(node.right) # call walk for the first time and pass in the root _walk(self.root) def pre_order(self, callable=lambda node: print(node)): """ Visit, go left, go right """ def _walk(node=None): """ recursion! Function calls itself. The recursion needs to know when to stop. The return here acts at the base case when the node is None """ if node is None: return # visit, runs lambda and prints the node callable(node) # go left if node.left is not None: _walk(node.left) # go right if node.right is not None: _walk(node.right) # call walk for the first time and pass in the root _walk(self.root) def post_order(self, callable=lambda node: print(node)): """ Go left, go right, visit """ def _walk(node=None): """ recursion! Function calls itself. The recursion needs to know when to stop. The return here acts at the base case when the node is None """ if node is None: return # go left if node.left is not None: _walk(node.left) # go right if node.right is not None: _walk(node.right) # visit, runs lambda and prints the node callable(node) # call walk for the first time and pass in the root _walk(self.root)
class Node(object): def __init__(self, value, data=None, left=None, right=None): """ Instantiates the first Node """ self.value = value self.data = data self.left = left self.right = right def __str__(self): """ Returns a string """ return f'{self.value}' def __repr__(self): """ Returns a more highly formatted string """ return f' <Node | Value: {self.value} | Data: {self.data} | Left: {self.left} | Right: {self.right} >' class Binarytree: def __init__(self, iterable=None): """ Instatiates the first BinaryTree """ self.root = None if iterable: for i in iterable: self.insert(i) def __str__(self): """ String representation of the BinaryTree """ return f'{self.value}' def __repr__(self): """ Technical representation of the BinaryTree """ return f' <Node | Value: {self.root.value} | Root : {self.root}>' def insert(self, val): """ Given root node, go left or right, get to child, go left, right or insert? Does not need to be self balancing. """ new_node = node(val) if self.root is None: self.root = new_node return current = self.root while True: if val == current.value: raise value_error('Value is already in the tree') if val > current.value: if current.right is None: current.right = new_node return False else: current = current.right if val < current.value: if current.left is None: current.left = new_node return False else: current = current.left def in_order(self, callable=lambda node: print(node)): """ Go left, visit, go right. """ def _walk(node=None): """ recursion! Function calls itself. The recursion needs to know when to stop. The return here acts at the base case when the node is None """ if node is None: return if node.left is not None: _walk(node.left) callable(node) if node.right is not None: _walk(node.right) _walk(self.root) def pre_order(self, callable=lambda node: print(node)): """ Visit, go left, go right """ def _walk(node=None): """ recursion! Function calls itself. The recursion needs to know when to stop. The return here acts at the base case when the node is None """ if node is None: return callable(node) if node.left is not None: _walk(node.left) if node.right is not None: _walk(node.right) _walk(self.root) def post_order(self, callable=lambda node: print(node)): """ Go left, go right, visit """ def _walk(node=None): """ recursion! Function calls itself. The recursion needs to know when to stop. The return here acts at the base case when the node is None """ if node is None: return if node.left is not None: _walk(node.left) if node.right is not None: _walk(node.right) callable(node) _walk(self.root)
""" Zola site builder """ load(":content_group.bzl", "ZolaContentGroupInfo") load("@bazel_skylib//lib:paths.bzl", "paths") def _site_path(ctx, path = ""): return paths.join(ctx.label.name + "_site_content", path) def _generated_html_path(ctx, path = ""): return "/".join([ctx.label.name, path]) def zola_site_init(ctx): """ Initialises a Zola site Args: ctx: Rule context. Returns: depset of files created during init """ config = ctx.actions.declare_file(_site_path(ctx, "config.toml")) ctx.actions.symlink( output = config, target_file = ctx.file.config, ) return config def zola_site_init_impl(ctx): return DefaultInfo(files = depset([zola_site_init(ctx)])) def zola_declare_files(ctx, deps, zola_directory = ""): """ Declares files for a Zola site Args: ctx: Rule context. deps: Dependencies to declare. zola_directory: Directory to declare files in. Returns: List of declared input files. """ content = [dep[ZolaContentGroupInfo] for dep in deps] file_mapping = depset(transitive = [ dep.file_mapping for dep in content ]) content_files = [] for map in file_mapping.to_list(): if not zola_directory: normalised_zola_directory = "" else: normalised_zola_directory = zola_directory + "/" zola_path = _site_path( ctx, normalised_zola_directory + map.zola_prefix, ) content_output_file = ctx.actions.declare_file(zola_path) content_files.append(content_output_file) ctx.actions.symlink( output = content_output_file, target_file = map.file, ) return content_files def zola_declare_content(ctx): return zola_declare_files(ctx, ctx.attr.content, "content") def zola_declare_themes(ctx): return zola_declare_files(ctx, ctx.attr.themes, "themes") def zola_declare_static(ctx): return zola_declare_files(ctx, ctx.attr.static, "static") def zola_declare_sass(ctx): return zola_declare_files(ctx, ctx.attr.sass, "sass") def zola_declare_templates(ctx): return zola_declare_files(ctx, ctx.attr.templates, "templates") def _zola_site_impl(ctx): config = zola_site_init(ctx) content = zola_declare_content(ctx) themes = zola_declare_themes(ctx) static = zola_declare_static(ctx) sass = zola_declare_sass(ctx) templates = zola_declare_templates(ctx) root = config.dirname default_outputs = [ # _generated_html_path(ctx), _generated_html_path(ctx, "404.html"), _generated_html_path(ctx, "index.html"), _generated_html_path(ctx, "robots.txt"), _generated_html_path(ctx, "sitemap.xml"), _generated_html_path(ctx, "main.css"), _generated_html_path(ctx, "search_index.en.js"), _generated_html_path(ctx, "elasticlunr.min.js"), ] content_outputs = [ _generated_html_path( ctx, paths.relativize(content_file.path, root)[len("content/"):] .replace(".md", "/index.html") .replace("_", "-"), ) for content_file in content if content_file.basename != "_index.md" ] static_outputs = [ _generated_html_path( ctx, paths.relativize(static_file.path, root)[len("static/"):], ) for static_file in static ] theme_static_inputs = [ file for file in themes if ctx.attr.theme + "/static/" in file.short_path ] theme_static_outputs = [ _generated_html_path( ctx, paths.relativize(static_file.path, root), ).replace( "themes/" + ctx.attr.theme + "/static", "", ) for static_file in theme_static_inputs ] css_outputs = [ _generated_html_path( ctx, paths.relativize(sass_file.path, root), ) for sass_file in sass ] theme_css_inputs = [ file for file in themes if ctx.attr.theme + "/sass/" in file.short_path and file.basename.endswith(".scss") and not file.basename.startswith("_") ] theme_css_outputs = [ _generated_html_path( ctx, paths.relativize(css_file.path, root), ).replace( "themes/" + ctx.attr.theme + "/sass/", "", ).replace(".scss", ".css") for css_file in theme_css_inputs ] outputs = [ ctx.actions.declare_file(output) for output in default_outputs + content_outputs + theme_static_outputs + static_outputs + theme_css_outputs + css_outputs ] ctx.actions.run_shell( outputs = outputs, inputs = [config] + content + themes + static + sass + templates, tools = [ctx.executable._zola, ctx.executable._touch], command = """ {_zola} --root {root} build -o {output_directory} && \ {_touch} {outputs}""".format( _zola = ctx.executable._zola.path, _touch = ctx.executable._touch.path, root = root, output_directory = paths.join(ctx.bin_dir.path, ctx.label.package, ctx.label.name), outputs = " ".join([output.path for output in outputs]), ), progress_message = "Building site: " + str(ctx.label), ) return [DefaultInfo( files = depset(outputs), )] zola_site = rule( _zola_site_impl, attrs = { "config": attr.label( doc = "The sites config.toml", allow_single_file = [".toml"], mandatory = True, ), "content": attr.label_list( doc = "List of zola_content_groups.", providers = [ZolaContentGroupInfo], ), "sass": attr.label_list( doc = "Site sass style sheets.", providers = [ZolaContentGroupInfo], ), "static": attr.label_list( doc = "Static content.", providers = [ZolaContentGroupInfo], ), "templates": attr.label_list( doc = "Site templates.", providers = [ZolaContentGroupInfo], ), "themes": attr.label_list( doc = "A list of themes to add to this site. This is useful for \ themes that inherit from others. This should be used with the 'theme' attribute.", providers = [ZolaContentGroupInfo], ), "theme": attr.string( doc = "The theme that is specified in the config.toml.", ), "_zola": attr.label( doc = "The zola executable", allow_single_file = True, executable = True, default = "@rules_zola//zola", cfg = "exec", ), "_touch": attr.label( doc = "The touch executable", allow_single_file = True, executable = True, default = "@rules_zola//tools/touch", cfg = "exec", ), }, )
""" Zola site builder """ load(':content_group.bzl', 'ZolaContentGroupInfo') load('@bazel_skylib//lib:paths.bzl', 'paths') def _site_path(ctx, path=''): return paths.join(ctx.label.name + '_site_content', path) def _generated_html_path(ctx, path=''): return '/'.join([ctx.label.name, path]) def zola_site_init(ctx): """ Initialises a Zola site Args: ctx: Rule context. Returns: depset of files created during init """ config = ctx.actions.declare_file(_site_path(ctx, 'config.toml')) ctx.actions.symlink(output=config, target_file=ctx.file.config) return config def zola_site_init_impl(ctx): return default_info(files=depset([zola_site_init(ctx)])) def zola_declare_files(ctx, deps, zola_directory=''): """ Declares files for a Zola site Args: ctx: Rule context. deps: Dependencies to declare. zola_directory: Directory to declare files in. Returns: List of declared input files. """ content = [dep[ZolaContentGroupInfo] for dep in deps] file_mapping = depset(transitive=[dep.file_mapping for dep in content]) content_files = [] for map in file_mapping.to_list(): if not zola_directory: normalised_zola_directory = '' else: normalised_zola_directory = zola_directory + '/' zola_path = _site_path(ctx, normalised_zola_directory + map.zola_prefix) content_output_file = ctx.actions.declare_file(zola_path) content_files.append(content_output_file) ctx.actions.symlink(output=content_output_file, target_file=map.file) return content_files def zola_declare_content(ctx): return zola_declare_files(ctx, ctx.attr.content, 'content') def zola_declare_themes(ctx): return zola_declare_files(ctx, ctx.attr.themes, 'themes') def zola_declare_static(ctx): return zola_declare_files(ctx, ctx.attr.static, 'static') def zola_declare_sass(ctx): return zola_declare_files(ctx, ctx.attr.sass, 'sass') def zola_declare_templates(ctx): return zola_declare_files(ctx, ctx.attr.templates, 'templates') def _zola_site_impl(ctx): config = zola_site_init(ctx) content = zola_declare_content(ctx) themes = zola_declare_themes(ctx) static = zola_declare_static(ctx) sass = zola_declare_sass(ctx) templates = zola_declare_templates(ctx) root = config.dirname default_outputs = [_generated_html_path(ctx, '404.html'), _generated_html_path(ctx, 'index.html'), _generated_html_path(ctx, 'robots.txt'), _generated_html_path(ctx, 'sitemap.xml'), _generated_html_path(ctx, 'main.css'), _generated_html_path(ctx, 'search_index.en.js'), _generated_html_path(ctx, 'elasticlunr.min.js')] content_outputs = [_generated_html_path(ctx, paths.relativize(content_file.path, root)[len('content/'):].replace('.md', '/index.html').replace('_', '-')) for content_file in content if content_file.basename != '_index.md'] static_outputs = [_generated_html_path(ctx, paths.relativize(static_file.path, root)[len('static/'):]) for static_file in static] theme_static_inputs = [file for file in themes if ctx.attr.theme + '/static/' in file.short_path] theme_static_outputs = [_generated_html_path(ctx, paths.relativize(static_file.path, root)).replace('themes/' + ctx.attr.theme + '/static', '') for static_file in theme_static_inputs] css_outputs = [_generated_html_path(ctx, paths.relativize(sass_file.path, root)) for sass_file in sass] theme_css_inputs = [file for file in themes if ctx.attr.theme + '/sass/' in file.short_path and file.basename.endswith('.scss') and (not file.basename.startswith('_'))] theme_css_outputs = [_generated_html_path(ctx, paths.relativize(css_file.path, root)).replace('themes/' + ctx.attr.theme + '/sass/', '').replace('.scss', '.css') for css_file in theme_css_inputs] outputs = [ctx.actions.declare_file(output) for output in default_outputs + content_outputs + theme_static_outputs + static_outputs + theme_css_outputs + css_outputs] ctx.actions.run_shell(outputs=outputs, inputs=[config] + content + themes + static + sass + templates, tools=[ctx.executable._zola, ctx.executable._touch], command=' \n{_zola} --root {root} build -o {output_directory} && {_touch} {outputs}'.format(_zola=ctx.executable._zola.path, _touch=ctx.executable._touch.path, root=root, output_directory=paths.join(ctx.bin_dir.path, ctx.label.package, ctx.label.name), outputs=' '.join([output.path for output in outputs])), progress_message='Building site: ' + str(ctx.label)) return [default_info(files=depset(outputs))] zola_site = rule(_zola_site_impl, attrs={'config': attr.label(doc='The sites config.toml', allow_single_file=['.toml'], mandatory=True), 'content': attr.label_list(doc='List of zola_content_groups.', providers=[ZolaContentGroupInfo]), 'sass': attr.label_list(doc='Site sass style sheets.', providers=[ZolaContentGroupInfo]), 'static': attr.label_list(doc='Static content.', providers=[ZolaContentGroupInfo]), 'templates': attr.label_list(doc='Site templates.', providers=[ZolaContentGroupInfo]), 'themes': attr.label_list(doc="A list of themes to add to this site. This is useful for themes that inherit from others. This should be used with the 'theme' attribute.", providers=[ZolaContentGroupInfo]), 'theme': attr.string(doc='The theme that is specified in the config.toml.'), '_zola': attr.label(doc='The zola executable', allow_single_file=True, executable=True, default='@rules_zola//zola', cfg='exec'), '_touch': attr.label(doc='The touch executable', allow_single_file=True, executable=True, default='@rules_zola//tools/touch', cfg='exec')})
BASE_URL = 'http://api.fantasy.nfl.com/v1/players/stats?statType={}&season={}&format=json{}' STAT_URL = 'http://api.fantasy.nfl.com/v1/game/stats?format=json' USEFUL_DATA = ('name', 'position', 'stats', 'teamAbbr') ALL_WEEKS = [x for x in range(1,18)] ONE_HOUR = 3600 VALID_POSITIONS = ( 'QB', 'RB', 'WR', 'TE', 'DEF' ) OFFENSIVE_SCORING_MULTIPLIERS = { 5: 0.04, 6: 4, 7: -1, 14: 0.1, 15: 6, 20: 1, 21: 0.1, 22: 6, 28: 6, 29: 6, 30: -1, 32: 2, 45: 1, 46: 2, 47: 2, 49: 2, 50: 6, 51: 2, 53: 6 } DEFENSIVE_SCORING_MULTIPLIERS = { 45: 1, 46: 2, 47: 2, 49: 2, 50: 6, 51: 2, 53: 6, }
base_url = 'http://api.fantasy.nfl.com/v1/players/stats?statType={}&season={}&format=json{}' stat_url = 'http://api.fantasy.nfl.com/v1/game/stats?format=json' useful_data = ('name', 'position', 'stats', 'teamAbbr') all_weeks = [x for x in range(1, 18)] one_hour = 3600 valid_positions = ('QB', 'RB', 'WR', 'TE', 'DEF') offensive_scoring_multipliers = {5: 0.04, 6: 4, 7: -1, 14: 0.1, 15: 6, 20: 1, 21: 0.1, 22: 6, 28: 6, 29: 6, 30: -1, 32: 2, 45: 1, 46: 2, 47: 2, 49: 2, 50: 6, 51: 2, 53: 6} defensive_scoring_multipliers = {45: 1, 46: 2, 47: 2, 49: 2, 50: 6, 51: 2, 53: 6}
class InterfaceMeta(type): def __new__(cls, name, bases, attrs): if "salad" not in attrs: attrs["salad"] = "salad" return super().__new__(cls, name, bases, attrs) class Interface(metaclass=InterfaceMeta): def __init__(self, potato): self.potato = potato def test_meta(): a = Interface("1") assert a.salad == "salad"
class Interfacemeta(type): def __new__(cls, name, bases, attrs): if 'salad' not in attrs: attrs['salad'] = 'salad' return super().__new__(cls, name, bases, attrs) class Interface(metaclass=InterfaceMeta): def __init__(self, potato): self.potato = potato def test_meta(): a = interface('1') assert a.salad == 'salad'
# The variable number is just reference to the object 1001 number = 1001 print(id(number)) print(id(1001)) a1 = 2 print('a1: ', id(a1)) a2 = a1 + 1 print('a2: ', id(a2)) print('three: ', id(3)) b1 = 2 print('b1: ', id(b1)) print('Two: ', id(2)) # All bellow assignments to the 'something' variable is a valid code something = 12 something = "Python" something = ['a', 2, True] def hello(): print('Hello World') something = hello something() print('\n*-----Functions-----*\n') def outer(): outer_number = 10 print(id(outer_number)) global_number = 55 print('Global number = ', global_number) def inner(): inner_number = 200 print('Inner number = ', inner_number) inner_number = 'Belchior' print('Inner number = ', inner_number) outer_number = 500 print(id(outer_number)) print('Outer number = ', outer_number) inner() global_number = 100 outer()
number = 1001 print(id(number)) print(id(1001)) a1 = 2 print('a1: ', id(a1)) a2 = a1 + 1 print('a2: ', id(a2)) print('three: ', id(3)) b1 = 2 print('b1: ', id(b1)) print('Two: ', id(2)) something = 12 something = 'Python' something = ['a', 2, True] def hello(): print('Hello World') something = hello something() print('\n*-----Functions-----*\n') def outer(): outer_number = 10 print(id(outer_number)) global_number = 55 print('Global number = ', global_number) def inner(): inner_number = 200 print('Inner number = ', inner_number) inner_number = 'Belchior' print('Inner number = ', inner_number) outer_number = 500 print(id(outer_number)) print('Outer number = ', outer_number) inner() global_number = 100 outer()
# description: global # date: 2020/6/7 19:15 # author: objcat # version: 1.0 tool = None
tool = None
def validate_post(post): try: anno_l1 = post['Layer1'].split(' ') anno_l2 = post['Layer2'].split(' ') text = post['text'] except KeyError: return False, 4 if len(anno_l1) != len(anno_l2): return False, 0 elif '[removed]' in text: return False, 3 elif len(text) != len(anno_l1): return False, 1 else: return True, 2
def validate_post(post): try: anno_l1 = post['Layer1'].split(' ') anno_l2 = post['Layer2'].split(' ') text = post['text'] except KeyError: return (False, 4) if len(anno_l1) != len(anno_l2): return (False, 0) elif '[removed]' in text: return (False, 3) elif len(text) != len(anno_l1): return (False, 1) else: return (True, 2)
def get_kwarg(self, name, **kwargs): return kwargs[name] if name in kwargs else '' def get_arg(self, name, *args): return args[0] if len(args) > 0 else ''
def get_kwarg(self, name, **kwargs): return kwargs[name] if name in kwargs else '' def get_arg(self, name, *args): return args[0] if len(args) > 0 else ''
class Solution: def smallerNumbersThanCurrent(self, nums: List[int]) -> List[int]: dic = [0]*101 for n in nums: dic[n] += 1 return [sum(dic[0:n]) for n in nums]
class Solution: def smaller_numbers_than_current(self, nums: List[int]) -> List[int]: dic = [0] * 101 for n in nums: dic[n] += 1 return [sum(dic[0:n]) for n in nums]
class Employee: name = "Tom Cruise" def function(self): print("This is a message inside the class.") employeeTom = Employee() employeeJerry = Employee() employeeJerry.name = "Jerry" print(employeeTom.name) print(employeeJerry.name) print(employeeJerry.function())
class Employee: name = 'Tom Cruise' def function(self): print('This is a message inside the class.') employee_tom = employee() employee_jerry = employee() employeeJerry.name = 'Jerry' print(employeeTom.name) print(employeeJerry.name) print(employeeJerry.function())
#declare X Data points testDataX = [1, 2, 3, 4, 5, 6, 7] lengthX = len(testDataX) n = lengthX ############## ############## ############## #declare Y Data points testDataY = [1.5, 3.8, 6.7, 9.0, 11.2, 13.6, 16.0] lengthY = len(testDataY) ############## ############## ############## #find the Variance, or squared error, of Y values #first take the mean of Y meanY = 0.0 for i in range(lengthY): meanY += testDataY[i] meanY /= lengthY #subtract mean from individual Y data points, then take the magnitude SEy = 0.0 for i in range(lengthY): SEy += (testDataY[i] - meanY)**2.0 print("Variance of Y", SEy) ############## ############## ############## sumX = 0.0 sumY = 0.0 sumXY = 0.0 sumXX = 0.0 for i in range(lengthX): sumX += testDataX[i] sumY += testDataY[i] sumXY += testDataX[i] * testDataY[i] sumXX += testDataX[i] * testDataX[i] #slope of a regression line through data points m = (n * sumXY - (sumX * sumY)) / (n * sumXX - (sumX**2)) print("slope") print(m) #intercept of a regression line through data points b = (sumY - (m * sumX)) / n print("intercept") print(b) ############## ############## ############## #plug in X coords into regression line, subtract from actual Y values sumR = 0.0 residuals = [] for i in range(lengthX): guess = (m * testDataX[i] - b) residuals.append( testDataY[i] - guess ) sumR += residuals[i] print("residuals of individual points", residuals) SEline = sumR**2.0 print("Squared Error of Regression Line", SEline) #percentage of variation not described by regression line percentNot = SEline/SEy #percentage of variation that IS described by regression line coefficientOfDetermination = 1.0 - percentNot print("coeff of Determination", coefficientOfDetermination) ############## ############## ##############
test_data_x = [1, 2, 3, 4, 5, 6, 7] length_x = len(testDataX) n = lengthX test_data_y = [1.5, 3.8, 6.7, 9.0, 11.2, 13.6, 16.0] length_y = len(testDataY) mean_y = 0.0 for i in range(lengthY): mean_y += testDataY[i] mean_y /= lengthY s_ey = 0.0 for i in range(lengthY): s_ey += (testDataY[i] - meanY) ** 2.0 print('Variance of Y', SEy) sum_x = 0.0 sum_y = 0.0 sum_xy = 0.0 sum_xx = 0.0 for i in range(lengthX): sum_x += testDataX[i] sum_y += testDataY[i] sum_xy += testDataX[i] * testDataY[i] sum_xx += testDataX[i] * testDataX[i] m = (n * sumXY - sumX * sumY) / (n * sumXX - sumX ** 2) print('slope') print(m) b = (sumY - m * sumX) / n print('intercept') print(b) sum_r = 0.0 residuals = [] for i in range(lengthX): guess = m * testDataX[i] - b residuals.append(testDataY[i] - guess) sum_r += residuals[i] print('residuals of individual points', residuals) s_eline = sumR ** 2.0 print('Squared Error of Regression Line', SEline) percent_not = SEline / SEy coefficient_of_determination = 1.0 - percentNot print('coeff of Determination', coefficientOfDetermination)
# time related parameters no_intervals = 144 no_periods = 48 no_intervals_periods = int(no_intervals / no_periods) # household related parameters # new_households = True new_households = False no_households = 100 no_tasks_min = 5 max_demand_multiplier = no_tasks_min care_f_max = 10 care_f_weight = 1 # pricing related parameters pricing_table_weight = 1 # cost_function_type = "linear" cost_function_type = "piece-wise" zero_digit = 2 # solver related parameters var_selection = "smallest" val_choice = "indomain_min" model_type = "pre" solver_type = "cp" # external file related parameters parent_folder = "" file_cp_pre = parent_folder + 'models/Household-cp-pre.mzn' file_cp_ini = parent_folder + 'models/Household-cp.mzn' file_pricing_table = parent_folder + 'data/pricing_table_0.csv' file_household_area_folder = parent_folder + 'data/' file_probability = parent_folder + 'data/probability.csv' file_demand_list = parent_folder + 'data/demands_list.csv' result_folder = parent_folder + "results/" attack_result_folder = parent_folder + "attack_results/" # summary related parameters k0_area = "area" k0_penalty_weight = "penalty_weight" k0_households_no = "no_households" k0_tasks_no = "no_tasks" k0_cost_type = "cost_function_type" k0_iteration_no = "no_iterations" # demand related parameters k0_household_key = "key" k0_starts = "start_times" k0_demand = "demands" k0_demand_max = "max_demand" k0_demand_total = "total_demand" k0_par = "PAR" # step size k0_step = "step_size" # objective related parameters k0_cost = "cost" k0_penalty = "inconvenient" k0_obj = "objective" # pricing related parameters k0_prices = "prices" k0_price_levels = "price_levels" k0_demand_table = "demand_levels" # run time related k0_time = "run_time" k1_time_scheduling = "rescheduling_time" k1_time_pricing = "pricing_time" k1_time_average = "average_run_time_per_iteration" # k1_interval = "interval" # k1_period = "period" k0_algorithm = "algorithm" k1_optimal = "optimal" k1_heuristic = "heuristic" k2_scheduling = "scheduling" k2_pricing = "pricing"
no_intervals = 144 no_periods = 48 no_intervals_periods = int(no_intervals / no_periods) new_households = False no_households = 100 no_tasks_min = 5 max_demand_multiplier = no_tasks_min care_f_max = 10 care_f_weight = 1 pricing_table_weight = 1 cost_function_type = 'piece-wise' zero_digit = 2 var_selection = 'smallest' val_choice = 'indomain_min' model_type = 'pre' solver_type = 'cp' parent_folder = '' file_cp_pre = parent_folder + 'models/Household-cp-pre.mzn' file_cp_ini = parent_folder + 'models/Household-cp.mzn' file_pricing_table = parent_folder + 'data/pricing_table_0.csv' file_household_area_folder = parent_folder + 'data/' file_probability = parent_folder + 'data/probability.csv' file_demand_list = parent_folder + 'data/demands_list.csv' result_folder = parent_folder + 'results/' attack_result_folder = parent_folder + 'attack_results/' k0_area = 'area' k0_penalty_weight = 'penalty_weight' k0_households_no = 'no_households' k0_tasks_no = 'no_tasks' k0_cost_type = 'cost_function_type' k0_iteration_no = 'no_iterations' k0_household_key = 'key' k0_starts = 'start_times' k0_demand = 'demands' k0_demand_max = 'max_demand' k0_demand_total = 'total_demand' k0_par = 'PAR' k0_step = 'step_size' k0_cost = 'cost' k0_penalty = 'inconvenient' k0_obj = 'objective' k0_prices = 'prices' k0_price_levels = 'price_levels' k0_demand_table = 'demand_levels' k0_time = 'run_time' k1_time_scheduling = 'rescheduling_time' k1_time_pricing = 'pricing_time' k1_time_average = 'average_run_time_per_iteration' k0_algorithm = 'algorithm' k1_optimal = 'optimal' k1_heuristic = 'heuristic' k2_scheduling = 'scheduling' k2_pricing = 'pricing'
""" python + redux == pydux Redux: http://redux.js.org A somewhat literal translation of Redux. Closures in Python are over references, as opposed to names in JavaScript, so they are read-only. Single- element arrays are used to create read/write closures. """ class ActionTypes(object): INIT = '@@redux/INIT' class StoreDict(dict): def get_state(self): return self['get_state']() def subscribe(self, listener): return self['subscribe'](listener) def dispatch(self, action): return self['dispatch'](action) def replace_reducer(self, next_reducer): return self['replace_reducer'](next_reducer) def create_store(reducer, initial_state=None, enhancer=None): """ redux in a nutshell. observable has been omitted. Args: reducer: root reducer function for the state tree initial_state: optional initial state data enhancer: optional enhancer function for middleware etc. Returns: a Pydux store """ if enhancer is not None: if not hasattr(enhancer, '__call__'): raise TypeError('Expected the enhancer to be a function.') return enhancer(create_store)(reducer, initial_state) if not hasattr(reducer, '__call__'): raise TypeError('Expected the reducer to be a function.') # single-element arrays for r/w closure current_reducer = [reducer] current_state = [initial_state] current_listeners = [[]] next_listeners = [current_listeners[0]] is_dispatching = [False] def ensure_can_mutate_next_listeners(): if next_listeners[0] == current_listeners[0]: next_listeners[0] = current_listeners[0][:] def get_state(): return current_state[0] def subscribe(listener): if not hasattr(listener, '__call__'): raise TypeError('Expected listener to be a function.') is_subscribed = [True] # r/w closure ensure_can_mutate_next_listeners() next_listeners[0].append(listener) def unsubcribe(): if not is_subscribed[0]: return is_subscribed[0] = False ensure_can_mutate_next_listeners() index = next_listeners[0].index(listener) next_listeners[0].pop(index) return unsubcribe def dispatch(action): if not isinstance(action, dict): raise TypeError('Actions must be a dict. ' 'Use custom middleware for async actions.') if action.get('type') is None: raise ValueError('Actions must have a non-None "type" property. ' 'Have you misspelled a constant?') if is_dispatching[0]: raise Exception('Reducers may not dispatch actions.') try: is_dispatching[0] = True current_state[0] = current_reducer[0](current_state[0], action) finally: is_dispatching[0] = False listeners = current_listeners[0] = next_listeners[0] for listener in listeners: listener() return action def replace_reducer(next_reducer): if not hasattr(next_reducer, '__call__'): raise TypeError('Expected next_reducer to be a function') current_reducer[0] = next_reducer dispatch({'type': ActionTypes.INIT}) dispatch({'type': ActionTypes.INIT}) return StoreDict( dispatch=dispatch, subscribe=subscribe, get_state=get_state, replace_reducer=replace_reducer, )
""" python + redux == pydux Redux: http://redux.js.org A somewhat literal translation of Redux. Closures in Python are over references, as opposed to names in JavaScript, so they are read-only. Single- element arrays are used to create read/write closures. """ class Actiontypes(object): init = '@@redux/INIT' class Storedict(dict): def get_state(self): return self['get_state']() def subscribe(self, listener): return self['subscribe'](listener) def dispatch(self, action): return self['dispatch'](action) def replace_reducer(self, next_reducer): return self['replace_reducer'](next_reducer) def create_store(reducer, initial_state=None, enhancer=None): """ redux in a nutshell. observable has been omitted. Args: reducer: root reducer function for the state tree initial_state: optional initial state data enhancer: optional enhancer function for middleware etc. Returns: a Pydux store """ if enhancer is not None: if not hasattr(enhancer, '__call__'): raise type_error('Expected the enhancer to be a function.') return enhancer(create_store)(reducer, initial_state) if not hasattr(reducer, '__call__'): raise type_error('Expected the reducer to be a function.') current_reducer = [reducer] current_state = [initial_state] current_listeners = [[]] next_listeners = [current_listeners[0]] is_dispatching = [False] def ensure_can_mutate_next_listeners(): if next_listeners[0] == current_listeners[0]: next_listeners[0] = current_listeners[0][:] def get_state(): return current_state[0] def subscribe(listener): if not hasattr(listener, '__call__'): raise type_error('Expected listener to be a function.') is_subscribed = [True] ensure_can_mutate_next_listeners() next_listeners[0].append(listener) def unsubcribe(): if not is_subscribed[0]: return is_subscribed[0] = False ensure_can_mutate_next_listeners() index = next_listeners[0].index(listener) next_listeners[0].pop(index) return unsubcribe def dispatch(action): if not isinstance(action, dict): raise type_error('Actions must be a dict. Use custom middleware for async actions.') if action.get('type') is None: raise value_error('Actions must have a non-None "type" property. Have you misspelled a constant?') if is_dispatching[0]: raise exception('Reducers may not dispatch actions.') try: is_dispatching[0] = True current_state[0] = current_reducer[0](current_state[0], action) finally: is_dispatching[0] = False listeners = current_listeners[0] = next_listeners[0] for listener in listeners: listener() return action def replace_reducer(next_reducer): if not hasattr(next_reducer, '__call__'): raise type_error('Expected next_reducer to be a function') current_reducer[0] = next_reducer dispatch({'type': ActionTypes.INIT}) dispatch({'type': ActionTypes.INIT}) return store_dict(dispatch=dispatch, subscribe=subscribe, get_state=get_state, replace_reducer=replace_reducer)
""" PASSENGERS """ numPassengers = 18936 passenger_arriving = ( (6, 4, 3, 7, 5, 0, 4, 5, 1, 2, 1, 1, 0, 6, 4, 2, 3, 3, 2, 0, 1, 9, 1, 0, 0, 0), # 0 (9, 6, 4, 7, 4, 6, 0, 1, 1, 1, 1, 0, 0, 4, 7, 1, 1, 7, 2, 1, 3, 2, 2, 1, 0, 0), # 1 (7, 5, 6, 8, 4, 2, 2, 3, 3, 0, 1, 0, 0, 9, 5, 4, 1, 1, 4, 4, 0, 1, 2, 0, 0, 0), # 2 (7, 1, 8, 5, 4, 2, 3, 2, 1, 1, 0, 1, 0, 6, 3, 1, 5, 1, 4, 2, 1, 7, 3, 0, 0, 0), # 3 (5, 8, 3, 4, 0, 2, 4, 3, 4, 0, 1, 1, 0, 7, 3, 11, 4, 4, 2, 3, 2, 3, 1, 2, 0, 0), # 4 (13, 3, 3, 6, 3, 3, 2, 6, 4, 0, 1, 0, 0, 6, 7, 5, 4, 4, 3, 6, 0, 1, 2, 2, 1, 0), # 5 (6, 8, 3, 6, 2, 6, 4, 3, 3, 2, 0, 0, 0, 8, 1, 3, 3, 5, 4, 7, 3, 3, 2, 2, 0, 0), # 6 (7, 12, 10, 2, 8, 3, 1, 3, 1, 1, 2, 0, 0, 5, 5, 4, 5, 2, 4, 1, 2, 5, 3, 2, 3, 0), # 7 (12, 8, 5, 12, 4, 4, 4, 5, 3, 2, 2, 1, 0, 6, 7, 3, 6, 3, 5, 4, 0, 2, 2, 3, 2, 0), # 8 (7, 13, 11, 6, 5, 3, 4, 1, 3, 4, 1, 1, 0, 7, 9, 6, 2, 10, 5, 6, 4, 3, 3, 1, 0, 0), # 9 (5, 3, 8, 9, 3, 3, 2, 8, 2, 3, 1, 2, 0, 13, 2, 5, 3, 7, 8, 5, 4, 5, 0, 0, 1, 0), # 10 (14, 10, 6, 8, 4, 1, 7, 5, 3, 0, 1, 0, 0, 6, 13, 7, 7, 6, 1, 1, 3, 4, 1, 1, 1, 0), # 11 (11, 7, 8, 9, 4, 3, 5, 5, 3, 0, 1, 0, 0, 4, 9, 8, 4, 7, 4, 4, 1, 3, 2, 4, 2, 0), # 12 (3, 5, 9, 12, 9, 4, 2, 4, 3, 2, 2, 0, 0, 8, 4, 5, 2, 10, 5, 3, 1, 5, 4, 2, 0, 0), # 13 (10, 8, 12, 6, 8, 2, 5, 3, 3, 1, 2, 0, 0, 13, 11, 7, 6, 6, 5, 4, 1, 0, 4, 0, 0, 0), # 14 (13, 15, 2, 10, 8, 2, 3, 1, 3, 1, 3, 1, 0, 12, 6, 6, 6, 8, 5, 4, 2, 1, 6, 0, 0, 0), # 15 (6, 13, 5, 11, 6, 4, 3, 4, 3, 0, 1, 1, 0, 7, 10, 7, 7, 3, 3, 2, 7, 5, 2, 1, 0, 0), # 16 (8, 14, 6, 14, 4, 1, 3, 1, 3, 2, 1, 1, 0, 5, 6, 9, 3, 12, 6, 0, 5, 5, 2, 0, 0, 0), # 17 (11, 8, 6, 6, 6, 5, 7, 2, 2, 0, 3, 2, 0, 8, 7, 7, 6, 10, 5, 10, 4, 5, 3, 5, 0, 0), # 18 (11, 9, 7, 10, 5, 4, 4, 4, 5, 1, 3, 0, 0, 11, 6, 4, 8, 7, 4, 3, 2, 5, 3, 3, 0, 0), # 19 (14, 6, 9, 11, 5, 3, 5, 2, 7, 1, 0, 2, 0, 14, 6, 4, 4, 7, 5, 3, 3, 7, 3, 0, 1, 0), # 20 (7, 12, 7, 8, 8, 0, 3, 2, 7, 1, 1, 1, 0, 11, 6, 6, 4, 11, 5, 5, 2, 3, 4, 2, 1, 0), # 21 (9, 5, 12, 12, 9, 4, 1, 4, 3, 3, 1, 0, 0, 10, 12, 3, 4, 9, 4, 6, 0, 5, 2, 1, 0, 0), # 22 (9, 9, 10, 8, 7, 4, 4, 3, 4, 2, 1, 1, 0, 9, 9, 5, 4, 10, 8, 3, 4, 3, 3, 3, 1, 0), # 23 (9, 15, 15, 15, 2, 3, 6, 3, 2, 2, 0, 1, 0, 9, 6, 5, 3, 10, 6, 3, 5, 4, 4, 0, 3, 0), # 24 (14, 8, 13, 12, 11, 5, 5, 4, 3, 3, 3, 0, 0, 5, 3, 9, 8, 5, 6, 2, 5, 2, 5, 0, 1, 0), # 25 (9, 11, 7, 9, 5, 4, 3, 7, 5, 4, 1, 1, 0, 6, 9, 9, 2, 7, 7, 3, 0, 4, 3, 4, 1, 0), # 26 (9, 12, 12, 7, 8, 3, 2, 5, 2, 2, 0, 1, 0, 11, 7, 10, 1, 4, 8, 4, 1, 1, 4, 2, 1, 0), # 27 (7, 12, 13, 8, 3, 0, 3, 3, 6, 0, 0, 1, 0, 12, 7, 6, 8, 10, 6, 2, 2, 1, 3, 1, 2, 0), # 28 (16, 9, 7, 11, 5, 5, 1, 7, 1, 1, 0, 0, 0, 10, 8, 12, 12, 6, 2, 5, 7, 2, 3, 0, 1, 0), # 29 (8, 7, 7, 6, 8, 5, 7, 4, 8, 2, 3, 1, 0, 12, 6, 5, 7, 4, 8, 3, 3, 4, 2, 1, 2, 0), # 30 (7, 10, 10, 9, 9, 4, 4, 3, 2, 2, 1, 0, 0, 4, 8, 8, 7, 6, 4, 4, 2, 6, 2, 0, 5, 0), # 31 (10, 15, 7, 10, 10, 3, 3, 5, 6, 1, 1, 1, 0, 13, 8, 9, 7, 4, 3, 2, 0, 3, 4, 2, 0, 0), # 32 (13, 8, 10, 7, 9, 4, 3, 5, 4, 3, 1, 1, 0, 10, 8, 7, 8, 10, 8, 7, 4, 7, 3, 1, 1, 0), # 33 (9, 9, 7, 9, 6, 3, 2, 5, 3, 1, 2, 2, 0, 12, 8, 6, 5, 5, 3, 3, 3, 5, 5, 3, 0, 0), # 34 (9, 8, 8, 12, 12, 6, 5, 1, 2, 0, 3, 1, 0, 10, 13, 14, 4, 10, 5, 2, 3, 3, 5, 2, 0, 0), # 35 (7, 13, 7, 11, 7, 2, 2, 3, 8, 0, 3, 2, 0, 10, 5, 5, 6, 10, 9, 2, 3, 1, 1, 3, 3, 0), # 36 (13, 8, 11, 9, 13, 2, 4, 1, 5, 0, 1, 0, 0, 6, 6, 4, 5, 9, 8, 4, 5, 4, 2, 0, 0, 0), # 37 (9, 6, 3, 9, 8, 4, 3, 5, 4, 3, 4, 0, 0, 17, 7, 4, 7, 7, 4, 6, 4, 3, 4, 5, 0, 0), # 38 (8, 10, 8, 15, 11, 1, 3, 2, 3, 2, 2, 2, 0, 12, 12, 4, 8, 7, 3, 5, 1, 6, 1, 1, 1, 0), # 39 (5, 8, 7, 7, 6, 2, 3, 1, 3, 0, 1, 0, 0, 7, 4, 10, 4, 3, 6, 7, 2, 6, 2, 2, 1, 0), # 40 (15, 8, 9, 6, 3, 2, 3, 4, 3, 2, 2, 0, 0, 11, 8, 10, 11, 12, 7, 1, 1, 4, 2, 1, 1, 0), # 41 (10, 5, 8, 7, 9, 1, 9, 3, 7, 0, 1, 1, 0, 13, 10, 3, 6, 10, 10, 6, 3, 5, 6, 3, 1, 0), # 42 (6, 10, 4, 4, 10, 2, 9, 4, 5, 2, 4, 0, 0, 11, 8, 4, 6, 8, 6, 2, 2, 4, 5, 3, 1, 0), # 43 (11, 5, 3, 5, 14, 5, 5, 7, 2, 0, 3, 2, 0, 9, 10, 5, 5, 7, 4, 6, 3, 1, 2, 1, 0, 0), # 44 (5, 6, 11, 9, 9, 4, 2, 8, 5, 1, 4, 1, 0, 8, 8, 6, 10, 10, 6, 6, 3, 5, 4, 0, 0, 0), # 45 (14, 5, 9, 11, 12, 4, 2, 4, 3, 2, 0, 0, 0, 13, 9, 12, 3, 4, 4, 8, 1, 5, 3, 1, 0, 0), # 46 (11, 6, 8, 13, 7, 5, 7, 3, 5, 2, 2, 1, 0, 6, 6, 6, 9, 5, 6, 3, 3, 2, 3, 2, 3, 0), # 47 (11, 5, 8, 6, 14, 3, 4, 7, 1, 2, 2, 0, 0, 7, 10, 9, 1, 7, 5, 3, 1, 3, 4, 1, 1, 0), # 48 (9, 7, 8, 8, 3, 1, 4, 4, 2, 6, 2, 1, 0, 9, 2, 11, 6, 3, 4, 2, 2, 3, 3, 5, 0, 0), # 49 (10, 10, 10, 5, 5, 4, 3, 7, 3, 3, 1, 1, 0, 9, 12, 4, 6, 7, 5, 2, 1, 1, 4, 0, 1, 0), # 50 (9, 11, 7, 9, 6, 4, 4, 5, 1, 1, 1, 1, 0, 21, 5, 6, 3, 8, 6, 4, 1, 3, 1, 0, 1, 0), # 51 (15, 8, 5, 5, 9, 2, 3, 3, 1, 1, 0, 1, 0, 7, 11, 10, 6, 8, 5, 3, 3, 1, 4, 0, 0, 0), # 52 (15, 13, 7, 5, 10, 5, 7, 5, 3, 1, 1, 0, 0, 9, 7, 10, 6, 12, 6, 5, 4, 1, 3, 1, 0, 0), # 53 (11, 12, 16, 6, 8, 7, 4, 1, 3, 2, 2, 0, 0, 7, 8, 4, 3, 9, 3, 3, 2, 5, 3, 2, 0, 0), # 54 (10, 5, 10, 8, 9, 4, 7, 2, 6, 3, 4, 0, 0, 9, 11, 6, 7, 6, 5, 1, 1, 5, 6, 2, 0, 0), # 55 (14, 10, 8, 8, 2, 6, 4, 1, 3, 2, 1, 0, 0, 2, 6, 3, 6, 12, 5, 4, 0, 2, 3, 2, 1, 0), # 56 (11, 9, 7, 10, 11, 7, 6, 4, 5, 2, 1, 2, 0, 6, 9, 7, 2, 14, 7, 4, 1, 1, 1, 0, 1, 0), # 57 (10, 14, 7, 13, 7, 4, 5, 3, 3, 1, 0, 1, 0, 7, 5, 5, 4, 4, 4, 2, 3, 3, 0, 0, 1, 0), # 58 (9, 6, 4, 5, 13, 1, 3, 5, 4, 1, 1, 1, 0, 11, 8, 8, 7, 11, 2, 3, 4, 6, 2, 2, 2, 0), # 59 (6, 5, 9, 16, 3, 6, 2, 2, 2, 1, 2, 0, 0, 3, 4, 10, 6, 9, 6, 4, 4, 7, 1, 1, 0, 0), # 60 (6, 4, 5, 9, 5, 0, 2, 4, 4, 0, 1, 0, 0, 11, 9, 2, 8, 5, 4, 5, 1, 7, 4, 1, 1, 0), # 61 (17, 6, 7, 10, 7, 1, 6, 4, 1, 1, 0, 0, 0, 11, 7, 8, 3, 10, 2, 4, 2, 5, 7, 1, 1, 0), # 62 (7, 7, 4, 13, 10, 3, 1, 1, 3, 1, 0, 1, 0, 10, 5, 9, 3, 12, 5, 3, 3, 7, 4, 4, 0, 0), # 63 (13, 7, 8, 10, 4, 1, 4, 5, 3, 1, 1, 0, 0, 8, 7, 6, 5, 9, 4, 8, 1, 2, 3, 2, 1, 0), # 64 (12, 7, 4, 8, 11, 6, 3, 2, 2, 3, 3, 0, 0, 18, 13, 9, 5, 6, 3, 3, 2, 3, 5, 3, 1, 0), # 65 (14, 9, 6, 9, 9, 2, 3, 5, 3, 1, 1, 0, 0, 8, 8, 5, 8, 6, 2, 2, 4, 3, 5, 1, 1, 0), # 66 (10, 10, 7, 11, 7, 5, 1, 6, 1, 3, 2, 1, 0, 10, 5, 9, 1, 7, 0, 8, 2, 2, 5, 1, 0, 0), # 67 (5, 4, 7, 14, 7, 3, 5, 3, 2, 3, 1, 1, 0, 6, 5, 8, 4, 8, 4, 7, 2, 5, 6, 1, 0, 0), # 68 (10, 12, 6, 15, 10, 2, 5, 1, 4, 3, 1, 0, 0, 9, 7, 7, 9, 9, 4, 4, 2, 7, 1, 2, 0, 0), # 69 (14, 12, 6, 8, 10, 4, 3, 2, 3, 2, 0, 0, 0, 4, 13, 4, 8, 9, 4, 5, 4, 4, 1, 1, 0, 0), # 70 (9, 9, 8, 10, 10, 4, 2, 4, 4, 3, 1, 1, 0, 12, 13, 6, 7, 12, 8, 4, 3, 3, 2, 1, 1, 0), # 71 (8, 10, 12, 11, 3, 2, 5, 6, 2, 2, 0, 1, 0, 11, 5, 2, 2, 6, 10, 4, 3, 3, 3, 1, 0, 0), # 72 (8, 9, 6, 6, 8, 7, 4, 6, 4, 6, 1, 2, 0, 8, 7, 4, 5, 8, 2, 4, 1, 5, 2, 1, 0, 0), # 73 (11, 8, 8, 8, 9, 3, 2, 3, 6, 4, 4, 0, 0, 15, 13, 10, 5, 8, 0, 4, 2, 1, 1, 1, 0, 0), # 74 (10, 7, 6, 9, 11, 3, 2, 3, 2, 3, 3, 2, 0, 10, 11, 7, 3, 9, 6, 2, 4, 7, 5, 5, 1, 0), # 75 (9, 9, 7, 9, 6, 3, 4, 4, 2, 3, 2, 1, 0, 7, 2, 6, 5, 3, 1, 5, 2, 3, 2, 0, 1, 0), # 76 (12, 9, 11, 11, 5, 2, 3, 1, 2, 2, 0, 1, 0, 8, 5, 10, 7, 9, 2, 1, 3, 4, 2, 2, 2, 0), # 77 (9, 10, 13, 8, 6, 3, 6, 4, 4, 1, 2, 0, 0, 14, 9, 7, 9, 9, 3, 1, 0, 3, 4, 1, 1, 0), # 78 (11, 8, 7, 10, 5, 5, 2, 1, 5, 4, 1, 0, 0, 8, 9, 8, 6, 8, 3, 4, 3, 5, 4, 3, 0, 0), # 79 (7, 6, 5, 8, 6, 2, 4, 1, 1, 2, 2, 0, 0, 11, 12, 4, 5, 7, 6, 2, 2, 0, 4, 3, 1, 0), # 80 (17, 9, 11, 12, 8, 1, 2, 2, 5, 0, 1, 0, 0, 6, 9, 6, 3, 12, 5, 2, 1, 9, 4, 3, 0, 0), # 81 (15, 10, 5, 4, 8, 3, 1, 1, 6, 2, 1, 0, 0, 15, 8, 5, 5, 8, 4, 5, 4, 4, 7, 5, 1, 0), # 82 (9, 9, 6, 15, 6, 6, 1, 5, 3, 1, 4, 1, 0, 10, 8, 8, 1, 3, 0, 0, 3, 4, 1, 4, 1, 0), # 83 (7, 8, 12, 7, 7, 4, 2, 2, 6, 0, 3, 0, 0, 8, 8, 5, 6, 10, 0, 4, 1, 3, 2, 3, 2, 0), # 84 (11, 6, 8, 8, 4, 4, 1, 3, 6, 1, 1, 3, 0, 5, 13, 6, 7, 8, 5, 2, 2, 3, 3, 2, 3, 0), # 85 (11, 9, 9, 8, 6, 4, 3, 4, 3, 4, 3, 0, 0, 17, 13, 6, 2, 5, 4, 3, 1, 1, 3, 3, 1, 0), # 86 (14, 5, 3, 8, 10, 4, 3, 2, 2, 4, 0, 0, 0, 10, 9, 5, 11, 10, 3, 3, 5, 4, 3, 2, 2, 0), # 87 (8, 9, 7, 15, 4, 4, 5, 1, 3, 2, 3, 1, 0, 10, 3, 5, 6, 6, 3, 3, 2, 7, 6, 1, 0, 0), # 88 (6, 9, 8, 8, 7, 4, 4, 2, 4, 2, 1, 2, 0, 12, 5, 5, 7, 3, 10, 2, 3, 5, 4, 3, 1, 0), # 89 (11, 9, 11, 9, 11, 6, 1, 1, 5, 1, 2, 1, 0, 5, 8, 6, 8, 5, 5, 4, 2, 3, 1, 4, 1, 0), # 90 (13, 14, 6, 7, 5, 5, 3, 3, 7, 1, 0, 1, 0, 16, 9, 3, 8, 7, 4, 4, 1, 5, 1, 4, 0, 0), # 91 (12, 5, 8, 7, 3, 2, 5, 0, 0, 2, 1, 0, 0, 8, 5, 3, 2, 10, 8, 5, 3, 5, 1, 2, 1, 0), # 92 (7, 6, 4, 4, 4, 1, 3, 3, 5, 1, 0, 2, 0, 11, 14, 4, 6, 12, 0, 4, 2, 4, 6, 1, 0, 0), # 93 (9, 5, 10, 15, 12, 3, 3, 5, 4, 1, 1, 2, 0, 13, 9, 5, 6, 8, 5, 4, 0, 6, 3, 2, 0, 0), # 94 (7, 10, 5, 10, 12, 7, 3, 1, 3, 2, 0, 1, 0, 9, 6, 4, 4, 10, 4, 0, 2, 7, 3, 1, 0, 0), # 95 (12, 6, 11, 11, 5, 4, 3, 1, 3, 1, 1, 1, 0, 13, 8, 2, 7, 9, 2, 5, 3, 3, 4, 1, 0, 0), # 96 (10, 5, 5, 9, 10, 5, 1, 3, 3, 1, 1, 0, 0, 7, 10, 5, 2, 12, 6, 6, 4, 7, 3, 0, 2, 0), # 97 (6, 13, 10, 9, 5, 2, 2, 3, 4, 0, 1, 1, 0, 6, 13, 5, 1, 12, 3, 3, 2, 1, 0, 1, 0, 0), # 98 (7, 8, 9, 3, 7, 5, 6, 2, 3, 1, 1, 0, 0, 10, 5, 7, 11, 5, 4, 5, 0, 6, 2, 2, 0, 0), # 99 (10, 5, 7, 6, 11, 2, 5, 2, 4, 0, 0, 0, 0, 9, 5, 4, 5, 7, 3, 6, 2, 1, 1, 2, 1, 0), # 100 (9, 9, 7, 10, 8, 3, 2, 1, 1, 1, 3, 0, 0, 14, 9, 6, 9, 8, 3, 2, 0, 4, 6, 2, 1, 0), # 101 (13, 7, 9, 7, 4, 6, 2, 4, 6, 0, 1, 1, 0, 14, 6, 8, 7, 7, 1, 2, 1, 1, 2, 0, 0, 0), # 102 (9, 10, 15, 4, 6, 1, 4, 1, 6, 7, 1, 0, 0, 18, 9, 8, 8, 7, 0, 3, 3, 4, 5, 1, 0, 0), # 103 (10, 5, 8, 8, 4, 4, 1, 1, 4, 2, 3, 1, 0, 9, 8, 4, 8, 8, 2, 0, 1, 4, 5, 1, 0, 0), # 104 (9, 12, 8, 14, 8, 4, 4, 1, 1, 1, 1, 1, 0, 10, 8, 7, 2, 9, 6, 1, 1, 5, 3, 1, 2, 0), # 105 (10, 6, 7, 6, 3, 1, 4, 0, 2, 1, 3, 1, 0, 5, 2, 12, 5, 7, 1, 3, 0, 6, 1, 2, 0, 0), # 106 (6, 6, 5, 12, 8, 0, 3, 1, 5, 1, 0, 1, 0, 5, 11, 2, 2, 10, 8, 3, 0, 1, 0, 0, 1, 0), # 107 (9, 10, 10, 10, 5, 4, 2, 2, 5, 0, 3, 0, 0, 14, 6, 8, 3, 4, 4, 2, 3, 0, 4, 1, 0, 0), # 108 (5, 6, 8, 4, 4, 4, 3, 1, 0, 1, 2, 0, 0, 16, 13, 8, 3, 10, 4, 4, 5, 3, 1, 2, 0, 0), # 109 (8, 10, 10, 7, 8, 0, 4, 1, 5, 0, 0, 2, 0, 11, 8, 4, 5, 6, 4, 3, 3, 1, 2, 2, 0, 0), # 110 (11, 4, 6, 8, 13, 2, 5, 1, 3, 1, 1, 1, 0, 8, 5, 6, 3, 5, 8, 2, 2, 4, 2, 1, 2, 0), # 111 (6, 6, 8, 5, 7, 6, 0, 3, 1, 0, 3, 0, 0, 10, 5, 6, 1, 7, 4, 4, 1, 5, 3, 1, 0, 0), # 112 (10, 8, 8, 9, 8, 8, 1, 2, 2, 2, 1, 0, 0, 10, 4, 4, 6, 12, 8, 1, 1, 4, 2, 0, 1, 0), # 113 (7, 7, 6, 7, 7, 7, 5, 7, 4, 0, 3, 0, 0, 10, 4, 3, 2, 10, 2, 5, 2, 7, 2, 0, 1, 0), # 114 (6, 10, 11, 10, 6, 5, 4, 3, 4, 3, 0, 0, 0, 10, 8, 2, 4, 6, 3, 2, 3, 10, 0, 2, 0, 0), # 115 (17, 3, 6, 9, 6, 3, 2, 1, 3, 1, 1, 1, 0, 10, 3, 5, 10, 7, 2, 10, 3, 1, 4, 1, 2, 0), # 116 (12, 5, 6, 9, 2, 4, 4, 2, 3, 0, 0, 0, 0, 13, 11, 2, 4, 3, 0, 1, 2, 3, 3, 0, 0, 0), # 117 (11, 8, 8, 4, 12, 2, 1, 1, 2, 1, 1, 0, 0, 13, 4, 7, 3, 3, 7, 3, 2, 3, 2, 0, 0, 0), # 118 (10, 10, 8, 11, 8, 2, 2, 4, 6, 3, 1, 0, 0, 9, 8, 5, 4, 7, 3, 5, 2, 3, 1, 1, 1, 0), # 119 (8, 7, 10, 5, 7, 1, 3, 2, 1, 0, 0, 1, 0, 9, 8, 5, 2, 7, 5, 1, 2, 2, 0, 1, 0, 0), # 120 (5, 16, 9, 9, 3, 3, 2, 6, 4, 1, 1, 0, 0, 9, 3, 7, 6, 7, 4, 7, 2, 3, 7, 0, 0, 0), # 121 (10, 8, 6, 6, 8, 5, 2, 6, 4, 4, 3, 0, 0, 9, 9, 7, 5, 9, 4, 3, 2, 3, 5, 1, 0, 0), # 122 (6, 12, 6, 14, 3, 5, 4, 1, 2, 3, 1, 1, 0, 15, 7, 5, 3, 7, 3, 3, 5, 5, 2, 0, 0, 0), # 123 (7, 7, 8, 10, 7, 3, 5, 1, 3, 2, 2, 1, 0, 12, 5, 9, 4, 5, 2, 5, 0, 5, 1, 1, 0, 0), # 124 (13, 9, 5, 5, 10, 7, 5, 1, 3, 1, 0, 2, 0, 8, 2, 4, 2, 5, 3, 4, 3, 6, 3, 3, 2, 0), # 125 (10, 4, 4, 9, 10, 3, 4, 2, 3, 1, 1, 0, 0, 12, 13, 4, 1, 7, 2, 5, 3, 7, 4, 2, 0, 0), # 126 (10, 12, 8, 7, 6, 2, 6, 4, 3, 1, 0, 0, 0, 11, 8, 3, 4, 7, 0, 2, 4, 4, 2, 3, 0, 0), # 127 (6, 7, 3, 7, 7, 1, 3, 3, 6, 0, 0, 0, 0, 11, 2, 12, 4, 5, 2, 1, 1, 2, 7, 1, 0, 0), # 128 (8, 12, 9, 9, 4, 4, 2, 1, 5, 3, 3, 2, 0, 11, 4, 5, 4, 8, 4, 5, 0, 4, 2, 1, 0, 0), # 129 (6, 4, 2, 11, 3, 6, 0, 2, 2, 1, 1, 1, 0, 7, 6, 4, 3, 9, 8, 3, 1, 2, 5, 0, 0, 0), # 130 (9, 5, 11, 7, 10, 6, 4, 3, 2, 0, 1, 0, 0, 10, 2, 7, 4, 4, 5, 5, 2, 1, 5, 0, 0, 0), # 131 (12, 7, 10, 6, 9, 4, 2, 6, 7, 0, 2, 1, 0, 2, 7, 7, 1, 9, 3, 3, 3, 1, 1, 1, 1, 0), # 132 (4, 14, 8, 5, 7, 7, 4, 0, 3, 0, 1, 0, 0, 11, 11, 5, 5, 9, 3, 2, 1, 5, 3, 1, 2, 0), # 133 (14, 7, 7, 10, 5, 2, 5, 5, 2, 0, 0, 0, 0, 14, 7, 4, 4, 3, 3, 1, 0, 4, 2, 1, 1, 0), # 134 (5, 3, 4, 8, 8, 4, 1, 4, 9, 1, 1, 0, 0, 8, 6, 10, 2, 8, 4, 3, 4, 2, 3, 0, 0, 0), # 135 (4, 7, 10, 10, 6, 1, 2, 6, 7, 1, 1, 2, 0, 6, 8, 4, 8, 5, 6, 4, 4, 2, 2, 1, 1, 0), # 136 (2, 12, 9, 3, 7, 4, 2, 1, 3, 1, 2, 1, 0, 7, 8, 3, 6, 9, 2, 4, 0, 2, 1, 2, 0, 0), # 137 (8, 9, 5, 9, 3, 4, 4, 1, 4, 1, 2, 1, 0, 9, 6, 5, 3, 8, 5, 4, 2, 2, 4, 1, 0, 0), # 138 (7, 9, 9, 12, 6, 4, 1, 2, 2, 3, 0, 0, 0, 7, 10, 4, 4, 10, 1, 3, 4, 5, 2, 6, 1, 0), # 139 (10, 7, 6, 3, 4, 2, 7, 5, 2, 1, 0, 0, 0, 13, 6, 6, 5, 14, 4, 5, 1, 4, 2, 2, 0, 0), # 140 (9, 9, 5, 5, 8, 2, 2, 6, 6, 2, 1, 0, 0, 9, 7, 3, 1, 11, 2, 1, 3, 4, 4, 2, 0, 0), # 141 (7, 7, 10, 8, 7, 10, 3, 4, 2, 1, 0, 2, 0, 7, 5, 0, 5, 8, 6, 2, 7, 3, 4, 0, 2, 0), # 142 (11, 5, 7, 9, 9, 5, 4, 1, 0, 0, 3, 2, 0, 10, 6, 7, 4, 11, 3, 3, 3, 4, 0, 0, 0, 0), # 143 (9, 6, 12, 8, 10, 2, 5, 5, 3, 0, 1, 0, 0, 7, 5, 7, 5, 6, 2, 3, 1, 3, 2, 0, 0, 0), # 144 (9, 3, 4, 9, 8, 3, 3, 0, 3, 0, 2, 0, 0, 14, 4, 5, 2, 4, 3, 2, 1, 3, 2, 1, 1, 0), # 145 (10, 11, 8, 9, 9, 3, 3, 1, 3, 0, 4, 0, 0, 6, 11, 3, 5, 10, 5, 1, 2, 2, 5, 1, 0, 0), # 146 (4, 8, 6, 6, 4, 8, 3, 2, 2, 2, 0, 0, 0, 6, 9, 2, 8, 11, 4, 0, 2, 2, 7, 2, 2, 0), # 147 (10, 4, 7, 5, 4, 4, 4, 6, 4, 4, 2, 1, 0, 8, 2, 3, 1, 6, 1, 5, 2, 2, 3, 1, 1, 0), # 148 (10, 4, 7, 12, 7, 5, 5, 3, 1, 0, 0, 1, 0, 12, 1, 2, 8, 6, 4, 2, 0, 3, 0, 1, 2, 0), # 149 (12, 14, 10, 8, 7, 5, 3, 2, 3, 0, 0, 0, 0, 6, 3, 3, 4, 8, 1, 0, 2, 5, 2, 3, 0, 0), # 150 (10, 4, 11, 10, 6, 4, 2, 3, 3, 1, 0, 1, 0, 11, 6, 8, 4, 6, 5, 2, 2, 4, 1, 1, 0, 0), # 151 (9, 4, 7, 11, 5, 0, 1, 2, 3, 0, 1, 1, 0, 7, 9, 7, 3, 7, 6, 0, 2, 4, 1, 2, 0, 0), # 152 (7, 1, 3, 5, 7, 6, 2, 0, 0, 1, 0, 1, 0, 14, 2, 4, 2, 7, 5, 3, 0, 3, 2, 3, 0, 0), # 153 (6, 11, 3, 4, 4, 1, 3, 0, 1, 3, 0, 1, 0, 6, 8, 5, 2, 5, 3, 1, 2, 2, 4, 2, 1, 0), # 154 (6, 3, 7, 10, 8, 1, 3, 3, 2, 1, 1, 0, 0, 4, 5, 3, 0, 13, 5, 2, 3, 3, 0, 2, 0, 0), # 155 (6, 7, 5, 3, 1, 4, 4, 1, 1, 0, 1, 1, 0, 5, 1, 6, 2, 8, 4, 1, 2, 1, 3, 2, 2, 0), # 156 (13, 4, 10, 8, 7, 5, 2, 2, 2, 2, 1, 0, 0, 12, 6, 5, 3, 7, 4, 2, 5, 3, 2, 0, 1, 0), # 157 (3, 7, 7, 5, 4, 2, 6, 2, 2, 2, 1, 0, 0, 7, 7, 7, 1, 8, 3, 1, 4, 3, 4, 0, 1, 0), # 158 (12, 6, 3, 6, 8, 1, 3, 3, 2, 2, 1, 0, 0, 11, 2, 4, 2, 4, 4, 1, 1, 3, 4, 0, 0, 0), # 159 (8, 3, 7, 3, 5, 4, 0, 4, 2, 2, 0, 0, 0, 10, 3, 1, 3, 8, 4, 3, 2, 1, 2, 5, 0, 0), # 160 (7, 9, 5, 3, 7, 1, 3, 2, 3, 0, 2, 1, 0, 5, 9, 2, 3, 8, 3, 3, 3, 5, 4, 2, 1, 0), # 161 (8, 7, 4, 5, 8, 4, 2, 1, 4, 2, 0, 1, 0, 4, 8, 1, 6, 4, 2, 2, 1, 4, 2, 2, 2, 0), # 162 (8, 7, 10, 4, 5, 3, 3, 3, 2, 2, 1, 0, 0, 9, 6, 3, 3, 10, 5, 3, 6, 3, 2, 0, 0, 0), # 163 (4, 2, 3, 7, 6, 2, 4, 3, 3, 0, 1, 0, 0, 3, 4, 5, 4, 6, 3, 3, 0, 5, 4, 3, 0, 0), # 164 (7, 6, 4, 4, 4, 3, 4, 4, 3, 3, 0, 0, 0, 5, 8, 6, 1, 5, 2, 2, 1, 2, 2, 1, 0, 0), # 165 (8, 7, 10, 5, 4, 0, 4, 1, 6, 2, 0, 1, 0, 4, 3, 3, 2, 9, 5, 4, 0, 1, 3, 2, 0, 0), # 166 (7, 7, 7, 14, 6, 1, 2, 2, 3, 2, 0, 0, 0, 5, 8, 6, 1, 4, 4, 0, 1, 0, 1, 2, 0, 0), # 167 (5, 4, 4, 7, 4, 3, 0, 4, 1, 0, 2, 0, 0, 11, 1, 5, 4, 4, 1, 4, 3, 3, 1, 0, 0, 0), # 168 (5, 7, 10, 2, 8, 2, 3, 0, 4, 1, 1, 1, 0, 5, 2, 2, 3, 5, 3, 1, 1, 1, 3, 0, 0, 0), # 169 (9, 0, 4, 6, 4, 3, 2, 0, 1, 0, 1, 1, 0, 10, 2, 2, 2, 3, 1, 1, 0, 3, 1, 3, 0, 0), # 170 (9, 4, 4, 3, 2, 3, 1, 2, 3, 0, 1, 2, 0, 7, 4, 7, 2, 6, 4, 3, 1, 2, 1, 2, 0, 0), # 171 (5, 3, 6, 6, 3, 2, 2, 4, 0, 0, 0, 3, 0, 4, 6, 5, 4, 3, 3, 0, 0, 2, 1, 0, 0, 0), # 172 (5, 1, 3, 4, 4, 3, 3, 2, 3, 0, 0, 0, 0, 5, 4, 0, 2, 8, 5, 0, 1, 1, 0, 1, 1, 0), # 173 (4, 3, 3, 4, 5, 3, 1, 1, 1, 1, 0, 0, 0, 4, 6, 1, 3, 4, 2, 1, 0, 1, 2, 1, 1, 0), # 174 (2, 3, 4, 4, 5, 5, 1, 1, 1, 0, 2, 0, 0, 6, 3, 1, 9, 0, 1, 1, 0, 0, 3, 1, 0, 0), # 175 (4, 2, 4, 6, 2, 3, 1, 1, 4, 2, 1, 0, 0, 7, 3, 3, 0, 5, 3, 2, 0, 1, 2, 1, 1, 0), # 176 (7, 3, 2, 6, 6, 4, 1, 3, 0, 1, 1, 0, 0, 10, 5, 7, 2, 4, 2, 1, 0, 3, 3, 0, 1, 0), # 177 (3, 6, 5, 6, 4, 2, 1, 2, 0, 0, 0, 0, 0, 4, 3, 0, 1, 5, 2, 0, 0, 1, 1, 0, 0, 0), # 178 (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), # 179 ) station_arriving_intensity = ( (5.020865578371768, 5.525288559693166, 5.211283229612507, 6.214667773863432, 5.554685607609612, 3.1386549320373387, 4.146035615373915, 4.653176172979423, 6.090099062168007, 3.9580150155223697, 4.205265163885603, 4.897915078306173, 5.083880212578363), # 0 (5.354327152019974, 5.890060694144759, 5.555346591330152, 6.625144253276616, 5.922490337474237, 3.3459835840425556, 4.419468941263694, 4.959513722905708, 6.492245326332909, 4.21898069227715, 4.483096135956131, 5.221216660814354, 5.419791647439855), # 1 (5.686723008979731, 6.253385170890979, 5.8980422855474135, 7.033987704664794, 6.288962973749744, 3.5524851145124448, 4.691818507960704, 5.264625247904419, 6.892786806877549, 4.478913775020546, 4.759823148776313, 5.543232652053055, 5.75436482820969), # 2 (6.016757793146562, 6.613820501936447, 6.238010869319854, 7.439576407532074, 6.652661676001902, 3.757340622585113, 4.962003641647955, 5.567301157494507, 7.290135160921093, 4.736782698426181, 5.0343484118273825, 5.862685684930461, 6.086272806254225), # 3 (6.343136148415981, 6.9699251992857745, 6.573892899703036, 7.840288641382569, 7.012144603796492, 3.9597312073986677, 5.2289436685084585, 5.866331861194915, 7.682702045582707, 4.991555897167679, 5.305574134590575, 6.178298392354764, 6.414188632939817), # 4 (6.66456271868351, 7.320257774943588, 6.9043289337525175, 8.234502685720393, 7.36596991669928, 4.158837968091214, 5.491557914725224, 6.160507768524592, 8.068899117981559, 5.242201805918663, 5.572402526547132, 6.488793407234148, 6.736785359632827), # 5 (6.979742147844666, 7.663376740914501, 7.227959528523866, 8.620596820049652, 7.712695774276043, 4.353842003800864, 5.7487657064812625, 6.4486192890024885, 8.447138035236815, 5.487688859352758, 5.833735797178282, 6.792893362476808, 7.052736037699606), # 6 (7.2873790797949685, 7.997840609203132, 7.543425241072635, 8.996949323874462, 8.050880336092554, 4.543924413665721, 5.999486369959585, 6.729456832147552, 8.815830454467644, 5.726985492143586, 6.088476155965268, 7.089320890990929, 7.360713718506519), # 7 (7.586178158429934, 8.322207891814099, 7.849366628454396, 9.361938476698928, 8.379081761714586, 4.7282662968238895, 6.2426392313431975, 7.001810807478725, 9.173388032793206, 5.959060138964774, 6.335525812389321, 7.376798625684702, 7.659391453419917), # 8 (7.874844027645085, 8.635037100752022, 8.144424247724704, 9.713942558027169, 8.69585821070791, 4.906048752413484, 6.47714361681512, 7.264471624514963, 9.518222427332674, 6.182881234489941, 6.573786975931678, 7.654049199466313, 7.947442293806162), # 9 (8.152081331335932, 8.934886748021516, 8.427238655939124, 10.051339847363288, 8.9997678426383, 5.076452879572607, 6.701918852558355, 7.516229692775211, 9.848745295205214, 6.397417213392714, 6.802161856073574, 7.919795245243952, 8.22353929103161), # 10 (8.416594713398005, 9.220315345627206, 8.696450410153215, 10.372508624211397, 9.289368817071534, 5.238659777439368, 6.915884264755916, 7.7558754217784145, 10.163368293529993, 6.601636510346719, 7.019552662296249, 8.17275939592581, 8.486355496462611), # 11 (8.667088817726812, 9.489881405573698, 8.95070006742254, 10.675827168075612, 9.563219293573377, 5.391850545151869, 7.1179591795908115, 7.982199221043521, 10.460503079426179, 6.794507560025572, 7.224861604080934, 8.411664284420068, 8.734563961465534), # 12 (8.902268288217876, 9.74214343986562, 9.188628184802662, 10.959673758460044, 9.819877431709601, 5.5352062818482235, 7.307062923246056, 8.193991500089481, 10.738561310012932, 6.974998797102904, 7.416990890908869, 8.63523254363492, 8.966837737406735), # 13 (9.120837768766716, 9.975659960507588, 9.408875319349146, 11.222426674868792, 10.05790139104599, 5.667908086666534, 7.482114821904661, 8.390042668435246, 10.995954642409421, 7.142078656252334, 7.594842732261284, 8.84218680647856, 9.181849875652563), # 14 (9.321501903268855, 10.188989479504217, 9.610082028117542, 11.462464196805985, 10.275849331148308, 5.789137058744912, 7.642034201749626, 8.569143135599756, 11.23109473373482, 7.29471557214749, 7.757319337619419, 9.031249705859171, 9.37827342756938), # 15 (9.5029653356198, 10.380690508860132, 9.790888868163425, 11.678164603775716, 10.472279411582333, 5.898074297221459, 7.785740388963976, 8.73008331110196, 11.442393241108286, 7.431877979461996, 7.9033229164645125, 9.20114387468494, 9.554781444523545), # 16 (9.663932709715075, 10.549321560579946, 9.949936396542352, 11.867906175282112, 10.645749791913838, 5.993900901234285, 7.9121527097307105, 8.871653604460818, 11.628261821648984, 7.552534312869467, 8.031755678277799, 9.350591945864055, 9.710046977881415), # 17 (9.803108669450204, 10.693441146668274, 10.08586517030988, 12.030067190829278, 10.794818631708589, 6.075797969921503, 8.020190490232851, 8.99264442519526, 11.787112132476096, 7.6556530070435365, 8.141519832540508, 9.478316552304715, 9.842743079009345), # 18 (9.919197858720699, 10.811607779129744, 10.197315746521578, 12.163025929921314, 10.918044090532366, 6.142946602421208, 8.108773056653394, 9.091846182824245, 11.917355830708779, 7.740202496657828, 8.231517588733878, 9.583040326915096, 9.951542799273696), # 19 (10.010904921422082, 10.902379969968962, 10.282928682233003, 12.265160672062354, 11.013984327950944, 6.194527897871518, 8.176819735175362, 9.168049286866717, 12.017404573466198, 7.805151216385958, 8.30065115633915, 9.66348590260339, 10.035119190040824), # 20 (10.076934501449866, 10.964316231190558, 10.341344534499719, 12.334849696756486, 11.081197503530088, 6.229722955410535, 8.223249851981759, 9.220044146841623, 12.085670017867521, 7.849467600901555, 8.34782274483756, 9.718375912277793, 10.092145302677078), # 21 (10.115991242699579, 10.995975074799144, 10.371203860377285, 12.370471283507836, 11.118241776835575, 6.247712874176367, 8.2469827332556, 9.246621172267915, 12.120563821031915, 7.872120084878242, 8.37193456371034, 9.74643298884649, 10.121294188548827), # 22 (10.13039336334264, 10.999723593964335, 10.374923182441702, 12.374930812757203, 11.127732056032597, 6.25, 8.249804002259339, 9.249493827160494, 12.124926234567901, 7.874792272519433, 8.37495803716174, 9.749897576588934, 10.125), # 23 (10.141012413034153, 10.997537037037038, 10.374314814814815, 12.374381944444446, 11.133107613614852, 6.25, 8.248253812636166, 9.2455, 12.124341666666666, 7.87315061728395, 8.37462457912458, 9.749086419753086, 10.125), # 24 (10.15140723021158, 10.993227023319616, 10.373113854595337, 12.373296039094651, 11.138364945594503, 6.25, 8.24519890260631, 9.237654320987655, 12.123186728395062, 7.869918838591678, 8.373963399426362, 9.747485139460448, 10.125), # 25 (10.161577019048034, 10.986859396433472, 10.371336762688616, 12.37168544238683, 11.143503868421105, 6.25, 8.240686718308721, 9.226104938271606, 12.1214762345679, 7.865150708733425, 8.372980483850855, 9.745115683584821, 10.125), # 26 (10.171520983716636, 10.978499999999999, 10.369, 12.369562499999999, 11.148524198544214, 6.25, 8.234764705882354, 9.211, 12.119225, 7.858899999999999, 8.371681818181818, 9.742, 10.125), # 27 (10.181238328390501, 10.968214677640603, 10.366120027434842, 12.366939557613168, 11.153425752413401, 6.25, 8.22748031146615, 9.192487654320988, 12.116447839506172, 7.851220484682213, 8.370073388203018, 9.73816003657979, 10.125), # 28 (10.19072825724275, 10.95606927297668, 10.362713305898492, 12.36382896090535, 11.15820834647822, 6.25, 8.218880981199066, 9.170716049382715, 12.113159567901235, 7.842165935070874, 8.368161179698216, 9.733617741197987, 10.125), # 29 (10.199989974446497, 10.94212962962963, 10.358796296296296, 12.360243055555555, 11.162871797188236, 6.25, 8.209014161220043, 9.145833333333332, 12.109375, 7.83179012345679, 8.365951178451178, 9.728395061728394, 10.125), # 30 (10.209022684174858, 10.926461591220852, 10.354385459533608, 12.356194187242798, 11.167415920993008, 6.25, 8.19792729766804, 9.117987654320988, 12.105108950617284, 7.820146822130773, 8.363449370245666, 9.722513946044812, 10.125), # 31 (10.217825590600954, 10.909131001371742, 10.349497256515773, 12.35169470164609, 11.171840534342095, 6.25, 8.185667836681999, 9.087327160493828, 12.100376234567902, 7.807289803383631, 8.360661740865444, 9.715996342021034, 10.125), # 32 (10.226397897897897, 10.890203703703703, 10.344148148148149, 12.346756944444444, 11.176145453685063, 6.25, 8.172283224400871, 9.054, 12.095191666666667, 7.793272839506173, 8.357594276094275, 9.708864197530863, 10.125), # 33 (10.23473881023881, 10.869745541838133, 10.338354595336076, 12.341393261316872, 11.180330495471466, 6.25, 8.15782090696361, 9.018154320987653, 12.089570061728397, 7.778149702789209, 8.354252961715924, 9.701139460448102, 10.125), # 34 (10.242847531796807, 10.847822359396433, 10.332133058984912, 12.335615997942385, 11.18439547615087, 6.25, 8.142328330509159, 8.979938271604938, 12.083526234567902, 7.761974165523548, 8.350643783514153, 9.692844078646548, 10.125), # 35 (10.250723266745005, 10.824499999999999, 10.3255, 12.3294375, 11.188340212172836, 6.25, 8.12585294117647, 8.9395, 12.077074999999999, 7.7448, 8.346772727272727, 9.684000000000001, 10.125), # 36 (10.258365219256524, 10.799844307270233, 10.318471879286694, 12.322870113168724, 11.192164519986921, 6.25, 8.108442185104494, 8.896987654320988, 12.070231172839506, 7.726680978509374, 8.34264577877541, 9.674629172382259, 10.125), # 37 (10.265772593504476, 10.773921124828533, 10.311065157750342, 12.315926183127573, 11.19586821604269, 6.25, 8.09014350843218, 8.85254938271605, 12.063009567901235, 7.707670873342479, 8.33826892380596, 9.664753543667125, 10.125), # 38 (10.272944593661986, 10.746796296296296, 10.303296296296297, 12.308618055555556, 11.199451116789703, 6.25, 8.071004357298476, 8.806333333333333, 12.055425000000001, 7.687823456790124, 8.333648148148148, 9.654395061728394, 10.125), # 39 (10.279880423902163, 10.718535665294924, 10.295181755829903, 12.300958076131687, 11.202913038677519, 6.25, 8.05107217784233, 8.758487654320989, 12.047492283950618, 7.667192501143119, 8.328789437585733, 9.643575674439873, 10.125), # 40 (10.286579288398128, 10.689205075445816, 10.286737997256516, 12.29295859053498, 11.206253798155702, 6.25, 8.030394416202695, 8.709160493827161, 12.0392262345679, 7.645831778692272, 8.323698777902482, 9.632317329675354, 10.125), # 41 (10.293040391323, 10.658870370370371, 10.277981481481483, 12.284631944444445, 11.209473211673808, 6.25, 8.009018518518518, 8.6585, 12.030641666666668, 7.623795061728395, 8.318382154882155, 9.620641975308642, 10.125), # 42 (10.299262936849892, 10.627597393689987, 10.268928669410151, 12.275990483539095, 11.212571095681403, 6.25, 7.98699193092875, 8.606654320987655, 12.021753395061728, 7.601136122542296, 8.312845554308517, 9.608571559213535, 10.125), # 43 (10.305246129151927, 10.595451989026063, 10.259596021947875, 12.267046553497943, 11.215547266628045, 6.25, 7.964362099572339, 8.553771604938273, 12.0125762345679, 7.577908733424783, 8.307094961965332, 9.596128029263832, 10.125), # 44 (10.310989172402216, 10.5625, 10.25, 12.2578125, 11.218401540963296, 6.25, 7.9411764705882355, 8.5, 12.003124999999999, 7.554166666666667, 8.301136363636363, 9.583333333333332, 10.125), # 45 (10.31649127077388, 10.528807270233196, 10.240157064471878, 12.24830066872428, 11.221133735136716, 6.25, 7.917482490115388, 8.445487654320988, 11.993414506172838, 7.529963694558756, 8.294975745105374, 9.57020941929584, 10.125), # 46 (10.321751628440035, 10.49443964334705, 10.230083676268862, 12.238523405349794, 11.223743665597867, 6.25, 7.893327604292747, 8.390382716049382, 11.983459567901235, 7.505353589391861, 8.288619092156129, 9.55677823502515, 10.125), # 47 (10.326769449573796, 10.459462962962963, 10.219796296296296, 12.228493055555557, 11.22623114879631, 6.25, 7.868759259259259, 8.334833333333334, 11.973275000000001, 7.4803901234567896, 8.28207239057239, 9.543061728395061, 10.125), # 48 (10.331543938348286, 10.42394307270233, 10.209311385459534, 12.218221965020577, 11.228596001181607, 6.25, 7.8438249011538765, 8.278987654320987, 11.96287561728395, 7.455127069044353, 8.275341626137923, 9.529081847279379, 10.125), # 49 (10.336074298936616, 10.387945816186559, 10.198645404663925, 12.207722479423868, 11.230838039203315, 6.25, 7.81857197611555, 8.222993827160494, 11.9522762345679, 7.429618198445358, 8.268432784636488, 9.514860539551899, 10.125), # 50 (10.34035973551191, 10.351537037037037, 10.187814814814814, 12.197006944444444, 11.232957079310998, 6.25, 7.793047930283224, 8.167, 11.941491666666668, 7.403917283950617, 8.261351851851853, 9.50041975308642, 10.125), # 51 (10.344399452247279, 10.314782578875173, 10.176836076817558, 12.186087705761317, 11.234952937954214, 6.25, 7.767300209795852, 8.111154320987653, 11.930536728395062, 7.3780780978509375, 8.254104813567777, 9.485781435756746, 10.125), # 52 (10.348192653315843, 10.27774828532236, 10.165725651577505, 12.174977109053497, 11.23682543158253, 6.25, 7.741376260792383, 8.055604938271605, 11.919426234567903, 7.3521544124371285, 8.246697655568026, 9.470967535436671, 10.125), # 53 (10.351738542890716, 10.2405, 10.154499999999999, 12.1636875, 11.238574376645502, 6.25, 7.715323529411765, 8.000499999999999, 11.908175, 7.3262, 8.239136363636362, 9.456, 10.125), # 54 (10.355036325145022, 10.203103566529492, 10.143175582990398, 12.152231224279834, 11.24019958959269, 6.25, 7.689189461792948, 7.945987654320987, 11.896797839506172, 7.300268632830361, 8.231426923556553, 9.44090077732053, 10.125), # 55 (10.358085204251871, 10.165624828532236, 10.131768861454047, 12.140620627572016, 11.241700886873659, 6.25, 7.663021504074881, 7.892216049382716, 11.885309567901235, 7.274414083219022, 8.223575321112358, 9.425691815272062, 10.125), # 56 (10.360884384384383, 10.12812962962963, 10.120296296296297, 12.128868055555555, 11.243078084937967, 6.25, 7.636867102396514, 7.839333333333334, 11.873725, 7.24869012345679, 8.215587542087542, 9.410395061728394, 10.125), # 57 (10.36343306971568, 10.090683813443073, 10.108774348422497, 12.116985853909464, 11.244331000235174, 6.25, 7.610773702896797, 7.787487654320987, 11.862058950617284, 7.223150525834477, 8.20746957226587, 9.395032464563329, 10.125), # 58 (10.36573046441887, 10.053353223593964, 10.097219478737998, 12.104986368312757, 11.245459449214845, 6.25, 7.584788751714678, 7.736827160493827, 11.850326234567902, 7.197849062642891, 8.1992273974311, 9.379625971650663, 10.125), # 59 (10.367775772667077, 10.016203703703704, 10.085648148148147, 12.092881944444445, 11.246463248326537, 6.25, 7.558959694989106, 7.6875, 11.838541666666668, 7.172839506172839, 8.190867003367003, 9.364197530864198, 10.125), # 60 (10.369568198633415, 9.97930109739369, 10.0740768175583, 12.080684927983539, 11.247342214019811, 6.25, 7.533333978859033, 7.639654320987654, 11.826720061728395, 7.148175628715135, 8.182394375857339, 9.348769090077733, 10.125), # 61 (10.371106946491004, 9.942711248285322, 10.062521947873801, 12.068407664609055, 11.248096162744234, 6.25, 7.507959049463406, 7.5934382716049384, 11.814876234567901, 7.123911202560586, 8.17381550068587, 9.333362597165067, 10.125), # 62 (10.37239122041296, 9.9065, 10.051, 12.056062500000001, 11.248724910949356, 6.25, 7.482882352941176, 7.549, 11.803025, 7.100099999999999, 8.165136363636364, 9.318, 10.125), # 63 (10.373420224572397, 9.870733196159122, 10.039527434842249, 12.043661779835391, 11.249228275084748, 6.25, 7.458151335431292, 7.506487654320988, 11.791181172839506, 7.076795793324188, 8.156362950492579, 9.302703246456334, 10.125), # 64 (10.374193163142438, 9.835476680384087, 10.0281207133059, 12.031217849794238, 11.249606071599967, 6.25, 7.433813443072703, 7.466049382716049, 11.779359567901235, 7.054052354823959, 8.147501247038285, 9.287494284407863, 10.125), # 65 (10.374709240296196, 9.800796296296298, 10.016796296296297, 12.018743055555555, 11.249858116944573, 6.25, 7.409916122004357, 7.427833333333334, 11.767575, 7.031923456790123, 8.138557239057238, 9.272395061728396, 10.125), # 66 (10.374967660206792, 9.766757887517146, 10.005570644718793, 12.006249742798353, 11.24998422756813, 6.25, 7.386506818365206, 7.391987654320989, 11.755842283950617, 7.010462871513489, 8.12953691233321, 9.257427526291723, 10.125), # 67 (10.374791614480825, 9.733248639320323, 9.994405949931412, 11.993641740472357, 11.249877955297345, 6.2498840115836, 7.363515194829646, 7.358343850022862, 11.744087848651121, 6.989620441647166, 8.120285988540376, 9.242530021899743, 10.124875150034294), # 68 (10.373141706924315, 9.699245519713262, 9.982988425925925, 11.980283514492752, 11.248910675381262, 6.248967078189301, 7.340268181346613, 7.325098765432099, 11.731797839506173, 6.968806390704429, 8.10986283891547, 9.227218973359324, 10.12388599537037), # 69 (10.369885787558895, 9.664592459843355, 9.971268432784635, 11.966087124261943, 11.246999314128942, 6.247161255906112, 7.31666013456137, 7.291952446273434, 11.718902892089622, 6.947919524462734, 8.09814888652608, 9.211422761292809, 10.121932334533609), # 70 (10.365069660642929, 9.62931016859153, 9.959250085733881, 11.951073503757382, 11.244168078754136, 6.244495808565767, 7.292701659538988, 7.258915866483768, 11.705422210791038, 6.926960359342639, 8.085187370783862, 9.195152937212715, 10.119039887688615), # 71 (10.358739130434783, 9.593419354838709, 9.946937499999999, 11.935263586956522, 11.240441176470588, 6.2410000000000005, 7.268403361344538, 7.226, 11.691375, 6.905929411764705, 8.07102153110048, 9.17842105263158, 10.115234375), # 72 (10.35094000119282, 9.556940727465816, 9.934334790809327, 11.918678307836823, 11.23584281449205, 6.236703094040542, 7.243775845043092, 7.193215820759031, 11.676780464106082, 6.884827198149493, 8.055694606887588, 9.161238659061919, 10.110541516632374), # 73 (10.341718077175404, 9.519894995353777, 9.921446073388202, 11.901338600375738, 11.230397200032275, 6.231634354519128, 7.218829715699722, 7.160574302697759, 11.661657807498857, 6.863654234917561, 8.039249837556856, 9.143617308016267, 10.104987032750344), # 74 (10.331119162640901, 9.482302867383511, 9.908275462962962, 11.883265398550725, 11.224128540305012, 6.22582304526749, 7.1935755783795, 7.128086419753086, 11.6460262345679, 6.84241103848947, 8.021730462519935, 9.125568551007147, 10.098596643518519), # 75 (10.319189061847677, 9.44418505243595, 9.894827074759945, 11.864479636339238, 11.217061042524005, 6.219298430117361, 7.168024038147495, 7.095763145861912, 11.629904949702789, 6.821098125285779, 8.003179721188491, 9.107103939547082, 10.091396069101508), # 76 (10.305973579054093, 9.40556225939201, 9.881105024005485, 11.845002247718732, 11.209218913903008, 6.212089772900472, 7.142185700068779, 7.063615454961135, 11.613313157293096, 6.7997160117270505, 7.983640852974187, 9.088235025148606, 10.083411029663925), # 77 (10.291518518518519, 9.366455197132618, 9.867113425925925, 11.824854166666666, 11.200626361655774, 6.204226337448559, 7.116071169208425, 7.031654320987655, 11.596270061728394, 6.7782652142338415, 7.9631570972886765, 9.068973359324238, 10.074667245370371), # 78 (10.275869684499314, 9.326884574538697, 9.8528563957476, 11.804056327160493, 11.191307592996047, 6.195737387593354, 7.089691050631501, 6.9998907178783725, 11.578794867398262, 6.756746249226714, 7.941771693543622, 9.049330493586504, 10.065190436385459), # 79 (10.259072881254847, 9.286871100491172, 9.838338048696844, 11.782629663177671, 11.181286815137579, 6.18665218716659, 7.063055949403081, 6.968335619570188, 11.560906778692273, 6.7351596331262265, 7.919527881150688, 9.029317979447935, 10.0550063228738), # 80 (10.241173913043479, 9.246435483870968, 9.8235625, 11.760595108695654, 11.170588235294117, 6.177, 7.036176470588235, 6.937, 11.542625, 6.713505882352941, 7.8964688995215315, 9.008947368421053, 10.044140624999999), # 81 (10.222218584123576, 9.205598433559008, 9.808533864883403, 11.737973597691894, 11.159236060679415, 6.166810089925317, 7.009063219252036, 6.90589483310471, 11.52396873571102, 6.691785513327416, 7.872637988067813, 8.988230212018387, 10.03261906292867), # 82 (10.202252698753504, 9.164380658436214, 9.793256258573388, 11.714786064143853, 11.147254498507221, 6.156111720774272, 6.981726800459553, 6.875031092821216, 11.504957190214906, 6.669999042470211, 7.848078386201194, 8.967178061752461, 10.020467356824417), # 83 (10.181322061191626, 9.122802867383513, 9.777733796296296, 11.691053442028986, 11.134667755991286, 6.144934156378601, 6.954177819275858, 6.844419753086419, 11.485609567901234, 6.648146986201889, 7.822833333333333, 8.945802469135803, 10.007711226851852), # 84 (10.159472475696308, 9.080885769281826, 9.761970593278463, 11.666796665324746, 11.121500040345357, 6.133306660570035, 6.926426880766024, 6.814071787837221, 11.465945073159578, 6.626229860943005, 7.796946068875894, 8.924114985680937, 9.994376393175584), # 85 (10.136749746525913, 9.03865007301208, 9.745970764746229, 11.64203666800859, 11.107775558783183, 6.121258497180309, 6.89848458999512, 6.783998171010516, 11.445982910379517, 6.604248183114124, 7.770459832240534, 8.902127162900394, 9.98048857596022), # 86 (10.113199677938807, 8.996116487455197, 9.729738425925925, 11.61679438405797, 11.09351851851852, 6.108818930041152, 6.870361552028219, 6.75420987654321, 11.425742283950619, 6.582202469135802, 7.743417862838915, 8.879850552306692, 9.96607349537037), # 87 (10.088868074193357, 8.9533057214921, 9.713277692043896, 11.59109074745035, 11.07875312676511, 6.096017222984301, 6.842068371930391, 6.724717878372199, 11.40524239826246, 6.560093235428601, 7.715863400082698, 8.857296705412365, 9.951156871570646), # 88 (10.063800739547922, 8.910238484003717, 9.696592678326475, 11.564946692163177, 11.063503590736707, 6.082882639841488, 6.813615654766708, 6.695533150434385, 11.384502457704619, 6.537920998413083, 7.687839683383544, 8.834477173729935, 9.935764424725651), # 89 (10.03804347826087, 8.866935483870968, 9.6796875, 11.538383152173914, 11.04779411764706, 6.069444444444445, 6.785014005602241, 6.666666666666666, 11.363541666666668, 6.515686274509804, 7.65938995215311, 8.81140350877193, 9.919921875), # 90 (10.011642094590563, 8.823417429974777, 9.662566272290809, 11.511421061460013, 11.031648914709915, 6.055731900624904, 6.756274029502062, 6.638129401005944, 11.342379229538182, 6.4933895801393255, 7.63055744580306, 8.788087262050874, 9.903654942558298), # 91 (9.984642392795372, 8.779705031196071, 9.64523311042524, 11.484081353998926, 11.015092189139029, 6.041774272214601, 6.727406331531242, 6.609932327389118, 11.321034350708734, 6.471031431722209, 7.601385403745053, 8.764539985079297, 9.886989347565157), # 92 (9.957090177133654, 8.735818996415771, 9.62769212962963, 11.456384963768118, 10.998148148148148, 6.027600823045267, 6.69842151675485, 6.582086419753087, 11.299526234567901, 6.448612345679011, 7.57191706539075, 8.74077322936972, 9.869950810185184), # 93 (9.92903125186378, 8.691780034514801, 9.609947445130317, 11.428352824745035, 10.98084099895102, 6.0132408169486355, 6.669330190237961, 6.554602652034752, 11.277874085505259, 6.426132838430297, 7.54219567015181, 8.716798546434674, 9.85256505058299), # 94 (9.90051142124411, 8.647608854374088, 9.592003172153635, 11.400005870907139, 10.963194948761398, 5.9987235177564395, 6.640142957045644, 6.527491998171011, 11.25609710791038, 6.403593426396621, 7.512264457439896, 8.69262748778668, 9.834857788923182), # 95 (9.871576489533012, 8.603326164874554, 9.573863425925927, 11.371365036231884, 10.945234204793028, 5.984078189300411, 6.610870422242971, 6.500765432098766, 11.234214506172838, 6.3809946259985475, 7.482166666666667, 8.668271604938273, 9.816854745370371), # 96 (9.842272260988848, 8.558952674897121, 9.555532321673525, 11.342451254696725, 10.926982974259664, 5.969334095412284, 6.581523190895013, 6.474433927754916, 11.212245484682214, 6.358336953656634, 7.451945537243782, 8.64374244940197, 9.798581640089164), # 97 (9.812644539869984, 8.514509093322713, 9.53701397462277, 11.31328546027912, 10.908465464375052, 5.954520499923793, 6.552111868066842, 6.44850845907636, 11.190209247828074, 6.335620925791441, 7.421644308582906, 8.619051572690298, 9.78006419324417), # 98 (9.782739130434782, 8.470016129032258, 9.5183125, 11.283888586956522, 10.889705882352942, 5.939666666666667, 6.52264705882353, 6.423, 11.168125, 6.312847058823529, 7.391306220095694, 8.59421052631579, 9.761328125), # 99 (9.752601836941611, 8.425494490906676, 9.49943201303155, 11.254281568706388, 10.870728435407084, 5.924801859472641, 6.493139368230145, 6.3979195244627345, 11.146011945587563, 6.290015869173458, 7.36097451119381, 8.569230861790967, 9.742399155521262), # 100 (9.722278463648834, 8.380964887826895, 9.480376628943759, 11.224485339506174, 10.85155733075123, 5.909955342173449, 6.463599401351762, 6.3732780064014625, 11.123889288980338, 6.267127873261788, 7.330692421288912, 8.544124130628353, 9.723303004972564), # 101 (9.691814814814816, 8.336448028673836, 9.461150462962962, 11.194520833333334, 10.832216775599129, 5.895156378600824, 6.43403776325345, 6.349086419753086, 11.1017762345679, 6.244183587509078, 7.300503189792663, 8.518901884340481, 9.704065393518519), # 102 (9.661256694697919, 8.291964622328422, 9.4417576303155, 11.164408984165325, 10.812730977164529, 5.880434232586496, 6.40446505900028, 6.325355738454504, 11.079691986739826, 6.221183528335889, 7.270450056116723, 8.493575674439873, 9.68471204132373), # 103 (9.63064990755651, 8.247535377671579, 9.422202246227709, 11.134170725979603, 10.79312414266118, 5.865818167962201, 6.374891893657326, 6.302096936442616, 11.057655749885688, 6.19812821216278, 7.24057625967275, 8.468157052439054, 9.665268668552812), # 104 (9.600040257648953, 8.203181003584229, 9.402488425925926, 11.103826992753623, 10.773420479302832, 5.851337448559671, 6.345328872289658, 6.279320987654321, 11.035686728395062, 6.175018155410313, 7.210925039872408, 8.442657569850553, 9.64576099537037), # 105 (9.569473549233614, 8.158922208947299, 9.382620284636488, 11.073398718464842, 10.753644194303236, 5.837021338210638, 6.315786599962345, 6.25703886602652, 11.01380412665752, 6.151853874499045, 7.181539636127355, 8.417088778186894, 9.626214741941014), # 106 (9.538995586568856, 8.11477970264171, 9.362601937585735, 11.042906837090714, 10.733819494876139, 5.822899100746838, 6.286275681740461, 6.235261545496114, 10.992027149062643, 6.128635885849539, 7.152463287849252, 8.391462228960604, 9.606655628429355), # 107 (9.508652173913044, 8.070774193548388, 9.3424375, 11.012372282608696, 10.713970588235293, 5.809, 6.256806722689075, 6.214, 10.970375, 6.105364705882353, 7.1237392344497605, 8.365789473684211, 9.587109375), # 108 (9.478489115524543, 8.026926390548255, 9.322131087105625, 10.98181598899624, 10.69412168159445, 5.795353299801859, 6.227390327873262, 6.193265203475081, 10.948866883859168, 6.082040851018047, 7.09541071534054, 8.340082063870238, 9.567601701817559), # 109 (9.448552215661715, 7.983257002522237, 9.301686814128946, 10.951258890230811, 10.674296982167354, 5.7819882639841484, 6.198037102358089, 6.173068129858253, 10.92752200502972, 6.058664837677183, 7.06752096993325, 8.314351551031214, 9.54815832904664), # 110 (9.41888727858293, 7.9397867383512555, 9.281108796296298, 10.920721920289855, 10.654520697167756, 5.768934156378601, 6.168757651208631, 6.153419753086419, 10.906359567901236, 6.035237182280319, 7.040113237639553, 8.288609486679663, 9.528804976851852), # 111 (9.38954010854655, 7.896536306916234, 9.26040114883402, 10.890226013150832, 10.634817033809409, 5.756220240816949, 6.139562579489958, 6.134331047096479, 10.885398776863282, 6.011758401248016, 7.013230757871109, 8.26286742232811, 9.509567365397805), # 112 (9.360504223703044, 7.853598618785952, 9.239617828252069, 10.85983388249204, 10.615175680173705, 5.7438697692145135, 6.1105259636567695, 6.115852568780606, 10.86471281125862, 5.988304736612729, 6.9869239061528665, 8.237192936504428, 9.490443900843221), # 113 (9.331480897900065, 7.811397183525536, 9.219045675021619, 10.829789421277336, 10.595393354566326, 5.731854608529901, 6.082018208410579, 6.09821125950512, 10.84461903571306, 5.965315167912783, 6.961244337113197, 8.211912172112974, 9.471275414160035), # 114 (9.302384903003995, 7.769947198683046, 9.198696932707318, 10.800084505181779, 10.5754076778886, 5.7201435124987645, 6.054059650191562, 6.081402654278709, 10.82512497866879, 5.942825327988077, 6.936154511427094, 8.187037582558851, 9.452006631660376), # 115 (9.273179873237634, 7.729188281291702, 9.178532189983873, 10.770666150266404, 10.555188526383779, 5.708708877287098, 6.026604817527893, 6.065380312898993, 10.80618133922783, 5.920793358449547, 6.911605931271481, 8.162523197487346, 9.43260725975589), # 116 (9.243829442823772, 7.689060048384721, 9.158512035525986, 10.741481372592244, 10.53470577629511, 5.6975230990608905, 5.9996082389477525, 6.050097795163585, 10.787738816492203, 5.899177400908129, 6.887550098823283, 8.13832304654375, 9.413047004858225), # 117 (9.214297245985211, 7.649502116995324, 9.138597058008367, 10.712477188220333, 10.513929303865842, 5.686558573986138, 5.973024442979315, 6.0355086608700965, 10.769748109563935, 5.877935596974759, 6.863938516259424, 8.11439115937335, 9.393295573379024), # 118 (9.184546916944742, 7.610454104156729, 9.118747846105723, 10.683600613211706, 10.492828985339221, 5.675787698228833, 5.946807958150756, 6.021566469816145, 10.752159917545043, 5.857026088260372, 6.840722685756828, 8.090681565621434, 9.373322671729932), # 119 (9.154542089925162, 7.571855626902158, 9.098924988492762, 10.654798663627394, 10.471374696958497, 5.665182867954965, 5.920913312990253, 6.008224781799343, 10.734924939537558, 5.836407016375905, 6.817854109492416, 8.067148294933297, 9.353098006322597), # 120 (9.124246399149268, 7.533646302264829, 9.079089073844187, 10.626018355528434, 10.449536314966918, 5.6547164793305305, 5.89529503602598, 5.995437156617307, 10.717993874643499, 5.816036522932296, 6.795284289643116, 8.043745376954222, 9.33259128356866), # 121 (9.093623478839854, 7.495765747277961, 9.059200690834711, 10.597206704975855, 10.427283715607734, 5.644360928521519, 5.869907655786117, 5.983157154067649, 10.70131742196489, 5.795872749540477, 6.772964728385851, 8.0204268413295, 9.31177220987977), # 122 (9.062636963219719, 7.458153578974774, 9.039220428139036, 10.568310728030694, 10.40458677512419, 5.634088611693925, 5.844705700798839, 5.971338333947983, 10.684846280603754, 5.775873837811387, 6.750846927897544, 7.997146717704421, 9.290610491667572), # 123 (9.031250486511654, 7.420749414388487, 9.01910887443187, 10.539277440753986, 10.381415369759537, 5.623871925013739, 5.819643699592319, 5.959934256055926, 10.668531149662115, 5.755997929355961, 6.728882390355119, 7.973859035724275, 9.269075835343711), # 124 (8.999427682938459, 7.38349287055232, 8.998826618387923, 10.51005385920676, 10.357739375757022, 5.613683264646956, 5.794676180694739, 5.948898480189091, 10.652322728241993, 5.736203165785134, 6.707022617935501, 7.950517825034348, 9.247137947319828), # 125 (8.967132186722928, 7.346323564499494, 8.978334248681898, 10.480586999450054, 10.333528669359893, 5.603495026759568, 5.76975767263427, 5.938184566145092, 10.636171715445418, 5.7164476887098425, 6.685219112815613, 7.927077115279934, 9.224766534007578), # 126 (8.93432763208786, 7.309181113263224, 8.957592353988504, 10.450823877544899, 10.308753126811398, 5.593279607517565, 5.744842703939094, 5.927746073721545, 10.620028810374407, 5.696689639741024, 6.6634233771723785, 7.903490936106316, 9.201931301818599), # 127 (8.900977653256046, 7.272005133876735, 8.93656152298245, 10.420711509552332, 10.28338262435479, 5.583009403086944, 5.719885803137382, 5.917536562716062, 10.603844712130984, 5.6768871604896125, 6.641586913182724, 7.879713317158788, 9.178601957164537), # 128 (8.867045884450281, 7.234735243373241, 8.91520234433844, 10.390196911533382, 10.257387038233311, 5.572656809633695, 5.694841498757313, 5.90750959292626, 10.587570119817174, 5.656998392566545, 6.619661223023571, 7.855698288082636, 9.154748206457038), # 129 (8.832495959893366, 7.197311058785966, 8.893475406731179, 10.359227099549086, 10.230736244690213, 5.562194223323808, 5.669664319327063, 5.89761872414975, 10.571155732535, 5.636981477582757, 6.5975978088718445, 7.831399878523152, 9.130339756107748), # 130 (8.797291513808094, 7.159672197148127, 8.87134129883538, 10.327749089660475, 10.203400119968745, 5.55159404032328, 5.644308793374809, 5.88781751618415, 10.554552249386486, 5.616794557149185, 6.575348172904468, 7.806772118125624, 9.105346312528312), # 131 (8.76139618041726, 7.121758275492944, 8.848760609325746, 10.295709897928587, 10.175348540312154, 5.540828656798102, 5.618729449428725, 5.878059528827073, 10.537710369473654, 5.596395772876765, 6.552863817298364, 7.781769036535342, 9.079737582130376), # 132 (8.724773593943663, 7.083508910853635, 8.825693926876983, 10.263056540414452, 10.146551381963686, 5.529870468914266, 5.592880816016989, 5.868298321876132, 10.520580791898526, 5.575743266376432, 6.53009624423046, 7.756344663397592, 9.053483271325586), # 133 (8.687387388610095, 7.044863720263423, 8.802101840163804, 10.229736033179103, 10.116978521166592, 5.518691872837765, 5.566717421667779, 5.858487455128944, 10.503114215763128, 5.5547951792591235, 6.506996955877678, 7.730453028357666, 9.026553086525583), # 134 (8.649201198639354, 7.005762320755524, 8.777944937860909, 10.195695392283579, 10.08659983416412, 5.507265264734592, 5.540193794909268, 5.84858048838312, 10.48526134016948, 5.533509653135776, 6.483517454416942, 7.704048161060852, 8.99891673414202), # 135 (8.610178658254235, 6.966144329363159, 8.753183808643008, 10.160881633788906, 10.055385197199517, 5.495563040770739, 5.513264464269635, 5.838530981436277, 10.466972864219606, 5.511844829617322, 6.459609242025177, 7.677084091152441, 8.970543920586536), # 136 (8.570283401677534, 6.925949363119547, 8.72777904118481, 10.125241773756125, 10.023304486516034, 5.483557597112198, 5.485883958277055, 5.828292494086029, 10.448199487015533, 5.4897588503147015, 6.435223820879306, 7.649514848277719, 8.941404352270776), # 137 (8.529479063132047, 6.885117039057908, 8.701691224161017, 10.088722828246263, 9.990327578356919, 5.471221329924964, 5.458006805459704, 5.81781858612999, 10.428891907659281, 5.4672098568388465, 6.410312693156252, 7.621294462081978, 8.91146773560639), # 138 (8.487729276840568, 6.843586974211461, 8.67488094624634, 10.051271813320358, 9.956424348965415, 5.458526635375026, 5.429587534345759, 5.807062817365774, 10.409000825252871, 5.444155990800697, 6.38482736103294, 7.592376962210506, 8.880703777005019), # 139 (8.444997677025897, 6.801298785613425, 8.647308796115487, 10.012835745039444, 9.92156467458478, 5.445445909628379, 5.400580673463397, 5.795978747590996, 10.388476938898332, 5.420555393811186, 6.358719326686294, 7.562716378308592, 8.849082182878314), # 140 (8.40124789791083, 6.758192090297021, 8.61893536244316, 9.973361639464553, 9.885718431458253, 5.431951548851015, 5.370940751340795, 5.78451993660327, 10.36727094769768, 5.396366207481251, 6.331940092293238, 7.532266740021525, 8.816572659637913), # 141 (8.356443573718156, 6.714206505295466, 8.58972123390407, 9.93279651265672, 9.848855495829087, 5.418015949208927, 5.340622296506126, 5.772639944200211, 10.345333550752942, 5.371546573421828, 6.304441160030697, 7.500982076994594, 8.783144913695466), # 142 (8.310548338670674, 6.669281647641981, 8.559626999172925, 9.891087380676975, 9.810945743940529, 5.403611506868106, 5.3095798374875685, 5.760292330179432, 10.322615447166147, 5.3460546332438525, 6.276174032075593, 7.4688164188730894, 8.748768651462617), # 143 (8.263525826991184, 6.623357134369786, 8.528613246924428, 9.848181259586356, 9.771959052035829, 5.388710617994547, 5.277767902813299, 5.747430654338549, 10.29906733603931, 5.31984852855826, 6.247090210604851, 7.435723795302299, 8.713413579351014), # 144 (8.215339672902477, 6.576372582512099, 8.496640565833289, 9.804025165445895, 9.731865296358233, 5.3732856787542405, 5.245141021011493, 5.734008476475176, 10.274639916474454, 5.292886400975988, 6.217141197795395, 7.401658235927513, 8.6770494037723), # 145 (8.16595351062735, 6.528267609102142, 8.463669544574216, 9.758566114316626, 9.690634353150992, 5.35730908531318, 5.21165372061033, 5.719979356386927, 10.249283887573606, 5.2651263921079705, 6.186278495824149, 7.3665737703940195, 8.639645831138118), # 146 (8.1153309743886, 6.47898183117313, 8.42966077182191, 9.71175112225958, 9.648236098657351, 5.340753233837358, 5.177260530137981, 5.705296853871415, 10.22294994843879, 5.236526643565146, 6.154453606868036, 7.3304244283471105, 8.601172567860118), # 147 (8.063435698409021, 6.428454865758288, 8.394574836251083, 9.663527205335797, 9.604640409120561, 5.323590520492767, 5.1419159781226265, 5.689914528726257, 10.195588798172029, 5.207045296958447, 6.1216180331039824, 7.29316423943207, 8.561599320349941), # 148 (8.010231316911412, 6.37662632989083, 8.358372326536443, 9.613841379606303, 9.55981716078387, 5.3057933414453995, 5.105574593092441, 5.673785940749067, 10.167151135875338, 5.176640493898813, 6.08772327670891, 7.254747233294191, 8.520895795019237), # 149 (7.955681464118564, 6.323435840603979, 8.321013831352694, 9.562640661132138, 9.513736229890526, 5.287334092861249, 5.0681909035756005, 5.656864649737456, 10.137587660650752, 5.1452703759971765, 6.0527208398597425, 7.215127439578763, 8.479031698279647), # 150 (7.899749774253275, 6.268823014930954, 8.282459939374542, 9.50987206597433, 9.466367492683776, 5.268185170906305, 5.029719438100283, 5.639104215489043, 10.106849071600289, 5.112893084864478, 6.016562224733405, 7.174258887931072, 8.435976736542818), # 151 (7.842399881538343, 6.212727469904973, 8.242671239276701, 9.455482610193918, 9.417680825406869, 5.2483189717465635, 4.9901147251946645, 5.620458197801441, 10.07488606782597, 5.079466762111649, 5.979198933506821, 7.132095607996409, 8.391700616220398), # 152 (7.78359542019656, 6.155088822559256, 8.201608319733868, 9.399419309851933, 9.367646104303056, 5.2277078915480155, 4.949331293386919, 5.600880156472262, 10.041649348429823, 5.044949549349629, 5.940582468356916, 7.088591629420064, 8.346173043724027), # 153 (7.723300024450729, 6.095846689927024, 8.159231769420758, 9.34162918100941, 9.31623320561558, 5.206324326476654, 4.907323671205228, 5.580323651299123, 10.007089612513866, 5.009299588189353, 5.900664331460612, 7.043700981847325, 8.299363725465357), # 154 (7.6614773285236355, 6.034940689041495, 8.115502177012075, 9.282059239727378, 9.263412005587696, 5.184140672698471, 4.864046387177761, 5.558742242079636, 9.971157559180128, 4.972475020241754, 5.859396024994833, 6.997377694923482, 8.251242367856026), # 155 (7.598090966638081, 5.972310436935888, 8.070380131182526, 9.220656502066875, 9.209152380462648, 5.161129326379461, 4.8194539698327, 5.5360894886114185, 9.933803887530626, 4.934433987117773, 5.816729051136504, 6.949575798293822, 8.201778677307685), # 156 (7.533104573016862, 5.907895550643423, 8.023826220606818, 9.157367984088937, 9.153424206483685, 5.137262683685614, 4.773500947698219, 5.512318950692082, 9.894979296667389, 4.895134630428341, 5.772614912062549, 6.900249321603637, 8.150942360231976), # 157 (7.464680946405239, 5.840453120772258, 7.973591953902355, 9.089769581651243, 9.093681105870997, 5.11102447631711, 4.725106720927857, 5.485796952349372, 9.851662091599097, 4.8533659162911436, 5.7255957525389425, 6.847599564194339, 8.096485859415345), # 158 (7.382286766978402, 5.763065319599478, 7.906737818402988, 9.003977158788453, 9.015191309781628, 5.073689648007103, 4.668212763385716, 5.4472135327643825, 9.786427261222144, 4.802280994098745, 5.667416935618994, 6.781362523683108, 8.025427646920194), # 159 (7.284872094904309, 5.675096728540714, 7.821920957955888, 8.89857751040886, 8.916420131346795, 5.024341296047684, 4.602243748383784, 5.3955991895273465, 9.697425227228651, 4.741205651862893, 5.59725950860954, 6.700501948887847, 7.93642060889358), # 160 (7.17322205458596, 5.577120868080469, 7.720046971910309, 8.774572503756728, 8.798393124282113, 4.963577241570314, 4.527681446006876, 5.33160053310978, 9.585829766999018, 4.6706581931709374, 5.515741654599707, 6.605767468907571, 7.830374044819097), # 161 (7.048121770426357, 5.469711258703239, 7.602021459615496, 8.632964006076326, 8.662135842303204, 4.891995305706455, 4.445007626339809, 5.255864173983202, 9.452814657913637, 4.5911569216102315, 5.42348155667862, 6.497908712841293, 7.708197254180333), # 162 (6.9103563668284975, 5.353441420893524, 7.468750020420702, 8.474753884611934, 8.508673839125688, 4.810193309587572, 4.354704059467401, 5.169036722619125, 9.299553677352906, 4.503220140768125, 5.321097397935408, 6.3776753097880325, 7.570799536460879), # 163 (6.760710968195384, 5.228884875135821, 7.321138253675176, 8.300944006607818, 8.339032668465189, 4.718769074345129, 4.257252515474466, 5.071764789489069, 9.127220602697223, 4.407366154231968, 5.209207361459196, 6.245816888846803, 7.419090191144328), # 164 (6.599970698930017, 5.096615141914632, 7.160091758728169, 8.112536239308252, 8.154237884037324, 4.618320421110586, 4.153134764445822, 4.964694985064546, 8.93698921132698, 4.3041132655891134, 5.088429630339111, 6.10308307911662, 7.25397851771427), # 165 (6.428920683435397, 4.957205741714454, 6.9865161349289275, 7.910532449957501, 7.955315039557714, 4.509445171015408, 4.042832576466286, 4.848473919817077, 8.730033280622573, 4.193979778426912, 4.959382387664279, 5.950223509696501, 7.0763738156542955), # 166 (6.248346046114523, 4.811230195019787, 6.801316981626704, 7.695934505799843, 7.74328968874198, 4.392741145191058, 3.9268277216206746, 4.723748204218176, 8.5075265879644, 4.077483996332714, 4.822683816523827, 5.7879878096854585, 6.887185384447996), # 167 (6.059031911370395, 4.659262022315128, 6.605399898170748, 7.469744274079546, 7.519187385305742, 4.268806164768999, 3.805601969993804, 4.5911644487393595, 8.270642910732855, 3.955144222893872, 4.678952100006881, 5.617125608182511, 6.6873225235789615), # 168 (5.861763403606015, 4.501874744084979, 6.399670483910309, 7.232963622040883, 7.28403368296462, 4.138238050880695, 3.6796370916704917, 4.451369263852145, 8.020556026308338, 3.8274787616977366, 4.528805421202568, 5.438386534286672, 6.477694532530785), # 169 (5.657325647224384, 4.339641880813837, 6.185034338194635, 6.98659441692812, 7.038854135434233, 4.001634624657607, 3.549414856735553, 4.305009260028047, 7.7584397120712385, 3.6950059163316578, 4.372861963200016, 5.252520217096959, 6.259210710787055), # 170 (5.4465037666285, 4.173136952986201, 5.962397060372978, 6.731638525985535, 6.784674296430206, 3.8595937072311983, 3.4154170352738054, 4.152731047738583, 7.485467745401956, 3.5582439903829886, 4.211739909088348, 5.060276285712386, 6.032780357831365), # 171 (5.230082886221365, 4.002933481086569, 5.7326642497945866, 6.4690978164573965, 6.5225197196681535, 3.7127131197329337, 3.2781253973700655, 3.9951812374552707, 7.202813903680886, 3.41771128743908, 4.046057441956694, 4.862404369231971, 5.799312773147303), # 172 (5.00884813040598, 3.8296049855994423, 5.4967415058087115, 6.1999741555879755, 6.253415958863702, 3.5615906832942748, 3.1380217131091497, 3.8330064396496235, 6.911651964288422, 3.2739261110872815, 3.8764327448941778, 4.659654096754725, 5.5597172562184625), # 173 (4.783584623585344, 3.653724987009318, 5.2555344277646014, 5.9252694106215404, 5.978388567732466, 3.406824219046685, 2.9955877525758754, 3.6668532647931604, 6.613155704604964, 3.1274067649149466, 3.7034840009899277, 4.452775097379668, 5.314903106528433), # 174 (4.555077490162455, 3.4758670058006946, 5.009948615011508, 5.645985448802367, 5.698463099990069, 3.2490115481216284, 2.851305285855058, 3.497368323357396, 6.308498902010905, 2.9786715525094243, 3.5278293933330693, 4.242517000205814, 5.0657796235608075), # 175 (4.324111854540319, 3.296604562458073, 4.760889666898678, 5.363124137374725, 5.41466510935213, 3.0887504916505666, 2.705656083031515, 3.325198225813849, 5.998855333886642, 2.828238777458067, 3.35008710501273, 4.029629434332179, 4.813256106799174), # 176 (4.0914728411219325, 3.1165111774659513, 4.5092631827753635, 5.077687343582883, 5.128020149534273, 2.9266388707649633, 2.5591219141900625, 3.1509895826340326, 5.68539877761257, 2.6766267433482245, 3.1708753191180357, 3.8148620288577786, 4.5582418557271245), # 177 (3.8579455743102966, 2.9361603713088282, 4.255974761990814, 4.790676934671116, 4.8395537742521135, 2.7632745065962827, 2.4121845494155174, 2.9753890042894655, 5.3693030105690855, 2.52435375376725, 2.9908122187381125, 3.598964412881627, 4.301646169828252), # 178 (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 179 ) passenger_arriving_acc = ( (6, 4, 3, 7, 5, 0, 4, 5, 1, 2, 1, 1, 0, 6, 4, 2, 3, 3, 2, 0, 1, 9, 1, 0, 0, 0), # 0 (15, 10, 7, 14, 9, 6, 4, 6, 2, 3, 2, 1, 0, 10, 11, 3, 4, 10, 4, 1, 4, 11, 3, 1, 0, 0), # 1 (22, 15, 13, 22, 13, 8, 6, 9, 5, 3, 3, 1, 0, 19, 16, 7, 5, 11, 8, 5, 4, 12, 5, 1, 0, 0), # 2 (29, 16, 21, 27, 17, 10, 9, 11, 6, 4, 3, 2, 0, 25, 19, 8, 10, 12, 12, 7, 5, 19, 8, 1, 0, 0), # 3 (34, 24, 24, 31, 17, 12, 13, 14, 10, 4, 4, 3, 0, 32, 22, 19, 14, 16, 14, 10, 7, 22, 9, 3, 0, 0), # 4 (47, 27, 27, 37, 20, 15, 15, 20, 14, 4, 5, 3, 0, 38, 29, 24, 18, 20, 17, 16, 7, 23, 11, 5, 1, 0), # 5 (53, 35, 30, 43, 22, 21, 19, 23, 17, 6, 5, 3, 0, 46, 30, 27, 21, 25, 21, 23, 10, 26, 13, 7, 1, 0), # 6 (60, 47, 40, 45, 30, 24, 20, 26, 18, 7, 7, 3, 0, 51, 35, 31, 26, 27, 25, 24, 12, 31, 16, 9, 4, 0), # 7 (72, 55, 45, 57, 34, 28, 24, 31, 21, 9, 9, 4, 0, 57, 42, 34, 32, 30, 30, 28, 12, 33, 18, 12, 6, 0), # 8 (79, 68, 56, 63, 39, 31, 28, 32, 24, 13, 10, 5, 0, 64, 51, 40, 34, 40, 35, 34, 16, 36, 21, 13, 6, 0), # 9 (84, 71, 64, 72, 42, 34, 30, 40, 26, 16, 11, 7, 0, 77, 53, 45, 37, 47, 43, 39, 20, 41, 21, 13, 7, 0), # 10 (98, 81, 70, 80, 46, 35, 37, 45, 29, 16, 12, 7, 0, 83, 66, 52, 44, 53, 44, 40, 23, 45, 22, 14, 8, 0), # 11 (109, 88, 78, 89, 50, 38, 42, 50, 32, 16, 13, 7, 0, 87, 75, 60, 48, 60, 48, 44, 24, 48, 24, 18, 10, 0), # 12 (112, 93, 87, 101, 59, 42, 44, 54, 35, 18, 15, 7, 0, 95, 79, 65, 50, 70, 53, 47, 25, 53, 28, 20, 10, 0), # 13 (122, 101, 99, 107, 67, 44, 49, 57, 38, 19, 17, 7, 0, 108, 90, 72, 56, 76, 58, 51, 26, 53, 32, 20, 10, 0), # 14 (135, 116, 101, 117, 75, 46, 52, 58, 41, 20, 20, 8, 0, 120, 96, 78, 62, 84, 63, 55, 28, 54, 38, 20, 10, 0), # 15 (141, 129, 106, 128, 81, 50, 55, 62, 44, 20, 21, 9, 0, 127, 106, 85, 69, 87, 66, 57, 35, 59, 40, 21, 10, 0), # 16 (149, 143, 112, 142, 85, 51, 58, 63, 47, 22, 22, 10, 0, 132, 112, 94, 72, 99, 72, 57, 40, 64, 42, 21, 10, 0), # 17 (160, 151, 118, 148, 91, 56, 65, 65, 49, 22, 25, 12, 0, 140, 119, 101, 78, 109, 77, 67, 44, 69, 45, 26, 10, 0), # 18 (171, 160, 125, 158, 96, 60, 69, 69, 54, 23, 28, 12, 0, 151, 125, 105, 86, 116, 81, 70, 46, 74, 48, 29, 10, 0), # 19 (185, 166, 134, 169, 101, 63, 74, 71, 61, 24, 28, 14, 0, 165, 131, 109, 90, 123, 86, 73, 49, 81, 51, 29, 11, 0), # 20 (192, 178, 141, 177, 109, 63, 77, 73, 68, 25, 29, 15, 0, 176, 137, 115, 94, 134, 91, 78, 51, 84, 55, 31, 12, 0), # 21 (201, 183, 153, 189, 118, 67, 78, 77, 71, 28, 30, 15, 0, 186, 149, 118, 98, 143, 95, 84, 51, 89, 57, 32, 12, 0), # 22 (210, 192, 163, 197, 125, 71, 82, 80, 75, 30, 31, 16, 0, 195, 158, 123, 102, 153, 103, 87, 55, 92, 60, 35, 13, 0), # 23 (219, 207, 178, 212, 127, 74, 88, 83, 77, 32, 31, 17, 0, 204, 164, 128, 105, 163, 109, 90, 60, 96, 64, 35, 16, 0), # 24 (233, 215, 191, 224, 138, 79, 93, 87, 80, 35, 34, 17, 0, 209, 167, 137, 113, 168, 115, 92, 65, 98, 69, 35, 17, 0), # 25 (242, 226, 198, 233, 143, 83, 96, 94, 85, 39, 35, 18, 0, 215, 176, 146, 115, 175, 122, 95, 65, 102, 72, 39, 18, 0), # 26 (251, 238, 210, 240, 151, 86, 98, 99, 87, 41, 35, 19, 0, 226, 183, 156, 116, 179, 130, 99, 66, 103, 76, 41, 19, 0), # 27 (258, 250, 223, 248, 154, 86, 101, 102, 93, 41, 35, 20, 0, 238, 190, 162, 124, 189, 136, 101, 68, 104, 79, 42, 21, 0), # 28 (274, 259, 230, 259, 159, 91, 102, 109, 94, 42, 35, 20, 0, 248, 198, 174, 136, 195, 138, 106, 75, 106, 82, 42, 22, 0), # 29 (282, 266, 237, 265, 167, 96, 109, 113, 102, 44, 38, 21, 0, 260, 204, 179, 143, 199, 146, 109, 78, 110, 84, 43, 24, 0), # 30 (289, 276, 247, 274, 176, 100, 113, 116, 104, 46, 39, 21, 0, 264, 212, 187, 150, 205, 150, 113, 80, 116, 86, 43, 29, 0), # 31 (299, 291, 254, 284, 186, 103, 116, 121, 110, 47, 40, 22, 0, 277, 220, 196, 157, 209, 153, 115, 80, 119, 90, 45, 29, 0), # 32 (312, 299, 264, 291, 195, 107, 119, 126, 114, 50, 41, 23, 0, 287, 228, 203, 165, 219, 161, 122, 84, 126, 93, 46, 30, 0), # 33 (321, 308, 271, 300, 201, 110, 121, 131, 117, 51, 43, 25, 0, 299, 236, 209, 170, 224, 164, 125, 87, 131, 98, 49, 30, 0), # 34 (330, 316, 279, 312, 213, 116, 126, 132, 119, 51, 46, 26, 0, 309, 249, 223, 174, 234, 169, 127, 90, 134, 103, 51, 30, 0), # 35 (337, 329, 286, 323, 220, 118, 128, 135, 127, 51, 49, 28, 0, 319, 254, 228, 180, 244, 178, 129, 93, 135, 104, 54, 33, 0), # 36 (350, 337, 297, 332, 233, 120, 132, 136, 132, 51, 50, 28, 0, 325, 260, 232, 185, 253, 186, 133, 98, 139, 106, 54, 33, 0), # 37 (359, 343, 300, 341, 241, 124, 135, 141, 136, 54, 54, 28, 0, 342, 267, 236, 192, 260, 190, 139, 102, 142, 110, 59, 33, 0), # 38 (367, 353, 308, 356, 252, 125, 138, 143, 139, 56, 56, 30, 0, 354, 279, 240, 200, 267, 193, 144, 103, 148, 111, 60, 34, 0), # 39 (372, 361, 315, 363, 258, 127, 141, 144, 142, 56, 57, 30, 0, 361, 283, 250, 204, 270, 199, 151, 105, 154, 113, 62, 35, 0), # 40 (387, 369, 324, 369, 261, 129, 144, 148, 145, 58, 59, 30, 0, 372, 291, 260, 215, 282, 206, 152, 106, 158, 115, 63, 36, 0), # 41 (397, 374, 332, 376, 270, 130, 153, 151, 152, 58, 60, 31, 0, 385, 301, 263, 221, 292, 216, 158, 109, 163, 121, 66, 37, 0), # 42 (403, 384, 336, 380, 280, 132, 162, 155, 157, 60, 64, 31, 0, 396, 309, 267, 227, 300, 222, 160, 111, 167, 126, 69, 38, 0), # 43 (414, 389, 339, 385, 294, 137, 167, 162, 159, 60, 67, 33, 0, 405, 319, 272, 232, 307, 226, 166, 114, 168, 128, 70, 38, 0), # 44 (419, 395, 350, 394, 303, 141, 169, 170, 164, 61, 71, 34, 0, 413, 327, 278, 242, 317, 232, 172, 117, 173, 132, 70, 38, 0), # 45 (433, 400, 359, 405, 315, 145, 171, 174, 167, 63, 71, 34, 0, 426, 336, 290, 245, 321, 236, 180, 118, 178, 135, 71, 38, 0), # 46 (444, 406, 367, 418, 322, 150, 178, 177, 172, 65, 73, 35, 0, 432, 342, 296, 254, 326, 242, 183, 121, 180, 138, 73, 41, 0), # 47 (455, 411, 375, 424, 336, 153, 182, 184, 173, 67, 75, 35, 0, 439, 352, 305, 255, 333, 247, 186, 122, 183, 142, 74, 42, 0), # 48 (464, 418, 383, 432, 339, 154, 186, 188, 175, 73, 77, 36, 0, 448, 354, 316, 261, 336, 251, 188, 124, 186, 145, 79, 42, 0), # 49 (474, 428, 393, 437, 344, 158, 189, 195, 178, 76, 78, 37, 0, 457, 366, 320, 267, 343, 256, 190, 125, 187, 149, 79, 43, 0), # 50 (483, 439, 400, 446, 350, 162, 193, 200, 179, 77, 79, 38, 0, 478, 371, 326, 270, 351, 262, 194, 126, 190, 150, 79, 44, 0), # 51 (498, 447, 405, 451, 359, 164, 196, 203, 180, 78, 79, 39, 0, 485, 382, 336, 276, 359, 267, 197, 129, 191, 154, 79, 44, 0), # 52 (513, 460, 412, 456, 369, 169, 203, 208, 183, 79, 80, 39, 0, 494, 389, 346, 282, 371, 273, 202, 133, 192, 157, 80, 44, 0), # 53 (524, 472, 428, 462, 377, 176, 207, 209, 186, 81, 82, 39, 0, 501, 397, 350, 285, 380, 276, 205, 135, 197, 160, 82, 44, 0), # 54 (534, 477, 438, 470, 386, 180, 214, 211, 192, 84, 86, 39, 0, 510, 408, 356, 292, 386, 281, 206, 136, 202, 166, 84, 44, 0), # 55 (548, 487, 446, 478, 388, 186, 218, 212, 195, 86, 87, 39, 0, 512, 414, 359, 298, 398, 286, 210, 136, 204, 169, 86, 45, 0), # 56 (559, 496, 453, 488, 399, 193, 224, 216, 200, 88, 88, 41, 0, 518, 423, 366, 300, 412, 293, 214, 137, 205, 170, 86, 46, 0), # 57 (569, 510, 460, 501, 406, 197, 229, 219, 203, 89, 88, 42, 0, 525, 428, 371, 304, 416, 297, 216, 140, 208, 170, 86, 47, 0), # 58 (578, 516, 464, 506, 419, 198, 232, 224, 207, 90, 89, 43, 0, 536, 436, 379, 311, 427, 299, 219, 144, 214, 172, 88, 49, 0), # 59 (584, 521, 473, 522, 422, 204, 234, 226, 209, 91, 91, 43, 0, 539, 440, 389, 317, 436, 305, 223, 148, 221, 173, 89, 49, 0), # 60 (590, 525, 478, 531, 427, 204, 236, 230, 213, 91, 92, 43, 0, 550, 449, 391, 325, 441, 309, 228, 149, 228, 177, 90, 50, 0), # 61 (607, 531, 485, 541, 434, 205, 242, 234, 214, 92, 92, 43, 0, 561, 456, 399, 328, 451, 311, 232, 151, 233, 184, 91, 51, 0), # 62 (614, 538, 489, 554, 444, 208, 243, 235, 217, 93, 92, 44, 0, 571, 461, 408, 331, 463, 316, 235, 154, 240, 188, 95, 51, 0), # 63 (627, 545, 497, 564, 448, 209, 247, 240, 220, 94, 93, 44, 0, 579, 468, 414, 336, 472, 320, 243, 155, 242, 191, 97, 52, 0), # 64 (639, 552, 501, 572, 459, 215, 250, 242, 222, 97, 96, 44, 0, 597, 481, 423, 341, 478, 323, 246, 157, 245, 196, 100, 53, 0), # 65 (653, 561, 507, 581, 468, 217, 253, 247, 225, 98, 97, 44, 0, 605, 489, 428, 349, 484, 325, 248, 161, 248, 201, 101, 54, 0), # 66 (663, 571, 514, 592, 475, 222, 254, 253, 226, 101, 99, 45, 0, 615, 494, 437, 350, 491, 325, 256, 163, 250, 206, 102, 54, 0), # 67 (668, 575, 521, 606, 482, 225, 259, 256, 228, 104, 100, 46, 0, 621, 499, 445, 354, 499, 329, 263, 165, 255, 212, 103, 54, 0), # 68 (678, 587, 527, 621, 492, 227, 264, 257, 232, 107, 101, 46, 0, 630, 506, 452, 363, 508, 333, 267, 167, 262, 213, 105, 54, 0), # 69 (692, 599, 533, 629, 502, 231, 267, 259, 235, 109, 101, 46, 0, 634, 519, 456, 371, 517, 337, 272, 171, 266, 214, 106, 54, 0), # 70 (701, 608, 541, 639, 512, 235, 269, 263, 239, 112, 102, 47, 0, 646, 532, 462, 378, 529, 345, 276, 174, 269, 216, 107, 55, 0), # 71 (709, 618, 553, 650, 515, 237, 274, 269, 241, 114, 102, 48, 0, 657, 537, 464, 380, 535, 355, 280, 177, 272, 219, 108, 55, 0), # 72 (717, 627, 559, 656, 523, 244, 278, 275, 245, 120, 103, 50, 0, 665, 544, 468, 385, 543, 357, 284, 178, 277, 221, 109, 55, 0), # 73 (728, 635, 567, 664, 532, 247, 280, 278, 251, 124, 107, 50, 0, 680, 557, 478, 390, 551, 357, 288, 180, 278, 222, 110, 55, 0), # 74 (738, 642, 573, 673, 543, 250, 282, 281, 253, 127, 110, 52, 0, 690, 568, 485, 393, 560, 363, 290, 184, 285, 227, 115, 56, 0), # 75 (747, 651, 580, 682, 549, 253, 286, 285, 255, 130, 112, 53, 0, 697, 570, 491, 398, 563, 364, 295, 186, 288, 229, 115, 57, 0), # 76 (759, 660, 591, 693, 554, 255, 289, 286, 257, 132, 112, 54, 0, 705, 575, 501, 405, 572, 366, 296, 189, 292, 231, 117, 59, 0), # 77 (768, 670, 604, 701, 560, 258, 295, 290, 261, 133, 114, 54, 0, 719, 584, 508, 414, 581, 369, 297, 189, 295, 235, 118, 60, 0), # 78 (779, 678, 611, 711, 565, 263, 297, 291, 266, 137, 115, 54, 0, 727, 593, 516, 420, 589, 372, 301, 192, 300, 239, 121, 60, 0), # 79 (786, 684, 616, 719, 571, 265, 301, 292, 267, 139, 117, 54, 0, 738, 605, 520, 425, 596, 378, 303, 194, 300, 243, 124, 61, 0), # 80 (803, 693, 627, 731, 579, 266, 303, 294, 272, 139, 118, 54, 0, 744, 614, 526, 428, 608, 383, 305, 195, 309, 247, 127, 61, 0), # 81 (818, 703, 632, 735, 587, 269, 304, 295, 278, 141, 119, 54, 0, 759, 622, 531, 433, 616, 387, 310, 199, 313, 254, 132, 62, 0), # 82 (827, 712, 638, 750, 593, 275, 305, 300, 281, 142, 123, 55, 0, 769, 630, 539, 434, 619, 387, 310, 202, 317, 255, 136, 63, 0), # 83 (834, 720, 650, 757, 600, 279, 307, 302, 287, 142, 126, 55, 0, 777, 638, 544, 440, 629, 387, 314, 203, 320, 257, 139, 65, 0), # 84 (845, 726, 658, 765, 604, 283, 308, 305, 293, 143, 127, 58, 0, 782, 651, 550, 447, 637, 392, 316, 205, 323, 260, 141, 68, 0), # 85 (856, 735, 667, 773, 610, 287, 311, 309, 296, 147, 130, 58, 0, 799, 664, 556, 449, 642, 396, 319, 206, 324, 263, 144, 69, 0), # 86 (870, 740, 670, 781, 620, 291, 314, 311, 298, 151, 130, 58, 0, 809, 673, 561, 460, 652, 399, 322, 211, 328, 266, 146, 71, 0), # 87 (878, 749, 677, 796, 624, 295, 319, 312, 301, 153, 133, 59, 0, 819, 676, 566, 466, 658, 402, 325, 213, 335, 272, 147, 71, 0), # 88 (884, 758, 685, 804, 631, 299, 323, 314, 305, 155, 134, 61, 0, 831, 681, 571, 473, 661, 412, 327, 216, 340, 276, 150, 72, 0), # 89 (895, 767, 696, 813, 642, 305, 324, 315, 310, 156, 136, 62, 0, 836, 689, 577, 481, 666, 417, 331, 218, 343, 277, 154, 73, 0), # 90 (908, 781, 702, 820, 647, 310, 327, 318, 317, 157, 136, 63, 0, 852, 698, 580, 489, 673, 421, 335, 219, 348, 278, 158, 73, 0), # 91 (920, 786, 710, 827, 650, 312, 332, 318, 317, 159, 137, 63, 0, 860, 703, 583, 491, 683, 429, 340, 222, 353, 279, 160, 74, 0), # 92 (927, 792, 714, 831, 654, 313, 335, 321, 322, 160, 137, 65, 0, 871, 717, 587, 497, 695, 429, 344, 224, 357, 285, 161, 74, 0), # 93 (936, 797, 724, 846, 666, 316, 338, 326, 326, 161, 138, 67, 0, 884, 726, 592, 503, 703, 434, 348, 224, 363, 288, 163, 74, 0), # 94 (943, 807, 729, 856, 678, 323, 341, 327, 329, 163, 138, 68, 0, 893, 732, 596, 507, 713, 438, 348, 226, 370, 291, 164, 74, 0), # 95 (955, 813, 740, 867, 683, 327, 344, 328, 332, 164, 139, 69, 0, 906, 740, 598, 514, 722, 440, 353, 229, 373, 295, 165, 74, 0), # 96 (965, 818, 745, 876, 693, 332, 345, 331, 335, 165, 140, 69, 0, 913, 750, 603, 516, 734, 446, 359, 233, 380, 298, 165, 76, 0), # 97 (971, 831, 755, 885, 698, 334, 347, 334, 339, 165, 141, 70, 0, 919, 763, 608, 517, 746, 449, 362, 235, 381, 298, 166, 76, 0), # 98 (978, 839, 764, 888, 705, 339, 353, 336, 342, 166, 142, 70, 0, 929, 768, 615, 528, 751, 453, 367, 235, 387, 300, 168, 76, 0), # 99 (988, 844, 771, 894, 716, 341, 358, 338, 346, 166, 142, 70, 0, 938, 773, 619, 533, 758, 456, 373, 237, 388, 301, 170, 77, 0), # 100 (997, 853, 778, 904, 724, 344, 360, 339, 347, 167, 145, 70, 0, 952, 782, 625, 542, 766, 459, 375, 237, 392, 307, 172, 78, 0), # 101 (1010, 860, 787, 911, 728, 350, 362, 343, 353, 167, 146, 71, 0, 966, 788, 633, 549, 773, 460, 377, 238, 393, 309, 172, 78, 0), # 102 (1019, 870, 802, 915, 734, 351, 366, 344, 359, 174, 147, 71, 0, 984, 797, 641, 557, 780, 460, 380, 241, 397, 314, 173, 78, 0), # 103 (1029, 875, 810, 923, 738, 355, 367, 345, 363, 176, 150, 72, 0, 993, 805, 645, 565, 788, 462, 380, 242, 401, 319, 174, 78, 0), # 104 (1038, 887, 818, 937, 746, 359, 371, 346, 364, 177, 151, 73, 0, 1003, 813, 652, 567, 797, 468, 381, 243, 406, 322, 175, 80, 0), # 105 (1048, 893, 825, 943, 749, 360, 375, 346, 366, 178, 154, 74, 0, 1008, 815, 664, 572, 804, 469, 384, 243, 412, 323, 177, 80, 0), # 106 (1054, 899, 830, 955, 757, 360, 378, 347, 371, 179, 154, 75, 0, 1013, 826, 666, 574, 814, 477, 387, 243, 413, 323, 177, 81, 0), # 107 (1063, 909, 840, 965, 762, 364, 380, 349, 376, 179, 157, 75, 0, 1027, 832, 674, 577, 818, 481, 389, 246, 413, 327, 178, 81, 0), # 108 (1068, 915, 848, 969, 766, 368, 383, 350, 376, 180, 159, 75, 0, 1043, 845, 682, 580, 828, 485, 393, 251, 416, 328, 180, 81, 0), # 109 (1076, 925, 858, 976, 774, 368, 387, 351, 381, 180, 159, 77, 0, 1054, 853, 686, 585, 834, 489, 396, 254, 417, 330, 182, 81, 0), # 110 (1087, 929, 864, 984, 787, 370, 392, 352, 384, 181, 160, 78, 0, 1062, 858, 692, 588, 839, 497, 398, 256, 421, 332, 183, 83, 0), # 111 (1093, 935, 872, 989, 794, 376, 392, 355, 385, 181, 163, 78, 0, 1072, 863, 698, 589, 846, 501, 402, 257, 426, 335, 184, 83, 0), # 112 (1103, 943, 880, 998, 802, 384, 393, 357, 387, 183, 164, 78, 0, 1082, 867, 702, 595, 858, 509, 403, 258, 430, 337, 184, 84, 0), # 113 (1110, 950, 886, 1005, 809, 391, 398, 364, 391, 183, 167, 78, 0, 1092, 871, 705, 597, 868, 511, 408, 260, 437, 339, 184, 85, 0), # 114 (1116, 960, 897, 1015, 815, 396, 402, 367, 395, 186, 167, 78, 0, 1102, 879, 707, 601, 874, 514, 410, 263, 447, 339, 186, 85, 0), # 115 (1133, 963, 903, 1024, 821, 399, 404, 368, 398, 187, 168, 79, 0, 1112, 882, 712, 611, 881, 516, 420, 266, 448, 343, 187, 87, 0), # 116 (1145, 968, 909, 1033, 823, 403, 408, 370, 401, 187, 168, 79, 0, 1125, 893, 714, 615, 884, 516, 421, 268, 451, 346, 187, 87, 0), # 117 (1156, 976, 917, 1037, 835, 405, 409, 371, 403, 188, 169, 79, 0, 1138, 897, 721, 618, 887, 523, 424, 270, 454, 348, 187, 87, 0), # 118 (1166, 986, 925, 1048, 843, 407, 411, 375, 409, 191, 170, 79, 0, 1147, 905, 726, 622, 894, 526, 429, 272, 457, 349, 188, 88, 0), # 119 (1174, 993, 935, 1053, 850, 408, 414, 377, 410, 191, 170, 80, 0, 1156, 913, 731, 624, 901, 531, 430, 274, 459, 349, 189, 88, 0), # 120 (1179, 1009, 944, 1062, 853, 411, 416, 383, 414, 192, 171, 80, 0, 1165, 916, 738, 630, 908, 535, 437, 276, 462, 356, 189, 88, 0), # 121 (1189, 1017, 950, 1068, 861, 416, 418, 389, 418, 196, 174, 80, 0, 1174, 925, 745, 635, 917, 539, 440, 278, 465, 361, 190, 88, 0), # 122 (1195, 1029, 956, 1082, 864, 421, 422, 390, 420, 199, 175, 81, 0, 1189, 932, 750, 638, 924, 542, 443, 283, 470, 363, 190, 88, 0), # 123 (1202, 1036, 964, 1092, 871, 424, 427, 391, 423, 201, 177, 82, 0, 1201, 937, 759, 642, 929, 544, 448, 283, 475, 364, 191, 88, 0), # 124 (1215, 1045, 969, 1097, 881, 431, 432, 392, 426, 202, 177, 84, 0, 1209, 939, 763, 644, 934, 547, 452, 286, 481, 367, 194, 90, 0), # 125 (1225, 1049, 973, 1106, 891, 434, 436, 394, 429, 203, 178, 84, 0, 1221, 952, 767, 645, 941, 549, 457, 289, 488, 371, 196, 90, 0), # 126 (1235, 1061, 981, 1113, 897, 436, 442, 398, 432, 204, 178, 84, 0, 1232, 960, 770, 649, 948, 549, 459, 293, 492, 373, 199, 90, 0), # 127 (1241, 1068, 984, 1120, 904, 437, 445, 401, 438, 204, 178, 84, 0, 1243, 962, 782, 653, 953, 551, 460, 294, 494, 380, 200, 90, 0), # 128 (1249, 1080, 993, 1129, 908, 441, 447, 402, 443, 207, 181, 86, 0, 1254, 966, 787, 657, 961, 555, 465, 294, 498, 382, 201, 90, 0), # 129 (1255, 1084, 995, 1140, 911, 447, 447, 404, 445, 208, 182, 87, 0, 1261, 972, 791, 660, 970, 563, 468, 295, 500, 387, 201, 90, 0), # 130 (1264, 1089, 1006, 1147, 921, 453, 451, 407, 447, 208, 183, 87, 0, 1271, 974, 798, 664, 974, 568, 473, 297, 501, 392, 201, 90, 0), # 131 (1276, 1096, 1016, 1153, 930, 457, 453, 413, 454, 208, 185, 88, 0, 1273, 981, 805, 665, 983, 571, 476, 300, 502, 393, 202, 91, 0), # 132 (1280, 1110, 1024, 1158, 937, 464, 457, 413, 457, 208, 186, 88, 0, 1284, 992, 810, 670, 992, 574, 478, 301, 507, 396, 203, 93, 0), # 133 (1294, 1117, 1031, 1168, 942, 466, 462, 418, 459, 208, 186, 88, 0, 1298, 999, 814, 674, 995, 577, 479, 301, 511, 398, 204, 94, 0), # 134 (1299, 1120, 1035, 1176, 950, 470, 463, 422, 468, 209, 187, 88, 0, 1306, 1005, 824, 676, 1003, 581, 482, 305, 513, 401, 204, 94, 0), # 135 (1303, 1127, 1045, 1186, 956, 471, 465, 428, 475, 210, 188, 90, 0, 1312, 1013, 828, 684, 1008, 587, 486, 309, 515, 403, 205, 95, 0), # 136 (1305, 1139, 1054, 1189, 963, 475, 467, 429, 478, 211, 190, 91, 0, 1319, 1021, 831, 690, 1017, 589, 490, 309, 517, 404, 207, 95, 0), # 137 (1313, 1148, 1059, 1198, 966, 479, 471, 430, 482, 212, 192, 92, 0, 1328, 1027, 836, 693, 1025, 594, 494, 311, 519, 408, 208, 95, 0), # 138 (1320, 1157, 1068, 1210, 972, 483, 472, 432, 484, 215, 192, 92, 0, 1335, 1037, 840, 697, 1035, 595, 497, 315, 524, 410, 214, 96, 0), # 139 (1330, 1164, 1074, 1213, 976, 485, 479, 437, 486, 216, 192, 92, 0, 1348, 1043, 846, 702, 1049, 599, 502, 316, 528, 412, 216, 96, 0), # 140 (1339, 1173, 1079, 1218, 984, 487, 481, 443, 492, 218, 193, 92, 0, 1357, 1050, 849, 703, 1060, 601, 503, 319, 532, 416, 218, 96, 0), # 141 (1346, 1180, 1089, 1226, 991, 497, 484, 447, 494, 219, 193, 94, 0, 1364, 1055, 849, 708, 1068, 607, 505, 326, 535, 420, 218, 98, 0), # 142 (1357, 1185, 1096, 1235, 1000, 502, 488, 448, 494, 219, 196, 96, 0, 1374, 1061, 856, 712, 1079, 610, 508, 329, 539, 420, 218, 98, 0), # 143 (1366, 1191, 1108, 1243, 1010, 504, 493, 453, 497, 219, 197, 96, 0, 1381, 1066, 863, 717, 1085, 612, 511, 330, 542, 422, 218, 98, 0), # 144 (1375, 1194, 1112, 1252, 1018, 507, 496, 453, 500, 219, 199, 96, 0, 1395, 1070, 868, 719, 1089, 615, 513, 331, 545, 424, 219, 99, 0), # 145 (1385, 1205, 1120, 1261, 1027, 510, 499, 454, 503, 219, 203, 96, 0, 1401, 1081, 871, 724, 1099, 620, 514, 333, 547, 429, 220, 99, 0), # 146 (1389, 1213, 1126, 1267, 1031, 518, 502, 456, 505, 221, 203, 96, 0, 1407, 1090, 873, 732, 1110, 624, 514, 335, 549, 436, 222, 101, 0), # 147 (1399, 1217, 1133, 1272, 1035, 522, 506, 462, 509, 225, 205, 97, 0, 1415, 1092, 876, 733, 1116, 625, 519, 337, 551, 439, 223, 102, 0), # 148 (1409, 1221, 1140, 1284, 1042, 527, 511, 465, 510, 225, 205, 98, 0, 1427, 1093, 878, 741, 1122, 629, 521, 337, 554, 439, 224, 104, 0), # 149 (1421, 1235, 1150, 1292, 1049, 532, 514, 467, 513, 225, 205, 98, 0, 1433, 1096, 881, 745, 1130, 630, 521, 339, 559, 441, 227, 104, 0), # 150 (1431, 1239, 1161, 1302, 1055, 536, 516, 470, 516, 226, 205, 99, 0, 1444, 1102, 889, 749, 1136, 635, 523, 341, 563, 442, 228, 104, 0), # 151 (1440, 1243, 1168, 1313, 1060, 536, 517, 472, 519, 226, 206, 100, 0, 1451, 1111, 896, 752, 1143, 641, 523, 343, 567, 443, 230, 104, 0), # 152 (1447, 1244, 1171, 1318, 1067, 542, 519, 472, 519, 227, 206, 101, 0, 1465, 1113, 900, 754, 1150, 646, 526, 343, 570, 445, 233, 104, 0), # 153 (1453, 1255, 1174, 1322, 1071, 543, 522, 472, 520, 230, 206, 102, 0, 1471, 1121, 905, 756, 1155, 649, 527, 345, 572, 449, 235, 105, 0), # 154 (1459, 1258, 1181, 1332, 1079, 544, 525, 475, 522, 231, 207, 102, 0, 1475, 1126, 908, 756, 1168, 654, 529, 348, 575, 449, 237, 105, 0), # 155 (1465, 1265, 1186, 1335, 1080, 548, 529, 476, 523, 231, 208, 103, 0, 1480, 1127, 914, 758, 1176, 658, 530, 350, 576, 452, 239, 107, 0), # 156 (1478, 1269, 1196, 1343, 1087, 553, 531, 478, 525, 233, 209, 103, 0, 1492, 1133, 919, 761, 1183, 662, 532, 355, 579, 454, 239, 108, 0), # 157 (1481, 1276, 1203, 1348, 1091, 555, 537, 480, 527, 235, 210, 103, 0, 1499, 1140, 926, 762, 1191, 665, 533, 359, 582, 458, 239, 109, 0), # 158 (1493, 1282, 1206, 1354, 1099, 556, 540, 483, 529, 237, 211, 103, 0, 1510, 1142, 930, 764, 1195, 669, 534, 360, 585, 462, 239, 109, 0), # 159 (1501, 1285, 1213, 1357, 1104, 560, 540, 487, 531, 239, 211, 103, 0, 1520, 1145, 931, 767, 1203, 673, 537, 362, 586, 464, 244, 109, 0), # 160 (1508, 1294, 1218, 1360, 1111, 561, 543, 489, 534, 239, 213, 104, 0, 1525, 1154, 933, 770, 1211, 676, 540, 365, 591, 468, 246, 110, 0), # 161 (1516, 1301, 1222, 1365, 1119, 565, 545, 490, 538, 241, 213, 105, 0, 1529, 1162, 934, 776, 1215, 678, 542, 366, 595, 470, 248, 112, 0), # 162 (1524, 1308, 1232, 1369, 1124, 568, 548, 493, 540, 243, 214, 105, 0, 1538, 1168, 937, 779, 1225, 683, 545, 372, 598, 472, 248, 112, 0), # 163 (1528, 1310, 1235, 1376, 1130, 570, 552, 496, 543, 243, 215, 105, 0, 1541, 1172, 942, 783, 1231, 686, 548, 372, 603, 476, 251, 112, 0), # 164 (1535, 1316, 1239, 1380, 1134, 573, 556, 500, 546, 246, 215, 105, 0, 1546, 1180, 948, 784, 1236, 688, 550, 373, 605, 478, 252, 112, 0), # 165 (1543, 1323, 1249, 1385, 1138, 573, 560, 501, 552, 248, 215, 106, 0, 1550, 1183, 951, 786, 1245, 693, 554, 373, 606, 481, 254, 112, 0), # 166 (1550, 1330, 1256, 1399, 1144, 574, 562, 503, 555, 250, 215, 106, 0, 1555, 1191, 957, 787, 1249, 697, 554, 374, 606, 482, 256, 112, 0), # 167 (1555, 1334, 1260, 1406, 1148, 577, 562, 507, 556, 250, 217, 106, 0, 1566, 1192, 962, 791, 1253, 698, 558, 377, 609, 483, 256, 112, 0), # 168 (1560, 1341, 1270, 1408, 1156, 579, 565, 507, 560, 251, 218, 107, 0, 1571, 1194, 964, 794, 1258, 701, 559, 378, 610, 486, 256, 112, 0), # 169 (1569, 1341, 1274, 1414, 1160, 582, 567, 507, 561, 251, 219, 108, 0, 1581, 1196, 966, 796, 1261, 702, 560, 378, 613, 487, 259, 112, 0), # 170 (1578, 1345, 1278, 1417, 1162, 585, 568, 509, 564, 251, 220, 110, 0, 1588, 1200, 973, 798, 1267, 706, 563, 379, 615, 488, 261, 112, 0), # 171 (1583, 1348, 1284, 1423, 1165, 587, 570, 513, 564, 251, 220, 113, 0, 1592, 1206, 978, 802, 1270, 709, 563, 379, 617, 489, 261, 112, 0), # 172 (1588, 1349, 1287, 1427, 1169, 590, 573, 515, 567, 251, 220, 113, 0, 1597, 1210, 978, 804, 1278, 714, 563, 380, 618, 489, 262, 113, 0), # 173 (1592, 1352, 1290, 1431, 1174, 593, 574, 516, 568, 252, 220, 113, 0, 1601, 1216, 979, 807, 1282, 716, 564, 380, 619, 491, 263, 114, 0), # 174 (1594, 1355, 1294, 1435, 1179, 598, 575, 517, 569, 252, 222, 113, 0, 1607, 1219, 980, 816, 1282, 717, 565, 380, 619, 494, 264, 114, 0), # 175 (1598, 1357, 1298, 1441, 1181, 601, 576, 518, 573, 254, 223, 113, 0, 1614, 1222, 983, 816, 1287, 720, 567, 380, 620, 496, 265, 115, 0), # 176 (1605, 1360, 1300, 1447, 1187, 605, 577, 521, 573, 255, 224, 113, 0, 1624, 1227, 990, 818, 1291, 722, 568, 380, 623, 499, 265, 116, 0), # 177 (1608, 1366, 1305, 1453, 1191, 607, 578, 523, 573, 255, 224, 113, 0, 1628, 1230, 990, 819, 1296, 724, 568, 380, 624, 500, 265, 116, 0), # 178 (1608, 1366, 1305, 1453, 1191, 607, 578, 523, 573, 255, 224, 113, 0, 1628, 1230, 990, 819, 1296, 724, 568, 380, 624, 500, 265, 116, 0), # 179 ) passenger_arriving_rate = ( (5.020865578371768, 5.064847846385402, 4.342736024677089, 4.661000830397574, 3.7031237384064077, 1.8308820436884476, 2.0730178076869574, 1.938823405408093, 2.030033020722669, 0.9895037538805926, 0.7008775273142672, 0.4081595898588478, 0.0, 5.083880212578363, 4.489755488447325, 3.5043876365713356, 2.968511261641777, 4.060066041445338, 2.7143527675713304, 2.0730178076869574, 1.3077728883488913, 1.8515618692032039, 1.5536669434658585, 0.8685472049354179, 0.4604407133077639, 0.0), # 0 (5.354327152019974, 5.399222302966028, 4.629455492775127, 4.968858189957462, 3.948326891649491, 1.9518237573581576, 2.209734470631847, 2.066464051210712, 2.164081775444303, 1.0547451730692876, 0.7471826893260219, 0.4351013884011963, 0.0, 5.419791647439855, 4.786115272413158, 3.73591344663011, 3.164235519207862, 4.328163550888606, 2.8930496716949965, 2.209734470631847, 1.3941598266843982, 1.9741634458247455, 1.6562860633191545, 0.9258910985550255, 0.49083839117872996, 0.0), # 1 (5.686723008979731, 5.732269739983398, 4.915035237956178, 5.275490778498595, 4.192641982499829, 2.072282983465593, 2.345909253980352, 2.193593853293508, 2.297595602292516, 1.1197284437551367, 0.7933038581293855, 0.46193605433775464, 0.0, 5.75436482820969, 5.0812965977153, 3.9665192906469278, 3.3591853312654094, 4.595191204585032, 3.0710313946109116, 2.345909253980352, 1.480202131046852, 2.0963209912499146, 1.758496926166199, 0.9830070475912357, 0.5211154309075817, 0.0), # 2 (6.016757793146562, 6.062668793441743, 5.198342391099879, 5.579682305649055, 4.435107784001268, 2.191782029841316, 2.4810018208239777, 2.3197088156227115, 2.430045053640364, 1.1841956746065454, 0.8390580686378972, 0.4885571404108718, 0.0, 6.086272806254225, 5.374128544519589, 4.195290343189486, 3.5525870238196355, 4.860090107280728, 3.247592341871796, 2.4810018208239777, 1.5655585927437972, 2.217553892000634, 1.8598941018830188, 1.0396684782199759, 0.551151708494704, 0.0), # 3 (6.343136148415981, 6.389098099345293, 5.478244083085864, 5.880216481036927, 4.674763069197661, 2.3098432043158894, 2.6144718342542292, 2.444304942164548, 2.560900681860902, 1.24788897429192, 0.8842623557650959, 0.514858199362897, 0.0, 6.414188632939817, 5.6634401929918665, 4.42131177882548, 3.743666922875759, 5.121801363721804, 3.422026919030367, 2.6144718342542292, 1.6498880030827783, 2.3373815345988307, 1.9600721603456428, 1.095648816617173, 0.5808270999404813, 0.0), # 4 (6.66456271868351, 6.710236293698289, 5.753607444793765, 6.175877014290295, 4.910646611132853, 2.4259888147198754, 2.745778957362612, 2.566878236885247, 2.689633039327186, 1.310550451479666, 0.9287337544245222, 0.5407327839361791, 0.0, 6.736785359632827, 5.948060623297969, 4.64366877212261, 3.9316513544389973, 5.379266078654372, 3.593629531639346, 2.745778957362612, 1.7328491533713395, 2.4553233055664263, 2.058625671430099, 1.1507214889587531, 0.6100214812452991, 0.0), # 5 (6.979742147844666, 7.024762012504959, 6.023299607103222, 6.465447615037239, 5.141797182850695, 2.5397411688838374, 2.8743828532406313, 2.686924703751037, 2.8157126784122717, 1.3719222148381898, 0.9722892995297139, 0.5660744468730674, 0.0, 7.052736037699606, 6.22681891560374, 4.8614464976485685, 4.115766644514569, 5.631425356824543, 3.761694585251452, 2.8743828532406313, 1.8141008349170267, 2.5708985914253475, 2.1551492050124135, 1.2046599214206444, 0.6386147284095418, 0.0), # 6 (7.2873790797949685, 7.331353891769537, 6.286187700893863, 6.747711992905847, 5.367253557395036, 2.650622574638337, 2.9997431849797924, 2.8039403467281465, 2.9386101514892147, 1.4317463730358968, 1.0147460259942116, 0.5907767409159108, 0.0, 7.360713718506519, 6.498544150075018, 5.073730129971057, 4.2952391191076895, 5.877220302978429, 3.9255164854194056, 2.9997431849797924, 1.8933018390273837, 2.683626778697518, 2.249237330968616, 1.2572375401787725, 0.6664867174335943, 0.0), # 7 (7.586178158429934, 7.628690567496257, 6.54113885704533, 7.021453857524196, 5.586054507809724, 2.7581553398139356, 3.1213196156715988, 2.917421169782802, 3.0577960109310682, 1.4897650347411937, 1.0559209687315536, 0.6147332188070586, 0.0, 7.659391453419917, 6.762065406877643, 5.279604843657768, 4.469295104223581, 6.1155920218621365, 4.084389637695923, 3.1213196156715988, 1.970110957009954, 2.793027253904862, 2.3404846191747324, 1.3082277714090662, 0.6935173243178416, 0.0), # 8 (7.874844027645085, 7.915450675689353, 6.787020206437253, 7.285456918520376, 5.797238807138606, 2.861861772241199, 3.23857180840756, 3.0268631768812346, 3.1727408091108913, 1.5457203086224858, 1.0956311626552797, 0.6378374332888596, 0.0, 7.947442293806162, 7.016211766177453, 5.478155813276398, 4.637160925867456, 6.345481618221783, 4.237608447633728, 3.23857180840756, 2.044186980172285, 2.898619403569303, 2.4284856395067926, 1.3574040412874508, 0.7195864250626686, 0.0), # 9 (8.152081331335932, 8.190312852353056, 7.022698879949271, 7.538504885522466, 5.999845228425533, 2.961264179750688, 3.3509594262791773, 3.1317623719896712, 3.282915098401738, 1.599354303348179, 1.133693642678929, 0.6599829371036627, 0.0, 8.22353929103161, 7.259812308140289, 5.668468213394645, 4.798062910044536, 6.565830196803476, 4.384467320785539, 3.3509594262791773, 2.11518869982192, 2.9999226142127666, 2.5128349618408223, 1.4045397759898541, 0.7445738956684597, 0.0), # 10 (8.416594713398005, 8.451955733491605, 7.247042008461013, 7.779381468158547, 6.192912544714355, 3.055884870172965, 3.457942132377958, 3.2316147590743394, 3.3877894311766643, 1.6504091275866801, 1.1699254437160416, 0.6810632829938176, 0.0, 8.486355496462611, 7.491696112931993, 5.849627218580208, 4.951227382760039, 6.775578862353329, 4.524260662704076, 3.457942132377958, 2.1827749072664036, 3.0964562723571776, 2.5931271560528497, 1.4494084016922026, 0.7683596121356006, 0.0), # 11 (8.667088817726812, 8.699057955109222, 7.458916722852117, 8.006870376056709, 6.375479529048918, 3.1452461513385908, 3.5589795897954057, 3.325916342101467, 3.486834359808726, 1.6986268900063934, 1.2041436006801558, 0.7009720237016724, 0.0, 8.734563961465534, 7.710692260718395, 6.020718003400779, 5.095880670019179, 6.973668719617452, 4.656282878942054, 3.5589795897954057, 2.246604393813279, 3.187739764524459, 2.6689567920189035, 1.4917833445704234, 0.7908234504644749, 0.0), # 12 (8.902268288217876, 8.93029815321015, 7.657190154002218, 8.219755318845033, 6.546584954473067, 3.2288703310781304, 3.653531461623028, 3.414163125037284, 3.579520436670977, 1.7437496992757264, 1.2361651484848115, 0.7196027119695768, 0.0, 8.966837737406735, 7.915629831665344, 6.180825742424058, 5.2312490978271775, 7.159040873341954, 4.7798283750521975, 3.653531461623028, 2.306335950770093, 3.2732924772365335, 2.7399184396150114, 1.5314380308004438, 0.8118452866554684, 0.0), # 13 (9.120837768766716, 9.144354963798623, 7.840729432790956, 8.416820006151594, 6.705267594030659, 3.306279717222145, 3.7410574109523305, 3.4958511118480193, 3.6653182141364735, 1.785519664063084, 1.2658071220435476, 0.7368489005398801, 0.0, 9.181849875652563, 8.10533790593868, 6.329035610217737, 5.3565589921892505, 7.330636428272947, 4.894191556587227, 3.7410574109523305, 2.3616283694443894, 3.3526337970153297, 2.8056066687171985, 1.5681458865581912, 0.8313049967089657, 0.0), # 14 (9.321501903268855, 9.339907022878865, 8.008401690097953, 8.59684814760449, 6.850566220765538, 3.376996617601199, 3.821017100874813, 3.5704763064998986, 3.743698244578273, 1.823678893036873, 1.2928865562699035, 0.752604142154931, 0.0, 9.37827342756938, 8.27864556370424, 6.464432781349516, 5.471036679110618, 7.487396489156546, 4.998666829099858, 3.821017100874813, 2.4121404411437135, 3.425283110382769, 2.865616049201497, 1.6016803380195905, 0.8490824566253515, 0.0), # 15 (9.5029653356198, 9.51563296645512, 8.159074056802854, 8.758623452831788, 6.981519607721555, 3.4405433400458514, 3.892870194481988, 3.6375347129591504, 3.8141310803694286, 1.8579694948654994, 1.3172204860774188, 0.7667619895570784, 0.0, 9.554781444523545, 8.434381885127861, 6.586102430387094, 5.5739084845964975, 7.628262160738857, 5.092548598142811, 3.892870194481988, 2.4575309571756083, 3.4907598038607777, 2.9195411509439295, 1.6318148113605708, 0.8650575424050111, 0.0), # 16 (9.663932709715075, 9.670211430531618, 8.291613663785293, 8.900929631461583, 7.097166527942559, 3.4964421923866666, 3.9560763548653552, 3.6965223351920073, 3.8760872738829946, 1.8881335782173672, 1.3386259463796333, 0.7792159954886714, 0.0, 9.710046977881415, 8.571375950375383, 6.693129731898166, 5.6644007346521, 7.752174547765989, 5.17513126926881, 3.9560763548653552, 2.4974587088476192, 3.5485832639712793, 2.9669765438205284, 1.6583227327570589, 0.8791101300483289, 0.0), # 17 (9.803108669450204, 9.802321051112584, 8.404887641924901, 9.022550393121959, 7.1965457544723925, 3.5442154824542103, 4.010095245116426, 3.746935177164692, 3.929037377492032, 1.9139132517608846, 1.3569199720900849, 0.7898597126920597, 0.0, 9.842743079009345, 8.688456839612655, 6.784599860450424, 5.741739755282652, 7.858074754984064, 5.245709248030569, 4.010095245116426, 2.531582487467293, 3.5982728772361963, 3.0075167977073205, 1.6809775283849802, 0.8911200955556896, 0.0), # 18 (9.919197858720699, 9.910640464202265, 8.497763122101317, 9.122269447440985, 7.2786960603549105, 3.5833855180790386, 4.054386528326697, 3.7882692428434357, 3.9724519435695926, 1.9350506241644574, 1.3719195981223131, 0.7985866939095915, 0.0, 9.951542799273696, 8.784453633005505, 6.859597990611565, 5.80515187249337, 7.944903887139185, 5.30357693998081, 4.054386528326697, 2.55956108434217, 3.6393480301774552, 3.0407564824803295, 1.6995526244202632, 0.9009673149274788, 0.0), # 19 (10.010904921422082, 9.993848305804882, 8.569107235194169, 9.198870504046766, 7.342656218633962, 3.613474607091719, 4.088409867587681, 3.8200205361944657, 4.005801524488732, 1.95128780409649, 1.3834418593898585, 0.805290491883616, 0.0, 10.035119190040824, 8.858195410719775, 6.9172092969492915, 5.853863412289469, 8.011603048977465, 5.348028750672252, 4.088409867587681, 2.5810532907797996, 3.671328109316981, 3.0662901680155894, 1.713821447038834, 0.9085316641640803, 0.0), # 20 (10.076934501449866, 10.050623211924679, 8.6177871120831, 9.251137272567364, 7.387465002353392, 3.6340050573228124, 4.1116249259908795, 3.84168506118401, 4.028556672622507, 1.9623669002253892, 1.39130379080626, 0.8098646593564828, 0.0, 10.092145302677078, 8.90851125292131, 6.9565189540313, 5.887100700676166, 8.057113345245014, 5.378359085657614, 4.1116249259908795, 2.5957178980877234, 3.693732501176696, 3.0837124241891223, 1.72355742241662, 0.91369301926588, 0.0), # 21 (10.115991242699579, 10.079643818565883, 8.642669883647738, 9.277853462630876, 7.41216118455705, 3.644499176602881, 4.1234913666278, 3.852758821778298, 4.040187940343971, 1.968030021219561, 1.3953224272850568, 0.8122027490705409, 0.0, 10.121294188548827, 8.934230239775948, 6.976612136425284, 5.904090063658682, 8.080375880687942, 5.393862350489617, 4.1234913666278, 2.6032136975734863, 3.706080592278525, 3.09261782087696, 1.7285339767295478, 0.9163312562332622, 0.0), # 22 (10.13039336334264, 10.083079961133974, 8.645769318701419, 9.281198109567903, 7.418488037355065, 3.6458333333333335, 4.124902001129669, 3.8539557613168727, 4.0416420781893, 1.9686980681298587, 1.3958263395269568, 0.8124914647157445, 0.0, 10.125, 8.93740611187319, 6.9791316976347835, 5.906094204389575, 8.0832841563786, 5.395538065843622, 4.124902001129669, 2.604166666666667, 3.7092440186775324, 3.0937327031893016, 1.729153863740284, 0.9166436328303613, 0.0), # 23 (10.141012413034153, 10.08107561728395, 8.645262345679013, 9.280786458333335, 7.422071742409901, 3.6458333333333335, 4.124126906318083, 3.852291666666667, 4.041447222222222, 1.968287654320988, 1.39577076318743, 0.8124238683127573, 0.0, 10.125, 8.936662551440328, 6.978853815937151, 5.904862962962962, 8.082894444444443, 5.393208333333334, 4.124126906318083, 2.604166666666667, 3.7110358712049507, 3.0935954861111123, 1.7290524691358027, 0.9164614197530866, 0.0), # 24 (10.15140723021158, 10.077124771376313, 8.644261545496114, 9.279972029320987, 7.4255766303963355, 3.6458333333333335, 4.122599451303155, 3.8490226337448563, 4.041062242798354, 1.96747970964792, 1.3956605665710604, 0.8122904282883707, 0.0, 10.125, 8.935194711172077, 6.978302832855302, 5.902439128943758, 8.082124485596708, 5.388631687242799, 4.122599451303155, 2.604166666666667, 3.7127883151981678, 3.0933240097736636, 1.728852309099223, 0.9161022519433014, 0.0), # 25 (10.161577019048034, 10.071287780064015, 8.642780635573846, 9.278764081790122, 7.429002578947403, 3.6458333333333335, 4.120343359154361, 3.8442103909465026, 4.0404920781893, 1.9662876771833566, 1.3954967473084758, 0.8120929736320684, 0.0, 10.125, 8.933022709952752, 6.977483736542379, 5.898863031550069, 8.0809841563786, 5.381894547325103, 4.120343359154361, 2.604166666666667, 3.7145012894737013, 3.0929213605967085, 1.7285561271147696, 0.915571616369456, 0.0), # 26 (10.171520983716636, 10.063624999999998, 8.640833333333333, 9.277171874999999, 7.432349465696142, 3.6458333333333335, 4.117382352941177, 3.837916666666667, 4.039741666666666, 1.9647250000000003, 1.3952803030303031, 0.8118333333333335, 0.0, 10.125, 8.930166666666667, 6.976401515151515, 5.894175, 8.079483333333332, 5.373083333333334, 4.117382352941177, 2.604166666666667, 3.716174732848071, 3.0923906250000006, 1.7281666666666669, 0.914875, 0.0), # 27 (10.181238328390501, 10.054196787837219, 8.638433356195703, 9.275204668209877, 7.4356171682756, 3.6458333333333335, 4.113740155733075, 3.830203189300412, 4.038815946502057, 1.9628051211705537, 1.3950122313671698, 0.8115133363816492, 0.0, 10.125, 8.926646700198141, 6.9750611568358485, 5.88841536351166, 8.077631893004114, 5.3622844650205765, 4.113740155733075, 2.604166666666667, 3.7178085841378, 3.091734889403293, 1.7276866712391405, 0.9140178898033837, 0.0), # 28 (10.19072825724275, 10.043063500228623, 8.635594421582077, 9.272871720679012, 7.438805564318813, 3.6458333333333335, 4.109440490599533, 3.821131687242798, 4.037719855967078, 1.9605414837677189, 1.3946935299497027, 0.811134811766499, 0.0, 10.125, 8.922482929431489, 6.973467649748514, 5.881624451303155, 8.075439711934155, 5.349584362139917, 4.109440490599533, 2.604166666666667, 3.7194027821594067, 3.0909572402263383, 1.7271188843164156, 0.9130057727480568, 0.0), # 29 (10.199989974446497, 10.03028549382716, 8.63233024691358, 9.270182291666666, 7.441914531458824, 3.6458333333333335, 4.104507080610022, 3.8107638888888884, 4.036458333333333, 1.957947530864198, 1.39432519640853, 0.8106995884773662, 0.0, 10.125, 8.917695473251028, 6.9716259820426485, 5.873842592592593, 8.072916666666666, 5.335069444444444, 4.104507080610022, 2.604166666666667, 3.720957265729412, 3.0900607638888897, 1.7264660493827162, 0.9118441358024693, 0.0), # 30 (10.209022684174858, 10.01592312528578, 8.62865454961134, 9.267145640432098, 7.444943947328672, 3.6458333333333335, 4.09896364883402, 3.799161522633745, 4.035036316872428, 1.9550367055326936, 1.3939082283742779, 0.8102094955037343, 0.0, 10.125, 8.912304450541077, 6.969541141871389, 5.865110116598079, 8.070072633744855, 5.318826131687243, 4.09896364883402, 2.604166666666667, 3.722471973664336, 3.0890485468107003, 1.7257309099222682, 0.910538465935071, 0.0), # 31 (10.217825590600954, 10.00003675125743, 8.624581047096479, 9.263771026234568, 7.447893689561397, 3.6458333333333335, 4.092833918340999, 3.7863863168724285, 4.033458744855967, 1.951822450845908, 1.3934436234775742, 0.8096663618350862, 0.0, 10.125, 8.906329980185948, 6.96721811738787, 5.8554673525377225, 8.066917489711933, 5.3009408436214, 4.092833918340999, 2.604166666666667, 3.7239468447806985, 3.0879236754115236, 1.7249162094192958, 0.909094250114312, 0.0), # 32 (10.226397897897897, 9.98268672839506, 8.620123456790123, 9.260067708333333, 7.450763635790041, 3.6458333333333335, 4.086141612200436, 3.7725000000000004, 4.031730555555555, 1.9483182098765437, 1.392932379349046, 0.8090720164609053, 0.0, 10.125, 8.899792181069957, 6.96466189674523, 5.84495462962963, 8.06346111111111, 5.2815, 4.086141612200436, 2.604166666666667, 3.7253818178950207, 3.086689236111112, 1.724024691358025, 0.9075169753086421, 0.0), # 33 (10.23473881023881, 9.963933413351622, 8.615295496113397, 9.256044945987654, 7.453553663647644, 3.6458333333333335, 4.078910453481805, 3.7575643004115222, 4.029856687242798, 1.9445374256973027, 1.3923754936193207, 0.8084282883706753, 0.0, 10.125, 8.892711172077426, 6.961877468096604, 5.833612277091907, 8.059713374485597, 5.260590020576132, 4.078910453481805, 2.604166666666667, 3.726776831823822, 3.085348315329219, 1.7230590992226795, 0.9058121284865113, 0.0), # 34 (10.242847531796807, 9.943837162780063, 8.610110882487428, 9.25171199845679, 7.456263650767246, 3.6458333333333335, 4.071164165254579, 3.741640946502058, 4.0278420781893, 1.9404935413808875, 1.3917739639190256, 0.807737006553879, 0.0, 10.125, 8.88510707209267, 6.958869819595128, 5.821480624142661, 8.0556841563786, 5.238297325102881, 4.071164165254579, 2.604166666666667, 3.728131825383623, 3.0839039994855972, 1.7220221764974855, 0.9039851966163696, 0.0), # 35 (10.250723266745005, 9.922458333333331, 8.604583333333334, 9.247078125, 7.45889347478189, 3.6458333333333335, 4.062926470588235, 3.724791666666667, 4.025691666666666, 1.9362000000000004, 1.391128787878788, 0.8070000000000002, 0.0, 10.125, 8.877, 6.95564393939394, 5.8086, 8.051383333333332, 5.214708333333334, 4.062926470588235, 2.604166666666667, 3.729446737390945, 3.0823593750000007, 1.7209166666666669, 0.9020416666666666, 0.0), # 36 (10.258365219256524, 9.89985728166438, 8.598726566072246, 9.242152584876543, 7.4614430133246135, 3.6458333333333335, 4.054221092552247, 3.707078189300412, 4.023410390946502, 1.931670244627344, 1.3904409631292352, 0.8062190976985216, 0.0, 10.125, 8.868410074683737, 6.952204815646175, 5.79501073388203, 8.046820781893004, 5.189909465020577, 4.054221092552247, 2.604166666666667, 3.7307215066623067, 3.080717528292182, 1.7197453132144491, 0.8999870256058529, 0.0), # 37 (10.265772593504476, 9.876094364426155, 8.592554298125286, 9.23694463734568, 7.46391214402846, 3.6458333333333335, 4.04507175421609, 3.6885622427983544, 4.021003189300411, 1.92691771833562, 1.3897114873009937, 0.8053961286389272, 0.0, 10.125, 8.859357415028198, 6.948557436504967, 5.780753155006859, 8.042006378600822, 5.163987139917697, 4.04507175421609, 2.604166666666667, 3.73195607201423, 3.078981545781894, 1.7185108596250571, 0.8978267604023779, 0.0), # 38 (10.272944593661986, 9.851229938271604, 8.586080246913582, 9.231463541666667, 7.466300744526468, 3.6458333333333335, 4.035502178649238, 3.6693055555555554, 4.0184750000000005, 1.9219558641975314, 1.3889413580246914, 0.8045329218106996, 0.0, 10.125, 8.849862139917693, 6.944706790123457, 5.765867592592593, 8.036950000000001, 5.137027777777778, 4.035502178649238, 2.604166666666667, 3.733150372263234, 3.07715451388889, 1.7172160493827164, 0.8955663580246914, 0.0), # 39 (10.279880423902163, 9.82532435985368, 8.579318129858253, 9.225718557098766, 7.468608692451679, 3.6458333333333335, 4.025536088921165, 3.649369855967079, 4.015830761316872, 1.9167981252857802, 1.3881315729309558, 0.8036313062033228, 0.0, 10.125, 8.83994436823655, 6.940657864654778, 5.750394375857339, 8.031661522633744, 5.1091177983539104, 4.025536088921165, 2.604166666666667, 3.7343043462258394, 3.0752395190329227, 1.7158636259716507, 0.8932113054412438, 0.0), # 40 (10.286579288398128, 9.79843798582533, 8.57228166438043, 9.219718942901235, 7.4708358654371345, 3.6458333333333335, 4.015197208101347, 3.628816872427984, 4.0130754115226335, 1.9114579446730684, 1.3872831296504138, 0.8026931108062796, 0.0, 10.125, 8.829624218869075, 6.936415648252069, 5.734373834019204, 8.026150823045267, 5.0803436213991775, 4.015197208101347, 2.604166666666667, 3.7354179327185673, 3.073239647633746, 1.7144563328760862, 0.8907670896204848, 0.0), # 41 (10.293040391323, 9.770631172839506, 8.564984567901236, 9.213473958333335, 7.472982141115872, 3.6458333333333335, 4.004509259259259, 3.6077083333333335, 4.010213888888889, 1.9059487654320992, 1.3863970258136926, 0.8017201646090536, 0.0, 10.125, 8.818921810699589, 6.931985129068463, 5.717846296296297, 8.020427777777778, 5.050791666666667, 4.004509259259259, 2.604166666666667, 3.736491070557936, 3.0711579861111122, 1.7129969135802474, 0.8882391975308643, 0.0), # 42 (10.299262936849892, 9.741964277549155, 8.557440557841794, 9.206992862654321, 7.475047397120935, 3.6458333333333335, 3.993495965464375, 3.58610596707819, 4.007251131687243, 1.9002840306355744, 1.3854742590514195, 0.800714296601128, 0.0, 10.125, 8.807857262612407, 6.927371295257098, 5.700852091906722, 8.014502263374485, 5.020548353909466, 3.993495965464375, 2.604166666666667, 3.7375236985604676, 3.0689976208847747, 1.7114881115683587, 0.8856331161408324, 0.0), # 43 (10.305246129151927, 9.712497656607225, 8.549663351623229, 9.200284915123458, 7.477031511085363, 3.6458333333333335, 3.9821810497861696, 3.564071502057614, 4.0041920781893, 1.8944771833561962, 1.3845158269942222, 0.7996773357719861, 0.0, 10.125, 8.796450693491845, 6.92257913497111, 5.683431550068587, 8.0083841563786, 4.98970010288066, 3.9821810497861696, 2.604166666666667, 3.7385157555426813, 3.0667616383744867, 1.709932670324646, 0.8829543324188387, 0.0), # 44 (10.310989172402216, 9.682291666666666, 8.541666666666668, 9.193359375, 7.478934360642197, 3.6458333333333335, 3.9705882352941178, 3.541666666666667, 4.001041666666666, 1.8885416666666672, 1.3835227272727273, 0.798611111111111, 0.0, 10.125, 8.784722222222221, 6.917613636363637, 5.665625, 8.002083333333331, 4.958333333333334, 3.9705882352941178, 2.604166666666667, 3.7394671803210984, 3.064453125000001, 1.7083333333333335, 0.8802083333333335, 0.0), # 45 (10.31649127077388, 9.65140666438043, 8.533464220393233, 9.186225501543209, 7.480755823424477, 3.6458333333333335, 3.958741245057694, 3.518953189300412, 3.997804835390946, 1.8824909236396894, 1.3824959575175624, 0.7975174516079867, 0.0, 10.125, 8.772691967687852, 6.912479787587812, 5.647472770919067, 7.995609670781892, 4.926534465020577, 3.958741245057694, 2.604166666666667, 3.7403779117122387, 3.062075167181071, 1.7066928440786466, 0.8774006058527665, 0.0), # 46 (10.321751628440035, 9.619903006401461, 8.525069730224052, 9.178892554012345, 7.482495777065244, 3.6458333333333335, 3.9466638021463734, 3.4959927983539094, 3.994486522633745, 1.8763383973479657, 1.3814365153593549, 0.7963981862520958, 0.0, 10.125, 8.760380048773053, 6.9071825767967745, 5.629015192043896, 7.98897304526749, 4.894389917695474, 3.9466638021463734, 2.604166666666667, 3.741247888532622, 3.0596308513374493, 1.7050139460448106, 0.8745366369455876, 0.0), # 47 (10.326769449573796, 9.587841049382716, 8.516496913580248, 9.171369791666667, 7.48415409919754, 3.6458333333333335, 3.9343796296296296, 3.4728472222222226, 3.9910916666666667, 1.8700975308641978, 1.3803453984287317, 0.7952551440329219, 0.0, 10.125, 8.74780658436214, 6.901726992143659, 5.610292592592592, 7.982183333333333, 4.861986111111112, 3.9343796296296296, 2.604166666666667, 3.74207704959877, 3.05712326388889, 1.7032993827160496, 0.871621913580247, 0.0), # 48 (10.331543938348286, 9.555281149977136, 8.507759487882945, 9.163666473765433, 7.485730667454405, 3.6458333333333335, 3.9219124505769383, 3.4495781893004116, 3.987625205761317, 1.8637817672610888, 1.3792236043563206, 0.7940901539399483, 0.0, 10.125, 8.73499169333943, 6.896118021781603, 5.5913453017832655, 7.975250411522634, 4.829409465020577, 3.9219124505769383, 2.604166666666667, 3.7428653337272024, 3.054555491255145, 1.7015518975765893, 0.8686619227251944, 0.0), # 49 (10.336074298936616, 9.522283664837678, 8.49887117055327, 9.155791859567902, 7.4872253594688765, 3.6458333333333335, 3.909285988057775, 3.4262474279835393, 3.9840920781893, 1.85740454961134, 1.3780721307727481, 0.7929050449626583, 0.0, 10.125, 8.72195549458924, 6.89036065386374, 5.572213648834019, 7.9681841563786, 4.796746399176955, 3.909285988057775, 2.604166666666667, 3.7436126797344382, 3.051930619855968, 1.6997742341106543, 0.86566215134888, 0.0), # 50 (10.34035973551191, 9.488908950617283, 8.489845679012346, 9.147755208333333, 7.488638052873998, 3.6458333333333335, 3.896523965141612, 3.4029166666666666, 3.9804972222222226, 1.8509793209876546, 1.3768919753086422, 0.7917016460905352, 0.0, 10.125, 8.708718106995885, 6.884459876543211, 5.552937962962963, 7.960994444444445, 4.764083333333334, 3.896523965141612, 2.604166666666667, 3.744319026436999, 3.049251736111112, 1.6979691358024693, 0.8626280864197532, 0.0), # 51 (10.344399452247279, 9.455217363968908, 8.480696730681299, 9.139565779320987, 7.489968625302809, 3.6458333333333335, 3.883650104897926, 3.3796476337448556, 3.976845576131687, 1.8445195244627348, 1.3756841355946297, 0.7904817863130622, 0.0, 10.125, 8.695299649443683, 6.878420677973147, 5.533558573388203, 7.953691152263374, 4.731506687242798, 3.883650104897926, 2.604166666666667, 3.7449843126514044, 3.04652192644033, 1.69613934613626, 0.8595652149062645, 0.0), # 52 (10.348192653315843, 9.421269261545497, 8.471438042981255, 9.131232831790122, 7.491216954388353, 3.6458333333333335, 3.8706881303961915, 3.3565020576131688, 3.9731420781893005, 1.8380386031092826, 1.3744496092613379, 0.7892472946197227, 0.0, 10.125, 8.681720240816947, 6.872248046306688, 5.514115809327846, 7.946284156378601, 4.699102880658437, 3.8706881303961915, 2.604166666666667, 3.7456084771941764, 3.043744277263375, 1.694287608596251, 0.8564790237768635, 0.0), # 53 (10.351738542890716, 9.387125000000001, 8.462083333333332, 9.122765625, 7.492382917763668, 3.6458333333333335, 3.8576617647058824, 3.333541666666666, 3.9693916666666667, 1.8315500000000005, 1.3731893939393938, 0.788, 0.0, 10.125, 8.668, 6.865946969696969, 5.49465, 7.938783333333333, 4.666958333333333, 3.8576617647058824, 2.604166666666667, 3.746191458881834, 3.040921875000001, 1.6924166666666667, 0.8533750000000002, 0.0), # 54 (10.355036325145022, 9.352844935985367, 8.452646319158665, 9.114173418209877, 7.493466393061793, 3.6458333333333335, 3.844594730896474, 3.3108281893004117, 3.9655992798353905, 1.8250671582075908, 1.3719044872594257, 0.7867417314433777, 0.0, 10.125, 8.654159045877153, 6.859522436297127, 5.4752014746227715, 7.931198559670781, 4.6351594650205765, 3.844594730896474, 2.604166666666667, 3.7467331965308963, 3.0380578060699595, 1.6905292638317333, 0.8502586305441244, 0.0), # 55 (10.358085204251871, 9.31848942615455, 8.443140717878373, 9.105465470679011, 7.4944672579157725, 3.6458333333333335, 3.8315107520374405, 3.288423353909465, 3.961769855967078, 1.818603520804756, 1.3705958868520598, 0.7854743179393385, 0.0, 10.125, 8.640217497332722, 6.852979434260299, 5.455810562414267, 7.923539711934156, 4.603792695473251, 3.8315107520374405, 2.604166666666667, 3.7472336289578863, 3.035155156893005, 1.6886281435756747, 0.8471354023776865, 0.0), # 56 (10.360884384384383, 9.284118827160494, 8.433580246913582, 9.096651041666666, 7.495385389958644, 3.6458333333333335, 3.818433551198257, 3.2663888888888892, 3.957908333333333, 1.812172530864198, 1.369264590347924, 0.7841995884773663, 0.0, 10.125, 8.626195473251027, 6.8463229517396185, 5.436517592592593, 7.915816666666666, 4.572944444444445, 3.818433551198257, 2.604166666666667, 3.747692694979322, 3.0322170138888898, 1.6867160493827165, 0.844010802469136, 0.0), # 57 (10.36343306971568, 9.24979349565615, 8.423978623685414, 9.087739390432098, 7.496220666823449, 3.6458333333333335, 3.8053868514483984, 3.2447865226337447, 3.954019650205761, 1.8057876314586196, 1.367911595377645, 0.7829193720469442, 0.0, 10.125, 8.612113092516385, 6.8395579768882255, 5.417362894375858, 7.908039300411522, 4.5427011316872425, 3.8053868514483984, 2.604166666666667, 3.7481103334117245, 3.029246463477367, 1.684795724737083, 0.8408903177869229, 0.0), # 58 (10.36573046441887, 9.215573788294467, 8.414349565614998, 9.078739776234567, 7.49697296614323, 3.6458333333333335, 3.792394375857339, 3.2236779835390945, 3.9501087448559673, 1.799462265660723, 1.3665378995718502, 0.7816354976375554, 0.0, 10.125, 8.597990474013107, 6.83268949785925, 5.398386796982168, 7.900217489711935, 4.513149176954733, 3.792394375857339, 2.604166666666667, 3.748486483071615, 3.02624659207819, 1.6828699131229998, 0.8377794352994972, 0.0), # 59 (10.367775772667077, 9.181520061728396, 8.404706790123456, 9.069661458333334, 7.497642165551024, 3.6458333333333335, 3.779479847494553, 3.203125, 3.946180555555556, 1.7932098765432103, 1.3651445005611673, 0.7803497942386832, 0.0, 10.125, 8.583847736625515, 6.825722502805837, 5.37962962962963, 7.892361111111112, 4.484375, 3.779479847494553, 2.604166666666667, 3.748821082775512, 3.023220486111112, 1.6809413580246915, 0.8346836419753088, 0.0), # 60 (10.369568198633415, 9.147692672610884, 8.395064014631917, 9.060513695987654, 7.498228142679874, 3.6458333333333335, 3.7666669894295164, 3.183189300411523, 3.9422400205761314, 1.7870439071787843, 1.3637323959762233, 0.7790640908398111, 0.0, 10.125, 8.56970499923792, 6.818661979881115, 5.361131721536351, 7.884480041152263, 4.456465020576132, 3.7666669894295164, 2.604166666666667, 3.749114071339937, 3.0201712319958856, 1.6790128029263836, 0.8316084247828076, 0.0), # 61 (10.371106946491004, 9.114151977594878, 8.385434956561502, 9.051305748456791, 7.498730775162823, 3.6458333333333335, 3.753979524731703, 3.1639326131687247, 3.9382920781893, 1.7809778006401469, 1.3623025834476452, 0.7777802164304223, 0.0, 10.125, 8.555582380734645, 6.811512917238226, 5.3429334019204395, 7.8765841563786, 4.429505658436215, 3.753979524731703, 2.604166666666667, 3.7493653875814115, 3.0171019161522645, 1.6770869913123003, 0.8285592706904436, 0.0), # 62 (10.37239122041296, 9.080958333333333, 8.375833333333334, 9.042046875, 7.499149940632904, 3.6458333333333335, 3.741441176470588, 3.1454166666666667, 3.9343416666666666, 1.7750250000000003, 1.360856060606061, 0.7765000000000001, 0.0, 10.125, 8.5415, 6.804280303030303, 5.325075, 7.868683333333333, 4.403583333333334, 3.741441176470588, 2.604166666666667, 3.749574970316452, 3.014015625000001, 1.675166666666667, 0.8255416666666667, 0.0), # 63 (10.373420224572397, 9.048172096479195, 8.366272862368541, 9.032746334876544, 7.4994855167231655, 3.6458333333333335, 3.729075667715646, 3.127703189300412, 3.9303937242798352, 1.7691989483310475, 1.3593938250820965, 0.7752252705380279, 0.0, 10.125, 8.527477975918305, 6.796969125410483, 5.307596844993141, 7.8607874485596705, 4.378784465020577, 3.729075667715646, 2.604166666666667, 3.7497427583615828, 3.0109154449588487, 1.6732545724737085, 0.822561099679927, 0.0), # 64 (10.374193163142438, 9.015853623685413, 8.35676726108825, 9.023413387345679, 7.499737381066645, 3.6458333333333335, 3.7169067215363514, 3.1108539094650207, 3.9264531893004113, 1.7635130887059902, 1.357916874506381, 0.7739578570339887, 0.0, 10.125, 8.513536427373873, 6.7895843725319045, 5.290539266117969, 7.852906378600823, 4.355195473251029, 3.7169067215363514, 2.604166666666667, 3.7498686905333223, 3.0078044624485605, 1.67135345221765, 0.819623056698674, 0.0), # 65 (10.374709240296196, 8.984063271604938, 8.34733024691358, 9.014057291666667, 7.499905411296382, 3.6458333333333335, 3.7049580610021784, 3.094930555555556, 3.9225250000000003, 1.7579808641975312, 1.3564262065095398, 0.7726995884773664, 0.0, 10.125, 8.499695473251029, 6.782131032547699, 5.273942592592592, 7.8450500000000005, 4.332902777777778, 3.7049580610021784, 2.604166666666667, 3.749952705648191, 3.0046857638888897, 1.6694660493827165, 0.8167330246913582, 0.0), # 66 (10.374967660206792, 8.952861396890716, 8.337975537265661, 9.004687307098765, 7.499989485045419, 3.6458333333333335, 3.693253409182603, 3.0799948559670787, 3.9186140946502057, 1.7526157178783728, 1.3549228187222018, 0.7714522938576437, 0.0, 10.125, 8.485975232434079, 6.774614093611008, 5.257847153635117, 7.837228189300411, 4.31199279835391, 3.693253409182603, 2.604166666666667, 3.7499947425227096, 3.001562435699589, 1.6675951074531323, 0.8138964906264289, 0.0), # 67 (10.374791614480825, 8.922144586043629, 8.328671624942844, 8.995231305354269, 7.499918636864896, 3.645765673423767, 3.681757597414823, 3.0659766041761927, 3.9146959495503735, 1.747405110411792, 1.3533809980900628, 0.770210835158312, 0.0, 10.124875150034294, 8.47231918674143, 6.766904990450313, 5.242215331235375, 7.829391899100747, 4.29236724584667, 3.681757597414823, 2.604118338159833, 3.749959318432448, 2.99841043511809, 1.6657343249885688, 0.8111040532766937, 0.0), # 68 (10.373141706924315, 8.890975059737157, 8.319157021604937, 8.985212635869564, 7.499273783587508, 3.6452307956104257, 3.6701340906733066, 3.052124485596708, 3.910599279835391, 1.7422015976761076, 1.3516438064859118, 0.7689349144466104, 0.0, 10.12388599537037, 8.458284058912714, 6.758219032429559, 5.226604793028321, 7.821198559670782, 4.272974279835391, 3.6701340906733066, 2.6037362825788755, 3.749636891793754, 2.9950708786231885, 1.6638314043209876, 0.8082704599761052, 0.0), # 69 (10.369885787558895, 8.859209754856408, 8.309390360653863, 8.974565343196456, 7.497999542752628, 3.6441773992785653, 3.658330067280685, 3.0383135192805977, 3.9063009640298736, 1.736979881115684, 1.3496914810876801, 0.7676185634410675, 0.0, 10.121932334533609, 8.44380419785174, 6.7484574054383994, 5.210939643347051, 7.812601928059747, 4.253638926992837, 3.658330067280685, 2.6029838566275467, 3.748999771376314, 2.991521781065486, 1.6618780721307727, 0.8053827049869463, 0.0), # 70 (10.365069660642929, 8.826867654542236, 8.299375071444901, 8.963305127818035, 7.496112052502757, 3.6426225549966977, 3.646350829769494, 3.0245482777015704, 3.9018074035970125, 1.7317400898356603, 1.347531228463977, 0.7662627447677263, 0.0, 10.119039887688615, 8.428890192444989, 6.737656142319885, 5.195220269506979, 7.803614807194025, 4.234367588782199, 3.646350829769494, 2.6018732535690696, 3.7480560262513785, 2.987768375939346, 1.6598750142889804, 0.8024425140492942, 0.0), # 71 (10.358739130434783, 8.793967741935482, 8.289114583333333, 8.95144769021739, 7.493627450980392, 3.6405833333333337, 3.634201680672269, 3.0108333333333333, 3.897125, 1.7264823529411768, 1.3451702551834133, 0.7648684210526316, 0.0, 10.115234375, 8.413552631578947, 6.7258512759170666, 5.179447058823529, 7.79425, 4.215166666666667, 3.634201680672269, 2.600416666666667, 3.746813725490196, 2.983815896739131, 1.6578229166666667, 0.7994516129032258, 0.0), # 72 (10.35094000119282, 8.760529000176998, 8.27861232567444, 8.939008730877617, 7.490561876328034, 3.638076804856983, 3.621887922521546, 2.9971732586495965, 3.8922601547020275, 1.7212067995373737, 1.3426157678145982, 0.7634365549218266, 0.0, 10.110541516632374, 8.397802104140093, 6.71307883907299, 5.163620398612119, 7.784520309404055, 4.196042562109435, 3.621887922521546, 2.598626289183559, 3.745280938164017, 2.979669576959206, 1.655722465134888, 0.7964117272888181, 0.0), # 73 (10.341718077175404, 8.726570412407629, 8.267871727823502, 8.926003950281803, 7.486931466688183, 3.6351200401361585, 3.609414857849861, 2.9835726261240665, 3.8872192691662857, 1.7159135587293908, 1.3398749729261428, 0.7619681090013557, 0.0, 10.104987032750344, 8.38164919901491, 6.699374864630713, 5.147740676188171, 7.774438538332571, 4.177001676573693, 3.609414857849861, 2.5965143143829703, 3.7434657333440917, 2.975334650093935, 1.6535743455647005, 0.7933245829461482, 0.0), # 74 (10.331119162640901, 8.692110961768218, 8.256896219135802, 8.912449048913043, 7.482752360203341, 3.6317301097393697, 3.59678778918975, 2.9700360082304527, 3.8820087448559666, 1.7106027596223679, 1.336955077086656, 0.7604640459172624, 0.0, 10.098596643518519, 8.365104505089885, 6.684775385433279, 5.131808278867102, 7.764017489711933, 4.158050411522634, 3.59678778918975, 2.594092935528121, 3.7413761801016703, 2.9708163496376816, 1.6513792438271604, 0.7901919056152927, 0.0), # 75 (10.319189061847677, 8.65716963139962, 8.245689228966622, 8.898359727254428, 7.478040695016003, 3.6279240842351275, 3.5840120190737474, 2.956567977442463, 3.876634983234263, 1.7052745313214452, 1.3338632868647486, 0.7589253282955902, 0.0, 10.091396069101508, 8.348178611251491, 6.669316434323743, 5.115823593964334, 7.753269966468526, 4.139195168419449, 3.5840120190737474, 2.5913743458822336, 3.7390203475080015, 2.96611990908481, 1.6491378457933243, 0.7870154210363293, 0.0), # 76 (10.305973579054093, 8.621765404442675, 8.234254186671238, 8.883751685789049, 7.472812609268672, 3.6237190341919425, 3.5710928500343897, 2.9431731062338065, 3.871104385764365, 1.699929002931763, 1.3306068088290313, 0.7573529187623839, 0.0, 10.083411029663925, 8.330882106386222, 6.653034044145156, 5.099787008795288, 7.74220877152873, 4.120442348727329, 3.5710928500343897, 2.58837073870853, 3.736406304634336, 2.9612505619296834, 1.6468508373342476, 0.7837968549493343, 0.0), # 77 (10.291518518518519, 8.585917264038233, 8.222594521604938, 8.868640625, 7.467084241103849, 3.6191320301783265, 3.5580355846042124, 2.9298559670781894, 3.8654233539094642, 1.6945663035584608, 1.327192849548113, 0.7557477799436866, 0.0, 10.074667245370371, 8.313225579380552, 6.635964247740564, 5.083698910675381, 7.7308467078189285, 4.101798353909466, 3.5580355846042124, 2.585094307270233, 3.7335421205519244, 2.956213541666667, 1.6445189043209878, 0.7805379330943849, 0.0), # 78 (10.275869684499314, 8.549644193327138, 8.210713663123, 8.85304224537037, 7.460871728664031, 3.61418014276279, 3.5448455253157505, 2.916621132449322, 3.859598289132754, 1.6891865623066789, 1.3236286155906039, 0.7541108744655421, 0.0, 10.065190436385459, 8.295219619120962, 6.618143077953018, 5.067559686920035, 7.719196578265508, 4.083269585429051, 3.5448455253157505, 2.5815572448305644, 3.7304358643320157, 2.951014081790124, 1.6421427326246, 0.7772403812115581, 0.0), # 79 (10.259072881254847, 8.51296517545024, 8.198615040580703, 8.836972247383253, 7.454191210091719, 3.6088804425138448, 3.5315279747015405, 2.9034731748209115, 3.853635592897424, 1.683789908281557, 1.3199213135251149, 0.7524431649539947, 0.0, 10.0550063228738, 8.27687481449394, 6.599606567625574, 5.05136972484467, 7.707271185794848, 4.064862444749276, 3.5315279747015405, 2.577771744652746, 3.7270956050458595, 2.945657415794418, 1.639723008116141, 0.7739059250409311, 0.0), # 80 (10.241173913043479, 8.475899193548386, 8.186302083333333, 8.82044633152174, 7.447058823529411, 3.60325, 3.5180882352941176, 2.890416666666667, 3.8475416666666664, 1.6783764705882358, 1.3160781499202554, 0.7507456140350878, 0.0, 10.044140624999999, 8.258201754385965, 6.580390749601277, 5.035129411764706, 7.695083333333333, 4.046583333333333, 3.5180882352941176, 2.57375, 3.7235294117647055, 2.940148777173914, 1.6372604166666667, 0.7705362903225808, 0.0), # 81 (10.222218584123576, 8.438465230762423, 8.17377822073617, 8.803480198268922, 7.43949070711961, 3.5973058857897686, 3.504531609626018, 2.8774561804602956, 3.841322911903673, 1.6729463783318543, 1.3121063313446355, 0.7490191843348656, 0.0, 10.03261906292867, 8.23921102768352, 6.560531656723177, 5.018839134995561, 7.682645823807346, 4.0284386526444145, 3.504531609626018, 2.5695042041355487, 3.719745353559805, 2.934493399422974, 1.634755644147234, 0.767133202796584, 0.0), # 82 (10.202252698753504, 8.400682270233196, 8.16104688214449, 8.78608954810789, 7.431502999004814, 3.591065170451659, 3.4908634002297765, 2.8645962886755068, 3.8349857300716352, 1.6674997606175532, 1.3080130643668657, 0.7472648384793719, 0.0, 10.020467356824417, 8.219913223273089, 6.540065321834328, 5.002499281852659, 7.6699714601432705, 4.01043480414571, 3.4908634002297765, 2.5650465503226134, 3.715751499502407, 2.9286965160359637, 1.632209376428898, 0.7636983882030178, 0.0), # 83 (10.181322061191626, 8.362569295101553, 8.14811149691358, 8.768290081521739, 7.423111837327523, 3.584544924554184, 3.477088909637929, 2.851841563786008, 3.8285365226337444, 1.6620367465504726, 1.3038055555555557, 0.7454835390946503, 0.0, 10.007711226851852, 8.200318930041153, 6.519027777777778, 4.986110239651417, 7.657073045267489, 3.9925781893004113, 3.477088909637929, 2.5603892318244172, 3.7115559186637617, 2.922763360507247, 1.629622299382716, 0.7602335722819594, 0.0), # 84 (10.159472475696308, 8.32414528850834, 8.13497549439872, 8.75009749899356, 7.414333360230238, 3.577762218665854, 3.463213440383012, 2.8391965782655086, 3.8219816910531925, 1.6565574652357518, 1.2994910114793157, 0.7436762488067449, 0.0, 9.994376393175584, 8.180438736874192, 6.497455057396579, 4.969672395707254, 7.643963382106385, 3.9748752095717124, 3.463213440383012, 2.5555444419041815, 3.707166680115119, 2.916699166331187, 1.626995098879744, 0.7567404807734855, 0.0), # 85 (10.136749746525913, 8.285429233594407, 8.121642303955191, 8.731527501006443, 7.405183705855455, 3.57073412335518, 3.44924229499756, 2.826665904587715, 3.815327636793172, 1.6510620457785314, 1.2950766387067558, 0.7418439302416996, 0.0, 9.98048857596022, 8.160283232658694, 6.475383193533778, 4.953186137335593, 7.630655273586344, 3.9573322664228017, 3.44924229499756, 2.550524373825129, 3.7025918529277275, 2.910509167002148, 1.6243284607910382, 0.7532208394176735, 0.0), # 86 (10.113199677938807, 8.246440113500597, 8.10811535493827, 8.712595788043478, 7.3956790123456795, 3.563477709190672, 3.4351807760141093, 2.8142541152263374, 3.8085807613168727, 1.645550617283951, 1.290569643806486, 0.7399875460255577, 0.0, 9.96607349537037, 8.139863006281134, 6.452848219032429, 4.936651851851852, 7.6171615226337455, 3.9399557613168725, 3.4351807760141093, 2.54534122085048, 3.6978395061728397, 2.904198596014493, 1.6216230709876542, 0.7496763739545999, 0.0), # 87 (10.088868074193357, 8.207196911367758, 8.094398076703246, 8.693318060587762, 7.385835417843406, 3.5560100467408424, 3.4210341859651954, 2.801965782655083, 3.8017474660874866, 1.6400233088571508, 1.2859772333471164, 0.7381080587843638, 0.0, 9.951156871570646, 8.119188646628, 6.429886166735582, 4.9200699265714505, 7.603494932174973, 3.9227520957171165, 3.4210341859651954, 2.540007176243459, 3.692917708921703, 2.897772686862588, 1.6188796153406495, 0.7461088101243417, 0.0), # 88 (10.063800739547922, 8.16771861033674, 8.080493898605397, 8.673710019122383, 7.375669060491138, 3.5483482065742016, 3.406807827383354, 2.7898054793476605, 3.794834152568206, 1.634480249603271, 1.2813066138972575, 0.7362064311441613, 0.0, 9.935764424725651, 8.098270742585774, 6.4065330694862865, 4.903440748809812, 7.589668305136412, 3.905727671086725, 3.406807827383354, 2.534534433267287, 3.687834530245569, 2.891236673040795, 1.6160987797210793, 0.7425198736669765, 0.0), # 89 (10.03804347826087, 8.128024193548386, 8.06640625, 8.653787364130435, 7.365196078431373, 3.5405092592592595, 3.3925070028011204, 2.7777777777777777, 3.7878472222222226, 1.6289215686274514, 1.2765649920255184, 0.7342836257309943, 0.0, 9.919921875, 8.077119883040936, 6.382824960127592, 4.886764705882353, 7.575694444444445, 3.888888888888889, 3.3925070028011204, 2.5289351851851856, 3.6825980392156863, 2.884595788043479, 1.6132812500000002, 0.7389112903225807, 0.0), # 90 (10.011642094590563, 8.088132644143545, 8.05213856024234, 8.63356579609501, 7.35443260980661, 3.532510275364528, 3.378137014751031, 2.7658872504191434, 3.780793076512727, 1.6233473950348318, 1.2717595743005101, 0.7323406051709063, 0.0, 9.903654942558298, 8.055746656879968, 6.35879787150255, 4.870042185104494, 7.561586153025454, 3.872242150586801, 3.378137014751031, 2.5232216252603767, 3.677216304903305, 2.8778552653650036, 1.6104277120484682, 0.7352847858312315, 0.0), # 91 (9.984642392795372, 8.048062945263066, 8.0376942586877, 8.613061015499195, 7.343394792759352, 3.524368325458518, 3.363703165765621, 2.754138469745466, 3.773678116902911, 1.6177578579305527, 1.2668975672908422, 0.7303783320899415, 0.0, 9.886989347565157, 8.034161652989356, 6.334487836454211, 4.853273573791657, 7.547356233805822, 3.8557938576436523, 3.363703165765621, 2.517405946756084, 3.671697396379676, 2.871020338499732, 1.6075388517375402, 0.7316420859330061, 0.0), # 92 (9.957090177133654, 8.00783408004779, 8.023076774691358, 8.592288722826089, 7.332098765432098, 3.5161004801097393, 3.349210758377425, 2.742536008230453, 3.766508744855967, 1.6121530864197533, 1.261986177565125, 0.7283977691141434, 0.0, 9.869950810185184, 8.012375460255576, 6.309930887825625, 4.836459259259259, 7.533017489711934, 3.839550411522634, 3.349210758377425, 2.5115003429355283, 3.666049382716049, 2.86409624094203, 1.6046153549382718, 0.727984916367981, 0.0), # 93 (9.92903125186378, 7.967465031638567, 8.008289537608597, 8.571264618558777, 7.320560665967347, 3.5077238098867043, 3.3346650951189805, 2.7310844383478132, 3.759291361835086, 1.6065332096075746, 1.2570326116919686, 0.7263998788695563, 0.0, 9.85256505058299, 7.990398667565118, 6.285163058459842, 4.819599628822722, 7.518582723670172, 3.823518213686939, 3.3346650951189805, 2.5055170070619317, 3.6602803329836733, 2.8570882061862592, 1.6016579075217197, 0.7243150028762335, 0.0), # 94 (9.90051142124411, 7.926974783176247, 7.993335976794697, 8.550004403180354, 7.308796632507598, 3.499255385357923, 3.320071478522822, 2.719788332571255, 3.7520323693034596, 1.6008983565991557, 1.2520440762399827, 0.7243856239822234, 0.0, 9.834857788923182, 7.968241863804456, 6.260220381199914, 4.8026950697974655, 7.504064738606919, 3.8077036655997567, 3.320071478522822, 2.4994681323985164, 3.654398316253799, 2.850001467726785, 1.5986671953589393, 0.7206340711978407, 0.0), # 95 (9.871576489533012, 7.886382317801674, 7.978219521604939, 8.528523777173913, 7.296822803195352, 3.4907122770919066, 3.3054352111214853, 2.708652263374486, 3.7447381687242793, 1.5952486564996373, 1.247027777777778, 0.7223559670781895, 0.0, 9.816854745370371, 7.945915637860083, 6.23513888888889, 4.785745969498911, 7.489476337448559, 3.7921131687242804, 3.3054352111214853, 2.4933659122085046, 3.648411401597676, 2.8428412590579715, 1.595643904320988, 0.7169438470728796, 0.0), # 96 (9.842272260988848, 7.845706618655694, 7.962943601394604, 8.506838441022543, 7.284655316173109, 3.482111555657166, 3.2907615954475067, 2.697680803231215, 3.7374151615607376, 1.589584238414159, 1.2419909228739638, 0.7203118707834976, 0.0, 9.798581640089164, 7.923430578618472, 6.209954614369819, 4.768752715242476, 7.474830323121475, 3.7767531245237014, 3.2907615954475067, 2.4872225397551184, 3.6423276580865545, 2.8356128136741816, 1.5925887202789208, 0.7132460562414268, 0.0), # 97 (9.812644539869984, 7.804966668879153, 7.947511645518976, 8.48496409520934, 7.272310309583368, 3.4734702916222124, 3.276055934033421, 2.68687852461515, 3.7300697492760246, 1.5839052314478608, 1.236940718097151, 0.7182542977241916, 0.0, 9.78006419324417, 7.900797274966106, 6.184703590485755, 4.751715694343581, 7.460139498552049, 3.7616299344612103, 3.276055934033421, 2.48105020830158, 3.636155154791684, 2.8283213650697805, 1.589502329103795, 0.7095424244435595, 0.0), # 98 (9.782739130434782, 7.764181451612902, 7.931927083333334, 8.462916440217391, 7.259803921568627, 3.464805555555556, 3.261323529411765, 2.67625, 3.7227083333333333, 1.5782117647058826, 1.2318843700159492, 0.7161842105263159, 0.0, 9.761328125, 7.878026315789473, 6.159421850079745, 4.734635294117647, 7.445416666666667, 3.7467500000000005, 3.261323529411765, 2.474861111111111, 3.6299019607843137, 2.820972146739131, 1.5863854166666669, 0.7058346774193549, 0.0), # 99 (9.752601836941611, 7.723369949997786, 7.916193344192958, 8.44071117652979, 7.247152290271389, 3.4561344180257074, 3.2465696841150726, 2.665799801859473, 3.715337315195854, 1.572503967293365, 1.2268290851989685, 0.714102571815914, 0.0, 9.742399155521262, 7.8551282899750525, 6.134145425994841, 4.717511901880093, 7.430674630391708, 3.732119722603262, 3.2465696841150726, 2.468667441446934, 3.6235761451356945, 2.8135703921765973, 1.5832386688385918, 0.7021245409088898, 0.0), # 100 (9.722278463648834, 7.682551147174654, 7.900313857453133, 8.41836400462963, 7.234371553834153, 3.4474739496011786, 3.231799700675881, 2.6555325026672763, 3.7079630963267793, 1.5667819683154474, 1.2217820702148188, 0.7120103442190294, 0.0, 9.723303004972564, 7.832113786409323, 6.108910351074094, 4.7003459049463405, 7.415926192653559, 3.7177455037341867, 3.231799700675881, 2.4624813925722706, 3.6171857769170765, 2.806121334876544, 1.5800627714906266, 0.6984137406522414, 0.0), # 101 (9.691814814814816, 7.641744026284349, 7.884292052469135, 8.395890625, 7.221477850399419, 3.4388412208504806, 3.217018881626725, 2.645452674897119, 3.7005920781893, 1.56104589687727, 1.2167505316321108, 0.7099084903617069, 0.0, 9.704065393518519, 7.808993393978774, 6.083752658160553, 4.683137690631809, 7.4011841563786, 3.703633744855967, 3.217018881626725, 2.4563151577503435, 3.6107389251997093, 2.798630208333334, 1.5768584104938272, 0.6947040023894864, 0.0), # 102 (9.661256694697919, 7.60096757046772, 7.8681313585962505, 8.373306738123993, 7.208487318109686, 3.430253302342123, 3.20223252950014, 2.63556489102271, 3.6932306622466085, 1.5552958820839726, 1.211741676019454, 0.7077979728699895, 0.0, 9.68471204132373, 7.785777701569883, 6.058708380097269, 4.6658876462519165, 7.386461324493217, 3.689790847431794, 3.20223252950014, 2.4501809302443736, 3.604243659054843, 2.7911022460413317, 1.5736262717192502, 0.6909970518607019, 0.0), # 103 (9.63064990755651, 7.560240762865614, 7.851835205189758, 8.350628044484703, 7.195416095107452, 3.421727264644617, 3.187445946828663, 2.6258737235177567, 3.685885249961896, 1.5495320530406955, 1.2067627099454585, 0.7056797543699213, 0.0, 9.665268668552812, 7.762477298069133, 6.033813549727292, 4.648596159122086, 7.371770499923792, 3.6762232129248593, 3.187445946828663, 2.4440909033175835, 3.597708047553726, 2.783542681494901, 1.5703670410379515, 0.687294614805965, 0.0), # 104 (9.600040257648953, 7.519582586618876, 7.835407021604938, 8.327870244565217, 7.182280319535221, 3.4132801783264752, 3.172664436144829, 2.6163837448559675, 3.6785622427983538, 1.5437545388525786, 1.201820839978735, 0.7035547974875461, 0.0, 9.64576099537037, 7.739102772363006, 6.009104199893674, 4.631263616557734, 7.3571244855967075, 3.662937242798354, 3.172664436144829, 2.4380572702331964, 3.5911401597676105, 2.775956748188406, 1.5670814043209877, 0.6835984169653525, 0.0), # 105 (9.569473549233614, 7.479012024868357, 7.818850237197074, 8.305049038848631, 7.1690961295354905, 3.404929113956206, 3.1578932999811724, 2.6070995275110502, 3.6712680422191735, 1.5379634686247616, 1.1969232726878927, 0.701424064848908, 0.0, 9.626214741941014, 7.715664713337986, 5.9846163634394625, 4.613890405874283, 7.342536084438347, 3.6499393385154706, 3.1578932999811724, 2.4320922242544327, 3.5845480647677452, 2.768349679616211, 1.5637700474394147, 0.6799101840789417, 0.0), # 106 (9.538995586568856, 7.438548060754901, 7.802168281321446, 8.282180127818036, 7.155879663250759, 3.3966911421023225, 3.1431378408702306, 2.5980256439567144, 3.6640090496875475, 1.532158971462385, 1.1920772146415421, 0.6992885190800504, 0.0, 9.606655628429355, 7.692173709880553, 5.96038607320771, 4.596476914387154, 7.328018099375095, 3.6372359015394005, 3.1431378408702306, 2.426207958644516, 3.5779398316253794, 2.760726709272679, 1.5604336562642893, 0.6762316418868093, 0.0), # 107 (9.508652173913044, 7.398209677419356, 7.785364583333334, 8.259279211956523, 7.1426470588235285, 3.3885833333333335, 3.1284033613445374, 2.589166666666667, 3.656791666666667, 1.5263411764705888, 1.1872898724082936, 0.6971491228070177, 0.0, 9.587109375, 7.668640350877193, 5.936449362041468, 4.579023529411765, 7.313583333333334, 3.624833333333334, 3.1284033613445374, 2.4204166666666667, 3.5713235294117642, 2.7530930706521746, 1.557072916666667, 0.6725645161290325, 0.0), # 108 (9.478489115524543, 7.358015858002567, 7.768442572588021, 8.23636199174718, 7.129414454396299, 3.3806227582177515, 3.113695163936631, 2.580527168114617, 3.6496222946197223, 1.5205102127545123, 1.1825684525567568, 0.6950068386558532, 0.0, 9.567601701817559, 7.645075225214384, 5.9128422627837836, 4.561530638263536, 7.299244589239445, 3.612738035360464, 3.113695163936631, 2.4147305415841083, 3.5647072271981495, 2.7454539972490606, 1.5536885145176043, 0.668910532545688, 0.0), # 109 (9.448552215661715, 7.317985585645383, 7.751405678440788, 8.213444167673108, 7.116197988111569, 3.3728264873240867, 3.0990185511790447, 2.5721117207742723, 3.6425073350099066, 1.5146662094192962, 1.177920161655542, 0.6928626292526012, 0.0, 9.54815832904664, 7.621488921778612, 5.8896008082777085, 4.543998628257887, 7.285014670019813, 3.600956409083981, 3.0990185511790447, 2.409161776660062, 3.5580989940557846, 2.737814722557703, 1.5502811356881578, 0.6652714168768531, 0.0), # 110 (9.41888727858293, 7.278137843488651, 7.7342573302469155, 8.190541440217391, 7.103013798111837, 3.365211591220851, 3.0843788256043156, 2.5639248971193416, 3.635453189300412, 1.5088092955700803, 1.173352206273259, 0.6907174572233054, 0.0, 9.528804976851852, 7.597892029456357, 5.866761031366295, 4.526427886710239, 7.270906378600824, 3.5894948559670783, 3.0843788256043156, 2.4037225651577505, 3.5515068990559184, 2.7301804800724643, 1.546851466049383, 0.6616488948626047, 0.0), # 111 (9.38954010854655, 7.238491614673214, 7.717000957361684, 8.167669509863124, 7.089878022539605, 3.357795140476554, 3.069781289744979, 2.5559712696235333, 3.628466258954427, 1.5029396003120044, 1.1688717929785184, 0.6885722851940093, 0.0, 9.509567365397805, 7.574295137134101, 5.844358964892591, 4.5088188009360115, 7.256932517908854, 3.5783597774729463, 3.069781289744979, 2.3984251003403956, 3.5449390112698027, 2.7225565032877084, 1.543400191472337, 0.6580446922430195, 0.0), # 112 (9.360504223703044, 7.1991320672204555, 7.699681523543391, 8.14487541186903, 7.076783786782469, 3.3505906987084666, 3.0552629818283847, 2.548271903658586, 3.6215709370862066, 1.4970761841531826, 1.1644873176921446, 0.6864327447087024, 0.0, 9.490443900843221, 7.550760191795725, 5.8224365884607225, 4.491228552459547, 7.243141874172413, 3.5675806651220205, 3.0552629818283847, 2.3932790705060474, 3.5383918933912346, 2.7149584706230105, 1.5399363047086783, 0.654466551565496, 0.0), # 113 (9.331480897900065, 7.16044741823174, 7.682538062518016, 8.122342065958001, 7.063595569710884, 3.343581854975776, 3.0410091042052896, 2.5409213581271333, 3.6148730119043533, 1.491328791978196, 1.1602073895188663, 0.684326014342748, 0.0, 9.471275414160035, 7.5275861577702265, 5.801036947594331, 4.473986375934587, 7.229746023808707, 3.557289901377987, 3.0410091042052896, 2.3882727535541255, 3.531797784855442, 2.7074473553193346, 1.5365076125036032, 0.6509497652937947, 0.0), # 114 (9.302384903003995, 7.122451598792792, 7.665580777256098, 8.100063378886334, 7.050271785259067, 3.3367503822909463, 3.027029825095781, 2.533917772616129, 3.6083749928895963, 1.4857063319970194, 1.1560257519045158, 0.6822531318799043, 0.0, 9.452006631660376, 7.5047844506789465, 5.7801287595225785, 4.457118995991058, 7.216749985779193, 3.5474848816625806, 3.027029825095781, 2.3833931302078186, 3.5251358926295335, 2.700021126295445, 1.5331161554512198, 0.647495599890254, 0.0), # 115 (9.273179873237634, 7.0850892578507265, 7.648776824986561, 8.077999612699802, 7.036792350922519, 3.330080178417474, 3.0133024087639466, 2.5272417970412473, 3.6020604464092765, 1.480198339612387, 1.1519343218785802, 0.6802102664572789, 0.0, 9.43260725975589, 7.482312931030067, 5.7596716093929015, 4.44059501883716, 7.204120892818553, 3.5381385158577463, 3.0133024087639466, 2.3786286988696244, 3.5183961754612594, 2.6926665375666015, 1.5297553649973124, 0.6440990234409752, 0.0), # 116 (9.243829442823772, 7.04830504435266, 7.632093362938321, 8.056111029444182, 7.02313718419674, 3.323555141118853, 2.9998041194738763, 2.5208740813181603, 3.5959129388307343, 1.4747943502270324, 1.1479250164705472, 0.6781935872119792, 0.0, 9.413047004858225, 7.46012945933177, 5.739625082352736, 4.424383050681096, 7.1918258776614685, 3.5292237138454245, 2.9998041194738763, 2.3739679579420376, 3.51156859209837, 2.6853703431480613, 1.5264186725876645, 0.6407550040320601, 0.0), # 117 (9.214297245985211, 7.0120436072457135, 7.615497548340306, 8.03435789116525, 7.009286202577227, 3.317159168158581, 2.9865122214896576, 2.51479527536254, 3.5899160365213114, 1.46948389924369, 1.143989752709904, 0.6761992632811126, 0.0, 9.393295573379024, 7.438191896092237, 5.71994876354952, 4.40845169773107, 7.179832073042623, 3.5207133855075567, 2.9865122214896576, 2.369399405827558, 3.5046431012886137, 2.678119297055084, 1.5230995096680613, 0.6374585097496104, 0.0), # 118 (9.184546916944742, 6.976249595477001, 7.598956538421437, 8.012700459908778, 6.99521932355948, 3.3108761573001524, 2.973403979075378, 2.5089860290900607, 3.5840533058483475, 1.4642565220650932, 1.1401204476261382, 0.6742234638017862, 0.0, 9.373322671729932, 7.416458101819647, 5.70060223813069, 4.392769566195279, 7.168106611696695, 3.5125804407260848, 2.973403979075378, 2.3649115409286803, 3.49760966177974, 2.670900153302927, 1.5197913076842873, 0.6342045086797276, 0.0), # 119 (9.154542089925162, 6.940867657993644, 7.582437490410635, 7.991098997720545, 6.980916464638998, 3.304690006307063, 2.9604566564951265, 2.5034269924163928, 3.578308313179186, 1.4591017540939766, 1.136309018248736, 0.6722623579111081, 0.0, 9.353098006322597, 7.394885937022188, 5.68154509124368, 4.377305262281929, 7.156616626358372, 3.50479778938295, 2.9604566564951265, 2.360492861647902, 3.490458232319499, 2.663699665906849, 1.516487498082127, 0.6309879689085133, 0.0), # 120 (9.124246399149268, 6.90584244374276, 7.565907561536823, 7.969513766646325, 6.966357543311279, 3.29858461294281, 2.94764751801299, 2.4980988152572112, 3.572664624881166, 1.4540091307330743, 1.1325473816071863, 0.6703121147461852, 0.0, 9.33259128356866, 7.373433262208036, 5.662736908035931, 4.362027392199222, 7.145329249762332, 3.497338341360096, 2.94764751801299, 2.356131866387721, 3.4831787716556395, 2.656504588882109, 1.5131815123073646, 0.6278038585220692, 0.0), # 121 (9.093623478839854, 6.871118601671464, 7.549333909028926, 7.947905028731892, 6.951522477071823, 3.292543874970886, 2.9349538278930587, 2.492982147528187, 3.5671058073216297, 1.4489681873851195, 1.1288274547309753, 0.6683689034441251, 0.0, 9.31177220987977, 7.352057937885375, 5.644137273654876, 4.346904562155357, 7.1342116146432595, 3.490175006539462, 2.9349538278930587, 2.351817053550633, 3.4757612385359113, 2.6493016762439643, 1.5098667818057854, 0.6246471456064968, 0.0), # 122 (9.062636963219719, 6.836640780726876, 7.532683690115864, 7.92623304602302, 6.936391183416127, 3.28655169015479, 2.9223528503994194, 2.4880576391449933, 3.5616154268679177, 1.443968459452847, 1.1251411546495909, 0.6664288931420351, 0.0, 9.290610491667572, 7.330717824562385, 5.625705773247954, 4.33190537835854, 7.123230853735835, 3.4832806948029904, 2.9223528503994194, 2.3475369215391355, 3.4681955917080636, 2.642077682007674, 1.5065367380231727, 0.621512798247898, 0.0), # 123 (9.031250486511654, 6.802353629856113, 7.515924062026559, 7.90445808056549, 6.920943579839691, 3.2805919562580144, 2.9098218497961597, 2.483305940023303, 3.5561770498873715, 1.4389994823389904, 1.1214803983925201, 0.664488252977023, 0.0, 9.269075835343711, 7.309370782747252, 5.6074019919625995, 4.316998447016971, 7.112354099774743, 3.476628316032624, 2.9098218497961597, 2.3432799687557244, 3.4604717899198456, 2.634819360188497, 1.5031848124053118, 0.618395784532374, 0.0), # 124 (8.999427682938459, 6.768201798006293, 7.499022181989936, 7.88254039440507, 6.905159583838015, 3.274648571044058, 2.8973380903473696, 2.478707700078788, 3.5507742427473308, 1.4340507914462837, 1.1178371029892504, 0.6625431520861957, 0.0, 9.247137947319828, 7.2879746729481525, 5.5891855149462515, 4.30215237433885, 7.1015484854946616, 3.470190780110303, 2.8973380903473696, 2.3390346936028985, 3.4525797919190073, 2.6275134648016905, 1.4998044363979874, 0.6152910725460268, 0.0), # 125 (8.967132186722928, 6.734129934124536, 7.481945207234916, 7.8604402495875405, 6.889019112906595, 3.2687054322764144, 2.884878836317135, 2.474243569227122, 3.545390571815139, 1.4291119221774609, 1.1142031854692689, 0.6605897596066612, 0.0, 9.224766534007578, 7.266487355673273, 5.571015927346345, 4.287335766532382, 7.090781143630278, 3.463940996917971, 2.884878836317135, 2.334789594483153, 3.4445095564532977, 2.620146749862514, 1.4963890414469831, 0.6121936303749579, 0.0), # 126 (8.93432763208786, 6.7000826871579555, 7.464660294990421, 7.838117908158674, 6.8725020845409315, 3.26274643771858, 2.872421351969547, 2.469894197383977, 3.5400096034581354, 1.4241724099352562, 1.1105705628620632, 0.6586242446755264, 0.0, 9.201931301818599, 7.244866691430789, 5.552852814310316, 4.272517229805768, 7.080019206916271, 3.457851876337568, 2.872421351969547, 2.3305331697989855, 3.4362510422704657, 2.612705969386225, 1.4929320589980841, 0.6090984261052688, 0.0), # 127 (8.900977653256046, 6.666004706053673, 7.447134602485375, 7.815533632164248, 6.855588416236526, 3.2567554851340508, 2.859942901568691, 2.465640234465026, 3.534614904043661, 1.4192217901224033, 1.1069311521971208, 0.6566427764298991, 0.0, 9.178601957164537, 7.223070540728888, 5.534655760985604, 4.257665370367209, 7.069229808087322, 3.4518963282510366, 2.859942901568691, 2.3262539179528936, 3.427794208118263, 2.6051778773880834, 1.4894269204970751, 0.6060004278230613, 0.0), # 128 (8.867045884450281, 6.631840639758805, 7.4293352869486995, 7.792647683650037, 6.838258025488874, 3.250716472286322, 2.8474207493786565, 2.4614623303859418, 3.529190039939058, 1.4142495981416365, 1.1032768705039286, 0.6546415240068865, 0.0, 9.154748206457038, 7.20105676407575, 5.516384352519642, 4.242748794424909, 7.058380079878116, 3.4460472625403185, 2.8474207493786565, 2.321940337347373, 3.419129012744437, 2.597549227883346, 1.4858670573897401, 0.6028946036144368, 0.0), # 129 (8.832495959893366, 6.5975351372204685, 7.411229505609316, 7.769420324661814, 6.820490829793475, 3.2446132969388883, 2.8348321596635313, 2.457341135062396, 3.5237185775116666, 1.4092453693956895, 1.0995996348119743, 0.6526166565435961, 0.0, 9.130339756107748, 7.178783221979556, 5.4979981740598705, 4.2277361081870675, 7.047437155023333, 3.4402775890873545, 2.8348321596635313, 2.3175809263849203, 3.4102454148967376, 2.589806774887272, 1.4822459011218634, 0.5997759215654973, 0.0), # 130 (8.797291513808094, 6.563032847385783, 7.392784415696151, 7.7458118172453565, 6.802266746645829, 3.238429856855247, 2.8221543966874045, 2.4532572984100627, 3.5181840831288285, 1.4041986392872965, 1.0958913621507447, 0.6505643431771354, 0.0, 9.105346312528312, 7.156207774948489, 5.479456810753724, 4.212595917861889, 7.036368166257657, 3.4345602177740875, 2.8221543966874045, 2.3131641834680337, 3.4011333733229145, 2.5819372724151193, 1.4785568831392302, 0.596639349762344, 0.0), # 131 (8.76139618041726, 6.528278419201865, 7.373967174438122, 7.72178242344644, 6.783565693541435, 3.2321500497988933, 2.8093647247143627, 2.449191470344614, 3.5125701231578845, 1.3990989432191914, 1.0921439695497275, 0.6484807530446118, 0.0, 9.079737582130376, 7.13328828349073, 5.460719847748638, 4.1972968296575734, 7.025140246315769, 3.4288680584824593, 2.8093647247143627, 2.3086786069992096, 3.3917828467707176, 2.573927474482147, 1.4747934348876244, 0.5934798562910787, 0.0), # 132 (8.724773593943663, 6.493216501615832, 7.354744939064153, 7.697292405310838, 6.764367587975791, 3.225757773533322, 2.7964404080084946, 2.445124300781722, 3.5068602639661752, 1.3939358165941083, 1.0883493740384103, 0.6463620552831327, 0.0, 9.053483271325586, 7.10998260811446, 5.44174687019205, 4.181807449782324, 7.0137205279323505, 3.4231740210944106, 2.7964404080084946, 2.3041126953809443, 3.3821837939878954, 2.5657641351036133, 1.4709489878128308, 0.590292409237803, 0.0), # 133 (8.687387388610095, 6.457791743574804, 7.33508486680317, 7.672302024884328, 6.7446523474443945, 3.2192369258220297, 2.7833587108338893, 2.44103643963706, 3.5010380719210428, 1.388698794814781, 1.0844994926462799, 0.6442044190298056, 0.0, 9.026553086525583, 7.0862486093278605, 5.422497463231399, 4.166096384444343, 7.0020761438420855, 3.417451015491884, 2.7833587108338893, 2.2994549470157355, 3.3723261737221972, 2.557434008294776, 1.4670169733606342, 0.5870719766886187, 0.0), # 134 (8.649201198639354, 6.421948794025897, 7.314954114884091, 7.646771544212684, 6.724399889442747, 3.212571404428512, 2.770096897454634, 2.4369085368263, 3.4950871133898262, 1.3833774132839443, 1.0805862424028239, 0.6420040134217377, 0.0, 8.99891673414202, 7.0620441476391145, 5.402931212014119, 4.150132239851832, 6.9901742267796525, 3.41167195155682, 2.770096897454634, 2.2946938603060802, 3.3621999447213735, 2.548923848070895, 1.4629908229768183, 0.583813526729627, 0.0), # 135 (8.610178658254235, 6.385632301916229, 7.294319840535841, 7.62066122534168, 6.703590131466344, 3.205745107116265, 2.7566322321348173, 2.4327212422651154, 3.4889909547398688, 1.3779612074043308, 1.0766015403375297, 0.6397570075960368, 0.0, 8.970543920586536, 7.037327083556404, 5.383007701687648, 4.133883622212991, 6.9779819094797375, 3.4058097391711617, 2.7566322321348173, 2.289817933654475, 3.351795065733172, 2.540220408447227, 1.4588639681071682, 0.58051202744693, 0.0), # 136 (8.570283401677534, 6.348786916192918, 7.273149200987342, 7.593931330317094, 6.682202991010689, 3.1987419316487826, 2.7429419791385277, 2.428455205869179, 3.4827331623385107, 1.3724397125786756, 1.0725373034798844, 0.63745957068981, 0.0, 8.941404352270776, 7.012055277587909, 5.362686517399421, 4.117319137736026, 6.965466324677021, 3.3998372882168506, 2.7429419791385277, 2.284815665463416, 3.3411014955053444, 2.5313104434390317, 1.4546298401974684, 0.577162446926629, 0.0), # 137 (8.529479063132047, 6.311357285803083, 7.251409353467515, 7.566542121184698, 6.660218385571278, 3.1915457757895624, 2.729003402729852, 2.4240910775541624, 3.4762973025530934, 1.3668024642097119, 1.0683854488593754, 0.6351078718401649, 0.0, 8.91146773560639, 6.986186590241813, 5.341927244296877, 4.100407392629135, 6.952594605106187, 3.3937275085758274, 2.729003402729852, 2.2796755541354017, 3.330109192785639, 2.5221807070615663, 1.450281870693503, 0.5737597532548258, 0.0), # 138 (8.487729276840568, 6.273288059693839, 7.229067455205284, 7.538453859990269, 6.63761623264361, 3.184140537302099, 2.7147937671728797, 2.4196095072357395, 3.469666941750957, 1.3610389977001744, 1.0641378935054902, 0.6326980801842089, 0.0, 8.880703777005019, 6.959678882026297, 5.32068946752745, 4.083116993100523, 6.939333883501914, 3.3874533101300353, 2.7147937671728797, 2.274386098072928, 3.318808116321805, 2.51281795333009, 1.4458134910410567, 0.5702989145176218, 0.0), # 139 (8.444997677025897, 6.234523886812306, 7.206090663429573, 7.509626808779583, 6.614376449723186, 3.176510113949888, 2.7002903367316984, 2.4149911448295818, 3.462825646299444, 1.3551388484527966, 1.0597865544477159, 0.6302263648590494, 0.0, 8.849082182878314, 6.932490013449542, 5.298932772238579, 4.0654165453583895, 6.925651292598888, 3.3809876027614147, 2.7002903367316984, 2.2689357956784915, 3.307188224861593, 2.5032089362598615, 1.4412181326859146, 0.5667748988011189, 0.0), # 140 (8.40124789791083, 6.195009416105602, 7.1824461353693, 7.480021229598415, 6.590478954305501, 3.1686384034964257, 2.6854703756703975, 2.4102166402513627, 3.455756982565893, 1.349091551870313, 1.0553233487155398, 0.6276888950017938, 0.0, 8.816572659637913, 6.904577845019731, 5.276616743577699, 4.047274655610939, 6.911513965131786, 3.3743032963519077, 2.6854703756703975, 2.26331314535459, 3.2952394771527507, 2.4933404098661387, 1.4364892270738603, 0.5631826741914184, 0.0), # 141 (8.356443573718156, 6.154689296520844, 7.158101028253392, 7.44959738449254, 6.565903663886058, 3.1605093037052074, 2.670311148253063, 2.4052666434167547, 3.448444516917647, 1.3428866433554572, 1.0507401933384497, 0.6250818397495496, 0.0, 8.783144913695466, 6.875900237245045, 5.253700966692247, 4.028659930066371, 6.896889033835294, 3.3673733007834565, 2.670311148253063, 2.2575066455037196, 3.282951831943029, 2.4831991281641805, 1.4316202056506786, 0.5595172087746222, 0.0), # 142 (8.310548338670674, 6.113508177005149, 7.133022499310772, 7.418315535507731, 6.540630495960352, 3.152106712339729, 2.6547899187437842, 2.4001218042414303, 3.4408718157220486, 1.3365136583109634, 1.0460290053459322, 0.6224013682394242, 0.0, 8.748768651462617, 6.846415050633665, 5.230145026729661, 4.009540974932889, 6.881743631444097, 3.360170525938002, 2.6547899187437842, 2.251504794528378, 3.270315247980176, 2.472771845169244, 1.4266044998621543, 0.5557734706368318, 0.0), # 143 (8.263525826991184, 6.071410706505636, 7.107177705770357, 7.386135944689768, 6.514639368023886, 3.1434145271634857, 2.6388839514066493, 2.3947627726410623, 3.4330224453464364, 1.3299621321395652, 1.0411817017674754, 0.619643649608525, 0.0, 8.713413579351014, 6.816080145693774, 5.205908508837376, 3.9898863964186946, 6.866044890692873, 3.3526678816974873, 2.6388839514066493, 2.245296090831061, 3.257319684011943, 2.4620453148965895, 1.4214355411540713, 0.5519464278641489, 0.0), # 144 (8.215339672902477, 6.0283415339694235, 7.080533804861075, 7.353018874084421, 6.487910197572155, 3.134416645939974, 2.6225705105057466, 2.3891701985313234, 3.424879972158151, 1.3232216002439972, 1.036190199632566, 0.6168048529939595, 0.0, 8.6770494037723, 6.784853382933553, 5.180950998162829, 3.969664800731991, 6.849759944316302, 3.344838277943853, 2.6225705105057466, 2.238869032814267, 3.2439550987860777, 2.451006291361474, 1.4161067609722149, 0.548031048542675, 0.0), # 145 (8.16595351062735, 5.984245308343629, 7.053057953811847, 7.318924585737469, 6.460422902100661, 3.1250969664326886, 2.605826860305165, 2.3833247318278863, 3.4164279625245353, 1.3162815980269928, 1.0310464159706916, 0.6138811475328351, 0.0, 8.639645831138118, 6.7526926228611845, 5.155232079853457, 3.948844794080978, 6.832855925049071, 3.3366546245590407, 2.605826860305165, 2.2322121188804918, 3.2302114510503306, 2.439641528579157, 1.4106115907623695, 0.5440223007585119, 0.0), # 146 (8.1153309743886, 5.93906667857537, 7.024717309851591, 7.283813341694685, 6.4321573991049, 3.1154393864051255, 2.5886302650689905, 2.3772070224464232, 3.40764998281293, 1.3091316608912866, 1.0257422678113395, 0.6108687023622593, 0.0, 8.601172567860118, 6.719555725984851, 5.1287113390566965, 3.9273949826738592, 6.81529996562586, 3.3280898314249923, 2.5886302650689905, 2.2253138474322327, 3.21607869955245, 2.4279377805648954, 1.4049434619703185, 0.5399151525977609, 0.0), # 147 (8.063435698409021, 5.892750293611764, 6.9954790302092364, 7.247645404001847, 6.403093606080374, 3.105427803620781, 2.5709579890613132, 2.3707977203026074, 3.398529599390676, 1.301761324239612, 1.0202696721839972, 0.6077636866193392, 0.0, 8.561599320349941, 6.68540055281273, 5.101348360919985, 3.905283972718835, 6.797059198781352, 3.3191168084236504, 2.5709579890613132, 2.2181627168719866, 3.201546803040187, 2.4158818013339496, 1.3990958060418472, 0.535704572146524, 0.0), # 148 (8.010231316911412, 5.845240802399927, 6.965310272113703, 7.210381034704727, 6.37321144052258, 3.0950461158431497, 2.5527872965462204, 2.3640774753121114, 3.3890503786251127, 1.2941601234747035, 1.0146205461181517, 0.6045622694411826, 0.0, 8.520895795019237, 6.650184963853008, 5.073102730590758, 3.88248037042411, 6.778100757250225, 3.3097084654369557, 2.5527872965462204, 2.21074722560225, 3.18660572026129, 2.403460344901576, 1.3930620544227408, 0.5313855274909026, 0.0), # 149 (7.955681464118564, 5.796482853886981, 6.934178192793912, 7.171980495849104, 6.342490819927017, 3.0842782208357287, 2.5340954517878003, 2.3570269373906068, 3.3791958868835836, 1.2863175939992944, 1.0087868066432906, 0.601260619964897, 0.0, 8.479031698279647, 6.6138668196138655, 5.043934033216452, 3.8589527819978824, 6.758391773767167, 3.2998377123468496, 2.5340954517878003, 2.2030558720255207, 3.1712454099635083, 2.390660165283035, 1.3868356385587826, 0.5269529867169983, 0.0), # 150 (7.899749774253275, 5.746421097020041, 6.902049949478785, 7.132404049480748, 6.310911661789184, 3.0731080163620113, 2.5148597190501416, 2.3496267564537683, 3.3689496905334293, 1.2782232712161197, 1.002760370788901, 0.5978549073275894, 0.0, 8.435976736542818, 6.576403980603482, 5.013801853944504, 3.8346698136483583, 6.737899381066859, 3.2894774590352753, 2.5148597190501416, 2.1950771545442938, 3.155455830894592, 2.377468016493583, 1.3804099898957571, 0.5224019179109128, 0.0), # 151 (7.842399881538343, 5.6950001807462245, 6.868892699397251, 7.091611957645439, 6.278453883604579, 3.0615194001854955, 2.4950573625973322, 2.3418575824172674, 3.3582953559419897, 1.2698666905279126, 0.9965331555844703, 0.5943413006663675, 0.0, 8.391700616220398, 6.537754307330042, 4.982665777922351, 3.809600071583737, 6.716590711883979, 3.2786006153841742, 2.4950573625973322, 2.1867995715610684, 3.1392269418022893, 2.36387065254848, 1.3737785398794504, 0.5177272891587478, 0.0), # 152 (7.78359542019656, 5.642164754012652, 6.834673599778224, 7.049564482388949, 6.245097402868703, 3.049496270069676, 2.4746656466934596, 2.333700065196776, 3.3472164494766075, 1.2612373873374074, 0.9900970780594861, 0.5907159691183387, 0.0, 8.346173043724027, 6.497875660301725, 4.95048539029743, 3.783712162012222, 6.694432898953215, 3.2671800912754865, 2.4746656466934596, 2.17821162147834, 3.1225487014343516, 2.3498548274629836, 1.3669347199556448, 0.5129240685466048, 0.0), # 153 (7.723300024450729, 5.587859465766439, 6.7993598078506325, 7.006221885757057, 6.210822137077053, 3.0370225237780484, 2.453661835602614, 2.325134854707968, 3.3356965375046217, 1.2523248970473384, 0.9834440552434354, 0.5869750818206104, 0.0, 8.299363725465357, 6.456725900026714, 4.917220276217177, 3.7569746911420143, 6.671393075009243, 3.2551887965911552, 2.453661835602614, 2.169301802698606, 3.1054110685385266, 2.335407295252353, 1.3598719615701265, 0.5079872241605854, 0.0), # 154 (7.6614773285236355, 5.532028964954703, 6.762918480843396, 6.961544429795533, 6.175608003725131, 3.0240820590741087, 2.4320231935888805, 2.316142600866515, 3.323719186393376, 1.2431187550604388, 0.9765660041658056, 0.5831148079102902, 0.0, 8.251242367856026, 6.414262887013191, 4.882830020829028, 3.7293562651813157, 6.647438372786752, 3.242599641213121, 2.4320231935888805, 2.160058613624363, 3.0878040018625654, 2.320514809931845, 1.3525836961686795, 0.5029117240867913, 0.0), # 155 (7.598090966638081, 5.474617900524564, 6.725316775985439, 6.915492376550157, 6.139434920308432, 3.0106587737213526, 2.40972698491635, 2.3067039535880913, 3.3112679625102084, 1.2336084967794434, 0.9694548418560842, 0.5791313165244852, 0.0, 8.201778677307685, 6.370444481769337, 4.84727420928042, 3.7008254903383295, 6.622535925020417, 3.2293855350233276, 2.40972698491635, 2.150470552658109, 3.069717460154216, 2.3051641255167192, 1.3450633551970879, 0.49769253641132405, 0.0), # 156 (7.533104573016862, 5.415570921423138, 6.686521850505682, 6.868025988066703, 6.102282804322456, 2.9967365654832747, 2.3867504738491094, 2.2967995627883675, 3.2983264322224626, 1.2237836576070855, 0.9621024853437583, 0.5750207768003032, 0.0, 8.150942360231976, 6.325228544803333, 4.810512426718791, 3.671350972821256, 6.596652864444925, 3.2155193879037145, 2.3867504738491094, 2.140526118202339, 3.051141402161228, 2.2893419960222348, 1.3373043701011365, 0.4923246292202853, 0.0), # 157 (7.464680946405239, 5.353748694041236, 6.644659961585297, 6.817327186238432, 6.062454070580665, 2.9814309445183143, 2.3625533604639286, 2.285748730145572, 3.2838873638663655, 1.213341479072786, 0.9542659587564906, 0.570633297016195, 0.0, 8.096485859415345, 6.276966267178143, 4.771329793782452, 3.640024437218358, 6.567774727732731, 3.200048222203801, 2.3625533604639286, 2.129593531798796, 3.0312270352903323, 2.2724423954128112, 1.3289319923170593, 0.48670442673102154, 0.0), # 158 (7.382286766978402, 5.282809876299521, 6.58894818200249, 6.7529828690913405, 6.010127539854418, 2.95965229467081, 2.334106381692858, 2.2696723053184926, 3.2621424204073812, 1.2005702485246865, 0.9445694892698324, 0.5651135436402591, 0.0, 8.025427646920194, 6.216248980042849, 4.722847446349162, 3.601710745574059, 6.5242848408147625, 3.17754122744589, 2.334106381692858, 2.114037353336293, 3.005063769927209, 2.250994289697114, 1.3177896364004982, 0.4802554432999565, 0.0), # 159 (7.284872094904309, 5.202172001162321, 6.51826746496324, 6.673933132806645, 5.94428008756453, 2.9308657560278157, 2.301121874191892, 2.248166328969728, 3.2324750757428835, 1.1853014129657236, 0.9328765847682567, 0.5583751624073207, 0.0, 7.93642060889358, 6.142126786480525, 4.664382923841283, 3.55590423889717, 6.464950151485767, 3.147432860557619, 2.301121874191892, 2.0934755400198686, 2.972140043782265, 2.2246443776022153, 1.3036534929926482, 0.47292472737839286, 0.0), # 160 (7.17322205458596, 5.11236079574043, 6.4333724765919245, 6.5809293778175455, 5.865595416188075, 2.895420057582683, 2.263840723003438, 2.2215002221290754, 3.1952765889996724, 1.1676645482927346, 0.9192902757666179, 0.5504806224089643, 0.0, 7.830374044819097, 6.055286846498606, 4.596451378833089, 3.5029936448782033, 6.390553177999345, 3.1101003109807053, 2.263840723003438, 2.0681571839876307, 2.9327977080940375, 2.1936431259391824, 1.2866744953183848, 0.46476007234003913, 0.0), # 161 (7.048121770426357, 5.013901987144635, 6.335017883012913, 6.474723004557244, 5.7747572282021356, 2.853663928328766, 2.2225038131699044, 2.1899434058263343, 3.150938219304545, 1.147789230402558, 0.9039135927797701, 0.5414923927367745, 0.0, 7.708197254180333, 5.956416320104519, 4.519567963898851, 3.4433676912076736, 6.30187643860909, 3.065920768156868, 2.2225038131699044, 2.03833137737769, 2.8873786141010678, 2.158241001519082, 1.2670035766025827, 0.4558092715586033, 0.0), # 162 (6.9103563668284975, 4.90732130248573, 6.223958350350585, 6.35606541345895, 5.672449226083792, 2.8059460972594175, 2.1773520297337003, 2.153765301091302, 3.0998512257843016, 1.1258050351920315, 0.8868495663225682, 0.5314729424823361, 0.0, 7.570799536460879, 5.846202367305696, 4.43424783161284, 3.3774151055760937, 6.199702451568603, 3.015271421527823, 2.1773520297337003, 2.0042472123281554, 2.836224613041896, 2.118688471152984, 1.2447916700701172, 0.4461201184077937, 0.0), # 163 (6.760710968195384, 4.793144468874502, 6.100948544729314, 6.225708004955863, 5.559355112310126, 2.752615293367992, 2.128626257737233, 2.113235328953779, 3.0424068675657407, 1.1018415385579923, 0.8682012269098661, 0.5204847407372336, 0.0, 7.419090191144328, 5.725332148109569, 4.34100613454933, 3.305524615673976, 6.0848137351314815, 2.9585294605352903, 2.128626257737233, 1.9661537809771372, 2.779677556155063, 2.075236001651955, 1.2201897089458629, 0.43574040626131844, 0.0), # 164 (6.599970698930017, 4.671897213421746, 5.966743132273474, 6.084402179481189, 5.436158589358215, 2.694020245647842, 2.076567382222911, 2.068622910443561, 2.9789964037756596, 1.0760283163972786, 0.8480716050565187, 0.5085902565930517, 0.0, 7.25397851771427, 5.594492822523568, 4.2403580252825925, 3.2280849491918353, 5.957992807551319, 2.8960720746209856, 2.076567382222911, 1.9243001754627442, 2.7180792946791077, 2.0281340598270634, 1.1933486264546949, 0.42471792849288603, 0.0), # 165 (6.428920683435397, 4.54410526323825, 5.82209677910744, 5.932899337468126, 5.3035433597051425, 2.630509683092322, 2.021416288233143, 2.020197466590449, 2.9100110935408576, 1.0484949446067282, 0.8265637312773799, 0.49585195914137514, 0.0, 7.0763738156542955, 5.454371550555126, 4.1328186563869, 3.145484833820184, 5.820022187081715, 2.8282764532266285, 2.021416288233143, 1.8789354879230868, 2.6517716798525712, 1.9776331124893758, 1.1644193558214881, 0.41310047847620457, 0.0), # 166 (6.248346046114523, 4.410294345434805, 5.667764151355587, 5.771950879349882, 5.1621931258279865, 2.562432334694784, 1.9634138608103373, 1.9682284184242402, 2.835842195988133, 1.0193709990831787, 0.8037806360873045, 0.48233231747378824, 0.0, 6.887185384447996, 5.30565549221167, 4.0189031804365225, 3.058112997249536, 5.671684391976266, 2.755519785793936, 1.9634138608103373, 1.8303088104962744, 2.5810965629139933, 1.9239836264499612, 1.1335528302711175, 0.4009358495849823, 0.0), # 167 (6.059031911370395, 4.270990187122201, 5.50449991514229, 5.60230820555966, 5.012791590203827, 2.490136929448583, 1.902800984996902, 1.9129851869747332, 2.7568809702442847, 0.9887860557234682, 0.7798253500011468, 0.468093800681876, 0.0, 6.6873225235789615, 5.149031807500635, 3.8991267500057343, 2.9663581671704042, 5.513761940488569, 2.6781792617646265, 1.902800984996902, 1.7786692353204163, 2.5063957951019136, 1.867436068519887, 1.100899983028458, 0.3882718351929274, 0.0), # 168 (5.861763403606015, 4.1267185154112305, 5.333058736591924, 5.4247227165306615, 4.856022455309747, 2.413972196347072, 1.8398185458352458, 1.8547371932717271, 2.6735186754361124, 0.9568696904244344, 0.7548009035337614, 0.45319887785722274, 0.0, 6.477694532530785, 4.985187656429449, 3.774004517668807, 2.8706090712733023, 5.347037350872225, 2.596632070580418, 1.8398185458352458, 1.724265854533623, 2.4280112276548733, 1.808240905510221, 1.066611747318385, 0.3751562286737483, 0.0), # 169 (5.657325647224384, 3.978005057412684, 5.154195281828863, 5.23994581269609, 4.692569423622822, 2.334286864383604, 1.7747074283677764, 1.7937538583450197, 2.5861465706904125, 0.9237514790829147, 0.7288103272000027, 0.4377100180914133, 0.0, 6.259210710787055, 4.814810199005545, 3.6440516360000137, 2.7712544372487433, 5.172293141380825, 2.5112554016830275, 1.7747074283677764, 1.6673477602740028, 2.346284711811411, 1.7466486042320304, 1.0308390563657726, 0.36163682340115316, 0.0), # 170 (5.4465037666285, 3.82537554023735, 4.968664216977482, 5.048728894489152, 4.523116197620137, 2.2514296625515327, 1.7077085176369027, 1.7303046032244096, 2.495155915133985, 0.8895609975957474, 0.7019566515147247, 0.4216896904760322, 0.0, 6.032780357831365, 4.638586595236354, 3.509783257573624, 2.6686829927872413, 4.99031183026797, 2.4224264445141737, 1.7077085176369027, 1.6081640446796661, 2.2615580988100685, 1.6829096314963843, 0.9937328433954964, 0.3477614127488501, 0.0), # 171 (5.230082886221365, 3.6693556909960217, 4.777220208162156, 4.851823362343048, 4.348346479778769, 2.1657493198442115, 1.6390626986850327, 1.664658848939696, 2.4009379678936282, 0.8544278218597702, 0.6743429069927823, 0.4052003641026643, 0.0, 5.799312773147303, 4.457204005129307, 3.3717145349639117, 2.56328346557931, 4.8018759357872565, 2.3305223885155746, 1.6390626986850327, 1.5469637998887225, 2.1741732398893845, 1.6172744541143496, 0.9554440416324312, 0.3335777900905475, 0.0), # 172 (5.00884813040598, 3.510471236799489, 4.58061792150726, 4.649980616690982, 4.168943972575801, 2.077594565254994, 1.5690108565545748, 1.5970860165206766, 2.303883988096141, 0.8184815277718206, 0.6460721241490297, 0.3883045080628938, 0.0, 5.5597172562184625, 4.271349588691831, 3.2303606207451483, 2.4554445833154612, 4.607767976192282, 2.235920423128947, 1.5690108565545748, 1.483996118039281, 2.0844719862879004, 1.5499935388969943, 0.916123584301452, 0.31913374879995354, 0.0), # 173 (4.783584623585344, 3.349247904758541, 4.3796120231371685, 4.443952057966156, 3.9855923784883105, 1.987314127777233, 1.4977938762879377, 1.5278555269971503, 2.204385234868321, 0.7818516912287369, 0.6172473334983214, 0.37106459144830567, 0.0, 5.314903106528433, 4.081710505931362, 3.0862366674916064, 2.34555507368621, 4.408770469736642, 2.1389977377960103, 1.4977938762879377, 1.4195100912694523, 1.9927961892441552, 1.4813173526553853, 0.8759224046274336, 0.3044770822507765, 0.0), # 174 (4.555077490162455, 3.18621142198397, 4.174957179176257, 4.2344890866017755, 3.7989753999933793, 1.8952567364042834, 1.425652642927529, 1.457236801398915, 2.102832967336968, 0.7446678881273562, 0.5879715655555117, 0.35354308335048457, 0.0, 5.0657796235608075, 3.8889739168553294, 2.939857827777558, 2.234003664382068, 4.205665934673936, 2.040131521958481, 1.425652642927529, 1.3537548117173452, 1.8994876999966896, 1.411496362200592, 0.8349914358352515, 0.28965558381672457, 0.0), # 175 (4.324111854540319, 3.0218875155865668, 3.9674080557488987, 4.0223431030310435, 3.609776739568087, 1.8017711201294973, 1.3528280415157574, 1.3854992607557703, 1.9996184446288805, 0.7070596943645169, 0.558347850835455, 0.33580245286101496, 0.0, 4.813256106799174, 3.693826981471164, 2.791739254177275, 2.1211790830935504, 3.999236889257761, 1.9396989650580787, 1.3528280415157574, 1.2869793715210696, 1.8048883697840434, 1.3407810343436815, 0.7934816111497798, 0.2747170468715061, 0.0), # 176 (4.0914728411219325, 2.856801912677122, 3.7577193189794698, 3.808265507687162, 3.4186800996895155, 1.7072060079462288, 1.2795609570950313, 1.3129123260975137, 1.8951329258708567, 0.6691566858370562, 0.528479219853006, 0.3179051690714816, 0.0, 4.5582418557271245, 3.496956859786297, 2.6423960992650297, 2.0074700575111684, 3.7902658517417134, 1.838077256536519, 1.2795609570950313, 1.2194328628187348, 1.7093400498447577, 1.269421835895721, 0.751543863795894, 0.25970926478882933, 0.0), # 177 (3.8579455743102966, 2.6914803403664256, 3.5466456349923448, 3.593007701003337, 3.226369182834742, 1.6119101288478317, 1.2060922747077587, 1.239745418453944, 1.7897676701896952, 0.6310884384418126, 0.49846870312301883, 0.299913701073469, 0.0, 4.301646169828252, 3.299050711808158, 2.4923435156150937, 1.8932653153254375, 3.5795353403793904, 1.7356435858355217, 1.2060922747077587, 1.1513643777484512, 1.613184591417371, 1.1976692336677792, 0.7093291269984691, 0.24468003094240237, 0.0), # 178 (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 179 ) passenger_allighting_rate = ( (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 0 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 1 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 2 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 3 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 4 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 5 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 6 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 7 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 8 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 9 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 10 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 11 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 12 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 13 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 14 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 15 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 16 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 17 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 18 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 19 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 20 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 21 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 22 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 23 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 24 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 25 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 26 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 27 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 28 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 29 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 30 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 31 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 32 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 33 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 34 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 35 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 36 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 37 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 38 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 39 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 40 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 41 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 42 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 43 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 44 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 45 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 46 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 47 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 48 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 49 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 50 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 51 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 52 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 53 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 54 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 55 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 56 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 57 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 58 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 59 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 60 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 61 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 62 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 63 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 64 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 65 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 66 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 67 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 68 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 69 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 70 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 71 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 72 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 73 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 74 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 75 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 76 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 77 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 78 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 79 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 80 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 81 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 82 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 83 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 84 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 85 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 86 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 87 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 88 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 89 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 90 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 91 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 92 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 93 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 94 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 95 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 96 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 97 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 98 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 99 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 100 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 101 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 102 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 103 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 104 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 105 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 106 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 107 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 108 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 109 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 110 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 111 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 112 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 113 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 114 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 115 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 116 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 117 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 118 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 119 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 120 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 121 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 122 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 123 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 124 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 125 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 126 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 127 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 128 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 129 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 130 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 131 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 132 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 133 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 134 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 135 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 136 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 137 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 138 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 139 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 140 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 141 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 142 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 143 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 144 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 145 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 146 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 147 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 148 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 149 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 150 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 151 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 152 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 153 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 154 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 155 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 156 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 157 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 158 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 159 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 160 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 161 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 162 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 163 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 164 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 165 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 166 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 167 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 168 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 169 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 170 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 171 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 172 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 173 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 174 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 175 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 176 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 177 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 178 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 179 ) """ parameters for reproducibiliy. More information: https://numpy.org/doc/stable/reference/random/parallel.html """ #initial entropy entropy = 8991598675325360468762009371570610170 #index for seed sequence child child_seed_index = ( 1, # 0 35, # 1 )
""" PASSENGERS """ num_passengers = 18936 passenger_arriving = ((6, 4, 3, 7, 5, 0, 4, 5, 1, 2, 1, 1, 0, 6, 4, 2, 3, 3, 2, 0, 1, 9, 1, 0, 0, 0), (9, 6, 4, 7, 4, 6, 0, 1, 1, 1, 1, 0, 0, 4, 7, 1, 1, 7, 2, 1, 3, 2, 2, 1, 0, 0), (7, 5, 6, 8, 4, 2, 2, 3, 3, 0, 1, 0, 0, 9, 5, 4, 1, 1, 4, 4, 0, 1, 2, 0, 0, 0), (7, 1, 8, 5, 4, 2, 3, 2, 1, 1, 0, 1, 0, 6, 3, 1, 5, 1, 4, 2, 1, 7, 3, 0, 0, 0), (5, 8, 3, 4, 0, 2, 4, 3, 4, 0, 1, 1, 0, 7, 3, 11, 4, 4, 2, 3, 2, 3, 1, 2, 0, 0), (13, 3, 3, 6, 3, 3, 2, 6, 4, 0, 1, 0, 0, 6, 7, 5, 4, 4, 3, 6, 0, 1, 2, 2, 1, 0), (6, 8, 3, 6, 2, 6, 4, 3, 3, 2, 0, 0, 0, 8, 1, 3, 3, 5, 4, 7, 3, 3, 2, 2, 0, 0), (7, 12, 10, 2, 8, 3, 1, 3, 1, 1, 2, 0, 0, 5, 5, 4, 5, 2, 4, 1, 2, 5, 3, 2, 3, 0), (12, 8, 5, 12, 4, 4, 4, 5, 3, 2, 2, 1, 0, 6, 7, 3, 6, 3, 5, 4, 0, 2, 2, 3, 2, 0), (7, 13, 11, 6, 5, 3, 4, 1, 3, 4, 1, 1, 0, 7, 9, 6, 2, 10, 5, 6, 4, 3, 3, 1, 0, 0), (5, 3, 8, 9, 3, 3, 2, 8, 2, 3, 1, 2, 0, 13, 2, 5, 3, 7, 8, 5, 4, 5, 0, 0, 1, 0), (14, 10, 6, 8, 4, 1, 7, 5, 3, 0, 1, 0, 0, 6, 13, 7, 7, 6, 1, 1, 3, 4, 1, 1, 1, 0), (11, 7, 8, 9, 4, 3, 5, 5, 3, 0, 1, 0, 0, 4, 9, 8, 4, 7, 4, 4, 1, 3, 2, 4, 2, 0), (3, 5, 9, 12, 9, 4, 2, 4, 3, 2, 2, 0, 0, 8, 4, 5, 2, 10, 5, 3, 1, 5, 4, 2, 0, 0), (10, 8, 12, 6, 8, 2, 5, 3, 3, 1, 2, 0, 0, 13, 11, 7, 6, 6, 5, 4, 1, 0, 4, 0, 0, 0), (13, 15, 2, 10, 8, 2, 3, 1, 3, 1, 3, 1, 0, 12, 6, 6, 6, 8, 5, 4, 2, 1, 6, 0, 0, 0), (6, 13, 5, 11, 6, 4, 3, 4, 3, 0, 1, 1, 0, 7, 10, 7, 7, 3, 3, 2, 7, 5, 2, 1, 0, 0), (8, 14, 6, 14, 4, 1, 3, 1, 3, 2, 1, 1, 0, 5, 6, 9, 3, 12, 6, 0, 5, 5, 2, 0, 0, 0), (11, 8, 6, 6, 6, 5, 7, 2, 2, 0, 3, 2, 0, 8, 7, 7, 6, 10, 5, 10, 4, 5, 3, 5, 0, 0), (11, 9, 7, 10, 5, 4, 4, 4, 5, 1, 3, 0, 0, 11, 6, 4, 8, 7, 4, 3, 2, 5, 3, 3, 0, 0), (14, 6, 9, 11, 5, 3, 5, 2, 7, 1, 0, 2, 0, 14, 6, 4, 4, 7, 5, 3, 3, 7, 3, 0, 1, 0), (7, 12, 7, 8, 8, 0, 3, 2, 7, 1, 1, 1, 0, 11, 6, 6, 4, 11, 5, 5, 2, 3, 4, 2, 1, 0), (9, 5, 12, 12, 9, 4, 1, 4, 3, 3, 1, 0, 0, 10, 12, 3, 4, 9, 4, 6, 0, 5, 2, 1, 0, 0), (9, 9, 10, 8, 7, 4, 4, 3, 4, 2, 1, 1, 0, 9, 9, 5, 4, 10, 8, 3, 4, 3, 3, 3, 1, 0), (9, 15, 15, 15, 2, 3, 6, 3, 2, 2, 0, 1, 0, 9, 6, 5, 3, 10, 6, 3, 5, 4, 4, 0, 3, 0), (14, 8, 13, 12, 11, 5, 5, 4, 3, 3, 3, 0, 0, 5, 3, 9, 8, 5, 6, 2, 5, 2, 5, 0, 1, 0), (9, 11, 7, 9, 5, 4, 3, 7, 5, 4, 1, 1, 0, 6, 9, 9, 2, 7, 7, 3, 0, 4, 3, 4, 1, 0), (9, 12, 12, 7, 8, 3, 2, 5, 2, 2, 0, 1, 0, 11, 7, 10, 1, 4, 8, 4, 1, 1, 4, 2, 1, 0), (7, 12, 13, 8, 3, 0, 3, 3, 6, 0, 0, 1, 0, 12, 7, 6, 8, 10, 6, 2, 2, 1, 3, 1, 2, 0), (16, 9, 7, 11, 5, 5, 1, 7, 1, 1, 0, 0, 0, 10, 8, 12, 12, 6, 2, 5, 7, 2, 3, 0, 1, 0), (8, 7, 7, 6, 8, 5, 7, 4, 8, 2, 3, 1, 0, 12, 6, 5, 7, 4, 8, 3, 3, 4, 2, 1, 2, 0), (7, 10, 10, 9, 9, 4, 4, 3, 2, 2, 1, 0, 0, 4, 8, 8, 7, 6, 4, 4, 2, 6, 2, 0, 5, 0), (10, 15, 7, 10, 10, 3, 3, 5, 6, 1, 1, 1, 0, 13, 8, 9, 7, 4, 3, 2, 0, 3, 4, 2, 0, 0), (13, 8, 10, 7, 9, 4, 3, 5, 4, 3, 1, 1, 0, 10, 8, 7, 8, 10, 8, 7, 4, 7, 3, 1, 1, 0), (9, 9, 7, 9, 6, 3, 2, 5, 3, 1, 2, 2, 0, 12, 8, 6, 5, 5, 3, 3, 3, 5, 5, 3, 0, 0), (9, 8, 8, 12, 12, 6, 5, 1, 2, 0, 3, 1, 0, 10, 13, 14, 4, 10, 5, 2, 3, 3, 5, 2, 0, 0), (7, 13, 7, 11, 7, 2, 2, 3, 8, 0, 3, 2, 0, 10, 5, 5, 6, 10, 9, 2, 3, 1, 1, 3, 3, 0), (13, 8, 11, 9, 13, 2, 4, 1, 5, 0, 1, 0, 0, 6, 6, 4, 5, 9, 8, 4, 5, 4, 2, 0, 0, 0), (9, 6, 3, 9, 8, 4, 3, 5, 4, 3, 4, 0, 0, 17, 7, 4, 7, 7, 4, 6, 4, 3, 4, 5, 0, 0), (8, 10, 8, 15, 11, 1, 3, 2, 3, 2, 2, 2, 0, 12, 12, 4, 8, 7, 3, 5, 1, 6, 1, 1, 1, 0), (5, 8, 7, 7, 6, 2, 3, 1, 3, 0, 1, 0, 0, 7, 4, 10, 4, 3, 6, 7, 2, 6, 2, 2, 1, 0), (15, 8, 9, 6, 3, 2, 3, 4, 3, 2, 2, 0, 0, 11, 8, 10, 11, 12, 7, 1, 1, 4, 2, 1, 1, 0), (10, 5, 8, 7, 9, 1, 9, 3, 7, 0, 1, 1, 0, 13, 10, 3, 6, 10, 10, 6, 3, 5, 6, 3, 1, 0), (6, 10, 4, 4, 10, 2, 9, 4, 5, 2, 4, 0, 0, 11, 8, 4, 6, 8, 6, 2, 2, 4, 5, 3, 1, 0), (11, 5, 3, 5, 14, 5, 5, 7, 2, 0, 3, 2, 0, 9, 10, 5, 5, 7, 4, 6, 3, 1, 2, 1, 0, 0), (5, 6, 11, 9, 9, 4, 2, 8, 5, 1, 4, 1, 0, 8, 8, 6, 10, 10, 6, 6, 3, 5, 4, 0, 0, 0), (14, 5, 9, 11, 12, 4, 2, 4, 3, 2, 0, 0, 0, 13, 9, 12, 3, 4, 4, 8, 1, 5, 3, 1, 0, 0), (11, 6, 8, 13, 7, 5, 7, 3, 5, 2, 2, 1, 0, 6, 6, 6, 9, 5, 6, 3, 3, 2, 3, 2, 3, 0), (11, 5, 8, 6, 14, 3, 4, 7, 1, 2, 2, 0, 0, 7, 10, 9, 1, 7, 5, 3, 1, 3, 4, 1, 1, 0), (9, 7, 8, 8, 3, 1, 4, 4, 2, 6, 2, 1, 0, 9, 2, 11, 6, 3, 4, 2, 2, 3, 3, 5, 0, 0), (10, 10, 10, 5, 5, 4, 3, 7, 3, 3, 1, 1, 0, 9, 12, 4, 6, 7, 5, 2, 1, 1, 4, 0, 1, 0), (9, 11, 7, 9, 6, 4, 4, 5, 1, 1, 1, 1, 0, 21, 5, 6, 3, 8, 6, 4, 1, 3, 1, 0, 1, 0), (15, 8, 5, 5, 9, 2, 3, 3, 1, 1, 0, 1, 0, 7, 11, 10, 6, 8, 5, 3, 3, 1, 4, 0, 0, 0), (15, 13, 7, 5, 10, 5, 7, 5, 3, 1, 1, 0, 0, 9, 7, 10, 6, 12, 6, 5, 4, 1, 3, 1, 0, 0), (11, 12, 16, 6, 8, 7, 4, 1, 3, 2, 2, 0, 0, 7, 8, 4, 3, 9, 3, 3, 2, 5, 3, 2, 0, 0), (10, 5, 10, 8, 9, 4, 7, 2, 6, 3, 4, 0, 0, 9, 11, 6, 7, 6, 5, 1, 1, 5, 6, 2, 0, 0), (14, 10, 8, 8, 2, 6, 4, 1, 3, 2, 1, 0, 0, 2, 6, 3, 6, 12, 5, 4, 0, 2, 3, 2, 1, 0), (11, 9, 7, 10, 11, 7, 6, 4, 5, 2, 1, 2, 0, 6, 9, 7, 2, 14, 7, 4, 1, 1, 1, 0, 1, 0), (10, 14, 7, 13, 7, 4, 5, 3, 3, 1, 0, 1, 0, 7, 5, 5, 4, 4, 4, 2, 3, 3, 0, 0, 1, 0), (9, 6, 4, 5, 13, 1, 3, 5, 4, 1, 1, 1, 0, 11, 8, 8, 7, 11, 2, 3, 4, 6, 2, 2, 2, 0), (6, 5, 9, 16, 3, 6, 2, 2, 2, 1, 2, 0, 0, 3, 4, 10, 6, 9, 6, 4, 4, 7, 1, 1, 0, 0), (6, 4, 5, 9, 5, 0, 2, 4, 4, 0, 1, 0, 0, 11, 9, 2, 8, 5, 4, 5, 1, 7, 4, 1, 1, 0), (17, 6, 7, 10, 7, 1, 6, 4, 1, 1, 0, 0, 0, 11, 7, 8, 3, 10, 2, 4, 2, 5, 7, 1, 1, 0), (7, 7, 4, 13, 10, 3, 1, 1, 3, 1, 0, 1, 0, 10, 5, 9, 3, 12, 5, 3, 3, 7, 4, 4, 0, 0), (13, 7, 8, 10, 4, 1, 4, 5, 3, 1, 1, 0, 0, 8, 7, 6, 5, 9, 4, 8, 1, 2, 3, 2, 1, 0), (12, 7, 4, 8, 11, 6, 3, 2, 2, 3, 3, 0, 0, 18, 13, 9, 5, 6, 3, 3, 2, 3, 5, 3, 1, 0), (14, 9, 6, 9, 9, 2, 3, 5, 3, 1, 1, 0, 0, 8, 8, 5, 8, 6, 2, 2, 4, 3, 5, 1, 1, 0), (10, 10, 7, 11, 7, 5, 1, 6, 1, 3, 2, 1, 0, 10, 5, 9, 1, 7, 0, 8, 2, 2, 5, 1, 0, 0), (5, 4, 7, 14, 7, 3, 5, 3, 2, 3, 1, 1, 0, 6, 5, 8, 4, 8, 4, 7, 2, 5, 6, 1, 0, 0), (10, 12, 6, 15, 10, 2, 5, 1, 4, 3, 1, 0, 0, 9, 7, 7, 9, 9, 4, 4, 2, 7, 1, 2, 0, 0), (14, 12, 6, 8, 10, 4, 3, 2, 3, 2, 0, 0, 0, 4, 13, 4, 8, 9, 4, 5, 4, 4, 1, 1, 0, 0), (9, 9, 8, 10, 10, 4, 2, 4, 4, 3, 1, 1, 0, 12, 13, 6, 7, 12, 8, 4, 3, 3, 2, 1, 1, 0), (8, 10, 12, 11, 3, 2, 5, 6, 2, 2, 0, 1, 0, 11, 5, 2, 2, 6, 10, 4, 3, 3, 3, 1, 0, 0), (8, 9, 6, 6, 8, 7, 4, 6, 4, 6, 1, 2, 0, 8, 7, 4, 5, 8, 2, 4, 1, 5, 2, 1, 0, 0), (11, 8, 8, 8, 9, 3, 2, 3, 6, 4, 4, 0, 0, 15, 13, 10, 5, 8, 0, 4, 2, 1, 1, 1, 0, 0), (10, 7, 6, 9, 11, 3, 2, 3, 2, 3, 3, 2, 0, 10, 11, 7, 3, 9, 6, 2, 4, 7, 5, 5, 1, 0), (9, 9, 7, 9, 6, 3, 4, 4, 2, 3, 2, 1, 0, 7, 2, 6, 5, 3, 1, 5, 2, 3, 2, 0, 1, 0), (12, 9, 11, 11, 5, 2, 3, 1, 2, 2, 0, 1, 0, 8, 5, 10, 7, 9, 2, 1, 3, 4, 2, 2, 2, 0), (9, 10, 13, 8, 6, 3, 6, 4, 4, 1, 2, 0, 0, 14, 9, 7, 9, 9, 3, 1, 0, 3, 4, 1, 1, 0), (11, 8, 7, 10, 5, 5, 2, 1, 5, 4, 1, 0, 0, 8, 9, 8, 6, 8, 3, 4, 3, 5, 4, 3, 0, 0), (7, 6, 5, 8, 6, 2, 4, 1, 1, 2, 2, 0, 0, 11, 12, 4, 5, 7, 6, 2, 2, 0, 4, 3, 1, 0), (17, 9, 11, 12, 8, 1, 2, 2, 5, 0, 1, 0, 0, 6, 9, 6, 3, 12, 5, 2, 1, 9, 4, 3, 0, 0), (15, 10, 5, 4, 8, 3, 1, 1, 6, 2, 1, 0, 0, 15, 8, 5, 5, 8, 4, 5, 4, 4, 7, 5, 1, 0), (9, 9, 6, 15, 6, 6, 1, 5, 3, 1, 4, 1, 0, 10, 8, 8, 1, 3, 0, 0, 3, 4, 1, 4, 1, 0), (7, 8, 12, 7, 7, 4, 2, 2, 6, 0, 3, 0, 0, 8, 8, 5, 6, 10, 0, 4, 1, 3, 2, 3, 2, 0), (11, 6, 8, 8, 4, 4, 1, 3, 6, 1, 1, 3, 0, 5, 13, 6, 7, 8, 5, 2, 2, 3, 3, 2, 3, 0), (11, 9, 9, 8, 6, 4, 3, 4, 3, 4, 3, 0, 0, 17, 13, 6, 2, 5, 4, 3, 1, 1, 3, 3, 1, 0), (14, 5, 3, 8, 10, 4, 3, 2, 2, 4, 0, 0, 0, 10, 9, 5, 11, 10, 3, 3, 5, 4, 3, 2, 2, 0), (8, 9, 7, 15, 4, 4, 5, 1, 3, 2, 3, 1, 0, 10, 3, 5, 6, 6, 3, 3, 2, 7, 6, 1, 0, 0), (6, 9, 8, 8, 7, 4, 4, 2, 4, 2, 1, 2, 0, 12, 5, 5, 7, 3, 10, 2, 3, 5, 4, 3, 1, 0), (11, 9, 11, 9, 11, 6, 1, 1, 5, 1, 2, 1, 0, 5, 8, 6, 8, 5, 5, 4, 2, 3, 1, 4, 1, 0), (13, 14, 6, 7, 5, 5, 3, 3, 7, 1, 0, 1, 0, 16, 9, 3, 8, 7, 4, 4, 1, 5, 1, 4, 0, 0), (12, 5, 8, 7, 3, 2, 5, 0, 0, 2, 1, 0, 0, 8, 5, 3, 2, 10, 8, 5, 3, 5, 1, 2, 1, 0), (7, 6, 4, 4, 4, 1, 3, 3, 5, 1, 0, 2, 0, 11, 14, 4, 6, 12, 0, 4, 2, 4, 6, 1, 0, 0), (9, 5, 10, 15, 12, 3, 3, 5, 4, 1, 1, 2, 0, 13, 9, 5, 6, 8, 5, 4, 0, 6, 3, 2, 0, 0), (7, 10, 5, 10, 12, 7, 3, 1, 3, 2, 0, 1, 0, 9, 6, 4, 4, 10, 4, 0, 2, 7, 3, 1, 0, 0), (12, 6, 11, 11, 5, 4, 3, 1, 3, 1, 1, 1, 0, 13, 8, 2, 7, 9, 2, 5, 3, 3, 4, 1, 0, 0), (10, 5, 5, 9, 10, 5, 1, 3, 3, 1, 1, 0, 0, 7, 10, 5, 2, 12, 6, 6, 4, 7, 3, 0, 2, 0), (6, 13, 10, 9, 5, 2, 2, 3, 4, 0, 1, 1, 0, 6, 13, 5, 1, 12, 3, 3, 2, 1, 0, 1, 0, 0), (7, 8, 9, 3, 7, 5, 6, 2, 3, 1, 1, 0, 0, 10, 5, 7, 11, 5, 4, 5, 0, 6, 2, 2, 0, 0), (10, 5, 7, 6, 11, 2, 5, 2, 4, 0, 0, 0, 0, 9, 5, 4, 5, 7, 3, 6, 2, 1, 1, 2, 1, 0), (9, 9, 7, 10, 8, 3, 2, 1, 1, 1, 3, 0, 0, 14, 9, 6, 9, 8, 3, 2, 0, 4, 6, 2, 1, 0), (13, 7, 9, 7, 4, 6, 2, 4, 6, 0, 1, 1, 0, 14, 6, 8, 7, 7, 1, 2, 1, 1, 2, 0, 0, 0), (9, 10, 15, 4, 6, 1, 4, 1, 6, 7, 1, 0, 0, 18, 9, 8, 8, 7, 0, 3, 3, 4, 5, 1, 0, 0), (10, 5, 8, 8, 4, 4, 1, 1, 4, 2, 3, 1, 0, 9, 8, 4, 8, 8, 2, 0, 1, 4, 5, 1, 0, 0), (9, 12, 8, 14, 8, 4, 4, 1, 1, 1, 1, 1, 0, 10, 8, 7, 2, 9, 6, 1, 1, 5, 3, 1, 2, 0), (10, 6, 7, 6, 3, 1, 4, 0, 2, 1, 3, 1, 0, 5, 2, 12, 5, 7, 1, 3, 0, 6, 1, 2, 0, 0), (6, 6, 5, 12, 8, 0, 3, 1, 5, 1, 0, 1, 0, 5, 11, 2, 2, 10, 8, 3, 0, 1, 0, 0, 1, 0), (9, 10, 10, 10, 5, 4, 2, 2, 5, 0, 3, 0, 0, 14, 6, 8, 3, 4, 4, 2, 3, 0, 4, 1, 0, 0), (5, 6, 8, 4, 4, 4, 3, 1, 0, 1, 2, 0, 0, 16, 13, 8, 3, 10, 4, 4, 5, 3, 1, 2, 0, 0), (8, 10, 10, 7, 8, 0, 4, 1, 5, 0, 0, 2, 0, 11, 8, 4, 5, 6, 4, 3, 3, 1, 2, 2, 0, 0), (11, 4, 6, 8, 13, 2, 5, 1, 3, 1, 1, 1, 0, 8, 5, 6, 3, 5, 8, 2, 2, 4, 2, 1, 2, 0), (6, 6, 8, 5, 7, 6, 0, 3, 1, 0, 3, 0, 0, 10, 5, 6, 1, 7, 4, 4, 1, 5, 3, 1, 0, 0), (10, 8, 8, 9, 8, 8, 1, 2, 2, 2, 1, 0, 0, 10, 4, 4, 6, 12, 8, 1, 1, 4, 2, 0, 1, 0), (7, 7, 6, 7, 7, 7, 5, 7, 4, 0, 3, 0, 0, 10, 4, 3, 2, 10, 2, 5, 2, 7, 2, 0, 1, 0), (6, 10, 11, 10, 6, 5, 4, 3, 4, 3, 0, 0, 0, 10, 8, 2, 4, 6, 3, 2, 3, 10, 0, 2, 0, 0), (17, 3, 6, 9, 6, 3, 2, 1, 3, 1, 1, 1, 0, 10, 3, 5, 10, 7, 2, 10, 3, 1, 4, 1, 2, 0), (12, 5, 6, 9, 2, 4, 4, 2, 3, 0, 0, 0, 0, 13, 11, 2, 4, 3, 0, 1, 2, 3, 3, 0, 0, 0), (11, 8, 8, 4, 12, 2, 1, 1, 2, 1, 1, 0, 0, 13, 4, 7, 3, 3, 7, 3, 2, 3, 2, 0, 0, 0), (10, 10, 8, 11, 8, 2, 2, 4, 6, 3, 1, 0, 0, 9, 8, 5, 4, 7, 3, 5, 2, 3, 1, 1, 1, 0), (8, 7, 10, 5, 7, 1, 3, 2, 1, 0, 0, 1, 0, 9, 8, 5, 2, 7, 5, 1, 2, 2, 0, 1, 0, 0), (5, 16, 9, 9, 3, 3, 2, 6, 4, 1, 1, 0, 0, 9, 3, 7, 6, 7, 4, 7, 2, 3, 7, 0, 0, 0), (10, 8, 6, 6, 8, 5, 2, 6, 4, 4, 3, 0, 0, 9, 9, 7, 5, 9, 4, 3, 2, 3, 5, 1, 0, 0), (6, 12, 6, 14, 3, 5, 4, 1, 2, 3, 1, 1, 0, 15, 7, 5, 3, 7, 3, 3, 5, 5, 2, 0, 0, 0), (7, 7, 8, 10, 7, 3, 5, 1, 3, 2, 2, 1, 0, 12, 5, 9, 4, 5, 2, 5, 0, 5, 1, 1, 0, 0), (13, 9, 5, 5, 10, 7, 5, 1, 3, 1, 0, 2, 0, 8, 2, 4, 2, 5, 3, 4, 3, 6, 3, 3, 2, 0), (10, 4, 4, 9, 10, 3, 4, 2, 3, 1, 1, 0, 0, 12, 13, 4, 1, 7, 2, 5, 3, 7, 4, 2, 0, 0), (10, 12, 8, 7, 6, 2, 6, 4, 3, 1, 0, 0, 0, 11, 8, 3, 4, 7, 0, 2, 4, 4, 2, 3, 0, 0), (6, 7, 3, 7, 7, 1, 3, 3, 6, 0, 0, 0, 0, 11, 2, 12, 4, 5, 2, 1, 1, 2, 7, 1, 0, 0), (8, 12, 9, 9, 4, 4, 2, 1, 5, 3, 3, 2, 0, 11, 4, 5, 4, 8, 4, 5, 0, 4, 2, 1, 0, 0), (6, 4, 2, 11, 3, 6, 0, 2, 2, 1, 1, 1, 0, 7, 6, 4, 3, 9, 8, 3, 1, 2, 5, 0, 0, 0), (9, 5, 11, 7, 10, 6, 4, 3, 2, 0, 1, 0, 0, 10, 2, 7, 4, 4, 5, 5, 2, 1, 5, 0, 0, 0), (12, 7, 10, 6, 9, 4, 2, 6, 7, 0, 2, 1, 0, 2, 7, 7, 1, 9, 3, 3, 3, 1, 1, 1, 1, 0), (4, 14, 8, 5, 7, 7, 4, 0, 3, 0, 1, 0, 0, 11, 11, 5, 5, 9, 3, 2, 1, 5, 3, 1, 2, 0), (14, 7, 7, 10, 5, 2, 5, 5, 2, 0, 0, 0, 0, 14, 7, 4, 4, 3, 3, 1, 0, 4, 2, 1, 1, 0), (5, 3, 4, 8, 8, 4, 1, 4, 9, 1, 1, 0, 0, 8, 6, 10, 2, 8, 4, 3, 4, 2, 3, 0, 0, 0), (4, 7, 10, 10, 6, 1, 2, 6, 7, 1, 1, 2, 0, 6, 8, 4, 8, 5, 6, 4, 4, 2, 2, 1, 1, 0), (2, 12, 9, 3, 7, 4, 2, 1, 3, 1, 2, 1, 0, 7, 8, 3, 6, 9, 2, 4, 0, 2, 1, 2, 0, 0), (8, 9, 5, 9, 3, 4, 4, 1, 4, 1, 2, 1, 0, 9, 6, 5, 3, 8, 5, 4, 2, 2, 4, 1, 0, 0), (7, 9, 9, 12, 6, 4, 1, 2, 2, 3, 0, 0, 0, 7, 10, 4, 4, 10, 1, 3, 4, 5, 2, 6, 1, 0), (10, 7, 6, 3, 4, 2, 7, 5, 2, 1, 0, 0, 0, 13, 6, 6, 5, 14, 4, 5, 1, 4, 2, 2, 0, 0), (9, 9, 5, 5, 8, 2, 2, 6, 6, 2, 1, 0, 0, 9, 7, 3, 1, 11, 2, 1, 3, 4, 4, 2, 0, 0), (7, 7, 10, 8, 7, 10, 3, 4, 2, 1, 0, 2, 0, 7, 5, 0, 5, 8, 6, 2, 7, 3, 4, 0, 2, 0), (11, 5, 7, 9, 9, 5, 4, 1, 0, 0, 3, 2, 0, 10, 6, 7, 4, 11, 3, 3, 3, 4, 0, 0, 0, 0), (9, 6, 12, 8, 10, 2, 5, 5, 3, 0, 1, 0, 0, 7, 5, 7, 5, 6, 2, 3, 1, 3, 2, 0, 0, 0), (9, 3, 4, 9, 8, 3, 3, 0, 3, 0, 2, 0, 0, 14, 4, 5, 2, 4, 3, 2, 1, 3, 2, 1, 1, 0), (10, 11, 8, 9, 9, 3, 3, 1, 3, 0, 4, 0, 0, 6, 11, 3, 5, 10, 5, 1, 2, 2, 5, 1, 0, 0), (4, 8, 6, 6, 4, 8, 3, 2, 2, 2, 0, 0, 0, 6, 9, 2, 8, 11, 4, 0, 2, 2, 7, 2, 2, 0), (10, 4, 7, 5, 4, 4, 4, 6, 4, 4, 2, 1, 0, 8, 2, 3, 1, 6, 1, 5, 2, 2, 3, 1, 1, 0), (10, 4, 7, 12, 7, 5, 5, 3, 1, 0, 0, 1, 0, 12, 1, 2, 8, 6, 4, 2, 0, 3, 0, 1, 2, 0), (12, 14, 10, 8, 7, 5, 3, 2, 3, 0, 0, 0, 0, 6, 3, 3, 4, 8, 1, 0, 2, 5, 2, 3, 0, 0), (10, 4, 11, 10, 6, 4, 2, 3, 3, 1, 0, 1, 0, 11, 6, 8, 4, 6, 5, 2, 2, 4, 1, 1, 0, 0), (9, 4, 7, 11, 5, 0, 1, 2, 3, 0, 1, 1, 0, 7, 9, 7, 3, 7, 6, 0, 2, 4, 1, 2, 0, 0), (7, 1, 3, 5, 7, 6, 2, 0, 0, 1, 0, 1, 0, 14, 2, 4, 2, 7, 5, 3, 0, 3, 2, 3, 0, 0), (6, 11, 3, 4, 4, 1, 3, 0, 1, 3, 0, 1, 0, 6, 8, 5, 2, 5, 3, 1, 2, 2, 4, 2, 1, 0), (6, 3, 7, 10, 8, 1, 3, 3, 2, 1, 1, 0, 0, 4, 5, 3, 0, 13, 5, 2, 3, 3, 0, 2, 0, 0), (6, 7, 5, 3, 1, 4, 4, 1, 1, 0, 1, 1, 0, 5, 1, 6, 2, 8, 4, 1, 2, 1, 3, 2, 2, 0), (13, 4, 10, 8, 7, 5, 2, 2, 2, 2, 1, 0, 0, 12, 6, 5, 3, 7, 4, 2, 5, 3, 2, 0, 1, 0), (3, 7, 7, 5, 4, 2, 6, 2, 2, 2, 1, 0, 0, 7, 7, 7, 1, 8, 3, 1, 4, 3, 4, 0, 1, 0), (12, 6, 3, 6, 8, 1, 3, 3, 2, 2, 1, 0, 0, 11, 2, 4, 2, 4, 4, 1, 1, 3, 4, 0, 0, 0), (8, 3, 7, 3, 5, 4, 0, 4, 2, 2, 0, 0, 0, 10, 3, 1, 3, 8, 4, 3, 2, 1, 2, 5, 0, 0), (7, 9, 5, 3, 7, 1, 3, 2, 3, 0, 2, 1, 0, 5, 9, 2, 3, 8, 3, 3, 3, 5, 4, 2, 1, 0), (8, 7, 4, 5, 8, 4, 2, 1, 4, 2, 0, 1, 0, 4, 8, 1, 6, 4, 2, 2, 1, 4, 2, 2, 2, 0), (8, 7, 10, 4, 5, 3, 3, 3, 2, 2, 1, 0, 0, 9, 6, 3, 3, 10, 5, 3, 6, 3, 2, 0, 0, 0), (4, 2, 3, 7, 6, 2, 4, 3, 3, 0, 1, 0, 0, 3, 4, 5, 4, 6, 3, 3, 0, 5, 4, 3, 0, 0), (7, 6, 4, 4, 4, 3, 4, 4, 3, 3, 0, 0, 0, 5, 8, 6, 1, 5, 2, 2, 1, 2, 2, 1, 0, 0), (8, 7, 10, 5, 4, 0, 4, 1, 6, 2, 0, 1, 0, 4, 3, 3, 2, 9, 5, 4, 0, 1, 3, 2, 0, 0), (7, 7, 7, 14, 6, 1, 2, 2, 3, 2, 0, 0, 0, 5, 8, 6, 1, 4, 4, 0, 1, 0, 1, 2, 0, 0), (5, 4, 4, 7, 4, 3, 0, 4, 1, 0, 2, 0, 0, 11, 1, 5, 4, 4, 1, 4, 3, 3, 1, 0, 0, 0), (5, 7, 10, 2, 8, 2, 3, 0, 4, 1, 1, 1, 0, 5, 2, 2, 3, 5, 3, 1, 1, 1, 3, 0, 0, 0), (9, 0, 4, 6, 4, 3, 2, 0, 1, 0, 1, 1, 0, 10, 2, 2, 2, 3, 1, 1, 0, 3, 1, 3, 0, 0), (9, 4, 4, 3, 2, 3, 1, 2, 3, 0, 1, 2, 0, 7, 4, 7, 2, 6, 4, 3, 1, 2, 1, 2, 0, 0), (5, 3, 6, 6, 3, 2, 2, 4, 0, 0, 0, 3, 0, 4, 6, 5, 4, 3, 3, 0, 0, 2, 1, 0, 0, 0), (5, 1, 3, 4, 4, 3, 3, 2, 3, 0, 0, 0, 0, 5, 4, 0, 2, 8, 5, 0, 1, 1, 0, 1, 1, 0), (4, 3, 3, 4, 5, 3, 1, 1, 1, 1, 0, 0, 0, 4, 6, 1, 3, 4, 2, 1, 0, 1, 2, 1, 1, 0), (2, 3, 4, 4, 5, 5, 1, 1, 1, 0, 2, 0, 0, 6, 3, 1, 9, 0, 1, 1, 0, 0, 3, 1, 0, 0), (4, 2, 4, 6, 2, 3, 1, 1, 4, 2, 1, 0, 0, 7, 3, 3, 0, 5, 3, 2, 0, 1, 2, 1, 1, 0), (7, 3, 2, 6, 6, 4, 1, 3, 0, 1, 1, 0, 0, 10, 5, 7, 2, 4, 2, 1, 0, 3, 3, 0, 1, 0), (3, 6, 5, 6, 4, 2, 1, 2, 0, 0, 0, 0, 0, 4, 3, 0, 1, 5, 2, 0, 0, 1, 1, 0, 0, 0), (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)) station_arriving_intensity = ((5.020865578371768, 5.525288559693166, 5.211283229612507, 6.214667773863432, 5.554685607609612, 3.1386549320373387, 4.146035615373915, 4.653176172979423, 6.090099062168007, 3.9580150155223697, 4.205265163885603, 4.897915078306173, 5.083880212578363), (5.354327152019974, 5.890060694144759, 5.555346591330152, 6.625144253276616, 5.922490337474237, 3.3459835840425556, 4.419468941263694, 4.959513722905708, 6.492245326332909, 4.21898069227715, 4.483096135956131, 5.221216660814354, 5.419791647439855), (5.686723008979731, 6.253385170890979, 5.8980422855474135, 7.033987704664794, 6.288962973749744, 3.5524851145124448, 4.691818507960704, 5.264625247904419, 6.892786806877549, 4.478913775020546, 4.759823148776313, 5.543232652053055, 5.75436482820969), (6.016757793146562, 6.613820501936447, 6.238010869319854, 7.439576407532074, 6.652661676001902, 3.757340622585113, 4.962003641647955, 5.567301157494507, 7.290135160921093, 4.736782698426181, 5.0343484118273825, 5.862685684930461, 6.086272806254225), (6.343136148415981, 6.9699251992857745, 6.573892899703036, 7.840288641382569, 7.012144603796492, 3.9597312073986677, 5.2289436685084585, 5.866331861194915, 7.682702045582707, 4.991555897167679, 5.305574134590575, 6.178298392354764, 6.414188632939817), (6.66456271868351, 7.320257774943588, 6.9043289337525175, 8.234502685720393, 7.36596991669928, 4.158837968091214, 5.491557914725224, 6.160507768524592, 8.068899117981559, 5.242201805918663, 5.572402526547132, 6.488793407234148, 6.736785359632827), (6.979742147844666, 7.663376740914501, 7.227959528523866, 8.620596820049652, 7.712695774276043, 4.353842003800864, 5.7487657064812625, 6.4486192890024885, 8.447138035236815, 5.487688859352758, 5.833735797178282, 6.792893362476808, 7.052736037699606), (7.2873790797949685, 7.997840609203132, 7.543425241072635, 8.996949323874462, 8.050880336092554, 4.543924413665721, 5.999486369959585, 6.729456832147552, 8.815830454467644, 5.726985492143586, 6.088476155965268, 7.089320890990929, 7.360713718506519), (7.586178158429934, 8.322207891814099, 7.849366628454396, 9.361938476698928, 8.379081761714586, 4.7282662968238895, 6.2426392313431975, 7.001810807478725, 9.173388032793206, 5.959060138964774, 6.335525812389321, 7.376798625684702, 7.659391453419917), (7.874844027645085, 8.635037100752022, 8.144424247724704, 9.713942558027169, 8.69585821070791, 4.906048752413484, 6.47714361681512, 7.264471624514963, 9.518222427332674, 6.182881234489941, 6.573786975931678, 7.654049199466313, 7.947442293806162), (8.152081331335932, 8.934886748021516, 8.427238655939124, 10.051339847363288, 8.9997678426383, 5.076452879572607, 6.701918852558355, 7.516229692775211, 9.848745295205214, 6.397417213392714, 6.802161856073574, 7.919795245243952, 8.22353929103161), (8.416594713398005, 9.220315345627206, 8.696450410153215, 10.372508624211397, 9.289368817071534, 5.238659777439368, 6.915884264755916, 7.7558754217784145, 10.163368293529993, 6.601636510346719, 7.019552662296249, 8.17275939592581, 8.486355496462611), (8.667088817726812, 9.489881405573698, 8.95070006742254, 10.675827168075612, 9.563219293573377, 5.391850545151869, 7.1179591795908115, 7.982199221043521, 10.460503079426179, 6.794507560025572, 7.224861604080934, 8.411664284420068, 8.734563961465534), (8.902268288217876, 9.74214343986562, 9.188628184802662, 10.959673758460044, 9.819877431709601, 5.5352062818482235, 7.307062923246056, 8.193991500089481, 10.738561310012932, 6.974998797102904, 7.416990890908869, 8.63523254363492, 8.966837737406735), (9.120837768766716, 9.975659960507588, 9.408875319349146, 11.222426674868792, 10.05790139104599, 5.667908086666534, 7.482114821904661, 8.390042668435246, 10.995954642409421, 7.142078656252334, 7.594842732261284, 8.84218680647856, 9.181849875652563), (9.321501903268855, 10.188989479504217, 9.610082028117542, 11.462464196805985, 10.275849331148308, 5.789137058744912, 7.642034201749626, 8.569143135599756, 11.23109473373482, 7.29471557214749, 7.757319337619419, 9.031249705859171, 9.37827342756938), (9.5029653356198, 10.380690508860132, 9.790888868163425, 11.678164603775716, 10.472279411582333, 5.898074297221459, 7.785740388963976, 8.73008331110196, 11.442393241108286, 7.431877979461996, 7.9033229164645125, 9.20114387468494, 9.554781444523545), (9.663932709715075, 10.549321560579946, 9.949936396542352, 11.867906175282112, 10.645749791913838, 5.993900901234285, 7.9121527097307105, 8.871653604460818, 11.628261821648984, 7.552534312869467, 8.031755678277799, 9.350591945864055, 9.710046977881415), (9.803108669450204, 10.693441146668274, 10.08586517030988, 12.030067190829278, 10.794818631708589, 6.075797969921503, 8.020190490232851, 8.99264442519526, 11.787112132476096, 7.6556530070435365, 8.141519832540508, 9.478316552304715, 9.842743079009345), (9.919197858720699, 10.811607779129744, 10.197315746521578, 12.163025929921314, 10.918044090532366, 6.142946602421208, 8.108773056653394, 9.091846182824245, 11.917355830708779, 7.740202496657828, 8.231517588733878, 9.583040326915096, 9.951542799273696), (10.010904921422082, 10.902379969968962, 10.282928682233003, 12.265160672062354, 11.013984327950944, 6.194527897871518, 8.176819735175362, 9.168049286866717, 12.017404573466198, 7.805151216385958, 8.30065115633915, 9.66348590260339, 10.035119190040824), (10.076934501449866, 10.964316231190558, 10.341344534499719, 12.334849696756486, 11.081197503530088, 6.229722955410535, 8.223249851981759, 9.220044146841623, 12.085670017867521, 7.849467600901555, 8.34782274483756, 9.718375912277793, 10.092145302677078), (10.115991242699579, 10.995975074799144, 10.371203860377285, 12.370471283507836, 11.118241776835575, 6.247712874176367, 8.2469827332556, 9.246621172267915, 12.120563821031915, 7.872120084878242, 8.37193456371034, 9.74643298884649, 10.121294188548827), (10.13039336334264, 10.999723593964335, 10.374923182441702, 12.374930812757203, 11.127732056032597, 6.25, 8.249804002259339, 9.249493827160494, 12.124926234567901, 7.874792272519433, 8.37495803716174, 9.749897576588934, 10.125), (10.141012413034153, 10.997537037037038, 10.374314814814815, 12.374381944444446, 11.133107613614852, 6.25, 8.248253812636166, 9.2455, 12.124341666666666, 7.87315061728395, 8.37462457912458, 9.749086419753086, 10.125), (10.15140723021158, 10.993227023319616, 10.373113854595337, 12.373296039094651, 11.138364945594503, 6.25, 8.24519890260631, 9.237654320987655, 12.123186728395062, 7.869918838591678, 8.373963399426362, 9.747485139460448, 10.125), (10.161577019048034, 10.986859396433472, 10.371336762688616, 12.37168544238683, 11.143503868421105, 6.25, 8.240686718308721, 9.226104938271606, 12.1214762345679, 7.865150708733425, 8.372980483850855, 9.745115683584821, 10.125), (10.171520983716636, 10.978499999999999, 10.369, 12.369562499999999, 11.148524198544214, 6.25, 8.234764705882354, 9.211, 12.119225, 7.858899999999999, 8.371681818181818, 9.742, 10.125), (10.181238328390501, 10.968214677640603, 10.366120027434842, 12.366939557613168, 11.153425752413401, 6.25, 8.22748031146615, 9.192487654320988, 12.116447839506172, 7.851220484682213, 8.370073388203018, 9.73816003657979, 10.125), (10.19072825724275, 10.95606927297668, 10.362713305898492, 12.36382896090535, 11.15820834647822, 6.25, 8.218880981199066, 9.170716049382715, 12.113159567901235, 7.842165935070874, 8.368161179698216, 9.733617741197987, 10.125), (10.199989974446497, 10.94212962962963, 10.358796296296296, 12.360243055555555, 11.162871797188236, 6.25, 8.209014161220043, 9.145833333333332, 12.109375, 7.83179012345679, 8.365951178451178, 9.728395061728394, 10.125), (10.209022684174858, 10.926461591220852, 10.354385459533608, 12.356194187242798, 11.167415920993008, 6.25, 8.19792729766804, 9.117987654320988, 12.105108950617284, 7.820146822130773, 8.363449370245666, 9.722513946044812, 10.125), (10.217825590600954, 10.909131001371742, 10.349497256515773, 12.35169470164609, 11.171840534342095, 6.25, 8.185667836681999, 9.087327160493828, 12.100376234567902, 7.807289803383631, 8.360661740865444, 9.715996342021034, 10.125), (10.226397897897897, 10.890203703703703, 10.344148148148149, 12.346756944444444, 11.176145453685063, 6.25, 8.172283224400871, 9.054, 12.095191666666667, 7.793272839506173, 8.357594276094275, 9.708864197530863, 10.125), (10.23473881023881, 10.869745541838133, 10.338354595336076, 12.341393261316872, 11.180330495471466, 6.25, 8.15782090696361, 9.018154320987653, 12.089570061728397, 7.778149702789209, 8.354252961715924, 9.701139460448102, 10.125), (10.242847531796807, 10.847822359396433, 10.332133058984912, 12.335615997942385, 11.18439547615087, 6.25, 8.142328330509159, 8.979938271604938, 12.083526234567902, 7.761974165523548, 8.350643783514153, 9.692844078646548, 10.125), (10.250723266745005, 10.824499999999999, 10.3255, 12.3294375, 11.188340212172836, 6.25, 8.12585294117647, 8.9395, 12.077074999999999, 7.7448, 8.346772727272727, 9.684000000000001, 10.125), (10.258365219256524, 10.799844307270233, 10.318471879286694, 12.322870113168724, 11.192164519986921, 6.25, 8.108442185104494, 8.896987654320988, 12.070231172839506, 7.726680978509374, 8.34264577877541, 9.674629172382259, 10.125), (10.265772593504476, 10.773921124828533, 10.311065157750342, 12.315926183127573, 11.19586821604269, 6.25, 8.09014350843218, 8.85254938271605, 12.063009567901235, 7.707670873342479, 8.33826892380596, 9.664753543667125, 10.125), (10.272944593661986, 10.746796296296296, 10.303296296296297, 12.308618055555556, 11.199451116789703, 6.25, 8.071004357298476, 8.806333333333333, 12.055425000000001, 7.687823456790124, 8.333648148148148, 9.654395061728394, 10.125), (10.279880423902163, 10.718535665294924, 10.295181755829903, 12.300958076131687, 11.202913038677519, 6.25, 8.05107217784233, 8.758487654320989, 12.047492283950618, 7.667192501143119, 8.328789437585733, 9.643575674439873, 10.125), (10.286579288398128, 10.689205075445816, 10.286737997256516, 12.29295859053498, 11.206253798155702, 6.25, 8.030394416202695, 8.709160493827161, 12.0392262345679, 7.645831778692272, 8.323698777902482, 9.632317329675354, 10.125), (10.293040391323, 10.658870370370371, 10.277981481481483, 12.284631944444445, 11.209473211673808, 6.25, 8.009018518518518, 8.6585, 12.030641666666668, 7.623795061728395, 8.318382154882155, 9.620641975308642, 10.125), (10.299262936849892, 10.627597393689987, 10.268928669410151, 12.275990483539095, 11.212571095681403, 6.25, 7.98699193092875, 8.606654320987655, 12.021753395061728, 7.601136122542296, 8.312845554308517, 9.608571559213535, 10.125), (10.305246129151927, 10.595451989026063, 10.259596021947875, 12.267046553497943, 11.215547266628045, 6.25, 7.964362099572339, 8.553771604938273, 12.0125762345679, 7.577908733424783, 8.307094961965332, 9.596128029263832, 10.125), (10.310989172402216, 10.5625, 10.25, 12.2578125, 11.218401540963296, 6.25, 7.9411764705882355, 8.5, 12.003124999999999, 7.554166666666667, 8.301136363636363, 9.583333333333332, 10.125), (10.31649127077388, 10.528807270233196, 10.240157064471878, 12.24830066872428, 11.221133735136716, 6.25, 7.917482490115388, 8.445487654320988, 11.993414506172838, 7.529963694558756, 8.294975745105374, 9.57020941929584, 10.125), (10.321751628440035, 10.49443964334705, 10.230083676268862, 12.238523405349794, 11.223743665597867, 6.25, 7.893327604292747, 8.390382716049382, 11.983459567901235, 7.505353589391861, 8.288619092156129, 9.55677823502515, 10.125), (10.326769449573796, 10.459462962962963, 10.219796296296296, 12.228493055555557, 11.22623114879631, 6.25, 7.868759259259259, 8.334833333333334, 11.973275000000001, 7.4803901234567896, 8.28207239057239, 9.543061728395061, 10.125), (10.331543938348286, 10.42394307270233, 10.209311385459534, 12.218221965020577, 11.228596001181607, 6.25, 7.8438249011538765, 8.278987654320987, 11.96287561728395, 7.455127069044353, 8.275341626137923, 9.529081847279379, 10.125), (10.336074298936616, 10.387945816186559, 10.198645404663925, 12.207722479423868, 11.230838039203315, 6.25, 7.81857197611555, 8.222993827160494, 11.9522762345679, 7.429618198445358, 8.268432784636488, 9.514860539551899, 10.125), (10.34035973551191, 10.351537037037037, 10.187814814814814, 12.197006944444444, 11.232957079310998, 6.25, 7.793047930283224, 8.167, 11.941491666666668, 7.403917283950617, 8.261351851851853, 9.50041975308642, 10.125), (10.344399452247279, 10.314782578875173, 10.176836076817558, 12.186087705761317, 11.234952937954214, 6.25, 7.767300209795852, 8.111154320987653, 11.930536728395062, 7.3780780978509375, 8.254104813567777, 9.485781435756746, 10.125), (10.348192653315843, 10.27774828532236, 10.165725651577505, 12.174977109053497, 11.23682543158253, 6.25, 7.741376260792383, 8.055604938271605, 11.919426234567903, 7.3521544124371285, 8.246697655568026, 9.470967535436671, 10.125), (10.351738542890716, 10.2405, 10.154499999999999, 12.1636875, 11.238574376645502, 6.25, 7.715323529411765, 8.000499999999999, 11.908175, 7.3262, 8.239136363636362, 9.456, 10.125), (10.355036325145022, 10.203103566529492, 10.143175582990398, 12.152231224279834, 11.24019958959269, 6.25, 7.689189461792948, 7.945987654320987, 11.896797839506172, 7.300268632830361, 8.231426923556553, 9.44090077732053, 10.125), (10.358085204251871, 10.165624828532236, 10.131768861454047, 12.140620627572016, 11.241700886873659, 6.25, 7.663021504074881, 7.892216049382716, 11.885309567901235, 7.274414083219022, 8.223575321112358, 9.425691815272062, 10.125), (10.360884384384383, 10.12812962962963, 10.120296296296297, 12.128868055555555, 11.243078084937967, 6.25, 7.636867102396514, 7.839333333333334, 11.873725, 7.24869012345679, 8.215587542087542, 9.410395061728394, 10.125), (10.36343306971568, 10.090683813443073, 10.108774348422497, 12.116985853909464, 11.244331000235174, 6.25, 7.610773702896797, 7.787487654320987, 11.862058950617284, 7.223150525834477, 8.20746957226587, 9.395032464563329, 10.125), (10.36573046441887, 10.053353223593964, 10.097219478737998, 12.104986368312757, 11.245459449214845, 6.25, 7.584788751714678, 7.736827160493827, 11.850326234567902, 7.197849062642891, 8.1992273974311, 9.379625971650663, 10.125), (10.367775772667077, 10.016203703703704, 10.085648148148147, 12.092881944444445, 11.246463248326537, 6.25, 7.558959694989106, 7.6875, 11.838541666666668, 7.172839506172839, 8.190867003367003, 9.364197530864198, 10.125), (10.369568198633415, 9.97930109739369, 10.0740768175583, 12.080684927983539, 11.247342214019811, 6.25, 7.533333978859033, 7.639654320987654, 11.826720061728395, 7.148175628715135, 8.182394375857339, 9.348769090077733, 10.125), (10.371106946491004, 9.942711248285322, 10.062521947873801, 12.068407664609055, 11.248096162744234, 6.25, 7.507959049463406, 7.5934382716049384, 11.814876234567901, 7.123911202560586, 8.17381550068587, 9.333362597165067, 10.125), (10.37239122041296, 9.9065, 10.051, 12.056062500000001, 11.248724910949356, 6.25, 7.482882352941176, 7.549, 11.803025, 7.100099999999999, 8.165136363636364, 9.318, 10.125), (10.373420224572397, 9.870733196159122, 10.039527434842249, 12.043661779835391, 11.249228275084748, 6.25, 7.458151335431292, 7.506487654320988, 11.791181172839506, 7.076795793324188, 8.156362950492579, 9.302703246456334, 10.125), (10.374193163142438, 9.835476680384087, 10.0281207133059, 12.031217849794238, 11.249606071599967, 6.25, 7.433813443072703, 7.466049382716049, 11.779359567901235, 7.054052354823959, 8.147501247038285, 9.287494284407863, 10.125), (10.374709240296196, 9.800796296296298, 10.016796296296297, 12.018743055555555, 11.249858116944573, 6.25, 7.409916122004357, 7.427833333333334, 11.767575, 7.031923456790123, 8.138557239057238, 9.272395061728396, 10.125), (10.374967660206792, 9.766757887517146, 10.005570644718793, 12.006249742798353, 11.24998422756813, 6.25, 7.386506818365206, 7.391987654320989, 11.755842283950617, 7.010462871513489, 8.12953691233321, 9.257427526291723, 10.125), (10.374791614480825, 9.733248639320323, 9.994405949931412, 11.993641740472357, 11.249877955297345, 6.2498840115836, 7.363515194829646, 7.358343850022862, 11.744087848651121, 6.989620441647166, 8.120285988540376, 9.242530021899743, 10.124875150034294), (10.373141706924315, 9.699245519713262, 9.982988425925925, 11.980283514492752, 11.248910675381262, 6.248967078189301, 7.340268181346613, 7.325098765432099, 11.731797839506173, 6.968806390704429, 8.10986283891547, 9.227218973359324, 10.12388599537037), (10.369885787558895, 9.664592459843355, 9.971268432784635, 11.966087124261943, 11.246999314128942, 6.247161255906112, 7.31666013456137, 7.291952446273434, 11.718902892089622, 6.947919524462734, 8.09814888652608, 9.211422761292809, 10.121932334533609), (10.365069660642929, 9.62931016859153, 9.959250085733881, 11.951073503757382, 11.244168078754136, 6.244495808565767, 7.292701659538988, 7.258915866483768, 11.705422210791038, 6.926960359342639, 8.085187370783862, 9.195152937212715, 10.119039887688615), (10.358739130434783, 9.593419354838709, 9.946937499999999, 11.935263586956522, 11.240441176470588, 6.2410000000000005, 7.268403361344538, 7.226, 11.691375, 6.905929411764705, 8.07102153110048, 9.17842105263158, 10.115234375), (10.35094000119282, 9.556940727465816, 9.934334790809327, 11.918678307836823, 11.23584281449205, 6.236703094040542, 7.243775845043092, 7.193215820759031, 11.676780464106082, 6.884827198149493, 8.055694606887588, 9.161238659061919, 10.110541516632374), (10.341718077175404, 9.519894995353777, 9.921446073388202, 11.901338600375738, 11.230397200032275, 6.231634354519128, 7.218829715699722, 7.160574302697759, 11.661657807498857, 6.863654234917561, 8.039249837556856, 9.143617308016267, 10.104987032750344), (10.331119162640901, 9.482302867383511, 9.908275462962962, 11.883265398550725, 11.224128540305012, 6.22582304526749, 7.1935755783795, 7.128086419753086, 11.6460262345679, 6.84241103848947, 8.021730462519935, 9.125568551007147, 10.098596643518519), (10.319189061847677, 9.44418505243595, 9.894827074759945, 11.864479636339238, 11.217061042524005, 6.219298430117361, 7.168024038147495, 7.095763145861912, 11.629904949702789, 6.821098125285779, 8.003179721188491, 9.107103939547082, 10.091396069101508), (10.305973579054093, 9.40556225939201, 9.881105024005485, 11.845002247718732, 11.209218913903008, 6.212089772900472, 7.142185700068779, 7.063615454961135, 11.613313157293096, 6.7997160117270505, 7.983640852974187, 9.088235025148606, 10.083411029663925), (10.291518518518519, 9.366455197132618, 9.867113425925925, 11.824854166666666, 11.200626361655774, 6.204226337448559, 7.116071169208425, 7.031654320987655, 11.596270061728394, 6.7782652142338415, 7.9631570972886765, 9.068973359324238, 10.074667245370371), (10.275869684499314, 9.326884574538697, 9.8528563957476, 11.804056327160493, 11.191307592996047, 6.195737387593354, 7.089691050631501, 6.9998907178783725, 11.578794867398262, 6.756746249226714, 7.941771693543622, 9.049330493586504, 10.065190436385459), (10.259072881254847, 9.286871100491172, 9.838338048696844, 11.782629663177671, 11.181286815137579, 6.18665218716659, 7.063055949403081, 6.968335619570188, 11.560906778692273, 6.7351596331262265, 7.919527881150688, 9.029317979447935, 10.0550063228738), (10.241173913043479, 9.246435483870968, 9.8235625, 11.760595108695654, 11.170588235294117, 6.177, 7.036176470588235, 6.937, 11.542625, 6.713505882352941, 7.8964688995215315, 9.008947368421053, 10.044140624999999), (10.222218584123576, 9.205598433559008, 9.808533864883403, 11.737973597691894, 11.159236060679415, 6.166810089925317, 7.009063219252036, 6.90589483310471, 11.52396873571102, 6.691785513327416, 7.872637988067813, 8.988230212018387, 10.03261906292867), (10.202252698753504, 9.164380658436214, 9.793256258573388, 11.714786064143853, 11.147254498507221, 6.156111720774272, 6.981726800459553, 6.875031092821216, 11.504957190214906, 6.669999042470211, 7.848078386201194, 8.967178061752461, 10.020467356824417), (10.181322061191626, 9.122802867383513, 9.777733796296296, 11.691053442028986, 11.134667755991286, 6.144934156378601, 6.954177819275858, 6.844419753086419, 11.485609567901234, 6.648146986201889, 7.822833333333333, 8.945802469135803, 10.007711226851852), (10.159472475696308, 9.080885769281826, 9.761970593278463, 11.666796665324746, 11.121500040345357, 6.133306660570035, 6.926426880766024, 6.814071787837221, 11.465945073159578, 6.626229860943005, 7.796946068875894, 8.924114985680937, 9.994376393175584), (10.136749746525913, 9.03865007301208, 9.745970764746229, 11.64203666800859, 11.107775558783183, 6.121258497180309, 6.89848458999512, 6.783998171010516, 11.445982910379517, 6.604248183114124, 7.770459832240534, 8.902127162900394, 9.98048857596022), (10.113199677938807, 8.996116487455197, 9.729738425925925, 11.61679438405797, 11.09351851851852, 6.108818930041152, 6.870361552028219, 6.75420987654321, 11.425742283950619, 6.582202469135802, 7.743417862838915, 8.879850552306692, 9.96607349537037), (10.088868074193357, 8.9533057214921, 9.713277692043896, 11.59109074745035, 11.07875312676511, 6.096017222984301, 6.842068371930391, 6.724717878372199, 11.40524239826246, 6.560093235428601, 7.715863400082698, 8.857296705412365, 9.951156871570646), (10.063800739547922, 8.910238484003717, 9.696592678326475, 11.564946692163177, 11.063503590736707, 6.082882639841488, 6.813615654766708, 6.695533150434385, 11.384502457704619, 6.537920998413083, 7.687839683383544, 8.834477173729935, 9.935764424725651), (10.03804347826087, 8.866935483870968, 9.6796875, 11.538383152173914, 11.04779411764706, 6.069444444444445, 6.785014005602241, 6.666666666666666, 11.363541666666668, 6.515686274509804, 7.65938995215311, 8.81140350877193, 9.919921875), (10.011642094590563, 8.823417429974777, 9.662566272290809, 11.511421061460013, 11.031648914709915, 6.055731900624904, 6.756274029502062, 6.638129401005944, 11.342379229538182, 6.4933895801393255, 7.63055744580306, 8.788087262050874, 9.903654942558298), (9.984642392795372, 8.779705031196071, 9.64523311042524, 11.484081353998926, 11.015092189139029, 6.041774272214601, 6.727406331531242, 6.609932327389118, 11.321034350708734, 6.471031431722209, 7.601385403745053, 8.764539985079297, 9.886989347565157), (9.957090177133654, 8.735818996415771, 9.62769212962963, 11.456384963768118, 10.998148148148148, 6.027600823045267, 6.69842151675485, 6.582086419753087, 11.299526234567901, 6.448612345679011, 7.57191706539075, 8.74077322936972, 9.869950810185184), (9.92903125186378, 8.691780034514801, 9.609947445130317, 11.428352824745035, 10.98084099895102, 6.0132408169486355, 6.669330190237961, 6.554602652034752, 11.277874085505259, 6.426132838430297, 7.54219567015181, 8.716798546434674, 9.85256505058299), (9.90051142124411, 8.647608854374088, 9.592003172153635, 11.400005870907139, 10.963194948761398, 5.9987235177564395, 6.640142957045644, 6.527491998171011, 11.25609710791038, 6.403593426396621, 7.512264457439896, 8.69262748778668, 9.834857788923182), (9.871576489533012, 8.603326164874554, 9.573863425925927, 11.371365036231884, 10.945234204793028, 5.984078189300411, 6.610870422242971, 6.500765432098766, 11.234214506172838, 6.3809946259985475, 7.482166666666667, 8.668271604938273, 9.816854745370371), (9.842272260988848, 8.558952674897121, 9.555532321673525, 11.342451254696725, 10.926982974259664, 5.969334095412284, 6.581523190895013, 6.474433927754916, 11.212245484682214, 6.358336953656634, 7.451945537243782, 8.64374244940197, 9.798581640089164), (9.812644539869984, 8.514509093322713, 9.53701397462277, 11.31328546027912, 10.908465464375052, 5.954520499923793, 6.552111868066842, 6.44850845907636, 11.190209247828074, 6.335620925791441, 7.421644308582906, 8.619051572690298, 9.78006419324417), (9.782739130434782, 8.470016129032258, 9.5183125, 11.283888586956522, 10.889705882352942, 5.939666666666667, 6.52264705882353, 6.423, 11.168125, 6.312847058823529, 7.391306220095694, 8.59421052631579, 9.761328125), (9.752601836941611, 8.425494490906676, 9.49943201303155, 11.254281568706388, 10.870728435407084, 5.924801859472641, 6.493139368230145, 6.3979195244627345, 11.146011945587563, 6.290015869173458, 7.36097451119381, 8.569230861790967, 9.742399155521262), (9.722278463648834, 8.380964887826895, 9.480376628943759, 11.224485339506174, 10.85155733075123, 5.909955342173449, 6.463599401351762, 6.3732780064014625, 11.123889288980338, 6.267127873261788, 7.330692421288912, 8.544124130628353, 9.723303004972564), (9.691814814814816, 8.336448028673836, 9.461150462962962, 11.194520833333334, 10.832216775599129, 5.895156378600824, 6.43403776325345, 6.349086419753086, 11.1017762345679, 6.244183587509078, 7.300503189792663, 8.518901884340481, 9.704065393518519), (9.661256694697919, 8.291964622328422, 9.4417576303155, 11.164408984165325, 10.812730977164529, 5.880434232586496, 6.40446505900028, 6.325355738454504, 11.079691986739826, 6.221183528335889, 7.270450056116723, 8.493575674439873, 9.68471204132373), (9.63064990755651, 8.247535377671579, 9.422202246227709, 11.134170725979603, 10.79312414266118, 5.865818167962201, 6.374891893657326, 6.302096936442616, 11.057655749885688, 6.19812821216278, 7.24057625967275, 8.468157052439054, 9.665268668552812), (9.600040257648953, 8.203181003584229, 9.402488425925926, 11.103826992753623, 10.773420479302832, 5.851337448559671, 6.345328872289658, 6.279320987654321, 11.035686728395062, 6.175018155410313, 7.210925039872408, 8.442657569850553, 9.64576099537037), (9.569473549233614, 8.158922208947299, 9.382620284636488, 11.073398718464842, 10.753644194303236, 5.837021338210638, 6.315786599962345, 6.25703886602652, 11.01380412665752, 6.151853874499045, 7.181539636127355, 8.417088778186894, 9.626214741941014), (9.538995586568856, 8.11477970264171, 9.362601937585735, 11.042906837090714, 10.733819494876139, 5.822899100746838, 6.286275681740461, 6.235261545496114, 10.992027149062643, 6.128635885849539, 7.152463287849252, 8.391462228960604, 9.606655628429355), (9.508652173913044, 8.070774193548388, 9.3424375, 11.012372282608696, 10.713970588235293, 5.809, 6.256806722689075, 6.214, 10.970375, 6.105364705882353, 7.1237392344497605, 8.365789473684211, 9.587109375), (9.478489115524543, 8.026926390548255, 9.322131087105625, 10.98181598899624, 10.69412168159445, 5.795353299801859, 6.227390327873262, 6.193265203475081, 10.948866883859168, 6.082040851018047, 7.09541071534054, 8.340082063870238, 9.567601701817559), (9.448552215661715, 7.983257002522237, 9.301686814128946, 10.951258890230811, 10.674296982167354, 5.7819882639841484, 6.198037102358089, 6.173068129858253, 10.92752200502972, 6.058664837677183, 7.06752096993325, 8.314351551031214, 9.54815832904664), (9.41888727858293, 7.9397867383512555, 9.281108796296298, 10.920721920289855, 10.654520697167756, 5.768934156378601, 6.168757651208631, 6.153419753086419, 10.906359567901236, 6.035237182280319, 7.040113237639553, 8.288609486679663, 9.528804976851852), (9.38954010854655, 7.896536306916234, 9.26040114883402, 10.890226013150832, 10.634817033809409, 5.756220240816949, 6.139562579489958, 6.134331047096479, 10.885398776863282, 6.011758401248016, 7.013230757871109, 8.26286742232811, 9.509567365397805), (9.360504223703044, 7.853598618785952, 9.239617828252069, 10.85983388249204, 10.615175680173705, 5.7438697692145135, 6.1105259636567695, 6.115852568780606, 10.86471281125862, 5.988304736612729, 6.9869239061528665, 8.237192936504428, 9.490443900843221), (9.331480897900065, 7.811397183525536, 9.219045675021619, 10.829789421277336, 10.595393354566326, 5.731854608529901, 6.082018208410579, 6.09821125950512, 10.84461903571306, 5.965315167912783, 6.961244337113197, 8.211912172112974, 9.471275414160035), (9.302384903003995, 7.769947198683046, 9.198696932707318, 10.800084505181779, 10.5754076778886, 5.7201435124987645, 6.054059650191562, 6.081402654278709, 10.82512497866879, 5.942825327988077, 6.936154511427094, 8.187037582558851, 9.452006631660376), (9.273179873237634, 7.729188281291702, 9.178532189983873, 10.770666150266404, 10.555188526383779, 5.708708877287098, 6.026604817527893, 6.065380312898993, 10.80618133922783, 5.920793358449547, 6.911605931271481, 8.162523197487346, 9.43260725975589), (9.243829442823772, 7.689060048384721, 9.158512035525986, 10.741481372592244, 10.53470577629511, 5.6975230990608905, 5.9996082389477525, 6.050097795163585, 10.787738816492203, 5.899177400908129, 6.887550098823283, 8.13832304654375, 9.413047004858225), (9.214297245985211, 7.649502116995324, 9.138597058008367, 10.712477188220333, 10.513929303865842, 5.686558573986138, 5.973024442979315, 6.0355086608700965, 10.769748109563935, 5.877935596974759, 6.863938516259424, 8.11439115937335, 9.393295573379024), (9.184546916944742, 7.610454104156729, 9.118747846105723, 10.683600613211706, 10.492828985339221, 5.675787698228833, 5.946807958150756, 6.021566469816145, 10.752159917545043, 5.857026088260372, 6.840722685756828, 8.090681565621434, 9.373322671729932), (9.154542089925162, 7.571855626902158, 9.098924988492762, 10.654798663627394, 10.471374696958497, 5.665182867954965, 5.920913312990253, 6.008224781799343, 10.734924939537558, 5.836407016375905, 6.817854109492416, 8.067148294933297, 9.353098006322597), (9.124246399149268, 7.533646302264829, 9.079089073844187, 10.626018355528434, 10.449536314966918, 5.6547164793305305, 5.89529503602598, 5.995437156617307, 10.717993874643499, 5.816036522932296, 6.795284289643116, 8.043745376954222, 9.33259128356866), (9.093623478839854, 7.495765747277961, 9.059200690834711, 10.597206704975855, 10.427283715607734, 5.644360928521519, 5.869907655786117, 5.983157154067649, 10.70131742196489, 5.795872749540477, 6.772964728385851, 8.0204268413295, 9.31177220987977), (9.062636963219719, 7.458153578974774, 9.039220428139036, 10.568310728030694, 10.40458677512419, 5.634088611693925, 5.844705700798839, 5.971338333947983, 10.684846280603754, 5.775873837811387, 6.750846927897544, 7.997146717704421, 9.290610491667572), (9.031250486511654, 7.420749414388487, 9.01910887443187, 10.539277440753986, 10.381415369759537, 5.623871925013739, 5.819643699592319, 5.959934256055926, 10.668531149662115, 5.755997929355961, 6.728882390355119, 7.973859035724275, 9.269075835343711), (8.999427682938459, 7.38349287055232, 8.998826618387923, 10.51005385920676, 10.357739375757022, 5.613683264646956, 5.794676180694739, 5.948898480189091, 10.652322728241993, 5.736203165785134, 6.707022617935501, 7.950517825034348, 9.247137947319828), (8.967132186722928, 7.346323564499494, 8.978334248681898, 10.480586999450054, 10.333528669359893, 5.603495026759568, 5.76975767263427, 5.938184566145092, 10.636171715445418, 5.7164476887098425, 6.685219112815613, 7.927077115279934, 9.224766534007578), (8.93432763208786, 7.309181113263224, 8.957592353988504, 10.450823877544899, 10.308753126811398, 5.593279607517565, 5.744842703939094, 5.927746073721545, 10.620028810374407, 5.696689639741024, 6.6634233771723785, 7.903490936106316, 9.201931301818599), (8.900977653256046, 7.272005133876735, 8.93656152298245, 10.420711509552332, 10.28338262435479, 5.583009403086944, 5.719885803137382, 5.917536562716062, 10.603844712130984, 5.6768871604896125, 6.641586913182724, 7.879713317158788, 9.178601957164537), (8.867045884450281, 7.234735243373241, 8.91520234433844, 10.390196911533382, 10.257387038233311, 5.572656809633695, 5.694841498757313, 5.90750959292626, 10.587570119817174, 5.656998392566545, 6.619661223023571, 7.855698288082636, 9.154748206457038), (8.832495959893366, 7.197311058785966, 8.893475406731179, 10.359227099549086, 10.230736244690213, 5.562194223323808, 5.669664319327063, 5.89761872414975, 10.571155732535, 5.636981477582757, 6.5975978088718445, 7.831399878523152, 9.130339756107748), (8.797291513808094, 7.159672197148127, 8.87134129883538, 10.327749089660475, 10.203400119968745, 5.55159404032328, 5.644308793374809, 5.88781751618415, 10.554552249386486, 5.616794557149185, 6.575348172904468, 7.806772118125624, 9.105346312528312), (8.76139618041726, 7.121758275492944, 8.848760609325746, 10.295709897928587, 10.175348540312154, 5.540828656798102, 5.618729449428725, 5.878059528827073, 10.537710369473654, 5.596395772876765, 6.552863817298364, 7.781769036535342, 9.079737582130376), (8.724773593943663, 7.083508910853635, 8.825693926876983, 10.263056540414452, 10.146551381963686, 5.529870468914266, 5.592880816016989, 5.868298321876132, 10.520580791898526, 5.575743266376432, 6.53009624423046, 7.756344663397592, 9.053483271325586), (8.687387388610095, 7.044863720263423, 8.802101840163804, 10.229736033179103, 10.116978521166592, 5.518691872837765, 5.566717421667779, 5.858487455128944, 10.503114215763128, 5.5547951792591235, 6.506996955877678, 7.730453028357666, 9.026553086525583), (8.649201198639354, 7.005762320755524, 8.777944937860909, 10.195695392283579, 10.08659983416412, 5.507265264734592, 5.540193794909268, 5.84858048838312, 10.48526134016948, 5.533509653135776, 6.483517454416942, 7.704048161060852, 8.99891673414202), (8.610178658254235, 6.966144329363159, 8.753183808643008, 10.160881633788906, 10.055385197199517, 5.495563040770739, 5.513264464269635, 5.838530981436277, 10.466972864219606, 5.511844829617322, 6.459609242025177, 7.677084091152441, 8.970543920586536), (8.570283401677534, 6.925949363119547, 8.72777904118481, 10.125241773756125, 10.023304486516034, 5.483557597112198, 5.485883958277055, 5.828292494086029, 10.448199487015533, 5.4897588503147015, 6.435223820879306, 7.649514848277719, 8.941404352270776), (8.529479063132047, 6.885117039057908, 8.701691224161017, 10.088722828246263, 9.990327578356919, 5.471221329924964, 5.458006805459704, 5.81781858612999, 10.428891907659281, 5.4672098568388465, 6.410312693156252, 7.621294462081978, 8.91146773560639), (8.487729276840568, 6.843586974211461, 8.67488094624634, 10.051271813320358, 9.956424348965415, 5.458526635375026, 5.429587534345759, 5.807062817365774, 10.409000825252871, 5.444155990800697, 6.38482736103294, 7.592376962210506, 8.880703777005019), (8.444997677025897, 6.801298785613425, 8.647308796115487, 10.012835745039444, 9.92156467458478, 5.445445909628379, 5.400580673463397, 5.795978747590996, 10.388476938898332, 5.420555393811186, 6.358719326686294, 7.562716378308592, 8.849082182878314), (8.40124789791083, 6.758192090297021, 8.61893536244316, 9.973361639464553, 9.885718431458253, 5.431951548851015, 5.370940751340795, 5.78451993660327, 10.36727094769768, 5.396366207481251, 6.331940092293238, 7.532266740021525, 8.816572659637913), (8.356443573718156, 6.714206505295466, 8.58972123390407, 9.93279651265672, 9.848855495829087, 5.418015949208927, 5.340622296506126, 5.772639944200211, 10.345333550752942, 5.371546573421828, 6.304441160030697, 7.500982076994594, 8.783144913695466), (8.310548338670674, 6.669281647641981, 8.559626999172925, 9.891087380676975, 9.810945743940529, 5.403611506868106, 5.3095798374875685, 5.760292330179432, 10.322615447166147, 5.3460546332438525, 6.276174032075593, 7.4688164188730894, 8.748768651462617), (8.263525826991184, 6.623357134369786, 8.528613246924428, 9.848181259586356, 9.771959052035829, 5.388710617994547, 5.277767902813299, 5.747430654338549, 10.29906733603931, 5.31984852855826, 6.247090210604851, 7.435723795302299, 8.713413579351014), (8.215339672902477, 6.576372582512099, 8.496640565833289, 9.804025165445895, 9.731865296358233, 5.3732856787542405, 5.245141021011493, 5.734008476475176, 10.274639916474454, 5.292886400975988, 6.217141197795395, 7.401658235927513, 8.6770494037723), (8.16595351062735, 6.528267609102142, 8.463669544574216, 9.758566114316626, 9.690634353150992, 5.35730908531318, 5.21165372061033, 5.719979356386927, 10.249283887573606, 5.2651263921079705, 6.186278495824149, 7.3665737703940195, 8.639645831138118), (8.1153309743886, 6.47898183117313, 8.42966077182191, 9.71175112225958, 9.648236098657351, 5.340753233837358, 5.177260530137981, 5.705296853871415, 10.22294994843879, 5.236526643565146, 6.154453606868036, 7.3304244283471105, 8.601172567860118), (8.063435698409021, 6.428454865758288, 8.394574836251083, 9.663527205335797, 9.604640409120561, 5.323590520492767, 5.1419159781226265, 5.689914528726257, 10.195588798172029, 5.207045296958447, 6.1216180331039824, 7.29316423943207, 8.561599320349941), (8.010231316911412, 6.37662632989083, 8.358372326536443, 9.613841379606303, 9.55981716078387, 5.3057933414453995, 5.105574593092441, 5.673785940749067, 10.167151135875338, 5.176640493898813, 6.08772327670891, 7.254747233294191, 8.520895795019237), (7.955681464118564, 6.323435840603979, 8.321013831352694, 9.562640661132138, 9.513736229890526, 5.287334092861249, 5.0681909035756005, 5.656864649737456, 10.137587660650752, 5.1452703759971765, 6.0527208398597425, 7.215127439578763, 8.479031698279647), (7.899749774253275, 6.268823014930954, 8.282459939374542, 9.50987206597433, 9.466367492683776, 5.268185170906305, 5.029719438100283, 5.639104215489043, 10.106849071600289, 5.112893084864478, 6.016562224733405, 7.174258887931072, 8.435976736542818), (7.842399881538343, 6.212727469904973, 8.242671239276701, 9.455482610193918, 9.417680825406869, 5.2483189717465635, 4.9901147251946645, 5.620458197801441, 10.07488606782597, 5.079466762111649, 5.979198933506821, 7.132095607996409, 8.391700616220398), (7.78359542019656, 6.155088822559256, 8.201608319733868, 9.399419309851933, 9.367646104303056, 5.2277078915480155, 4.949331293386919, 5.600880156472262, 10.041649348429823, 5.044949549349629, 5.940582468356916, 7.088591629420064, 8.346173043724027), (7.723300024450729, 6.095846689927024, 8.159231769420758, 9.34162918100941, 9.31623320561558, 5.206324326476654, 4.907323671205228, 5.580323651299123, 10.007089612513866, 5.009299588189353, 5.900664331460612, 7.043700981847325, 8.299363725465357), (7.6614773285236355, 6.034940689041495, 8.115502177012075, 9.282059239727378, 9.263412005587696, 5.184140672698471, 4.864046387177761, 5.558742242079636, 9.971157559180128, 4.972475020241754, 5.859396024994833, 6.997377694923482, 8.251242367856026), (7.598090966638081, 5.972310436935888, 8.070380131182526, 9.220656502066875, 9.209152380462648, 5.161129326379461, 4.8194539698327, 5.5360894886114185, 9.933803887530626, 4.934433987117773, 5.816729051136504, 6.949575798293822, 8.201778677307685), (7.533104573016862, 5.907895550643423, 8.023826220606818, 9.157367984088937, 9.153424206483685, 5.137262683685614, 4.773500947698219, 5.512318950692082, 9.894979296667389, 4.895134630428341, 5.772614912062549, 6.900249321603637, 8.150942360231976), (7.464680946405239, 5.840453120772258, 7.973591953902355, 9.089769581651243, 9.093681105870997, 5.11102447631711, 4.725106720927857, 5.485796952349372, 9.851662091599097, 4.8533659162911436, 5.7255957525389425, 6.847599564194339, 8.096485859415345), (7.382286766978402, 5.763065319599478, 7.906737818402988, 9.003977158788453, 9.015191309781628, 5.073689648007103, 4.668212763385716, 5.4472135327643825, 9.786427261222144, 4.802280994098745, 5.667416935618994, 6.781362523683108, 8.025427646920194), (7.284872094904309, 5.675096728540714, 7.821920957955888, 8.89857751040886, 8.916420131346795, 5.024341296047684, 4.602243748383784, 5.3955991895273465, 9.697425227228651, 4.741205651862893, 5.59725950860954, 6.700501948887847, 7.93642060889358), (7.17322205458596, 5.577120868080469, 7.720046971910309, 8.774572503756728, 8.798393124282113, 4.963577241570314, 4.527681446006876, 5.33160053310978, 9.585829766999018, 4.6706581931709374, 5.515741654599707, 6.605767468907571, 7.830374044819097), (7.048121770426357, 5.469711258703239, 7.602021459615496, 8.632964006076326, 8.662135842303204, 4.891995305706455, 4.445007626339809, 5.255864173983202, 9.452814657913637, 4.5911569216102315, 5.42348155667862, 6.497908712841293, 7.708197254180333), (6.9103563668284975, 5.353441420893524, 7.468750020420702, 8.474753884611934, 8.508673839125688, 4.810193309587572, 4.354704059467401, 5.169036722619125, 9.299553677352906, 4.503220140768125, 5.321097397935408, 6.3776753097880325, 7.570799536460879), (6.760710968195384, 5.228884875135821, 7.321138253675176, 8.300944006607818, 8.339032668465189, 4.718769074345129, 4.257252515474466, 5.071764789489069, 9.127220602697223, 4.407366154231968, 5.209207361459196, 6.245816888846803, 7.419090191144328), (6.599970698930017, 5.096615141914632, 7.160091758728169, 8.112536239308252, 8.154237884037324, 4.618320421110586, 4.153134764445822, 4.964694985064546, 8.93698921132698, 4.3041132655891134, 5.088429630339111, 6.10308307911662, 7.25397851771427), (6.428920683435397, 4.957205741714454, 6.9865161349289275, 7.910532449957501, 7.955315039557714, 4.509445171015408, 4.042832576466286, 4.848473919817077, 8.730033280622573, 4.193979778426912, 4.959382387664279, 5.950223509696501, 7.0763738156542955), (6.248346046114523, 4.811230195019787, 6.801316981626704, 7.695934505799843, 7.74328968874198, 4.392741145191058, 3.9268277216206746, 4.723748204218176, 8.5075265879644, 4.077483996332714, 4.822683816523827, 5.7879878096854585, 6.887185384447996), (6.059031911370395, 4.659262022315128, 6.605399898170748, 7.469744274079546, 7.519187385305742, 4.268806164768999, 3.805601969993804, 4.5911644487393595, 8.270642910732855, 3.955144222893872, 4.678952100006881, 5.617125608182511, 6.6873225235789615), (5.861763403606015, 4.501874744084979, 6.399670483910309, 7.232963622040883, 7.28403368296462, 4.138238050880695, 3.6796370916704917, 4.451369263852145, 8.020556026308338, 3.8274787616977366, 4.528805421202568, 5.438386534286672, 6.477694532530785), (5.657325647224384, 4.339641880813837, 6.185034338194635, 6.98659441692812, 7.038854135434233, 4.001634624657607, 3.549414856735553, 4.305009260028047, 7.7584397120712385, 3.6950059163316578, 4.372861963200016, 5.252520217096959, 6.259210710787055), (5.4465037666285, 4.173136952986201, 5.962397060372978, 6.731638525985535, 6.784674296430206, 3.8595937072311983, 3.4154170352738054, 4.152731047738583, 7.485467745401956, 3.5582439903829886, 4.211739909088348, 5.060276285712386, 6.032780357831365), (5.230082886221365, 4.002933481086569, 5.7326642497945866, 6.4690978164573965, 6.5225197196681535, 3.7127131197329337, 3.2781253973700655, 3.9951812374552707, 7.202813903680886, 3.41771128743908, 4.046057441956694, 4.862404369231971, 5.799312773147303), (5.00884813040598, 3.8296049855994423, 5.4967415058087115, 6.1999741555879755, 6.253415958863702, 3.5615906832942748, 3.1380217131091497, 3.8330064396496235, 6.911651964288422, 3.2739261110872815, 3.8764327448941778, 4.659654096754725, 5.5597172562184625), (4.783584623585344, 3.653724987009318, 5.2555344277646014, 5.9252694106215404, 5.978388567732466, 3.406824219046685, 2.9955877525758754, 3.6668532647931604, 6.613155704604964, 3.1274067649149466, 3.7034840009899277, 4.452775097379668, 5.314903106528433), (4.555077490162455, 3.4758670058006946, 5.009948615011508, 5.645985448802367, 5.698463099990069, 3.2490115481216284, 2.851305285855058, 3.497368323357396, 6.308498902010905, 2.9786715525094243, 3.5278293933330693, 4.242517000205814, 5.0657796235608075), (4.324111854540319, 3.296604562458073, 4.760889666898678, 5.363124137374725, 5.41466510935213, 3.0887504916505666, 2.705656083031515, 3.325198225813849, 5.998855333886642, 2.828238777458067, 3.35008710501273, 4.029629434332179, 4.813256106799174), (4.0914728411219325, 3.1165111774659513, 4.5092631827753635, 5.077687343582883, 5.128020149534273, 2.9266388707649633, 2.5591219141900625, 3.1509895826340326, 5.68539877761257, 2.6766267433482245, 3.1708753191180357, 3.8148620288577786, 4.5582418557271245), (3.8579455743102966, 2.9361603713088282, 4.255974761990814, 4.790676934671116, 4.8395537742521135, 2.7632745065962827, 2.4121845494155174, 2.9753890042894655, 5.3693030105690855, 2.52435375376725, 2.9908122187381125, 3.598964412881627, 4.301646169828252), (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)) passenger_arriving_acc = ((6, 4, 3, 7, 5, 0, 4, 5, 1, 2, 1, 1, 0, 6, 4, 2, 3, 3, 2, 0, 1, 9, 1, 0, 0, 0), (15, 10, 7, 14, 9, 6, 4, 6, 2, 3, 2, 1, 0, 10, 11, 3, 4, 10, 4, 1, 4, 11, 3, 1, 0, 0), (22, 15, 13, 22, 13, 8, 6, 9, 5, 3, 3, 1, 0, 19, 16, 7, 5, 11, 8, 5, 4, 12, 5, 1, 0, 0), (29, 16, 21, 27, 17, 10, 9, 11, 6, 4, 3, 2, 0, 25, 19, 8, 10, 12, 12, 7, 5, 19, 8, 1, 0, 0), (34, 24, 24, 31, 17, 12, 13, 14, 10, 4, 4, 3, 0, 32, 22, 19, 14, 16, 14, 10, 7, 22, 9, 3, 0, 0), (47, 27, 27, 37, 20, 15, 15, 20, 14, 4, 5, 3, 0, 38, 29, 24, 18, 20, 17, 16, 7, 23, 11, 5, 1, 0), (53, 35, 30, 43, 22, 21, 19, 23, 17, 6, 5, 3, 0, 46, 30, 27, 21, 25, 21, 23, 10, 26, 13, 7, 1, 0), (60, 47, 40, 45, 30, 24, 20, 26, 18, 7, 7, 3, 0, 51, 35, 31, 26, 27, 25, 24, 12, 31, 16, 9, 4, 0), (72, 55, 45, 57, 34, 28, 24, 31, 21, 9, 9, 4, 0, 57, 42, 34, 32, 30, 30, 28, 12, 33, 18, 12, 6, 0), (79, 68, 56, 63, 39, 31, 28, 32, 24, 13, 10, 5, 0, 64, 51, 40, 34, 40, 35, 34, 16, 36, 21, 13, 6, 0), (84, 71, 64, 72, 42, 34, 30, 40, 26, 16, 11, 7, 0, 77, 53, 45, 37, 47, 43, 39, 20, 41, 21, 13, 7, 0), (98, 81, 70, 80, 46, 35, 37, 45, 29, 16, 12, 7, 0, 83, 66, 52, 44, 53, 44, 40, 23, 45, 22, 14, 8, 0), (109, 88, 78, 89, 50, 38, 42, 50, 32, 16, 13, 7, 0, 87, 75, 60, 48, 60, 48, 44, 24, 48, 24, 18, 10, 0), (112, 93, 87, 101, 59, 42, 44, 54, 35, 18, 15, 7, 0, 95, 79, 65, 50, 70, 53, 47, 25, 53, 28, 20, 10, 0), (122, 101, 99, 107, 67, 44, 49, 57, 38, 19, 17, 7, 0, 108, 90, 72, 56, 76, 58, 51, 26, 53, 32, 20, 10, 0), (135, 116, 101, 117, 75, 46, 52, 58, 41, 20, 20, 8, 0, 120, 96, 78, 62, 84, 63, 55, 28, 54, 38, 20, 10, 0), (141, 129, 106, 128, 81, 50, 55, 62, 44, 20, 21, 9, 0, 127, 106, 85, 69, 87, 66, 57, 35, 59, 40, 21, 10, 0), (149, 143, 112, 142, 85, 51, 58, 63, 47, 22, 22, 10, 0, 132, 112, 94, 72, 99, 72, 57, 40, 64, 42, 21, 10, 0), (160, 151, 118, 148, 91, 56, 65, 65, 49, 22, 25, 12, 0, 140, 119, 101, 78, 109, 77, 67, 44, 69, 45, 26, 10, 0), (171, 160, 125, 158, 96, 60, 69, 69, 54, 23, 28, 12, 0, 151, 125, 105, 86, 116, 81, 70, 46, 74, 48, 29, 10, 0), (185, 166, 134, 169, 101, 63, 74, 71, 61, 24, 28, 14, 0, 165, 131, 109, 90, 123, 86, 73, 49, 81, 51, 29, 11, 0), (192, 178, 141, 177, 109, 63, 77, 73, 68, 25, 29, 15, 0, 176, 137, 115, 94, 134, 91, 78, 51, 84, 55, 31, 12, 0), (201, 183, 153, 189, 118, 67, 78, 77, 71, 28, 30, 15, 0, 186, 149, 118, 98, 143, 95, 84, 51, 89, 57, 32, 12, 0), (210, 192, 163, 197, 125, 71, 82, 80, 75, 30, 31, 16, 0, 195, 158, 123, 102, 153, 103, 87, 55, 92, 60, 35, 13, 0), (219, 207, 178, 212, 127, 74, 88, 83, 77, 32, 31, 17, 0, 204, 164, 128, 105, 163, 109, 90, 60, 96, 64, 35, 16, 0), (233, 215, 191, 224, 138, 79, 93, 87, 80, 35, 34, 17, 0, 209, 167, 137, 113, 168, 115, 92, 65, 98, 69, 35, 17, 0), (242, 226, 198, 233, 143, 83, 96, 94, 85, 39, 35, 18, 0, 215, 176, 146, 115, 175, 122, 95, 65, 102, 72, 39, 18, 0), (251, 238, 210, 240, 151, 86, 98, 99, 87, 41, 35, 19, 0, 226, 183, 156, 116, 179, 130, 99, 66, 103, 76, 41, 19, 0), (258, 250, 223, 248, 154, 86, 101, 102, 93, 41, 35, 20, 0, 238, 190, 162, 124, 189, 136, 101, 68, 104, 79, 42, 21, 0), (274, 259, 230, 259, 159, 91, 102, 109, 94, 42, 35, 20, 0, 248, 198, 174, 136, 195, 138, 106, 75, 106, 82, 42, 22, 0), (282, 266, 237, 265, 167, 96, 109, 113, 102, 44, 38, 21, 0, 260, 204, 179, 143, 199, 146, 109, 78, 110, 84, 43, 24, 0), (289, 276, 247, 274, 176, 100, 113, 116, 104, 46, 39, 21, 0, 264, 212, 187, 150, 205, 150, 113, 80, 116, 86, 43, 29, 0), (299, 291, 254, 284, 186, 103, 116, 121, 110, 47, 40, 22, 0, 277, 220, 196, 157, 209, 153, 115, 80, 119, 90, 45, 29, 0), (312, 299, 264, 291, 195, 107, 119, 126, 114, 50, 41, 23, 0, 287, 228, 203, 165, 219, 161, 122, 84, 126, 93, 46, 30, 0), (321, 308, 271, 300, 201, 110, 121, 131, 117, 51, 43, 25, 0, 299, 236, 209, 170, 224, 164, 125, 87, 131, 98, 49, 30, 0), (330, 316, 279, 312, 213, 116, 126, 132, 119, 51, 46, 26, 0, 309, 249, 223, 174, 234, 169, 127, 90, 134, 103, 51, 30, 0), (337, 329, 286, 323, 220, 118, 128, 135, 127, 51, 49, 28, 0, 319, 254, 228, 180, 244, 178, 129, 93, 135, 104, 54, 33, 0), (350, 337, 297, 332, 233, 120, 132, 136, 132, 51, 50, 28, 0, 325, 260, 232, 185, 253, 186, 133, 98, 139, 106, 54, 33, 0), (359, 343, 300, 341, 241, 124, 135, 141, 136, 54, 54, 28, 0, 342, 267, 236, 192, 260, 190, 139, 102, 142, 110, 59, 33, 0), (367, 353, 308, 356, 252, 125, 138, 143, 139, 56, 56, 30, 0, 354, 279, 240, 200, 267, 193, 144, 103, 148, 111, 60, 34, 0), (372, 361, 315, 363, 258, 127, 141, 144, 142, 56, 57, 30, 0, 361, 283, 250, 204, 270, 199, 151, 105, 154, 113, 62, 35, 0), (387, 369, 324, 369, 261, 129, 144, 148, 145, 58, 59, 30, 0, 372, 291, 260, 215, 282, 206, 152, 106, 158, 115, 63, 36, 0), (397, 374, 332, 376, 270, 130, 153, 151, 152, 58, 60, 31, 0, 385, 301, 263, 221, 292, 216, 158, 109, 163, 121, 66, 37, 0), (403, 384, 336, 380, 280, 132, 162, 155, 157, 60, 64, 31, 0, 396, 309, 267, 227, 300, 222, 160, 111, 167, 126, 69, 38, 0), (414, 389, 339, 385, 294, 137, 167, 162, 159, 60, 67, 33, 0, 405, 319, 272, 232, 307, 226, 166, 114, 168, 128, 70, 38, 0), (419, 395, 350, 394, 303, 141, 169, 170, 164, 61, 71, 34, 0, 413, 327, 278, 242, 317, 232, 172, 117, 173, 132, 70, 38, 0), (433, 400, 359, 405, 315, 145, 171, 174, 167, 63, 71, 34, 0, 426, 336, 290, 245, 321, 236, 180, 118, 178, 135, 71, 38, 0), (444, 406, 367, 418, 322, 150, 178, 177, 172, 65, 73, 35, 0, 432, 342, 296, 254, 326, 242, 183, 121, 180, 138, 73, 41, 0), (455, 411, 375, 424, 336, 153, 182, 184, 173, 67, 75, 35, 0, 439, 352, 305, 255, 333, 247, 186, 122, 183, 142, 74, 42, 0), (464, 418, 383, 432, 339, 154, 186, 188, 175, 73, 77, 36, 0, 448, 354, 316, 261, 336, 251, 188, 124, 186, 145, 79, 42, 0), (474, 428, 393, 437, 344, 158, 189, 195, 178, 76, 78, 37, 0, 457, 366, 320, 267, 343, 256, 190, 125, 187, 149, 79, 43, 0), (483, 439, 400, 446, 350, 162, 193, 200, 179, 77, 79, 38, 0, 478, 371, 326, 270, 351, 262, 194, 126, 190, 150, 79, 44, 0), (498, 447, 405, 451, 359, 164, 196, 203, 180, 78, 79, 39, 0, 485, 382, 336, 276, 359, 267, 197, 129, 191, 154, 79, 44, 0), (513, 460, 412, 456, 369, 169, 203, 208, 183, 79, 80, 39, 0, 494, 389, 346, 282, 371, 273, 202, 133, 192, 157, 80, 44, 0), (524, 472, 428, 462, 377, 176, 207, 209, 186, 81, 82, 39, 0, 501, 397, 350, 285, 380, 276, 205, 135, 197, 160, 82, 44, 0), (534, 477, 438, 470, 386, 180, 214, 211, 192, 84, 86, 39, 0, 510, 408, 356, 292, 386, 281, 206, 136, 202, 166, 84, 44, 0), (548, 487, 446, 478, 388, 186, 218, 212, 195, 86, 87, 39, 0, 512, 414, 359, 298, 398, 286, 210, 136, 204, 169, 86, 45, 0), (559, 496, 453, 488, 399, 193, 224, 216, 200, 88, 88, 41, 0, 518, 423, 366, 300, 412, 293, 214, 137, 205, 170, 86, 46, 0), (569, 510, 460, 501, 406, 197, 229, 219, 203, 89, 88, 42, 0, 525, 428, 371, 304, 416, 297, 216, 140, 208, 170, 86, 47, 0), (578, 516, 464, 506, 419, 198, 232, 224, 207, 90, 89, 43, 0, 536, 436, 379, 311, 427, 299, 219, 144, 214, 172, 88, 49, 0), (584, 521, 473, 522, 422, 204, 234, 226, 209, 91, 91, 43, 0, 539, 440, 389, 317, 436, 305, 223, 148, 221, 173, 89, 49, 0), (590, 525, 478, 531, 427, 204, 236, 230, 213, 91, 92, 43, 0, 550, 449, 391, 325, 441, 309, 228, 149, 228, 177, 90, 50, 0), (607, 531, 485, 541, 434, 205, 242, 234, 214, 92, 92, 43, 0, 561, 456, 399, 328, 451, 311, 232, 151, 233, 184, 91, 51, 0), (614, 538, 489, 554, 444, 208, 243, 235, 217, 93, 92, 44, 0, 571, 461, 408, 331, 463, 316, 235, 154, 240, 188, 95, 51, 0), (627, 545, 497, 564, 448, 209, 247, 240, 220, 94, 93, 44, 0, 579, 468, 414, 336, 472, 320, 243, 155, 242, 191, 97, 52, 0), (639, 552, 501, 572, 459, 215, 250, 242, 222, 97, 96, 44, 0, 597, 481, 423, 341, 478, 323, 246, 157, 245, 196, 100, 53, 0), (653, 561, 507, 581, 468, 217, 253, 247, 225, 98, 97, 44, 0, 605, 489, 428, 349, 484, 325, 248, 161, 248, 201, 101, 54, 0), (663, 571, 514, 592, 475, 222, 254, 253, 226, 101, 99, 45, 0, 615, 494, 437, 350, 491, 325, 256, 163, 250, 206, 102, 54, 0), (668, 575, 521, 606, 482, 225, 259, 256, 228, 104, 100, 46, 0, 621, 499, 445, 354, 499, 329, 263, 165, 255, 212, 103, 54, 0), (678, 587, 527, 621, 492, 227, 264, 257, 232, 107, 101, 46, 0, 630, 506, 452, 363, 508, 333, 267, 167, 262, 213, 105, 54, 0), (692, 599, 533, 629, 502, 231, 267, 259, 235, 109, 101, 46, 0, 634, 519, 456, 371, 517, 337, 272, 171, 266, 214, 106, 54, 0), (701, 608, 541, 639, 512, 235, 269, 263, 239, 112, 102, 47, 0, 646, 532, 462, 378, 529, 345, 276, 174, 269, 216, 107, 55, 0), (709, 618, 553, 650, 515, 237, 274, 269, 241, 114, 102, 48, 0, 657, 537, 464, 380, 535, 355, 280, 177, 272, 219, 108, 55, 0), (717, 627, 559, 656, 523, 244, 278, 275, 245, 120, 103, 50, 0, 665, 544, 468, 385, 543, 357, 284, 178, 277, 221, 109, 55, 0), (728, 635, 567, 664, 532, 247, 280, 278, 251, 124, 107, 50, 0, 680, 557, 478, 390, 551, 357, 288, 180, 278, 222, 110, 55, 0), (738, 642, 573, 673, 543, 250, 282, 281, 253, 127, 110, 52, 0, 690, 568, 485, 393, 560, 363, 290, 184, 285, 227, 115, 56, 0), (747, 651, 580, 682, 549, 253, 286, 285, 255, 130, 112, 53, 0, 697, 570, 491, 398, 563, 364, 295, 186, 288, 229, 115, 57, 0), (759, 660, 591, 693, 554, 255, 289, 286, 257, 132, 112, 54, 0, 705, 575, 501, 405, 572, 366, 296, 189, 292, 231, 117, 59, 0), (768, 670, 604, 701, 560, 258, 295, 290, 261, 133, 114, 54, 0, 719, 584, 508, 414, 581, 369, 297, 189, 295, 235, 118, 60, 0), (779, 678, 611, 711, 565, 263, 297, 291, 266, 137, 115, 54, 0, 727, 593, 516, 420, 589, 372, 301, 192, 300, 239, 121, 60, 0), (786, 684, 616, 719, 571, 265, 301, 292, 267, 139, 117, 54, 0, 738, 605, 520, 425, 596, 378, 303, 194, 300, 243, 124, 61, 0), (803, 693, 627, 731, 579, 266, 303, 294, 272, 139, 118, 54, 0, 744, 614, 526, 428, 608, 383, 305, 195, 309, 247, 127, 61, 0), (818, 703, 632, 735, 587, 269, 304, 295, 278, 141, 119, 54, 0, 759, 622, 531, 433, 616, 387, 310, 199, 313, 254, 132, 62, 0), (827, 712, 638, 750, 593, 275, 305, 300, 281, 142, 123, 55, 0, 769, 630, 539, 434, 619, 387, 310, 202, 317, 255, 136, 63, 0), (834, 720, 650, 757, 600, 279, 307, 302, 287, 142, 126, 55, 0, 777, 638, 544, 440, 629, 387, 314, 203, 320, 257, 139, 65, 0), (845, 726, 658, 765, 604, 283, 308, 305, 293, 143, 127, 58, 0, 782, 651, 550, 447, 637, 392, 316, 205, 323, 260, 141, 68, 0), (856, 735, 667, 773, 610, 287, 311, 309, 296, 147, 130, 58, 0, 799, 664, 556, 449, 642, 396, 319, 206, 324, 263, 144, 69, 0), (870, 740, 670, 781, 620, 291, 314, 311, 298, 151, 130, 58, 0, 809, 673, 561, 460, 652, 399, 322, 211, 328, 266, 146, 71, 0), (878, 749, 677, 796, 624, 295, 319, 312, 301, 153, 133, 59, 0, 819, 676, 566, 466, 658, 402, 325, 213, 335, 272, 147, 71, 0), (884, 758, 685, 804, 631, 299, 323, 314, 305, 155, 134, 61, 0, 831, 681, 571, 473, 661, 412, 327, 216, 340, 276, 150, 72, 0), (895, 767, 696, 813, 642, 305, 324, 315, 310, 156, 136, 62, 0, 836, 689, 577, 481, 666, 417, 331, 218, 343, 277, 154, 73, 0), (908, 781, 702, 820, 647, 310, 327, 318, 317, 157, 136, 63, 0, 852, 698, 580, 489, 673, 421, 335, 219, 348, 278, 158, 73, 0), (920, 786, 710, 827, 650, 312, 332, 318, 317, 159, 137, 63, 0, 860, 703, 583, 491, 683, 429, 340, 222, 353, 279, 160, 74, 0), (927, 792, 714, 831, 654, 313, 335, 321, 322, 160, 137, 65, 0, 871, 717, 587, 497, 695, 429, 344, 224, 357, 285, 161, 74, 0), (936, 797, 724, 846, 666, 316, 338, 326, 326, 161, 138, 67, 0, 884, 726, 592, 503, 703, 434, 348, 224, 363, 288, 163, 74, 0), (943, 807, 729, 856, 678, 323, 341, 327, 329, 163, 138, 68, 0, 893, 732, 596, 507, 713, 438, 348, 226, 370, 291, 164, 74, 0), (955, 813, 740, 867, 683, 327, 344, 328, 332, 164, 139, 69, 0, 906, 740, 598, 514, 722, 440, 353, 229, 373, 295, 165, 74, 0), (965, 818, 745, 876, 693, 332, 345, 331, 335, 165, 140, 69, 0, 913, 750, 603, 516, 734, 446, 359, 233, 380, 298, 165, 76, 0), (971, 831, 755, 885, 698, 334, 347, 334, 339, 165, 141, 70, 0, 919, 763, 608, 517, 746, 449, 362, 235, 381, 298, 166, 76, 0), (978, 839, 764, 888, 705, 339, 353, 336, 342, 166, 142, 70, 0, 929, 768, 615, 528, 751, 453, 367, 235, 387, 300, 168, 76, 0), (988, 844, 771, 894, 716, 341, 358, 338, 346, 166, 142, 70, 0, 938, 773, 619, 533, 758, 456, 373, 237, 388, 301, 170, 77, 0), (997, 853, 778, 904, 724, 344, 360, 339, 347, 167, 145, 70, 0, 952, 782, 625, 542, 766, 459, 375, 237, 392, 307, 172, 78, 0), (1010, 860, 787, 911, 728, 350, 362, 343, 353, 167, 146, 71, 0, 966, 788, 633, 549, 773, 460, 377, 238, 393, 309, 172, 78, 0), (1019, 870, 802, 915, 734, 351, 366, 344, 359, 174, 147, 71, 0, 984, 797, 641, 557, 780, 460, 380, 241, 397, 314, 173, 78, 0), (1029, 875, 810, 923, 738, 355, 367, 345, 363, 176, 150, 72, 0, 993, 805, 645, 565, 788, 462, 380, 242, 401, 319, 174, 78, 0), (1038, 887, 818, 937, 746, 359, 371, 346, 364, 177, 151, 73, 0, 1003, 813, 652, 567, 797, 468, 381, 243, 406, 322, 175, 80, 0), (1048, 893, 825, 943, 749, 360, 375, 346, 366, 178, 154, 74, 0, 1008, 815, 664, 572, 804, 469, 384, 243, 412, 323, 177, 80, 0), (1054, 899, 830, 955, 757, 360, 378, 347, 371, 179, 154, 75, 0, 1013, 826, 666, 574, 814, 477, 387, 243, 413, 323, 177, 81, 0), (1063, 909, 840, 965, 762, 364, 380, 349, 376, 179, 157, 75, 0, 1027, 832, 674, 577, 818, 481, 389, 246, 413, 327, 178, 81, 0), (1068, 915, 848, 969, 766, 368, 383, 350, 376, 180, 159, 75, 0, 1043, 845, 682, 580, 828, 485, 393, 251, 416, 328, 180, 81, 0), (1076, 925, 858, 976, 774, 368, 387, 351, 381, 180, 159, 77, 0, 1054, 853, 686, 585, 834, 489, 396, 254, 417, 330, 182, 81, 0), (1087, 929, 864, 984, 787, 370, 392, 352, 384, 181, 160, 78, 0, 1062, 858, 692, 588, 839, 497, 398, 256, 421, 332, 183, 83, 0), (1093, 935, 872, 989, 794, 376, 392, 355, 385, 181, 163, 78, 0, 1072, 863, 698, 589, 846, 501, 402, 257, 426, 335, 184, 83, 0), (1103, 943, 880, 998, 802, 384, 393, 357, 387, 183, 164, 78, 0, 1082, 867, 702, 595, 858, 509, 403, 258, 430, 337, 184, 84, 0), (1110, 950, 886, 1005, 809, 391, 398, 364, 391, 183, 167, 78, 0, 1092, 871, 705, 597, 868, 511, 408, 260, 437, 339, 184, 85, 0), (1116, 960, 897, 1015, 815, 396, 402, 367, 395, 186, 167, 78, 0, 1102, 879, 707, 601, 874, 514, 410, 263, 447, 339, 186, 85, 0), (1133, 963, 903, 1024, 821, 399, 404, 368, 398, 187, 168, 79, 0, 1112, 882, 712, 611, 881, 516, 420, 266, 448, 343, 187, 87, 0), (1145, 968, 909, 1033, 823, 403, 408, 370, 401, 187, 168, 79, 0, 1125, 893, 714, 615, 884, 516, 421, 268, 451, 346, 187, 87, 0), (1156, 976, 917, 1037, 835, 405, 409, 371, 403, 188, 169, 79, 0, 1138, 897, 721, 618, 887, 523, 424, 270, 454, 348, 187, 87, 0), (1166, 986, 925, 1048, 843, 407, 411, 375, 409, 191, 170, 79, 0, 1147, 905, 726, 622, 894, 526, 429, 272, 457, 349, 188, 88, 0), (1174, 993, 935, 1053, 850, 408, 414, 377, 410, 191, 170, 80, 0, 1156, 913, 731, 624, 901, 531, 430, 274, 459, 349, 189, 88, 0), (1179, 1009, 944, 1062, 853, 411, 416, 383, 414, 192, 171, 80, 0, 1165, 916, 738, 630, 908, 535, 437, 276, 462, 356, 189, 88, 0), (1189, 1017, 950, 1068, 861, 416, 418, 389, 418, 196, 174, 80, 0, 1174, 925, 745, 635, 917, 539, 440, 278, 465, 361, 190, 88, 0), (1195, 1029, 956, 1082, 864, 421, 422, 390, 420, 199, 175, 81, 0, 1189, 932, 750, 638, 924, 542, 443, 283, 470, 363, 190, 88, 0), (1202, 1036, 964, 1092, 871, 424, 427, 391, 423, 201, 177, 82, 0, 1201, 937, 759, 642, 929, 544, 448, 283, 475, 364, 191, 88, 0), (1215, 1045, 969, 1097, 881, 431, 432, 392, 426, 202, 177, 84, 0, 1209, 939, 763, 644, 934, 547, 452, 286, 481, 367, 194, 90, 0), (1225, 1049, 973, 1106, 891, 434, 436, 394, 429, 203, 178, 84, 0, 1221, 952, 767, 645, 941, 549, 457, 289, 488, 371, 196, 90, 0), (1235, 1061, 981, 1113, 897, 436, 442, 398, 432, 204, 178, 84, 0, 1232, 960, 770, 649, 948, 549, 459, 293, 492, 373, 199, 90, 0), (1241, 1068, 984, 1120, 904, 437, 445, 401, 438, 204, 178, 84, 0, 1243, 962, 782, 653, 953, 551, 460, 294, 494, 380, 200, 90, 0), (1249, 1080, 993, 1129, 908, 441, 447, 402, 443, 207, 181, 86, 0, 1254, 966, 787, 657, 961, 555, 465, 294, 498, 382, 201, 90, 0), (1255, 1084, 995, 1140, 911, 447, 447, 404, 445, 208, 182, 87, 0, 1261, 972, 791, 660, 970, 563, 468, 295, 500, 387, 201, 90, 0), (1264, 1089, 1006, 1147, 921, 453, 451, 407, 447, 208, 183, 87, 0, 1271, 974, 798, 664, 974, 568, 473, 297, 501, 392, 201, 90, 0), (1276, 1096, 1016, 1153, 930, 457, 453, 413, 454, 208, 185, 88, 0, 1273, 981, 805, 665, 983, 571, 476, 300, 502, 393, 202, 91, 0), (1280, 1110, 1024, 1158, 937, 464, 457, 413, 457, 208, 186, 88, 0, 1284, 992, 810, 670, 992, 574, 478, 301, 507, 396, 203, 93, 0), (1294, 1117, 1031, 1168, 942, 466, 462, 418, 459, 208, 186, 88, 0, 1298, 999, 814, 674, 995, 577, 479, 301, 511, 398, 204, 94, 0), (1299, 1120, 1035, 1176, 950, 470, 463, 422, 468, 209, 187, 88, 0, 1306, 1005, 824, 676, 1003, 581, 482, 305, 513, 401, 204, 94, 0), (1303, 1127, 1045, 1186, 956, 471, 465, 428, 475, 210, 188, 90, 0, 1312, 1013, 828, 684, 1008, 587, 486, 309, 515, 403, 205, 95, 0), (1305, 1139, 1054, 1189, 963, 475, 467, 429, 478, 211, 190, 91, 0, 1319, 1021, 831, 690, 1017, 589, 490, 309, 517, 404, 207, 95, 0), (1313, 1148, 1059, 1198, 966, 479, 471, 430, 482, 212, 192, 92, 0, 1328, 1027, 836, 693, 1025, 594, 494, 311, 519, 408, 208, 95, 0), (1320, 1157, 1068, 1210, 972, 483, 472, 432, 484, 215, 192, 92, 0, 1335, 1037, 840, 697, 1035, 595, 497, 315, 524, 410, 214, 96, 0), (1330, 1164, 1074, 1213, 976, 485, 479, 437, 486, 216, 192, 92, 0, 1348, 1043, 846, 702, 1049, 599, 502, 316, 528, 412, 216, 96, 0), (1339, 1173, 1079, 1218, 984, 487, 481, 443, 492, 218, 193, 92, 0, 1357, 1050, 849, 703, 1060, 601, 503, 319, 532, 416, 218, 96, 0), (1346, 1180, 1089, 1226, 991, 497, 484, 447, 494, 219, 193, 94, 0, 1364, 1055, 849, 708, 1068, 607, 505, 326, 535, 420, 218, 98, 0), (1357, 1185, 1096, 1235, 1000, 502, 488, 448, 494, 219, 196, 96, 0, 1374, 1061, 856, 712, 1079, 610, 508, 329, 539, 420, 218, 98, 0), (1366, 1191, 1108, 1243, 1010, 504, 493, 453, 497, 219, 197, 96, 0, 1381, 1066, 863, 717, 1085, 612, 511, 330, 542, 422, 218, 98, 0), (1375, 1194, 1112, 1252, 1018, 507, 496, 453, 500, 219, 199, 96, 0, 1395, 1070, 868, 719, 1089, 615, 513, 331, 545, 424, 219, 99, 0), (1385, 1205, 1120, 1261, 1027, 510, 499, 454, 503, 219, 203, 96, 0, 1401, 1081, 871, 724, 1099, 620, 514, 333, 547, 429, 220, 99, 0), (1389, 1213, 1126, 1267, 1031, 518, 502, 456, 505, 221, 203, 96, 0, 1407, 1090, 873, 732, 1110, 624, 514, 335, 549, 436, 222, 101, 0), (1399, 1217, 1133, 1272, 1035, 522, 506, 462, 509, 225, 205, 97, 0, 1415, 1092, 876, 733, 1116, 625, 519, 337, 551, 439, 223, 102, 0), (1409, 1221, 1140, 1284, 1042, 527, 511, 465, 510, 225, 205, 98, 0, 1427, 1093, 878, 741, 1122, 629, 521, 337, 554, 439, 224, 104, 0), (1421, 1235, 1150, 1292, 1049, 532, 514, 467, 513, 225, 205, 98, 0, 1433, 1096, 881, 745, 1130, 630, 521, 339, 559, 441, 227, 104, 0), (1431, 1239, 1161, 1302, 1055, 536, 516, 470, 516, 226, 205, 99, 0, 1444, 1102, 889, 749, 1136, 635, 523, 341, 563, 442, 228, 104, 0), (1440, 1243, 1168, 1313, 1060, 536, 517, 472, 519, 226, 206, 100, 0, 1451, 1111, 896, 752, 1143, 641, 523, 343, 567, 443, 230, 104, 0), (1447, 1244, 1171, 1318, 1067, 542, 519, 472, 519, 227, 206, 101, 0, 1465, 1113, 900, 754, 1150, 646, 526, 343, 570, 445, 233, 104, 0), (1453, 1255, 1174, 1322, 1071, 543, 522, 472, 520, 230, 206, 102, 0, 1471, 1121, 905, 756, 1155, 649, 527, 345, 572, 449, 235, 105, 0), (1459, 1258, 1181, 1332, 1079, 544, 525, 475, 522, 231, 207, 102, 0, 1475, 1126, 908, 756, 1168, 654, 529, 348, 575, 449, 237, 105, 0), (1465, 1265, 1186, 1335, 1080, 548, 529, 476, 523, 231, 208, 103, 0, 1480, 1127, 914, 758, 1176, 658, 530, 350, 576, 452, 239, 107, 0), (1478, 1269, 1196, 1343, 1087, 553, 531, 478, 525, 233, 209, 103, 0, 1492, 1133, 919, 761, 1183, 662, 532, 355, 579, 454, 239, 108, 0), (1481, 1276, 1203, 1348, 1091, 555, 537, 480, 527, 235, 210, 103, 0, 1499, 1140, 926, 762, 1191, 665, 533, 359, 582, 458, 239, 109, 0), (1493, 1282, 1206, 1354, 1099, 556, 540, 483, 529, 237, 211, 103, 0, 1510, 1142, 930, 764, 1195, 669, 534, 360, 585, 462, 239, 109, 0), (1501, 1285, 1213, 1357, 1104, 560, 540, 487, 531, 239, 211, 103, 0, 1520, 1145, 931, 767, 1203, 673, 537, 362, 586, 464, 244, 109, 0), (1508, 1294, 1218, 1360, 1111, 561, 543, 489, 534, 239, 213, 104, 0, 1525, 1154, 933, 770, 1211, 676, 540, 365, 591, 468, 246, 110, 0), (1516, 1301, 1222, 1365, 1119, 565, 545, 490, 538, 241, 213, 105, 0, 1529, 1162, 934, 776, 1215, 678, 542, 366, 595, 470, 248, 112, 0), (1524, 1308, 1232, 1369, 1124, 568, 548, 493, 540, 243, 214, 105, 0, 1538, 1168, 937, 779, 1225, 683, 545, 372, 598, 472, 248, 112, 0), (1528, 1310, 1235, 1376, 1130, 570, 552, 496, 543, 243, 215, 105, 0, 1541, 1172, 942, 783, 1231, 686, 548, 372, 603, 476, 251, 112, 0), (1535, 1316, 1239, 1380, 1134, 573, 556, 500, 546, 246, 215, 105, 0, 1546, 1180, 948, 784, 1236, 688, 550, 373, 605, 478, 252, 112, 0), (1543, 1323, 1249, 1385, 1138, 573, 560, 501, 552, 248, 215, 106, 0, 1550, 1183, 951, 786, 1245, 693, 554, 373, 606, 481, 254, 112, 0), (1550, 1330, 1256, 1399, 1144, 574, 562, 503, 555, 250, 215, 106, 0, 1555, 1191, 957, 787, 1249, 697, 554, 374, 606, 482, 256, 112, 0), (1555, 1334, 1260, 1406, 1148, 577, 562, 507, 556, 250, 217, 106, 0, 1566, 1192, 962, 791, 1253, 698, 558, 377, 609, 483, 256, 112, 0), (1560, 1341, 1270, 1408, 1156, 579, 565, 507, 560, 251, 218, 107, 0, 1571, 1194, 964, 794, 1258, 701, 559, 378, 610, 486, 256, 112, 0), (1569, 1341, 1274, 1414, 1160, 582, 567, 507, 561, 251, 219, 108, 0, 1581, 1196, 966, 796, 1261, 702, 560, 378, 613, 487, 259, 112, 0), (1578, 1345, 1278, 1417, 1162, 585, 568, 509, 564, 251, 220, 110, 0, 1588, 1200, 973, 798, 1267, 706, 563, 379, 615, 488, 261, 112, 0), (1583, 1348, 1284, 1423, 1165, 587, 570, 513, 564, 251, 220, 113, 0, 1592, 1206, 978, 802, 1270, 709, 563, 379, 617, 489, 261, 112, 0), (1588, 1349, 1287, 1427, 1169, 590, 573, 515, 567, 251, 220, 113, 0, 1597, 1210, 978, 804, 1278, 714, 563, 380, 618, 489, 262, 113, 0), (1592, 1352, 1290, 1431, 1174, 593, 574, 516, 568, 252, 220, 113, 0, 1601, 1216, 979, 807, 1282, 716, 564, 380, 619, 491, 263, 114, 0), (1594, 1355, 1294, 1435, 1179, 598, 575, 517, 569, 252, 222, 113, 0, 1607, 1219, 980, 816, 1282, 717, 565, 380, 619, 494, 264, 114, 0), (1598, 1357, 1298, 1441, 1181, 601, 576, 518, 573, 254, 223, 113, 0, 1614, 1222, 983, 816, 1287, 720, 567, 380, 620, 496, 265, 115, 0), (1605, 1360, 1300, 1447, 1187, 605, 577, 521, 573, 255, 224, 113, 0, 1624, 1227, 990, 818, 1291, 722, 568, 380, 623, 499, 265, 116, 0), (1608, 1366, 1305, 1453, 1191, 607, 578, 523, 573, 255, 224, 113, 0, 1628, 1230, 990, 819, 1296, 724, 568, 380, 624, 500, 265, 116, 0), (1608, 1366, 1305, 1453, 1191, 607, 578, 523, 573, 255, 224, 113, 0, 1628, 1230, 990, 819, 1296, 724, 568, 380, 624, 500, 265, 116, 0)) passenger_arriving_rate = ((5.020865578371768, 5.064847846385402, 4.342736024677089, 4.661000830397574, 3.7031237384064077, 1.8308820436884476, 2.0730178076869574, 1.938823405408093, 2.030033020722669, 0.9895037538805926, 0.7008775273142672, 0.4081595898588478, 0.0, 5.083880212578363, 4.489755488447325, 3.5043876365713356, 2.968511261641777, 4.060066041445338, 2.7143527675713304, 2.0730178076869574, 1.3077728883488913, 1.8515618692032039, 1.5536669434658585, 0.8685472049354179, 0.4604407133077639, 0.0), (5.354327152019974, 5.399222302966028, 4.629455492775127, 4.968858189957462, 3.948326891649491, 1.9518237573581576, 2.209734470631847, 2.066464051210712, 2.164081775444303, 1.0547451730692876, 0.7471826893260219, 0.4351013884011963, 0.0, 5.419791647439855, 4.786115272413158, 3.73591344663011, 3.164235519207862, 4.328163550888606, 2.8930496716949965, 2.209734470631847, 1.3941598266843982, 1.9741634458247455, 1.6562860633191545, 0.9258910985550255, 0.49083839117872996, 0.0), (5.686723008979731, 5.732269739983398, 4.915035237956178, 5.275490778498595, 4.192641982499829, 2.072282983465593, 2.345909253980352, 2.193593853293508, 2.297595602292516, 1.1197284437551367, 0.7933038581293855, 0.46193605433775464, 0.0, 5.75436482820969, 5.0812965977153, 3.9665192906469278, 3.3591853312654094, 4.595191204585032, 3.0710313946109116, 2.345909253980352, 1.480202131046852, 2.0963209912499146, 1.758496926166199, 0.9830070475912357, 0.5211154309075817, 0.0), (6.016757793146562, 6.062668793441743, 5.198342391099879, 5.579682305649055, 4.435107784001268, 2.191782029841316, 2.4810018208239777, 2.3197088156227115, 2.430045053640364, 1.1841956746065454, 0.8390580686378972, 0.4885571404108718, 0.0, 6.086272806254225, 5.374128544519589, 4.195290343189486, 3.5525870238196355, 4.860090107280728, 3.247592341871796, 2.4810018208239777, 1.5655585927437972, 2.217553892000634, 1.8598941018830188, 1.0396684782199759, 0.551151708494704, 0.0), (6.343136148415981, 6.389098099345293, 5.478244083085864, 5.880216481036927, 4.674763069197661, 2.3098432043158894, 2.6144718342542292, 2.444304942164548, 2.560900681860902, 1.24788897429192, 0.8842623557650959, 0.514858199362897, 0.0, 6.414188632939817, 5.6634401929918665, 4.42131177882548, 3.743666922875759, 5.121801363721804, 3.422026919030367, 2.6144718342542292, 1.6498880030827783, 2.3373815345988307, 1.9600721603456428, 1.095648816617173, 0.5808270999404813, 0.0), (6.66456271868351, 6.710236293698289, 5.753607444793765, 6.175877014290295, 4.910646611132853, 2.4259888147198754, 2.745778957362612, 2.566878236885247, 2.689633039327186, 1.310550451479666, 0.9287337544245222, 0.5407327839361791, 0.0, 6.736785359632827, 5.948060623297969, 4.64366877212261, 3.9316513544389973, 5.379266078654372, 3.593629531639346, 2.745778957362612, 1.7328491533713395, 2.4553233055664263, 2.058625671430099, 1.1507214889587531, 0.6100214812452991, 0.0), (6.979742147844666, 7.024762012504959, 6.023299607103222, 6.465447615037239, 5.141797182850695, 2.5397411688838374, 2.8743828532406313, 2.686924703751037, 2.8157126784122717, 1.3719222148381898, 0.9722892995297139, 0.5660744468730674, 0.0, 7.052736037699606, 6.22681891560374, 4.8614464976485685, 4.115766644514569, 5.631425356824543, 3.761694585251452, 2.8743828532406313, 1.8141008349170267, 2.5708985914253475, 2.1551492050124135, 1.2046599214206444, 0.6386147284095418, 0.0), (7.2873790797949685, 7.331353891769537, 6.286187700893863, 6.747711992905847, 5.367253557395036, 2.650622574638337, 2.9997431849797924, 2.8039403467281465, 2.9386101514892147, 1.4317463730358968, 1.0147460259942116, 0.5907767409159108, 0.0, 7.360713718506519, 6.498544150075018, 5.073730129971057, 4.2952391191076895, 5.877220302978429, 3.9255164854194056, 2.9997431849797924, 1.8933018390273837, 2.683626778697518, 2.249237330968616, 1.2572375401787725, 0.6664867174335943, 0.0), (7.586178158429934, 7.628690567496257, 6.54113885704533, 7.021453857524196, 5.586054507809724, 2.7581553398139356, 3.1213196156715988, 2.917421169782802, 3.0577960109310682, 1.4897650347411937, 1.0559209687315536, 0.6147332188070586, 0.0, 7.659391453419917, 6.762065406877643, 5.279604843657768, 4.469295104223581, 6.1155920218621365, 4.084389637695923, 3.1213196156715988, 1.970110957009954, 2.793027253904862, 2.3404846191747324, 1.3082277714090662, 0.6935173243178416, 0.0), (7.874844027645085, 7.915450675689353, 6.787020206437253, 7.285456918520376, 5.797238807138606, 2.861861772241199, 3.23857180840756, 3.0268631768812346, 3.1727408091108913, 1.5457203086224858, 1.0956311626552797, 0.6378374332888596, 0.0, 7.947442293806162, 7.016211766177453, 5.478155813276398, 4.637160925867456, 6.345481618221783, 4.237608447633728, 3.23857180840756, 2.044186980172285, 2.898619403569303, 2.4284856395067926, 1.3574040412874508, 0.7195864250626686, 0.0), (8.152081331335932, 8.190312852353056, 7.022698879949271, 7.538504885522466, 5.999845228425533, 2.961264179750688, 3.3509594262791773, 3.1317623719896712, 3.282915098401738, 1.599354303348179, 1.133693642678929, 0.6599829371036627, 0.0, 8.22353929103161, 7.259812308140289, 5.668468213394645, 4.798062910044536, 6.565830196803476, 4.384467320785539, 3.3509594262791773, 2.11518869982192, 2.9999226142127666, 2.5128349618408223, 1.4045397759898541, 0.7445738956684597, 0.0), (8.416594713398005, 8.451955733491605, 7.247042008461013, 7.779381468158547, 6.192912544714355, 3.055884870172965, 3.457942132377958, 3.2316147590743394, 3.3877894311766643, 1.6504091275866801, 1.1699254437160416, 0.6810632829938176, 0.0, 8.486355496462611, 7.491696112931993, 5.849627218580208, 4.951227382760039, 6.775578862353329, 4.524260662704076, 3.457942132377958, 2.1827749072664036, 3.0964562723571776, 2.5931271560528497, 1.4494084016922026, 0.7683596121356006, 0.0), (8.667088817726812, 8.699057955109222, 7.458916722852117, 8.006870376056709, 6.375479529048918, 3.1452461513385908, 3.5589795897954057, 3.325916342101467, 3.486834359808726, 1.6986268900063934, 1.2041436006801558, 0.7009720237016724, 0.0, 8.734563961465534, 7.710692260718395, 6.020718003400779, 5.095880670019179, 6.973668719617452, 4.656282878942054, 3.5589795897954057, 2.246604393813279, 3.187739764524459, 2.6689567920189035, 1.4917833445704234, 0.7908234504644749, 0.0), (8.902268288217876, 8.93029815321015, 7.657190154002218, 8.219755318845033, 6.546584954473067, 3.2288703310781304, 3.653531461623028, 3.414163125037284, 3.579520436670977, 1.7437496992757264, 1.2361651484848115, 0.7196027119695768, 0.0, 8.966837737406735, 7.915629831665344, 6.180825742424058, 5.2312490978271775, 7.159040873341954, 4.7798283750521975, 3.653531461623028, 2.306335950770093, 3.2732924772365335, 2.7399184396150114, 1.5314380308004438, 0.8118452866554684, 0.0), (9.120837768766716, 9.144354963798623, 7.840729432790956, 8.416820006151594, 6.705267594030659, 3.306279717222145, 3.7410574109523305, 3.4958511118480193, 3.6653182141364735, 1.785519664063084, 1.2658071220435476, 0.7368489005398801, 0.0, 9.181849875652563, 8.10533790593868, 6.329035610217737, 5.3565589921892505, 7.330636428272947, 4.894191556587227, 3.7410574109523305, 2.3616283694443894, 3.3526337970153297, 2.8056066687171985, 1.5681458865581912, 0.8313049967089657, 0.0), (9.321501903268855, 9.339907022878865, 8.008401690097953, 8.59684814760449, 6.850566220765538, 3.376996617601199, 3.821017100874813, 3.5704763064998986, 3.743698244578273, 1.823678893036873, 1.2928865562699035, 0.752604142154931, 0.0, 9.37827342756938, 8.27864556370424, 6.464432781349516, 5.471036679110618, 7.487396489156546, 4.998666829099858, 3.821017100874813, 2.4121404411437135, 3.425283110382769, 2.865616049201497, 1.6016803380195905, 0.8490824566253515, 0.0), (9.5029653356198, 9.51563296645512, 8.159074056802854, 8.758623452831788, 6.981519607721555, 3.4405433400458514, 3.892870194481988, 3.6375347129591504, 3.8141310803694286, 1.8579694948654994, 1.3172204860774188, 0.7667619895570784, 0.0, 9.554781444523545, 8.434381885127861, 6.586102430387094, 5.5739084845964975, 7.628262160738857, 5.092548598142811, 3.892870194481988, 2.4575309571756083, 3.4907598038607777, 2.9195411509439295, 1.6318148113605708, 0.8650575424050111, 0.0), (9.663932709715075, 9.670211430531618, 8.291613663785293, 8.900929631461583, 7.097166527942559, 3.4964421923866666, 3.9560763548653552, 3.6965223351920073, 3.8760872738829946, 1.8881335782173672, 1.3386259463796333, 0.7792159954886714, 0.0, 9.710046977881415, 8.571375950375383, 6.693129731898166, 5.6644007346521, 7.752174547765989, 5.17513126926881, 3.9560763548653552, 2.4974587088476192, 3.5485832639712793, 2.9669765438205284, 1.6583227327570589, 0.8791101300483289, 0.0), (9.803108669450204, 9.802321051112584, 8.404887641924901, 9.022550393121959, 7.1965457544723925, 3.5442154824542103, 4.010095245116426, 3.746935177164692, 3.929037377492032, 1.9139132517608846, 1.3569199720900849, 0.7898597126920597, 0.0, 9.842743079009345, 8.688456839612655, 6.784599860450424, 5.741739755282652, 7.858074754984064, 5.245709248030569, 4.010095245116426, 2.531582487467293, 3.5982728772361963, 3.0075167977073205, 1.6809775283849802, 0.8911200955556896, 0.0), (9.919197858720699, 9.910640464202265, 8.497763122101317, 9.122269447440985, 7.2786960603549105, 3.5833855180790386, 4.054386528326697, 3.7882692428434357, 3.9724519435695926, 1.9350506241644574, 1.3719195981223131, 0.7985866939095915, 0.0, 9.951542799273696, 8.784453633005505, 6.859597990611565, 5.80515187249337, 7.944903887139185, 5.30357693998081, 4.054386528326697, 2.55956108434217, 3.6393480301774552, 3.0407564824803295, 1.6995526244202632, 0.9009673149274788, 0.0), (10.010904921422082, 9.993848305804882, 8.569107235194169, 9.198870504046766, 7.342656218633962, 3.613474607091719, 4.088409867587681, 3.8200205361944657, 4.005801524488732, 1.95128780409649, 1.3834418593898585, 0.805290491883616, 0.0, 10.035119190040824, 8.858195410719775, 6.9172092969492915, 5.853863412289469, 8.011603048977465, 5.348028750672252, 4.088409867587681, 2.5810532907797996, 3.671328109316981, 3.0662901680155894, 1.713821447038834, 0.9085316641640803, 0.0), (10.076934501449866, 10.050623211924679, 8.6177871120831, 9.251137272567364, 7.387465002353392, 3.6340050573228124, 4.1116249259908795, 3.84168506118401, 4.028556672622507, 1.9623669002253892, 1.39130379080626, 0.8098646593564828, 0.0, 10.092145302677078, 8.90851125292131, 6.9565189540313, 5.887100700676166, 8.057113345245014, 5.378359085657614, 4.1116249259908795, 2.5957178980877234, 3.693732501176696, 3.0837124241891223, 1.72355742241662, 0.91369301926588, 0.0), (10.115991242699579, 10.079643818565883, 8.642669883647738, 9.277853462630876, 7.41216118455705, 3.644499176602881, 4.1234913666278, 3.852758821778298, 4.040187940343971, 1.968030021219561, 1.3953224272850568, 0.8122027490705409, 0.0, 10.121294188548827, 8.934230239775948, 6.976612136425284, 5.904090063658682, 8.080375880687942, 5.393862350489617, 4.1234913666278, 2.6032136975734863, 3.706080592278525, 3.09261782087696, 1.7285339767295478, 0.9163312562332622, 0.0), (10.13039336334264, 10.083079961133974, 8.645769318701419, 9.281198109567903, 7.418488037355065, 3.6458333333333335, 4.124902001129669, 3.8539557613168727, 4.0416420781893, 1.9686980681298587, 1.3958263395269568, 0.8124914647157445, 0.0, 10.125, 8.93740611187319, 6.9791316976347835, 5.906094204389575, 8.0832841563786, 5.395538065843622, 4.124902001129669, 2.604166666666667, 3.7092440186775324, 3.0937327031893016, 1.729153863740284, 0.9166436328303613, 0.0), (10.141012413034153, 10.08107561728395, 8.645262345679013, 9.280786458333335, 7.422071742409901, 3.6458333333333335, 4.124126906318083, 3.852291666666667, 4.041447222222222, 1.968287654320988, 1.39577076318743, 0.8124238683127573, 0.0, 10.125, 8.936662551440328, 6.978853815937151, 5.904862962962962, 8.082894444444443, 5.393208333333334, 4.124126906318083, 2.604166666666667, 3.7110358712049507, 3.0935954861111123, 1.7290524691358027, 0.9164614197530866, 0.0), (10.15140723021158, 10.077124771376313, 8.644261545496114, 9.279972029320987, 7.4255766303963355, 3.6458333333333335, 4.122599451303155, 3.8490226337448563, 4.041062242798354, 1.96747970964792, 1.3956605665710604, 0.8122904282883707, 0.0, 10.125, 8.935194711172077, 6.978302832855302, 5.902439128943758, 8.082124485596708, 5.388631687242799, 4.122599451303155, 2.604166666666667, 3.7127883151981678, 3.0933240097736636, 1.728852309099223, 0.9161022519433014, 0.0), (10.161577019048034, 10.071287780064015, 8.642780635573846, 9.278764081790122, 7.429002578947403, 3.6458333333333335, 4.120343359154361, 3.8442103909465026, 4.0404920781893, 1.9662876771833566, 1.3954967473084758, 0.8120929736320684, 0.0, 10.125, 8.933022709952752, 6.977483736542379, 5.898863031550069, 8.0809841563786, 5.381894547325103, 4.120343359154361, 2.604166666666667, 3.7145012894737013, 3.0929213605967085, 1.7285561271147696, 0.915571616369456, 0.0), (10.171520983716636, 10.063624999999998, 8.640833333333333, 9.277171874999999, 7.432349465696142, 3.6458333333333335, 4.117382352941177, 3.837916666666667, 4.039741666666666, 1.9647250000000003, 1.3952803030303031, 0.8118333333333335, 0.0, 10.125, 8.930166666666667, 6.976401515151515, 5.894175, 8.079483333333332, 5.373083333333334, 4.117382352941177, 2.604166666666667, 3.716174732848071, 3.0923906250000006, 1.7281666666666669, 0.914875, 0.0), (10.181238328390501, 10.054196787837219, 8.638433356195703, 9.275204668209877, 7.4356171682756, 3.6458333333333335, 4.113740155733075, 3.830203189300412, 4.038815946502057, 1.9628051211705537, 1.3950122313671698, 0.8115133363816492, 0.0, 10.125, 8.926646700198141, 6.9750611568358485, 5.88841536351166, 8.077631893004114, 5.3622844650205765, 4.113740155733075, 2.604166666666667, 3.7178085841378, 3.091734889403293, 1.7276866712391405, 0.9140178898033837, 0.0), (10.19072825724275, 10.043063500228623, 8.635594421582077, 9.272871720679012, 7.438805564318813, 3.6458333333333335, 4.109440490599533, 3.821131687242798, 4.037719855967078, 1.9605414837677189, 1.3946935299497027, 0.811134811766499, 0.0, 10.125, 8.922482929431489, 6.973467649748514, 5.881624451303155, 8.075439711934155, 5.349584362139917, 4.109440490599533, 2.604166666666667, 3.7194027821594067, 3.0909572402263383, 1.7271188843164156, 0.9130057727480568, 0.0), (10.199989974446497, 10.03028549382716, 8.63233024691358, 9.270182291666666, 7.441914531458824, 3.6458333333333335, 4.104507080610022, 3.8107638888888884, 4.036458333333333, 1.957947530864198, 1.39432519640853, 0.8106995884773662, 0.0, 10.125, 8.917695473251028, 6.9716259820426485, 5.873842592592593, 8.072916666666666, 5.335069444444444, 4.104507080610022, 2.604166666666667, 3.720957265729412, 3.0900607638888897, 1.7264660493827162, 0.9118441358024693, 0.0), (10.209022684174858, 10.01592312528578, 8.62865454961134, 9.267145640432098, 7.444943947328672, 3.6458333333333335, 4.09896364883402, 3.799161522633745, 4.035036316872428, 1.9550367055326936, 1.3939082283742779, 0.8102094955037343, 0.0, 10.125, 8.912304450541077, 6.969541141871389, 5.865110116598079, 8.070072633744855, 5.318826131687243, 4.09896364883402, 2.604166666666667, 3.722471973664336, 3.0890485468107003, 1.7257309099222682, 0.910538465935071, 0.0), (10.217825590600954, 10.00003675125743, 8.624581047096479, 9.263771026234568, 7.447893689561397, 3.6458333333333335, 4.092833918340999, 3.7863863168724285, 4.033458744855967, 1.951822450845908, 1.3934436234775742, 0.8096663618350862, 0.0, 10.125, 8.906329980185948, 6.96721811738787, 5.8554673525377225, 8.066917489711933, 5.3009408436214, 4.092833918340999, 2.604166666666667, 3.7239468447806985, 3.0879236754115236, 1.7249162094192958, 0.909094250114312, 0.0), (10.226397897897897, 9.98268672839506, 8.620123456790123, 9.260067708333333, 7.450763635790041, 3.6458333333333335, 4.086141612200436, 3.7725000000000004, 4.031730555555555, 1.9483182098765437, 1.392932379349046, 0.8090720164609053, 0.0, 10.125, 8.899792181069957, 6.96466189674523, 5.84495462962963, 8.06346111111111, 5.2815, 4.086141612200436, 2.604166666666667, 3.7253818178950207, 3.086689236111112, 1.724024691358025, 0.9075169753086421, 0.0), (10.23473881023881, 9.963933413351622, 8.615295496113397, 9.256044945987654, 7.453553663647644, 3.6458333333333335, 4.078910453481805, 3.7575643004115222, 4.029856687242798, 1.9445374256973027, 1.3923754936193207, 0.8084282883706753, 0.0, 10.125, 8.892711172077426, 6.961877468096604, 5.833612277091907, 8.059713374485597, 5.260590020576132, 4.078910453481805, 2.604166666666667, 3.726776831823822, 3.085348315329219, 1.7230590992226795, 0.9058121284865113, 0.0), (10.242847531796807, 9.943837162780063, 8.610110882487428, 9.25171199845679, 7.456263650767246, 3.6458333333333335, 4.071164165254579, 3.741640946502058, 4.0278420781893, 1.9404935413808875, 1.3917739639190256, 0.807737006553879, 0.0, 10.125, 8.88510707209267, 6.958869819595128, 5.821480624142661, 8.0556841563786, 5.238297325102881, 4.071164165254579, 2.604166666666667, 3.728131825383623, 3.0839039994855972, 1.7220221764974855, 0.9039851966163696, 0.0), (10.250723266745005, 9.922458333333331, 8.604583333333334, 9.247078125, 7.45889347478189, 3.6458333333333335, 4.062926470588235, 3.724791666666667, 4.025691666666666, 1.9362000000000004, 1.391128787878788, 0.8070000000000002, 0.0, 10.125, 8.877, 6.95564393939394, 5.8086, 8.051383333333332, 5.214708333333334, 4.062926470588235, 2.604166666666667, 3.729446737390945, 3.0823593750000007, 1.7209166666666669, 0.9020416666666666, 0.0), (10.258365219256524, 9.89985728166438, 8.598726566072246, 9.242152584876543, 7.4614430133246135, 3.6458333333333335, 4.054221092552247, 3.707078189300412, 4.023410390946502, 1.931670244627344, 1.3904409631292352, 0.8062190976985216, 0.0, 10.125, 8.868410074683737, 6.952204815646175, 5.79501073388203, 8.046820781893004, 5.189909465020577, 4.054221092552247, 2.604166666666667, 3.7307215066623067, 3.080717528292182, 1.7197453132144491, 0.8999870256058529, 0.0), (10.265772593504476, 9.876094364426155, 8.592554298125286, 9.23694463734568, 7.46391214402846, 3.6458333333333335, 4.04507175421609, 3.6885622427983544, 4.021003189300411, 1.92691771833562, 1.3897114873009937, 0.8053961286389272, 0.0, 10.125, 8.859357415028198, 6.948557436504967, 5.780753155006859, 8.042006378600822, 5.163987139917697, 4.04507175421609, 2.604166666666667, 3.73195607201423, 3.078981545781894, 1.7185108596250571, 0.8978267604023779, 0.0), (10.272944593661986, 9.851229938271604, 8.586080246913582, 9.231463541666667, 7.466300744526468, 3.6458333333333335, 4.035502178649238, 3.6693055555555554, 4.0184750000000005, 1.9219558641975314, 1.3889413580246914, 0.8045329218106996, 0.0, 10.125, 8.849862139917693, 6.944706790123457, 5.765867592592593, 8.036950000000001, 5.137027777777778, 4.035502178649238, 2.604166666666667, 3.733150372263234, 3.07715451388889, 1.7172160493827164, 0.8955663580246914, 0.0), (10.279880423902163, 9.82532435985368, 8.579318129858253, 9.225718557098766, 7.468608692451679, 3.6458333333333335, 4.025536088921165, 3.649369855967079, 4.015830761316872, 1.9167981252857802, 1.3881315729309558, 0.8036313062033228, 0.0, 10.125, 8.83994436823655, 6.940657864654778, 5.750394375857339, 8.031661522633744, 5.1091177983539104, 4.025536088921165, 2.604166666666667, 3.7343043462258394, 3.0752395190329227, 1.7158636259716507, 0.8932113054412438, 0.0), (10.286579288398128, 9.79843798582533, 8.57228166438043, 9.219718942901235, 7.4708358654371345, 3.6458333333333335, 4.015197208101347, 3.628816872427984, 4.0130754115226335, 1.9114579446730684, 1.3872831296504138, 0.8026931108062796, 0.0, 10.125, 8.829624218869075, 6.936415648252069, 5.734373834019204, 8.026150823045267, 5.0803436213991775, 4.015197208101347, 2.604166666666667, 3.7354179327185673, 3.073239647633746, 1.7144563328760862, 0.8907670896204848, 0.0), (10.293040391323, 9.770631172839506, 8.564984567901236, 9.213473958333335, 7.472982141115872, 3.6458333333333335, 4.004509259259259, 3.6077083333333335, 4.010213888888889, 1.9059487654320992, 1.3863970258136926, 0.8017201646090536, 0.0, 10.125, 8.818921810699589, 6.931985129068463, 5.717846296296297, 8.020427777777778, 5.050791666666667, 4.004509259259259, 2.604166666666667, 3.736491070557936, 3.0711579861111122, 1.7129969135802474, 0.8882391975308643, 0.0), (10.299262936849892, 9.741964277549155, 8.557440557841794, 9.206992862654321, 7.475047397120935, 3.6458333333333335, 3.993495965464375, 3.58610596707819, 4.007251131687243, 1.9002840306355744, 1.3854742590514195, 0.800714296601128, 0.0, 10.125, 8.807857262612407, 6.927371295257098, 5.700852091906722, 8.014502263374485, 5.020548353909466, 3.993495965464375, 2.604166666666667, 3.7375236985604676, 3.0689976208847747, 1.7114881115683587, 0.8856331161408324, 0.0), (10.305246129151927, 9.712497656607225, 8.549663351623229, 9.200284915123458, 7.477031511085363, 3.6458333333333335, 3.9821810497861696, 3.564071502057614, 4.0041920781893, 1.8944771833561962, 1.3845158269942222, 0.7996773357719861, 0.0, 10.125, 8.796450693491845, 6.92257913497111, 5.683431550068587, 8.0083841563786, 4.98970010288066, 3.9821810497861696, 2.604166666666667, 3.7385157555426813, 3.0667616383744867, 1.709932670324646, 0.8829543324188387, 0.0), (10.310989172402216, 9.682291666666666, 8.541666666666668, 9.193359375, 7.478934360642197, 3.6458333333333335, 3.9705882352941178, 3.541666666666667, 4.001041666666666, 1.8885416666666672, 1.3835227272727273, 0.798611111111111, 0.0, 10.125, 8.784722222222221, 6.917613636363637, 5.665625, 8.002083333333331, 4.958333333333334, 3.9705882352941178, 2.604166666666667, 3.7394671803210984, 3.064453125000001, 1.7083333333333335, 0.8802083333333335, 0.0), (10.31649127077388, 9.65140666438043, 8.533464220393233, 9.186225501543209, 7.480755823424477, 3.6458333333333335, 3.958741245057694, 3.518953189300412, 3.997804835390946, 1.8824909236396894, 1.3824959575175624, 0.7975174516079867, 0.0, 10.125, 8.772691967687852, 6.912479787587812, 5.647472770919067, 7.995609670781892, 4.926534465020577, 3.958741245057694, 2.604166666666667, 3.7403779117122387, 3.062075167181071, 1.7066928440786466, 0.8774006058527665, 0.0), (10.321751628440035, 9.619903006401461, 8.525069730224052, 9.178892554012345, 7.482495777065244, 3.6458333333333335, 3.9466638021463734, 3.4959927983539094, 3.994486522633745, 1.8763383973479657, 1.3814365153593549, 0.7963981862520958, 0.0, 10.125, 8.760380048773053, 6.9071825767967745, 5.629015192043896, 7.98897304526749, 4.894389917695474, 3.9466638021463734, 2.604166666666667, 3.741247888532622, 3.0596308513374493, 1.7050139460448106, 0.8745366369455876, 0.0), (10.326769449573796, 9.587841049382716, 8.516496913580248, 9.171369791666667, 7.48415409919754, 3.6458333333333335, 3.9343796296296296, 3.4728472222222226, 3.9910916666666667, 1.8700975308641978, 1.3803453984287317, 0.7952551440329219, 0.0, 10.125, 8.74780658436214, 6.901726992143659, 5.610292592592592, 7.982183333333333, 4.861986111111112, 3.9343796296296296, 2.604166666666667, 3.74207704959877, 3.05712326388889, 1.7032993827160496, 0.871621913580247, 0.0), (10.331543938348286, 9.555281149977136, 8.507759487882945, 9.163666473765433, 7.485730667454405, 3.6458333333333335, 3.9219124505769383, 3.4495781893004116, 3.987625205761317, 1.8637817672610888, 1.3792236043563206, 0.7940901539399483, 0.0, 10.125, 8.73499169333943, 6.896118021781603, 5.5913453017832655, 7.975250411522634, 4.829409465020577, 3.9219124505769383, 2.604166666666667, 3.7428653337272024, 3.054555491255145, 1.7015518975765893, 0.8686619227251944, 0.0), (10.336074298936616, 9.522283664837678, 8.49887117055327, 9.155791859567902, 7.4872253594688765, 3.6458333333333335, 3.909285988057775, 3.4262474279835393, 3.9840920781893, 1.85740454961134, 1.3780721307727481, 0.7929050449626583, 0.0, 10.125, 8.72195549458924, 6.89036065386374, 5.572213648834019, 7.9681841563786, 4.796746399176955, 3.909285988057775, 2.604166666666667, 3.7436126797344382, 3.051930619855968, 1.6997742341106543, 0.86566215134888, 0.0), (10.34035973551191, 9.488908950617283, 8.489845679012346, 9.147755208333333, 7.488638052873998, 3.6458333333333335, 3.896523965141612, 3.4029166666666666, 3.9804972222222226, 1.8509793209876546, 1.3768919753086422, 0.7917016460905352, 0.0, 10.125, 8.708718106995885, 6.884459876543211, 5.552937962962963, 7.960994444444445, 4.764083333333334, 3.896523965141612, 2.604166666666667, 3.744319026436999, 3.049251736111112, 1.6979691358024693, 0.8626280864197532, 0.0), (10.344399452247279, 9.455217363968908, 8.480696730681299, 9.139565779320987, 7.489968625302809, 3.6458333333333335, 3.883650104897926, 3.3796476337448556, 3.976845576131687, 1.8445195244627348, 1.3756841355946297, 0.7904817863130622, 0.0, 10.125, 8.695299649443683, 6.878420677973147, 5.533558573388203, 7.953691152263374, 4.731506687242798, 3.883650104897926, 2.604166666666667, 3.7449843126514044, 3.04652192644033, 1.69613934613626, 0.8595652149062645, 0.0), (10.348192653315843, 9.421269261545497, 8.471438042981255, 9.131232831790122, 7.491216954388353, 3.6458333333333335, 3.8706881303961915, 3.3565020576131688, 3.9731420781893005, 1.8380386031092826, 1.3744496092613379, 0.7892472946197227, 0.0, 10.125, 8.681720240816947, 6.872248046306688, 5.514115809327846, 7.946284156378601, 4.699102880658437, 3.8706881303961915, 2.604166666666667, 3.7456084771941764, 3.043744277263375, 1.694287608596251, 0.8564790237768635, 0.0), (10.351738542890716, 9.387125000000001, 8.462083333333332, 9.122765625, 7.492382917763668, 3.6458333333333335, 3.8576617647058824, 3.333541666666666, 3.9693916666666667, 1.8315500000000005, 1.3731893939393938, 0.788, 0.0, 10.125, 8.668, 6.865946969696969, 5.49465, 7.938783333333333, 4.666958333333333, 3.8576617647058824, 2.604166666666667, 3.746191458881834, 3.040921875000001, 1.6924166666666667, 0.8533750000000002, 0.0), (10.355036325145022, 9.352844935985367, 8.452646319158665, 9.114173418209877, 7.493466393061793, 3.6458333333333335, 3.844594730896474, 3.3108281893004117, 3.9655992798353905, 1.8250671582075908, 1.3719044872594257, 0.7867417314433777, 0.0, 10.125, 8.654159045877153, 6.859522436297127, 5.4752014746227715, 7.931198559670781, 4.6351594650205765, 3.844594730896474, 2.604166666666667, 3.7467331965308963, 3.0380578060699595, 1.6905292638317333, 0.8502586305441244, 0.0), (10.358085204251871, 9.31848942615455, 8.443140717878373, 9.105465470679011, 7.4944672579157725, 3.6458333333333335, 3.8315107520374405, 3.288423353909465, 3.961769855967078, 1.818603520804756, 1.3705958868520598, 0.7854743179393385, 0.0, 10.125, 8.640217497332722, 6.852979434260299, 5.455810562414267, 7.923539711934156, 4.603792695473251, 3.8315107520374405, 2.604166666666667, 3.7472336289578863, 3.035155156893005, 1.6886281435756747, 0.8471354023776865, 0.0), (10.360884384384383, 9.284118827160494, 8.433580246913582, 9.096651041666666, 7.495385389958644, 3.6458333333333335, 3.818433551198257, 3.2663888888888892, 3.957908333333333, 1.812172530864198, 1.369264590347924, 0.7841995884773663, 0.0, 10.125, 8.626195473251027, 6.8463229517396185, 5.436517592592593, 7.915816666666666, 4.572944444444445, 3.818433551198257, 2.604166666666667, 3.747692694979322, 3.0322170138888898, 1.6867160493827165, 0.844010802469136, 0.0), (10.36343306971568, 9.24979349565615, 8.423978623685414, 9.087739390432098, 7.496220666823449, 3.6458333333333335, 3.8053868514483984, 3.2447865226337447, 3.954019650205761, 1.8057876314586196, 1.367911595377645, 0.7829193720469442, 0.0, 10.125, 8.612113092516385, 6.8395579768882255, 5.417362894375858, 7.908039300411522, 4.5427011316872425, 3.8053868514483984, 2.604166666666667, 3.7481103334117245, 3.029246463477367, 1.684795724737083, 0.8408903177869229, 0.0), (10.36573046441887, 9.215573788294467, 8.414349565614998, 9.078739776234567, 7.49697296614323, 3.6458333333333335, 3.792394375857339, 3.2236779835390945, 3.9501087448559673, 1.799462265660723, 1.3665378995718502, 0.7816354976375554, 0.0, 10.125, 8.597990474013107, 6.83268949785925, 5.398386796982168, 7.900217489711935, 4.513149176954733, 3.792394375857339, 2.604166666666667, 3.748486483071615, 3.02624659207819, 1.6828699131229998, 0.8377794352994972, 0.0), (10.367775772667077, 9.181520061728396, 8.404706790123456, 9.069661458333334, 7.497642165551024, 3.6458333333333335, 3.779479847494553, 3.203125, 3.946180555555556, 1.7932098765432103, 1.3651445005611673, 0.7803497942386832, 0.0, 10.125, 8.583847736625515, 6.825722502805837, 5.37962962962963, 7.892361111111112, 4.484375, 3.779479847494553, 2.604166666666667, 3.748821082775512, 3.023220486111112, 1.6809413580246915, 0.8346836419753088, 0.0), (10.369568198633415, 9.147692672610884, 8.395064014631917, 9.060513695987654, 7.498228142679874, 3.6458333333333335, 3.7666669894295164, 3.183189300411523, 3.9422400205761314, 1.7870439071787843, 1.3637323959762233, 0.7790640908398111, 0.0, 10.125, 8.56970499923792, 6.818661979881115, 5.361131721536351, 7.884480041152263, 4.456465020576132, 3.7666669894295164, 2.604166666666667, 3.749114071339937, 3.0201712319958856, 1.6790128029263836, 0.8316084247828076, 0.0), (10.371106946491004, 9.114151977594878, 8.385434956561502, 9.051305748456791, 7.498730775162823, 3.6458333333333335, 3.753979524731703, 3.1639326131687247, 3.9382920781893, 1.7809778006401469, 1.3623025834476452, 0.7777802164304223, 0.0, 10.125, 8.555582380734645, 6.811512917238226, 5.3429334019204395, 7.8765841563786, 4.429505658436215, 3.753979524731703, 2.604166666666667, 3.7493653875814115, 3.0171019161522645, 1.6770869913123003, 0.8285592706904436, 0.0), (10.37239122041296, 9.080958333333333, 8.375833333333334, 9.042046875, 7.499149940632904, 3.6458333333333335, 3.741441176470588, 3.1454166666666667, 3.9343416666666666, 1.7750250000000003, 1.360856060606061, 0.7765000000000001, 0.0, 10.125, 8.5415, 6.804280303030303, 5.325075, 7.868683333333333, 4.403583333333334, 3.741441176470588, 2.604166666666667, 3.749574970316452, 3.014015625000001, 1.675166666666667, 0.8255416666666667, 0.0), (10.373420224572397, 9.048172096479195, 8.366272862368541, 9.032746334876544, 7.4994855167231655, 3.6458333333333335, 3.729075667715646, 3.127703189300412, 3.9303937242798352, 1.7691989483310475, 1.3593938250820965, 0.7752252705380279, 0.0, 10.125, 8.527477975918305, 6.796969125410483, 5.307596844993141, 7.8607874485596705, 4.378784465020577, 3.729075667715646, 2.604166666666667, 3.7497427583615828, 3.0109154449588487, 1.6732545724737085, 0.822561099679927, 0.0), (10.374193163142438, 9.015853623685413, 8.35676726108825, 9.023413387345679, 7.499737381066645, 3.6458333333333335, 3.7169067215363514, 3.1108539094650207, 3.9264531893004113, 1.7635130887059902, 1.357916874506381, 0.7739578570339887, 0.0, 10.125, 8.513536427373873, 6.7895843725319045, 5.290539266117969, 7.852906378600823, 4.355195473251029, 3.7169067215363514, 2.604166666666667, 3.7498686905333223, 3.0078044624485605, 1.67135345221765, 0.819623056698674, 0.0), (10.374709240296196, 8.984063271604938, 8.34733024691358, 9.014057291666667, 7.499905411296382, 3.6458333333333335, 3.7049580610021784, 3.094930555555556, 3.9225250000000003, 1.7579808641975312, 1.3564262065095398, 0.7726995884773664, 0.0, 10.125, 8.499695473251029, 6.782131032547699, 5.273942592592592, 7.8450500000000005, 4.332902777777778, 3.7049580610021784, 2.604166666666667, 3.749952705648191, 3.0046857638888897, 1.6694660493827165, 0.8167330246913582, 0.0), (10.374967660206792, 8.952861396890716, 8.337975537265661, 9.004687307098765, 7.499989485045419, 3.6458333333333335, 3.693253409182603, 3.0799948559670787, 3.9186140946502057, 1.7526157178783728, 1.3549228187222018, 0.7714522938576437, 0.0, 10.125, 8.485975232434079, 6.774614093611008, 5.257847153635117, 7.837228189300411, 4.31199279835391, 3.693253409182603, 2.604166666666667, 3.7499947425227096, 3.001562435699589, 1.6675951074531323, 0.8138964906264289, 0.0), (10.374791614480825, 8.922144586043629, 8.328671624942844, 8.995231305354269, 7.499918636864896, 3.645765673423767, 3.681757597414823, 3.0659766041761927, 3.9146959495503735, 1.747405110411792, 1.3533809980900628, 0.770210835158312, 0.0, 10.124875150034294, 8.47231918674143, 6.766904990450313, 5.242215331235375, 7.829391899100747, 4.29236724584667, 3.681757597414823, 2.604118338159833, 3.749959318432448, 2.99841043511809, 1.6657343249885688, 0.8111040532766937, 0.0), (10.373141706924315, 8.890975059737157, 8.319157021604937, 8.985212635869564, 7.499273783587508, 3.6452307956104257, 3.6701340906733066, 3.052124485596708, 3.910599279835391, 1.7422015976761076, 1.3516438064859118, 0.7689349144466104, 0.0, 10.12388599537037, 8.458284058912714, 6.758219032429559, 5.226604793028321, 7.821198559670782, 4.272974279835391, 3.6701340906733066, 2.6037362825788755, 3.749636891793754, 2.9950708786231885, 1.6638314043209876, 0.8082704599761052, 0.0), (10.369885787558895, 8.859209754856408, 8.309390360653863, 8.974565343196456, 7.497999542752628, 3.6441773992785653, 3.658330067280685, 3.0383135192805977, 3.9063009640298736, 1.736979881115684, 1.3496914810876801, 0.7676185634410675, 0.0, 10.121932334533609, 8.44380419785174, 6.7484574054383994, 5.210939643347051, 7.812601928059747, 4.253638926992837, 3.658330067280685, 2.6029838566275467, 3.748999771376314, 2.991521781065486, 1.6618780721307727, 0.8053827049869463, 0.0), (10.365069660642929, 8.826867654542236, 8.299375071444901, 8.963305127818035, 7.496112052502757, 3.6426225549966977, 3.646350829769494, 3.0245482777015704, 3.9018074035970125, 1.7317400898356603, 1.347531228463977, 0.7662627447677263, 0.0, 10.119039887688615, 8.428890192444989, 6.737656142319885, 5.195220269506979, 7.803614807194025, 4.234367588782199, 3.646350829769494, 2.6018732535690696, 3.7480560262513785, 2.987768375939346, 1.6598750142889804, 0.8024425140492942, 0.0), (10.358739130434783, 8.793967741935482, 8.289114583333333, 8.95144769021739, 7.493627450980392, 3.6405833333333337, 3.634201680672269, 3.0108333333333333, 3.897125, 1.7264823529411768, 1.3451702551834133, 0.7648684210526316, 0.0, 10.115234375, 8.413552631578947, 6.7258512759170666, 5.179447058823529, 7.79425, 4.215166666666667, 3.634201680672269, 2.600416666666667, 3.746813725490196, 2.983815896739131, 1.6578229166666667, 0.7994516129032258, 0.0), (10.35094000119282, 8.760529000176998, 8.27861232567444, 8.939008730877617, 7.490561876328034, 3.638076804856983, 3.621887922521546, 2.9971732586495965, 3.8922601547020275, 1.7212067995373737, 1.3426157678145982, 0.7634365549218266, 0.0, 10.110541516632374, 8.397802104140093, 6.71307883907299, 5.163620398612119, 7.784520309404055, 4.196042562109435, 3.621887922521546, 2.598626289183559, 3.745280938164017, 2.979669576959206, 1.655722465134888, 0.7964117272888181, 0.0), (10.341718077175404, 8.726570412407629, 8.267871727823502, 8.926003950281803, 7.486931466688183, 3.6351200401361585, 3.609414857849861, 2.9835726261240665, 3.8872192691662857, 1.7159135587293908, 1.3398749729261428, 0.7619681090013557, 0.0, 10.104987032750344, 8.38164919901491, 6.699374864630713, 5.147740676188171, 7.774438538332571, 4.177001676573693, 3.609414857849861, 2.5965143143829703, 3.7434657333440917, 2.975334650093935, 1.6535743455647005, 0.7933245829461482, 0.0), (10.331119162640901, 8.692110961768218, 8.256896219135802, 8.912449048913043, 7.482752360203341, 3.6317301097393697, 3.59678778918975, 2.9700360082304527, 3.8820087448559666, 1.7106027596223679, 1.336955077086656, 0.7604640459172624, 0.0, 10.098596643518519, 8.365104505089885, 6.684775385433279, 5.131808278867102, 7.764017489711933, 4.158050411522634, 3.59678778918975, 2.594092935528121, 3.7413761801016703, 2.9708163496376816, 1.6513792438271604, 0.7901919056152927, 0.0), (10.319189061847677, 8.65716963139962, 8.245689228966622, 8.898359727254428, 7.478040695016003, 3.6279240842351275, 3.5840120190737474, 2.956567977442463, 3.876634983234263, 1.7052745313214452, 1.3338632868647486, 0.7589253282955902, 0.0, 10.091396069101508, 8.348178611251491, 6.669316434323743, 5.115823593964334, 7.753269966468526, 4.139195168419449, 3.5840120190737474, 2.5913743458822336, 3.7390203475080015, 2.96611990908481, 1.6491378457933243, 0.7870154210363293, 0.0), (10.305973579054093, 8.621765404442675, 8.234254186671238, 8.883751685789049, 7.472812609268672, 3.6237190341919425, 3.5710928500343897, 2.9431731062338065, 3.871104385764365, 1.699929002931763, 1.3306068088290313, 0.7573529187623839, 0.0, 10.083411029663925, 8.330882106386222, 6.653034044145156, 5.099787008795288, 7.74220877152873, 4.120442348727329, 3.5710928500343897, 2.58837073870853, 3.736406304634336, 2.9612505619296834, 1.6468508373342476, 0.7837968549493343, 0.0), (10.291518518518519, 8.585917264038233, 8.222594521604938, 8.868640625, 7.467084241103849, 3.6191320301783265, 3.5580355846042124, 2.9298559670781894, 3.8654233539094642, 1.6945663035584608, 1.327192849548113, 0.7557477799436866, 0.0, 10.074667245370371, 8.313225579380552, 6.635964247740564, 5.083698910675381, 7.7308467078189285, 4.101798353909466, 3.5580355846042124, 2.585094307270233, 3.7335421205519244, 2.956213541666667, 1.6445189043209878, 0.7805379330943849, 0.0), (10.275869684499314, 8.549644193327138, 8.210713663123, 8.85304224537037, 7.460871728664031, 3.61418014276279, 3.5448455253157505, 2.916621132449322, 3.859598289132754, 1.6891865623066789, 1.3236286155906039, 0.7541108744655421, 0.0, 10.065190436385459, 8.295219619120962, 6.618143077953018, 5.067559686920035, 7.719196578265508, 4.083269585429051, 3.5448455253157505, 2.5815572448305644, 3.7304358643320157, 2.951014081790124, 1.6421427326246, 0.7772403812115581, 0.0), (10.259072881254847, 8.51296517545024, 8.198615040580703, 8.836972247383253, 7.454191210091719, 3.6088804425138448, 3.5315279747015405, 2.9034731748209115, 3.853635592897424, 1.683789908281557, 1.3199213135251149, 0.7524431649539947, 0.0, 10.0550063228738, 8.27687481449394, 6.599606567625574, 5.05136972484467, 7.707271185794848, 4.064862444749276, 3.5315279747015405, 2.577771744652746, 3.7270956050458595, 2.945657415794418, 1.639723008116141, 0.7739059250409311, 0.0), (10.241173913043479, 8.475899193548386, 8.186302083333333, 8.82044633152174, 7.447058823529411, 3.60325, 3.5180882352941176, 2.890416666666667, 3.8475416666666664, 1.6783764705882358, 1.3160781499202554, 0.7507456140350878, 0.0, 10.044140624999999, 8.258201754385965, 6.580390749601277, 5.035129411764706, 7.695083333333333, 4.046583333333333, 3.5180882352941176, 2.57375, 3.7235294117647055, 2.940148777173914, 1.6372604166666667, 0.7705362903225808, 0.0), (10.222218584123576, 8.438465230762423, 8.17377822073617, 8.803480198268922, 7.43949070711961, 3.5973058857897686, 3.504531609626018, 2.8774561804602956, 3.841322911903673, 1.6729463783318543, 1.3121063313446355, 0.7490191843348656, 0.0, 10.03261906292867, 8.23921102768352, 6.560531656723177, 5.018839134995561, 7.682645823807346, 4.0284386526444145, 3.504531609626018, 2.5695042041355487, 3.719745353559805, 2.934493399422974, 1.634755644147234, 0.767133202796584, 0.0), (10.202252698753504, 8.400682270233196, 8.16104688214449, 8.78608954810789, 7.431502999004814, 3.591065170451659, 3.4908634002297765, 2.8645962886755068, 3.8349857300716352, 1.6674997606175532, 1.3080130643668657, 0.7472648384793719, 0.0, 10.020467356824417, 8.219913223273089, 6.540065321834328, 5.002499281852659, 7.6699714601432705, 4.01043480414571, 3.4908634002297765, 2.5650465503226134, 3.715751499502407, 2.9286965160359637, 1.632209376428898, 0.7636983882030178, 0.0), (10.181322061191626, 8.362569295101553, 8.14811149691358, 8.768290081521739, 7.423111837327523, 3.584544924554184, 3.477088909637929, 2.851841563786008, 3.8285365226337444, 1.6620367465504726, 1.3038055555555557, 0.7454835390946503, 0.0, 10.007711226851852, 8.200318930041153, 6.519027777777778, 4.986110239651417, 7.657073045267489, 3.9925781893004113, 3.477088909637929, 2.5603892318244172, 3.7115559186637617, 2.922763360507247, 1.629622299382716, 0.7602335722819594, 0.0), (10.159472475696308, 8.32414528850834, 8.13497549439872, 8.75009749899356, 7.414333360230238, 3.577762218665854, 3.463213440383012, 2.8391965782655086, 3.8219816910531925, 1.6565574652357518, 1.2994910114793157, 0.7436762488067449, 0.0, 9.994376393175584, 8.180438736874192, 6.497455057396579, 4.969672395707254, 7.643963382106385, 3.9748752095717124, 3.463213440383012, 2.5555444419041815, 3.707166680115119, 2.916699166331187, 1.626995098879744, 0.7567404807734855, 0.0), (10.136749746525913, 8.285429233594407, 8.121642303955191, 8.731527501006443, 7.405183705855455, 3.57073412335518, 3.44924229499756, 2.826665904587715, 3.815327636793172, 1.6510620457785314, 1.2950766387067558, 0.7418439302416996, 0.0, 9.98048857596022, 8.160283232658694, 6.475383193533778, 4.953186137335593, 7.630655273586344, 3.9573322664228017, 3.44924229499756, 2.550524373825129, 3.7025918529277275, 2.910509167002148, 1.6243284607910382, 0.7532208394176735, 0.0), (10.113199677938807, 8.246440113500597, 8.10811535493827, 8.712595788043478, 7.3956790123456795, 3.563477709190672, 3.4351807760141093, 2.8142541152263374, 3.8085807613168727, 1.645550617283951, 1.290569643806486, 0.7399875460255577, 0.0, 9.96607349537037, 8.139863006281134, 6.452848219032429, 4.936651851851852, 7.6171615226337455, 3.9399557613168725, 3.4351807760141093, 2.54534122085048, 3.6978395061728397, 2.904198596014493, 1.6216230709876542, 0.7496763739545999, 0.0), (10.088868074193357, 8.207196911367758, 8.094398076703246, 8.693318060587762, 7.385835417843406, 3.5560100467408424, 3.4210341859651954, 2.801965782655083, 3.8017474660874866, 1.6400233088571508, 1.2859772333471164, 0.7381080587843638, 0.0, 9.951156871570646, 8.119188646628, 6.429886166735582, 4.9200699265714505, 7.603494932174973, 3.9227520957171165, 3.4210341859651954, 2.540007176243459, 3.692917708921703, 2.897772686862588, 1.6188796153406495, 0.7461088101243417, 0.0), (10.063800739547922, 8.16771861033674, 8.080493898605397, 8.673710019122383, 7.375669060491138, 3.5483482065742016, 3.406807827383354, 2.7898054793476605, 3.794834152568206, 1.634480249603271, 1.2813066138972575, 0.7362064311441613, 0.0, 9.935764424725651, 8.098270742585774, 6.4065330694862865, 4.903440748809812, 7.589668305136412, 3.905727671086725, 3.406807827383354, 2.534534433267287, 3.687834530245569, 2.891236673040795, 1.6160987797210793, 0.7425198736669765, 0.0), (10.03804347826087, 8.128024193548386, 8.06640625, 8.653787364130435, 7.365196078431373, 3.5405092592592595, 3.3925070028011204, 2.7777777777777777, 3.7878472222222226, 1.6289215686274514, 1.2765649920255184, 0.7342836257309943, 0.0, 9.919921875, 8.077119883040936, 6.382824960127592, 4.886764705882353, 7.575694444444445, 3.888888888888889, 3.3925070028011204, 2.5289351851851856, 3.6825980392156863, 2.884595788043479, 1.6132812500000002, 0.7389112903225807, 0.0), (10.011642094590563, 8.088132644143545, 8.05213856024234, 8.63356579609501, 7.35443260980661, 3.532510275364528, 3.378137014751031, 2.7658872504191434, 3.780793076512727, 1.6233473950348318, 1.2717595743005101, 0.7323406051709063, 0.0, 9.903654942558298, 8.055746656879968, 6.35879787150255, 4.870042185104494, 7.561586153025454, 3.872242150586801, 3.378137014751031, 2.5232216252603767, 3.677216304903305, 2.8778552653650036, 1.6104277120484682, 0.7352847858312315, 0.0), (9.984642392795372, 8.048062945263066, 8.0376942586877, 8.613061015499195, 7.343394792759352, 3.524368325458518, 3.363703165765621, 2.754138469745466, 3.773678116902911, 1.6177578579305527, 1.2668975672908422, 0.7303783320899415, 0.0, 9.886989347565157, 8.034161652989356, 6.334487836454211, 4.853273573791657, 7.547356233805822, 3.8557938576436523, 3.363703165765621, 2.517405946756084, 3.671697396379676, 2.871020338499732, 1.6075388517375402, 0.7316420859330061, 0.0), (9.957090177133654, 8.00783408004779, 8.023076774691358, 8.592288722826089, 7.332098765432098, 3.5161004801097393, 3.349210758377425, 2.742536008230453, 3.766508744855967, 1.6121530864197533, 1.261986177565125, 0.7283977691141434, 0.0, 9.869950810185184, 8.012375460255576, 6.309930887825625, 4.836459259259259, 7.533017489711934, 3.839550411522634, 3.349210758377425, 2.5115003429355283, 3.666049382716049, 2.86409624094203, 1.6046153549382718, 0.727984916367981, 0.0), (9.92903125186378, 7.967465031638567, 8.008289537608597, 8.571264618558777, 7.320560665967347, 3.5077238098867043, 3.3346650951189805, 2.7310844383478132, 3.759291361835086, 1.6065332096075746, 1.2570326116919686, 0.7263998788695563, 0.0, 9.85256505058299, 7.990398667565118, 6.285163058459842, 4.819599628822722, 7.518582723670172, 3.823518213686939, 3.3346650951189805, 2.5055170070619317, 3.6602803329836733, 2.8570882061862592, 1.6016579075217197, 0.7243150028762335, 0.0), (9.90051142124411, 7.926974783176247, 7.993335976794697, 8.550004403180354, 7.308796632507598, 3.499255385357923, 3.320071478522822, 2.719788332571255, 3.7520323693034596, 1.6008983565991557, 1.2520440762399827, 0.7243856239822234, 0.0, 9.834857788923182, 7.968241863804456, 6.260220381199914, 4.8026950697974655, 7.504064738606919, 3.8077036655997567, 3.320071478522822, 2.4994681323985164, 3.654398316253799, 2.850001467726785, 1.5986671953589393, 0.7206340711978407, 0.0), (9.871576489533012, 7.886382317801674, 7.978219521604939, 8.528523777173913, 7.296822803195352, 3.4907122770919066, 3.3054352111214853, 2.708652263374486, 3.7447381687242793, 1.5952486564996373, 1.247027777777778, 0.7223559670781895, 0.0, 9.816854745370371, 7.945915637860083, 6.23513888888889, 4.785745969498911, 7.489476337448559, 3.7921131687242804, 3.3054352111214853, 2.4933659122085046, 3.648411401597676, 2.8428412590579715, 1.595643904320988, 0.7169438470728796, 0.0), (9.842272260988848, 7.845706618655694, 7.962943601394604, 8.506838441022543, 7.284655316173109, 3.482111555657166, 3.2907615954475067, 2.697680803231215, 3.7374151615607376, 1.589584238414159, 1.2419909228739638, 0.7203118707834976, 0.0, 9.798581640089164, 7.923430578618472, 6.209954614369819, 4.768752715242476, 7.474830323121475, 3.7767531245237014, 3.2907615954475067, 2.4872225397551184, 3.6423276580865545, 2.8356128136741816, 1.5925887202789208, 0.7132460562414268, 0.0), (9.812644539869984, 7.804966668879153, 7.947511645518976, 8.48496409520934, 7.272310309583368, 3.4734702916222124, 3.276055934033421, 2.68687852461515, 3.7300697492760246, 1.5839052314478608, 1.236940718097151, 0.7182542977241916, 0.0, 9.78006419324417, 7.900797274966106, 6.184703590485755, 4.751715694343581, 7.460139498552049, 3.7616299344612103, 3.276055934033421, 2.48105020830158, 3.636155154791684, 2.8283213650697805, 1.589502329103795, 0.7095424244435595, 0.0), (9.782739130434782, 7.764181451612902, 7.931927083333334, 8.462916440217391, 7.259803921568627, 3.464805555555556, 3.261323529411765, 2.67625, 3.7227083333333333, 1.5782117647058826, 1.2318843700159492, 0.7161842105263159, 0.0, 9.761328125, 7.878026315789473, 6.159421850079745, 4.734635294117647, 7.445416666666667, 3.7467500000000005, 3.261323529411765, 2.474861111111111, 3.6299019607843137, 2.820972146739131, 1.5863854166666669, 0.7058346774193549, 0.0), (9.752601836941611, 7.723369949997786, 7.916193344192958, 8.44071117652979, 7.247152290271389, 3.4561344180257074, 3.2465696841150726, 2.665799801859473, 3.715337315195854, 1.572503967293365, 1.2268290851989685, 0.714102571815914, 0.0, 9.742399155521262, 7.8551282899750525, 6.134145425994841, 4.717511901880093, 7.430674630391708, 3.732119722603262, 3.2465696841150726, 2.468667441446934, 3.6235761451356945, 2.8135703921765973, 1.5832386688385918, 0.7021245409088898, 0.0), (9.722278463648834, 7.682551147174654, 7.900313857453133, 8.41836400462963, 7.234371553834153, 3.4474739496011786, 3.231799700675881, 2.6555325026672763, 3.7079630963267793, 1.5667819683154474, 1.2217820702148188, 0.7120103442190294, 0.0, 9.723303004972564, 7.832113786409323, 6.108910351074094, 4.7003459049463405, 7.415926192653559, 3.7177455037341867, 3.231799700675881, 2.4624813925722706, 3.6171857769170765, 2.806121334876544, 1.5800627714906266, 0.6984137406522414, 0.0), (9.691814814814816, 7.641744026284349, 7.884292052469135, 8.395890625, 7.221477850399419, 3.4388412208504806, 3.217018881626725, 2.645452674897119, 3.7005920781893, 1.56104589687727, 1.2167505316321108, 0.7099084903617069, 0.0, 9.704065393518519, 7.808993393978774, 6.083752658160553, 4.683137690631809, 7.4011841563786, 3.703633744855967, 3.217018881626725, 2.4563151577503435, 3.6107389251997093, 2.798630208333334, 1.5768584104938272, 0.6947040023894864, 0.0), (9.661256694697919, 7.60096757046772, 7.8681313585962505, 8.373306738123993, 7.208487318109686, 3.430253302342123, 3.20223252950014, 2.63556489102271, 3.6932306622466085, 1.5552958820839726, 1.211741676019454, 0.7077979728699895, 0.0, 9.68471204132373, 7.785777701569883, 6.058708380097269, 4.6658876462519165, 7.386461324493217, 3.689790847431794, 3.20223252950014, 2.4501809302443736, 3.604243659054843, 2.7911022460413317, 1.5736262717192502, 0.6909970518607019, 0.0), (9.63064990755651, 7.560240762865614, 7.851835205189758, 8.350628044484703, 7.195416095107452, 3.421727264644617, 3.187445946828663, 2.6258737235177567, 3.685885249961896, 1.5495320530406955, 1.2067627099454585, 0.7056797543699213, 0.0, 9.665268668552812, 7.762477298069133, 6.033813549727292, 4.648596159122086, 7.371770499923792, 3.6762232129248593, 3.187445946828663, 2.4440909033175835, 3.597708047553726, 2.783542681494901, 1.5703670410379515, 0.687294614805965, 0.0), (9.600040257648953, 7.519582586618876, 7.835407021604938, 8.327870244565217, 7.182280319535221, 3.4132801783264752, 3.172664436144829, 2.6163837448559675, 3.6785622427983538, 1.5437545388525786, 1.201820839978735, 0.7035547974875461, 0.0, 9.64576099537037, 7.739102772363006, 6.009104199893674, 4.631263616557734, 7.3571244855967075, 3.662937242798354, 3.172664436144829, 2.4380572702331964, 3.5911401597676105, 2.775956748188406, 1.5670814043209877, 0.6835984169653525, 0.0), (9.569473549233614, 7.479012024868357, 7.818850237197074, 8.305049038848631, 7.1690961295354905, 3.404929113956206, 3.1578932999811724, 2.6070995275110502, 3.6712680422191735, 1.5379634686247616, 1.1969232726878927, 0.701424064848908, 0.0, 9.626214741941014, 7.715664713337986, 5.9846163634394625, 4.613890405874283, 7.342536084438347, 3.6499393385154706, 3.1578932999811724, 2.4320922242544327, 3.5845480647677452, 2.768349679616211, 1.5637700474394147, 0.6799101840789417, 0.0), (9.538995586568856, 7.438548060754901, 7.802168281321446, 8.282180127818036, 7.155879663250759, 3.3966911421023225, 3.1431378408702306, 2.5980256439567144, 3.6640090496875475, 1.532158971462385, 1.1920772146415421, 0.6992885190800504, 0.0, 9.606655628429355, 7.692173709880553, 5.96038607320771, 4.596476914387154, 7.328018099375095, 3.6372359015394005, 3.1431378408702306, 2.426207958644516, 3.5779398316253794, 2.760726709272679, 1.5604336562642893, 0.6762316418868093, 0.0), (9.508652173913044, 7.398209677419356, 7.785364583333334, 8.259279211956523, 7.1426470588235285, 3.3885833333333335, 3.1284033613445374, 2.589166666666667, 3.656791666666667, 1.5263411764705888, 1.1872898724082936, 0.6971491228070177, 0.0, 9.587109375, 7.668640350877193, 5.936449362041468, 4.579023529411765, 7.313583333333334, 3.624833333333334, 3.1284033613445374, 2.4204166666666667, 3.5713235294117642, 2.7530930706521746, 1.557072916666667, 0.6725645161290325, 0.0), (9.478489115524543, 7.358015858002567, 7.768442572588021, 8.23636199174718, 7.129414454396299, 3.3806227582177515, 3.113695163936631, 2.580527168114617, 3.6496222946197223, 1.5205102127545123, 1.1825684525567568, 0.6950068386558532, 0.0, 9.567601701817559, 7.645075225214384, 5.9128422627837836, 4.561530638263536, 7.299244589239445, 3.612738035360464, 3.113695163936631, 2.4147305415841083, 3.5647072271981495, 2.7454539972490606, 1.5536885145176043, 0.668910532545688, 0.0), (9.448552215661715, 7.317985585645383, 7.751405678440788, 8.213444167673108, 7.116197988111569, 3.3728264873240867, 3.0990185511790447, 2.5721117207742723, 3.6425073350099066, 1.5146662094192962, 1.177920161655542, 0.6928626292526012, 0.0, 9.54815832904664, 7.621488921778612, 5.8896008082777085, 4.543998628257887, 7.285014670019813, 3.600956409083981, 3.0990185511790447, 2.409161776660062, 3.5580989940557846, 2.737814722557703, 1.5502811356881578, 0.6652714168768531, 0.0), (9.41888727858293, 7.278137843488651, 7.7342573302469155, 8.190541440217391, 7.103013798111837, 3.365211591220851, 3.0843788256043156, 2.5639248971193416, 3.635453189300412, 1.5088092955700803, 1.173352206273259, 0.6907174572233054, 0.0, 9.528804976851852, 7.597892029456357, 5.866761031366295, 4.526427886710239, 7.270906378600824, 3.5894948559670783, 3.0843788256043156, 2.4037225651577505, 3.5515068990559184, 2.7301804800724643, 1.546851466049383, 0.6616488948626047, 0.0), (9.38954010854655, 7.238491614673214, 7.717000957361684, 8.167669509863124, 7.089878022539605, 3.357795140476554, 3.069781289744979, 2.5559712696235333, 3.628466258954427, 1.5029396003120044, 1.1688717929785184, 0.6885722851940093, 0.0, 9.509567365397805, 7.574295137134101, 5.844358964892591, 4.5088188009360115, 7.256932517908854, 3.5783597774729463, 3.069781289744979, 2.3984251003403956, 3.5449390112698027, 2.7225565032877084, 1.543400191472337, 0.6580446922430195, 0.0), (9.360504223703044, 7.1991320672204555, 7.699681523543391, 8.14487541186903, 7.076783786782469, 3.3505906987084666, 3.0552629818283847, 2.548271903658586, 3.6215709370862066, 1.4970761841531826, 1.1644873176921446, 0.6864327447087024, 0.0, 9.490443900843221, 7.550760191795725, 5.8224365884607225, 4.491228552459547, 7.243141874172413, 3.5675806651220205, 3.0552629818283847, 2.3932790705060474, 3.5383918933912346, 2.7149584706230105, 1.5399363047086783, 0.654466551565496, 0.0), (9.331480897900065, 7.16044741823174, 7.682538062518016, 8.122342065958001, 7.063595569710884, 3.343581854975776, 3.0410091042052896, 2.5409213581271333, 3.6148730119043533, 1.491328791978196, 1.1602073895188663, 0.684326014342748, 0.0, 9.471275414160035, 7.5275861577702265, 5.801036947594331, 4.473986375934587, 7.229746023808707, 3.557289901377987, 3.0410091042052896, 2.3882727535541255, 3.531797784855442, 2.7074473553193346, 1.5365076125036032, 0.6509497652937947, 0.0), (9.302384903003995, 7.122451598792792, 7.665580777256098, 8.100063378886334, 7.050271785259067, 3.3367503822909463, 3.027029825095781, 2.533917772616129, 3.6083749928895963, 1.4857063319970194, 1.1560257519045158, 0.6822531318799043, 0.0, 9.452006631660376, 7.5047844506789465, 5.7801287595225785, 4.457118995991058, 7.216749985779193, 3.5474848816625806, 3.027029825095781, 2.3833931302078186, 3.5251358926295335, 2.700021126295445, 1.5331161554512198, 0.647495599890254, 0.0), (9.273179873237634, 7.0850892578507265, 7.648776824986561, 8.077999612699802, 7.036792350922519, 3.330080178417474, 3.0133024087639466, 2.5272417970412473, 3.6020604464092765, 1.480198339612387, 1.1519343218785802, 0.6802102664572789, 0.0, 9.43260725975589, 7.482312931030067, 5.7596716093929015, 4.44059501883716, 7.204120892818553, 3.5381385158577463, 3.0133024087639466, 2.3786286988696244, 3.5183961754612594, 2.6926665375666015, 1.5297553649973124, 0.6440990234409752, 0.0), (9.243829442823772, 7.04830504435266, 7.632093362938321, 8.056111029444182, 7.02313718419674, 3.323555141118853, 2.9998041194738763, 2.5208740813181603, 3.5959129388307343, 1.4747943502270324, 1.1479250164705472, 0.6781935872119792, 0.0, 9.413047004858225, 7.46012945933177, 5.739625082352736, 4.424383050681096, 7.1918258776614685, 3.5292237138454245, 2.9998041194738763, 2.3739679579420376, 3.51156859209837, 2.6853703431480613, 1.5264186725876645, 0.6407550040320601, 0.0), (9.214297245985211, 7.0120436072457135, 7.615497548340306, 8.03435789116525, 7.009286202577227, 3.317159168158581, 2.9865122214896576, 2.51479527536254, 3.5899160365213114, 1.46948389924369, 1.143989752709904, 0.6761992632811126, 0.0, 9.393295573379024, 7.438191896092237, 5.71994876354952, 4.40845169773107, 7.179832073042623, 3.5207133855075567, 2.9865122214896576, 2.369399405827558, 3.5046431012886137, 2.678119297055084, 1.5230995096680613, 0.6374585097496104, 0.0), (9.184546916944742, 6.976249595477001, 7.598956538421437, 8.012700459908778, 6.99521932355948, 3.3108761573001524, 2.973403979075378, 2.5089860290900607, 3.5840533058483475, 1.4642565220650932, 1.1401204476261382, 0.6742234638017862, 0.0, 9.373322671729932, 7.416458101819647, 5.70060223813069, 4.392769566195279, 7.168106611696695, 3.5125804407260848, 2.973403979075378, 2.3649115409286803, 3.49760966177974, 2.670900153302927, 1.5197913076842873, 0.6342045086797276, 0.0), (9.154542089925162, 6.940867657993644, 7.582437490410635, 7.991098997720545, 6.980916464638998, 3.304690006307063, 2.9604566564951265, 2.5034269924163928, 3.578308313179186, 1.4591017540939766, 1.136309018248736, 0.6722623579111081, 0.0, 9.353098006322597, 7.394885937022188, 5.68154509124368, 4.377305262281929, 7.156616626358372, 3.50479778938295, 2.9604566564951265, 2.360492861647902, 3.490458232319499, 2.663699665906849, 1.516487498082127, 0.6309879689085133, 0.0), (9.124246399149268, 6.90584244374276, 7.565907561536823, 7.969513766646325, 6.966357543311279, 3.29858461294281, 2.94764751801299, 2.4980988152572112, 3.572664624881166, 1.4540091307330743, 1.1325473816071863, 0.6703121147461852, 0.0, 9.33259128356866, 7.373433262208036, 5.662736908035931, 4.362027392199222, 7.145329249762332, 3.497338341360096, 2.94764751801299, 2.356131866387721, 3.4831787716556395, 2.656504588882109, 1.5131815123073646, 0.6278038585220692, 0.0), (9.093623478839854, 6.871118601671464, 7.549333909028926, 7.947905028731892, 6.951522477071823, 3.292543874970886, 2.9349538278930587, 2.492982147528187, 3.5671058073216297, 1.4489681873851195, 1.1288274547309753, 0.6683689034441251, 0.0, 9.31177220987977, 7.352057937885375, 5.644137273654876, 4.346904562155357, 7.1342116146432595, 3.490175006539462, 2.9349538278930587, 2.351817053550633, 3.4757612385359113, 2.6493016762439643, 1.5098667818057854, 0.6246471456064968, 0.0), (9.062636963219719, 6.836640780726876, 7.532683690115864, 7.92623304602302, 6.936391183416127, 3.28655169015479, 2.9223528503994194, 2.4880576391449933, 3.5616154268679177, 1.443968459452847, 1.1251411546495909, 0.6664288931420351, 0.0, 9.290610491667572, 7.330717824562385, 5.625705773247954, 4.33190537835854, 7.123230853735835, 3.4832806948029904, 2.9223528503994194, 2.3475369215391355, 3.4681955917080636, 2.642077682007674, 1.5065367380231727, 0.621512798247898, 0.0), (9.031250486511654, 6.802353629856113, 7.515924062026559, 7.90445808056549, 6.920943579839691, 3.2805919562580144, 2.9098218497961597, 2.483305940023303, 3.5561770498873715, 1.4389994823389904, 1.1214803983925201, 0.664488252977023, 0.0, 9.269075835343711, 7.309370782747252, 5.6074019919625995, 4.316998447016971, 7.112354099774743, 3.476628316032624, 2.9098218497961597, 2.3432799687557244, 3.4604717899198456, 2.634819360188497, 1.5031848124053118, 0.618395784532374, 0.0), (8.999427682938459, 6.768201798006293, 7.499022181989936, 7.88254039440507, 6.905159583838015, 3.274648571044058, 2.8973380903473696, 2.478707700078788, 3.5507742427473308, 1.4340507914462837, 1.1178371029892504, 0.6625431520861957, 0.0, 9.247137947319828, 7.2879746729481525, 5.5891855149462515, 4.30215237433885, 7.1015484854946616, 3.470190780110303, 2.8973380903473696, 2.3390346936028985, 3.4525797919190073, 2.6275134648016905, 1.4998044363979874, 0.6152910725460268, 0.0), (8.967132186722928, 6.734129934124536, 7.481945207234916, 7.8604402495875405, 6.889019112906595, 3.2687054322764144, 2.884878836317135, 2.474243569227122, 3.545390571815139, 1.4291119221774609, 1.1142031854692689, 0.6605897596066612, 0.0, 9.224766534007578, 7.266487355673273, 5.571015927346345, 4.287335766532382, 7.090781143630278, 3.463940996917971, 2.884878836317135, 2.334789594483153, 3.4445095564532977, 2.620146749862514, 1.4963890414469831, 0.6121936303749579, 0.0), (8.93432763208786, 6.7000826871579555, 7.464660294990421, 7.838117908158674, 6.8725020845409315, 3.26274643771858, 2.872421351969547, 2.469894197383977, 3.5400096034581354, 1.4241724099352562, 1.1105705628620632, 0.6586242446755264, 0.0, 9.201931301818599, 7.244866691430789, 5.552852814310316, 4.272517229805768, 7.080019206916271, 3.457851876337568, 2.872421351969547, 2.3305331697989855, 3.4362510422704657, 2.612705969386225, 1.4929320589980841, 0.6090984261052688, 0.0), (8.900977653256046, 6.666004706053673, 7.447134602485375, 7.815533632164248, 6.855588416236526, 3.2567554851340508, 2.859942901568691, 2.465640234465026, 3.534614904043661, 1.4192217901224033, 1.1069311521971208, 0.6566427764298991, 0.0, 9.178601957164537, 7.223070540728888, 5.534655760985604, 4.257665370367209, 7.069229808087322, 3.4518963282510366, 2.859942901568691, 2.3262539179528936, 3.427794208118263, 2.6051778773880834, 1.4894269204970751, 0.6060004278230613, 0.0), (8.867045884450281, 6.631840639758805, 7.4293352869486995, 7.792647683650037, 6.838258025488874, 3.250716472286322, 2.8474207493786565, 2.4614623303859418, 3.529190039939058, 1.4142495981416365, 1.1032768705039286, 0.6546415240068865, 0.0, 9.154748206457038, 7.20105676407575, 5.516384352519642, 4.242748794424909, 7.058380079878116, 3.4460472625403185, 2.8474207493786565, 2.321940337347373, 3.419129012744437, 2.597549227883346, 1.4858670573897401, 0.6028946036144368, 0.0), (8.832495959893366, 6.5975351372204685, 7.411229505609316, 7.769420324661814, 6.820490829793475, 3.2446132969388883, 2.8348321596635313, 2.457341135062396, 3.5237185775116666, 1.4092453693956895, 1.0995996348119743, 0.6526166565435961, 0.0, 9.130339756107748, 7.178783221979556, 5.4979981740598705, 4.2277361081870675, 7.047437155023333, 3.4402775890873545, 2.8348321596635313, 2.3175809263849203, 3.4102454148967376, 2.589806774887272, 1.4822459011218634, 0.5997759215654973, 0.0), (8.797291513808094, 6.563032847385783, 7.392784415696151, 7.7458118172453565, 6.802266746645829, 3.238429856855247, 2.8221543966874045, 2.4532572984100627, 3.5181840831288285, 1.4041986392872965, 1.0958913621507447, 0.6505643431771354, 0.0, 9.105346312528312, 7.156207774948489, 5.479456810753724, 4.212595917861889, 7.036368166257657, 3.4345602177740875, 2.8221543966874045, 2.3131641834680337, 3.4011333733229145, 2.5819372724151193, 1.4785568831392302, 0.596639349762344, 0.0), (8.76139618041726, 6.528278419201865, 7.373967174438122, 7.72178242344644, 6.783565693541435, 3.2321500497988933, 2.8093647247143627, 2.449191470344614, 3.5125701231578845, 1.3990989432191914, 1.0921439695497275, 0.6484807530446118, 0.0, 9.079737582130376, 7.13328828349073, 5.460719847748638, 4.1972968296575734, 7.025140246315769, 3.4288680584824593, 2.8093647247143627, 2.3086786069992096, 3.3917828467707176, 2.573927474482147, 1.4747934348876244, 0.5934798562910787, 0.0), (8.724773593943663, 6.493216501615832, 7.354744939064153, 7.697292405310838, 6.764367587975791, 3.225757773533322, 2.7964404080084946, 2.445124300781722, 3.5068602639661752, 1.3939358165941083, 1.0883493740384103, 0.6463620552831327, 0.0, 9.053483271325586, 7.10998260811446, 5.44174687019205, 4.181807449782324, 7.0137205279323505, 3.4231740210944106, 2.7964404080084946, 2.3041126953809443, 3.3821837939878954, 2.5657641351036133, 1.4709489878128308, 0.590292409237803, 0.0), (8.687387388610095, 6.457791743574804, 7.33508486680317, 7.672302024884328, 6.7446523474443945, 3.2192369258220297, 2.7833587108338893, 2.44103643963706, 3.5010380719210428, 1.388698794814781, 1.0844994926462799, 0.6442044190298056, 0.0, 9.026553086525583, 7.0862486093278605, 5.422497463231399, 4.166096384444343, 7.0020761438420855, 3.417451015491884, 2.7833587108338893, 2.2994549470157355, 3.3723261737221972, 2.557434008294776, 1.4670169733606342, 0.5870719766886187, 0.0), (8.649201198639354, 6.421948794025897, 7.314954114884091, 7.646771544212684, 6.724399889442747, 3.212571404428512, 2.770096897454634, 2.4369085368263, 3.4950871133898262, 1.3833774132839443, 1.0805862424028239, 0.6420040134217377, 0.0, 8.99891673414202, 7.0620441476391145, 5.402931212014119, 4.150132239851832, 6.9901742267796525, 3.41167195155682, 2.770096897454634, 2.2946938603060802, 3.3621999447213735, 2.548923848070895, 1.4629908229768183, 0.583813526729627, 0.0), (8.610178658254235, 6.385632301916229, 7.294319840535841, 7.62066122534168, 6.703590131466344, 3.205745107116265, 2.7566322321348173, 2.4327212422651154, 3.4889909547398688, 1.3779612074043308, 1.0766015403375297, 0.6397570075960368, 0.0, 8.970543920586536, 7.037327083556404, 5.383007701687648, 4.133883622212991, 6.9779819094797375, 3.4058097391711617, 2.7566322321348173, 2.289817933654475, 3.351795065733172, 2.540220408447227, 1.4588639681071682, 0.58051202744693, 0.0), (8.570283401677534, 6.348786916192918, 7.273149200987342, 7.593931330317094, 6.682202991010689, 3.1987419316487826, 2.7429419791385277, 2.428455205869179, 3.4827331623385107, 1.3724397125786756, 1.0725373034798844, 0.63745957068981, 0.0, 8.941404352270776, 7.012055277587909, 5.362686517399421, 4.117319137736026, 6.965466324677021, 3.3998372882168506, 2.7429419791385277, 2.284815665463416, 3.3411014955053444, 2.5313104434390317, 1.4546298401974684, 0.577162446926629, 0.0), (8.529479063132047, 6.311357285803083, 7.251409353467515, 7.566542121184698, 6.660218385571278, 3.1915457757895624, 2.729003402729852, 2.4240910775541624, 3.4762973025530934, 1.3668024642097119, 1.0683854488593754, 0.6351078718401649, 0.0, 8.91146773560639, 6.986186590241813, 5.341927244296877, 4.100407392629135, 6.952594605106187, 3.3937275085758274, 2.729003402729852, 2.2796755541354017, 3.330109192785639, 2.5221807070615663, 1.450281870693503, 0.5737597532548258, 0.0), (8.487729276840568, 6.273288059693839, 7.229067455205284, 7.538453859990269, 6.63761623264361, 3.184140537302099, 2.7147937671728797, 2.4196095072357395, 3.469666941750957, 1.3610389977001744, 1.0641378935054902, 0.6326980801842089, 0.0, 8.880703777005019, 6.959678882026297, 5.32068946752745, 4.083116993100523, 6.939333883501914, 3.3874533101300353, 2.7147937671728797, 2.274386098072928, 3.318808116321805, 2.51281795333009, 1.4458134910410567, 0.5702989145176218, 0.0), (8.444997677025897, 6.234523886812306, 7.206090663429573, 7.509626808779583, 6.614376449723186, 3.176510113949888, 2.7002903367316984, 2.4149911448295818, 3.462825646299444, 1.3551388484527966, 1.0597865544477159, 0.6302263648590494, 0.0, 8.849082182878314, 6.932490013449542, 5.298932772238579, 4.0654165453583895, 6.925651292598888, 3.3809876027614147, 2.7002903367316984, 2.2689357956784915, 3.307188224861593, 2.5032089362598615, 1.4412181326859146, 0.5667748988011189, 0.0), (8.40124789791083, 6.195009416105602, 7.1824461353693, 7.480021229598415, 6.590478954305501, 3.1686384034964257, 2.6854703756703975, 2.4102166402513627, 3.455756982565893, 1.349091551870313, 1.0553233487155398, 0.6276888950017938, 0.0, 8.816572659637913, 6.904577845019731, 5.276616743577699, 4.047274655610939, 6.911513965131786, 3.3743032963519077, 2.6854703756703975, 2.26331314535459, 3.2952394771527507, 2.4933404098661387, 1.4364892270738603, 0.5631826741914184, 0.0), (8.356443573718156, 6.154689296520844, 7.158101028253392, 7.44959738449254, 6.565903663886058, 3.1605093037052074, 2.670311148253063, 2.4052666434167547, 3.448444516917647, 1.3428866433554572, 1.0507401933384497, 0.6250818397495496, 0.0, 8.783144913695466, 6.875900237245045, 5.253700966692247, 4.028659930066371, 6.896889033835294, 3.3673733007834565, 2.670311148253063, 2.2575066455037196, 3.282951831943029, 2.4831991281641805, 1.4316202056506786, 0.5595172087746222, 0.0), (8.310548338670674, 6.113508177005149, 7.133022499310772, 7.418315535507731, 6.540630495960352, 3.152106712339729, 2.6547899187437842, 2.4001218042414303, 3.4408718157220486, 1.3365136583109634, 1.0460290053459322, 0.6224013682394242, 0.0, 8.748768651462617, 6.846415050633665, 5.230145026729661, 4.009540974932889, 6.881743631444097, 3.360170525938002, 2.6547899187437842, 2.251504794528378, 3.270315247980176, 2.472771845169244, 1.4266044998621543, 0.5557734706368318, 0.0), (8.263525826991184, 6.071410706505636, 7.107177705770357, 7.386135944689768, 6.514639368023886, 3.1434145271634857, 2.6388839514066493, 2.3947627726410623, 3.4330224453464364, 1.3299621321395652, 1.0411817017674754, 0.619643649608525, 0.0, 8.713413579351014, 6.816080145693774, 5.205908508837376, 3.9898863964186946, 6.866044890692873, 3.3526678816974873, 2.6388839514066493, 2.245296090831061, 3.257319684011943, 2.4620453148965895, 1.4214355411540713, 0.5519464278641489, 0.0), (8.215339672902477, 6.0283415339694235, 7.080533804861075, 7.353018874084421, 6.487910197572155, 3.134416645939974, 2.6225705105057466, 2.3891701985313234, 3.424879972158151, 1.3232216002439972, 1.036190199632566, 0.6168048529939595, 0.0, 8.6770494037723, 6.784853382933553, 5.180950998162829, 3.969664800731991, 6.849759944316302, 3.344838277943853, 2.6225705105057466, 2.238869032814267, 3.2439550987860777, 2.451006291361474, 1.4161067609722149, 0.548031048542675, 0.0), (8.16595351062735, 5.984245308343629, 7.053057953811847, 7.318924585737469, 6.460422902100661, 3.1250969664326886, 2.605826860305165, 2.3833247318278863, 3.4164279625245353, 1.3162815980269928, 1.0310464159706916, 0.6138811475328351, 0.0, 8.639645831138118, 6.7526926228611845, 5.155232079853457, 3.948844794080978, 6.832855925049071, 3.3366546245590407, 2.605826860305165, 2.2322121188804918, 3.2302114510503306, 2.439641528579157, 1.4106115907623695, 0.5440223007585119, 0.0), (8.1153309743886, 5.93906667857537, 7.024717309851591, 7.283813341694685, 6.4321573991049, 3.1154393864051255, 2.5886302650689905, 2.3772070224464232, 3.40764998281293, 1.3091316608912866, 1.0257422678113395, 0.6108687023622593, 0.0, 8.601172567860118, 6.719555725984851, 5.1287113390566965, 3.9273949826738592, 6.81529996562586, 3.3280898314249923, 2.5886302650689905, 2.2253138474322327, 3.21607869955245, 2.4279377805648954, 1.4049434619703185, 0.5399151525977609, 0.0), (8.063435698409021, 5.892750293611764, 6.9954790302092364, 7.247645404001847, 6.403093606080374, 3.105427803620781, 2.5709579890613132, 2.3707977203026074, 3.398529599390676, 1.301761324239612, 1.0202696721839972, 0.6077636866193392, 0.0, 8.561599320349941, 6.68540055281273, 5.101348360919985, 3.905283972718835, 6.797059198781352, 3.3191168084236504, 2.5709579890613132, 2.2181627168719866, 3.201546803040187, 2.4158818013339496, 1.3990958060418472, 0.535704572146524, 0.0), (8.010231316911412, 5.845240802399927, 6.965310272113703, 7.210381034704727, 6.37321144052258, 3.0950461158431497, 2.5527872965462204, 2.3640774753121114, 3.3890503786251127, 1.2941601234747035, 1.0146205461181517, 0.6045622694411826, 0.0, 8.520895795019237, 6.650184963853008, 5.073102730590758, 3.88248037042411, 6.778100757250225, 3.3097084654369557, 2.5527872965462204, 2.21074722560225, 3.18660572026129, 2.403460344901576, 1.3930620544227408, 0.5313855274909026, 0.0), (7.955681464118564, 5.796482853886981, 6.934178192793912, 7.171980495849104, 6.342490819927017, 3.0842782208357287, 2.5340954517878003, 2.3570269373906068, 3.3791958868835836, 1.2863175939992944, 1.0087868066432906, 0.601260619964897, 0.0, 8.479031698279647, 6.6138668196138655, 5.043934033216452, 3.8589527819978824, 6.758391773767167, 3.2998377123468496, 2.5340954517878003, 2.2030558720255207, 3.1712454099635083, 2.390660165283035, 1.3868356385587826, 0.5269529867169983, 0.0), (7.899749774253275, 5.746421097020041, 6.902049949478785, 7.132404049480748, 6.310911661789184, 3.0731080163620113, 2.5148597190501416, 2.3496267564537683, 3.3689496905334293, 1.2782232712161197, 1.002760370788901, 0.5978549073275894, 0.0, 8.435976736542818, 6.576403980603482, 5.013801853944504, 3.8346698136483583, 6.737899381066859, 3.2894774590352753, 2.5148597190501416, 2.1950771545442938, 3.155455830894592, 2.377468016493583, 1.3804099898957571, 0.5224019179109128, 0.0), (7.842399881538343, 5.6950001807462245, 6.868892699397251, 7.091611957645439, 6.278453883604579, 3.0615194001854955, 2.4950573625973322, 2.3418575824172674, 3.3582953559419897, 1.2698666905279126, 0.9965331555844703, 0.5943413006663675, 0.0, 8.391700616220398, 6.537754307330042, 4.982665777922351, 3.809600071583737, 6.716590711883979, 3.2786006153841742, 2.4950573625973322, 2.1867995715610684, 3.1392269418022893, 2.36387065254848, 1.3737785398794504, 0.5177272891587478, 0.0), (7.78359542019656, 5.642164754012652, 6.834673599778224, 7.049564482388949, 6.245097402868703, 3.049496270069676, 2.4746656466934596, 2.333700065196776, 3.3472164494766075, 1.2612373873374074, 0.9900970780594861, 0.5907159691183387, 0.0, 8.346173043724027, 6.497875660301725, 4.95048539029743, 3.783712162012222, 6.694432898953215, 3.2671800912754865, 2.4746656466934596, 2.17821162147834, 3.1225487014343516, 2.3498548274629836, 1.3669347199556448, 0.5129240685466048, 0.0), (7.723300024450729, 5.587859465766439, 6.7993598078506325, 7.006221885757057, 6.210822137077053, 3.0370225237780484, 2.453661835602614, 2.325134854707968, 3.3356965375046217, 1.2523248970473384, 0.9834440552434354, 0.5869750818206104, 0.0, 8.299363725465357, 6.456725900026714, 4.917220276217177, 3.7569746911420143, 6.671393075009243, 3.2551887965911552, 2.453661835602614, 2.169301802698606, 3.1054110685385266, 2.335407295252353, 1.3598719615701265, 0.5079872241605854, 0.0), (7.6614773285236355, 5.532028964954703, 6.762918480843396, 6.961544429795533, 6.175608003725131, 3.0240820590741087, 2.4320231935888805, 2.316142600866515, 3.323719186393376, 1.2431187550604388, 0.9765660041658056, 0.5831148079102902, 0.0, 8.251242367856026, 6.414262887013191, 4.882830020829028, 3.7293562651813157, 6.647438372786752, 3.242599641213121, 2.4320231935888805, 2.160058613624363, 3.0878040018625654, 2.320514809931845, 1.3525836961686795, 0.5029117240867913, 0.0), (7.598090966638081, 5.474617900524564, 6.725316775985439, 6.915492376550157, 6.139434920308432, 3.0106587737213526, 2.40972698491635, 2.3067039535880913, 3.3112679625102084, 1.2336084967794434, 0.9694548418560842, 0.5791313165244852, 0.0, 8.201778677307685, 6.370444481769337, 4.84727420928042, 3.7008254903383295, 6.622535925020417, 3.2293855350233276, 2.40972698491635, 2.150470552658109, 3.069717460154216, 2.3051641255167192, 1.3450633551970879, 0.49769253641132405, 0.0), (7.533104573016862, 5.415570921423138, 6.686521850505682, 6.868025988066703, 6.102282804322456, 2.9967365654832747, 2.3867504738491094, 2.2967995627883675, 3.2983264322224626, 1.2237836576070855, 0.9621024853437583, 0.5750207768003032, 0.0, 8.150942360231976, 6.325228544803333, 4.810512426718791, 3.671350972821256, 6.596652864444925, 3.2155193879037145, 2.3867504738491094, 2.140526118202339, 3.051141402161228, 2.2893419960222348, 1.3373043701011365, 0.4923246292202853, 0.0), (7.464680946405239, 5.353748694041236, 6.644659961585297, 6.817327186238432, 6.062454070580665, 2.9814309445183143, 2.3625533604639286, 2.285748730145572, 3.2838873638663655, 1.213341479072786, 0.9542659587564906, 0.570633297016195, 0.0, 8.096485859415345, 6.276966267178143, 4.771329793782452, 3.640024437218358, 6.567774727732731, 3.200048222203801, 2.3625533604639286, 2.129593531798796, 3.0312270352903323, 2.2724423954128112, 1.3289319923170593, 0.48670442673102154, 0.0), (7.382286766978402, 5.282809876299521, 6.58894818200249, 6.7529828690913405, 6.010127539854418, 2.95965229467081, 2.334106381692858, 2.2696723053184926, 3.2621424204073812, 1.2005702485246865, 0.9445694892698324, 0.5651135436402591, 0.0, 8.025427646920194, 6.216248980042849, 4.722847446349162, 3.601710745574059, 6.5242848408147625, 3.17754122744589, 2.334106381692858, 2.114037353336293, 3.005063769927209, 2.250994289697114, 1.3177896364004982, 0.4802554432999565, 0.0), (7.284872094904309, 5.202172001162321, 6.51826746496324, 6.673933132806645, 5.94428008756453, 2.9308657560278157, 2.301121874191892, 2.248166328969728, 3.2324750757428835, 1.1853014129657236, 0.9328765847682567, 0.5583751624073207, 0.0, 7.93642060889358, 6.142126786480525, 4.664382923841283, 3.55590423889717, 6.464950151485767, 3.147432860557619, 2.301121874191892, 2.0934755400198686, 2.972140043782265, 2.2246443776022153, 1.3036534929926482, 0.47292472737839286, 0.0), (7.17322205458596, 5.11236079574043, 6.4333724765919245, 6.5809293778175455, 5.865595416188075, 2.895420057582683, 2.263840723003438, 2.2215002221290754, 3.1952765889996724, 1.1676645482927346, 0.9192902757666179, 0.5504806224089643, 0.0, 7.830374044819097, 6.055286846498606, 4.596451378833089, 3.5029936448782033, 6.390553177999345, 3.1101003109807053, 2.263840723003438, 2.0681571839876307, 2.9327977080940375, 2.1936431259391824, 1.2866744953183848, 0.46476007234003913, 0.0), (7.048121770426357, 5.013901987144635, 6.335017883012913, 6.474723004557244, 5.7747572282021356, 2.853663928328766, 2.2225038131699044, 2.1899434058263343, 3.150938219304545, 1.147789230402558, 0.9039135927797701, 0.5414923927367745, 0.0, 7.708197254180333, 5.956416320104519, 4.519567963898851, 3.4433676912076736, 6.30187643860909, 3.065920768156868, 2.2225038131699044, 2.03833137737769, 2.8873786141010678, 2.158241001519082, 1.2670035766025827, 0.4558092715586033, 0.0), (6.9103563668284975, 4.90732130248573, 6.223958350350585, 6.35606541345895, 5.672449226083792, 2.8059460972594175, 2.1773520297337003, 2.153765301091302, 3.0998512257843016, 1.1258050351920315, 0.8868495663225682, 0.5314729424823361, 0.0, 7.570799536460879, 5.846202367305696, 4.43424783161284, 3.3774151055760937, 6.199702451568603, 3.015271421527823, 2.1773520297337003, 2.0042472123281554, 2.836224613041896, 2.118688471152984, 1.2447916700701172, 0.4461201184077937, 0.0), (6.760710968195384, 4.793144468874502, 6.100948544729314, 6.225708004955863, 5.559355112310126, 2.752615293367992, 2.128626257737233, 2.113235328953779, 3.0424068675657407, 1.1018415385579923, 0.8682012269098661, 0.5204847407372336, 0.0, 7.419090191144328, 5.725332148109569, 4.34100613454933, 3.305524615673976, 6.0848137351314815, 2.9585294605352903, 2.128626257737233, 1.9661537809771372, 2.779677556155063, 2.075236001651955, 1.2201897089458629, 0.43574040626131844, 0.0), (6.599970698930017, 4.671897213421746, 5.966743132273474, 6.084402179481189, 5.436158589358215, 2.694020245647842, 2.076567382222911, 2.068622910443561, 2.9789964037756596, 1.0760283163972786, 0.8480716050565187, 0.5085902565930517, 0.0, 7.25397851771427, 5.594492822523568, 4.2403580252825925, 3.2280849491918353, 5.957992807551319, 2.8960720746209856, 2.076567382222911, 1.9243001754627442, 2.7180792946791077, 2.0281340598270634, 1.1933486264546949, 0.42471792849288603, 0.0), (6.428920683435397, 4.54410526323825, 5.82209677910744, 5.932899337468126, 5.3035433597051425, 2.630509683092322, 2.021416288233143, 2.020197466590449, 2.9100110935408576, 1.0484949446067282, 0.8265637312773799, 0.49585195914137514, 0.0, 7.0763738156542955, 5.454371550555126, 4.1328186563869, 3.145484833820184, 5.820022187081715, 2.8282764532266285, 2.021416288233143, 1.8789354879230868, 2.6517716798525712, 1.9776331124893758, 1.1644193558214881, 0.41310047847620457, 0.0), (6.248346046114523, 4.410294345434805, 5.667764151355587, 5.771950879349882, 5.1621931258279865, 2.562432334694784, 1.9634138608103373, 1.9682284184242402, 2.835842195988133, 1.0193709990831787, 0.8037806360873045, 0.48233231747378824, 0.0, 6.887185384447996, 5.30565549221167, 4.0189031804365225, 3.058112997249536, 5.671684391976266, 2.755519785793936, 1.9634138608103373, 1.8303088104962744, 2.5810965629139933, 1.9239836264499612, 1.1335528302711175, 0.4009358495849823, 0.0), (6.059031911370395, 4.270990187122201, 5.50449991514229, 5.60230820555966, 5.012791590203827, 2.490136929448583, 1.902800984996902, 1.9129851869747332, 2.7568809702442847, 0.9887860557234682, 0.7798253500011468, 0.468093800681876, 0.0, 6.6873225235789615, 5.149031807500635, 3.8991267500057343, 2.9663581671704042, 5.513761940488569, 2.6781792617646265, 1.902800984996902, 1.7786692353204163, 2.5063957951019136, 1.867436068519887, 1.100899983028458, 0.3882718351929274, 0.0), (5.861763403606015, 4.1267185154112305, 5.333058736591924, 5.4247227165306615, 4.856022455309747, 2.413972196347072, 1.8398185458352458, 1.8547371932717271, 2.6735186754361124, 0.9568696904244344, 0.7548009035337614, 0.45319887785722274, 0.0, 6.477694532530785, 4.985187656429449, 3.774004517668807, 2.8706090712733023, 5.347037350872225, 2.596632070580418, 1.8398185458352458, 1.724265854533623, 2.4280112276548733, 1.808240905510221, 1.066611747318385, 0.3751562286737483, 0.0), (5.657325647224384, 3.978005057412684, 5.154195281828863, 5.23994581269609, 4.692569423622822, 2.334286864383604, 1.7747074283677764, 1.7937538583450197, 2.5861465706904125, 0.9237514790829147, 0.7288103272000027, 0.4377100180914133, 0.0, 6.259210710787055, 4.814810199005545, 3.6440516360000137, 2.7712544372487433, 5.172293141380825, 2.5112554016830275, 1.7747074283677764, 1.6673477602740028, 2.346284711811411, 1.7466486042320304, 1.0308390563657726, 0.36163682340115316, 0.0), (5.4465037666285, 3.82537554023735, 4.968664216977482, 5.048728894489152, 4.523116197620137, 2.2514296625515327, 1.7077085176369027, 1.7303046032244096, 2.495155915133985, 0.8895609975957474, 0.7019566515147247, 0.4216896904760322, 0.0, 6.032780357831365, 4.638586595236354, 3.509783257573624, 2.6686829927872413, 4.99031183026797, 2.4224264445141737, 1.7077085176369027, 1.6081640446796661, 2.2615580988100685, 1.6829096314963843, 0.9937328433954964, 0.3477614127488501, 0.0), (5.230082886221365, 3.6693556909960217, 4.777220208162156, 4.851823362343048, 4.348346479778769, 2.1657493198442115, 1.6390626986850327, 1.664658848939696, 2.4009379678936282, 0.8544278218597702, 0.6743429069927823, 0.4052003641026643, 0.0, 5.799312773147303, 4.457204005129307, 3.3717145349639117, 2.56328346557931, 4.8018759357872565, 2.3305223885155746, 1.6390626986850327, 1.5469637998887225, 2.1741732398893845, 1.6172744541143496, 0.9554440416324312, 0.3335777900905475, 0.0), (5.00884813040598, 3.510471236799489, 4.58061792150726, 4.649980616690982, 4.168943972575801, 2.077594565254994, 1.5690108565545748, 1.5970860165206766, 2.303883988096141, 0.8184815277718206, 0.6460721241490297, 0.3883045080628938, 0.0, 5.5597172562184625, 4.271349588691831, 3.2303606207451483, 2.4554445833154612, 4.607767976192282, 2.235920423128947, 1.5690108565545748, 1.483996118039281, 2.0844719862879004, 1.5499935388969943, 0.916123584301452, 0.31913374879995354, 0.0), (4.783584623585344, 3.349247904758541, 4.3796120231371685, 4.443952057966156, 3.9855923784883105, 1.987314127777233, 1.4977938762879377, 1.5278555269971503, 2.204385234868321, 0.7818516912287369, 0.6172473334983214, 0.37106459144830567, 0.0, 5.314903106528433, 4.081710505931362, 3.0862366674916064, 2.34555507368621, 4.408770469736642, 2.1389977377960103, 1.4977938762879377, 1.4195100912694523, 1.9927961892441552, 1.4813173526553853, 0.8759224046274336, 0.3044770822507765, 0.0), (4.555077490162455, 3.18621142198397, 4.174957179176257, 4.2344890866017755, 3.7989753999933793, 1.8952567364042834, 1.425652642927529, 1.457236801398915, 2.102832967336968, 0.7446678881273562, 0.5879715655555117, 0.35354308335048457, 0.0, 5.0657796235608075, 3.8889739168553294, 2.939857827777558, 2.234003664382068, 4.205665934673936, 2.040131521958481, 1.425652642927529, 1.3537548117173452, 1.8994876999966896, 1.411496362200592, 0.8349914358352515, 0.28965558381672457, 0.0), (4.324111854540319, 3.0218875155865668, 3.9674080557488987, 4.0223431030310435, 3.609776739568087, 1.8017711201294973, 1.3528280415157574, 1.3854992607557703, 1.9996184446288805, 0.7070596943645169, 0.558347850835455, 0.33580245286101496, 0.0, 4.813256106799174, 3.693826981471164, 2.791739254177275, 2.1211790830935504, 3.999236889257761, 1.9396989650580787, 1.3528280415157574, 1.2869793715210696, 1.8048883697840434, 1.3407810343436815, 0.7934816111497798, 0.2747170468715061, 0.0), (4.0914728411219325, 2.856801912677122, 3.7577193189794698, 3.808265507687162, 3.4186800996895155, 1.7072060079462288, 1.2795609570950313, 1.3129123260975137, 1.8951329258708567, 0.6691566858370562, 0.528479219853006, 0.3179051690714816, 0.0, 4.5582418557271245, 3.496956859786297, 2.6423960992650297, 2.0074700575111684, 3.7902658517417134, 1.838077256536519, 1.2795609570950313, 1.2194328628187348, 1.7093400498447577, 1.269421835895721, 0.751543863795894, 0.25970926478882933, 0.0), (3.8579455743102966, 2.6914803403664256, 3.5466456349923448, 3.593007701003337, 3.226369182834742, 1.6119101288478317, 1.2060922747077587, 1.239745418453944, 1.7897676701896952, 0.6310884384418126, 0.49846870312301883, 0.299913701073469, 0.0, 4.301646169828252, 3.299050711808158, 2.4923435156150937, 1.8932653153254375, 3.5795353403793904, 1.7356435858355217, 1.2060922747077587, 1.1513643777484512, 1.613184591417371, 1.1976692336677792, 0.7093291269984691, 0.24468003094240237, 0.0), (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)) passenger_allighting_rate = ((0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1)) '\nparameters for reproducibiliy. More information: https://numpy.org/doc/stable/reference/random/parallel.html\n' entropy = 8991598675325360468762009371570610170 child_seed_index = (1, 35)
# -*- coding: utf8 -*- "Files-related convertors"
"""Files-related convertors"""
""" Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library function such as sqrt. Example 1: Input: 16 Returns: True Example 2: Input: 14 Returns: False """ __author__ = 'Daniel' class Solution(object): def isPerfectSquare(self, num): """ Debugging binary search :type num: int :rtype: bool """ if num == 1: return True lo = 1 hi = num/2 + 1 while lo < hi: mid = (lo + hi) / 2 midsq = mid**2 if midsq == num: return True elif midsq < num: lo = mid + 1 else: hi = mid return False
""" Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library function such as sqrt. Example 1: Input: 16 Returns: True Example 2: Input: 14 Returns: False """ __author__ = 'Daniel' class Solution(object): def is_perfect_square(self, num): """ Debugging binary search :type num: int :rtype: bool """ if num == 1: return True lo = 1 hi = num / 2 + 1 while lo < hi: mid = (lo + hi) / 2 midsq = mid ** 2 if midsq == num: return True elif midsq < num: lo = mid + 1 else: hi = mid return False
################################################ class BasePlantNonUDP(BasePlant): def init(self): pass def stop(self): pass def enable(self): pass def last_data_ts_arrival(self): # there's no delay when receiving feedback using the NonUDP classes, # since nothing is being sent over UDP and feedback data can be # requested at any time return time.time() def disable(self): pass def enable_watchdog(self, timeout_ms): pass class ArmAssistPlantNonUDP(BasePlantNonUDP): '''Similar methods as ArmAssistPlantUDP, but: 1) doesn't send/receive anything over UDP, and 2) uses simulated ArmAssist (can't be used with real ArmAssist). Use this plant to simulate having (near) instantaneous feedback. ''' def __init__(self, *args, **kwargs): # create ArmAssist process aa_tstep = 0.005 # how often the simulated ArmAssist moves itself aa_pic_tstep = 0.01 # how often the simulated ArmAssist PI controller acts KP = np.mat([[-10., 0., 0.], [ 0., -20., 0.], [ 0., 0., 20.]]) # P gain matrix TI = 0.1 * np.identity(3) # I gain matrix self.aa = armassist.ArmAssist(aa_tstep, aa_pic_tstep, KP, TI) self.aa.daemon = True def start(self): '''Start the ArmAssist simulation processes.''' self.aa.start() self.ts_start_data = time.time() def send_vel(self, vel): vel = vel.copy() # units of vel should be: (cm/s, cm/s, rad/s) assert len(vel) == 3 # don't need to convert from rad/s to deg/s # (aa_pic expects units of rad/s) vel = np.mat(vel).T self.aa.update_reference(vel) # make note -- no conversion needed def get_pos(self): return np.array(self.aa.get_state()['wf']).reshape((3,)) def get_vel(self): return np.array(self.aa.get_state()['wf_dot']).reshape((3,)) # a magic function that instantaneously moves the simulated ArmAssist to a # new position+orientation def set_pos(self, pos): '''Magically set position+orientation in units of (cm, cm, rad).''' wf = np.mat(pos).T self.aa._set_wf(wf) class ReHandPlantNonUDP(BasePlantNonUDP): '''Similar methods as ReHandPlantUDP, but: 1) doesn't send/receive anything over UDP, and 2) uses simulated ReHand (can't be used with real ReHand). Use this plant to simulate having (near) instantaneous feedback. ''' def __init__(self, *args, **kwargs): # create ReHand process self.rh = rehand.ReHand(tstep=0.005) self.rh.daemon = True def start(self): '''Start the ReHand simulation process.''' self.rh.start() self.ts_start_data = time.time() def send_vel(self, vel): vel = vel.copy() # units of vel should be: (rad/s, rad/s, rad/s, rad/s) assert len(vel) == 4 # don't need to convert from rad/s to deg/s # (rh expects units of rad/s) vel = np.mat(vel).T self.rh.set_vel(vel) # no conversion needed (everything already in units of rad) def get_pos(self): return np.array(self.rh.get_state()['pos']).reshape((4,)) def get_vel(self): return np.array(self.rh.get_state()['vel']).reshape((4,)) # a magic function that instantaneously sets the simulated ReHand's angles def set_pos(self, pos): '''Magically set angles in units of (rad, rad, rad, rad).''' self.rh._set_pos(pos) NONUDP_PLANT_CLS_DICT = { 'ArmAssist': ArmAssistPlantNonUDP, 'ReHand': ReHandPlantNonUDP, 'IsMore': IsMorePlantNonUDP, } class IsMorePlantNonUDP(BasePlantIsMore): '''Similar methods as IsMorePlant, but: 1) doesn't send/receive anything over UDP, and 2) uses simulated ArmAssist+ReHand (can't be used with real devices). Use this plant to simulate having (near) instantaneous feedback. ''' aa_plant_cls = ArmAssistPlantNonUDP rh_plant_cls = ReHandPlantNonUDP # a magic function that instantaneously moves the simulated ArmAssist to a # new position+orientation and sets the simulated ReHand's angles def set_pos(self, pos): '''Magically set ArmAssist's position+orientation in units of (cm, cm, rad) and ReHand's angles in units of (rad, rad, rad, rad). ''' self.aa_plant.set_pos(pos[0:3]) self.rh_plant.set_pos(pos[3:7])
class Baseplantnonudp(BasePlant): def init(self): pass def stop(self): pass def enable(self): pass def last_data_ts_arrival(self): return time.time() def disable(self): pass def enable_watchdog(self, timeout_ms): pass class Armassistplantnonudp(BasePlantNonUDP): """Similar methods as ArmAssistPlantUDP, but: 1) doesn't send/receive anything over UDP, and 2) uses simulated ArmAssist (can't be used with real ArmAssist). Use this plant to simulate having (near) instantaneous feedback. """ def __init__(self, *args, **kwargs): aa_tstep = 0.005 aa_pic_tstep = 0.01 kp = np.mat([[-10.0, 0.0, 0.0], [0.0, -20.0, 0.0], [0.0, 0.0, 20.0]]) ti = 0.1 * np.identity(3) self.aa = armassist.ArmAssist(aa_tstep, aa_pic_tstep, KP, TI) self.aa.daemon = True def start(self): """Start the ArmAssist simulation processes.""" self.aa.start() self.ts_start_data = time.time() def send_vel(self, vel): vel = vel.copy() assert len(vel) == 3 vel = np.mat(vel).T self.aa.update_reference(vel) def get_pos(self): return np.array(self.aa.get_state()['wf']).reshape((3,)) def get_vel(self): return np.array(self.aa.get_state()['wf_dot']).reshape((3,)) def set_pos(self, pos): """Magically set position+orientation in units of (cm, cm, rad).""" wf = np.mat(pos).T self.aa._set_wf(wf) class Rehandplantnonudp(BasePlantNonUDP): """Similar methods as ReHandPlantUDP, but: 1) doesn't send/receive anything over UDP, and 2) uses simulated ReHand (can't be used with real ReHand). Use this plant to simulate having (near) instantaneous feedback. """ def __init__(self, *args, **kwargs): self.rh = rehand.ReHand(tstep=0.005) self.rh.daemon = True def start(self): """Start the ReHand simulation process.""" self.rh.start() self.ts_start_data = time.time() def send_vel(self, vel): vel = vel.copy() assert len(vel) == 4 vel = np.mat(vel).T self.rh.set_vel(vel) def get_pos(self): return np.array(self.rh.get_state()['pos']).reshape((4,)) def get_vel(self): return np.array(self.rh.get_state()['vel']).reshape((4,)) def set_pos(self, pos): """Magically set angles in units of (rad, rad, rad, rad).""" self.rh._set_pos(pos) nonudp_plant_cls_dict = {'ArmAssist': ArmAssistPlantNonUDP, 'ReHand': ReHandPlantNonUDP, 'IsMore': IsMorePlantNonUDP} class Ismoreplantnonudp(BasePlantIsMore): """Similar methods as IsMorePlant, but: 1) doesn't send/receive anything over UDP, and 2) uses simulated ArmAssist+ReHand (can't be used with real devices). Use this plant to simulate having (near) instantaneous feedback. """ aa_plant_cls = ArmAssistPlantNonUDP rh_plant_cls = ReHandPlantNonUDP def set_pos(self, pos): """Magically set ArmAssist's position+orientation in units of (cm, cm, rad) and ReHand's angles in units of (rad, rad, rad, rad). """ self.aa_plant.set_pos(pos[0:3]) self.rh_plant.set_pos(pos[3:7])
#!/usr/bin/env python3 if __name__ == '__main__': message = """ The `awscreds` command has been deprecated. The command worked with the old shared (HSE) AWS account, but now all labs have been migrated to their own accounts. If you need help with AWS access, please email helpdesk@fredhutch.org. """ print(message)
if __name__ == '__main__': message = '\nThe `awscreds` command has been deprecated. \nThe command worked with the old shared (HSE) AWS account, but\nnow all labs have been migrated to their own accounts. \nIf you need help with AWS access, please email helpdesk@fredhutch.org.\n ' print(message)
""" Take a list and write a program that prints out all the elements of the list that are less than 5. """ a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] for items in a: if (items < 5): print(items) continue
""" Take a list and write a program that prints out all the elements of the list that are less than 5. """ a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] for items in a: if items < 5: print(items) continue
catlog = [ "New", "Macros", "Manager", "-", "Install", "Contribute", "update_plg", "-", "temporal_plg", "StackReg", "Games", "screencap_plg", ]
catlog = ['New', 'Macros', 'Manager', '-', 'Install', 'Contribute', 'update_plg', '-', 'temporal_plg', 'StackReg', 'Games', 'screencap_plg']
class A: def speak(self): return "hello" def speak_patch(self): return "world" A.speak = speak_patch some_class = A() print('some_class.speak():', some_class.speak()) some_class2 = A() print('some_class2.speak():', some_class2.speak())
class A: def speak(self): return 'hello' def speak_patch(self): return 'world' A.speak = speak_patch some_class = a() print('some_class.speak():', some_class.speak()) some_class2 = a() print('some_class2.speak():', some_class2.speak())
def requires_userinfo(func): """ If userinfo is required and not available then skip the test """ def userinfo_available(test): return func(test) if test.tester.info else 3 return userinfo_available def return_version_on_fail(func): """ If the result from alert is false we return also the mongo version """ @requires_userinfo def get_data(test): return func(test) or [False, test.tester.info["version"]] return get_data
def requires_userinfo(func): """ If userinfo is required and not available then skip the test """ def userinfo_available(test): return func(test) if test.tester.info else 3 return userinfo_available def return_version_on_fail(func): """ If the result from alert is false we return also the mongo version """ @requires_userinfo def get_data(test): return func(test) or [False, test.tester.info['version']] return get_data
# you can write to stdout for debugging purposes, e.g. # print("this is a debug message") _end = '_end_' def make_trie(words): root = dict() for word in words: current_dict = root for letter in word: current_dict = current_dict.setdefault(letter, {}) current_dict[_end] = _end return root def get_endings(di, prefix=''): res = [] for c in di: if c == _end: res.append(prefix) else: res.extend(get_endings(di[c], prefix + c)) return res def put_spaces(s, A): a = A cc = '' while s: c = s[0] cc += c s = s[1:] if c not in a: return None a = a[c] if _end in a: sp = put_spaces(s, A) if sp: return cc + ' ' + sp return cc def return_result(sentence, A): s = ''.join(sentence.split(' ')) if s == s[::-1]: return sentence return sentence + ' ' + put_spaces(s[::-1], A) def solution(S): A = make_trie(S.split(' ')) B = make_trie(S[::-1].split(' ')) stack = [] for a in S.split(' '): stack.append((a, '', '')) seen = set() while stack: x, y, sentence = stack.pop() if (x, y) in seen: continue seen.add((x,y)) bb = B cc = '' while x: if _end in bb: stack.append((x, '', sentence + cc)) c, x = x[0], x[1:] cc += c if c not in bb: cc = '' break bb = bb[c] if cc: for ending in get_endings(bb): if ending == '': return return_result(sentence + cc, A) stack.append(('', ending, sentence + cc + ' ')) cc = '' aa = A while y: if _end in aa: stack.append(('', y, sentence + cc + ' ')) c, y = y[0], y[1:] cc += c if c not in aa: cc = '' break aa = aa[c] if cc: for ending in get_endings(aa): if ending == '': return return_result(sentence + cc, A) stack.append((ending, '', sentence + cc)) return "NO"
_end = '_end_' def make_trie(words): root = dict() for word in words: current_dict = root for letter in word: current_dict = current_dict.setdefault(letter, {}) current_dict[_end] = _end return root def get_endings(di, prefix=''): res = [] for c in di: if c == _end: res.append(prefix) else: res.extend(get_endings(di[c], prefix + c)) return res def put_spaces(s, A): a = A cc = '' while s: c = s[0] cc += c s = s[1:] if c not in a: return None a = a[c] if _end in a: sp = put_spaces(s, A) if sp: return cc + ' ' + sp return cc def return_result(sentence, A): s = ''.join(sentence.split(' ')) if s == s[::-1]: return sentence return sentence + ' ' + put_spaces(s[::-1], A) def solution(S): a = make_trie(S.split(' ')) b = make_trie(S[::-1].split(' ')) stack = [] for a in S.split(' '): stack.append((a, '', '')) seen = set() while stack: (x, y, sentence) = stack.pop() if (x, y) in seen: continue seen.add((x, y)) bb = B cc = '' while x: if _end in bb: stack.append((x, '', sentence + cc)) (c, x) = (x[0], x[1:]) cc += c if c not in bb: cc = '' break bb = bb[c] if cc: for ending in get_endings(bb): if ending == '': return return_result(sentence + cc, A) stack.append(('', ending, sentence + cc + ' ')) cc = '' aa = A while y: if _end in aa: stack.append(('', y, sentence + cc + ' ')) (c, y) = (y[0], y[1:]) cc += c if c not in aa: cc = '' break aa = aa[c] if cc: for ending in get_endings(aa): if ending == '': return return_result(sentence + cc, A) stack.append((ending, '', sentence + cc)) return 'NO'
def copy_not_empty_attrs(src, dst): if src is not None and dst is not None: for attribute in src.__dict__: value = getattr(src, attribute) if value: setattr(dst, attribute, value) class NoneDict(dict): def __init__(self, args, **kwargs): self.update(args, **kwargs) if args is not None else None def __getitem__(self, key): return dict.get(self, key) def set_if_type_is_valid(value, expected_type): if not isinstance(value, expected_type): raise ValueError("Expected a " + str(expected_type) + " found: " + str(type(value))) return value def set_if_has_attr(attr_name, expected_attr_owner): if not hasattr(expected_attr_owner, attr_name): raise ValueError("Expected one of " + str(expected_attr_owner) + " attributes, found: " + str(attr_name)) return attr_name
def copy_not_empty_attrs(src, dst): if src is not None and dst is not None: for attribute in src.__dict__: value = getattr(src, attribute) if value: setattr(dst, attribute, value) class Nonedict(dict): def __init__(self, args, **kwargs): self.update(args, **kwargs) if args is not None else None def __getitem__(self, key): return dict.get(self, key) def set_if_type_is_valid(value, expected_type): if not isinstance(value, expected_type): raise value_error('Expected a ' + str(expected_type) + ' found: ' + str(type(value))) return value def set_if_has_attr(attr_name, expected_attr_owner): if not hasattr(expected_attr_owner, attr_name): raise value_error('Expected one of ' + str(expected_attr_owner) + ' attributes, found: ' + str(attr_name)) return attr_name
def make_arr(data): t = {} for ov in data: if t.get(ov['resource']) is None: t[ov['resource']] = {} t[ov['resource']][ov['other_input']] = ov['value'] return t
def make_arr(data): t = {} for ov in data: if t.get(ov['resource']) is None: t[ov['resource']] = {} t[ov['resource']][ov['other_input']] = ov['value'] return t
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # ============================================================================ # fap4malware - File analyzation program to detect malware # Malware definition list # Copyright (C) 2018 by Ralf Kilian # Distributed under the MIT License (https://opensource.org/licenses/MIT) # # GitHub: https://github.com/urbanware-org/fap4malware # GitHub: https://gitlab.com/urbanware-org/fap4malware # ============================================================================ DEFLIST = { # This is the global definition list that contains the fingerprints of the # malicious files in the form of SHA256 hashes. The list contains some # pre-defined fingerprints: "6eb9f90ae2cfe10f0364729298351eb2afba298a6c8b36b47483785b78a87c4e": "Test file included with 'fap4malware'", "275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f": "EICAR test signature", "2546dcffc5ad854d4ddc64fbf056871cd5a00f2471cb7a5bfd4ac23b6e9eedad": "EICAR test signature (zipped)", "e1105070ba828007508566e28a2b8d4c65d192e9eaf3b7868382b7cae747b397": "EICAR test signature (double zipped)", # In order to add a new definition, for example from the file 'virus.exe', # create its fingerprint first. # # On Linux you can simply do that using the 'sha256sum' tool as follows: # # sha256sum virus.exe | awk '{ print $1 }' # # Of course, you can also execute that command without piping its output # to 'awk' and just copy the SHA256 hash. # # Copy the returned SHA256 hash and add it to this list along with the # name (or description) of the malware: # # "6eb9f90ae2cfe10f0364729298351eb2afba298a6c8b36b47483785b78a87c4e": # "Win32.Trojan.Foo.Bar", } # EOF
deflist = {'6eb9f90ae2cfe10f0364729298351eb2afba298a6c8b36b47483785b78a87c4e': "Test file included with 'fap4malware'", '275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f': 'EICAR test signature', '2546dcffc5ad854d4ddc64fbf056871cd5a00f2471cb7a5bfd4ac23b6e9eedad': 'EICAR test signature (zipped)', 'e1105070ba828007508566e28a2b8d4c65d192e9eaf3b7868382b7cae747b397': 'EICAR test signature (double zipped)'}
def createMatrix(rowCount, colCount): mat = [] for i in range(rowCount): rowList = [] for j in range(colCount): rowList.append(0) mat.append(rowList) return mat with open('input.txt') as file: input = (file.readline()).split(" ") n = int(input[0]) k = int(input[1]) C = createMatrix(n, n) fib = [0,1] for i in range(1,k+1): fib.append(fib[i-1] + fib[i]) F = lambda floor: fib[k+1]**(2*floor - 2) for i in range(n): C[i][0] = 1 C[i][i] = 1 for j in range(1, i): C[i][j] = C[i-1][j] + C[i-1][j-1] N = (sum(C[n-1][i] * F(n-i) for i in range(n))) % 1000000009 with open('output.txt', 'w') as file: file.write(str(N))
def create_matrix(rowCount, colCount): mat = [] for i in range(rowCount): row_list = [] for j in range(colCount): rowList.append(0) mat.append(rowList) return mat with open('input.txt') as file: input = file.readline().split(' ') n = int(input[0]) k = int(input[1]) c = create_matrix(n, n) fib = [0, 1] for i in range(1, k + 1): fib.append(fib[i - 1] + fib[i]) f = lambda floor: fib[k + 1] ** (2 * floor - 2) for i in range(n): C[i][0] = 1 C[i][i] = 1 for j in range(1, i): C[i][j] = C[i - 1][j] + C[i - 1][j - 1] n = sum((C[n - 1][i] * f(n - i) for i in range(n))) % 1000000009 with open('output.txt', 'w') as file: file.write(str(N))
# -*- coding: utf-8 -*- # Copyright 2019 Cohesity Inc. class DeployCertParameters(object): """Implementation of the 'DeployCertParameters' model. Specifies the parameters used to generate and deploy a certificate. Attributes: cert_file_name (string): Specifies the filename of the certificate. password (list of string): Specifies the passsword of the host to establish SSH connection. The certificate is copied to the host after generating the certificate on the cluster. server_name (list of string): Specifies the servername of the host where certificate is to be deployed. target (list of string): Specifies the target location on the host where the certificate is deployed. user_name (list of string): TODO(Sai Akhil S): Accept credentials for the cluster instead of each each node and copy certificate to all nodes. Specifies the username of the host. valid_days (long|int): Specifies the number of days after which the certificate will expire. The user has to input the number of days (from the current date) till when the certificate is valid. """ # Create a mapping from Model property names to API property names _names = { "cert_file_name":'certFileName', "password":'password', "server_name":'serverName', "target":'target', "user_name":'userName', "valid_days":'validDays' } def __init__(self, cert_file_name=None, password=None, server_name=None, target=None, user_name=None, valid_days=None): """Constructor for the DeployCertParameters class""" # Initialize members of the class self.cert_file_name = cert_file_name self.password = password self.server_name = server_name self.target = target self.user_name = user_name self.valid_days = valid_days @classmethod def from_dictionary(cls, dictionary): """Creates an instance of this model from a dictionary Args: dictionary (dictionary): A dictionary representation of the object as obtained from the deserialization of the server's response. The keys MUST match property names in the API description. Returns: object: An instance of this structure class. """ if dictionary is None: return None # Extract variables from the dictionary cert_file_name = dictionary.get('certFileName') password = dictionary.get('password') server_name = dictionary.get('serverName') target = dictionary.get('target') user_name = dictionary.get('userName') valid_days = dictionary.get('validDays') # Return an object of this model return cls(cert_file_name, password, server_name, target, user_name, valid_days)
class Deploycertparameters(object): """Implementation of the 'DeployCertParameters' model. Specifies the parameters used to generate and deploy a certificate. Attributes: cert_file_name (string): Specifies the filename of the certificate. password (list of string): Specifies the passsword of the host to establish SSH connection. The certificate is copied to the host after generating the certificate on the cluster. server_name (list of string): Specifies the servername of the host where certificate is to be deployed. target (list of string): Specifies the target location on the host where the certificate is deployed. user_name (list of string): TODO(Sai Akhil S): Accept credentials for the cluster instead of each each node and copy certificate to all nodes. Specifies the username of the host. valid_days (long|int): Specifies the number of days after which the certificate will expire. The user has to input the number of days (from the current date) till when the certificate is valid. """ _names = {'cert_file_name': 'certFileName', 'password': 'password', 'server_name': 'serverName', 'target': 'target', 'user_name': 'userName', 'valid_days': 'validDays'} def __init__(self, cert_file_name=None, password=None, server_name=None, target=None, user_name=None, valid_days=None): """Constructor for the DeployCertParameters class""" self.cert_file_name = cert_file_name self.password = password self.server_name = server_name self.target = target self.user_name = user_name self.valid_days = valid_days @classmethod def from_dictionary(cls, dictionary): """Creates an instance of this model from a dictionary Args: dictionary (dictionary): A dictionary representation of the object as obtained from the deserialization of the server's response. The keys MUST match property names in the API description. Returns: object: An instance of this structure class. """ if dictionary is None: return None cert_file_name = dictionary.get('certFileName') password = dictionary.get('password') server_name = dictionary.get('serverName') target = dictionary.get('target') user_name = dictionary.get('userName') valid_days = dictionary.get('validDays') return cls(cert_file_name, password, server_name, target, user_name, valid_days)
# Source: https://github.com/sventhijssen/pgmtocnf # Authors: Sven Thijssen and Gillis Hermans class Literal(): def __init__(self, name, positive=True): super(Literal, self).__init__() self.atom = name self.positive = positive def __str__(self): if self.positive: return str(self.atom) elif self.atom == 'False': return str(self.atom) else: return "\\+" + str(self.atom) def __repr__(self): if self.positive: return str(self.atom) elif self.atom == 'False': return str(self.atom) else: return "\\+" + str(self.atom) def __eq__(self, other): if isinstance(other, Literal): return self.atom == other.atom and self.positive == other.positive return False def __hash__(self): return hash(self.atom) def negate(self): if self.positive: return Literal(self.atom, False) return Literal(self.atom, True)
class Literal: def __init__(self, name, positive=True): super(Literal, self).__init__() self.atom = name self.positive = positive def __str__(self): if self.positive: return str(self.atom) elif self.atom == 'False': return str(self.atom) else: return '\\+' + str(self.atom) def __repr__(self): if self.positive: return str(self.atom) elif self.atom == 'False': return str(self.atom) else: return '\\+' + str(self.atom) def __eq__(self, other): if isinstance(other, Literal): return self.atom == other.atom and self.positive == other.positive return False def __hash__(self): return hash(self.atom) def negate(self): if self.positive: return literal(self.atom, False) return literal(self.atom, True)
# -*- coding:utf-8 -*- class Message(dict): """ The base message class """ pass
class Message(dict): """ The base message class """ pass
class PointsSet: def __init__(self, delaunay_diagram, initial_point, minimal_point_density, minimal_regression): self._delaunay = delaunay_diagram self._points = {initial_point} self._triangles = set() self._points_to_add = set(p for p in delaunay_diagram.neighbours[initial_point] if p.regression > minimal_regression) self._points_to_remove = set() self._minimal_regression = minimal_regression self._minimal_point_density = minimal_point_density self._area = 0 self._value = 0 def _can_remove(self, point): if len(self._points) == 1: return False if len(self._points) <= 3: return True # check if there are no points left that are not a part of triangle for p in self._delaunay.neighbours[point].intersection(self._points): can_be_left = False for t in self._delaunay.triangles_by_points[p].intersection(self._triangles): if point not in t.points: can_be_left = True break if not can_be_left: return False # check left triangles consistency triangles_to_reach = {t for t in self._triangles if point not in t.points} reached = [triangles_to_reach.pop()] if len(triangles_to_reach) > 0 else [] while len(reached) > 0: triangle = reached.pop() new_reached = triangle.adjacent.intersection(triangles_to_reach) reached.extend(new_reached) triangles_to_reach -= new_reached return len(triangles_to_reach) == 0 def add_point(self, point): """ :param point: Point to add, must be in points_to_add :return: None """ self._points.add(point) if len(self._points) == 2: self._points_to_add = set() else: self._points_to_add.remove(point) new_triangles = set() for p in self._delaunay.neighbours[point].intersection(self._points): for m in self._delaunay.neighbours_making_triangles[(point, p)]: if m not in self._points: if m.regression > self._minimal_regression: self._points_to_add.add(m) else: triangle = self._delaunay.triangles[(point, p, m)] new_triangles.add(triangle) self._area += sum(t.area for t in new_triangles) self._triangles.update(new_triangles) self._points_to_remove = {p for p in self._points if self._can_remove(p)} self._value = self._get_value(len(self._points), self._triangles) def remove_point(self, point): """ :param point: Point to remove, must be in points_to_remove :return: None """ self._points.remove(point) removed_triangles = self._delaunay.triangles_by_points[point].intersection(self._triangles) self._triangles -= removed_triangles self._area -= sum(t.area for t in removed_triangles) if len(self._points) == 1: self._points_to_add = set(p for p in self._delaunay.neighbours[self._points.__iter__().__next__()] if p.regression > self._minimal_regression) else: for p in self._delaunay.neighbours[point].intersection(self._points_to_add): for n in self._delaunay.neighbours[p].intersection(self._points): if len(self._delaunay.neighbours_making_triangles[(p, n)].intersection(self._points)) > 0: self._points_to_add.remove(p) break self._points_to_add.add(point) self._points_to_remove = {p for p in self._points if self._can_remove(p)} self._value = self._get_value(len(self._points), self._triangles) def _get_value(self, points_n, triangles): if len(triangles) == 0: return 0 area = sum(t.area for t in triangles) max_area = points_n / self._minimal_point_density if area <= max_area: return area area = 0 for t in sorted(triangles, key=lambda t: t.area): if area + t.area <= max_area: area += t.area else: area -= t.area return area def value_with_added(self, point): triangles = self._triangles.union( t for t in self._delaunay.triangles_by_points[point] if t.points.issubset(self._points)) return self._get_value(len(self._points) + 1, triangles) def value_with_removed(self, point): triangles = self._triangles - self._delaunay.triangles_by_points[point] return self._get_value(len(self._points) - 1, triangles) @property def points_to_add(self): return self._points_to_add @property def points_to_remove(self): return self._points_to_remove @property def value(self): return self._value @property def points(self): return self._points @property def has_minimal_density(self): return len(self._points) >= self._minimal_point_density * self._area @property def area(self): return self._area
class Pointsset: def __init__(self, delaunay_diagram, initial_point, minimal_point_density, minimal_regression): self._delaunay = delaunay_diagram self._points = {initial_point} self._triangles = set() self._points_to_add = set((p for p in delaunay_diagram.neighbours[initial_point] if p.regression > minimal_regression)) self._points_to_remove = set() self._minimal_regression = minimal_regression self._minimal_point_density = minimal_point_density self._area = 0 self._value = 0 def _can_remove(self, point): if len(self._points) == 1: return False if len(self._points) <= 3: return True for p in self._delaunay.neighbours[point].intersection(self._points): can_be_left = False for t in self._delaunay.triangles_by_points[p].intersection(self._triangles): if point not in t.points: can_be_left = True break if not can_be_left: return False triangles_to_reach = {t for t in self._triangles if point not in t.points} reached = [triangles_to_reach.pop()] if len(triangles_to_reach) > 0 else [] while len(reached) > 0: triangle = reached.pop() new_reached = triangle.adjacent.intersection(triangles_to_reach) reached.extend(new_reached) triangles_to_reach -= new_reached return len(triangles_to_reach) == 0 def add_point(self, point): """ :param point: Point to add, must be in points_to_add :return: None """ self._points.add(point) if len(self._points) == 2: self._points_to_add = set() else: self._points_to_add.remove(point) new_triangles = set() for p in self._delaunay.neighbours[point].intersection(self._points): for m in self._delaunay.neighbours_making_triangles[point, p]: if m not in self._points: if m.regression > self._minimal_regression: self._points_to_add.add(m) else: triangle = self._delaunay.triangles[point, p, m] new_triangles.add(triangle) self._area += sum((t.area for t in new_triangles)) self._triangles.update(new_triangles) self._points_to_remove = {p for p in self._points if self._can_remove(p)} self._value = self._get_value(len(self._points), self._triangles) def remove_point(self, point): """ :param point: Point to remove, must be in points_to_remove :return: None """ self._points.remove(point) removed_triangles = self._delaunay.triangles_by_points[point].intersection(self._triangles) self._triangles -= removed_triangles self._area -= sum((t.area for t in removed_triangles)) if len(self._points) == 1: self._points_to_add = set((p for p in self._delaunay.neighbours[self._points.__iter__().__next__()] if p.regression > self._minimal_regression)) else: for p in self._delaunay.neighbours[point].intersection(self._points_to_add): for n in self._delaunay.neighbours[p].intersection(self._points): if len(self._delaunay.neighbours_making_triangles[p, n].intersection(self._points)) > 0: self._points_to_add.remove(p) break self._points_to_add.add(point) self._points_to_remove = {p for p in self._points if self._can_remove(p)} self._value = self._get_value(len(self._points), self._triangles) def _get_value(self, points_n, triangles): if len(triangles) == 0: return 0 area = sum((t.area for t in triangles)) max_area = points_n / self._minimal_point_density if area <= max_area: return area area = 0 for t in sorted(triangles, key=lambda t: t.area): if area + t.area <= max_area: area += t.area else: area -= t.area return area def value_with_added(self, point): triangles = self._triangles.union((t for t in self._delaunay.triangles_by_points[point] if t.points.issubset(self._points))) return self._get_value(len(self._points) + 1, triangles) def value_with_removed(self, point): triangles = self._triangles - self._delaunay.triangles_by_points[point] return self._get_value(len(self._points) - 1, triangles) @property def points_to_add(self): return self._points_to_add @property def points_to_remove(self): return self._points_to_remove @property def value(self): return self._value @property def points(self): return self._points @property def has_minimal_density(self): return len(self._points) >= self._minimal_point_density * self._area @property def area(self): return self._area
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: def flatten(self, root): """ :type root: TreeNode :rtype: void Do not return anything, modify root in-place instead. """ self.suc = None self.helper(root) def helper(self, node): if not node: return None self.helper(node.right) self.helper(node.left) node.right = self.suc node.left = None self.suc = node
class Solution: def flatten(self, root): """ :type root: TreeNode :rtype: void Do not return anything, modify root in-place instead. """ self.suc = None self.helper(root) def helper(self, node): if not node: return None self.helper(node.right) self.helper(node.left) node.right = self.suc node.left = None self.suc = node
# x = 101 # # # print no of digits in a number # print(len(str(x))) # # # def end_zeros(num: int) -> int: # # your code here # # return str(num).count('0') # return len(str(num)) - len(str(num).rstrip('0')) # # # if __name__ == '__main__': # print("Example:") # print(end_zeros(0)) # # # These "asserts" are used for self-checking and not for an auto-testing # assert end_zeros(0) == 1 # assert end_zeros(1) == 0 # assert end_zeros(10) == 1 # assert end_zeros(101) == 0 # assert end_zeros(245) == 0 # assert end_zeros(100100) == 2 # print("Coding complete? Click 'Check' to earn cool rewards!") # def is_even(num: int) -> bool: # # your code here # return not (num % 2) # # # if __name__ == '__main__': # print("Example:") # print(is_even(2)) # # # These "asserts" are used for self-checking and not for an auto-testing # assert is_even(2) == True # assert is_even(5) == False # assert is_even(0) == True def correct_sentence(text: str) -> str: text = text[0].upper() + text[1:] if (text[len(text)-1]) != '.': return text[0:] + '.' return text[0:] # return text.title().join('.') if __name__ == '__main__': print("Example:") print(correct_sentence("greetings, friends")) # These "asserts" are used for self-checking and not for an auto-testing assert correct_sentence("greetings, friends") == "Greetings, friends." assert correct_sentence("Greetings, friends") == "Greetings, friends." assert correct_sentence("Greetings, friends.") == "Greetings, friends." assert correct_sentence("hi") == "Hi." assert correct_sentence("welcome to New York") == "Welcome to New York." print("Coding complete? Click 'Check' to earn cool rewards!")
def correct_sentence(text: str) -> str: text = text[0].upper() + text[1:] if text[len(text) - 1] != '.': return text[0:] + '.' return text[0:] if __name__ == '__main__': print('Example:') print(correct_sentence('greetings, friends')) assert correct_sentence('greetings, friends') == 'Greetings, friends.' assert correct_sentence('Greetings, friends') == 'Greetings, friends.' assert correct_sentence('Greetings, friends.') == 'Greetings, friends.' assert correct_sentence('hi') == 'Hi.' assert correct_sentence('welcome to New York') == 'Welcome to New York.' print("Coding complete? Click 'Check' to earn cool rewards!")
myStr = "Hello World" #print(dir(myStr)) print(myStr.upper()) print(myStr.swapcase()) print(myStr.replace("Hello", "Goodbye")) print(myStr.count("l")) print(myStr.startswith("he")) print(myStr.split(" ")) print(len(myStr)) print(myStr.find("e")) print(myStr.index("e")) print(myStr.isnumeric()) print(myStr.isalpha()) print(myStr[4]) print(f"Poo choo {myStr}")
my_str = 'Hello World' print(myStr.upper()) print(myStr.swapcase()) print(myStr.replace('Hello', 'Goodbye')) print(myStr.count('l')) print(myStr.startswith('he')) print(myStr.split(' ')) print(len(myStr)) print(myStr.find('e')) print(myStr.index('e')) print(myStr.isnumeric()) print(myStr.isalpha()) print(myStr[4]) print(f'Poo choo {myStr}')
expected_output = { "boot_loader_version": "Not applicable", "build": "4567", "chassis_serial_number": "None", "commit_pending": "false", "configuration_template": "CLItemplate_srp_vedge", "controller_compatibility": "20.3", "cpu_allocation": {"control": 1, "data": 3, "total": 4}, "cpu_reported_reboot": "Not Applicable", "engineering_signed": True, "cpu_states": {"idle": 93.48, "system": 5.26, "user": 1.25}, "current_time": "Thu Aug 06 02:49:25 PDT 2020", "disk_usage": { "avail_mega": 6741, "filesystem": "/dev/root", "mounted_on": "/", "size_mega": 7615, "use_pc": 6, "used_mega": 447, }, "last_reboot": "Initiated by user - activate 99.99.999-4567.", "load_average": {"minute_1": 3.2, "minute_15": 3.1, "minute_5": 3.13}, "memory_usage": { "buffers_kilo": 0, "cache_kilo": 0, "free_kilo": 444116, "total_kilo": 1907024, "used_kilo": 1462908, }, "model_name": "vedge-cloud", "personality": "vedge", "processes": 250, "services": "None", "system_fips_state": "Enabled", "system_logging_disk": "enabled", "system_logging_host": "disabled", "system_state": "GREEN. All daemons up", "system_uptime": "0 days 21 hrs 35 min 28 sec", "testbed_mode": "Enabled", "version": "99.99.999-4567", "vmanaged": "true", }
expected_output = {'boot_loader_version': 'Not applicable', 'build': '4567', 'chassis_serial_number': 'None', 'commit_pending': 'false', 'configuration_template': 'CLItemplate_srp_vedge', 'controller_compatibility': '20.3', 'cpu_allocation': {'control': 1, 'data': 3, 'total': 4}, 'cpu_reported_reboot': 'Not Applicable', 'engineering_signed': True, 'cpu_states': {'idle': 93.48, 'system': 5.26, 'user': 1.25}, 'current_time': 'Thu Aug 06 02:49:25 PDT 2020', 'disk_usage': {'avail_mega': 6741, 'filesystem': '/dev/root', 'mounted_on': '/', 'size_mega': 7615, 'use_pc': 6, 'used_mega': 447}, 'last_reboot': 'Initiated by user - activate 99.99.999-4567.', 'load_average': {'minute_1': 3.2, 'minute_15': 3.1, 'minute_5': 3.13}, 'memory_usage': {'buffers_kilo': 0, 'cache_kilo': 0, 'free_kilo': 444116, 'total_kilo': 1907024, 'used_kilo': 1462908}, 'model_name': 'vedge-cloud', 'personality': 'vedge', 'processes': 250, 'services': 'None', 'system_fips_state': 'Enabled', 'system_logging_disk': 'enabled', 'system_logging_host': 'disabled', 'system_state': 'GREEN. All daemons up', 'system_uptime': '0 days 21 hrs 35 min 28 sec', 'testbed_mode': 'Enabled', 'version': '99.99.999-4567', 'vmanaged': 'true'}
# # PySNMP MIB module NET-SNMP-EXAMPLES-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/NET-SNMP-EXAMPLES-MIB # Produced by pysmi-0.3.4 at Wed May 1 14:18:07 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint", "ConstraintsIntersection") InetAddress, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddress", "InetAddressType") netSnmp, = mibBuilder.importSymbols("NET-SNMP-MIB", "netSnmp") SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") Counter32, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, MibIdentifier, TimeTicks, ModuleIdentity, Counter64, NotificationType, ObjectIdentity, IpAddress, Gauge32, Unsigned32, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "MibIdentifier", "TimeTicks", "ModuleIdentity", "Counter64", "NotificationType", "ObjectIdentity", "IpAddress", "Gauge32", "Unsigned32", "Bits") StorageType, DisplayString, TextualConvention, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "StorageType", "DisplayString", "TextualConvention", "RowStatus") netSnmpExamples = ModuleIdentity((1, 3, 6, 1, 4, 1, 8072, 2)) netSnmpExamples.setRevisions(('2004-06-15 00:00', '2002-02-06 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: netSnmpExamples.setRevisionsDescriptions(('Corrected notification example definitions', 'First draft',)) if mibBuilder.loadTexts: netSnmpExamples.setLastUpdated('200406150000Z') if mibBuilder.loadTexts: netSnmpExamples.setOrganization('www.net-snmp.org') if mibBuilder.loadTexts: netSnmpExamples.setContactInfo('postal: Wes Hardaker P.O. Box 382 Davis CA 95617 email: net-snmp-coders@lists.sourceforge.net') if mibBuilder.loadTexts: netSnmpExamples.setDescription('Example MIB objects for agent module example implementations') netSnmpExampleScalars = MibIdentifier((1, 3, 6, 1, 4, 1, 8072, 2, 1)) netSnmpExampleTables = MibIdentifier((1, 3, 6, 1, 4, 1, 8072, 2, 2)) netSnmpExampleNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 8072, 2, 3)) netSnmpExampleNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 8072, 2, 3, 0)) netSnmpExampleNotificationObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 8072, 2, 3, 2)) netSnmpExampleInteger = MibScalar((1, 3, 6, 1, 4, 1, 8072, 2, 1, 1), Integer32().clone(42)).setMaxAccess("readwrite") if mibBuilder.loadTexts: netSnmpExampleInteger.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleInteger.setDescription("This is a simple object which merely houses a writable integer. It's only purposes is to hold the value of a single integer. Writing to it will simply change the value for subsequent GET/GETNEXT/GETBULK retrievals. This example object is implemented in the agent/mibgroup/examples/scalar_int.c file.") netSnmpExampleSleeper = MibScalar((1, 3, 6, 1, 4, 1, 8072, 2, 1, 2), Integer32().clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: netSnmpExampleSleeper.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleSleeper.setDescription("This is a simple object which is a basic integer. It's value indicates the number of seconds that the agent will take in responding to requests of this object. This is implemented in a way which will allow the agent to keep responding to other requests while access to this object is blocked. It is writable, and changing it's value will change the amount of time the agent will effectively wait for before returning a response when this object is manipulated. Note that SET requests through this object will take longer, since the delay is applied to each internal transaction phase, which could result in delays of up to 4 times the value of this object. This example object is implemented in the agent/mibgroup/examples/delayed_instance.c file.") netSnmpExampleString = MibScalar((1, 3, 6, 1, 4, 1, 8072, 2, 1, 3), SnmpAdminString().clone('So long, and thanks for all the fish!')).setMaxAccess("readwrite") if mibBuilder.loadTexts: netSnmpExampleString.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleString.setDescription("This is a simple object which merely houses a writable string. It's only purposes is to hold the value of a single string. Writing to it will simply change the value for subsequent GET/GETNEXT/GETBULK retrievals. This example object is implemented in the agent/mibgroup/examples/watched.c file.") netSnmpIETFWGTable = MibTable((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1), ) if mibBuilder.loadTexts: netSnmpIETFWGTable.setStatus('current') if mibBuilder.loadTexts: netSnmpIETFWGTable.setDescription('This table merely contains a set of data which is otherwise useless for true network management. It is a table which describes properies about a IETF Working Group, such as the names of the two working group chairs. This example table is implemented in the agent/mibgroup/examples/data_set.c file.') netSnmpIETFWGEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1, 1), ).setIndexNames((0, "NET-SNMP-EXAMPLES-MIB", "nsIETFWGName")) if mibBuilder.loadTexts: netSnmpIETFWGEntry.setStatus('current') if mibBuilder.loadTexts: netSnmpIETFWGEntry.setDescription('A row describing a given working group') nsIETFWGName = MibTableColumn((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))) if mibBuilder.loadTexts: nsIETFWGName.setStatus('current') if mibBuilder.loadTexts: nsIETFWGName.setDescription('The name of the IETF Working Group this table describes.') nsIETFWGChair1 = MibTableColumn((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1, 1, 2), OctetString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: nsIETFWGChair1.setStatus('current') if mibBuilder.loadTexts: nsIETFWGChair1.setDescription('One of the names of the chairs for the IETF working group.') nsIETFWGChair2 = MibTableColumn((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1, 1, 3), OctetString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: nsIETFWGChair2.setStatus('current') if mibBuilder.loadTexts: nsIETFWGChair2.setDescription('The other name, if one exists, of the chairs for the IETF working group.') netSnmpHostsTable = MibTable((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2), ) if mibBuilder.loadTexts: netSnmpHostsTable.setStatus('current') if mibBuilder.loadTexts: netSnmpHostsTable.setDescription('An example table that implements a wrapper around the /etc/hosts file on a machine using the iterator helper API.') netSnmpHostsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1), ).setIndexNames((0, "NET-SNMP-EXAMPLES-MIB", "netSnmpHostName")) if mibBuilder.loadTexts: netSnmpHostsEntry.setStatus('current') if mibBuilder.loadTexts: netSnmpHostsEntry.setDescription('A host name mapped to an ip address') netSnmpHostName = MibTableColumn((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))) if mibBuilder.loadTexts: netSnmpHostName.setStatus('current') if mibBuilder.loadTexts: netSnmpHostName.setDescription('A host name that exists in the /etc/hosts (unix) file.') netSnmpHostAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 2), InetAddressType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: netSnmpHostAddressType.setStatus('current') if mibBuilder.loadTexts: netSnmpHostAddressType.setDescription('The address type of then given host.') netSnmpHostAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 3), InetAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: netSnmpHostAddress.setStatus('current') if mibBuilder.loadTexts: netSnmpHostAddress.setDescription('The address of then given host.') netSnmpHostStorage = MibTableColumn((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 4), StorageType().clone('nonVolatile')).setMaxAccess("readcreate") if mibBuilder.loadTexts: netSnmpHostStorage.setStatus('current') if mibBuilder.loadTexts: netSnmpHostStorage.setDescription('The storage type for this conceptual row.') netSnmpHostRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 5), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: netSnmpHostRowStatus.setStatus('current') if mibBuilder.loadTexts: netSnmpHostRowStatus.setDescription('The status of this conceptual row.') netSnmpExampleHeartbeatRate = MibScalar((1, 3, 6, 1, 4, 1, 8072, 2, 3, 2, 1), Integer32()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: netSnmpExampleHeartbeatRate.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleHeartbeatRate.setDescription('A simple integer object, to act as a payload for the netSnmpExampleHeartbeatNotification. The value has no real meaning, but is nominally the interval (in seconds) between successive heartbeat notifications.') netSnmpExampleHeartbeatName = MibScalar((1, 3, 6, 1, 4, 1, 8072, 2, 3, 2, 2), SnmpAdminString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: netSnmpExampleHeartbeatName.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleHeartbeatName.setDescription("A simple string object, to act as an optional payload for the netSnmpExampleHeartbeatNotification. This varbind is not part of the notification definition, so is optional and need not be included in the notification payload. The value has no real meaning, but the romantically inclined may take it to be the object of the sender's affection, and hence the cause of the heart beating faster.") netSnmpExampleHeartbeatNotification = NotificationType((1, 3, 6, 1, 4, 1, 8072, 2, 3, 0, 1)).setObjects(("NET-SNMP-EXAMPLES-MIB", "netSnmpExampleHeartbeatRate")) if mibBuilder.loadTexts: netSnmpExampleHeartbeatNotification.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleHeartbeatNotification.setDescription('An example notification, used to illustrate the definition and generation of trap and inform PDUs (including the use of both standard and additional varbinds in the notification payload). This notification will typically be sent every 30 seconds, using the code found in the example module agent/mibgroup/examples/notification.c') netSnmpExampleNotification = MibScalar((1, 3, 6, 1, 4, 1, 8072, 2, 3, 1), SnmpAdminString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: netSnmpExampleNotification.setStatus('obsolete') if mibBuilder.loadTexts: netSnmpExampleNotification.setDescription('This object was improperly defined for its original purpose, and should no longer be used.') mibBuilder.exportSymbols("NET-SNMP-EXAMPLES-MIB", netSnmpExampleString=netSnmpExampleString, netSnmpIETFWGEntry=netSnmpIETFWGEntry, netSnmpExampleSleeper=netSnmpExampleSleeper, netSnmpIETFWGTable=netSnmpIETFWGTable, PYSNMP_MODULE_ID=netSnmpExamples, netSnmpHostStorage=netSnmpHostStorage, nsIETFWGChair2=nsIETFWGChair2, nsIETFWGChair1=nsIETFWGChair1, netSnmpHostRowStatus=netSnmpHostRowStatus, netSnmpExampleInteger=netSnmpExampleInteger, nsIETFWGName=nsIETFWGName, netSnmpHostsTable=netSnmpHostsTable, netSnmpExampleScalars=netSnmpExampleScalars, netSnmpExampleHeartbeatName=netSnmpExampleHeartbeatName, netSnmpHostName=netSnmpHostName, netSnmpExampleNotificationObjects=netSnmpExampleNotificationObjects, netSnmpExampleHeartbeatNotification=netSnmpExampleHeartbeatNotification, netSnmpHostsEntry=netSnmpHostsEntry, netSnmpExampleHeartbeatRate=netSnmpExampleHeartbeatRate, netSnmpExampleNotificationPrefix=netSnmpExampleNotificationPrefix, netSnmpExamples=netSnmpExamples, netSnmpExampleNotifications=netSnmpExampleNotifications, netSnmpHostAddressType=netSnmpHostAddressType, netSnmpExampleTables=netSnmpExampleTables, netSnmpExampleNotification=netSnmpExampleNotification, netSnmpHostAddress=netSnmpHostAddress)
(octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, value_range_constraint, constraints_union, value_size_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ValueSizeConstraint', 'ConstraintsIntersection') (inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddress', 'InetAddressType') (net_snmp,) = mibBuilder.importSymbols('NET-SNMP-MIB', 'netSnmp') (snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (counter32, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, mib_identifier, time_ticks, module_identity, counter64, notification_type, object_identity, ip_address, gauge32, unsigned32, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'MibIdentifier', 'TimeTicks', 'ModuleIdentity', 'Counter64', 'NotificationType', 'ObjectIdentity', 'IpAddress', 'Gauge32', 'Unsigned32', 'Bits') (storage_type, display_string, textual_convention, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'StorageType', 'DisplayString', 'TextualConvention', 'RowStatus') net_snmp_examples = module_identity((1, 3, 6, 1, 4, 1, 8072, 2)) netSnmpExamples.setRevisions(('2004-06-15 00:00', '2002-02-06 00:00')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: netSnmpExamples.setRevisionsDescriptions(('Corrected notification example definitions', 'First draft')) if mibBuilder.loadTexts: netSnmpExamples.setLastUpdated('200406150000Z') if mibBuilder.loadTexts: netSnmpExamples.setOrganization('www.net-snmp.org') if mibBuilder.loadTexts: netSnmpExamples.setContactInfo('postal: Wes Hardaker P.O. Box 382 Davis CA 95617 email: net-snmp-coders@lists.sourceforge.net') if mibBuilder.loadTexts: netSnmpExamples.setDescription('Example MIB objects for agent module example implementations') net_snmp_example_scalars = mib_identifier((1, 3, 6, 1, 4, 1, 8072, 2, 1)) net_snmp_example_tables = mib_identifier((1, 3, 6, 1, 4, 1, 8072, 2, 2)) net_snmp_example_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 8072, 2, 3)) net_snmp_example_notification_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 8072, 2, 3, 0)) net_snmp_example_notification_objects = mib_identifier((1, 3, 6, 1, 4, 1, 8072, 2, 3, 2)) net_snmp_example_integer = mib_scalar((1, 3, 6, 1, 4, 1, 8072, 2, 1, 1), integer32().clone(42)).setMaxAccess('readwrite') if mibBuilder.loadTexts: netSnmpExampleInteger.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleInteger.setDescription("This is a simple object which merely houses a writable integer. It's only purposes is to hold the value of a single integer. Writing to it will simply change the value for subsequent GET/GETNEXT/GETBULK retrievals. This example object is implemented in the agent/mibgroup/examples/scalar_int.c file.") net_snmp_example_sleeper = mib_scalar((1, 3, 6, 1, 4, 1, 8072, 2, 1, 2), integer32().clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: netSnmpExampleSleeper.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleSleeper.setDescription("This is a simple object which is a basic integer. It's value indicates the number of seconds that the agent will take in responding to requests of this object. This is implemented in a way which will allow the agent to keep responding to other requests while access to this object is blocked. It is writable, and changing it's value will change the amount of time the agent will effectively wait for before returning a response when this object is manipulated. Note that SET requests through this object will take longer, since the delay is applied to each internal transaction phase, which could result in delays of up to 4 times the value of this object. This example object is implemented in the agent/mibgroup/examples/delayed_instance.c file.") net_snmp_example_string = mib_scalar((1, 3, 6, 1, 4, 1, 8072, 2, 1, 3), snmp_admin_string().clone('So long, and thanks for all the fish!')).setMaxAccess('readwrite') if mibBuilder.loadTexts: netSnmpExampleString.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleString.setDescription("This is a simple object which merely houses a writable string. It's only purposes is to hold the value of a single string. Writing to it will simply change the value for subsequent GET/GETNEXT/GETBULK retrievals. This example object is implemented in the agent/mibgroup/examples/watched.c file.") net_snmp_ietfwg_table = mib_table((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1)) if mibBuilder.loadTexts: netSnmpIETFWGTable.setStatus('current') if mibBuilder.loadTexts: netSnmpIETFWGTable.setDescription('This table merely contains a set of data which is otherwise useless for true network management. It is a table which describes properies about a IETF Working Group, such as the names of the two working group chairs. This example table is implemented in the agent/mibgroup/examples/data_set.c file.') net_snmp_ietfwg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1, 1)).setIndexNames((0, 'NET-SNMP-EXAMPLES-MIB', 'nsIETFWGName')) if mibBuilder.loadTexts: netSnmpIETFWGEntry.setStatus('current') if mibBuilder.loadTexts: netSnmpIETFWGEntry.setDescription('A row describing a given working group') ns_ietfwg_name = mib_table_column((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 32))) if mibBuilder.loadTexts: nsIETFWGName.setStatus('current') if mibBuilder.loadTexts: nsIETFWGName.setDescription('The name of the IETF Working Group this table describes.') ns_ietfwg_chair1 = mib_table_column((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1, 1, 2), octet_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: nsIETFWGChair1.setStatus('current') if mibBuilder.loadTexts: nsIETFWGChair1.setDescription('One of the names of the chairs for the IETF working group.') ns_ietfwg_chair2 = mib_table_column((1, 3, 6, 1, 4, 1, 8072, 2, 2, 1, 1, 3), octet_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: nsIETFWGChair2.setStatus('current') if mibBuilder.loadTexts: nsIETFWGChair2.setDescription('The other name, if one exists, of the chairs for the IETF working group.') net_snmp_hosts_table = mib_table((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2)) if mibBuilder.loadTexts: netSnmpHostsTable.setStatus('current') if mibBuilder.loadTexts: netSnmpHostsTable.setDescription('An example table that implements a wrapper around the /etc/hosts file on a machine using the iterator helper API.') net_snmp_hosts_entry = mib_table_row((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1)).setIndexNames((0, 'NET-SNMP-EXAMPLES-MIB', 'netSnmpHostName')) if mibBuilder.loadTexts: netSnmpHostsEntry.setStatus('current') if mibBuilder.loadTexts: netSnmpHostsEntry.setDescription('A host name mapped to an ip address') net_snmp_host_name = mib_table_column((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 64))) if mibBuilder.loadTexts: netSnmpHostName.setStatus('current') if mibBuilder.loadTexts: netSnmpHostName.setDescription('A host name that exists in the /etc/hosts (unix) file.') net_snmp_host_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 2), inet_address_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: netSnmpHostAddressType.setStatus('current') if mibBuilder.loadTexts: netSnmpHostAddressType.setDescription('The address type of then given host.') net_snmp_host_address = mib_table_column((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 3), inet_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: netSnmpHostAddress.setStatus('current') if mibBuilder.loadTexts: netSnmpHostAddress.setDescription('The address of then given host.') net_snmp_host_storage = mib_table_column((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 4), storage_type().clone('nonVolatile')).setMaxAccess('readcreate') if mibBuilder.loadTexts: netSnmpHostStorage.setStatus('current') if mibBuilder.loadTexts: netSnmpHostStorage.setDescription('The storage type for this conceptual row.') net_snmp_host_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 8072, 2, 2, 2, 1, 5), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: netSnmpHostRowStatus.setStatus('current') if mibBuilder.loadTexts: netSnmpHostRowStatus.setDescription('The status of this conceptual row.') net_snmp_example_heartbeat_rate = mib_scalar((1, 3, 6, 1, 4, 1, 8072, 2, 3, 2, 1), integer32()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: netSnmpExampleHeartbeatRate.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleHeartbeatRate.setDescription('A simple integer object, to act as a payload for the netSnmpExampleHeartbeatNotification. The value has no real meaning, but is nominally the interval (in seconds) between successive heartbeat notifications.') net_snmp_example_heartbeat_name = mib_scalar((1, 3, 6, 1, 4, 1, 8072, 2, 3, 2, 2), snmp_admin_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: netSnmpExampleHeartbeatName.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleHeartbeatName.setDescription("A simple string object, to act as an optional payload for the netSnmpExampleHeartbeatNotification. This varbind is not part of the notification definition, so is optional and need not be included in the notification payload. The value has no real meaning, but the romantically inclined may take it to be the object of the sender's affection, and hence the cause of the heart beating faster.") net_snmp_example_heartbeat_notification = notification_type((1, 3, 6, 1, 4, 1, 8072, 2, 3, 0, 1)).setObjects(('NET-SNMP-EXAMPLES-MIB', 'netSnmpExampleHeartbeatRate')) if mibBuilder.loadTexts: netSnmpExampleHeartbeatNotification.setStatus('current') if mibBuilder.loadTexts: netSnmpExampleHeartbeatNotification.setDescription('An example notification, used to illustrate the definition and generation of trap and inform PDUs (including the use of both standard and additional varbinds in the notification payload). This notification will typically be sent every 30 seconds, using the code found in the example module agent/mibgroup/examples/notification.c') net_snmp_example_notification = mib_scalar((1, 3, 6, 1, 4, 1, 8072, 2, 3, 1), snmp_admin_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: netSnmpExampleNotification.setStatus('obsolete') if mibBuilder.loadTexts: netSnmpExampleNotification.setDescription('This object was improperly defined for its original purpose, and should no longer be used.') mibBuilder.exportSymbols('NET-SNMP-EXAMPLES-MIB', netSnmpExampleString=netSnmpExampleString, netSnmpIETFWGEntry=netSnmpIETFWGEntry, netSnmpExampleSleeper=netSnmpExampleSleeper, netSnmpIETFWGTable=netSnmpIETFWGTable, PYSNMP_MODULE_ID=netSnmpExamples, netSnmpHostStorage=netSnmpHostStorage, nsIETFWGChair2=nsIETFWGChair2, nsIETFWGChair1=nsIETFWGChair1, netSnmpHostRowStatus=netSnmpHostRowStatus, netSnmpExampleInteger=netSnmpExampleInteger, nsIETFWGName=nsIETFWGName, netSnmpHostsTable=netSnmpHostsTable, netSnmpExampleScalars=netSnmpExampleScalars, netSnmpExampleHeartbeatName=netSnmpExampleHeartbeatName, netSnmpHostName=netSnmpHostName, netSnmpExampleNotificationObjects=netSnmpExampleNotificationObjects, netSnmpExampleHeartbeatNotification=netSnmpExampleHeartbeatNotification, netSnmpHostsEntry=netSnmpHostsEntry, netSnmpExampleHeartbeatRate=netSnmpExampleHeartbeatRate, netSnmpExampleNotificationPrefix=netSnmpExampleNotificationPrefix, netSnmpExamples=netSnmpExamples, netSnmpExampleNotifications=netSnmpExampleNotifications, netSnmpHostAddressType=netSnmpHostAddressType, netSnmpExampleTables=netSnmpExampleTables, netSnmpExampleNotification=netSnmpExampleNotification, netSnmpHostAddress=netSnmpHostAddress)
class Led: def __init__(self, devpath, brightness): self.devpath = devpath self.brightness = brightness def __del__(self): self.set_brightness(0) def set_brightness(self, brightness): f = open(self.devpath, "w") f.write("%d\n" % brightness) f.close(); self.brightness = brightness
class Led: def __init__(self, devpath, brightness): self.devpath = devpath self.brightness = brightness def __del__(self): self.set_brightness(0) def set_brightness(self, brightness): f = open(self.devpath, 'w') f.write('%d\n' % brightness) f.close() self.brightness = brightness
#!/usr/bin/env python3 def transform(s1, s2): first_list = map(int, s1.split()) second_list = map(int, s2.split()) zipped = list(zip(first_list, second_list)) final_list = [a * b for a, b in zipped] return final_list def main(): s1 = "1 51 12 4" s2 = "4 6 99 2" print(transform(s1, s2)) if __name__ == "__main__": main()
def transform(s1, s2): first_list = map(int, s1.split()) second_list = map(int, s2.split()) zipped = list(zip(first_list, second_list)) final_list = [a * b for (a, b) in zipped] return final_list def main(): s1 = '1 51 12 4' s2 = '4 6 99 2' print(transform(s1, s2)) if __name__ == '__main__': main()
def gradingStudents(calificaciones): for i in range(len(calificaciones)): if calificaciones[i] > 40: redondeo = int(calificaciones[i] / 5 + 1) if redondeo * 5 - calificaciones[i] < 3: calificaciones[i] = redondeo * 5 print(calificaciones) continuar = False while True: notas = input("Escriba las calificaciones separadas por espacios: ") lista_notas = notas.split() try: for i in range(len(lista_notas)): lista_notas[i] = int(lista_notas[i]) except: pass else: for i in range(len(lista_notas)): if lista_notas[i] < 0 or lista_notas[i] > 100: continuar = True break if continuar == True: pass else: break gradingStudents(lista_notas)
def grading_students(calificaciones): for i in range(len(calificaciones)): if calificaciones[i] > 40: redondeo = int(calificaciones[i] / 5 + 1) if redondeo * 5 - calificaciones[i] < 3: calificaciones[i] = redondeo * 5 print(calificaciones) continuar = False while True: notas = input('Escriba las calificaciones separadas por espacios: ') lista_notas = notas.split() try: for i in range(len(lista_notas)): lista_notas[i] = int(lista_notas[i]) except: pass else: for i in range(len(lista_notas)): if lista_notas[i] < 0 or lista_notas[i] > 100: continuar = True break if continuar == True: pass else: break grading_students(lista_notas)
''' Given a 2D integer matrix M representing the gray scale of an image, you need to design a smoother to make the gray scale of each cell becomes the average gray scale (rounding down) of all the 8 surrounding cells and itself. If a cell has less than 8 surrounding cells, then use as many as you can. Example 1: Input: [[1,1,1], [1,0,1], [1,1,1]] Output: [[0, 0, 0], [0, 0, 0], [0, 0, 0]] Explanation: For the point (0,0), (0,2), (2,0), (2,2): floor(3/4) = floor(0.75) = 0 For the point (0,1), (1,0), (1,2), (2,1): floor(5/6) = floor(0.83333333) = 0 For the point (1,1): floor(8/9) = floor(0.88888889) = 0 Note: The value in the given matrix is in the range of [0, 255]. The length and width of the given matrix are in the range of [1, 150]. ''' class Solution(object): def imageSmoother(self, M): """ :type M: List[List[int]] :rtype: List[List[int]] """ res = [[0 for j in xrange(len(M[i]))] for i in xrange(len(M))] for i in xrange(len(res)): for j in xrange(len(res[i])): total = 0 count = 0 for x, y in [(0, 0), (1, 0), (1, 1), (0, 1), (-1, 1), (-1, 0), (-1, -1), (0, -1), (1, -1)]: ii = i + x jj = j + y if 0 <= ii < len(res) and 0 <= jj < len(res[ii]): total += M[ii][jj] count += 1 res[i][j] = total / count return res
""" Given a 2D integer matrix M representing the gray scale of an image, you need to design a smoother to make the gray scale of each cell becomes the average gray scale (rounding down) of all the 8 surrounding cells and itself. If a cell has less than 8 surrounding cells, then use as many as you can. Example 1: Input: [[1,1,1], [1,0,1], [1,1,1]] Output: [[0, 0, 0], [0, 0, 0], [0, 0, 0]] Explanation: For the point (0,0), (0,2), (2,0), (2,2): floor(3/4) = floor(0.75) = 0 For the point (0,1), (1,0), (1,2), (2,1): floor(5/6) = floor(0.83333333) = 0 For the point (1,1): floor(8/9) = floor(0.88888889) = 0 Note: The value in the given matrix is in the range of [0, 255]. The length and width of the given matrix are in the range of [1, 150]. """ class Solution(object): def image_smoother(self, M): """ :type M: List[List[int]] :rtype: List[List[int]] """ res = [[0 for j in xrange(len(M[i]))] for i in xrange(len(M))] for i in xrange(len(res)): for j in xrange(len(res[i])): total = 0 count = 0 for (x, y) in [(0, 0), (1, 0), (1, 1), (0, 1), (-1, 1), (-1, 0), (-1, -1), (0, -1), (1, -1)]: ii = i + x jj = j + y if 0 <= ii < len(res) and 0 <= jj < len(res[ii]): total += M[ii][jj] count += 1 res[i][j] = total / count return res
''' Author: your name Date: 2021-01-27 08:45:44 LastEditTime: 2021-02-08 12:02:54 LastEditors: Please set LastEditors Description: In User Settings Edit FilePath: /mmdetection/configs/_base_/default_runtime.py ''' checkpoint_config = dict(interval=1) # yapf:disable log_config = dict( interval=50, hooks=[ dict(type='TextLoggerHook'), # dict(type='TensorboardLoggerHook') ]) # yapf:enable dist_params = dict(backend='nccl') log_level = 'INFO' # load_from = None load_from = '/data_raid5_21T/zgh/ZGh/mmdetection/weights/num9/cascade_rcnn_x101_64x4d_fpn_20e_coco_20200509_coco_pretrained_weights_classes_9.pth' resume_from = None workflow = [('train', 1)] # work_dir = '/data_raid5_21T/zgh/ZGh/work_dirs/cascade_r2_1' # gpu_ids = range(4)
""" Author: your name Date: 2021-01-27 08:45:44 LastEditTime: 2021-02-08 12:02:54 LastEditors: Please set LastEditors Description: In User Settings Edit FilePath: /mmdetection/configs/_base_/default_runtime.py """ checkpoint_config = dict(interval=1) log_config = dict(interval=50, hooks=[dict(type='TextLoggerHook')]) dist_params = dict(backend='nccl') log_level = 'INFO' load_from = '/data_raid5_21T/zgh/ZGh/mmdetection/weights/num9/cascade_rcnn_x101_64x4d_fpn_20e_coco_20200509_coco_pretrained_weights_classes_9.pth' resume_from = None workflow = [('train', 1)]
__doc__ = """ This module all the config parameters for bcs serevr """ # Storage config DB_FILE = 'bank.db' # Server config TCP_IP = '127.0.0.1' TCP_PORT = 5010 MAX_CONNECTIONS = 2 MESSAGE_LENGTH = 1024 # Superuser account ADMIN_NAME = 'admin' ADMIN_EMAIL = 'admin@bcs.com' ADMIN_PASSWORD = 'admin' # Log config LOG_FILENAME = 'logs/bcs_server.log' MAX_SIZE_IN_KB = 20 NUMBER_OF_FILES = 5
__doc__ = '\n This module all the config parameters for bcs serevr\n' db_file = 'bank.db' tcp_ip = '127.0.0.1' tcp_port = 5010 max_connections = 2 message_length = 1024 admin_name = 'admin' admin_email = 'admin@bcs.com' admin_password = 'admin' log_filename = 'logs/bcs_server.log' max_size_in_kb = 20 number_of_files = 5
print("hello Dodger fans") print("I know you haven't won a world series in a while") print("but the rest of the NL West fans don't care") print("Go Brewers!") print("Even though you beat the Rockies")
print('hello Dodger fans') print("I know you haven't won a world series in a while") print("but the rest of the NL West fans don't care") print('Go Brewers!') print('Even though you beat the Rockies')
## Example #1 print("\n\n") print("*" * 80) print("Example #1") print("*" * 80) up = True down = True if up: print("Going Up!") elif down: print("Going Down!") elif up and down: print("Going No Where!!!") else: print("Error!") ## Example #2 # print("\n\n") # print("*" * 80) # print("Example #2") # print("*" * 80) # up = True # down = True # if up == True: # print("Going Up!") # elif down == True: # print("Going Down!") # else: # print("Going No Where!!!") # ## Example #3 # print("\n\n") # print("*" * 80) # print("Example #3") # print("*" * 80) # for num in range(5): # print(num) # ## Example #4 # print("\n\n") # print("*" * 80) # print("Example #4") # print("*" * 80) # list = [2, 4, 6, 8, 10] # print(list[0])
print('\n\n') print('*' * 80) print('Example #1') print('*' * 80) up = True down = True if up: print('Going Up!') elif down: print('Going Down!') elif up and down: print('Going No Where!!!') else: print('Error!')
#!/usr/bin/env python """Struct to define a planning problem which will be solved by a planner""" class PlanningProblem: def __init__(self, params): self.initialized = False self.params = params def initialize(self, env=None, lattice=None, cost=None, heuristic=None, start_n=None, goal_n=None, visualize=False): self.env = env self.lattice = lattice self.cost = cost self.heuristic = heuristic self.start_n = start_n self.goal_n = goal_n self.visualize = visualize self.initialized = True print('Planning Problem Initialized') def reset_env(self, env): """Given the same lattice, cost, heuristic and params, reset the underlying environment""" self.env = env def reset_heuristic(self, heuristic): """Reset the heuristic function being used""" self.heuristic = heuristic
"""Struct to define a planning problem which will be solved by a planner""" class Planningproblem: def __init__(self, params): self.initialized = False self.params = params def initialize(self, env=None, lattice=None, cost=None, heuristic=None, start_n=None, goal_n=None, visualize=False): self.env = env self.lattice = lattice self.cost = cost self.heuristic = heuristic self.start_n = start_n self.goal_n = goal_n self.visualize = visualize self.initialized = True print('Planning Problem Initialized') def reset_env(self, env): """Given the same lattice, cost, heuristic and params, reset the underlying environment""" self.env = env def reset_heuristic(self, heuristic): """Reset the heuristic function being used""" self.heuristic = heuristic
class Solution: def fib(self, N: int) -> int: if N==0: return 0 if N==1: return 1 dp=[0]*N dp[0]=1 dp[1]=1 for i in range(2,N): dp[i]=dp[i-1]+dp[i-2] return dp[N-1]
class Solution: def fib(self, N: int) -> int: if N == 0: return 0 if N == 1: return 1 dp = [0] * N dp[0] = 1 dp[1] = 1 for i in range(2, N): dp[i] = dp[i - 1] + dp[i - 2] return dp[N - 1]
w=int(input()) if w>2: if w%2==0: print("YES") else: print("NO") else: print("NO")
w = int(input()) if w > 2: if w % 2 == 0: print('YES') else: print('NO') else: print('NO')
# # PySNMP MIB module ODSLANBlazer7000-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ODSLANBlazer7000-MIB # Produced by pysmi-0.3.4 at Wed May 1 14:32: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) # Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint", "SingleValueConstraint") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") ModuleIdentity, TimeTicks, enterprises, iso, Integer32, ObjectIdentity, Bits, Counter64, Gauge32, Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, NotificationType, IpAddress, NotificationType, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "TimeTicks", "enterprises", "iso", "Integer32", "ObjectIdentity", "Bits", "Counter64", "Gauge32", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "NotificationType", "IpAddress", "NotificationType", "Unsigned32") DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention") class EventValueType(Integer32): subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8)) namedValues = NamedValues(("none", 1), ("integer", 2), ("longInteger", 3), ("string", 4), ("octets", 5), ("ipAddress", 6), ("macAddress", 7), ("timeTicks", 8)) class ResourceType(Integer32): subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)) namedValues = NamedValues(("system", 1), ("module", 2), ("fan", 3), ("temperatureSensor", 4), ("interface", 5), ("powerSupply", 6), ("display", 7), ("switchPort", 8), ("bridge", 9), ("vlan", 10), ("aft", 11), ("inboundGroupTable", 12), ("outboundGroupTable", 13), ("threeComMappingTable", 14), ("event", 15), ("alarm", 16)) class ResourceId(ObjectIdentifier): pass class DisplayString(OctetString): pass class RowStatus(Integer32): subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6)) namedValues = NamedValues(("active", 1), ("notInService", 2), ("notReady", 3), ("createAndGo", 4), ("createAndWait", 5), ("destroy", 6)) class MacAddress(OctetString): subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(6, 6) fixedLength = 6 class BridgeId(OctetString): subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(8, 8) fixedLength = 8 class Timeout(Integer32): pass class EventCategory(Integer32): subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20)) namedValues = NamedValues(("userDefined", 1), ("coldstart", 2), ("warmstart", 3), ("linkUp", 4), ("linkDown", 5), ("newResource", 6), ("deletedResource", 7), ("tempStatus", 8), ("configuration", 9), ("scheduled", 10), ("authentication", 11), ("system", 12), ("risingThreshold", 13), ("fallingThreshold", 14), ("fanStatus", 15), ("powerStatus", 16), ("status", 17), ("bridgeNewRoot", 18), ("bridgeTopChange", 19), ("switchFabricStatus", 20)) ods = MibIdentifier((1, 3, 6, 1, 4, 1, 50)) odsTPS = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8)) odsLANBlazer = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1)) odsLANBlazerMibs = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2)) odsLANBlazer7000Mib = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1)) lanBlazer7000Agent = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1)) lanBlazer7000AgentGen = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 1)) lanBlazer7000AgentMIBVersion = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000AgentMIBVersion.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AgentMIBVersion.setDescription('The version of the LANBlazer 700 Enterprise Specific MIB that this agent supports.') lanBlazer7000AgentMgrIndex = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000AgentMgrIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AgentMgrIndex.setDescription('The value of this object represents the index into the community table that is used to authenticate SNMP requests for this manager.') lanBlazer7000AgentCommunity = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2)) lanBlazer7000CommunityTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1), ) if mibBuilder.loadTexts: lanBlazer7000CommunityTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityTable.setDescription('') lanBlazer7000CommunityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000CommunityIndex")) if mibBuilder.loadTexts: lanBlazer7000CommunityEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityEntry.setDescription('') lanBlazer7000CommunityIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000CommunityIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityIndex.setDescription('An index that uniquely identifies this entry.') lanBlazer7000CommunityString = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000CommunityString.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityString.setDescription('The community string included in the SNMP PDU used for authentication purposes.') lanBlazer7000CommunityAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("any", 1), ("ipv4", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000CommunityAddressType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityAddressType.setDescription('The type of address associated with this community. If set to any(1), only the community string is authenticated.') lanBlazer7000CommunityAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 4), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000CommunityAddress.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityAddress.setDescription('If the address type is any, then the value of this object is a null string. If the type is ipv4(2), then this value represents a 4 byte IP address.') lanBlazer7000CommunityAccess = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("readOnly", 2), ("readWrite", 3), ("moreSpecific", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000CommunityAccess.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityAccess.setDescription('The MIB access supported for this community entry. A Get or GetNext SNMP PDU is authenticated if the value of this object is read-only(2) or read-write(3). A Set request will be honored if the value of this object is read-write(3). If more granular access control is desired, then the value of this object is set to more-specific(4), and the view table should be consulted. This enables the capability to set different access rights to different branches of the MIB for a particular community. ') lanBlazer7000CommunityTrapReceiver = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000CommunityTrapReceiver.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityTrapReceiver.setDescription('If set to enable(1), this community entry is considered a trap receiver. When the agent generates an SNMP trap, a copy will be sent to this host using this community string.') lanBlazer7000CommunitySecurityLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("normal", 1), ("administrator", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000CommunitySecurityLevel.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunitySecurityLevel.setDescription('Secure tables are only accessible from users with security clearance. For example, this table (the community table) is only accessible by parties that have the security clearance.') lanBlazer7000CommunityStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 8), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000CommunityStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityStatus.setDescription('') lanBlazer7000AgentWeb = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 3)) lanBlazer7000AgentWebServerURL = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 3, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000AgentWebServerURL.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AgentWebServerURL.setDescription("The URL of where the document server software is installed. The switch uses this location to find online help and bimapped graphics. Enter the host name or IP address of the HTTP server at the HTTP Server Location prompt, followed by ':2010'. For example, for a host named 'phantom,', enter 'http://phantom:2010'. If no server is desired or installed, set this object to the empty string.") lanBlazer7000AgentWebServerHelpDirectory = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 3, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000AgentWebServerHelpDirectory.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AgentWebServerHelpDirectory.setDescription("The subdirectory that contains the help files on the document server. Typically, this directory is 'help'.") lanBlazer7000Chassis = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3)) lanBlazer7000ChassisGen = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 1)) lanBlazer7000ChassisType = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("p550", 1), ("p220", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ChassisType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ChassisType.setDescription('The model of the chassis that this agent is managing.') lanBlazer7000ChassisSlots = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ChassisSlots.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ChassisSlots.setDescription('The number of slots available in this chassis. If this chassis is a stackable chassis, the total capacity of stacking units.') lanBlazer7000Inventory = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2)) lanBlazer7000InventoryTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1), ) if mibBuilder.loadTexts: lanBlazer7000InventoryTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryTable.setDescription('A table of inventory information.') lanBlazer7000InventoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000InventoryResourceType"), (0, "ODSLANBlazer7000-MIB", "lanBlazer7000InventoryResourceIndex")) if mibBuilder.loadTexts: lanBlazer7000InventoryEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryEntry.setDescription('Inventory information related to this device.') lanBlazer7000InventoryResourceType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 1), ResourceType()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000InventoryResourceType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryResourceType.setDescription('The resource class of this inventory item.') lanBlazer7000InventoryResourceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 2), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000InventoryResourceIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryResourceIndex.setDescription('The resource identifier of this inventory item.') lanBlazer7000InventoryModelNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000InventoryModelNumber.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryModelNumber.setDescription('The model number of this device.') lanBlazer7000InventorySerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000InventorySerialNumber.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventorySerialNumber.setDescription('The serial number of this device.') lanBlazer7000InventoryVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000InventoryVersion.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryVersion.setDescription('The revision number of this device.') lanBlazer7000InventoryManufactureInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000InventoryManufactureInfo.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryManufactureInfo.setDescription('Information related to the manufacturing of this device.') lanBlazer7000InventoryScratchPad = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000InventoryScratchPad.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryScratchPad.setDescription('A scratch pad area available for keeping user-supplied inventory information. ') lanBlazer7000PowerSystems = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3)) lanBlazer7000PowerSupplies = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1)) lanBlazer7000PowerSupplyTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1), ) if mibBuilder.loadTexts: lanBlazer7000PowerSupplyTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyTable.setDescription('A table of information related to each power supply in the system.') lanBlazer7000PowerSupplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PowerSupplyIndex")) if mibBuilder.loadTexts: lanBlazer7000PowerSupplyEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyEntry.setDescription('An entry providing information about a particular power supply in the system.') lanBlazer7000PowerSupplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PowerSupplyIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyIndex.setDescription('An index that uniquely identifies this power supply. This index corresponds to the lanBlazer7000ResourceIndex of the power supply type resource.') lanBlazer7000PowerSupplyType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("psA", 2), ("psB", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PowerSupplyType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyType.setDescription('An enumerated integer describing the type of power supply. ') lanBlazer7000PowerSupplyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("okay", 1), ("faulty", 2), ("unknown", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PowerSupplyStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyStatus.setDescription('The status of this power supply. Okay(1) indicates the power supply is operating properly. Faulty(2) indicates that the power supply is not functioning properly. In this case, more information can be determined from the other power supply attributes.') lanBlazer7000PowerSupplyInputStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("okay", 1), ("faulty", 2), ("unknown", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PowerSupplyInputStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyInputStatus.setDescription('The status of the input power feed (e.g. the AC power cord) to this power supply.') lanBlazer7000PowerSupplyOutputStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("okay", 1), ("faulty", 2), ("unknown", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PowerSupplyOutputStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyOutputStatus.setDescription('The status of the output power from this power supply.') lanBlazer7000PowerSupplyOutputCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PowerSupplyOutputCapacity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyOutputCapacity.setDescription('The total capacity of power supplied by this supply in Watts.') lanBlazer7000PowerMgmtGen = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 2)) lanBlazer7000PowerCapacity = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 2, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PowerCapacity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerCapacity.setDescription('The total capacity (in Watts) of power available (currently) in the system.') lanBlazer7000PowerUsed = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 2, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PowerUsed.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerUsed.setDescription('The total power (in Watts) currently being consumed in the system.') lanBlazer7000PowerMgmtCtl = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3)) lanBlazer7000PowerControlTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1), ) if mibBuilder.loadTexts: lanBlazer7000PowerControlTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlTable.setDescription('This table manages the power attributes associated with each module.') lanBlazer7000PowerControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000ModuleIndex")) if mibBuilder.loadTexts: lanBlazer7000PowerControlEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlEntry.setDescription('An entry in the power control table manages the power attributes of the specified module.') lanBlazer7000PowerControlUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PowerControlUsed.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlUsed.setDescription('The total power (in Watts) used by this module.') lanBlazer7000PowerControlPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("high", 1), ("normal", 2), ("low", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PowerControlPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlPriority.setDescription('The priority of this module to be considered in the event of a power supply failure where the amount of power used exceeds the system capacity. Low priority modules will be powered down before higher priority modules.') lanBlazer7000PowerControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("poweredDown", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PowerControlMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlMode.setDescription('Normally, a module power mode is enable(1). In the event of a power supply failure resulting in a power shortage, or in the event of this module being inserted without enough available power, the mode will be poweredDown(3). Setting this object to the value of poweredDown(3) will result in an error. When enough power is available, the module will power back up when in this mode. A module may be powered down through administrative action by setting the value of this object to disable(2). In this mode, the module will remain powered down until the mode is set back to enable.') lanBlazer7000Temperature = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4)) lanBlazer7000TempTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1), ) if mibBuilder.loadTexts: lanBlazer7000TempTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempTable.setDescription('A table of information related to the temperature within the system.') lanBlazer7000TempEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000TempIndex")) if mibBuilder.loadTexts: lanBlazer7000TempEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempEntry.setDescription('An entry providing temperature information related to a specific temperature probe in the system.') lanBlazer7000TempIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000TempIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempIndex.setDescription('A unique index that identifies this temperature probe. This index corresponds to the lanBlazer7000ResourceIndex for temperature probe type resources.') lanBlazer7000TempValue = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000TempValue.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempValue.setDescription('The current temperature reading of this temperature probe in degrees Celsius.') lanBlazer7000TempUpperLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 3), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000TempUpperLimit.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempUpperLimit.setDescription('The upper temperature limit of this temperature probe in degrees Celsius.') lanBlazer7000TempUpperWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000TempUpperWarning.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempUpperWarning.setDescription('The upper temperature warning of this temperature probe in degrees Celsius.') lanBlazer7000TempLowerWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 5), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000TempLowerWarning.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempLowerWarning.setDescription('The lower temperature warning of this temperature probe in degrees Celsius.') lanBlazer7000TempLowerLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 6), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000TempLowerLimit.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempLowerLimit.setDescription('The lower temperature limit of this temperature probe in degrees Celsius.') lanBlazer7000Modules = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5)) lanBlazer7000ModuleTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1), ) if mibBuilder.loadTexts: lanBlazer7000ModuleTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleTable.setDescription('A table of information related to the modules in the system.') lanBlazer7000ModuleEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000ModuleIndex")) if mibBuilder.loadTexts: lanBlazer7000ModuleEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleEntry.setDescription('Attributes related to managing this module.') lanBlazer7000ModuleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ModuleIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleIndex.setDescription('An index that uniquely identifies this module. This index corresponds to the lanBlazer7000ResourceIndex associated with module type resources.') lanBlazer7000ModuleName = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000ModuleName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleName.setDescription('A user-assignable name for this module.') lanBlazer7000ModuleType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=NamedValues(("unknown", 1), ("m5502-1000", 2), ("m2206-1000", 3), ("m5520-100TX-QS", 4), ("m5510-100FX", 5), ("m5500-SUP", 6), ("m5504-1000", 7), ("m2201-1000", 8), ("m5520-100TX-I", 9), ("m2202-100FX", 10), ("m5510R-100FX", 11), ("m5512R-100TX", 12), ("m5500R-SUP", 13), ("m5502R-1000", 14), ("m2200-SUP", 15), ("m2204-100TX", 16), ("m2224-100TX", 17)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ModuleType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleType.setDescription('An enumerated integer that is unique for each module model. ') lanBlazer7000ModuleBaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("gigabit", 1), ("fastEthernet", 2), ("supervisor", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ModuleBaseType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleBaseType.setDescription('The base type of this module. This object is used to describe the core functions of the module. Often, base designs are derived into multiple module types which are typically just packaging variations (e.g. changing the connector types). The value of this object corresponds to the value of lanBlazer7000ResourceBaseType.') lanBlazer7000ModuleSlotWidth = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ModuleSlotWidth.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleSlotWidth.setDescription('The number of slots that this module occupies.') lanBlazer7000ModuleSlotOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ModuleSlotOffset.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleSlotOffset.setDescription('The slot offset (one based) that identifies, along with the slot width and slot location, the actual slots that this module occupies. The offset identifies which slot within the width of the module that this module reports as its slot number.') lanBlazer7000ModulePorts = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ModulePorts.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModulePorts.setDescription('The total number of ports associated with this module.') lanBlazer7000Ports = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6)) lanBlazer7000PortMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1)) lanBlazer7000PortTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1), ) if mibBuilder.loadTexts: lanBlazer7000PortTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortTable.setDescription('A table of information related to every data port in this data networking system.') lanBlazer7000PortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PortIndex")) if mibBuilder.loadTexts: lanBlazer7000PortEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortEntry.setDescription('A data port associated with this data networking system.') lanBlazer7000PortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PortIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortIndex.setDescription('An index that uniquely identifies this port. Typically, ports are child resources of the module that contains them. In these cases, ports are identified by their module and their relative physical position on that module.') lanBlazer7000PortName = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortName.setDescription('The user-assigned name for this port. Note that setting this object for an internal(1) port results in an error.') lanBlazer7000PortType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("internal", 1), ("ether-ten-oneHundred", 2), ("ether-oneHundred", 3), ("ether-gigabit", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PortType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortType.setDescription('An internal(1) port does not have an external connection. An ether-ten-oneHundred(2) port is an Ethernet port which can be switched between 10 and 100 megabits per second. An ether-oneHundred(3) port is a 100 megabits per second Fast Ethernet port. An ether-gigabit(4) port is a 1000 megabits per second Gigabit Ethernet port.') lanBlazer7000PortBaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("internal", 1), ("ether-ten-oneHundred", 2), ("ether-oneHundred", 3), ("ether-gigabit", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PortBaseType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortBaseType.setDescription('The base type of this port. This object may be useful to help manage new port types that are similar in nature to legacy port types.') lanBlazer7000PortMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMode.setDescription('The mode of this port. When set to enable(1), this port passes data. When set to disable(2), the port does not receive or transmit data, nor does it generate port-level signaling e.g. link integrity pulses. Note that setting an internal(1) port to disable(2) results in an error.') lanBlazer7000PortStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("disabled", 1), ("okay", 2), ("warning", 3), ("disabledButOkay", 4), ("linkFailure", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PortStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortStatus.setDescription('The status of this port. Disabled(1) means that this port has been disabled through management action. Okay(2) indicates that this port is operating properly. Warning(3) indicates that this port is encountering an abnormal condition that, however, allows it to continue to pass data. LinkFailure(5) means that this port is unable to pass data.') lanBlazer7000PortConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("internal", 1), ("rj45", 2), ("fiber-ST", 3), ("fiber-SC", 4), ("rs-232", 5), ("aui", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PortConnector.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortConnector.setDescription('The connector type associated with this port.') lanBlazer7000PortSpeedState = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("ten-megabits-per-second", 1), ("one-hundred-megabits-per-second", 2), ("one-gigabit-per-second", 3), ("under-negotiation", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PortSpeedState.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortSpeedState.setDescription("The data rate of this port in bits per second. For example, a standard Ethernet port (e.g. 10BASE-T) would indicate a value of ten-megabits-per-second((1) indicating that the port supports a data rate of 10Mb/s. For ports that can change their data rate (e.g. 10/100 ports), the value of this object indicates the current state of the port's speed capability.") lanBlazer7000PortDuplexState = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("half-duplex", 1), ("full-duplex", 2), ("under-negotiation", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PortDuplexState.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortDuplexState.setDescription('The value of this object indicates whether this port is operating in full- or half-duplex mode. The value under-negotiation(3) indicates that the port has not selected an operational duplex setting yet.') lanBlazer7000PortGroupBinding = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 10), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PortGroupBinding.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortGroupBinding.setDescription('Each port is associated with a port group. Typically, a port will belong to a port group of one and the value of this object will be the same as the port index for this instance. That is, this port will point to itself. The intent of this object is to help manage ports that have hierarchical relationships. For example, an ATM port typically has a physical port and multiple logical ports (e.g. each logical port corresponding to an instance of an emulated LAN). In this case, each LANE instance would refer to the instance of the physical port associated with the ATM front-end. Another example is an FDDI DAS type port. In this case, there is a logical port associated with the FDDI switch port which is connected to the two FDDI physical port connectors. The physical FDDI ports both point to the logical instance of an FDDI port.') lanBlazer7000PortFlowControlMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 2)) lanBlazer7000PortFlowControlTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 2, 1), ) if mibBuilder.loadTexts: lanBlazer7000PortFlowControlTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortFlowControlTable.setDescription('A table of ports that support flow control.') lanBlazer7000PortFlowControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 2, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PortIndex")) if mibBuilder.loadTexts: lanBlazer7000PortFlowControlEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortFlowControlEntry.setDescription('Configuration objects related to port based flow control.') lanBlazer7000PortFlowControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 2, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("enable-with-aggressive-backoff", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortFlowControlMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortFlowControlMode.setDescription('Flow control is used to prevent or reduce the dropping of frames due to the lack of buffer space. Overall, networks are more efficient when a sending station is asked to pause in its sending process, rather than having the transmitted frames dropped. Flow control is not as efficient when used in conjunction with a shared ports, i.e. when used with a repeater. Therefore, flow control is not recommended for a port connected to shared topologies. Flow control is most effective when the port is directly connected to an end-station, especially when connected to a server. Flow control is recommended for ports connected directly to end-stations. When the port is in half-duplex mode, back pressure is used to control the incoming flow. Back pressure essentially forces collisions for short periods of time. When the port is in full-duplex mode, IEEE 802.3 standard pause frames are used to control the incoming flow. Note that setting an ether-gigabit(4) port to enable-with-aggressive-backoff(3) results in an error.') lanBlazer7000PortDuplexMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 3)) lanBlazer7000PortDuplexTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 3, 1), ) if mibBuilder.loadTexts: lanBlazer7000PortDuplexTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortDuplexTable.setDescription('A table of ports that support full- and half-duplex data communications.') lanBlazer7000PortDuplexEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 3, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PortIndex")) if mibBuilder.loadTexts: lanBlazer7000PortDuplexEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortDuplexEntry.setDescription('A port device configuration that controls the duplex mode of this port.') lanBlazer7000PortDuplexMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 3, 1, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("half-duplex", 1), ("full-duplex", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortDuplexMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortDuplexMode.setDescription('A point-to-point Ethernet port may be configured to support half or full duplex communications. A full-duplex(2) port transmits and receives data concurrently, effectively doubling the data rate of the port. Half-duplex(1) ports transmit or receive data, but not at the same time. Half-duplex ports use CSMA/CD as the access method to the network. Ports that are connected to shared segments (i.e. connected to a repeater), should always be configured to be in half-duplex mode. This object indicates the desired duplexity of this port. If auto-negotiation is turned on for this port, then this value is ignored.') lanBlazer7000PortSpeedMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 4)) lanBlazer7000PortSpeedTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 4, 1), ) if mibBuilder.loadTexts: lanBlazer7000PortSpeedTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortSpeedTable.setDescription('A table of port devices that support multiple speeds.') lanBlazer7000PortSpeedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 4, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PortIndex")) if mibBuilder.loadTexts: lanBlazer7000PortSpeedEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortSpeedEntry.setDescription('A port that supports multiple speeds.') lanBlazer7000PortSpeedMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 4, 1, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ten-megabits-per-second", 1), ("one-hundred-megabits-per-second", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortSpeedMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortSpeedMode.setDescription('Some of these values may not be applicable to certain types of ports. This object indicates the desired data rate of this port. If auto-negotiation is turned on for this port, then this value is ignored.') lanBlazer7000PortAutoNegotiationMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5)) lanBlazer7000PortAutoNegotiationTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1), ) if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationTable.setDescription('A table of ports that support auto-negotiation.') lanBlazer7000PortAutoNegotiationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PortIndex")) if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationEntry.setDescription('Attributes associated with a port that supports auto-negotiation.') lanBlazer7000PortAutoNegotiationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1, 1, 51), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("autoNegotiate", 1), ("manualConfiguration", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationMode.setDescription("Setting this object to autoNegotiate(1) causes this port to negotiate the duplex mode and the port speed, subject to the port's capabilities.") lanBlazer7000PortAutoNegotiationSpeedAdvertisement = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ten-and-one-hundred-megabits-per-second", 1), ("one-hundred-megabits-per-second", 2), ("ten-megabits-per-second", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationSpeedAdvertisement.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationSpeedAdvertisement.setDescription('The speed to advertise while auto-negotiating.') lanBlazer7000PortAutoNegotiationDuplexAdvertisement = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("full-and-half-duplex", 1), ("half-duplex", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationDuplexAdvertisement.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationDuplexAdvertisement.setDescription('The duplexity to advertise while auto-negotiating.') lanBlazer7000PortRateLimitMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6)) lanBlazer7000PortRateLimitTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1), ) if mibBuilder.loadTexts: lanBlazer7000PortRateLimitTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitTable.setDescription('A table of ports that support the ability to limit the rate of floods.') lanBlazer7000PortRateLimitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PortIndex")) if mibBuilder.loadTexts: lanBlazer7000PortRateLimitEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitEntry.setDescription('The rate limit configuration associated with this port.') lanBlazer7000PortRateLimitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1, 1, 61), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("enableIncludeKnownMulticast", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortRateLimitMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitMode.setDescription('This object configures whether rate limiting is enabled for this port (the factory default is enable(1)). Enabling rate limiting for this port prevents floods from overwhelming the output buffer associated with this port. Normally, rate limiting will only consider frames that are flooded to this port. This typically does not include known multicasts. However, known multicasts can be included in the flood limiting by setting the value of this object to enableIncludeKnownMulticast(3).') lanBlazer7000PortRateLimitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1, 1, 62), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("one-percent", 1), ("two-percent", 2), ("five-percent", 3), ("ten-percent", 4), ("twenty-percent", 5), ("forty-percent", 6), ("eighty-percent", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortRateLimitRate.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitRate.setDescription("The percentage of the port's transmitted data allowed to be floods (or floods and known multicasts). For example, the factory default setting of twenty-percent(4) indicates that 20% of the data rate can be floods. For 10 Mb/s ports, this is equivalent to a maximum rate of approximately 3000 flooded pps; for 100 Mb/s ports, a maximum rate of approximately 30,000 flooded pps.") lanBlazer7000PortRateLimitBurstSize = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1, 1, 63), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("rateLimit1", 1), ("rateLimit2", 2), ("rateLimit4", 3), ("rateLimit8", 4), ("rateLimit16", 5), ("rateLimit32", 6), ("rateLimit64", 7), ("rateLimit128", 8), ("rateLimit256", 9), ("rateLimit1024", 10), ("rateLimit2048", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortRateLimitBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitBurstSize.setDescription("The maximum number of consecutive transmitted flooded (or flooded and known multicasted) packets. Typically, the burst size is set so as to not overflow the port's buffer.") lanBlazer7000PortPacePriorityMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 7)) lanBlazer7000PortPacePriorityTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 7, 1), ) if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityTable.setDescription('A table of ports that support the ability to classify frame priority based on 3Com Pace(r) Prioritization.') lanBlazer7000PortPacePriorityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 7, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PortIndex")) if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityEntry.setDescription('A port that supports 3Com Pace(r) priority.') lanBlazer7000PortPacePriorityMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 7, 1, 1, 71), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityMode.setDescription("When Pace priority is enabled, this port will detect frames that use 3Com Corporation's Pace(r) Priority signaling. Frames signaled with priority in this manner are mapped to traffic priority level 4 (on scale of 0-7).") lanBlazer7000PortCategoryMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 8)) lanBlazer7000PortCategoryTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 8, 1), ) if mibBuilder.loadTexts: lanBlazer7000PortCategoryTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortCategoryTable.setDescription('A table of ports that support the port category feature. Currently, all ports support this capability.') lanBlazer7000PortCategoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 8, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PortIndex")) if mibBuilder.loadTexts: lanBlazer7000PortCategoryEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortCategoryEntry.setDescription('A port that supports port categorization.') lanBlazer7000PortCategoryMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 8, 1, 1, 81), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("userPort", 1), ("servicePort", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortCategoryMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortCategoryMode.setDescription('By default, all ports are considered service ports. A service port is a port that provides a networks service such as a connection to a server, other switches, or the like. A service port will trigger the service port event for status changes with the alarm severity and will trigger an alarm in the alarm table on link failure. In contrast, user ports trigger the user link event with warning severity. They do not trigger an alarm upon link failures. User ports are useful to prevent floods of traps or entries in the alarm table. This is especially true for ports connected to user hosts that power up in the morning and power down again at the end of the work day.') lanBlazer7000BufferMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7)) lanBlazer7000BufferTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1), ) if mibBuilder.loadTexts: lanBlazer7000BufferTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferTable.setDescription('A table of frame buffers in the system.') lanBlazer7000BufferEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000BufferIndex")) if mibBuilder.loadTexts: lanBlazer7000BufferEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferEntry.setDescription('Objects related to the management of this frame buffer.') lanBlazer7000BufferIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferIndex.setDescription('The unique index that identifies this buffer within the system. Buffers are indexed first by their module association and then a unique index within that module.') lanBlazer7000BufferFabricPort = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 2), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferFabricPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferFabricPort.setDescription('The switch fabric port associated with this buffer.') lanBlazer7000BufferFabricPortDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("in", 1), ("out", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferFabricPortDirection.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferFabricPortDirection.setDescription('The value of this object indicates whether the buffer is used for buffering frames going into the switching fabric or coming out of the fabric.') lanBlazer7000BufferSwitchPort = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 4), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferSwitchPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferSwitchPort.setDescription('The switch port associated with this frame buffer. Some buffers are not associated with any one switch port. In those cases, the value of the resource ID returned will be the null resource ID.') lanBlazer7000BufferMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferMemory.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferMemory.setDescription('The amount of memory available for frame buffering in Kilobytes (KB).') lanBlazer7000BufferAgeTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disable", 1), ("quarter-second", 2), ("one-second", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BufferAgeTimer.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferAgeTimer.setDescription('Configures the timer used for aging frames in this buffer. If the timer expires for a frame, the frame is dropped and the event is counted in the stale drop counter. By default, the age timer is set to a 0.25 seconds (quarter of a second). The actual time that a frame may be aged out may vary. When set to a quarter of a second (250ms), the actual time may vary between 160ms and 320ms. When set to a second (1000ms), the time may vary between 640ms and 1.28 seconds (1028ms).') lanBlazer7000BufferPriorityServicing = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("strictPriority", 1), ("everyTenThousand", 2), ("everyThousand", 3), ("everyHundred", 4), ("everyFour", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BufferPriorityServicing.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferPriorityServicing.setDescription('The value of this object configures how often the normal priority queue is serviced relative to the high priority queue. By default, the normal priority queue is serviced every thousand frames(3). This means that the normal priority queue is guaranteed to be serviced after servicing, at most, one thousand high priority frames. It is important to service the normal priority queue for two reasons. One is to prevent starvation for frames on the normal priority queue. The other reason is that frames cannot be aged if they are not serviced (see the age timer).') lanBlazer7000BufferPriorityAllocation = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("none", 1), ("tenPercent", 2), ("twentyPercent", 3), ("thirtyPercent", 4), ("fortyPercent", 5), ("fiftyPercent", 6)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BufferPriorityAllocation.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferPriorityAllocation.setDescription('This object controls how much of the total buffer space should be allocated to high priority queue. Please be warned that setting this object to a different value causes the associated buffer to reset, causing a short loss of data. Setting the value of this object to none(1) not only allocates the entire buffer space to normal traffic, but also has the side effect of disabling the priority threshold. In other words, all traffic will be considered as normal priority traffic.') lanBlazer7000BufferPriorityThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("none", 1), ("one", 2), ("two", 3), ("three", 4), ("four", 5), ("five", 6), ("six", 7), ("seven", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BufferPriorityThreshold.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferPriorityThreshold.setDescription('This object configures the threshold for which frames are considered high priority. Frames may have a priority classification ranging from 0-7, 7 being the highest. By default, every frame that has priority 4 (four(5)) or above is considered a high priority frame and is buffered accordingly. If this buffer does not have any buffer space allocated for high priority frames, then the buffer threshold will be none(1). Setting this object to a different value without allocating buffer space to high priority traffic will result in an error.') lanBlazer7000BufferCongestion = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("informationNotAvailable", 1), ("notCongested", 2), ("congested", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferCongestion.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferCongestion.setDescription('This object indicates whether this buffer is in a congested state..') lanBlazer7000BufferHighOverflowDrops = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferHighOverflowDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferHighOverflowDrops.setDescription('The count of the number of high priority frames dropped due to the high priority queue overflowing.') lanBlazer7000BufferLowOverflowDrops = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferLowOverflowDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferLowOverflowDrops.setDescription('The count of the number of low priority frames dropped due to the low priority queue overflowing.') lanBlazer7000BufferHighStaleDrops = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferHighStaleDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferHighStaleDrops.setDescription('The count of the number of high priority frames dropped due to being in the high priority queue too long (the frame aged out).') lanBlazer7000BufferLowStaleDrops = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferLowStaleDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferLowStaleDrops.setDescription('The count of the number of low priority frames dropped due to being in the low priority queue too long (the frame aged out).') lanBlazer7000BufferCongestionDrops = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BufferCongestionDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferCongestionDrops.setDescription('The count of the number of frames dropped due to the destination (output) buffer being congested. ') lanBlazer7000Switching = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5)) lanBlazer7000SwitchingLayerII = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1)) lanBlazer7000SwitchGen = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 1)) lanBlazer7000SwitchSTPConfig = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("ieee8021dStp", 1), ("stpPerVlan", 2), ("twoLayerStp", 3), ("disable", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchSTPConfig.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchSTPConfig.setDescription("When set to ieee8021dStp(1), the switch executes spanning tree conformant to the IEEE 802.1D bridging standard. The switch runs one instance of spanning tree. When set to stpPerVlan(2), the switch executes a separate instance of spanning tree for each virtual LAN. This configuration conforms to the model that instances of virtual LANs within the switch are separate virtual bridging functions. This method may not work well with bridge/routers that are also running spanning tree. When set to twoLayerStp(3), the switch executes a two-layer spanning tree to prevent loops. Two layer spanning tree creates a higher 'plane' of spanning tree between VLAN devices. This method of running spanning tree is 'plug and play' with bridge/router type devices and also scales better than the other two methods for large environments. When set to disable(4), spanning tree is disabled in the switch.") lanBlazer7000SwitchAgingTime = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 1000000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchAgingTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchAgingTime.setDescription('The timeout period in seconds for aging dynamically learned forwarding information. A default of 300 seconds is recommended. An aged entry is marked invalid, but is not removed from the Address Forwarding Table, because it is assumed that it will be relearned to the same location within the table.') lanBlazer7000SwitchSuperAgingTime = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchSuperAgingTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchSuperAgingTime.setDescription('The timeout period in days for removing stale invalid entries from the Address Forwarding Table. A superaged entry is removed completely from the Address Forwarding Table, because it is assumed that the entry will never be relearned.') lanBlazer7000BridgeMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2)) lanBlazer7000BridgeTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1), ) if mibBuilder.loadTexts: lanBlazer7000BridgeTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeTable.setDescription('A table of Spanning Tree information for every bridge in the system.') lanBlazer7000BridgeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000BridgeIndex")) if mibBuilder.loadTexts: lanBlazer7000BridgeEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeEntry.setDescription('') lanBlazer7000BridgeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeIndex.setDescription('An index that uniquely identifies this bridge.') lanBlazer7000BridgeType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dot1d", 1), ("virtual", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeType.setDescription('Indicates whether this is a legacy dot1d bridge consisting of all switch ports or a virtual bridge consisting of all virtual subports for a particular Vlan.') lanBlazer7000BridgeMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgeMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeMode.setDescription('Used to enable or disable Spanning Tree for this bridge. When set to disable(2), all BPDUs are forwarded like regular multicast packets. The default value is enable(1).') lanBlazer7000BridgeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStatus.setDescription('The enable/disable status of this bridge. This object incorporates the setting of the lanBlazer7000SwitchSTPConfig object. When lanBlazer7000SwitchSTPConfig is set such that this bridge will not be active, lanBlazer7000BridgeStatus returns disabled(2). If lanBlazer7000SwitchSTPConfig is set such that this bridge will be active, and lanBlazer7000BridgeMode is enable(1), this object returns enabled(2).') lanBlazer7000BridgeStpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgeStpPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpPriority.setDescription('The priority value of the Bridge Identifier. See dot1dStpPriority.') lanBlazer7000BridgeStpTimeSinceTopologyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 6), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStpTimeSinceTopologyChange.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpTimeSinceTopologyChange.setDescription('The time since the last topology change was detected. See dot1dStpTimeSinceTopologyChange.') lanBlazer7000BridgeStpTopChanges = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStpTopChanges.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpTopChanges.setDescription('The total number of topology changes. See dot1dStpTopChanges') lanBlazer7000BridgeStpDesignatedRoot = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 8), BridgeId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStpDesignatedRoot.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpDesignatedRoot.setDescription('The bridge considered to be root by this node. See dot1dStpDesignatedRoot.') lanBlazer7000BridgeStpRootCost = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStpRootCost.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpRootCost.setDescription('The cost of the path to the root from this node. See dot1dStpRootCost.') lanBlazer7000BridgeStpRootPort = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStpRootPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpRootPort.setDescription('The port number with the lowest cost path to the root bridge. See dot1dStpRootPort.') lanBlazer7000BridgeStpMaxAge = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 11), Timeout()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStpMaxAge.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpMaxAge.setDescription('The maximum age used by this bridge to hold onto STP information before discarding. See dot1dStpMaxAge.') lanBlazer7000BridgeStpHelloTime = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 12), Timeout()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStpHelloTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpHelloTime.setDescription('The amount of time between configuration BPDUs. See dot1dStpHelloTime.') lanBlazer7000BridgeStpHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStpHoldTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpHoldTime.setDescription('The time value that indicates the interval during which no more than two configuration BPDUs will be sent by this node. See dot1dStpHoldTime.') lanBlazer7000BridgeStpForwardDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 14), Timeout()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgeStpForwardDelay.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpForwardDelay.setDescription('The amount of time that this node stays in each of the Listening and Learning states. See dot1dStpForwardDelay.') lanBlazer7000BridgeStpBridgeMaxAge = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 15), Timeout().subtype(subtypeSpec=ValueRangeConstraint(600, 4000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeMaxAge.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeMaxAge.setDescription('The value of MaxAge when this bridge is the root. See dot1dStpBridgeMaxAge.') lanBlazer7000BridgeStpBridgeHelloTime = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 16), Timeout().subtype(subtypeSpec=ValueRangeConstraint(100, 1000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeHelloTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeHelloTime.setDescription('The value of HelloTime to use when this bridge is the root. See dot1dStpBridgeHelloTime.') lanBlazer7000BridgeStpBridgeForwardDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 17), Timeout().subtype(subtypeSpec=ValueRangeConstraint(400, 3000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeForwardDelay.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeForwardDelay.setDescription('The value of FowardDelay to use when this bridge is the root. See dot1dStpBridgeForwardDelay.') lanBlazer7000BridgePortMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3)) lanBlazer7000BridgePortTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1), ) if mibBuilder.loadTexts: lanBlazer7000BridgePortTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortTable.setDescription(' A table of Spanning Tree information for every port that supports Spanning Tree in every bridge in the system ') lanBlazer7000BridgePortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000BridgePortIndex")) if mibBuilder.loadTexts: lanBlazer7000BridgePortEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortEntry.setDescription('') lanBlazer7000BridgePortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgePortIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortIndex.setDescription('An index that uniquely identifies this bridge port. This index corresponds to the lanBlazer7000ResourceIndex for bridge port type resources.') lanBlazer7000BridgePortPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgePortPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortPriority.setDescription('The value of the priority field in the port ID. See dot1dStpPortPriority. The default value is 128.') lanBlazer7000BridgePortState = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("disabled", 1), ("blocking", 2), ("listening", 3), ("learning", 4), ("forwarding", 5), ("broken", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgePortState.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortState.setDescription("The port's current state as defined by the Spanning Tree Protocol. See dot1dStpPortState. The virtual port is considered broken if its switch port is blocked.") lanBlazer7000BridgePortEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgePortEnable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortEnable.setDescription('The enabled/disabled status of this port. See dot1dStpPortEnable. The default is enabled(2).') lanBlazer7000BridgePortPathCost = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgePortPathCost.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortPathCost.setDescription('The contribution of this port to the path cost of the paths towards the spanning tree root. See dot1dStpPortPathCost. The default value is dependent on the port speed, trunking mode, and duplexity.') lanBlazer7000BridgePortDesignatedRoot = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 6), BridgeId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedRoot.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedRoot.setDescription("The bridge recorded as root for this port's segment. See dot1dStpPortDesignatedRoot.") lanBlazer7000BridgePortDesignatedCost = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedCost.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedCost.setDescription('The path cost of the designated root of the segment connected to this port. See dot1dStpPortDesignatedCost.') lanBlazer7000BridgePortDesignatedBridge = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 8), BridgeId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedBridge.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedBridge.setDescription("The bridge identifier of the bridge that is considered the designated bridge for this port's segment. See dot1dStpPortDesignatedBridge.") lanBlazer7000BridgePortDesignatedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedPort.setDescription("The port identifier of the port on the Designated Bridge for this port's segment. See dot1dStpPortDesignatedPort.") lanBlazer7000BridgePortForwardTransitions = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000BridgePortForwardTransitions.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortForwardTransitions.setDescription('The number of times this port has transitioned from the learning state to the forwarding state. See dot1dStpPortForwardTransitions.') lanBlazer7000BridgePortFastStart = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgePortFastStart.setStatus('deprecated') if mibBuilder.loadTexts: lanBlazer7000BridgePortFastStart.setDescription('This object is being replaced by the switch port object lanBlazer7000SwitchPortFastStart. When this bridge port object is set to enable(1), the bridge port and all other bridge ports on the same switch port, transition right from blocking to forwarding, skipping the listening and learning states. When this bridge port object is set to disable(2), the bridge port and all other bridge ports on the same switch port have this option disabled. The user should be warned that using the fast start feature greatly increases the likelihood of unintended network loops that would otherwise be prevented by participating in the normal spanning tree algorithm. The factory default value for this object is disable(2).') lanBlazer7000BridgePortSetDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("useCurrentValues", 1), ("setDefault", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgePortSetDefault.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortSetDefault.setDescription('When set to setDefault(2), the lanBlazer7000BridgePortPriority, lanBlazer7000BridgePortEnable, and lanBlazer7000BridgePortPathCost will be set to the factory default values.') lanBlazer7000BridgePortEnableChangeDetection = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000BridgePortEnableChangeDetection.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortEnableChangeDetection.setDescription('When this object is set to enable(1), a Topology Change Notification will be generated when this port goes to Blocking or Forwarding (if the port is a designated port). When set to disable(2), no Topology Change Notification will be generated for this port. The default is enable(1).') lanBlazer7000L2AddrMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4)) lanBlazer7000L2AddrDatabaseMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1)) lanBlazer7000L2AddressTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1), ) if mibBuilder.loadTexts: lanBlazer7000L2AddressTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressTable.setDescription('A table of address table entries. The address table is used by the bridging function to perform forwarding and filtering decisions. An address may appear multiple times in different entries corresponding to the different logical address tables.') lanBlazer7000L2AddressEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000L2AddressIndex")) if mibBuilder.loadTexts: lanBlazer7000L2AddressEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressEntry.setDescription('A particular address table entry.') lanBlazer7000L2AddressIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressIndex.setDescription('An index that uniquely identifies this address entry.') lanBlazer7000L2AddressTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressTableIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressTableIndex.setDescription('The address table that this entry is associated with.') lanBlazer7000L2AddressMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 3), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressMacAddress.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressMacAddress.setDescription('The IEEE 802 MAC Address associated with this database entry.') lanBlazer7000L2AddressPortBinding = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 4), ResourceId()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressPortBinding.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressPortBinding.setDescription('The switch port that this address is associated with. ') lanBlazer7000L2AddressBindingValid = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("valid", 1), ("invalid", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressBindingValid.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressBindingValid.setDescription('The port binding of an address entry is aged out in conformance with the specifications laid out in the IEEE 802.1D standard. When the address is aged out, the port binding becomes invalid.') lanBlazer7000L2AddressVlanID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressVlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressVlanID.setDescription('The VLAN ID of the VLAN that this address entry corresponds to.') lanBlazer7000L2AddressPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("priorityZero", 1), ("priorityFour", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressPriority.setDescription('If set to high(2), frames destined to this address are classified with priority value 4.') lanBlazer7000L2AddressForward = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("normalForward", 1), ("specialDelivery", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressForward.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressForward.setDescription('When set to specialDelivery(2), frames sent to this address are treated to special delivery where the spanning tree state of the inbound port is ignored. Typically, special delivery is only used for Bridge PDUs such as spanning tree frames.') lanBlazer7000L2AddressCopy = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("normalForward", 1), ("copyCPU", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressCopy.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressCopy.setDescription('It is sometimes useful for the switch processor to eavesdrop on traffic to certain destinations. This is especially useful in supporting the intelligent multicasting function.') lanBlazer7000L2AddressPersistence = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("invalid", 2), ("permanent", 3), ("deleteOnReset", 4), ("deleteOnTimeout", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressPersistence.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressPersistence.setDescription('This object indicates the persistence of this entry: other(1) - This entry is currently in use but the conditions under which it will remain so are different from each of the following values. invalid(2) - Writing this value to the object removes the corresponding entry. permanent(3) - Address is not aged out. Additionally, if the address is seen as a source on a different port for this VLAN, the frame is filtered and the filter event is counted. Static address entries are stored in non-volatile memory and are restored to the address table following each system reset. deleteOnReset(4) - Indicates that the entry is not aged out, however the entry is not stored in non-volatile memory. Therefore, when the device is reset, the entry will not be restored. deleteOnTimeout(5) - Typically, address entries are learned dynamically by the switch. These entries are aged out of the table if they are not active on the network. This value correlates to this state.') lanBlazer7000L2AddressStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("learned", 2), ("self", 3), ("mgmt", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressStatus.setDescription("This object indicates the status of the entry: other(1) - None of the following. learned(2) - This entry was learned dynamically. self(3) - The value of the corresponding instance of lanBlazer7000AddressMacAddress represents one of the bridge's addresses. mgmt(4) - This entry was added or modified by management. Entries that have been added by management and made permanent") lanBlazer7000L2AddrSummaryMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 2)) lanBlazer7000L2AddrSummaryTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 2, 1), ) if mibBuilder.loadTexts: lanBlazer7000L2AddrSummaryTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddrSummaryTable.setDescription('This summary table packs the address entries in the address database into summary objects. The goal is to optimize the upload of the large amount of data stored therein. Typically, a management station would use getNext requests to retrieve the next logical summary object. The returned object value contains the next n entries of the address database packed into one PDU. The instance of the object returned is the index of the last address entry packed in the summary, thereby optimizing for the next getNext request. [ Fix this? What about gets?] ') lanBlazer7000L2AddrSummaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 2, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000L2AddressIndex")) if mibBuilder.loadTexts: lanBlazer7000L2AddrSummaryEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddrSummaryEntry.setDescription('A summary object that packs as many address entries possible into a summary object.') lanBlazer7000L2AddrSummary = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 2, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(20, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddrSummary.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddrSummary.setDescription('The value of this object is a packed opaque structure representing an array of address entries. The format of this structure is: struct L2AddressEntry { UNS32 index; UNS8 addr[6]; // mac address UNS8 fabricPort; //fabricPort and subPort == lanBlazer7000L2AddressPortBinding UNS8 subPort; UNS16 vlanID, //the global vlan id UNS8 portBindingValidFlag; UNS8 addressForwardFlag; UNS8 addressCopyFlag; UNS8 addressPersistence; UNS8 addressStatus; }; struct L2AddressSummary{ UNS8 numberOfEntries; // Number of entries that follow UNS8 version; // version == 1 UNS16 endianFlag; L2AddressEntry entryArray[numberOfEntries]; };') lanBlazer7000L2AddrControlMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3)) lanBlazer7000L2AddressControlTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1), ) if mibBuilder.loadTexts: lanBlazer7000L2AddressControlTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlTable.setDescription('This table provides the network manager the ability to create new, static address entries. Entries added through this table are added to the specified address table as a static entry and are save in non-volatile memory for reconfiguration upon system restart. This table is indexed by the lanBlazer7000AgentMgrIndex value which provides a separate instance for each manager.') lanBlazer7000L2AddressControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000AgentMgrIndex")) if mibBuilder.loadTexts: lanBlazer7000L2AddressControlEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlEntry.setDescription('A control entry enables this manager to add a new entry to the specified address table. When the entry is written to, the control index value is reset to 0. When the actual entry is created, the index value will read as non-zero, reporting the actual entry created.') lanBlazer7000L2AddressControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressControlIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlIndex.setDescription('The index of the address entry that was created for this address.') lanBlazer7000L2AddressControlMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 2), MacAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressControlMacAddress.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlMacAddress.setDescription('The IEEE 802 MAC Address associated with this database entry.') lanBlazer7000L2AddressControlPortBinding = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 3), ResourceId()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPortBinding.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPortBinding.setDescription('The port to bind this address to.') lanBlazer7000L2AddressControlVlanID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressControlVlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlVlanID.setDescription('The VLAN ID of the VLAN to bind this address to.') lanBlazer7000L2AddressControlPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("priorityZero", 1), ("priorityFour", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPriority.setDescription('If set to high(2), frames destined to this address are classified with priority value 4.') lanBlazer7000L2AddressControlPersistence = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("permanent", 1), ("deleteOnReset", 2), ("deleteOnTimeout", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPersistence.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPersistence.setDescription('The persistence of the entry to be created: permanent(1) - Address is not aged out. Additionally, if the address is seen as a source on a different port for this VLAN, the frame is filtered and the filter event is counted. Static address entries are stored in non-volatile memory and are restored to the address table following each system reset. deleteOnReset(2) - Indicates that the entry is not to be aged, however the entry is not stored in non-volatile memory. Therefore, when the device is reset, the entry will not be restored. deleteOnTimeout(3) - Indicates that the entry is to be aged by the normal aging process.') lanBlazer7000L2AddressControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("createRequest", 1), ("underCreation", 2), ("success", 3), ("otherError", 4), ("entryExistsError", 5), ("invalidMacAddress", 6), ("invalidPortBinding", 7), ("invalidVlanID", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressControlStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlStatus.setDescription('The status of an entry to be created. When adding an entry all fields will be set, and then the control status is set to createRequest(1), indicating that the entry is to be created. During creation, the status will be underCreation(2). If the creation is successful, then the status will be set to success(3), and the value of lanBlazer7000AddressControlIndex indicates the index of the entry that was created in the address table. Otherwise if the creation was not successful, then one of the following error codes will be set and the entry will not be created: otherError(4) - An error other then the others defined. entryExistsError(5) - An entry already exists with this MAC address in this address table. invalidMacAddress(6) - Cannot create an entry with this MAC address. invalidTableIndex(7) - The table does not exist. invalidPortBinding(8) - The port binding is invalid. invalidVlanID(9) - The VLAN ID is invalid. Note that the only value that is valid to write to this object is createRequest(1), and that this object will never return the value createRequest(1).') lanBlazer7000L2AddrChangeMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4)) lanBlazer7000L2AddressChangeLast = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeLast.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeLast.setDescription('The index of the last entry written to the address change table') lanBlazer7000L2AddressChangeWraps = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeWraps.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeWraps.setDescription('The count of the number of times the address change table has wrapped.') lanBlazer7000L2AddressChangeMaxEntries = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 4096))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeMaxEntries.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeMaxEntries.setDescription('The maximum number of entries in the address change table.') lanBlazer7000L2AddressChangeTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4), ) if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeTable.setDescription('.') lanBlazer7000L2AddressChangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000L2AddressChangeWrapCount"), (0, "ODSLANBlazer7000-MIB", "lanBlazer7000L2AddressChangeIndex")) if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeEntry.setDescription("The address change table provides a quick way of getting only the entries that have recently changed. Since entries age out as part of the normal switching process, entries that have aged (i.e. their destination bindings are no longer valid) are not considered to be changed. Any other modification to the entry, including deletion or creation, are considered to be changes. The address change table is considered a circular table. When an entry changes, it is added to the next position within the table. If the 'next' position goes beyond the end of the table, the 'next' position is set to the beginning of the table (1) and the wrap counter (lanBlazer7000AddressChangeWraps) is incremented. The lanBlazer7000AddressChangeLast value is updated with the index of the last entered entry. An entry may be in the table multiple times if it has changed multiple times. Every time that an entry changes, it is added to the change table. A network management application should follow the following algorithm when polling this table: 1. Set lastChangeWrap = lanBlazer7000AddressChangeWraps. 2. Set lastChangeIndex = lanBlazer7000AddressChangeLast 3. Get the entire lanBlazer7000AddressEntryTable. 4. Submit a getNext for <lastChangeWrap>.<lastChangeIndex>, updating lastChangeWrap and lastChangeIndex with the returned next values. Update the address entry database with the changed values. 5. Repeat step 4 until no more entries are returned. 6. Wait polling timeout period. 7. Get wrap events counter and last index. If the wrap events counter is equal to lastChangeWrap, then goto step 4. Else if the wrap events counter is more then one greater then lastChangeWrap, goto step 1. Else the wrap events counter is exactly one greater then lastChangeWrap, and if the last index is greater then lastChangeIndex, then goto step 1, else goto step 4. The last step simply insures that we have not missed any of the change entries. Essentially it says that if we have wrapped to beyond where we last polled, then we must get the entire table to synch up again. Otherwise we can just get the entries that have changed.") lanBlazer7000L2AddressChangeWrapCount = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeWrapCount.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeWrapCount.setDescription('The number of times that the lanBlazer7000AddressChangeLastIndex had wrapped when this entry was added.') lanBlazer7000L2AddressChangeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeIndex.setDescription('The index that uniquely identifies this address change entry.') lanBlazer7000L2AddressChangeIndexChanged = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeIndexChanged.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeIndexChanged.setDescription('The address entry that changed. The value of this object corresponds to the lanBlazer7000L2AddressIndex object. ') lanBlazer7000L2AddressChangeSummary = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeSummary.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeSummary.setDescription(' The structure is interpreted in the following manner:') lanBlazer7000SwitchPortMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2)) lanBlazer7000SwitchPortTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1), ) if mibBuilder.loadTexts: lanBlazer7000SwitchPortTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortTable.setDescription('') lanBlazer7000SwitchPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000SwitchPortIndex")) if mibBuilder.loadTexts: lanBlazer7000SwitchPortEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortEntry.setDescription('') lanBlazer7000SwitchPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000SwitchPortIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortIndex.setDescription('A unique index that identifies this switch port. The value of this index corresponds to the value of the lanBlazer7000ResourceIndex for switch ports.') lanBlazer7000SwitchPortSTAPMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortSTAPMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortSTAPMode.setDescription('Disabling spanning tree on a switch port prevents the switch port from participating in the spanning tree process. When disabled(2), this port will neither generate BPDUs, nor process received BPDUs. Also, the port will always start in the forwarding state. A port configured in this mode will not be able to detect network loops involving this port. The factory default is to enable spanning tree on all ports.') lanBlazer7000SwitchPortConvertToStatic = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("learnAsDynamic", 1), ("convertToStatic", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortConvertToStatic.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortConvertToStatic.setDescription('When this object is set to convertToStatic(2), all addresses learned on this port will be added to the non-volatile version of the static address table. Typically, this object will be used to perform a crude form of address database update where the address activity associated with this port is collected as static (i.e. permanent) addresses while the value of this object is set to convertToStatic(2). Following this usually short period of time (perhaps a week of activity), the value of this object is restored back to its default value of learnAsDynamic(1) and learning for this port is disabled. It is important that the user verify the address database to verify that only the desired addresses were made permanent.') lanBlazer7000SwitchPortLearningMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortLearningMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortLearningMode.setDescription('Disable learning on a bridge port to prevent new addresses from being added to the address database. Used in combination with static (permanent) address entries, disabling address learning is an effective security feature to prevent new hosts from appearing on the network, or to prevent hosts from moving to different locations in the network. The default is enable.') lanBlazer7000SwitchPortHuntGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 5), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortHuntGroup.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortHuntGroup.setDescription('Hunt groups provide the capability to logically bind multiple switch ports into one switch port. This provides a way of balancing the load of multiple links between like-configured switches. Care must be taken to configure the hunt groups properly to prevent accidental network looping. Use this object to bind this port to a specific hunt group. When not configured to a specific hunt group, set the value of this object to zero.') lanBlazer7000SwitchPortPhysicalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 6), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000SwitchPortPhysicalPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortPhysicalPort.setDescription('The physical port resource bound to this switch port.') lanBlazer7000SwitchPortKnownMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortKnownMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortKnownMode.setDescription("Enabling known mode for this switch port causes the port to safely discard frames flooded because they are unknown unicast frames. This mode greatly enhances the efficiency of the port's output buffer since space is not wasted for frames not meant for this port. Enabling this feature disables learning for this port. Addresses associated for this port should be entered statically. The default is disable.") lanBlazer7000SwitchPortMappingMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("port-based", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortMappingMethod.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortMappingMethod.setDescription('The frame mapping method of this switch port. When set to port-based(1) (the factory default), all non-tagged frames are classified to the VLAN associated with this switch port.') lanBlazer7000SwitchPortTrunkingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("clear", 1), ("ieee8021q", 2), ("multiLevel", 3), ("trunk3Com", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortTrunkingMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortTrunkingMode.setDescription('The trunking mode of this port. All frames transmitted out this switch port are translated to the appropriate trunking format: Clear: Ethernet or IEEE 802.3 frame format. This is the default. IEEE 802.1Q: The original frame with a new Ethernet Type (Protocol = 0xXXXX) and the VLAN ID inserted following the original Source Address. Also, the CRC is recalculated. Multi-level: The original frame is encapsulated in an IEEE 802.3 legal frame proprietary to a major networking equipment vendor. 3Com LinkSwitch: The original frame has the VLAN ID added to the front of the frame (before the Destination Address). Trunking format is proprietary to 3Com Corporation.') lanBlazer7000SwitchPortVlanBindingMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("static", 1), ("persistent", 2), ("dynamic", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanBindingMethod.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanBindingMethod.setDescription('The VLAN binding method of a switch port specifies the way in which the port can be a member of the egress lists of VLANs other than the port default VLAN specified by lanBlazer7000SwitchPortVlanID: static: A Virtual Switch Port must be statically created for each VLAN/port combination. persistent: A Virtual Switch Port is automatically created for each VLAN known to the switch (i.e., the port is a member of the egress lists of all VLANs). dynamic: A Virtual Switch Port is automatically created for each VLAN when the associated VLAN ID is used as a tag in an IEEE 802.1Q or Multi-level tagged frame received on the port (i.e., the port is a member of the egress lists of the VLANs from frames received on the port). The default is static.') lanBlazer7000SwitchPortIgnoreTag = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("useTag", 1), ("ignoreTag", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortIgnoreTag.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortIgnoreTag.setDescription("Each switch port is capable of ignoring the VLAN Tag associated with a frame in a trunking format. When ignored, the tag is used as the default in the event that a VLAN classification based on the switch's policy(s) cannot be made. This feature is useful for connecting layer 2 VLANs and layer 3 VLANs. The default is useTag.") lanBlazer7000SwitchPortVlanID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanID.setDescription('When this switch port is configured in port-based VLAN mode, all non-tagged frames received on this port are bound to this VLAN. Otherwise, non-tagged frames are classified to this VLAN as the default if a VLAN binding cannot be otherwise determined. The factory default is 1, which is the VLAN ID of the Default VLAN.') lanBlazer7000SwitchPort3ComMappingTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPort3ComMappingTableIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPort3ComMappingTableIndex.setDescription('The 3Com VLAN mapping table associated with this switch port. The default is 1, which indicates the default mapping table.') lanBlazer7000SwitchPortAutoVlanCreation = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortAutoVlanCreation.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortAutoVlanCreation.setDescription('Enabling auto VLAN creation for this switch port causes the port to dynamically create a VLAN whenever an IEEE 802.1Q or Multi-level tagged frame is received on the port with a tag value which does not correspond to a known VLAN. All switch ports with a trunking mode of IEEE 802.1Q or Multi-level are bound to this created VLAN. The default is disable.') lanBlazer7000SwitchPortMirrorMode = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000SwitchPortMirrorMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortMirrorMode.setDescription('When set to enable(1), this object indicates that the port is defined as a mirror port through the lanBlazer7000PortMirroringTable. A mirror port duplicates frames received at one or more source ports.') lanBlazer7000SwitchPortIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000SwitchPortIfIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortIfIndex.setDescription('Each switch port is associated with an interface. This object provides a mechanism to map switch ports to bridge ports.') lanBlazer7000SwitchPortFastStart = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortFastStart.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortFastStart.setDescription('When this object is set to enable(1), bridge ports on this switch port transitions right from blocking to forwarding, skipping the listening and learning states. The user should be warned that using the fast start feature greatly increases the likelihood of unintended network loops that would otherwise be prevented by participating in the normal spanning tree algorithm. The factory default value for this object is disable(2).') lanBlazer7000SwitchPortVlanExchange = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanExchange.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanExchange.setDescription("When this object is set to enable(1), this switch port attempts to learn VLANs from a major networking equipment vendor if the switch port's trunking mode is IEEE 802.1Q Format or Multi-level Format. The factory default value for this object is enable(1).") lanBlazer7000HuntGroupMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4)) lanBlazer7000HuntGroupTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1), ) if mibBuilder.loadTexts: lanBlazer7000HuntGroupTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupTable.setDescription('') lanBlazer7000HuntGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000HuntGroupIndex")) if mibBuilder.loadTexts: lanBlazer7000HuntGroupEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupEntry.setDescription('') lanBlazer7000HuntGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000HuntGroupIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupIndex.setDescription('An index that uniquely identifies this hunt group. This index corresponds to the value of lanBlazer7000ResourceIndex for resources of the hunt group type.') lanBlazer7000HuntGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000HuntGroupName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupName.setDescription('') lanBlazer7000HuntGroupBasePort = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 3), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000HuntGroupBasePort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupBasePort.setDescription('The switch port index that serves as the base port for this hunt group. Each hunt group requires a base port. In lieu of a specific configuration, the hunt group will inherit the first switch port bound to the hunt group as its base port. The base port serves as the management focus for the hunt group. That is, a hunt group is managed as one switch port whose instance is provided by the base switch port. All configuration (e.g. spanning tree information) and statistics related to switch ports are meaningful only through the instance of the base port.') lanBlazer7000HuntGroupNumberOfPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000HuntGroupNumberOfPorts.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupNumberOfPorts.setDescription('The current number of ports that belong to this hunt group.') lanBlazer7000HuntGroupLoadSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000HuntGroupLoadSharing.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupLoadSharing.setDescription('') lanBlazer7000HuntGroupStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("createRequest", 1), ("underCreation", 2), ("deleteRequest", 3), ("active", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000HuntGroupStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupStatus.setDescription('') lanBlazer7000PortMirroringMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5)) lanBlazer7000PortMirroringTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1), ) if mibBuilder.loadTexts: lanBlazer7000PortMirroringTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringTable.setDescription('A table of port mirroring entries used to mirror traffic from a source port to a mirror port.') lanBlazer7000PortMirroringEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000PortMirroringIndex")) if mibBuilder.loadTexts: lanBlazer7000PortMirroringEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringEntry.setDescription('Objects related to the PortMirroring functionality.') lanBlazer7000PortMirroringIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000PortMirroringIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringIndex.setDescription('The unique index that identifies this entry. This index consists of a switch fabric port and the index of a Packet Lookup Engine servicing this fabric port.') lanBlazer7000PortMirroringSourceSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortMirroringSourceSubPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringSourceSubPort.setDescription('The frame sampler source switch subport. The source port is the port from which received traffic will be mirrored. This object identifies the switch subport only, the switch fabric port is identified in lanBlazer7000PortMirroringIndex. If set to 0, all subports associated with the lanBlazer7000PortMirroringIndex will be source ports. The default value is 0.') lanBlazer7000PortMirroringSamplerType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("periodic", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortMirroringSamplerType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringSamplerType.setDescription('The type for this frame sampler. When set to enable(1), every frame received on the source port(s) will be mirrored at the mirror port. When set to disable(2), no frames received on the source port(s) will be mirrored at the mirror port. When set to periodic(3), frames will be mirrored at the rate defined in lanBlazer7000PortMirroringRate. The default value is disable(2).') lanBlazer7000PortMirroringRate = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortMirroringRate.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringRate.setDescription('Used in conjunction with lanBlazer7000PortMirroringSamplerType to implement periodic sampling functionality. If lanBlazer7000PortMirroringSamplerType is set to periodic(3), this object defines the number of packets/second that will be mirrored. If lanBlazer7000PortMirroringSamplerType is not periodic(3), this object will set to 0.') lanBlazer7000PortMirroringMirrorPort = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 5), ResourceId()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000PortMirroringMirrorPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringMirrorPort.setDescription('The Switch Port on which frames received at source ports(s) will be duplicated. If no mirror port has been defined this object will return NULL.') lanBlazer7000VlanMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7)) lanBlazer7000Vlans = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1)) lanBlazer7000VlanTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1), ) if mibBuilder.loadTexts: lanBlazer7000VlanTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanTable.setDescription('') lanBlazer7000VlanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000VlanID")) if mibBuilder.loadTexts: lanBlazer7000VlanEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanEntry.setDescription('') lanBlazer7000VlanID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000VlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanID.setDescription('An identifier that is unique within the administrative domain. This ID is assigned by the management application and is meaningful within that context. This ID is used to identify VLANs when tagged using either the IEEE 802.1 frame format or the Multi-level frame format.') lanBlazer7000VlanName = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 31))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VlanName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanName.setDescription('A user-assignable name for this Vlan.') lanBlazer7000VlanIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000VlanIfIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanIfIndex.setDescription('Each virtual LAN has a virtual interface associated with it. This enables RMON monitoring to occur per-VLAN. It also provides a handy mechanism to map virtual LANs to bridge ports by mapping them with the ifStack table from the Interface MIB.') lanBlazer7000VlanAFTIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VlanAFTIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanAFTIndex.setDescription("The address table used for this VLAN for explicitly tagged frames (frames received in a trunking frame format or from a port in port-based VLAN mode.) Normally, each VLAN maps to a unique address table. This is useful for environments with duplicate host addresses appear on different VLANs on different ports. For those environments where duplicate hosts on different VLANs don't exist, or exist but are on the same port, and where the address table size and/or aging is a concern, then multiple VLANs may be mapped to the same address table.") lanBlazer7000VlanBridgeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 5), ResourceId()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VlanBridgeIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanBridgeIndex.setDescription('The bridge resource which is bound to this Vlan.') lanBlazer7000VlanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("createRequest", 1), ("underCreation", 2), ("destroyRequest", 3), ("underDestruction", 4), ("active", 5), ("otherError", 6), ("entryExistsError", 7), ("invalidVlanID", 8), ("invalidVlanName", 9), ("invalidVlanAFTIndex", 10), ("invalidVlanBridgeIndex", 11), ("invalidVlanInitialHashTableSize", 12), ("invalidVlanAutoIncrementHTSize", 13)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VlanStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanStatus.setDescription('The status of an entry to be created or deleted. When adding an entry all fields will be set, and then the status is set to createRequest(1) (indicating that the entry is to be created). When deleting an entry the status is set to destroyRequest(3) (indicating that the entry is to be destroyed). During creation the status will be underCreation(2). If the creation is successful, then the status will be set to active(5). Otherwise if the creation was not successful then one of the following error codes will be set and the entry will not be created: otherError(6) - An error other than the others defined. entryExistsError(7) - An entry already exists. invalidVlanID(8) - the VLAN ID is invalid. invalidVlanName(9) - the VLAN name is invalid. invalidVlanAFTIndex(10) - the VLAN AFT index is invalid. invalidVlanBridgeIndex(11) - the VLAN bridge index is invalid. invalidVlanInitialHashTableSize(12) - the VLAN initial hash table size is invalid. invalidVlanAutoIncrementHTSize(13) - the VLAN auto increment hash table size is invalid.') lanBlazer7000VlanInitialHashTableSize = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(16, 8192))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VlanInitialHashTableSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanInitialHashTableSize.setDescription('The initial hash table size used for MAC addresses on this VLAN. This attribute may only be set when lanBlazer7000VlanStatus is set to createRequest(1). It must be a power of 2 between 16 and 8192, inclusive.') lanBlazer7000VlanAutoIncrementHTSize = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VlanAutoIncrementHTSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanAutoIncrementHTSize.setDescription('This attribute specifies whether or not the hash table size used for MAC addresses on this VLAN is automatically increased as necessary to hold more MAC addresses. This attribute may only be set when lanBlazer7000VlanStatus is set to createRequest(1).') lanBlazer7000VlanLearnStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notLearned", 1), ("vlanExchange", 2), ("auto", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000VlanLearnStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanLearnStatus.setDescription('This attribute indicates if the VLAN was learned. If learned it indicates if the VLAN was learned either by VLAN Exchange or Auto VLAN creation.') lanBlazer7000VlanMappings = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3)) lanBlazer70003ComMapping = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1)) lanBlazer70003ComMappingTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1), ) if mibBuilder.loadTexts: lanBlazer70003ComMappingTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingTable.setDescription('') lanBlazer70003ComMappingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer70003ComMappingTableIndex")) if mibBuilder.loadTexts: lanBlazer70003ComMappingEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingEntry.setDescription('') lanBlazer70003ComMappingTableIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer70003ComMappingTableIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingTableIndex.setDescription('') lanBlazer70003ComMappingTableName = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 31))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer70003ComMappingTableName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingTableName.setDescription('A user-readable name associated with this table.') lanBlazer70003ComMappingTableStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("createRequest", 1), ("destroyRequest", 2), ("active", 3), ("entryExistsError", 4), ("otherError", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer70003ComMappingTableStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingTableStatus.setDescription('The status of an entry to be created. When adding an entry all fields will be set, and then the status is set to createRequest(1), indicating that the entry is to be created. If the creation is successful, then the status will be set to active(3). Otherwise if the creation was not successful then one of the following error codes will be set and the entry will not be created: entryExistsError(4) - An entry already exists. otherError(5) - An error other than the others defined.') lanBlazer7000Vlan3ComMapping = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2)) lanBlazer7000Vlan3ComMappingTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1), ) if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingTable.setDescription('') lanBlazer7000Vlan3ComMappingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer70003ComMappingTableIndex"), (0, "ODSLANBlazer7000-MIB", "lanBlazer7000Vlan3ComMappingIndex")) if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingEntry.setDescription('') lanBlazer7000Vlan3ComMappingIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingIndex.setDescription('The external tag of this 3Com VLAN.') lanBlazer7000Vlan3ComMappingVlanID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1, 1, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingVlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingVlanID.setDescription('The VLAN ID of the VLAN that this 3Com tag is associated with.') lanBlazer7000Vlan3ComMappingStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("createRequest", 1), ("destroyRequest", 2), ("active", 3), ("otherError", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingStatus.setDescription('The status of an entry to be created. When adding an entry all fields will be set, and then the status is set to createRequest(1), indicating that the entry is to be created. If the creation is successful, then the status will be set to active(3). Otherwise if the creation was not successful then one of the following error codes will be set and the entry will not be created: otherError(4) - An error other than the others defined.') lanBlazer7000VirtualPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4)) lanBlazer7000VirtualSwitchPortTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1), ) if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortTable.setDescription('') lanBlazer7000VirtualSwitchPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000VirtualSwitchPortIndex")) if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortEntry.setDescription('An instance of a virtual switch port indicates that this switch port is a member of this VLAN.') lanBlazer7000VirtualSwitchPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 1), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortIndex.setDescription('The Resource ID of the virtual switch port bound to the VLAN.') lanBlazer7000VirtualSwitchPortFormat = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("clear", 1), ("trunkingFormat", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortFormat.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortFormat.setDescription("Typically, a VLAN capable switch port has one of three modes: access, trunk, or hybrid. In access mode, the port sends frames in clear format (untagged). In trunk mode, all outbound frames are translated into the switch port's configured trunking format. In hybrid mode, it is possible for a port to send trunked frames for some VLANs and clear frames for others. In this case, the switch port is configured to trunk, and the virtual switch port(s) for those VLANs that require clear formatted frames are configured to be override the switch port setting. This is done by setting this object to clear(1). By default, the value of this object is trunkingFormat(2) which means to use the trunking format configured for this switch port. (which may be clear).") lanBlazer7000VirtualSwitchPortBridgePort = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 3), ResourceId()).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortBridgePort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortBridgePort.setDescription('The bridge port resource bound to this virtual port.') lanBlazer7000VirtualSwitchPortBindingType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("static", 1), ("persistent", 2), ("dynamic", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortBindingType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortBindingType.setDescription('The method by which this switch port was bound to the VLAN. If the value is static(1), the binding was manually created by the administrator. If the value is persistent(2), the binding was created by the switch because the VLAN is the port-based VLAN for the switch port, or the switch port VLAN Binding Method is persistent. These bindings may not be removed. If the value is dynamic(3), the binding was created by the switch as a result of receiving a tagged frame on the switch port with a VLAN ID corresponding to the VLAN.') lanBlazer7000VirtualSwitchPortStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("createRequest", 1), ("destroyRequest", 2), ("active", 3), ("otherError", 4), ("entryExistsError", 5), ("entryNoExistError", 6)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortStatus.setDescription('The status of an entry to be created or deleted. When adding an entry all fields will be set, and then the status is set to createRequest(1) (indicating that the entry is to be created). When deleting an entry the status is set to destroyRequest(2) (indicating that the entry is to be destroyed). If the creation is successful, then the status will be set to active(3). Otherwise if the creation was not successful then one of the following error codes will be set and the entry will not be created: otherError(4) - An error other than the others defined. entryExistsError(5) - On creation, an entry already exists. On deletion, the entry may not be removed. entryNoExistError(6) - The VLAN specified by ID does not exist.') lanBlazer7000Events = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10)) lanBlazer7000EventMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1)) lanBlazer7000EventTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1), ) if mibBuilder.loadTexts: lanBlazer7000EventTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTable.setDescription('Table of events currently supported.') lanBlazer7000EventEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000EventIndex")) if mibBuilder.loadTexts: lanBlazer7000EventEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventEntry.setDescription('Attributes associated with the event.') lanBlazer7000EventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventIndex.setDescription('') lanBlazer7000EventMode = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000EventMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventMode.setDescription('Disabling an event prevents this event from taking any actions when triggered. When set to enable to the console, the event will print the event information to the console serial port. The user can select whether to view log messages, trap messages or any event at the console.') lanBlazer7000EventLogAction = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000EventLogAction.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogAction.setDescription('When enabled, this action will cause an event log entry to be created.') lanBlazer7000EventTrapAction = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000EventTrapAction.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapAction.setDescription('When enabled, this event will cause an SNMP trap to be generated.') lanBlazer7000EventConsoleAction = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000EventConsoleAction.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventConsoleAction.setDescription('When enabled, this event will cause a message to printed to the console serial port.') lanBlazer7000EventLogMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 2)) lanBlazer7000LogTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2048))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000LogTableMaxSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000LogTableMaxSize.setDescription('The maximum number of entries in the log table. Changing this value causes the existing log to be truncated and rebuilt.') lanBlazer7000LogLastEntry = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 2, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000LogLastEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000LogLastEntry.setDescription('The log index of the last entry entered in the log.') lanBlazer7000LogWraps = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 2, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000LogWraps.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000LogWraps.setDescription('The number of times that the last entry has wrapped from 65K back to 1.') lanBlazer7000EventLog = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3)) lanBlazer7000EventLogTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1), ) if mibBuilder.loadTexts: lanBlazer7000EventLogTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogTable.setDescription('The log table for the events in the event table that are enabled for the Log Action.') lanBlazer7000EventLogEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000EventLogIndex")) if mibBuilder.loadTexts: lanBlazer7000EventLogEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogEntry.setDescription('An entry in the log indicates information associated with a particular event.') lanBlazer7000EventLogEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogEventIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogEventIndex.setDescription('The index that uniquely identifies the event that caused this log entry.') lanBlazer7000EventLogIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogIndex.setDescription('An index that uniquely identifies this log entry.') lanBlazer7000EventLogTime = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 3), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogTime.setDescription('The value of sysUpTime when this event was triggered.') lanBlazer7000EventLogDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogDescr.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogDescr.setDescription('The event log description.') lanBlazer7000EventLogType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 5), EventCategory()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogType.setDescription('The type of event that caused this log entry.') lanBlazer7000EventLogSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogSeverity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogSeverity.setDescription('The severity associated with this event. It is recommended that the severity be interpreted in the following manner: 0-19: Normal 20-39: Informational 40-59: Warning 60-79: Alarm 80-99: Severe Error 100: Failure.') lanBlazer7000EventLogDTM = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(18, 18)).setFixedLength(18)).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogDTM.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogDTM.setDescription('The date and time when this log entry was made. The format is yy-Mon- dd hh:mm:ss, time is in 24 hour time.') lanBlazer7000EventLogResType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 8), ResourceType()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogResType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogResType.setDescription("The type of object (if provided) that triggered this event. If not provided, the value is equal to 'Invalid Resource'.") lanBlazer7000EventLogResID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 9), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogResID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogResID.setDescription('The instance of this resource (if provided - see lanBlazer7000EventLogResType) that triggered this event.') lanBlazer7000EventLogResLeaf = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogResLeaf.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogResLeaf.setDescription("A number corresponding to the attribute associated with this resource and this event entry. It corresponds exactly to the leaf MIB number of the MIB that manages this resource. For example, if a port's mode changed, the configuration event log entry would indicate the value of 5 which is the leaf index of the lanBlazer7000PortMode within the lanBlazer7000PortTable MIB table.") lanBlazer7000EventLogValueType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 11), EventValueType()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogValueType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogValueType.setDescription('The data type associated with the log event value. This object indicates how to interpret the data stored in the event log value: - none(1) indicates no value returned. - integer32(2) - a 4 byte unsigned integer. - integer64(3) - an 8 byte unsigned integer. - displayString(4) - a null terminated (or up to 8 characters) string. - ipv4NetworkAddress(5) - a 4 byte IP version 4 network address. - ieee802MACAddress(6) - a 6 byte MAC Address. - timeticks(7) - sysUpTime type value (4 bytes)') lanBlazer7000EventLogValue = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogValue.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogValue.setDescription('The value associated with the event encoded in an octet string. Refer to lanBlazer7000EventLogValueType for how to interpret this value. The value encoded in this string is in Big Endian order.') lanBlazer7000EventLogEpochTime = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogEpochTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogEpochTime.setDescription('The number of time ticks since the epoch when this event was logged. The interpretation of this value is as follows: struct DateTimeOvly { UNS32 year:6; UNS32 month:4; UNS32 day:5; UNS32 hour:5; UNS32 minute:6; UNS32 second:6; }; The epoch is January 1, 1997, at 00:00:00. A value of 0 refers to this date and time. ') lanBlazer7000EventLogID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventLogID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogID.setDescription('A unique index that identifies the occurence of this event. This ID can be correlated between traps, logs and the like.') lanBlazer7000ShutdownLogMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 4)) lanBlazer7000ShutdownLogTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 4, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000ShutdownLogTableMaxSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ShutdownLogTableMaxSize.setDescription('The maximum number of entries in the non-volatile log table. Changing the value of this object changes the maximum number of entries to be stored in Shutdown.') lanBlazer7000ShutdownLogLastEntry = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ShutdownLogLastEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ShutdownLogLastEntry.setDescription('The ID of the last entry made to the shutdown log.') lanBlazer7000ShutdownLogAcknowledged = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("not-acknowledged", 1), ("acknowledged", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ShutdownLogAcknowledged.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ShutdownLogAcknowledged.setDescription('This object is to set to acknowledged(2) the first time the Shutdown Log Table is accessed indicating that the Shutdown log has been read (at least once) since the system restarted.') lanBlazer7000EventShutdownLog = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5)) lanBlazer7000EventShutdownLogTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1), ) if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogTable.setDescription('A table of the last events logged before the system restarted.') lanBlazer7000EventShutdownLogEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000EventShutdownLogIndex")) if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEntry.setDescription('A log entry stored in non-volatile memory.') lanBlazer7000EventShutdownLogEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEventIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEventIndex.setDescription('The index that uniquely identifies the event that caused this ShutdownLog entry.') lanBlazer7000EventShutdownLogIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogIndex.setDescription('An index that uniquely identifies this ShutdownLog entry.') lanBlazer7000EventShutdownLogTime = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 3), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogTime.setDescription('The value of sysUpTime when this event was triggered. Note, the value corresponds to the sysUpTime when the system was last running (i.e. before it was shutdown.)') lanBlazer7000EventShutdownLogDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogDescr.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogDescr.setDescription('The event ShutdownLog description.') lanBlazer7000EventShutdownLogType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 5), EventCategory()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogType.setDescription('The type of event that caused this ShutdownLog entry.') lanBlazer7000EventShutdownLogSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogSeverity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogSeverity.setDescription('The severity associated with this event. It is recommended that the severity be interpreted in the following manner: 0-19: Normal 20-39: Informational 40-59: Warning 60-79: Alarm 80-99: Severe Error 100: Failure.') lanBlazer7000EventShutdownLogDTM = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(18, 18)).setFixedLength(18)).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogDTM.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogDTM.setDescription('The date and time when this ShutdownLog entry was made. The format is yy-Mon-dd hh:mm:ss, time is in 24 hour time.') lanBlazer7000EventShutdownLogResType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 8), ResourceType()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResType.setDescription('The type of object (if provided) that triggered this event. If not provided, the value is invalid.') lanBlazer7000EventShutdownLogResID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 9), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResID.setDescription('The instance of this resource (if provided) that triggered this event.') lanBlazer7000EventShutdownLogResLeaf = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResLeaf.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResLeaf.setDescription('To be provided.') lanBlazer7000EventShutdownLogValueType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 11), EventValueType()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogValueType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogValueType.setDescription('The data type associated with the ShutdownLog event value. This object indicates how to interpret the data stored in the event ShutdownLog value.') lanBlazer7000EventShutdownLogValue = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogValue.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogValue.setDescription('The value associated with the event encoded in an octet string. ') lanBlazer7000EventShutdownLogEpochTime = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEpochTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEpochTime.setDescription('The number of time ticks since the epoch when this event was logged. The interpretation of this value is as follows: struct DateTimeOvly { UNS32 year:6; UNS32 month:4; UNS32 day:5; UNS32 hour:5; UNS32 minute:6; UNS32 second:6; }; The epoch is January 1, 1997, at 00:00:00. A value of 0 refers to this date and time. ') lanBlazer7000EventShutdownLogID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogID.setDescription('A unique index that identifies the occurence of this event. This ID can be correlated between traps, logs and the like.') lanBlazer7000EventTrapMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6)) lanBlazer7000EventTrapEventIndex = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapEventIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapEventIndex.setDescription('The index that uniquely identifies the event that caused this trap.') lanBlazer7000EventTrapTime = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 2), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapTime.setDescription('The value of sysUpTime when this event was triggered.') lanBlazer7000EventTrapDescr = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapDescr.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapDescr.setDescription('The event log description.') lanBlazer7000EventTrapType = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 4), EventCategory()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapType.setDescription('The type of event that caused this trap.') lanBlazer7000EventTrapSeverity = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapSeverity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapSeverity.setDescription('The severity associated with this event. It is recommended that the severity be interpreted in the following manner: 0-19: Normal 20-39: Informational 40-59: Warning 60-79: Alarm 80-99: Severe Error 100: Failure.') lanBlazer7000EventTrapDTM = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(18, 18)).setFixedLength(18)).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapDTM.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapDTM.setDescription('The date and time when this trap was sent. The format is yy-Mon- dd hh:mm:ss, time is in 24 hour time.') lanBlazer7000EventTrapResType = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 7), ResourceType()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapResType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapResType.setDescription("The type of object (if provided) that triggered this event. If not provided, the value is equal to 'Invalid Resource'.") lanBlazer7000EventTrapResID = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 8), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapResID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapResID.setDescription('The instance of this resource (if provided - see lanBlazer7000EventTrapResType) that triggered this event.') lanBlazer7000EventTrapResLeaf = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapResLeaf.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapResLeaf.setDescription("A number corresponding to the attribute associated with this resource and this event entry. It corresponds exactly to the leaf MIB number of the MIB that manages this resource. For example, if a port's mode changed, the configuration event log entry would indicate the value of 5 which is the leaf index of the lanBlazer7000PortMode within the lanBlazer7000PortTable MIB table.") lanBlazer7000EventTrapValueType = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 10), EventValueType()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapValueType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapValueType.setDescription('The data type associated with the trap event value. This object indicates how to interpret the data stored in the event trap value: - none(1) indicates no value returned. - integer32(2) - a 4 byte unsigned integer. - integer64(3) - an 8 byte unsigned integer. - displayString(4) - a null terminated (or up to 8 characters) string. - ipv4NetworkAddress(5) - a 4 byte IP version 4 network address. - ieee802MACAddress(6) - a 6 byte MAC Address. - timeticks(7) - sysUpTime type value (4 bytes)') lanBlazer7000EventTrapValue = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 11), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapValue.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapValue.setDescription('The value associated with the event encoded in an octet string. Refer to lanBlazer7000EventTrapValueType for how to interpret this value. The value encoded in this string is in Big Endian order.') lanBlazer7000EventTrapEpochTime = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapEpochTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapEpochTime.setDescription('The number of time ticks since the epoch when this event was logged. The interpretation of this value is as follows: struct DateTimeOvly { UNS32 year:6; UNS32 month:4; UNS32 day:5; UNS32 hour:5; UNS32 minute:6; UNS32 second:6; }; The epoch is January 1, 1997, at 00:00:00. A value of 0 refers to this date and time. ') lanBlazer7000EventTrapID = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000EventTrapID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapID.setDescription('A unique index that identifies the occurence of this event. This ID can be correlated between traps, logs and the like.') lanBlazer7000AlarmMgt = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11)) lanBlazer7000AlarmGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 1)) lanBlazer7000AlarmGeneralActiveEntries = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 1, 1), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000AlarmGeneralActiveEntries.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AlarmGeneralActiveEntries.setDescription('The total number of alarm entries in the triggered state currently in the alarm table.') lanBlazer7000AlarmGeneralTimeStamp = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 1, 2), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000AlarmGeneralTimeStamp.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AlarmGeneralTimeStamp.setDescription('The value of sysUpTime when any alarm state last changed (either triggering a new alarm or re-arming an old one).') lanBlazer7000Alarms = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2)) lanBlazer7000ActiveAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2), ) if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmTable.setDescription('A table of all alarms in the triggered state.') lanBlazer7000ActiveAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1), ).setIndexNames((0, "ODSLANBlazer7000-MIB", "lanBlazer7000ActiveAlarmIndex")) if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmEntry.setDescription('An alarm in the triggered state.') lanBlazer7000ActiveAlarmIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmIndex.setDescription('The unique index that identifies this alarm.') lanBlazer7000ActiveAlarmName = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmName.setDescription('The name of this alarm.') lanBlazer7000ActiveAlarmValueHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmValueHigh.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmValueHigh.setDescription('The high order 32 bits of the value that triggered this alarm.') lanBlazer7000ActiveAlarmValueLow = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmValueLow.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmValueLow.setDescription('The low order 32 bits of the value that triggered this alarm.') lanBlazer7000ActiveAlarmVariable = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 5), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmVariable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmVariable.setDescription('The OID of the alarm variable if this is a user-created alarm (null otherwise).') lanBlazer7000ActiveAlarmResType = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 6), ResourceType()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmResType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmResType.setDescription('The resource type of this alarm if this is an internally created alarm.') lanBlazer7000ActiveAlarmResID = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 7), ResourceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmResID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmResID.setDescription('The resource identifier associated with this alarm if this is an internally created alarm.') lanBlazer7000ActiveAlarmLeaf = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmLeaf.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmLeaf.setDescription("The leaf index of the MIB table used to manage this resource that is associated with this alarm, if this is an internally created alarm. For example, if this alarm was created to monitor a port's status, then the value of this object will be 6, corresponding to the leaf index of the lanBlazer7000PortStatus object.") lanBlazer7000ActiveAlarmOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmOwner.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmOwner.setDescription('This is the owner of the alarm.') lanBlazer7000SnmpTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13)) lanBlazer7000SystemTrap = NotificationType((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0,2)).setObjects(("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEventIndex"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDescr"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapSeverity"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDTM"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResID"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResLeaf"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValueType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValue"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEpochTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapID")) if mibBuilder.loadTexts: lanBlazer7000SystemTrap.setDescription('A lanBlazer7000SystemTrap is sent by the agent when a system event is triggered. These events are usually triggered when the software encounters an unexpected situation, e.g. a hardware failure or a software bug.') lanBlazer7000ConfigurationTrap = NotificationType((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0,3)).setObjects(("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEventIndex"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDescr"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapSeverity"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDTM"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResID"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResLeaf"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValueType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValue"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEpochTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapID")) if mibBuilder.loadTexts: lanBlazer7000ConfigurationTrap.setDescription('A lanBlazer7000ConfigurationTrap is sent by the agent when the configuration event is triggered. These events are triggered when a configuration change is made.') lanBlazer7000TemperatureTrap = NotificationType((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0,4)).setObjects(("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEventIndex"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDescr"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapSeverity"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDTM"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResID"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResLeaf"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValueType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValue"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEpochTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapID")) if mibBuilder.loadTexts: lanBlazer7000TemperatureTrap.setDescription('A lanBlazer7000TemperatureTrap is sent by the agent when the temperature event is triggered. This event is triggered when a temperature probe detects the temperature crossing a threshold.') lanBlazer7000ResourceTrap = NotificationType((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0,5)).setObjects(("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEventIndex"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDescr"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapSeverity"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDTM"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResID"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResLeaf"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValueType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValue"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEpochTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapID")) if mibBuilder.loadTexts: lanBlazer7000ResourceTrap.setDescription('A lanBlazer7000ResourceTrap is sent by the agent when the resource event is triggered. The resource event is triggered when a resource is added or removed from the system.') lanBlazer7000FanTrap = NotificationType((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0,6)).setObjects(("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEventIndex"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDescr"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapSeverity"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDTM"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResID"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResLeaf"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValueType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValue"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEpochTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapID")) if mibBuilder.loadTexts: lanBlazer7000FanTrap.setDescription('A lanBlazer7000FanTrap is sent by the agent when the fan status event is triggered. The fan status event is triggered when a fan has a change in its status.') lanBlazer7000PowerTrap = NotificationType((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0,9)).setObjects(("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEventIndex"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDescr"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapSeverity"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapDTM"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResID"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapResLeaf"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValueType"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapValue"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapEpochTime"), ("ODSLANBlazer7000-MIB", "lanBlazer7000EventTrapID")) if mibBuilder.loadTexts: lanBlazer7000PowerTrap.setDescription('A lanBlazer7000PowerTrap is sent by the agent when the power event is triggered. These events are triggered when a power supply changes status.') lanBlazer7000VlanExchange = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14)) lanBlazer7000VlanExchangeSwitch = MibIdentifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1)) lanBlazer7000VlanExchangeState = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VlanExchangeState.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeState.setDescription('When this object is set to enable(1), the switch attempts to learn VLANs from a major networking equipment vendor on switch ports that have their VLAN Exchange parameter set to enable(1). trunking mode is IEEE 802.1Q Format or Multi-level Format. The factory default value for this object is disable(2).') lanBlazer7000VlanExchangeDomainName = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite") if mibBuilder.loadTexts: lanBlazer7000VlanExchangeDomainName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeDomainName.setDescription('The VLAN Exchange Domain Name of the switch. A switch may only belong to one domain.') lanBlazer7000VlanExchangeUpdaterId = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000VlanExchangeUpdaterId.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeUpdaterId.setDescription('The IP address of the switch from which the VLAN Exchange configuration was learned.') lanBlazer7000VlanExchangeUpdateTimeStamp = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000VlanExchangeUpdateTimeStamp.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeUpdateTimeStamp.setDescription('The time at which the VLAN Exchange configuration changed on the initiating switch.') lanBlazer7000VlanExchangeConfigRevNum = MibScalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lanBlazer7000VlanExchangeConfigRevNum.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeConfigRevNum.setDescription('Configuration Revision Number of VLAN Exchange Configuration on the switch that initiated the VLAN Exchange.') mibBuilder.exportSymbols("ODSLANBlazer7000-MIB", lanBlazer7000SwitchPortLearningMode=lanBlazer7000SwitchPortLearningMode, lanBlazer7000VlanExchangeUpdaterId=lanBlazer7000VlanExchangeUpdaterId, lanBlazer7000AgentCommunity=lanBlazer7000AgentCommunity, lanBlazer7000SwitchAgingTime=lanBlazer7000SwitchAgingTime, lanBlazer7000TempTable=lanBlazer7000TempTable, lanBlazer7000PortPacePriorityEntry=lanBlazer7000PortPacePriorityEntry, MacAddress=MacAddress, lanBlazer7000PowerSupplyIndex=lanBlazer7000PowerSupplyIndex, lanBlazer7000BridgePortMgmt=lanBlazer7000BridgePortMgmt, lanBlazer7000BufferMgt=lanBlazer7000BufferMgt, lanBlazer7000PowerMgmtGen=lanBlazer7000PowerMgmtGen, lanBlazer7000EventConsoleAction=lanBlazer7000EventConsoleAction, EventValueType=EventValueType, lanBlazer7000L2AddrSummaryEntry=lanBlazer7000L2AddrSummaryEntry, lanBlazer7000PortPacePriorityMgt=lanBlazer7000PortPacePriorityMgt, lanBlazer7000EventLogDescr=lanBlazer7000EventLogDescr, lanBlazer7000ActiveAlarmResID=lanBlazer7000ActiveAlarmResID, lanBlazer7000VirtualSwitchPortStatus=lanBlazer7000VirtualSwitchPortStatus, lanBlazer7000L2AddressChangeLast=lanBlazer7000L2AddressChangeLast, lanBlazer7000EventLogType=lanBlazer7000EventLogType, lanBlazer7000BridgePortTable=lanBlazer7000BridgePortTable, lanBlazer7000PortMgt=lanBlazer7000PortMgt, lanBlazer7000PowerControlEntry=lanBlazer7000PowerControlEntry, lanBlazer7000ModuleIndex=lanBlazer7000ModuleIndex, lanBlazer7000BridgeMgmt=lanBlazer7000BridgeMgmt, lanBlazer7000PortStatus=lanBlazer7000PortStatus, lanBlazer7000PowerMgmtCtl=lanBlazer7000PowerMgmtCtl, lanBlazer7000VirtualSwitchPortBridgePort=lanBlazer7000VirtualSwitchPortBridgePort, lanBlazer7000Events=lanBlazer7000Events, lanBlazer7000InventorySerialNumber=lanBlazer7000InventorySerialNumber, lanBlazer7000PowerSupplyType=lanBlazer7000PowerSupplyType, lanBlazer7000LogLastEntry=lanBlazer7000LogLastEntry, lanBlazer7000SwitchPortVlanBindingMethod=lanBlazer7000SwitchPortVlanBindingMethod, lanBlazer7000InventoryVersion=lanBlazer7000InventoryVersion, lanBlazer7000EventShutdownLog=lanBlazer7000EventShutdownLog, lanBlazer7000HuntGroupStatus=lanBlazer7000HuntGroupStatus, lanBlazer7000PowerControlMode=lanBlazer7000PowerControlMode, lanBlazer7000L2AddrDatabaseMgt=lanBlazer7000L2AddrDatabaseMgt, ods=ods, lanBlazer7000PortCategoryEntry=lanBlazer7000PortCategoryEntry, lanBlazer7000SwitchPortTrunkingMode=lanBlazer7000SwitchPortTrunkingMode, lanBlazer7000HuntGroupMgt=lanBlazer7000HuntGroupMgt, lanBlazer7000SwitchingLayerII=lanBlazer7000SwitchingLayerII, lanBlazer7000EventTrapID=lanBlazer7000EventTrapID, lanBlazer7000PortFlowControlTable=lanBlazer7000PortFlowControlTable, lanBlazer7000ActiveAlarmIndex=lanBlazer7000ActiveAlarmIndex, lanBlazer7000EventEntry=lanBlazer7000EventEntry, lanBlazer7000ModuleName=lanBlazer7000ModuleName, lanBlazer7000PortAutoNegotiationMgt=lanBlazer7000PortAutoNegotiationMgt, lanBlazer7000BridgePortEnable=lanBlazer7000BridgePortEnable, lanBlazer7000PortSpeedTable=lanBlazer7000PortSpeedTable, lanBlazer7000SwitchPortKnownMode=lanBlazer7000SwitchPortKnownMode, lanBlazer7000BridgeStpTimeSinceTopologyChange=lanBlazer7000BridgeStpTimeSinceTopologyChange, lanBlazer7000TempEntry=lanBlazer7000TempEntry, lanBlazer7000InventoryManufactureInfo=lanBlazer7000InventoryManufactureInfo, lanBlazer7000BridgeStpForwardDelay=lanBlazer7000BridgeStpForwardDelay, lanBlazer7000L2AddressChangeWraps=lanBlazer7000L2AddressChangeWraps, lanBlazer7000PortPacePriorityMode=lanBlazer7000PortPacePriorityMode, lanBlazer7000BufferPriorityThreshold=lanBlazer7000BufferPriorityThreshold, lanBlazer7000L2AddressVlanID=lanBlazer7000L2AddressVlanID, lanBlazer7000BridgePortPriority=lanBlazer7000BridgePortPriority, lanBlazer7000BufferCongestion=lanBlazer7000BufferCongestion, lanBlazer7000ChassisGen=lanBlazer7000ChassisGen, lanBlazer7000VlanEntry=lanBlazer7000VlanEntry, lanBlazer7000EventIndex=lanBlazer7000EventIndex, lanBlazer7000CommunityEntry=lanBlazer7000CommunityEntry, lanBlazer7000BridgeStpHoldTime=lanBlazer7000BridgeStpHoldTime, lanBlazer7000PortSpeedMgt=lanBlazer7000PortSpeedMgt, lanBlazer7000BufferPriorityAllocation=lanBlazer7000BufferPriorityAllocation, lanBlazer7000SwitchPortHuntGroup=lanBlazer7000SwitchPortHuntGroup, lanBlazer7000VlanName=lanBlazer7000VlanName, lanBlazer7000L2AddressEntry=lanBlazer7000L2AddressEntry, lanBlazer7000ActiveAlarmOwner=lanBlazer7000ActiveAlarmOwner, lanBlazer7000CommunityString=lanBlazer7000CommunityString, lanBlazer7000PowerSupplyOutputStatus=lanBlazer7000PowerSupplyOutputStatus, lanBlazer7000VirtualSwitchPortBindingType=lanBlazer7000VirtualSwitchPortBindingType, lanBlazer7000EventLog=lanBlazer7000EventLog, lanBlazer7000EventShutdownLogID=lanBlazer7000EventShutdownLogID, lanBlazer7000BufferPriorityServicing=lanBlazer7000BufferPriorityServicing, lanBlazer7000L2AddressForward=lanBlazer7000L2AddressForward, lanBlazer7000EventTrapResID=lanBlazer7000EventTrapResID, lanBlazer7000CommunityStatus=lanBlazer7000CommunityStatus, lanBlazer7000BufferFabricPortDirection=lanBlazer7000BufferFabricPortDirection, lanBlazer7000ModulePorts=lanBlazer7000ModulePorts, lanBlazer7000HuntGroupBasePort=lanBlazer7000HuntGroupBasePort, lanBlazer7000SwitchPortFastStart=lanBlazer7000SwitchPortFastStart, lanBlazer7000EventShutdownLogResType=lanBlazer7000EventShutdownLogResType, lanBlazer7000L2AddrSummaryTable=lanBlazer7000L2AddrSummaryTable, lanBlazer7000L2AddrControlMgt=lanBlazer7000L2AddrControlMgt, lanBlazer70003ComMappingTableStatus=lanBlazer70003ComMappingTableStatus, lanBlazer7000EventShutdownLogSeverity=lanBlazer7000EventShutdownLogSeverity, lanBlazer7000VirtualSwitchPortIndex=lanBlazer7000VirtualSwitchPortIndex, lanBlazer7000SwitchPortEntry=lanBlazer7000SwitchPortEntry, lanBlazer7000PortAutoNegotiationDuplexAdvertisement=lanBlazer7000PortAutoNegotiationDuplexAdvertisement, lanBlazer7000BufferEntry=lanBlazer7000BufferEntry, lanBlazer7000SwitchPortIndex=lanBlazer7000SwitchPortIndex, lanBlazer7000AgentGen=lanBlazer7000AgentGen, lanBlazer7000VlanAFTIndex=lanBlazer7000VlanAFTIndex, lanBlazer7000BufferHighOverflowDrops=lanBlazer7000BufferHighOverflowDrops, lanBlazer7000BridgePortForwardTransitions=lanBlazer7000BridgePortForwardTransitions, lanBlazer7000PowerSystems=lanBlazer7000PowerSystems, lanBlazer7000SwitchPortSTAPMode=lanBlazer7000SwitchPortSTAPMode, lanBlazer7000PortRateLimitMode=lanBlazer7000PortRateLimitMode, lanBlazer7000AlarmGeneralActiveEntries=lanBlazer7000AlarmGeneralActiveEntries, lanBlazer7000PortFlowControlEntry=lanBlazer7000PortFlowControlEntry, lanBlazer7000PortEntry=lanBlazer7000PortEntry, lanBlazer7000PortSpeedState=lanBlazer7000PortSpeedState, lanBlazer7000L2AddressControlPortBinding=lanBlazer7000L2AddressControlPortBinding, lanBlazer7000PowerUsed=lanBlazer7000PowerUsed, lanBlazer7000BridgeMode=lanBlazer7000BridgeMode, lanBlazer7000BridgeType=lanBlazer7000BridgeType, lanBlazer7000PortGroupBinding=lanBlazer7000PortGroupBinding, lanBlazer7000PowerControlPriority=lanBlazer7000PowerControlPriority, lanBlazer7000BridgePortEntry=lanBlazer7000BridgePortEntry, lanBlazer7000L2AddrSummary=lanBlazer7000L2AddrSummary, lanBlazer7000PortAutoNegotiationSpeedAdvertisement=lanBlazer7000PortAutoNegotiationSpeedAdvertisement, lanBlazer7000SwitchPortPhysicalPort=lanBlazer7000SwitchPortPhysicalPort, lanBlazer7000AlarmGeneralTimeStamp=lanBlazer7000AlarmGeneralTimeStamp, lanBlazer7000SwitchPortTable=lanBlazer7000SwitchPortTable, lanBlazer7000PowerSupplyTable=lanBlazer7000PowerSupplyTable, lanBlazer7000VirtualSwitchPortTable=lanBlazer7000VirtualSwitchPortTable, lanBlazer7000InventoryResourceIndex=lanBlazer7000InventoryResourceIndex, lanBlazer7000BridgeStpRootCost=lanBlazer7000BridgeStpRootCost, lanBlazer7000PowerCapacity=lanBlazer7000PowerCapacity, lanBlazer7000PowerControlTable=lanBlazer7000PowerControlTable, lanBlazer7000EventShutdownLogResID=lanBlazer7000EventShutdownLogResID, lanBlazer7000ActiveAlarmTable=lanBlazer7000ActiveAlarmTable, lanBlazer7000PowerSupplyStatus=lanBlazer7000PowerSupplyStatus, odsLANBlazer=odsLANBlazer, lanBlazer7000EventLogDTM=lanBlazer7000EventLogDTM, lanBlazer7000EventLogTable=lanBlazer7000EventLogTable, lanBlazer7000PortDuplexMgt=lanBlazer7000PortDuplexMgt, lanBlazer7000L2AddressIndex=lanBlazer7000L2AddressIndex, lanBlazer7000VlanAutoIncrementHTSize=lanBlazer7000VlanAutoIncrementHTSize, lanBlazer7000VlanMappings=lanBlazer7000VlanMappings, lanBlazer7000ShutdownLogAcknowledged=lanBlazer7000ShutdownLogAcknowledged, lanBlazer70003ComMappingTableIndex=lanBlazer70003ComMappingTableIndex, lanBlazer7000Vlan3ComMappingTable=lanBlazer7000Vlan3ComMappingTable, lanBlazer7000LogTableMaxSize=lanBlazer7000LogTableMaxSize, lanBlazer7000EventLogResID=lanBlazer7000EventLogResID, lanBlazer7000L2AddressControlPersistence=lanBlazer7000L2AddressControlPersistence, lanBlazer7000BridgePortFastStart=lanBlazer7000BridgePortFastStart, lanBlazer7000PortIndex=lanBlazer7000PortIndex, lanBlazer7000BridgeIndex=lanBlazer7000BridgeIndex, lanBlazer7000Vlan3ComMappingIndex=lanBlazer7000Vlan3ComMappingIndex, lanBlazer7000InventoryScratchPad=lanBlazer7000InventoryScratchPad, lanBlazer7000L2AddressControlIndex=lanBlazer7000L2AddressControlIndex, lanBlazer7000Agent=lanBlazer7000Agent, lanBlazer7000HuntGroupLoadSharing=lanBlazer7000HuntGroupLoadSharing, lanBlazer7000PortAutoNegotiationMode=lanBlazer7000PortAutoNegotiationMode, lanBlazer7000Chassis=lanBlazer7000Chassis, lanBlazer7000L2AddressTable=lanBlazer7000L2AddressTable, lanBlazer7000FanTrap=lanBlazer7000FanTrap, lanBlazer7000SwitchSuperAgingTime=lanBlazer7000SwitchSuperAgingTime, lanBlazer7000HuntGroupEntry=lanBlazer7000HuntGroupEntry, lanBlazer7000CommunityAccess=lanBlazer7000CommunityAccess, lanBlazer7000PortSpeedEntry=lanBlazer7000PortSpeedEntry, lanBlazer7000L2AddrChangeMgt=lanBlazer7000L2AddrChangeMgt, lanBlazer7000BufferAgeTimer=lanBlazer7000BufferAgeTimer, lanBlazer7000SnmpTraps=lanBlazer7000SnmpTraps, lanBlazer7000PortMirroringRate=lanBlazer7000PortMirroringRate, lanBlazer7000SwitchPortConvertToStatic=lanBlazer7000SwitchPortConvertToStatic, lanBlazer7000PortFlowControlMode=lanBlazer7000PortFlowControlMode, lanBlazer7000EventTrapResLeaf=lanBlazer7000EventTrapResLeaf, lanBlazer7000VlanExchangeSwitch=lanBlazer7000VlanExchangeSwitch, lanBlazer7000BufferIndex=lanBlazer7000BufferIndex, lanBlazer7000L2AddrSummaryMgt=lanBlazer7000L2AddrSummaryMgt, lanBlazer7000BridgeStpBridgeForwardDelay=lanBlazer7000BridgeStpBridgeForwardDelay, lanBlazer7000ModuleTable=lanBlazer7000ModuleTable, lanBlazer7000ActiveAlarmLeaf=lanBlazer7000ActiveAlarmLeaf, lanBlazer7000ShutdownLogTableMaxSize=lanBlazer7000ShutdownLogTableMaxSize, lanBlazer7000TempValue=lanBlazer7000TempValue, lanBlazer7000Vlans=lanBlazer7000Vlans, lanBlazer7000PortRateLimitMgt=lanBlazer7000PortRateLimitMgt, lanBlazer7000SwitchSTPConfig=lanBlazer7000SwitchSTPConfig, lanBlazer7000EventShutdownLogEntry=lanBlazer7000EventShutdownLogEntry, lanBlazer7000ModuleSlotOffset=lanBlazer7000ModuleSlotOffset, lanBlazer7000BridgeStpMaxAge=lanBlazer7000BridgeStpMaxAge, lanBlazer7000PortRateLimitBurstSize=lanBlazer7000PortRateLimitBurstSize, lanBlazer7000PortMirroringSourceSubPort=lanBlazer7000PortMirroringSourceSubPort, lanBlazer7000VlanBridgeIndex=lanBlazer7000VlanBridgeIndex, lanBlazer7000EventShutdownLogIndex=lanBlazer7000EventShutdownLogIndex, odsLANBlazer7000Mib=odsLANBlazer7000Mib, lanBlazer7000VlanID=lanBlazer7000VlanID, lanBlazer7000ModuleBaseType=lanBlazer7000ModuleBaseType, lanBlazer7000PortCategoryTable=lanBlazer7000PortCategoryTable, lanBlazer7000PortBaseType=lanBlazer7000PortBaseType, ResourceId=ResourceId, lanBlazer7000ShutdownLogLastEntry=lanBlazer7000ShutdownLogLastEntry, lanBlazer7000EventLogEntry=lanBlazer7000EventLogEntry, lanBlazer7000EventShutdownLogEventIndex=lanBlazer7000EventShutdownLogEventIndex, lanBlazer7000BridgePortDesignatedBridge=lanBlazer7000BridgePortDesignatedBridge, lanBlazer7000PowerSupplyOutputCapacity=lanBlazer7000PowerSupplyOutputCapacity, lanBlazer7000PortDuplexMode=lanBlazer7000PortDuplexMode, lanBlazer7000PortType=lanBlazer7000PortType, lanBlazer7000VlanStatus=lanBlazer7000VlanStatus, lanBlazer7000BridgeStpPriority=lanBlazer7000BridgeStpPriority, lanBlazer7000SwitchPortMirrorMode=lanBlazer7000SwitchPortMirrorMode, lanBlazer7000VlanMgt=lanBlazer7000VlanMgt, lanBlazer7000PortDuplexState=lanBlazer7000PortDuplexState, lanBlazer7000ModuleSlotWidth=lanBlazer7000ModuleSlotWidth, lanBlazer7000VlanInitialHashTableSize=lanBlazer7000VlanInitialHashTableSize, lanBlazer7000PowerSupplies=lanBlazer7000PowerSupplies, lanBlazer7000AgentMIBVersion=lanBlazer7000AgentMIBVersion, lanBlazer7000EventTable=lanBlazer7000EventTable, lanBlazer7000BridgeTable=lanBlazer7000BridgeTable, lanBlazer7000PortAutoNegotiationEntry=lanBlazer7000PortAutoNegotiationEntry, lanBlazer7000EventTrapValue=lanBlazer7000EventTrapValue, lanBlazer7000VlanExchange=lanBlazer7000VlanExchange, lanBlazer7000SwitchPortMgt=lanBlazer7000SwitchPortMgt, lanBlazer7000TempLowerWarning=lanBlazer7000TempLowerWarning, odsLANBlazerMibs=odsLANBlazerMibs, lanBlazer7000ActiveAlarmName=lanBlazer7000ActiveAlarmName, lanBlazer7000L2AddressPersistence=lanBlazer7000L2AddressPersistence, lanBlazer7000PortTable=lanBlazer7000PortTable, lanBlazer7000VlanTable=lanBlazer7000VlanTable, lanBlazer7000Alarms=lanBlazer7000Alarms, lanBlazer7000BridgePortPathCost=lanBlazer7000BridgePortPathCost, lanBlazer7000PortFlowControlMgt=lanBlazer7000PortFlowControlMgt, lanBlazer7000BufferFabricPort=lanBlazer7000BufferFabricPort, lanBlazer7000InventoryTable=lanBlazer7000InventoryTable, lanBlazer7000ActiveAlarmResType=lanBlazer7000ActiveAlarmResType, lanBlazer7000EventTrapValueType=lanBlazer7000EventTrapValueType, lanBlazer7000SwitchPortVlanExchange=lanBlazer7000SwitchPortVlanExchange, lanBlazer7000EventLogSeverity=lanBlazer7000EventLogSeverity, lanBlazer7000HuntGroupName=lanBlazer7000HuntGroupName, lanBlazer7000ChassisType=lanBlazer7000ChassisType, lanBlazer7000EventShutdownLogDescr=lanBlazer7000EventShutdownLogDescr, lanBlazer7000ActiveAlarmVariable=lanBlazer7000ActiveAlarmVariable, odsTPS=odsTPS, lanBlazer7000L2AddrMgmt=lanBlazer7000L2AddrMgmt, lanBlazer7000BridgePortState=lanBlazer7000BridgePortState, lanBlazer7000BridgeStpBridgeHelloTime=lanBlazer7000BridgeStpBridgeHelloTime, lanBlazer7000BridgeStpRootPort=lanBlazer7000BridgeStpRootPort, lanBlazer7000VlanExchangeDomainName=lanBlazer7000VlanExchangeDomainName, lanBlazer7000PortCategoryMode=lanBlazer7000PortCategoryMode, lanBlazer7000SwitchPortMappingMethod=lanBlazer7000SwitchPortMappingMethod, lanBlazer7000SwitchGen=lanBlazer7000SwitchGen, lanBlazer7000HuntGroupNumberOfPorts=lanBlazer7000HuntGroupNumberOfPorts, lanBlazer7000BufferCongestionDrops=lanBlazer7000BufferCongestionDrops, lanBlazer7000BridgePortDesignatedRoot=lanBlazer7000BridgePortDesignatedRoot, lanBlazer7000BridgePortIndex=lanBlazer7000BridgePortIndex, lanBlazer7000EventTrapTime=lanBlazer7000EventTrapTime, lanBlazer7000PortMirroringEntry=lanBlazer7000PortMirroringEntry, lanBlazer7000PortSpeedMode=lanBlazer7000PortSpeedMode, lanBlazer7000SwitchPortVlanID=lanBlazer7000SwitchPortVlanID, lanBlazer7000BridgePortEnableChangeDetection=lanBlazer7000BridgePortEnableChangeDetection, lanBlazer7000InventoryResourceType=lanBlazer7000InventoryResourceType, lanBlazer7000BridgeStpBridgeMaxAge=lanBlazer7000BridgeStpBridgeMaxAge, lanBlazer7000PortRateLimitEntry=lanBlazer7000PortRateLimitEntry, lanBlazer7000PortRateLimitRate=lanBlazer7000PortRateLimitRate, lanBlazer7000PortCategoryMgt=lanBlazer7000PortCategoryMgt, lanBlazer7000AgentWeb=lanBlazer7000AgentWeb, lanBlazer7000TempLowerLimit=lanBlazer7000TempLowerLimit) mibBuilder.exportSymbols("ODSLANBlazer7000-MIB", lanBlazer7000PortMirroringTable=lanBlazer7000PortMirroringTable, lanBlazer7000PortConnector=lanBlazer7000PortConnector, lanBlazer7000PortDuplexEntry=lanBlazer7000PortDuplexEntry, lanBlazer7000VirtualPorts=lanBlazer7000VirtualPorts, lanBlazer7000EventShutdownLogEpochTime=lanBlazer7000EventShutdownLogEpochTime, lanBlazer7000EventTrapAction=lanBlazer7000EventTrapAction, lanBlazer7000EventShutdownLogTable=lanBlazer7000EventShutdownLogTable, lanBlazer7000PowerSupplyEntry=lanBlazer7000PowerSupplyEntry, lanBlazer7000L2AddressControlVlanID=lanBlazer7000L2AddressControlVlanID, lanBlazer70003ComMappingTable=lanBlazer70003ComMappingTable, lanBlazer7000ConfigurationTrap=lanBlazer7000ConfigurationTrap, lanBlazer7000VlanExchangeUpdateTimeStamp=lanBlazer7000VlanExchangeUpdateTimeStamp, lanBlazer70003ComMappingEntry=lanBlazer70003ComMappingEntry, lanBlazer7000L2AddressControlStatus=lanBlazer7000L2AddressControlStatus, lanBlazer7000SwitchPortIfIndex=lanBlazer7000SwitchPortIfIndex, lanBlazer7000ActiveAlarmValueLow=lanBlazer7000ActiveAlarmValueLow, lanBlazer7000EventTrapSeverity=lanBlazer7000EventTrapSeverity, lanBlazer7000BridgeStpTopChanges=lanBlazer7000BridgeStpTopChanges, lanBlazer7000EventLogValue=lanBlazer7000EventLogValue, lanBlazer70003ComMapping=lanBlazer70003ComMapping, lanBlazer7000BufferLowOverflowDrops=lanBlazer7000BufferLowOverflowDrops, lanBlazer7000BufferSwitchPort=lanBlazer7000BufferSwitchPort, lanBlazer7000Vlan3ComMapping=lanBlazer7000Vlan3ComMapping, lanBlazer7000EventLogValueType=lanBlazer7000EventLogValueType, lanBlazer7000L2AddressControlEntry=lanBlazer7000L2AddressControlEntry, lanBlazer7000PortMirroringSamplerType=lanBlazer7000PortMirroringSamplerType, lanBlazer7000VlanIfIndex=lanBlazer7000VlanIfIndex, lanBlazer7000EventShutdownLogValue=lanBlazer7000EventShutdownLogValue, lanBlazer7000ActiveAlarmValueHigh=lanBlazer7000ActiveAlarmValueHigh, lanBlazer7000CommunityIndex=lanBlazer7000CommunityIndex, lanBlazer7000ChassisSlots=lanBlazer7000ChassisSlots, RowStatus=RowStatus, lanBlazer7000L2AddressChangeMaxEntries=lanBlazer7000L2AddressChangeMaxEntries, lanBlazer7000TempUpperLimit=lanBlazer7000TempUpperLimit, lanBlazer7000VlanExchangeState=lanBlazer7000VlanExchangeState, lanBlazer7000EventLogID=lanBlazer7000EventLogID, lanBlazer7000CommunityTrapReceiver=lanBlazer7000CommunityTrapReceiver, lanBlazer7000L2AddressStatus=lanBlazer7000L2AddressStatus, lanBlazer7000L2AddressChangeIndexChanged=lanBlazer7000L2AddressChangeIndexChanged, lanBlazer7000SwitchPortAutoVlanCreation=lanBlazer7000SwitchPortAutoVlanCreation, lanBlazer7000VlanLearnStatus=lanBlazer7000VlanLearnStatus, lanBlazer7000L2AddressChangeEntry=lanBlazer7000L2AddressChangeEntry, lanBlazer7000Vlan3ComMappingStatus=lanBlazer7000Vlan3ComMappingStatus, lanBlazer7000L2AddressMacAddress=lanBlazer7000L2AddressMacAddress, lanBlazer7000Vlan3ComMappingVlanID=lanBlazer7000Vlan3ComMappingVlanID, lanBlazer7000EventLogResLeaf=lanBlazer7000EventLogResLeaf, lanBlazer7000EventTrapEpochTime=lanBlazer7000EventTrapEpochTime, lanBlazer7000EventLogResType=lanBlazer7000EventLogResType, lanBlazer7000EventShutdownLogValueType=lanBlazer7000EventShutdownLogValueType, lanBlazer7000PortMirroringMgt=lanBlazer7000PortMirroringMgt, lanBlazer7000PortMirroringMirrorPort=lanBlazer7000PortMirroringMirrorPort, lanBlazer7000VirtualSwitchPortFormat=lanBlazer7000VirtualSwitchPortFormat, lanBlazer7000PowerControlUsed=lanBlazer7000PowerControlUsed, lanBlazer7000Inventory=lanBlazer7000Inventory, lanBlazer7000AlarmMgt=lanBlazer7000AlarmMgt, lanBlazer7000PortDuplexTable=lanBlazer7000PortDuplexTable, lanBlazer7000ModuleType=lanBlazer7000ModuleType, lanBlazer7000BridgeStpHelloTime=lanBlazer7000BridgeStpHelloTime, lanBlazer7000BridgePortDesignatedCost=lanBlazer7000BridgePortDesignatedCost, lanBlazer7000BridgePortDesignatedPort=lanBlazer7000BridgePortDesignatedPort, lanBlazer7000InventoryModelNumber=lanBlazer7000InventoryModelNumber, lanBlazer7000BridgeEntry=lanBlazer7000BridgeEntry, lanBlazer7000L2AddressTableIndex=lanBlazer7000L2AddressTableIndex, lanBlazer7000LogWraps=lanBlazer7000LogWraps, lanBlazer7000L2AddressChangeTable=lanBlazer7000L2AddressChangeTable, lanBlazer7000SystemTrap=lanBlazer7000SystemTrap, lanBlazer7000ResourceTrap=lanBlazer7000ResourceTrap, DisplayString=DisplayString, lanBlazer7000AgentWebServerURL=lanBlazer7000AgentWebServerURL, lanBlazer7000L2AddressChangeIndex=lanBlazer7000L2AddressChangeIndex, lanBlazer7000EventLogMgt=lanBlazer7000EventLogMgt, lanBlazer7000PortMirroringIndex=lanBlazer7000PortMirroringIndex, lanBlazer7000PortMode=lanBlazer7000PortMode, lanBlazer7000EventLogAction=lanBlazer7000EventLogAction, lanBlazer7000BufferLowStaleDrops=lanBlazer7000BufferLowStaleDrops, Timeout=Timeout, lanBlazer7000EventTrapType=lanBlazer7000EventTrapType, lanBlazer7000CommunityAddress=lanBlazer7000CommunityAddress, lanBlazer7000AgentMgrIndex=lanBlazer7000AgentMgrIndex, lanBlazer7000PortAutoNegotiationTable=lanBlazer7000PortAutoNegotiationTable, lanBlazer7000L2AddressChangeWrapCount=lanBlazer7000L2AddressChangeWrapCount, lanBlazer7000PortRateLimitTable=lanBlazer7000PortRateLimitTable, lanBlazer7000EventTrapMgmt=lanBlazer7000EventTrapMgmt, lanBlazer7000EventTrapResType=lanBlazer7000EventTrapResType, lanBlazer7000EventLogEventIndex=lanBlazer7000EventLogEventIndex, lanBlazer7000EventShutdownLogTime=lanBlazer7000EventShutdownLogTime, lanBlazer7000SwitchPortIgnoreTag=lanBlazer7000SwitchPortIgnoreTag, lanBlazer7000EventShutdownLogType=lanBlazer7000EventShutdownLogType, lanBlazer7000PowerSupplyInputStatus=lanBlazer7000PowerSupplyInputStatus, lanBlazer7000CommunityAddressType=lanBlazer7000CommunityAddressType, lanBlazer7000BufferMemory=lanBlazer7000BufferMemory, lanBlazer7000TemperatureTrap=lanBlazer7000TemperatureTrap, lanBlazer7000CommunityTable=lanBlazer7000CommunityTable, lanBlazer70003ComMappingTableName=lanBlazer70003ComMappingTableName, lanBlazer7000L2AddressControlTable=lanBlazer7000L2AddressControlTable, lanBlazer7000L2AddressBindingValid=lanBlazer7000L2AddressBindingValid, lanBlazer7000EventMode=lanBlazer7000EventMode, lanBlazer7000EventLogEpochTime=lanBlazer7000EventLogEpochTime, lanBlazer7000L2AddressChangeSummary=lanBlazer7000L2AddressChangeSummary, lanBlazer7000EventLogIndex=lanBlazer7000EventLogIndex, lanBlazer7000ModuleEntry=lanBlazer7000ModuleEntry, lanBlazer7000Vlan3ComMappingEntry=lanBlazer7000Vlan3ComMappingEntry, lanBlazer7000L2AddressControlPriority=lanBlazer7000L2AddressControlPriority, lanBlazer7000PortPacePriorityTable=lanBlazer7000PortPacePriorityTable, lanBlazer7000Ports=lanBlazer7000Ports, lanBlazer7000EventShutdownLogDTM=lanBlazer7000EventShutdownLogDTM, lanBlazer7000EventTrapDTM=lanBlazer7000EventTrapDTM, lanBlazer7000BufferHighStaleDrops=lanBlazer7000BufferHighStaleDrops, lanBlazer7000BridgeStatus=lanBlazer7000BridgeStatus, lanBlazer7000HuntGroupIndex=lanBlazer7000HuntGroupIndex, lanBlazer7000VirtualSwitchPortEntry=lanBlazer7000VirtualSwitchPortEntry, ResourceType=ResourceType, lanBlazer7000L2AddressPriority=lanBlazer7000L2AddressPriority, lanBlazer7000EventShutdownLogResLeaf=lanBlazer7000EventShutdownLogResLeaf, lanBlazer7000Switching=lanBlazer7000Switching, lanBlazer7000CommunitySecurityLevel=lanBlazer7000CommunitySecurityLevel, lanBlazer7000AgentWebServerHelpDirectory=lanBlazer7000AgentWebServerHelpDirectory, lanBlazer7000EventTrapDescr=lanBlazer7000EventTrapDescr, lanBlazer7000EventTrapEventIndex=lanBlazer7000EventTrapEventIndex, lanBlazer7000EventMgt=lanBlazer7000EventMgt, lanBlazer7000PortName=lanBlazer7000PortName, lanBlazer7000SwitchPort3ComMappingTableIndex=lanBlazer7000SwitchPort3ComMappingTableIndex, lanBlazer7000Modules=lanBlazer7000Modules, lanBlazer7000TempIndex=lanBlazer7000TempIndex, lanBlazer7000PowerTrap=lanBlazer7000PowerTrap, lanBlazer7000AlarmGeneral=lanBlazer7000AlarmGeneral, lanBlazer7000TempUpperWarning=lanBlazer7000TempUpperWarning, lanBlazer7000Temperature=lanBlazer7000Temperature, lanBlazer7000L2AddressControlMacAddress=lanBlazer7000L2AddressControlMacAddress, lanBlazer7000InventoryEntry=lanBlazer7000InventoryEntry, lanBlazer7000BufferTable=lanBlazer7000BufferTable, lanBlazer7000ActiveAlarmEntry=lanBlazer7000ActiveAlarmEntry, lanBlazer7000VlanExchangeConfigRevNum=lanBlazer7000VlanExchangeConfigRevNum, lanBlazer7000L2AddressCopy=lanBlazer7000L2AddressCopy, lanBlazer7000EventLogTime=lanBlazer7000EventLogTime, lanBlazer7000BridgePortSetDefault=lanBlazer7000BridgePortSetDefault, lanBlazer7000ShutdownLogMgt=lanBlazer7000ShutdownLogMgt, lanBlazer7000HuntGroupTable=lanBlazer7000HuntGroupTable, lanBlazer7000BridgeStpDesignatedRoot=lanBlazer7000BridgeStpDesignatedRoot, EventCategory=EventCategory, BridgeId=BridgeId, lanBlazer7000L2AddressPortBinding=lanBlazer7000L2AddressPortBinding)
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, constraints_intersection, value_size_constraint, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint', 'SingleValueConstraint') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (module_identity, time_ticks, enterprises, iso, integer32, object_identity, bits, counter64, gauge32, counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, notification_type, ip_address, notification_type, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'TimeTicks', 'enterprises', 'iso', 'Integer32', 'ObjectIdentity', 'Bits', 'Counter64', 'Gauge32', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'NotificationType', 'IpAddress', 'NotificationType', 'Unsigned32') (display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention') class Eventvaluetype(Integer32): subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8)) named_values = named_values(('none', 1), ('integer', 2), ('longInteger', 3), ('string', 4), ('octets', 5), ('ipAddress', 6), ('macAddress', 7), ('timeTicks', 8)) class Resourcetype(Integer32): subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)) named_values = named_values(('system', 1), ('module', 2), ('fan', 3), ('temperatureSensor', 4), ('interface', 5), ('powerSupply', 6), ('display', 7), ('switchPort', 8), ('bridge', 9), ('vlan', 10), ('aft', 11), ('inboundGroupTable', 12), ('outboundGroupTable', 13), ('threeComMappingTable', 14), ('event', 15), ('alarm', 16)) class Resourceid(ObjectIdentifier): pass class Displaystring(OctetString): pass class Rowstatus(Integer32): subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6)) named_values = named_values(('active', 1), ('notInService', 2), ('notReady', 3), ('createAndGo', 4), ('createAndWait', 5), ('destroy', 6)) class Macaddress(OctetString): subtype_spec = OctetString.subtypeSpec + value_size_constraint(6, 6) fixed_length = 6 class Bridgeid(OctetString): subtype_spec = OctetString.subtypeSpec + value_size_constraint(8, 8) fixed_length = 8 class Timeout(Integer32): pass class Eventcategory(Integer32): subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20)) named_values = named_values(('userDefined', 1), ('coldstart', 2), ('warmstart', 3), ('linkUp', 4), ('linkDown', 5), ('newResource', 6), ('deletedResource', 7), ('tempStatus', 8), ('configuration', 9), ('scheduled', 10), ('authentication', 11), ('system', 12), ('risingThreshold', 13), ('fallingThreshold', 14), ('fanStatus', 15), ('powerStatus', 16), ('status', 17), ('bridgeNewRoot', 18), ('bridgeTopChange', 19), ('switchFabricStatus', 20)) ods = mib_identifier((1, 3, 6, 1, 4, 1, 50)) ods_tps = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8)) ods_lan_blazer = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1)) ods_lan_blazer_mibs = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2)) ods_lan_blazer7000_mib = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1)) lan_blazer7000_agent = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1)) lan_blazer7000_agent_gen = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 1)) lan_blazer7000_agent_mib_version = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000AgentMIBVersion.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AgentMIBVersion.setDescription('The version of the LANBlazer 700 Enterprise Specific MIB that this agent supports.') lan_blazer7000_agent_mgr_index = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000AgentMgrIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AgentMgrIndex.setDescription('The value of this object represents the index into the community table that is used to authenticate SNMP requests for this manager.') lan_blazer7000_agent_community = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2)) lan_blazer7000_community_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1)) if mibBuilder.loadTexts: lanBlazer7000CommunityTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityTable.setDescription('') lan_blazer7000_community_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000CommunityIndex')) if mibBuilder.loadTexts: lanBlazer7000CommunityEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityEntry.setDescription('') lan_blazer7000_community_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000CommunityIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityIndex.setDescription('An index that uniquely identifies this entry.') lan_blazer7000_community_string = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000CommunityString.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityString.setDescription('The community string included in the SNMP PDU used for authentication purposes.') lan_blazer7000_community_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('any', 1), ('ipv4', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000CommunityAddressType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityAddressType.setDescription('The type of address associated with this community. If set to any(1), only the community string is authenticated.') lan_blazer7000_community_address = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 4), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000CommunityAddress.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityAddress.setDescription('If the address type is any, then the value of this object is a null string. If the type is ipv4(2), then this value represents a 4 byte IP address.') lan_blazer7000_community_access = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('readOnly', 2), ('readWrite', 3), ('moreSpecific', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000CommunityAccess.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityAccess.setDescription('The MIB access supported for this community entry. A Get or GetNext SNMP PDU is authenticated if the value of this object is read-only(2) or read-write(3). A Set request will be honored if the value of this object is read-write(3). If more granular access control is desired, then the value of this object is set to more-specific(4), and the view table should be consulted. This enables the capability to set different access rights to different branches of the MIB for a particular community. ') lan_blazer7000_community_trap_receiver = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000CommunityTrapReceiver.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityTrapReceiver.setDescription('If set to enable(1), this community entry is considered a trap receiver. When the agent generates an SNMP trap, a copy will be sent to this host using this community string.') lan_blazer7000_community_security_level = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('normal', 1), ('administrator', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000CommunitySecurityLevel.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunitySecurityLevel.setDescription('Secure tables are only accessible from users with security clearance. For example, this table (the community table) is only accessible by parties that have the security clearance.') lan_blazer7000_community_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 2, 1, 1, 8), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000CommunityStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000CommunityStatus.setDescription('') lan_blazer7000_agent_web = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 3)) lan_blazer7000_agent_web_server_url = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 3, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000AgentWebServerURL.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AgentWebServerURL.setDescription("The URL of where the document server software is installed. The switch uses this location to find online help and bimapped graphics. Enter the host name or IP address of the HTTP server at the HTTP Server Location prompt, followed by ':2010'. For example, for a host named 'phantom,', enter 'http://phantom:2010'. If no server is desired or installed, set this object to the empty string.") lan_blazer7000_agent_web_server_help_directory = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 1, 3, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000AgentWebServerHelpDirectory.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AgentWebServerHelpDirectory.setDescription("The subdirectory that contains the help files on the document server. Typically, this directory is 'help'.") lan_blazer7000_chassis = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3)) lan_blazer7000_chassis_gen = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 1)) lan_blazer7000_chassis_type = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('p550', 1), ('p220', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ChassisType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ChassisType.setDescription('The model of the chassis that this agent is managing.') lan_blazer7000_chassis_slots = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ChassisSlots.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ChassisSlots.setDescription('The number of slots available in this chassis. If this chassis is a stackable chassis, the total capacity of stacking units.') lan_blazer7000_inventory = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2)) lan_blazer7000_inventory_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1)) if mibBuilder.loadTexts: lanBlazer7000InventoryTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryTable.setDescription('A table of inventory information.') lan_blazer7000_inventory_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000InventoryResourceType'), (0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000InventoryResourceIndex')) if mibBuilder.loadTexts: lanBlazer7000InventoryEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryEntry.setDescription('Inventory information related to this device.') lan_blazer7000_inventory_resource_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 1), resource_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000InventoryResourceType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryResourceType.setDescription('The resource class of this inventory item.') lan_blazer7000_inventory_resource_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 2), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000InventoryResourceIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryResourceIndex.setDescription('The resource identifier of this inventory item.') lan_blazer7000_inventory_model_number = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000InventoryModelNumber.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryModelNumber.setDescription('The model number of this device.') lan_blazer7000_inventory_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000InventorySerialNumber.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventorySerialNumber.setDescription('The serial number of this device.') lan_blazer7000_inventory_version = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000InventoryVersion.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryVersion.setDescription('The revision number of this device.') lan_blazer7000_inventory_manufacture_info = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000InventoryManufactureInfo.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryManufactureInfo.setDescription('Information related to the manufacturing of this device.') lan_blazer7000_inventory_scratch_pad = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 2, 1, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000InventoryScratchPad.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000InventoryScratchPad.setDescription('A scratch pad area available for keeping user-supplied inventory information. ') lan_blazer7000_power_systems = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3)) lan_blazer7000_power_supplies = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1)) lan_blazer7000_power_supply_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1)) if mibBuilder.loadTexts: lanBlazer7000PowerSupplyTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyTable.setDescription('A table of information related to each power supply in the system.') lan_blazer7000_power_supply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PowerSupplyIndex')) if mibBuilder.loadTexts: lanBlazer7000PowerSupplyEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyEntry.setDescription('An entry providing information about a particular power supply in the system.') lan_blazer7000_power_supply_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyIndex.setDescription('An index that uniquely identifies this power supply. This index corresponds to the lanBlazer7000ResourceIndex of the power supply type resource.') lan_blazer7000_power_supply_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('unknown', 1), ('psA', 2), ('psB', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyType.setDescription('An enumerated integer describing the type of power supply. ') lan_blazer7000_power_supply_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('okay', 1), ('faulty', 2), ('unknown', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyStatus.setDescription('The status of this power supply. Okay(1) indicates the power supply is operating properly. Faulty(2) indicates that the power supply is not functioning properly. In this case, more information can be determined from the other power supply attributes.') lan_blazer7000_power_supply_input_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('okay', 1), ('faulty', 2), ('unknown', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyInputStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyInputStatus.setDescription('The status of the input power feed (e.g. the AC power cord) to this power supply.') lan_blazer7000_power_supply_output_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('okay', 1), ('faulty', 2), ('unknown', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyOutputStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyOutputStatus.setDescription('The status of the output power from this power supply.') lan_blazer7000_power_supply_output_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 1, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyOutputCapacity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerSupplyOutputCapacity.setDescription('The total capacity of power supplied by this supply in Watts.') lan_blazer7000_power_mgmt_gen = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 2)) lan_blazer7000_power_capacity = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 2, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PowerCapacity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerCapacity.setDescription('The total capacity (in Watts) of power available (currently) in the system.') lan_blazer7000_power_used = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 2, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PowerUsed.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerUsed.setDescription('The total power (in Watts) currently being consumed in the system.') lan_blazer7000_power_mgmt_ctl = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3)) lan_blazer7000_power_control_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1)) if mibBuilder.loadTexts: lanBlazer7000PowerControlTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlTable.setDescription('This table manages the power attributes associated with each module.') lan_blazer7000_power_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000ModuleIndex')) if mibBuilder.loadTexts: lanBlazer7000PowerControlEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlEntry.setDescription('An entry in the power control table manages the power attributes of the specified module.') lan_blazer7000_power_control_used = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PowerControlUsed.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlUsed.setDescription('The total power (in Watts) used by this module.') lan_blazer7000_power_control_priority = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('high', 1), ('normal', 2), ('low', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PowerControlPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlPriority.setDescription('The priority of this module to be considered in the event of a power supply failure where the amount of power used exceeds the system capacity. Low priority modules will be powered down before higher priority modules.') lan_blazer7000_power_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 3, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('poweredDown', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PowerControlMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PowerControlMode.setDescription('Normally, a module power mode is enable(1). In the event of a power supply failure resulting in a power shortage, or in the event of this module being inserted without enough available power, the mode will be poweredDown(3). Setting this object to the value of poweredDown(3) will result in an error. When enough power is available, the module will power back up when in this mode. A module may be powered down through administrative action by setting the value of this object to disable(2). In this mode, the module will remain powered down until the mode is set back to enable.') lan_blazer7000_temperature = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4)) lan_blazer7000_temp_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1)) if mibBuilder.loadTexts: lanBlazer7000TempTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempTable.setDescription('A table of information related to the temperature within the system.') lan_blazer7000_temp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000TempIndex')) if mibBuilder.loadTexts: lanBlazer7000TempEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempEntry.setDescription('An entry providing temperature information related to a specific temperature probe in the system.') lan_blazer7000_temp_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000TempIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempIndex.setDescription('A unique index that identifies this temperature probe. This index corresponds to the lanBlazer7000ResourceIndex for temperature probe type resources.') lan_blazer7000_temp_value = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000TempValue.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempValue.setDescription('The current temperature reading of this temperature probe in degrees Celsius.') lan_blazer7000_temp_upper_limit = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 3), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000TempUpperLimit.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempUpperLimit.setDescription('The upper temperature limit of this temperature probe in degrees Celsius.') lan_blazer7000_temp_upper_warning = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000TempUpperWarning.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempUpperWarning.setDescription('The upper temperature warning of this temperature probe in degrees Celsius.') lan_blazer7000_temp_lower_warning = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 5), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000TempLowerWarning.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempLowerWarning.setDescription('The lower temperature warning of this temperature probe in degrees Celsius.') lan_blazer7000_temp_lower_limit = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 4, 1, 1, 6), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000TempLowerLimit.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000TempLowerLimit.setDescription('The lower temperature limit of this temperature probe in degrees Celsius.') lan_blazer7000_modules = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5)) lan_blazer7000_module_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1)) if mibBuilder.loadTexts: lanBlazer7000ModuleTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleTable.setDescription('A table of information related to the modules in the system.') lan_blazer7000_module_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000ModuleIndex')) if mibBuilder.loadTexts: lanBlazer7000ModuleEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleEntry.setDescription('Attributes related to managing this module.') lan_blazer7000_module_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ModuleIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleIndex.setDescription('An index that uniquely identifies this module. This index corresponds to the lanBlazer7000ResourceIndex associated with module type resources.') lan_blazer7000_module_name = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000ModuleName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleName.setDescription('A user-assignable name for this module.') lan_blazer7000_module_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=named_values(('unknown', 1), ('m5502-1000', 2), ('m2206-1000', 3), ('m5520-100TX-QS', 4), ('m5510-100FX', 5), ('m5500-SUP', 6), ('m5504-1000', 7), ('m2201-1000', 8), ('m5520-100TX-I', 9), ('m2202-100FX', 10), ('m5510R-100FX', 11), ('m5512R-100TX', 12), ('m5500R-SUP', 13), ('m5502R-1000', 14), ('m2200-SUP', 15), ('m2204-100TX', 16), ('m2224-100TX', 17)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ModuleType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleType.setDescription('An enumerated integer that is unique for each module model. ') lan_blazer7000_module_base_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('gigabit', 1), ('fastEthernet', 2), ('supervisor', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ModuleBaseType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleBaseType.setDescription('The base type of this module. This object is used to describe the core functions of the module. Often, base designs are derived into multiple module types which are typically just packaging variations (e.g. changing the connector types). The value of this object corresponds to the value of lanBlazer7000ResourceBaseType.') lan_blazer7000_module_slot_width = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ModuleSlotWidth.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleSlotWidth.setDescription('The number of slots that this module occupies.') lan_blazer7000_module_slot_offset = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ModuleSlotOffset.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModuleSlotOffset.setDescription('The slot offset (one based) that identifies, along with the slot width and slot location, the actual slots that this module occupies. The offset identifies which slot within the width of the module that this module reports as its slot number.') lan_blazer7000_module_ports = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 5, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ModulePorts.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ModulePorts.setDescription('The total number of ports associated with this module.') lan_blazer7000_ports = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6)) lan_blazer7000_port_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1)) lan_blazer7000_port_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1)) if mibBuilder.loadTexts: lanBlazer7000PortTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortTable.setDescription('A table of information related to every data port in this data networking system.') lan_blazer7000_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PortIndex')) if mibBuilder.loadTexts: lanBlazer7000PortEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortEntry.setDescription('A data port associated with this data networking system.') lan_blazer7000_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PortIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortIndex.setDescription('An index that uniquely identifies this port. Typically, ports are child resources of the module that contains them. In these cases, ports are identified by their module and their relative physical position on that module.') lan_blazer7000_port_name = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortName.setDescription('The user-assigned name for this port. Note that setting this object for an internal(1) port results in an error.') lan_blazer7000_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('internal', 1), ('ether-ten-oneHundred', 2), ('ether-oneHundred', 3), ('ether-gigabit', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PortType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortType.setDescription('An internal(1) port does not have an external connection. An ether-ten-oneHundred(2) port is an Ethernet port which can be switched between 10 and 100 megabits per second. An ether-oneHundred(3) port is a 100 megabits per second Fast Ethernet port. An ether-gigabit(4) port is a 1000 megabits per second Gigabit Ethernet port.') lan_blazer7000_port_base_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('internal', 1), ('ether-ten-oneHundred', 2), ('ether-oneHundred', 3), ('ether-gigabit', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PortBaseType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortBaseType.setDescription('The base type of this port. This object may be useful to help manage new port types that are similar in nature to legacy port types.') lan_blazer7000_port_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMode.setDescription('The mode of this port. When set to enable(1), this port passes data. When set to disable(2), the port does not receive or transmit data, nor does it generate port-level signaling e.g. link integrity pulses. Note that setting an internal(1) port to disable(2) results in an error.') lan_blazer7000_port_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('disabled', 1), ('okay', 2), ('warning', 3), ('disabledButOkay', 4), ('linkFailure', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PortStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortStatus.setDescription('The status of this port. Disabled(1) means that this port has been disabled through management action. Okay(2) indicates that this port is operating properly. Warning(3) indicates that this port is encountering an abnormal condition that, however, allows it to continue to pass data. LinkFailure(5) means that this port is unable to pass data.') lan_blazer7000_port_connector = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('internal', 1), ('rj45', 2), ('fiber-ST', 3), ('fiber-SC', 4), ('rs-232', 5), ('aui', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PortConnector.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortConnector.setDescription('The connector type associated with this port.') lan_blazer7000_port_speed_state = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('ten-megabits-per-second', 1), ('one-hundred-megabits-per-second', 2), ('one-gigabit-per-second', 3), ('under-negotiation', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PortSpeedState.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortSpeedState.setDescription("The data rate of this port in bits per second. For example, a standard Ethernet port (e.g. 10BASE-T) would indicate a value of ten-megabits-per-second((1) indicating that the port supports a data rate of 10Mb/s. For ports that can change their data rate (e.g. 10/100 ports), the value of this object indicates the current state of the port's speed capability.") lan_blazer7000_port_duplex_state = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('half-duplex', 1), ('full-duplex', 2), ('under-negotiation', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PortDuplexState.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortDuplexState.setDescription('The value of this object indicates whether this port is operating in full- or half-duplex mode. The value under-negotiation(3) indicates that the port has not selected an operational duplex setting yet.') lan_blazer7000_port_group_binding = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 1, 1, 1, 10), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PortGroupBinding.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortGroupBinding.setDescription('Each port is associated with a port group. Typically, a port will belong to a port group of one and the value of this object will be the same as the port index for this instance. That is, this port will point to itself. The intent of this object is to help manage ports that have hierarchical relationships. For example, an ATM port typically has a physical port and multiple logical ports (e.g. each logical port corresponding to an instance of an emulated LAN). In this case, each LANE instance would refer to the instance of the physical port associated with the ATM front-end. Another example is an FDDI DAS type port. In this case, there is a logical port associated with the FDDI switch port which is connected to the two FDDI physical port connectors. The physical FDDI ports both point to the logical instance of an FDDI port.') lan_blazer7000_port_flow_control_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 2)) lan_blazer7000_port_flow_control_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 2, 1)) if mibBuilder.loadTexts: lanBlazer7000PortFlowControlTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortFlowControlTable.setDescription('A table of ports that support flow control.') lan_blazer7000_port_flow_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 2, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PortIndex')) if mibBuilder.loadTexts: lanBlazer7000PortFlowControlEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortFlowControlEntry.setDescription('Configuration objects related to port based flow control.') lan_blazer7000_port_flow_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 2, 1, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('enable-with-aggressive-backoff', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortFlowControlMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortFlowControlMode.setDescription('Flow control is used to prevent or reduce the dropping of frames due to the lack of buffer space. Overall, networks are more efficient when a sending station is asked to pause in its sending process, rather than having the transmitted frames dropped. Flow control is not as efficient when used in conjunction with a shared ports, i.e. when used with a repeater. Therefore, flow control is not recommended for a port connected to shared topologies. Flow control is most effective when the port is directly connected to an end-station, especially when connected to a server. Flow control is recommended for ports connected directly to end-stations. When the port is in half-duplex mode, back pressure is used to control the incoming flow. Back pressure essentially forces collisions for short periods of time. When the port is in full-duplex mode, IEEE 802.3 standard pause frames are used to control the incoming flow. Note that setting an ether-gigabit(4) port to enable-with-aggressive-backoff(3) results in an error.') lan_blazer7000_port_duplex_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 3)) lan_blazer7000_port_duplex_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 3, 1)) if mibBuilder.loadTexts: lanBlazer7000PortDuplexTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortDuplexTable.setDescription('A table of ports that support full- and half-duplex data communications.') lan_blazer7000_port_duplex_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 3, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PortIndex')) if mibBuilder.loadTexts: lanBlazer7000PortDuplexEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortDuplexEntry.setDescription('A port device configuration that controls the duplex mode of this port.') lan_blazer7000_port_duplex_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 3, 1, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('half-duplex', 1), ('full-duplex', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortDuplexMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortDuplexMode.setDescription('A point-to-point Ethernet port may be configured to support half or full duplex communications. A full-duplex(2) port transmits and receives data concurrently, effectively doubling the data rate of the port. Half-duplex(1) ports transmit or receive data, but not at the same time. Half-duplex ports use CSMA/CD as the access method to the network. Ports that are connected to shared segments (i.e. connected to a repeater), should always be configured to be in half-duplex mode. This object indicates the desired duplexity of this port. If auto-negotiation is turned on for this port, then this value is ignored.') lan_blazer7000_port_speed_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 4)) lan_blazer7000_port_speed_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 4, 1)) if mibBuilder.loadTexts: lanBlazer7000PortSpeedTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortSpeedTable.setDescription('A table of port devices that support multiple speeds.') lan_blazer7000_port_speed_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 4, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PortIndex')) if mibBuilder.loadTexts: lanBlazer7000PortSpeedEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortSpeedEntry.setDescription('A port that supports multiple speeds.') lan_blazer7000_port_speed_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 4, 1, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ten-megabits-per-second', 1), ('one-hundred-megabits-per-second', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortSpeedMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortSpeedMode.setDescription('Some of these values may not be applicable to certain types of ports. This object indicates the desired data rate of this port. If auto-negotiation is turned on for this port, then this value is ignored.') lan_blazer7000_port_auto_negotiation_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5)) lan_blazer7000_port_auto_negotiation_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1)) if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationTable.setDescription('A table of ports that support auto-negotiation.') lan_blazer7000_port_auto_negotiation_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PortIndex')) if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationEntry.setDescription('Attributes associated with a port that supports auto-negotiation.') lan_blazer7000_port_auto_negotiation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1, 1, 51), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('autoNegotiate', 1), ('manualConfiguration', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationMode.setDescription("Setting this object to autoNegotiate(1) causes this port to negotiate the duplex mode and the port speed, subject to the port's capabilities.") lan_blazer7000_port_auto_negotiation_speed_advertisement = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ten-and-one-hundred-megabits-per-second', 1), ('one-hundred-megabits-per-second', 2), ('ten-megabits-per-second', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationSpeedAdvertisement.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationSpeedAdvertisement.setDescription('The speed to advertise while auto-negotiating.') lan_blazer7000_port_auto_negotiation_duplex_advertisement = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 5, 1, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('full-and-half-duplex', 1), ('half-duplex', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationDuplexAdvertisement.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortAutoNegotiationDuplexAdvertisement.setDescription('The duplexity to advertise while auto-negotiating.') lan_blazer7000_port_rate_limit_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6)) lan_blazer7000_port_rate_limit_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1)) if mibBuilder.loadTexts: lanBlazer7000PortRateLimitTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitTable.setDescription('A table of ports that support the ability to limit the rate of floods.') lan_blazer7000_port_rate_limit_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PortIndex')) if mibBuilder.loadTexts: lanBlazer7000PortRateLimitEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitEntry.setDescription('The rate limit configuration associated with this port.') lan_blazer7000_port_rate_limit_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1, 1, 61), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('enableIncludeKnownMulticast', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitMode.setDescription('This object configures whether rate limiting is enabled for this port (the factory default is enable(1)). Enabling rate limiting for this port prevents floods from overwhelming the output buffer associated with this port. Normally, rate limiting will only consider frames that are flooded to this port. This typically does not include known multicasts. However, known multicasts can be included in the flood limiting by setting the value of this object to enableIncludeKnownMulticast(3).') lan_blazer7000_port_rate_limit_rate = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1, 1, 62), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('one-percent', 1), ('two-percent', 2), ('five-percent', 3), ('ten-percent', 4), ('twenty-percent', 5), ('forty-percent', 6), ('eighty-percent', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitRate.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitRate.setDescription("The percentage of the port's transmitted data allowed to be floods (or floods and known multicasts). For example, the factory default setting of twenty-percent(4) indicates that 20% of the data rate can be floods. For 10 Mb/s ports, this is equivalent to a maximum rate of approximately 3000 flooded pps; for 100 Mb/s ports, a maximum rate of approximately 30,000 flooded pps.") lan_blazer7000_port_rate_limit_burst_size = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 6, 1, 1, 63), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('rateLimit1', 1), ('rateLimit2', 2), ('rateLimit4', 3), ('rateLimit8', 4), ('rateLimit16', 5), ('rateLimit32', 6), ('rateLimit64', 7), ('rateLimit128', 8), ('rateLimit256', 9), ('rateLimit1024', 10), ('rateLimit2048', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortRateLimitBurstSize.setDescription("The maximum number of consecutive transmitted flooded (or flooded and known multicasted) packets. Typically, the burst size is set so as to not overflow the port's buffer.") lan_blazer7000_port_pace_priority_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 7)) lan_blazer7000_port_pace_priority_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 7, 1)) if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityTable.setDescription('A table of ports that support the ability to classify frame priority based on 3Com Pace(r) Prioritization.') lan_blazer7000_port_pace_priority_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 7, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PortIndex')) if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityEntry.setDescription('A port that supports 3Com Pace(r) priority.') lan_blazer7000_port_pace_priority_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 7, 1, 1, 71), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortPacePriorityMode.setDescription("When Pace priority is enabled, this port will detect frames that use 3Com Corporation's Pace(r) Priority signaling. Frames signaled with priority in this manner are mapped to traffic priority level 4 (on scale of 0-7).") lan_blazer7000_port_category_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 8)) lan_blazer7000_port_category_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 8, 1)) if mibBuilder.loadTexts: lanBlazer7000PortCategoryTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortCategoryTable.setDescription('A table of ports that support the port category feature. Currently, all ports support this capability.') lan_blazer7000_port_category_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 8, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PortIndex')) if mibBuilder.loadTexts: lanBlazer7000PortCategoryEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortCategoryEntry.setDescription('A port that supports port categorization.') lan_blazer7000_port_category_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 6, 8, 1, 1, 81), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('userPort', 1), ('servicePort', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortCategoryMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortCategoryMode.setDescription('By default, all ports are considered service ports. A service port is a port that provides a networks service such as a connection to a server, other switches, or the like. A service port will trigger the service port event for status changes with the alarm severity and will trigger an alarm in the alarm table on link failure. In contrast, user ports trigger the user link event with warning severity. They do not trigger an alarm upon link failures. User ports are useful to prevent floods of traps or entries in the alarm table. This is especially true for ports connected to user hosts that power up in the morning and power down again at the end of the work day.') lan_blazer7000_buffer_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7)) lan_blazer7000_buffer_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1)) if mibBuilder.loadTexts: lanBlazer7000BufferTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferTable.setDescription('A table of frame buffers in the system.') lan_blazer7000_buffer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000BufferIndex')) if mibBuilder.loadTexts: lanBlazer7000BufferEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferEntry.setDescription('Objects related to the management of this frame buffer.') lan_blazer7000_buffer_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferIndex.setDescription('The unique index that identifies this buffer within the system. Buffers are indexed first by their module association and then a unique index within that module.') lan_blazer7000_buffer_fabric_port = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 2), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferFabricPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferFabricPort.setDescription('The switch fabric port associated with this buffer.') lan_blazer7000_buffer_fabric_port_direction = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('in', 1), ('out', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferFabricPortDirection.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferFabricPortDirection.setDescription('The value of this object indicates whether the buffer is used for buffering frames going into the switching fabric or coming out of the fabric.') lan_blazer7000_buffer_switch_port = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 4), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferSwitchPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferSwitchPort.setDescription('The switch port associated with this frame buffer. Some buffers are not associated with any one switch port. In those cases, the value of the resource ID returned will be the null resource ID.') lan_blazer7000_buffer_memory = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferMemory.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferMemory.setDescription('The amount of memory available for frame buffering in Kilobytes (KB).') lan_blazer7000_buffer_age_timer = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disable', 1), ('quarter-second', 2), ('one-second', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BufferAgeTimer.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferAgeTimer.setDescription('Configures the timer used for aging frames in this buffer. If the timer expires for a frame, the frame is dropped and the event is counted in the stale drop counter. By default, the age timer is set to a 0.25 seconds (quarter of a second). The actual time that a frame may be aged out may vary. When set to a quarter of a second (250ms), the actual time may vary between 160ms and 320ms. When set to a second (1000ms), the time may vary between 640ms and 1.28 seconds (1028ms).') lan_blazer7000_buffer_priority_servicing = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('strictPriority', 1), ('everyTenThousand', 2), ('everyThousand', 3), ('everyHundred', 4), ('everyFour', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BufferPriorityServicing.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferPriorityServicing.setDescription('The value of this object configures how often the normal priority queue is serviced relative to the high priority queue. By default, the normal priority queue is serviced every thousand frames(3). This means that the normal priority queue is guaranteed to be serviced after servicing, at most, one thousand high priority frames. It is important to service the normal priority queue for two reasons. One is to prevent starvation for frames on the normal priority queue. The other reason is that frames cannot be aged if they are not serviced (see the age timer).') lan_blazer7000_buffer_priority_allocation = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('none', 1), ('tenPercent', 2), ('twentyPercent', 3), ('thirtyPercent', 4), ('fortyPercent', 5), ('fiftyPercent', 6)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BufferPriorityAllocation.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferPriorityAllocation.setDescription('This object controls how much of the total buffer space should be allocated to high priority queue. Please be warned that setting this object to a different value causes the associated buffer to reset, causing a short loss of data. Setting the value of this object to none(1) not only allocates the entire buffer space to normal traffic, but also has the side effect of disabling the priority threshold. In other words, all traffic will be considered as normal priority traffic.') lan_blazer7000_buffer_priority_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('none', 1), ('one', 2), ('two', 3), ('three', 4), ('four', 5), ('five', 6), ('six', 7), ('seven', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BufferPriorityThreshold.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferPriorityThreshold.setDescription('This object configures the threshold for which frames are considered high priority. Frames may have a priority classification ranging from 0-7, 7 being the highest. By default, every frame that has priority 4 (four(5)) or above is considered a high priority frame and is buffered accordingly. If this buffer does not have any buffer space allocated for high priority frames, then the buffer threshold will be none(1). Setting this object to a different value without allocating buffer space to high priority traffic will result in an error.') lan_blazer7000_buffer_congestion = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('informationNotAvailable', 1), ('notCongested', 2), ('congested', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferCongestion.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferCongestion.setDescription('This object indicates whether this buffer is in a congested state..') lan_blazer7000_buffer_high_overflow_drops = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferHighOverflowDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferHighOverflowDrops.setDescription('The count of the number of high priority frames dropped due to the high priority queue overflowing.') lan_blazer7000_buffer_low_overflow_drops = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferLowOverflowDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferLowOverflowDrops.setDescription('The count of the number of low priority frames dropped due to the low priority queue overflowing.') lan_blazer7000_buffer_high_stale_drops = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferHighStaleDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferHighStaleDrops.setDescription('The count of the number of high priority frames dropped due to being in the high priority queue too long (the frame aged out).') lan_blazer7000_buffer_low_stale_drops = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferLowStaleDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferLowStaleDrops.setDescription('The count of the number of low priority frames dropped due to being in the low priority queue too long (the frame aged out).') lan_blazer7000_buffer_congestion_drops = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 3, 7, 1, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BufferCongestionDrops.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BufferCongestionDrops.setDescription('The count of the number of frames dropped due to the destination (output) buffer being congested. ') lan_blazer7000_switching = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5)) lan_blazer7000_switching_layer_ii = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1)) lan_blazer7000_switch_gen = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 1)) lan_blazer7000_switch_stp_config = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('ieee8021dStp', 1), ('stpPerVlan', 2), ('twoLayerStp', 3), ('disable', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchSTPConfig.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchSTPConfig.setDescription("When set to ieee8021dStp(1), the switch executes spanning tree conformant to the IEEE 802.1D bridging standard. The switch runs one instance of spanning tree. When set to stpPerVlan(2), the switch executes a separate instance of spanning tree for each virtual LAN. This configuration conforms to the model that instances of virtual LANs within the switch are separate virtual bridging functions. This method may not work well with bridge/routers that are also running spanning tree. When set to twoLayerStp(3), the switch executes a two-layer spanning tree to prevent loops. Two layer spanning tree creates a higher 'plane' of spanning tree between VLAN devices. This method of running spanning tree is 'plug and play' with bridge/router type devices and also scales better than the other two methods for large environments. When set to disable(4), spanning tree is disabled in the switch.") lan_blazer7000_switch_aging_time = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(10, 1000000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchAgingTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchAgingTime.setDescription('The timeout period in seconds for aging dynamically learned forwarding information. A default of 300 seconds is recommended. An aged entry is marked invalid, but is not removed from the Address Forwarding Table, because it is assumed that it will be relearned to the same location within the table.') lan_blazer7000_switch_super_aging_time = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchSuperAgingTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchSuperAgingTime.setDescription('The timeout period in days for removing stale invalid entries from the Address Forwarding Table. A superaged entry is removed completely from the Address Forwarding Table, because it is assumed that the entry will never be relearned.') lan_blazer7000_bridge_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2)) lan_blazer7000_bridge_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1)) if mibBuilder.loadTexts: lanBlazer7000BridgeTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeTable.setDescription('A table of Spanning Tree information for every bridge in the system.') lan_blazer7000_bridge_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000BridgeIndex')) if mibBuilder.loadTexts: lanBlazer7000BridgeEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeEntry.setDescription('') lan_blazer7000_bridge_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeIndex.setDescription('An index that uniquely identifies this bridge.') lan_blazer7000_bridge_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dot1d', 1), ('virtual', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeType.setDescription('Indicates whether this is a legacy dot1d bridge consisting of all switch ports or a virtual bridge consisting of all virtual subports for a particular Vlan.') lan_blazer7000_bridge_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgeMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeMode.setDescription('Used to enable or disable Spanning Tree for this bridge. When set to disable(2), all BPDUs are forwarded like regular multicast packets. The default value is enable(1).') lan_blazer7000_bridge_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStatus.setDescription('The enable/disable status of this bridge. This object incorporates the setting of the lanBlazer7000SwitchSTPConfig object. When lanBlazer7000SwitchSTPConfig is set such that this bridge will not be active, lanBlazer7000BridgeStatus returns disabled(2). If lanBlazer7000SwitchSTPConfig is set such that this bridge will be active, and lanBlazer7000BridgeMode is enable(1), this object returns enabled(2).') lan_blazer7000_bridge_stp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgeStpPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpPriority.setDescription('The priority value of the Bridge Identifier. See dot1dStpPriority.') lan_blazer7000_bridge_stp_time_since_topology_change = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 6), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStpTimeSinceTopologyChange.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpTimeSinceTopologyChange.setDescription('The time since the last topology change was detected. See dot1dStpTimeSinceTopologyChange.') lan_blazer7000_bridge_stp_top_changes = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStpTopChanges.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpTopChanges.setDescription('The total number of topology changes. See dot1dStpTopChanges') lan_blazer7000_bridge_stp_designated_root = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 8), bridge_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStpDesignatedRoot.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpDesignatedRoot.setDescription('The bridge considered to be root by this node. See dot1dStpDesignatedRoot.') lan_blazer7000_bridge_stp_root_cost = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 9), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStpRootCost.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpRootCost.setDescription('The cost of the path to the root from this node. See dot1dStpRootCost.') lan_blazer7000_bridge_stp_root_port = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStpRootPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpRootPort.setDescription('The port number with the lowest cost path to the root bridge. See dot1dStpRootPort.') lan_blazer7000_bridge_stp_max_age = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 11), timeout()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStpMaxAge.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpMaxAge.setDescription('The maximum age used by this bridge to hold onto STP information before discarding. See dot1dStpMaxAge.') lan_blazer7000_bridge_stp_hello_time = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 12), timeout()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStpHelloTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpHelloTime.setDescription('The amount of time between configuration BPDUs. See dot1dStpHelloTime.') lan_blazer7000_bridge_stp_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStpHoldTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpHoldTime.setDescription('The time value that indicates the interval during which no more than two configuration BPDUs will be sent by this node. See dot1dStpHoldTime.') lan_blazer7000_bridge_stp_forward_delay = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 14), timeout()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgeStpForwardDelay.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpForwardDelay.setDescription('The amount of time that this node stays in each of the Listening and Learning states. See dot1dStpForwardDelay.') lan_blazer7000_bridge_stp_bridge_max_age = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 15), timeout().subtype(subtypeSpec=value_range_constraint(600, 4000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeMaxAge.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeMaxAge.setDescription('The value of MaxAge when this bridge is the root. See dot1dStpBridgeMaxAge.') lan_blazer7000_bridge_stp_bridge_hello_time = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 16), timeout().subtype(subtypeSpec=value_range_constraint(100, 1000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeHelloTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeHelloTime.setDescription('The value of HelloTime to use when this bridge is the root. See dot1dStpBridgeHelloTime.') lan_blazer7000_bridge_stp_bridge_forward_delay = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 2, 1, 1, 17), timeout().subtype(subtypeSpec=value_range_constraint(400, 3000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeForwardDelay.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgeStpBridgeForwardDelay.setDescription('The value of FowardDelay to use when this bridge is the root. See dot1dStpBridgeForwardDelay.') lan_blazer7000_bridge_port_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3)) lan_blazer7000_bridge_port_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1)) if mibBuilder.loadTexts: lanBlazer7000BridgePortTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortTable.setDescription(' A table of Spanning Tree information for every port that supports Spanning Tree in every bridge in the system ') lan_blazer7000_bridge_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000BridgePortIndex')) if mibBuilder.loadTexts: lanBlazer7000BridgePortEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortEntry.setDescription('') lan_blazer7000_bridge_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgePortIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortIndex.setDescription('An index that uniquely identifies this bridge port. This index corresponds to the lanBlazer7000ResourceIndex for bridge port type resources.') lan_blazer7000_bridge_port_priority = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgePortPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortPriority.setDescription('The value of the priority field in the port ID. See dot1dStpPortPriority. The default value is 128.') lan_blazer7000_bridge_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('disabled', 1), ('blocking', 2), ('listening', 3), ('learning', 4), ('forwarding', 5), ('broken', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgePortState.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortState.setDescription("The port's current state as defined by the Spanning Tree Protocol. See dot1dStpPortState. The virtual port is considered broken if its switch port is blocked.") lan_blazer7000_bridge_port_enable = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgePortEnable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortEnable.setDescription('The enabled/disabled status of this port. See dot1dStpPortEnable. The default is enabled(2).') lan_blazer7000_bridge_port_path_cost = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgePortPathCost.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortPathCost.setDescription('The contribution of this port to the path cost of the paths towards the spanning tree root. See dot1dStpPortPathCost. The default value is dependent on the port speed, trunking mode, and duplexity.') lan_blazer7000_bridge_port_designated_root = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 6), bridge_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedRoot.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedRoot.setDescription("The bridge recorded as root for this port's segment. See dot1dStpPortDesignatedRoot.") lan_blazer7000_bridge_port_designated_cost = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedCost.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedCost.setDescription('The path cost of the designated root of the segment connected to this port. See dot1dStpPortDesignatedCost.') lan_blazer7000_bridge_port_designated_bridge = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 8), bridge_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedBridge.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedBridge.setDescription("The bridge identifier of the bridge that is considered the designated bridge for this port's segment. See dot1dStpPortDesignatedBridge.") lan_blazer7000_bridge_port_designated_port = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortDesignatedPort.setDescription("The port identifier of the port on the Designated Bridge for this port's segment. See dot1dStpPortDesignatedPort.") lan_blazer7000_bridge_port_forward_transitions = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000BridgePortForwardTransitions.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortForwardTransitions.setDescription('The number of times this port has transitioned from the learning state to the forwarding state. See dot1dStpPortForwardTransitions.') lan_blazer7000_bridge_port_fast_start = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgePortFastStart.setStatus('deprecated') if mibBuilder.loadTexts: lanBlazer7000BridgePortFastStart.setDescription('This object is being replaced by the switch port object lanBlazer7000SwitchPortFastStart. When this bridge port object is set to enable(1), the bridge port and all other bridge ports on the same switch port, transition right from blocking to forwarding, skipping the listening and learning states. When this bridge port object is set to disable(2), the bridge port and all other bridge ports on the same switch port have this option disabled. The user should be warned that using the fast start feature greatly increases the likelihood of unintended network loops that would otherwise be prevented by participating in the normal spanning tree algorithm. The factory default value for this object is disable(2).') lan_blazer7000_bridge_port_set_default = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('useCurrentValues', 1), ('setDefault', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgePortSetDefault.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortSetDefault.setDescription('When set to setDefault(2), the lanBlazer7000BridgePortPriority, lanBlazer7000BridgePortEnable, and lanBlazer7000BridgePortPathCost will be set to the factory default values.') lan_blazer7000_bridge_port_enable_change_detection = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 3, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000BridgePortEnableChangeDetection.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000BridgePortEnableChangeDetection.setDescription('When this object is set to enable(1), a Topology Change Notification will be generated when this port goes to Blocking or Forwarding (if the port is a designated port). When set to disable(2), no Topology Change Notification will be generated for this port. The default is enable(1).') lan_blazer7000_l2_addr_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4)) lan_blazer7000_l2_addr_database_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1)) lan_blazer7000_l2_address_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1)) if mibBuilder.loadTexts: lanBlazer7000L2AddressTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressTable.setDescription('A table of address table entries. The address table is used by the bridging function to perform forwarding and filtering decisions. An address may appear multiple times in different entries corresponding to the different logical address tables.') lan_blazer7000_l2_address_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000L2AddressIndex')) if mibBuilder.loadTexts: lanBlazer7000L2AddressEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressEntry.setDescription('A particular address table entry.') lan_blazer7000_l2_address_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressIndex.setDescription('An index that uniquely identifies this address entry.') lan_blazer7000_l2_address_table_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressTableIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressTableIndex.setDescription('The address table that this entry is associated with.') lan_blazer7000_l2_address_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 3), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressMacAddress.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressMacAddress.setDescription('The IEEE 802 MAC Address associated with this database entry.') lan_blazer7000_l2_address_port_binding = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 4), resource_id()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressPortBinding.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressPortBinding.setDescription('The switch port that this address is associated with. ') lan_blazer7000_l2_address_binding_valid = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('valid', 1), ('invalid', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressBindingValid.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressBindingValid.setDescription('The port binding of an address entry is aged out in conformance with the specifications laid out in the IEEE 802.1D standard. When the address is aged out, the port binding becomes invalid.') lan_blazer7000_l2_address_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressVlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressVlanID.setDescription('The VLAN ID of the VLAN that this address entry corresponds to.') lan_blazer7000_l2_address_priority = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('priorityZero', 1), ('priorityFour', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressPriority.setDescription('If set to high(2), frames destined to this address are classified with priority value 4.') lan_blazer7000_l2_address_forward = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('normalForward', 1), ('specialDelivery', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressForward.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressForward.setDescription('When set to specialDelivery(2), frames sent to this address are treated to special delivery where the spanning tree state of the inbound port is ignored. Typically, special delivery is only used for Bridge PDUs such as spanning tree frames.') lan_blazer7000_l2_address_copy = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('normalForward', 1), ('copyCPU', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressCopy.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressCopy.setDescription('It is sometimes useful for the switch processor to eavesdrop on traffic to certain destinations. This is especially useful in supporting the intelligent multicasting function.') lan_blazer7000_l2_address_persistence = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('invalid', 2), ('permanent', 3), ('deleteOnReset', 4), ('deleteOnTimeout', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressPersistence.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressPersistence.setDescription('This object indicates the persistence of this entry: other(1) - This entry is currently in use but the conditions under which it will remain so are different from each of the following values. invalid(2) - Writing this value to the object removes the corresponding entry. permanent(3) - Address is not aged out. Additionally, if the address is seen as a source on a different port for this VLAN, the frame is filtered and the filter event is counted. Static address entries are stored in non-volatile memory and are restored to the address table following each system reset. deleteOnReset(4) - Indicates that the entry is not aged out, however the entry is not stored in non-volatile memory. Therefore, when the device is reset, the entry will not be restored. deleteOnTimeout(5) - Typically, address entries are learned dynamically by the switch. These entries are aged out of the table if they are not active on the network. This value correlates to this state.') lan_blazer7000_l2_address_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('learned', 2), ('self', 3), ('mgmt', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressStatus.setDescription("This object indicates the status of the entry: other(1) - None of the following. learned(2) - This entry was learned dynamically. self(3) - The value of the corresponding instance of lanBlazer7000AddressMacAddress represents one of the bridge's addresses. mgmt(4) - This entry was added or modified by management. Entries that have been added by management and made permanent") lan_blazer7000_l2_addr_summary_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 2)) lan_blazer7000_l2_addr_summary_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 2, 1)) if mibBuilder.loadTexts: lanBlazer7000L2AddrSummaryTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddrSummaryTable.setDescription('This summary table packs the address entries in the address database into summary objects. The goal is to optimize the upload of the large amount of data stored therein. Typically, a management station would use getNext requests to retrieve the next logical summary object. The returned object value contains the next n entries of the address database packed into one PDU. The instance of the object returned is the index of the last address entry packed in the summary, thereby optimizing for the next getNext request. [ Fix this? What about gets?] ') lan_blazer7000_l2_addr_summary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 2, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000L2AddressIndex')) if mibBuilder.loadTexts: lanBlazer7000L2AddrSummaryEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddrSummaryEntry.setDescription('A summary object that packs as many address entries possible into a summary object.') lan_blazer7000_l2_addr_summary = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 2, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(20, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddrSummary.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddrSummary.setDescription('The value of this object is a packed opaque structure representing an array of address entries. The format of this structure is: struct L2AddressEntry { UNS32 index; UNS8 addr[6]; // mac address UNS8 fabricPort; //fabricPort and subPort == lanBlazer7000L2AddressPortBinding UNS8 subPort; UNS16 vlanID, //the global vlan id UNS8 portBindingValidFlag; UNS8 addressForwardFlag; UNS8 addressCopyFlag; UNS8 addressPersistence; UNS8 addressStatus; }; struct L2AddressSummary{ UNS8 numberOfEntries; // Number of entries that follow UNS8 version; // version == 1 UNS16 endianFlag; L2AddressEntry entryArray[numberOfEntries]; };') lan_blazer7000_l2_addr_control_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3)) lan_blazer7000_l2_address_control_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1)) if mibBuilder.loadTexts: lanBlazer7000L2AddressControlTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlTable.setDescription('This table provides the network manager the ability to create new, static address entries. Entries added through this table are added to the specified address table as a static entry and are save in non-volatile memory for reconfiguration upon system restart. This table is indexed by the lanBlazer7000AgentMgrIndex value which provides a separate instance for each manager.') lan_blazer7000_l2_address_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000AgentMgrIndex')) if mibBuilder.loadTexts: lanBlazer7000L2AddressControlEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlEntry.setDescription('A control entry enables this manager to add a new entry to the specified address table. When the entry is written to, the control index value is reset to 0. When the actual entry is created, the index value will read as non-zero, reporting the actual entry created.') lan_blazer7000_l2_address_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlIndex.setDescription('The index of the address entry that was created for this address.') lan_blazer7000_l2_address_control_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 2), mac_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlMacAddress.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlMacAddress.setDescription('The IEEE 802 MAC Address associated with this database entry.') lan_blazer7000_l2_address_control_port_binding = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 3), resource_id()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPortBinding.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPortBinding.setDescription('The port to bind this address to.') lan_blazer7000_l2_address_control_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlVlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlVlanID.setDescription('The VLAN ID of the VLAN to bind this address to.') lan_blazer7000_l2_address_control_priority = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('priorityZero', 1), ('priorityFour', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPriority.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPriority.setDescription('If set to high(2), frames destined to this address are classified with priority value 4.') lan_blazer7000_l2_address_control_persistence = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('permanent', 1), ('deleteOnReset', 2), ('deleteOnTimeout', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPersistence.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlPersistence.setDescription('The persistence of the entry to be created: permanent(1) - Address is not aged out. Additionally, if the address is seen as a source on a different port for this VLAN, the frame is filtered and the filter event is counted. Static address entries are stored in non-volatile memory and are restored to the address table following each system reset. deleteOnReset(2) - Indicates that the entry is not to be aged, however the entry is not stored in non-volatile memory. Therefore, when the device is reset, the entry will not be restored. deleteOnTimeout(3) - Indicates that the entry is to be aged by the normal aging process.') lan_blazer7000_l2_address_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 3, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('createRequest', 1), ('underCreation', 2), ('success', 3), ('otherError', 4), ('entryExistsError', 5), ('invalidMacAddress', 6), ('invalidPortBinding', 7), ('invalidVlanID', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressControlStatus.setDescription('The status of an entry to be created. When adding an entry all fields will be set, and then the control status is set to createRequest(1), indicating that the entry is to be created. During creation, the status will be underCreation(2). If the creation is successful, then the status will be set to success(3), and the value of lanBlazer7000AddressControlIndex indicates the index of the entry that was created in the address table. Otherwise if the creation was not successful, then one of the following error codes will be set and the entry will not be created: otherError(4) - An error other then the others defined. entryExistsError(5) - An entry already exists with this MAC address in this address table. invalidMacAddress(6) - Cannot create an entry with this MAC address. invalidTableIndex(7) - The table does not exist. invalidPortBinding(8) - The port binding is invalid. invalidVlanID(9) - The VLAN ID is invalid. Note that the only value that is valid to write to this object is createRequest(1), and that this object will never return the value createRequest(1).') lan_blazer7000_l2_addr_change_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4)) lan_blazer7000_l2_address_change_last = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeLast.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeLast.setDescription('The index of the last entry written to the address change table') lan_blazer7000_l2_address_change_wraps = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeWraps.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeWraps.setDescription('The count of the number of times the address change table has wrapped.') lan_blazer7000_l2_address_change_max_entries = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 3), integer32().subtype(subtypeSpec=value_range_constraint(1024, 4096))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeMaxEntries.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeMaxEntries.setDescription('The maximum number of entries in the address change table.') lan_blazer7000_l2_address_change_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4)) if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeTable.setDescription('.') lan_blazer7000_l2_address_change_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000L2AddressChangeWrapCount'), (0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000L2AddressChangeIndex')) if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeEntry.setDescription("The address change table provides a quick way of getting only the entries that have recently changed. Since entries age out as part of the normal switching process, entries that have aged (i.e. their destination bindings are no longer valid) are not considered to be changed. Any other modification to the entry, including deletion or creation, are considered to be changes. The address change table is considered a circular table. When an entry changes, it is added to the next position within the table. If the 'next' position goes beyond the end of the table, the 'next' position is set to the beginning of the table (1) and the wrap counter (lanBlazer7000AddressChangeWraps) is incremented. The lanBlazer7000AddressChangeLast value is updated with the index of the last entered entry. An entry may be in the table multiple times if it has changed multiple times. Every time that an entry changes, it is added to the change table. A network management application should follow the following algorithm when polling this table: 1. Set lastChangeWrap = lanBlazer7000AddressChangeWraps. 2. Set lastChangeIndex = lanBlazer7000AddressChangeLast 3. Get the entire lanBlazer7000AddressEntryTable. 4. Submit a getNext for <lastChangeWrap>.<lastChangeIndex>, updating lastChangeWrap and lastChangeIndex with the returned next values. Update the address entry database with the changed values. 5. Repeat step 4 until no more entries are returned. 6. Wait polling timeout period. 7. Get wrap events counter and last index. If the wrap events counter is equal to lastChangeWrap, then goto step 4. Else if the wrap events counter is more then one greater then lastChangeWrap, goto step 1. Else the wrap events counter is exactly one greater then lastChangeWrap, and if the last index is greater then lastChangeIndex, then goto step 1, else goto step 4. The last step simply insures that we have not missed any of the change entries. Essentially it says that if we have wrapped to beyond where we last polled, then we must get the entire table to synch up again. Otherwise we can just get the entries that have changed.") lan_blazer7000_l2_address_change_wrap_count = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeWrapCount.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeWrapCount.setDescription('The number of times that the lanBlazer7000AddressChangeLastIndex had wrapped when this entry was added.') lan_blazer7000_l2_address_change_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeIndex.setDescription('The index that uniquely identifies this address change entry.') lan_blazer7000_l2_address_change_index_changed = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeIndexChanged.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeIndexChanged.setDescription('The address entry that changed. The value of this object corresponds to the lanBlazer7000L2AddressIndex object. ') lan_blazer7000_l2_address_change_summary = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 1, 4, 4, 4, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(20, 20)).setFixedLength(20)).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeSummary.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000L2AddressChangeSummary.setDescription(' The structure is interpreted in the following manner:') lan_blazer7000_switch_port_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2)) lan_blazer7000_switch_port_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1)) if mibBuilder.loadTexts: lanBlazer7000SwitchPortTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortTable.setDescription('') lan_blazer7000_switch_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000SwitchPortIndex')) if mibBuilder.loadTexts: lanBlazer7000SwitchPortEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortEntry.setDescription('') lan_blazer7000_switch_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000SwitchPortIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortIndex.setDescription('A unique index that identifies this switch port. The value of this index corresponds to the value of the lanBlazer7000ResourceIndex for switch ports.') lan_blazer7000_switch_port_stap_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortSTAPMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortSTAPMode.setDescription('Disabling spanning tree on a switch port prevents the switch port from participating in the spanning tree process. When disabled(2), this port will neither generate BPDUs, nor process received BPDUs. Also, the port will always start in the forwarding state. A port configured in this mode will not be able to detect network loops involving this port. The factory default is to enable spanning tree on all ports.') lan_blazer7000_switch_port_convert_to_static = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('learnAsDynamic', 1), ('convertToStatic', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortConvertToStatic.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortConvertToStatic.setDescription('When this object is set to convertToStatic(2), all addresses learned on this port will be added to the non-volatile version of the static address table. Typically, this object will be used to perform a crude form of address database update where the address activity associated with this port is collected as static (i.e. permanent) addresses while the value of this object is set to convertToStatic(2). Following this usually short period of time (perhaps a week of activity), the value of this object is restored back to its default value of learnAsDynamic(1) and learning for this port is disabled. It is important that the user verify the address database to verify that only the desired addresses were made permanent.') lan_blazer7000_switch_port_learning_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortLearningMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortLearningMode.setDescription('Disable learning on a bridge port to prevent new addresses from being added to the address database. Used in combination with static (permanent) address entries, disabling address learning is an effective security feature to prevent new hosts from appearing on the network, or to prevent hosts from moving to different locations in the network. The default is enable.') lan_blazer7000_switch_port_hunt_group = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 5), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortHuntGroup.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortHuntGroup.setDescription('Hunt groups provide the capability to logically bind multiple switch ports into one switch port. This provides a way of balancing the load of multiple links between like-configured switches. Care must be taken to configure the hunt groups properly to prevent accidental network looping. Use this object to bind this port to a specific hunt group. When not configured to a specific hunt group, set the value of this object to zero.') lan_blazer7000_switch_port_physical_port = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 6), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000SwitchPortPhysicalPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortPhysicalPort.setDescription('The physical port resource bound to this switch port.') lan_blazer7000_switch_port_known_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortKnownMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortKnownMode.setDescription("Enabling known mode for this switch port causes the port to safely discard frames flooded because they are unknown unicast frames. This mode greatly enhances the efficiency of the port's output buffer since space is not wasted for frames not meant for this port. Enabling this feature disables learning for this port. Addresses associated for this port should be entered statically. The default is disable.") lan_blazer7000_switch_port_mapping_method = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('port-based', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortMappingMethod.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortMappingMethod.setDescription('The frame mapping method of this switch port. When set to port-based(1) (the factory default), all non-tagged frames are classified to the VLAN associated with this switch port.') lan_blazer7000_switch_port_trunking_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('clear', 1), ('ieee8021q', 2), ('multiLevel', 3), ('trunk3Com', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortTrunkingMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortTrunkingMode.setDescription('The trunking mode of this port. All frames transmitted out this switch port are translated to the appropriate trunking format: Clear: Ethernet or IEEE 802.3 frame format. This is the default. IEEE 802.1Q: The original frame with a new Ethernet Type (Protocol = 0xXXXX) and the VLAN ID inserted following the original Source Address. Also, the CRC is recalculated. Multi-level: The original frame is encapsulated in an IEEE 802.3 legal frame proprietary to a major networking equipment vendor. 3Com LinkSwitch: The original frame has the VLAN ID added to the front of the frame (before the Destination Address). Trunking format is proprietary to 3Com Corporation.') lan_blazer7000_switch_port_vlan_binding_method = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('static', 1), ('persistent', 2), ('dynamic', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanBindingMethod.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanBindingMethod.setDescription('The VLAN binding method of a switch port specifies the way in which the port can be a member of the egress lists of VLANs other than the port default VLAN specified by lanBlazer7000SwitchPortVlanID: static: A Virtual Switch Port must be statically created for each VLAN/port combination. persistent: A Virtual Switch Port is automatically created for each VLAN known to the switch (i.e., the port is a member of the egress lists of all VLANs). dynamic: A Virtual Switch Port is automatically created for each VLAN when the associated VLAN ID is used as a tag in an IEEE 802.1Q or Multi-level tagged frame received on the port (i.e., the port is a member of the egress lists of the VLANs from frames received on the port). The default is static.') lan_blazer7000_switch_port_ignore_tag = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('useTag', 1), ('ignoreTag', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortIgnoreTag.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortIgnoreTag.setDescription("Each switch port is capable of ignoring the VLAN Tag associated with a frame in a trunking format. When ignored, the tag is used as the default in the event that a VLAN classification based on the switch's policy(s) cannot be made. This feature is useful for connecting layer 2 VLANs and layer 3 VLANs. The default is useTag.") lan_blazer7000_switch_port_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanID.setDescription('When this switch port is configured in port-based VLAN mode, all non-tagged frames received on this port are bound to this VLAN. Otherwise, non-tagged frames are classified to this VLAN as the default if a VLAN binding cannot be otherwise determined. The factory default is 1, which is the VLAN ID of the Default VLAN.') lan_blazer7000_switch_port3_com_mapping_table_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPort3ComMappingTableIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPort3ComMappingTableIndex.setDescription('The 3Com VLAN mapping table associated with this switch port. The default is 1, which indicates the default mapping table.') lan_blazer7000_switch_port_auto_vlan_creation = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortAutoVlanCreation.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortAutoVlanCreation.setDescription('Enabling auto VLAN creation for this switch port causes the port to dynamically create a VLAN whenever an IEEE 802.1Q or Multi-level tagged frame is received on the port with a tag value which does not correspond to a known VLAN. All switch ports with a trunking mode of IEEE 802.1Q or Multi-level are bound to this created VLAN. The default is disable.') lan_blazer7000_switch_port_mirror_mode = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000SwitchPortMirrorMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortMirrorMode.setDescription('When set to enable(1), this object indicates that the port is defined as a mirror port through the lanBlazer7000PortMirroringTable. A mirror port duplicates frames received at one or more source ports.') lan_blazer7000_switch_port_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 16), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000SwitchPortIfIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortIfIndex.setDescription('Each switch port is associated with an interface. This object provides a mechanism to map switch ports to bridge ports.') lan_blazer7000_switch_port_fast_start = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortFastStart.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortFastStart.setDescription('When this object is set to enable(1), bridge ports on this switch port transitions right from blocking to forwarding, skipping the listening and learning states. The user should be warned that using the fast start feature greatly increases the likelihood of unintended network loops that would otherwise be prevented by participating in the normal spanning tree algorithm. The factory default value for this object is disable(2).') lan_blazer7000_switch_port_vlan_exchange = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 2, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanExchange.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000SwitchPortVlanExchange.setDescription("When this object is set to enable(1), this switch port attempts to learn VLANs from a major networking equipment vendor if the switch port's trunking mode is IEEE 802.1Q Format or Multi-level Format. The factory default value for this object is enable(1).") lan_blazer7000_hunt_group_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4)) lan_blazer7000_hunt_group_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1)) if mibBuilder.loadTexts: lanBlazer7000HuntGroupTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupTable.setDescription('') lan_blazer7000_hunt_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000HuntGroupIndex')) if mibBuilder.loadTexts: lanBlazer7000HuntGroupEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupEntry.setDescription('') lan_blazer7000_hunt_group_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000HuntGroupIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupIndex.setDescription('An index that uniquely identifies this hunt group. This index corresponds to the value of lanBlazer7000ResourceIndex for resources of the hunt group type.') lan_blazer7000_hunt_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000HuntGroupName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupName.setDescription('') lan_blazer7000_hunt_group_base_port = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 3), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000HuntGroupBasePort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupBasePort.setDescription('The switch port index that serves as the base port for this hunt group. Each hunt group requires a base port. In lieu of a specific configuration, the hunt group will inherit the first switch port bound to the hunt group as its base port. The base port serves as the management focus for the hunt group. That is, a hunt group is managed as one switch port whose instance is provided by the base switch port. All configuration (e.g. spanning tree information) and statistics related to switch ports are meaningful only through the instance of the base port.') lan_blazer7000_hunt_group_number_of_ports = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000HuntGroupNumberOfPorts.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupNumberOfPorts.setDescription('The current number of ports that belong to this hunt group.') lan_blazer7000_hunt_group_load_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000HuntGroupLoadSharing.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupLoadSharing.setDescription('') lan_blazer7000_hunt_group_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 4, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('createRequest', 1), ('underCreation', 2), ('deleteRequest', 3), ('active', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000HuntGroupStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000HuntGroupStatus.setDescription('') lan_blazer7000_port_mirroring_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5)) lan_blazer7000_port_mirroring_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1)) if mibBuilder.loadTexts: lanBlazer7000PortMirroringTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringTable.setDescription('A table of port mirroring entries used to mirror traffic from a source port to a mirror port.') lan_blazer7000_port_mirroring_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000PortMirroringIndex')) if mibBuilder.loadTexts: lanBlazer7000PortMirroringEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringEntry.setDescription('Objects related to the PortMirroring functionality.') lan_blazer7000_port_mirroring_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000PortMirroringIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringIndex.setDescription('The unique index that identifies this entry. This index consists of a switch fabric port and the index of a Packet Lookup Engine servicing this fabric port.') lan_blazer7000_port_mirroring_source_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortMirroringSourceSubPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringSourceSubPort.setDescription('The frame sampler source switch subport. The source port is the port from which received traffic will be mirrored. This object identifies the switch subport only, the switch fabric port is identified in lanBlazer7000PortMirroringIndex. If set to 0, all subports associated with the lanBlazer7000PortMirroringIndex will be source ports. The default value is 0.') lan_blazer7000_port_mirroring_sampler_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('periodic', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortMirroringSamplerType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringSamplerType.setDescription('The type for this frame sampler. When set to enable(1), every frame received on the source port(s) will be mirrored at the mirror port. When set to disable(2), no frames received on the source port(s) will be mirrored at the mirror port. When set to periodic(3), frames will be mirrored at the rate defined in lanBlazer7000PortMirroringRate. The default value is disable(2).') lan_blazer7000_port_mirroring_rate = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortMirroringRate.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringRate.setDescription('Used in conjunction with lanBlazer7000PortMirroringSamplerType to implement periodic sampling functionality. If lanBlazer7000PortMirroringSamplerType is set to periodic(3), this object defines the number of packets/second that will be mirrored. If lanBlazer7000PortMirroringSamplerType is not periodic(3), this object will set to 0.') lan_blazer7000_port_mirroring_mirror_port = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 5, 5, 1, 1, 5), resource_id()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000PortMirroringMirrorPort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000PortMirroringMirrorPort.setDescription('The Switch Port on which frames received at source ports(s) will be duplicated. If no mirror port has been defined this object will return NULL.') lan_blazer7000_vlan_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7)) lan_blazer7000_vlans = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1)) lan_blazer7000_vlan_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1)) if mibBuilder.loadTexts: lanBlazer7000VlanTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanTable.setDescription('') lan_blazer7000_vlan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000VlanID')) if mibBuilder.loadTexts: lanBlazer7000VlanEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanEntry.setDescription('') lan_blazer7000_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000VlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanID.setDescription('An identifier that is unique within the administrative domain. This ID is assigned by the management application and is meaningful within that context. This ID is used to identify VLANs when tagged using either the IEEE 802.1 frame format or the Multi-level frame format.') lan_blazer7000_vlan_name = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 31))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VlanName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanName.setDescription('A user-assignable name for this Vlan.') lan_blazer7000_vlan_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000VlanIfIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanIfIndex.setDescription('Each virtual LAN has a virtual interface associated with it. This enables RMON monitoring to occur per-VLAN. It also provides a handy mechanism to map virtual LANs to bridge ports by mapping them with the ifStack table from the Interface MIB.') lan_blazer7000_vlan_aft_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VlanAFTIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanAFTIndex.setDescription("The address table used for this VLAN for explicitly tagged frames (frames received in a trunking frame format or from a port in port-based VLAN mode.) Normally, each VLAN maps to a unique address table. This is useful for environments with duplicate host addresses appear on different VLANs on different ports. For those environments where duplicate hosts on different VLANs don't exist, or exist but are on the same port, and where the address table size and/or aging is a concern, then multiple VLANs may be mapped to the same address table.") lan_blazer7000_vlan_bridge_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 5), resource_id()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VlanBridgeIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanBridgeIndex.setDescription('The bridge resource which is bound to this Vlan.') lan_blazer7000_vlan_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=named_values(('createRequest', 1), ('underCreation', 2), ('destroyRequest', 3), ('underDestruction', 4), ('active', 5), ('otherError', 6), ('entryExistsError', 7), ('invalidVlanID', 8), ('invalidVlanName', 9), ('invalidVlanAFTIndex', 10), ('invalidVlanBridgeIndex', 11), ('invalidVlanInitialHashTableSize', 12), ('invalidVlanAutoIncrementHTSize', 13)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VlanStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanStatus.setDescription('The status of an entry to be created or deleted. When adding an entry all fields will be set, and then the status is set to createRequest(1) (indicating that the entry is to be created). When deleting an entry the status is set to destroyRequest(3) (indicating that the entry is to be destroyed). During creation the status will be underCreation(2). If the creation is successful, then the status will be set to active(5). Otherwise if the creation was not successful then one of the following error codes will be set and the entry will not be created: otherError(6) - An error other than the others defined. entryExistsError(7) - An entry already exists. invalidVlanID(8) - the VLAN ID is invalid. invalidVlanName(9) - the VLAN name is invalid. invalidVlanAFTIndex(10) - the VLAN AFT index is invalid. invalidVlanBridgeIndex(11) - the VLAN bridge index is invalid. invalidVlanInitialHashTableSize(12) - the VLAN initial hash table size is invalid. invalidVlanAutoIncrementHTSize(13) - the VLAN auto increment hash table size is invalid.') lan_blazer7000_vlan_initial_hash_table_size = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(16, 8192))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VlanInitialHashTableSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanInitialHashTableSize.setDescription('The initial hash table size used for MAC addresses on this VLAN. This attribute may only be set when lanBlazer7000VlanStatus is set to createRequest(1). It must be a power of 2 between 16 and 8192, inclusive.') lan_blazer7000_vlan_auto_increment_ht_size = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('true', 1), ('false', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VlanAutoIncrementHTSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanAutoIncrementHTSize.setDescription('This attribute specifies whether or not the hash table size used for MAC addresses on this VLAN is automatically increased as necessary to hold more MAC addresses. This attribute may only be set when lanBlazer7000VlanStatus is set to createRequest(1).') lan_blazer7000_vlan_learn_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notLearned', 1), ('vlanExchange', 2), ('auto', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000VlanLearnStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanLearnStatus.setDescription('This attribute indicates if the VLAN was learned. If learned it indicates if the VLAN was learned either by VLAN Exchange or Auto VLAN creation.') lan_blazer7000_vlan_mappings = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3)) lan_blazer70003_com_mapping = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1)) lan_blazer70003_com_mapping_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1)) if mibBuilder.loadTexts: lanBlazer70003ComMappingTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingTable.setDescription('') lan_blazer70003_com_mapping_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer70003ComMappingTableIndex')) if mibBuilder.loadTexts: lanBlazer70003ComMappingEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingEntry.setDescription('') lan_blazer70003_com_mapping_table_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer70003ComMappingTableIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingTableIndex.setDescription('') lan_blazer70003_com_mapping_table_name = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 31))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer70003ComMappingTableName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingTableName.setDescription('A user-readable name associated with this table.') lan_blazer70003_com_mapping_table_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('createRequest', 1), ('destroyRequest', 2), ('active', 3), ('entryExistsError', 4), ('otherError', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer70003ComMappingTableStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer70003ComMappingTableStatus.setDescription('The status of an entry to be created. When adding an entry all fields will be set, and then the status is set to createRequest(1), indicating that the entry is to be created. If the creation is successful, then the status will be set to active(3). Otherwise if the creation was not successful then one of the following error codes will be set and the entry will not be created: entryExistsError(4) - An entry already exists. otherError(5) - An error other than the others defined.') lan_blazer7000_vlan3_com_mapping = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2)) lan_blazer7000_vlan3_com_mapping_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1)) if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingTable.setDescription('') lan_blazer7000_vlan3_com_mapping_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer70003ComMappingTableIndex'), (0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000Vlan3ComMappingIndex')) if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingEntry.setDescription('') lan_blazer7000_vlan3_com_mapping_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingIndex.setDescription('The external tag of this 3Com VLAN.') lan_blazer7000_vlan3_com_mapping_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1, 1, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingVlanID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingVlanID.setDescription('The VLAN ID of the VLAN that this 3Com tag is associated with.') lan_blazer7000_vlan3_com_mapping_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 3, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('createRequest', 1), ('destroyRequest', 2), ('active', 3), ('otherError', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000Vlan3ComMappingStatus.setDescription('The status of an entry to be created. When adding an entry all fields will be set, and then the status is set to createRequest(1), indicating that the entry is to be created. If the creation is successful, then the status will be set to active(3). Otherwise if the creation was not successful then one of the following error codes will be set and the entry will not be created: otherError(4) - An error other than the others defined.') lan_blazer7000_virtual_ports = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4)) lan_blazer7000_virtual_switch_port_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1)) if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortTable.setDescription('') lan_blazer7000_virtual_switch_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000VirtualSwitchPortIndex')) if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortEntry.setDescription('An instance of a virtual switch port indicates that this switch port is a member of this VLAN.') lan_blazer7000_virtual_switch_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 1), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortIndex.setDescription('The Resource ID of the virtual switch port bound to the VLAN.') lan_blazer7000_virtual_switch_port_format = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('clear', 1), ('trunkingFormat', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortFormat.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortFormat.setDescription("Typically, a VLAN capable switch port has one of three modes: access, trunk, or hybrid. In access mode, the port sends frames in clear format (untagged). In trunk mode, all outbound frames are translated into the switch port's configured trunking format. In hybrid mode, it is possible for a port to send trunked frames for some VLANs and clear frames for others. In this case, the switch port is configured to trunk, and the virtual switch port(s) for those VLANs that require clear formatted frames are configured to be override the switch port setting. This is done by setting this object to clear(1). By default, the value of this object is trunkingFormat(2) which means to use the trunking format configured for this switch port. (which may be clear).") lan_blazer7000_virtual_switch_port_bridge_port = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 3), resource_id()).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortBridgePort.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortBridgePort.setDescription('The bridge port resource bound to this virtual port.') lan_blazer7000_virtual_switch_port_binding_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('static', 1), ('persistent', 2), ('dynamic', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortBindingType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortBindingType.setDescription('The method by which this switch port was bound to the VLAN. If the value is static(1), the binding was manually created by the administrator. If the value is persistent(2), the binding was created by the switch because the VLAN is the port-based VLAN for the switch port, or the switch port VLAN Binding Method is persistent. These bindings may not be removed. If the value is dynamic(3), the binding was created by the switch as a result of receiving a tagged frame on the switch port with a VLAN ID corresponding to the VLAN.') lan_blazer7000_virtual_switch_port_status = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 7, 4, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('createRequest', 1), ('destroyRequest', 2), ('active', 3), ('otherError', 4), ('entryExistsError', 5), ('entryNoExistError', 6)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortStatus.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VirtualSwitchPortStatus.setDescription('The status of an entry to be created or deleted. When adding an entry all fields will be set, and then the status is set to createRequest(1) (indicating that the entry is to be created). When deleting an entry the status is set to destroyRequest(2) (indicating that the entry is to be destroyed). If the creation is successful, then the status will be set to active(3). Otherwise if the creation was not successful then one of the following error codes will be set and the entry will not be created: otherError(4) - An error other than the others defined. entryExistsError(5) - On creation, an entry already exists. On deletion, the entry may not be removed. entryNoExistError(6) - The VLAN specified by ID does not exist.') lan_blazer7000_events = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10)) lan_blazer7000_event_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1)) lan_blazer7000_event_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1)) if mibBuilder.loadTexts: lanBlazer7000EventTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTable.setDescription('Table of events currently supported.') lan_blazer7000_event_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000EventIndex')) if mibBuilder.loadTexts: lanBlazer7000EventEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventEntry.setDescription('Attributes associated with the event.') lan_blazer7000_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventIndex.setDescription('') lan_blazer7000_event_mode = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000EventMode.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventMode.setDescription('Disabling an event prevents this event from taking any actions when triggered. When set to enable to the console, the event will print the event information to the console serial port. The user can select whether to view log messages, trap messages or any event at the console.') lan_blazer7000_event_log_action = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000EventLogAction.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogAction.setDescription('When enabled, this action will cause an event log entry to be created.') lan_blazer7000_event_trap_action = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000EventTrapAction.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapAction.setDescription('When enabled, this event will cause an SNMP trap to be generated.') lan_blazer7000_event_console_action = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000EventConsoleAction.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventConsoleAction.setDescription('When enabled, this event will cause a message to printed to the console serial port.') lan_blazer7000_event_log_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 2)) lan_blazer7000_log_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2048))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000LogTableMaxSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000LogTableMaxSize.setDescription('The maximum number of entries in the log table. Changing this value causes the existing log to be truncated and rebuilt.') lan_blazer7000_log_last_entry = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 2, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000LogLastEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000LogLastEntry.setDescription('The log index of the last entry entered in the log.') lan_blazer7000_log_wraps = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 2, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000LogWraps.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000LogWraps.setDescription('The number of times that the last entry has wrapped from 65K back to 1.') lan_blazer7000_event_log = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3)) lan_blazer7000_event_log_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1)) if mibBuilder.loadTexts: lanBlazer7000EventLogTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogTable.setDescription('The log table for the events in the event table that are enabled for the Log Action.') lan_blazer7000_event_log_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000EventLogIndex')) if mibBuilder.loadTexts: lanBlazer7000EventLogEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogEntry.setDescription('An entry in the log indicates information associated with a particular event.') lan_blazer7000_event_log_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogEventIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogEventIndex.setDescription('The index that uniquely identifies the event that caused this log entry.') lan_blazer7000_event_log_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogIndex.setDescription('An index that uniquely identifies this log entry.') lan_blazer7000_event_log_time = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 3), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogTime.setDescription('The value of sysUpTime when this event was triggered.') lan_blazer7000_event_log_descr = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogDescr.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogDescr.setDescription('The event log description.') lan_blazer7000_event_log_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 5), event_category()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogType.setDescription('The type of event that caused this log entry.') lan_blazer7000_event_log_severity = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogSeverity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogSeverity.setDescription('The severity associated with this event. It is recommended that the severity be interpreted in the following manner: 0-19: Normal 20-39: Informational 40-59: Warning 60-79: Alarm 80-99: Severe Error 100: Failure.') lan_blazer7000_event_log_dtm = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(18, 18)).setFixedLength(18)).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogDTM.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogDTM.setDescription('The date and time when this log entry was made. The format is yy-Mon- dd hh:mm:ss, time is in 24 hour time.') lan_blazer7000_event_log_res_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 8), resource_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogResType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogResType.setDescription("The type of object (if provided) that triggered this event. If not provided, the value is equal to 'Invalid Resource'.") lan_blazer7000_event_log_res_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 9), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogResID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogResID.setDescription('The instance of this resource (if provided - see lanBlazer7000EventLogResType) that triggered this event.') lan_blazer7000_event_log_res_leaf = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogResLeaf.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogResLeaf.setDescription("A number corresponding to the attribute associated with this resource and this event entry. It corresponds exactly to the leaf MIB number of the MIB that manages this resource. For example, if a port's mode changed, the configuration event log entry would indicate the value of 5 which is the leaf index of the lanBlazer7000PortMode within the lanBlazer7000PortTable MIB table.") lan_blazer7000_event_log_value_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 11), event_value_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogValueType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogValueType.setDescription('The data type associated with the log event value. This object indicates how to interpret the data stored in the event log value: - none(1) indicates no value returned. - integer32(2) - a 4 byte unsigned integer. - integer64(3) - an 8 byte unsigned integer. - displayString(4) - a null terminated (or up to 8 characters) string. - ipv4NetworkAddress(5) - a 4 byte IP version 4 network address. - ieee802MACAddress(6) - a 6 byte MAC Address. - timeticks(7) - sysUpTime type value (4 bytes)') lan_blazer7000_event_log_value = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogValue.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogValue.setDescription('The value associated with the event encoded in an octet string. Refer to lanBlazer7000EventLogValueType for how to interpret this value. The value encoded in this string is in Big Endian order.') lan_blazer7000_event_log_epoch_time = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogEpochTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogEpochTime.setDescription('The number of time ticks since the epoch when this event was logged. The interpretation of this value is as follows: struct DateTimeOvly { UNS32 year:6; UNS32 month:4; UNS32 day:5; UNS32 hour:5; UNS32 minute:6; UNS32 second:6; }; The epoch is January 1, 1997, at 00:00:00. A value of 0 refers to this date and time. ') lan_blazer7000_event_log_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 3, 1, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventLogID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventLogID.setDescription('A unique index that identifies the occurence of this event. This ID can be correlated between traps, logs and the like.') lan_blazer7000_shutdown_log_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 4)) lan_blazer7000_shutdown_log_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 4, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 128))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000ShutdownLogTableMaxSize.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ShutdownLogTableMaxSize.setDescription('The maximum number of entries in the non-volatile log table. Changing the value of this object changes the maximum number of entries to be stored in Shutdown.') lan_blazer7000_shutdown_log_last_entry = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ShutdownLogLastEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ShutdownLogLastEntry.setDescription('The ID of the last entry made to the shutdown log.') lan_blazer7000_shutdown_log_acknowledged = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('not-acknowledged', 1), ('acknowledged', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ShutdownLogAcknowledged.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ShutdownLogAcknowledged.setDescription('This object is to set to acknowledged(2) the first time the Shutdown Log Table is accessed indicating that the Shutdown log has been read (at least once) since the system restarted.') lan_blazer7000_event_shutdown_log = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5)) lan_blazer7000_event_shutdown_log_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1)) if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogTable.setDescription('A table of the last events logged before the system restarted.') lan_blazer7000_event_shutdown_log_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000EventShutdownLogIndex')) if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEntry.setDescription('A log entry stored in non-volatile memory.') lan_blazer7000_event_shutdown_log_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEventIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEventIndex.setDescription('The index that uniquely identifies the event that caused this ShutdownLog entry.') lan_blazer7000_event_shutdown_log_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogIndex.setDescription('An index that uniquely identifies this ShutdownLog entry.') lan_blazer7000_event_shutdown_log_time = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 3), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogTime.setDescription('The value of sysUpTime when this event was triggered. Note, the value corresponds to the sysUpTime when the system was last running (i.e. before it was shutdown.)') lan_blazer7000_event_shutdown_log_descr = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogDescr.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogDescr.setDescription('The event ShutdownLog description.') lan_blazer7000_event_shutdown_log_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 5), event_category()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogType.setDescription('The type of event that caused this ShutdownLog entry.') lan_blazer7000_event_shutdown_log_severity = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogSeverity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogSeverity.setDescription('The severity associated with this event. It is recommended that the severity be interpreted in the following manner: 0-19: Normal 20-39: Informational 40-59: Warning 60-79: Alarm 80-99: Severe Error 100: Failure.') lan_blazer7000_event_shutdown_log_dtm = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(18, 18)).setFixedLength(18)).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogDTM.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogDTM.setDescription('The date and time when this ShutdownLog entry was made. The format is yy-Mon-dd hh:mm:ss, time is in 24 hour time.') lan_blazer7000_event_shutdown_log_res_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 8), resource_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResType.setDescription('The type of object (if provided) that triggered this event. If not provided, the value is invalid.') lan_blazer7000_event_shutdown_log_res_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 9), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResID.setDescription('The instance of this resource (if provided) that triggered this event.') lan_blazer7000_event_shutdown_log_res_leaf = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResLeaf.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogResLeaf.setDescription('To be provided.') lan_blazer7000_event_shutdown_log_value_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 11), event_value_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogValueType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogValueType.setDescription('The data type associated with the ShutdownLog event value. This object indicates how to interpret the data stored in the event ShutdownLog value.') lan_blazer7000_event_shutdown_log_value = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogValue.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogValue.setDescription('The value associated with the event encoded in an octet string. ') lan_blazer7000_event_shutdown_log_epoch_time = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEpochTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogEpochTime.setDescription('The number of time ticks since the epoch when this event was logged. The interpretation of this value is as follows: struct DateTimeOvly { UNS32 year:6; UNS32 month:4; UNS32 day:5; UNS32 hour:5; UNS32 minute:6; UNS32 second:6; }; The epoch is January 1, 1997, at 00:00:00. A value of 0 refers to this date and time. ') lan_blazer7000_event_shutdown_log_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 5, 1, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventShutdownLogID.setDescription('A unique index that identifies the occurence of this event. This ID can be correlated between traps, logs and the like.') lan_blazer7000_event_trap_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6)) lan_blazer7000_event_trap_event_index = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapEventIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapEventIndex.setDescription('The index that uniquely identifies the event that caused this trap.') lan_blazer7000_event_trap_time = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 2), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapTime.setDescription('The value of sysUpTime when this event was triggered.') lan_blazer7000_event_trap_descr = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapDescr.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapDescr.setDescription('The event log description.') lan_blazer7000_event_trap_type = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 4), event_category()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapType.setDescription('The type of event that caused this trap.') lan_blazer7000_event_trap_severity = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapSeverity.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapSeverity.setDescription('The severity associated with this event. It is recommended that the severity be interpreted in the following manner: 0-19: Normal 20-39: Informational 40-59: Warning 60-79: Alarm 80-99: Severe Error 100: Failure.') lan_blazer7000_event_trap_dtm = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 6), display_string().subtype(subtypeSpec=value_size_constraint(18, 18)).setFixedLength(18)).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapDTM.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapDTM.setDescription('The date and time when this trap was sent. The format is yy-Mon- dd hh:mm:ss, time is in 24 hour time.') lan_blazer7000_event_trap_res_type = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 7), resource_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapResType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapResType.setDescription("The type of object (if provided) that triggered this event. If not provided, the value is equal to 'Invalid Resource'.") lan_blazer7000_event_trap_res_id = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 8), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapResID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapResID.setDescription('The instance of this resource (if provided - see lanBlazer7000EventTrapResType) that triggered this event.') lan_blazer7000_event_trap_res_leaf = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 9), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapResLeaf.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapResLeaf.setDescription("A number corresponding to the attribute associated with this resource and this event entry. It corresponds exactly to the leaf MIB number of the MIB that manages this resource. For example, if a port's mode changed, the configuration event log entry would indicate the value of 5 which is the leaf index of the lanBlazer7000PortMode within the lanBlazer7000PortTable MIB table.") lan_blazer7000_event_trap_value_type = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 10), event_value_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapValueType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapValueType.setDescription('The data type associated with the trap event value. This object indicates how to interpret the data stored in the event trap value: - none(1) indicates no value returned. - integer32(2) - a 4 byte unsigned integer. - integer64(3) - an 8 byte unsigned integer. - displayString(4) - a null terminated (or up to 8 characters) string. - ipv4NetworkAddress(5) - a 4 byte IP version 4 network address. - ieee802MACAddress(6) - a 6 byte MAC Address. - timeticks(7) - sysUpTime type value (4 bytes)') lan_blazer7000_event_trap_value = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 11), octet_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapValue.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapValue.setDescription('The value associated with the event encoded in an octet string. Refer to lanBlazer7000EventTrapValueType for how to interpret this value. The value encoded in this string is in Big Endian order.') lan_blazer7000_event_trap_epoch_time = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 12), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapEpochTime.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapEpochTime.setDescription('The number of time ticks since the epoch when this event was logged. The interpretation of this value is as follows: struct DateTimeOvly { UNS32 year:6; UNS32 month:4; UNS32 day:5; UNS32 hour:5; UNS32 minute:6; UNS32 second:6; }; The epoch is January 1, 1997, at 00:00:00. A value of 0 refers to this date and time. ') lan_blazer7000_event_trap_id = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 10, 6, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000EventTrapID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000EventTrapID.setDescription('A unique index that identifies the occurence of this event. This ID can be correlated between traps, logs and the like.') lan_blazer7000_alarm_mgt = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11)) lan_blazer7000_alarm_general = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 1)) lan_blazer7000_alarm_general_active_entries = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 1, 1), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000AlarmGeneralActiveEntries.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AlarmGeneralActiveEntries.setDescription('The total number of alarm entries in the triggered state currently in the alarm table.') lan_blazer7000_alarm_general_time_stamp = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 1, 2), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000AlarmGeneralTimeStamp.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000AlarmGeneralTimeStamp.setDescription('The value of sysUpTime when any alarm state last changed (either triggering a new alarm or re-arming an old one).') lan_blazer7000_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2)) lan_blazer7000_active_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2)) if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmTable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmTable.setDescription('A table of all alarms in the triggered state.') lan_blazer7000_active_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1)).setIndexNames((0, 'ODSLANBlazer7000-MIB', 'lanBlazer7000ActiveAlarmIndex')) if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmEntry.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmEntry.setDescription('An alarm in the triggered state.') lan_blazer7000_active_alarm_index = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmIndex.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmIndex.setDescription('The unique index that identifies this alarm.') lan_blazer7000_active_alarm_name = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmName.setDescription('The name of this alarm.') lan_blazer7000_active_alarm_value_high = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmValueHigh.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmValueHigh.setDescription('The high order 32 bits of the value that triggered this alarm.') lan_blazer7000_active_alarm_value_low = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmValueLow.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmValueLow.setDescription('The low order 32 bits of the value that triggered this alarm.') lan_blazer7000_active_alarm_variable = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 5), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmVariable.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmVariable.setDescription('The OID of the alarm variable if this is a user-created alarm (null otherwise).') lan_blazer7000_active_alarm_res_type = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 6), resource_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmResType.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmResType.setDescription('The resource type of this alarm if this is an internally created alarm.') lan_blazer7000_active_alarm_res_id = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 7), resource_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmResID.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmResID.setDescription('The resource identifier associated with this alarm if this is an internally created alarm.') lan_blazer7000_active_alarm_leaf = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 8), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmLeaf.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmLeaf.setDescription("The leaf index of the MIB table used to manage this resource that is associated with this alarm, if this is an internally created alarm. For example, if this alarm was created to monitor a port's status, then the value of this object will be 6, corresponding to the leaf index of the lanBlazer7000PortStatus object.") lan_blazer7000_active_alarm_owner = mib_table_column((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 11, 2, 2, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmOwner.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000ActiveAlarmOwner.setDescription('This is the owner of the alarm.') lan_blazer7000_snmp_traps = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13)) lan_blazer7000_system_trap = notification_type((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0, 2)).setObjects(('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEventIndex'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDescr'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapSeverity'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDTM'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResID'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResLeaf'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValueType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValue'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEpochTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapID')) if mibBuilder.loadTexts: lanBlazer7000SystemTrap.setDescription('A lanBlazer7000SystemTrap is sent by the agent when a system event is triggered. These events are usually triggered when the software encounters an unexpected situation, e.g. a hardware failure or a software bug.') lan_blazer7000_configuration_trap = notification_type((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0, 3)).setObjects(('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEventIndex'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDescr'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapSeverity'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDTM'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResID'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResLeaf'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValueType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValue'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEpochTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapID')) if mibBuilder.loadTexts: lanBlazer7000ConfigurationTrap.setDescription('A lanBlazer7000ConfigurationTrap is sent by the agent when the configuration event is triggered. These events are triggered when a configuration change is made.') lan_blazer7000_temperature_trap = notification_type((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0, 4)).setObjects(('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEventIndex'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDescr'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapSeverity'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDTM'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResID'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResLeaf'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValueType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValue'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEpochTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapID')) if mibBuilder.loadTexts: lanBlazer7000TemperatureTrap.setDescription('A lanBlazer7000TemperatureTrap is sent by the agent when the temperature event is triggered. This event is triggered when a temperature probe detects the temperature crossing a threshold.') lan_blazer7000_resource_trap = notification_type((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0, 5)).setObjects(('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEventIndex'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDescr'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapSeverity'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDTM'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResID'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResLeaf'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValueType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValue'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEpochTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapID')) if mibBuilder.loadTexts: lanBlazer7000ResourceTrap.setDescription('A lanBlazer7000ResourceTrap is sent by the agent when the resource event is triggered. The resource event is triggered when a resource is added or removed from the system.') lan_blazer7000_fan_trap = notification_type((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0, 6)).setObjects(('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEventIndex'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDescr'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapSeverity'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDTM'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResID'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResLeaf'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValueType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValue'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEpochTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapID')) if mibBuilder.loadTexts: lanBlazer7000FanTrap.setDescription('A lanBlazer7000FanTrap is sent by the agent when the fan status event is triggered. The fan status event is triggered when a fan has a change in its status.') lan_blazer7000_power_trap = notification_type((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 13) + (0, 9)).setObjects(('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEventIndex'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDescr'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapSeverity'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapDTM'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResID'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapResLeaf'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValueType'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapValue'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapEpochTime'), ('ODSLANBlazer7000-MIB', 'lanBlazer7000EventTrapID')) if mibBuilder.loadTexts: lanBlazer7000PowerTrap.setDescription('A lanBlazer7000PowerTrap is sent by the agent when the power event is triggered. These events are triggered when a power supply changes status.') lan_blazer7000_vlan_exchange = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14)) lan_blazer7000_vlan_exchange_switch = mib_identifier((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1)) lan_blazer7000_vlan_exchange_state = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeState.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeState.setDescription('When this object is set to enable(1), the switch attempts to learn VLANs from a major networking equipment vendor on switch ports that have their VLAN Exchange parameter set to enable(1). trunking mode is IEEE 802.1Q Format or Multi-level Format. The factory default value for this object is disable(2).') lan_blazer7000_vlan_exchange_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeDomainName.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeDomainName.setDescription('The VLAN Exchange Domain Name of the switch. A switch may only belong to one domain.') lan_blazer7000_vlan_exchange_updater_id = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeUpdaterId.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeUpdaterId.setDescription('The IP address of the switch from which the VLAN Exchange configuration was learned.') lan_blazer7000_vlan_exchange_update_time_stamp = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeUpdateTimeStamp.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeUpdateTimeStamp.setDescription('The time at which the VLAN Exchange configuration changed on the initiating switch.') lan_blazer7000_vlan_exchange_config_rev_num = mib_scalar((1, 3, 6, 1, 4, 1, 50, 8, 1, 2, 1, 14, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeConfigRevNum.setStatus('mandatory') if mibBuilder.loadTexts: lanBlazer7000VlanExchangeConfigRevNum.setDescription('Configuration Revision Number of VLAN Exchange Configuration on the switch that initiated the VLAN Exchange.') mibBuilder.exportSymbols('ODSLANBlazer7000-MIB', lanBlazer7000SwitchPortLearningMode=lanBlazer7000SwitchPortLearningMode, lanBlazer7000VlanExchangeUpdaterId=lanBlazer7000VlanExchangeUpdaterId, lanBlazer7000AgentCommunity=lanBlazer7000AgentCommunity, lanBlazer7000SwitchAgingTime=lanBlazer7000SwitchAgingTime, lanBlazer7000TempTable=lanBlazer7000TempTable, lanBlazer7000PortPacePriorityEntry=lanBlazer7000PortPacePriorityEntry, MacAddress=MacAddress, lanBlazer7000PowerSupplyIndex=lanBlazer7000PowerSupplyIndex, lanBlazer7000BridgePortMgmt=lanBlazer7000BridgePortMgmt, lanBlazer7000BufferMgt=lanBlazer7000BufferMgt, lanBlazer7000PowerMgmtGen=lanBlazer7000PowerMgmtGen, lanBlazer7000EventConsoleAction=lanBlazer7000EventConsoleAction, EventValueType=EventValueType, lanBlazer7000L2AddrSummaryEntry=lanBlazer7000L2AddrSummaryEntry, lanBlazer7000PortPacePriorityMgt=lanBlazer7000PortPacePriorityMgt, lanBlazer7000EventLogDescr=lanBlazer7000EventLogDescr, lanBlazer7000ActiveAlarmResID=lanBlazer7000ActiveAlarmResID, lanBlazer7000VirtualSwitchPortStatus=lanBlazer7000VirtualSwitchPortStatus, lanBlazer7000L2AddressChangeLast=lanBlazer7000L2AddressChangeLast, lanBlazer7000EventLogType=lanBlazer7000EventLogType, lanBlazer7000BridgePortTable=lanBlazer7000BridgePortTable, lanBlazer7000PortMgt=lanBlazer7000PortMgt, lanBlazer7000PowerControlEntry=lanBlazer7000PowerControlEntry, lanBlazer7000ModuleIndex=lanBlazer7000ModuleIndex, lanBlazer7000BridgeMgmt=lanBlazer7000BridgeMgmt, lanBlazer7000PortStatus=lanBlazer7000PortStatus, lanBlazer7000PowerMgmtCtl=lanBlazer7000PowerMgmtCtl, lanBlazer7000VirtualSwitchPortBridgePort=lanBlazer7000VirtualSwitchPortBridgePort, lanBlazer7000Events=lanBlazer7000Events, lanBlazer7000InventorySerialNumber=lanBlazer7000InventorySerialNumber, lanBlazer7000PowerSupplyType=lanBlazer7000PowerSupplyType, lanBlazer7000LogLastEntry=lanBlazer7000LogLastEntry, lanBlazer7000SwitchPortVlanBindingMethod=lanBlazer7000SwitchPortVlanBindingMethod, lanBlazer7000InventoryVersion=lanBlazer7000InventoryVersion, lanBlazer7000EventShutdownLog=lanBlazer7000EventShutdownLog, lanBlazer7000HuntGroupStatus=lanBlazer7000HuntGroupStatus, lanBlazer7000PowerControlMode=lanBlazer7000PowerControlMode, lanBlazer7000L2AddrDatabaseMgt=lanBlazer7000L2AddrDatabaseMgt, ods=ods, lanBlazer7000PortCategoryEntry=lanBlazer7000PortCategoryEntry, lanBlazer7000SwitchPortTrunkingMode=lanBlazer7000SwitchPortTrunkingMode, lanBlazer7000HuntGroupMgt=lanBlazer7000HuntGroupMgt, lanBlazer7000SwitchingLayerII=lanBlazer7000SwitchingLayerII, lanBlazer7000EventTrapID=lanBlazer7000EventTrapID, lanBlazer7000PortFlowControlTable=lanBlazer7000PortFlowControlTable, lanBlazer7000ActiveAlarmIndex=lanBlazer7000ActiveAlarmIndex, lanBlazer7000EventEntry=lanBlazer7000EventEntry, lanBlazer7000ModuleName=lanBlazer7000ModuleName, lanBlazer7000PortAutoNegotiationMgt=lanBlazer7000PortAutoNegotiationMgt, lanBlazer7000BridgePortEnable=lanBlazer7000BridgePortEnable, lanBlazer7000PortSpeedTable=lanBlazer7000PortSpeedTable, lanBlazer7000SwitchPortKnownMode=lanBlazer7000SwitchPortKnownMode, lanBlazer7000BridgeStpTimeSinceTopologyChange=lanBlazer7000BridgeStpTimeSinceTopologyChange, lanBlazer7000TempEntry=lanBlazer7000TempEntry, lanBlazer7000InventoryManufactureInfo=lanBlazer7000InventoryManufactureInfo, lanBlazer7000BridgeStpForwardDelay=lanBlazer7000BridgeStpForwardDelay, lanBlazer7000L2AddressChangeWraps=lanBlazer7000L2AddressChangeWraps, lanBlazer7000PortPacePriorityMode=lanBlazer7000PortPacePriorityMode, lanBlazer7000BufferPriorityThreshold=lanBlazer7000BufferPriorityThreshold, lanBlazer7000L2AddressVlanID=lanBlazer7000L2AddressVlanID, lanBlazer7000BridgePortPriority=lanBlazer7000BridgePortPriority, lanBlazer7000BufferCongestion=lanBlazer7000BufferCongestion, lanBlazer7000ChassisGen=lanBlazer7000ChassisGen, lanBlazer7000VlanEntry=lanBlazer7000VlanEntry, lanBlazer7000EventIndex=lanBlazer7000EventIndex, lanBlazer7000CommunityEntry=lanBlazer7000CommunityEntry, lanBlazer7000BridgeStpHoldTime=lanBlazer7000BridgeStpHoldTime, lanBlazer7000PortSpeedMgt=lanBlazer7000PortSpeedMgt, lanBlazer7000BufferPriorityAllocation=lanBlazer7000BufferPriorityAllocation, lanBlazer7000SwitchPortHuntGroup=lanBlazer7000SwitchPortHuntGroup, lanBlazer7000VlanName=lanBlazer7000VlanName, lanBlazer7000L2AddressEntry=lanBlazer7000L2AddressEntry, lanBlazer7000ActiveAlarmOwner=lanBlazer7000ActiveAlarmOwner, lanBlazer7000CommunityString=lanBlazer7000CommunityString, lanBlazer7000PowerSupplyOutputStatus=lanBlazer7000PowerSupplyOutputStatus, lanBlazer7000VirtualSwitchPortBindingType=lanBlazer7000VirtualSwitchPortBindingType, lanBlazer7000EventLog=lanBlazer7000EventLog, lanBlazer7000EventShutdownLogID=lanBlazer7000EventShutdownLogID, lanBlazer7000BufferPriorityServicing=lanBlazer7000BufferPriorityServicing, lanBlazer7000L2AddressForward=lanBlazer7000L2AddressForward, lanBlazer7000EventTrapResID=lanBlazer7000EventTrapResID, lanBlazer7000CommunityStatus=lanBlazer7000CommunityStatus, lanBlazer7000BufferFabricPortDirection=lanBlazer7000BufferFabricPortDirection, lanBlazer7000ModulePorts=lanBlazer7000ModulePorts, lanBlazer7000HuntGroupBasePort=lanBlazer7000HuntGroupBasePort, lanBlazer7000SwitchPortFastStart=lanBlazer7000SwitchPortFastStart, lanBlazer7000EventShutdownLogResType=lanBlazer7000EventShutdownLogResType, lanBlazer7000L2AddrSummaryTable=lanBlazer7000L2AddrSummaryTable, lanBlazer7000L2AddrControlMgt=lanBlazer7000L2AddrControlMgt, lanBlazer70003ComMappingTableStatus=lanBlazer70003ComMappingTableStatus, lanBlazer7000EventShutdownLogSeverity=lanBlazer7000EventShutdownLogSeverity, lanBlazer7000VirtualSwitchPortIndex=lanBlazer7000VirtualSwitchPortIndex, lanBlazer7000SwitchPortEntry=lanBlazer7000SwitchPortEntry, lanBlazer7000PortAutoNegotiationDuplexAdvertisement=lanBlazer7000PortAutoNegotiationDuplexAdvertisement, lanBlazer7000BufferEntry=lanBlazer7000BufferEntry, lanBlazer7000SwitchPortIndex=lanBlazer7000SwitchPortIndex, lanBlazer7000AgentGen=lanBlazer7000AgentGen, lanBlazer7000VlanAFTIndex=lanBlazer7000VlanAFTIndex, lanBlazer7000BufferHighOverflowDrops=lanBlazer7000BufferHighOverflowDrops, lanBlazer7000BridgePortForwardTransitions=lanBlazer7000BridgePortForwardTransitions, lanBlazer7000PowerSystems=lanBlazer7000PowerSystems, lanBlazer7000SwitchPortSTAPMode=lanBlazer7000SwitchPortSTAPMode, lanBlazer7000PortRateLimitMode=lanBlazer7000PortRateLimitMode, lanBlazer7000AlarmGeneralActiveEntries=lanBlazer7000AlarmGeneralActiveEntries, lanBlazer7000PortFlowControlEntry=lanBlazer7000PortFlowControlEntry, lanBlazer7000PortEntry=lanBlazer7000PortEntry, lanBlazer7000PortSpeedState=lanBlazer7000PortSpeedState, lanBlazer7000L2AddressControlPortBinding=lanBlazer7000L2AddressControlPortBinding, lanBlazer7000PowerUsed=lanBlazer7000PowerUsed, lanBlazer7000BridgeMode=lanBlazer7000BridgeMode, lanBlazer7000BridgeType=lanBlazer7000BridgeType, lanBlazer7000PortGroupBinding=lanBlazer7000PortGroupBinding, lanBlazer7000PowerControlPriority=lanBlazer7000PowerControlPriority, lanBlazer7000BridgePortEntry=lanBlazer7000BridgePortEntry, lanBlazer7000L2AddrSummary=lanBlazer7000L2AddrSummary, lanBlazer7000PortAutoNegotiationSpeedAdvertisement=lanBlazer7000PortAutoNegotiationSpeedAdvertisement, lanBlazer7000SwitchPortPhysicalPort=lanBlazer7000SwitchPortPhysicalPort, lanBlazer7000AlarmGeneralTimeStamp=lanBlazer7000AlarmGeneralTimeStamp, lanBlazer7000SwitchPortTable=lanBlazer7000SwitchPortTable, lanBlazer7000PowerSupplyTable=lanBlazer7000PowerSupplyTable, lanBlazer7000VirtualSwitchPortTable=lanBlazer7000VirtualSwitchPortTable, lanBlazer7000InventoryResourceIndex=lanBlazer7000InventoryResourceIndex, lanBlazer7000BridgeStpRootCost=lanBlazer7000BridgeStpRootCost, lanBlazer7000PowerCapacity=lanBlazer7000PowerCapacity, lanBlazer7000PowerControlTable=lanBlazer7000PowerControlTable, lanBlazer7000EventShutdownLogResID=lanBlazer7000EventShutdownLogResID, lanBlazer7000ActiveAlarmTable=lanBlazer7000ActiveAlarmTable, lanBlazer7000PowerSupplyStatus=lanBlazer7000PowerSupplyStatus, odsLANBlazer=odsLANBlazer, lanBlazer7000EventLogDTM=lanBlazer7000EventLogDTM, lanBlazer7000EventLogTable=lanBlazer7000EventLogTable, lanBlazer7000PortDuplexMgt=lanBlazer7000PortDuplexMgt, lanBlazer7000L2AddressIndex=lanBlazer7000L2AddressIndex, lanBlazer7000VlanAutoIncrementHTSize=lanBlazer7000VlanAutoIncrementHTSize, lanBlazer7000VlanMappings=lanBlazer7000VlanMappings, lanBlazer7000ShutdownLogAcknowledged=lanBlazer7000ShutdownLogAcknowledged, lanBlazer70003ComMappingTableIndex=lanBlazer70003ComMappingTableIndex, lanBlazer7000Vlan3ComMappingTable=lanBlazer7000Vlan3ComMappingTable, lanBlazer7000LogTableMaxSize=lanBlazer7000LogTableMaxSize, lanBlazer7000EventLogResID=lanBlazer7000EventLogResID, lanBlazer7000L2AddressControlPersistence=lanBlazer7000L2AddressControlPersistence, lanBlazer7000BridgePortFastStart=lanBlazer7000BridgePortFastStart, lanBlazer7000PortIndex=lanBlazer7000PortIndex, lanBlazer7000BridgeIndex=lanBlazer7000BridgeIndex, lanBlazer7000Vlan3ComMappingIndex=lanBlazer7000Vlan3ComMappingIndex, lanBlazer7000InventoryScratchPad=lanBlazer7000InventoryScratchPad, lanBlazer7000L2AddressControlIndex=lanBlazer7000L2AddressControlIndex, lanBlazer7000Agent=lanBlazer7000Agent, lanBlazer7000HuntGroupLoadSharing=lanBlazer7000HuntGroupLoadSharing, lanBlazer7000PortAutoNegotiationMode=lanBlazer7000PortAutoNegotiationMode, lanBlazer7000Chassis=lanBlazer7000Chassis, lanBlazer7000L2AddressTable=lanBlazer7000L2AddressTable, lanBlazer7000FanTrap=lanBlazer7000FanTrap, lanBlazer7000SwitchSuperAgingTime=lanBlazer7000SwitchSuperAgingTime, lanBlazer7000HuntGroupEntry=lanBlazer7000HuntGroupEntry, lanBlazer7000CommunityAccess=lanBlazer7000CommunityAccess, lanBlazer7000PortSpeedEntry=lanBlazer7000PortSpeedEntry, lanBlazer7000L2AddrChangeMgt=lanBlazer7000L2AddrChangeMgt, lanBlazer7000BufferAgeTimer=lanBlazer7000BufferAgeTimer, lanBlazer7000SnmpTraps=lanBlazer7000SnmpTraps, lanBlazer7000PortMirroringRate=lanBlazer7000PortMirroringRate, lanBlazer7000SwitchPortConvertToStatic=lanBlazer7000SwitchPortConvertToStatic, lanBlazer7000PortFlowControlMode=lanBlazer7000PortFlowControlMode, lanBlazer7000EventTrapResLeaf=lanBlazer7000EventTrapResLeaf, lanBlazer7000VlanExchangeSwitch=lanBlazer7000VlanExchangeSwitch, lanBlazer7000BufferIndex=lanBlazer7000BufferIndex, lanBlazer7000L2AddrSummaryMgt=lanBlazer7000L2AddrSummaryMgt, lanBlazer7000BridgeStpBridgeForwardDelay=lanBlazer7000BridgeStpBridgeForwardDelay, lanBlazer7000ModuleTable=lanBlazer7000ModuleTable, lanBlazer7000ActiveAlarmLeaf=lanBlazer7000ActiveAlarmLeaf, lanBlazer7000ShutdownLogTableMaxSize=lanBlazer7000ShutdownLogTableMaxSize, lanBlazer7000TempValue=lanBlazer7000TempValue, lanBlazer7000Vlans=lanBlazer7000Vlans, lanBlazer7000PortRateLimitMgt=lanBlazer7000PortRateLimitMgt, lanBlazer7000SwitchSTPConfig=lanBlazer7000SwitchSTPConfig, lanBlazer7000EventShutdownLogEntry=lanBlazer7000EventShutdownLogEntry, lanBlazer7000ModuleSlotOffset=lanBlazer7000ModuleSlotOffset, lanBlazer7000BridgeStpMaxAge=lanBlazer7000BridgeStpMaxAge, lanBlazer7000PortRateLimitBurstSize=lanBlazer7000PortRateLimitBurstSize, lanBlazer7000PortMirroringSourceSubPort=lanBlazer7000PortMirroringSourceSubPort, lanBlazer7000VlanBridgeIndex=lanBlazer7000VlanBridgeIndex, lanBlazer7000EventShutdownLogIndex=lanBlazer7000EventShutdownLogIndex, odsLANBlazer7000Mib=odsLANBlazer7000Mib, lanBlazer7000VlanID=lanBlazer7000VlanID, lanBlazer7000ModuleBaseType=lanBlazer7000ModuleBaseType, lanBlazer7000PortCategoryTable=lanBlazer7000PortCategoryTable, lanBlazer7000PortBaseType=lanBlazer7000PortBaseType, ResourceId=ResourceId, lanBlazer7000ShutdownLogLastEntry=lanBlazer7000ShutdownLogLastEntry, lanBlazer7000EventLogEntry=lanBlazer7000EventLogEntry, lanBlazer7000EventShutdownLogEventIndex=lanBlazer7000EventShutdownLogEventIndex, lanBlazer7000BridgePortDesignatedBridge=lanBlazer7000BridgePortDesignatedBridge, lanBlazer7000PowerSupplyOutputCapacity=lanBlazer7000PowerSupplyOutputCapacity, lanBlazer7000PortDuplexMode=lanBlazer7000PortDuplexMode, lanBlazer7000PortType=lanBlazer7000PortType, lanBlazer7000VlanStatus=lanBlazer7000VlanStatus, lanBlazer7000BridgeStpPriority=lanBlazer7000BridgeStpPriority, lanBlazer7000SwitchPortMirrorMode=lanBlazer7000SwitchPortMirrorMode, lanBlazer7000VlanMgt=lanBlazer7000VlanMgt, lanBlazer7000PortDuplexState=lanBlazer7000PortDuplexState, lanBlazer7000ModuleSlotWidth=lanBlazer7000ModuleSlotWidth, lanBlazer7000VlanInitialHashTableSize=lanBlazer7000VlanInitialHashTableSize, lanBlazer7000PowerSupplies=lanBlazer7000PowerSupplies, lanBlazer7000AgentMIBVersion=lanBlazer7000AgentMIBVersion, lanBlazer7000EventTable=lanBlazer7000EventTable, lanBlazer7000BridgeTable=lanBlazer7000BridgeTable, lanBlazer7000PortAutoNegotiationEntry=lanBlazer7000PortAutoNegotiationEntry, lanBlazer7000EventTrapValue=lanBlazer7000EventTrapValue, lanBlazer7000VlanExchange=lanBlazer7000VlanExchange, lanBlazer7000SwitchPortMgt=lanBlazer7000SwitchPortMgt, lanBlazer7000TempLowerWarning=lanBlazer7000TempLowerWarning, odsLANBlazerMibs=odsLANBlazerMibs, lanBlazer7000ActiveAlarmName=lanBlazer7000ActiveAlarmName, lanBlazer7000L2AddressPersistence=lanBlazer7000L2AddressPersistence, lanBlazer7000PortTable=lanBlazer7000PortTable, lanBlazer7000VlanTable=lanBlazer7000VlanTable, lanBlazer7000Alarms=lanBlazer7000Alarms, lanBlazer7000BridgePortPathCost=lanBlazer7000BridgePortPathCost, lanBlazer7000PortFlowControlMgt=lanBlazer7000PortFlowControlMgt, lanBlazer7000BufferFabricPort=lanBlazer7000BufferFabricPort, lanBlazer7000InventoryTable=lanBlazer7000InventoryTable, lanBlazer7000ActiveAlarmResType=lanBlazer7000ActiveAlarmResType, lanBlazer7000EventTrapValueType=lanBlazer7000EventTrapValueType, lanBlazer7000SwitchPortVlanExchange=lanBlazer7000SwitchPortVlanExchange, lanBlazer7000EventLogSeverity=lanBlazer7000EventLogSeverity, lanBlazer7000HuntGroupName=lanBlazer7000HuntGroupName, lanBlazer7000ChassisType=lanBlazer7000ChassisType, lanBlazer7000EventShutdownLogDescr=lanBlazer7000EventShutdownLogDescr, lanBlazer7000ActiveAlarmVariable=lanBlazer7000ActiveAlarmVariable, odsTPS=odsTPS, lanBlazer7000L2AddrMgmt=lanBlazer7000L2AddrMgmt, lanBlazer7000BridgePortState=lanBlazer7000BridgePortState, lanBlazer7000BridgeStpBridgeHelloTime=lanBlazer7000BridgeStpBridgeHelloTime, lanBlazer7000BridgeStpRootPort=lanBlazer7000BridgeStpRootPort, lanBlazer7000VlanExchangeDomainName=lanBlazer7000VlanExchangeDomainName, lanBlazer7000PortCategoryMode=lanBlazer7000PortCategoryMode, lanBlazer7000SwitchPortMappingMethod=lanBlazer7000SwitchPortMappingMethod, lanBlazer7000SwitchGen=lanBlazer7000SwitchGen, lanBlazer7000HuntGroupNumberOfPorts=lanBlazer7000HuntGroupNumberOfPorts, lanBlazer7000BufferCongestionDrops=lanBlazer7000BufferCongestionDrops, lanBlazer7000BridgePortDesignatedRoot=lanBlazer7000BridgePortDesignatedRoot, lanBlazer7000BridgePortIndex=lanBlazer7000BridgePortIndex, lanBlazer7000EventTrapTime=lanBlazer7000EventTrapTime, lanBlazer7000PortMirroringEntry=lanBlazer7000PortMirroringEntry, lanBlazer7000PortSpeedMode=lanBlazer7000PortSpeedMode, lanBlazer7000SwitchPortVlanID=lanBlazer7000SwitchPortVlanID, lanBlazer7000BridgePortEnableChangeDetection=lanBlazer7000BridgePortEnableChangeDetection, lanBlazer7000InventoryResourceType=lanBlazer7000InventoryResourceType, lanBlazer7000BridgeStpBridgeMaxAge=lanBlazer7000BridgeStpBridgeMaxAge, lanBlazer7000PortRateLimitEntry=lanBlazer7000PortRateLimitEntry, lanBlazer7000PortRateLimitRate=lanBlazer7000PortRateLimitRate, lanBlazer7000PortCategoryMgt=lanBlazer7000PortCategoryMgt, lanBlazer7000AgentWeb=lanBlazer7000AgentWeb, lanBlazer7000TempLowerLimit=lanBlazer7000TempLowerLimit) mibBuilder.exportSymbols('ODSLANBlazer7000-MIB', lanBlazer7000PortMirroringTable=lanBlazer7000PortMirroringTable, lanBlazer7000PortConnector=lanBlazer7000PortConnector, lanBlazer7000PortDuplexEntry=lanBlazer7000PortDuplexEntry, lanBlazer7000VirtualPorts=lanBlazer7000VirtualPorts, lanBlazer7000EventShutdownLogEpochTime=lanBlazer7000EventShutdownLogEpochTime, lanBlazer7000EventTrapAction=lanBlazer7000EventTrapAction, lanBlazer7000EventShutdownLogTable=lanBlazer7000EventShutdownLogTable, lanBlazer7000PowerSupplyEntry=lanBlazer7000PowerSupplyEntry, lanBlazer7000L2AddressControlVlanID=lanBlazer7000L2AddressControlVlanID, lanBlazer70003ComMappingTable=lanBlazer70003ComMappingTable, lanBlazer7000ConfigurationTrap=lanBlazer7000ConfigurationTrap, lanBlazer7000VlanExchangeUpdateTimeStamp=lanBlazer7000VlanExchangeUpdateTimeStamp, lanBlazer70003ComMappingEntry=lanBlazer70003ComMappingEntry, lanBlazer7000L2AddressControlStatus=lanBlazer7000L2AddressControlStatus, lanBlazer7000SwitchPortIfIndex=lanBlazer7000SwitchPortIfIndex, lanBlazer7000ActiveAlarmValueLow=lanBlazer7000ActiveAlarmValueLow, lanBlazer7000EventTrapSeverity=lanBlazer7000EventTrapSeverity, lanBlazer7000BridgeStpTopChanges=lanBlazer7000BridgeStpTopChanges, lanBlazer7000EventLogValue=lanBlazer7000EventLogValue, lanBlazer70003ComMapping=lanBlazer70003ComMapping, lanBlazer7000BufferLowOverflowDrops=lanBlazer7000BufferLowOverflowDrops, lanBlazer7000BufferSwitchPort=lanBlazer7000BufferSwitchPort, lanBlazer7000Vlan3ComMapping=lanBlazer7000Vlan3ComMapping, lanBlazer7000EventLogValueType=lanBlazer7000EventLogValueType, lanBlazer7000L2AddressControlEntry=lanBlazer7000L2AddressControlEntry, lanBlazer7000PortMirroringSamplerType=lanBlazer7000PortMirroringSamplerType, lanBlazer7000VlanIfIndex=lanBlazer7000VlanIfIndex, lanBlazer7000EventShutdownLogValue=lanBlazer7000EventShutdownLogValue, lanBlazer7000ActiveAlarmValueHigh=lanBlazer7000ActiveAlarmValueHigh, lanBlazer7000CommunityIndex=lanBlazer7000CommunityIndex, lanBlazer7000ChassisSlots=lanBlazer7000ChassisSlots, RowStatus=RowStatus, lanBlazer7000L2AddressChangeMaxEntries=lanBlazer7000L2AddressChangeMaxEntries, lanBlazer7000TempUpperLimit=lanBlazer7000TempUpperLimit, lanBlazer7000VlanExchangeState=lanBlazer7000VlanExchangeState, lanBlazer7000EventLogID=lanBlazer7000EventLogID, lanBlazer7000CommunityTrapReceiver=lanBlazer7000CommunityTrapReceiver, lanBlazer7000L2AddressStatus=lanBlazer7000L2AddressStatus, lanBlazer7000L2AddressChangeIndexChanged=lanBlazer7000L2AddressChangeIndexChanged, lanBlazer7000SwitchPortAutoVlanCreation=lanBlazer7000SwitchPortAutoVlanCreation, lanBlazer7000VlanLearnStatus=lanBlazer7000VlanLearnStatus, lanBlazer7000L2AddressChangeEntry=lanBlazer7000L2AddressChangeEntry, lanBlazer7000Vlan3ComMappingStatus=lanBlazer7000Vlan3ComMappingStatus, lanBlazer7000L2AddressMacAddress=lanBlazer7000L2AddressMacAddress, lanBlazer7000Vlan3ComMappingVlanID=lanBlazer7000Vlan3ComMappingVlanID, lanBlazer7000EventLogResLeaf=lanBlazer7000EventLogResLeaf, lanBlazer7000EventTrapEpochTime=lanBlazer7000EventTrapEpochTime, lanBlazer7000EventLogResType=lanBlazer7000EventLogResType, lanBlazer7000EventShutdownLogValueType=lanBlazer7000EventShutdownLogValueType, lanBlazer7000PortMirroringMgt=lanBlazer7000PortMirroringMgt, lanBlazer7000PortMirroringMirrorPort=lanBlazer7000PortMirroringMirrorPort, lanBlazer7000VirtualSwitchPortFormat=lanBlazer7000VirtualSwitchPortFormat, lanBlazer7000PowerControlUsed=lanBlazer7000PowerControlUsed, lanBlazer7000Inventory=lanBlazer7000Inventory, lanBlazer7000AlarmMgt=lanBlazer7000AlarmMgt, lanBlazer7000PortDuplexTable=lanBlazer7000PortDuplexTable, lanBlazer7000ModuleType=lanBlazer7000ModuleType, lanBlazer7000BridgeStpHelloTime=lanBlazer7000BridgeStpHelloTime, lanBlazer7000BridgePortDesignatedCost=lanBlazer7000BridgePortDesignatedCost, lanBlazer7000BridgePortDesignatedPort=lanBlazer7000BridgePortDesignatedPort, lanBlazer7000InventoryModelNumber=lanBlazer7000InventoryModelNumber, lanBlazer7000BridgeEntry=lanBlazer7000BridgeEntry, lanBlazer7000L2AddressTableIndex=lanBlazer7000L2AddressTableIndex, lanBlazer7000LogWraps=lanBlazer7000LogWraps, lanBlazer7000L2AddressChangeTable=lanBlazer7000L2AddressChangeTable, lanBlazer7000SystemTrap=lanBlazer7000SystemTrap, lanBlazer7000ResourceTrap=lanBlazer7000ResourceTrap, DisplayString=DisplayString, lanBlazer7000AgentWebServerURL=lanBlazer7000AgentWebServerURL, lanBlazer7000L2AddressChangeIndex=lanBlazer7000L2AddressChangeIndex, lanBlazer7000EventLogMgt=lanBlazer7000EventLogMgt, lanBlazer7000PortMirroringIndex=lanBlazer7000PortMirroringIndex, lanBlazer7000PortMode=lanBlazer7000PortMode, lanBlazer7000EventLogAction=lanBlazer7000EventLogAction, lanBlazer7000BufferLowStaleDrops=lanBlazer7000BufferLowStaleDrops, Timeout=Timeout, lanBlazer7000EventTrapType=lanBlazer7000EventTrapType, lanBlazer7000CommunityAddress=lanBlazer7000CommunityAddress, lanBlazer7000AgentMgrIndex=lanBlazer7000AgentMgrIndex, lanBlazer7000PortAutoNegotiationTable=lanBlazer7000PortAutoNegotiationTable, lanBlazer7000L2AddressChangeWrapCount=lanBlazer7000L2AddressChangeWrapCount, lanBlazer7000PortRateLimitTable=lanBlazer7000PortRateLimitTable, lanBlazer7000EventTrapMgmt=lanBlazer7000EventTrapMgmt, lanBlazer7000EventTrapResType=lanBlazer7000EventTrapResType, lanBlazer7000EventLogEventIndex=lanBlazer7000EventLogEventIndex, lanBlazer7000EventShutdownLogTime=lanBlazer7000EventShutdownLogTime, lanBlazer7000SwitchPortIgnoreTag=lanBlazer7000SwitchPortIgnoreTag, lanBlazer7000EventShutdownLogType=lanBlazer7000EventShutdownLogType, lanBlazer7000PowerSupplyInputStatus=lanBlazer7000PowerSupplyInputStatus, lanBlazer7000CommunityAddressType=lanBlazer7000CommunityAddressType, lanBlazer7000BufferMemory=lanBlazer7000BufferMemory, lanBlazer7000TemperatureTrap=lanBlazer7000TemperatureTrap, lanBlazer7000CommunityTable=lanBlazer7000CommunityTable, lanBlazer70003ComMappingTableName=lanBlazer70003ComMappingTableName, lanBlazer7000L2AddressControlTable=lanBlazer7000L2AddressControlTable, lanBlazer7000L2AddressBindingValid=lanBlazer7000L2AddressBindingValid, lanBlazer7000EventMode=lanBlazer7000EventMode, lanBlazer7000EventLogEpochTime=lanBlazer7000EventLogEpochTime, lanBlazer7000L2AddressChangeSummary=lanBlazer7000L2AddressChangeSummary, lanBlazer7000EventLogIndex=lanBlazer7000EventLogIndex, lanBlazer7000ModuleEntry=lanBlazer7000ModuleEntry, lanBlazer7000Vlan3ComMappingEntry=lanBlazer7000Vlan3ComMappingEntry, lanBlazer7000L2AddressControlPriority=lanBlazer7000L2AddressControlPriority, lanBlazer7000PortPacePriorityTable=lanBlazer7000PortPacePriorityTable, lanBlazer7000Ports=lanBlazer7000Ports, lanBlazer7000EventShutdownLogDTM=lanBlazer7000EventShutdownLogDTM, lanBlazer7000EventTrapDTM=lanBlazer7000EventTrapDTM, lanBlazer7000BufferHighStaleDrops=lanBlazer7000BufferHighStaleDrops, lanBlazer7000BridgeStatus=lanBlazer7000BridgeStatus, lanBlazer7000HuntGroupIndex=lanBlazer7000HuntGroupIndex, lanBlazer7000VirtualSwitchPortEntry=lanBlazer7000VirtualSwitchPortEntry, ResourceType=ResourceType, lanBlazer7000L2AddressPriority=lanBlazer7000L2AddressPriority, lanBlazer7000EventShutdownLogResLeaf=lanBlazer7000EventShutdownLogResLeaf, lanBlazer7000Switching=lanBlazer7000Switching, lanBlazer7000CommunitySecurityLevel=lanBlazer7000CommunitySecurityLevel, lanBlazer7000AgentWebServerHelpDirectory=lanBlazer7000AgentWebServerHelpDirectory, lanBlazer7000EventTrapDescr=lanBlazer7000EventTrapDescr, lanBlazer7000EventTrapEventIndex=lanBlazer7000EventTrapEventIndex, lanBlazer7000EventMgt=lanBlazer7000EventMgt, lanBlazer7000PortName=lanBlazer7000PortName, lanBlazer7000SwitchPort3ComMappingTableIndex=lanBlazer7000SwitchPort3ComMappingTableIndex, lanBlazer7000Modules=lanBlazer7000Modules, lanBlazer7000TempIndex=lanBlazer7000TempIndex, lanBlazer7000PowerTrap=lanBlazer7000PowerTrap, lanBlazer7000AlarmGeneral=lanBlazer7000AlarmGeneral, lanBlazer7000TempUpperWarning=lanBlazer7000TempUpperWarning, lanBlazer7000Temperature=lanBlazer7000Temperature, lanBlazer7000L2AddressControlMacAddress=lanBlazer7000L2AddressControlMacAddress, lanBlazer7000InventoryEntry=lanBlazer7000InventoryEntry, lanBlazer7000BufferTable=lanBlazer7000BufferTable, lanBlazer7000ActiveAlarmEntry=lanBlazer7000ActiveAlarmEntry, lanBlazer7000VlanExchangeConfigRevNum=lanBlazer7000VlanExchangeConfigRevNum, lanBlazer7000L2AddressCopy=lanBlazer7000L2AddressCopy, lanBlazer7000EventLogTime=lanBlazer7000EventLogTime, lanBlazer7000BridgePortSetDefault=lanBlazer7000BridgePortSetDefault, lanBlazer7000ShutdownLogMgt=lanBlazer7000ShutdownLogMgt, lanBlazer7000HuntGroupTable=lanBlazer7000HuntGroupTable, lanBlazer7000BridgeStpDesignatedRoot=lanBlazer7000BridgeStpDesignatedRoot, EventCategory=EventCategory, BridgeId=BridgeId, lanBlazer7000L2AddressPortBinding=lanBlazer7000L2AddressPortBinding)
def wiggle_sort(nums: list) -> list: """ Python implementation of wiggle. Example: >>> wiggle_sort([0, 5, 3, 2, 2]) [0, 5, 2, 3, 2] >>> wiggle_sort([]) [] >>> wiggle_sort([-2, -5, -45]) [-45, -2, -5] >>> wiggle_sort([-2.1, -5.68, -45.11]) [-45.11, -2.1, -5.68] """ for i, _ in enumerate(nums): if (i % 2 == 1) == (nums[i - 1] > nums[i]): nums[i - 1], nums[i] = nums[i], nums[i - 1] return nums if __name__ == "__main__": print("Enter the array elements:") array = list(map(int, input().split())) print("The unsorted array is:") print(array) print("Array after Wiggle sort:") print(wiggle_sort(array))
def wiggle_sort(nums: list) -> list: """ Python implementation of wiggle. Example: >>> wiggle_sort([0, 5, 3, 2, 2]) [0, 5, 2, 3, 2] >>> wiggle_sort([]) [] >>> wiggle_sort([-2, -5, -45]) [-45, -2, -5] >>> wiggle_sort([-2.1, -5.68, -45.11]) [-45.11, -2.1, -5.68] """ for (i, _) in enumerate(nums): if (i % 2 == 1) == (nums[i - 1] > nums[i]): (nums[i - 1], nums[i]) = (nums[i], nums[i - 1]) return nums if __name__ == '__main__': print('Enter the array elements:') array = list(map(int, input().split())) print('The unsorted array is:') print(array) print('Array after Wiggle sort:') print(wiggle_sort(array))
""" RiscEmu (c) 2021 Anton Lydike SPDX-License-Identifier: MIT """ # Colors """ FMT_RED = '\033[31m' FMT_ORANGE = '\033[33m' FMT_GRAY = '\033[37m' FMT_CYAN = '\033[36m' FMT_GREEN = '\033[32m' FMT_MAGENTA = '\033[35m' FMT_BLUE = '\033[34m' FMT_YELLOW = '\033[93m' FMT_BOLD = '\033[1m' FMT_NONE = '\033[0m' FMT_UNDERLINE = '\033[4m' """ #commented out above for catsoop consumption (get rid of colors for now -jds April, 2022) FMT_RED = '' FMT_ORANGE = '' FMT_GRAY = '' FMT_CYAN = '' FMT_GREEN = '' FMT_MAGENTA = '' FMT_BLUE = '' FMT_YELLOW = '' FMT_BOLD = '' FMT_NONE = '' FMT_UNDERLINE = '' FMT_ERROR = FMT_RED + FMT_BOLD FMT_MEM = FMT_CYAN + FMT_BOLD FMT_PARSE = FMT_CYAN + FMT_BOLD FMT_CPU = FMT_BLUE + FMT_BOLD FMT_SYSCALL = FMT_YELLOW + FMT_BOLD FMT_DEBUG = FMT_MAGENTA + FMT_BOLD FMT_CSR = FMT_ORANGE + FMT_BOLD
""" RiscEmu (c) 2021 Anton Lydike SPDX-License-Identifier: MIT """ "\nFMT_RED = '\x1b[31m'\nFMT_ORANGE = '\x1b[33m'\nFMT_GRAY = '\x1b[37m'\nFMT_CYAN = '\x1b[36m'\nFMT_GREEN = '\x1b[32m'\nFMT_MAGENTA = '\x1b[35m'\nFMT_BLUE = '\x1b[34m'\nFMT_YELLOW = '\x1b[93m'\n\nFMT_BOLD = '\x1b[1m'\nFMT_NONE = '\x1b[0m'\nFMT_UNDERLINE = '\x1b[4m'\n" fmt_red = '' fmt_orange = '' fmt_gray = '' fmt_cyan = '' fmt_green = '' fmt_magenta = '' fmt_blue = '' fmt_yellow = '' fmt_bold = '' fmt_none = '' fmt_underline = '' fmt_error = FMT_RED + FMT_BOLD fmt_mem = FMT_CYAN + FMT_BOLD fmt_parse = FMT_CYAN + FMT_BOLD fmt_cpu = FMT_BLUE + FMT_BOLD fmt_syscall = FMT_YELLOW + FMT_BOLD fmt_debug = FMT_MAGENTA + FMT_BOLD fmt_csr = FMT_ORANGE + FMT_BOLD
""" CHALLENGE - Extensions """ # ** Challenge** Add each element of the tuple1 to list1 *individually* and print the result. list1 = [6, 12, 9, 4, 10, 1] tuples = [(15,3), (6,2), (1, 8)]
""" CHALLENGE - Extensions """ list1 = [6, 12, 9, 4, 10, 1] tuples = [(15, 3), (6, 2), (1, 8)]
def welcome(): starsintro = "*" * 38 welcomemessage = (""" ** Welcome to the Snakes Cafe! ** ** Please see our menu below. ** ** ** ** To quit at any time, type "quit" ** """) print(" " + starsintro + welcomemessage + starsintro) welcome() def menu(): Appetizers = (""" Appetizers ---------- Wings Cookies Spring Rolls """) Entrees = (""" Entrees ------- Salmon Steak Meat Tornado A Literal Garden """) Desserts = (""" Desserts -------- Ice Cream Cake Pie """) Drinks = (""" Drinks ------ Coffee Tea Unicorn Tears""") print(Appetizers + Entrees + Desserts + Drinks) menu() def order(): starsintro = "*" * 38 whatorder = """ ** What would you like to order? ** """ print(" " + starsintro + whatorder + starsintro) orderlist = [] while True: userorder = str(input("> ")) totalitems = len(orderlist) strlist = ', '.join(orderlist) if userorder == "quit": break else: orderlist.append(userorder) print("** " + str(totalitems) + " order of" + " " + strlist + " " + "have been added to your meal **") order() # print(starsintro) # welcome = "**" + " " + "Welcome to the Snakes Cafe!" + " " + "**" # print(welcome) # please = "**" + " " + "Please see our menu below." + " " + "**" # print(please) # twostar = "**" # print(twostar) # toquit = "**" + " " + 'To quit at any time, type "quit"' + " " + "**" # print(toquit) # print(starsintro) # print() # apps = "Appetizers" # print(apps) # hyphens = "-" * 10 # print(hyphens) # applist = [] # applist.append("Wings") # applist.append("Cookies") # applist.append("Spring Rolls") # print(applist[0]) # print(applist[1]) # print(applist[2]) # print() # entrees = "Entrees" # print(entrees) # hyphsev = "-" * 7 # print(hyphsev) # entreelist = [] # entreelist.append("Salmon") # entreelist.append("Steak") # entreelist.append("Meat Tornado") # entreelist.append("A Literal Garden") # print(entreelist[0]) # print(entreelist[1]) # print(entreelist[2]) # print(entreelist[3]) # print() # dessert = "Desserts" # hyphten = "-" * 10 # dessertlist = [] # dessertlist.append("Ice Cream") # dessertlist.append("Cake") # dessertlist.append("Pie") # print(dessertlist[0]) # print(dessertlist[1]) # print(dessertlist[2]) # print() # drink = "Drinks" # print(drink) # hyphsix = "-" * 6 # drinklist = [] # drinklist.append("Coffee") # drinklist.append("Tea") # drinklist.append("Unicorn Tears") # print(drinklist[0]) # print(drinklist[1]) # print(drinklist[2]) # print() # print(starsintro) # what = twostar + " " + "What would you like to order?" + " " + twostar # print(what) # print(starsintro)
def welcome(): starsintro = '*' * 38 welcomemessage = '\n ** Welcome to the Snakes Cafe! **\n ** Please see our menu below. **\n ** **\n ** To quit at any time, type "quit" **\n ' print(' ' + starsintro + welcomemessage + starsintro) welcome() def menu(): appetizers = '\n Appetizers\n ----------\n Wings\n Cookies\n Spring Rolls\n ' entrees = '\n Entrees\n -------\n Salmon\n Steak\n Meat Tornado\n A Literal Garden\n ' desserts = '\n Desserts\n --------\n Ice Cream\n Cake\n Pie\n ' drinks = '\n Drinks\n ------\n Coffee\n Tea\n Unicorn Tears' print(Appetizers + Entrees + Desserts + Drinks) menu() def order(): starsintro = '*' * 38 whatorder = ' \n ** What would you like to order? ** \n ' print(' ' + starsintro + whatorder + starsintro) orderlist = [] while True: userorder = str(input('> ')) totalitems = len(orderlist) strlist = ', '.join(orderlist) if userorder == 'quit': break else: orderlist.append(userorder) print('** ' + str(totalitems) + ' order of' + ' ' + strlist + ' ' + 'have been added to your meal **') order()
""" QuoLab Add on for Splunk """ # Assumption: All sys.path fixes have already been applied by the importer __version__ = "0.12.2"
""" QuoLab Add on for Splunk """ __version__ = '0.12.2'
#W.A.P TO CHECK WHETHER THE NO. IS ARMSTRONG NO. x=int(input('Enter a no.')) sum=0 t=x while(t!=0): sum=sum+(int(t%10))**3 t=t/10 if(sum==x): print('It is an armstrong no.') else: print('It is not an armstrong no.')
x = int(input('Enter a no.')) sum = 0 t = x while t != 0: sum = sum + int(t % 10) ** 3 t = t / 10 if sum == x: print('It is an armstrong no.') else: print('It is not an armstrong no.')
# coding: utf8 FILENAME_TYPE = {'full': '_T1w_space-MNI152NLin2009cSym_res-1x1x1_T1w', 'cropped': '_T1w_space-MNI152NLin2009cSym_desc-Crop_res-1x1x1_T1w', 'skull_stripped': '_space-Ixi549Space_desc-skullstripped_T1w'}
filename_type = {'full': '_T1w_space-MNI152NLin2009cSym_res-1x1x1_T1w', 'cropped': '_T1w_space-MNI152NLin2009cSym_desc-Crop_res-1x1x1_T1w', 'skull_stripped': '_space-Ixi549Space_desc-skullstripped_T1w'}
""" From Kapil Sharma's lecture 9 Jun 2020 Given the index of a node, and the head of linked list, delete the node at that index. Singly-linked list Return True if successful; False if not. """ class Node: def __init__(self, value): self.value = value self.next = None def delete_node(index, head): # Edge case if head == None: return False # Current node as we loop along the sll temp = head # Pointer to keep track of position as we loop along the sll track = 0 # Loop until temp becomes None or track is one less than the desired index while temp != None and track < index - 1: temp = temp.next if temp == None or temp.next == None: return False track += 1 # Now that we're out of the loop, temp.next should be the node at our desired index. # Skip the node at temp.next by assigning temp's next property to be the next.next instead. temp.next = temp.next.next return True # Trying it out: # Removing a middle node # 1 -> 2 -> 3 node1 = Node(1) node2 = Node(2) node3 = Node(3) node1.next = node2 node2.next = node3 delete_node(1, node1) print(node1.value) print(node1.next.value) try: print(node1.next.next.value) except AttributeError: print("End of sll") # Removing a tail # 1 -> 3 -> 4 node4 = Node(4) delete_node(2, node1) print(node1.value) print(node1.next.value) try: print(node1.next.next.value) except AttributeError: print("End of sll") # Removing a head # 1 -> 3 delete_node(0, node1) try: print(node1.next.value) except AttributeError: print("Old head is no longer connected to rest of sll") # Edge cases print(delete_node(0, None)) # when head is None print(delete_node(3, node3)) # when index is out of range
""" From Kapil Sharma's lecture 9 Jun 2020 Given the index of a node, and the head of linked list, delete the node at that index. Singly-linked list Return True if successful; False if not. """ class Node: def __init__(self, value): self.value = value self.next = None def delete_node(index, head): if head == None: return False temp = head track = 0 while temp != None and track < index - 1: temp = temp.next if temp == None or temp.next == None: return False track += 1 temp.next = temp.next.next return True node1 = node(1) node2 = node(2) node3 = node(3) node1.next = node2 node2.next = node3 delete_node(1, node1) print(node1.value) print(node1.next.value) try: print(node1.next.next.value) except AttributeError: print('End of sll') node4 = node(4) delete_node(2, node1) print(node1.value) print(node1.next.value) try: print(node1.next.next.value) except AttributeError: print('End of sll') delete_node(0, node1) try: print(node1.next.value) except AttributeError: print('Old head is no longer connected to rest of sll') print(delete_node(0, None)) print(delete_node(3, node3))
T = [3614090360, 3905402710, 606105819, 3250441966, 4118548399, 1200080426, 2821735955, 4249261313, 1770035416, 2336552879, 4294925233, 2304563134, 1804603682, 4254626195, 2792965006, 1236535329, 4129170786, 3225465664, 643717713, 3921069994, 3593408605, 38016083, 3634488961, 3889429448, 568446438, 3275163606, 4107603335, 1163531501, 2850285829, 4243563512, 1735328473, 2368359562, 4294588738, 2272392833, 1839030562, 4259657740, 2763975236, 1272893353, 4139469664, 3200236656, 681279174, 3936430074, 3572445317, 76029189, 3654602809, 3873151461, 530742520, 3299628645, 4096336452, 1126891415, 2878612391, 4237533241, 1700485571, 2399980690, 4293915773, 2240044497, 1873313359, 4264355552, 2734768916, 1309151649, 4149444226, 3174756917, 718787259, 3951481745]
t = [3614090360, 3905402710, 606105819, 3250441966, 4118548399, 1200080426, 2821735955, 4249261313, 1770035416, 2336552879, 4294925233, 2304563134, 1804603682, 4254626195, 2792965006, 1236535329, 4129170786, 3225465664, 643717713, 3921069994, 3593408605, 38016083, 3634488961, 3889429448, 568446438, 3275163606, 4107603335, 1163531501, 2850285829, 4243563512, 1735328473, 2368359562, 4294588738, 2272392833, 1839030562, 4259657740, 2763975236, 1272893353, 4139469664, 3200236656, 681279174, 3936430074, 3572445317, 76029189, 3654602809, 3873151461, 530742520, 3299628645, 4096336452, 1126891415, 2878612391, 4237533241, 1700485571, 2399980690, 4293915773, 2240044497, 1873313359, 4264355552, 2734768916, 1309151649, 4149444226, 3174756917, 718787259, 3951481745]
def driver(): list = [] age1 = input("Enter the first number:") age2 = input("Enter the second number:") def swap(num1, num2): if age1 > age2: list.append(age2) list.append(age1) if age1 < age2: list.append(age1) list.append(age2) swap(age1,age2) print("the swapped result (from least to greatest)", list) if __name__ == "__main__": driver()
def driver(): list = [] age1 = input('Enter the first number:') age2 = input('Enter the second number:') def swap(num1, num2): if age1 > age2: list.append(age2) list.append(age1) if age1 < age2: list.append(age1) list.append(age2) swap(age1, age2) print('the swapped result (from least to greatest)', list) if __name__ == '__main__': driver()
db_config = { # 'host': 'localhost', # 'port': 1337, # 'unix_socket': '/var/lib/mysql/mysql.sock', 'user': 'root', # 'passwd': 'password, 'db': 'logs_db' }
db_config = {'user': 'root', 'db': 'logs_db'}
def Ro_decimal_constr(x_par): """ The function to compute the non linear contraint of the Ro parameter. :param list x_par: list of parameters, beta, r and pop. :return: the Ro value. :rtype: float """ if len(x_par) == 3: return x_par[0] * x_par[2] / x_par[1] else: return x_par[0] / x_par[1]
def ro_decimal_constr(x_par): """ The function to compute the non linear contraint of the Ro parameter. :param list x_par: list of parameters, beta, r and pop. :return: the Ro value. :rtype: float """ if len(x_par) == 3: return x_par[0] * x_par[2] / x_par[1] else: return x_par[0] / x_par[1]
make_numbers = {'American Motors': 1, 'Jeep/Kaiser-Jeep/Willys Jeep': 2, 'AM General': 3, 'Chrysler': 6, 'Dodge': 7, 'Imperial': 8, 'Plymouth': 9, 'Eagle': 10, 'Ford': 12, 'Lincoln': 13, 'Mercury': 14, 'Buick/Opel': 18, 'Cadillac': 19, 'Chevrolet': 20, 'Oldsmobile': 21, 'Pontiac': 22, 'GMC': 23, 'Saturn': 24, 'Grumman': 25, 'Coda': 26, 'Other Domestic': 29, 'Volkswagon': 30, 'Alfa Romeo': 31, 'Audi': 32, 'Austin/Austin-Healey': 33, 'BMW': 34, 'Datsun/Nissan': 35, 'Fiat': 36, 'Honda': 37, 'Isuzu': 38, 'Jaguar': 39, 'Lancia': 40, 'Mazda': 41, 'Mercedes-Benz': 42, 'MG': 43, 'Peugeot': 44, 'Porsche': 45, 'Renault': 46, 'Saab': 47, 'Subaru': 48, 'Toyota': 49, 'Triumph': 50, 'Volvo': 51, 'Mitsubishi': 52, 'Suzuki': 53, 'Acura': 54, 'Hyundai': 55, 'Merkur': 56, 'Yugo': 57, 'Infiniti': 58, 'Lexus': 59, 'Daihatsu': 60, 'Land Rover': 62, 'Kia': 63, 'Daewoo': 64, 'Smart': 65, 'Mahindra': 66, 'Scion': 67, 'Other Imports': 69, 'BSA': 70, 'Ducati': 71, 'Harley-Davidson': 72, 'Kawasaki': 73, 'Moto Guzzi': 74, 'Norton': 75, 'Yamaha': 76, 'Victory': 77, 'Other Make Moped': 78, 'Other Make Motored Cycle': 79, 'Brockway': 80, 'Diamond Reo/Reo': 81, 'Freightliner': 82, 'FWD': 83, 'International Harvester/Navistar': 84, 'Kenworth': 85, 'Mack': 86, 'Peterbilt': 87, 'Iveco/Magirus': 88, 'White/Autocar, White/GMC': 89, 'Bluebird': 90, 'Eagle Coach': 91, 'Gillig': 92, 'MCI': 93, 'Thomas Built': 94, 'Not Reported': 97, 'Other Make': 98, 'Unknown': 99 } model_numbers = { 'Automobiles': 0, 'Other(Autos)': 1, 'Unknown (Autos)': 2, 'Light Trucks': 3, 'Other (Light Trucks)': 4, 'Unknown (LT)': 5, 'Other (LSV or NEV)': 6, 'Unknown (LSV OR NEV)': 7, 'Motorcycles': 8, 'Electric Motorcycle': 9, 'Unknown cc (Motorcycles)': 10, 'All-Terrain Vehicles': 11, 'Unknown cc (ATV)Unkown (motored cycle)': 12, 'Other Make (Med/Heavy Trucks)': 13, 'Motor Home': 14, 'Med/Heavy Van-Based Vehicle': 15, 'Med/Heavy Pickup': 16, 'Med/Heavy Trucks - CBE': 17, 'Med/Heavy Trucks - COE': 18, 'Med/Heavy Trucks - COE (low entry)': 19, 'Med/Heavy Trucks - COE (high entry)': 20, 'Med/Heavy Trucks - Unknown engine location': 21, 'Med/Heavy Trucks - COE (entry position unknown)': 22, 'Other (Med/Heavy Trucks)': 23, 'Other Make (Buses)': 24, 'Buses': 25, 'Other (Bus)': 26, 'Unknown (Bus)': 27, 'Not Reported': 28, 'Other (Vehicle)': 29 } stateDict = {'AL': '1', 'AK': '2', 'AZ': '4', 'AR': '5', 'CA': '6', 'CO': '8', 'CT': '9', 'DE': '10', 'DC': '11', 'FL': '12', 'GA': '14', 'HI': '15', 'ID': '16', 'IL': '17', 'IN': '18', 'IA': '19', 'KS': '20', 'KY': '21', 'LA': '22', 'ME': '23', 'MD': '24', 'MA': '25', 'MI': '26', 'MN': '27', 'MS': '28', 'MO': '29', 'MT': '30', 'NE': '31', 'NV': '32', 'NH': '33', 'NJ': '34', 'NM': '35', 'NY': '36', 'NC': '37', 'ND': '38', 'OH': '39', 'OK': '40', 'OR': '41', 'PA': '42', 'RI': '44', 'SC': '45', 'SD': '46', 'TN': '47', 'TX': '48', 'UT': '49', 'VT': '50', 'VA': '51', 'WA': '53', 'WV': '54', 'WI': '55', 'WY': '56'} percentDict = { 1: 2.48, 2: 0.18, 4: 2.42, 5: 1.47, 6: 9.73, 8: 1.72, 9: 0.77, 10: 0.35, 11: 0.06, 12: 8.41, 13: 4.30, 15: 0.25, 16: 0.61, 17: 2.85, 18: 2.35, 19: 0.88, 20: 1.05, 21: 2.21, 22: 2.08, 23: 0.42, 24: 1.49, 25: 0.89, 26: 2.88, 27: 1.10, 28: 1.80, 29: 2.50 , 30: 0.46, 31: 0.63, 32: 0.91, 33: 0.29, 34: 1.59, 35: 0.89, 36: 2.77, 37: 3.95, 38: 0.30, 39: 3.23, 40: 1.84, 41: 1.22, 42: 3.39, 44: 0.14, 45: 2.74, 46: 0.30, 47: 2.79, 48: 10.08, 49: 0.79, 50: 0.15, 51: 2.12, 53: 1.55, 54: 0.72, 55: 1.60, 56: 0.32, } percentAvg = 0.87 agePctDict = { "1923" : 0.0007 , "1927" : 0.0007 , "1928" : 0.0014 , "1929" : 0.0033 , "1930" : 0.0014 , "1931" : 0.0014 , "1932" : 0.0049 , "1933" : 0.0007 , "1934" : 0.0019 , "1936" : 0.0007 , "1937" : 0.0021 , "1938" : 0.0007 , "1939" : 0.0005 , "1940" : 0.0042 , "1941" : 0.0026 , "1942" : 0.0005 , "1945" : 0.0007 , "1946" : 0.0026 , "1947" : 0.0021 , "1948" : 0.0012 , "1949" : 0.0014 , "1950" : 0.0021 , "1951" : 0.0007 , "1952" : 0.0014 , "1954" : 0.0026 , "1955" : 0.0007 , "1956" : 0.0021 , "1957" : 0.0035 , "1958" : 0.0035 , "1959" : 0.0007 , "1960" : 0.0007 , "1961" : 0.0021 , "1962" : 0.0033 , "1963" : 0.0040 , "1964" : 0.0061 , "1965" : 0.0098 , "1966" : 0.0107 , "1967" : 0.0184 , "1968" : 0.0168 , "1969" : 0.0165 , "1970" : 0.0235 , "1971" : 0.0168 , "1972" : 0.0191 , "1973" : 0.0205 , "1974" : 0.0275 , "1975" : 0.0273 , "1976" : 0.0291 , "1977" : 0.0312 , "1978" : 0.0419 , "1979" : 0.0485 , "1980" : 0.0408 , "1981" : 0.0508 , "1982" : 0.0627 , "1983" : 0.0767 , "1984" : 0.1230 , "1985" : 0.1524 , "1986" : 0.1904 , "1987" : 0.1932 , "1988" : 0.2880 , "1989" : 0.3248 , "1990" : 0.4264 , "1991" : 0.5042 , "1992" : 0.6249 , "1993" : 0.8579 , "1994" : 1.2075 , "1995" : 1.5372 , "1996" : 1.6099 , "1997" : 2.3112 , "1998" : 2.7998 , "1999" : 3.4210 , "2000" : 4.2897 , "2001" : 4.5612 , "2002" : 5.0798 , "2003" : 5.5447 , "2004" : 5.7146 , "2005" : 6.1470 , "2006" : 6.1405 , "2007" : 6.1072 , "2008" : 5.0095 , "2009" : 3.2556 , "2010" : 3.3213 , "2011" : 3.7244 , "2012" : 4.2890 , "2013" : 4.6695 , "2014" : 4.9049 , "2015" : 5.0565 , "2016" : 3.4043 , "2017" : 1.4311 , "2018" : 0.1200 , } ageAvg = 1.4487 topTenStates = {'TX': 10.079759161352108, 'CA': 9.734905060267915, 'FL': 8.414906085509836, 'GA': 4.301355882442033, 'NC': 3.9460163526086585, 'PA': 3.3898226098465165, 'OH': 3.2283470071091203, 'MI': 2.8816288298028505, 'IL': 2.845046333944595, 'TN': 2.7949492854762834} topTenYears = {2005: 6.1470243518257455, 2006: 6.140500085048477, 2007: 6.107179722578857, 2004: 5.714558668303947, 2003: 5.544694722567206, 2002: 5.079840714686823, 2015: 5.056539761910864, 2008: 5.009471837303427, 2014: 4.904850559339372, 2013: 4.669510936302186} topTenModels = { "Automobiles" : 41.301405, "Light Trucks" : 39.180319, "Motorcycles" : 9.518905, "Med/Heavy Trucks - COE" : 5.799607, "Med/Heavy Trucks - Unknown engine location" : 1.640387, "Med/Heavy Trucks - CBE" : 0.629126, "Unknown cc (Motorcycles)" : 0.392155, "All-Terrain Vehicles" : 0.260272, "Buses" : 0.183145, "Med/Heavy Trucks - COE (low entry)" : 0.154718 } topTenMakes = {"Ford" :14.727600, "Chevrolet" :14.258552, "Toyota" :8.214285, "Honda" :7.517353, "Dodge" :6.421044, "Datsun/Nissan" :4.922559, "Harley-Davidson" :3.934599, "GMC" :3.142833, "Jeep/Kaiser-Jeep/Willys Jeep" :2.622289, "Freightliner" :2.437513 }
make_numbers = {'American Motors': 1, 'Jeep/Kaiser-Jeep/Willys Jeep': 2, 'AM General': 3, 'Chrysler': 6, 'Dodge': 7, 'Imperial': 8, 'Plymouth': 9, 'Eagle': 10, 'Ford': 12, 'Lincoln': 13, 'Mercury': 14, 'Buick/Opel': 18, 'Cadillac': 19, 'Chevrolet': 20, 'Oldsmobile': 21, 'Pontiac': 22, 'GMC': 23, 'Saturn': 24, 'Grumman': 25, 'Coda': 26, 'Other Domestic': 29, 'Volkswagon': 30, 'Alfa Romeo': 31, 'Audi': 32, 'Austin/Austin-Healey': 33, 'BMW': 34, 'Datsun/Nissan': 35, 'Fiat': 36, 'Honda': 37, 'Isuzu': 38, 'Jaguar': 39, 'Lancia': 40, 'Mazda': 41, 'Mercedes-Benz': 42, 'MG': 43, 'Peugeot': 44, 'Porsche': 45, 'Renault': 46, 'Saab': 47, 'Subaru': 48, 'Toyota': 49, 'Triumph': 50, 'Volvo': 51, 'Mitsubishi': 52, 'Suzuki': 53, 'Acura': 54, 'Hyundai': 55, 'Merkur': 56, 'Yugo': 57, 'Infiniti': 58, 'Lexus': 59, 'Daihatsu': 60, 'Land Rover': 62, 'Kia': 63, 'Daewoo': 64, 'Smart': 65, 'Mahindra': 66, 'Scion': 67, 'Other Imports': 69, 'BSA': 70, 'Ducati': 71, 'Harley-Davidson': 72, 'Kawasaki': 73, 'Moto Guzzi': 74, 'Norton': 75, 'Yamaha': 76, 'Victory': 77, 'Other Make Moped': 78, 'Other Make Motored Cycle': 79, 'Brockway': 80, 'Diamond Reo/Reo': 81, 'Freightliner': 82, 'FWD': 83, 'International Harvester/Navistar': 84, 'Kenworth': 85, 'Mack': 86, 'Peterbilt': 87, 'Iveco/Magirus': 88, 'White/Autocar, White/GMC': 89, 'Bluebird': 90, 'Eagle Coach': 91, 'Gillig': 92, 'MCI': 93, 'Thomas Built': 94, 'Not Reported': 97, 'Other Make': 98, 'Unknown': 99} model_numbers = {'Automobiles': 0, 'Other(Autos)': 1, 'Unknown (Autos)': 2, 'Light Trucks': 3, 'Other (Light Trucks)': 4, 'Unknown (LT)': 5, 'Other (LSV or NEV)': 6, 'Unknown (LSV OR NEV)': 7, 'Motorcycles': 8, 'Electric Motorcycle': 9, 'Unknown cc (Motorcycles)': 10, 'All-Terrain Vehicles': 11, 'Unknown cc (ATV)Unkown (motored cycle)': 12, 'Other Make (Med/Heavy Trucks)': 13, 'Motor Home': 14, 'Med/Heavy Van-Based Vehicle': 15, 'Med/Heavy Pickup': 16, 'Med/Heavy Trucks - CBE': 17, 'Med/Heavy Trucks - COE': 18, 'Med/Heavy Trucks - COE (low entry)': 19, 'Med/Heavy Trucks - COE (high entry)': 20, 'Med/Heavy Trucks - Unknown engine location': 21, 'Med/Heavy Trucks - COE (entry position unknown)': 22, 'Other (Med/Heavy Trucks)': 23, 'Other Make (Buses)': 24, 'Buses': 25, 'Other (Bus)': 26, 'Unknown (Bus)': 27, 'Not Reported': 28, 'Other (Vehicle)': 29} state_dict = {'AL': '1', 'AK': '2', 'AZ': '4', 'AR': '5', 'CA': '6', 'CO': '8', 'CT': '9', 'DE': '10', 'DC': '11', 'FL': '12', 'GA': '14', 'HI': '15', 'ID': '16', 'IL': '17', 'IN': '18', 'IA': '19', 'KS': '20', 'KY': '21', 'LA': '22', 'ME': '23', 'MD': '24', 'MA': '25', 'MI': '26', 'MN': '27', 'MS': '28', 'MO': '29', 'MT': '30', 'NE': '31', 'NV': '32', 'NH': '33', 'NJ': '34', 'NM': '35', 'NY': '36', 'NC': '37', 'ND': '38', 'OH': '39', 'OK': '40', 'OR': '41', 'PA': '42', 'RI': '44', 'SC': '45', 'SD': '46', 'TN': '47', 'TX': '48', 'UT': '49', 'VT': '50', 'VA': '51', 'WA': '53', 'WV': '54', 'WI': '55', 'WY': '56'} percent_dict = {1: 2.48, 2: 0.18, 4: 2.42, 5: 1.47, 6: 9.73, 8: 1.72, 9: 0.77, 10: 0.35, 11: 0.06, 12: 8.41, 13: 4.3, 15: 0.25, 16: 0.61, 17: 2.85, 18: 2.35, 19: 0.88, 20: 1.05, 21: 2.21, 22: 2.08, 23: 0.42, 24: 1.49, 25: 0.89, 26: 2.88, 27: 1.1, 28: 1.8, 29: 2.5, 30: 0.46, 31: 0.63, 32: 0.91, 33: 0.29, 34: 1.59, 35: 0.89, 36: 2.77, 37: 3.95, 38: 0.3, 39: 3.23, 40: 1.84, 41: 1.22, 42: 3.39, 44: 0.14, 45: 2.74, 46: 0.3, 47: 2.79, 48: 10.08, 49: 0.79, 50: 0.15, 51: 2.12, 53: 1.55, 54: 0.72, 55: 1.6, 56: 0.32} percent_avg = 0.87 age_pct_dict = {'1923': 0.0007, '1927': 0.0007, '1928': 0.0014, '1929': 0.0033, '1930': 0.0014, '1931': 0.0014, '1932': 0.0049, '1933': 0.0007, '1934': 0.0019, '1936': 0.0007, '1937': 0.0021, '1938': 0.0007, '1939': 0.0005, '1940': 0.0042, '1941': 0.0026, '1942': 0.0005, '1945': 0.0007, '1946': 0.0026, '1947': 0.0021, '1948': 0.0012, '1949': 0.0014, '1950': 0.0021, '1951': 0.0007, '1952': 0.0014, '1954': 0.0026, '1955': 0.0007, '1956': 0.0021, '1957': 0.0035, '1958': 0.0035, '1959': 0.0007, '1960': 0.0007, '1961': 0.0021, '1962': 0.0033, '1963': 0.004, '1964': 0.0061, '1965': 0.0098, '1966': 0.0107, '1967': 0.0184, '1968': 0.0168, '1969': 0.0165, '1970': 0.0235, '1971': 0.0168, '1972': 0.0191, '1973': 0.0205, '1974': 0.0275, '1975': 0.0273, '1976': 0.0291, '1977': 0.0312, '1978': 0.0419, '1979': 0.0485, '1980': 0.0408, '1981': 0.0508, '1982': 0.0627, '1983': 0.0767, '1984': 0.123, '1985': 0.1524, '1986': 0.1904, '1987': 0.1932, '1988': 0.288, '1989': 0.3248, '1990': 0.4264, '1991': 0.5042, '1992': 0.6249, '1993': 0.8579, '1994': 1.2075, '1995': 1.5372, '1996': 1.6099, '1997': 2.3112, '1998': 2.7998, '1999': 3.421, '2000': 4.2897, '2001': 4.5612, '2002': 5.0798, '2003': 5.5447, '2004': 5.7146, '2005': 6.147, '2006': 6.1405, '2007': 6.1072, '2008': 5.0095, '2009': 3.2556, '2010': 3.3213, '2011': 3.7244, '2012': 4.289, '2013': 4.6695, '2014': 4.9049, '2015': 5.0565, '2016': 3.4043, '2017': 1.4311, '2018': 0.12} age_avg = 1.4487 top_ten_states = {'TX': 10.079759161352108, 'CA': 9.734905060267915, 'FL': 8.414906085509836, 'GA': 4.301355882442033, 'NC': 3.9460163526086585, 'PA': 3.3898226098465165, 'OH': 3.2283470071091203, 'MI': 2.8816288298028505, 'IL': 2.845046333944595, 'TN': 2.7949492854762834} top_ten_years = {2005: 6.1470243518257455, 2006: 6.140500085048477, 2007: 6.107179722578857, 2004: 5.714558668303947, 2003: 5.544694722567206, 2002: 5.079840714686823, 2015: 5.056539761910864, 2008: 5.009471837303427, 2014: 4.904850559339372, 2013: 4.669510936302186} top_ten_models = {'Automobiles': 41.301405, 'Light Trucks': 39.180319, 'Motorcycles': 9.518905, 'Med/Heavy Trucks - COE': 5.799607, 'Med/Heavy Trucks - Unknown engine location': 1.640387, 'Med/Heavy Trucks - CBE': 0.629126, 'Unknown cc (Motorcycles)': 0.392155, 'All-Terrain Vehicles': 0.260272, 'Buses': 0.183145, 'Med/Heavy Trucks - COE (low entry)': 0.154718} top_ten_makes = {'Ford': 14.7276, 'Chevrolet': 14.258552, 'Toyota': 8.214285, 'Honda': 7.517353, 'Dodge': 6.421044, 'Datsun/Nissan': 4.922559, 'Harley-Davidson': 3.934599, 'GMC': 3.142833, 'Jeep/Kaiser-Jeep/Willys Jeep': 2.622289, 'Freightliner': 2.437513}
def twoNumberSum(array, targetSum): # Write your code here. dic = {} for i in range(len(array)): if targetSum - array[i] in dic: return [array[i], targetSum - array[i]] else: dic[array[i]] = i return []
def two_number_sum(array, targetSum): dic = {} for i in range(len(array)): if targetSum - array[i] in dic: return [array[i], targetSum - array[i]] else: dic[array[i]] = i return []
# Calcular todos em: # KM HM DAM M DM CM MM var = float(input("Digite um valor: ")) print("O valor em decimetro fica {}".format(var * 10)) #DM print("O valor em centimetros fica {}".format(var * 100)) #CM print("O valor e milimetros fica {}".format(var * 1000)) #MM print("O valor em metros fica {}".format(var * 10000)) #M print("O valor em decametro fica {}".format(var / 10)) #DAM print("O valor em micrometro fica {}".format(var / 100)) #HM print("O valor em Kilometro fica {}".format(var / 1000)) #KM
var = float(input('Digite um valor: ')) print('O valor em decimetro fica {}'.format(var * 10)) print('O valor em centimetros fica {}'.format(var * 100)) print('O valor e milimetros fica {}'.format(var * 1000)) print('O valor em metros fica {}'.format(var * 10000)) print('O valor em decametro fica {}'.format(var / 10)) print('O valor em micrometro fica {}'.format(var / 100)) print('O valor em Kilometro fica {}'.format(var / 1000))
class SOG(): """The class for SOG training """ def __init__(self, *args): """Set the training hyper-parameters including the network, the criterion, the optimizer, training epoches, sampling distribution and sampling number etc. Initialize the components here """ pass def train(self, train_loader): """The top training API. Should perform training and validation and checkpoint-saving After calling this funcition, the self.model should be trained The train_loader gives X, y, c and fake_c """ pass
class Sog: """The class for SOG training """ def __init__(self, *args): """Set the training hyper-parameters including the network, the criterion, the optimizer, training epoches, sampling distribution and sampling number etc. Initialize the components here """ pass def train(self, train_loader): """The top training API. Should perform training and validation and checkpoint-saving After calling this funcition, the self.model should be trained The train_loader gives X, y, c and fake_c """ pass