content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
try:
i=0/0
f=open("abc.txt")
for line in f:
print(line)
# except:
# print("why with me")
except Exception as e:
print(e)
# except FileNotFoundError:
# print("file not found")
# except ZeroDivisionError:
# print("divided by 0 bro")
# except (FileNotFoundError,ZeroDivisionError):
# print("File not Found adsdsxdas")
# We added it here just for fun
| try:
i = 0 / 0
f = open('abc.txt')
for line in f:
print(line)
except Exception as e:
print(e) |
def is_prime(num):
prime_counter = 1
for x in range(1, num):
if num % x == 0:
prime_counter += 1
if prime_counter > 2:
return False
return True
primes = []
i = 1
p = 0
n = 10001
while p != n+1:
if is_prime(i):
primes.append(i)
p += 1
i += 1
print(primes[n])
| def is_prime(num):
prime_counter = 1
for x in range(1, num):
if num % x == 0:
prime_counter += 1
if prime_counter > 2:
return False
return True
primes = []
i = 1
p = 0
n = 10001
while p != n + 1:
if is_prime(i):
primes.append(i)
p += 1
i += 1
print(primes[n]) |
def read_csv(logfile):
result = {}
lines = []
with open(logfile) as f:
for line in f.readlines():
l_clean = [float(x) for x in line.strip().split()]
lines.append(l_clean)
column_data = zip(*lines)
labels = [
"index",
"defocus1",
"defocus2",
"astig",
"azimuth_astig",
"phase_shift",
"xcorr",
"res_fit",
]
for label, series in zip(labels, column_data):
result[label] = series
return result
| def read_csv(logfile):
result = {}
lines = []
with open(logfile) as f:
for line in f.readlines():
l_clean = [float(x) for x in line.strip().split()]
lines.append(l_clean)
column_data = zip(*lines)
labels = ['index', 'defocus1', 'defocus2', 'astig', 'azimuth_astig', 'phase_shift', 'xcorr', 'res_fit']
for (label, series) in zip(labels, column_data):
result[label] = series
return result |
def multiply(*args):
ret = 1
for a in args:
ret *= a
return ret
def return_if_jake(**kwargs):
if not 'jake' in kwargs.keys():
return False
return kwargs['jake']
def call_with_42(func):
return func(42)
def call_with_42_and_more(func, *args):
return func(42, *args)
def get_water_function():
def inner_func(seed):
return 'water' + seed
return inner_func
def run_transformations(op1, op2, *args):
return [f(op1, op2) for f in args]
def get_multipliers(first = 1, last = 10, step = 1):
coeff = first
while coeff <= last:
def multiplier(op):
lc = int(coeff)
return lc * op
yield multiplier
coeff += step
def traced_call(func):
def new_func(*args):
return {
"name": func.__name__,
"args": args,
"result": func(*args)
}
return new_func
@traced_call
def traced_add(*args):
return sum(args)
| def multiply(*args):
ret = 1
for a in args:
ret *= a
return ret
def return_if_jake(**kwargs):
if not 'jake' in kwargs.keys():
return False
return kwargs['jake']
def call_with_42(func):
return func(42)
def call_with_42_and_more(func, *args):
return func(42, *args)
def get_water_function():
def inner_func(seed):
return 'water' + seed
return inner_func
def run_transformations(op1, op2, *args):
return [f(op1, op2) for f in args]
def get_multipliers(first=1, last=10, step=1):
coeff = first
while coeff <= last:
def multiplier(op):
lc = int(coeff)
return lc * op
yield multiplier
coeff += step
def traced_call(func):
def new_func(*args):
return {'name': func.__name__, 'args': args, 'result': func(*args)}
return new_func
@traced_call
def traced_add(*args):
return sum(args) |
#!/usr/bin/python3
f = open("day1-input.txt", "r")
finput = f.read().split("\n")
found = False
for i in finput:
for x in finput:
if x == '':
break
for y in finput:
if y == '':
break
product = int(i) + int(x) + int(y)
if product == 2020:
result = int(i) * int(x) * int (y)
print("%d * %d * %d = %d" % (int(i), int(x), int(y), result))
found = True
break
if found:
break
if found:
break
| f = open('day1-input.txt', 'r')
finput = f.read().split('\n')
found = False
for i in finput:
for x in finput:
if x == '':
break
for y in finput:
if y == '':
break
product = int(i) + int(x) + int(y)
if product == 2020:
result = int(i) * int(x) * int(y)
print('%d * %d * %d = %d' % (int(i), int(x), int(y), result))
found = True
break
if found:
break
if found:
break |
#
# This file contains the Python code from Program 16.13 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R. Preiss, P.Eng. All rights reserved.
#
# http://www.brpreiss.com/books/opus7/programs/pgm16_13.txt
#
class Digraph(Graph):
def getIsStronglyConnected(self):
for v in xrange(self.numberOfVertices):
visitor = self.CountingVisitor()
self.depthFirstTraversal(PreOrder(visitor), v)
if visitor.count != self.numberOfVertices:
return False
return True
# ...
| class Digraph(Graph):
def get_is_strongly_connected(self):
for v in xrange(self.numberOfVertices):
visitor = self.CountingVisitor()
self.depthFirstTraversal(pre_order(visitor), v)
if visitor.count != self.numberOfVertices:
return False
return True |
pattern_zero=[0.0, 0.0135109777, 0.0266466504, 0.0273972603, 0.0394070182, 0.0409082379, 0.0517920811, 0.0540439107, 0.0547945205, 0.063801839, 0.0668042785, 0.0683054982, 0.075436292, 0.0791893413, 0.081441171, 0.0821917808, 0.08669544, 0.0911990993, 0.0942015388, 0.0957027585, 0.0975792832, 0.1028335523, 0.1065866016, 0.1080878214, 0.1088384312, 0.1095890411, 0.1140927003, 0.1182210546, 0.1185963595, 0.121598799, 0.1231000188, 0.1249765434, 0.1279789829, 0.1302308125, 0.1339838619, 0.1354850816, 0.1362356915, 0.1369863014, 0.1373616063, 0.1414899606, 0.1456183149, 0.1459936198, 0.1463689248, 0.1489960593, 0.150497279, 0.1523738037, 0.1550009383, 0.1553762432, 0.1576280728, 0.1613811222, 0.1628823419, 0.1632576468, 0.1636329518, 0.1643835616, 0.1647588666, 0.1688872209, 0.1711390505, 0.1730155752, 0.1733908801, 0.173766185, 0.1763933196, 0.1778945393, 0.1786451492, 0.179771064, 0.1823981985, 0.1827735035, 0.1850253331, 0.185775943, 0.1887783824, 0.1902796022, 0.1906549071, 0.191030212, 0.1917808219, 0.1921561269, 0.1925314318, 0.1962844811, 0.1985363108, 0.1989116157, 0.2004128354, 0.2007881404, 0.2011634453, 0.2037905798, 0.2049164947, 0.2052917996, 0.2060424095, 0.2071683243, 0.2097954588, 0.2101707637, 0.2105460687, 0.2124225934, 0.2131732032, 0.2158003378, 0.2161756427, 0.2176768625, 0.2180521674, 0.2184274723, 0.2191780822, 0.2195533871, 0.2199286921, 0.2206793019, 0.2236817414, 0.2251829612, 0.225933571, 0.226308876, 0.2278100957, 0.2281854006, 0.2285607056, 0.2293113154, 0.2311878401, 0.2323137549, 0.2326890599, 0.2330643648, 0.2334396697, 0.2345655845, 0.2364421092, 0.2371927191, 0.237568024, 0.237943329, 0.2394445487, 0.2398198536, 0.2405704635, 0.2420716832, 0.243197598, 0.243572903, 0.2443235129, 0.2450741227, 0.2454494277, 0.2458247326, 0.2462000375, 0.2465753425, 0.2469506474, 0.2473259523, 0.2477012573, 0.2480765622, 0.2488271721, 0.2495777819, 0.2499530869, 0.2510790017, 0.2525802214, 0.2533308313, 0.2537061362, 0.255207356, 0.2555826609, 0.2559579658, 0.2567085757, 0.2585851004, 0.2597110152, 0.2600863201, 0.2604616251, 0.26083693, 0.2619628448, 0.2638393695, 0.2645899794, 0.2649652843, 0.2653405892, 0.266841809, 0.2672171139, 0.2679677238, 0.2694689435, 0.2705948583, 0.2709701633, 0.2717207731, 0.272471383, 0.2728466879, 0.2732219929, 0.2735972978, 0.2739726027, 0.2743479077, 0.2747232126, 0.2750985175, 0.2754738225, 0.2762244324, 0.2769750422, 0.2773503472, 0.278476262, 0.2799774817, 0.2807280916, 0.2811033965, 0.2826046163, 0.2829799212, 0.2833552261, 0.284105836, 0.2859823607, 0.2871082755, 0.2874835804, 0.2878588853, 0.2882341903, 0.2893601051, 0.2912366298, 0.2919872396, 0.2923625446, 0.2927378495, 0.2942390692, 0.2946143742, 0.2953649841, 0.2968662038, 0.2979921186, 0.2983674235, 0.2991180334, 0.2998686433, 0.3002439482, 0.3006192531, 0.3009945581, 0.301369863, 0.3017451679, 0.3021204729, 0.3024957778, 0.3028710828, 0.3036216926, 0.3043723025, 0.3047476074, 0.3058735222, 0.307374742, 0.3081253518, 0.3085006568, 0.3100018765, 0.3103771815, 0.3107524864, 0.3115030963, 0.3133796209, 0.3145055357, 0.3148808407, 0.3152561456, 0.3156314506, 0.3167573654, 0.31863389, 0.3193844999, 0.3197598048, 0.3201351098, 0.3216363295, 0.3220116345, 0.3227622443, 0.3242634641, 0.3253893789, 0.3257646838, 0.3265152937, 0.3272659035, 0.3276412085, 0.3280165134, 0.3283918184, 0.3287671233, 0.3291424282, 0.3295177332, 0.3298930381, 0.330268343, 0.3310189529, 0.3317695628, 0.3321448677, 0.3332707825, 0.3347720023, 0.3355226121, 0.3358979171, 0.3373991368, 0.3377744417, 0.3381497467, 0.3389003565, 0.3407768812, 0.341902796, 0.342278101, 0.3426534059, 0.3430287108, 0.3441546256, 0.3460311503, 0.3467817602, 0.3471570651, 0.3475323701, 0.3490335898, 0.3494088947, 0.3501595046, 0.3516607243, 0.3527866391, 0.3531619441, 0.353912554, 0.3546631638, 0.3550384688, 0.3554137737, 0.3557890786, 0.3561643836, 0.3565396885, 0.3569149934, 0.3572902984, 0.3576656033, 0.3584162132, 0.359166823, 0.359542128, 0.3606680428, 0.3621692625, 0.3629198724, 0.3632951773, 0.3647963971, 0.365171702, 0.3655470069, 0.3662976168, 0.3681741415, 0.3693000563, 0.3696753612, 0.3700506662, 0.3704259711, 0.3715518859, 0.3734284106, 0.3741790205, 0.3745543254, 0.3749296303, 0.3764308501, 0.376806155, 0.3775567649, 0.3790579846, 0.3801838994, 0.3805592044, 0.3813098142, 0.3820604241, 0.382435729, 0.382811034, 0.3831863389, 0.3835616438, 0.3839369488, 0.3843122537, 0.3846875586, 0.3850628636, 0.3858134734, 0.3865640833, 0.3869393883, 0.3880653031, 0.3895665228, 0.3903171327, 0.3906924376, 0.3921936573, 0.3925689623, 0.3929442672, 0.3936948771, 0.3955714018, 0.3966973166, 0.3970726215, 0.3974479264, 0.3978232314, 0.3989491462, 0.4008256709, 0.4015762807, 0.4019515857, 0.4023268906, 0.4038281103, 0.4042034153, 0.4049540251, 0.4064552449, 0.4075811597, 0.4079564646, 0.4087070745, 0.4094576844, 0.4098329893, 0.4102082942, 0.4105835992, 0.4109589041, 0.411334209, 0.411709514, 0.4120848189, 0.4124601239, 0.4132107337, 0.4139613436, 0.4143366485, 0.4154625633, 0.4169637831, 0.4177143929, 0.4180896979, 0.4195909176, 0.4199662226, 0.4203415275, 0.4210921374, 0.422968662, 0.4240945768, 0.4244698818, 0.4248451867, 0.4252204916, 0.4263464065, 0.4282229311, 0.428973541, 0.4293488459, 0.4297241509, 0.4312253706, 0.4316006755, 0.4323512854, 0.4338525052, 0.43497842, 0.4353537249, 0.4361043348, 0.4368549446, 0.4372302496, 0.4376055545, 0.4379808594, 0.4383561644, 0.4387314693, 0.4391067743, 0.4394820792, 0.4398573841, 0.440607994, 0.4413586039, 0.4417339088, 0.4428598236, 0.4443610433, 0.4451116532, 0.4454869582, 0.4469881779, 0.4473634828, 0.4477387878, 0.4484893976, 0.4503659223, 0.4514918371, 0.4518671421, 0.452242447, 0.4526177519, 0.4537436667, 0.4556201914, 0.4563708013, 0.4567461062, 0.4571214111, 0.4586226309, 0.4589979358, 0.4597485457, 0.4612497654, 0.4623756802, 0.4627509852, 0.463501595, 0.4642522049, 0.4646275099, 0.4650028148, 0.4653781197, 0.4657534247, 0.4661287296, 0.4665040345, 0.4668793395, 0.4672546444, 0.4680052543, 0.4687558641, 0.4691311691, 0.4702570839, 0.4717583036, 0.4725089135, 0.4728842184, 0.4743854382, 0.4747607431, 0.475136048, 0.4758866579, 0.4777631826, 0.4788890974, 0.4792644023, 0.4796397073, 0.4800150122, 0.481140927, 0.4830174517, 0.4837680616, 0.4841433665, 0.4845186714, 0.4860198912, 0.4863951961, 0.487145806, 0.4886470257, 0.4897729405, 0.4901482454, 0.4908988553, 0.4916494652, 0.4920247701, 0.4924000751, 0.49277538, 0.4931506849, 0.4935259899, 0.4939012948, 0.4942765997, 0.4946519047, 0.4954025145, 0.4961531244, 0.4965284293, 0.4976543442, 0.4991555639, 0.4999061738, 0.5002814787, 0.5017826984, 0.5021580034, 0.5025333083, 0.5032839182, 0.5051604429, 0.5062863577, 0.5066616626, 0.5070369675, 0.5074122725, 0.5085381873, 0.510414712, 0.5111653218, 0.5115406268, 0.5119159317, 0.5134171514, 0.5137924564, 0.5145430662, 0.516044286, 0.5171702008, 0.5175455057, 0.5182961156, 0.5190467255, 0.5194220304, 0.5197973353, 0.5201726403, 0.5205479452, 0.5209232501, 0.5212985551, 0.52167386, 0.5220491649, 0.5227997748, 0.5235503847, 0.5239256896, 0.5250516044, 0.5265528242, 0.527303434, 0.527678739, 0.5291799587, 0.5295552637, 0.5299305686, 0.5306811785, 0.5325577031, 0.5336836179, 0.5340589229, 0.5344342278, 0.5348095327, 0.5359354476, 0.5378119722, 0.5385625821, 0.538937887, 0.539313192, 0.5408144117, 0.5411897166, 0.5419403265, 0.5434415463, 0.5445674611, 0.544942766, 0.5456933759, 0.5464439857, 0.5468192907, 0.5471945956, 0.5475699005, 0.5479452055, 0.5483205104, 0.5486958154, 0.5490711203, 0.5494464252, 0.5501970351, 0.550947645, 0.5513229499, 0.5524488647, 0.5539500844, 0.5547006943, 0.5550759992, 0.556577219, 0.5569525239, 0.5573278289, 0.5580784387, 0.5599549634, 0.5610808782, 0.5614561831, 0.5618314881, 0.562206793, 0.5633327078, 0.5652092325, 0.5659598424, 0.5663351473, 0.5667104522, 0.568211672, 0.5685869769, 0.5693375868, 0.5708388065, 0.5719647213, 0.5723400263, 0.5730906361, 0.573841246, 0.5742165509, 0.5745918559, 0.5749671608, 0.5753424658, 0.5757177707, 0.5760930756, 0.5764683806, 0.5768436855, 0.5775942954, 0.5783449052, 0.5787202102, 0.579846125, 0.5813473447, 0.5820979546, 0.5824732595, 0.5839744793, 0.5843497842, 0.5847250891, 0.585475699, 0.5873522237, 0.5884781385, 0.5888534434, 0.5892287484, 0.5896040533, 0.5907299681, 0.5926064928, 0.5933571026, 0.5937324076, 0.5941077125, 0.5956089323, 0.5959842372, 0.5967348471, 0.5982360668, 0.5993619816, 0.5997372865, 0.6004878964, 0.6012385063, 0.6016138112, 0.6019891162, 0.6023644211, 0.602739726, 0.603115031, 0.6034903359, 0.6038656408, 0.6042409458, 0.6049915556, 0.6057421655, 0.6061174704, 0.6072433853, 0.608744605, 0.6094952149, 0.6098705198, 0.6113717395, 0.6117470445, 0.6121223494, 0.6128729593, 0.614749484, 0.6158753988, 0.6162507037, 0.6166260086, 0.6170013136, 0.6181272284, 0.620003753, 0.6207543629, 0.6211296679, 0.6215049728, 0.6230061925, 0.6233814975, 0.6241321073, 0.6256333271, 0.6267592419, 0.6271345468, 0.6278851567, 0.6286357666, 0.6290110715, 0.6293863764, 0.6297616814, 0.6301369863, 0.6305122912, 0.6308875962, 0.6312629011, 0.631638206, 0.6323888159, 0.6331394258, 0.6335147307, 0.6346406455, 0.6361418653, 0.6368924751, 0.6372677801, 0.6387689998, 0.6391443047, 0.6395196097, 0.6402702196, 0.6421467442, 0.643272659, 0.643647964, 0.6440232689, 0.6443985738, 0.6455244886, 0.6474010133, 0.6481516232, 0.6485269281, 0.6489022331, 0.6504034528, 0.6507787577, 0.6515293676, 0.6530305874, 0.6541565022, 0.6545318071, 0.655282417, 0.6560330268, 0.6564083318, 0.6567836367, 0.6571589416, 0.6575342466, 0.6579095515, 0.6582848564, 0.6586601614, 0.6590354663, 0.6597860762, 0.6605366861, 0.660911991, 0.6620379058, 0.6635391255, 0.6642897354, 0.6646650403, 0.6661662601, 0.666541565, 0.66691687, 0.6676674798, 0.6695440045, 0.6706699193, 0.6710452242, 0.6714205292, 0.6717958341, 0.6729217489, 0.6747982736, 0.6755488835, 0.6759241884, 0.6762994933, 0.6778007131, 0.678176018, 0.6789266279, 0.6804278476, 0.6815537624, 0.6819290674, 0.6826796772, 0.6834302871, 0.683805592, 0.684180897, 0.6845562019, 0.6849315068, 0.6853068118, 0.6856821167, 0.6860574217, 0.6864327266, 0.6871833365, 0.6879339463, 0.6883092513, 0.6894351661, 0.6909363858, 0.6916869957, 0.6920623006, 0.6935635204, 0.6939388253, 0.6943141302, 0.6950647401, 0.6969412648, 0.6980671796, 0.6984424845, 0.6988177895, 0.6991930944, 0.7003190092, 0.7021955339, 0.7029461437, 0.7033214487, 0.7036967536, 0.7051979734, 0.7055732783, 0.7063238882, 0.7078251079, 0.7089510227, 0.7093263276, 0.7100769375, 0.7108275474, 0.7112028523, 0.7115781573, 0.7119534622, 0.7123287671, 0.7127040721, 0.713079377, 0.7134546819, 0.7138299869, 0.7145805967, 0.7153312066, 0.7157065115, 0.7168324263, 0.7183336461, 0.719084256, 0.7194595609, 0.7209607806, 0.7213360856, 0.7217113905, 0.7224620004, 0.7243385251, 0.7254644399, 0.7258397448, 0.7262150497, 0.7265903547, 0.7277162695, 0.7295927941, 0.730343404, 0.730718709, 0.7310940139, 0.7325952336, 0.7329705386, 0.7337211484, 0.7352223682, 0.736348283, 0.7367235879, 0.7374741978, 0.7382248077, 0.7386001126, 0.7389754175, 0.7393507225, 0.7397260274, 0.7401013323, 0.7404766373, 0.7408519422, 0.7412272471, 0.741977857, 0.7427284669, 0.7431037718, 0.7442296866, 0.7457309064, 0.7464815162, 0.7468568212, 0.7483580409, 0.7487333458, 0.7491086508, 0.7498592606, 0.7517357853, 0.7528617001, 0.7532370051, 0.75361231, 0.7539876149, 0.7551135297, 0.7569900544, 0.7577406643, 0.7581159692, 0.7584912742, 0.7599924939, 0.7603677988, 0.7611184087, 0.7626196284, 0.7637455433, 0.7641208482, 0.7648714581, 0.7656220679, 0.7659973729, 0.7663726778, 0.7667479827, 0.7671232877, 0.7674985926, 0.7678738975, 0.7682492025, 0.7686245074, 0.7693751173, 0.7701257272, 0.7705010321, 0.7716269469, 0.7731281666, 0.7738787765, 0.7742540814, 0.7757553012, 0.7761306061, 0.7765059111, 0.7772565209, 0.7791330456, 0.7802589604, 0.7806342653, 0.7810095703, 0.7813848752, 0.78251079, 0.7843873147, 0.7851379246, 0.7855132295, 0.7858885344, 0.7873897542, 0.7877650591, 0.788515669, 0.7900168887, 0.7911428035, 0.7915181085, 0.7922687183, 0.7930193282, 0.7933946331, 0.7937699381, 0.794145243, 0.7945205479, 0.7948958529, 0.7952711578, 0.7956464628, 0.7960217677, 0.7967723776, 0.7975229874, 0.7978982924, 0.7990242072, 0.8005254269, 0.8012760368, 0.8016513417, 0.8031525615, 0.8035278664, 0.8039031713, 0.8046537812, 0.8065303059, 0.8076562207, 0.8080315256, 0.8084068306, 0.8087821355, 0.8099080503, 0.811784575, 0.8125351848, 0.8129104898, 0.8132857947, 0.8147870144, 0.8151623194, 0.8159129293, 0.817414149, 0.8185400638, 0.8189153687, 0.8196659786, 0.8204165885, 0.8207918934, 0.8211671983, 0.8215425033, 0.8219178082, 0.8222931132, 0.8226684181, 0.823043723, 0.823419028, 0.8241696378, 0.8249202477, 0.8252955526, 0.8264214674, 0.8279226872, 0.8286732971, 0.829048602, 0.8305498217, 0.8309251267, 0.8313004316, 0.8320510415, 0.8339275661, 0.835053481, 0.8354287859, 0.8358040908, 0.8361793958, 0.8373053106, 0.8391818352, 0.8399324451, 0.84030775, 0.840683055, 0.8421842747, 0.8425595797, 0.8433101895, 0.8448114093, 0.8459373241, 0.846312629, 0.8470632389, 0.8478138488, 0.8481891537, 0.8485644586, 0.8489397636, 0.8493150685, 0.8496903734, 0.8500656784, 0.8504409833, 0.8508162882, 0.8515668981, 0.852317508, 0.8526928129, 0.8538187277, 0.8553199475, 0.8560705573, 0.8564458623, 0.857947082, 0.8583223869, 0.8586976919, 0.8594483017, 0.8613248264, 0.8624507412, 0.8628260462, 0.8632013511, 0.863576656, 0.8647025708, 0.8665790955, 0.8673297054, 0.8677050103, 0.8680803153, 0.869581535, 0.8699568399, 0.8707074498, 0.8722086695, 0.8733345844, 0.8737098893, 0.8744604992, 0.875211109, 0.875586414, 0.8759617189, 0.8763370238, 0.8767123288, 0.8770876337, 0.8774629386, 0.8778382436, 0.8782135485, 0.8789641584, 0.8797147682, 0.8800900732, 0.881215988, 0.8827172077, 0.8834678176, 0.8838431225, 0.8853443423, 0.8857196472, 0.8860949521, 0.886845562, 0.8887220867, 0.8898480015, 0.8902233064, 0.8905986114, 0.8909739163, 0.8920998311, 0.8939763558, 0.8947269657, 0.8951022706, 0.8954775755, 0.8969787953, 0.8973541002, 0.8981047101, 0.8996059298, 0.9007318446, 0.9011071496, 0.9018577594, 0.9026083693, 0.9029836742, 0.9033589792, 0.9037342841, 0.904109589, 0.904484894, 0.9048601989, 0.9052355038, 0.9056108088, 0.9063614187, 0.9071120285, 0.9074873335, 0.9086132483, 0.910114468, 0.9108650779, 0.9112403828, 0.9127416026, 0.9131169075, 0.9134922124, 0.9142428223, 0.916119347, 0.9172452618, 0.9176205667, 0.9179958716, 0.9183711766, 0.9194970914, 0.9213736161, 0.9221242259, 0.9224995309, 0.9228748358, 0.9243760555, 0.9247513605, 0.9255019704, 0.9270031901, 0.9281291049, 0.9285044098, 0.9292550197, 0.9300056296, 0.9303809345, 0.9307562394, 0.9311315444, 0.9315068493, 0.9318821543, 0.9322574592, 0.9326327641, 0.9330080691, 0.9337586789, 0.9345092888, 0.9348845937, 0.9360105085, 0.9375117283, 0.9382623382, 0.9386376431, 0.9401388628, 0.9405141678, 0.9408894727, 0.9416400826, 0.9435166072, 0.944642522, 0.945017827, 0.9453931319, 0.9457684369, 0.9468943517, 0.9487708763, 0.9495214862, 0.9498967911, 0.9502720961, 0.9517733158, 0.9521486208, 0.9528992306, 0.9544004504, 0.9555263652, 0.9559016701, 0.95665228, 0.9574028898, 0.9577781948, 0.9581534997, 0.9585288047, 0.9589041096, 0.9592794145, 0.9596547195, 0.9600300244, 0.9604053293, 0.9611559392, 0.9619065491, 0.962281854, 0.9634077688, 0.9649089886, 0.9656595984, 0.9660349034, 0.9675361231, 0.967911428, 0.968286733, 0.9690373428, 0.9709138675, 0.9720397823, 0.9724150873, 0.9727903922, 0.9731656971, 0.9742916119, 0.9761681366, 0.9769187465, 0.9772940514, 0.9776693564, 0.9791705761, 0.979545881, 0.9802964909, 0.9817977106, 0.9829236254, 0.9832989304, 0.9840495403, 0.9848001501, 0.9851754551, 0.98555076, 0.9859260649, 0.9863013699, 0.9866766748, 0.9870519797, 0.9874272847, 0.9878025896, 0.9885531995, 0.9893038093, 0.9896791143, 0.9908050291, 0.9923062488, 0.9930568587, 0.9934321636, 0.9949333834, 0.9953086883, 0.9956839932, 0.9964346031, 0.9983111278, 0.9994370426, 0.9998123475]
pattern_odd=[0.00018765247, 0.0005629574, 0.00168887221, 0.00356539689, 0.00431600676, 0.00469131169, 0.00506661663, 0.00656783637, 0.0069431413, 0.00769375117, 0.00919497091, 0.01032088572, 0.01069619066, 0.01144680053, 0.0121974104, 0.01257271533, 0.01294802027, 0.0133233252, 0.01369863014, 0.01407393507, 0.01444924001, 0.01482454494, 0.01519984988, 0.01595045975, 0.01670106962, 0.01707637455, 0.01820228936, 0.0197035091, 0.02045411897, 0.02082942391, 0.02233064365, 0.02270594858, 0.02308125352, 0.02383186339, 0.02570838807, 0.02683430287, 0.02720960781, 0.02758491274, 0.02796021768, 0.02908613248, 0.03096265716, 0.03171326703, 0.03208857197, 0.0324638769, 0.03396509664, 0.03434040158, 0.03509101145, 0.03659223119, 0.03771814599, 0.03809345093, 0.0388440608, 0.03959467067, 0.03996997561, 0.04034528054, 0.04072058548, 0.04109589041, 0.04147119535, 0.04184650028, 0.04222180522, 0.04259711015, 0.04334772002, 0.04409832989, 0.04447363483, 0.04559954963, 0.04710076938, 0.04785137925, 0.04822668418, 0.04972790392, 0.05010320886, 0.05047851379, 0.05122912366, 0.05310564834, 0.05423156315, 0.05460686808, 0.05498217302, 0.05535747795, 0.05648339276, 0.05835991743, 0.0591105273, 0.05948583224, 0.05986113717, 0.06136235692, 0.06173766185, 0.06248827172, 0.06398949146, 0.06511540627, 0.0654907112, 0.06624132107, 0.06699193094, 0.06736723588, 0.06774254081, 0.06811784575, 0.06849315069, 0.06886845562, 0.06924376056, 0.06961906549, 0.06999437043, 0.0707449803, 0.07149559017, 0.0718708951, 0.07299680991, 0.07449802965, 0.07524863952, 0.07562394446, 0.0771251642, 0.07750046913, 0.07787577407, 0.07862638394, 0.08050290861, 0.08162882342, 0.08200412835, 0.08237943329, 0.08275473823, 0.08388065303, 0.08575717771, 0.08650778758, 0.08688309251, 0.08725839745, 0.08875961719, 0.08913492212, 0.089885532, 0.09138675174, 0.09251266654, 0.09288797148, 0.09363858135, 0.09438919122, 0.09476449615, 0.09513980109, 0.09551510602, 0.09589041096, 0.09626571589, 0.09664102083, 0.09701632577, 0.0973916307, 0.09814224057, 0.09889285044, 0.09926815538, 0.10039407018, 0.10189528992, 0.10264589979, 0.10302120473, 0.10452242447, 0.10489772941, 0.10527303434, 0.10602364421, 0.10790016889, 0.10902608369, 0.10940138863, 0.10977669356, 0.1101519985, 0.11127791331, 0.11315443798, 0.11390504785, 0.11428035279, 0.11465565772, 0.11615687746, 0.1165321824, 0.11728279227, 0.11878401201, 0.11990992682, 0.12028523175, 0.12103584162, 0.12178645149, 0.12216175643, 0.12253706136, 0.1229123663, 0.12328767123, 0.12366297617, 0.1240382811, 0.12441358604, 0.12478889097, 0.12553950084, 0.12629011072, 0.12666541565, 0.12779133046, 0.1292925502, 0.13004316007, 0.130418465, 0.13191968474, 0.13229498968, 0.13267029461, 0.13342090449, 0.13529742916, 0.13642334397, 0.1367986489, 0.13717395384, 0.13754925877, 0.13867517358, 0.14055169826, 0.14130230813, 0.14167761306, 0.142052918, 0.14355413774, 0.14392944267, 0.14468005254, 0.14618127228, 0.14730718709, 0.14768249203, 0.1484331019, 0.14918371177, 0.1495590167, 0.14993432164, 0.15030962657, 0.15068493151, 0.15106023644, 0.15143554138, 0.15181084631, 0.15218615125, 0.15293676112, 0.15368737099, 0.15406267592, 0.15518859073, 0.15668981047, 0.15744042034, 0.15781572528, 0.15931694502, 0.15969224995, 0.16006755489, 0.16081816476, 0.16269468944, 0.16382060424, 0.16419590918, 0.16457121411, 0.16494651905, 0.16607243385, 0.16794895853, 0.1686995684, 0.16907487334, 0.16945017827, 0.17095139801, 0.17132670295, 0.17207731282, 0.17357853256, 0.17470444736, 0.1750797523, 0.17583036217, 0.17658097204, 0.17695627698, 0.17733158191, 0.17770688685, 0.17808219178, 0.17845749672, 0.17883280165, 0.17920810659, 0.17958341152, 0.18033402139, 0.18108463126, 0.1814599362, 0.182585851, 0.18408707075, 0.18483768062, 0.18521298555, 0.18671420529, 0.18708951023, 0.18746481516, 0.18821542503, 0.19009194971, 0.19121786452, 0.19159316945, 0.19196847439, 0.19234377932, 0.19346969413, 0.1953462188, 0.19609682867, 0.19647213361, 0.19684743854, 0.19834865829, 0.19872396322, 0.19947457309, 0.20097579283, 0.20210170764, 0.20247701257, 0.20322762244, 0.20397823231, 0.20435353725, 0.20472884218, 0.20510414712, 0.20547945206, 0.20585475699, 0.20623006193, 0.20660536686, 0.2069806718, 0.20773128167, 0.20848189154, 0.20885719647, 0.20998311128, 0.21148433102, 0.21223494089, 0.21261024583, 0.21411146557, 0.2144867705, 0.21486207544, 0.21561268531, 0.21748920998, 0.21861512479, 0.21899042972, 0.21936573466, 0.2197410396, 0.2208669544, 0.22274347908, 0.22349408895, 0.22386939388, 0.22424469882, 0.22574591856, 0.22612122349, 0.22687183337, 0.22837305311, 0.22949896791, 0.22987427285, 0.23062488272, 0.23137549259, 0.23175079752, 0.23212610246, 0.23250140739, 0.23287671233, 0.23325201726, 0.2336273222, 0.23400262714, 0.23437793207, 0.23512854194, 0.23587915181, 0.23625445675, 0.23738037155, 0.23888159129, 0.23963220116, 0.2400075061, 0.24150872584, 0.24188403078, 0.24225933571, 0.24300994558, 0.24488647026, 0.24601238506, 0.24638769, 0.24676299493, 0.24713829987, 0.24826421467, 0.25014073935, 0.25089134922, 0.25126665416, 0.25164195909, 0.25314317883, 0.25351848377, 0.25426909364, 0.25577031338, 0.25689622819, 0.25727153312, 0.25802214299, 0.25877275286, 0.2591480578, 0.25952336273, 0.25989866767, 0.2602739726, 0.26064927754, 0.26102458247, 0.26139988741, 0.26177519234, 0.26252580221, 0.26327641209, 0.26365171702, 0.26477763183, 0.26627885157, 0.26702946144, 0.26740476637, 0.26890598611, 0.26928129105, 0.26965659598, 0.27040720586, 0.27228373053, 0.27340964534, 0.27378495027, 0.27416025521, 0.27453556014, 0.27566147495, 0.27753799963, 0.2782886095, 0.27866391443, 0.27903921937, 0.28054043911, 0.28091574404, 0.28166635391, 0.28316757365, 0.28429348846, 0.2846687934, 0.28541940327, 0.28617001314, 0.28654531807, 0.28692062301, 0.28729592794, 0.28767123288, 0.28804653781, 0.28842184275, 0.28879714768, 0.28917245262, 0.28992306249, 0.29067367236, 0.29104897729, 0.2921748921, 0.29367611184, 0.29442672171, 0.29480202665, 0.29630324639, 0.29667855132, 0.29705385626, 0.29780446613, 0.29968099081, 0.30080690561, 0.30118221055, 0.30155751548, 0.30193282042, 0.30305873522, 0.3049352599, 0.30568586977, 0.3060611747, 0.30643647964, 0.30793769938, 0.30831300432, 0.30906361419, 0.31056483393, 0.31169074873, 0.31206605367, 0.31281666354, 0.31356727341, 0.31394257835, 0.31431788328, 0.31469318822, 0.31506849315, 0.31544379809, 0.31581910302, 0.31619440796, 0.31656971289, 0.31732032276, 0.31807093263, 0.31844623757, 0.31957215237, 0.32107337212, 0.32182398199, 0.32219928692, 0.32370050666, 0.3240758116, 0.32445111653, 0.3252017264, 0.32707825108, 0.32820416589, 0.32857947082, 0.32895477576, 0.32933008069, 0.3304559955, 0.33233252017, 0.33308313004, 0.33345843498, 0.33383373991, 0.33533495966, 0.33571026459, 0.33646087446, 0.3379620942, 0.33908800901, 0.33946331394, 0.34021392381, 0.34096453368, 0.34133983862, 0.34171514355, 0.34209044849, 0.34246575343, 0.34284105836, 0.3432163633, 0.34359166823, 0.34396697317, 0.34471758304, 0.34546819291, 0.34584349784, 0.34696941265, 0.34847063239, 0.34922124226, 0.3495965472, 0.35109776694, 0.35147307187, 0.35184837681, 0.35259898668, 0.35447551135, 0.35560142616, 0.35597673109, 0.35635203603, 0.35672734097, 0.35785325577, 0.35972978045, 0.36048039032, 0.36085569525, 0.36123100019, 0.36273221993, 0.36310752486, 0.36385813473, 0.36535935448, 0.36648526928, 0.36686057422, 0.36761118409, 0.36836179396, 0.36873709889, 0.36911240383, 0.36948770876, 0.3698630137, 0.37023831863, 0.37061362357, 0.3709889285, 0.37136423344, 0.37211484331, 0.37286545318, 0.37324075812, 0.37436667292, 0.37586789266, 0.37661850253, 0.37699380747, 0.37849502721, 0.37887033215, 0.37924563708, 0.37999624695, 0.38187277163, 0.38299868643, 0.38337399137, 0.3837492963, 0.38412460124, 0.38525051604, 0.38712704072, 0.38787765059, 0.38825295553, 0.38862826046, 0.3901294802, 0.39050478514, 0.39125539501, 0.39275661475, 0.39388252956, 0.39425783449, 0.39500844436, 0.39575905423, 0.39613435917, 0.3965096641, 0.39688496904, 0.39726027397, 0.39763557891, 0.39801088384, 0.39838618878, 0.39876149371, 0.39951210358, 0.40026271346, 0.40063801839, 0.4017639332, 0.40326515294, 0.40401576281, 0.40439106774, 0.40589228748, 0.40626759242, 0.40664289735, 0.40739350723, 0.4092700319, 0.41039594671, 0.41077125164, 0.41114655658, 0.41152186151, 0.41264777632, 0.414524301, 0.41527491087, 0.4156502158, 0.41602552074, 0.41752674048, 0.41790204541, 0.41865265528, 0.42015387502, 0.42127978983, 0.42165509476, 0.42240570464, 0.42315631451, 0.42353161944, 0.42390692438, 0.42428222931, 0.42465753425, 0.42503283918, 0.42540814412, 0.42578344905, 0.42615875399, 0.42690936386, 0.42765997373, 0.42803527866, 0.42916119347, 0.43066241321, 0.43141302308, 0.43178832802, 0.43328954776, 0.43366485269, 0.43404015763, 0.4347907675, 0.43666729218, 0.43779320698, 0.43816851192, 0.43854381685, 0.43891912179, 0.44004503659, 0.44192156127, 0.44267217114, 0.44304747607, 0.44342278101, 0.44492400075, 0.44529930569, 0.44604991556, 0.4475511353, 0.4486770501, 0.44905235504, 0.44980296491, 0.45055357478, 0.45092887972, 0.45130418465, 0.45167948959, 0.45205479452, 0.45243009946, 0.45280540439, 0.45318070933, 0.45355601426, 0.45430662413, 0.455057234, 0.45543253894, 0.45655845374, 0.45805967349, 0.45881028336, 0.45918558829, 0.46068680803, 0.46106211297, 0.4614374179, 0.46218802777, 0.46406455245, 0.46519046726, 0.46556577219, 0.46594107713, 0.46631638206, 0.46744229687, 0.46931882154, 0.47006943141, 0.47044473635, 0.47082004128, 0.47232126103, 0.47269656596, 0.47344717583, 0.47494839557, 0.47607431038, 0.47644961531, 0.47720022518, 0.47795083505, 0.47832613999, 0.47870144492, 0.47907674986, 0.4794520548, 0.47982735973, 0.48020266467, 0.4805779696, 0.48095327454, 0.48170388441, 0.48245449428, 0.48282979921, 0.48395571402, 0.48545693376, 0.48620754363, 0.48658284856, 0.48808406831, 0.48845937324, 0.48883467818, 0.48958528805, 0.49146181272, 0.49258772753, 0.49296303246, 0.4933383374, 0.49371364233, 0.49483955714, 0.49671608182, 0.49746669169, 0.49784199662, 0.49821730156, 0.4997185213, 0.50009382623, 0.5008444361, 0.50234565585, 0.50347157065, 0.50384687559, 0.50459748546, 0.50534809533, 0.50572340026, 0.5060987052, 0.50647401013, 0.50684931507, 0.50722462, 0.50759992494, 0.50797522987, 0.50835053481, 0.50910114468, 0.50985175455, 0.51022705949, 0.51135297429, 0.51285419403, 0.5136048039, 0.51398010884, 0.51548132858, 0.51585663352, 0.51623193845, 0.51698254832, 0.518859073, 0.5199849878, 0.52036029274, 0.52073559767, 0.52111090261, 0.52223681741, 0.52411334209, 0.52486395196, 0.5252392569, 0.52561456183, 0.52711578157, 0.52749108651, 0.52824169638, 0.52974291612, 0.53086883093, 0.53124413586, 0.53199474573, 0.5327453556, 0.53312066054, 0.53349596547, 0.53387127041, 0.53424657534, 0.53462188028, 0.53499718521, 0.53537249015, 0.53574779508, 0.53649840495, 0.53724901483, 0.53762431976, 0.53875023457, 0.54025145431, 0.54100206418, 0.54137736911, 0.54287858885, 0.54325389379, 0.54362919872, 0.54437980859, 0.54625633327, 0.54738224808, 0.54775755301, 0.54813285795, 0.54850816288, 0.54963407769, 0.55151060236, 0.55226121224, 0.55263651717, 0.55301182211, 0.55451304185, 0.55488834678, 0.55563895665, 0.55714017639, 0.5582660912, 0.55864139613, 0.55939200601, 0.56014261588, 0.56051792081, 0.56089322575, 0.56126853068, 0.56164383562, 0.56201914055, 0.56239444549, 0.56276975042, 0.56314505536, 0.56389566523, 0.5646462751, 0.56502158003, 0.56614749484, 0.56764871458, 0.56839932445, 0.56877462939, 0.57027584913, 0.57065115406, 0.571026459, 0.57177706887, 0.57365359355, 0.57477950835, 0.57515481329, 0.57553011822, 0.57590542316, 0.57703133796, 0.57890786264, 0.57965847251, 0.58003377744, 0.58040908238, 0.58191030212, 0.58228560706, 0.58303621693, 0.58453743667, 0.58566335147, 0.58603865641, 0.58678926628, 0.58753987615, 0.58791518109, 0.58829048602, 0.58866579096, 0.58904109589, 0.58941640083, 0.58979170576, 0.5901670107, 0.59054231563, 0.5912929255, 0.59204353537, 0.59241884031, 0.59354475511, 0.59504597486, 0.59579658473, 0.59617188966, 0.5976731094, 0.59804841434, 0.59842371927, 0.59917432914, 0.60105085382, 0.60217676863, 0.60255207356, 0.6029273785, 0.60330268343, 0.60442859824, 0.60630512291, 0.60705573278, 0.60743103772, 0.60780634265, 0.60930756239, 0.60968286733, 0.6104334772, 0.61193469694, 0.61306061175, 0.61343591668, 0.61418652655, 0.61493713642, 0.61531244136, 0.61568774629, 0.61606305123, 0.61643835616, 0.6168136611, 0.61718896604, 0.61756427097, 0.61793957591, 0.61869018578, 0.61944079565, 0.61981610058, 0.62094201539, 0.62244323513, 0.623193845, 0.62356914993, 0.62507036968, 0.62544567461, 0.62582097955, 0.62657158942, 0.62844811409, 0.6295740289, 0.62994933383, 0.63032463877, 0.6306999437, 0.63182585851, 0.63370238319, 0.63445299306, 0.63482829799, 0.63520360293, 0.63670482267, 0.6370801276, 0.63783073747, 0.63933195722, 0.64045787202, 0.64083317696, 0.64158378683, 0.6423343967, 0.64270970163, 0.64308500657, 0.6434603115, 0.64383561644, 0.64421092137, 0.64458622631, 0.64496153124, 0.64533683618, 0.64608744605, 0.64683805592, 0.64721336086, 0.64833927566, 0.6498404954, 0.65059110527, 0.65096641021, 0.65246762995, 0.65284293489, 0.65321823982, 0.65396884969, 0.65584537437, 0.65697128917, 0.65734659411, 0.65772189904, 0.65809720398, 0.65922311878, 0.66109964346, 0.66185025333, 0.66222555827, 0.6626008632, 0.66410208294, 0.66447738788, 0.66522799775, 0.66672921749, 0.6678551323, 0.66823043723, 0.6689810471, 0.66973165697, 0.67010696191, 0.67048226684, 0.67085757178, 0.67123287671, 0.67160818165, 0.67198348658, 0.67235879152, 0.67273409645, 0.67348470632, 0.67423531619, 0.67461062113, 0.67573653594, 0.67723775568, 0.67798836555, 0.67836367048, 0.67986489022, 0.68024019516, 0.68061550009, 0.68136610996, 0.68324263464, 0.68436854945, 0.68474385438, 0.68511915932, 0.68549446425, 0.68662037906, 0.68849690373, 0.68924751361, 0.68962281854, 0.68999812348, 0.69149934322, 0.69187464815, 0.69262525802, 0.69412647776, 0.69525239257, 0.6956276975, 0.69637830738, 0.69712891725, 0.69750422218, 0.69787952712, 0.69825483205, 0.69863013699, 0.69900544192, 0.69938074686, 0.69975605179, 0.70013135673, 0.7008819666, 0.70163257647, 0.7020078814, 0.70313379621, 0.70463501595, 0.70538562582, 0.70576093076, 0.7072621505, 0.70763745543, 0.70801276037, 0.70876337024, 0.71063989492, 0.71176580972, 0.71214111466, 0.71251641959, 0.71289172453, 0.71401763933, 0.71589416401, 0.71664477388, 0.71702007881, 0.71739538375, 0.71889660349, 0.71927190843, 0.7200225183, 0.72152373804, 0.72264965284, 0.72302495778, 0.72377556765, 0.72452617752, 0.72490148245, 0.72527678739, 0.72565209233, 0.72602739726, 0.7264027022, 0.72677800713, 0.72715331207, 0.727528617, 0.72827922687, 0.72902983674, 0.72940514168, 0.73053105648, 0.73203227622, 0.7327828861, 0.73315819103, 0.73465941077, 0.73503471571, 0.73541002064, 0.73616063051, 0.73803715519, 0.73916306999, 0.73953837493, 0.73991367987, 0.7402889848, 0.74141489961, 0.74329142428, 0.74404203415, 0.74441733909, 0.74479264402, 0.74629386376, 0.7466691687, 0.74741977857, 0.74892099831, 0.75004691312, 0.75042221805, 0.75117282792, 0.75192343779, 0.75229874273, 0.75267404766, 0.7530493526, 0.75342465753, 0.75379996247, 0.75417526741, 0.75455057234, 0.75492587728, 0.75567648715, 0.75642709702, 0.75680240195, 0.75792831676, 0.7594295365, 0.76018014637, 0.7605554513, 0.76205667105, 0.76243197598, 0.76280728092, 0.76355789079, 0.76543441546, 0.76656033027, 0.7669356352, 0.76731094014, 0.76768624507, 0.76881215988, 0.77068868456, 0.77143929443, 0.77181459936, 0.7721899043, 0.77369112404, 0.77406642897, 0.77481703884, 0.77631825859, 0.77744417339, 0.77781947833, 0.7785700882, 0.77932069807, 0.779696003, 0.78007130794, 0.78044661287, 0.78082191781, 0.78119722274, 0.78157252768, 0.78194783261, 0.78232313755, 0.78307374742, 0.78382435729, 0.78419966223, 0.78532557703, 0.78682679677, 0.78757740664, 0.78795271158, 0.78945393132, 0.78982923625, 0.79020454119, 0.79095515106, 0.79283167574, 0.79395759054, 0.79433289548, 0.79470820041, 0.79508350535, 0.79620942015, 0.79808594483, 0.7988365547, 0.79921185964, 0.79958716457, 0.80108838431, 0.80146368925, 0.80221429912, 0.80371551886, 0.80484143367, 0.8052167386, 0.80596734847, 0.80671795834, 0.80709326328, 0.80746856821, 0.80784387315, 0.80821917808, 0.80859448302, 0.80896978795, 0.80934509289, 0.80972039782, 0.81047100769, 0.81122161756, 0.8115969225, 0.81272283731, 0.81422405705, 0.81497466692, 0.81534997185, 0.81685119159, 0.81722649653, 0.81760180146, 0.81835241133, 0.82022893601, 0.82135485082, 0.82173015575, 0.82210546069, 0.82248076562, 0.82360668043, 0.8254832051, 0.82623381498, 0.82660911991, 0.82698442485, 0.82848564459, 0.82886094952, 0.82961155939, 0.83111277913, 0.83223869394, 0.83261399887, 0.83336460875, 0.83411521862, 0.83449052355, 0.83486582849, 0.83524113342, 0.83561643836, 0.83599174329, 0.83636704823, 0.83674235316, 0.8371176581, 0.83786826797, 0.83861887784, 0.83899418277, 0.84012009758, 0.84162131732, 0.84237192719, 0.84274723213, 0.84424845187, 0.8446237568, 0.84499906174, 0.84574967161, 0.84762619628, 0.84875211109, 0.84912741603, 0.84950272096, 0.8498780259, 0.8510039407, 0.85288046538, 0.85363107525, 0.85400638018, 0.85438168512, 0.85588290486, 0.8562582098, 0.85700881967, 0.85851003941, 0.85963595421, 0.86001125915, 0.86076186902, 0.86151247889, 0.86188778382, 0.86226308876, 0.8626383937, 0.86301369863, 0.86338900357, 0.8637643085, 0.86413961344, 0.86451491837, 0.86526552824, 0.86601613811, 0.86639144305, 0.86751735785, 0.86901857759, 0.86976918747, 0.8701444924, 0.87164571214, 0.87202101708, 0.87239632201, 0.87314693188, 0.87502345656, 0.87614937136, 0.8765246763, 0.87689998124, 0.87727528617, 0.87840120098, 0.88027772565, 0.88102833552, 0.88140364046, 0.88177894539, 0.88328016513, 0.88365547007, 0.88440607994, 0.88590729968, 0.88703321449, 0.88740851942, 0.88815912929, 0.88890973916, 0.8892850441, 0.88966034903, 0.89003565397, 0.8904109589, 0.89078626384, 0.89116156878, 0.89153687371, 0.89191217865, 0.89266278852, 0.89341339839, 0.89378870332, 0.89491461813, 0.89641583787, 0.89716644774, 0.89754175267, 0.89904297242, 0.89941827735, 0.89979358229, 0.90054419216, 0.90242071683, 0.90354663164, 0.90392193657, 0.90429724151, 0.90467254644, 0.90579846125, 0.90767498593, 0.9084255958, 0.90880090073, 0.90917620567, 0.91067742541, 0.91105273034, 0.91180334021, 0.91330455996, 0.91443047476, 0.9148057797, 0.91555638957, 0.91630699944, 0.91668230437, 0.91705760931, 0.91743291424, 0.91780821918, 0.91818352411, 0.91855882905, 0.91893413398, 0.91930943892, 0.92006004879, 0.92081065866, 0.9211859636, 0.9223118784, 0.92381309814, 0.92456370801, 0.92493901295, 0.92644023269, 0.92681553762, 0.92719084256, 0.92794145243, 0.92981797711, 0.93094389191, 0.93131919685, 0.93169450178, 0.93206980672, 0.93319572152, 0.9350722462, 0.93582285607, 0.93619816101, 0.93657346594, 0.93807468568, 0.93844999062, 0.93920060049, 0.94070182023, 0.94182773504, 0.94220303997, 0.94295364984, 0.94370425971, 0.94407956465, 0.94445486958, 0.94483017452, 0.94520547945, 0.94558078439, 0.94595608932, 0.94633139426, 0.94670669919, 0.94745730906, 0.94820791893, 0.94858322387, 0.94970913868, 0.95121035842, 0.95196096829, 0.95233627322, 0.95383749296, 0.9542127979, 0.95458810283, 0.9553387127, 0.95721523738, 0.95834115219, 0.95871645712, 0.95909176206, 0.95946706699, 0.9605929818, 0.96246950647, 0.96322011635, 0.96359542128, 0.96397072622, 0.96547194596, 0.96584725089, 0.96659786076, 0.9680990805, 0.96922499531, 0.96960030024, 0.97035091011, 0.97110151999, 0.97147682492, 0.97185212986, 0.97222743479, 0.97260273973, 0.97297804466, 0.9733533496, 0.97372865453, 0.97410395947, 0.97485456934, 0.97560517921, 0.97598048414, 0.97710639895, 0.97860761869, 0.97935822856, 0.9797335335, 0.98123475324, 0.98161005817, 0.98198536311, 0.98273597298, 0.98461249765, 0.98573841246, 0.9861137174, 0.98648902233, 0.98686432727, 0.98799024207, 0.98986676675, 0.99061737662, 0.99099268155, 0.99136798649, 0.99286920623, 0.99324451117, 0.99399512104, 0.99549634078, 0.99662225558, 0.99699756052, 0.99774817039, 0.99849878026, 0.99887408519, 0.99924939013, 0.99962469507]
pattern_even=[0.0, 0.0003753049, 0.0007506099, 0.0011259148, 0.0015012197, 0.0022518296, 0.0030024395, 0.0033777444, 0.0045036592, 0.006004879, 0.0067554888, 0.0071307938, 0.0086320135, 0.0090073184, 0.0093826234, 0.0101332333, 0.0120097579, 0.0131356727, 0.0135109777, 0.0138862826, 0.0142615875, 0.0153875023, 0.017264027, 0.0180146369, 0.0183899418, 0.0187652468, 0.0202664665, 0.0206417714, 0.0213923813, 0.0228936011, 0.0240195159, 0.0243948208, 0.0251454307, 0.0258960405, 0.0262713455, 0.0266466504, 0.0270219553, 0.0273972603, 0.0277725652, 0.0281478701, 0.0285231751, 0.02889848, 0.0296490899, 0.0303996998, 0.0307750047, 0.0319009195, 0.0334021392, 0.0341527491, 0.034528054, 0.0360292738, 0.0364045787, 0.0367798837, 0.0375304935, 0.0394070182, 0.040532933, 0.0409082379, 0.0412835429, 0.0416588478, 0.0427847626, 0.0446612873, 0.0454118972, 0.0457872021, 0.046162507, 0.0476637268, 0.0480390317, 0.0487896416, 0.0502908613, 0.0514167761, 0.0517920811, 0.0525426909, 0.0532933008, 0.0536686057, 0.0540439107, 0.0544192156, 0.0547945205, 0.0551698255, 0.0555451304, 0.0559204354, 0.0562957403, 0.0570463502, 0.05779696, 0.058172265, 0.0592981798, 0.0607993995, 0.0615500094, 0.0619253143, 0.0634265341, 0.063801839, 0.0641771439, 0.0649277538, 0.0668042785, 0.0679301933, 0.0683054982, 0.0686808032, 0.0690561081, 0.0701820229, 0.0720585476, 0.0728091574, 0.0731844624, 0.0735597673, 0.0750609871, 0.075436292, 0.0761869019, 0.0776881216, 0.0788140364, 0.0791893413, 0.0799399512, 0.0806905611, 0.081065866, 0.081441171, 0.0818164759, 0.0821917808, 0.0825670858, 0.0829423907, 0.0833176956, 0.0836930006, 0.0844436104, 0.0851942203, 0.0855695252, 0.08669544, 0.0881966598, 0.0889472697, 0.0893225746, 0.0908237943, 0.0911990993, 0.0915744042, 0.0923250141, 0.0942015388, 0.0953274536, 0.0957027585, 0.0960780634, 0.0964533684, 0.0975792832, 0.0994558078, 0.1002064177, 0.1005817227, 0.1009570276, 0.1024582473, 0.1028335523, 0.1035841621, 0.1050853819, 0.1062112967, 0.1065866016, 0.1073372115, 0.1080878214, 0.1084631263, 0.1088384312, 0.1092137362, 0.1095890411, 0.109964346, 0.110339651, 0.1107149559, 0.1110902608, 0.1118408707, 0.1125914806, 0.1129667855, 0.1140927003, 0.1155939201, 0.1163445299, 0.1167198349, 0.1182210546, 0.1185963595, 0.1189716645, 0.1197222743, 0.121598799, 0.1227247138, 0.1231000188, 0.1234753237, 0.1238506286, 0.1249765434, 0.1268530681, 0.127603678, 0.1279789829, 0.1283542879, 0.1298555076, 0.1302308125, 0.1309814224, 0.1324826421, 0.133608557, 0.1339838619, 0.1347344718, 0.1354850816, 0.1358603866, 0.1362356915, 0.1366109964, 0.1369863014, 0.1373616063, 0.1377369112, 0.1381122162, 0.1384875211, 0.139238131, 0.1399887409, 0.1403640458, 0.1414899606, 0.1429911803, 0.1437417902, 0.1441170951, 0.1456183149, 0.1459936198, 0.1463689248, 0.1471195346, 0.1489960593, 0.1501219741, 0.150497279, 0.150872584, 0.1512478889, 0.1523738037, 0.1542503284, 0.1550009383, 0.1553762432, 0.1557515481, 0.1572527679, 0.1576280728, 0.1583786827, 0.1598799024, 0.1610058172, 0.1613811222, 0.162131732, 0.1628823419, 0.1632576468, 0.1636329518, 0.1640082567, 0.1643835616, 0.1647588666, 0.1651341715, 0.1655094765, 0.1658847814, 0.1666353913, 0.1673860011, 0.1677613061, 0.1688872209, 0.1703884406, 0.1711390505, 0.1715143554, 0.1730155752, 0.1733908801, 0.173766185, 0.1745167949, 0.1763933196, 0.1775192344, 0.1778945393, 0.1782698442, 0.1786451492, 0.179771064, 0.1816475887, 0.1823981985, 0.1827735035, 0.1831488084, 0.1846500281, 0.1850253331, 0.185775943, 0.1872771627, 0.1884030775, 0.1887783824, 0.1895289923, 0.1902796022, 0.1906549071, 0.191030212, 0.191405517, 0.1917808219, 0.1921561269, 0.1925314318, 0.1929067367, 0.1932820417, 0.1940326515, 0.1947832614, 0.1951585663, 0.1962844811, 0.1977857009, 0.1985363108, 0.1989116157, 0.2004128354, 0.2007881404, 0.2011634453, 0.2019140552, 0.2037905798, 0.2049164947, 0.2052917996, 0.2056671045, 0.2060424095, 0.2071683243, 0.2090448489, 0.2097954588, 0.2101707637, 0.2105460687, 0.2120472884, 0.2124225934, 0.2131732032, 0.214674423, 0.2158003378, 0.2161756427, 0.2169262526, 0.2176768625, 0.2180521674, 0.2184274723, 0.2188027773, 0.2191780822, 0.2195533871, 0.2199286921, 0.220303997, 0.2206793019, 0.2214299118, 0.2221805217, 0.2225558266, 0.2236817414, 0.2251829612, 0.225933571, 0.226308876, 0.2278100957, 0.2281854006, 0.2285607056, 0.2293113154, 0.2311878401, 0.2323137549, 0.2326890599, 0.2330643648, 0.2334396697, 0.2345655845, 0.2364421092, 0.2371927191, 0.237568024, 0.237943329, 0.2394445487, 0.2398198536, 0.2405704635, 0.2420716832, 0.243197598, 0.243572903, 0.2443235129, 0.2450741227, 0.2454494277, 0.2458247326, 0.2462000375, 0.2465753425, 0.2469506474, 0.2473259523, 0.2477012573, 0.2480765622, 0.2488271721, 0.2495777819, 0.2499530869, 0.2510790017, 0.2525802214, 0.2533308313, 0.2537061362, 0.255207356, 0.2555826609, 0.2559579658, 0.2567085757, 0.2585851004, 0.2597110152, 0.2600863201, 0.2604616251, 0.26083693, 0.2619628448, 0.2638393695, 0.2645899794, 0.2649652843, 0.2653405892, 0.266841809, 0.2672171139, 0.2679677238, 0.2694689435, 0.2705948583, 0.2709701633, 0.2717207731, 0.272471383, 0.2728466879, 0.2732219929, 0.2735972978, 0.2739726027, 0.2743479077, 0.2747232126, 0.2750985175, 0.2754738225, 0.2762244324, 0.2769750422, 0.2773503472, 0.278476262, 0.2799774817, 0.2807280916, 0.2811033965, 0.2826046163, 0.2829799212, 0.2833552261, 0.284105836, 0.2859823607, 0.2871082755, 0.2874835804, 0.2878588853, 0.2882341903, 0.2893601051, 0.2912366298, 0.2919872396, 0.2923625446, 0.2927378495, 0.2942390692, 0.2946143742, 0.2953649841, 0.2968662038, 0.2979921186, 0.2983674235, 0.2991180334, 0.2998686433, 0.3002439482, 0.3006192531, 0.3009945581, 0.301369863, 0.3017451679, 0.3021204729, 0.3024957778, 0.3028710828, 0.3036216926, 0.3043723025, 0.3047476074, 0.3058735222, 0.307374742, 0.3081253518, 0.3085006568, 0.3100018765, 0.3103771815, 0.3107524864, 0.3115030963, 0.3133796209, 0.3145055357, 0.3148808407, 0.3152561456, 0.3156314506, 0.3167573654, 0.31863389, 0.3193844999, 0.3197598048, 0.3201351098, 0.3216363295, 0.3220116345, 0.3227622443, 0.3242634641, 0.3253893789, 0.3257646838, 0.3265152937, 0.3272659035, 0.3276412085, 0.3280165134, 0.3283918184, 0.3287671233, 0.3291424282, 0.3295177332, 0.3298930381, 0.330268343, 0.3310189529, 0.3317695628, 0.3321448677, 0.3332707825, 0.3347720023, 0.3355226121, 0.3358979171, 0.3373991368, 0.3377744417, 0.3381497467, 0.3389003565, 0.3407768812, 0.341902796, 0.342278101, 0.3426534059, 0.3430287108, 0.3441546256, 0.3460311503, 0.3467817602, 0.3471570651, 0.3475323701, 0.3490335898, 0.3494088947, 0.3501595046, 0.3516607243, 0.3527866391, 0.3531619441, 0.353912554, 0.3546631638, 0.3550384688, 0.3554137737, 0.3557890786, 0.3561643836, 0.3565396885, 0.3569149934, 0.3572902984, 0.3576656033, 0.3584162132, 0.359166823, 0.359542128, 0.3606680428, 0.3621692625, 0.3629198724, 0.3632951773, 0.3647963971, 0.365171702, 0.3655470069, 0.3662976168, 0.3681741415, 0.3693000563, 0.3696753612, 0.3700506662, 0.3704259711, 0.3715518859, 0.3734284106, 0.3741790205, 0.3745543254, 0.3749296303, 0.3764308501, 0.376806155, 0.3775567649, 0.3790579846, 0.3801838994, 0.3805592044, 0.3813098142, 0.3820604241, 0.382435729, 0.382811034, 0.3831863389, 0.3835616438, 0.3839369488, 0.3843122537, 0.3846875586, 0.3850628636, 0.3858134734, 0.3865640833, 0.3869393883, 0.3880653031, 0.3895665228, 0.3903171327, 0.3906924376, 0.3921936573, 0.3925689623, 0.3929442672, 0.3936948771, 0.3955714018, 0.3966973166, 0.3970726215, 0.3974479264, 0.3978232314, 0.3989491462, 0.4008256709, 0.4015762807, 0.4019515857, 0.4023268906, 0.4038281103, 0.4042034153, 0.4049540251, 0.4064552449, 0.4075811597, 0.4079564646, 0.4087070745, 0.4094576844, 0.4098329893, 0.4102082942, 0.4105835992, 0.4109589041, 0.411334209, 0.411709514, 0.4120848189, 0.4124601239, 0.4132107337, 0.4139613436, 0.4143366485, 0.4154625633, 0.4169637831, 0.4177143929, 0.4180896979, 0.4195909176, 0.4199662226, 0.4203415275, 0.4210921374, 0.422968662, 0.4240945768, 0.4244698818, 0.4248451867, 0.4252204916, 0.4263464065, 0.4282229311, 0.428973541, 0.4293488459, 0.4297241509, 0.4312253706, 0.4316006755, 0.4323512854, 0.4338525052, 0.43497842, 0.4353537249, 0.4361043348, 0.4368549446, 0.4372302496, 0.4376055545, 0.4379808594, 0.4383561644, 0.4387314693, 0.4391067743, 0.4394820792, 0.4398573841, 0.440607994, 0.4413586039, 0.4417339088, 0.4428598236, 0.4443610433, 0.4451116532, 0.4454869582, 0.4469881779, 0.4473634828, 0.4477387878, 0.4484893976, 0.4503659223, 0.4514918371, 0.4518671421, 0.452242447, 0.4526177519, 0.4537436667, 0.4556201914, 0.4563708013, 0.4567461062, 0.4571214111, 0.4586226309, 0.4589979358, 0.4597485457, 0.4612497654, 0.4623756802, 0.4627509852, 0.463501595, 0.4642522049, 0.4646275099, 0.4650028148, 0.4653781197, 0.4657534247, 0.4661287296, 0.4665040345, 0.4668793395, 0.4672546444, 0.4680052543, 0.4687558641, 0.4691311691, 0.4702570839, 0.4717583036, 0.4725089135, 0.4728842184, 0.4743854382, 0.4747607431, 0.475136048, 0.4758866579, 0.4777631826, 0.4788890974, 0.4792644023, 0.4796397073, 0.4800150122, 0.481140927, 0.4830174517, 0.4837680616, 0.4841433665, 0.4845186714, 0.4860198912, 0.4863951961, 0.487145806, 0.4886470257, 0.4897729405, 0.4901482454, 0.4908988553, 0.4916494652, 0.4920247701, 0.4924000751, 0.49277538, 0.4931506849, 0.4935259899, 0.4939012948, 0.4942765997, 0.4946519047, 0.4954025145, 0.4961531244, 0.4965284293, 0.4976543442, 0.4991555639, 0.4999061738, 0.5002814787, 0.5017826984, 0.5021580034, 0.5025333083, 0.5032839182, 0.5051604429, 0.5062863577, 0.5066616626, 0.5070369675, 0.5074122725, 0.5085381873, 0.510414712, 0.5111653218, 0.5115406268, 0.5119159317, 0.5134171514, 0.5137924564, 0.5145430662, 0.516044286, 0.5171702008, 0.5175455057, 0.5182961156, 0.5190467255, 0.5194220304, 0.5197973353, 0.5201726403, 0.5205479452, 0.5209232501, 0.5212985551, 0.52167386, 0.5220491649, 0.5227997748, 0.5235503847, 0.5239256896, 0.5250516044, 0.5265528242, 0.527303434, 0.527678739, 0.5291799587, 0.5295552637, 0.5299305686, 0.5306811785, 0.5325577031, 0.5336836179, 0.5340589229, 0.5344342278, 0.5348095327, 0.5359354476, 0.5378119722, 0.5385625821, 0.538937887, 0.539313192, 0.5408144117, 0.5411897166, 0.5419403265, 0.5434415463, 0.5445674611, 0.544942766, 0.5456933759, 0.5464439857, 0.5468192907, 0.5471945956, 0.5475699005, 0.5479452055, 0.5483205104, 0.5486958154, 0.5490711203, 0.5494464252, 0.5501970351, 0.550947645, 0.5513229499, 0.5524488647, 0.5539500844, 0.5547006943, 0.5550759992, 0.556577219, 0.5569525239, 0.5573278289, 0.5580784387, 0.5599549634, 0.5610808782, 0.5614561831, 0.5618314881, 0.562206793, 0.5633327078, 0.5652092325, 0.5659598424, 0.5663351473, 0.5667104522, 0.568211672, 0.5685869769, 0.5693375868, 0.5708388065, 0.5719647213, 0.5723400263, 0.5730906361, 0.573841246, 0.5742165509, 0.5745918559, 0.5749671608, 0.5753424658, 0.5757177707, 0.5760930756, 0.5764683806, 0.5768436855, 0.5775942954, 0.5783449052, 0.5787202102, 0.579846125, 0.5813473447, 0.5820979546, 0.5824732595, 0.5839744793, 0.5843497842, 0.5847250891, 0.585475699, 0.5873522237, 0.5884781385, 0.5888534434, 0.5892287484, 0.5896040533, 0.5907299681, 0.5926064928, 0.5933571026, 0.5937324076, 0.5941077125, 0.5956089323, 0.5959842372, 0.5967348471, 0.5982360668, 0.5993619816, 0.5997372865, 0.6004878964, 0.6012385063, 0.6016138112, 0.6019891162, 0.6023644211, 0.602739726, 0.603115031, 0.6034903359, 0.6038656408, 0.6042409458, 0.6049915556, 0.6057421655, 0.6061174704, 0.6072433853, 0.608744605, 0.6094952149, 0.6098705198, 0.6113717395, 0.6117470445, 0.6121223494, 0.6128729593, 0.614749484, 0.6158753988, 0.6162507037, 0.6166260086, 0.6170013136, 0.6181272284, 0.620003753, 0.6207543629, 0.6211296679, 0.6215049728, 0.6230061925, 0.6233814975, 0.6241321073, 0.6256333271, 0.6267592419, 0.6271345468, 0.6278851567, 0.6286357666, 0.6290110715, 0.6293863764, 0.6297616814, 0.6301369863, 0.6305122912, 0.6308875962, 0.6312629011, 0.631638206, 0.6323888159, 0.6331394258, 0.6335147307, 0.6346406455, 0.6361418653, 0.6368924751, 0.6372677801, 0.6387689998, 0.6391443047, 0.6395196097, 0.6402702196, 0.6421467442, 0.643272659, 0.643647964, 0.6440232689, 0.6443985738, 0.6455244886, 0.6474010133, 0.6481516232, 0.6485269281, 0.6489022331, 0.6504034528, 0.6507787577, 0.6515293676, 0.6530305874, 0.6541565022, 0.6545318071, 0.655282417, 0.6560330268, 0.6564083318, 0.6567836367, 0.6571589416, 0.6575342466, 0.6579095515, 0.6582848564, 0.6586601614, 0.6590354663, 0.6597860762, 0.6605366861, 0.660911991, 0.6620379058, 0.6635391255, 0.6642897354, 0.6646650403, 0.6661662601, 0.666541565, 0.66691687, 0.6676674798, 0.6695440045, 0.6706699193, 0.6710452242, 0.6714205292, 0.6717958341, 0.6729217489, 0.6747982736, 0.6755488835, 0.6759241884, 0.6762994933, 0.6778007131, 0.678176018, 0.6789266279, 0.6804278476, 0.6815537624, 0.6819290674, 0.6826796772, 0.6834302871, 0.683805592, 0.684180897, 0.6845562019, 0.6849315068, 0.6853068118, 0.6856821167, 0.6860574217, 0.6864327266, 0.6871833365, 0.6879339463, 0.6883092513, 0.6894351661, 0.6909363858, 0.6916869957, 0.6920623006, 0.6935635204, 0.6939388253, 0.6943141302, 0.6950647401, 0.6969412648, 0.6980671796, 0.6984424845, 0.6988177895, 0.6991930944, 0.7003190092, 0.7021955339, 0.7029461437, 0.7033214487, 0.7036967536, 0.7051979734, 0.7055732783, 0.7063238882, 0.7078251079, 0.7089510227, 0.7093263276, 0.7100769375, 0.7108275474, 0.7112028523, 0.7115781573, 0.7119534622, 0.7123287671, 0.7127040721, 0.713079377, 0.7134546819, 0.7138299869, 0.7145805967, 0.7153312066, 0.7157065115, 0.7168324263, 0.7183336461, 0.719084256, 0.7194595609, 0.7209607806, 0.7213360856, 0.7217113905, 0.7224620004, 0.7243385251, 0.7254644399, 0.7258397448, 0.7262150497, 0.7265903547, 0.7277162695, 0.7295927941, 0.730343404, 0.730718709, 0.7310940139, 0.7325952336, 0.7329705386, 0.7337211484, 0.7352223682, 0.736348283, 0.7367235879, 0.7374741978, 0.7382248077, 0.7386001126, 0.7389754175, 0.7393507225, 0.7397260274, 0.7401013323, 0.7404766373, 0.7408519422, 0.7412272471, 0.741977857, 0.7427284669, 0.7431037718, 0.7442296866, 0.7457309064, 0.7464815162, 0.7468568212, 0.7483580409, 0.7487333458, 0.7491086508, 0.7498592606, 0.7517357853, 0.7528617001, 0.7532370051, 0.75361231, 0.7539876149, 0.7551135297, 0.7569900544, 0.7577406643, 0.7581159692, 0.7584912742, 0.7599924939, 0.7603677988, 0.7611184087, 0.7626196284, 0.7637455433, 0.7641208482, 0.7648714581, 0.7656220679, 0.7659973729, 0.7663726778, 0.7667479827, 0.7671232877, 0.7674985926, 0.7678738975, 0.7682492025, 0.7686245074, 0.7693751173, 0.7701257272, 0.7705010321, 0.7716269469, 0.7731281666, 0.7738787765, 0.7742540814, 0.7757553012, 0.7761306061, 0.7765059111, 0.7772565209, 0.7791330456, 0.7802589604, 0.7806342653, 0.7810095703, 0.7813848752, 0.78251079, 0.7843873147, 0.7851379246, 0.7855132295, 0.7858885344, 0.7873897542, 0.7877650591, 0.788515669, 0.7900168887, 0.7911428035, 0.7915181085, 0.7922687183, 0.7930193282, 0.7933946331, 0.7937699381, 0.794145243, 0.7945205479, 0.7948958529, 0.7952711578, 0.7956464628, 0.7960217677, 0.7967723776, 0.7975229874, 0.7978982924, 0.7990242072, 0.8005254269, 0.8012760368, 0.8016513417, 0.8031525615, 0.8035278664, 0.8039031713, 0.8046537812, 0.8065303059, 0.8076562207, 0.8080315256, 0.8084068306, 0.8087821355, 0.8099080503, 0.811784575, 0.8125351848, 0.8129104898, 0.8132857947, 0.8147870144, 0.8151623194, 0.8159129293, 0.817414149, 0.8185400638, 0.8189153687, 0.8196659786, 0.8204165885, 0.8207918934, 0.8211671983, 0.8215425033, 0.8219178082, 0.8222931132, 0.8226684181, 0.823043723, 0.823419028, 0.8241696378, 0.8249202477, 0.8252955526, 0.8264214674, 0.8279226872, 0.8286732971, 0.829048602, 0.8305498217, 0.8309251267, 0.8313004316, 0.8320510415, 0.8339275661, 0.835053481, 0.8354287859, 0.8358040908, 0.8361793958, 0.8373053106, 0.8391818352, 0.8399324451, 0.84030775, 0.840683055, 0.8421842747, 0.8425595797, 0.8433101895, 0.8448114093, 0.8459373241, 0.846312629, 0.8470632389, 0.8478138488, 0.8481891537, 0.8485644586, 0.8489397636, 0.8493150685, 0.8496903734, 0.8500656784, 0.8504409833, 0.8508162882, 0.8515668981, 0.852317508, 0.8526928129, 0.8538187277, 0.8553199475, 0.8560705573, 0.8564458623, 0.857947082, 0.8583223869, 0.8586976919, 0.8594483017, 0.8613248264, 0.8624507412, 0.8628260462, 0.8632013511, 0.863576656, 0.8647025708, 0.8665790955, 0.8673297054, 0.8677050103, 0.8680803153, 0.869581535, 0.8699568399, 0.8707074498, 0.8722086695, 0.8733345844, 0.8737098893, 0.8744604992, 0.875211109, 0.875586414, 0.8759617189, 0.8763370238, 0.8767123288, 0.8770876337, 0.8774629386, 0.8778382436, 0.8782135485, 0.8789641584, 0.8797147682, 0.8800900732, 0.881215988, 0.8827172077, 0.8834678176, 0.8838431225, 0.8853443423, 0.8857196472, 0.8860949521, 0.886845562, 0.8887220867, 0.8898480015, 0.8902233064, 0.8905986114, 0.8909739163, 0.8920998311, 0.8939763558, 0.8947269657, 0.8951022706, 0.8954775755, 0.8969787953, 0.8973541002, 0.8981047101, 0.8996059298, 0.9007318446, 0.9011071496, 0.9018577594, 0.9026083693, 0.9029836742, 0.9033589792, 0.9037342841, 0.904109589, 0.904484894, 0.9048601989, 0.9052355038, 0.9056108088, 0.9063614187, 0.9071120285, 0.9074873335, 0.9086132483, 0.910114468, 0.9108650779, 0.9112403828, 0.9127416026, 0.9131169075, 0.9134922124, 0.9142428223, 0.916119347, 0.9172452618, 0.9176205667, 0.9179958716, 0.9183711766, 0.9194970914, 0.9213736161, 0.9221242259, 0.9224995309, 0.9228748358, 0.9243760555, 0.9247513605, 0.9255019704, 0.9270031901, 0.9281291049, 0.9285044098, 0.9292550197, 0.9300056296, 0.9303809345, 0.9307562394, 0.9311315444, 0.9315068493, 0.9318821543, 0.9322574592, 0.9326327641, 0.9330080691, 0.9337586789, 0.9345092888, 0.9348845937, 0.9360105085, 0.9375117283, 0.9382623382, 0.9386376431, 0.9401388628, 0.9405141678, 0.9408894727, 0.9416400826, 0.9435166072, 0.944642522, 0.945017827, 0.9453931319, 0.9457684369, 0.9468943517, 0.9487708763, 0.9495214862, 0.9498967911, 0.9502720961, 0.9517733158, 0.9521486208, 0.9528992306, 0.9544004504, 0.9555263652, 0.9559016701, 0.95665228, 0.9574028898, 0.9577781948, 0.9581534997, 0.9585288047, 0.9589041096, 0.9592794145, 0.9596547195, 0.9600300244, 0.9604053293, 0.9611559392, 0.9619065491, 0.962281854, 0.9634077688, 0.9649089886, 0.9656595984, 0.9660349034, 0.9675361231, 0.967911428, 0.968286733, 0.9690373428, 0.9709138675, 0.9720397823, 0.9724150873, 0.9727903922, 0.9731656971, 0.9742916119, 0.9761681366, 0.9769187465, 0.9772940514, 0.9776693564, 0.9791705761, 0.979545881, 0.9802964909, 0.9817977106, 0.9829236254, 0.9832989304, 0.9840495403, 0.9848001501, 0.9851754551, 0.98555076, 0.9859260649, 0.9863013699, 0.9866766748, 0.9870519797, 0.9874272847, 0.9878025896, 0.9885531995, 0.9893038093, 0.9896791143, 0.9908050291, 0.9923062488, 0.9930568587, 0.9934321636, 0.9949333834, 0.9953086883, 0.9956839932, 0.9964346031, 0.9983111278, 0.9994370426, 0.9998123475]
averages_even={0.0: [0.0], 0.6515293676: [0.7534246575342, 0.2465753424658], 0.4901482454: [0.0547945205479, 0.9452054794521], 0.4008256709: [0.6164383561644, 0.3835616438356], 0.487145806: [0.7534246575342, 0.2465753424658], 0.2364421092: [0.6164383561644, 0.3835616438356], 0.7584912742: [0.3013698630137, 0.6986301369863], 0.0851942203: [0.5205479452055, 0.4794520547945], 0.0243948208: [0.0547945205479, 0.9452054794521], 0.2747232126: [0.2602739726027, 0.7397260273973], 0.4961531244: [0.5205479452055, 0.4794520547945], 0.8215425033: [0.5616438356164, 0.4383561643836], 0.1279789829: [0.1506849315068, 0.8493150684932], 0.5250516044: [0.0958904109589, 0.9041095890411], 0.2323137549: [0.2876712328767, 0.7123287671233], 0.5408144117: [0.6027397260274, 0.3972602739726], 0.4725089135: [0.7808219178082, 0.2191780821918], 0.556577219: [0.1369863013699, 0.8630136986301], 0.8496903734: [0.1643835616438, 0.8356164383562], 0.4567461062: [0.1506849315068, 0.8493150684932], 0.5723400263: [0.0547945205479, 0.9452054794521], 0.8196659786: [0.5753424657534, 0.4246575342466], 0.2927378495: [0.3013698630137, 0.6986301369863], 0.0731844624: [0.1506849315068, 0.8493150684932], 0.7686245074: [0.3287671232877, 0.6712328767123], 0.3006192531: [0.027397260274, 0.972602739726], 0.6038656408: [0.5479452054795, 0.4520547945205], 0.1542503284: [0.6164383561644, 0.3835616438356], 0.7051979734: [0.6027397260274, 0.3972602739726], 0.7915181085: [0.0547945205479, 0.9452054794521], 0.8425595797: [0.0821917808219, 0.9178082191781], 0.0202664665: [0.6027397260274, 0.3972602739726], 0.3565396885: [0.1643835616438, 0.8356164383562], 0.3321448677: [0.5068493150685, 0.4931506849315], 0.9127416026: [0.1369863013699, 0.8630136986301], 0.4252204916: [0.7671232876712, 0.2328767123288], 0.6935635204: [0.1369863013699, 0.8630136986301], 0.9255019704: [0.7534246575342, 0.2465753424658], 0.9528992306: [0.7534246575342, 0.2465753424658], 0.7404766373: [0.2602739726027, 0.7397260273973], 0.9930568587: [0.7808219178082, 0.2191780821918], 0.1884030775: [0.6849315068493, 0.3150684931507], 0.0942015388: [0.041095890411, 0.958904109589], 0.3846875586: [0.5479452054795, 0.4520547945205], 0.2983674235: [0.0547945205479, 0.9452054794521], 0.1962844811: [0.0958904109589, 0.9041095890411], 0.3347720023: [0.6575342465753, 0.3424657534247], 0.9285044098: [0.0547945205479, 0.9452054794521], 0.7483580409: [0.1369863013699, 0.8630136986301], 0.6019891162: [0.027397260274, 0.972602739726], 0.7367235879: [0.0547945205479, 0.9452054794521], 0.2120472884: [0.6027397260274, 0.3972602739726], 0.9405141678: [0.0684931506849, 0.9315068493151], 0.0266466504: [0.027397260274, 0.972602739726], 0.2191780822: [0.0], 0.109964346: [0.1643835616438, 0.8356164383562], 0.7100769375: [0.5753424657534, 0.4246575342466], 0.5070369675: [0.6301369863014, 0.3698630136986], 0.9086132483: [0.0958904109589, 0.9041095890411], 0.2600863201: [0.013698630137, 0.986301369863], 0.5201726403: [0.5616438356164, 0.4383561643836], 0.881215988: [0.0958904109589, 0.9041095890411], 0.1339838619: [0.0547945205479, 0.9452054794521], 0.7577406643: [0.8082191780822, 0.1917808219178], 0.3310189529: [0.5342465753425, 0.4657534246575], 0.6335147307: [0.5068493150685, 0.4931506849315], 0.2462000375: [0.5616438356164, 0.4383561643836], 0.1231000188: [0.013698630137, 0.986301369863], 0.8722086695: [0.5890410958904, 0.4109589041096], 0.5749671608: [0.5616438356164, 0.4383561643836], 0.3167573654: [0.1095890410959, 0.8904109589041], 0.6845562019: [0.5616438356164, 0.4383561643836], 0.6278851567: [0.5753424657534, 0.4246575342466], 0.6530305874: [0.5890410958904, 0.4109589041096], 0.9649089886: [0.3424657534247, 0.6575342465753], 0.643647964: [0.013698630137, 0.986301369863], 0.3283918184: [0.5616438356164, 0.4383561643836], 0.2559579658: [0.1780821917808, 0.8219178082192], 0.4691311691: [0.5068493150685, 0.4931506849315], 0.3441546256: [0.1095890410959, 0.8904109589041], 0.6909363858: [0.3424657534247, 0.6575342465753], 0.5171702008: [0.3150684931507, 0.6849315068493], 0.6361418653: [0.3424657534247, 0.6575342465753], 0.98555076: [0.027397260274, 0.972602739726], 0.9401388628: [0.1369863013699, 0.8630136986301], 0.0277725652: [0.1643835616438, 0.8356164383562], 0.7487333458: [0.0684931506849, 0.9315068493151], 0.4383561644: [0.0], 0.4646275099: [0.7945205479452, 0.2054794520548], 0.1917808219: [0.0], 0.7802589604: [0.2876712328767, 0.7123287671233], 0.7960217677: [0.3287671232877, 0.6712328767123], 0.2251829612: [0.6575342465753, 0.3424657534247], 0.4473634828: [0.0684931506849, 0.9315068493151], 0.4124601239: [0.6712328767123, 0.3287671232877], 0.6207543629: [0.8082191780822, 0.1917808219178], 0.4203415275: [0.1780821917808, 0.8219178082192], 0.1050853819: [0.5890410958904, 0.4109589041096], 0.0262713455: [0.7945205479452, 0.2054794520548], 0.2597110152: [0.2876712328767, 0.7123287671233], 0.6676674798: [0.6438356164384, 0.3561643835616], 0.2180521674: [0.7945205479452, 0.2054794520548], 0.4064552449: [0.5890410958904, 0.4109589041096], 0.2743479077: [0.1643835616438, 0.8356164383562], 0.9544004504: [0.5890410958904, 0.4109589041096], 0.1129667855: [0.5068493150685, 0.4931506849315], 0.579846125: [0.0958904109589, 0.9041095890411], 0.9611559392: [0.5342465753425, 0.4657534246575], 0.4597485457: [0.7534246575342, 0.2465753424658], 0.9581534997: [0.027397260274, 0.972602739726], 0.9326327641: [0.5479452054795, 0.4520547945205], 0.4623756802: [0.6849315068493, 0.3150684931507], 0.4143366485: [0.5068493150685, 0.4931506849315], 0.1399887409: [0.5205479452055, 0.4794520547945], 0.7265903547: [0.7671232876712, 0.2328767123288], 0.2878588853: [0.6301369863014, 0.3698630136986], 0.719084256: [0.7808219178082, 0.2191780821918], 0.5941077125: [0.3013698630137, 0.6986301369863], 0.4098329893: [0.7945205479452, 0.2054794520548], 0.3036216926: [0.5342465753425, 0.4657534246575], 0.1557515481: [0.3013698630137, 0.6986301369863], 0.3115030963: [0.6438356164384, 0.3561643835616], 0.0285231751: [0.5479452054795, 0.4520547945205], 0.3193844999: [0.1917808219178, 0.8082191780822], 0.0409082379: [0.013698630137, 0.986301369863], 0.3272659035: [0.8767123287671, 0.1232876712329], 0.0818164759: [0.5616438356164, 0.4383561643836], 0.3561643836: [0.0], 0.5344342278: [0.6301369863014, 0.3698630136986], 0.1715143554: [0.2739726027397, 0.7260273972603], 0.4908988553: [0.5753424657534, 0.4246575342466], 0.6991930944: [0.7671232876712, 0.2328767123288], 0.6582848564: [0.2602739726027, 0.7397260273973], 0.1062112967: [0.6849315068493, 0.3150684931507], 0.1463689248: [0.1780821917808, 0.8219178082192], 0.730718709: [0.1506849315068, 0.8493150684932], 0.7464815162: [0.7808219178082, 0.2191780821918], 0.2979921186: [0.6849315068493, 0.3150684931507], 0.8504409833: [0.5479452054795, 0.4520547945205], 0.8151623194: [0.0821917808219, 0.9178082191781], 0.1977857009: [0.6575342465753, 0.3424657534247], 0.0607993995: [0.6575342465753, 0.3424657534247], 0.2807280916: [0.7808219178082, 0.2191780821918], 0.0033777444: [0.5068493150685, 0.4931506849315], 0.0514167761: [0.6849315068493, 0.3150684931507], 0.2056671045: [0.6301369863014, 0.3698630136986], 0.1028335523: [0.0821917808219, 0.9178082191781], 0.7716269469: [0.0958904109589, 0.9041095890411], 0.8733345844: [0.3150684931507, 0.6849315068493], 0.7641208482: [0.0547945205479, 0.9452054794521], 0.5787202102: [0.5068493150685, 0.4931506849315], 0.8673297054: [0.8082191780822, 0.1917808219178], 0.5764683806: [0.5479452054795, 0.4520547945205], 0.440607994: [0.5342465753425, 0.4657534246575], 0.3085006568: [0.2739726027397, 0.7260273972603], 0.3745543254: [0.1506849315068, 0.8493150684932], 0.9108650779: [0.7808219178082, 0.2191780821918], 0.127603678: [0.1917808219178, 0.8082191780822], 0.8947269657: [0.8082191780822, 0.1917808219178], 0.9303809345: [0.7945205479452, 0.2054794520548], 0.1354850816: [0.8767123287671, 0.1232876712329], 0.5550759992: [0.2739726027397, 0.7260273972603], 0.2398198536: [0.0821917808219, 0.9178082191781], 0.7145805967: [0.5342465753425, 0.4657534246575], 0.5708388065: [0.5890410958904, 0.4109589041096], 0.8969787953: [0.6027397260274, 0.3972602739726], 0.0619253143: [0.2739726027397, 0.7260273972603], 0.2477012573: [0.5479452054795, 0.4520547945205], 0.7648714581: [0.5753424657534, 0.4246575342466], 0.255207356: [0.1369863013699, 0.8630136986301], 0.6181272284: [0.1095890410959, 0.8904109589041], 0.8954775755: [0.3013698630137, 0.6986301369863], 0.3156314506: [0.7671232876712, 0.2328767123288], 0.910114468: [0.3424657534247, 0.6575342465753], 0.7063238882: [0.7534246575342, 0.2465753424658], 0.7003190092: [0.1095890410959, 0.8904109589041], 0.7382248077: [0.8767123287671, 0.1232876712329], 0.2281854006: [0.0684931506849, 0.9315068493151], 0.162131732: [0.5753424657534, 0.4246575342466], 0.0487896416: [0.7534246575342, 0.2465753424658], 0.4240945768: [0.2876712328767, 0.7123287671233], 0.1775192344: [0.2876712328767, 0.7123287671233], 0.6564083318: [0.7945205479452, 0.2054794520548], 0.0003753049: [0.1643835616438, 0.8356164383562], 0.3629198724: [0.7808219178082, 0.2191780821918], 0.1366109964: [0.5616438356164, 0.4383561643836], 0.7389754175: [0.027397260274, 0.972602739726], 0.9634077688: [0.0958904109589, 0.9041095890411], 0.3865640833: [0.5205479452055, 0.4794520547945], 0.6642897354: [0.7808219178082, 0.2191780821918], 0.1002064177: [0.1917808219178, 0.8082191780822], 0.0502908613: [0.5890410958904, 0.4109589041096], 0.4668793395: [0.5479452054795, 0.4520547945205], 0.1673860011: [0.5205479452055, 0.4794520547945], 0.4154625633: [0.0958904109589, 0.9041095890411], 0.9224995309: [0.1506849315068, 0.8493150684932], 0.4589979358: [0.0821917808219, 0.9178082191781], 0.8493150685: [0.0], 0.8241696378: [0.5342465753425, 0.4657534246575], 0.4312253706: [0.6027397260274, 0.3972602739726], 0.7990242072: [0.0958904109589, 0.9041095890411], 0.5479452055: [0.0], 0.2195533871: [0.1643835616438, 0.8356164383562], 0.4391067743: [0.2602739726027, 0.7397260273973], 0.6290110715: [0.7945205479452, 0.2054794520548], 0.4469881779: [0.1369863013699, 0.8630136986301], 0.6215049728: [0.3013698630137, 0.6986301369863], 0.4747607431: [0.0684931506849, 0.9315068493151], 0.9071120285: [0.5205479452055, 0.4794520547945], 0.3426534059: [0.6301369863014, 0.3698630136986], 0.5212985551: [0.2602739726027, 0.7397260273973], 0.4627509852: [0.0547945205479, 0.9452054794521], 0.133608557: [0.6849315068493, 0.3150684931507], 0.0022518296: [0.5342465753425, 0.4657534246575], 0.2750985175: [0.5479452054795, 0.4520547945205], 0.5501970351: [0.5342465753425, 0.4657534246575], 0.8774629386: [0.2602739726027, 0.7397260273973], 0.1414899606: [0.0958904109589, 0.9041095890411], 0.5685869769: [0.0821917808219, 0.9178082191781], 0.3287671233: [0.0], 0.9375117283: [0.3424657534247, 0.6575342465753], 0.5843497842: [0.0684931506849, 0.9315068493151], 0.9300056296: [0.8767123287671, 0.1232876712329], 0.9720397823: [0.2876712328767, 0.7123287671233], 0.3242634641: [0.5890410958904, 0.4109589041096], 0.1572527679: [0.6027397260274, 0.3972602739726], 0.6421467442: [0.041095890411, 0.958904109589], 0.7089510227: [0.3150684931507, 0.6849315068493], 0.8586976919: [0.1780821917808, 0.8219178082192], 0.6579095515: [0.1643835616438, 0.8356164383562], 0.1651341715: [0.2602739726027, 0.7397260273973], 0.6762994933: [0.3013698630137, 0.6986301369863], 0.6894351661: [0.0958904109589, 0.9041095890411], 0.3257646838: [0.0547945205479, 0.9452054794521], 0.5197973353: [0.027397260274, 0.972602739726], 0.7183336461: [0.3424657534247, 0.6575342465753], 0.7209607806: [0.1369863013699, 0.8630136986301], 0.6815537624: [0.3150684931507, 0.6849315068493], 0.3749296303: [0.3013698630137, 0.6986301369863], 0.3317695628: [0.5205479452055, 0.4794520547945], 0.0957027585: [0.013698630137, 0.986301369863], 0.0915744042: [0.1780821917808, 0.8219178082192], 0.3906924376: [0.2739726027397, 0.7260273972603], 0.4323512854: [0.7534246575342, 0.2465753424658], 0.3002439482: [0.7945205479452, 0.2054794520548], 0.0258960405: [0.8767123287671, 0.1232876712329], 0.0540439107: [0.027397260274, 0.972602739726], 0.1035841621: [0.7534246575342, 0.2465753424658], 0.2071683243: [0.1095890410959, 0.8904109589041], 0.7948958529: [0.1643835616438, 0.8356164383562], 0.5209232501: [0.1643835616438, 0.8356164383562], 0.7457309064: [0.3424657534247, 0.6575342465753], 0.0142615875: [0.7671232876712, 0.2328767123288], 0.3467817602: [0.1917808219178, 0.8082191780822], 0.9487708763: [0.6164383561644, 0.3835616438356], 0.6162507037: [0.013698630137, 0.986301369863], 0.9048601989: [0.2602739726027, 0.7397260273973], 0.376806155: [0.0821917808219, 0.9178082191781], 0.5524488647: [0.0958904109589, 0.9041095890411], 0.1107149559: [0.5479452054795, 0.4520547945205], 0.2334396697: [0.7671232876712, 0.2328767123288], 0.1167198349: [0.2739726027397, 0.7260273972603], 0.2739726027: [0.0], 0.1369863014: [0.0], 0.8391818352: [0.6164383561644, 0.3835616438356], 0.5610808782: [0.2876712328767, 0.7123287671233], 0.3820604241: [0.8767123287671, 0.1232876712329], 0.5768436855: [0.3287671232877, 0.6712328767123], 0.5926064928: [0.6164383561644, 0.3835616438356], 0.8707074498: [0.7534246575342, 0.2465753424658], 0.5813473447: [0.3424657534247, 0.6575342465753], 0.9435166072: [0.041095890411, 0.958904109589], 0.904109589: [0.0], 0.6241321073: [0.7534246575342, 0.2465753424658], 0.6305122912: [0.1643835616438, 0.8356164383562], 0.31863389: [0.6164383561644, 0.3835616438356], 0.6372677801: [0.2739726027397, 0.7260273972603], 0.1632576468: [0.7945205479452, 0.2054794520548], 0.3265152937: [0.5753424657534, 0.4246575342466], 0.8159129293: [0.7534246575342, 0.2465753424658], 0.9112403828: [0.2739726027397, 0.7260273972603], 0.8827172077: [0.3424657534247, 0.6575342465753], 0.7663726778: [0.027397260274, 0.972602739726], 0.1711390505: [0.7808219178082, 0.2191780821918], 0.9832989304: [0.0547945205479, 0.9452054794521], 0.3501595046: [0.7534246575342, 0.2465753424658], 0.3925689623: [0.0684931506849, 0.9315068493151], 0.2604616251: [0.6301369863014, 0.3698630136986], 0.7978982924: [0.5068493150685, 0.4931506849315], 0.5074122725: [0.7671232876712, 0.2328767123288], 0.7581159692: [0.1506849315068, 0.8493150684932], 0.7930193282: [0.8767123287671, 0.1232876712329], 0.8632013511: [0.6301369863014, 0.3698630136986], 0.8249202477: [0.5205479452055, 0.4794520547945], 0.4102082942: [0.027397260274, 0.972602739726], 0.7765059111: [0.1780821917808, 0.8219178082192], 0.4665040345: [0.2602739726027, 0.7397260273973], 0.4939012948: [0.2602739726027, 0.7397260273973], 0.538937887: [0.1506849315068, 0.8493150684932], 0.9791705761: [0.6027397260274, 0.3972602739726], 0.3700506662: [0.6301369863014, 0.3698630136986], 0.2052917996: [0.013698630137, 0.986301369863], 0.5445674611: [0.3150684931507, 0.6849315068493], 0.1065866016: [0.0547945205479, 0.9452054794521], 0.5434415463: [0.5890410958904, 0.4109589041096], 0.2735972978: [0.5616438356164, 0.4383561643836], 0.0855695252: [0.5068493150685, 0.4931506849315], 0.8973541002: [0.0821917808219, 0.9178082191781], 0.6597860762: [0.5342465753425, 0.4657534246575], 0.0690561081: [0.7671232876712, 0.2328767123288], 0.527303434: [0.7808219178082, 0.2191780821918], 0.944642522: [0.2876712328767, 0.7123287671233], 0.5299305686: [0.1780821917808, 0.8219178082192], 0.7611184087: [0.7534246575342, 0.2465753424658], 0.1429911803: [0.6575342465753, 0.3424657534247], 0.9619065491: [0.5205479452055, 0.4794520547945], 0.4946519047: [0.3287671232877, 0.6712328767123], 0.3017451679: [0.1643835616438, 0.8356164383562], 0.150872584: [0.6301369863014, 0.3698630136986], 0.568211672: [0.6027397260274, 0.3972602739726], 0.2769750422: [0.5205479452055, 0.4794520547945], 0.0881966598: [0.6575342465753, 0.3424657534247], 0.6323888159: [0.5342465753425, 0.4657534246575], 0.191405517: [0.5616438356164, 0.4383561643836], 0.3253893789: [0.6849315068493, 0.3150684931507], 0.8481891537: [0.7945205479452, 0.2054794520548], 0.0833176956: [0.5479452054795, 0.4520547945205], 0.2919872396: [0.1917808219178, 0.8082191780822], 0.4841433665: [0.1506849315068, 0.8493150684932], 0.5839744793: [0.1369863013699, 0.8630136986301], 0.0007506099: [0.2602739726027, 0.7397260273973], 0.3621692625: [0.6575342465753, 0.3424657534247], 0.5884781385: [0.2876712328767, 0.7123287671233], 0.7401013323: [0.1643835616438, 0.8356164383562], 0.1850253331: [0.0821917808219, 0.9178082191781], 0.8613248264: [0.041095890411, 0.958904109589], 0.1929067367: [0.5479452054795, 0.4520547945205], 0.0964533684: [0.7671232876712, 0.2328767123288], 0.3936948771: [0.6438356164384, 0.3561643835616], 0.8564458623: [0.2739726027397, 0.7260273972603], 0.2007881404: [0.0684931506849, 0.9315068493151], 0.3024957778: [0.5479452054795, 0.4520547945205], 0.4094576844: [0.8767123287671, 0.1232876712329], 0.8320510415: [0.6438356164384, 0.3561643835616], 0.3978232314: [0.7671232876712, 0.2328767123288], 0.4398573841: [0.6712328767123, 0.3287671232877], 0.3903171327: [0.7808219178082, 0.2191780821918], 0.9517733158: [0.6027397260274, 0.3972602739726], 0.0273972603: [0.0], 0.9348845937: [0.5068493150685, 0.4931506849315], 0.8951022706: [0.1506849315068, 0.8493150684932], 0.7637455433: [0.3150684931507, 0.6849315068493], 0.2533308313: [0.7808219178082, 0.2191780821918], 0.8853443423: [0.1369863013699, 0.8630136986301], 0.5959842372: [0.0821917808219, 0.9178082191781], 0.8031525615: [0.1369863013699, 0.8630136986301], 0.5513229499: [0.5068493150685, 0.4931506849315], 0.1384875211: [0.6712328767123, 0.3287671232877], 0.6286357666: [0.8767123287671, 0.1232876712329], 0.7671232877: [0.0], 0.0480390317: [0.0821917808219, 0.9178082191781], 0.4935259899: [0.1643835616438, 0.8356164383562], 0.1125914806: [0.5205479452055, 0.4794520547945], 0.7408519422: [0.5479452054795, 0.4520547945205], 0.9866766748: [0.1643835616438, 0.8356164383562], 0.6117470445: [0.0684931506849, 0.9315068493151], 0.3843122537: [0.2602739726027, 0.7397260273973], 0.6301369863: [0.0], 0.6391443047: [0.0684931506849, 0.9315068493151], 0.3216363295: [0.6027397260274, 0.3972602739726], 0.1647588666: [0.1643835616438, 0.8356164383562], 0.3373991368: [0.1369863013699, 0.8630136986301], 0.006004879: [0.6575342465753, 0.3424657534247], 0.9345092888: [0.5205479452055, 0.4794520547945], 0.7036967536: [0.3013698630137, 0.6986301369863], 0.3531619441: [0.0547945205479, 0.9452054794521], 0.7194595609: [0.2739726027397, 0.7260273972603], 0.9194970914: [0.1095890410959, 0.8904109589041], 0.7352223682: [0.5890410958904, 0.4109589041096], 0.9172452618: [0.2876712328767, 0.7123287671233], 0.6331394258: [0.5205479452055, 0.4794520547945], 0.0228936011: [0.5890410958904, 0.4109589041096], 0.7667479827: [0.5616438356164, 0.4383561643836], 0.9382623382: [0.7808219178082, 0.2191780821918], 0.78251079: [0.1095890410959, 0.8904109589041], 0.6920623006: [0.2739726027397, 0.7260273972603], 0.4661287296: [0.1643835616438, 0.8356164383562], 0.1989116157: [0.2739726027397, 0.7260273972603], 0.7498592606: [0.6438356164384, 0.3561643835616], 0.2679677238: [0.7534246575342, 0.2465753424658], 0.5547006943: [0.7808219178082, 0.2191780821918], 0.5471945956: [0.027397260274, 0.972602739726], 0.0536686057: [0.7945205479452, 0.2054794520548], 0.0011259148: [0.5479452054795, 0.4520547945205], 0.1073372115: [0.5753424657534, 0.4246575342466], 0.4372302496: [0.7945205479452, 0.2054794520548], 0.8132857947: [0.3013698630137, 0.6986301369863], 0.6635391255: [0.3424657534247, 0.6575342465753], 0.2225558266: [0.5068493150685, 0.4931506849315], 0.5017826984: [0.1369863013699, 0.8630136986301], 0.9033589792: [0.027397260274, 0.972602739726], 0.4105835992: [0.5616438356164, 0.4383561643836], 0.5175455057: [0.0547945205479, 0.9452054794521], 0.9559016701: [0.0547945205479, 0.9452054794521], 0.2653405892: [0.3013698630137, 0.6986301369863], 0.5306811785: [0.6438356164384, 0.3561643835616], 0.0341527491: [0.7808219178082, 0.2191780821918], 0.2732219929: [0.027397260274, 0.972602739726], 0.278476262: [0.0958904109589, 0.9041095890411], 0.2811033965: [0.2739726027397, 0.7260273972603], 0.6969412648: [0.041095890411, 0.958904109589], 0.6605366861: [0.5205479452055, 0.4794520547945], 0.4897729405: [0.3150684931507, 0.6849315068493], 0.4845186714: [0.3013698630137, 0.6986301369863], 0.2968662038: [0.5890410958904, 0.4109589041096], 0.2488271721: [0.5342465753425, 0.4657534246575], 0.1523738037: [0.1095890410959, 0.8904109589041], 0.0761869019: [0.7534246575342, 0.2465753424658], 0.6710452242: [0.013698630137, 0.986301369863], 0.9386376431: [0.2739726027397, 0.7260273972603], 0.9802964909: [0.7534246575342, 0.2465753424658], 0.6541565022: [0.3150684931507, 0.6849315068493], 0.4413586039: [0.5205479452055, 0.4794520547945], 0.8448114093: [0.5890410958904, 0.4109589041096], 0.4338525052: [0.5890410958904, 0.4109589041096], 0.3494088947: [0.0821917808219, 0.9178082191781], 0.3430287108: [0.7671232876712, 0.2328767123288], 0.0532933008: [0.8767123287671, 0.1232876712329], 0.0446612873: [0.6164383561644, 0.3835616438356], 0.0615500094: [0.7808219178082, 0.2191780821918], 0.365171702: [0.0684931506849, 0.9315068493151], 0.7329705386: [0.0821917808219, 0.9178082191781], 0.4428598236: [0.0958904109589, 0.9041095890411], 0.7539876149: [0.7671232876712, 0.2328767123288], 0.063801839: [0.0684931506849, 0.9315068493151], 0.7933946331: [0.7945205479452, 0.2054794520548], 0.3966973166: [0.2876712328767, 0.7123287671233], 0.9007318446: [0.3150684931507, 0.6849315068493], 0.8065303059: [0.041095890411, 0.958904109589], 0.6042409458: [0.3287671232877, 0.6712328767123], 0.713079377: [0.2602739726027, 0.7397260273973], 0.8834678176: [0.7808219178082, 0.2191780821918], 0.0525426909: [0.5753424657534, 0.4246575342466], 0.2101707637: [0.1506849315068, 0.8493150684932], 0.6121223494: [0.1780821917808, 0.8219178082192], 0.8538187277: [0.0958904109589, 0.9041095890411], 0.869581535: [0.6027397260274, 0.3972602739726], 0.7217113905: [0.1780821917808, 0.8219178082192], 0.110339651: [0.2602739726027, 0.7397260273973], 0.9011071496: [0.0547945205479, 0.9452054794521], 0.4571214111: [0.3013698630137, 0.6986301369863], 0.2285607056: [0.1780821917808, 0.8219178082192], 0.573841246: [0.8767123287671, 0.1232876712329], 0.4650028148: [0.027397260274, 0.972602739726], 0.1182210546: [0.1369863013699, 0.8630136986301], 0.9457684369: [0.7671232876712, 0.2328767123288], 0.4563708013: [0.8082191780822, 0.1917808219178], 0.5573278289: [0.1780821917808, 0.8219178082192], 0.5730906361: [0.5753424657534, 0.4246575342466], 0.4886470257: [0.5890410958904, 0.4109589041096], 0.2443235129: [0.5753424657534, 0.4246575342466], 0.5888534434: [0.013698630137, 0.986301369863], 0.4965284293: [0.5068493150685, 0.4931506849315], 0.3009945581: [0.5616438356164, 0.4383561643836], 0.9817977106: [0.5890410958904, 0.4109589041096], 0.0791893413: [0.0547945205479, 0.9452054794521], 0.1583786827: [0.7534246575342, 0.2465753424658], 0.8219178082: [0.0], 0.7757553012: [0.1369863013699, 0.8630136986301], 0.5115406268: [0.1506849315068, 0.8493150684932], 0.794145243: [0.5616438356164, 0.4383561643836], 0.9761681366: [0.6164383561644, 0.3835616438356], 0.6939388253: [0.0684931506849, 0.9315068493151], 0.0649277538: [0.6438356164384, 0.3561643835616], 0.788515669: [0.7534246575342, 0.2465753424658], 0.1628823419: [0.8767123287671, 0.1232876712329], 0.7254644399: [0.2876712328767, 0.7123287671233], 0.2762244324: [0.5342465753425, 0.4657534246575], 0.7412272471: [0.3287671232877, 0.6712328767123], 0.5025333083: [0.1780821917808, 0.8219178082192], 0.7569900544: [0.6164383561644, 0.3835616438356], 0.9315068493: [0.0], 0.4788890974: [0.2876712328767, 0.7123287671233], 0.3929442672: [0.1780821917808, 0.8219178082192], 0.6567836367: [0.027397260274, 0.972602739726], 0.2004128354: [0.1369863013699, 0.8630136986301], 0.4087070745: [0.5753424657534, 0.4246575342466], 0.4023268906: [0.3013698630137, 0.6986301369863], 0.7656220679: [0.8767123287671, 0.1232876712329], 0.4244698818: [0.013698630137, 0.986301369863], 0.585475699: [0.6438356164384, 0.3561643835616], 0.2161756427: [0.0547945205479, 0.9452054794521], 0.1080878214: [0.8767123287671, 0.1232876712329], 0.8778382436: [0.5479452054795, 0.4520547945205], 0.2754738225: [0.6712328767123, 0.3287671232877], 0.5051604429: [0.041095890411, 0.958904109589], 0.6883092513: [0.5068493150685, 0.4931506849315], 0.5419403265: [0.7534246575342, 0.2465753424658], 0.1302308125: [0.0821917808219, 0.9178082191781], 0.5235503847: [0.5205479452055, 0.4794520547945], 0.1471195346: [0.6438356164384, 0.3561643835616], 0.539313192: [0.3013698630137, 0.6986301369863], 0.9408894727: [0.1780821917808, 0.8219178082192], 0.0360292738: [0.1369863013699, 0.8630136986301], 0.1381122162: [0.5479452054795, 0.4520547945205], 0.95665228: [0.5753424657534, 0.4246575342466], 0.683805592: [0.7945205479452, 0.2054794520548], 0.284105836: [0.6438356164384, 0.3561643835616], 0.6988177895: [0.6301369863014, 0.3698630136986], 0.1459936198: [0.0684931506849, 0.9315068493151], 0.49277538: [0.5616438356164, 0.4383561643836], 0.7325952336: [0.6027397260274, 0.3972602739726], 0.2833552261: [0.1780821917808, 0.8219178082192], 0.2998686433: [0.8767123287671, 0.1232876712329], 0.9953086883: [0.0684931506849, 0.9315068493151], 0.6128729593: [0.6438356164384, 0.3561643835616], 0.8361793958: [0.7671232876712, 0.2328767123288], 0.2859823607: [0.041095890411, 0.958904109589], 0.6443985738: [0.7671232876712, 0.2328767123288], 0.0364045787: [0.0684931506849, 0.9315068493151], 0.6943141302: [0.1780821917808, 0.8219178082192], 0.6759241884: [0.1506849315068, 0.8493150684932], 0.8211671983: [0.027397260274, 0.972602739726], 0.6916869957: [0.7808219178082, 0.2191780821918], 0.9840495403: [0.5753424657534, 0.4246575342466], 0.9330080691: [0.3287671232877, 0.6712328767123], 0.8485644586: [0.027397260274, 0.972602739726], 0.9893038093: [0.5205479452055, 0.4794520547945], 0.3681741415: [0.041095890411, 0.958904109589], 0.5956089323: [0.6027397260274, 0.3972602739726], 0.3839369488: [0.1643835616438, 0.8356164383562], 0.7810095703: [0.6301369863014, 0.3698630136986], 0.4999061738: [0.7808219178082, 0.2191780821918], 0.7967723776: [0.5342465753425, 0.4657534246575], 0.2037905798: [0.041095890411, 0.958904109589], 0.1084631263: [0.7945205479452, 0.2054794520548], 0.075436292: [0.0821917808219, 0.9178082191781], 0.3704259711: [0.7671232876712, 0.2328767123288], 0.736348283: [0.3150684931507, 0.6849315068493], 0.875586414: [0.7945205479452, 0.2054794520548], 0.4417339088: [0.5068493150685, 0.4931506849315], 0.4443610433: [0.6575342465753, 0.3424657534247], 0.2221805217: [0.5205479452055, 0.4794520547945], 0.5002814787: [0.2739726027397, 0.7260273972603], 0.452242447: [0.6301369863014, 0.3698630136986], 0.516044286: [0.5890410958904, 0.4109589041096], 0.0334021392: [0.6575342465753, 0.3424657534247], 0.2672171139: [0.0821917808219, 0.9178082191781], 0.5475699005: [0.5616438356164, 0.4383561643836], 0.237943329: [0.3013698630137, 0.6986301369863], 0.5633327078: [0.1095890410959, 0.8904109589041], 0.4837680616: [0.8082191780822, 0.1917808219178], 0.5820979546: [0.7808219178082, 0.2191780821918], 0.0720585476: [0.6164383561644, 0.3835616438356], 0.2458247326: [0.027397260274, 0.972602739726], 0.8860949521: [0.1780821917808, 0.8219178082192], 0.9964346031: [0.6438356164384, 0.3561643835616], 0.3835616438: [0.0], 0.904484894: [0.1643835616438, 0.8356164383562], 0.081065866: [0.7945205479452, 0.2054794520548], 0.0799399512: [0.5753424657534, 0.4246575342466], 0.0206417714: [0.0821917808219, 0.9178082191781], 0.9029836742: [0.7945205479452, 0.2054794520548], 0.3276412085: [0.7945205479452, 0.2054794520548], 0.8526928129: [0.5068493150685, 0.4931506849315], 0.1677613061: [0.5068493150685, 0.4931506849315], 0.684180897: [0.027397260274, 0.972602739726], 0.6481516232: [0.8082191780822, 0.1917808219178], 0.6575342466: [0.0], 0.9690373428: [0.6438356164384, 0.3561643835616], 0.359166823: [0.5205479452055, 0.4794520547945], 0.3280165134: [0.027397260274, 0.972602739726], 0.2619628448: [0.1095890410959, 0.8904109589041], 0.1940326515: [0.5342465753425, 0.4657534246575], 0.1636329518: [0.027397260274, 0.972602739726], 0.0416588478: [0.7671232876712, 0.2328767123288], 0.7945205479: [0.0], 0.9585288047: [0.5616438356164, 0.4383561643836], 0.4038281103: [0.6027397260274, 0.3972602739726], 0.1009570276: [0.3013698630137, 0.6986301369863], 0.0427847626: [0.1095890410959, 0.8904109589041], 0.411709514: [0.2602739726027, 0.7397260273973], 0.2097954588: [0.1917808219178, 0.8082191780822], 0.7468568212: [0.2739726027397, 0.7260273972603], 0.852317508: [0.5205479452055, 0.4794520547945], 0.811784575: [0.6164383561644, 0.3835616438356], 0.1088384312: [0.027397260274, 0.972602739726], 0.2176768625: [0.8767123287671, 0.1232876712329], 0.8838431225: [0.2739726027397, 0.7260273972603], 0.7813848752: [0.7671232876712, 0.2328767123288], 0.1024582473: [0.6027397260274, 0.3972602739726], 0.1189716645: [0.1780821917808, 0.8219178082192], 0.5137924564: [0.0821917808219, 0.9178082191781], 0.0570463502: [0.5342465753425, 0.4657534246575], 0.9311315444: [0.5616438356164, 0.4383561643836], 0.8902233064: [0.013698630137, 0.986301369863], 0.9596547195: [0.2602739726027, 0.7397260273973], 0.9468943517: [0.1095890410959, 0.8904109589041], 0.4800150122: [0.7671232876712, 0.2328767123288], 0.2871082755: [0.2876712328767, 0.7123287671233], 0.9675361231: [0.1369863013699, 0.8630136986301], 0.5464439857: [0.8767123287671, 0.1232876712329], 0.8354287859: [0.013698630137, 0.986301369863], 0.603115031: [0.1643835616438, 0.8356164383562], 0.121598799: [0.041095890411, 0.958904109589], 0.0187652468: [0.3013698630137, 0.6986301369863], 0.7033214487: [0.1506849315068, 0.8493150684932], 0.1553762432: [0.1506849315068, 0.8493150684932], 0.840683055: [0.3013698630137, 0.6986301369863], 0.6346406455: [0.0958904109589, 0.9041095890411], 0.9727903922: [0.6301369863014, 0.3698630136986], 0.6504034528: [0.6027397260274, 0.3972602739726], 0.5937324076: [0.1506849315068, 0.8493150684932], 0.4586226309: [0.6027397260274, 0.3972602739726], 0.0829423907: [0.2602739726027, 0.7397260273973], 0.0180146369: [0.1917808219178, 0.8082191780822], 0.6094952149: [0.7808219178082, 0.2191780821918], 0.6819290674: [0.0547945205479, 0.9452054794521], 0.173766185: [0.1780821917808, 0.8219178082192], 0.4916494652: [0.8767123287671, 0.1232876712329], 0.3554137737: [0.027397260274, 0.972602739726], 0.359542128: [0.5068493150685, 0.4931506849315], 0.0908237943: [0.1369863013699, 0.8630136986301], 0.1816475887: [0.6164383561644, 0.3835616438356], 0.0454118972: [0.1917808219178, 0.8082191780822], 0.8339275661: [0.041095890411, 0.958904109589], 0.9772940514: [0.1506849315068, 0.8493150684932], 0.6879339463: [0.5205479452055, 0.4794520547945], 0.1895289923: [0.5753424657534, 0.4246575342466], 0.3869393883: [0.5068493150685, 0.4931506849315], 0.0240195159: [0.6849315068493, 0.3150684931507], 0.602739726: [0.0], 0.8185400638: [0.3150684931507, 0.6849315068493], 0.4361043348: [0.5753424657534, 0.4246575342466], 0.8887220867: [0.041095890411, 0.958904109589], 0.3647963971: [0.1369863013699, 0.8630136986301], 0.3662976168: [0.6438356164384, 0.3561643835616], 0.2158003378: [0.6849315068493, 0.3150684931507], 0.2709701633: [0.0547945205479, 0.9452054794521], 0.4394820792: [0.5479452054795, 0.4520547945205], 0.9322574592: [0.2602739726027, 0.7397260273973], 0.2236817414: [0.0958904109589, 0.9041095890411], 0.0559204354: [0.5479452054795, 0.4520547945205], 0.342278101: [0.013698630137, 0.986301369863], 0.2799774817: [0.6575342465753, 0.3424657534247], 0.5378119722: [0.6164383561644, 0.3835616438356], 0.1197222743: [0.6438356164384, 0.3561643835616], 0.2394445487: [0.6027397260274, 0.3972602739726], 0.7626196284: [0.5890410958904, 0.4109589041096], 0.5693375868: [0.7534246575342, 0.2465753424658], 0.8005254269: [0.3424657534247, 0.6575342465753], 0.7551135297: [0.1095890410959, 0.8904109589041], 0.1456183149: [0.1369863013699, 0.8630136986301], 0.2473259523: [0.2602739726027, 0.7397260273973], 0.2991180334: [0.5753424657534, 0.4246575342466], 0.3858134734: [0.5342465753425, 0.4657534246575], 0.6166260086: [0.6301369863014, 0.3698630136986], 0.225933571: [0.7808219178082, 0.2191780821918], 0.3148808407: [0.013698630137, 0.986301369863], 0.1598799024: [0.5890410958904, 0.4109589041096], 0.3227622443: [0.7534246575342, 0.2465753424658], 0.1613811222: [0.0547945205479, 0.9452054794521], 0.5265528242: [0.3424657534247, 0.6575342465753], 0.8759617189: [0.027397260274, 0.972602739726], 0.481140927: [0.1095890410959, 0.8904109589041], 0.8305498217: [0.1369863013699, 0.8630136986301], 0.7873897542: [0.6027397260274, 0.3972602739726], 0.7153312066: [0.5205479452055, 0.4794520547945], 0.655282417: [0.5753424657534, 0.4246575342466], 0.5824732595: [0.2739726027397, 0.7260273972603], 0.9848001501: [0.8767123287671, 0.1232876712329], 0.7532370051: [0.013698630137, 0.986301369863], 0.0825670858: [0.1643835616438, 0.8356164383562], 0.7761306061: [0.0684931506849, 0.9315068493151], 0.1786451492: [0.7671232876712, 0.2328767123288], 0.3989491462: [0.8904109589041, 0.1095890410959], 0.5111653218: [0.8082191780822, 0.1917808219178], 0.4015762807: [0.1917808219178, 0.8082191780822], 0.2694689435: [0.5890410958904, 0.4109589041096], 0.3355226121: [0.7808219178082, 0.2191780821918], 0.8084068306: [0.6301369863014, 0.3698630136986], 0.8046537812: [0.6438356164384, 0.3561643835616], 0.4702570839: [0.0958904109589, 0.9041095890411], 0.8583223869: [0.0684931506849, 0.9315068493151], 0.3381497467: [0.1780821917808, 0.8219178082192], 0.0547945205: [0.0], 0.1095890411: [0.0], 0.5468192907: [0.7945205479452, 0.2054794520548], 0.8898480015: [0.2876712328767, 0.7123287671233], 0.9923062488: [0.3424657534247, 0.6575342465753], 0.8189153687: [0.0547945205479, 0.9452054794521], 0.2585851004: [0.041095890411, 0.958904109589], 0.9213736161: [0.6164383561644, 0.3835616438356], 0.3460311503: [0.6164383561644, 0.3835616438356], 0.4672546444: [0.6712328767123, 0.3287671232877], 0.4120848189: [0.5479452054795, 0.4520547945205], 0.237568024: [0.1506849315068, 0.8493150684932], 0.4830174517: [0.6164383561644, 0.3835616438356], 0.1227247138: [0.2876712328767, 0.7123287671233], 0.2454494277: [0.7945205479452, 0.2054794520548], 0.1489960593: [0.041095890411, 0.958904109589], 0.3058735222: [0.0958904109589, 0.9041095890411], 0.620003753: [0.6164383561644, 0.3835616438356], 0.9859260649: [0.5616438356164, 0.4383561643836], 0.7678738975: [0.2602739726027, 0.7397260273973], 0.8399324451: [0.8082191780822, 0.1917808219178], 0.9243760555: [0.6027397260274, 0.3972602739726], 0.5757177707: [0.1643835616438, 0.8356164383562], 0.411334209: [0.1643835616438, 0.8356164383562], 0.0836930006: [0.6712328767123, 0.3287671232877], 0.0101332333: [0.6438356164384, 0.3561643835616], 0.5411897166: [0.0821917808219, 0.9178082191781], 0.8647025708: [0.1095890410959, 0.8904109589041], 0.2469506474: [0.1643835616438, 0.8356164383562], 0.3584162132: [0.5342465753425, 0.4657534246575], 0.0457872021: [0.1506849315068, 0.8493150684932], 0.3741790205: [0.1917808219178, 0.8082191780822], 0.7258397448: [0.013698630137, 0.986301369863], 0.191030212: [0.027397260274, 0.972602739726], 0.4717583036: [0.6575342465753, 0.3424657534247], 0.7772565209: [0.6438356164384, 0.3561643835616], 0.5993619816: [0.3150684931507, 0.6849315068493], 0.0994558078: [0.6164383561644, 0.3835616438356], 0.4642522049: [0.8767123287671, 0.1232876712329], 0.8087821355: [0.7671232876712, 0.2328767123288], 0.6545318071: [0.0547945205479, 0.9452054794521], 0.7393507225: [0.5616438356164, 0.4383561643836], 0.8076562207: [0.2876712328767, 0.7123287671233], 0.6072433853: [0.0958904109589, 0.9041095890411], 0.8560705573: [0.7808219178082, 0.2191780821918], 0.2131732032: [0.7534246575342, 0.2465753424658], 0.8012760368: [0.7808219178082, 0.2191780821918], 0.8358040908: [0.6301369863014, 0.3698630136986], 0.0562957403: [0.6712328767123, 0.3287671232877], 0.6230061925: [0.6027397260274, 0.3972602739726], 0.9555263652: [0.3150684931507, 0.6849315068493], 0.3775567649: [0.7534246575342, 0.2465753424658], 0.2330643648: [0.6301369863014, 0.3698630136986], 0.9453931319: [0.6301369863014, 0.3698630136986], 0.0153875023: [0.1095890410959, 0.8904109589041], 0.6695440045: [0.041095890411, 0.958904109589], 0.139238131: [0.5342465753425, 0.4657534246575], 0.6620379058: [0.0958904109589, 0.9041095890411], 0.5753424658: [0.0], 0.0735597673: [0.3013698630137, 0.6986301369863], 0.7858885344: [0.3013698630137, 0.6986301369863], 0.0367798837: [0.1780821917808, 0.8219178082192], 0.3021204729: [0.2602739726027, 0.7397260273973], 0.6387689998: [0.1369863013699, 0.8630136986301], 0.1550009383: [0.1917808219178, 0.8082191780822], 0.5066616626: [0.013698630137, 0.986301369863], 0.4942765997: [0.5479452054795, 0.4520547945205], 0.6440232689: [0.6301369863014, 0.3698630136986], 0.6489022331: [0.3013698630137, 0.6986301369863], 0.081441171: [0.027397260274, 0.972602739726], 0.9983111278: [0.041095890411, 0.958904109589], 0.6646650403: [0.2739726027397, 0.7260273972603], 0.8797147682: [0.5205479452055, 0.4794520547945], 0.9176205667: [0.013698630137, 0.986301369863], 0.6804278476: [0.5890410958904, 0.4109589041096], 0.8264214674: [0.0958904109589, 0.9041095890411], 0.2537061362: [0.2739726027397, 0.7260273972603], 0.7119534622: [0.5616438356164, 0.4383561643836], 0.8421842747: [0.6027397260274, 0.3972602739726], 0.7277162695: [0.1095890410959, 0.8904109589041], 0.0138862826: [0.6301369863014, 0.3698630136986], 0.9934321636: [0.2739726027397, 0.7260273972603], 0.8767123288: [0.0], 0.527678739: [0.2739726027397, 0.7260273972603], 0.7705010321: [0.5068493150685, 0.4931506849315], 0.8857196472: [0.0684931506849, 0.9315068493151], 0.8737098893: [0.0547945205479, 0.9452054794521], 0.8039031713: [0.1780821917808, 0.8219178082192], 0.4019515857: [0.1506849315068, 0.8493150684932], 0.9956839932: [0.1780821917808, 0.8219178082192], 0.0131356727: [0.2876712328767, 0.7123287671233], 0.2049164947: [0.2876712328767, 0.7123287671233], 0.4177143929: [0.7808219178082, 0.2191780821918], 0.0844436104: [0.5342465753425, 0.4657534246575], 0.2019140552: [0.6438356164384, 0.3561643835616], 0.5194220304: [0.7945205479452, 0.2054794520548], 0.1358603866: [0.7945205479452, 0.2054794520548], 0.5119159317: [0.3013698630137, 0.6986301369863], 0.7693751173: [0.5342465753425, 0.4657534246575], 0.8800900732: [0.5068493150685, 0.4931506849315], 0.2206793019: [0.6712328767123, 0.3287671232877], 0.7851379246: [0.8082191780822, 0.1917808219178], 0.1268530681: [0.6164383561644, 0.3835616438356], 0.0634265341: [0.1369863013699, 0.8630136986301], 0.1155939201: [0.6575342465753, 0.3424657534247], 0.02889848: [0.6712328767123, 0.3287671232877], 0.1347344718: [0.5753424657534, 0.4246575342466], 0.823419028: [0.3287671232877, 0.6712328767123], 0.2773503472: [0.5068493150685, 0.4931506849315], 0.8204165885: [0.8767123287671, 0.1232876712329], 0.4860198912: [0.6027397260274, 0.3972602739726], 0.1234753237: [0.6301369863014, 0.3698630136986], 0.150497279: [0.013698630137, 0.986301369863], 0.6057421655: [0.5205479452055, 0.4794520547945], 0.9292550197: [0.5753424657534, 0.4246575342466], 0.4195909176: [0.1369863013699, 0.8630136986301], 0.2874835804: [0.013698630137, 0.986301369863], 0.6308875962: [0.2602739726027, 0.7397260273973], 0.5295552637: [0.0684931506849, 0.9315068493151], 0.3220116345: [0.0821917808219, 0.9178082191781], 0.3298930381: [0.5479452054795, 0.4520547945205], 0.1688872209: [0.0958904109589, 0.9041095890411], 0.678176018: [0.0821917808219, 0.9178082191781], 0.7108275474: [0.8767123287671, 0.1232876712329], 0.9495214862: [0.1917808219178, 0.8082191780822], 0.8129104898: [0.1506849315068, 0.8493150684932], 0.9870519797: [0.2602739726027, 0.7397260273973], 0.046162507: [0.3013698630137, 0.6986301369863], 0.1846500281: [0.6027397260274, 0.3972602739726], 0.0923250141: [0.6438356164384, 0.3561643835616], 0.4743854382: [0.1369863013699, 0.8630136986301], 0.5486958154: [0.2602739726027, 0.7397260273973], 0.2953649841: [0.7534246575342, 0.2465753424658], 0.7674985926: [0.1643835616438, 0.8356164383562], 0.1925314318: [0.2602739726027, 0.7397260273973], 0.7112028523: [0.7945205479452, 0.2054794520548], 0.7491086508: [0.1780821917808, 0.8219178082192], 0.9908050291: [0.0958904109589, 0.9041095890411], 0.6507787577: [0.0821917808219, 0.9178082191781], 0.0544192156: [0.5616438356164, 0.4383561643836], 0.8147870144: [0.6027397260274, 0.3972602739726], 0.4139613436: [0.5205479452055, 0.4794520547945], 0.3693000563: [0.2876712328767, 0.7123287671233], 0.857947082: [0.1369863013699, 0.8630136986301], 0.4379808594: [0.5616438356164, 0.4383561643836], 0.0270219553: [0.5616438356164, 0.4383561643836], 0.562206793: [0.7671232876712, 0.2328767123288], 0.4297241509: [0.3013698630137, 0.6986301369863], 0.5719647213: [0.3150684931507, 0.6849315068493], 0.2188027773: [0.5616438356164, 0.4383561643836], 0.4454869582: [0.2739726027397, 0.7260273972603], 0.7517357853: [0.041095890411, 0.958904109589], 0.2525802214: [0.6575342465753, 0.3424657534247], 0.3880653031: [0.0958904109589, 0.9041095890411], 0.8515668981: [0.5342465753425, 0.4657534246575], 0.4612497654: [0.5890410958904, 0.4109589041096], 0.968286733: [0.1780821917808, 0.8219178082192], 0.5340589229: [0.013698630137, 0.986301369863], 0.2345655845: [0.1095890410959, 0.8904109589041], 0.0086320135: [0.1369863013699, 0.8630136986301], 0.8252955526: [0.5068493150685, 0.4931506849315], 0.4653781197: [0.5616438356164, 0.4383561643836], 0.8996059298: [0.5890410958904, 0.4109589041096], 0.2893601051: [0.1095890410959, 0.8904109589041], 0.9247513605: [0.0821917808219, 0.9178082191781], 0.6853068118: [0.1643835616438, 0.8356164383562], 0.3850628636: [0.6712328767123, 0.3287671232877], 0.8016513417: [0.2739726027397, 0.7260273972603], 0.2555826609: [0.0684931506849, 0.9315068493151], 0.643272659: [0.2876712328767, 0.7123287671233], 0.1643835616: [0.0], 0.8125351848: [0.8082191780822, 0.1917808219178], 0.6706699193: [0.2876712328767, 0.7123287671233], 0.7295927941: [0.6164383561644, 0.3835616438356], 0.6402702196: [0.6438356164384, 0.3561643835616], 0.6864327266: [0.3287671232877, 0.6712328767123], 0.7021955339: [0.6164383561644, 0.3835616438356], 0.0307750047: [0.5068493150685, 0.4931506849315], 0.9502720961: [0.3013698630137, 0.6986301369863], 0.3955714018: [0.041095890411, 0.958904109589], 0.1827735035: [0.1506849315068, 0.8493150684932], 0.3734284106: [0.6164383561644, 0.3835616438356], 0.3295177332: [0.2602739726027, 0.7397260273973], 0.1906549071: [0.7945205479452, 0.2054794520548], 0.0953274536: [0.2876712328767, 0.7123287671233], 0.510414712: [0.6164383561644, 0.3835616438356], 0.9604053293: [0.3287671232877, 0.6712328767123], 0.1985363108: [0.7808219178082, 0.2191780821918], 0.5348095327: [0.7671232876712, 0.2328767123288], 0.4049540251: [0.7534246575342, 0.2465753424658], 0.0251454307: [0.5753424657534, 0.4246575342466], 0.9776693564: [0.3013698630137, 0.6986301369863], 0.9179958716: [0.6301369863014, 0.3698630136986], 0.6747982736: [0.6164383561644, 0.3835616438356], 0.0067554888: [0.7808219178082, 0.2191780821918], 0.9592794145: [0.1643835616438, 0.8356164383562], 0.6826796772: [0.5753424657534, 0.4246575342466], 0.0555451304: [0.2602739726027, 0.7397260273973], 0.3107524864: [0.1780821917808, 0.8219178082192], 0.9018577594: [0.5753424657534, 0.4246575342466], 0.0641771439: [0.1780821917808, 0.8219178082192], 0.1283542879: [0.3013698630137, 0.6986301369863], 0.8770876337: [0.1643835616438, 0.8356164383562], 0.1163445299: [0.7808219178082, 0.2191780821918], 0.2326890599: [0.013698630137, 0.986301369863], 0.058172265: [0.5068493150685, 0.4931506849315], 0.1362356915: [0.027397260274, 0.972602739726], 0.3197598048: [0.1506849315068, 0.8493150684932], 0.5580784387: [0.6438356164384, 0.3561643835616], 0.2405704635: [0.7534246575342, 0.2465753424658], 0.1441170951: [0.2739726027397, 0.7260273972603], 0.0303996998: [0.5205479452055, 0.4794520547945], 0.967911428: [0.0684931506849, 0.9315068493151], 0.8286732971: [0.7808219178082, 0.2191780821918], 0.6485269281: [0.1506849315068, 0.8493150684932], 0.6211296679: [0.1506849315068, 0.8493150684932], 0.9600300244: [0.5479452054795, 0.4520547945205], 0.5742165509: [0.7945205479452, 0.2054794520548], 0.3557890786: [0.5616438356164, 0.4383561643836], 0.945017827: [0.013698630137, 0.986301369863], 0.846312629: [0.0547945205479, 0.9452054794521], 0.1703884406: [0.6575342465753, 0.3424657534247], 0.6590354663: [0.3287671232877, 0.6712328767123], 0.4931506849: [0.0], 0.1782698442: [0.6301369863014, 0.3698630136986], 0.7262150497: [0.6301369863014, 0.3698630136986], 0.5873522237: [0.041095890411, 0.958904109589], 0.3407768812: [0.041095890411, 0.958904109589], 0.741977857: [0.5342465753425, 0.4657534246575], 0.7603677988: [0.0821917808219, 0.9178082191781], 0.3801838994: [0.6849315068493, 0.3150684931507], 0.7386001126: [0.7945205479452, 0.2054794520548], 0.9221242259: [0.8082191780822, 0.1917808219178], 0.7701257272: [0.5205479452055, 0.4794520547945], 0.8207918934: [0.7945205479452, 0.2054794520548], 0.4353537249: [0.0547945205479, 0.9452054794521], 0.3028710828: [0.6712328767123, 0.3287671232877], 0.4169637831: [0.6575342465753, 0.3424657534247], 0.7431037718: [0.5068493150685, 0.4931506849315], 0.4248451867: [0.6301369863014, 0.3698630136986], 0.2124225934: [0.0821917808219, 0.9178082191781], 0.0093826234: [0.1780821917808, 0.8219178082192], 0.7115781573: [0.027397260274, 0.972602739726], 0.4758866579: [0.6438356164384, 0.3561643835616], 0.220303997: [0.5479452054795, 0.4520547945205], 0.1733908801: [0.0684931506849, 0.9315068493151], 0.4484893976: [0.6438356164384, 0.3561643835616], 0.3831863389: [0.5616438356164, 0.4383561643836], 0.5085381873: [0.8904109589041, 0.1095890410959], 0.1140927003: [0.0958904109589, 0.9041095890411], 0.0015012197: [0.6712328767123, 0.3287671232877], 0.0776881216: [0.5890410958904, 0.4109589041096], 0.8478138488: [0.8767123287671, 0.1232876712329], 0.9416400826: [0.6438356164384, 0.3561643835616], 0.8909739163: [0.7671232876712, 0.2328767123288], 0.9574028898: [0.8767123287671, 0.1232876712329], 0.9731656971: [0.7671232876712, 0.2328767123288], 0.2923625446: [0.1506849315068, 0.8493150684932], 0.2465753425: [0.0], 0.0375304935: [0.6438356164384, 0.3561643835616], 0.1501219741: [0.2876712328767, 0.7123287671233], 0.0750609871: [0.6027397260274, 0.3972602739726], 0.3081253518: [0.7808219178082, 0.2191780821918], 0.8433101895: [0.7534246575342, 0.2465753424658], 0.6293863764: [0.027397260274, 0.972602739726], 0.0319009195: [0.0958904109589, 0.9041095890411], 0.5021580034: [0.0684931506849, 0.9315068493151], 0.660911991: [0.5068493150685, 0.4931506849315], 0.817414149: [0.5890410958904, 0.4109589041096], 0.8553199475: [0.3424657534247, 0.6575342465753], 0.8099080503: [0.1095890410959, 0.8904109589041], 0.1763933196: [0.041095890411, 0.958904109589], 0.7528617001: [0.2876712328767, 0.7123287671233], 0.5182961156: [0.5753424657534, 0.4246575342466], 0.3606680428: [0.0958904109589, 0.9041095890411], 0.5239256896: [0.5068493150685, 0.4931506849315], 0.0296490899: [0.5342465753425, 0.4657534246575], 0.3152561456: [0.6301369863014, 0.3698630136986], 0.3764308501: [0.6027397260274, 0.3972602739726], 0.0960780634: [0.6301369863014, 0.3698630136986], 0.1921561269: [0.1643835616438, 0.8356164383562], 0.3921936573: [0.1369863013699, 0.8630136986301], 0.7843873147: [0.6164383561644, 0.3835616438356], 0.1658847814: [0.6712328767123, 0.3287671232877], 0.9896791143: [0.5068493150685, 0.4931506849315], 0.4079564646: [0.0547945205479, 0.9452054794521], 0.829048602: [0.2739726027397, 0.7260273972603], 0.034528054: [0.2739726027397, 0.7260273972603], 0.7134546819: [0.5479452054795, 0.4520547945205], 0.8763370238: [0.5616438356164, 0.4383561643836], 0.1092137362: [0.5616438356164, 0.4383561643836], 0.9337586789: [0.5342465753425, 0.4657534246575], 0.8920998311: [0.1095890410959, 0.8904109589041], 0.75361231: [0.6301369863014, 0.3698630136986], 0.4526177519: [0.7671232876712, 0.2328767123288], 0.226308876: [0.2739726027397, 0.7260273972603], 0.1298555076: [0.6027397260274, 0.3972602739726], 0.5325577031: [0.041095890411, 0.958904109589], 0.550947645: [0.5205479452055, 0.4794520547945], 0.4796397073: [0.6301369863014, 0.3698630136986], 0.1377369112: [0.2602739726027, 0.7397260273973], 0.3475323701: [0.3013698630137, 0.6986301369863], 0.7243385251: [0.041095890411, 0.958904109589], 0.2420716832: [0.5890410958904, 0.4109589041096], 0.9998123475: [0.013698630137, 0.986301369863], 0.0728091574: [0.1917808219178, 0.8082191780822], 0.4920247701: [0.7945205479452, 0.2054794520548], 0.7213360856: [0.0684931506849, 0.9315068493151], 0.1249765434: [0.1095890410959, 0.8904109589041], 0.2499530869: [0.5068493150685, 0.4931506849315], 0.5614561831: [0.013698630137, 0.986301369863], 0.6113717395: [0.1369863013699, 0.8630136986301], 0.5539500844: [0.3424657534247, 0.6575342465753], 0.7029461437: [0.8082191780822, 0.1917808219178], 0.6271345468: [0.0547945205479, 0.9452054794521], 0.3201351098: [0.3013698630137, 0.6986301369863], 0.382811034: [0.027397260274, 0.972602739726], 0.7157065115: [0.5068493150685, 0.4931506849315], 0.1640082567: [0.5616438356164, 0.4383561643836], 0.6586601614: [0.5479452054795, 0.4520547945205], 0.3358979171: [0.2739726027397, 0.7260273972603], 0.544942766: [0.0547945205479, 0.9452054794521], 0.9360105085: [0.0958904109589, 0.9041095890411], 0.5205479452: [0.0], 0.863576656: [0.7671232876712, 0.2328767123288], 0.8699568399: [0.0821917808219, 0.9178082191781], 0.3516607243: [0.5890410958904, 0.4109589041096], 0.1238506286: [0.7671232876712, 0.2328767123288], 0.4518671421: [0.013698630137, 0.986301369863], 0.179771064: [0.1095890410959, 0.8904109589041], 0.4293488459: [0.1506849315068, 0.8493150684932], 0.4954025145: [0.5342465753425, 0.4657534246575], 0.5652092325: [0.6164383561644, 0.3835616438356], 0.3632951773: [0.2739726027397, 0.7260273972603], 0.214674423: [0.5890410958904, 0.4109589041096], 0.7911428035: [0.3150684931507, 0.6849315068493], 0.9769187465: [0.8082191780822, 0.1917808219178], 0.7952711578: [0.2602739726027, 0.7397260273973], 0.4042034153: [0.0821917808219, 0.9178082191781], 0.2060424095: [0.7671232876712, 0.2328767123288], 0.8744604992: [0.5753424657534, 0.4246575342466], 0.4199662226: [0.0684931506849, 0.9315068493151], 0.7956464628: [0.5479452054795, 0.4520547945205], 0.7427284669: [0.5205479452055, 0.4794520547945], 0.4991555639: [0.3424657534247, 0.6575342465753], 0.0281478701: [0.2602739726027, 0.7397260273973], 0.4514918371: [0.2876712328767, 0.7123287671233], 0.8279226872: [0.3424657534247, 0.6575342465753], 0.5145430662: [0.7534246575342, 0.2465753424658], 0.916119347: [0.041095890411, 0.958904109589], 0.2638393695: [0.6164383561644, 0.3835616438356], 0.9318821543: [0.1643835616438, 0.8356164383562], 0.875211109: [0.8767123287671, 0.1232876712329], 0.0679301933: [0.2876712328767, 0.7123287671233], 0.3790579846: [0.5890410958904, 0.4109589041096], 0.6034903359: [0.2602739726027, 0.7397260273973], 0.5618314881: [0.6301369863014, 0.3698630136986], 0.1437417902: [0.7808219178082, 0.2191780821918], 0.3100018765: [0.1369863013699, 0.8630136986301], 0.2510790017: [0.0958904109589, 0.9041095890411], 0.5907299681: [0.1095890410959, 0.8904109589041], 0.2480765622: [0.6712328767123, 0.3287671232877], 0.7123287671: [0.0], 0.5775942954: [0.5342465753425, 0.4657534246575], 0.7738787765: [0.7808219178082, 0.2191780821918], 0.979545881: [0.0821917808219, 0.9178082191781], 0.4556201914: [0.6164383561644, 0.3835616438356], 0.66691687: [0.1780821917808, 0.8219178082192], 0.6395196097: [0.1780821917808, 0.8219178082192], 0.6789266279: [0.7534246575342, 0.2465753424658], 0.3895665228: [0.6575342465753, 0.3424657534247], 0.9829236254: [0.3150684931507, 0.6849315068493], 0.6984424845: [0.013698630137, 0.986301369863], 0.1778945393: [0.013698630137, 0.986301369863], 0.0889472697: [0.7808219178082, 0.2191780821918], 0.7877650591: [0.0821917808219, 0.9178082191781], 0.0821917808: [0.0], 0.3715518859: [0.8904109589041, 0.1095890410959], 0.185775943: [0.7534246575342, 0.2465753424658], 0.9270031901: [0.5890410958904, 0.4109589041096], 0.4687558641: [0.5205479452055, 0.4794520547945], 0.9052355038: [0.5479452054795, 0.4520547945205], 0.4282229311: [0.6164383561644, 0.3835616438356], 0.8035278664: [0.0684931506849, 0.9315068493151], 0.6560330268: [0.8767123287671, 0.1232876712329], 0.4109589041: [0.0], 0.835053481: [0.2876712328767, 0.7123287671233], 0.8508162882: [0.3287671232877, 0.6712328767123], 0.0683054982: [0.013698630137, 0.986301369863], 0.4263464065: [0.8904109589041, 0.1095890410959], 0.8665790955: [0.6164383561644, 0.3835616438356], 0.9863013699: [0.0], 0.2199286921: [0.2602739726027, 0.7397260273973], 0.5490711203: [0.5479452054795, 0.4520547945205], 0.4477387878: [0.1780821917808, 0.8219178082192], 0.8981047101: [0.7534246575342, 0.2465753424658], 0.2278100957: [0.1369863013699, 0.8630136986301], 0.7922687183: [0.5753424657534, 0.4246575342466], 0.5227997748: [0.5342465753425, 0.4657534246575], 0.463501595: [0.5753424657534, 0.4246575342466], 0.2705948583: [0.6849315068493, 0.3150684931507], 0.5933571026: [0.8082191780822, 0.1917808219178], 0.5569525239: [0.0684931506849, 0.9315068493151], 0.4792644023: [0.013698630137, 0.986301369863], 0.3471570651: [0.1506849315068, 0.8493150684932], 0.9742916119: [0.1095890410959, 0.8904109589041], 0.243572903: [0.0547945205479, 0.9452054794521], 0.8489397636: [0.5616438356164, 0.4383561643836], 0.8782135485: [0.3287671232877, 0.6712328767123], 0.6016138112: [0.7945205479452, 0.2054794520548], 0.307374742: [0.6575342465753, 0.3424657534247], 0.9878025896: [0.3287671232877, 0.6712328767123], 0.1576280728: [0.0821917808219, 0.9178082191781], 0.5847250891: [0.1780821917808, 0.8219178082192], 0.4210921374: [0.6438356164384, 0.3561643835616], 0.0183899418: [0.1506849315068, 0.8493150684932], 0.1655094765: [0.5479452054795, 0.4520547945205], 0.8373053106: [0.1095890410959, 0.8904109589041], 0.3389003565: [0.6438356164384, 0.3561643835616], 0.08669544: [0.0958904109589, 0.9041095890411], 0.9589041096: [0.0], 0.3546631638: [0.8767123287671, 0.1232876712329], 0.9874272847: [0.5479452054795, 0.4520547945205], 0.7224620004: [0.6438356164384, 0.3561643835616], 0.2214299118: [0.5342465753425, 0.4657534246575], 0.84030775: [0.1506849315068, 0.8493150684932], 0.5494464252: [0.3287671232877, 0.6712328767123], 0.6980671796: [0.2876712328767, 0.7123287671233], 0.4316006755: [0.0821917808219, 0.9178082191781], 0.4976543442: [0.0958904109589, 0.9041095890411], 0.7310940139: [0.3013698630137, 0.6986301369863], 0.4503659223: [0.041095890411, 0.958904109589], 0.5967348471: [0.7534246575342, 0.2465753424658], 0.7791330456: [0.041095890411, 0.958904109589], 0.4368549446: [0.8767123287671, 0.1232876712329], 0.422968662: [0.041095890411, 0.958904109589], 0.3047476074: [0.5068493150685, 0.4931506849315], 0.5134171514: [0.6027397260274, 0.3972602739726], 0.8789641584: [0.5342465753425, 0.4657534246575], 0.4387314693: [0.1643835616438, 0.8356164383562], 0.614749484: [0.041095890411, 0.958904109589], 0.8905986114: [0.6301369863014, 0.3698630136986], 0.017264027: [0.6164383561644, 0.3835616438356], 0.9063614187: [0.5342465753425, 0.4657534246575], 0.3550384688: [0.7945205479452, 0.2054794520548], 0.2311878401: [0.041095890411, 0.958904109589], 0.4376055545: [0.027397260274, 0.972602739726], 0.266841809: [0.6027397260274, 0.3972602739726], 0.5385625821: [0.8082191780822, 0.1917808219178], 0.1373616063: [0.1643835616438, 0.8356164383562], 0.0686808032: [0.6301369863014, 0.3698630136986], 0.3813098142: [0.5753424657534, 0.4246575342466], 0.2826046163: [0.1369863013699, 0.8630136986301], 0.1118408707: [0.5342465753425, 0.4657534246575], 0.0394070182: [0.041095890411, 0.958904109589], 0.9851754551: [0.7945205479452, 0.2054794520548], 0.0476637268: [0.6027397260274, 0.3972602739726], 0.2495777819: [0.5205479452055, 0.4794520547945], 0.9307562394: [0.027397260274, 0.972602739726], 0.6098705198: [0.2739726027397, 0.7260273972603], 0.6256333271: [0.5890410958904, 0.4109589041096], 0.5062863577: [0.2876712328767, 0.7123287671233], 0.1610058172: [0.6849315068493, 0.3150684931507], 0.5997372865: [0.0547945205479, 0.9452054794521], 0.6571589416: [0.5616438356164, 0.4383561643836], 0.2717207731: [0.5753424657534, 0.4246575342466], 0.4728842184: [0.2739726027397, 0.7260273972603], 0.6729217489: [0.1095890410959, 0.8904109589041], 0.6860574217: [0.5479452054795, 0.4520547945205], 0.9183711766: [0.7671232876712, 0.2328767123288], 0.6312629011: [0.5479452054795, 0.4520547945205], 0.5220491649: [0.3287671232877, 0.6712328767123], 0.1872771627: [0.5890410958904, 0.4109589041096], 0.3970726215: [0.013698630137, 0.986301369863], 0.382435729: [0.7945205479452, 0.2054794520548], 0.2649652843: [0.1506849315068, 0.8493150684932], 0.1951585663: [0.5068493150685, 0.4931506849315], 0.0975792832: [0.1095890410959, 0.8904109589041], 0.7937699381: [0.027397260274, 0.972602739726], 0.9577781948: [0.7945205479452, 0.2054794520548], 0.7731281666: [0.3424657534247, 0.6575342465753], 0.8594483017: [0.6438356164384, 0.3561643835616], 0.6778007131: [0.6027397260274, 0.3972602739726], 0.6717958341: [0.7671232876712, 0.2328767123288], 0.5456933759: [0.5753424657534, 0.4246575342466], 0.43497842: [0.6849315068493, 0.3150684931507], 0.0135109777: [0.013698630137, 0.986301369863], 0.7806342653: [0.013698630137, 0.986301369863], 0.6856821167: [0.2602739726027, 0.7397260273973], 0.2293113154: [0.6438356164384, 0.3561643835616], 0.823043723: [0.5479452054795, 0.4520547945205], 0.2942390692: [0.6027397260274, 0.3972602739726], 0.1185963595: [0.0684931506849, 0.9315068493151], 0.2371927191: [0.1917808219178, 0.8082191780822], 0.0592981798: [0.0958904109589, 0.9041095890411], 0.7337211484: [0.7534246575342, 0.2465753424658], 0.0701820229: [0.1095890410959, 0.8904109589041], 0.5760930756: [0.2602739726027, 0.7397260273973], 0.2450741227: [0.8767123287671, 0.1232876712329], 0.7397260274: [0.0], 0.2946143742: [0.0821917808219, 0.9178082191781], 0.9656595984: [0.7808219178082, 0.2191780821918], 0.1512478889: [0.7671232876712, 0.2328767123288], 0.3103771815: [0.0684931506849, 0.9315068493151], 0.6233814975: [0.0821917808219, 0.9178082191781], 0.9709138675: [0.041095890411, 0.958904109589], 0.6661662601: [0.1369863013699, 0.8630136986301], 0.4777631826: [0.041095890411, 0.958904109589], 0.5892287484: [0.6301369863014, 0.3698630136986], 0.0893225746: [0.2739726027397, 0.7260273972603], 0.6004878964: [0.5753424657534, 0.4246575342466], 0.341902796: [0.2876712328767, 0.7123287671233], 0.2912366298: [0.6164383561644, 0.3835616438356], 0.9660349034: [0.2739726027397, 0.7260273972603], 0.4924000751: [0.027397260274, 0.972602739726], 0.7127040721: [0.1643835616438, 0.8356164383562], 0.3576656033: [0.6712328767123, 0.3287671232877], 0.3655470069: [0.1780821917808, 0.8219178082192], 0.7093263276: [0.0547945205479, 0.9452054794521], 0.7442296866: [0.0958904109589, 0.9041095890411], 0.8624507412: [0.2876712328767, 0.7123287671233], 0.52167386: [0.5479452054795, 0.4520547945205], 0.7599924939: [0.6027397260274, 0.3972602739726], 0.730343404: [0.8082191780822, 0.1917808219178], 0.1932820417: [0.6712328767123, 0.3287671232877], 0.4075811597: [0.6849315068493, 0.3150684931507], 0.5982360668: [0.5890410958904, 0.4109589041096], 0.2011634453: [0.1780821917808, 0.8219178082192], 0.1005817227: [0.1506849315068, 0.8493150684932], 0.7055732783: [0.0821917808219, 0.9178082191781], 0.0090073184: [0.0684931506849, 0.9315068493151], 0.6061174704: [0.5068493150685, 0.4931506849315], 0.2090448489: [0.6164383561644, 0.3835616438356], 0.4180896979: [0.2739726027397, 0.7260273972603], 0.8680803153: [0.3013698630137, 0.6986301369863], 0.8226684181: [0.2602739726027, 0.7397260273973], 0.608744605: [0.3424657534247, 0.6575342465753], 0.8677050103: [0.1506849315068, 0.8493150684932], 0.2169262526: [0.5753424657534, 0.4246575342466], 0.0788140364: [0.6849315068493, 0.3150684931507], 0.666541565: [0.0684931506849, 0.9315068493151], 0.6012385063: [0.8767123287671, 0.1232876712329], 0.5291799587: [0.1369863013699, 0.8630136986301], 0.1110902608: [0.6712328767123, 0.3287671232877], 0.6170013136: [0.7671232876712, 0.2328767123288], 0.1309814224: [0.7534246575342, 0.2465753424658], 0.9281291049: [0.3150684931507, 0.6849315068493], 0.8939763558: [0.6164383561644, 0.3835616438356], 0.6834302871: [0.8767123287671, 0.1232876712329], 0.6297616814: [0.5616438356164, 0.4383561643836], 0.243197598: [0.6849315068493, 0.3150684931507], 0.4863951961: [0.0821917808219, 0.9178082191781], 0.3572902984: [0.5479452054795, 0.4520547945205], 0.9885531995: [0.5342465753425, 0.4657534246575], 0.301369863: [0.0], 0.6158753988: [0.2876712328767, 0.7123287671233], 0.040532933: [0.2876712328767, 0.7123287671233], 0.631638206: [0.3287671232877, 0.6712328767123], 0.6474010133: [0.6164383561644, 0.3835616438356], 0.6455244886: [0.1095890410959, 0.8904109589041], 0.0412835429: [0.6301369863014, 0.3698630136986], 0.2567085757: [0.6438356164384, 0.3561643835616], 0.0806905611: [0.8767123287671, 0.1232876712329], 0.1730155752: [0.1369863013699, 0.8630136986301], 0.7855132295: [0.1506849315068, 0.8493150684932], 0.7078251079: [0.5890410958904, 0.4109589041096], 0.353912554: [0.5753424657534, 0.4246575342466], 0.9131169075: [0.0684931506849, 0.9315068493151], 0.9056108088: [0.3287671232877, 0.6712328767123], 0.8500656784: [0.2602739726027, 0.7397260273973], 0.3696753612: [0.013698630137, 0.986301369863], 0.9228748358: [0.3013698630137, 0.6986301369863], 0.3377744417: [0.0684931506849, 0.9315068493151], 0.1887783824: [0.0547945205479, 0.9452054794521], 0.7682492025: [0.5479452054795, 0.4520547945205], 0.330268343: [0.6712328767123, 0.3287671232877], 0.2645899794: [0.1917808219178, 0.8082191780822], 0.5667104522: [0.3013698630137, 0.6986301369863], 0.3332707825: [0.0958904109589, 0.9041095890411], 0.7168324263: [0.0958904109589, 0.9041095890411], 0.0668042785: [0.041095890411, 0.958904109589], 0.0213923813: [0.7534246575342, 0.2465753424658], 0.5483205104: [0.1643835616438, 0.8356164383562], 0.8313004316: [0.1780821917808, 0.8219178082192], 0.0517920811: [0.0547945205479, 0.9452054794521], 0.0045036592: [0.0958904109589, 0.9041095890411], 0.8470632389: [0.5753424657534, 0.4246575342466], 0.8628260462: [0.013698630137, 0.986301369863], 0.272471383: [0.8767123287671, 0.1232876712329], 0.6950647401: [0.6438356164384, 0.3561643835616], 0.5032839182: [0.6438356164384, 0.3561643835616], 0.4537436667: [0.8904109589041, 0.1095890410959], 0.26083693: [0.7671232876712, 0.2328767123288], 0.8222931132: [0.1643835616438, 0.8356164383562], 0.4451116532: [0.7808219178082, 0.2191780821918], 0.9521486208: [0.0821917808219, 0.9178082191781], 0.0071307938: [0.2739726027397, 0.7260273972603], 0.5663351473: [0.1506849315068, 0.8493150684932], 0.2829799212: [0.0684931506849, 0.9315068493151], 0.3490335898: [0.6027397260274, 0.3972602739726], 0.6755488835: [0.8082191780822, 0.1917808219178], 0.9994370426: [0.2876712328767, 0.7123287671233], 0.3133796209: [0.041095890411, 0.958904109589], 0.6267592419: [0.3150684931507, 0.6849315068493], 0.2882341903: [0.7671232876712, 0.2328767123288], 0.3291424282: [0.1643835616438, 0.8356164383562], 0.8459373241: [0.3150684931507, 0.6849315068493], 0.6714205292: [0.6301369863014, 0.3698630136986], 0.7138299869: [0.3287671232877, 0.6712328767123], 0.6871833365: [0.5342465753425, 0.4657534246575], 0.9134922124: [0.1780821917808, 0.8219178082192], 0.3527866391: [0.6849315068493, 0.3150684931507], 0.5783449052: [0.5205479452055, 0.4794520547945], 0.4680052543: [0.5342465753425, 0.4657534246575], 0.5896040533: [0.7671232876712, 0.2328767123288], 0.0120097579: [0.041095890411, 0.958904109589], 0.1831488084: [0.3013698630137, 0.6986301369863], 0.7659973729: [0.7945205479452, 0.2054794520548], 0.9949333834: [0.1369863013699, 0.8630136986301], 0.1947832614: [0.5205479452055, 0.4794520547945], 0.3974479264: [0.6301369863014, 0.3698630136986], 0.7975229874: [0.5205479452055, 0.4794520547945], 0.7374741978: [0.5753424657534, 0.4246575342466], 0.0030024395: [0.5205479452055, 0.4794520547945], 0.4132107337: [0.5342465753425, 0.4657534246575], 0.9724150873: [0.013698630137, 0.986301369863], 0.2105460687: [0.3013698630137, 0.6986301369863], 0.9074873335: [0.5068493150685, 0.4931506849315], 0.428973541: [0.8082191780822, 0.1917808219178], 0.2184274723: [0.027397260274, 0.972602739726], 0.886845562: [0.6438356164384, 0.3561643835616], 0.0551698255: [0.1643835616438, 0.8356164383562], 0.9026083693: [0.8767123287671, 0.1232876712329], 0.5359354476: [0.8904109589041, 0.1095890410959], 0.5599549634: [0.041095890411, 0.958904109589], 0.1324826421: [0.5890410958904, 0.4109589041096], 0.4657534247: [0.0], 0.475136048: [0.1780821917808, 0.8219178082192], 0.2728466879: [0.7945205479452, 0.2054794520548], 0.9498967911: [0.1506849315068, 0.8493150684932], 0.1403640458: [0.5068493150685, 0.4931506849315], 0.3145055357: [0.2876712328767, 0.7123287671233], 0.5745918559: [0.027397260274, 0.972602739726], 0.3805592044: [0.0547945205479, 0.9452054794521], 0.9037342841: [0.5616438356164, 0.4383561643836], 0.6368924751: [0.7808219178082, 0.2191780821918], 0.5190467255: [0.8767123287671, 0.1232876712329], 0.3043723025: [0.5205479452055, 0.4794520547945], 0.5659598424: [0.8082191780822, 0.1917808219178], 0.8080315256: [0.013698630137, 0.986301369863], 0.1666353913: [0.5342465753425, 0.4657534246575], 0.6849315068: [0.0], 0.9142428223: [0.6438356164384, 0.3561643835616], 0.962281854: [0.5068493150685, 0.4931506849315], 0.1745167949: [0.6438356164384, 0.3561643835616], 0.8309251267: [0.0684931506849, 0.9315068493151], 0.3569149934: [0.2602739726027, 0.7397260273973], 0.05779696: [0.5205479452055, 0.4794520547945], 0.1823981985: [0.1917808219178, 0.8082191780822], 0.0911990993: [0.0684931506849, 0.9315068493151], 0.7900168887: [0.5890410958904, 0.4109589041096], 0.6023644211: [0.5616438356164, 0.4383561643836], 0.1902796022: [0.8767123287671, 0.1232876712329], 0.7742540814: [0.2739726027397, 0.7260273972603], 0.5336836179: [0.2876712328767, 0.7123287671233], 0.6049915556: [0.5342465753425, 0.4657534246575]}
averages_odd={0.41077125164: [0.013698630137, 0.986301369863], 0.41865265528: [0.7534246575342, 0.2465753424658], 0.60630512291: [0.6164383561644, 0.3835616438356], 0.21261024583: [0.2739726027397, 0.7260273972603], 0.67198348658: [0.2602739726027, 0.7397260273973], 0.99549634078: [0.5890410958904, 0.4109589041096], 0.92644023269: [0.1369863013699, 0.8630136986301], 0.92493901295: [0.2739726027397, 0.7260273972603], 0.61944079565: [0.5205479452055, 0.4794520547945], 0.06398949146: [0.5890410958904, 0.4109589041096], 0.71927190843: [0.0821917808219, 0.9178082191781], 0.26252580221: [0.5342465753425, 0.4657534246575], 0.11615687746: [0.6027397260274, 0.3972602739726], 0.73503471571: [0.0684931506849, 0.9315068493151], 0.27040720586: [0.6438356164384, 0.3561643835616], 0.23625445675: [0.5068493150685, 0.4931506849315], 0.7594295365: [0.3424657534247, 0.6575342465753], 0.2782886095: [0.1917808219178, 0.8082191780822], 0.76656033027: [0.2876712328767, 0.7123287671233], 0.28617001314: [0.8767123287671, 0.1232876712329], 0.779696003: [0.7945205479452, 0.2054794520548], 0.03659223119: [0.5890410958904, 0.4109589041096], 0.49483955714: [0.1095890410959, 0.8904109589041], 0.15030962657: [0.5616438356164, 0.4383561643836], 0.30193282042: [0.7671232876712, 0.2328767123288], 0.81122161756: [0.5205479452055, 0.4794520547945], 0.0771251642: [0.1369863013699, 0.8630136986301], 0.82698442485: [0.3013698630137, 0.6986301369863], 0.64308500657: [0.027397260274, 0.972602739726], 0.84274723213: [0.2739726027397, 0.7260273972603], 0.00506661663: [0.3013698630137, 0.6986301369863], 0.85851003941: [0.5890410958904, 0.4109589041096], 0.16607243385: [0.1095890410959, 0.8904109589041], 0.87164571214: [0.1369863013699, 0.8630136986301], 0.78307374742: [0.5342465753425, 0.4657534246575], 0.88740851942: [0.0547945205479, 0.9452054794521], 0.49146181272: [0.041095890411, 0.958904109589], 0.48845937324: [0.0684931506849, 0.9315068493151], 0.35447551135: [0.041095890411, 0.958904109589], 0.85963595421: [0.6849315068493, 0.3150684931507], 0.85363107525: [0.1917808219178, 0.8082191780822], 0.93206980672: [0.7671232876712, 0.2328767123288], 0.37023831863: [0.1643835616438, 0.8356164383562], 0.54625633327: [0.041095890411, 0.958904109589], 0.04710076938: [0.3424657534247, 0.6575342465753], 0.56201914055: [0.1643835616438, 0.8356164383562], 0.19234377932: [0.7671232876712, 0.2328767123288], 0.57515481329: [0.013698630137, 0.986301369863], 0.12478889097: [0.3287671232877, 0.6712328767123], 0.09814224057: [0.5342465753425, 0.4657534246575], 0.59354475511: [0.0958904109589, 0.9041095890411], 0.77631825859: [0.5890410958904, 0.4109589041096], 0.99099268155: [0.1506849315068, 0.8493150684932], 0.83786826797: [0.5342465753425, 0.4657534246575], 0.62244323513: [0.3424657534247, 0.6575342465753], 0.67461062113: [0.5068493150685, 0.4931506849315], 0.10602364421: [0.6438356164384, 0.3561643835616], 0.65396884969: [0.6438356164384, 0.3561643835616], 0.43066241321: [0.3424657534247, 0.6575342465753], 0.66973165697: [0.8767123287671, 0.1232876712329], 0.43854381685: [0.6301369863014, 0.3698630136986], 0.68549446425: [0.7671232876712, 0.2328767123288], 0.95196096829: [0.7808219178082, 0.2191780821918], 0.69863013699: [0.0], 0.25351848377: [0.0821917808219, 0.9178082191781], 0.95721523738: [0.041095890411, 0.958904109589], 0.13004316007: [0.7808219178082, 0.2191780821918], 0.06699193094: [0.8767123287671, 0.1232876712329], 0.23437793207: [0.3287671232877, 0.6712328767123], 0.74329142428: [0.6164383561644, 0.3835616438356], 0.37887033215: [0.0684931506849, 0.9315068493151], 0.69825483205: [0.5616438356164, 0.4383561643836], 0.24225933571: [0.1780821917808, 0.8219178082192], 0.77481703884: [0.7534246575342, 0.2465753424658], 0.00769375117: [0.7534246575342, 0.2465753424658], 0.71401763933: [0.1095890410959, 0.8904109589041], 0.3060611747: [0.1506849315068, 0.8493150684932], 0.82210546069: [0.6301369863014, 0.3698630136986], 0.31394257835: [0.7945205479452, 0.2054794520548], 0.83111277913: [0.5890410958904, 0.4109589041096], 0.32182398199: [0.7808219178082, 0.2191780821918], 0.8510039407: [0.1095890410959, 0.8904109589041], 0.16419590918: [0.013698630137, 0.986301369863], 0.22837305311: [0.5890410958904, 0.4109589041096], 0.17207731282: [0.7534246575342, 0.2465753424658], 0.34546819291: [0.5205479452055, 0.4794520547945], 0.25989866767: [0.5616438356164, 0.4383561643836], 0.50985175455: [0.5205479452055, 0.4794520547945], 0.52561456183: [0.3013698630137, 0.6986301369863], 0.92981797711: [0.041095890411, 0.958904109589], 0.54137736911: [0.2739726027397, 0.7260273972603], 0.37436667292: [0.0958904109589, 0.9041095890411], 0.55714017639: [0.5890410958904, 0.4109589041096], 0.09589041096: [0.0], 0.3901294802: [0.6027397260274, 0.3972602739726], 0.58603865641: [0.0547945205479, 0.9452054794521], 0.58866579096: [0.5616438356164, 0.4383561643836], 0.39801088384: [0.2602739726027, 0.7397260273973], 0.84012009758: [0.0958904109589, 0.9041095890411], 0.40589228748: [0.1369863013699, 0.8630136986301], 0.37924563708: [0.1780821917808, 0.8219178082192], 0.87502345656: [0.041095890411, 0.958904109589], 0.00656783637: [0.6027397260274, 0.3972602739726], 0.21411146557: [0.1369863013699, 0.8630136986301], 0.66222555827: [0.1506849315068, 0.8493150684932], 0.10902608369: [0.2876712328767, 0.7123287671233], 0.67798836555: [0.7808219178082, 0.2191780821918], 0.68061550009: [0.1780821917808, 0.8219178082192], 0.13717395384: [0.6301369863014, 0.3698630136986], 0.12553950084: [0.5342465753425, 0.4657534246575], 0.05648339276: [0.1095890410959, 0.8904109589041], 0.99849878026: [0.8767123287671, 0.1232876712329], 0.98273597298: [0.6438356164384, 0.3561643835616], 0.22987427285: [0.0547945205479, 0.9452054794521], 0.47907674986: [0.5616438356164, 0.4383561643836], 0.46631638206: [0.7671232876712, 0.2328767123288], 0.27340964534: [0.2876712328767, 0.7123287671233], 0.75417526741: [0.2602739726027, 0.7397260273973], 0.06999437043: [0.3287671232877, 0.6712328767123], 0.14392944267: [0.0821917808219, 0.9178082191781], 0.63182585851: [0.1095890410959, 0.8904109589041], 0.29705385626: [0.1780821917808, 0.8219178082192], 0.49784199662: [0.1506849315068, 0.8493150684932], 0.80146368925: [0.0821917808219, 0.9178082191781], 0.15181084631: [0.5479452054795, 0.4520547945205], 0.81722649653: [0.0684931506849, 0.9315068493151], 0.07787577407: [0.1780821917808, 0.8219178082192], 0.80972039782: [0.6712328767123, 0.3287671232877], 0.15969224995: [0.0684931506849, 0.9315068493151], 0.6423343967: [0.8767123287671, 0.1232876712329], 0.02045411897: [0.7808219178082, 0.2191780821918], 0.86188778382: [0.7945205479452, 0.2054794520548], 0.33383373991: [0.3013698630137, 0.6986301369863], 0.94595608932: [0.2602739726027, 0.7397260273973], 0.34171514355: [0.027397260274, 0.972602739726], 0.78232313755: [0.6712328767123, 0.3287671232877], 0.3495965472: [0.2739726027397, 0.7260273972603], 0.7264027022: [0.1643835616438, 0.8356164383562], 0.52073559767: [0.6301369863014, 0.3698630136986], 0.79020454119: [0.1780821917808, 0.8219178082192], 0.36535935448: [0.5890410958904, 0.4109589041096], 0.53649840495: [0.5342465753425, 0.4657534246575], 0.93807468568: [0.6027397260274, 0.3972602739726], 0.37324075812: [0.5068493150685, 0.4931506849315], 0.54963407769: [0.1095890410959, 0.8904109589041], 0.29667855132: [0.0684931506849, 0.9315068493151], 0.26928129105: [0.0684931506849, 0.9315068493151], 0.81760180146: [0.1780821917808, 0.8219178082192], 0.09889285044: [0.5205479452055, 0.4794520547945], 0.02570838807: [0.041095890411, 0.958904109589], 0.62844811409: [0.041095890411, 0.958904109589], 0.41790204541: [0.0821917808219, 0.9178082191781], 0.43666729218: [0.041095890411, 0.958904109589], 0.42578344905: [0.5479452054795, 0.4520547945205], 0.65734659411: [0.013698630137, 0.986301369863], 0.43366485269: [0.0684931506849, 0.9315068493151], 0.00168887221: [0.1095890410959, 0.8904109589041], 0.67573653594: [0.0958904109589, 0.9041095890411], 0.90392193657: [0.013698630137, 0.986301369863], 0.88102833552: [0.1917808219178, 0.8082191780822], 0.65922311878: [0.1095890410959, 0.8904109589041], 0.01595045975: [0.5342465753425, 0.4657534246575], 0.66410208294: [0.6027397260274, 0.3972602739726], 0.46519046726: [0.2876712328767, 0.7123287671233], 0.73616063051: [0.6438356164384, 0.3561643835616], 0.06774254081: [0.027397260274, 0.972602739726], 0.27753799963: [0.6164383561644, 0.3835616438356], 0.11990992682: [0.3150684931507, 0.6849315068493], 0.28541940327: [0.5753424657534, 0.4246575342466], 0.78082191781: [0.0], 0.14730718709: [0.3150684931507, 0.6849315068493], 0.30118221055: [0.013698630137, 0.986301369863], 0.30906361419: [0.7534246575342, 0.2465753424658], 0.8254832051: [0.6164383561644, 0.3835616438356], 0.97222743479: [0.5616438356164, 0.4383561643836], 0.455057234: [0.5205479452055, 0.4794520547945], 0.85700881967: [0.7534246575342, 0.2465753424658], 0.47644961531: [0.0547945205479, 0.9452054794521], 0.17357853256: [0.5890410958904, 0.4109589041096], 0.50009382623: [0.0821917808219, 0.9178082191781], 0.90429724151: [0.6301369863014, 0.3698630136986], 0.08875961719: [0.6027397260274, 0.3972602739726], 0.51585663352: [0.0684931506849, 0.9315068493151], 0.82135485082: [0.2876712328767, 0.7123287671233], 0.1814599362: [0.5068493150685, 0.4931506849315], 0.93319572152: [0.1095890410959, 0.8904109589041], 0.36948770876: [0.5616438356164, 0.4383561643836], 0.54738224808: [0.2876712328767, 0.7123287671233], 0.56051792081: [0.7945205479452, 0.2054794520548], 0.38525051604: [0.1095890410959, 0.8904109589041], 0.57890786264: [0.6164383561644, 0.3835616438356], 0.86639144305: [0.5068493150685, 0.4931506849315], 0.99924939013: [0.027397260274, 0.972602739726], 0.59204353537: [0.5205479452055, 0.4794520547945], 0.60780634265: [0.3013698630137, 0.6986301369863], 0.51548132858: [0.1369863013699, 0.8630136986301], 0.62356914993: [0.2739726027397, 0.7260273972603], 0.20773128167: [0.5342465753425, 0.4657534246575], 0.63670482267: [0.6027397260274, 0.3972602739726], 0.42465753425: [0.0], 0.65246762995: [0.1369863013699, 0.8630136986301], 0.21561268531: [0.6438356164384, 0.3561643835616], 0.66823043723: [0.0547945205479, 0.9452054794521], 0.10977669356: [0.6301369863014, 0.3698630136986], 0.22349408895: [0.1917808219178, 0.8082191780822], 0.69975605179: [0.5479452054795, 0.4520547945205], 0.45355601426: [0.3287671232877, 0.6712328767123], 0.34396697317: [0.3287671232877, 0.6712328767123], 0.26064927754: [0.1643835616438, 0.8356164383562], 0.23137549259: [0.8767123287671, 0.1232876712329], 0.46931882154: [0.6164383561644, 0.3835616438356], 0.0005629574: [0.7671232876712, 0.2328767123288], 0.13754925877: [0.7671232876712, 0.2328767123288], 0.76018014637: [0.7808219178082, 0.2191780821918], 0.0707449803: [0.5342465753425, 0.4657534246575], 0.28429348846: [0.3150684931507, 0.6849315068493], 0.91780821918: [0.0], 0.91555638957: [0.5753424657534, 0.4246575342466], 0.2921748921: [0.0958904109589, 0.9041095890411], 0.80746856821: [0.027397260274, 0.972602739726], 0.07862638394: [0.6438356164384, 0.3561643835616], 0.83636704823: [0.2602739726027, 0.7397260273973], 0.32107337212: [0.3424657534247, 0.6575342465753], 0.80671795834: [0.8767123287671, 0.1232876712329], 0.32895477576: [0.6301369863014, 0.3698630136986], 0.01032088572: [0.3150684931507, 0.6849315068493], 0.88365547007: [0.0821917808219, 0.9178082191781], 0.34471758304: [0.5342465753425, 0.4657534246575], 0.89941827735: [0.0684931506849, 0.9315068493151], 0.35259898668: [0.6438356164384, 0.3561643835616], 0.91893413398: [0.5479452054795, 0.4520547945205], 0.36048039032: [0.1917808219178, 0.8082191780822], 0.93094389191: [0.2876712328767, 0.7123287671233], 0.36836179396: [0.8767123287671, 0.1232876712329], 0.94407956465: [0.7945205479452, 0.2054794520548], 0.18746481516: [0.1780821917808, 0.8219178082192], 0.48245449428: [0.5205479452055, 0.4794520547945], 0.5582660912: [0.3150684931507, 0.6849315068493], 0.04785137925: [0.7808219178082, 0.2191780821918], 0.97560517921: [0.5205479452055, 0.4794520547945], 0.1953462188: [0.6164383561644, 0.3835616438356], 0.99136798649: [0.3013698630137, 0.6986301369863], 0.6029273785: [0.6301369863014, 0.3698630136986], 0.94220303997: [0.0547945205479, 0.9452054794521], 0.20322762244: [0.5753424657534, 0.4246575342466], 0.61869018578: [0.5342465753425, 0.4657534246575], 0.01294802027: [0.027397260274, 0.972602739726], 0.63445299306: [0.1917808219178, 0.8082191780822], 0.77068868456: [0.6164383561644, 0.3835616438356], 0.37286545318: [0.5205479452055, 0.4794520547945], 0.99061737662: [0.1917808219178, 0.8082191780822], 0.81835241133: [0.6438356164384, 0.3561643835616], 0.45243009946: [0.1643835616438, 0.8356164383562], 0.71063989492: [0.041095890411, 0.958904109589], 0.22949896791: [0.3150684931507, 0.6849315068493], 0.72377556765: [0.5753424657534, 0.4246575342466], 0.49296303246: [0.013698630137, 0.986301369863], 0.05835991743: [0.6164383561644, 0.3835616438356], 0.73953837493: [0.013698630137, 0.986301369863], 0.06849315069: [0.0], 0.23738037155: [0.0958904109589, 0.9041095890411], 0.75792831676: [0.0958904109589, 0.9041095890411], 0.28054043911: [0.6027397260274, 0.3972602739726], 0.96359542128: [0.1506849315068, 0.8493150684932], 0.28842184275: [0.2602739726027, 0.7397260273973], 0.78682679677: [0.6575342465753, 0.3424657534247], 0.29630324639: [0.1369863013699, 0.8630136986301], 0.7020078814: [0.5068493150685, 0.4931506849315], 0.31206605367: [0.0547945205479, 0.9452054794521], 0.77744417339: [0.6849315068493, 0.3150684931507], 0.83411521862: [0.8767123287671, 0.1232876712329], 0.15931694502: [0.1369863013699, 0.8630136986301], 0.08162882342: [0.2876712328767, 0.7123287671233], 0.86301369863: [0.0], 0.97935822856: [0.7808219178082, 0.2191780821918], 0.01069619066: [0.0547945205479, 0.9452054794521], 0.1750797523: [0.0547945205479, 0.9452054794521], 0.39388252956: [0.3150684931507, 0.6849315068493], 0.35672734097: [0.7671232876712, 0.2328767123288], 0.53499718521: [0.2602739726027, 0.7397260273973], 0.53762431976: [0.5068493150685, 0.4931506849315], 0.38825295553: [0.1506849315068, 0.8493150684932], 0.58228560706: [0.0821917808219, 0.9178082191781], 0.98648902233: [0.6301369863014, 0.3698630136986], 0.39613435917: [0.7945205479452, 0.2054794520548], 0.59804841434: [0.0684931506849, 0.9315068493151], 0.40401576281: [0.7808219178082, 0.2191780821918], 0.91818352411: [0.1643835616438, 0.8356164383562], 0.10264589979: [0.7808219178082, 0.2191780821918], 0.6295740289: [0.2876712328767, 0.7123287671233], 0.64270970163: [0.7945205479452, 0.2054794520548], 0.64533683618: [0.3287671232877, 0.6712328767123], 0.0133233252: [0.5616438356164, 0.4383561643836], 0.66109964346: [0.6164383561644, 0.3835616438356], 0.67423531619: [0.5205479452055, 0.4794520547945], 0.1367986489: [0.013698630137, 0.986301369863], 0.8701444924: [0.2739726027397, 0.7260273972603], 0.68999812348: [0.3013698630137, 0.6986301369863], 0.4486770501: [0.3150684931507, 0.6849315068493], 0.70576093076: [0.2739726027397, 0.7260273972603], 0.25577031338: [0.5890410958904, 0.4109589041096], 0.71889660349: [0.6027397260274, 0.3972602739726], 0.72152373804: [0.5890410958904, 0.4109589041096], 0.23287671233: [0.0], 0.73465941077: [0.1369863013699, 0.8630136986301], 0.47232126103: [0.6027397260274, 0.3972602739726], 0.48170388441: [0.5342465753425, 0.4657534246575], 0.48020266467: [0.2602739726027, 0.7397260273973], 0.07149559017: [0.5205479452055, 0.4794520547945], 0.48808406831: [0.1369863013699, 0.8630136986301], 0.78194783261: [0.5479452054795, 0.4520547945205], 0.12366297617: [0.1643835616438, 0.8356164383562], 0.03771814599: [0.3150684931507, 0.6849315068493], 0.48620754363: [0.7808219178082, 0.2191780821918], 0.30831300432: [0.0821917808219, 0.9178082191781], 0.5060987052: [0.027397260274, 0.972602739726], 0.82660911991: [0.1506849315068, 0.8493150684932], 0.31619440796: [0.5479452054795, 0.4520547945205], 0.48883467818: [0.1780821917808, 0.8219178082192], 0.16269468944: [0.041095890411, 0.958904109589], 0.74404203415: [0.1917808219178, 0.8082191780822], 0.51398010884: [0.2739726027397, 0.7260273972603], 0.45543253894: [0.5068493150685, 0.4931506849315], 0.24638769: [0.013698630137, 0.986301369863], 0.51698254832: [0.6438356164384, 0.3561643835616], 0.91855882905: [0.2602739726027, 0.7397260273973], 0.18108463126: [0.5205479452055, 0.4794520547945], 0.5327453556: [0.8767123287671, 0.1232876712329], 0.56502158003: [0.5068493150685, 0.4931506849315], 0.09251266654: [0.3150684931507, 0.6849315068493], 0.54850816288: [0.7671232876712, 0.2328767123288], 0.56164383562: [0.0], 0.96584725089: [0.0821917808219, 0.9178082191781], 0.04822668418: [0.2739726027397, 0.7260273972603], 0.14993432164: [0.027397260274, 0.972602739726], 0.98161005817: [0.0684931506849, 0.9315068493151], 0.19684743854: [0.3013698630137, 0.6986301369863], 0.10039407018: [0.0958904109589, 0.9041095890411], 0.92006004879: [0.5342465753425, 0.4657534246575], 0.20472884218: [0.027397260274, 0.972602739726], 0.41602552074: [0.3013698630137, 0.6986301369863], 0.63783073747: [0.7534246575342, 0.2465753424658], 0.64045787202: [0.6849315068493, 0.3150684931507], 0.42390692438: [0.027397260274, 0.972602739726], 0.43178832802: [0.2739726027397, 0.7260273972603], 0.01369863014: [0.0], 0.68511915932: [0.6301369863014, 0.3698630136986], 0.4475511353: [0.5890410958904, 0.4109589041096], 0.7008819666: [0.5342465753425, 0.4657534246575], 0.12666541565: [0.5068493150685, 0.4931506849315], 0.42428222931: [0.5616438356164, 0.4383561643836], 0.71664477388: [0.1917808219178, 0.8082191780822], 0.72902983674: [0.5205479452055, 0.4794520547945], 0.72527678739: [0.027397260274, 0.972602739726], 0.27566147495: [0.1095890410959, 0.8904109589041], 0.06924376056: [0.2602739726027, 0.7397260273973], 0.31431788328: [0.027397260274, 0.972602739726], 0.24676299493: [0.6301369863014, 0.3698630136986], 0.79283167574: [0.041095890411, 0.958904109589], 0.80596734847: [0.5753424657534, 0.4246575342466], 0.15293676112: [0.5342465753425, 0.4657534246575], 0.5252392569: [0.1506849315068, 0.8493150684932], 0.82173015575: [0.013698630137, 0.986301369863], 0.45430662413: [0.5342465753425, 0.4657534246575], 0.31506849315: [0.0], 0.16081816476: [0.6438356164384, 0.3561643835616], 0.08237943329: [0.6301369863014, 0.3698630136986], 0.86901857759: [0.3424657534247, 0.6575342465753], 0.1686995684: [0.1917808219178, 0.8082191780822], 0.90054419216: [0.6438356164384, 0.3561643835616], 0.35184837681: [0.1780821917808, 0.8219178082192], 0.17658097204: [0.8767123287671, 0.1232876712329], 0.91630699944: [0.8767123287671, 0.1232876712329], 0.35972978045: [0.6164383561644, 0.3835616438356], 0.46218802777: [0.6438356164384, 0.3561643835616], 0.36761118409: [0.5753424657534, 0.4246575342466], 0.54100206418: [0.7808219178082, 0.2191780821918], 0.5901670107: [0.5479452054795, 0.4520547945205], 0.55939200601: [0.5753424657534, 0.4246575342466], 0.38337399137: [0.013698630137, 0.986301369863], 0.97410395947: [0.6712328767123, 0.3287671232877], 0.39125539501: [0.7534246575342, 0.2465753424658], 0.58829048602: [0.027397260274, 0.972602739726], 0.04972790392: [0.1369863013699, 0.8630136986301], 0.81422405705: [0.6575342465753, 0.3424657534247], 0.61718896604: [0.2602739726027, 0.7397260273973], 0.47006943141: [0.1917808219178, 0.8082191780822], 0.98198536311: [0.1780821917808, 0.8219178082192], 0.02683430287: [0.2876712328767, 0.7123287671233], 0.66447738788: [0.0821917808219, 0.9178082191781], 0.21861512479: [0.2876712328767, 0.7123287671233], 0.40664289735: [0.1780821917808, 0.8219178082192], 0.11127791331: [0.1095890410959, 0.8904109589041], 0.25089134922: [0.1917808219178, 0.8082191780822], 0.45167948959: [0.5616438356164, 0.4383561643836], 0.71176580972: [0.2876712328767, 0.7123287671233], 0.25877275286: [0.8767123287671, 0.1232876712329], 0.47795083505: [0.8767123287671, 0.1232876712329], 0.727528617: [0.3287671232877, 0.6712328767123], 0.13267029461: [0.1780821917808, 0.8219178082192], 0.01707637455: [0.5068493150685, 0.4931506849315], 0.27453556014: [0.7671232876712, 0.2328767123288], 0.75642709702: [0.5205479452055, 0.4794520547945], 0.14055169826: [0.6164383561644, 0.3835616438356], 0.89378870332: [0.5068493150685, 0.4931506849315], 0.7721899043: [0.3013698630137, 0.6986301369863], 0.24488647026: [0.041095890411, 0.958904109589], 0.78795271158: [0.2739726027397, 0.7260273972603], 0.12441358604: [0.5479452054795, 0.4520547945205], 0.80108838431: [0.6027397260274, 0.3972602739726], 0.80371551886: [0.5890410958904, 0.4109589041096], 0.03809345093: [0.0547945205479, 0.9452054794521], 0.75042221805: [0.0547945205479, 0.9452054794521], 0.83261399887: [0.0547945205479, 0.9452054794521], 0.91443047476: [0.6849315068493, 0.3150684931507], 0.32707825108: [0.041095890411, 0.958904109589], 0.86413961344: [0.5479452054795, 0.4520547945205], 0.42240570464: [0.5753424657534, 0.4246575342466], 0.34284105836: [0.1643835616438, 0.8356164383562], 0.67160818165: [0.1643835616438, 0.8356164383562], 0.17470444736: [0.3150684931507, 0.6849315068493], 0.50722462: [0.1643835616438, 0.8356164383562], 0.02233064365: [0.1369863013699, 0.8630136986301], 0.52036029274: [0.013698630137, 0.986301369863], 0.92456370801: [0.7808219178082, 0.2191780821918], 0.182585851: [0.0958904109589, 0.9041095890411], 0.36648526928: [0.3150684931507, 0.6849315068493], 0.53875023457: [0.0958904109589, 0.9041095890411], 0.55451304185: [0.6027397260274, 0.3972602739726], 0.56764871458: [0.3424657534247, 0.6575342465753], 0.97185212986: [0.027397260274, 0.972602739726], 0.93844999062: [0.0821917808219, 0.9178082191781], 0.19834865829: [0.6027397260274, 0.3972602739726], 0.59917432914: [0.6438356164384, 0.3561643835616], 0.40326515294: [0.3424657534247, 0.6575342465753], 0.61493713642: [0.8767123287671, 0.1232876712329], 0.20623006193: [0.2602739726027, 0.7397260273973], 0.6306999437: [0.7671232876712, 0.2328767123288], 0.64383561644: [0.0], 0.42690936386: [0.5342465753425, 0.4657534246575], 0.4347907675: [0.6438356164384, 0.3561643835616], 0.02758491274: [0.6301369863014, 0.3698630136986], 0.45055357478: [0.8767123287671, 0.1232876712329], 0.11428035279: [0.1506849315068, 0.8493150684932], 0.7200225183: [0.7534246575342, 0.2465753424658], 0.23250140739: [0.5616438356164, 0.4383561643836], 0.0591105273: [0.1917808219178, 0.8082191780822], 0.76205667105: [0.1369863013699, 0.8630136986301], 0.27866391443: [0.1506849315068, 0.8493150684932], 0.76731094014: [0.6301369863014, 0.3698630136986], 0.28654531807: [0.7945205479452, 0.2054794520548], 0.12216175643: [0.7945205479452, 0.2054794520548], 0.78044661287: [0.5616438356164, 0.4383561643836], 0.29442672171: [0.7808219178082, 0.2191780821918], 0.24826421467: [0.1095890410959, 0.8904109589041], 0.79620942015: [0.1095890410959, 0.8904109589041], 0.07524863952: [0.7808219178082, 0.2191780821918], 0.83524113342: [0.5616438356164, 0.4383561643836], 0.03959467067: [0.8767123287671, 0.1232876712329], 0.31807093263: [0.5205479452055, 0.4794520547945], 0.45655845374: [0.0958904109589, 0.9041095890411], 0.87239632201: [0.1780821917808, 0.8219178082192], 0.88815912929: [0.5753424657534, 0.4246575342466], 0.89078626384: [0.1643835616438, 0.8356164383562], 0.34696941265: [0.0958904109589, 0.9041095890411], 0.50234565585: [0.5890410958904, 0.4109589041096], 0.17808219178: [0.0], 0.98123475324: [0.1369863013699, 0.8630136986301], 0.36273221993: [0.6027397260274, 0.3972602739726], 0.53124413586: [0.0547945205479, 0.9452054794521], 0.53387127041: [0.5616438356164, 0.4383561643836], 0.37061362357: [0.2602739726027, 0.7397260273973], 0.95121035842: [0.6575342465753, 0.3424657534247], 0.37849502721: [0.1369863013699, 0.8630136986301], 0.56276975042: [0.5479452054795, 0.4520547945205], 0.26365171702: [0.5068493150685, 0.4931506849315], 0.68924751361: [0.1917808219178, 0.8082191780822], 0.19647213361: [0.1506849315068, 0.8493150684932], 0.39425783449: [0.0547945205479, 0.9452054794521], 0.05010320886: [0.0684931506849, 0.9315068493151], 0.60743103772: [0.1506849315068, 0.8493150684932], 0.20435353725: [0.7945205479452, 0.2054794520548], 0.623193845: [0.7808219178082, 0.2191780821918], 0.62582097955: [0.1780821917808, 0.8219178082192], 0.21223494089: [0.7808219178082, 0.2191780821918], 0.61306061175: [0.3150684931507, 0.6849315068493], 0.67048226684: [0.027397260274, 0.972602739726], 0.43891912179: [0.7671232876712, 0.2328767123288], 0.69938074686: [0.2602739726027, 0.7397260273973], 0.12629011072: [0.5205479452055, 0.4794520547945], 0.06511540627: [0.3150684931507, 0.6849315068493], 0.26177519234: [0.3287671232877, 0.6712328767123], 0.26965659598: [0.1780821917808, 0.8219178082192], 0.47044473635: [0.1506849315068, 0.8493150684932], 0.7466691687: [0.0821917808219, 0.9178082191781], 0.00431600676: [0.8082191780822, 0.1917808219178], 0.76243197598: [0.0684931506849, 0.9315068493151], 0.142052918: [0.3013698630137, 0.6986301369863], 0.07299680991: [0.0958904109589, 0.9041095890411], 0.79395759054: [0.2876712328767, 0.7123287671233], 0.12103584162: [0.5753424657534, 0.4246575342466], 0.61793957591: [0.3287671232877, 0.6712328767123], 0.80709326328: [0.7945205479452, 0.2054794520548], 0.30643647964: [0.3013698630137, 0.6986301369863], 0.59842371927: [0.1780821917808, 0.8219178082192], 0.15781572528: [0.2739726027397, 0.7260273972603], 0.83861887784: [0.5205479452055, 0.4794520547945], 0.32219928692: [0.2739726027397, 0.7260273972603], 0.85438168512: [0.3013698630137, 0.6986301369863], 0.86751735785: [0.0958904109589, 0.9041095890411], 0.3379620942: [0.5890410958904, 0.4109589041096], 0.88328016513: [0.6027397260274, 0.3972602739726], 0.34584349784: [0.5068493150685, 0.4931506849315], 0.89904297242: [0.1369863013699, 0.8630136986301], 0.87840120098: [0.1095890410959, 0.8904109589041], 0.9148057797: [0.0547945205479, 0.9452054794521], 0.18408707075: [0.3424657534247, 0.6575342465753], 0.92719084256: [0.1780821917808, 0.8219178082192], 0.94633139426: [0.5479452054795, 0.4520547945205], 0.95946706699: [0.7671232876712, 0.2328767123288], 0.19196847439: [0.6301369863014, 0.3698630136986], 0.57365359355: [0.041095890411, 0.958904109589], 0.39050478514: [0.0821917808219, 0.9178082191781], 0.58941640083: [0.1643835616438, 0.8356164383562], 0.39838618878: [0.5479452054795, 0.4520547945205], 0.60255207356: [0.013698630137, 0.986301369863], 0.40626759242: [0.0684931506849, 0.9315068493151], 0.10189528992: [0.3424657534247, 0.6575342465753], 0.62094201539: [0.0958904109589, 0.9041095890411], 0.94295364984: [0.5753424657534, 0.4246575342466], 0.6498404954: [0.3424657534247, 0.6575342465753], 0.94558078439: [0.1643835616438, 0.8356164383562], 0.43779320698: [0.2876712328767, 0.7123287671233], 0.68136610996: [0.6438356164384, 0.3561643835616], 0.25014073935: [0.6164383561644, 0.3835616438356], 0.22612122349: [0.0821917808219, 0.9178082191781], 0.25802214299: [0.5753424657534, 0.4246575342466], 0.72602739726: [0.0], 0.01670106962: [0.5205479452055, 0.4794520547945], 0.27378495027: [0.013698630137, 0.986301369863], 0.05948583224: [0.1506849315068, 0.8493150684932], 0.28166635391: [0.7534246575342, 0.2465753424658], 0.24188403078: [0.0684931506849, 0.9315068493151], 0.69712891725: [0.8767123287671, 0.1232876712329], 0.1229123663: [0.5616438356164, 0.4383561643836], 0.49821730156: [0.3013698630137, 0.6986301369863], 0.57027584913: [0.1369863013699, 0.8630136986301], 0.80484143367: [0.6849315068493, 0.3150684931507], 0.72264965284: [0.3150684931507, 0.6849315068493], 0.8371176581: [0.6712328767123, 0.3287671232877], 0.03996997561: [0.7945205479452, 0.2054794520548], 0.84950272096: [0.6301369863014, 0.3698630136986], 0.16382060424: [0.2876712328767, 0.7123287671233], 0.8626383937: [0.5616438356164, 0.4383561643836], 0.86526552824: [0.5342465753425, 0.4657534246575], 0.08388065303: [0.1095890410959, 0.8904109589041], 0.71289172453: [0.7671232876712, 0.2328767123288], 0.34209044849: [0.5616438356164, 0.4383561643836], 0.3240758116: [0.0684931506849, 0.9315068493151], 0.50572340026: [0.7945205479452, 0.2054794520548], 0.17958341152: [0.3287671232877, 0.6712328767123], 0.52411334209: [0.6164383561644, 0.3835616438356], 0.53724901483: [0.5205479452055, 0.4794520547945], 0.26327641209: [0.5205479452055, 0.4794520547945], 0.55301182211: [0.3013698630137, 0.6986301369863], 0.56877462939: [0.2739726027397, 0.7260273972603], 0.09701632577: [0.5479452054795, 0.4520547945205], 0.58191030212: [0.6027397260274, 0.3972602739726], 0.9861137174: [0.013698630137, 0.986301369863], 0.39726027397: [0.0], 0.5976731094: [0.1369863013699, 0.8630136986301], 0.88890973916: [0.8767123287671, 0.1232876712329], 0.23400262714: [0.5479452054795, 0.4520547945205], 0.61343591668: [0.0547945205479, 0.9452054794521], 0.20585475699: [0.1643835616438, 0.8356164383562], 0.10489772941: [0.0684931506849, 0.9315068493151], 0.64496153124: [0.5479452054795, 0.4520547945205], 0.46556577219: [0.013698630137, 0.986301369863], 0.81685119159: [0.1369863013699, 0.8630136986301], 0.02720960781: [0.013698630137, 0.986301369863], 0.44192156127: [0.6164383561644, 0.3835616438356], 0.68962281854: [0.1506849315068, 0.8493150684932], 0.44980296491: [0.5753424657534, 0.4246575342466], 0.70538562582: [0.7808219178082, 0.2191780821918], 0.70801276037: [0.1780821917808, 0.8219178082192], 0.12779133046: [0.0958904109589, 0.9041095890411], 0.88966034903: [0.027397260274, 0.972602739726], 0.00356539689: [0.6164383561644, 0.3835616438356], 0.95383749296: [0.1369863013699, 0.8630136986301], 0.47344717583: [0.7534246575342, 0.2465753424658], 0.75267404766: [0.027397260274, 0.972602739726], 0.2400075061: [0.2739726027397, 0.7260273972603], 0.14355413774: [0.6027397260274, 0.3972602739726], 0.78157252768: [0.2602739726027, 0.7397260273973], 0.29367611184: [0.3424657534247, 0.6575342465753], 0.30155751548: [0.6301369863014, 0.3698630136986], 0.15143554138: [0.2602739726027, 0.7397260273973], 0.94483017452: [0.5616438356164, 0.4383561643836], 0.0388440608: [0.5753424657534, 0.4246575342466], 0.82886094952: [0.0821917808219, 0.9178082191781], 0.31732032276: [0.5342465753425, 0.4657534246575], 0.8446237568: [0.0684931506849, 0.9315068493151], 0.3252017264: [0.6438356164384, 0.3561643835616], 0.42165509476: [0.0547945205479, 0.9452054794521], 0.04147119535: [0.1643835616438, 0.8356164383562], 0.7785700882: [0.5753424657534, 0.4246575342466], 0.87614937136: [0.2876712328767, 0.7123287671233], 0.34096453368: [0.8767123287671, 0.1232876712329], 0.8892850441: [0.7945205479452, 0.2054794520548], 0.08688309251: [0.1506849315068, 0.8493150684932], 0.5008444361: [0.7534246575342, 0.2465753424658], 0.50347157065: [0.3150684931507, 0.6849315068493], 0.17770688685: [0.5616438356164, 0.4383561643836], 0.9211859636: [0.5068493150685, 0.4931506849315], 0.50797522987: [0.5479452054795, 0.4520547945205], 0.02270594858: [0.0684931506849, 0.9315068493151], 0.93657346594: [0.3013698630137, 0.6986301369863], 0.54813285795: [0.6301369863014, 0.3698630136986], 0.95233627322: [0.2739726027397, 0.7260273972603], 0.09476449615: [0.7945205479452, 0.2054794520548], 0.56389566523: [0.5342465753425, 0.4657534246575], 0.9680990805: [0.5890410958904, 0.4109589041096], 0.19346969413: [0.1095890410959, 0.8904109589041], 0.57965847251: [0.1917808219178, 0.8082191780822], 0.99699756052: [0.0547945205479, 0.9452054794521], 0.80221429912: [0.7534246575342, 0.2465753424658], 0.4092700319: [0.041095890411, 0.958904109589], 0.67273409645: [0.6712328767123, 0.3287671232877], 0.37136423344: [0.3287671232877, 0.6712328767123], 0.42503283918: [0.1643835616438, 0.8356164383562], 0.65584537437: [0.041095890411, 0.958904109589], 0.10790016889: [0.041095890411, 0.958904109589], 0.6689810471: [0.5753424657534, 0.4246575342466], 0.97485456934: [0.5342465753425, 0.4657534246575], 0.2197410396: [0.7671232876712, 0.2328767123288], 0.68474385438: [0.013698630137, 0.986301369863], 0.02796021768: [0.7671232876712, 0.2328767123288], 0.70313379621: [0.0958904109589, 0.9041095890411], 0.25314317883: [0.6027397260274, 0.3972602739726], 0.26102458247: [0.2602739726027, 0.7397260273973], 0.73203227622: [0.3424657534247, 0.6575342465753], 0.26890598611: [0.1369863013699, 0.8630136986301], 0.05986113717: [0.3013698630137, 0.6986301369863], 0.76355789079: [0.6438356164384, 0.3561643835616], 0.2846687934: [0.0547945205479, 0.9452054794521], 0.48545693376: [0.3424657534247, 0.6575342465753], 0.35560142616: [0.2876712328767, 0.7123287671233], 0.01820228936: [0.0958904109589, 0.9041095890411], 0.79508350535: [0.7671232876712, 0.2328767123288], 0.1495590167: [0.7945205479452, 0.2054794520548], 0.80821917808: [0.0], 0.79921185964: [0.1506849315068, 0.8493150684932], 0.15744042034: [0.7808219178082, 0.2191780821918], 0.04034528054: [0.027397260274, 0.972602739726], 0.85288046538: [0.6164383561644, 0.3835616438356], 0.97297804466: [0.1643835616438, 0.8356164383562], 0.88440607994: [0.7534246575342, 0.2465753424658], 0.71739538375: [0.3013698630137, 0.6986301369863], 0.36085569525: [0.1506849315068, 0.8493150684932], 0.52749108651: [0.0821917808219, 0.9178082191781], 0.93169450178: [0.6301369863014, 0.3698630136986], 0.36873709889: [0.7945205479452, 0.2054794520548], 0.54325389379: [0.0684931506849, 0.9315068493151], 0.94745730906: [0.5342465753425, 0.4657534246575], 0.01444924001: [0.2602739726027, 0.7397260273973], 0.9605929818: [0.1095890410959, 0.8904109589041], 0.19159316945: [0.013698630137, 0.986301369863], 0.57477950835: [0.2876712328767, 0.7123287671233], 0.58791518109: [0.7945205479452, 0.2054794520548], 0.59054231563: [0.3287671232877, 0.6712328767123], 0.19947457309: [0.7534246575342, 0.2465753424658], 0.40026271346: [0.5205479452055, 0.4794520547945], 0.06736723588: [0.7945205479452, 0.2054794520548], 0.63520360293: [0.3013698630137, 0.6986301369863], 0.42127978983: [0.3150684931507, 0.6849315068493], 0.65096641021: [0.2739726027397, 0.7260273972603], 0.42916119347: [0.0958904109589, 0.9041095890411], 0.33946331394: [0.0547945205479, 0.9452054794521], 0.66672921749: [0.5890410958904, 0.4109589041096], 0.67986489022: [0.1369863013699, 0.8630136986301], 0.74892099831: [0.5890410958904, 0.4109589041096], 0.44492400075: [0.6027397260274, 0.3972602739726], 0.6956276975: [0.0547945205479, 0.9452054794521], 0.45280540439: [0.2602739726027, 0.7397260273973], 0.1292925502: [0.3424657534247, 0.6575342465753], 0.46068680803: [0.1369863013699, 0.8630136986301], 0.72715331207: [0.5479452054795, 0.4520547945205], 0.2336273222: [0.2602739726027, 0.7397260273973], 0.76768624507: [0.7671232876712, 0.2328767123288], 0.11878401201: [0.5890410958904, 0.4109589041096], 0.24150872584: [0.1369863013699, 0.8630136986301], 0.77181459936: [0.1506849315068, 0.8493150684932], 0.28879714768: [0.5479452054795, 0.4520547945205], 0.06136235692: [0.6027397260274, 0.3972602739726], 0.78757740664: [0.7808219178082, 0.2191780821918], 0.07449802965: [0.3424657534247, 0.6575342465753], 0.69412647776: [0.5890410958904, 0.4109589041096], 0.50835053481: [0.3287671232877, 0.6712328767123], 0.83486582849: [0.027397260274, 0.972602739726], 0.85588290486: [0.6027397260274, 0.3972602739726], 0.28917245262: [0.3287671232877, 0.6712328767123], 0.32820416589: [0.2876712328767, 0.7123287671233], 0.8637643085: [0.2602739726027, 0.7397260273973], 0.04184650028: [0.2602739726027, 0.7397260273973], 0.17132670295: [0.0821917808219, 0.9178082191781], 0.35785325577: [0.1095890410959, 0.8904109589041], 0.50684931507: [0.0], 0.17920810659: [0.5479452054795, 0.4520547945205], 0.92681553762: [0.0684931506849, 0.9315068493151], 0.01144680053: [0.5753424657534, 0.4246575342466], 0.18708951023: [0.0684931506849, 0.9315068493151], 0.97260273973: [0.0], 0.95834115219: [0.2876712328767, 0.7123287671233], 0.09551510602: [0.5616438356164, 0.4383561643836], 0.97147682492: [0.7945205479452, 0.2054794520548], 0.38862826046: [0.3013698630137, 0.6986301369863], 0.58303621693: [0.7534246575342, 0.2465753424658], 0.3965096641: [0.027397260274, 0.972602739726], 0.40439106774: [0.2739726027397, 0.7260273972603], 0.63032463877: [0.6301369863014, 0.3698630136986], 0.42015387502: [0.5890410958904, 0.4109589041096], 0.64608744605: [0.5342465753425, 0.4657534246575], 0.42803527866: [0.5068493150685, 0.4931506849315], 0.66185025333: [0.1917808219178, 0.8082191780822], 0.01407393507: [0.1643835616438, 0.8356164383562], 0.91105273034: [0.0821917808219, 0.9178082191781], 0.95458810283: [0.1780821917808, 0.8219178082192], 0.1165321824: [0.0821917808219, 0.9178082191781], 0.73803715519: [0.041095890411, 0.958904109589], 0.47269656596: [0.0821917808219, 0.9178082191781], 0.75117282792: [0.5753424657534, 0.4246575342466], 0.75379996247: [0.1643835616438, 0.8356164383562], 0.4805779696: [0.5479452054795, 0.4520547945205], 0.7669356352: [0.013698630137, 0.986301369863], 0.28767123288: [0.0], 0.00919497091: [0.5890410958904, 0.4109589041096], 0.15106023644: [0.1643835616438, 0.8356164383562], 0.7988365547: [0.1917808219178, 0.8082191780822], 0.07750046913: [0.0684931506849, 0.9315068493151], 0.78532557703: [0.0958904109589, 0.9041095890411], 0.84574967161: [0.6438356164384, 0.3561643835616], 0.04072058548: [0.5616438356164, 0.4383561643836], 0.86151247889: [0.8767123287671, 0.1232876712329], 0.33233252017: [0.6164383561644, 0.3835616438356], 0.84875211109: [0.2876712328767, 0.7123287671233], 0.34021392381: [0.5753424657534, 0.4246575342466], 0.58453743667: [0.5890410958904, 0.4109589041096], 0.8904109589: [0.0], 0.50459748546: [0.5753424657534, 0.4246575342466], 0.35597673109: [0.013698630137, 0.986301369863], 0.87727528617: [0.7671232876712, 0.2328767123288], 0.36385813473: [0.7534246575342, 0.2465753424658], 0.53349596547: [0.027397260274, 0.972602739726], 0.18521298555: [0.2739726027397, 0.7260273972603], 0.99399512104: [0.7534246575342, 0.2465753424658], 0.56239444549: [0.2602739726027, 0.7397260273973], 0.96659786076: [0.7534246575342, 0.2465753424658], 0.86451491837: [0.3287671232877, 0.6712328767123], 0.89266278852: [0.5342465753425, 0.4657534246575], 0.20097579283: [0.5890410958904, 0.4109589041096], 0.60968286733: [0.0821917808219, 0.9178082191781], 0.05122912366: [0.6438356164384, 0.3561643835616], 0.62544567461: [0.0684931506849, 0.9315068493151], 0.20885719647: [0.5068493150685, 0.4931506849315], 0.05047851379: [0.1780821917808, 0.8219178082192], 0.65697128917: [0.2876712328767, 0.7123287671233], 0.67010696191: [0.7945205479452, 0.2054794520548], 0.44004503659: [0.1095890410959, 0.8904109589041], 0.61606305123: [0.5616438356164, 0.4383561643836], 0.68849690373: [0.6164383561644, 0.3835616438356], 0.70163257647: [0.5205479452055, 0.4794520547945], 0.03171326703: [0.1917808219178, 0.8082191780822], 0.64421092137: [0.1643835616438, 0.8356164383562], 0.93920060049: [0.7534246575342, 0.2465753424658], 0.23888159129: [0.3424657534247, 0.6575342465753], 0.73315819103: [0.2739726027397, 0.7260273972603], 0.23512854194: [0.5342465753425, 0.4657534246575], 0.74629386376: [0.6027397260274, 0.3972602739726], 0.13867517358: [0.1095890410959, 0.8904109589041], 0.4794520548: [0.0], 0.24300994558: [0.6438356164384, 0.3561643835616], 0.77781947833: [0.0547945205479, 0.9452054794521], 0.96960030024: [0.0547945205479, 0.9452054794521], 0.06173766185: [0.0821917808219, 0.9178082191781], 0.29968099081: [0.041095890411, 0.958904109589], 0.61756427097: [0.5479452054795, 0.4520547945205], 0.80934509289: [0.5479452054795, 0.4520547945205], 0.31544379809: [0.1643835616438, 0.8356164383562], 0.90917620567: [0.3013698630137, 0.6986301369863], 0.85400638018: [0.1506849315068, 0.8493150684932], 0.16494651905: [0.7671232876712, 0.2328767123288], 0.86976918747: [0.7808219178082, 0.2191780821918], 0.04222180522: [0.5479452054795, 0.4520547945205], 0.33908800901: [0.3150684931507, 0.6849315068493], 0.93582285607: [0.1917808219178, 0.8082191780822], 0.51285419403: [0.3424657534247, 0.6575342465753], 0.91705760931: [0.027397260274, 0.972602739726], 0.9223118784: [0.0958904109589, 0.9041095890411], 0.02308125352: [0.1780821917808, 0.8219178082192], 0.54437980859: [0.6438356164384, 0.3561643835616], 0.37586789266: [0.3424657534247, 0.6575342465753], 0.49746669169: [0.1917808219178, 0.8082191780822], 0.56014261588: [0.8767123287671, 0.1232876712329], 0.09626571589: [0.1643835616438, 0.8356164383562], 0.57590542316: [0.7671232876712, 0.2328767123288], 0.72940514168: [0.5068493150685, 0.4931506849315], 0.58904109589: [0.0], 0.99324451117: [0.0821917808219, 0.9178082191781], 0.39951210358: [0.5342465753425, 0.4657534246575], 0.43404015763: [0.1780821917808, 0.8219178082192], 0.40739350723: [0.6438356164384, 0.3561643835616], 0.2069806718: [0.3287671232877, 0.6712328767123], 0.41527491087: [0.1917808219178, 0.8082191780822], 0.42315631451: [0.8767123287671, 0.1232876712329], 0.99286920623: [0.6027397260274, 0.3972602739726], 0.80859448302: [0.1643835616438, 0.8356164383562], 0.21486207544: [0.1780821917808, 0.8219178082192], 0.66522799775: [0.7534246575342, 0.2465753424658], 0.10940138863: [0.013698630137, 0.986301369863], 0.22274347908: [0.6164383561644, 0.3835616438356], 0.55226121224: [0.1917808219178, 0.8082191780822], 0.25126665416: [0.1506849315068, 0.8493150684932], 0.71251641959: [0.6301369863014, 0.3698630136986], 0.23062488272: [0.5753424657534, 0.4246575342466], 0.72827922687: [0.5342465753425, 0.4657534246575], 0.26702946144: [0.7808219178082, 0.2191780821918], 0.11728279227: [0.7534246575342, 0.2465753424658], 0.74141489961: [0.1095890410959, 0.8904109589041], 0.95909176206: [0.6301369863014, 0.3698630136986], 0.14468005254: [0.7534246575342, 0.2465753424658], 0.3837492963: [0.6301369863014, 0.3698630136986], 0.70013135673: [0.6712328767123, 0.3287671232877], 0.82022893601: [0.041095890411, 0.958904109589], 0.55563895665: [0.7534246575342, 0.2465753424658], 0.83336460875: [0.5753424657534, 0.4246575342466], 0.31957215237: [0.0958904109589, 0.9041095890411], 0.84912741603: [0.013698630137, 0.986301369863], 0.04109589041: [0.0], 0.33533495966: [0.6027397260274, 0.3972602739726], 0.25689622819: [0.3150684931507, 0.6849315068493], 0.47832613999: [0.7945205479452, 0.2054794520548], 0.3432163633: [0.2602739726027, 0.7397260273973], 0.60705573278: [0.1917808219178, 0.8082191780822], 0.35109776694: [0.1369863013699, 0.8630136986301], 0.25952336273: [0.027397260274, 0.972602739726], 0.92794145243: [0.6438356164384, 0.3561643835616], 0.09138675174: [0.5890410958904, 0.4109589041096], 0.18671420529: [0.1369863013699, 0.8630136986301], 0.55263651717: [0.1506849315068, 0.8493150684932], 0.02383186339: [0.6438356164384, 0.3561643835616], 0.56839932445: [0.7808219178082, 0.2191780821918], 0.26477763183: [0.0958904109589, 0.9041095890411], 0.58678926628: [0.5753424657534, 0.4246575342466], 0.09926815538: [0.5068493150685, 0.4931506849315], 0.20247701257: [0.0547945205479, 0.9452054794521], 0.61568774629: [0.027397260274, 0.972602739726], 0.41152186151: [0.7671232876712, 0.2328767123288], 0.98986676675: [0.6164383561644, 0.3835616438356], 0.64458622631: [0.2602739726027, 0.7397260273973], 0.64721336086: [0.5068493150685, 0.4931506849315], 0.75680240195: [0.5068493150685, 0.4931506849315], 0.7530493526: [0.5616438356164, 0.4383561643836], 0.0069431413: [0.0821917808219, 0.9178082191781], 0.69187464815: [0.0821917808219, 0.9178082191781], 0.45092887972: [0.7945205479452, 0.2054794520548], 0.70763745543: [0.0684931506849, 0.9315068493151], 0.03208857197: [0.1506849315068, 0.8493150684932], 0.45881028336: [0.7808219178082, 0.2191780821918], 0.13229498968: [0.0684931506849, 0.9315068493151], 0.73916306999: [0.2876712328767, 0.7123287671233], 0.06811784575: [0.5616438356164, 0.4383561643836], 0.75229874273: [0.7945205479452, 0.2054794520548], 0.27903921937: [0.3013698630137, 0.6986301369863], 0.12028523175: [0.0547945205479, 0.9452054794521], 0.28692062301: [0.027397260274, 0.972602739726], 0.78382435729: [0.5205479452055, 0.4794520547945], 0.29480202665: [0.2739726027397, 0.7260273972603], 0.48395571402: [0.0958904109589, 0.9041095890411], 0.94670669919: [0.6712328767123, 0.3287671232877], 0.81272283731: [0.0958904109589, 0.9041095890411], 0.31056483393: [0.5890410958904, 0.4109589041096], 0.82848564459: [0.6027397260274, 0.3972602739726], 0.31844623757: [0.5068493150685, 0.4931506849315], 0.84424845187: [0.1369863013699, 0.8630136986301], 0.64158378683: [0.5753424657534, 0.4246575342466], 0.86001125915: [0.0547945205479, 0.9452054794521], 0.04259711015: [0.3287671232877, 0.6712328767123], 0.89153687371: [0.5479452054795, 0.4520547945205], 0.78419966223: [0.5068493150685, 0.4931506849315], 0.90467254644: [0.7671232876712, 0.2328767123288], 0.08913492212: [0.0821917808219, 0.9178082191781], 0.518859073: [0.041095890411, 0.958904109589], 0.36310752486: [0.0821917808219, 0.9178082191781], 0.53462188028: [0.1643835616438, 0.8356164383562], 0.93619816101: [0.1506849315068, 0.8493150684932], 0.3709889285: [0.5479452054795, 0.4520547945205], 0.54775755301: [0.013698630137, 0.986301369863], 0.19009194971: [0.041095890411, 0.958904109589], 0.56614749484: [0.0958904109589, 0.9041095890411], 0.89341339839: [0.5205479452055, 0.4794520547945], 0.6678551323: [0.6849315068493, 0.3150684931507], 0.59504597486: [0.3424657534247, 0.6575342465753], 0.99662225558: [0.6849315068493, 0.3150684931507], 0.41039594671: [0.2876712328767, 0.7123287671233], 0.62657158942: [0.6438356164384, 0.3561643835616], 0.20848189154: [0.5205479452055, 0.4794520547945], 0.54362919872: [0.1780821917808, 0.8219178082192], 0.05310564834: [0.041095890411, 0.958904109589], 0.42615875399: [0.3287671232877, 0.6712328767123], 0.65809720398: [0.7671232876712, 0.2328767123288], 0.67123287671: [0.0], 0.94520547945: [0.0], 0.1101519985: [0.7671232876712, 0.2328767123288], 0.22424469882: [0.3013698630137, 0.6986301369863], 0.25426909364: [0.7534246575342, 0.2465753424658], 0.71589416401: [0.6164383561644, 0.3835616438356], 0.23212610246: [0.027397260274, 0.972602739726], 0.47082004128: [0.3013698630137, 0.6986301369863], 0.74741977857: [0.7534246575342, 0.2465753424658], 0.75004691312: [0.6849315068493, 0.3150684931507], 0.47870144492: [0.027397260274, 0.972602739726], 0.48658284856: [0.2739726027397, 0.7260273972603], 0.14618127228: [0.5890410958904, 0.4109589041096], 0.53086883093: [0.3150684931507, 0.6849315068493], 0.79470820041: [0.6301369863014, 0.3698630136986], 0.00469131169: [0.1506849315068, 0.8493150684932], 0.80784387315: [0.5616438356164, 0.4383561643836], 0.81047100769: [0.5342465753425, 0.4657534246575], 0.15406267592: [0.5068493150685, 0.4931506849315], 0.82360668043: [0.1095890410959, 0.8904109589041], 0.31469318822: [0.5616438356164, 0.4383561643836], 0.3304559955: [0.1095890410959, 0.8904109589041], 0.58040908238: [0.3013698630137, 0.6986301369863], 0.89979358229: [0.1780821917808, 0.8219178082192], 0.90242071683: [0.041095890411, 0.958904109589], 0.2591480578: [0.7945205479452, 0.2054794520548], 0.18033402139: [0.5342465753425, 0.4657534246575], 0.52974291612: [0.5890410958904, 0.4109589041096], 0.3698630137: [0.0], 0.54287858885: [0.1369863013699, 0.8630136986301], 0.18821542503: [0.6438356164384, 0.3561643835616], 0.55864139613: [0.0547945205479, 0.9452054794521], 0.70463501595: [0.3424657534247, 0.6575342465753], 0.97860761869: [0.6575342465753, 0.3424657534247], 0.19609682867: [0.1917808219178, 0.8082191780822], 0.4933383374: [0.6301369863014, 0.3698630136986], 0.33308313004: [0.1917808219178, 0.8082191780822], 0.20397823231: [0.8767123287671, 0.1232876712329], 0.414524301: [0.6164383561644, 0.3835616438356], 0.63482829799: [0.1506849315068, 0.8493150684932], 0.62507036968: [0.1369863013699, 0.8630136986301], 0.23587915181: [0.5205479452055, 0.4794520547945], 0.65059110527: [0.7808219178082, 0.2191780821918], 0.43816851192: [0.013698630137, 0.986301369863], 0.44604991556: [0.7534246575342, 0.2465753424658], 0.69787952712: [0.027397260274, 0.972602739726], 0.61981610058: [0.5068493150685, 0.4931506849315], 0.11315443798: [0.6164383561644, 0.3835616438356], 0.75192343779: [0.8767123287671, 0.1232876712329], 0.0324638769: [0.3013698630137, 0.6986301369863], 0.72677800713: [0.2602739726027, 0.7397260273973], 0.26627885157: [0.3424657534247, 0.6575342465753], 0.27416025521: [0.6301369863014, 0.3698630136986], 0.06886845562: [0.1643835616438, 0.8356164383562], 0.89191217865: [0.6712328767123, 0.3287671232877], 0.14167761306: [0.1506849315068, 0.8493150684932], 0.77406642897: [0.0821917808219, 0.9178082191781], 0.28992306249: [0.5342465753425, 0.4657534246575], 0.24601238506: [0.2876712328767, 0.7123287671233], 0.78982923625: [0.0684931506849, 0.9315068493151], 0.29780446613: [0.6438356164384, 0.3561643835616], 0.06248827172: [0.7534246575342, 0.2465753424658], 0.84237192719: [0.7808219178082, 0.2191780821918], 0.30568586977: [0.1917808219178, 0.8082191780822], 0.35147307187: [0.0684931506849, 0.9315068493151], 0.31356727341: [0.8767123287671, 0.1232876712329], 0.83449052355: [0.7945205479452, 0.2054794520548], 0.16006755489: [0.1780821917808, 0.8219178082192], 0.08200412835: [0.013698630137, 0.986301369863], 0.32933008069: [0.7671232876712, 0.2328767123288], 0.86601613811: [0.5205479452055, 0.4794520547945], 0.16794895853: [0.6164383561644, 0.3835616438356], 0.29067367236: [0.5205479452055, 0.4794520547945], 0.88177894539: [0.3013698630137, 0.6986301369863], 0.89491461813: [0.0958904109589, 0.9041095890411], 0.89754175267: [0.2739726027397, 0.7260273972603], 0.17583036217: [0.5753424657534, 0.4246575342466], 0.50910114468: [0.5342465753425, 0.4657534246575], 0.91330455996: [0.5890410958904, 0.4109589041096], 0.089885532: [0.7534246575342, 0.2465753424658], 0.52486395196: [0.1917808219178, 0.8082191780822], 0.03096265716: [0.6164383561644, 0.3835616438356], 0.38187277163: [0.041095890411, 0.958904109589], 0.97372865453: [0.5479452054795, 0.4520547945205], 0.98686432727: [0.7671232876712, 0.2328767123288], 0.79958716457: [0.3013698630137, 0.6986301369863], 0.39763557891: [0.1643835616438, 0.8356164383562], 0.60105085382: [0.041095890411, 0.958904109589], 0.20210170764: [0.3150684931507, 0.6849315068493], 0.61418652655: [0.5753424657534, 0.4246575342466], 0.6168136611: [0.1643835616438, 0.8356164383562], 0.10302120473: [0.2739726027397, 0.7260273972603], 0.62994933383: [0.013698630137, 0.986301369863], 0.94858322387: [0.5068493150685, 0.4931506849315], 0.20998311128: [0.0958904109589, 0.9041095890411], 0.64833927566: [0.0958904109589, 0.9041095890411], 0.94445486958: [0.027397260274, 0.972602739726], 0.68024019516: [0.0684931506849, 0.9315068493151], 0.67723775568: [0.3424657534247, 0.6575342465753], 0.94970913868: [0.0958904109589, 0.9041095890411], 0.22574591856: [0.6027397260274, 0.3972602739726], 0.70876337024: [0.6438356164384, 0.3561643835616], 0.25727153312: [0.0547945205479, 0.9452054794521], 0.45805967349: [0.3424657534247, 0.6575342465753], 0.72452617752: [0.8767123287671, 0.1232876712329], 0.13191968474: [0.1369863013699, 0.8630136986301], 0.46594107713: [0.6301369863014, 0.3698630136986], 0.7402889848: [0.7671232876712, 0.2328767123288], 0.03396509664: [0.6027397260274, 0.3972602739726], 0.75342465753: [0.0], 0.28091574404: [0.0821917808219, 0.9178082191781], 0.0718708951: [0.5068493150685, 0.4931506849315], 0.48958528805: [0.6438356164384, 0.3561643835616], 0.96547194596: [0.6027397260274, 0.3972602739726], 0.14768249203: [0.0547945205479, 0.9452054794521], 0.1240382811: [0.2602739726027, 0.7397260273973], 0.79808594483: [0.6164383561644, 0.3835616438356], 0.83599174329: [0.1643835616438, 0.8356164383562], 0.9733533496: [0.2602739726027, 0.7397260273973], 0.82961155939: [0.7534246575342, 0.2465753424658], 0.83223869394: [0.6849315068493, 0.3150684931507], 0.57703133796: [0.1095890410959, 0.8904109589041], 0.94070182023: [0.5890410958904, 0.4109589041096], 0.88703321449: [0.6849315068493, 0.3150684931507], 0.33345843498: [0.1506849315068, 0.8493150684932], 0.87689998124: [0.6301369863014, 0.3698630136986], 0.34133983862: [0.7945205479452, 0.2054794520548], 0.65321823982: [0.1780821917808, 0.8219178082192], 0.89003565397: [0.5616438356164, 0.4383561643836], 0.34922124226: [0.7808219178082, 0.2191780821918], 0.90579846125: [0.1095890410959, 0.8904109589041], 0.9084255958: [0.1917808219178, 0.8082191780822], 0.04447363483: [0.5068493150685, 0.4931506849315], 0.5199849878: [0.2876712328767, 0.7123287671233], 0.72490148245: [0.7945205479452, 0.2054794520548], 0.53312066054: [0.7945205479452, 0.2054794520548], 0.53574779508: [0.3287671232877, 0.6712328767123], 0.09288797148: [0.0547945205479, 0.9452054794521], 0.55151060236: [0.6164383561644, 0.3835616438356], 0.5646462751: [0.5205479452055, 0.4794520547945], 0.56126853068: [0.5616438356164, 0.4383561643836], 0.98461249765: [0.041095890411, 0.958904109589], 0.46744229687: [0.1095890410959, 0.8904109589041], 0.59617188966: [0.2739726027397, 0.7260273972603], 0.4017639332: [0.0958904109589, 0.9041095890411], 0.60930756239: [0.6027397260274, 0.3972602739726], 0.61193469694: [0.5890410958904, 0.4109589041096], 0.20547945206: [0.0], 0.41752674048: [0.6027397260274, 0.3972602739726], 0.64083317696: [0.0547945205479, 0.9452054794521], 0.6434603115: [0.5616438356164, 0.4383561643836], 0.42540814412: [0.2602739726027, 0.7397260273973], 0.43328954776: [0.1369863013699, 0.8630136986301], 0.67235879152: [0.5479452054795, 0.4520547945205], 0.05498217302: [0.6301369863014, 0.3698630136986], 0.22386939388: [0.1506849315068, 0.8493150684932], 0.44905235504: [0.0547945205479, 0.9452054794521], 0.58566335147: [0.3150684931507, 0.6849315068493], 0.11390504785: [0.1917808219178, 0.8082191780822], 0.71702007881: [0.1506849315068, 0.8493150684932], 0.26139988741: [0.5479452054795, 0.4520547945205], 0.23175079752: [0.7945205479452, 0.2054794520548], 0.7327828861: [0.7808219178082, 0.2191780821918], 0.13529742916: [0.041095890411, 0.958904109589], 0.06961906549: [0.5479452054795, 0.4520547945205], 0.23963220116: [0.7808219178082, 0.2191780821918], 0.89641583787: [0.6575342465753, 0.3424657534247], 0.12178645149: [0.8767123287671, 0.1232876712329], 0.90767498593: [0.6164383561644, 0.3835616438356], 0.78007130794: [0.027397260274, 0.972602739726], 0.49371364233: [0.7671232876712, 0.2328767123288], 0.30080690561: [0.2876712328767, 0.7123287671233], 0.80896978795: [0.2602739726027, 0.7397260273973], 0.15368737099: [0.5205479452055, 0.4794520547945], 0.0197035091: [0.3424657534247, 0.6575342465753], 0.32445111653: [0.1780821917808, 0.8219178082192], 0.8562582098: [0.0821917808219, 0.9178082191781], 0.08275473823: [0.7671232876712, 0.2328767123288], 0.87202101708: [0.0684931506849, 0.9315068493151], 0.16945017827: [0.3013698630137, 0.6986301369863], 0.04334772002: [0.5342465753425, 0.4657534246575], 0.91743291424: [0.5616438356164, 0.4383561643836], 0.90354663164: [0.2876712328767, 0.7123287671233], 0.17733158191: [0.027397260274, 0.972602739726], 0.91668230437: [0.7945205479452, 0.2054794520548], 0.36123100019: [0.3013698630137, 0.6986301369863], 0.52824169638: [0.7534246575342, 0.2465753424658], 0.36911240383: [0.027397260274, 0.972602739726], 0.94820791893: [0.5205479452055, 0.4794520547945], 0.1484331019: [0.5753424657534, 0.4246575342466], 0.96397072622: [0.3013698630137, 0.6986301369863], 0.57553011822: [0.6301369863014, 0.3698630136986], 0.97710639895: [0.0958904109589, 0.9041095890411], 0.39275661475: [0.5890410958904, 0.4109589041096], 0.5912929255: [0.5342465753425, 0.4657534246575], 0.36686057422: [0.0547945205479, 0.9452054794521], 0.40063801839: [0.5068493150685, 0.4931506849315], 0.60442859824: [0.1095890410959, 0.8904109589041], 0.21148433102: [0.3424657534247, 0.6575342465753], 0.8115969225: [0.5068493150685, 0.4931506849315], 0.94370425971: [0.8767123287671, 0.1232876712329], 0.91180334021: [0.7534246575342, 0.2465753424658], 0.21936573466: [0.6301369863014, 0.3698630136986], 0.68324263464: [0.041095890411, 0.958904109589], 0.44529930569: [0.0821917808219, 0.9178082191781], 0.69637830738: [0.5753424657534, 0.4246575342466], 0.69900544192: [0.1643835616438, 0.8356164383562], 0.45318070933: [0.5479452054795, 0.4520547945205], 0.71214111466: [0.013698630137, 0.986301369863], 0.2602739726: [0.0], 0.13342090449: [0.6438356164384, 0.3561643835616], 0.69262525802: [0.7534246575342, 0.2465753424658], 0.03434040158: [0.0821917808219, 0.9178082191781], 0.56314505536: [0.3287671232877, 0.6712328767123], 0.14130230813: [0.1917808219178, 0.8082191780822], 0.31656971289: [0.3287671232877, 0.6712328767123], 0.49258772753: [0.2876712328767, 0.7123287671233], 0.79095515106: [0.6438356164384, 0.3561643835616], 0.14918371177: [0.8767123287671, 0.1232876712329], 0.3049352599: [0.6164383561644, 0.3835616438356], 0.82248076562: [0.7671232876712, 0.2328767123288], 0.31281666354: [0.5753424657534, 0.4246575342466], 0.78119722274: [0.1643835616438, 0.8356164383562], 0.83561643836: [0.0], 0.08050290861: [0.041095890411, 0.958904109589], 0.77369112404: [0.6027397260274, 0.3972602739726], 0.32857947082: [0.013698630137, 0.986301369863], 0.63933195722: [0.5890410958904, 0.4109589041096], 0.33646087446: [0.7534246575342, 0.2465753424658], 0.88027772565: [0.6164383561644, 0.3835616438356], 0.08575717771: [0.6164383561644, 0.3835616438356], 0.50759992494: [0.2602739726027, 0.7397260273973], 0.51022705949: [0.5068493150685, 0.4931506849315], 0.9350722462: [0.6164383561644, 0.3835616438356], 0.09363858135: [0.5753424657534, 0.4246575342466], 0.55488834678: [0.0821917808219, 0.9178082191781], 0.19121786452: [0.2876712328767, 0.7123287671233], 0.57065115406: [0.0684931506849, 0.9315068493151], 0.0121974104: [0.8767123287671, 0.1232876712329], 0.98799024207: [0.1095890410959, 0.8904109589041], 0.39688496904: [0.5616438356164, 0.4383561643836], 0.60217676863: [0.2876712328767, 0.7123287671233], 0.61531244136: [0.7945205479452, 0.2054794520548], 0.93131919685: [0.013698630137, 0.986301369863], 0.41264777632: [0.1095890410959, 0.8904109589041], 0.63370238319: [0.6164383561644, 0.3835616438356], 0.64683805592: [0.5205479452055, 0.4794520547945], 0.6626008632: [0.3013698630137, 0.6986301369863], 0.21748920998: [0.041095890411, 0.958904109589], 0.67836367048: [0.2739726027397, 0.7260273972603], 0.05535747795: [0.7671232876712, 0.2328767123288], 0.69149934322: [0.6027397260274, 0.3972602739726], 0.45205479452: [0.0], 0.7072621505: [0.1369863013699, 0.8630136986301], 0.11465565772: [0.3013698630137, 0.6986301369863], 0.72302495778: [0.0547945205479, 0.9452054794521], 0.72565209233: [0.5616438356164, 0.4383561643836], 0.23325201726: [0.1643835616438, 0.8356164383562], 0.97035091011: [0.5753424657534, 0.4246575342466], 0.27228373053: [0.041095890411, 0.958904109589], 0.01482454494: [0.5479452054795, 0.4520547945205], 0.75455057234: [0.5479452054795, 0.4520547945205], 0.86338900357: [0.1643835616438, 0.8356164383562], 0.48095327454: [0.3287671232877, 0.6712328767123], 0.28804653781: [0.1643835616438, 0.8356164383562], 0.12253706136: [0.027397260274, 0.972602739726], 0.49671608182: [0.6164383561644, 0.3835616438356], 0.76881215988: [0.1095890410959, 0.8904109589041], 0.07562394446: [0.2739726027397, 0.7260273972603], 0.81497466692: [0.7808219178082, 0.2191780821918], 0.15518859073: [0.0958904109589, 0.9041095890411], 0.31169074873: [0.3150684931507, 0.6849315068493], 0.77143929443: [0.1917808219178, 0.8082191780822], 0.90880090073: [0.1506849315068, 0.8493150684932], 0.86226308876: [0.027397260274, 0.972602739726], 0.77932069807: [0.8767123287671, 0.1232876712329], 0.17095139801: [0.6027397260274, 0.3972602739726], 0.89116156878: [0.2602739726027, 0.7397260273973], 0.34847063239: [0.3424657534247, 0.6575342465753], 0.92081065866: [0.5205479452055, 0.4794520547945], 0.50534809533: [0.8767123287671, 0.1232876712329], 0.35635203603: [0.6301369863014, 0.3698630136986], 0.17883280165: [0.2602739726027, 0.7397260273973], 0.52111090261: [0.7671232876712, 0.2328767123288], 0.91067742541: [0.6027397260274, 0.3972602739726], 0.53424657534: [0.0], 0.91930943892: [0.6712328767123, 0.3287671232877], 0.37211484331: [0.5342465753425, 0.4657534246575], 0.9542127979: [0.0684931506849, 0.9315068493151], 0.37999624695: [0.6438356164384, 0.3561643835616], 0.09664102083: [0.2602739726027, 0.7397260273973], 0.38787765059: [0.1917808219178, 0.8082191780822], 0.98573841246: [0.2876712328767, 0.7123287671233], 0.39575905423: [0.8767123287671, 0.1232876712329], 0.99887408519: [0.7945205479452, 0.2054794520548], 0.01257271533: [0.7945205479452, 0.2054794520548], 0.6104334772: [0.7534246575342, 0.2465753424658], 0.67085757178: [0.5616438356164, 0.4383561643836], 0.20510414712: [0.5616438356164, 0.4383561643836], 0.10452242447: [0.1369863013699, 0.8630136986301], 0.47720022518: [0.5753424657534, 0.4246575342466], 0.65772189904: [0.6301369863014, 0.3698630136986], 0.05423156315: [0.2876712328767, 0.7123287671233], 0.67348470632: [0.5342465753425, 0.4657534246575], 0.2208669544: [0.1095890410959, 0.8904109589041], 0.68662037906: [0.1095890410959, 0.8904109589041], 0.96246950647: [0.6164383561644, 0.3835616438356], 0.95871645712: [0.013698630137, 0.986301369863], 0.37699380747: [0.2739726027397, 0.7260273972603], 0.44304747607: [0.1506849315068, 0.8493150684932], 0.0654907112: [0.0547945205479, 0.9452054794521], 0.46406455245: [0.041095890411, 0.958904109589], 0.47982735973: [0.1643835616438, 0.8356164383562], 0.76543441546: [0.041095890411, 0.958904109589], 0.01519984988: [0.3287671232877, 0.6712328767123], 0.75492587728: [0.6712328767123, 0.3287671232877], 0.24713829987: [0.7671232876712, 0.2328767123288], 0.79433289548: [0.013698630137, 0.986301369863], 0.15068493151: [0.0], 0.30793769938: [0.6027397260274, 0.3972602739726], 0.31581910302: [0.2602739726027, 0.7397260273973], 0.84162131732: [0.6575342465753, 0.3424657534247], 0.32370050666: [0.1369863013699, 0.8630136986301], 0.9797335335: [0.2739726027397, 0.7260273972603], 0.87314693188: [0.6438356164384, 0.3561643835616], 0.16907487334: [0.1506849315068, 0.8493150684932], 0.84762619628: [0.041095890411, 0.958904109589], 0.08650778758: [0.1917808219178, 0.8082191780822], 0.17695627698: [0.7945205479452, 0.2054794520548], 0.5136048039: [0.7808219178082, 0.2191780821918], 0.51623193845: [0.1780821917808, 0.8219178082192], 0.88590729968: [0.5890410958904, 0.4109589041096], 0.53199474573: [0.5753424657534, 0.4246575342466], 0.18483768062: [0.7808219178082, 0.2191780821918], 0.4614374179: [0.1780821917808, 0.8219178082192], 0.09438919122: [0.8767123287671, 0.1232876712329], 0.56089322575: [0.027397260274, 0.972602739726], 0.38412460124: [0.7671232876712, 0.2328767123288], 0.02908613248: [0.1095890410959, 0.8904109589041], 0.58979170576: [0.2602739726027, 0.7397260273973], 0.59241884031: [0.5068493150685, 0.4931506849315], 0.96922499531: [0.6849315068493, 0.3150684931507], 0.4156502158: [0.1506849315068, 0.8493150684932], 0.6370801276: [0.0821917808219, 0.9178082191781], 0.74441733909: [0.1506849315068, 0.8493150684932], 0.42353161944: [0.7945205479452, 0.2054794520548], 0.65284293489: [0.0684931506849, 0.9315068493151], 0.43141302308: [0.7808219178082, 0.2191780821918], 0.21899042972: [0.013698630137, 0.986301369863], 0.68436854945: [0.2876712328767, 0.7123287671233], 0.69750422218: [0.7945205479452, 0.2054794520548], 0.25164195909: [0.3013698630137, 0.6986301369863], 0.22687183337: [0.7534246575342, 0.2465753424658], 0.130418465: [0.2739726027397, 0.7260273972603], 0.41114655658: [0.6301369863014, 0.3698630136986], 0.26740476637: [0.2739726027397, 0.7260273972603], 0.74479264402: [0.3013698630137, 0.6986301369863], 0.47607431038: [0.3150684931507, 0.6849315068493], 0.7605554513: [0.2739726027397, 0.7260273972603], 0.28316757365: [0.5890410958904, 0.4109589041096], 0.76280728092: [0.1780821917808, 0.8219178082192], 0.29104897729: [0.5068493150685, 0.4931506849315], 0.12328767123: [0.0], 0.571026459: [0.1780821917808, 0.8219178082192], 0.4997185213: [0.6027397260274, 0.3972602739726], 0.8052167386: [0.0547945205479, 0.9452054794521], 0.50647401013: [0.5616438356164, 0.4383561643836], 0.15668981047: [0.3424657534247, 0.6575342465753], 0.83674235316: [0.5479452054795, 0.4520547945205], 0.8498780259: [0.7671232876712, 0.2328767123288], 0.16457121411: [0.6301369863014, 0.3698630136986], 0.33571026459: [0.0821917808219, 0.9178082191781], 0.88140364046: [0.1506849315068, 0.8493150684932], 0.34359166823: [0.5479452054795, 0.4520547945205], 0.89716644774: [0.7808219178082, 0.2191780821918], 0.04409832989: [0.5205479452055, 0.4794520547945], 0.51135297429: [0.0958904109589, 0.9041095890411], 0.52223681741: [0.1095890410959, 0.8904109589041], 0.52711578157: [0.6027397260274, 0.3972602739726], 0.54025145431: [0.3424657534247, 0.6575342465753], 0.94182773504: [0.6849315068493, 0.3150684931507], 0.92381309814: [0.6575342465753, 0.3424657534247], 0.38299868643: [0.2876712328767, 0.7123287671233], 0.57177706887: [0.6438356164384, 0.3561643835616], 0.97598048414: [0.5068493150685, 0.4931506849315], 0.0973916307: [0.3287671232877, 0.6712328767123], 0.58753987615: [0.8767123287671, 0.1232876712329], 0.19872396322: [0.0821917808219, 0.9178082191781], 0.39876149371: [0.3287671232877, 0.6712328767123], 0.60330268343: [0.7671232876712, 0.2328767123288], 0.61643835616: [0.0], 0.20660536686: [0.5479452054795, 0.4520547945205], 0.10527303434: [0.1780821917808, 0.8219178082192], 0.73541002064: [0.1780821917808, 0.8219178082192], 0.42765997373: [0.5205479452055, 0.4794520547945], 0.2144867705: [0.0684931506849, 0.9315068493151], 0.81534997185: [0.2739726027397, 0.7260273972603], 0.05460686808: [0.013698630137, 0.986301369863], 0.00018765247: [0.6301369863014, 0.3698630136986], 0.44342278101: [0.3013698630137, 0.6986301369863], 0.44267217114: [0.1917808219178, 0.8082191780822], 0.69525239257: [0.6849315068493, 0.3150684931507], 0.45130418465: [0.027397260274, 0.972602739726], 0.37661850253: [0.7808219178082, 0.2191780821918], 0.45918558829: [0.2739726027397, 0.7260273972603], 0.06624132107: [0.5753424657534, 0.4246575342466], 0.73991367987: [0.6301369863014, 0.3698630136986], 0.13642334397: [0.2876712328767, 0.7123287671233], 0.47494839557: [0.5890410958904, 0.4109589041096], 0.75567648715: [0.5342465753425, 0.4657534246575], 0.03509101145: [0.7534246575342, 0.2465753424658], 0.48282979921: [0.5068493150685, 0.4931506849315], 0.28729592794: [0.5616438356164, 0.4383561643836], 0.96322011635: [0.1917808219178, 0.8082191780822], 0.30305873522: [0.1095890410959, 0.8904109589041], 0.15218615125: [0.3287671232877, 0.6712328767123], 0.99962469507: [0.5616438356164, 0.4383561643836], 0.83899418277: [0.5068493150685, 0.4931506849315], 0.84499906174: [0.1780821917808, 0.8219178082192], 0.82623381498: [0.1917808219178, 0.8082191780822], 0.86076186902: [0.5753424657534, 0.4246575342466], 0.02082942391: [0.2739726027397, 0.7260273972603], 0.99774817039: [0.5753424657534, 0.4246575342466], 0.8765246763: [0.013698630137, 0.986301369863], 0.34246575343: [0.0], 0.78945393132: [0.1369863013699, 0.8630136986301], 0.08725839745: [0.3013698630137, 0.6986301369863], 0.50384687559: [0.0547945205479, 0.9452054794521], 0.17845749672: [0.1643835616438, 0.8356164383562], 0.46106211297: [0.0684931506849, 0.9315068493151], 0.04559954963: [0.0958904109589, 0.9041095890411], 0.53537249015: [0.5479452054795, 0.4520547945205], 0.9553387127: [0.6438356164384, 0.3561643835616], 0.09513980109: [0.027397260274, 0.972602739726], 0.97110151999: [0.8767123287671, 0.1232876712329], 0.38712704072: [0.6164383561644, 0.3835616438356], 0.58003377744: [0.1506849315068, 0.8493150684932], 0.73053105648: [0.0958904109589, 0.9041095890411], 0.39500844436: [0.5753424657534, 0.4246575342466], 0.59579658473: [0.7808219178082, 0.2191780821918]} | pattern_zero = [0.0, 0.0135109777, 0.0266466504, 0.0273972603, 0.0394070182, 0.0409082379, 0.0517920811, 0.0540439107, 0.0547945205, 0.063801839, 0.0668042785, 0.0683054982, 0.075436292, 0.0791893413, 0.081441171, 0.0821917808, 0.08669544, 0.0911990993, 0.0942015388, 0.0957027585, 0.0975792832, 0.1028335523, 0.1065866016, 0.1080878214, 0.1088384312, 0.1095890411, 0.1140927003, 0.1182210546, 0.1185963595, 0.121598799, 0.1231000188, 0.1249765434, 0.1279789829, 0.1302308125, 0.1339838619, 0.1354850816, 0.1362356915, 0.1369863014, 0.1373616063, 0.1414899606, 0.1456183149, 0.1459936198, 0.1463689248, 0.1489960593, 0.150497279, 0.1523738037, 0.1550009383, 0.1553762432, 0.1576280728, 0.1613811222, 0.1628823419, 0.1632576468, 0.1636329518, 0.1643835616, 0.1647588666, 0.1688872209, 0.1711390505, 0.1730155752, 0.1733908801, 0.173766185, 0.1763933196, 0.1778945393, 0.1786451492, 0.179771064, 0.1823981985, 0.1827735035, 0.1850253331, 0.185775943, 0.1887783824, 0.1902796022, 0.1906549071, 0.191030212, 0.1917808219, 0.1921561269, 0.1925314318, 0.1962844811, 0.1985363108, 0.1989116157, 0.2004128354, 0.2007881404, 0.2011634453, 0.2037905798, 0.2049164947, 0.2052917996, 0.2060424095, 0.2071683243, 0.2097954588, 0.2101707637, 0.2105460687, 0.2124225934, 0.2131732032, 0.2158003378, 0.2161756427, 0.2176768625, 0.2180521674, 0.2184274723, 0.2191780822, 0.2195533871, 0.2199286921, 0.2206793019, 0.2236817414, 0.2251829612, 0.225933571, 0.226308876, 0.2278100957, 0.2281854006, 0.2285607056, 0.2293113154, 0.2311878401, 0.2323137549, 0.2326890599, 0.2330643648, 0.2334396697, 0.2345655845, 0.2364421092, 0.2371927191, 0.237568024, 0.237943329, 0.2394445487, 0.2398198536, 0.2405704635, 0.2420716832, 0.243197598, 0.243572903, 0.2443235129, 0.2450741227, 0.2454494277, 0.2458247326, 0.2462000375, 0.2465753425, 0.2469506474, 0.2473259523, 0.2477012573, 0.2480765622, 0.2488271721, 0.2495777819, 0.2499530869, 0.2510790017, 0.2525802214, 0.2533308313, 0.2537061362, 0.255207356, 0.2555826609, 0.2559579658, 0.2567085757, 0.2585851004, 0.2597110152, 0.2600863201, 0.2604616251, 0.26083693, 0.2619628448, 0.2638393695, 0.2645899794, 0.2649652843, 0.2653405892, 0.266841809, 0.2672171139, 0.2679677238, 0.2694689435, 0.2705948583, 0.2709701633, 0.2717207731, 0.272471383, 0.2728466879, 0.2732219929, 0.2735972978, 0.2739726027, 0.2743479077, 0.2747232126, 0.2750985175, 0.2754738225, 0.2762244324, 0.2769750422, 0.2773503472, 0.278476262, 0.2799774817, 0.2807280916, 0.2811033965, 0.2826046163, 0.2829799212, 0.2833552261, 0.284105836, 0.2859823607, 0.2871082755, 0.2874835804, 0.2878588853, 0.2882341903, 0.2893601051, 0.2912366298, 0.2919872396, 0.2923625446, 0.2927378495, 0.2942390692, 0.2946143742, 0.2953649841, 0.2968662038, 0.2979921186, 0.2983674235, 0.2991180334, 0.2998686433, 0.3002439482, 0.3006192531, 0.3009945581, 0.301369863, 0.3017451679, 0.3021204729, 0.3024957778, 0.3028710828, 0.3036216926, 0.3043723025, 0.3047476074, 0.3058735222, 0.307374742, 0.3081253518, 0.3085006568, 0.3100018765, 0.3103771815, 0.3107524864, 0.3115030963, 0.3133796209, 0.3145055357, 0.3148808407, 0.3152561456, 0.3156314506, 0.3167573654, 0.31863389, 0.3193844999, 0.3197598048, 0.3201351098, 0.3216363295, 0.3220116345, 0.3227622443, 0.3242634641, 0.3253893789, 0.3257646838, 0.3265152937, 0.3272659035, 0.3276412085, 0.3280165134, 0.3283918184, 0.3287671233, 0.3291424282, 0.3295177332, 0.3298930381, 0.330268343, 0.3310189529, 0.3317695628, 0.3321448677, 0.3332707825, 0.3347720023, 0.3355226121, 0.3358979171, 0.3373991368, 0.3377744417, 0.3381497467, 0.3389003565, 0.3407768812, 0.341902796, 0.342278101, 0.3426534059, 0.3430287108, 0.3441546256, 0.3460311503, 0.3467817602, 0.3471570651, 0.3475323701, 0.3490335898, 0.3494088947, 0.3501595046, 0.3516607243, 0.3527866391, 0.3531619441, 0.353912554, 0.3546631638, 0.3550384688, 0.3554137737, 0.3557890786, 0.3561643836, 0.3565396885, 0.3569149934, 0.3572902984, 0.3576656033, 0.3584162132, 0.359166823, 0.359542128, 0.3606680428, 0.3621692625, 0.3629198724, 0.3632951773, 0.3647963971, 0.365171702, 0.3655470069, 0.3662976168, 0.3681741415, 0.3693000563, 0.3696753612, 0.3700506662, 0.3704259711, 0.3715518859, 0.3734284106, 0.3741790205, 0.3745543254, 0.3749296303, 0.3764308501, 0.376806155, 0.3775567649, 0.3790579846, 0.3801838994, 0.3805592044, 0.3813098142, 0.3820604241, 0.382435729, 0.382811034, 0.3831863389, 0.3835616438, 0.3839369488, 0.3843122537, 0.3846875586, 0.3850628636, 0.3858134734, 0.3865640833, 0.3869393883, 0.3880653031, 0.3895665228, 0.3903171327, 0.3906924376, 0.3921936573, 0.3925689623, 0.3929442672, 0.3936948771, 0.3955714018, 0.3966973166, 0.3970726215, 0.3974479264, 0.3978232314, 0.3989491462, 0.4008256709, 0.4015762807, 0.4019515857, 0.4023268906, 0.4038281103, 0.4042034153, 0.4049540251, 0.4064552449, 0.4075811597, 0.4079564646, 0.4087070745, 0.4094576844, 0.4098329893, 0.4102082942, 0.4105835992, 0.4109589041, 0.411334209, 0.411709514, 0.4120848189, 0.4124601239, 0.4132107337, 0.4139613436, 0.4143366485, 0.4154625633, 0.4169637831, 0.4177143929, 0.4180896979, 0.4195909176, 0.4199662226, 0.4203415275, 0.4210921374, 0.422968662, 0.4240945768, 0.4244698818, 0.4248451867, 0.4252204916, 0.4263464065, 0.4282229311, 0.428973541, 0.4293488459, 0.4297241509, 0.4312253706, 0.4316006755, 0.4323512854, 0.4338525052, 0.43497842, 0.4353537249, 0.4361043348, 0.4368549446, 0.4372302496, 0.4376055545, 0.4379808594, 0.4383561644, 0.4387314693, 0.4391067743, 0.4394820792, 0.4398573841, 0.440607994, 0.4413586039, 0.4417339088, 0.4428598236, 0.4443610433, 0.4451116532, 0.4454869582, 0.4469881779, 0.4473634828, 0.4477387878, 0.4484893976, 0.4503659223, 0.4514918371, 0.4518671421, 0.452242447, 0.4526177519, 0.4537436667, 0.4556201914, 0.4563708013, 0.4567461062, 0.4571214111, 0.4586226309, 0.4589979358, 0.4597485457, 0.4612497654, 0.4623756802, 0.4627509852, 0.463501595, 0.4642522049, 0.4646275099, 0.4650028148, 0.4653781197, 0.4657534247, 0.4661287296, 0.4665040345, 0.4668793395, 0.4672546444, 0.4680052543, 0.4687558641, 0.4691311691, 0.4702570839, 0.4717583036, 0.4725089135, 0.4728842184, 0.4743854382, 0.4747607431, 0.475136048, 0.4758866579, 0.4777631826, 0.4788890974, 0.4792644023, 0.4796397073, 0.4800150122, 0.481140927, 0.4830174517, 0.4837680616, 0.4841433665, 0.4845186714, 0.4860198912, 0.4863951961, 0.487145806, 0.4886470257, 0.4897729405, 0.4901482454, 0.4908988553, 0.4916494652, 0.4920247701, 0.4924000751, 0.49277538, 0.4931506849, 0.4935259899, 0.4939012948, 0.4942765997, 0.4946519047, 0.4954025145, 0.4961531244, 0.4965284293, 0.4976543442, 0.4991555639, 0.4999061738, 0.5002814787, 0.5017826984, 0.5021580034, 0.5025333083, 0.5032839182, 0.5051604429, 0.5062863577, 0.5066616626, 0.5070369675, 0.5074122725, 0.5085381873, 0.510414712, 0.5111653218, 0.5115406268, 0.5119159317, 0.5134171514, 0.5137924564, 0.5145430662, 0.516044286, 0.5171702008, 0.5175455057, 0.5182961156, 0.5190467255, 0.5194220304, 0.5197973353, 0.5201726403, 0.5205479452, 0.5209232501, 0.5212985551, 0.52167386, 0.5220491649, 0.5227997748, 0.5235503847, 0.5239256896, 0.5250516044, 0.5265528242, 0.527303434, 0.527678739, 0.5291799587, 0.5295552637, 0.5299305686, 0.5306811785, 0.5325577031, 0.5336836179, 0.5340589229, 0.5344342278, 0.5348095327, 0.5359354476, 0.5378119722, 0.5385625821, 0.538937887, 0.539313192, 0.5408144117, 0.5411897166, 0.5419403265, 0.5434415463, 0.5445674611, 0.544942766, 0.5456933759, 0.5464439857, 0.5468192907, 0.5471945956, 0.5475699005, 0.5479452055, 0.5483205104, 0.5486958154, 0.5490711203, 0.5494464252, 0.5501970351, 0.550947645, 0.5513229499, 0.5524488647, 0.5539500844, 0.5547006943, 0.5550759992, 0.556577219, 0.5569525239, 0.5573278289, 0.5580784387, 0.5599549634, 0.5610808782, 0.5614561831, 0.5618314881, 0.562206793, 0.5633327078, 0.5652092325, 0.5659598424, 0.5663351473, 0.5667104522, 0.568211672, 0.5685869769, 0.5693375868, 0.5708388065, 0.5719647213, 0.5723400263, 0.5730906361, 0.573841246, 0.5742165509, 0.5745918559, 0.5749671608, 0.5753424658, 0.5757177707, 0.5760930756, 0.5764683806, 0.5768436855, 0.5775942954, 0.5783449052, 0.5787202102, 0.579846125, 0.5813473447, 0.5820979546, 0.5824732595, 0.5839744793, 0.5843497842, 0.5847250891, 0.585475699, 0.5873522237, 0.5884781385, 0.5888534434, 0.5892287484, 0.5896040533, 0.5907299681, 0.5926064928, 0.5933571026, 0.5937324076, 0.5941077125, 0.5956089323, 0.5959842372, 0.5967348471, 0.5982360668, 0.5993619816, 0.5997372865, 0.6004878964, 0.6012385063, 0.6016138112, 0.6019891162, 0.6023644211, 0.602739726, 0.603115031, 0.6034903359, 0.6038656408, 0.6042409458, 0.6049915556, 0.6057421655, 0.6061174704, 0.6072433853, 0.608744605, 0.6094952149, 0.6098705198, 0.6113717395, 0.6117470445, 0.6121223494, 0.6128729593, 0.614749484, 0.6158753988, 0.6162507037, 0.6166260086, 0.6170013136, 0.6181272284, 0.620003753, 0.6207543629, 0.6211296679, 0.6215049728, 0.6230061925, 0.6233814975, 0.6241321073, 0.6256333271, 0.6267592419, 0.6271345468, 0.6278851567, 0.6286357666, 0.6290110715, 0.6293863764, 0.6297616814, 0.6301369863, 0.6305122912, 0.6308875962, 0.6312629011, 0.631638206, 0.6323888159, 0.6331394258, 0.6335147307, 0.6346406455, 0.6361418653, 0.6368924751, 0.6372677801, 0.6387689998, 0.6391443047, 0.6395196097, 0.6402702196, 0.6421467442, 0.643272659, 0.643647964, 0.6440232689, 0.6443985738, 0.6455244886, 0.6474010133, 0.6481516232, 0.6485269281, 0.6489022331, 0.6504034528, 0.6507787577, 0.6515293676, 0.6530305874, 0.6541565022, 0.6545318071, 0.655282417, 0.6560330268, 0.6564083318, 0.6567836367, 0.6571589416, 0.6575342466, 0.6579095515, 0.6582848564, 0.6586601614, 0.6590354663, 0.6597860762, 0.6605366861, 0.660911991, 0.6620379058, 0.6635391255, 0.6642897354, 0.6646650403, 0.6661662601, 0.666541565, 0.66691687, 0.6676674798, 0.6695440045, 0.6706699193, 0.6710452242, 0.6714205292, 0.6717958341, 0.6729217489, 0.6747982736, 0.6755488835, 0.6759241884, 0.6762994933, 0.6778007131, 0.678176018, 0.6789266279, 0.6804278476, 0.6815537624, 0.6819290674, 0.6826796772, 0.6834302871, 0.683805592, 0.684180897, 0.6845562019, 0.6849315068, 0.6853068118, 0.6856821167, 0.6860574217, 0.6864327266, 0.6871833365, 0.6879339463, 0.6883092513, 0.6894351661, 0.6909363858, 0.6916869957, 0.6920623006, 0.6935635204, 0.6939388253, 0.6943141302, 0.6950647401, 0.6969412648, 0.6980671796, 0.6984424845, 0.6988177895, 0.6991930944, 0.7003190092, 0.7021955339, 0.7029461437, 0.7033214487, 0.7036967536, 0.7051979734, 0.7055732783, 0.7063238882, 0.7078251079, 0.7089510227, 0.7093263276, 0.7100769375, 0.7108275474, 0.7112028523, 0.7115781573, 0.7119534622, 0.7123287671, 0.7127040721, 0.713079377, 0.7134546819, 0.7138299869, 0.7145805967, 0.7153312066, 0.7157065115, 0.7168324263, 0.7183336461, 0.719084256, 0.7194595609, 0.7209607806, 0.7213360856, 0.7217113905, 0.7224620004, 0.7243385251, 0.7254644399, 0.7258397448, 0.7262150497, 0.7265903547, 0.7277162695, 0.7295927941, 0.730343404, 0.730718709, 0.7310940139, 0.7325952336, 0.7329705386, 0.7337211484, 0.7352223682, 0.736348283, 0.7367235879, 0.7374741978, 0.7382248077, 0.7386001126, 0.7389754175, 0.7393507225, 0.7397260274, 0.7401013323, 0.7404766373, 0.7408519422, 0.7412272471, 0.741977857, 0.7427284669, 0.7431037718, 0.7442296866, 0.7457309064, 0.7464815162, 0.7468568212, 0.7483580409, 0.7487333458, 0.7491086508, 0.7498592606, 0.7517357853, 0.7528617001, 0.7532370051, 0.75361231, 0.7539876149, 0.7551135297, 0.7569900544, 0.7577406643, 0.7581159692, 0.7584912742, 0.7599924939, 0.7603677988, 0.7611184087, 0.7626196284, 0.7637455433, 0.7641208482, 0.7648714581, 0.7656220679, 0.7659973729, 0.7663726778, 0.7667479827, 0.7671232877, 0.7674985926, 0.7678738975, 0.7682492025, 0.7686245074, 0.7693751173, 0.7701257272, 0.7705010321, 0.7716269469, 0.7731281666, 0.7738787765, 0.7742540814, 0.7757553012, 0.7761306061, 0.7765059111, 0.7772565209, 0.7791330456, 0.7802589604, 0.7806342653, 0.7810095703, 0.7813848752, 0.78251079, 0.7843873147, 0.7851379246, 0.7855132295, 0.7858885344, 0.7873897542, 0.7877650591, 0.788515669, 0.7900168887, 0.7911428035, 0.7915181085, 0.7922687183, 0.7930193282, 0.7933946331, 0.7937699381, 0.794145243, 0.7945205479, 0.7948958529, 0.7952711578, 0.7956464628, 0.7960217677, 0.7967723776, 0.7975229874, 0.7978982924, 0.7990242072, 0.8005254269, 0.8012760368, 0.8016513417, 0.8031525615, 0.8035278664, 0.8039031713, 0.8046537812, 0.8065303059, 0.8076562207, 0.8080315256, 0.8084068306, 0.8087821355, 0.8099080503, 0.811784575, 0.8125351848, 0.8129104898, 0.8132857947, 0.8147870144, 0.8151623194, 0.8159129293, 0.817414149, 0.8185400638, 0.8189153687, 0.8196659786, 0.8204165885, 0.8207918934, 0.8211671983, 0.8215425033, 0.8219178082, 0.8222931132, 0.8226684181, 0.823043723, 0.823419028, 0.8241696378, 0.8249202477, 0.8252955526, 0.8264214674, 0.8279226872, 0.8286732971, 0.829048602, 0.8305498217, 0.8309251267, 0.8313004316, 0.8320510415, 0.8339275661, 0.835053481, 0.8354287859, 0.8358040908, 0.8361793958, 0.8373053106, 0.8391818352, 0.8399324451, 0.84030775, 0.840683055, 0.8421842747, 0.8425595797, 0.8433101895, 0.8448114093, 0.8459373241, 0.846312629, 0.8470632389, 0.8478138488, 0.8481891537, 0.8485644586, 0.8489397636, 0.8493150685, 0.8496903734, 0.8500656784, 0.8504409833, 0.8508162882, 0.8515668981, 0.852317508, 0.8526928129, 0.8538187277, 0.8553199475, 0.8560705573, 0.8564458623, 0.857947082, 0.8583223869, 0.8586976919, 0.8594483017, 0.8613248264, 0.8624507412, 0.8628260462, 0.8632013511, 0.863576656, 0.8647025708, 0.8665790955, 0.8673297054, 0.8677050103, 0.8680803153, 0.869581535, 0.8699568399, 0.8707074498, 0.8722086695, 0.8733345844, 0.8737098893, 0.8744604992, 0.875211109, 0.875586414, 0.8759617189, 0.8763370238, 0.8767123288, 0.8770876337, 0.8774629386, 0.8778382436, 0.8782135485, 0.8789641584, 0.8797147682, 0.8800900732, 0.881215988, 0.8827172077, 0.8834678176, 0.8838431225, 0.8853443423, 0.8857196472, 0.8860949521, 0.886845562, 0.8887220867, 0.8898480015, 0.8902233064, 0.8905986114, 0.8909739163, 0.8920998311, 0.8939763558, 0.8947269657, 0.8951022706, 0.8954775755, 0.8969787953, 0.8973541002, 0.8981047101, 0.8996059298, 0.9007318446, 0.9011071496, 0.9018577594, 0.9026083693, 0.9029836742, 0.9033589792, 0.9037342841, 0.904109589, 0.904484894, 0.9048601989, 0.9052355038, 0.9056108088, 0.9063614187, 0.9071120285, 0.9074873335, 0.9086132483, 0.910114468, 0.9108650779, 0.9112403828, 0.9127416026, 0.9131169075, 0.9134922124, 0.9142428223, 0.916119347, 0.9172452618, 0.9176205667, 0.9179958716, 0.9183711766, 0.9194970914, 0.9213736161, 0.9221242259, 0.9224995309, 0.9228748358, 0.9243760555, 0.9247513605, 0.9255019704, 0.9270031901, 0.9281291049, 0.9285044098, 0.9292550197, 0.9300056296, 0.9303809345, 0.9307562394, 0.9311315444, 0.9315068493, 0.9318821543, 0.9322574592, 0.9326327641, 0.9330080691, 0.9337586789, 0.9345092888, 0.9348845937, 0.9360105085, 0.9375117283, 0.9382623382, 0.9386376431, 0.9401388628, 0.9405141678, 0.9408894727, 0.9416400826, 0.9435166072, 0.944642522, 0.945017827, 0.9453931319, 0.9457684369, 0.9468943517, 0.9487708763, 0.9495214862, 0.9498967911, 0.9502720961, 0.9517733158, 0.9521486208, 0.9528992306, 0.9544004504, 0.9555263652, 0.9559016701, 0.95665228, 0.9574028898, 0.9577781948, 0.9581534997, 0.9585288047, 0.9589041096, 0.9592794145, 0.9596547195, 0.9600300244, 0.9604053293, 0.9611559392, 0.9619065491, 0.962281854, 0.9634077688, 0.9649089886, 0.9656595984, 0.9660349034, 0.9675361231, 0.967911428, 0.968286733, 0.9690373428, 0.9709138675, 0.9720397823, 0.9724150873, 0.9727903922, 0.9731656971, 0.9742916119, 0.9761681366, 0.9769187465, 0.9772940514, 0.9776693564, 0.9791705761, 0.979545881, 0.9802964909, 0.9817977106, 0.9829236254, 0.9832989304, 0.9840495403, 0.9848001501, 0.9851754551, 0.98555076, 0.9859260649, 0.9863013699, 0.9866766748, 0.9870519797, 0.9874272847, 0.9878025896, 0.9885531995, 0.9893038093, 0.9896791143, 0.9908050291, 0.9923062488, 0.9930568587, 0.9934321636, 0.9949333834, 0.9953086883, 0.9956839932, 0.9964346031, 0.9983111278, 0.9994370426, 0.9998123475]
pattern_odd = [0.00018765247, 0.0005629574, 0.00168887221, 0.00356539689, 0.00431600676, 0.00469131169, 0.00506661663, 0.00656783637, 0.0069431413, 0.00769375117, 0.00919497091, 0.01032088572, 0.01069619066, 0.01144680053, 0.0121974104, 0.01257271533, 0.01294802027, 0.0133233252, 0.01369863014, 0.01407393507, 0.01444924001, 0.01482454494, 0.01519984988, 0.01595045975, 0.01670106962, 0.01707637455, 0.01820228936, 0.0197035091, 0.02045411897, 0.02082942391, 0.02233064365, 0.02270594858, 0.02308125352, 0.02383186339, 0.02570838807, 0.02683430287, 0.02720960781, 0.02758491274, 0.02796021768, 0.02908613248, 0.03096265716, 0.03171326703, 0.03208857197, 0.0324638769, 0.03396509664, 0.03434040158, 0.03509101145, 0.03659223119, 0.03771814599, 0.03809345093, 0.0388440608, 0.03959467067, 0.03996997561, 0.04034528054, 0.04072058548, 0.04109589041, 0.04147119535, 0.04184650028, 0.04222180522, 0.04259711015, 0.04334772002, 0.04409832989, 0.04447363483, 0.04559954963, 0.04710076938, 0.04785137925, 0.04822668418, 0.04972790392, 0.05010320886, 0.05047851379, 0.05122912366, 0.05310564834, 0.05423156315, 0.05460686808, 0.05498217302, 0.05535747795, 0.05648339276, 0.05835991743, 0.0591105273, 0.05948583224, 0.05986113717, 0.06136235692, 0.06173766185, 0.06248827172, 0.06398949146, 0.06511540627, 0.0654907112, 0.06624132107, 0.06699193094, 0.06736723588, 0.06774254081, 0.06811784575, 0.06849315069, 0.06886845562, 0.06924376056, 0.06961906549, 0.06999437043, 0.0707449803, 0.07149559017, 0.0718708951, 0.07299680991, 0.07449802965, 0.07524863952, 0.07562394446, 0.0771251642, 0.07750046913, 0.07787577407, 0.07862638394, 0.08050290861, 0.08162882342, 0.08200412835, 0.08237943329, 0.08275473823, 0.08388065303, 0.08575717771, 0.08650778758, 0.08688309251, 0.08725839745, 0.08875961719, 0.08913492212, 0.089885532, 0.09138675174, 0.09251266654, 0.09288797148, 0.09363858135, 0.09438919122, 0.09476449615, 0.09513980109, 0.09551510602, 0.09589041096, 0.09626571589, 0.09664102083, 0.09701632577, 0.0973916307, 0.09814224057, 0.09889285044, 0.09926815538, 0.10039407018, 0.10189528992, 0.10264589979, 0.10302120473, 0.10452242447, 0.10489772941, 0.10527303434, 0.10602364421, 0.10790016889, 0.10902608369, 0.10940138863, 0.10977669356, 0.1101519985, 0.11127791331, 0.11315443798, 0.11390504785, 0.11428035279, 0.11465565772, 0.11615687746, 0.1165321824, 0.11728279227, 0.11878401201, 0.11990992682, 0.12028523175, 0.12103584162, 0.12178645149, 0.12216175643, 0.12253706136, 0.1229123663, 0.12328767123, 0.12366297617, 0.1240382811, 0.12441358604, 0.12478889097, 0.12553950084, 0.12629011072, 0.12666541565, 0.12779133046, 0.1292925502, 0.13004316007, 0.130418465, 0.13191968474, 0.13229498968, 0.13267029461, 0.13342090449, 0.13529742916, 0.13642334397, 0.1367986489, 0.13717395384, 0.13754925877, 0.13867517358, 0.14055169826, 0.14130230813, 0.14167761306, 0.142052918, 0.14355413774, 0.14392944267, 0.14468005254, 0.14618127228, 0.14730718709, 0.14768249203, 0.1484331019, 0.14918371177, 0.1495590167, 0.14993432164, 0.15030962657, 0.15068493151, 0.15106023644, 0.15143554138, 0.15181084631, 0.15218615125, 0.15293676112, 0.15368737099, 0.15406267592, 0.15518859073, 0.15668981047, 0.15744042034, 0.15781572528, 0.15931694502, 0.15969224995, 0.16006755489, 0.16081816476, 0.16269468944, 0.16382060424, 0.16419590918, 0.16457121411, 0.16494651905, 0.16607243385, 0.16794895853, 0.1686995684, 0.16907487334, 0.16945017827, 0.17095139801, 0.17132670295, 0.17207731282, 0.17357853256, 0.17470444736, 0.1750797523, 0.17583036217, 0.17658097204, 0.17695627698, 0.17733158191, 0.17770688685, 0.17808219178, 0.17845749672, 0.17883280165, 0.17920810659, 0.17958341152, 0.18033402139, 0.18108463126, 0.1814599362, 0.182585851, 0.18408707075, 0.18483768062, 0.18521298555, 0.18671420529, 0.18708951023, 0.18746481516, 0.18821542503, 0.19009194971, 0.19121786452, 0.19159316945, 0.19196847439, 0.19234377932, 0.19346969413, 0.1953462188, 0.19609682867, 0.19647213361, 0.19684743854, 0.19834865829, 0.19872396322, 0.19947457309, 0.20097579283, 0.20210170764, 0.20247701257, 0.20322762244, 0.20397823231, 0.20435353725, 0.20472884218, 0.20510414712, 0.20547945206, 0.20585475699, 0.20623006193, 0.20660536686, 0.2069806718, 0.20773128167, 0.20848189154, 0.20885719647, 0.20998311128, 0.21148433102, 0.21223494089, 0.21261024583, 0.21411146557, 0.2144867705, 0.21486207544, 0.21561268531, 0.21748920998, 0.21861512479, 0.21899042972, 0.21936573466, 0.2197410396, 0.2208669544, 0.22274347908, 0.22349408895, 0.22386939388, 0.22424469882, 0.22574591856, 0.22612122349, 0.22687183337, 0.22837305311, 0.22949896791, 0.22987427285, 0.23062488272, 0.23137549259, 0.23175079752, 0.23212610246, 0.23250140739, 0.23287671233, 0.23325201726, 0.2336273222, 0.23400262714, 0.23437793207, 0.23512854194, 0.23587915181, 0.23625445675, 0.23738037155, 0.23888159129, 0.23963220116, 0.2400075061, 0.24150872584, 0.24188403078, 0.24225933571, 0.24300994558, 0.24488647026, 0.24601238506, 0.24638769, 0.24676299493, 0.24713829987, 0.24826421467, 0.25014073935, 0.25089134922, 0.25126665416, 0.25164195909, 0.25314317883, 0.25351848377, 0.25426909364, 0.25577031338, 0.25689622819, 0.25727153312, 0.25802214299, 0.25877275286, 0.2591480578, 0.25952336273, 0.25989866767, 0.2602739726, 0.26064927754, 0.26102458247, 0.26139988741, 0.26177519234, 0.26252580221, 0.26327641209, 0.26365171702, 0.26477763183, 0.26627885157, 0.26702946144, 0.26740476637, 0.26890598611, 0.26928129105, 0.26965659598, 0.27040720586, 0.27228373053, 0.27340964534, 0.27378495027, 0.27416025521, 0.27453556014, 0.27566147495, 0.27753799963, 0.2782886095, 0.27866391443, 0.27903921937, 0.28054043911, 0.28091574404, 0.28166635391, 0.28316757365, 0.28429348846, 0.2846687934, 0.28541940327, 0.28617001314, 0.28654531807, 0.28692062301, 0.28729592794, 0.28767123288, 0.28804653781, 0.28842184275, 0.28879714768, 0.28917245262, 0.28992306249, 0.29067367236, 0.29104897729, 0.2921748921, 0.29367611184, 0.29442672171, 0.29480202665, 0.29630324639, 0.29667855132, 0.29705385626, 0.29780446613, 0.29968099081, 0.30080690561, 0.30118221055, 0.30155751548, 0.30193282042, 0.30305873522, 0.3049352599, 0.30568586977, 0.3060611747, 0.30643647964, 0.30793769938, 0.30831300432, 0.30906361419, 0.31056483393, 0.31169074873, 0.31206605367, 0.31281666354, 0.31356727341, 0.31394257835, 0.31431788328, 0.31469318822, 0.31506849315, 0.31544379809, 0.31581910302, 0.31619440796, 0.31656971289, 0.31732032276, 0.31807093263, 0.31844623757, 0.31957215237, 0.32107337212, 0.32182398199, 0.32219928692, 0.32370050666, 0.3240758116, 0.32445111653, 0.3252017264, 0.32707825108, 0.32820416589, 0.32857947082, 0.32895477576, 0.32933008069, 0.3304559955, 0.33233252017, 0.33308313004, 0.33345843498, 0.33383373991, 0.33533495966, 0.33571026459, 0.33646087446, 0.3379620942, 0.33908800901, 0.33946331394, 0.34021392381, 0.34096453368, 0.34133983862, 0.34171514355, 0.34209044849, 0.34246575343, 0.34284105836, 0.3432163633, 0.34359166823, 0.34396697317, 0.34471758304, 0.34546819291, 0.34584349784, 0.34696941265, 0.34847063239, 0.34922124226, 0.3495965472, 0.35109776694, 0.35147307187, 0.35184837681, 0.35259898668, 0.35447551135, 0.35560142616, 0.35597673109, 0.35635203603, 0.35672734097, 0.35785325577, 0.35972978045, 0.36048039032, 0.36085569525, 0.36123100019, 0.36273221993, 0.36310752486, 0.36385813473, 0.36535935448, 0.36648526928, 0.36686057422, 0.36761118409, 0.36836179396, 0.36873709889, 0.36911240383, 0.36948770876, 0.3698630137, 0.37023831863, 0.37061362357, 0.3709889285, 0.37136423344, 0.37211484331, 0.37286545318, 0.37324075812, 0.37436667292, 0.37586789266, 0.37661850253, 0.37699380747, 0.37849502721, 0.37887033215, 0.37924563708, 0.37999624695, 0.38187277163, 0.38299868643, 0.38337399137, 0.3837492963, 0.38412460124, 0.38525051604, 0.38712704072, 0.38787765059, 0.38825295553, 0.38862826046, 0.3901294802, 0.39050478514, 0.39125539501, 0.39275661475, 0.39388252956, 0.39425783449, 0.39500844436, 0.39575905423, 0.39613435917, 0.3965096641, 0.39688496904, 0.39726027397, 0.39763557891, 0.39801088384, 0.39838618878, 0.39876149371, 0.39951210358, 0.40026271346, 0.40063801839, 0.4017639332, 0.40326515294, 0.40401576281, 0.40439106774, 0.40589228748, 0.40626759242, 0.40664289735, 0.40739350723, 0.4092700319, 0.41039594671, 0.41077125164, 0.41114655658, 0.41152186151, 0.41264777632, 0.414524301, 0.41527491087, 0.4156502158, 0.41602552074, 0.41752674048, 0.41790204541, 0.41865265528, 0.42015387502, 0.42127978983, 0.42165509476, 0.42240570464, 0.42315631451, 0.42353161944, 0.42390692438, 0.42428222931, 0.42465753425, 0.42503283918, 0.42540814412, 0.42578344905, 0.42615875399, 0.42690936386, 0.42765997373, 0.42803527866, 0.42916119347, 0.43066241321, 0.43141302308, 0.43178832802, 0.43328954776, 0.43366485269, 0.43404015763, 0.4347907675, 0.43666729218, 0.43779320698, 0.43816851192, 0.43854381685, 0.43891912179, 0.44004503659, 0.44192156127, 0.44267217114, 0.44304747607, 0.44342278101, 0.44492400075, 0.44529930569, 0.44604991556, 0.4475511353, 0.4486770501, 0.44905235504, 0.44980296491, 0.45055357478, 0.45092887972, 0.45130418465, 0.45167948959, 0.45205479452, 0.45243009946, 0.45280540439, 0.45318070933, 0.45355601426, 0.45430662413, 0.455057234, 0.45543253894, 0.45655845374, 0.45805967349, 0.45881028336, 0.45918558829, 0.46068680803, 0.46106211297, 0.4614374179, 0.46218802777, 0.46406455245, 0.46519046726, 0.46556577219, 0.46594107713, 0.46631638206, 0.46744229687, 0.46931882154, 0.47006943141, 0.47044473635, 0.47082004128, 0.47232126103, 0.47269656596, 0.47344717583, 0.47494839557, 0.47607431038, 0.47644961531, 0.47720022518, 0.47795083505, 0.47832613999, 0.47870144492, 0.47907674986, 0.4794520548, 0.47982735973, 0.48020266467, 0.4805779696, 0.48095327454, 0.48170388441, 0.48245449428, 0.48282979921, 0.48395571402, 0.48545693376, 0.48620754363, 0.48658284856, 0.48808406831, 0.48845937324, 0.48883467818, 0.48958528805, 0.49146181272, 0.49258772753, 0.49296303246, 0.4933383374, 0.49371364233, 0.49483955714, 0.49671608182, 0.49746669169, 0.49784199662, 0.49821730156, 0.4997185213, 0.50009382623, 0.5008444361, 0.50234565585, 0.50347157065, 0.50384687559, 0.50459748546, 0.50534809533, 0.50572340026, 0.5060987052, 0.50647401013, 0.50684931507, 0.50722462, 0.50759992494, 0.50797522987, 0.50835053481, 0.50910114468, 0.50985175455, 0.51022705949, 0.51135297429, 0.51285419403, 0.5136048039, 0.51398010884, 0.51548132858, 0.51585663352, 0.51623193845, 0.51698254832, 0.518859073, 0.5199849878, 0.52036029274, 0.52073559767, 0.52111090261, 0.52223681741, 0.52411334209, 0.52486395196, 0.5252392569, 0.52561456183, 0.52711578157, 0.52749108651, 0.52824169638, 0.52974291612, 0.53086883093, 0.53124413586, 0.53199474573, 0.5327453556, 0.53312066054, 0.53349596547, 0.53387127041, 0.53424657534, 0.53462188028, 0.53499718521, 0.53537249015, 0.53574779508, 0.53649840495, 0.53724901483, 0.53762431976, 0.53875023457, 0.54025145431, 0.54100206418, 0.54137736911, 0.54287858885, 0.54325389379, 0.54362919872, 0.54437980859, 0.54625633327, 0.54738224808, 0.54775755301, 0.54813285795, 0.54850816288, 0.54963407769, 0.55151060236, 0.55226121224, 0.55263651717, 0.55301182211, 0.55451304185, 0.55488834678, 0.55563895665, 0.55714017639, 0.5582660912, 0.55864139613, 0.55939200601, 0.56014261588, 0.56051792081, 0.56089322575, 0.56126853068, 0.56164383562, 0.56201914055, 0.56239444549, 0.56276975042, 0.56314505536, 0.56389566523, 0.5646462751, 0.56502158003, 0.56614749484, 0.56764871458, 0.56839932445, 0.56877462939, 0.57027584913, 0.57065115406, 0.571026459, 0.57177706887, 0.57365359355, 0.57477950835, 0.57515481329, 0.57553011822, 0.57590542316, 0.57703133796, 0.57890786264, 0.57965847251, 0.58003377744, 0.58040908238, 0.58191030212, 0.58228560706, 0.58303621693, 0.58453743667, 0.58566335147, 0.58603865641, 0.58678926628, 0.58753987615, 0.58791518109, 0.58829048602, 0.58866579096, 0.58904109589, 0.58941640083, 0.58979170576, 0.5901670107, 0.59054231563, 0.5912929255, 0.59204353537, 0.59241884031, 0.59354475511, 0.59504597486, 0.59579658473, 0.59617188966, 0.5976731094, 0.59804841434, 0.59842371927, 0.59917432914, 0.60105085382, 0.60217676863, 0.60255207356, 0.6029273785, 0.60330268343, 0.60442859824, 0.60630512291, 0.60705573278, 0.60743103772, 0.60780634265, 0.60930756239, 0.60968286733, 0.6104334772, 0.61193469694, 0.61306061175, 0.61343591668, 0.61418652655, 0.61493713642, 0.61531244136, 0.61568774629, 0.61606305123, 0.61643835616, 0.6168136611, 0.61718896604, 0.61756427097, 0.61793957591, 0.61869018578, 0.61944079565, 0.61981610058, 0.62094201539, 0.62244323513, 0.623193845, 0.62356914993, 0.62507036968, 0.62544567461, 0.62582097955, 0.62657158942, 0.62844811409, 0.6295740289, 0.62994933383, 0.63032463877, 0.6306999437, 0.63182585851, 0.63370238319, 0.63445299306, 0.63482829799, 0.63520360293, 0.63670482267, 0.6370801276, 0.63783073747, 0.63933195722, 0.64045787202, 0.64083317696, 0.64158378683, 0.6423343967, 0.64270970163, 0.64308500657, 0.6434603115, 0.64383561644, 0.64421092137, 0.64458622631, 0.64496153124, 0.64533683618, 0.64608744605, 0.64683805592, 0.64721336086, 0.64833927566, 0.6498404954, 0.65059110527, 0.65096641021, 0.65246762995, 0.65284293489, 0.65321823982, 0.65396884969, 0.65584537437, 0.65697128917, 0.65734659411, 0.65772189904, 0.65809720398, 0.65922311878, 0.66109964346, 0.66185025333, 0.66222555827, 0.6626008632, 0.66410208294, 0.66447738788, 0.66522799775, 0.66672921749, 0.6678551323, 0.66823043723, 0.6689810471, 0.66973165697, 0.67010696191, 0.67048226684, 0.67085757178, 0.67123287671, 0.67160818165, 0.67198348658, 0.67235879152, 0.67273409645, 0.67348470632, 0.67423531619, 0.67461062113, 0.67573653594, 0.67723775568, 0.67798836555, 0.67836367048, 0.67986489022, 0.68024019516, 0.68061550009, 0.68136610996, 0.68324263464, 0.68436854945, 0.68474385438, 0.68511915932, 0.68549446425, 0.68662037906, 0.68849690373, 0.68924751361, 0.68962281854, 0.68999812348, 0.69149934322, 0.69187464815, 0.69262525802, 0.69412647776, 0.69525239257, 0.6956276975, 0.69637830738, 0.69712891725, 0.69750422218, 0.69787952712, 0.69825483205, 0.69863013699, 0.69900544192, 0.69938074686, 0.69975605179, 0.70013135673, 0.7008819666, 0.70163257647, 0.7020078814, 0.70313379621, 0.70463501595, 0.70538562582, 0.70576093076, 0.7072621505, 0.70763745543, 0.70801276037, 0.70876337024, 0.71063989492, 0.71176580972, 0.71214111466, 0.71251641959, 0.71289172453, 0.71401763933, 0.71589416401, 0.71664477388, 0.71702007881, 0.71739538375, 0.71889660349, 0.71927190843, 0.7200225183, 0.72152373804, 0.72264965284, 0.72302495778, 0.72377556765, 0.72452617752, 0.72490148245, 0.72527678739, 0.72565209233, 0.72602739726, 0.7264027022, 0.72677800713, 0.72715331207, 0.727528617, 0.72827922687, 0.72902983674, 0.72940514168, 0.73053105648, 0.73203227622, 0.7327828861, 0.73315819103, 0.73465941077, 0.73503471571, 0.73541002064, 0.73616063051, 0.73803715519, 0.73916306999, 0.73953837493, 0.73991367987, 0.7402889848, 0.74141489961, 0.74329142428, 0.74404203415, 0.74441733909, 0.74479264402, 0.74629386376, 0.7466691687, 0.74741977857, 0.74892099831, 0.75004691312, 0.75042221805, 0.75117282792, 0.75192343779, 0.75229874273, 0.75267404766, 0.7530493526, 0.75342465753, 0.75379996247, 0.75417526741, 0.75455057234, 0.75492587728, 0.75567648715, 0.75642709702, 0.75680240195, 0.75792831676, 0.7594295365, 0.76018014637, 0.7605554513, 0.76205667105, 0.76243197598, 0.76280728092, 0.76355789079, 0.76543441546, 0.76656033027, 0.7669356352, 0.76731094014, 0.76768624507, 0.76881215988, 0.77068868456, 0.77143929443, 0.77181459936, 0.7721899043, 0.77369112404, 0.77406642897, 0.77481703884, 0.77631825859, 0.77744417339, 0.77781947833, 0.7785700882, 0.77932069807, 0.779696003, 0.78007130794, 0.78044661287, 0.78082191781, 0.78119722274, 0.78157252768, 0.78194783261, 0.78232313755, 0.78307374742, 0.78382435729, 0.78419966223, 0.78532557703, 0.78682679677, 0.78757740664, 0.78795271158, 0.78945393132, 0.78982923625, 0.79020454119, 0.79095515106, 0.79283167574, 0.79395759054, 0.79433289548, 0.79470820041, 0.79508350535, 0.79620942015, 0.79808594483, 0.7988365547, 0.79921185964, 0.79958716457, 0.80108838431, 0.80146368925, 0.80221429912, 0.80371551886, 0.80484143367, 0.8052167386, 0.80596734847, 0.80671795834, 0.80709326328, 0.80746856821, 0.80784387315, 0.80821917808, 0.80859448302, 0.80896978795, 0.80934509289, 0.80972039782, 0.81047100769, 0.81122161756, 0.8115969225, 0.81272283731, 0.81422405705, 0.81497466692, 0.81534997185, 0.81685119159, 0.81722649653, 0.81760180146, 0.81835241133, 0.82022893601, 0.82135485082, 0.82173015575, 0.82210546069, 0.82248076562, 0.82360668043, 0.8254832051, 0.82623381498, 0.82660911991, 0.82698442485, 0.82848564459, 0.82886094952, 0.82961155939, 0.83111277913, 0.83223869394, 0.83261399887, 0.83336460875, 0.83411521862, 0.83449052355, 0.83486582849, 0.83524113342, 0.83561643836, 0.83599174329, 0.83636704823, 0.83674235316, 0.8371176581, 0.83786826797, 0.83861887784, 0.83899418277, 0.84012009758, 0.84162131732, 0.84237192719, 0.84274723213, 0.84424845187, 0.8446237568, 0.84499906174, 0.84574967161, 0.84762619628, 0.84875211109, 0.84912741603, 0.84950272096, 0.8498780259, 0.8510039407, 0.85288046538, 0.85363107525, 0.85400638018, 0.85438168512, 0.85588290486, 0.8562582098, 0.85700881967, 0.85851003941, 0.85963595421, 0.86001125915, 0.86076186902, 0.86151247889, 0.86188778382, 0.86226308876, 0.8626383937, 0.86301369863, 0.86338900357, 0.8637643085, 0.86413961344, 0.86451491837, 0.86526552824, 0.86601613811, 0.86639144305, 0.86751735785, 0.86901857759, 0.86976918747, 0.8701444924, 0.87164571214, 0.87202101708, 0.87239632201, 0.87314693188, 0.87502345656, 0.87614937136, 0.8765246763, 0.87689998124, 0.87727528617, 0.87840120098, 0.88027772565, 0.88102833552, 0.88140364046, 0.88177894539, 0.88328016513, 0.88365547007, 0.88440607994, 0.88590729968, 0.88703321449, 0.88740851942, 0.88815912929, 0.88890973916, 0.8892850441, 0.88966034903, 0.89003565397, 0.8904109589, 0.89078626384, 0.89116156878, 0.89153687371, 0.89191217865, 0.89266278852, 0.89341339839, 0.89378870332, 0.89491461813, 0.89641583787, 0.89716644774, 0.89754175267, 0.89904297242, 0.89941827735, 0.89979358229, 0.90054419216, 0.90242071683, 0.90354663164, 0.90392193657, 0.90429724151, 0.90467254644, 0.90579846125, 0.90767498593, 0.9084255958, 0.90880090073, 0.90917620567, 0.91067742541, 0.91105273034, 0.91180334021, 0.91330455996, 0.91443047476, 0.9148057797, 0.91555638957, 0.91630699944, 0.91668230437, 0.91705760931, 0.91743291424, 0.91780821918, 0.91818352411, 0.91855882905, 0.91893413398, 0.91930943892, 0.92006004879, 0.92081065866, 0.9211859636, 0.9223118784, 0.92381309814, 0.92456370801, 0.92493901295, 0.92644023269, 0.92681553762, 0.92719084256, 0.92794145243, 0.92981797711, 0.93094389191, 0.93131919685, 0.93169450178, 0.93206980672, 0.93319572152, 0.9350722462, 0.93582285607, 0.93619816101, 0.93657346594, 0.93807468568, 0.93844999062, 0.93920060049, 0.94070182023, 0.94182773504, 0.94220303997, 0.94295364984, 0.94370425971, 0.94407956465, 0.94445486958, 0.94483017452, 0.94520547945, 0.94558078439, 0.94595608932, 0.94633139426, 0.94670669919, 0.94745730906, 0.94820791893, 0.94858322387, 0.94970913868, 0.95121035842, 0.95196096829, 0.95233627322, 0.95383749296, 0.9542127979, 0.95458810283, 0.9553387127, 0.95721523738, 0.95834115219, 0.95871645712, 0.95909176206, 0.95946706699, 0.9605929818, 0.96246950647, 0.96322011635, 0.96359542128, 0.96397072622, 0.96547194596, 0.96584725089, 0.96659786076, 0.9680990805, 0.96922499531, 0.96960030024, 0.97035091011, 0.97110151999, 0.97147682492, 0.97185212986, 0.97222743479, 0.97260273973, 0.97297804466, 0.9733533496, 0.97372865453, 0.97410395947, 0.97485456934, 0.97560517921, 0.97598048414, 0.97710639895, 0.97860761869, 0.97935822856, 0.9797335335, 0.98123475324, 0.98161005817, 0.98198536311, 0.98273597298, 0.98461249765, 0.98573841246, 0.9861137174, 0.98648902233, 0.98686432727, 0.98799024207, 0.98986676675, 0.99061737662, 0.99099268155, 0.99136798649, 0.99286920623, 0.99324451117, 0.99399512104, 0.99549634078, 0.99662225558, 0.99699756052, 0.99774817039, 0.99849878026, 0.99887408519, 0.99924939013, 0.99962469507]
pattern_even = [0.0, 0.0003753049, 0.0007506099, 0.0011259148, 0.0015012197, 0.0022518296, 0.0030024395, 0.0033777444, 0.0045036592, 0.006004879, 0.0067554888, 0.0071307938, 0.0086320135, 0.0090073184, 0.0093826234, 0.0101332333, 0.0120097579, 0.0131356727, 0.0135109777, 0.0138862826, 0.0142615875, 0.0153875023, 0.017264027, 0.0180146369, 0.0183899418, 0.0187652468, 0.0202664665, 0.0206417714, 0.0213923813, 0.0228936011, 0.0240195159, 0.0243948208, 0.0251454307, 0.0258960405, 0.0262713455, 0.0266466504, 0.0270219553, 0.0273972603, 0.0277725652, 0.0281478701, 0.0285231751, 0.02889848, 0.0296490899, 0.0303996998, 0.0307750047, 0.0319009195, 0.0334021392, 0.0341527491, 0.034528054, 0.0360292738, 0.0364045787, 0.0367798837, 0.0375304935, 0.0394070182, 0.040532933, 0.0409082379, 0.0412835429, 0.0416588478, 0.0427847626, 0.0446612873, 0.0454118972, 0.0457872021, 0.046162507, 0.0476637268, 0.0480390317, 0.0487896416, 0.0502908613, 0.0514167761, 0.0517920811, 0.0525426909, 0.0532933008, 0.0536686057, 0.0540439107, 0.0544192156, 0.0547945205, 0.0551698255, 0.0555451304, 0.0559204354, 0.0562957403, 0.0570463502, 0.05779696, 0.058172265, 0.0592981798, 0.0607993995, 0.0615500094, 0.0619253143, 0.0634265341, 0.063801839, 0.0641771439, 0.0649277538, 0.0668042785, 0.0679301933, 0.0683054982, 0.0686808032, 0.0690561081, 0.0701820229, 0.0720585476, 0.0728091574, 0.0731844624, 0.0735597673, 0.0750609871, 0.075436292, 0.0761869019, 0.0776881216, 0.0788140364, 0.0791893413, 0.0799399512, 0.0806905611, 0.081065866, 0.081441171, 0.0818164759, 0.0821917808, 0.0825670858, 0.0829423907, 0.0833176956, 0.0836930006, 0.0844436104, 0.0851942203, 0.0855695252, 0.08669544, 0.0881966598, 0.0889472697, 0.0893225746, 0.0908237943, 0.0911990993, 0.0915744042, 0.0923250141, 0.0942015388, 0.0953274536, 0.0957027585, 0.0960780634, 0.0964533684, 0.0975792832, 0.0994558078, 0.1002064177, 0.1005817227, 0.1009570276, 0.1024582473, 0.1028335523, 0.1035841621, 0.1050853819, 0.1062112967, 0.1065866016, 0.1073372115, 0.1080878214, 0.1084631263, 0.1088384312, 0.1092137362, 0.1095890411, 0.109964346, 0.110339651, 0.1107149559, 0.1110902608, 0.1118408707, 0.1125914806, 0.1129667855, 0.1140927003, 0.1155939201, 0.1163445299, 0.1167198349, 0.1182210546, 0.1185963595, 0.1189716645, 0.1197222743, 0.121598799, 0.1227247138, 0.1231000188, 0.1234753237, 0.1238506286, 0.1249765434, 0.1268530681, 0.127603678, 0.1279789829, 0.1283542879, 0.1298555076, 0.1302308125, 0.1309814224, 0.1324826421, 0.133608557, 0.1339838619, 0.1347344718, 0.1354850816, 0.1358603866, 0.1362356915, 0.1366109964, 0.1369863014, 0.1373616063, 0.1377369112, 0.1381122162, 0.1384875211, 0.139238131, 0.1399887409, 0.1403640458, 0.1414899606, 0.1429911803, 0.1437417902, 0.1441170951, 0.1456183149, 0.1459936198, 0.1463689248, 0.1471195346, 0.1489960593, 0.1501219741, 0.150497279, 0.150872584, 0.1512478889, 0.1523738037, 0.1542503284, 0.1550009383, 0.1553762432, 0.1557515481, 0.1572527679, 0.1576280728, 0.1583786827, 0.1598799024, 0.1610058172, 0.1613811222, 0.162131732, 0.1628823419, 0.1632576468, 0.1636329518, 0.1640082567, 0.1643835616, 0.1647588666, 0.1651341715, 0.1655094765, 0.1658847814, 0.1666353913, 0.1673860011, 0.1677613061, 0.1688872209, 0.1703884406, 0.1711390505, 0.1715143554, 0.1730155752, 0.1733908801, 0.173766185, 0.1745167949, 0.1763933196, 0.1775192344, 0.1778945393, 0.1782698442, 0.1786451492, 0.179771064, 0.1816475887, 0.1823981985, 0.1827735035, 0.1831488084, 0.1846500281, 0.1850253331, 0.185775943, 0.1872771627, 0.1884030775, 0.1887783824, 0.1895289923, 0.1902796022, 0.1906549071, 0.191030212, 0.191405517, 0.1917808219, 0.1921561269, 0.1925314318, 0.1929067367, 0.1932820417, 0.1940326515, 0.1947832614, 0.1951585663, 0.1962844811, 0.1977857009, 0.1985363108, 0.1989116157, 0.2004128354, 0.2007881404, 0.2011634453, 0.2019140552, 0.2037905798, 0.2049164947, 0.2052917996, 0.2056671045, 0.2060424095, 0.2071683243, 0.2090448489, 0.2097954588, 0.2101707637, 0.2105460687, 0.2120472884, 0.2124225934, 0.2131732032, 0.214674423, 0.2158003378, 0.2161756427, 0.2169262526, 0.2176768625, 0.2180521674, 0.2184274723, 0.2188027773, 0.2191780822, 0.2195533871, 0.2199286921, 0.220303997, 0.2206793019, 0.2214299118, 0.2221805217, 0.2225558266, 0.2236817414, 0.2251829612, 0.225933571, 0.226308876, 0.2278100957, 0.2281854006, 0.2285607056, 0.2293113154, 0.2311878401, 0.2323137549, 0.2326890599, 0.2330643648, 0.2334396697, 0.2345655845, 0.2364421092, 0.2371927191, 0.237568024, 0.237943329, 0.2394445487, 0.2398198536, 0.2405704635, 0.2420716832, 0.243197598, 0.243572903, 0.2443235129, 0.2450741227, 0.2454494277, 0.2458247326, 0.2462000375, 0.2465753425, 0.2469506474, 0.2473259523, 0.2477012573, 0.2480765622, 0.2488271721, 0.2495777819, 0.2499530869, 0.2510790017, 0.2525802214, 0.2533308313, 0.2537061362, 0.255207356, 0.2555826609, 0.2559579658, 0.2567085757, 0.2585851004, 0.2597110152, 0.2600863201, 0.2604616251, 0.26083693, 0.2619628448, 0.2638393695, 0.2645899794, 0.2649652843, 0.2653405892, 0.266841809, 0.2672171139, 0.2679677238, 0.2694689435, 0.2705948583, 0.2709701633, 0.2717207731, 0.272471383, 0.2728466879, 0.2732219929, 0.2735972978, 0.2739726027, 0.2743479077, 0.2747232126, 0.2750985175, 0.2754738225, 0.2762244324, 0.2769750422, 0.2773503472, 0.278476262, 0.2799774817, 0.2807280916, 0.2811033965, 0.2826046163, 0.2829799212, 0.2833552261, 0.284105836, 0.2859823607, 0.2871082755, 0.2874835804, 0.2878588853, 0.2882341903, 0.2893601051, 0.2912366298, 0.2919872396, 0.2923625446, 0.2927378495, 0.2942390692, 0.2946143742, 0.2953649841, 0.2968662038, 0.2979921186, 0.2983674235, 0.2991180334, 0.2998686433, 0.3002439482, 0.3006192531, 0.3009945581, 0.301369863, 0.3017451679, 0.3021204729, 0.3024957778, 0.3028710828, 0.3036216926, 0.3043723025, 0.3047476074, 0.3058735222, 0.307374742, 0.3081253518, 0.3085006568, 0.3100018765, 0.3103771815, 0.3107524864, 0.3115030963, 0.3133796209, 0.3145055357, 0.3148808407, 0.3152561456, 0.3156314506, 0.3167573654, 0.31863389, 0.3193844999, 0.3197598048, 0.3201351098, 0.3216363295, 0.3220116345, 0.3227622443, 0.3242634641, 0.3253893789, 0.3257646838, 0.3265152937, 0.3272659035, 0.3276412085, 0.3280165134, 0.3283918184, 0.3287671233, 0.3291424282, 0.3295177332, 0.3298930381, 0.330268343, 0.3310189529, 0.3317695628, 0.3321448677, 0.3332707825, 0.3347720023, 0.3355226121, 0.3358979171, 0.3373991368, 0.3377744417, 0.3381497467, 0.3389003565, 0.3407768812, 0.341902796, 0.342278101, 0.3426534059, 0.3430287108, 0.3441546256, 0.3460311503, 0.3467817602, 0.3471570651, 0.3475323701, 0.3490335898, 0.3494088947, 0.3501595046, 0.3516607243, 0.3527866391, 0.3531619441, 0.353912554, 0.3546631638, 0.3550384688, 0.3554137737, 0.3557890786, 0.3561643836, 0.3565396885, 0.3569149934, 0.3572902984, 0.3576656033, 0.3584162132, 0.359166823, 0.359542128, 0.3606680428, 0.3621692625, 0.3629198724, 0.3632951773, 0.3647963971, 0.365171702, 0.3655470069, 0.3662976168, 0.3681741415, 0.3693000563, 0.3696753612, 0.3700506662, 0.3704259711, 0.3715518859, 0.3734284106, 0.3741790205, 0.3745543254, 0.3749296303, 0.3764308501, 0.376806155, 0.3775567649, 0.3790579846, 0.3801838994, 0.3805592044, 0.3813098142, 0.3820604241, 0.382435729, 0.382811034, 0.3831863389, 0.3835616438, 0.3839369488, 0.3843122537, 0.3846875586, 0.3850628636, 0.3858134734, 0.3865640833, 0.3869393883, 0.3880653031, 0.3895665228, 0.3903171327, 0.3906924376, 0.3921936573, 0.3925689623, 0.3929442672, 0.3936948771, 0.3955714018, 0.3966973166, 0.3970726215, 0.3974479264, 0.3978232314, 0.3989491462, 0.4008256709, 0.4015762807, 0.4019515857, 0.4023268906, 0.4038281103, 0.4042034153, 0.4049540251, 0.4064552449, 0.4075811597, 0.4079564646, 0.4087070745, 0.4094576844, 0.4098329893, 0.4102082942, 0.4105835992, 0.4109589041, 0.411334209, 0.411709514, 0.4120848189, 0.4124601239, 0.4132107337, 0.4139613436, 0.4143366485, 0.4154625633, 0.4169637831, 0.4177143929, 0.4180896979, 0.4195909176, 0.4199662226, 0.4203415275, 0.4210921374, 0.422968662, 0.4240945768, 0.4244698818, 0.4248451867, 0.4252204916, 0.4263464065, 0.4282229311, 0.428973541, 0.4293488459, 0.4297241509, 0.4312253706, 0.4316006755, 0.4323512854, 0.4338525052, 0.43497842, 0.4353537249, 0.4361043348, 0.4368549446, 0.4372302496, 0.4376055545, 0.4379808594, 0.4383561644, 0.4387314693, 0.4391067743, 0.4394820792, 0.4398573841, 0.440607994, 0.4413586039, 0.4417339088, 0.4428598236, 0.4443610433, 0.4451116532, 0.4454869582, 0.4469881779, 0.4473634828, 0.4477387878, 0.4484893976, 0.4503659223, 0.4514918371, 0.4518671421, 0.452242447, 0.4526177519, 0.4537436667, 0.4556201914, 0.4563708013, 0.4567461062, 0.4571214111, 0.4586226309, 0.4589979358, 0.4597485457, 0.4612497654, 0.4623756802, 0.4627509852, 0.463501595, 0.4642522049, 0.4646275099, 0.4650028148, 0.4653781197, 0.4657534247, 0.4661287296, 0.4665040345, 0.4668793395, 0.4672546444, 0.4680052543, 0.4687558641, 0.4691311691, 0.4702570839, 0.4717583036, 0.4725089135, 0.4728842184, 0.4743854382, 0.4747607431, 0.475136048, 0.4758866579, 0.4777631826, 0.4788890974, 0.4792644023, 0.4796397073, 0.4800150122, 0.481140927, 0.4830174517, 0.4837680616, 0.4841433665, 0.4845186714, 0.4860198912, 0.4863951961, 0.487145806, 0.4886470257, 0.4897729405, 0.4901482454, 0.4908988553, 0.4916494652, 0.4920247701, 0.4924000751, 0.49277538, 0.4931506849, 0.4935259899, 0.4939012948, 0.4942765997, 0.4946519047, 0.4954025145, 0.4961531244, 0.4965284293, 0.4976543442, 0.4991555639, 0.4999061738, 0.5002814787, 0.5017826984, 0.5021580034, 0.5025333083, 0.5032839182, 0.5051604429, 0.5062863577, 0.5066616626, 0.5070369675, 0.5074122725, 0.5085381873, 0.510414712, 0.5111653218, 0.5115406268, 0.5119159317, 0.5134171514, 0.5137924564, 0.5145430662, 0.516044286, 0.5171702008, 0.5175455057, 0.5182961156, 0.5190467255, 0.5194220304, 0.5197973353, 0.5201726403, 0.5205479452, 0.5209232501, 0.5212985551, 0.52167386, 0.5220491649, 0.5227997748, 0.5235503847, 0.5239256896, 0.5250516044, 0.5265528242, 0.527303434, 0.527678739, 0.5291799587, 0.5295552637, 0.5299305686, 0.5306811785, 0.5325577031, 0.5336836179, 0.5340589229, 0.5344342278, 0.5348095327, 0.5359354476, 0.5378119722, 0.5385625821, 0.538937887, 0.539313192, 0.5408144117, 0.5411897166, 0.5419403265, 0.5434415463, 0.5445674611, 0.544942766, 0.5456933759, 0.5464439857, 0.5468192907, 0.5471945956, 0.5475699005, 0.5479452055, 0.5483205104, 0.5486958154, 0.5490711203, 0.5494464252, 0.5501970351, 0.550947645, 0.5513229499, 0.5524488647, 0.5539500844, 0.5547006943, 0.5550759992, 0.556577219, 0.5569525239, 0.5573278289, 0.5580784387, 0.5599549634, 0.5610808782, 0.5614561831, 0.5618314881, 0.562206793, 0.5633327078, 0.5652092325, 0.5659598424, 0.5663351473, 0.5667104522, 0.568211672, 0.5685869769, 0.5693375868, 0.5708388065, 0.5719647213, 0.5723400263, 0.5730906361, 0.573841246, 0.5742165509, 0.5745918559, 0.5749671608, 0.5753424658, 0.5757177707, 0.5760930756, 0.5764683806, 0.5768436855, 0.5775942954, 0.5783449052, 0.5787202102, 0.579846125, 0.5813473447, 0.5820979546, 0.5824732595, 0.5839744793, 0.5843497842, 0.5847250891, 0.585475699, 0.5873522237, 0.5884781385, 0.5888534434, 0.5892287484, 0.5896040533, 0.5907299681, 0.5926064928, 0.5933571026, 0.5937324076, 0.5941077125, 0.5956089323, 0.5959842372, 0.5967348471, 0.5982360668, 0.5993619816, 0.5997372865, 0.6004878964, 0.6012385063, 0.6016138112, 0.6019891162, 0.6023644211, 0.602739726, 0.603115031, 0.6034903359, 0.6038656408, 0.6042409458, 0.6049915556, 0.6057421655, 0.6061174704, 0.6072433853, 0.608744605, 0.6094952149, 0.6098705198, 0.6113717395, 0.6117470445, 0.6121223494, 0.6128729593, 0.614749484, 0.6158753988, 0.6162507037, 0.6166260086, 0.6170013136, 0.6181272284, 0.620003753, 0.6207543629, 0.6211296679, 0.6215049728, 0.6230061925, 0.6233814975, 0.6241321073, 0.6256333271, 0.6267592419, 0.6271345468, 0.6278851567, 0.6286357666, 0.6290110715, 0.6293863764, 0.6297616814, 0.6301369863, 0.6305122912, 0.6308875962, 0.6312629011, 0.631638206, 0.6323888159, 0.6331394258, 0.6335147307, 0.6346406455, 0.6361418653, 0.6368924751, 0.6372677801, 0.6387689998, 0.6391443047, 0.6395196097, 0.6402702196, 0.6421467442, 0.643272659, 0.643647964, 0.6440232689, 0.6443985738, 0.6455244886, 0.6474010133, 0.6481516232, 0.6485269281, 0.6489022331, 0.6504034528, 0.6507787577, 0.6515293676, 0.6530305874, 0.6541565022, 0.6545318071, 0.655282417, 0.6560330268, 0.6564083318, 0.6567836367, 0.6571589416, 0.6575342466, 0.6579095515, 0.6582848564, 0.6586601614, 0.6590354663, 0.6597860762, 0.6605366861, 0.660911991, 0.6620379058, 0.6635391255, 0.6642897354, 0.6646650403, 0.6661662601, 0.666541565, 0.66691687, 0.6676674798, 0.6695440045, 0.6706699193, 0.6710452242, 0.6714205292, 0.6717958341, 0.6729217489, 0.6747982736, 0.6755488835, 0.6759241884, 0.6762994933, 0.6778007131, 0.678176018, 0.6789266279, 0.6804278476, 0.6815537624, 0.6819290674, 0.6826796772, 0.6834302871, 0.683805592, 0.684180897, 0.6845562019, 0.6849315068, 0.6853068118, 0.6856821167, 0.6860574217, 0.6864327266, 0.6871833365, 0.6879339463, 0.6883092513, 0.6894351661, 0.6909363858, 0.6916869957, 0.6920623006, 0.6935635204, 0.6939388253, 0.6943141302, 0.6950647401, 0.6969412648, 0.6980671796, 0.6984424845, 0.6988177895, 0.6991930944, 0.7003190092, 0.7021955339, 0.7029461437, 0.7033214487, 0.7036967536, 0.7051979734, 0.7055732783, 0.7063238882, 0.7078251079, 0.7089510227, 0.7093263276, 0.7100769375, 0.7108275474, 0.7112028523, 0.7115781573, 0.7119534622, 0.7123287671, 0.7127040721, 0.713079377, 0.7134546819, 0.7138299869, 0.7145805967, 0.7153312066, 0.7157065115, 0.7168324263, 0.7183336461, 0.719084256, 0.7194595609, 0.7209607806, 0.7213360856, 0.7217113905, 0.7224620004, 0.7243385251, 0.7254644399, 0.7258397448, 0.7262150497, 0.7265903547, 0.7277162695, 0.7295927941, 0.730343404, 0.730718709, 0.7310940139, 0.7325952336, 0.7329705386, 0.7337211484, 0.7352223682, 0.736348283, 0.7367235879, 0.7374741978, 0.7382248077, 0.7386001126, 0.7389754175, 0.7393507225, 0.7397260274, 0.7401013323, 0.7404766373, 0.7408519422, 0.7412272471, 0.741977857, 0.7427284669, 0.7431037718, 0.7442296866, 0.7457309064, 0.7464815162, 0.7468568212, 0.7483580409, 0.7487333458, 0.7491086508, 0.7498592606, 0.7517357853, 0.7528617001, 0.7532370051, 0.75361231, 0.7539876149, 0.7551135297, 0.7569900544, 0.7577406643, 0.7581159692, 0.7584912742, 0.7599924939, 0.7603677988, 0.7611184087, 0.7626196284, 0.7637455433, 0.7641208482, 0.7648714581, 0.7656220679, 0.7659973729, 0.7663726778, 0.7667479827, 0.7671232877, 0.7674985926, 0.7678738975, 0.7682492025, 0.7686245074, 0.7693751173, 0.7701257272, 0.7705010321, 0.7716269469, 0.7731281666, 0.7738787765, 0.7742540814, 0.7757553012, 0.7761306061, 0.7765059111, 0.7772565209, 0.7791330456, 0.7802589604, 0.7806342653, 0.7810095703, 0.7813848752, 0.78251079, 0.7843873147, 0.7851379246, 0.7855132295, 0.7858885344, 0.7873897542, 0.7877650591, 0.788515669, 0.7900168887, 0.7911428035, 0.7915181085, 0.7922687183, 0.7930193282, 0.7933946331, 0.7937699381, 0.794145243, 0.7945205479, 0.7948958529, 0.7952711578, 0.7956464628, 0.7960217677, 0.7967723776, 0.7975229874, 0.7978982924, 0.7990242072, 0.8005254269, 0.8012760368, 0.8016513417, 0.8031525615, 0.8035278664, 0.8039031713, 0.8046537812, 0.8065303059, 0.8076562207, 0.8080315256, 0.8084068306, 0.8087821355, 0.8099080503, 0.811784575, 0.8125351848, 0.8129104898, 0.8132857947, 0.8147870144, 0.8151623194, 0.8159129293, 0.817414149, 0.8185400638, 0.8189153687, 0.8196659786, 0.8204165885, 0.8207918934, 0.8211671983, 0.8215425033, 0.8219178082, 0.8222931132, 0.8226684181, 0.823043723, 0.823419028, 0.8241696378, 0.8249202477, 0.8252955526, 0.8264214674, 0.8279226872, 0.8286732971, 0.829048602, 0.8305498217, 0.8309251267, 0.8313004316, 0.8320510415, 0.8339275661, 0.835053481, 0.8354287859, 0.8358040908, 0.8361793958, 0.8373053106, 0.8391818352, 0.8399324451, 0.84030775, 0.840683055, 0.8421842747, 0.8425595797, 0.8433101895, 0.8448114093, 0.8459373241, 0.846312629, 0.8470632389, 0.8478138488, 0.8481891537, 0.8485644586, 0.8489397636, 0.8493150685, 0.8496903734, 0.8500656784, 0.8504409833, 0.8508162882, 0.8515668981, 0.852317508, 0.8526928129, 0.8538187277, 0.8553199475, 0.8560705573, 0.8564458623, 0.857947082, 0.8583223869, 0.8586976919, 0.8594483017, 0.8613248264, 0.8624507412, 0.8628260462, 0.8632013511, 0.863576656, 0.8647025708, 0.8665790955, 0.8673297054, 0.8677050103, 0.8680803153, 0.869581535, 0.8699568399, 0.8707074498, 0.8722086695, 0.8733345844, 0.8737098893, 0.8744604992, 0.875211109, 0.875586414, 0.8759617189, 0.8763370238, 0.8767123288, 0.8770876337, 0.8774629386, 0.8778382436, 0.8782135485, 0.8789641584, 0.8797147682, 0.8800900732, 0.881215988, 0.8827172077, 0.8834678176, 0.8838431225, 0.8853443423, 0.8857196472, 0.8860949521, 0.886845562, 0.8887220867, 0.8898480015, 0.8902233064, 0.8905986114, 0.8909739163, 0.8920998311, 0.8939763558, 0.8947269657, 0.8951022706, 0.8954775755, 0.8969787953, 0.8973541002, 0.8981047101, 0.8996059298, 0.9007318446, 0.9011071496, 0.9018577594, 0.9026083693, 0.9029836742, 0.9033589792, 0.9037342841, 0.904109589, 0.904484894, 0.9048601989, 0.9052355038, 0.9056108088, 0.9063614187, 0.9071120285, 0.9074873335, 0.9086132483, 0.910114468, 0.9108650779, 0.9112403828, 0.9127416026, 0.9131169075, 0.9134922124, 0.9142428223, 0.916119347, 0.9172452618, 0.9176205667, 0.9179958716, 0.9183711766, 0.9194970914, 0.9213736161, 0.9221242259, 0.9224995309, 0.9228748358, 0.9243760555, 0.9247513605, 0.9255019704, 0.9270031901, 0.9281291049, 0.9285044098, 0.9292550197, 0.9300056296, 0.9303809345, 0.9307562394, 0.9311315444, 0.9315068493, 0.9318821543, 0.9322574592, 0.9326327641, 0.9330080691, 0.9337586789, 0.9345092888, 0.9348845937, 0.9360105085, 0.9375117283, 0.9382623382, 0.9386376431, 0.9401388628, 0.9405141678, 0.9408894727, 0.9416400826, 0.9435166072, 0.944642522, 0.945017827, 0.9453931319, 0.9457684369, 0.9468943517, 0.9487708763, 0.9495214862, 0.9498967911, 0.9502720961, 0.9517733158, 0.9521486208, 0.9528992306, 0.9544004504, 0.9555263652, 0.9559016701, 0.95665228, 0.9574028898, 0.9577781948, 0.9581534997, 0.9585288047, 0.9589041096, 0.9592794145, 0.9596547195, 0.9600300244, 0.9604053293, 0.9611559392, 0.9619065491, 0.962281854, 0.9634077688, 0.9649089886, 0.9656595984, 0.9660349034, 0.9675361231, 0.967911428, 0.968286733, 0.9690373428, 0.9709138675, 0.9720397823, 0.9724150873, 0.9727903922, 0.9731656971, 0.9742916119, 0.9761681366, 0.9769187465, 0.9772940514, 0.9776693564, 0.9791705761, 0.979545881, 0.9802964909, 0.9817977106, 0.9829236254, 0.9832989304, 0.9840495403, 0.9848001501, 0.9851754551, 0.98555076, 0.9859260649, 0.9863013699, 0.9866766748, 0.9870519797, 0.9874272847, 0.9878025896, 0.9885531995, 0.9893038093, 0.9896791143, 0.9908050291, 0.9923062488, 0.9930568587, 0.9934321636, 0.9949333834, 0.9953086883, 0.9956839932, 0.9964346031, 0.9983111278, 0.9994370426, 0.9998123475]
averages_even = {0.0: [0.0], 0.6515293676: [0.7534246575342, 0.2465753424658], 0.4901482454: [0.0547945205479, 0.9452054794521], 0.4008256709: [0.6164383561644, 0.3835616438356], 0.487145806: [0.7534246575342, 0.2465753424658], 0.2364421092: [0.6164383561644, 0.3835616438356], 0.7584912742: [0.3013698630137, 0.6986301369863], 0.0851942203: [0.5205479452055, 0.4794520547945], 0.0243948208: [0.0547945205479, 0.9452054794521], 0.2747232126: [0.2602739726027, 0.7397260273973], 0.4961531244: [0.5205479452055, 0.4794520547945], 0.8215425033: [0.5616438356164, 0.4383561643836], 0.1279789829: [0.1506849315068, 0.8493150684932], 0.5250516044: [0.0958904109589, 0.9041095890411], 0.2323137549: [0.2876712328767, 0.7123287671233], 0.5408144117: [0.6027397260274, 0.3972602739726], 0.4725089135: [0.7808219178082, 0.2191780821918], 0.556577219: [0.1369863013699, 0.8630136986301], 0.8496903734: [0.1643835616438, 0.8356164383562], 0.4567461062: [0.1506849315068, 0.8493150684932], 0.5723400263: [0.0547945205479, 0.9452054794521], 0.8196659786: [0.5753424657534, 0.4246575342466], 0.2927378495: [0.3013698630137, 0.6986301369863], 0.0731844624: [0.1506849315068, 0.8493150684932], 0.7686245074: [0.3287671232877, 0.6712328767123], 0.3006192531: [0.027397260274, 0.972602739726], 0.6038656408: [0.5479452054795, 0.4520547945205], 0.1542503284: [0.6164383561644, 0.3835616438356], 0.7051979734: [0.6027397260274, 0.3972602739726], 0.7915181085: [0.0547945205479, 0.9452054794521], 0.8425595797: [0.0821917808219, 0.9178082191781], 0.0202664665: [0.6027397260274, 0.3972602739726], 0.3565396885: [0.1643835616438, 0.8356164383562], 0.3321448677: [0.5068493150685, 0.4931506849315], 0.9127416026: [0.1369863013699, 0.8630136986301], 0.4252204916: [0.7671232876712, 0.2328767123288], 0.6935635204: [0.1369863013699, 0.8630136986301], 0.9255019704: [0.7534246575342, 0.2465753424658], 0.9528992306: [0.7534246575342, 0.2465753424658], 0.7404766373: [0.2602739726027, 0.7397260273973], 0.9930568587: [0.7808219178082, 0.2191780821918], 0.1884030775: [0.6849315068493, 0.3150684931507], 0.0942015388: [0.041095890411, 0.958904109589], 0.3846875586: [0.5479452054795, 0.4520547945205], 0.2983674235: [0.0547945205479, 0.9452054794521], 0.1962844811: [0.0958904109589, 0.9041095890411], 0.3347720023: [0.6575342465753, 0.3424657534247], 0.9285044098: [0.0547945205479, 0.9452054794521], 0.7483580409: [0.1369863013699, 0.8630136986301], 0.6019891162: [0.027397260274, 0.972602739726], 0.7367235879: [0.0547945205479, 0.9452054794521], 0.2120472884: [0.6027397260274, 0.3972602739726], 0.9405141678: [0.0684931506849, 0.9315068493151], 0.0266466504: [0.027397260274, 0.972602739726], 0.2191780822: [0.0], 0.109964346: [0.1643835616438, 0.8356164383562], 0.7100769375: [0.5753424657534, 0.4246575342466], 0.5070369675: [0.6301369863014, 0.3698630136986], 0.9086132483: [0.0958904109589, 0.9041095890411], 0.2600863201: [0.013698630137, 0.986301369863], 0.5201726403: [0.5616438356164, 0.4383561643836], 0.881215988: [0.0958904109589, 0.9041095890411], 0.1339838619: [0.0547945205479, 0.9452054794521], 0.7577406643: [0.8082191780822, 0.1917808219178], 0.3310189529: [0.5342465753425, 0.4657534246575], 0.6335147307: [0.5068493150685, 0.4931506849315], 0.2462000375: [0.5616438356164, 0.4383561643836], 0.1231000188: [0.013698630137, 0.986301369863], 0.8722086695: [0.5890410958904, 0.4109589041096], 0.5749671608: [0.5616438356164, 0.4383561643836], 0.3167573654: [0.1095890410959, 0.8904109589041], 0.6845562019: [0.5616438356164, 0.4383561643836], 0.6278851567: [0.5753424657534, 0.4246575342466], 0.6530305874: [0.5890410958904, 0.4109589041096], 0.9649089886: [0.3424657534247, 0.6575342465753], 0.643647964: [0.013698630137, 0.986301369863], 0.3283918184: [0.5616438356164, 0.4383561643836], 0.2559579658: [0.1780821917808, 0.8219178082192], 0.4691311691: [0.5068493150685, 0.4931506849315], 0.3441546256: [0.1095890410959, 0.8904109589041], 0.6909363858: [0.3424657534247, 0.6575342465753], 0.5171702008: [0.3150684931507, 0.6849315068493], 0.6361418653: [0.3424657534247, 0.6575342465753], 0.98555076: [0.027397260274, 0.972602739726], 0.9401388628: [0.1369863013699, 0.8630136986301], 0.0277725652: [0.1643835616438, 0.8356164383562], 0.7487333458: [0.0684931506849, 0.9315068493151], 0.4383561644: [0.0], 0.4646275099: [0.7945205479452, 0.2054794520548], 0.1917808219: [0.0], 0.7802589604: [0.2876712328767, 0.7123287671233], 0.7960217677: [0.3287671232877, 0.6712328767123], 0.2251829612: [0.6575342465753, 0.3424657534247], 0.4473634828: [0.0684931506849, 0.9315068493151], 0.4124601239: [0.6712328767123, 0.3287671232877], 0.6207543629: [0.8082191780822, 0.1917808219178], 0.4203415275: [0.1780821917808, 0.8219178082192], 0.1050853819: [0.5890410958904, 0.4109589041096], 0.0262713455: [0.7945205479452, 0.2054794520548], 0.2597110152: [0.2876712328767, 0.7123287671233], 0.6676674798: [0.6438356164384, 0.3561643835616], 0.2180521674: [0.7945205479452, 0.2054794520548], 0.4064552449: [0.5890410958904, 0.4109589041096], 0.2743479077: [0.1643835616438, 0.8356164383562], 0.9544004504: [0.5890410958904, 0.4109589041096], 0.1129667855: [0.5068493150685, 0.4931506849315], 0.579846125: [0.0958904109589, 0.9041095890411], 0.9611559392: [0.5342465753425, 0.4657534246575], 0.4597485457: [0.7534246575342, 0.2465753424658], 0.9581534997: [0.027397260274, 0.972602739726], 0.9326327641: [0.5479452054795, 0.4520547945205], 0.4623756802: [0.6849315068493, 0.3150684931507], 0.4143366485: [0.5068493150685, 0.4931506849315], 0.1399887409: [0.5205479452055, 0.4794520547945], 0.7265903547: [0.7671232876712, 0.2328767123288], 0.2878588853: [0.6301369863014, 0.3698630136986], 0.719084256: [0.7808219178082, 0.2191780821918], 0.5941077125: [0.3013698630137, 0.6986301369863], 0.4098329893: [0.7945205479452, 0.2054794520548], 0.3036216926: [0.5342465753425, 0.4657534246575], 0.1557515481: [0.3013698630137, 0.6986301369863], 0.3115030963: [0.6438356164384, 0.3561643835616], 0.0285231751: [0.5479452054795, 0.4520547945205], 0.3193844999: [0.1917808219178, 0.8082191780822], 0.0409082379: [0.013698630137, 0.986301369863], 0.3272659035: [0.8767123287671, 0.1232876712329], 0.0818164759: [0.5616438356164, 0.4383561643836], 0.3561643836: [0.0], 0.5344342278: [0.6301369863014, 0.3698630136986], 0.1715143554: [0.2739726027397, 0.7260273972603], 0.4908988553: [0.5753424657534, 0.4246575342466], 0.6991930944: [0.7671232876712, 0.2328767123288], 0.6582848564: [0.2602739726027, 0.7397260273973], 0.1062112967: [0.6849315068493, 0.3150684931507], 0.1463689248: [0.1780821917808, 0.8219178082192], 0.730718709: [0.1506849315068, 0.8493150684932], 0.7464815162: [0.7808219178082, 0.2191780821918], 0.2979921186: [0.6849315068493, 0.3150684931507], 0.8504409833: [0.5479452054795, 0.4520547945205], 0.8151623194: [0.0821917808219, 0.9178082191781], 0.1977857009: [0.6575342465753, 0.3424657534247], 0.0607993995: [0.6575342465753, 0.3424657534247], 0.2807280916: [0.7808219178082, 0.2191780821918], 0.0033777444: [0.5068493150685, 0.4931506849315], 0.0514167761: [0.6849315068493, 0.3150684931507], 0.2056671045: [0.6301369863014, 0.3698630136986], 0.1028335523: [0.0821917808219, 0.9178082191781], 0.7716269469: [0.0958904109589, 0.9041095890411], 0.8733345844: [0.3150684931507, 0.6849315068493], 0.7641208482: [0.0547945205479, 0.9452054794521], 0.5787202102: [0.5068493150685, 0.4931506849315], 0.8673297054: [0.8082191780822, 0.1917808219178], 0.5764683806: [0.5479452054795, 0.4520547945205], 0.440607994: [0.5342465753425, 0.4657534246575], 0.3085006568: [0.2739726027397, 0.7260273972603], 0.3745543254: [0.1506849315068, 0.8493150684932], 0.9108650779: [0.7808219178082, 0.2191780821918], 0.127603678: [0.1917808219178, 0.8082191780822], 0.8947269657: [0.8082191780822, 0.1917808219178], 0.9303809345: [0.7945205479452, 0.2054794520548], 0.1354850816: [0.8767123287671, 0.1232876712329], 0.5550759992: [0.2739726027397, 0.7260273972603], 0.2398198536: [0.0821917808219, 0.9178082191781], 0.7145805967: [0.5342465753425, 0.4657534246575], 0.5708388065: [0.5890410958904, 0.4109589041096], 0.8969787953: [0.6027397260274, 0.3972602739726], 0.0619253143: [0.2739726027397, 0.7260273972603], 0.2477012573: [0.5479452054795, 0.4520547945205], 0.7648714581: [0.5753424657534, 0.4246575342466], 0.255207356: [0.1369863013699, 0.8630136986301], 0.6181272284: [0.1095890410959, 0.8904109589041], 0.8954775755: [0.3013698630137, 0.6986301369863], 0.3156314506: [0.7671232876712, 0.2328767123288], 0.910114468: [0.3424657534247, 0.6575342465753], 0.7063238882: [0.7534246575342, 0.2465753424658], 0.7003190092: [0.1095890410959, 0.8904109589041], 0.7382248077: [0.8767123287671, 0.1232876712329], 0.2281854006: [0.0684931506849, 0.9315068493151], 0.162131732: [0.5753424657534, 0.4246575342466], 0.0487896416: [0.7534246575342, 0.2465753424658], 0.4240945768: [0.2876712328767, 0.7123287671233], 0.1775192344: [0.2876712328767, 0.7123287671233], 0.6564083318: [0.7945205479452, 0.2054794520548], 0.0003753049: [0.1643835616438, 0.8356164383562], 0.3629198724: [0.7808219178082, 0.2191780821918], 0.1366109964: [0.5616438356164, 0.4383561643836], 0.7389754175: [0.027397260274, 0.972602739726], 0.9634077688: [0.0958904109589, 0.9041095890411], 0.3865640833: [0.5205479452055, 0.4794520547945], 0.6642897354: [0.7808219178082, 0.2191780821918], 0.1002064177: [0.1917808219178, 0.8082191780822], 0.0502908613: [0.5890410958904, 0.4109589041096], 0.4668793395: [0.5479452054795, 0.4520547945205], 0.1673860011: [0.5205479452055, 0.4794520547945], 0.4154625633: [0.0958904109589, 0.9041095890411], 0.9224995309: [0.1506849315068, 0.8493150684932], 0.4589979358: [0.0821917808219, 0.9178082191781], 0.8493150685: [0.0], 0.8241696378: [0.5342465753425, 0.4657534246575], 0.4312253706: [0.6027397260274, 0.3972602739726], 0.7990242072: [0.0958904109589, 0.9041095890411], 0.5479452055: [0.0], 0.2195533871: [0.1643835616438, 0.8356164383562], 0.4391067743: [0.2602739726027, 0.7397260273973], 0.6290110715: [0.7945205479452, 0.2054794520548], 0.4469881779: [0.1369863013699, 0.8630136986301], 0.6215049728: [0.3013698630137, 0.6986301369863], 0.4747607431: [0.0684931506849, 0.9315068493151], 0.9071120285: [0.5205479452055, 0.4794520547945], 0.3426534059: [0.6301369863014, 0.3698630136986], 0.5212985551: [0.2602739726027, 0.7397260273973], 0.4627509852: [0.0547945205479, 0.9452054794521], 0.133608557: [0.6849315068493, 0.3150684931507], 0.0022518296: [0.5342465753425, 0.4657534246575], 0.2750985175: [0.5479452054795, 0.4520547945205], 0.5501970351: [0.5342465753425, 0.4657534246575], 0.8774629386: [0.2602739726027, 0.7397260273973], 0.1414899606: [0.0958904109589, 0.9041095890411], 0.5685869769: [0.0821917808219, 0.9178082191781], 0.3287671233: [0.0], 0.9375117283: [0.3424657534247, 0.6575342465753], 0.5843497842: [0.0684931506849, 0.9315068493151], 0.9300056296: [0.8767123287671, 0.1232876712329], 0.9720397823: [0.2876712328767, 0.7123287671233], 0.3242634641: [0.5890410958904, 0.4109589041096], 0.1572527679: [0.6027397260274, 0.3972602739726], 0.6421467442: [0.041095890411, 0.958904109589], 0.7089510227: [0.3150684931507, 0.6849315068493], 0.8586976919: [0.1780821917808, 0.8219178082192], 0.6579095515: [0.1643835616438, 0.8356164383562], 0.1651341715: [0.2602739726027, 0.7397260273973], 0.6762994933: [0.3013698630137, 0.6986301369863], 0.6894351661: [0.0958904109589, 0.9041095890411], 0.3257646838: [0.0547945205479, 0.9452054794521], 0.5197973353: [0.027397260274, 0.972602739726], 0.7183336461: [0.3424657534247, 0.6575342465753], 0.7209607806: [0.1369863013699, 0.8630136986301], 0.6815537624: [0.3150684931507, 0.6849315068493], 0.3749296303: [0.3013698630137, 0.6986301369863], 0.3317695628: [0.5205479452055, 0.4794520547945], 0.0957027585: [0.013698630137, 0.986301369863], 0.0915744042: [0.1780821917808, 0.8219178082192], 0.3906924376: [0.2739726027397, 0.7260273972603], 0.4323512854: [0.7534246575342, 0.2465753424658], 0.3002439482: [0.7945205479452, 0.2054794520548], 0.0258960405: [0.8767123287671, 0.1232876712329], 0.0540439107: [0.027397260274, 0.972602739726], 0.1035841621: [0.7534246575342, 0.2465753424658], 0.2071683243: [0.1095890410959, 0.8904109589041], 0.7948958529: [0.1643835616438, 0.8356164383562], 0.5209232501: [0.1643835616438, 0.8356164383562], 0.7457309064: [0.3424657534247, 0.6575342465753], 0.0142615875: [0.7671232876712, 0.2328767123288], 0.3467817602: [0.1917808219178, 0.8082191780822], 0.9487708763: [0.6164383561644, 0.3835616438356], 0.6162507037: [0.013698630137, 0.986301369863], 0.9048601989: [0.2602739726027, 0.7397260273973], 0.376806155: [0.0821917808219, 0.9178082191781], 0.5524488647: [0.0958904109589, 0.9041095890411], 0.1107149559: [0.5479452054795, 0.4520547945205], 0.2334396697: [0.7671232876712, 0.2328767123288], 0.1167198349: [0.2739726027397, 0.7260273972603], 0.2739726027: [0.0], 0.1369863014: [0.0], 0.8391818352: [0.6164383561644, 0.3835616438356], 0.5610808782: [0.2876712328767, 0.7123287671233], 0.3820604241: [0.8767123287671, 0.1232876712329], 0.5768436855: [0.3287671232877, 0.6712328767123], 0.5926064928: [0.6164383561644, 0.3835616438356], 0.8707074498: [0.7534246575342, 0.2465753424658], 0.5813473447: [0.3424657534247, 0.6575342465753], 0.9435166072: [0.041095890411, 0.958904109589], 0.904109589: [0.0], 0.6241321073: [0.7534246575342, 0.2465753424658], 0.6305122912: [0.1643835616438, 0.8356164383562], 0.31863389: [0.6164383561644, 0.3835616438356], 0.6372677801: [0.2739726027397, 0.7260273972603], 0.1632576468: [0.7945205479452, 0.2054794520548], 0.3265152937: [0.5753424657534, 0.4246575342466], 0.8159129293: [0.7534246575342, 0.2465753424658], 0.9112403828: [0.2739726027397, 0.7260273972603], 0.8827172077: [0.3424657534247, 0.6575342465753], 0.7663726778: [0.027397260274, 0.972602739726], 0.1711390505: [0.7808219178082, 0.2191780821918], 0.9832989304: [0.0547945205479, 0.9452054794521], 0.3501595046: [0.7534246575342, 0.2465753424658], 0.3925689623: [0.0684931506849, 0.9315068493151], 0.2604616251: [0.6301369863014, 0.3698630136986], 0.7978982924: [0.5068493150685, 0.4931506849315], 0.5074122725: [0.7671232876712, 0.2328767123288], 0.7581159692: [0.1506849315068, 0.8493150684932], 0.7930193282: [0.8767123287671, 0.1232876712329], 0.8632013511: [0.6301369863014, 0.3698630136986], 0.8249202477: [0.5205479452055, 0.4794520547945], 0.4102082942: [0.027397260274, 0.972602739726], 0.7765059111: [0.1780821917808, 0.8219178082192], 0.4665040345: [0.2602739726027, 0.7397260273973], 0.4939012948: [0.2602739726027, 0.7397260273973], 0.538937887: [0.1506849315068, 0.8493150684932], 0.9791705761: [0.6027397260274, 0.3972602739726], 0.3700506662: [0.6301369863014, 0.3698630136986], 0.2052917996: [0.013698630137, 0.986301369863], 0.5445674611: [0.3150684931507, 0.6849315068493], 0.1065866016: [0.0547945205479, 0.9452054794521], 0.5434415463: [0.5890410958904, 0.4109589041096], 0.2735972978: [0.5616438356164, 0.4383561643836], 0.0855695252: [0.5068493150685, 0.4931506849315], 0.8973541002: [0.0821917808219, 0.9178082191781], 0.6597860762: [0.5342465753425, 0.4657534246575], 0.0690561081: [0.7671232876712, 0.2328767123288], 0.527303434: [0.7808219178082, 0.2191780821918], 0.944642522: [0.2876712328767, 0.7123287671233], 0.5299305686: [0.1780821917808, 0.8219178082192], 0.7611184087: [0.7534246575342, 0.2465753424658], 0.1429911803: [0.6575342465753, 0.3424657534247], 0.9619065491: [0.5205479452055, 0.4794520547945], 0.4946519047: [0.3287671232877, 0.6712328767123], 0.3017451679: [0.1643835616438, 0.8356164383562], 0.150872584: [0.6301369863014, 0.3698630136986], 0.568211672: [0.6027397260274, 0.3972602739726], 0.2769750422: [0.5205479452055, 0.4794520547945], 0.0881966598: [0.6575342465753, 0.3424657534247], 0.6323888159: [0.5342465753425, 0.4657534246575], 0.191405517: [0.5616438356164, 0.4383561643836], 0.3253893789: [0.6849315068493, 0.3150684931507], 0.8481891537: [0.7945205479452, 0.2054794520548], 0.0833176956: [0.5479452054795, 0.4520547945205], 0.2919872396: [0.1917808219178, 0.8082191780822], 0.4841433665: [0.1506849315068, 0.8493150684932], 0.5839744793: [0.1369863013699, 0.8630136986301], 0.0007506099: [0.2602739726027, 0.7397260273973], 0.3621692625: [0.6575342465753, 0.3424657534247], 0.5884781385: [0.2876712328767, 0.7123287671233], 0.7401013323: [0.1643835616438, 0.8356164383562], 0.1850253331: [0.0821917808219, 0.9178082191781], 0.8613248264: [0.041095890411, 0.958904109589], 0.1929067367: [0.5479452054795, 0.4520547945205], 0.0964533684: [0.7671232876712, 0.2328767123288], 0.3936948771: [0.6438356164384, 0.3561643835616], 0.8564458623: [0.2739726027397, 0.7260273972603], 0.2007881404: [0.0684931506849, 0.9315068493151], 0.3024957778: [0.5479452054795, 0.4520547945205], 0.4094576844: [0.8767123287671, 0.1232876712329], 0.8320510415: [0.6438356164384, 0.3561643835616], 0.3978232314: [0.7671232876712, 0.2328767123288], 0.4398573841: [0.6712328767123, 0.3287671232877], 0.3903171327: [0.7808219178082, 0.2191780821918], 0.9517733158: [0.6027397260274, 0.3972602739726], 0.0273972603: [0.0], 0.9348845937: [0.5068493150685, 0.4931506849315], 0.8951022706: [0.1506849315068, 0.8493150684932], 0.7637455433: [0.3150684931507, 0.6849315068493], 0.2533308313: [0.7808219178082, 0.2191780821918], 0.8853443423: [0.1369863013699, 0.8630136986301], 0.5959842372: [0.0821917808219, 0.9178082191781], 0.8031525615: [0.1369863013699, 0.8630136986301], 0.5513229499: [0.5068493150685, 0.4931506849315], 0.1384875211: [0.6712328767123, 0.3287671232877], 0.6286357666: [0.8767123287671, 0.1232876712329], 0.7671232877: [0.0], 0.0480390317: [0.0821917808219, 0.9178082191781], 0.4935259899: [0.1643835616438, 0.8356164383562], 0.1125914806: [0.5205479452055, 0.4794520547945], 0.7408519422: [0.5479452054795, 0.4520547945205], 0.9866766748: [0.1643835616438, 0.8356164383562], 0.6117470445: [0.0684931506849, 0.9315068493151], 0.3843122537: [0.2602739726027, 0.7397260273973], 0.6301369863: [0.0], 0.6391443047: [0.0684931506849, 0.9315068493151], 0.3216363295: [0.6027397260274, 0.3972602739726], 0.1647588666: [0.1643835616438, 0.8356164383562], 0.3373991368: [0.1369863013699, 0.8630136986301], 0.006004879: [0.6575342465753, 0.3424657534247], 0.9345092888: [0.5205479452055, 0.4794520547945], 0.7036967536: [0.3013698630137, 0.6986301369863], 0.3531619441: [0.0547945205479, 0.9452054794521], 0.7194595609: [0.2739726027397, 0.7260273972603], 0.9194970914: [0.1095890410959, 0.8904109589041], 0.7352223682: [0.5890410958904, 0.4109589041096], 0.9172452618: [0.2876712328767, 0.7123287671233], 0.6331394258: [0.5205479452055, 0.4794520547945], 0.0228936011: [0.5890410958904, 0.4109589041096], 0.7667479827: [0.5616438356164, 0.4383561643836], 0.9382623382: [0.7808219178082, 0.2191780821918], 0.78251079: [0.1095890410959, 0.8904109589041], 0.6920623006: [0.2739726027397, 0.7260273972603], 0.4661287296: [0.1643835616438, 0.8356164383562], 0.1989116157: [0.2739726027397, 0.7260273972603], 0.7498592606: [0.6438356164384, 0.3561643835616], 0.2679677238: [0.7534246575342, 0.2465753424658], 0.5547006943: [0.7808219178082, 0.2191780821918], 0.5471945956: [0.027397260274, 0.972602739726], 0.0536686057: [0.7945205479452, 0.2054794520548], 0.0011259148: [0.5479452054795, 0.4520547945205], 0.1073372115: [0.5753424657534, 0.4246575342466], 0.4372302496: [0.7945205479452, 0.2054794520548], 0.8132857947: [0.3013698630137, 0.6986301369863], 0.6635391255: [0.3424657534247, 0.6575342465753], 0.2225558266: [0.5068493150685, 0.4931506849315], 0.5017826984: [0.1369863013699, 0.8630136986301], 0.9033589792: [0.027397260274, 0.972602739726], 0.4105835992: [0.5616438356164, 0.4383561643836], 0.5175455057: [0.0547945205479, 0.9452054794521], 0.9559016701: [0.0547945205479, 0.9452054794521], 0.2653405892: [0.3013698630137, 0.6986301369863], 0.5306811785: [0.6438356164384, 0.3561643835616], 0.0341527491: [0.7808219178082, 0.2191780821918], 0.2732219929: [0.027397260274, 0.972602739726], 0.278476262: [0.0958904109589, 0.9041095890411], 0.2811033965: [0.2739726027397, 0.7260273972603], 0.6969412648: [0.041095890411, 0.958904109589], 0.6605366861: [0.5205479452055, 0.4794520547945], 0.4897729405: [0.3150684931507, 0.6849315068493], 0.4845186714: [0.3013698630137, 0.6986301369863], 0.2968662038: [0.5890410958904, 0.4109589041096], 0.2488271721: [0.5342465753425, 0.4657534246575], 0.1523738037: [0.1095890410959, 0.8904109589041], 0.0761869019: [0.7534246575342, 0.2465753424658], 0.6710452242: [0.013698630137, 0.986301369863], 0.9386376431: [0.2739726027397, 0.7260273972603], 0.9802964909: [0.7534246575342, 0.2465753424658], 0.6541565022: [0.3150684931507, 0.6849315068493], 0.4413586039: [0.5205479452055, 0.4794520547945], 0.8448114093: [0.5890410958904, 0.4109589041096], 0.4338525052: [0.5890410958904, 0.4109589041096], 0.3494088947: [0.0821917808219, 0.9178082191781], 0.3430287108: [0.7671232876712, 0.2328767123288], 0.0532933008: [0.8767123287671, 0.1232876712329], 0.0446612873: [0.6164383561644, 0.3835616438356], 0.0615500094: [0.7808219178082, 0.2191780821918], 0.365171702: [0.0684931506849, 0.9315068493151], 0.7329705386: [0.0821917808219, 0.9178082191781], 0.4428598236: [0.0958904109589, 0.9041095890411], 0.7539876149: [0.7671232876712, 0.2328767123288], 0.063801839: [0.0684931506849, 0.9315068493151], 0.7933946331: [0.7945205479452, 0.2054794520548], 0.3966973166: [0.2876712328767, 0.7123287671233], 0.9007318446: [0.3150684931507, 0.6849315068493], 0.8065303059: [0.041095890411, 0.958904109589], 0.6042409458: [0.3287671232877, 0.6712328767123], 0.713079377: [0.2602739726027, 0.7397260273973], 0.8834678176: [0.7808219178082, 0.2191780821918], 0.0525426909: [0.5753424657534, 0.4246575342466], 0.2101707637: [0.1506849315068, 0.8493150684932], 0.6121223494: [0.1780821917808, 0.8219178082192], 0.8538187277: [0.0958904109589, 0.9041095890411], 0.869581535: [0.6027397260274, 0.3972602739726], 0.7217113905: [0.1780821917808, 0.8219178082192], 0.110339651: [0.2602739726027, 0.7397260273973], 0.9011071496: [0.0547945205479, 0.9452054794521], 0.4571214111: [0.3013698630137, 0.6986301369863], 0.2285607056: [0.1780821917808, 0.8219178082192], 0.573841246: [0.8767123287671, 0.1232876712329], 0.4650028148: [0.027397260274, 0.972602739726], 0.1182210546: [0.1369863013699, 0.8630136986301], 0.9457684369: [0.7671232876712, 0.2328767123288], 0.4563708013: [0.8082191780822, 0.1917808219178], 0.5573278289: [0.1780821917808, 0.8219178082192], 0.5730906361: [0.5753424657534, 0.4246575342466], 0.4886470257: [0.5890410958904, 0.4109589041096], 0.2443235129: [0.5753424657534, 0.4246575342466], 0.5888534434: [0.013698630137, 0.986301369863], 0.4965284293: [0.5068493150685, 0.4931506849315], 0.3009945581: [0.5616438356164, 0.4383561643836], 0.9817977106: [0.5890410958904, 0.4109589041096], 0.0791893413: [0.0547945205479, 0.9452054794521], 0.1583786827: [0.7534246575342, 0.2465753424658], 0.8219178082: [0.0], 0.7757553012: [0.1369863013699, 0.8630136986301], 0.5115406268: [0.1506849315068, 0.8493150684932], 0.794145243: [0.5616438356164, 0.4383561643836], 0.9761681366: [0.6164383561644, 0.3835616438356], 0.6939388253: [0.0684931506849, 0.9315068493151], 0.0649277538: [0.6438356164384, 0.3561643835616], 0.788515669: [0.7534246575342, 0.2465753424658], 0.1628823419: [0.8767123287671, 0.1232876712329], 0.7254644399: [0.2876712328767, 0.7123287671233], 0.2762244324: [0.5342465753425, 0.4657534246575], 0.7412272471: [0.3287671232877, 0.6712328767123], 0.5025333083: [0.1780821917808, 0.8219178082192], 0.7569900544: [0.6164383561644, 0.3835616438356], 0.9315068493: [0.0], 0.4788890974: [0.2876712328767, 0.7123287671233], 0.3929442672: [0.1780821917808, 0.8219178082192], 0.6567836367: [0.027397260274, 0.972602739726], 0.2004128354: [0.1369863013699, 0.8630136986301], 0.4087070745: [0.5753424657534, 0.4246575342466], 0.4023268906: [0.3013698630137, 0.6986301369863], 0.7656220679: [0.8767123287671, 0.1232876712329], 0.4244698818: [0.013698630137, 0.986301369863], 0.585475699: [0.6438356164384, 0.3561643835616], 0.2161756427: [0.0547945205479, 0.9452054794521], 0.1080878214: [0.8767123287671, 0.1232876712329], 0.8778382436: [0.5479452054795, 0.4520547945205], 0.2754738225: [0.6712328767123, 0.3287671232877], 0.5051604429: [0.041095890411, 0.958904109589], 0.6883092513: [0.5068493150685, 0.4931506849315], 0.5419403265: [0.7534246575342, 0.2465753424658], 0.1302308125: [0.0821917808219, 0.9178082191781], 0.5235503847: [0.5205479452055, 0.4794520547945], 0.1471195346: [0.6438356164384, 0.3561643835616], 0.539313192: [0.3013698630137, 0.6986301369863], 0.9408894727: [0.1780821917808, 0.8219178082192], 0.0360292738: [0.1369863013699, 0.8630136986301], 0.1381122162: [0.5479452054795, 0.4520547945205], 0.95665228: [0.5753424657534, 0.4246575342466], 0.683805592: [0.7945205479452, 0.2054794520548], 0.284105836: [0.6438356164384, 0.3561643835616], 0.6988177895: [0.6301369863014, 0.3698630136986], 0.1459936198: [0.0684931506849, 0.9315068493151], 0.49277538: [0.5616438356164, 0.4383561643836], 0.7325952336: [0.6027397260274, 0.3972602739726], 0.2833552261: [0.1780821917808, 0.8219178082192], 0.2998686433: [0.8767123287671, 0.1232876712329], 0.9953086883: [0.0684931506849, 0.9315068493151], 0.6128729593: [0.6438356164384, 0.3561643835616], 0.8361793958: [0.7671232876712, 0.2328767123288], 0.2859823607: [0.041095890411, 0.958904109589], 0.6443985738: [0.7671232876712, 0.2328767123288], 0.0364045787: [0.0684931506849, 0.9315068493151], 0.6943141302: [0.1780821917808, 0.8219178082192], 0.6759241884: [0.1506849315068, 0.8493150684932], 0.8211671983: [0.027397260274, 0.972602739726], 0.6916869957: [0.7808219178082, 0.2191780821918], 0.9840495403: [0.5753424657534, 0.4246575342466], 0.9330080691: [0.3287671232877, 0.6712328767123], 0.8485644586: [0.027397260274, 0.972602739726], 0.9893038093: [0.5205479452055, 0.4794520547945], 0.3681741415: [0.041095890411, 0.958904109589], 0.5956089323: [0.6027397260274, 0.3972602739726], 0.3839369488: [0.1643835616438, 0.8356164383562], 0.7810095703: [0.6301369863014, 0.3698630136986], 0.4999061738: [0.7808219178082, 0.2191780821918], 0.7967723776: [0.5342465753425, 0.4657534246575], 0.2037905798: [0.041095890411, 0.958904109589], 0.1084631263: [0.7945205479452, 0.2054794520548], 0.075436292: [0.0821917808219, 0.9178082191781], 0.3704259711: [0.7671232876712, 0.2328767123288], 0.736348283: [0.3150684931507, 0.6849315068493], 0.875586414: [0.7945205479452, 0.2054794520548], 0.4417339088: [0.5068493150685, 0.4931506849315], 0.4443610433: [0.6575342465753, 0.3424657534247], 0.2221805217: [0.5205479452055, 0.4794520547945], 0.5002814787: [0.2739726027397, 0.7260273972603], 0.452242447: [0.6301369863014, 0.3698630136986], 0.516044286: [0.5890410958904, 0.4109589041096], 0.0334021392: [0.6575342465753, 0.3424657534247], 0.2672171139: [0.0821917808219, 0.9178082191781], 0.5475699005: [0.5616438356164, 0.4383561643836], 0.237943329: [0.3013698630137, 0.6986301369863], 0.5633327078: [0.1095890410959, 0.8904109589041], 0.4837680616: [0.8082191780822, 0.1917808219178], 0.5820979546: [0.7808219178082, 0.2191780821918], 0.0720585476: [0.6164383561644, 0.3835616438356], 0.2458247326: [0.027397260274, 0.972602739726], 0.8860949521: [0.1780821917808, 0.8219178082192], 0.9964346031: [0.6438356164384, 0.3561643835616], 0.3835616438: [0.0], 0.904484894: [0.1643835616438, 0.8356164383562], 0.081065866: [0.7945205479452, 0.2054794520548], 0.0799399512: [0.5753424657534, 0.4246575342466], 0.0206417714: [0.0821917808219, 0.9178082191781], 0.9029836742: [0.7945205479452, 0.2054794520548], 0.3276412085: [0.7945205479452, 0.2054794520548], 0.8526928129: [0.5068493150685, 0.4931506849315], 0.1677613061: [0.5068493150685, 0.4931506849315], 0.684180897: [0.027397260274, 0.972602739726], 0.6481516232: [0.8082191780822, 0.1917808219178], 0.6575342466: [0.0], 0.9690373428: [0.6438356164384, 0.3561643835616], 0.359166823: [0.5205479452055, 0.4794520547945], 0.3280165134: [0.027397260274, 0.972602739726], 0.2619628448: [0.1095890410959, 0.8904109589041], 0.1940326515: [0.5342465753425, 0.4657534246575], 0.1636329518: [0.027397260274, 0.972602739726], 0.0416588478: [0.7671232876712, 0.2328767123288], 0.7945205479: [0.0], 0.9585288047: [0.5616438356164, 0.4383561643836], 0.4038281103: [0.6027397260274, 0.3972602739726], 0.1009570276: [0.3013698630137, 0.6986301369863], 0.0427847626: [0.1095890410959, 0.8904109589041], 0.411709514: [0.2602739726027, 0.7397260273973], 0.2097954588: [0.1917808219178, 0.8082191780822], 0.7468568212: [0.2739726027397, 0.7260273972603], 0.852317508: [0.5205479452055, 0.4794520547945], 0.811784575: [0.6164383561644, 0.3835616438356], 0.1088384312: [0.027397260274, 0.972602739726], 0.2176768625: [0.8767123287671, 0.1232876712329], 0.8838431225: [0.2739726027397, 0.7260273972603], 0.7813848752: [0.7671232876712, 0.2328767123288], 0.1024582473: [0.6027397260274, 0.3972602739726], 0.1189716645: [0.1780821917808, 0.8219178082192], 0.5137924564: [0.0821917808219, 0.9178082191781], 0.0570463502: [0.5342465753425, 0.4657534246575], 0.9311315444: [0.5616438356164, 0.4383561643836], 0.8902233064: [0.013698630137, 0.986301369863], 0.9596547195: [0.2602739726027, 0.7397260273973], 0.9468943517: [0.1095890410959, 0.8904109589041], 0.4800150122: [0.7671232876712, 0.2328767123288], 0.2871082755: [0.2876712328767, 0.7123287671233], 0.9675361231: [0.1369863013699, 0.8630136986301], 0.5464439857: [0.8767123287671, 0.1232876712329], 0.8354287859: [0.013698630137, 0.986301369863], 0.603115031: [0.1643835616438, 0.8356164383562], 0.121598799: [0.041095890411, 0.958904109589], 0.0187652468: [0.3013698630137, 0.6986301369863], 0.7033214487: [0.1506849315068, 0.8493150684932], 0.1553762432: [0.1506849315068, 0.8493150684932], 0.840683055: [0.3013698630137, 0.6986301369863], 0.6346406455: [0.0958904109589, 0.9041095890411], 0.9727903922: [0.6301369863014, 0.3698630136986], 0.6504034528: [0.6027397260274, 0.3972602739726], 0.5937324076: [0.1506849315068, 0.8493150684932], 0.4586226309: [0.6027397260274, 0.3972602739726], 0.0829423907: [0.2602739726027, 0.7397260273973], 0.0180146369: [0.1917808219178, 0.8082191780822], 0.6094952149: [0.7808219178082, 0.2191780821918], 0.6819290674: [0.0547945205479, 0.9452054794521], 0.173766185: [0.1780821917808, 0.8219178082192], 0.4916494652: [0.8767123287671, 0.1232876712329], 0.3554137737: [0.027397260274, 0.972602739726], 0.359542128: [0.5068493150685, 0.4931506849315], 0.0908237943: [0.1369863013699, 0.8630136986301], 0.1816475887: [0.6164383561644, 0.3835616438356], 0.0454118972: [0.1917808219178, 0.8082191780822], 0.8339275661: [0.041095890411, 0.958904109589], 0.9772940514: [0.1506849315068, 0.8493150684932], 0.6879339463: [0.5205479452055, 0.4794520547945], 0.1895289923: [0.5753424657534, 0.4246575342466], 0.3869393883: [0.5068493150685, 0.4931506849315], 0.0240195159: [0.6849315068493, 0.3150684931507], 0.602739726: [0.0], 0.8185400638: [0.3150684931507, 0.6849315068493], 0.4361043348: [0.5753424657534, 0.4246575342466], 0.8887220867: [0.041095890411, 0.958904109589], 0.3647963971: [0.1369863013699, 0.8630136986301], 0.3662976168: [0.6438356164384, 0.3561643835616], 0.2158003378: [0.6849315068493, 0.3150684931507], 0.2709701633: [0.0547945205479, 0.9452054794521], 0.4394820792: [0.5479452054795, 0.4520547945205], 0.9322574592: [0.2602739726027, 0.7397260273973], 0.2236817414: [0.0958904109589, 0.9041095890411], 0.0559204354: [0.5479452054795, 0.4520547945205], 0.342278101: [0.013698630137, 0.986301369863], 0.2799774817: [0.6575342465753, 0.3424657534247], 0.5378119722: [0.6164383561644, 0.3835616438356], 0.1197222743: [0.6438356164384, 0.3561643835616], 0.2394445487: [0.6027397260274, 0.3972602739726], 0.7626196284: [0.5890410958904, 0.4109589041096], 0.5693375868: [0.7534246575342, 0.2465753424658], 0.8005254269: [0.3424657534247, 0.6575342465753], 0.7551135297: [0.1095890410959, 0.8904109589041], 0.1456183149: [0.1369863013699, 0.8630136986301], 0.2473259523: [0.2602739726027, 0.7397260273973], 0.2991180334: [0.5753424657534, 0.4246575342466], 0.3858134734: [0.5342465753425, 0.4657534246575], 0.6166260086: [0.6301369863014, 0.3698630136986], 0.225933571: [0.7808219178082, 0.2191780821918], 0.3148808407: [0.013698630137, 0.986301369863], 0.1598799024: [0.5890410958904, 0.4109589041096], 0.3227622443: [0.7534246575342, 0.2465753424658], 0.1613811222: [0.0547945205479, 0.9452054794521], 0.5265528242: [0.3424657534247, 0.6575342465753], 0.8759617189: [0.027397260274, 0.972602739726], 0.481140927: [0.1095890410959, 0.8904109589041], 0.8305498217: [0.1369863013699, 0.8630136986301], 0.7873897542: [0.6027397260274, 0.3972602739726], 0.7153312066: [0.5205479452055, 0.4794520547945], 0.655282417: [0.5753424657534, 0.4246575342466], 0.5824732595: [0.2739726027397, 0.7260273972603], 0.9848001501: [0.8767123287671, 0.1232876712329], 0.7532370051: [0.013698630137, 0.986301369863], 0.0825670858: [0.1643835616438, 0.8356164383562], 0.7761306061: [0.0684931506849, 0.9315068493151], 0.1786451492: [0.7671232876712, 0.2328767123288], 0.3989491462: [0.8904109589041, 0.1095890410959], 0.5111653218: [0.8082191780822, 0.1917808219178], 0.4015762807: [0.1917808219178, 0.8082191780822], 0.2694689435: [0.5890410958904, 0.4109589041096], 0.3355226121: [0.7808219178082, 0.2191780821918], 0.8084068306: [0.6301369863014, 0.3698630136986], 0.8046537812: [0.6438356164384, 0.3561643835616], 0.4702570839: [0.0958904109589, 0.9041095890411], 0.8583223869: [0.0684931506849, 0.9315068493151], 0.3381497467: [0.1780821917808, 0.8219178082192], 0.0547945205: [0.0], 0.1095890411: [0.0], 0.5468192907: [0.7945205479452, 0.2054794520548], 0.8898480015: [0.2876712328767, 0.7123287671233], 0.9923062488: [0.3424657534247, 0.6575342465753], 0.8189153687: [0.0547945205479, 0.9452054794521], 0.2585851004: [0.041095890411, 0.958904109589], 0.9213736161: [0.6164383561644, 0.3835616438356], 0.3460311503: [0.6164383561644, 0.3835616438356], 0.4672546444: [0.6712328767123, 0.3287671232877], 0.4120848189: [0.5479452054795, 0.4520547945205], 0.237568024: [0.1506849315068, 0.8493150684932], 0.4830174517: [0.6164383561644, 0.3835616438356], 0.1227247138: [0.2876712328767, 0.7123287671233], 0.2454494277: [0.7945205479452, 0.2054794520548], 0.1489960593: [0.041095890411, 0.958904109589], 0.3058735222: [0.0958904109589, 0.9041095890411], 0.620003753: [0.6164383561644, 0.3835616438356], 0.9859260649: [0.5616438356164, 0.4383561643836], 0.7678738975: [0.2602739726027, 0.7397260273973], 0.8399324451: [0.8082191780822, 0.1917808219178], 0.9243760555: [0.6027397260274, 0.3972602739726], 0.5757177707: [0.1643835616438, 0.8356164383562], 0.411334209: [0.1643835616438, 0.8356164383562], 0.0836930006: [0.6712328767123, 0.3287671232877], 0.0101332333: [0.6438356164384, 0.3561643835616], 0.5411897166: [0.0821917808219, 0.9178082191781], 0.8647025708: [0.1095890410959, 0.8904109589041], 0.2469506474: [0.1643835616438, 0.8356164383562], 0.3584162132: [0.5342465753425, 0.4657534246575], 0.0457872021: [0.1506849315068, 0.8493150684932], 0.3741790205: [0.1917808219178, 0.8082191780822], 0.7258397448: [0.013698630137, 0.986301369863], 0.191030212: [0.027397260274, 0.972602739726], 0.4717583036: [0.6575342465753, 0.3424657534247], 0.7772565209: [0.6438356164384, 0.3561643835616], 0.5993619816: [0.3150684931507, 0.6849315068493], 0.0994558078: [0.6164383561644, 0.3835616438356], 0.4642522049: [0.8767123287671, 0.1232876712329], 0.8087821355: [0.7671232876712, 0.2328767123288], 0.6545318071: [0.0547945205479, 0.9452054794521], 0.7393507225: [0.5616438356164, 0.4383561643836], 0.8076562207: [0.2876712328767, 0.7123287671233], 0.6072433853: [0.0958904109589, 0.9041095890411], 0.8560705573: [0.7808219178082, 0.2191780821918], 0.2131732032: [0.7534246575342, 0.2465753424658], 0.8012760368: [0.7808219178082, 0.2191780821918], 0.8358040908: [0.6301369863014, 0.3698630136986], 0.0562957403: [0.6712328767123, 0.3287671232877], 0.6230061925: [0.6027397260274, 0.3972602739726], 0.9555263652: [0.3150684931507, 0.6849315068493], 0.3775567649: [0.7534246575342, 0.2465753424658], 0.2330643648: [0.6301369863014, 0.3698630136986], 0.9453931319: [0.6301369863014, 0.3698630136986], 0.0153875023: [0.1095890410959, 0.8904109589041], 0.6695440045: [0.041095890411, 0.958904109589], 0.139238131: [0.5342465753425, 0.4657534246575], 0.6620379058: [0.0958904109589, 0.9041095890411], 0.5753424658: [0.0], 0.0735597673: [0.3013698630137, 0.6986301369863], 0.7858885344: [0.3013698630137, 0.6986301369863], 0.0367798837: [0.1780821917808, 0.8219178082192], 0.3021204729: [0.2602739726027, 0.7397260273973], 0.6387689998: [0.1369863013699, 0.8630136986301], 0.1550009383: [0.1917808219178, 0.8082191780822], 0.5066616626: [0.013698630137, 0.986301369863], 0.4942765997: [0.5479452054795, 0.4520547945205], 0.6440232689: [0.6301369863014, 0.3698630136986], 0.6489022331: [0.3013698630137, 0.6986301369863], 0.081441171: [0.027397260274, 0.972602739726], 0.9983111278: [0.041095890411, 0.958904109589], 0.6646650403: [0.2739726027397, 0.7260273972603], 0.8797147682: [0.5205479452055, 0.4794520547945], 0.9176205667: [0.013698630137, 0.986301369863], 0.6804278476: [0.5890410958904, 0.4109589041096], 0.8264214674: [0.0958904109589, 0.9041095890411], 0.2537061362: [0.2739726027397, 0.7260273972603], 0.7119534622: [0.5616438356164, 0.4383561643836], 0.8421842747: [0.6027397260274, 0.3972602739726], 0.7277162695: [0.1095890410959, 0.8904109589041], 0.0138862826: [0.6301369863014, 0.3698630136986], 0.9934321636: [0.2739726027397, 0.7260273972603], 0.8767123288: [0.0], 0.527678739: [0.2739726027397, 0.7260273972603], 0.7705010321: [0.5068493150685, 0.4931506849315], 0.8857196472: [0.0684931506849, 0.9315068493151], 0.8737098893: [0.0547945205479, 0.9452054794521], 0.8039031713: [0.1780821917808, 0.8219178082192], 0.4019515857: [0.1506849315068, 0.8493150684932], 0.9956839932: [0.1780821917808, 0.8219178082192], 0.0131356727: [0.2876712328767, 0.7123287671233], 0.2049164947: [0.2876712328767, 0.7123287671233], 0.4177143929: [0.7808219178082, 0.2191780821918], 0.0844436104: [0.5342465753425, 0.4657534246575], 0.2019140552: [0.6438356164384, 0.3561643835616], 0.5194220304: [0.7945205479452, 0.2054794520548], 0.1358603866: [0.7945205479452, 0.2054794520548], 0.5119159317: [0.3013698630137, 0.6986301369863], 0.7693751173: [0.5342465753425, 0.4657534246575], 0.8800900732: [0.5068493150685, 0.4931506849315], 0.2206793019: [0.6712328767123, 0.3287671232877], 0.7851379246: [0.8082191780822, 0.1917808219178], 0.1268530681: [0.6164383561644, 0.3835616438356], 0.0634265341: [0.1369863013699, 0.8630136986301], 0.1155939201: [0.6575342465753, 0.3424657534247], 0.02889848: [0.6712328767123, 0.3287671232877], 0.1347344718: [0.5753424657534, 0.4246575342466], 0.823419028: [0.3287671232877, 0.6712328767123], 0.2773503472: [0.5068493150685, 0.4931506849315], 0.8204165885: [0.8767123287671, 0.1232876712329], 0.4860198912: [0.6027397260274, 0.3972602739726], 0.1234753237: [0.6301369863014, 0.3698630136986], 0.150497279: [0.013698630137, 0.986301369863], 0.6057421655: [0.5205479452055, 0.4794520547945], 0.9292550197: [0.5753424657534, 0.4246575342466], 0.4195909176: [0.1369863013699, 0.8630136986301], 0.2874835804: [0.013698630137, 0.986301369863], 0.6308875962: [0.2602739726027, 0.7397260273973], 0.5295552637: [0.0684931506849, 0.9315068493151], 0.3220116345: [0.0821917808219, 0.9178082191781], 0.3298930381: [0.5479452054795, 0.4520547945205], 0.1688872209: [0.0958904109589, 0.9041095890411], 0.678176018: [0.0821917808219, 0.9178082191781], 0.7108275474: [0.8767123287671, 0.1232876712329], 0.9495214862: [0.1917808219178, 0.8082191780822], 0.8129104898: [0.1506849315068, 0.8493150684932], 0.9870519797: [0.2602739726027, 0.7397260273973], 0.046162507: [0.3013698630137, 0.6986301369863], 0.1846500281: [0.6027397260274, 0.3972602739726], 0.0923250141: [0.6438356164384, 0.3561643835616], 0.4743854382: [0.1369863013699, 0.8630136986301], 0.5486958154: [0.2602739726027, 0.7397260273973], 0.2953649841: [0.7534246575342, 0.2465753424658], 0.7674985926: [0.1643835616438, 0.8356164383562], 0.1925314318: [0.2602739726027, 0.7397260273973], 0.7112028523: [0.7945205479452, 0.2054794520548], 0.7491086508: [0.1780821917808, 0.8219178082192], 0.9908050291: [0.0958904109589, 0.9041095890411], 0.6507787577: [0.0821917808219, 0.9178082191781], 0.0544192156: [0.5616438356164, 0.4383561643836], 0.8147870144: [0.6027397260274, 0.3972602739726], 0.4139613436: [0.5205479452055, 0.4794520547945], 0.3693000563: [0.2876712328767, 0.7123287671233], 0.857947082: [0.1369863013699, 0.8630136986301], 0.4379808594: [0.5616438356164, 0.4383561643836], 0.0270219553: [0.5616438356164, 0.4383561643836], 0.562206793: [0.7671232876712, 0.2328767123288], 0.4297241509: [0.3013698630137, 0.6986301369863], 0.5719647213: [0.3150684931507, 0.6849315068493], 0.2188027773: [0.5616438356164, 0.4383561643836], 0.4454869582: [0.2739726027397, 0.7260273972603], 0.7517357853: [0.041095890411, 0.958904109589], 0.2525802214: [0.6575342465753, 0.3424657534247], 0.3880653031: [0.0958904109589, 0.9041095890411], 0.8515668981: [0.5342465753425, 0.4657534246575], 0.4612497654: [0.5890410958904, 0.4109589041096], 0.968286733: [0.1780821917808, 0.8219178082192], 0.5340589229: [0.013698630137, 0.986301369863], 0.2345655845: [0.1095890410959, 0.8904109589041], 0.0086320135: [0.1369863013699, 0.8630136986301], 0.8252955526: [0.5068493150685, 0.4931506849315], 0.4653781197: [0.5616438356164, 0.4383561643836], 0.8996059298: [0.5890410958904, 0.4109589041096], 0.2893601051: [0.1095890410959, 0.8904109589041], 0.9247513605: [0.0821917808219, 0.9178082191781], 0.6853068118: [0.1643835616438, 0.8356164383562], 0.3850628636: [0.6712328767123, 0.3287671232877], 0.8016513417: [0.2739726027397, 0.7260273972603], 0.2555826609: [0.0684931506849, 0.9315068493151], 0.643272659: [0.2876712328767, 0.7123287671233], 0.1643835616: [0.0], 0.8125351848: [0.8082191780822, 0.1917808219178], 0.6706699193: [0.2876712328767, 0.7123287671233], 0.7295927941: [0.6164383561644, 0.3835616438356], 0.6402702196: [0.6438356164384, 0.3561643835616], 0.6864327266: [0.3287671232877, 0.6712328767123], 0.7021955339: [0.6164383561644, 0.3835616438356], 0.0307750047: [0.5068493150685, 0.4931506849315], 0.9502720961: [0.3013698630137, 0.6986301369863], 0.3955714018: [0.041095890411, 0.958904109589], 0.1827735035: [0.1506849315068, 0.8493150684932], 0.3734284106: [0.6164383561644, 0.3835616438356], 0.3295177332: [0.2602739726027, 0.7397260273973], 0.1906549071: [0.7945205479452, 0.2054794520548], 0.0953274536: [0.2876712328767, 0.7123287671233], 0.510414712: [0.6164383561644, 0.3835616438356], 0.9604053293: [0.3287671232877, 0.6712328767123], 0.1985363108: [0.7808219178082, 0.2191780821918], 0.5348095327: [0.7671232876712, 0.2328767123288], 0.4049540251: [0.7534246575342, 0.2465753424658], 0.0251454307: [0.5753424657534, 0.4246575342466], 0.9776693564: [0.3013698630137, 0.6986301369863], 0.9179958716: [0.6301369863014, 0.3698630136986], 0.6747982736: [0.6164383561644, 0.3835616438356], 0.0067554888: [0.7808219178082, 0.2191780821918], 0.9592794145: [0.1643835616438, 0.8356164383562], 0.6826796772: [0.5753424657534, 0.4246575342466], 0.0555451304: [0.2602739726027, 0.7397260273973], 0.3107524864: [0.1780821917808, 0.8219178082192], 0.9018577594: [0.5753424657534, 0.4246575342466], 0.0641771439: [0.1780821917808, 0.8219178082192], 0.1283542879: [0.3013698630137, 0.6986301369863], 0.8770876337: [0.1643835616438, 0.8356164383562], 0.1163445299: [0.7808219178082, 0.2191780821918], 0.2326890599: [0.013698630137, 0.986301369863], 0.058172265: [0.5068493150685, 0.4931506849315], 0.1362356915: [0.027397260274, 0.972602739726], 0.3197598048: [0.1506849315068, 0.8493150684932], 0.5580784387: [0.6438356164384, 0.3561643835616], 0.2405704635: [0.7534246575342, 0.2465753424658], 0.1441170951: [0.2739726027397, 0.7260273972603], 0.0303996998: [0.5205479452055, 0.4794520547945], 0.967911428: [0.0684931506849, 0.9315068493151], 0.8286732971: [0.7808219178082, 0.2191780821918], 0.6485269281: [0.1506849315068, 0.8493150684932], 0.6211296679: [0.1506849315068, 0.8493150684932], 0.9600300244: [0.5479452054795, 0.4520547945205], 0.5742165509: [0.7945205479452, 0.2054794520548], 0.3557890786: [0.5616438356164, 0.4383561643836], 0.945017827: [0.013698630137, 0.986301369863], 0.846312629: [0.0547945205479, 0.9452054794521], 0.1703884406: [0.6575342465753, 0.3424657534247], 0.6590354663: [0.3287671232877, 0.6712328767123], 0.4931506849: [0.0], 0.1782698442: [0.6301369863014, 0.3698630136986], 0.7262150497: [0.6301369863014, 0.3698630136986], 0.5873522237: [0.041095890411, 0.958904109589], 0.3407768812: [0.041095890411, 0.958904109589], 0.741977857: [0.5342465753425, 0.4657534246575], 0.7603677988: [0.0821917808219, 0.9178082191781], 0.3801838994: [0.6849315068493, 0.3150684931507], 0.7386001126: [0.7945205479452, 0.2054794520548], 0.9221242259: [0.8082191780822, 0.1917808219178], 0.7701257272: [0.5205479452055, 0.4794520547945], 0.8207918934: [0.7945205479452, 0.2054794520548], 0.4353537249: [0.0547945205479, 0.9452054794521], 0.3028710828: [0.6712328767123, 0.3287671232877], 0.4169637831: [0.6575342465753, 0.3424657534247], 0.7431037718: [0.5068493150685, 0.4931506849315], 0.4248451867: [0.6301369863014, 0.3698630136986], 0.2124225934: [0.0821917808219, 0.9178082191781], 0.0093826234: [0.1780821917808, 0.8219178082192], 0.7115781573: [0.027397260274, 0.972602739726], 0.4758866579: [0.6438356164384, 0.3561643835616], 0.220303997: [0.5479452054795, 0.4520547945205], 0.1733908801: [0.0684931506849, 0.9315068493151], 0.4484893976: [0.6438356164384, 0.3561643835616], 0.3831863389: [0.5616438356164, 0.4383561643836], 0.5085381873: [0.8904109589041, 0.1095890410959], 0.1140927003: [0.0958904109589, 0.9041095890411], 0.0015012197: [0.6712328767123, 0.3287671232877], 0.0776881216: [0.5890410958904, 0.4109589041096], 0.8478138488: [0.8767123287671, 0.1232876712329], 0.9416400826: [0.6438356164384, 0.3561643835616], 0.8909739163: [0.7671232876712, 0.2328767123288], 0.9574028898: [0.8767123287671, 0.1232876712329], 0.9731656971: [0.7671232876712, 0.2328767123288], 0.2923625446: [0.1506849315068, 0.8493150684932], 0.2465753425: [0.0], 0.0375304935: [0.6438356164384, 0.3561643835616], 0.1501219741: [0.2876712328767, 0.7123287671233], 0.0750609871: [0.6027397260274, 0.3972602739726], 0.3081253518: [0.7808219178082, 0.2191780821918], 0.8433101895: [0.7534246575342, 0.2465753424658], 0.6293863764: [0.027397260274, 0.972602739726], 0.0319009195: [0.0958904109589, 0.9041095890411], 0.5021580034: [0.0684931506849, 0.9315068493151], 0.660911991: [0.5068493150685, 0.4931506849315], 0.817414149: [0.5890410958904, 0.4109589041096], 0.8553199475: [0.3424657534247, 0.6575342465753], 0.8099080503: [0.1095890410959, 0.8904109589041], 0.1763933196: [0.041095890411, 0.958904109589], 0.7528617001: [0.2876712328767, 0.7123287671233], 0.5182961156: [0.5753424657534, 0.4246575342466], 0.3606680428: [0.0958904109589, 0.9041095890411], 0.5239256896: [0.5068493150685, 0.4931506849315], 0.0296490899: [0.5342465753425, 0.4657534246575], 0.3152561456: [0.6301369863014, 0.3698630136986], 0.3764308501: [0.6027397260274, 0.3972602739726], 0.0960780634: [0.6301369863014, 0.3698630136986], 0.1921561269: [0.1643835616438, 0.8356164383562], 0.3921936573: [0.1369863013699, 0.8630136986301], 0.7843873147: [0.6164383561644, 0.3835616438356], 0.1658847814: [0.6712328767123, 0.3287671232877], 0.9896791143: [0.5068493150685, 0.4931506849315], 0.4079564646: [0.0547945205479, 0.9452054794521], 0.829048602: [0.2739726027397, 0.7260273972603], 0.034528054: [0.2739726027397, 0.7260273972603], 0.7134546819: [0.5479452054795, 0.4520547945205], 0.8763370238: [0.5616438356164, 0.4383561643836], 0.1092137362: [0.5616438356164, 0.4383561643836], 0.9337586789: [0.5342465753425, 0.4657534246575], 0.8920998311: [0.1095890410959, 0.8904109589041], 0.75361231: [0.6301369863014, 0.3698630136986], 0.4526177519: [0.7671232876712, 0.2328767123288], 0.226308876: [0.2739726027397, 0.7260273972603], 0.1298555076: [0.6027397260274, 0.3972602739726], 0.5325577031: [0.041095890411, 0.958904109589], 0.550947645: [0.5205479452055, 0.4794520547945], 0.4796397073: [0.6301369863014, 0.3698630136986], 0.1377369112: [0.2602739726027, 0.7397260273973], 0.3475323701: [0.3013698630137, 0.6986301369863], 0.7243385251: [0.041095890411, 0.958904109589], 0.2420716832: [0.5890410958904, 0.4109589041096], 0.9998123475: [0.013698630137, 0.986301369863], 0.0728091574: [0.1917808219178, 0.8082191780822], 0.4920247701: [0.7945205479452, 0.2054794520548], 0.7213360856: [0.0684931506849, 0.9315068493151], 0.1249765434: [0.1095890410959, 0.8904109589041], 0.2499530869: [0.5068493150685, 0.4931506849315], 0.5614561831: [0.013698630137, 0.986301369863], 0.6113717395: [0.1369863013699, 0.8630136986301], 0.5539500844: [0.3424657534247, 0.6575342465753], 0.7029461437: [0.8082191780822, 0.1917808219178], 0.6271345468: [0.0547945205479, 0.9452054794521], 0.3201351098: [0.3013698630137, 0.6986301369863], 0.382811034: [0.027397260274, 0.972602739726], 0.7157065115: [0.5068493150685, 0.4931506849315], 0.1640082567: [0.5616438356164, 0.4383561643836], 0.6586601614: [0.5479452054795, 0.4520547945205], 0.3358979171: [0.2739726027397, 0.7260273972603], 0.544942766: [0.0547945205479, 0.9452054794521], 0.9360105085: [0.0958904109589, 0.9041095890411], 0.5205479452: [0.0], 0.863576656: [0.7671232876712, 0.2328767123288], 0.8699568399: [0.0821917808219, 0.9178082191781], 0.3516607243: [0.5890410958904, 0.4109589041096], 0.1238506286: [0.7671232876712, 0.2328767123288], 0.4518671421: [0.013698630137, 0.986301369863], 0.179771064: [0.1095890410959, 0.8904109589041], 0.4293488459: [0.1506849315068, 0.8493150684932], 0.4954025145: [0.5342465753425, 0.4657534246575], 0.5652092325: [0.6164383561644, 0.3835616438356], 0.3632951773: [0.2739726027397, 0.7260273972603], 0.214674423: [0.5890410958904, 0.4109589041096], 0.7911428035: [0.3150684931507, 0.6849315068493], 0.9769187465: [0.8082191780822, 0.1917808219178], 0.7952711578: [0.2602739726027, 0.7397260273973], 0.4042034153: [0.0821917808219, 0.9178082191781], 0.2060424095: [0.7671232876712, 0.2328767123288], 0.8744604992: [0.5753424657534, 0.4246575342466], 0.4199662226: [0.0684931506849, 0.9315068493151], 0.7956464628: [0.5479452054795, 0.4520547945205], 0.7427284669: [0.5205479452055, 0.4794520547945], 0.4991555639: [0.3424657534247, 0.6575342465753], 0.0281478701: [0.2602739726027, 0.7397260273973], 0.4514918371: [0.2876712328767, 0.7123287671233], 0.8279226872: [0.3424657534247, 0.6575342465753], 0.5145430662: [0.7534246575342, 0.2465753424658], 0.916119347: [0.041095890411, 0.958904109589], 0.2638393695: [0.6164383561644, 0.3835616438356], 0.9318821543: [0.1643835616438, 0.8356164383562], 0.875211109: [0.8767123287671, 0.1232876712329], 0.0679301933: [0.2876712328767, 0.7123287671233], 0.3790579846: [0.5890410958904, 0.4109589041096], 0.6034903359: [0.2602739726027, 0.7397260273973], 0.5618314881: [0.6301369863014, 0.3698630136986], 0.1437417902: [0.7808219178082, 0.2191780821918], 0.3100018765: [0.1369863013699, 0.8630136986301], 0.2510790017: [0.0958904109589, 0.9041095890411], 0.5907299681: [0.1095890410959, 0.8904109589041], 0.2480765622: [0.6712328767123, 0.3287671232877], 0.7123287671: [0.0], 0.5775942954: [0.5342465753425, 0.4657534246575], 0.7738787765: [0.7808219178082, 0.2191780821918], 0.979545881: [0.0821917808219, 0.9178082191781], 0.4556201914: [0.6164383561644, 0.3835616438356], 0.66691687: [0.1780821917808, 0.8219178082192], 0.6395196097: [0.1780821917808, 0.8219178082192], 0.6789266279: [0.7534246575342, 0.2465753424658], 0.3895665228: [0.6575342465753, 0.3424657534247], 0.9829236254: [0.3150684931507, 0.6849315068493], 0.6984424845: [0.013698630137, 0.986301369863], 0.1778945393: [0.013698630137, 0.986301369863], 0.0889472697: [0.7808219178082, 0.2191780821918], 0.7877650591: [0.0821917808219, 0.9178082191781], 0.0821917808: [0.0], 0.3715518859: [0.8904109589041, 0.1095890410959], 0.185775943: [0.7534246575342, 0.2465753424658], 0.9270031901: [0.5890410958904, 0.4109589041096], 0.4687558641: [0.5205479452055, 0.4794520547945], 0.9052355038: [0.5479452054795, 0.4520547945205], 0.4282229311: [0.6164383561644, 0.3835616438356], 0.8035278664: [0.0684931506849, 0.9315068493151], 0.6560330268: [0.8767123287671, 0.1232876712329], 0.4109589041: [0.0], 0.835053481: [0.2876712328767, 0.7123287671233], 0.8508162882: [0.3287671232877, 0.6712328767123], 0.0683054982: [0.013698630137, 0.986301369863], 0.4263464065: [0.8904109589041, 0.1095890410959], 0.8665790955: [0.6164383561644, 0.3835616438356], 0.9863013699: [0.0], 0.2199286921: [0.2602739726027, 0.7397260273973], 0.5490711203: [0.5479452054795, 0.4520547945205], 0.4477387878: [0.1780821917808, 0.8219178082192], 0.8981047101: [0.7534246575342, 0.2465753424658], 0.2278100957: [0.1369863013699, 0.8630136986301], 0.7922687183: [0.5753424657534, 0.4246575342466], 0.5227997748: [0.5342465753425, 0.4657534246575], 0.463501595: [0.5753424657534, 0.4246575342466], 0.2705948583: [0.6849315068493, 0.3150684931507], 0.5933571026: [0.8082191780822, 0.1917808219178], 0.5569525239: [0.0684931506849, 0.9315068493151], 0.4792644023: [0.013698630137, 0.986301369863], 0.3471570651: [0.1506849315068, 0.8493150684932], 0.9742916119: [0.1095890410959, 0.8904109589041], 0.243572903: [0.0547945205479, 0.9452054794521], 0.8489397636: [0.5616438356164, 0.4383561643836], 0.8782135485: [0.3287671232877, 0.6712328767123], 0.6016138112: [0.7945205479452, 0.2054794520548], 0.307374742: [0.6575342465753, 0.3424657534247], 0.9878025896: [0.3287671232877, 0.6712328767123], 0.1576280728: [0.0821917808219, 0.9178082191781], 0.5847250891: [0.1780821917808, 0.8219178082192], 0.4210921374: [0.6438356164384, 0.3561643835616], 0.0183899418: [0.1506849315068, 0.8493150684932], 0.1655094765: [0.5479452054795, 0.4520547945205], 0.8373053106: [0.1095890410959, 0.8904109589041], 0.3389003565: [0.6438356164384, 0.3561643835616], 0.08669544: [0.0958904109589, 0.9041095890411], 0.9589041096: [0.0], 0.3546631638: [0.8767123287671, 0.1232876712329], 0.9874272847: [0.5479452054795, 0.4520547945205], 0.7224620004: [0.6438356164384, 0.3561643835616], 0.2214299118: [0.5342465753425, 0.4657534246575], 0.84030775: [0.1506849315068, 0.8493150684932], 0.5494464252: [0.3287671232877, 0.6712328767123], 0.6980671796: [0.2876712328767, 0.7123287671233], 0.4316006755: [0.0821917808219, 0.9178082191781], 0.4976543442: [0.0958904109589, 0.9041095890411], 0.7310940139: [0.3013698630137, 0.6986301369863], 0.4503659223: [0.041095890411, 0.958904109589], 0.5967348471: [0.7534246575342, 0.2465753424658], 0.7791330456: [0.041095890411, 0.958904109589], 0.4368549446: [0.8767123287671, 0.1232876712329], 0.422968662: [0.041095890411, 0.958904109589], 0.3047476074: [0.5068493150685, 0.4931506849315], 0.5134171514: [0.6027397260274, 0.3972602739726], 0.8789641584: [0.5342465753425, 0.4657534246575], 0.4387314693: [0.1643835616438, 0.8356164383562], 0.614749484: [0.041095890411, 0.958904109589], 0.8905986114: [0.6301369863014, 0.3698630136986], 0.017264027: [0.6164383561644, 0.3835616438356], 0.9063614187: [0.5342465753425, 0.4657534246575], 0.3550384688: [0.7945205479452, 0.2054794520548], 0.2311878401: [0.041095890411, 0.958904109589], 0.4376055545: [0.027397260274, 0.972602739726], 0.266841809: [0.6027397260274, 0.3972602739726], 0.5385625821: [0.8082191780822, 0.1917808219178], 0.1373616063: [0.1643835616438, 0.8356164383562], 0.0686808032: [0.6301369863014, 0.3698630136986], 0.3813098142: [0.5753424657534, 0.4246575342466], 0.2826046163: [0.1369863013699, 0.8630136986301], 0.1118408707: [0.5342465753425, 0.4657534246575], 0.0394070182: [0.041095890411, 0.958904109589], 0.9851754551: [0.7945205479452, 0.2054794520548], 0.0476637268: [0.6027397260274, 0.3972602739726], 0.2495777819: [0.5205479452055, 0.4794520547945], 0.9307562394: [0.027397260274, 0.972602739726], 0.6098705198: [0.2739726027397, 0.7260273972603], 0.6256333271: [0.5890410958904, 0.4109589041096], 0.5062863577: [0.2876712328767, 0.7123287671233], 0.1610058172: [0.6849315068493, 0.3150684931507], 0.5997372865: [0.0547945205479, 0.9452054794521], 0.6571589416: [0.5616438356164, 0.4383561643836], 0.2717207731: [0.5753424657534, 0.4246575342466], 0.4728842184: [0.2739726027397, 0.7260273972603], 0.6729217489: [0.1095890410959, 0.8904109589041], 0.6860574217: [0.5479452054795, 0.4520547945205], 0.9183711766: [0.7671232876712, 0.2328767123288], 0.6312629011: [0.5479452054795, 0.4520547945205], 0.5220491649: [0.3287671232877, 0.6712328767123], 0.1872771627: [0.5890410958904, 0.4109589041096], 0.3970726215: [0.013698630137, 0.986301369863], 0.382435729: [0.7945205479452, 0.2054794520548], 0.2649652843: [0.1506849315068, 0.8493150684932], 0.1951585663: [0.5068493150685, 0.4931506849315], 0.0975792832: [0.1095890410959, 0.8904109589041], 0.7937699381: [0.027397260274, 0.972602739726], 0.9577781948: [0.7945205479452, 0.2054794520548], 0.7731281666: [0.3424657534247, 0.6575342465753], 0.8594483017: [0.6438356164384, 0.3561643835616], 0.6778007131: [0.6027397260274, 0.3972602739726], 0.6717958341: [0.7671232876712, 0.2328767123288], 0.5456933759: [0.5753424657534, 0.4246575342466], 0.43497842: [0.6849315068493, 0.3150684931507], 0.0135109777: [0.013698630137, 0.986301369863], 0.7806342653: [0.013698630137, 0.986301369863], 0.6856821167: [0.2602739726027, 0.7397260273973], 0.2293113154: [0.6438356164384, 0.3561643835616], 0.823043723: [0.5479452054795, 0.4520547945205], 0.2942390692: [0.6027397260274, 0.3972602739726], 0.1185963595: [0.0684931506849, 0.9315068493151], 0.2371927191: [0.1917808219178, 0.8082191780822], 0.0592981798: [0.0958904109589, 0.9041095890411], 0.7337211484: [0.7534246575342, 0.2465753424658], 0.0701820229: [0.1095890410959, 0.8904109589041], 0.5760930756: [0.2602739726027, 0.7397260273973], 0.2450741227: [0.8767123287671, 0.1232876712329], 0.7397260274: [0.0], 0.2946143742: [0.0821917808219, 0.9178082191781], 0.9656595984: [0.7808219178082, 0.2191780821918], 0.1512478889: [0.7671232876712, 0.2328767123288], 0.3103771815: [0.0684931506849, 0.9315068493151], 0.6233814975: [0.0821917808219, 0.9178082191781], 0.9709138675: [0.041095890411, 0.958904109589], 0.6661662601: [0.1369863013699, 0.8630136986301], 0.4777631826: [0.041095890411, 0.958904109589], 0.5892287484: [0.6301369863014, 0.3698630136986], 0.0893225746: [0.2739726027397, 0.7260273972603], 0.6004878964: [0.5753424657534, 0.4246575342466], 0.341902796: [0.2876712328767, 0.7123287671233], 0.2912366298: [0.6164383561644, 0.3835616438356], 0.9660349034: [0.2739726027397, 0.7260273972603], 0.4924000751: [0.027397260274, 0.972602739726], 0.7127040721: [0.1643835616438, 0.8356164383562], 0.3576656033: [0.6712328767123, 0.3287671232877], 0.3655470069: [0.1780821917808, 0.8219178082192], 0.7093263276: [0.0547945205479, 0.9452054794521], 0.7442296866: [0.0958904109589, 0.9041095890411], 0.8624507412: [0.2876712328767, 0.7123287671233], 0.52167386: [0.5479452054795, 0.4520547945205], 0.7599924939: [0.6027397260274, 0.3972602739726], 0.730343404: [0.8082191780822, 0.1917808219178], 0.1932820417: [0.6712328767123, 0.3287671232877], 0.4075811597: [0.6849315068493, 0.3150684931507], 0.5982360668: [0.5890410958904, 0.4109589041096], 0.2011634453: [0.1780821917808, 0.8219178082192], 0.1005817227: [0.1506849315068, 0.8493150684932], 0.7055732783: [0.0821917808219, 0.9178082191781], 0.0090073184: [0.0684931506849, 0.9315068493151], 0.6061174704: [0.5068493150685, 0.4931506849315], 0.2090448489: [0.6164383561644, 0.3835616438356], 0.4180896979: [0.2739726027397, 0.7260273972603], 0.8680803153: [0.3013698630137, 0.6986301369863], 0.8226684181: [0.2602739726027, 0.7397260273973], 0.608744605: [0.3424657534247, 0.6575342465753], 0.8677050103: [0.1506849315068, 0.8493150684932], 0.2169262526: [0.5753424657534, 0.4246575342466], 0.0788140364: [0.6849315068493, 0.3150684931507], 0.666541565: [0.0684931506849, 0.9315068493151], 0.6012385063: [0.8767123287671, 0.1232876712329], 0.5291799587: [0.1369863013699, 0.8630136986301], 0.1110902608: [0.6712328767123, 0.3287671232877], 0.6170013136: [0.7671232876712, 0.2328767123288], 0.1309814224: [0.7534246575342, 0.2465753424658], 0.9281291049: [0.3150684931507, 0.6849315068493], 0.8939763558: [0.6164383561644, 0.3835616438356], 0.6834302871: [0.8767123287671, 0.1232876712329], 0.6297616814: [0.5616438356164, 0.4383561643836], 0.243197598: [0.6849315068493, 0.3150684931507], 0.4863951961: [0.0821917808219, 0.9178082191781], 0.3572902984: [0.5479452054795, 0.4520547945205], 0.9885531995: [0.5342465753425, 0.4657534246575], 0.301369863: [0.0], 0.6158753988: [0.2876712328767, 0.7123287671233], 0.040532933: [0.2876712328767, 0.7123287671233], 0.631638206: [0.3287671232877, 0.6712328767123], 0.6474010133: [0.6164383561644, 0.3835616438356], 0.6455244886: [0.1095890410959, 0.8904109589041], 0.0412835429: [0.6301369863014, 0.3698630136986], 0.2567085757: [0.6438356164384, 0.3561643835616], 0.0806905611: [0.8767123287671, 0.1232876712329], 0.1730155752: [0.1369863013699, 0.8630136986301], 0.7855132295: [0.1506849315068, 0.8493150684932], 0.7078251079: [0.5890410958904, 0.4109589041096], 0.353912554: [0.5753424657534, 0.4246575342466], 0.9131169075: [0.0684931506849, 0.9315068493151], 0.9056108088: [0.3287671232877, 0.6712328767123], 0.8500656784: [0.2602739726027, 0.7397260273973], 0.3696753612: [0.013698630137, 0.986301369863], 0.9228748358: [0.3013698630137, 0.6986301369863], 0.3377744417: [0.0684931506849, 0.9315068493151], 0.1887783824: [0.0547945205479, 0.9452054794521], 0.7682492025: [0.5479452054795, 0.4520547945205], 0.330268343: [0.6712328767123, 0.3287671232877], 0.2645899794: [0.1917808219178, 0.8082191780822], 0.5667104522: [0.3013698630137, 0.6986301369863], 0.3332707825: [0.0958904109589, 0.9041095890411], 0.7168324263: [0.0958904109589, 0.9041095890411], 0.0668042785: [0.041095890411, 0.958904109589], 0.0213923813: [0.7534246575342, 0.2465753424658], 0.5483205104: [0.1643835616438, 0.8356164383562], 0.8313004316: [0.1780821917808, 0.8219178082192], 0.0517920811: [0.0547945205479, 0.9452054794521], 0.0045036592: [0.0958904109589, 0.9041095890411], 0.8470632389: [0.5753424657534, 0.4246575342466], 0.8628260462: [0.013698630137, 0.986301369863], 0.272471383: [0.8767123287671, 0.1232876712329], 0.6950647401: [0.6438356164384, 0.3561643835616], 0.5032839182: [0.6438356164384, 0.3561643835616], 0.4537436667: [0.8904109589041, 0.1095890410959], 0.26083693: [0.7671232876712, 0.2328767123288], 0.8222931132: [0.1643835616438, 0.8356164383562], 0.4451116532: [0.7808219178082, 0.2191780821918], 0.9521486208: [0.0821917808219, 0.9178082191781], 0.0071307938: [0.2739726027397, 0.7260273972603], 0.5663351473: [0.1506849315068, 0.8493150684932], 0.2829799212: [0.0684931506849, 0.9315068493151], 0.3490335898: [0.6027397260274, 0.3972602739726], 0.6755488835: [0.8082191780822, 0.1917808219178], 0.9994370426: [0.2876712328767, 0.7123287671233], 0.3133796209: [0.041095890411, 0.958904109589], 0.6267592419: [0.3150684931507, 0.6849315068493], 0.2882341903: [0.7671232876712, 0.2328767123288], 0.3291424282: [0.1643835616438, 0.8356164383562], 0.8459373241: [0.3150684931507, 0.6849315068493], 0.6714205292: [0.6301369863014, 0.3698630136986], 0.7138299869: [0.3287671232877, 0.6712328767123], 0.6871833365: [0.5342465753425, 0.4657534246575], 0.9134922124: [0.1780821917808, 0.8219178082192], 0.3527866391: [0.6849315068493, 0.3150684931507], 0.5783449052: [0.5205479452055, 0.4794520547945], 0.4680052543: [0.5342465753425, 0.4657534246575], 0.5896040533: [0.7671232876712, 0.2328767123288], 0.0120097579: [0.041095890411, 0.958904109589], 0.1831488084: [0.3013698630137, 0.6986301369863], 0.7659973729: [0.7945205479452, 0.2054794520548], 0.9949333834: [0.1369863013699, 0.8630136986301], 0.1947832614: [0.5205479452055, 0.4794520547945], 0.3974479264: [0.6301369863014, 0.3698630136986], 0.7975229874: [0.5205479452055, 0.4794520547945], 0.7374741978: [0.5753424657534, 0.4246575342466], 0.0030024395: [0.5205479452055, 0.4794520547945], 0.4132107337: [0.5342465753425, 0.4657534246575], 0.9724150873: [0.013698630137, 0.986301369863], 0.2105460687: [0.3013698630137, 0.6986301369863], 0.9074873335: [0.5068493150685, 0.4931506849315], 0.428973541: [0.8082191780822, 0.1917808219178], 0.2184274723: [0.027397260274, 0.972602739726], 0.886845562: [0.6438356164384, 0.3561643835616], 0.0551698255: [0.1643835616438, 0.8356164383562], 0.9026083693: [0.8767123287671, 0.1232876712329], 0.5359354476: [0.8904109589041, 0.1095890410959], 0.5599549634: [0.041095890411, 0.958904109589], 0.1324826421: [0.5890410958904, 0.4109589041096], 0.4657534247: [0.0], 0.475136048: [0.1780821917808, 0.8219178082192], 0.2728466879: [0.7945205479452, 0.2054794520548], 0.9498967911: [0.1506849315068, 0.8493150684932], 0.1403640458: [0.5068493150685, 0.4931506849315], 0.3145055357: [0.2876712328767, 0.7123287671233], 0.5745918559: [0.027397260274, 0.972602739726], 0.3805592044: [0.0547945205479, 0.9452054794521], 0.9037342841: [0.5616438356164, 0.4383561643836], 0.6368924751: [0.7808219178082, 0.2191780821918], 0.5190467255: [0.8767123287671, 0.1232876712329], 0.3043723025: [0.5205479452055, 0.4794520547945], 0.5659598424: [0.8082191780822, 0.1917808219178], 0.8080315256: [0.013698630137, 0.986301369863], 0.1666353913: [0.5342465753425, 0.4657534246575], 0.6849315068: [0.0], 0.9142428223: [0.6438356164384, 0.3561643835616], 0.962281854: [0.5068493150685, 0.4931506849315], 0.1745167949: [0.6438356164384, 0.3561643835616], 0.8309251267: [0.0684931506849, 0.9315068493151], 0.3569149934: [0.2602739726027, 0.7397260273973], 0.05779696: [0.5205479452055, 0.4794520547945], 0.1823981985: [0.1917808219178, 0.8082191780822], 0.0911990993: [0.0684931506849, 0.9315068493151], 0.7900168887: [0.5890410958904, 0.4109589041096], 0.6023644211: [0.5616438356164, 0.4383561643836], 0.1902796022: [0.8767123287671, 0.1232876712329], 0.7742540814: [0.2739726027397, 0.7260273972603], 0.5336836179: [0.2876712328767, 0.7123287671233], 0.6049915556: [0.5342465753425, 0.4657534246575]}
averages_odd = {0.41077125164: [0.013698630137, 0.986301369863], 0.41865265528: [0.7534246575342, 0.2465753424658], 0.60630512291: [0.6164383561644, 0.3835616438356], 0.21261024583: [0.2739726027397, 0.7260273972603], 0.67198348658: [0.2602739726027, 0.7397260273973], 0.99549634078: [0.5890410958904, 0.4109589041096], 0.92644023269: [0.1369863013699, 0.8630136986301], 0.92493901295: [0.2739726027397, 0.7260273972603], 0.61944079565: [0.5205479452055, 0.4794520547945], 0.06398949146: [0.5890410958904, 0.4109589041096], 0.71927190843: [0.0821917808219, 0.9178082191781], 0.26252580221: [0.5342465753425, 0.4657534246575], 0.11615687746: [0.6027397260274, 0.3972602739726], 0.73503471571: [0.0684931506849, 0.9315068493151], 0.27040720586: [0.6438356164384, 0.3561643835616], 0.23625445675: [0.5068493150685, 0.4931506849315], 0.7594295365: [0.3424657534247, 0.6575342465753], 0.2782886095: [0.1917808219178, 0.8082191780822], 0.76656033027: [0.2876712328767, 0.7123287671233], 0.28617001314: [0.8767123287671, 0.1232876712329], 0.779696003: [0.7945205479452, 0.2054794520548], 0.03659223119: [0.5890410958904, 0.4109589041096], 0.49483955714: [0.1095890410959, 0.8904109589041], 0.15030962657: [0.5616438356164, 0.4383561643836], 0.30193282042: [0.7671232876712, 0.2328767123288], 0.81122161756: [0.5205479452055, 0.4794520547945], 0.0771251642: [0.1369863013699, 0.8630136986301], 0.82698442485: [0.3013698630137, 0.6986301369863], 0.64308500657: [0.027397260274, 0.972602739726], 0.84274723213: [0.2739726027397, 0.7260273972603], 0.00506661663: [0.3013698630137, 0.6986301369863], 0.85851003941: [0.5890410958904, 0.4109589041096], 0.16607243385: [0.1095890410959, 0.8904109589041], 0.87164571214: [0.1369863013699, 0.8630136986301], 0.78307374742: [0.5342465753425, 0.4657534246575], 0.88740851942: [0.0547945205479, 0.9452054794521], 0.49146181272: [0.041095890411, 0.958904109589], 0.48845937324: [0.0684931506849, 0.9315068493151], 0.35447551135: [0.041095890411, 0.958904109589], 0.85963595421: [0.6849315068493, 0.3150684931507], 0.85363107525: [0.1917808219178, 0.8082191780822], 0.93206980672: [0.7671232876712, 0.2328767123288], 0.37023831863: [0.1643835616438, 0.8356164383562], 0.54625633327: [0.041095890411, 0.958904109589], 0.04710076938: [0.3424657534247, 0.6575342465753], 0.56201914055: [0.1643835616438, 0.8356164383562], 0.19234377932: [0.7671232876712, 0.2328767123288], 0.57515481329: [0.013698630137, 0.986301369863], 0.12478889097: [0.3287671232877, 0.6712328767123], 0.09814224057: [0.5342465753425, 0.4657534246575], 0.59354475511: [0.0958904109589, 0.9041095890411], 0.77631825859: [0.5890410958904, 0.4109589041096], 0.99099268155: [0.1506849315068, 0.8493150684932], 0.83786826797: [0.5342465753425, 0.4657534246575], 0.62244323513: [0.3424657534247, 0.6575342465753], 0.67461062113: [0.5068493150685, 0.4931506849315], 0.10602364421: [0.6438356164384, 0.3561643835616], 0.65396884969: [0.6438356164384, 0.3561643835616], 0.43066241321: [0.3424657534247, 0.6575342465753], 0.66973165697: [0.8767123287671, 0.1232876712329], 0.43854381685: [0.6301369863014, 0.3698630136986], 0.68549446425: [0.7671232876712, 0.2328767123288], 0.95196096829: [0.7808219178082, 0.2191780821918], 0.69863013699: [0.0], 0.25351848377: [0.0821917808219, 0.9178082191781], 0.95721523738: [0.041095890411, 0.958904109589], 0.13004316007: [0.7808219178082, 0.2191780821918], 0.06699193094: [0.8767123287671, 0.1232876712329], 0.23437793207: [0.3287671232877, 0.6712328767123], 0.74329142428: [0.6164383561644, 0.3835616438356], 0.37887033215: [0.0684931506849, 0.9315068493151], 0.69825483205: [0.5616438356164, 0.4383561643836], 0.24225933571: [0.1780821917808, 0.8219178082192], 0.77481703884: [0.7534246575342, 0.2465753424658], 0.00769375117: [0.7534246575342, 0.2465753424658], 0.71401763933: [0.1095890410959, 0.8904109589041], 0.3060611747: [0.1506849315068, 0.8493150684932], 0.82210546069: [0.6301369863014, 0.3698630136986], 0.31394257835: [0.7945205479452, 0.2054794520548], 0.83111277913: [0.5890410958904, 0.4109589041096], 0.32182398199: [0.7808219178082, 0.2191780821918], 0.8510039407: [0.1095890410959, 0.8904109589041], 0.16419590918: [0.013698630137, 0.986301369863], 0.22837305311: [0.5890410958904, 0.4109589041096], 0.17207731282: [0.7534246575342, 0.2465753424658], 0.34546819291: [0.5205479452055, 0.4794520547945], 0.25989866767: [0.5616438356164, 0.4383561643836], 0.50985175455: [0.5205479452055, 0.4794520547945], 0.52561456183: [0.3013698630137, 0.6986301369863], 0.92981797711: [0.041095890411, 0.958904109589], 0.54137736911: [0.2739726027397, 0.7260273972603], 0.37436667292: [0.0958904109589, 0.9041095890411], 0.55714017639: [0.5890410958904, 0.4109589041096], 0.09589041096: [0.0], 0.3901294802: [0.6027397260274, 0.3972602739726], 0.58603865641: [0.0547945205479, 0.9452054794521], 0.58866579096: [0.5616438356164, 0.4383561643836], 0.39801088384: [0.2602739726027, 0.7397260273973], 0.84012009758: [0.0958904109589, 0.9041095890411], 0.40589228748: [0.1369863013699, 0.8630136986301], 0.37924563708: [0.1780821917808, 0.8219178082192], 0.87502345656: [0.041095890411, 0.958904109589], 0.00656783637: [0.6027397260274, 0.3972602739726], 0.21411146557: [0.1369863013699, 0.8630136986301], 0.66222555827: [0.1506849315068, 0.8493150684932], 0.10902608369: [0.2876712328767, 0.7123287671233], 0.67798836555: [0.7808219178082, 0.2191780821918], 0.68061550009: [0.1780821917808, 0.8219178082192], 0.13717395384: [0.6301369863014, 0.3698630136986], 0.12553950084: [0.5342465753425, 0.4657534246575], 0.05648339276: [0.1095890410959, 0.8904109589041], 0.99849878026: [0.8767123287671, 0.1232876712329], 0.98273597298: [0.6438356164384, 0.3561643835616], 0.22987427285: [0.0547945205479, 0.9452054794521], 0.47907674986: [0.5616438356164, 0.4383561643836], 0.46631638206: [0.7671232876712, 0.2328767123288], 0.27340964534: [0.2876712328767, 0.7123287671233], 0.75417526741: [0.2602739726027, 0.7397260273973], 0.06999437043: [0.3287671232877, 0.6712328767123], 0.14392944267: [0.0821917808219, 0.9178082191781], 0.63182585851: [0.1095890410959, 0.8904109589041], 0.29705385626: [0.1780821917808, 0.8219178082192], 0.49784199662: [0.1506849315068, 0.8493150684932], 0.80146368925: [0.0821917808219, 0.9178082191781], 0.15181084631: [0.5479452054795, 0.4520547945205], 0.81722649653: [0.0684931506849, 0.9315068493151], 0.07787577407: [0.1780821917808, 0.8219178082192], 0.80972039782: [0.6712328767123, 0.3287671232877], 0.15969224995: [0.0684931506849, 0.9315068493151], 0.6423343967: [0.8767123287671, 0.1232876712329], 0.02045411897: [0.7808219178082, 0.2191780821918], 0.86188778382: [0.7945205479452, 0.2054794520548], 0.33383373991: [0.3013698630137, 0.6986301369863], 0.94595608932: [0.2602739726027, 0.7397260273973], 0.34171514355: [0.027397260274, 0.972602739726], 0.78232313755: [0.6712328767123, 0.3287671232877], 0.3495965472: [0.2739726027397, 0.7260273972603], 0.7264027022: [0.1643835616438, 0.8356164383562], 0.52073559767: [0.6301369863014, 0.3698630136986], 0.79020454119: [0.1780821917808, 0.8219178082192], 0.36535935448: [0.5890410958904, 0.4109589041096], 0.53649840495: [0.5342465753425, 0.4657534246575], 0.93807468568: [0.6027397260274, 0.3972602739726], 0.37324075812: [0.5068493150685, 0.4931506849315], 0.54963407769: [0.1095890410959, 0.8904109589041], 0.29667855132: [0.0684931506849, 0.9315068493151], 0.26928129105: [0.0684931506849, 0.9315068493151], 0.81760180146: [0.1780821917808, 0.8219178082192], 0.09889285044: [0.5205479452055, 0.4794520547945], 0.02570838807: [0.041095890411, 0.958904109589], 0.62844811409: [0.041095890411, 0.958904109589], 0.41790204541: [0.0821917808219, 0.9178082191781], 0.43666729218: [0.041095890411, 0.958904109589], 0.42578344905: [0.5479452054795, 0.4520547945205], 0.65734659411: [0.013698630137, 0.986301369863], 0.43366485269: [0.0684931506849, 0.9315068493151], 0.00168887221: [0.1095890410959, 0.8904109589041], 0.67573653594: [0.0958904109589, 0.9041095890411], 0.90392193657: [0.013698630137, 0.986301369863], 0.88102833552: [0.1917808219178, 0.8082191780822], 0.65922311878: [0.1095890410959, 0.8904109589041], 0.01595045975: [0.5342465753425, 0.4657534246575], 0.66410208294: [0.6027397260274, 0.3972602739726], 0.46519046726: [0.2876712328767, 0.7123287671233], 0.73616063051: [0.6438356164384, 0.3561643835616], 0.06774254081: [0.027397260274, 0.972602739726], 0.27753799963: [0.6164383561644, 0.3835616438356], 0.11990992682: [0.3150684931507, 0.6849315068493], 0.28541940327: [0.5753424657534, 0.4246575342466], 0.78082191781: [0.0], 0.14730718709: [0.3150684931507, 0.6849315068493], 0.30118221055: [0.013698630137, 0.986301369863], 0.30906361419: [0.7534246575342, 0.2465753424658], 0.8254832051: [0.6164383561644, 0.3835616438356], 0.97222743479: [0.5616438356164, 0.4383561643836], 0.455057234: [0.5205479452055, 0.4794520547945], 0.85700881967: [0.7534246575342, 0.2465753424658], 0.47644961531: [0.0547945205479, 0.9452054794521], 0.17357853256: [0.5890410958904, 0.4109589041096], 0.50009382623: [0.0821917808219, 0.9178082191781], 0.90429724151: [0.6301369863014, 0.3698630136986], 0.08875961719: [0.6027397260274, 0.3972602739726], 0.51585663352: [0.0684931506849, 0.9315068493151], 0.82135485082: [0.2876712328767, 0.7123287671233], 0.1814599362: [0.5068493150685, 0.4931506849315], 0.93319572152: [0.1095890410959, 0.8904109589041], 0.36948770876: [0.5616438356164, 0.4383561643836], 0.54738224808: [0.2876712328767, 0.7123287671233], 0.56051792081: [0.7945205479452, 0.2054794520548], 0.38525051604: [0.1095890410959, 0.8904109589041], 0.57890786264: [0.6164383561644, 0.3835616438356], 0.86639144305: [0.5068493150685, 0.4931506849315], 0.99924939013: [0.027397260274, 0.972602739726], 0.59204353537: [0.5205479452055, 0.4794520547945], 0.60780634265: [0.3013698630137, 0.6986301369863], 0.51548132858: [0.1369863013699, 0.8630136986301], 0.62356914993: [0.2739726027397, 0.7260273972603], 0.20773128167: [0.5342465753425, 0.4657534246575], 0.63670482267: [0.6027397260274, 0.3972602739726], 0.42465753425: [0.0], 0.65246762995: [0.1369863013699, 0.8630136986301], 0.21561268531: [0.6438356164384, 0.3561643835616], 0.66823043723: [0.0547945205479, 0.9452054794521], 0.10977669356: [0.6301369863014, 0.3698630136986], 0.22349408895: [0.1917808219178, 0.8082191780822], 0.69975605179: [0.5479452054795, 0.4520547945205], 0.45355601426: [0.3287671232877, 0.6712328767123], 0.34396697317: [0.3287671232877, 0.6712328767123], 0.26064927754: [0.1643835616438, 0.8356164383562], 0.23137549259: [0.8767123287671, 0.1232876712329], 0.46931882154: [0.6164383561644, 0.3835616438356], 0.0005629574: [0.7671232876712, 0.2328767123288], 0.13754925877: [0.7671232876712, 0.2328767123288], 0.76018014637: [0.7808219178082, 0.2191780821918], 0.0707449803: [0.5342465753425, 0.4657534246575], 0.28429348846: [0.3150684931507, 0.6849315068493], 0.91780821918: [0.0], 0.91555638957: [0.5753424657534, 0.4246575342466], 0.2921748921: [0.0958904109589, 0.9041095890411], 0.80746856821: [0.027397260274, 0.972602739726], 0.07862638394: [0.6438356164384, 0.3561643835616], 0.83636704823: [0.2602739726027, 0.7397260273973], 0.32107337212: [0.3424657534247, 0.6575342465753], 0.80671795834: [0.8767123287671, 0.1232876712329], 0.32895477576: [0.6301369863014, 0.3698630136986], 0.01032088572: [0.3150684931507, 0.6849315068493], 0.88365547007: [0.0821917808219, 0.9178082191781], 0.34471758304: [0.5342465753425, 0.4657534246575], 0.89941827735: [0.0684931506849, 0.9315068493151], 0.35259898668: [0.6438356164384, 0.3561643835616], 0.91893413398: [0.5479452054795, 0.4520547945205], 0.36048039032: [0.1917808219178, 0.8082191780822], 0.93094389191: [0.2876712328767, 0.7123287671233], 0.36836179396: [0.8767123287671, 0.1232876712329], 0.94407956465: [0.7945205479452, 0.2054794520548], 0.18746481516: [0.1780821917808, 0.8219178082192], 0.48245449428: [0.5205479452055, 0.4794520547945], 0.5582660912: [0.3150684931507, 0.6849315068493], 0.04785137925: [0.7808219178082, 0.2191780821918], 0.97560517921: [0.5205479452055, 0.4794520547945], 0.1953462188: [0.6164383561644, 0.3835616438356], 0.99136798649: [0.3013698630137, 0.6986301369863], 0.6029273785: [0.6301369863014, 0.3698630136986], 0.94220303997: [0.0547945205479, 0.9452054794521], 0.20322762244: [0.5753424657534, 0.4246575342466], 0.61869018578: [0.5342465753425, 0.4657534246575], 0.01294802027: [0.027397260274, 0.972602739726], 0.63445299306: [0.1917808219178, 0.8082191780822], 0.77068868456: [0.6164383561644, 0.3835616438356], 0.37286545318: [0.5205479452055, 0.4794520547945], 0.99061737662: [0.1917808219178, 0.8082191780822], 0.81835241133: [0.6438356164384, 0.3561643835616], 0.45243009946: [0.1643835616438, 0.8356164383562], 0.71063989492: [0.041095890411, 0.958904109589], 0.22949896791: [0.3150684931507, 0.6849315068493], 0.72377556765: [0.5753424657534, 0.4246575342466], 0.49296303246: [0.013698630137, 0.986301369863], 0.05835991743: [0.6164383561644, 0.3835616438356], 0.73953837493: [0.013698630137, 0.986301369863], 0.06849315069: [0.0], 0.23738037155: [0.0958904109589, 0.9041095890411], 0.75792831676: [0.0958904109589, 0.9041095890411], 0.28054043911: [0.6027397260274, 0.3972602739726], 0.96359542128: [0.1506849315068, 0.8493150684932], 0.28842184275: [0.2602739726027, 0.7397260273973], 0.78682679677: [0.6575342465753, 0.3424657534247], 0.29630324639: [0.1369863013699, 0.8630136986301], 0.7020078814: [0.5068493150685, 0.4931506849315], 0.31206605367: [0.0547945205479, 0.9452054794521], 0.77744417339: [0.6849315068493, 0.3150684931507], 0.83411521862: [0.8767123287671, 0.1232876712329], 0.15931694502: [0.1369863013699, 0.8630136986301], 0.08162882342: [0.2876712328767, 0.7123287671233], 0.86301369863: [0.0], 0.97935822856: [0.7808219178082, 0.2191780821918], 0.01069619066: [0.0547945205479, 0.9452054794521], 0.1750797523: [0.0547945205479, 0.9452054794521], 0.39388252956: [0.3150684931507, 0.6849315068493], 0.35672734097: [0.7671232876712, 0.2328767123288], 0.53499718521: [0.2602739726027, 0.7397260273973], 0.53762431976: [0.5068493150685, 0.4931506849315], 0.38825295553: [0.1506849315068, 0.8493150684932], 0.58228560706: [0.0821917808219, 0.9178082191781], 0.98648902233: [0.6301369863014, 0.3698630136986], 0.39613435917: [0.7945205479452, 0.2054794520548], 0.59804841434: [0.0684931506849, 0.9315068493151], 0.40401576281: [0.7808219178082, 0.2191780821918], 0.91818352411: [0.1643835616438, 0.8356164383562], 0.10264589979: [0.7808219178082, 0.2191780821918], 0.6295740289: [0.2876712328767, 0.7123287671233], 0.64270970163: [0.7945205479452, 0.2054794520548], 0.64533683618: [0.3287671232877, 0.6712328767123], 0.0133233252: [0.5616438356164, 0.4383561643836], 0.66109964346: [0.6164383561644, 0.3835616438356], 0.67423531619: [0.5205479452055, 0.4794520547945], 0.1367986489: [0.013698630137, 0.986301369863], 0.8701444924: [0.2739726027397, 0.7260273972603], 0.68999812348: [0.3013698630137, 0.6986301369863], 0.4486770501: [0.3150684931507, 0.6849315068493], 0.70576093076: [0.2739726027397, 0.7260273972603], 0.25577031338: [0.5890410958904, 0.4109589041096], 0.71889660349: [0.6027397260274, 0.3972602739726], 0.72152373804: [0.5890410958904, 0.4109589041096], 0.23287671233: [0.0], 0.73465941077: [0.1369863013699, 0.8630136986301], 0.47232126103: [0.6027397260274, 0.3972602739726], 0.48170388441: [0.5342465753425, 0.4657534246575], 0.48020266467: [0.2602739726027, 0.7397260273973], 0.07149559017: [0.5205479452055, 0.4794520547945], 0.48808406831: [0.1369863013699, 0.8630136986301], 0.78194783261: [0.5479452054795, 0.4520547945205], 0.12366297617: [0.1643835616438, 0.8356164383562], 0.03771814599: [0.3150684931507, 0.6849315068493], 0.48620754363: [0.7808219178082, 0.2191780821918], 0.30831300432: [0.0821917808219, 0.9178082191781], 0.5060987052: [0.027397260274, 0.972602739726], 0.82660911991: [0.1506849315068, 0.8493150684932], 0.31619440796: [0.5479452054795, 0.4520547945205], 0.48883467818: [0.1780821917808, 0.8219178082192], 0.16269468944: [0.041095890411, 0.958904109589], 0.74404203415: [0.1917808219178, 0.8082191780822], 0.51398010884: [0.2739726027397, 0.7260273972603], 0.45543253894: [0.5068493150685, 0.4931506849315], 0.24638769: [0.013698630137, 0.986301369863], 0.51698254832: [0.6438356164384, 0.3561643835616], 0.91855882905: [0.2602739726027, 0.7397260273973], 0.18108463126: [0.5205479452055, 0.4794520547945], 0.5327453556: [0.8767123287671, 0.1232876712329], 0.56502158003: [0.5068493150685, 0.4931506849315], 0.09251266654: [0.3150684931507, 0.6849315068493], 0.54850816288: [0.7671232876712, 0.2328767123288], 0.56164383562: [0.0], 0.96584725089: [0.0821917808219, 0.9178082191781], 0.04822668418: [0.2739726027397, 0.7260273972603], 0.14993432164: [0.027397260274, 0.972602739726], 0.98161005817: [0.0684931506849, 0.9315068493151], 0.19684743854: [0.3013698630137, 0.6986301369863], 0.10039407018: [0.0958904109589, 0.9041095890411], 0.92006004879: [0.5342465753425, 0.4657534246575], 0.20472884218: [0.027397260274, 0.972602739726], 0.41602552074: [0.3013698630137, 0.6986301369863], 0.63783073747: [0.7534246575342, 0.2465753424658], 0.64045787202: [0.6849315068493, 0.3150684931507], 0.42390692438: [0.027397260274, 0.972602739726], 0.43178832802: [0.2739726027397, 0.7260273972603], 0.01369863014: [0.0], 0.68511915932: [0.6301369863014, 0.3698630136986], 0.4475511353: [0.5890410958904, 0.4109589041096], 0.7008819666: [0.5342465753425, 0.4657534246575], 0.12666541565: [0.5068493150685, 0.4931506849315], 0.42428222931: [0.5616438356164, 0.4383561643836], 0.71664477388: [0.1917808219178, 0.8082191780822], 0.72902983674: [0.5205479452055, 0.4794520547945], 0.72527678739: [0.027397260274, 0.972602739726], 0.27566147495: [0.1095890410959, 0.8904109589041], 0.06924376056: [0.2602739726027, 0.7397260273973], 0.31431788328: [0.027397260274, 0.972602739726], 0.24676299493: [0.6301369863014, 0.3698630136986], 0.79283167574: [0.041095890411, 0.958904109589], 0.80596734847: [0.5753424657534, 0.4246575342466], 0.15293676112: [0.5342465753425, 0.4657534246575], 0.5252392569: [0.1506849315068, 0.8493150684932], 0.82173015575: [0.013698630137, 0.986301369863], 0.45430662413: [0.5342465753425, 0.4657534246575], 0.31506849315: [0.0], 0.16081816476: [0.6438356164384, 0.3561643835616], 0.08237943329: [0.6301369863014, 0.3698630136986], 0.86901857759: [0.3424657534247, 0.6575342465753], 0.1686995684: [0.1917808219178, 0.8082191780822], 0.90054419216: [0.6438356164384, 0.3561643835616], 0.35184837681: [0.1780821917808, 0.8219178082192], 0.17658097204: [0.8767123287671, 0.1232876712329], 0.91630699944: [0.8767123287671, 0.1232876712329], 0.35972978045: [0.6164383561644, 0.3835616438356], 0.46218802777: [0.6438356164384, 0.3561643835616], 0.36761118409: [0.5753424657534, 0.4246575342466], 0.54100206418: [0.7808219178082, 0.2191780821918], 0.5901670107: [0.5479452054795, 0.4520547945205], 0.55939200601: [0.5753424657534, 0.4246575342466], 0.38337399137: [0.013698630137, 0.986301369863], 0.97410395947: [0.6712328767123, 0.3287671232877], 0.39125539501: [0.7534246575342, 0.2465753424658], 0.58829048602: [0.027397260274, 0.972602739726], 0.04972790392: [0.1369863013699, 0.8630136986301], 0.81422405705: [0.6575342465753, 0.3424657534247], 0.61718896604: [0.2602739726027, 0.7397260273973], 0.47006943141: [0.1917808219178, 0.8082191780822], 0.98198536311: [0.1780821917808, 0.8219178082192], 0.02683430287: [0.2876712328767, 0.7123287671233], 0.66447738788: [0.0821917808219, 0.9178082191781], 0.21861512479: [0.2876712328767, 0.7123287671233], 0.40664289735: [0.1780821917808, 0.8219178082192], 0.11127791331: [0.1095890410959, 0.8904109589041], 0.25089134922: [0.1917808219178, 0.8082191780822], 0.45167948959: [0.5616438356164, 0.4383561643836], 0.71176580972: [0.2876712328767, 0.7123287671233], 0.25877275286: [0.8767123287671, 0.1232876712329], 0.47795083505: [0.8767123287671, 0.1232876712329], 0.727528617: [0.3287671232877, 0.6712328767123], 0.13267029461: [0.1780821917808, 0.8219178082192], 0.01707637455: [0.5068493150685, 0.4931506849315], 0.27453556014: [0.7671232876712, 0.2328767123288], 0.75642709702: [0.5205479452055, 0.4794520547945], 0.14055169826: [0.6164383561644, 0.3835616438356], 0.89378870332: [0.5068493150685, 0.4931506849315], 0.7721899043: [0.3013698630137, 0.6986301369863], 0.24488647026: [0.041095890411, 0.958904109589], 0.78795271158: [0.2739726027397, 0.7260273972603], 0.12441358604: [0.5479452054795, 0.4520547945205], 0.80108838431: [0.6027397260274, 0.3972602739726], 0.80371551886: [0.5890410958904, 0.4109589041096], 0.03809345093: [0.0547945205479, 0.9452054794521], 0.75042221805: [0.0547945205479, 0.9452054794521], 0.83261399887: [0.0547945205479, 0.9452054794521], 0.91443047476: [0.6849315068493, 0.3150684931507], 0.32707825108: [0.041095890411, 0.958904109589], 0.86413961344: [0.5479452054795, 0.4520547945205], 0.42240570464: [0.5753424657534, 0.4246575342466], 0.34284105836: [0.1643835616438, 0.8356164383562], 0.67160818165: [0.1643835616438, 0.8356164383562], 0.17470444736: [0.3150684931507, 0.6849315068493], 0.50722462: [0.1643835616438, 0.8356164383562], 0.02233064365: [0.1369863013699, 0.8630136986301], 0.52036029274: [0.013698630137, 0.986301369863], 0.92456370801: [0.7808219178082, 0.2191780821918], 0.182585851: [0.0958904109589, 0.9041095890411], 0.36648526928: [0.3150684931507, 0.6849315068493], 0.53875023457: [0.0958904109589, 0.9041095890411], 0.55451304185: [0.6027397260274, 0.3972602739726], 0.56764871458: [0.3424657534247, 0.6575342465753], 0.97185212986: [0.027397260274, 0.972602739726], 0.93844999062: [0.0821917808219, 0.9178082191781], 0.19834865829: [0.6027397260274, 0.3972602739726], 0.59917432914: [0.6438356164384, 0.3561643835616], 0.40326515294: [0.3424657534247, 0.6575342465753], 0.61493713642: [0.8767123287671, 0.1232876712329], 0.20623006193: [0.2602739726027, 0.7397260273973], 0.6306999437: [0.7671232876712, 0.2328767123288], 0.64383561644: [0.0], 0.42690936386: [0.5342465753425, 0.4657534246575], 0.4347907675: [0.6438356164384, 0.3561643835616], 0.02758491274: [0.6301369863014, 0.3698630136986], 0.45055357478: [0.8767123287671, 0.1232876712329], 0.11428035279: [0.1506849315068, 0.8493150684932], 0.7200225183: [0.7534246575342, 0.2465753424658], 0.23250140739: [0.5616438356164, 0.4383561643836], 0.0591105273: [0.1917808219178, 0.8082191780822], 0.76205667105: [0.1369863013699, 0.8630136986301], 0.27866391443: [0.1506849315068, 0.8493150684932], 0.76731094014: [0.6301369863014, 0.3698630136986], 0.28654531807: [0.7945205479452, 0.2054794520548], 0.12216175643: [0.7945205479452, 0.2054794520548], 0.78044661287: [0.5616438356164, 0.4383561643836], 0.29442672171: [0.7808219178082, 0.2191780821918], 0.24826421467: [0.1095890410959, 0.8904109589041], 0.79620942015: [0.1095890410959, 0.8904109589041], 0.07524863952: [0.7808219178082, 0.2191780821918], 0.83524113342: [0.5616438356164, 0.4383561643836], 0.03959467067: [0.8767123287671, 0.1232876712329], 0.31807093263: [0.5205479452055, 0.4794520547945], 0.45655845374: [0.0958904109589, 0.9041095890411], 0.87239632201: [0.1780821917808, 0.8219178082192], 0.88815912929: [0.5753424657534, 0.4246575342466], 0.89078626384: [0.1643835616438, 0.8356164383562], 0.34696941265: [0.0958904109589, 0.9041095890411], 0.50234565585: [0.5890410958904, 0.4109589041096], 0.17808219178: [0.0], 0.98123475324: [0.1369863013699, 0.8630136986301], 0.36273221993: [0.6027397260274, 0.3972602739726], 0.53124413586: [0.0547945205479, 0.9452054794521], 0.53387127041: [0.5616438356164, 0.4383561643836], 0.37061362357: [0.2602739726027, 0.7397260273973], 0.95121035842: [0.6575342465753, 0.3424657534247], 0.37849502721: [0.1369863013699, 0.8630136986301], 0.56276975042: [0.5479452054795, 0.4520547945205], 0.26365171702: [0.5068493150685, 0.4931506849315], 0.68924751361: [0.1917808219178, 0.8082191780822], 0.19647213361: [0.1506849315068, 0.8493150684932], 0.39425783449: [0.0547945205479, 0.9452054794521], 0.05010320886: [0.0684931506849, 0.9315068493151], 0.60743103772: [0.1506849315068, 0.8493150684932], 0.20435353725: [0.7945205479452, 0.2054794520548], 0.623193845: [0.7808219178082, 0.2191780821918], 0.62582097955: [0.1780821917808, 0.8219178082192], 0.21223494089: [0.7808219178082, 0.2191780821918], 0.61306061175: [0.3150684931507, 0.6849315068493], 0.67048226684: [0.027397260274, 0.972602739726], 0.43891912179: [0.7671232876712, 0.2328767123288], 0.69938074686: [0.2602739726027, 0.7397260273973], 0.12629011072: [0.5205479452055, 0.4794520547945], 0.06511540627: [0.3150684931507, 0.6849315068493], 0.26177519234: [0.3287671232877, 0.6712328767123], 0.26965659598: [0.1780821917808, 0.8219178082192], 0.47044473635: [0.1506849315068, 0.8493150684932], 0.7466691687: [0.0821917808219, 0.9178082191781], 0.00431600676: [0.8082191780822, 0.1917808219178], 0.76243197598: [0.0684931506849, 0.9315068493151], 0.142052918: [0.3013698630137, 0.6986301369863], 0.07299680991: [0.0958904109589, 0.9041095890411], 0.79395759054: [0.2876712328767, 0.7123287671233], 0.12103584162: [0.5753424657534, 0.4246575342466], 0.61793957591: [0.3287671232877, 0.6712328767123], 0.80709326328: [0.7945205479452, 0.2054794520548], 0.30643647964: [0.3013698630137, 0.6986301369863], 0.59842371927: [0.1780821917808, 0.8219178082192], 0.15781572528: [0.2739726027397, 0.7260273972603], 0.83861887784: [0.5205479452055, 0.4794520547945], 0.32219928692: [0.2739726027397, 0.7260273972603], 0.85438168512: [0.3013698630137, 0.6986301369863], 0.86751735785: [0.0958904109589, 0.9041095890411], 0.3379620942: [0.5890410958904, 0.4109589041096], 0.88328016513: [0.6027397260274, 0.3972602739726], 0.34584349784: [0.5068493150685, 0.4931506849315], 0.89904297242: [0.1369863013699, 0.8630136986301], 0.87840120098: [0.1095890410959, 0.8904109589041], 0.9148057797: [0.0547945205479, 0.9452054794521], 0.18408707075: [0.3424657534247, 0.6575342465753], 0.92719084256: [0.1780821917808, 0.8219178082192], 0.94633139426: [0.5479452054795, 0.4520547945205], 0.95946706699: [0.7671232876712, 0.2328767123288], 0.19196847439: [0.6301369863014, 0.3698630136986], 0.57365359355: [0.041095890411, 0.958904109589], 0.39050478514: [0.0821917808219, 0.9178082191781], 0.58941640083: [0.1643835616438, 0.8356164383562], 0.39838618878: [0.5479452054795, 0.4520547945205], 0.60255207356: [0.013698630137, 0.986301369863], 0.40626759242: [0.0684931506849, 0.9315068493151], 0.10189528992: [0.3424657534247, 0.6575342465753], 0.62094201539: [0.0958904109589, 0.9041095890411], 0.94295364984: [0.5753424657534, 0.4246575342466], 0.6498404954: [0.3424657534247, 0.6575342465753], 0.94558078439: [0.1643835616438, 0.8356164383562], 0.43779320698: [0.2876712328767, 0.7123287671233], 0.68136610996: [0.6438356164384, 0.3561643835616], 0.25014073935: [0.6164383561644, 0.3835616438356], 0.22612122349: [0.0821917808219, 0.9178082191781], 0.25802214299: [0.5753424657534, 0.4246575342466], 0.72602739726: [0.0], 0.01670106962: [0.5205479452055, 0.4794520547945], 0.27378495027: [0.013698630137, 0.986301369863], 0.05948583224: [0.1506849315068, 0.8493150684932], 0.28166635391: [0.7534246575342, 0.2465753424658], 0.24188403078: [0.0684931506849, 0.9315068493151], 0.69712891725: [0.8767123287671, 0.1232876712329], 0.1229123663: [0.5616438356164, 0.4383561643836], 0.49821730156: [0.3013698630137, 0.6986301369863], 0.57027584913: [0.1369863013699, 0.8630136986301], 0.80484143367: [0.6849315068493, 0.3150684931507], 0.72264965284: [0.3150684931507, 0.6849315068493], 0.8371176581: [0.6712328767123, 0.3287671232877], 0.03996997561: [0.7945205479452, 0.2054794520548], 0.84950272096: [0.6301369863014, 0.3698630136986], 0.16382060424: [0.2876712328767, 0.7123287671233], 0.8626383937: [0.5616438356164, 0.4383561643836], 0.86526552824: [0.5342465753425, 0.4657534246575], 0.08388065303: [0.1095890410959, 0.8904109589041], 0.71289172453: [0.7671232876712, 0.2328767123288], 0.34209044849: [0.5616438356164, 0.4383561643836], 0.3240758116: [0.0684931506849, 0.9315068493151], 0.50572340026: [0.7945205479452, 0.2054794520548], 0.17958341152: [0.3287671232877, 0.6712328767123], 0.52411334209: [0.6164383561644, 0.3835616438356], 0.53724901483: [0.5205479452055, 0.4794520547945], 0.26327641209: [0.5205479452055, 0.4794520547945], 0.55301182211: [0.3013698630137, 0.6986301369863], 0.56877462939: [0.2739726027397, 0.7260273972603], 0.09701632577: [0.5479452054795, 0.4520547945205], 0.58191030212: [0.6027397260274, 0.3972602739726], 0.9861137174: [0.013698630137, 0.986301369863], 0.39726027397: [0.0], 0.5976731094: [0.1369863013699, 0.8630136986301], 0.88890973916: [0.8767123287671, 0.1232876712329], 0.23400262714: [0.5479452054795, 0.4520547945205], 0.61343591668: [0.0547945205479, 0.9452054794521], 0.20585475699: [0.1643835616438, 0.8356164383562], 0.10489772941: [0.0684931506849, 0.9315068493151], 0.64496153124: [0.5479452054795, 0.4520547945205], 0.46556577219: [0.013698630137, 0.986301369863], 0.81685119159: [0.1369863013699, 0.8630136986301], 0.02720960781: [0.013698630137, 0.986301369863], 0.44192156127: [0.6164383561644, 0.3835616438356], 0.68962281854: [0.1506849315068, 0.8493150684932], 0.44980296491: [0.5753424657534, 0.4246575342466], 0.70538562582: [0.7808219178082, 0.2191780821918], 0.70801276037: [0.1780821917808, 0.8219178082192], 0.12779133046: [0.0958904109589, 0.9041095890411], 0.88966034903: [0.027397260274, 0.972602739726], 0.00356539689: [0.6164383561644, 0.3835616438356], 0.95383749296: [0.1369863013699, 0.8630136986301], 0.47344717583: [0.7534246575342, 0.2465753424658], 0.75267404766: [0.027397260274, 0.972602739726], 0.2400075061: [0.2739726027397, 0.7260273972603], 0.14355413774: [0.6027397260274, 0.3972602739726], 0.78157252768: [0.2602739726027, 0.7397260273973], 0.29367611184: [0.3424657534247, 0.6575342465753], 0.30155751548: [0.6301369863014, 0.3698630136986], 0.15143554138: [0.2602739726027, 0.7397260273973], 0.94483017452: [0.5616438356164, 0.4383561643836], 0.0388440608: [0.5753424657534, 0.4246575342466], 0.82886094952: [0.0821917808219, 0.9178082191781], 0.31732032276: [0.5342465753425, 0.4657534246575], 0.8446237568: [0.0684931506849, 0.9315068493151], 0.3252017264: [0.6438356164384, 0.3561643835616], 0.42165509476: [0.0547945205479, 0.9452054794521], 0.04147119535: [0.1643835616438, 0.8356164383562], 0.7785700882: [0.5753424657534, 0.4246575342466], 0.87614937136: [0.2876712328767, 0.7123287671233], 0.34096453368: [0.8767123287671, 0.1232876712329], 0.8892850441: [0.7945205479452, 0.2054794520548], 0.08688309251: [0.1506849315068, 0.8493150684932], 0.5008444361: [0.7534246575342, 0.2465753424658], 0.50347157065: [0.3150684931507, 0.6849315068493], 0.17770688685: [0.5616438356164, 0.4383561643836], 0.9211859636: [0.5068493150685, 0.4931506849315], 0.50797522987: [0.5479452054795, 0.4520547945205], 0.02270594858: [0.0684931506849, 0.9315068493151], 0.93657346594: [0.3013698630137, 0.6986301369863], 0.54813285795: [0.6301369863014, 0.3698630136986], 0.95233627322: [0.2739726027397, 0.7260273972603], 0.09476449615: [0.7945205479452, 0.2054794520548], 0.56389566523: [0.5342465753425, 0.4657534246575], 0.9680990805: [0.5890410958904, 0.4109589041096], 0.19346969413: [0.1095890410959, 0.8904109589041], 0.57965847251: [0.1917808219178, 0.8082191780822], 0.99699756052: [0.0547945205479, 0.9452054794521], 0.80221429912: [0.7534246575342, 0.2465753424658], 0.4092700319: [0.041095890411, 0.958904109589], 0.67273409645: [0.6712328767123, 0.3287671232877], 0.37136423344: [0.3287671232877, 0.6712328767123], 0.42503283918: [0.1643835616438, 0.8356164383562], 0.65584537437: [0.041095890411, 0.958904109589], 0.10790016889: [0.041095890411, 0.958904109589], 0.6689810471: [0.5753424657534, 0.4246575342466], 0.97485456934: [0.5342465753425, 0.4657534246575], 0.2197410396: [0.7671232876712, 0.2328767123288], 0.68474385438: [0.013698630137, 0.986301369863], 0.02796021768: [0.7671232876712, 0.2328767123288], 0.70313379621: [0.0958904109589, 0.9041095890411], 0.25314317883: [0.6027397260274, 0.3972602739726], 0.26102458247: [0.2602739726027, 0.7397260273973], 0.73203227622: [0.3424657534247, 0.6575342465753], 0.26890598611: [0.1369863013699, 0.8630136986301], 0.05986113717: [0.3013698630137, 0.6986301369863], 0.76355789079: [0.6438356164384, 0.3561643835616], 0.2846687934: [0.0547945205479, 0.9452054794521], 0.48545693376: [0.3424657534247, 0.6575342465753], 0.35560142616: [0.2876712328767, 0.7123287671233], 0.01820228936: [0.0958904109589, 0.9041095890411], 0.79508350535: [0.7671232876712, 0.2328767123288], 0.1495590167: [0.7945205479452, 0.2054794520548], 0.80821917808: [0.0], 0.79921185964: [0.1506849315068, 0.8493150684932], 0.15744042034: [0.7808219178082, 0.2191780821918], 0.04034528054: [0.027397260274, 0.972602739726], 0.85288046538: [0.6164383561644, 0.3835616438356], 0.97297804466: [0.1643835616438, 0.8356164383562], 0.88440607994: [0.7534246575342, 0.2465753424658], 0.71739538375: [0.3013698630137, 0.6986301369863], 0.36085569525: [0.1506849315068, 0.8493150684932], 0.52749108651: [0.0821917808219, 0.9178082191781], 0.93169450178: [0.6301369863014, 0.3698630136986], 0.36873709889: [0.7945205479452, 0.2054794520548], 0.54325389379: [0.0684931506849, 0.9315068493151], 0.94745730906: [0.5342465753425, 0.4657534246575], 0.01444924001: [0.2602739726027, 0.7397260273973], 0.9605929818: [0.1095890410959, 0.8904109589041], 0.19159316945: [0.013698630137, 0.986301369863], 0.57477950835: [0.2876712328767, 0.7123287671233], 0.58791518109: [0.7945205479452, 0.2054794520548], 0.59054231563: [0.3287671232877, 0.6712328767123], 0.19947457309: [0.7534246575342, 0.2465753424658], 0.40026271346: [0.5205479452055, 0.4794520547945], 0.06736723588: [0.7945205479452, 0.2054794520548], 0.63520360293: [0.3013698630137, 0.6986301369863], 0.42127978983: [0.3150684931507, 0.6849315068493], 0.65096641021: [0.2739726027397, 0.7260273972603], 0.42916119347: [0.0958904109589, 0.9041095890411], 0.33946331394: [0.0547945205479, 0.9452054794521], 0.66672921749: [0.5890410958904, 0.4109589041096], 0.67986489022: [0.1369863013699, 0.8630136986301], 0.74892099831: [0.5890410958904, 0.4109589041096], 0.44492400075: [0.6027397260274, 0.3972602739726], 0.6956276975: [0.0547945205479, 0.9452054794521], 0.45280540439: [0.2602739726027, 0.7397260273973], 0.1292925502: [0.3424657534247, 0.6575342465753], 0.46068680803: [0.1369863013699, 0.8630136986301], 0.72715331207: [0.5479452054795, 0.4520547945205], 0.2336273222: [0.2602739726027, 0.7397260273973], 0.76768624507: [0.7671232876712, 0.2328767123288], 0.11878401201: [0.5890410958904, 0.4109589041096], 0.24150872584: [0.1369863013699, 0.8630136986301], 0.77181459936: [0.1506849315068, 0.8493150684932], 0.28879714768: [0.5479452054795, 0.4520547945205], 0.06136235692: [0.6027397260274, 0.3972602739726], 0.78757740664: [0.7808219178082, 0.2191780821918], 0.07449802965: [0.3424657534247, 0.6575342465753], 0.69412647776: [0.5890410958904, 0.4109589041096], 0.50835053481: [0.3287671232877, 0.6712328767123], 0.83486582849: [0.027397260274, 0.972602739726], 0.85588290486: [0.6027397260274, 0.3972602739726], 0.28917245262: [0.3287671232877, 0.6712328767123], 0.32820416589: [0.2876712328767, 0.7123287671233], 0.8637643085: [0.2602739726027, 0.7397260273973], 0.04184650028: [0.2602739726027, 0.7397260273973], 0.17132670295: [0.0821917808219, 0.9178082191781], 0.35785325577: [0.1095890410959, 0.8904109589041], 0.50684931507: [0.0], 0.17920810659: [0.5479452054795, 0.4520547945205], 0.92681553762: [0.0684931506849, 0.9315068493151], 0.01144680053: [0.5753424657534, 0.4246575342466], 0.18708951023: [0.0684931506849, 0.9315068493151], 0.97260273973: [0.0], 0.95834115219: [0.2876712328767, 0.7123287671233], 0.09551510602: [0.5616438356164, 0.4383561643836], 0.97147682492: [0.7945205479452, 0.2054794520548], 0.38862826046: [0.3013698630137, 0.6986301369863], 0.58303621693: [0.7534246575342, 0.2465753424658], 0.3965096641: [0.027397260274, 0.972602739726], 0.40439106774: [0.2739726027397, 0.7260273972603], 0.63032463877: [0.6301369863014, 0.3698630136986], 0.42015387502: [0.5890410958904, 0.4109589041096], 0.64608744605: [0.5342465753425, 0.4657534246575], 0.42803527866: [0.5068493150685, 0.4931506849315], 0.66185025333: [0.1917808219178, 0.8082191780822], 0.01407393507: [0.1643835616438, 0.8356164383562], 0.91105273034: [0.0821917808219, 0.9178082191781], 0.95458810283: [0.1780821917808, 0.8219178082192], 0.1165321824: [0.0821917808219, 0.9178082191781], 0.73803715519: [0.041095890411, 0.958904109589], 0.47269656596: [0.0821917808219, 0.9178082191781], 0.75117282792: [0.5753424657534, 0.4246575342466], 0.75379996247: [0.1643835616438, 0.8356164383562], 0.4805779696: [0.5479452054795, 0.4520547945205], 0.7669356352: [0.013698630137, 0.986301369863], 0.28767123288: [0.0], 0.00919497091: [0.5890410958904, 0.4109589041096], 0.15106023644: [0.1643835616438, 0.8356164383562], 0.7988365547: [0.1917808219178, 0.8082191780822], 0.07750046913: [0.0684931506849, 0.9315068493151], 0.78532557703: [0.0958904109589, 0.9041095890411], 0.84574967161: [0.6438356164384, 0.3561643835616], 0.04072058548: [0.5616438356164, 0.4383561643836], 0.86151247889: [0.8767123287671, 0.1232876712329], 0.33233252017: [0.6164383561644, 0.3835616438356], 0.84875211109: [0.2876712328767, 0.7123287671233], 0.34021392381: [0.5753424657534, 0.4246575342466], 0.58453743667: [0.5890410958904, 0.4109589041096], 0.8904109589: [0.0], 0.50459748546: [0.5753424657534, 0.4246575342466], 0.35597673109: [0.013698630137, 0.986301369863], 0.87727528617: [0.7671232876712, 0.2328767123288], 0.36385813473: [0.7534246575342, 0.2465753424658], 0.53349596547: [0.027397260274, 0.972602739726], 0.18521298555: [0.2739726027397, 0.7260273972603], 0.99399512104: [0.7534246575342, 0.2465753424658], 0.56239444549: [0.2602739726027, 0.7397260273973], 0.96659786076: [0.7534246575342, 0.2465753424658], 0.86451491837: [0.3287671232877, 0.6712328767123], 0.89266278852: [0.5342465753425, 0.4657534246575], 0.20097579283: [0.5890410958904, 0.4109589041096], 0.60968286733: [0.0821917808219, 0.9178082191781], 0.05122912366: [0.6438356164384, 0.3561643835616], 0.62544567461: [0.0684931506849, 0.9315068493151], 0.20885719647: [0.5068493150685, 0.4931506849315], 0.05047851379: [0.1780821917808, 0.8219178082192], 0.65697128917: [0.2876712328767, 0.7123287671233], 0.67010696191: [0.7945205479452, 0.2054794520548], 0.44004503659: [0.1095890410959, 0.8904109589041], 0.61606305123: [0.5616438356164, 0.4383561643836], 0.68849690373: [0.6164383561644, 0.3835616438356], 0.70163257647: [0.5205479452055, 0.4794520547945], 0.03171326703: [0.1917808219178, 0.8082191780822], 0.64421092137: [0.1643835616438, 0.8356164383562], 0.93920060049: [0.7534246575342, 0.2465753424658], 0.23888159129: [0.3424657534247, 0.6575342465753], 0.73315819103: [0.2739726027397, 0.7260273972603], 0.23512854194: [0.5342465753425, 0.4657534246575], 0.74629386376: [0.6027397260274, 0.3972602739726], 0.13867517358: [0.1095890410959, 0.8904109589041], 0.4794520548: [0.0], 0.24300994558: [0.6438356164384, 0.3561643835616], 0.77781947833: [0.0547945205479, 0.9452054794521], 0.96960030024: [0.0547945205479, 0.9452054794521], 0.06173766185: [0.0821917808219, 0.9178082191781], 0.29968099081: [0.041095890411, 0.958904109589], 0.61756427097: [0.5479452054795, 0.4520547945205], 0.80934509289: [0.5479452054795, 0.4520547945205], 0.31544379809: [0.1643835616438, 0.8356164383562], 0.90917620567: [0.3013698630137, 0.6986301369863], 0.85400638018: [0.1506849315068, 0.8493150684932], 0.16494651905: [0.7671232876712, 0.2328767123288], 0.86976918747: [0.7808219178082, 0.2191780821918], 0.04222180522: [0.5479452054795, 0.4520547945205], 0.33908800901: [0.3150684931507, 0.6849315068493], 0.93582285607: [0.1917808219178, 0.8082191780822], 0.51285419403: [0.3424657534247, 0.6575342465753], 0.91705760931: [0.027397260274, 0.972602739726], 0.9223118784: [0.0958904109589, 0.9041095890411], 0.02308125352: [0.1780821917808, 0.8219178082192], 0.54437980859: [0.6438356164384, 0.3561643835616], 0.37586789266: [0.3424657534247, 0.6575342465753], 0.49746669169: [0.1917808219178, 0.8082191780822], 0.56014261588: [0.8767123287671, 0.1232876712329], 0.09626571589: [0.1643835616438, 0.8356164383562], 0.57590542316: [0.7671232876712, 0.2328767123288], 0.72940514168: [0.5068493150685, 0.4931506849315], 0.58904109589: [0.0], 0.99324451117: [0.0821917808219, 0.9178082191781], 0.39951210358: [0.5342465753425, 0.4657534246575], 0.43404015763: [0.1780821917808, 0.8219178082192], 0.40739350723: [0.6438356164384, 0.3561643835616], 0.2069806718: [0.3287671232877, 0.6712328767123], 0.41527491087: [0.1917808219178, 0.8082191780822], 0.42315631451: [0.8767123287671, 0.1232876712329], 0.99286920623: [0.6027397260274, 0.3972602739726], 0.80859448302: [0.1643835616438, 0.8356164383562], 0.21486207544: [0.1780821917808, 0.8219178082192], 0.66522799775: [0.7534246575342, 0.2465753424658], 0.10940138863: [0.013698630137, 0.986301369863], 0.22274347908: [0.6164383561644, 0.3835616438356], 0.55226121224: [0.1917808219178, 0.8082191780822], 0.25126665416: [0.1506849315068, 0.8493150684932], 0.71251641959: [0.6301369863014, 0.3698630136986], 0.23062488272: [0.5753424657534, 0.4246575342466], 0.72827922687: [0.5342465753425, 0.4657534246575], 0.26702946144: [0.7808219178082, 0.2191780821918], 0.11728279227: [0.7534246575342, 0.2465753424658], 0.74141489961: [0.1095890410959, 0.8904109589041], 0.95909176206: [0.6301369863014, 0.3698630136986], 0.14468005254: [0.7534246575342, 0.2465753424658], 0.3837492963: [0.6301369863014, 0.3698630136986], 0.70013135673: [0.6712328767123, 0.3287671232877], 0.82022893601: [0.041095890411, 0.958904109589], 0.55563895665: [0.7534246575342, 0.2465753424658], 0.83336460875: [0.5753424657534, 0.4246575342466], 0.31957215237: [0.0958904109589, 0.9041095890411], 0.84912741603: [0.013698630137, 0.986301369863], 0.04109589041: [0.0], 0.33533495966: [0.6027397260274, 0.3972602739726], 0.25689622819: [0.3150684931507, 0.6849315068493], 0.47832613999: [0.7945205479452, 0.2054794520548], 0.3432163633: [0.2602739726027, 0.7397260273973], 0.60705573278: [0.1917808219178, 0.8082191780822], 0.35109776694: [0.1369863013699, 0.8630136986301], 0.25952336273: [0.027397260274, 0.972602739726], 0.92794145243: [0.6438356164384, 0.3561643835616], 0.09138675174: [0.5890410958904, 0.4109589041096], 0.18671420529: [0.1369863013699, 0.8630136986301], 0.55263651717: [0.1506849315068, 0.8493150684932], 0.02383186339: [0.6438356164384, 0.3561643835616], 0.56839932445: [0.7808219178082, 0.2191780821918], 0.26477763183: [0.0958904109589, 0.9041095890411], 0.58678926628: [0.5753424657534, 0.4246575342466], 0.09926815538: [0.5068493150685, 0.4931506849315], 0.20247701257: [0.0547945205479, 0.9452054794521], 0.61568774629: [0.027397260274, 0.972602739726], 0.41152186151: [0.7671232876712, 0.2328767123288], 0.98986676675: [0.6164383561644, 0.3835616438356], 0.64458622631: [0.2602739726027, 0.7397260273973], 0.64721336086: [0.5068493150685, 0.4931506849315], 0.75680240195: [0.5068493150685, 0.4931506849315], 0.7530493526: [0.5616438356164, 0.4383561643836], 0.0069431413: [0.0821917808219, 0.9178082191781], 0.69187464815: [0.0821917808219, 0.9178082191781], 0.45092887972: [0.7945205479452, 0.2054794520548], 0.70763745543: [0.0684931506849, 0.9315068493151], 0.03208857197: [0.1506849315068, 0.8493150684932], 0.45881028336: [0.7808219178082, 0.2191780821918], 0.13229498968: [0.0684931506849, 0.9315068493151], 0.73916306999: [0.2876712328767, 0.7123287671233], 0.06811784575: [0.5616438356164, 0.4383561643836], 0.75229874273: [0.7945205479452, 0.2054794520548], 0.27903921937: [0.3013698630137, 0.6986301369863], 0.12028523175: [0.0547945205479, 0.9452054794521], 0.28692062301: [0.027397260274, 0.972602739726], 0.78382435729: [0.5205479452055, 0.4794520547945], 0.29480202665: [0.2739726027397, 0.7260273972603], 0.48395571402: [0.0958904109589, 0.9041095890411], 0.94670669919: [0.6712328767123, 0.3287671232877], 0.81272283731: [0.0958904109589, 0.9041095890411], 0.31056483393: [0.5890410958904, 0.4109589041096], 0.82848564459: [0.6027397260274, 0.3972602739726], 0.31844623757: [0.5068493150685, 0.4931506849315], 0.84424845187: [0.1369863013699, 0.8630136986301], 0.64158378683: [0.5753424657534, 0.4246575342466], 0.86001125915: [0.0547945205479, 0.9452054794521], 0.04259711015: [0.3287671232877, 0.6712328767123], 0.89153687371: [0.5479452054795, 0.4520547945205], 0.78419966223: [0.5068493150685, 0.4931506849315], 0.90467254644: [0.7671232876712, 0.2328767123288], 0.08913492212: [0.0821917808219, 0.9178082191781], 0.518859073: [0.041095890411, 0.958904109589], 0.36310752486: [0.0821917808219, 0.9178082191781], 0.53462188028: [0.1643835616438, 0.8356164383562], 0.93619816101: [0.1506849315068, 0.8493150684932], 0.3709889285: [0.5479452054795, 0.4520547945205], 0.54775755301: [0.013698630137, 0.986301369863], 0.19009194971: [0.041095890411, 0.958904109589], 0.56614749484: [0.0958904109589, 0.9041095890411], 0.89341339839: [0.5205479452055, 0.4794520547945], 0.6678551323: [0.6849315068493, 0.3150684931507], 0.59504597486: [0.3424657534247, 0.6575342465753], 0.99662225558: [0.6849315068493, 0.3150684931507], 0.41039594671: [0.2876712328767, 0.7123287671233], 0.62657158942: [0.6438356164384, 0.3561643835616], 0.20848189154: [0.5205479452055, 0.4794520547945], 0.54362919872: [0.1780821917808, 0.8219178082192], 0.05310564834: [0.041095890411, 0.958904109589], 0.42615875399: [0.3287671232877, 0.6712328767123], 0.65809720398: [0.7671232876712, 0.2328767123288], 0.67123287671: [0.0], 0.94520547945: [0.0], 0.1101519985: [0.7671232876712, 0.2328767123288], 0.22424469882: [0.3013698630137, 0.6986301369863], 0.25426909364: [0.7534246575342, 0.2465753424658], 0.71589416401: [0.6164383561644, 0.3835616438356], 0.23212610246: [0.027397260274, 0.972602739726], 0.47082004128: [0.3013698630137, 0.6986301369863], 0.74741977857: [0.7534246575342, 0.2465753424658], 0.75004691312: [0.6849315068493, 0.3150684931507], 0.47870144492: [0.027397260274, 0.972602739726], 0.48658284856: [0.2739726027397, 0.7260273972603], 0.14618127228: [0.5890410958904, 0.4109589041096], 0.53086883093: [0.3150684931507, 0.6849315068493], 0.79470820041: [0.6301369863014, 0.3698630136986], 0.00469131169: [0.1506849315068, 0.8493150684932], 0.80784387315: [0.5616438356164, 0.4383561643836], 0.81047100769: [0.5342465753425, 0.4657534246575], 0.15406267592: [0.5068493150685, 0.4931506849315], 0.82360668043: [0.1095890410959, 0.8904109589041], 0.31469318822: [0.5616438356164, 0.4383561643836], 0.3304559955: [0.1095890410959, 0.8904109589041], 0.58040908238: [0.3013698630137, 0.6986301369863], 0.89979358229: [0.1780821917808, 0.8219178082192], 0.90242071683: [0.041095890411, 0.958904109589], 0.2591480578: [0.7945205479452, 0.2054794520548], 0.18033402139: [0.5342465753425, 0.4657534246575], 0.52974291612: [0.5890410958904, 0.4109589041096], 0.3698630137: [0.0], 0.54287858885: [0.1369863013699, 0.8630136986301], 0.18821542503: [0.6438356164384, 0.3561643835616], 0.55864139613: [0.0547945205479, 0.9452054794521], 0.70463501595: [0.3424657534247, 0.6575342465753], 0.97860761869: [0.6575342465753, 0.3424657534247], 0.19609682867: [0.1917808219178, 0.8082191780822], 0.4933383374: [0.6301369863014, 0.3698630136986], 0.33308313004: [0.1917808219178, 0.8082191780822], 0.20397823231: [0.8767123287671, 0.1232876712329], 0.414524301: [0.6164383561644, 0.3835616438356], 0.63482829799: [0.1506849315068, 0.8493150684932], 0.62507036968: [0.1369863013699, 0.8630136986301], 0.23587915181: [0.5205479452055, 0.4794520547945], 0.65059110527: [0.7808219178082, 0.2191780821918], 0.43816851192: [0.013698630137, 0.986301369863], 0.44604991556: [0.7534246575342, 0.2465753424658], 0.69787952712: [0.027397260274, 0.972602739726], 0.61981610058: [0.5068493150685, 0.4931506849315], 0.11315443798: [0.6164383561644, 0.3835616438356], 0.75192343779: [0.8767123287671, 0.1232876712329], 0.0324638769: [0.3013698630137, 0.6986301369863], 0.72677800713: [0.2602739726027, 0.7397260273973], 0.26627885157: [0.3424657534247, 0.6575342465753], 0.27416025521: [0.6301369863014, 0.3698630136986], 0.06886845562: [0.1643835616438, 0.8356164383562], 0.89191217865: [0.6712328767123, 0.3287671232877], 0.14167761306: [0.1506849315068, 0.8493150684932], 0.77406642897: [0.0821917808219, 0.9178082191781], 0.28992306249: [0.5342465753425, 0.4657534246575], 0.24601238506: [0.2876712328767, 0.7123287671233], 0.78982923625: [0.0684931506849, 0.9315068493151], 0.29780446613: [0.6438356164384, 0.3561643835616], 0.06248827172: [0.7534246575342, 0.2465753424658], 0.84237192719: [0.7808219178082, 0.2191780821918], 0.30568586977: [0.1917808219178, 0.8082191780822], 0.35147307187: [0.0684931506849, 0.9315068493151], 0.31356727341: [0.8767123287671, 0.1232876712329], 0.83449052355: [0.7945205479452, 0.2054794520548], 0.16006755489: [0.1780821917808, 0.8219178082192], 0.08200412835: [0.013698630137, 0.986301369863], 0.32933008069: [0.7671232876712, 0.2328767123288], 0.86601613811: [0.5205479452055, 0.4794520547945], 0.16794895853: [0.6164383561644, 0.3835616438356], 0.29067367236: [0.5205479452055, 0.4794520547945], 0.88177894539: [0.3013698630137, 0.6986301369863], 0.89491461813: [0.0958904109589, 0.9041095890411], 0.89754175267: [0.2739726027397, 0.7260273972603], 0.17583036217: [0.5753424657534, 0.4246575342466], 0.50910114468: [0.5342465753425, 0.4657534246575], 0.91330455996: [0.5890410958904, 0.4109589041096], 0.089885532: [0.7534246575342, 0.2465753424658], 0.52486395196: [0.1917808219178, 0.8082191780822], 0.03096265716: [0.6164383561644, 0.3835616438356], 0.38187277163: [0.041095890411, 0.958904109589], 0.97372865453: [0.5479452054795, 0.4520547945205], 0.98686432727: [0.7671232876712, 0.2328767123288], 0.79958716457: [0.3013698630137, 0.6986301369863], 0.39763557891: [0.1643835616438, 0.8356164383562], 0.60105085382: [0.041095890411, 0.958904109589], 0.20210170764: [0.3150684931507, 0.6849315068493], 0.61418652655: [0.5753424657534, 0.4246575342466], 0.6168136611: [0.1643835616438, 0.8356164383562], 0.10302120473: [0.2739726027397, 0.7260273972603], 0.62994933383: [0.013698630137, 0.986301369863], 0.94858322387: [0.5068493150685, 0.4931506849315], 0.20998311128: [0.0958904109589, 0.9041095890411], 0.64833927566: [0.0958904109589, 0.9041095890411], 0.94445486958: [0.027397260274, 0.972602739726], 0.68024019516: [0.0684931506849, 0.9315068493151], 0.67723775568: [0.3424657534247, 0.6575342465753], 0.94970913868: [0.0958904109589, 0.9041095890411], 0.22574591856: [0.6027397260274, 0.3972602739726], 0.70876337024: [0.6438356164384, 0.3561643835616], 0.25727153312: [0.0547945205479, 0.9452054794521], 0.45805967349: [0.3424657534247, 0.6575342465753], 0.72452617752: [0.8767123287671, 0.1232876712329], 0.13191968474: [0.1369863013699, 0.8630136986301], 0.46594107713: [0.6301369863014, 0.3698630136986], 0.7402889848: [0.7671232876712, 0.2328767123288], 0.03396509664: [0.6027397260274, 0.3972602739726], 0.75342465753: [0.0], 0.28091574404: [0.0821917808219, 0.9178082191781], 0.0718708951: [0.5068493150685, 0.4931506849315], 0.48958528805: [0.6438356164384, 0.3561643835616], 0.96547194596: [0.6027397260274, 0.3972602739726], 0.14768249203: [0.0547945205479, 0.9452054794521], 0.1240382811: [0.2602739726027, 0.7397260273973], 0.79808594483: [0.6164383561644, 0.3835616438356], 0.83599174329: [0.1643835616438, 0.8356164383562], 0.9733533496: [0.2602739726027, 0.7397260273973], 0.82961155939: [0.7534246575342, 0.2465753424658], 0.83223869394: [0.6849315068493, 0.3150684931507], 0.57703133796: [0.1095890410959, 0.8904109589041], 0.94070182023: [0.5890410958904, 0.4109589041096], 0.88703321449: [0.6849315068493, 0.3150684931507], 0.33345843498: [0.1506849315068, 0.8493150684932], 0.87689998124: [0.6301369863014, 0.3698630136986], 0.34133983862: [0.7945205479452, 0.2054794520548], 0.65321823982: [0.1780821917808, 0.8219178082192], 0.89003565397: [0.5616438356164, 0.4383561643836], 0.34922124226: [0.7808219178082, 0.2191780821918], 0.90579846125: [0.1095890410959, 0.8904109589041], 0.9084255958: [0.1917808219178, 0.8082191780822], 0.04447363483: [0.5068493150685, 0.4931506849315], 0.5199849878: [0.2876712328767, 0.7123287671233], 0.72490148245: [0.7945205479452, 0.2054794520548], 0.53312066054: [0.7945205479452, 0.2054794520548], 0.53574779508: [0.3287671232877, 0.6712328767123], 0.09288797148: [0.0547945205479, 0.9452054794521], 0.55151060236: [0.6164383561644, 0.3835616438356], 0.5646462751: [0.5205479452055, 0.4794520547945], 0.56126853068: [0.5616438356164, 0.4383561643836], 0.98461249765: [0.041095890411, 0.958904109589], 0.46744229687: [0.1095890410959, 0.8904109589041], 0.59617188966: [0.2739726027397, 0.7260273972603], 0.4017639332: [0.0958904109589, 0.9041095890411], 0.60930756239: [0.6027397260274, 0.3972602739726], 0.61193469694: [0.5890410958904, 0.4109589041096], 0.20547945206: [0.0], 0.41752674048: [0.6027397260274, 0.3972602739726], 0.64083317696: [0.0547945205479, 0.9452054794521], 0.6434603115: [0.5616438356164, 0.4383561643836], 0.42540814412: [0.2602739726027, 0.7397260273973], 0.43328954776: [0.1369863013699, 0.8630136986301], 0.67235879152: [0.5479452054795, 0.4520547945205], 0.05498217302: [0.6301369863014, 0.3698630136986], 0.22386939388: [0.1506849315068, 0.8493150684932], 0.44905235504: [0.0547945205479, 0.9452054794521], 0.58566335147: [0.3150684931507, 0.6849315068493], 0.11390504785: [0.1917808219178, 0.8082191780822], 0.71702007881: [0.1506849315068, 0.8493150684932], 0.26139988741: [0.5479452054795, 0.4520547945205], 0.23175079752: [0.7945205479452, 0.2054794520548], 0.7327828861: [0.7808219178082, 0.2191780821918], 0.13529742916: [0.041095890411, 0.958904109589], 0.06961906549: [0.5479452054795, 0.4520547945205], 0.23963220116: [0.7808219178082, 0.2191780821918], 0.89641583787: [0.6575342465753, 0.3424657534247], 0.12178645149: [0.8767123287671, 0.1232876712329], 0.90767498593: [0.6164383561644, 0.3835616438356], 0.78007130794: [0.027397260274, 0.972602739726], 0.49371364233: [0.7671232876712, 0.2328767123288], 0.30080690561: [0.2876712328767, 0.7123287671233], 0.80896978795: [0.2602739726027, 0.7397260273973], 0.15368737099: [0.5205479452055, 0.4794520547945], 0.0197035091: [0.3424657534247, 0.6575342465753], 0.32445111653: [0.1780821917808, 0.8219178082192], 0.8562582098: [0.0821917808219, 0.9178082191781], 0.08275473823: [0.7671232876712, 0.2328767123288], 0.87202101708: [0.0684931506849, 0.9315068493151], 0.16945017827: [0.3013698630137, 0.6986301369863], 0.04334772002: [0.5342465753425, 0.4657534246575], 0.91743291424: [0.5616438356164, 0.4383561643836], 0.90354663164: [0.2876712328767, 0.7123287671233], 0.17733158191: [0.027397260274, 0.972602739726], 0.91668230437: [0.7945205479452, 0.2054794520548], 0.36123100019: [0.3013698630137, 0.6986301369863], 0.52824169638: [0.7534246575342, 0.2465753424658], 0.36911240383: [0.027397260274, 0.972602739726], 0.94820791893: [0.5205479452055, 0.4794520547945], 0.1484331019: [0.5753424657534, 0.4246575342466], 0.96397072622: [0.3013698630137, 0.6986301369863], 0.57553011822: [0.6301369863014, 0.3698630136986], 0.97710639895: [0.0958904109589, 0.9041095890411], 0.39275661475: [0.5890410958904, 0.4109589041096], 0.5912929255: [0.5342465753425, 0.4657534246575], 0.36686057422: [0.0547945205479, 0.9452054794521], 0.40063801839: [0.5068493150685, 0.4931506849315], 0.60442859824: [0.1095890410959, 0.8904109589041], 0.21148433102: [0.3424657534247, 0.6575342465753], 0.8115969225: [0.5068493150685, 0.4931506849315], 0.94370425971: [0.8767123287671, 0.1232876712329], 0.91180334021: [0.7534246575342, 0.2465753424658], 0.21936573466: [0.6301369863014, 0.3698630136986], 0.68324263464: [0.041095890411, 0.958904109589], 0.44529930569: [0.0821917808219, 0.9178082191781], 0.69637830738: [0.5753424657534, 0.4246575342466], 0.69900544192: [0.1643835616438, 0.8356164383562], 0.45318070933: [0.5479452054795, 0.4520547945205], 0.71214111466: [0.013698630137, 0.986301369863], 0.2602739726: [0.0], 0.13342090449: [0.6438356164384, 0.3561643835616], 0.69262525802: [0.7534246575342, 0.2465753424658], 0.03434040158: [0.0821917808219, 0.9178082191781], 0.56314505536: [0.3287671232877, 0.6712328767123], 0.14130230813: [0.1917808219178, 0.8082191780822], 0.31656971289: [0.3287671232877, 0.6712328767123], 0.49258772753: [0.2876712328767, 0.7123287671233], 0.79095515106: [0.6438356164384, 0.3561643835616], 0.14918371177: [0.8767123287671, 0.1232876712329], 0.3049352599: [0.6164383561644, 0.3835616438356], 0.82248076562: [0.7671232876712, 0.2328767123288], 0.31281666354: [0.5753424657534, 0.4246575342466], 0.78119722274: [0.1643835616438, 0.8356164383562], 0.83561643836: [0.0], 0.08050290861: [0.041095890411, 0.958904109589], 0.77369112404: [0.6027397260274, 0.3972602739726], 0.32857947082: [0.013698630137, 0.986301369863], 0.63933195722: [0.5890410958904, 0.4109589041096], 0.33646087446: [0.7534246575342, 0.2465753424658], 0.88027772565: [0.6164383561644, 0.3835616438356], 0.08575717771: [0.6164383561644, 0.3835616438356], 0.50759992494: [0.2602739726027, 0.7397260273973], 0.51022705949: [0.5068493150685, 0.4931506849315], 0.9350722462: [0.6164383561644, 0.3835616438356], 0.09363858135: [0.5753424657534, 0.4246575342466], 0.55488834678: [0.0821917808219, 0.9178082191781], 0.19121786452: [0.2876712328767, 0.7123287671233], 0.57065115406: [0.0684931506849, 0.9315068493151], 0.0121974104: [0.8767123287671, 0.1232876712329], 0.98799024207: [0.1095890410959, 0.8904109589041], 0.39688496904: [0.5616438356164, 0.4383561643836], 0.60217676863: [0.2876712328767, 0.7123287671233], 0.61531244136: [0.7945205479452, 0.2054794520548], 0.93131919685: [0.013698630137, 0.986301369863], 0.41264777632: [0.1095890410959, 0.8904109589041], 0.63370238319: [0.6164383561644, 0.3835616438356], 0.64683805592: [0.5205479452055, 0.4794520547945], 0.6626008632: [0.3013698630137, 0.6986301369863], 0.21748920998: [0.041095890411, 0.958904109589], 0.67836367048: [0.2739726027397, 0.7260273972603], 0.05535747795: [0.7671232876712, 0.2328767123288], 0.69149934322: [0.6027397260274, 0.3972602739726], 0.45205479452: [0.0], 0.7072621505: [0.1369863013699, 0.8630136986301], 0.11465565772: [0.3013698630137, 0.6986301369863], 0.72302495778: [0.0547945205479, 0.9452054794521], 0.72565209233: [0.5616438356164, 0.4383561643836], 0.23325201726: [0.1643835616438, 0.8356164383562], 0.97035091011: [0.5753424657534, 0.4246575342466], 0.27228373053: [0.041095890411, 0.958904109589], 0.01482454494: [0.5479452054795, 0.4520547945205], 0.75455057234: [0.5479452054795, 0.4520547945205], 0.86338900357: [0.1643835616438, 0.8356164383562], 0.48095327454: [0.3287671232877, 0.6712328767123], 0.28804653781: [0.1643835616438, 0.8356164383562], 0.12253706136: [0.027397260274, 0.972602739726], 0.49671608182: [0.6164383561644, 0.3835616438356], 0.76881215988: [0.1095890410959, 0.8904109589041], 0.07562394446: [0.2739726027397, 0.7260273972603], 0.81497466692: [0.7808219178082, 0.2191780821918], 0.15518859073: [0.0958904109589, 0.9041095890411], 0.31169074873: [0.3150684931507, 0.6849315068493], 0.77143929443: [0.1917808219178, 0.8082191780822], 0.90880090073: [0.1506849315068, 0.8493150684932], 0.86226308876: [0.027397260274, 0.972602739726], 0.77932069807: [0.8767123287671, 0.1232876712329], 0.17095139801: [0.6027397260274, 0.3972602739726], 0.89116156878: [0.2602739726027, 0.7397260273973], 0.34847063239: [0.3424657534247, 0.6575342465753], 0.92081065866: [0.5205479452055, 0.4794520547945], 0.50534809533: [0.8767123287671, 0.1232876712329], 0.35635203603: [0.6301369863014, 0.3698630136986], 0.17883280165: [0.2602739726027, 0.7397260273973], 0.52111090261: [0.7671232876712, 0.2328767123288], 0.91067742541: [0.6027397260274, 0.3972602739726], 0.53424657534: [0.0], 0.91930943892: [0.6712328767123, 0.3287671232877], 0.37211484331: [0.5342465753425, 0.4657534246575], 0.9542127979: [0.0684931506849, 0.9315068493151], 0.37999624695: [0.6438356164384, 0.3561643835616], 0.09664102083: [0.2602739726027, 0.7397260273973], 0.38787765059: [0.1917808219178, 0.8082191780822], 0.98573841246: [0.2876712328767, 0.7123287671233], 0.39575905423: [0.8767123287671, 0.1232876712329], 0.99887408519: [0.7945205479452, 0.2054794520548], 0.01257271533: [0.7945205479452, 0.2054794520548], 0.6104334772: [0.7534246575342, 0.2465753424658], 0.67085757178: [0.5616438356164, 0.4383561643836], 0.20510414712: [0.5616438356164, 0.4383561643836], 0.10452242447: [0.1369863013699, 0.8630136986301], 0.47720022518: [0.5753424657534, 0.4246575342466], 0.65772189904: [0.6301369863014, 0.3698630136986], 0.05423156315: [0.2876712328767, 0.7123287671233], 0.67348470632: [0.5342465753425, 0.4657534246575], 0.2208669544: [0.1095890410959, 0.8904109589041], 0.68662037906: [0.1095890410959, 0.8904109589041], 0.96246950647: [0.6164383561644, 0.3835616438356], 0.95871645712: [0.013698630137, 0.986301369863], 0.37699380747: [0.2739726027397, 0.7260273972603], 0.44304747607: [0.1506849315068, 0.8493150684932], 0.0654907112: [0.0547945205479, 0.9452054794521], 0.46406455245: [0.041095890411, 0.958904109589], 0.47982735973: [0.1643835616438, 0.8356164383562], 0.76543441546: [0.041095890411, 0.958904109589], 0.01519984988: [0.3287671232877, 0.6712328767123], 0.75492587728: [0.6712328767123, 0.3287671232877], 0.24713829987: [0.7671232876712, 0.2328767123288], 0.79433289548: [0.013698630137, 0.986301369863], 0.15068493151: [0.0], 0.30793769938: [0.6027397260274, 0.3972602739726], 0.31581910302: [0.2602739726027, 0.7397260273973], 0.84162131732: [0.6575342465753, 0.3424657534247], 0.32370050666: [0.1369863013699, 0.8630136986301], 0.9797335335: [0.2739726027397, 0.7260273972603], 0.87314693188: [0.6438356164384, 0.3561643835616], 0.16907487334: [0.1506849315068, 0.8493150684932], 0.84762619628: [0.041095890411, 0.958904109589], 0.08650778758: [0.1917808219178, 0.8082191780822], 0.17695627698: [0.7945205479452, 0.2054794520548], 0.5136048039: [0.7808219178082, 0.2191780821918], 0.51623193845: [0.1780821917808, 0.8219178082192], 0.88590729968: [0.5890410958904, 0.4109589041096], 0.53199474573: [0.5753424657534, 0.4246575342466], 0.18483768062: [0.7808219178082, 0.2191780821918], 0.4614374179: [0.1780821917808, 0.8219178082192], 0.09438919122: [0.8767123287671, 0.1232876712329], 0.56089322575: [0.027397260274, 0.972602739726], 0.38412460124: [0.7671232876712, 0.2328767123288], 0.02908613248: [0.1095890410959, 0.8904109589041], 0.58979170576: [0.2602739726027, 0.7397260273973], 0.59241884031: [0.5068493150685, 0.4931506849315], 0.96922499531: [0.6849315068493, 0.3150684931507], 0.4156502158: [0.1506849315068, 0.8493150684932], 0.6370801276: [0.0821917808219, 0.9178082191781], 0.74441733909: [0.1506849315068, 0.8493150684932], 0.42353161944: [0.7945205479452, 0.2054794520548], 0.65284293489: [0.0684931506849, 0.9315068493151], 0.43141302308: [0.7808219178082, 0.2191780821918], 0.21899042972: [0.013698630137, 0.986301369863], 0.68436854945: [0.2876712328767, 0.7123287671233], 0.69750422218: [0.7945205479452, 0.2054794520548], 0.25164195909: [0.3013698630137, 0.6986301369863], 0.22687183337: [0.7534246575342, 0.2465753424658], 0.130418465: [0.2739726027397, 0.7260273972603], 0.41114655658: [0.6301369863014, 0.3698630136986], 0.26740476637: [0.2739726027397, 0.7260273972603], 0.74479264402: [0.3013698630137, 0.6986301369863], 0.47607431038: [0.3150684931507, 0.6849315068493], 0.7605554513: [0.2739726027397, 0.7260273972603], 0.28316757365: [0.5890410958904, 0.4109589041096], 0.76280728092: [0.1780821917808, 0.8219178082192], 0.29104897729: [0.5068493150685, 0.4931506849315], 0.12328767123: [0.0], 0.571026459: [0.1780821917808, 0.8219178082192], 0.4997185213: [0.6027397260274, 0.3972602739726], 0.8052167386: [0.0547945205479, 0.9452054794521], 0.50647401013: [0.5616438356164, 0.4383561643836], 0.15668981047: [0.3424657534247, 0.6575342465753], 0.83674235316: [0.5479452054795, 0.4520547945205], 0.8498780259: [0.7671232876712, 0.2328767123288], 0.16457121411: [0.6301369863014, 0.3698630136986], 0.33571026459: [0.0821917808219, 0.9178082191781], 0.88140364046: [0.1506849315068, 0.8493150684932], 0.34359166823: [0.5479452054795, 0.4520547945205], 0.89716644774: [0.7808219178082, 0.2191780821918], 0.04409832989: [0.5205479452055, 0.4794520547945], 0.51135297429: [0.0958904109589, 0.9041095890411], 0.52223681741: [0.1095890410959, 0.8904109589041], 0.52711578157: [0.6027397260274, 0.3972602739726], 0.54025145431: [0.3424657534247, 0.6575342465753], 0.94182773504: [0.6849315068493, 0.3150684931507], 0.92381309814: [0.6575342465753, 0.3424657534247], 0.38299868643: [0.2876712328767, 0.7123287671233], 0.57177706887: [0.6438356164384, 0.3561643835616], 0.97598048414: [0.5068493150685, 0.4931506849315], 0.0973916307: [0.3287671232877, 0.6712328767123], 0.58753987615: [0.8767123287671, 0.1232876712329], 0.19872396322: [0.0821917808219, 0.9178082191781], 0.39876149371: [0.3287671232877, 0.6712328767123], 0.60330268343: [0.7671232876712, 0.2328767123288], 0.61643835616: [0.0], 0.20660536686: [0.5479452054795, 0.4520547945205], 0.10527303434: [0.1780821917808, 0.8219178082192], 0.73541002064: [0.1780821917808, 0.8219178082192], 0.42765997373: [0.5205479452055, 0.4794520547945], 0.2144867705: [0.0684931506849, 0.9315068493151], 0.81534997185: [0.2739726027397, 0.7260273972603], 0.05460686808: [0.013698630137, 0.986301369863], 0.00018765247: [0.6301369863014, 0.3698630136986], 0.44342278101: [0.3013698630137, 0.6986301369863], 0.44267217114: [0.1917808219178, 0.8082191780822], 0.69525239257: [0.6849315068493, 0.3150684931507], 0.45130418465: [0.027397260274, 0.972602739726], 0.37661850253: [0.7808219178082, 0.2191780821918], 0.45918558829: [0.2739726027397, 0.7260273972603], 0.06624132107: [0.5753424657534, 0.4246575342466], 0.73991367987: [0.6301369863014, 0.3698630136986], 0.13642334397: [0.2876712328767, 0.7123287671233], 0.47494839557: [0.5890410958904, 0.4109589041096], 0.75567648715: [0.5342465753425, 0.4657534246575], 0.03509101145: [0.7534246575342, 0.2465753424658], 0.48282979921: [0.5068493150685, 0.4931506849315], 0.28729592794: [0.5616438356164, 0.4383561643836], 0.96322011635: [0.1917808219178, 0.8082191780822], 0.30305873522: [0.1095890410959, 0.8904109589041], 0.15218615125: [0.3287671232877, 0.6712328767123], 0.99962469507: [0.5616438356164, 0.4383561643836], 0.83899418277: [0.5068493150685, 0.4931506849315], 0.84499906174: [0.1780821917808, 0.8219178082192], 0.82623381498: [0.1917808219178, 0.8082191780822], 0.86076186902: [0.5753424657534, 0.4246575342466], 0.02082942391: [0.2739726027397, 0.7260273972603], 0.99774817039: [0.5753424657534, 0.4246575342466], 0.8765246763: [0.013698630137, 0.986301369863], 0.34246575343: [0.0], 0.78945393132: [0.1369863013699, 0.8630136986301], 0.08725839745: [0.3013698630137, 0.6986301369863], 0.50384687559: [0.0547945205479, 0.9452054794521], 0.17845749672: [0.1643835616438, 0.8356164383562], 0.46106211297: [0.0684931506849, 0.9315068493151], 0.04559954963: [0.0958904109589, 0.9041095890411], 0.53537249015: [0.5479452054795, 0.4520547945205], 0.9553387127: [0.6438356164384, 0.3561643835616], 0.09513980109: [0.027397260274, 0.972602739726], 0.97110151999: [0.8767123287671, 0.1232876712329], 0.38712704072: [0.6164383561644, 0.3835616438356], 0.58003377744: [0.1506849315068, 0.8493150684932], 0.73053105648: [0.0958904109589, 0.9041095890411], 0.39500844436: [0.5753424657534, 0.4246575342466], 0.59579658473: [0.7808219178082, 0.2191780821918]} |
def is_valid(input_line: str) -> bool:
min_max, pass_char, password = input_line.split(' ')
min_count, max_count = [int(i) for i in min_max.split('-')]
pass_char = pass_char.rstrip(':')
char_count = 0
for char in password:
if char == pass_char:
char_count += 1
if char_count >= min_count and char_count <= max_count:
return True
return False
if __name__ == '__main__':
lines = [i.strip() for i in open('./input_data.csv','r').readlines()]
count = 0
for line in lines:
if is_valid(line):
count += 1
print(count)
| def is_valid(input_line: str) -> bool:
(min_max, pass_char, password) = input_line.split(' ')
(min_count, max_count) = [int(i) for i in min_max.split('-')]
pass_char = pass_char.rstrip(':')
char_count = 0
for char in password:
if char == pass_char:
char_count += 1
if char_count >= min_count and char_count <= max_count:
return True
return False
if __name__ == '__main__':
lines = [i.strip() for i in open('./input_data.csv', 'r').readlines()]
count = 0
for line in lines:
if is_valid(line):
count += 1
print(count) |
EDINGCNC_VERSION = "CNC V4.03.52"
EDINGCNC_MAJOR_VERSION = 4
CNC_EPSILON = (0.00001)
CNC_EPSILON_EPSILON = (1e-33)
CNC_MAGIC_NOTUSED_DOUBLE = -1.0e10
CNC_MAGIC_ZERO = 1.0e-33
CNC_DOUBLE_FUZZ = 2.2204460492503131e-16
CNC_FULL_CIRCLE_FUZZ_STANDARD = (0.000001)
CNC_PI = 3.1415926535897932384626433832795029
CNC_PI2 = (CNC_PI/2.0)
CNC_TWO_PI = (CNC_PI * 2.0)
CNC_MM_PER_INCH = 25.4
CNC_INCH_PER_MM = 0.039370078740157477
CNC_X_AXIS = 0
CNC_Y_AXIS = 1
CNC_Z_AXIS = 2
CNC_A_AXIS = 3
CNC_B_AXIS = 4
CNC_C_AXIS = 5
CNC_ALL_AXES = 6
CNC_X_JOINT = 0
CNC_Y_JOINT = 1
CNC_Z_JOINT = 2
CNC_A_JOINT = 3
CNC_B_JOINT = 4
CNC_C_JOINT = 5
CNC_ALL_JOINTS = 6
CNC_JOG_STEP_SIZE_0_001 = 1
CNC_JOG_STEP_SIZE_0_01 = 2
CNC_JOG_STEP_SIZE_0_1 = 3
CNC_JOG_STEP_SIZE_0_5 = 4
CNC_JOG_STEP_SIZE_1 = 5
CNC_HANDWHEEL_ON_NONE = -1
CNC_HANDWHEEL_ON_X = 0
CNC_HANDWHEEL_ON_Y = 1
CNC_HANDWHEEL_ON_Z = 2
CNC_HANDWHEEL_ON_A = 3
CNC_HANDWHEEL_ON_B = 4
CNC_HANDWHEEL_ON_C = 5
CNC_HANDWHEEL_ON_ALL = 6
CNC_HANDWHEEL_ON_FEED = 10
CNC_HANDWHEEL_ON_SPEED = 11
CNC_HANDWHEEL_MUL_SEL_01 = 1
CNC_HANDWHEEL_MUL_SEL_1 = 2
CNC_HANDWHEEL_MUL_SEL_10 = 3
CNC_HANDWHEEL_MUL_SEL_100 = 4
CNC_FEEDOV_SEL_000 = 1
CNC_FEEDOV_SEL_001 = 2
CNC_FEEDOV_SEL_002 = 3
CNC_FEEDOV_SEL_005 = 4
CNC_FEEDOV_SEL_010 = 5
CNC_FEEDOV_SEL_030 = 6
CNC_FEEDOV_SEL_060 = 7
CNC_FEEDOV_SEL_100 = 8
TOS_MAX_PATH = 260
OS_Windows = 1
TOS_MAX_PATH = 260
TOS_WIDE_CHAR_FILES = 1
TOS_PI = 3.1415926535897932384626433832795029
TOS_PI2 = (TOS_PI/2.0)
TOS_TWO_PI = (TOS_PI * 2.0)
TOS_MM_PER_INCH = 25.4
TOS_INCH_PER_MM = 0.039370078740157477
TOS_EPSILON = (0.00001)
TOS_MAGIC_NOTUSED_DOUBLE = -1.0e10
TOS_MAX_COMMAND_LINE = 260
TOS_MAX_ARGUMENTS = 20
TOS_MAX_CRITICAL_SECTIONS = 25
TOS_MAX_MUTEXES = 100
TOS_MAX_EVENTS = 100
TOS_MAX_THREADS = 25
TOS_MAX_UDP_SOCKETS = 10
TOS_IP_ADDRESS_STRING_LEN = 25
TOS_MAX_SHARED_MEM = 100
TOS_MAX_MAILBOXES = 100
TOS_MAX_MAILBOX_MESSAGES = 255
TOS_MAX_SERIAL_PORTS = 20
TOS_MAX_NAME_LENGTH = 260
TOS_INDEFINITE_WAIT = 0xFFFFFFFF
TOS_IMMEDIATE_RETURN = 0
MSEC_PER_TICK = 15
TOS_NO_MEMPTR = 0
TOS_NO_PROCESSID = (0x0)
TOS_USED = 1
TOS_FREE = 0
TOS_NOID = 0x1FFFFFFF
TOS_MSGBOX_OK = 0
TOS_MSGBOX_CANCEL = 1
TOS_MAX_PORT_NAME_SIZE = 10
TOS_MAX_SERIAL_NUMBER_SIZE = 128
MAX_NUMBER_USB_DEVICES = 5
| edingcnc_version = 'CNC V4.03.52'
edingcnc_major_version = 4
cnc_epsilon = 1e-05
cnc_epsilon_epsilon = 1e-33
cnc_magic_notused_double = -10000000000.0
cnc_magic_zero = 1e-33
cnc_double_fuzz = 2.220446049250313e-16
cnc_full_circle_fuzz_standard = 1e-06
cnc_pi = 3.141592653589793
cnc_pi2 = CNC_PI / 2.0
cnc_two_pi = CNC_PI * 2.0
cnc_mm_per_inch = 25.4
cnc_inch_per_mm = 0.03937007874015748
cnc_x_axis = 0
cnc_y_axis = 1
cnc_z_axis = 2
cnc_a_axis = 3
cnc_b_axis = 4
cnc_c_axis = 5
cnc_all_axes = 6
cnc_x_joint = 0
cnc_y_joint = 1
cnc_z_joint = 2
cnc_a_joint = 3
cnc_b_joint = 4
cnc_c_joint = 5
cnc_all_joints = 6
cnc_jog_step_size_0_001 = 1
cnc_jog_step_size_0_01 = 2
cnc_jog_step_size_0_1 = 3
cnc_jog_step_size_0_5 = 4
cnc_jog_step_size_1 = 5
cnc_handwheel_on_none = -1
cnc_handwheel_on_x = 0
cnc_handwheel_on_y = 1
cnc_handwheel_on_z = 2
cnc_handwheel_on_a = 3
cnc_handwheel_on_b = 4
cnc_handwheel_on_c = 5
cnc_handwheel_on_all = 6
cnc_handwheel_on_feed = 10
cnc_handwheel_on_speed = 11
cnc_handwheel_mul_sel_01 = 1
cnc_handwheel_mul_sel_1 = 2
cnc_handwheel_mul_sel_10 = 3
cnc_handwheel_mul_sel_100 = 4
cnc_feedov_sel_000 = 1
cnc_feedov_sel_001 = 2
cnc_feedov_sel_002 = 3
cnc_feedov_sel_005 = 4
cnc_feedov_sel_010 = 5
cnc_feedov_sel_030 = 6
cnc_feedov_sel_060 = 7
cnc_feedov_sel_100 = 8
tos_max_path = 260
os__windows = 1
tos_max_path = 260
tos_wide_char_files = 1
tos_pi = 3.141592653589793
tos_pi2 = TOS_PI / 2.0
tos_two_pi = TOS_PI * 2.0
tos_mm_per_inch = 25.4
tos_inch_per_mm = 0.03937007874015748
tos_epsilon = 1e-05
tos_magic_notused_double = -10000000000.0
tos_max_command_line = 260
tos_max_arguments = 20
tos_max_critical_sections = 25
tos_max_mutexes = 100
tos_max_events = 100
tos_max_threads = 25
tos_max_udp_sockets = 10
tos_ip_address_string_len = 25
tos_max_shared_mem = 100
tos_max_mailboxes = 100
tos_max_mailbox_messages = 255
tos_max_serial_ports = 20
tos_max_name_length = 260
tos_indefinite_wait = 4294967295
tos_immediate_return = 0
msec_per_tick = 15
tos_no_memptr = 0
tos_no_processid = 0
tos_used = 1
tos_free = 0
tos_noid = 536870911
tos_msgbox_ok = 0
tos_msgbox_cancel = 1
tos_max_port_name_size = 10
tos_max_serial_number_size = 128
max_number_usb_devices = 5 |
def create_sketch_from_image(img_lct,sketch_lct,outname,ext,n_sketches):
# img_lct --> It's the location of the images
# sketch_lct --> It's the location of the generated sketch image
# outname --> The name of the file
# ext --> The extension of the file 256FaceNewData
# n_sketches -->The number of sketches you will like to generate
for i in range(0,n_sketches-1):
img_rgb = cv2.imread(img_lct+'256_'+str(i)+'.jpg')
img_gray = cv2.cvtColor(img_rgb, cv2.COLOR_BGR2GRAY)
img_gray_inv = 255 - img_gray
img_blur = cv2.GaussianBlur(img_gray_inv, ksize=(21, 21),
sigmaX=100, sigmaY=100)
img_blend = dodgeV2(img_gray, img_blur)
sketch_pil = Image.fromarray(img_blend)
sketch_pil.save(sketch_lct+'/'+outname+str(i)+ext)
| def create_sketch_from_image(img_lct, sketch_lct, outname, ext, n_sketches):
for i in range(0, n_sketches - 1):
img_rgb = cv2.imread(img_lct + '256_' + str(i) + '.jpg')
img_gray = cv2.cvtColor(img_rgb, cv2.COLOR_BGR2GRAY)
img_gray_inv = 255 - img_gray
img_blur = cv2.GaussianBlur(img_gray_inv, ksize=(21, 21), sigmaX=100, sigmaY=100)
img_blend = dodge_v2(img_gray, img_blur)
sketch_pil = Image.fromarray(img_blend)
sketch_pil.save(sketch_lct + '/' + outname + str(i) + ext) |
# Please provide the API key for the account made on the website 2factor.in
SMS_GATEWAY_API_KEY = 'SMS_GATEWAY_API_KEY'
# Provide the 2factor urls for each type of sms
SMS_GATEWAY_URL = {
'otp': 'http://2factor.in/API/V1/{api_key}/SMS/',
'transactional': 'http://2factor.in/API/V1/{api_key}/ADDON_SERVICES/SEND/TSMS',
'promotional': 'http://2factor.in/API/V1/{api_key}/ADDON_SERVICES/SEND/PSMS'
}
| sms_gateway_api_key = 'SMS_GATEWAY_API_KEY'
sms_gateway_url = {'otp': 'http://2factor.in/API/V1/{api_key}/SMS/', 'transactional': 'http://2factor.in/API/V1/{api_key}/ADDON_SERVICES/SEND/TSMS', 'promotional': 'http://2factor.in/API/V1/{api_key}/ADDON_SERVICES/SEND/PSMS'} |
class Plotter:
pass
class PyplotPlotter(Plotter):
pass | class Plotter:
pass
class Pyplotplotter(Plotter):
pass |
# -*- coding: utf-8 -*-
'''
Management of Zabbix host groups.
:codeauthor: Jiri Kotlin <jiri.kotlin@ultimum.io>
'''
def __virtual__():
'''
Only make these states available if Zabbix module is available.
'''
return 'zabbix.hostgroup_create' in __salt__
def present(name):
'''
Ensures that the host group exists, eventually creates new host group.
Args:
name: name of the host group
'''
ret = {'name': name, 'changes': {}, 'result': False, 'comment': ''}
# Comment and change messages
comment_hostgroup_created = 'Host group {0} created.'.format(name)
comment_hostgroup_notcreated = 'Unable to create host group: {0}.'.format(name)
comment_hostgroup_exists = 'Host group {0} already exists.'.format(name)
changes_hostgroup_created = {name: {'old': 'Host group {0} does not exist.'.format(name),
'new': 'Host group {0} created.'.format(name),
}
}
hostgroup_exists = __salt__['zabbix.hostgroup_exists'](name)
# Dry run, test=true mode
if __opts__['test']:
if hostgroup_exists:
ret['result'] = True
ret['comment'] = comment_hostgroup_exists
else:
ret['result'] = None
ret['comment'] = comment_hostgroup_created
ret['changes'] = changes_hostgroup_created
if hostgroup_exists:
ret['result'] = True
ret['comment'] = comment_hostgroup_exists
else:
hostgroup_create = __salt__['zabbix.hostgroup_create'](name)
if hostgroup_create:
ret['result'] = True
ret['comment'] = str(hostgroup_create)
ret['changes'] = changes_hostgroup_created
else:
ret['result'] = False
ret['comment'] = comment_hostgroup_notcreated
return ret
def absent(name):
'''
Ensures that the host group does not exist, eventually delete host group.
Args:
name: name of the host group
'''
ret = {'name': name, 'changes': {}, 'result': False, 'comment': ''}
# Comment and change messages
comment_hostgroup_deleted = 'Host group {0} deleted.'.format(name)
comment_hostgroup_notdeleted = 'Unable to delete host group: {0}.'.format(name)
comment_hostgroup_notexists = 'Host group {0} does not exist.'.format(name)
changes_hostgroup_deleted = {name: {'old': 'Host group {0} exists.'.format(name),
'new': 'Host group {0} deleted.'.format(name),
}
}
hostgroup_exists = __salt__['zabbix.hostgroup_exists'](name)
# Dry run, test=true mode
if __opts__['test']:
if not hostgroup_exists:
ret['result'] = True
ret['comment'] = comment_hostgroup_notexists
else:
ret['result'] = None
ret['comment'] = comment_hostgroup_deleted
ret['changes'] = changes_hostgroup_deleted
hostgroup_get = __salt__['zabbix.hostgroup_get'](name)
if not hostgroup_get:
ret['result'] = True
ret['comment'] = comment_hostgroup_notexists
else:
try:
groupid = hostgroup_get[0]['groupid']
hostgroup_delete = __salt__['zabbix.hostgroup_delete'](groupid)
except KeyError:
hostgroup_delete = False
if hostgroup_delete:
ret['result'] = True
ret['comment'] = comment_hostgroup_deleted
ret['changes'] = changes_hostgroup_deleted
else:
ret['result'] = False
ret['comment'] = comment_hostgroup_notdeleted
return ret
| """
Management of Zabbix host groups.
:codeauthor: Jiri Kotlin <jiri.kotlin@ultimum.io>
"""
def __virtual__():
"""
Only make these states available if Zabbix module is available.
"""
return 'zabbix.hostgroup_create' in __salt__
def present(name):
"""
Ensures that the host group exists, eventually creates new host group.
Args:
name: name of the host group
"""
ret = {'name': name, 'changes': {}, 'result': False, 'comment': ''}
comment_hostgroup_created = 'Host group {0} created.'.format(name)
comment_hostgroup_notcreated = 'Unable to create host group: {0}.'.format(name)
comment_hostgroup_exists = 'Host group {0} already exists.'.format(name)
changes_hostgroup_created = {name: {'old': 'Host group {0} does not exist.'.format(name), 'new': 'Host group {0} created.'.format(name)}}
hostgroup_exists = __salt__['zabbix.hostgroup_exists'](name)
if __opts__['test']:
if hostgroup_exists:
ret['result'] = True
ret['comment'] = comment_hostgroup_exists
else:
ret['result'] = None
ret['comment'] = comment_hostgroup_created
ret['changes'] = changes_hostgroup_created
if hostgroup_exists:
ret['result'] = True
ret['comment'] = comment_hostgroup_exists
else:
hostgroup_create = __salt__['zabbix.hostgroup_create'](name)
if hostgroup_create:
ret['result'] = True
ret['comment'] = str(hostgroup_create)
ret['changes'] = changes_hostgroup_created
else:
ret['result'] = False
ret['comment'] = comment_hostgroup_notcreated
return ret
def absent(name):
"""
Ensures that the host group does not exist, eventually delete host group.
Args:
name: name of the host group
"""
ret = {'name': name, 'changes': {}, 'result': False, 'comment': ''}
comment_hostgroup_deleted = 'Host group {0} deleted.'.format(name)
comment_hostgroup_notdeleted = 'Unable to delete host group: {0}.'.format(name)
comment_hostgroup_notexists = 'Host group {0} does not exist.'.format(name)
changes_hostgroup_deleted = {name: {'old': 'Host group {0} exists.'.format(name), 'new': 'Host group {0} deleted.'.format(name)}}
hostgroup_exists = __salt__['zabbix.hostgroup_exists'](name)
if __opts__['test']:
if not hostgroup_exists:
ret['result'] = True
ret['comment'] = comment_hostgroup_notexists
else:
ret['result'] = None
ret['comment'] = comment_hostgroup_deleted
ret['changes'] = changes_hostgroup_deleted
hostgroup_get = __salt__['zabbix.hostgroup_get'](name)
if not hostgroup_get:
ret['result'] = True
ret['comment'] = comment_hostgroup_notexists
else:
try:
groupid = hostgroup_get[0]['groupid']
hostgroup_delete = __salt__['zabbix.hostgroup_delete'](groupid)
except KeyError:
hostgroup_delete = False
if hostgroup_delete:
ret['result'] = True
ret['comment'] = comment_hostgroup_deleted
ret['changes'] = changes_hostgroup_deleted
else:
ret['result'] = False
ret['comment'] = comment_hostgroup_notdeleted
return ret |
n = int(input())
l = [*map(int,input().split())]
ans = 0
for i in range(n):
l[i] = min(l[i], 7)
if i % 2 == 0:
ans += l[i] - 2
else:
ans += l[i] - 3
print(ans)
| n = int(input())
l = [*map(int, input().split())]
ans = 0
for i in range(n):
l[i] = min(l[i], 7)
if i % 2 == 0:
ans += l[i] - 2
else:
ans += l[i] - 3
print(ans) |
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
class TestOutputStream(object):
def __init__(self):
self._output_data = []
@property
def output_data(self):
return ''.join(self._output_data)
def write(self, data):
self._output_data.append(data)
def flush(self):
pass
| class Testoutputstream(object):
def __init__(self):
self._output_data = []
@property
def output_data(self):
return ''.join(self._output_data)
def write(self, data):
self._output_data.append(data)
def flush(self):
pass |
# projecteuler.net/problem=8
num = "7316717653133062491922511967442657474235534919493496983520312774506326239578318016984801869478851843858615607891129494954595017379583319528532088055111254069874715852386305071569329096329522744304355766896648950445244523161731856403098711121722383113622298934233803081353362766142828064444866452387493035890729629049156044077239071381051585930796086670172427121883998797908792274921901699720888093776657273330010533678812202354218097512545405947522435258490771167055601360483958644670632441572215539753697817977846174064955149290862569321978468622482839722413756570560574902614079729686524145351004748216637048440319989000889524345065854122758866688116427171479924442928230863465674813919123162824586178664583591245665294765456828489128831426076900422421902267105562632111110937054421750694165896040807198403850962455444362981230987879927244284909188845801561660979191338754992005240636899125607176060588611646710940507754100225698315520005593572972571636269561882670428252483600823257530420752963450"
def main():
ans = LargeProductInSeries()
print(ans)
def LargeProductInSeries():
res = []
for i in range(0, len(num)-4):
res.append(ProductDigits(num[i:i+5]))
return sorted(res)
def ProductDigits(n):
return int(n[0])*int(n[1])*int(n[2])*int(n[3])*int(n[4])
if __name__ == '__main__':
main()
| num = '7316717653133062491922511967442657474235534919493496983520312774506326239578318016984801869478851843858615607891129494954595017379583319528532088055111254069874715852386305071569329096329522744304355766896648950445244523161731856403098711121722383113622298934233803081353362766142828064444866452387493035890729629049156044077239071381051585930796086670172427121883998797908792274921901699720888093776657273330010533678812202354218097512545405947522435258490771167055601360483958644670632441572215539753697817977846174064955149290862569321978468622482839722413756570560574902614079729686524145351004748216637048440319989000889524345065854122758866688116427171479924442928230863465674813919123162824586178664583591245665294765456828489128831426076900422421902267105562632111110937054421750694165896040807198403850962455444362981230987879927244284909188845801561660979191338754992005240636899125607176060588611646710940507754100225698315520005593572972571636269561882670428252483600823257530420752963450'
def main():
ans = large_product_in_series()
print(ans)
def large_product_in_series():
res = []
for i in range(0, len(num) - 4):
res.append(product_digits(num[i:i + 5]))
return sorted(res)
def product_digits(n):
return int(n[0]) * int(n[1]) * int(n[2]) * int(n[3]) * int(n[4])
if __name__ == '__main__':
main() |
# Mailing Address
print("Shubhangi Singh")
print("College of Computer Science")
print("Computer Science Building")
print("294 Farm Ln Rm 104")
print("East Lansing MI 48824") | print('Shubhangi Singh')
print('College of Computer Science')
print('Computer Science Building')
print('294 Farm Ln Rm 104')
print('East Lansing MI 48824') |
a=int(input('valor para A:',))
b=int(input('valor para B:',))
soma=a+b
print('a soma eh:',soma)
| a = int(input('valor para A:'))
b = int(input('valor para B:'))
soma = a + b
print('a soma eh:', soma) |
def f():
return 42
100
| def f():
return 42
100 |
seed = 1234
def random():
global seed
seed = seed * 0xda942042e4dd58b5
value = seed >> 64
value = seed % 2**64
return value
for i in range(10):
print(random())
for i in range(10):
print(random()%3)
# D. H. Lehmer, Mathematical methods in large-scale computing units.
# Proceedings of a Second Symposium on Large Scale Digital Calculating
# Machinery;
# Annals of the Computation Laboratory, Harvard Univ. 26 (1951), pp. 141-146.
#
# P L'Ecuyer, Tables of linear congruential generators of different sizes and
# good lattice structure. Mathematics of Computation of the American
# Mathematical
# Society 68.225 (1999): 249-260. | seed = 1234
def random():
global seed
seed = seed * 15750249268501108917
value = seed >> 64
value = seed % 2 ** 64
return value
for i in range(10):
print(random())
for i in range(10):
print(random() % 3) |
def checkguess(request) :
guess = request.GET.get('guess','')
return guess == '42';
| def checkguess(request):
guess = request.GET.get('guess', '')
return guess == '42' |
# Python3 implementation to convert a binary number
# to octal number
# function to create map between binary
# number and its equivalent octal
def createMap(bin_oct_map):
bin_oct_map["000"] = '0'
bin_oct_map["001"] = '1'
bin_oct_map["010"] = '2'
bin_oct_map["011"] = '3'
bin_oct_map["100"] = '4'
bin_oct_map["101"] = '5'
bin_oct_map["110"] = '6'
bin_oct_map["111"] = '7'
# Function to find octal equivalent of binary
def convertBinToOct(bin):
l = len(bin)
# length of string before '.'
t = -1
if '.' in bin:
t = bin.index('.')
len_left = t
else:
len_left = l
# add min 0's in the beginning to make
# left substring length divisible by 3
for i in range(1, (3 - len_left % 3) % 3 + 1):
bin = '0' + bin
# if decimal point exists
if (t != -1):
# length of string after '.'
len_right = l - len_left - 1
# add min 0's in the end to make right
# substring length divisible by 3
for i in range(1, (3 - len_right % 3) % 3 + 1):
bin = bin + '0'
# create dictionary between binary and its
# equivalent octal code
bin_oct_map = {}
createMap(bin_oct_map)
i = 0
octal = ""
while (True) :
# one by one extract from left, substring
# of size 3 and add its octal code
octal += bin_oct_map[bin[i:i + 3]]
i += 3
if (i == len(bin)):
break
# if '.' is encountered add it to result
if (bin[i] == '.'):
octal += '.'
i += 1
# required octal number
return octal
# Driver Code
bin = "1111001010010100001.010110110011011"
print("Octal number = ",
convertBinToOct(bin))
# This code is contributed
# by Atul_kumar_Shrivastava
| def create_map(bin_oct_map):
bin_oct_map['000'] = '0'
bin_oct_map['001'] = '1'
bin_oct_map['010'] = '2'
bin_oct_map['011'] = '3'
bin_oct_map['100'] = '4'
bin_oct_map['101'] = '5'
bin_oct_map['110'] = '6'
bin_oct_map['111'] = '7'
def convert_bin_to_oct(bin):
l = len(bin)
t = -1
if '.' in bin:
t = bin.index('.')
len_left = t
else:
len_left = l
for i in range(1, (3 - len_left % 3) % 3 + 1):
bin = '0' + bin
if t != -1:
len_right = l - len_left - 1
for i in range(1, (3 - len_right % 3) % 3 + 1):
bin = bin + '0'
bin_oct_map = {}
create_map(bin_oct_map)
i = 0
octal = ''
while True:
octal += bin_oct_map[bin[i:i + 3]]
i += 3
if i == len(bin):
break
if bin[i] == '.':
octal += '.'
i += 1
return octal
bin = '1111001010010100001.010110110011011'
print('Octal number = ', convert_bin_to_oct(bin)) |
line_list = list(map(int, input().split()))
line_list.sort()
print(" <= ".join(str(x) for x in line_list)) | line_list = list(map(int, input().split()))
line_list.sort()
print(' <= '.join((str(x) for x in line_list))) |
class Pegawai:
def __init__(self, nama, email, gaji):
self.namaPegawai = nama
self.emailPegawai = email + 'gmail.com'
self.gajiPegawai = gaji
# nama dari method tidak boleh sama dengan property
# contoh : method gajiPegawai()
def gajiPegawaiCalculate(self):
# parameter self pada method merupakan hal yang sama dengan
# Pegawai.gajiPegawai(namaInstance)
self.gajiPegawai = self.gajiPegawai * 30
return self.gajiPegawai
# def gajiPegawaiCalculate():
#ini merupakan contoh dimana method yang tidak disarankan
# karena tidak menempatkan self di parameternya.
# dan jika itu terjadi maka program tidak akan membaca instance yang dipilih
# ini merupakan instance dari Class Pegawai
pegawai = Pegawai('Mohamad Fahmi','email.com',2000)
pegawai2 = Pegawai('Solihin','yahoo.com',2001)
# tiap instance akan memiliki value property yang berbeda
# hal ini karena dia dibentuk didalam waktu yang berbeda
print(pegawai.namaPegawai)
print(pegawai2.namaPegawai)
# gajiPegawai merupakan method itulah mengapa memiliki tanda '()'
print(pegawai.gajiPegawaiCalculate())
print(pegawai2.gajiPegawaiCalculate()) | class Pegawai:
def __init__(self, nama, email, gaji):
self.namaPegawai = nama
self.emailPegawai = email + 'gmail.com'
self.gajiPegawai = gaji
def gaji_pegawai_calculate(self):
self.gajiPegawai = self.gajiPegawai * 30
return self.gajiPegawai
pegawai = pegawai('Mohamad Fahmi', 'email.com', 2000)
pegawai2 = pegawai('Solihin', 'yahoo.com', 2001)
print(pegawai.namaPegawai)
print(pegawai2.namaPegawai)
print(pegawai.gajiPegawaiCalculate())
print(pegawai2.gajiPegawaiCalculate()) |
class Solution:
def avoidFlood(self, rains: List[int]) -> List[int]:
rainsLen = len(rains)
lastRains, dryDayIndices = {}, []
result = [-1] * rainsLen
def getDryingDayForLake(day, lake):
if len(dryDayIndices) == 0:
return None
else:
for dryDayIndex in dryDayIndices:
if lastRains[lake] < dryDayIndex < day:
return dryDayIndex
return None
for day, lake in enumerate(rains):
if lake > 0:
if lake in lastRains:
dryingDay = getDryingDayForLake(day, lake)
if dryingDay is None:
return []
else:
result[dryingDay] = lake
dryDayIndices.remove(dryingDay)
lastRains[lake] = day
else:
dryDayIndices.append(day)
while dryDayIndices:
result[dryDayIndices.pop()] = 1
return result | class Solution:
def avoid_flood(self, rains: List[int]) -> List[int]:
rains_len = len(rains)
(last_rains, dry_day_indices) = ({}, [])
result = [-1] * rainsLen
def get_drying_day_for_lake(day, lake):
if len(dryDayIndices) == 0:
return None
else:
for dry_day_index in dryDayIndices:
if lastRains[lake] < dryDayIndex < day:
return dryDayIndex
return None
for (day, lake) in enumerate(rains):
if lake > 0:
if lake in lastRains:
drying_day = get_drying_day_for_lake(day, lake)
if dryingDay is None:
return []
else:
result[dryingDay] = lake
dryDayIndices.remove(dryingDay)
lastRains[lake] = day
else:
dryDayIndices.append(day)
while dryDayIndices:
result[dryDayIndices.pop()] = 1
return result |
v = []
for i in range(20):
v.append(int(input("")))
for i in range(20):
print("N[%i] = %i" % (i, v[19 - i]))
| v = []
for i in range(20):
v.append(int(input('')))
for i in range(20):
print('N[%i] = %i' % (i, v[19 - i])) |
class Solution:
def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
def spiral_coords(r1, c1, r2, c2):
for c in range(c1, c2 + 1):
yield r1, c
for r in range(r1 + 1, r2 + 1):
yield r, c2
if r1 < r2 and c1 < c2:
for c in range(c2 - 1, c1, -1):
yield r2, c
for r in range(r2, r1, -1):
yield r, c1
if not matrix: return []
ans = []
r1, r2 = 0, len(matrix) - 1
c1, c2 = 0, len(matrix[0]) - 1
while r1 <= r2 and c1 <= c2:
for r, c in spiral_coords(r1, c1, r2, c2):
ans.append(matrix[r][c])
r1 += 1; r2 -= 1
c1 += 1; c2 -= 1
return ans | class Solution:
def spiral_order(self, matrix: List[List[int]]) -> List[int]:
def spiral_coords(r1, c1, r2, c2):
for c in range(c1, c2 + 1):
yield (r1, c)
for r in range(r1 + 1, r2 + 1):
yield (r, c2)
if r1 < r2 and c1 < c2:
for c in range(c2 - 1, c1, -1):
yield (r2, c)
for r in range(r2, r1, -1):
yield (r, c1)
if not matrix:
return []
ans = []
(r1, r2) = (0, len(matrix) - 1)
(c1, c2) = (0, len(matrix[0]) - 1)
while r1 <= r2 and c1 <= c2:
for (r, c) in spiral_coords(r1, c1, r2, c2):
ans.append(matrix[r][c])
r1 += 1
r2 -= 1
c1 += 1
c2 -= 1
return ans |
## https://leetcode.com/problems/card-flipping-game/
## this problem comes down to finding the smallest number
## that we can put on the back of a card without putting
## that same number on the frong. i do this by finding all
## invalid numbers, then taking the minimum of the remaining
## numbers. invalid numbers are those that appear on the
## front and back of the same car.
## complexity is roughly O(len(fronts))
## comes in at 99th percentile in terms of runtime, though
## only 31st in terms of memory
class Solution:
def flipgame(self, fronts: List[int], backs: List[int]) -> int:
### basically, looking to get the smallest number on the back
## that's not on a front
## numbers that are on both the front and back of a single card
## can be instantly eliminated
## all other numbers are valid -- there's sure to be a way to isolate
## each on the backs only
invalid_nums = set(fronts[ii] for ii in range(len(fronts)) if fronts[ii] == backs[ii])
all_numbers = set(fronts+backs)
valid_numbers = list(all_numbers.difference(invalid_nums))
if not len(valid_numbers):
return 0
return min(valid_numbers)
| class Solution:
def flipgame(self, fronts: List[int], backs: List[int]) -> int:
invalid_nums = set((fronts[ii] for ii in range(len(fronts)) if fronts[ii] == backs[ii]))
all_numbers = set(fronts + backs)
valid_numbers = list(all_numbers.difference(invalid_nums))
if not len(valid_numbers):
return 0
return min(valid_numbers) |
print("Welcome to Treasure island.\nYour Mission is to find the treasure.")
inputs = ["right", "left", "swim", "wait", "red", "blue", "yellow"]
input1 = input2 = input3 = 0
input1 = input(
"You're at a crossroad. Where do you want to go? Type 'Left' or 'Right'\n"
).lower()
if input1 == "right":
print("You got hit by a car. Game over")
exit
elif input1 == "left":
input2 = input(
"You come to a lake. There is an island in the middle of the lake. Type 'Wait' to wait for the boat. Type 'Swim' to swim across.\n"
).lower()
if input2.lower() == "swim":
print("You got drowned. Game over")
exit
elif input2 == "wait":
input3 = input(
"You arrive at the island unharmed. There is a house with 3 doors. One red, one yellow and one blue. Which color do you choose?\n"
).lower()
if input3 == "red" or input3 == "blue":
print("You got in a room full of dragons. Game over.")
exit
elif input3 == "yellow":
print("You win!")
exit
| print('Welcome to Treasure island.\nYour Mission is to find the treasure.')
inputs = ['right', 'left', 'swim', 'wait', 'red', 'blue', 'yellow']
input1 = input2 = input3 = 0
input1 = input("You're at a crossroad. Where do you want to go? Type 'Left' or 'Right'\n").lower()
if input1 == 'right':
print('You got hit by a car. Game over')
exit
elif input1 == 'left':
input2 = input("You come to a lake. There is an island in the middle of the lake. Type 'Wait' to wait for the boat. Type 'Swim' to swim across.\n").lower()
if input2.lower() == 'swim':
print('You got drowned. Game over')
exit
elif input2 == 'wait':
input3 = input('You arrive at the island unharmed. There is a house with 3 doors. One red, one yellow and one blue. Which color do you choose?\n').lower()
if input3 == 'red' or input3 == 'blue':
print('You got in a room full of dragons. Game over.')
exit
elif input3 == 'yellow':
print('You win!')
exit |
figures_black = {
"king": u"\u2654",
"queen": u"\u2655",
"rook": u"\u2656",
"bishop": u"\u2657",
"knight": u"\u2658",
"pawn": u"\u2659"
}
figures_white = {
"king": u"\u265A",
"queen": u"\u265B",
"rook": u"\u265C",
"bishop": u"\u265D",
"knight": u"\u265E",
"pawn": u"\u265F"
}
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
| figures_black = {'king': u'♔', 'queen': u'♕', 'rook': u'♖', 'bishop': u'♗', 'knight': u'♘', 'pawn': u'♙'}
figures_white = {'king': u'♚', 'queen': u'♛', 'rook': u'♜', 'bishop': u'♝', 'knight': u'♞', 'pawn': u'♟'}
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'] |
DEBUG = True
SECRET_KEY = "secret"
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = []
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.staticfiles',
'django.contrib.contenttypes',
'django_app_lti',
]
MIDDLEWARE = []
ROOT_URLCONF = 'django_app_lti.urls'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'mydatabase'
}
}
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
LTI_SETUP = {
"TOOL_TITLE": "Test Tool Title",
"TOOL_DESCRIPTION": "Test Tool Description",
"LAUNCH_REDIRECT_URL": "index",
"LAUNCH_URL": "launch",
}
| debug = True
secret_key = 'secret'
template_debug = True
allowed_hosts = []
installed_apps = ['django.contrib.auth', 'django.contrib.staticfiles', 'django.contrib.contenttypes', 'django_app_lti']
middleware = []
root_urlconf = 'django_app_lti.urls'
databases = {'default': {'ENGINE': 'django.db.backends.sqlite3', 'NAME': 'mydatabase'}}
language_code = 'en-us'
time_zone = 'UTC'
use_i18_n = True
use_l10_n = True
use_tz = True
lti_setup = {'TOOL_TITLE': 'Test Tool Title', 'TOOL_DESCRIPTION': 'Test Tool Description', 'LAUNCH_REDIRECT_URL': 'index', 'LAUNCH_URL': 'launch'} |
class Solution:
def isPalindrome(self, x: int) -> bool:
if x<0:
return False
# solving with converting into str
s = str(x)
n = len(s)
i=0
j=n-1
while(i<j):
if s[i]!=s[j]:
return False
i+=1
j-=1
return True
if __name__=='__main__':
sol = Solution()
print(sol.isPalindrome(-1221))
| class Solution:
def is_palindrome(self, x: int) -> bool:
if x < 0:
return False
s = str(x)
n = len(s)
i = 0
j = n - 1
while i < j:
if s[i] != s[j]:
return False
i += 1
j -= 1
return True
if __name__ == '__main__':
sol = solution()
print(sol.isPalindrome(-1221)) |
# SHERLOCK AND DATES
for _ in range(int(input())):
date = input().strip().split()
if date[0]=='1':
if date[1]==('January'):
date[0]='31'
elif date[1]==('May'):
date[0]='30'
elif date[1]==('July'):
date[0]='30'
elif date[1]==('October'):
date[0]='30'
elif date[1]==('December'):
date[0]='30'
elif date[1]==('February'):
date[0]='31'
elif date[1]==('April'):
date[0]='31'
elif date[1]==('June'):
date[0]='31'
elif date[1]==('August'):
date[0]='31'
elif date[1]==('September'):
date[0]='31'
elif date[1]==('November'):
date[0]='31'
elif date[1]=='March':
y = int(date[2])
if y%4==0:
date[0]='29'
if y%100==0 and y%400!=0:
date[0]='28'
else:
date[0]='28'
if date[1]=='January':
date[2] = str(int(date[2])-1)
date[1]='December'
elif date[1]=='February':
date[1]='January'
elif date[1]=='March':
date[1]='February'
elif date[1]=='April':
date[1]='March'
elif date[1]=='May':
date[1]='April'
elif date[1]=='June':
date[1]='May'
elif date[1]=='July':
date[1]='June'
elif date[1]=='August':
date[1]='July'
elif date[1]=='September':
date[1]='August'
elif date[1]=='October':
date[1]='September'
elif date[1]=='November':
date[1]='October'
elif date[1]=='December':
date[1]='November'
else:
date[0] = str(int(date[0])-1)
print(' '.join(date))
| for _ in range(int(input())):
date = input().strip().split()
if date[0] == '1':
if date[1] == 'January':
date[0] = '31'
elif date[1] == 'May':
date[0] = '30'
elif date[1] == 'July':
date[0] = '30'
elif date[1] == 'October':
date[0] = '30'
elif date[1] == 'December':
date[0] = '30'
elif date[1] == 'February':
date[0] = '31'
elif date[1] == 'April':
date[0] = '31'
elif date[1] == 'June':
date[0] = '31'
elif date[1] == 'August':
date[0] = '31'
elif date[1] == 'September':
date[0] = '31'
elif date[1] == 'November':
date[0] = '31'
elif date[1] == 'March':
y = int(date[2])
if y % 4 == 0:
date[0] = '29'
if y % 100 == 0 and y % 400 != 0:
date[0] = '28'
else:
date[0] = '28'
if date[1] == 'January':
date[2] = str(int(date[2]) - 1)
date[1] = 'December'
elif date[1] == 'February':
date[1] = 'January'
elif date[1] == 'March':
date[1] = 'February'
elif date[1] == 'April':
date[1] = 'March'
elif date[1] == 'May':
date[1] = 'April'
elif date[1] == 'June':
date[1] = 'May'
elif date[1] == 'July':
date[1] = 'June'
elif date[1] == 'August':
date[1] = 'July'
elif date[1] == 'September':
date[1] = 'August'
elif date[1] == 'October':
date[1] = 'September'
elif date[1] == 'November':
date[1] = 'October'
elif date[1] == 'December':
date[1] = 'November'
else:
date[0] = str(int(date[0]) - 1)
print(' '.join(date)) |
# File: skypeforbusiness_consts.py
#
# Copyright (c) 2019-2020 Splunk Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under
# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
# either express or implied. See the License for the specific language governing permissions
# and limitations under the License.
#
#
# Define your constants here
SKYPE4B_LOGIN_BASE_URL = 'https://login.microsoftonline.com'
SKYPE4B_AUTHORIZE_URL = '/{tenant_id}/oauth2/authorize?client_id={client_id}&redirect_uri={redirect_uri}' \
'&response_type={response_type}&state={state}&resource={resource}'
SKYPE4B_SERVER_TOKEN_URL = '/{tenant_id}/oauth2/token'
SKYPE4B_FIRST_HUB_URL_ENDPOINT = 'https://webdir.online.lync.com/autodiscover/autodiscoverservice.svc/root'
SKYPE4B_AUTODISCOVERY_ENDPOINT = '/autodiscover/autodiscoverservice.svc/root/oauth/user'
SKYPE4B_PHANTOM_BASE_URL = '{phantom_base_url}rest'
SKYPE4B_PHANTOM_SYS_INFO_URL = '/system_info'
SKYPE4B_PHANTOM_ASSET_INFO_URL = '/asset/{asset_id}'
SKYPE4B_APPLICATIONS_ENDPOINT = '/ucwa/oauth/v1/applications'
SKYPE4B_REST_URL_NOT_AVAILABLE_MSG = 'Rest URL not available. Error: {error}'
SKYPE4B_TEST_CONNECTIVITY_FAILED_MSG = 'Test connectivity failed'
SKYPE4B_TEST_CONNECTIVITY_PASSED_MSG = 'Test connectivity passed'
SKYPE4B_OAUTH_URL_MSG = 'Using OAuth URL:'
SKYPE4B_BASE_URL_NOT_FOUND_MSG = 'Phantom Base URL not found in System Settings. ' \
'Please specify this value in System Settings.'
SKYPE4B_AUTHORIZE_USER_MSG = 'Please authorize user in a separate tab using URL'
SKYPE4B_TOKEN_NOT_AVAILABLE_MSG = 'Token not available. Please run test connectivity first.'
SKYPE4B_RUN_TEST_CONN_MSG = 'Resource URL not available. Please run test connectivity first.'
SKYPE4B_JSON_CONTACT = 'contact_email'
SKYPE4B_JSON_MESSAGE = 'message'
SKYPE4B_CONFIG_CLIENT_ID = 'client_id'
SKYPE4B_CONFIG_CLIENT_SECRET = 'client_secret'
SKYPE4B_CONFIG_TENANT = 'tenant'
SKYPE4B_DEFAULT_TENANT = 'common'
SKYPE4B_ACCESS_TOKEN = 'access_token'
SKYPE4B_REFRESH_TOKEN = 'refresh_token'
SKYPE4B_TOKEN_STRING = 'token'
SKYPE4B_TC_FILE = 'oauth_task.out'
SKYPE4B_HEADERS_APP_JSON = 'application/json'
SKYPE4B_AUTHORIZE_WAIT_TIME = 15
SKYPE4B_TC_STATUS_SLEEP = 3
| skype4_b_login_base_url = 'https://login.microsoftonline.com'
skype4_b_authorize_url = '/{tenant_id}/oauth2/authorize?client_id={client_id}&redirect_uri={redirect_uri}&response_type={response_type}&state={state}&resource={resource}'
skype4_b_server_token_url = '/{tenant_id}/oauth2/token'
skype4_b_first_hub_url_endpoint = 'https://webdir.online.lync.com/autodiscover/autodiscoverservice.svc/root'
skype4_b_autodiscovery_endpoint = '/autodiscover/autodiscoverservice.svc/root/oauth/user'
skype4_b_phantom_base_url = '{phantom_base_url}rest'
skype4_b_phantom_sys_info_url = '/system_info'
skype4_b_phantom_asset_info_url = '/asset/{asset_id}'
skype4_b_applications_endpoint = '/ucwa/oauth/v1/applications'
skype4_b_rest_url_not_available_msg = 'Rest URL not available. Error: {error}'
skype4_b_test_connectivity_failed_msg = 'Test connectivity failed'
skype4_b_test_connectivity_passed_msg = 'Test connectivity passed'
skype4_b_oauth_url_msg = 'Using OAuth URL:'
skype4_b_base_url_not_found_msg = 'Phantom Base URL not found in System Settings. Please specify this value in System Settings.'
skype4_b_authorize_user_msg = 'Please authorize user in a separate tab using URL'
skype4_b_token_not_available_msg = 'Token not available. Please run test connectivity first.'
skype4_b_run_test_conn_msg = 'Resource URL not available. Please run test connectivity first.'
skype4_b_json_contact = 'contact_email'
skype4_b_json_message = 'message'
skype4_b_config_client_id = 'client_id'
skype4_b_config_client_secret = 'client_secret'
skype4_b_config_tenant = 'tenant'
skype4_b_default_tenant = 'common'
skype4_b_access_token = 'access_token'
skype4_b_refresh_token = 'refresh_token'
skype4_b_token_string = 'token'
skype4_b_tc_file = 'oauth_task.out'
skype4_b_headers_app_json = 'application/json'
skype4_b_authorize_wait_time = 15
skype4_b_tc_status_sleep = 3 |
OVERLEAF_BASE_URL = "https://www.overleaf.com"
OVERLEAF_LOGIN = OVERLEAF_BASE_URL + "/login"
OVERLEAF_CSRF_REGEX = "window\.csrfToken = \"(.+)\""
def get_download_url(project_id):
return OVERLEAF_BASE_URL + ("/project/%s/download/zip" % str(project_id))
| overleaf_base_url = 'https://www.overleaf.com'
overleaf_login = OVERLEAF_BASE_URL + '/login'
overleaf_csrf_regex = 'window\\.csrfToken = "(.+)"'
def get_download_url(project_id):
return OVERLEAF_BASE_URL + '/project/%s/download/zip' % str(project_id) |
def test_add_pickle_job(sqs, queue_name):
messages = []
_queue = sqs.queue(queue_name)
@_queue.processor("say_hello")
def say_hello(username=None):
messages.append(username)
say_hello.delay(username="Homer")
result = sqs.queue(queue_name).process_batch(wait_seconds=0)
assert result.succeeded_count() == 1
assert messages == ["Homer"]
| def test_add_pickle_job(sqs, queue_name):
messages = []
_queue = sqs.queue(queue_name)
@_queue.processor('say_hello')
def say_hello(username=None):
messages.append(username)
say_hello.delay(username='Homer')
result = sqs.queue(queue_name).process_batch(wait_seconds=0)
assert result.succeeded_count() == 1
assert messages == ['Homer'] |
__version__ = "HEAD"
__project__ = "sqlalchemy-rqlite"
__author__ = "Zac Medico"
__email__ = "zmedico@gmail.com"
__copyright__ = "Copyright (C) 2016 Zac Medico"
__license__ = "MIT"
__description__ = "A SQLAlchemy dialect for rqlite"
| __version__ = 'HEAD'
__project__ = 'sqlalchemy-rqlite'
__author__ = 'Zac Medico'
__email__ = 'zmedico@gmail.com'
__copyright__ = 'Copyright (C) 2016 Zac Medico'
__license__ = 'MIT'
__description__ = 'A SQLAlchemy dialect for rqlite' |
def test_py_config_defaults(py_config):
# driver settings
assert py_config.driver.browser == 'chrome'
assert py_config.driver.remote_url == ''
assert py_config.driver.wait_time == 10
assert py_config.driver.page_load_wait_time == 0
assert py_config.driver.options == []
assert py_config.driver.version == 'latest'
assert py_config.driver.capabilities == {}
assert py_config.driver.experimental_options is None
assert py_config.driver.webdriver_kwargs == {}
# logging settings
assert py_config.logging.screenshots_on is True
assert py_config.logging.pylog_level == 'info'
# viewport settings
assert py_config.viewport.maximize is True
assert py_config.viewport.width == 1440
assert py_config.viewport.height == 900
assert py_config.viewport.orientation == 'portrait'
# custom settings
assert py_config.custom is not None
def test_py_config(py_config):
# driver settings
assert py_config.driver.browser == 'chrome'
assert py_config.driver.remote_url == ''
assert py_config.driver.wait_time == 10
assert py_config.driver.page_load_wait_time == 0
assert py_config.driver.options == []
assert py_config.driver.version == 'latest'
assert py_config.driver.capabilities == {}
assert py_config.driver.experimental_options is None
assert py_config.driver.webdriver_kwargs == {}
# logging settings
assert py_config.logging.screenshots_on is True
assert py_config.logging.pylog_level == 'info'
# viewport settings
assert py_config.viewport.maximize is True
assert py_config.viewport.width == 1440
assert py_config.viewport.height == 900
assert py_config.viewport.orientation == 'portrait'
# custom settings
assert py_config.custom is not None
| def test_py_config_defaults(py_config):
assert py_config.driver.browser == 'chrome'
assert py_config.driver.remote_url == ''
assert py_config.driver.wait_time == 10
assert py_config.driver.page_load_wait_time == 0
assert py_config.driver.options == []
assert py_config.driver.version == 'latest'
assert py_config.driver.capabilities == {}
assert py_config.driver.experimental_options is None
assert py_config.driver.webdriver_kwargs == {}
assert py_config.logging.screenshots_on is True
assert py_config.logging.pylog_level == 'info'
assert py_config.viewport.maximize is True
assert py_config.viewport.width == 1440
assert py_config.viewport.height == 900
assert py_config.viewport.orientation == 'portrait'
assert py_config.custom is not None
def test_py_config(py_config):
assert py_config.driver.browser == 'chrome'
assert py_config.driver.remote_url == ''
assert py_config.driver.wait_time == 10
assert py_config.driver.page_load_wait_time == 0
assert py_config.driver.options == []
assert py_config.driver.version == 'latest'
assert py_config.driver.capabilities == {}
assert py_config.driver.experimental_options is None
assert py_config.driver.webdriver_kwargs == {}
assert py_config.logging.screenshots_on is True
assert py_config.logging.pylog_level == 'info'
assert py_config.viewport.maximize is True
assert py_config.viewport.width == 1440
assert py_config.viewport.height == 900
assert py_config.viewport.orientation == 'portrait'
assert py_config.custom is not None |
description = 'Slit H2 using Beckhoff controllers'
group = 'lowlevel'
devices = dict(
h2_center = device('nicos.devices.generic.VirtualMotor',
description = 'Horizontal slit system: offset of the slit-center to the beam',
unit = 'mm',
abslimits = (-69.5, 69.5),
speed = 1.,
),
h2_width = device('nicos.devices.generic.VirtualMotor',
description = 'Horizontal slit system: opening of the slit',
unit = 'mm',
abslimits = (0.05, 69.5),
speed = 1.,
),
)
| description = 'Slit H2 using Beckhoff controllers'
group = 'lowlevel'
devices = dict(h2_center=device('nicos.devices.generic.VirtualMotor', description='Horizontal slit system: offset of the slit-center to the beam', unit='mm', abslimits=(-69.5, 69.5), speed=1.0), h2_width=device('nicos.devices.generic.VirtualMotor', description='Horizontal slit system: opening of the slit', unit='mm', abslimits=(0.05, 69.5), speed=1.0)) |
# op map for nova.
op_map = \
{(8774, '/v2', '/extensions', 'GET', ''): (),
(8774, '/v2', '/extensions/os-consoles', 'GET', ''): (),
(8774, '/v2', '/flavors', 'GET', ''): (),
(8774, '/v2', '/flavors', 'POST', ''): ('compute_extension:flavormanage',
'compute_extension:flavor_swap',
'compute_extension:flavor_rxtx',
'compute_extension:flavor_access',
'compute_extension:flavorextradata',
'compute_extension:flavor_disabled'),
(8774, '/v2', '/flavors/%NAME%', 'DELETE', ''): ('compute_extension:flavormanage',),
(8774, '/v2', '/flavors/%NAME%', 'GET', ''): ('compute_extension:flavor_swap',
'compute_extension:flavor_rxtx',
'compute_extension:flavor_access',
'compute_extension:flavorextradata',
'compute_extension:flavor_disabled'),
(8774, '/v2', '/flavors/%NAME%/action', 'POST', 'addTenantAccess'): ('compute_extension:flavor_access:addTenantAccess',),
(8774, '/v2', '/flavors/%NAME%/action', 'POST', 'removeTenantAccess'): ('compute_extension:flavor_access:removeTenantAccess',),
(8774, '/v2', '/flavors/%NAME%/os-extra_specs', 'GET', ''): ('compute_extension:flavorextraspecs:index',),
(8774, '/v2', '/flavors/%NAME%/os-extra_specs', 'POST', ''): ('compute_extension:flavorextraspecs:create',),
(8774, '/v2', '/flavors/%NAME%/os-extra_specs/%NAME%', 'DELETE', ''): ('compute_extension:flavorextraspecs:delete',),
(8774, '/v2', '/flavors/%NAME%/os-extra_specs/%NAME%', 'GET', ''): ('compute_extension:flavorextraspecs:show',),
(8774, '/v2', '/flavors/%NAME%/os-extra_specs/%NAME%', 'PUT', ''): ('compute_extension:flavorextraspecs:update',),
(8774, '/v2', '/flavors/%NAME%/os-flavor-access', 'GET', ''): ('compute_extension:flavor_access',),
(8774, '/v2', '/flavors/%UUID%', 'DELETE', ''): ('compute_extension:flavormanage',),
(8774, '/v2', '/flavors/%UUID%', 'GET', ''): ('compute_extension:flavor_swap',
'compute_extension:flavor_rxtx',
'compute_extension:flavor_access',
'compute_extension:flavorextradata',
'compute_extension:flavor_disabled'),
(8774, '/v2', '/flavors/detail', 'GET', ''): ('compute_extension:flavor_swap',
'compute_extension:flavor_rxtx',
'compute_extension:flavor_access',
'compute_extension:flavorextradata',
'compute_extension:flavor_disabled'),
(8774, '/v2', '/flavors?limit=%VALUE%', 'GET', ''): (),
(8774, '/v2', '/flavors?marker=%VALUE%', 'GET', ''): (),
(8774, '/v2', '/flavors?minDisk=%VALUE%', 'GET', ''): (),
(8774, '/v2', '/flavors?minRam=%VALUE%', 'GET', ''): (),
(8774, '/v2', '/images', 'DELETE', ''): (),
(8774, '/v2', '/images', 'GET', ''): (),
(8774, '/v2', '/images/%NAME%', 'DELETE', ''): (),
(8774, '/v2', '/images/%NAME%', 'GET', ''): (),
(8774, '/v2', '/images/%UUID%', 'DELETE', ''): (),
(8774, '/v2', '/images/%UUID%', 'GET', ''): (),
(8774, '/v2', '/images/%UUID%/metadata', 'GET', ''): (),
(8774, '/v2', '/images/%UUID%/metadata', 'POST', ''): (),
(8774, '/v2', '/images/%UUID%/metadata', 'PUT', ''): (),
(8774, '/v2', '/images/%UUID%/metadata/os_distro', 'DELETE', ''): (),
(8774, '/v2', '/images/%UUID%/metadata/os_distro', 'GET', ''): (),
(8774, '/v2', '/images/%UUID%/metadata/os_distro', 'PUT', ''): (),
(8774, '/v2', '/images/%UUID%/metadata/os_version', 'DELETE', ''): (),
(8774, '/v2', '/images/%UUID%/metadata/os_version', 'GET', ''): (),
(8774, '/v2', '/images/%UUID%/metadata/os_version', 'PUT', ''): (),
(8774, '/v2', '/images/detail', 'GET', ''): ('compute_extension:image_size',
'compute_extension:disk_config'),
(8774, '/v2', '/limits', 'GET', ''): (),
(8774, '/v2', '/os-agents', 'GET', ''): ('compute_extension:agents',),
(8774, '/v2', '/os-agents', 'POST', ''): ('compute_extension:agents',),
(8774, '/v2', '/os-agents/%NAME%', 'DELETE', ''): ('compute_extension:agents',),
(8774, '/v2', '/os-agents/%NAME%', 'PUT', ''): ('compute_extension:agents',),
(8774, '/v2', '/os-agents?hypervisor=%VALUE%', 'GET', ''): ('compute_extension:agents',),
(8774, '/v2', '/os-aggregates', 'GET', ''): ('compute_extension:aggregates',),
(8774, '/v2', '/os-aggregates', 'POST', ''): ('compute_extension:aggregates',),
(8774, '/v2', '/os-aggregates/%NAME%', 'DELETE', ''): ('compute_extension:aggregates',),
(8774, '/v2', '/os-aggregates/%NAME%', 'GET', ''): ('compute_extension:aggregates',),
(8774, '/v2', '/os-aggregates/%NAME%', 'PUT', ''): ('compute_extension:aggregates',),
(8774, '/v2', '/os-aggregates/%NAME%/action', 'POST', 'host'): ('compute_extension:aggregates',),
(8774, '/v2', '/os-aggregates/%NAME%/action', 'POST', 'metadata'): ('compute_extension:aggregates',),
(8774, '/v2', '/os-availability-zone', 'GET', ''): ('compute_extension:availability_zone:list',),
(8774, '/v2', '/os-availability-zone/detail', 'GET', ''): ('compute_extension:availability_zone:detail',),
(8774, '/v2', '/os-certificates', 'POST', ''): ('compute_extension:certificates',),
(8774, '/v2', '/os-certificates/root', 'GET', ''): ('compute_extension:certificates',),
(8774, '/v2', '/os-floating-ips', 'POST', ''): ('compute_extension:floating_ips',),
(8774, '/v2', '/os-floating-ips-bulk', 'GET', ''): ('compute_extension:floating_ips_bulk',),
(8774, '/v2', '/os-floating-ips-bulk', 'POST', ''): ('compute_extension:floating_ips_bulk',),
(8774, '/v2', '/os-floating-ips-bulk/delete', 'PUT', ''): ('compute_extension:floating_ips_bulk',),
(8774, '/v2', '/os-floating-ips/%UUID%', 'GET', ''): ('compute_extension:floating_ips',),
(8774, '/v2', '/os-hosts', 'GET', ''): ('compute_extension:hosts',),
(8774, '/v2', '/os-hosts/%NAME%', 'GET', ''): (),
(8774, '/v2', '/os-hosts/%NAME%', 'PUT', ''): ('compute_extension:hosts',),
(8774, '/v2', '/os-hosts/%NAME%/reboot', 'GET', ''): ('compute_extension:hosts',),
(8774, '/v2', '/os-hosts/%NAME%/shutdown', 'GET', ''): ('compute_extension:hosts',),
(8774, '/v2', '/os-hosts/%NAME%/startup', 'GET', ''): ('compute_extension:hosts',),
(8774, '/v2', '/os-hosts?zone=%VALUE%', 'GET', ''): ('compute_extension:hosts',),
(8774, '/v2', '/os-hypervisors', 'GET', ''): ('compute_extension:hypervisors',),
(8774, '/v2', '/os-hypervisors/%NAME%', 'GET', ''): ('compute_extension:hypervisors',),
(8774, '/v2', '/os-hypervisors/%NAME%/search', 'GET', ''): ('compute_extension:hypervisors',),
(8774, '/v2', '/os-hypervisors/%NAME%/servers', 'GET', ''): ('compute_extension:hypervisors',),
(8774, '/v2', '/os-hypervisors/%NAME%/uptime', 'GET', ''): ('compute_extension:hypervisors',),
(8774, '/v2', '/os-hypervisors/%UUID%', 'GET', ''): ('compute_extension:hypervisors',),
(8774, '/v2', '/os-hypervisors/%UUID%/servers', 'GET', ''): ('compute_extension:hypervisors',),
(8774, '/v2', '/os-hypervisors/%UUID%/uptime', 'GET', ''): ('compute_extension:hypervisors',),
(8774, '/v2', '/os-hypervisors/detail', 'GET', ''): ('compute_extension:hypervisors',),
(8774, '/v2', '/os-instance_usage_audit_log', 'GET', ''): ('compute_extension:instance_usage_audit_log',),
(8774, '/v2', '/os-instance_usage_audit_log/%NAME%', 'GET', ''): ('compute_extension:instance_usage_audit_log',),
(8774, '/v2', '/os-keypairs', 'GET', ''): ('compute_extension:keypairs:index',),
(8774, '/v2', '/os-keypairs', 'POST', ''): ('compute_extension:keypairs:create',),
(8774, '/v2', '/os-keypairs/%NAME%', 'DELETE', ''): ('compute_extension:keypairs:delete',),
(8774, '/v2', '/os-keypairs/%NAME%', 'GET', ''): ('compute_extension:keypairs:show',),
(8774, '/v2', '/os-migrations', 'GET', ''): ('compute_extension:migrations:index',),
(8774, '/v2', '/os-networks', 'GET', ''): ('compute_extension:networks:view',),
(8774, '/v2', '/os-networks/%UUID%', 'GET', ''): ('compute_extension:networks:view',),
(8774, '/v2', '/os-quota-sets/%ID%', 'GET', ''): ('compute_extension:quotas:show',),
(8774, '/v2', '/os-quota-sets/%ID%', 'PUT', ''): ('compute_extension:quotas:update',),
(8774, '/v2', '/os-security-group-rules', 'POST', ''): ('compute_extension:security_groups',),
(8774, '/v2', '/os-security-group-rules/%UUID%', 'DELETE', ''): ('compute_extension:security_groups',),
(8774, '/v2', '/os-security-groups', 'DELETE', ''): (),
(8774, '/v2', '/os-security-groups', 'GET', ''): ('compute_extension:security_groups',),
(8774, '/v2', '/os-security-groups', 'POST', ''): ('compute_extension:security_groups',),
(8774, '/v2', '/os-security-groups/%UUID%', 'DELETE', ''): ('compute_extension:security_groups',),
(8774, '/v2', '/os-security-groups/%UUID%', 'GET', ''): ('compute_extension:security_groups',),
(8774, '/v2', '/os-security-groups/%UUID%', 'PUT', ''): ('compute_extension:security_groups',),
(8774, '/v2', '/os-server-groups', 'GET', ''): ('compute_extension:server_groups',),
(8774, '/v2', '/os-server-groups', 'POST', ''): ('compute_extension:server_groups',),
(8774, '/v2', '/os-server-groups/%UUID%', 'DELETE', ''): ('compute_extension:server_groups',),
(8774, '/v2', '/os-server-groups/%UUID%', 'GET', ''): ('compute_extension:server_groups',),
(8774, '/v2', '/os-services', 'GET', ''): ('compute_extension:services',),
(8774, '/v2', '/os-services?binary=%VALUE%', 'GET', ''): ('compute_extension:services',),
(8774, '/v2', '/os-services?binary=%VALUE%&host=%VALUE%', 'GET', ''): ('compute_extension:services',),
(8774, '/v2', '/os-services?host=%VALUE%', 'GET', ''): ('compute_extension:services',),
(8774, '/v2', '/os-services?xxx=%VALUE%', 'GET', ''): ('compute_extension:services',),
(8774, '/v2', '/os-simple-tenant-usage/%ID%', 'GET', ''): ('compute_extension:simple_tenant_usage:show',),
(8774, '/v2', '/os-simple-tenant-usage/%NAME%', 'GET', ''): (),
(8774, '/v2', '/os-simple-tenant-usage?detailed=%VALUE%&start=%VALUE%&end=%VALUE%', 'GET', ''): ('compute_extension:simple_tenant_usage:list',),
(8774, '/v2', '/os-tenant-networks', 'GET', ''): ('compute_extension:os-tenant-networks',),
(8774, '/v2', '/os-tenant-networks/%UUID%', 'GET', ''): ('compute_extension:os-tenant-networks',),
(8774, '/v2', '/os-volumes', 'DELETE', ''): (),
(8774, '/v2', '/os-volumes', 'GET', ''): (),
(8774, '/v2', '/os-volumes', 'POST', ''): ('compute_extension:volumes',),
(8774, '/v2', '/os-volumes/%NAME%', 'DELETE', ''): ('compute_extension:volumes',),
(8774, '/v2', '/os-volumes/%UUID%', 'DELETE', ''): ('compute_extension:volumes',),
(8774, '/v2', '/os-volumes/%UUID%', 'GET', ''): ('compute_extension:volumes',),
(8774, '/v2', '/servers', 'POST', ''): ('compute_extension:disk_config',),
(8774, '/v2', '/servers/%ID%/action', 'POST', 'createImage'): (),
(8774, '/v2', '/servers/%NAME%', 'POST', ''): (),
(8774, '/v2', '/servers/%UUID%/os-virtual-interfaces', 'GET', ''): ('compute_extension:virtual_interfaces',)}
| op_map = {(8774, '/v2', '/extensions', 'GET', ''): (), (8774, '/v2', '/extensions/os-consoles', 'GET', ''): (), (8774, '/v2', '/flavors', 'GET', ''): (), (8774, '/v2', '/flavors', 'POST', ''): ('compute_extension:flavormanage', 'compute_extension:flavor_swap', 'compute_extension:flavor_rxtx', 'compute_extension:flavor_access', 'compute_extension:flavorextradata', 'compute_extension:flavor_disabled'), (8774, '/v2', '/flavors/%NAME%', 'DELETE', ''): ('compute_extension:flavormanage',), (8774, '/v2', '/flavors/%NAME%', 'GET', ''): ('compute_extension:flavor_swap', 'compute_extension:flavor_rxtx', 'compute_extension:flavor_access', 'compute_extension:flavorextradata', 'compute_extension:flavor_disabled'), (8774, '/v2', '/flavors/%NAME%/action', 'POST', 'addTenantAccess'): ('compute_extension:flavor_access:addTenantAccess',), (8774, '/v2', '/flavors/%NAME%/action', 'POST', 'removeTenantAccess'): ('compute_extension:flavor_access:removeTenantAccess',), (8774, '/v2', '/flavors/%NAME%/os-extra_specs', 'GET', ''): ('compute_extension:flavorextraspecs:index',), (8774, '/v2', '/flavors/%NAME%/os-extra_specs', 'POST', ''): ('compute_extension:flavorextraspecs:create',), (8774, '/v2', '/flavors/%NAME%/os-extra_specs/%NAME%', 'DELETE', ''): ('compute_extension:flavorextraspecs:delete',), (8774, '/v2', '/flavors/%NAME%/os-extra_specs/%NAME%', 'GET', ''): ('compute_extension:flavorextraspecs:show',), (8774, '/v2', '/flavors/%NAME%/os-extra_specs/%NAME%', 'PUT', ''): ('compute_extension:flavorextraspecs:update',), (8774, '/v2', '/flavors/%NAME%/os-flavor-access', 'GET', ''): ('compute_extension:flavor_access',), (8774, '/v2', '/flavors/%UUID%', 'DELETE', ''): ('compute_extension:flavormanage',), (8774, '/v2', '/flavors/%UUID%', 'GET', ''): ('compute_extension:flavor_swap', 'compute_extension:flavor_rxtx', 'compute_extension:flavor_access', 'compute_extension:flavorextradata', 'compute_extension:flavor_disabled'), (8774, '/v2', '/flavors/detail', 'GET', ''): ('compute_extension:flavor_swap', 'compute_extension:flavor_rxtx', 'compute_extension:flavor_access', 'compute_extension:flavorextradata', 'compute_extension:flavor_disabled'), (8774, '/v2', '/flavors?limit=%VALUE%', 'GET', ''): (), (8774, '/v2', '/flavors?marker=%VALUE%', 'GET', ''): (), (8774, '/v2', '/flavors?minDisk=%VALUE%', 'GET', ''): (), (8774, '/v2', '/flavors?minRam=%VALUE%', 'GET', ''): (), (8774, '/v2', '/images', 'DELETE', ''): (), (8774, '/v2', '/images', 'GET', ''): (), (8774, '/v2', '/images/%NAME%', 'DELETE', ''): (), (8774, '/v2', '/images/%NAME%', 'GET', ''): (), (8774, '/v2', '/images/%UUID%', 'DELETE', ''): (), (8774, '/v2', '/images/%UUID%', 'GET', ''): (), (8774, '/v2', '/images/%UUID%/metadata', 'GET', ''): (), (8774, '/v2', '/images/%UUID%/metadata', 'POST', ''): (), (8774, '/v2', '/images/%UUID%/metadata', 'PUT', ''): (), (8774, '/v2', '/images/%UUID%/metadata/os_distro', 'DELETE', ''): (), (8774, '/v2', '/images/%UUID%/metadata/os_distro', 'GET', ''): (), (8774, '/v2', '/images/%UUID%/metadata/os_distro', 'PUT', ''): (), (8774, '/v2', '/images/%UUID%/metadata/os_version', 'DELETE', ''): (), (8774, '/v2', '/images/%UUID%/metadata/os_version', 'GET', ''): (), (8774, '/v2', '/images/%UUID%/metadata/os_version', 'PUT', ''): (), (8774, '/v2', '/images/detail', 'GET', ''): ('compute_extension:image_size', 'compute_extension:disk_config'), (8774, '/v2', '/limits', 'GET', ''): (), (8774, '/v2', '/os-agents', 'GET', ''): ('compute_extension:agents',), (8774, '/v2', '/os-agents', 'POST', ''): ('compute_extension:agents',), (8774, '/v2', '/os-agents/%NAME%', 'DELETE', ''): ('compute_extension:agents',), (8774, '/v2', '/os-agents/%NAME%', 'PUT', ''): ('compute_extension:agents',), (8774, '/v2', '/os-agents?hypervisor=%VALUE%', 'GET', ''): ('compute_extension:agents',), (8774, '/v2', '/os-aggregates', 'GET', ''): ('compute_extension:aggregates',), (8774, '/v2', '/os-aggregates', 'POST', ''): ('compute_extension:aggregates',), (8774, '/v2', '/os-aggregates/%NAME%', 'DELETE', ''): ('compute_extension:aggregates',), (8774, '/v2', '/os-aggregates/%NAME%', 'GET', ''): ('compute_extension:aggregates',), (8774, '/v2', '/os-aggregates/%NAME%', 'PUT', ''): ('compute_extension:aggregates',), (8774, '/v2', '/os-aggregates/%NAME%/action', 'POST', 'host'): ('compute_extension:aggregates',), (8774, '/v2', '/os-aggregates/%NAME%/action', 'POST', 'metadata'): ('compute_extension:aggregates',), (8774, '/v2', '/os-availability-zone', 'GET', ''): ('compute_extension:availability_zone:list',), (8774, '/v2', '/os-availability-zone/detail', 'GET', ''): ('compute_extension:availability_zone:detail',), (8774, '/v2', '/os-certificates', 'POST', ''): ('compute_extension:certificates',), (8774, '/v2', '/os-certificates/root', 'GET', ''): ('compute_extension:certificates',), (8774, '/v2', '/os-floating-ips', 'POST', ''): ('compute_extension:floating_ips',), (8774, '/v2', '/os-floating-ips-bulk', 'GET', ''): ('compute_extension:floating_ips_bulk',), (8774, '/v2', '/os-floating-ips-bulk', 'POST', ''): ('compute_extension:floating_ips_bulk',), (8774, '/v2', '/os-floating-ips-bulk/delete', 'PUT', ''): ('compute_extension:floating_ips_bulk',), (8774, '/v2', '/os-floating-ips/%UUID%', 'GET', ''): ('compute_extension:floating_ips',), (8774, '/v2', '/os-hosts', 'GET', ''): ('compute_extension:hosts',), (8774, '/v2', '/os-hosts/%NAME%', 'GET', ''): (), (8774, '/v2', '/os-hosts/%NAME%', 'PUT', ''): ('compute_extension:hosts',), (8774, '/v2', '/os-hosts/%NAME%/reboot', 'GET', ''): ('compute_extension:hosts',), (8774, '/v2', '/os-hosts/%NAME%/shutdown', 'GET', ''): ('compute_extension:hosts',), (8774, '/v2', '/os-hosts/%NAME%/startup', 'GET', ''): ('compute_extension:hosts',), (8774, '/v2', '/os-hosts?zone=%VALUE%', 'GET', ''): ('compute_extension:hosts',), (8774, '/v2', '/os-hypervisors', 'GET', ''): ('compute_extension:hypervisors',), (8774, '/v2', '/os-hypervisors/%NAME%', 'GET', ''): ('compute_extension:hypervisors',), (8774, '/v2', '/os-hypervisors/%NAME%/search', 'GET', ''): ('compute_extension:hypervisors',), (8774, '/v2', '/os-hypervisors/%NAME%/servers', 'GET', ''): ('compute_extension:hypervisors',), (8774, '/v2', '/os-hypervisors/%NAME%/uptime', 'GET', ''): ('compute_extension:hypervisors',), (8774, '/v2', '/os-hypervisors/%UUID%', 'GET', ''): ('compute_extension:hypervisors',), (8774, '/v2', '/os-hypervisors/%UUID%/servers', 'GET', ''): ('compute_extension:hypervisors',), (8774, '/v2', '/os-hypervisors/%UUID%/uptime', 'GET', ''): ('compute_extension:hypervisors',), (8774, '/v2', '/os-hypervisors/detail', 'GET', ''): ('compute_extension:hypervisors',), (8774, '/v2', '/os-instance_usage_audit_log', 'GET', ''): ('compute_extension:instance_usage_audit_log',), (8774, '/v2', '/os-instance_usage_audit_log/%NAME%', 'GET', ''): ('compute_extension:instance_usage_audit_log',), (8774, '/v2', '/os-keypairs', 'GET', ''): ('compute_extension:keypairs:index',), (8774, '/v2', '/os-keypairs', 'POST', ''): ('compute_extension:keypairs:create',), (8774, '/v2', '/os-keypairs/%NAME%', 'DELETE', ''): ('compute_extension:keypairs:delete',), (8774, '/v2', '/os-keypairs/%NAME%', 'GET', ''): ('compute_extension:keypairs:show',), (8774, '/v2', '/os-migrations', 'GET', ''): ('compute_extension:migrations:index',), (8774, '/v2', '/os-networks', 'GET', ''): ('compute_extension:networks:view',), (8774, '/v2', '/os-networks/%UUID%', 'GET', ''): ('compute_extension:networks:view',), (8774, '/v2', '/os-quota-sets/%ID%', 'GET', ''): ('compute_extension:quotas:show',), (8774, '/v2', '/os-quota-sets/%ID%', 'PUT', ''): ('compute_extension:quotas:update',), (8774, '/v2', '/os-security-group-rules', 'POST', ''): ('compute_extension:security_groups',), (8774, '/v2', '/os-security-group-rules/%UUID%', 'DELETE', ''): ('compute_extension:security_groups',), (8774, '/v2', '/os-security-groups', 'DELETE', ''): (), (8774, '/v2', '/os-security-groups', 'GET', ''): ('compute_extension:security_groups',), (8774, '/v2', '/os-security-groups', 'POST', ''): ('compute_extension:security_groups',), (8774, '/v2', '/os-security-groups/%UUID%', 'DELETE', ''): ('compute_extension:security_groups',), (8774, '/v2', '/os-security-groups/%UUID%', 'GET', ''): ('compute_extension:security_groups',), (8774, '/v2', '/os-security-groups/%UUID%', 'PUT', ''): ('compute_extension:security_groups',), (8774, '/v2', '/os-server-groups', 'GET', ''): ('compute_extension:server_groups',), (8774, '/v2', '/os-server-groups', 'POST', ''): ('compute_extension:server_groups',), (8774, '/v2', '/os-server-groups/%UUID%', 'DELETE', ''): ('compute_extension:server_groups',), (8774, '/v2', '/os-server-groups/%UUID%', 'GET', ''): ('compute_extension:server_groups',), (8774, '/v2', '/os-services', 'GET', ''): ('compute_extension:services',), (8774, '/v2', '/os-services?binary=%VALUE%', 'GET', ''): ('compute_extension:services',), (8774, '/v2', '/os-services?binary=%VALUE%&host=%VALUE%', 'GET', ''): ('compute_extension:services',), (8774, '/v2', '/os-services?host=%VALUE%', 'GET', ''): ('compute_extension:services',), (8774, '/v2', '/os-services?xxx=%VALUE%', 'GET', ''): ('compute_extension:services',), (8774, '/v2', '/os-simple-tenant-usage/%ID%', 'GET', ''): ('compute_extension:simple_tenant_usage:show',), (8774, '/v2', '/os-simple-tenant-usage/%NAME%', 'GET', ''): (), (8774, '/v2', '/os-simple-tenant-usage?detailed=%VALUE%&start=%VALUE%&end=%VALUE%', 'GET', ''): ('compute_extension:simple_tenant_usage:list',), (8774, '/v2', '/os-tenant-networks', 'GET', ''): ('compute_extension:os-tenant-networks',), (8774, '/v2', '/os-tenant-networks/%UUID%', 'GET', ''): ('compute_extension:os-tenant-networks',), (8774, '/v2', '/os-volumes', 'DELETE', ''): (), (8774, '/v2', '/os-volumes', 'GET', ''): (), (8774, '/v2', '/os-volumes', 'POST', ''): ('compute_extension:volumes',), (8774, '/v2', '/os-volumes/%NAME%', 'DELETE', ''): ('compute_extension:volumes',), (8774, '/v2', '/os-volumes/%UUID%', 'DELETE', ''): ('compute_extension:volumes',), (8774, '/v2', '/os-volumes/%UUID%', 'GET', ''): ('compute_extension:volumes',), (8774, '/v2', '/servers', 'POST', ''): ('compute_extension:disk_config',), (8774, '/v2', '/servers/%ID%/action', 'POST', 'createImage'): (), (8774, '/v2', '/servers/%NAME%', 'POST', ''): (), (8774, '/v2', '/servers/%UUID%/os-virtual-interfaces', 'GET', ''): ('compute_extension:virtual_interfaces',)} |
# -*- coding: utf-8 -*-
__author__ = 'Fabio Caccamo'
__copyright__ = 'Copyright (c) 2020-present Fabio Caccamo'
__description__ = 'file-system utilities for lazy devs.'
__email__ = 'fabio.caccamo@gmail.com'
__license__ = 'MIT'
__title__ = 'python-fsutil'
__version__ = '0.3.0'
| __author__ = 'Fabio Caccamo'
__copyright__ = 'Copyright (c) 2020-present Fabio Caccamo'
__description__ = 'file-system utilities for lazy devs.'
__email__ = 'fabio.caccamo@gmail.com'
__license__ = 'MIT'
__title__ = 'python-fsutil'
__version__ = '0.3.0' |
_WIT_ACCESS_TOKEN_FOR_BROWSER_TV = '3QTEIGPP4YXNRN6DKPDOLV46EQLSGIUJ'
_WIT_ACCESS_TOKEN_FOR_DEVICE_CONTROL = 'IEGTTI2YDCBYGF6ZYR7AVI2ZOVXLOSMI'
LISTENERS = [
( 'archspee.listeners.alsa_port_audio.AlsaPortAudioListener', {} )
]
TRIGGERS = [
(
'archspee.triggers.snowboy.SnowboyTrigger',
{
'decoder_model': [
'third_party/snowboy/resources/snowboy.umdl',
'third_party/snowboy/resources/alexa_02092017.umdl'
],
'trigger_ids': [1, 2],
'sensitivity': [],
'audio_gain': 1.0
}
),
#( 'archspee.triggers.gpio.GpioButtonTrigger', { 'gpio_pins': [17], 'trigger_ids': [2] } )
]
PRESENTERS = [
( 'archspee.presenters.log.LogPresenter', {} ),
( 'archspee.presenters.audio.AudioPresenter', {} ),
#( 'archspee.presenters.pixels.PixelsPresenter', {} ),
# FIXME: Gtk presenter should be the last presenter due that Gtk.main() blocks main thread
( 'archspee.presenters.gtk_app_indicator.GtkAppIndicatorPresenter', {} )
]
RECOGNIZERS = [
# this recognizer includes intent interpreting
(
1,
'archspee.recognizers.wit.WitRecognizer',
{ 'access_token': _WIT_ACCESS_TOKEN_FOR_BROWSER_TV }
),
# this recognizer does not include interpreting so need to hook another interpreter to this trigger ID
(
2,
'archspee.recognizers.speech.GoogleSpeechRecognizer',
{ 'language': 'en-US' }
)
]
INTERPRETERS = [
(
2,
'archspee.interpreters.wit.WitInterpreter',
{ 'access_token': _WIT_ACCESS_TOKEN_FOR_DEVICE_CONTROL }
)
]
HANDLERS = [
(
[1],
'archspee.handlers.browser_youtube_tv.BrowserYouTubeTVIntentHandler',
{
'browser_exec': 'puffin_demo',
'args': ['--kiosk']
}
),
(
[2],
'archspee.handlers.scripts.ScriptsIntentHandler',
{}
)
]
| _wit_access_token_for_browser_tv = '3QTEIGPP4YXNRN6DKPDOLV46EQLSGIUJ'
_wit_access_token_for_device_control = 'IEGTTI2YDCBYGF6ZYR7AVI2ZOVXLOSMI'
listeners = [('archspee.listeners.alsa_port_audio.AlsaPortAudioListener', {})]
triggers = [('archspee.triggers.snowboy.SnowboyTrigger', {'decoder_model': ['third_party/snowboy/resources/snowboy.umdl', 'third_party/snowboy/resources/alexa_02092017.umdl'], 'trigger_ids': [1, 2], 'sensitivity': [], 'audio_gain': 1.0})]
presenters = [('archspee.presenters.log.LogPresenter', {}), ('archspee.presenters.audio.AudioPresenter', {}), ('archspee.presenters.gtk_app_indicator.GtkAppIndicatorPresenter', {})]
recognizers = [(1, 'archspee.recognizers.wit.WitRecognizer', {'access_token': _WIT_ACCESS_TOKEN_FOR_BROWSER_TV}), (2, 'archspee.recognizers.speech.GoogleSpeechRecognizer', {'language': 'en-US'})]
interpreters = [(2, 'archspee.interpreters.wit.WitInterpreter', {'access_token': _WIT_ACCESS_TOKEN_FOR_DEVICE_CONTROL})]
handlers = [([1], 'archspee.handlers.browser_youtube_tv.BrowserYouTubeTVIntentHandler', {'browser_exec': 'puffin_demo', 'args': ['--kiosk']}), ([2], 'archspee.handlers.scripts.ScriptsIntentHandler', {})] |
def garland(word):
printy=0
i=0
while True:
if word[i:] == word[:-i]:
return len(word[:-i])
i+=1
if __name__ == "__main__":
assert garland("programmer") == 0
assert garland("ceramic") == 1
assert garland("onion") == 2
assert garland("alfalfa") == 4
| def garland(word):
printy = 0
i = 0
while True:
if word[i:] == word[:-i]:
return len(word[:-i])
i += 1
if __name__ == '__main__':
assert garland('programmer') == 0
assert garland('ceramic') == 1
assert garland('onion') == 2
assert garland('alfalfa') == 4 |
def array_count9(arr):
count = 0
for num in arr:
if num == 9:
count = count + 1
return count
count = array_count9([1, 2, 9])
print(count)
count = array_count9([1, 9, 9])
print(count)
count = array_count9([1, 9, 9, 3, 9])
print(count) | def array_count9(arr):
count = 0
for num in arr:
if num == 9:
count = count + 1
return count
count = array_count9([1, 2, 9])
print(count)
count = array_count9([1, 9, 9])
print(count)
count = array_count9([1, 9, 9, 3, 9])
print(count) |
{
"__additional_thread_unsafe__" :
[
"validate_idb_names",
]
}
| {'__additional_thread_unsafe__': ['validate_idb_names']} |
t1, t2, n = map(int, input().split(" "))
for i in range(2, n):
tn = t1 + t2**2
t1, t2 = t2, tn
print(tn)
| (t1, t2, n) = map(int, input().split(' '))
for i in range(2, n):
tn = t1 + t2 ** 2
(t1, t2) = (t2, tn)
print(tn) |
#
# PySNMP MIB module HH3C-SPB-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-SPB-MIB
# Produced by pysmi-0.3.4 at Wed May 1 13:29:43 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint")
hh3cCommon, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3cCommon")
IEEE8021SpbmSPsourceId, = mibBuilder.importSymbols("IEEE8021-SPB-MIB", "IEEE8021SpbmSPsourceId")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
VlanIdOrNone, = mibBuilder.importSymbols("Q-BRIDGE-MIB", "VlanIdOrNone")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Integer32, ModuleIdentity, Counter64, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, iso, Counter32, TimeTicks, IpAddress, NotificationType, Unsigned32, Gauge32, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "ModuleIdentity", "Counter64", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "iso", "Counter32", "TimeTicks", "IpAddress", "NotificationType", "Unsigned32", "Gauge32", "ObjectIdentity")
TextualConvention, MacAddress, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "MacAddress", "DisplayString")
hh3cSpb = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 2, 128))
hh3cSpb.setRevisions(('2012-11-22 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: hh3cSpb.setRevisionsDescriptions(('This MIB describes objects used for managing Shortest Path Bridging (SPB).',))
if mibBuilder.loadTexts: hh3cSpb.setLastUpdated('201211220000Z')
if mibBuilder.loadTexts: hh3cSpb.setOrganization('Hangzhou H3C Tech. Co., Ltd.')
if mibBuilder.loadTexts: hh3cSpb.setContactInfo('Platform Team Hangzhou H3C Tech. Co., Ltd. Hai-Dian District Beijing P.R. China http://www.h3c.com Zip:100085 ')
if mibBuilder.loadTexts: hh3cSpb.setDescription('802.1 SPB MIB')
hh3cSpbObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1))
hh3cSpbSysObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 1))
hh3cSpbSysStatus = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cSpbSysStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbSysStatus.setDescription('To descript the status of Shortest Path Bridging MAC Mode(SPBM) is Enabled or Disabled.')
hh3cSpbMulticastBVlanStatus = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cSpbMulticastBVlanStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbMulticastBVlanStatus.setDescription('To descript the status of SPBM multicast bvlan is Enabled or Disabled.')
hh3cSpbConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2))
hh3cSpbIfTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 1), )
if mibBuilder.loadTexts: hh3cSpbIfTable.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbIfTable.setDescription('This table describes the interface status of SPBM is Enabled or Disabled.')
hh3cSpbIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: hh3cSpbIfEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbIfEntry.setDescription('The entry of hh3cSpbIfEntry.')
hh3cSpbIfStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cSpbIfStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbIfStatus.setDescription('To descript the interface status of SPBM is Enabled or Disabled.')
hh3cSpbSrvTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2), )
if mibBuilder.loadTexts: hh3cSpbSrvTable.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbSrvTable.setDescription('This table descript the Base VlanID(VID) associated with the service and the service multicast duplicate mode.')
hh3cSpbSrvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1), ).setIndexNames((0, "HH3C-SPB-MIB", "hh3cSpbSrvTableEntryTopIx"), (0, "HH3C-SPB-MIB", "hh3cSpbSrvTableEntryIsid"))
if mibBuilder.loadTexts: hh3cSpbSrvEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbSrvEntry.setDescription('The entry of hh3cSpbSrvEntry.')
hh3cSpbSrvTableEntryTopIx = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1, 1), Unsigned32())
if mibBuilder.loadTexts: hh3cSpbSrvTableEntryTopIx.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbSrvTableEntryTopIx.setDescription('Unique identifier of this SPB topology This is index is allocated for this ISIS/MT instance. It is used as an index to most other SPB tables below and to select the exact ISIS instance and which MT instance together.')
hh3cSpbSrvTableEntryIsid = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(255, 16777215)))
if mibBuilder.loadTexts: hh3cSpbSrvTableEntryIsid.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbSrvTableEntryIsid.setDescription('An ISID (service) originating/terminating on this bridge.')
hh3cSpbSrvTableEntryBaseVid = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1, 3), VlanIdOrNone()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cSpbSrvTableEntryBaseVid.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbSrvTableEntryBaseVid.setDescription('The Base VID associated with this service. The Base VID determines the ECT Algorithm that is associated with this service. Otherwise no Base VID associated with the service, should be set = 0.')
hh3cSpbSrvTableEntryMode = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("headEnd", 1), ("tandem", 2))).clone('headEnd')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cSpbSrvTableEntryMode.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbSrvTableEntryMode.setDescription('Indication of supporting multicast replicate mode head-end/tandem.')
hh3cSpbTrap = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3))
hh3cSpbTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 0))
hh3cSpbTrapsObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 1))
hh3cSpbSPSourceConflictTrap = NotificationType((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 0, 1)).setObjects(("HH3C-SPB-MIB", "hh3cSpbConflictSysID"), ("HH3C-SPB-MIB", "hh3cSpbConflictSPSourceID"))
if mibBuilder.loadTexts: hh3cSpbSPSourceConflictTrap.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbSPSourceConflictTrap.setDescription('This notification will be generated when the SPSourceID is conflict with another bridge.')
hh3cSpbBMacConflictTrap = NotificationType((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 0, 2)).setObjects(("HH3C-SPB-MIB", "hh3cSpbConflictSysID"), ("HH3C-SPB-MIB", "hh3cSpbConflictBMac"))
if mibBuilder.loadTexts: hh3cSpbBMacConflictTrap.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbBMacConflictTrap.setDescription('This notification will be generated when the BMAC is conflict with another bridge.')
hh3cSpbConflictSysID = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 1, 1), MacAddress()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: hh3cSpbConflictSysID.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbConflictSysID.setDescription("The bridge's SPSourceID is conflict with this bridge.")
hh3cSpbConflictSPSourceID = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 1, 2), IEEE8021SpbmSPsourceId()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: hh3cSpbConflictSPSourceID.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbConflictSPSourceID.setDescription('The Shortest Path Source Identifier which is conflict.')
hh3cSpbConflictBMac = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 1, 3), MacAddress()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: hh3cSpbConflictBMac.setStatus('current')
if mibBuilder.loadTexts: hh3cSpbConflictBMac.setDescription('The BMAC which is conflict.')
mibBuilder.exportSymbols("HH3C-SPB-MIB", hh3cSpbBMacConflictTrap=hh3cSpbBMacConflictTrap, hh3cSpbTraps=hh3cSpbTraps, PYSNMP_MODULE_ID=hh3cSpb, hh3cSpbIfTable=hh3cSpbIfTable, hh3cSpbTrapsObjects=hh3cSpbTrapsObjects, hh3cSpbIfEntry=hh3cSpbIfEntry, hh3cSpbConflictBMac=hh3cSpbConflictBMac, hh3cSpbSPSourceConflictTrap=hh3cSpbSPSourceConflictTrap, hh3cSpbSrvTable=hh3cSpbSrvTable, hh3cSpbSysObjects=hh3cSpbSysObjects, hh3cSpbSrvTableEntryBaseVid=hh3cSpbSrvTableEntryBaseVid, hh3cSpbMulticastBVlanStatus=hh3cSpbMulticastBVlanStatus, hh3cSpb=hh3cSpb, hh3cSpbSrvEntry=hh3cSpbSrvEntry, hh3cSpbSrvTableEntryTopIx=hh3cSpbSrvTableEntryTopIx, hh3cSpbSrvTableEntryMode=hh3cSpbSrvTableEntryMode, hh3cSpbConflictSysID=hh3cSpbConflictSysID, hh3cSpbObjects=hh3cSpbObjects, hh3cSpbSrvTableEntryIsid=hh3cSpbSrvTableEntryIsid, hh3cSpbTrap=hh3cSpbTrap, hh3cSpbConflictSPSourceID=hh3cSpbConflictSPSourceID, hh3cSpbIfStatus=hh3cSpbIfStatus, hh3cSpbConfig=hh3cSpbConfig, hh3cSpbSysStatus=hh3cSpbSysStatus)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, constraints_union, single_value_constraint, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint')
(hh3c_common,) = mibBuilder.importSymbols('HH3C-OID-MIB', 'hh3cCommon')
(ieee8021_spbm_s_psource_id,) = mibBuilder.importSymbols('IEEE8021-SPB-MIB', 'IEEE8021SpbmSPsourceId')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(vlan_id_or_none,) = mibBuilder.importSymbols('Q-BRIDGE-MIB', 'VlanIdOrNone')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(integer32, module_identity, counter64, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, iso, counter32, time_ticks, ip_address, notification_type, unsigned32, gauge32, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'Integer32', 'ModuleIdentity', 'Counter64', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'iso', 'Counter32', 'TimeTicks', 'IpAddress', 'NotificationType', 'Unsigned32', 'Gauge32', 'ObjectIdentity')
(textual_convention, mac_address, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'MacAddress', 'DisplayString')
hh3c_spb = module_identity((1, 3, 6, 1, 4, 1, 25506, 2, 128))
hh3cSpb.setRevisions(('2012-11-22 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
hh3cSpb.setRevisionsDescriptions(('This MIB describes objects used for managing Shortest Path Bridging (SPB).',))
if mibBuilder.loadTexts:
hh3cSpb.setLastUpdated('201211220000Z')
if mibBuilder.loadTexts:
hh3cSpb.setOrganization('Hangzhou H3C Tech. Co., Ltd.')
if mibBuilder.loadTexts:
hh3cSpb.setContactInfo('Platform Team Hangzhou H3C Tech. Co., Ltd. Hai-Dian District Beijing P.R. China http://www.h3c.com Zip:100085 ')
if mibBuilder.loadTexts:
hh3cSpb.setDescription('802.1 SPB MIB')
hh3c_spb_objects = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1))
hh3c_spb_sys_objects = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 1))
hh3c_spb_sys_status = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cSpbSysStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbSysStatus.setDescription('To descript the status of Shortest Path Bridging MAC Mode(SPBM) is Enabled or Disabled.')
hh3c_spb_multicast_b_vlan_status = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cSpbMulticastBVlanStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbMulticastBVlanStatus.setDescription('To descript the status of SPBM multicast bvlan is Enabled or Disabled.')
hh3c_spb_config = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2))
hh3c_spb_if_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 1))
if mibBuilder.loadTexts:
hh3cSpbIfTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbIfTable.setDescription('This table describes the interface status of SPBM is Enabled or Disabled.')
hh3c_spb_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
hh3cSpbIfEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbIfEntry.setDescription('The entry of hh3cSpbIfEntry.')
hh3c_spb_if_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cSpbIfStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbIfStatus.setDescription('To descript the interface status of SPBM is Enabled or Disabled.')
hh3c_spb_srv_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2))
if mibBuilder.loadTexts:
hh3cSpbSrvTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbSrvTable.setDescription('This table descript the Base VlanID(VID) associated with the service and the service multicast duplicate mode.')
hh3c_spb_srv_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1)).setIndexNames((0, 'HH3C-SPB-MIB', 'hh3cSpbSrvTableEntryTopIx'), (0, 'HH3C-SPB-MIB', 'hh3cSpbSrvTableEntryIsid'))
if mibBuilder.loadTexts:
hh3cSpbSrvEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbSrvEntry.setDescription('The entry of hh3cSpbSrvEntry.')
hh3c_spb_srv_table_entry_top_ix = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1, 1), unsigned32())
if mibBuilder.loadTexts:
hh3cSpbSrvTableEntryTopIx.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbSrvTableEntryTopIx.setDescription('Unique identifier of this SPB topology This is index is allocated for this ISIS/MT instance. It is used as an index to most other SPB tables below and to select the exact ISIS instance and which MT instance together.')
hh3c_spb_srv_table_entry_isid = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(255, 16777215)))
if mibBuilder.loadTexts:
hh3cSpbSrvTableEntryIsid.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbSrvTableEntryIsid.setDescription('An ISID (service) originating/terminating on this bridge.')
hh3c_spb_srv_table_entry_base_vid = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1, 3), vlan_id_or_none()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cSpbSrvTableEntryBaseVid.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbSrvTableEntryBaseVid.setDescription('The Base VID associated with this service. The Base VID determines the ECT Algorithm that is associated with this service. Otherwise no Base VID associated with the service, should be set = 0.')
hh3c_spb_srv_table_entry_mode = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('headEnd', 1), ('tandem', 2))).clone('headEnd')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cSpbSrvTableEntryMode.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbSrvTableEntryMode.setDescription('Indication of supporting multicast replicate mode head-end/tandem.')
hh3c_spb_trap = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3))
hh3c_spb_traps = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 0))
hh3c_spb_traps_objects = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 1))
hh3c_spb_sp_source_conflict_trap = notification_type((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 0, 1)).setObjects(('HH3C-SPB-MIB', 'hh3cSpbConflictSysID'), ('HH3C-SPB-MIB', 'hh3cSpbConflictSPSourceID'))
if mibBuilder.loadTexts:
hh3cSpbSPSourceConflictTrap.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbSPSourceConflictTrap.setDescription('This notification will be generated when the SPSourceID is conflict with another bridge.')
hh3c_spb_b_mac_conflict_trap = notification_type((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 0, 2)).setObjects(('HH3C-SPB-MIB', 'hh3cSpbConflictSysID'), ('HH3C-SPB-MIB', 'hh3cSpbConflictBMac'))
if mibBuilder.loadTexts:
hh3cSpbBMacConflictTrap.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbBMacConflictTrap.setDescription('This notification will be generated when the BMAC is conflict with another bridge.')
hh3c_spb_conflict_sys_id = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 1, 1), mac_address()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
hh3cSpbConflictSysID.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbConflictSysID.setDescription("The bridge's SPSourceID is conflict with this bridge.")
hh3c_spb_conflict_sp_source_id = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 1, 2), ieee8021_spbm_s_psource_id()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
hh3cSpbConflictSPSourceID.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbConflictSPSourceID.setDescription('The Shortest Path Source Identifier which is conflict.')
hh3c_spb_conflict_b_mac = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 128, 1, 3, 1, 3), mac_address()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
hh3cSpbConflictBMac.setStatus('current')
if mibBuilder.loadTexts:
hh3cSpbConflictBMac.setDescription('The BMAC which is conflict.')
mibBuilder.exportSymbols('HH3C-SPB-MIB', hh3cSpbBMacConflictTrap=hh3cSpbBMacConflictTrap, hh3cSpbTraps=hh3cSpbTraps, PYSNMP_MODULE_ID=hh3cSpb, hh3cSpbIfTable=hh3cSpbIfTable, hh3cSpbTrapsObjects=hh3cSpbTrapsObjects, hh3cSpbIfEntry=hh3cSpbIfEntry, hh3cSpbConflictBMac=hh3cSpbConflictBMac, hh3cSpbSPSourceConflictTrap=hh3cSpbSPSourceConflictTrap, hh3cSpbSrvTable=hh3cSpbSrvTable, hh3cSpbSysObjects=hh3cSpbSysObjects, hh3cSpbSrvTableEntryBaseVid=hh3cSpbSrvTableEntryBaseVid, hh3cSpbMulticastBVlanStatus=hh3cSpbMulticastBVlanStatus, hh3cSpb=hh3cSpb, hh3cSpbSrvEntry=hh3cSpbSrvEntry, hh3cSpbSrvTableEntryTopIx=hh3cSpbSrvTableEntryTopIx, hh3cSpbSrvTableEntryMode=hh3cSpbSrvTableEntryMode, hh3cSpbConflictSysID=hh3cSpbConflictSysID, hh3cSpbObjects=hh3cSpbObjects, hh3cSpbSrvTableEntryIsid=hh3cSpbSrvTableEntryIsid, hh3cSpbTrap=hh3cSpbTrap, hh3cSpbConflictSPSourceID=hh3cSpbConflictSPSourceID, hh3cSpbIfStatus=hh3cSpbIfStatus, hh3cSpbConfig=hh3cSpbConfig, hh3cSpbSysStatus=hh3cSpbSysStatus) |
class Solution:
def frequencySort(self, s: str) -> str:
occ = dict()
result = ""
for i in s:
if i in occ:
occ[i] += 1
else:
occ[i] = 1
str_list = list(occ.items())
for i in range(len(occ.keys())):
max_str = ""
max_count = 0
for s,n in str_list:
if n > max_count:
max_count = n
max_str = s
result += max_str*max_count
str_list.remove((max_str, max_count))
return result | class Solution:
def frequency_sort(self, s: str) -> str:
occ = dict()
result = ''
for i in s:
if i in occ:
occ[i] += 1
else:
occ[i] = 1
str_list = list(occ.items())
for i in range(len(occ.keys())):
max_str = ''
max_count = 0
for (s, n) in str_list:
if n > max_count:
max_count = n
max_str = s
result += max_str * max_count
str_list.remove((max_str, max_count))
return result |
n = int(input())
check = n
new_number = 0
temp = 0
count = 0
while True:
count += 1
temp = n // 10 + n % 10
new_number = (n % 10) * 10 + temp % 10
n = new_number
if new_number == check:
break
print(count)
| n = int(input())
check = n
new_number = 0
temp = 0
count = 0
while True:
count += 1
temp = n // 10 + n % 10
new_number = n % 10 * 10 + temp % 10
n = new_number
if new_number == check:
break
print(count) |
secret = {
'url_oceny' : 'https://portal.wsb.pl/group/gdansk/oceny-wstepne',
'wsb_login' : '',
'wsb_password' : '',
'email_from' : '',
'email_to' : '',
'smtp_login' : '',
'smtp_password' : '',
'smtp_host' : '',
'smtp_port' : 587,
'fb_login' : '',
'fb_password' : '',
'fb_thread_id' : ''
}
| secret = {'url_oceny': 'https://portal.wsb.pl/group/gdansk/oceny-wstepne', 'wsb_login': '', 'wsb_password': '', 'email_from': '', 'email_to': '', 'smtp_login': '', 'smtp_password': '', 'smtp_host': '', 'smtp_port': 587, 'fb_login': '', 'fb_password': '', 'fb_thread_id': ''} |
def is_lucky(n):
s = str(n)
half = len(s)//2
left, right = s[:half], s[half:]
return sum(map(int, left)) == sum(map(int, right))
| def is_lucky(n):
s = str(n)
half = len(s) // 2
(left, right) = (s[:half], s[half:])
return sum(map(int, left)) == sum(map(int, right)) |
data = (
'Fu ', # 0x00
'Zhuo ', # 0x01
'Mao ', # 0x02
'Fan ', # 0x03
'Qie ', # 0x04
'Mao ', # 0x05
'Mao ', # 0x06
'Ba ', # 0x07
'Zi ', # 0x08
'Mo ', # 0x09
'Zi ', # 0x0a
'Di ', # 0x0b
'Chi ', # 0x0c
'Ji ', # 0x0d
'Jing ', # 0x0e
'Long ', # 0x0f
'[?] ', # 0x10
'Niao ', # 0x11
'[?] ', # 0x12
'Xue ', # 0x13
'Ying ', # 0x14
'Qiong ', # 0x15
'Ge ', # 0x16
'Ming ', # 0x17
'Li ', # 0x18
'Rong ', # 0x19
'Yin ', # 0x1a
'Gen ', # 0x1b
'Qian ', # 0x1c
'Chai ', # 0x1d
'Chen ', # 0x1e
'Yu ', # 0x1f
'Xiu ', # 0x20
'Zi ', # 0x21
'Lie ', # 0x22
'Wu ', # 0x23
'Ji ', # 0x24
'Kui ', # 0x25
'Ce ', # 0x26
'Chong ', # 0x27
'Ci ', # 0x28
'Gou ', # 0x29
'Guang ', # 0x2a
'Mang ', # 0x2b
'Chi ', # 0x2c
'Jiao ', # 0x2d
'Jiao ', # 0x2e
'Fu ', # 0x2f
'Yu ', # 0x30
'Zhu ', # 0x31
'Zi ', # 0x32
'Jiang ', # 0x33
'Hui ', # 0x34
'Yin ', # 0x35
'Cha ', # 0x36
'Fa ', # 0x37
'Rong ', # 0x38
'Ru ', # 0x39
'Chong ', # 0x3a
'Mang ', # 0x3b
'Tong ', # 0x3c
'Zhong ', # 0x3d
'[?] ', # 0x3e
'Zhu ', # 0x3f
'Xun ', # 0x40
'Huan ', # 0x41
'Kua ', # 0x42
'Quan ', # 0x43
'Gai ', # 0x44
'Da ', # 0x45
'Jing ', # 0x46
'Xing ', # 0x47
'Quan ', # 0x48
'Cao ', # 0x49
'Jing ', # 0x4a
'Er ', # 0x4b
'An ', # 0x4c
'Shou ', # 0x4d
'Chi ', # 0x4e
'Ren ', # 0x4f
'Jian ', # 0x50
'Ti ', # 0x51
'Huang ', # 0x52
'Ping ', # 0x53
'Li ', # 0x54
'Jin ', # 0x55
'Lao ', # 0x56
'Shu ', # 0x57
'Zhuang ', # 0x58
'Da ', # 0x59
'Jia ', # 0x5a
'Rao ', # 0x5b
'Bi ', # 0x5c
'Ze ', # 0x5d
'Qiao ', # 0x5e
'Hui ', # 0x5f
'Qi ', # 0x60
'Dang ', # 0x61
'[?] ', # 0x62
'Rong ', # 0x63
'Hun ', # 0x64
'Ying ', # 0x65
'Luo ', # 0x66
'Ying ', # 0x67
'Xun ', # 0x68
'Jin ', # 0x69
'Sun ', # 0x6a
'Yin ', # 0x6b
'Mai ', # 0x6c
'Hong ', # 0x6d
'Zhou ', # 0x6e
'Yao ', # 0x6f
'Du ', # 0x70
'Wei ', # 0x71
'Chu ', # 0x72
'Dou ', # 0x73
'Fu ', # 0x74
'Ren ', # 0x75
'Yin ', # 0x76
'He ', # 0x77
'Bi ', # 0x78
'Bu ', # 0x79
'Yun ', # 0x7a
'Di ', # 0x7b
'Tu ', # 0x7c
'Sui ', # 0x7d
'Sui ', # 0x7e
'Cheng ', # 0x7f
'Chen ', # 0x80
'Wu ', # 0x81
'Bie ', # 0x82
'Xi ', # 0x83
'Geng ', # 0x84
'Li ', # 0x85
'Fu ', # 0x86
'Zhu ', # 0x87
'Mo ', # 0x88
'Li ', # 0x89
'Zhuang ', # 0x8a
'Ji ', # 0x8b
'Duo ', # 0x8c
'Qiu ', # 0x8d
'Sha ', # 0x8e
'Suo ', # 0x8f
'Chen ', # 0x90
'Feng ', # 0x91
'Ju ', # 0x92
'Mei ', # 0x93
'Meng ', # 0x94
'Xing ', # 0x95
'Jing ', # 0x96
'Che ', # 0x97
'Xin ', # 0x98
'Jun ', # 0x99
'Yan ', # 0x9a
'Ting ', # 0x9b
'Diao ', # 0x9c
'Cuo ', # 0x9d
'Wan ', # 0x9e
'Han ', # 0x9f
'You ', # 0xa0
'Cuo ', # 0xa1
'Jia ', # 0xa2
'Wang ', # 0xa3
'You ', # 0xa4
'Niu ', # 0xa5
'Shao ', # 0xa6
'Xian ', # 0xa7
'Lang ', # 0xa8
'Fu ', # 0xa9
'E ', # 0xaa
'Mo ', # 0xab
'Wen ', # 0xac
'Jie ', # 0xad
'Nan ', # 0xae
'Mu ', # 0xaf
'Kan ', # 0xb0
'Lai ', # 0xb1
'Lian ', # 0xb2
'Shi ', # 0xb3
'Wo ', # 0xb4
'Usagi ', # 0xb5
'Lian ', # 0xb6
'Huo ', # 0xb7
'You ', # 0xb8
'Ying ', # 0xb9
'Ying ', # 0xba
'Nuc ', # 0xbb
'Chun ', # 0xbc
'Mang ', # 0xbd
'Mang ', # 0xbe
'Ci ', # 0xbf
'Wan ', # 0xc0
'Jing ', # 0xc1
'Di ', # 0xc2
'Qu ', # 0xc3
'Dong ', # 0xc4
'Jian ', # 0xc5
'Zou ', # 0xc6
'Gu ', # 0xc7
'La ', # 0xc8
'Lu ', # 0xc9
'Ju ', # 0xca
'Wei ', # 0xcb
'Jun ', # 0xcc
'Nie ', # 0xcd
'Kun ', # 0xce
'He ', # 0xcf
'Pu ', # 0xd0
'Zi ', # 0xd1
'Gao ', # 0xd2
'Guo ', # 0xd3
'Fu ', # 0xd4
'Lun ', # 0xd5
'Chang ', # 0xd6
'Chou ', # 0xd7
'Song ', # 0xd8
'Chui ', # 0xd9
'Zhan ', # 0xda
'Men ', # 0xdb
'Cai ', # 0xdc
'Ba ', # 0xdd
'Li ', # 0xde
'Tu ', # 0xdf
'Bo ', # 0xe0
'Han ', # 0xe1
'Bao ', # 0xe2
'Qin ', # 0xe3
'Juan ', # 0xe4
'Xi ', # 0xe5
'Qin ', # 0xe6
'Di ', # 0xe7
'Jie ', # 0xe8
'Pu ', # 0xe9
'Dang ', # 0xea
'Jin ', # 0xeb
'Zhao ', # 0xec
'Tai ', # 0xed
'Geng ', # 0xee
'Hua ', # 0xef
'Gu ', # 0xf0
'Ling ', # 0xf1
'Fei ', # 0xf2
'Jin ', # 0xf3
'An ', # 0xf4
'Wang ', # 0xf5
'Beng ', # 0xf6
'Zhou ', # 0xf7
'Yan ', # 0xf8
'Ju ', # 0xf9
'Jian ', # 0xfa
'Lin ', # 0xfb
'Tan ', # 0xfc
'Shu ', # 0xfd
'Tian ', # 0xfe
'Dao ', # 0xff
)
| data = ('Fu ', 'Zhuo ', 'Mao ', 'Fan ', 'Qie ', 'Mao ', 'Mao ', 'Ba ', 'Zi ', 'Mo ', 'Zi ', 'Di ', 'Chi ', 'Ji ', 'Jing ', 'Long ', '[?] ', 'Niao ', '[?] ', 'Xue ', 'Ying ', 'Qiong ', 'Ge ', 'Ming ', 'Li ', 'Rong ', 'Yin ', 'Gen ', 'Qian ', 'Chai ', 'Chen ', 'Yu ', 'Xiu ', 'Zi ', 'Lie ', 'Wu ', 'Ji ', 'Kui ', 'Ce ', 'Chong ', 'Ci ', 'Gou ', 'Guang ', 'Mang ', 'Chi ', 'Jiao ', 'Jiao ', 'Fu ', 'Yu ', 'Zhu ', 'Zi ', 'Jiang ', 'Hui ', 'Yin ', 'Cha ', 'Fa ', 'Rong ', 'Ru ', 'Chong ', 'Mang ', 'Tong ', 'Zhong ', '[?] ', 'Zhu ', 'Xun ', 'Huan ', 'Kua ', 'Quan ', 'Gai ', 'Da ', 'Jing ', 'Xing ', 'Quan ', 'Cao ', 'Jing ', 'Er ', 'An ', 'Shou ', 'Chi ', 'Ren ', 'Jian ', 'Ti ', 'Huang ', 'Ping ', 'Li ', 'Jin ', 'Lao ', 'Shu ', 'Zhuang ', 'Da ', 'Jia ', 'Rao ', 'Bi ', 'Ze ', 'Qiao ', 'Hui ', 'Qi ', 'Dang ', '[?] ', 'Rong ', 'Hun ', 'Ying ', 'Luo ', 'Ying ', 'Xun ', 'Jin ', 'Sun ', 'Yin ', 'Mai ', 'Hong ', 'Zhou ', 'Yao ', 'Du ', 'Wei ', 'Chu ', 'Dou ', 'Fu ', 'Ren ', 'Yin ', 'He ', 'Bi ', 'Bu ', 'Yun ', 'Di ', 'Tu ', 'Sui ', 'Sui ', 'Cheng ', 'Chen ', 'Wu ', 'Bie ', 'Xi ', 'Geng ', 'Li ', 'Fu ', 'Zhu ', 'Mo ', 'Li ', 'Zhuang ', 'Ji ', 'Duo ', 'Qiu ', 'Sha ', 'Suo ', 'Chen ', 'Feng ', 'Ju ', 'Mei ', 'Meng ', 'Xing ', 'Jing ', 'Che ', 'Xin ', 'Jun ', 'Yan ', 'Ting ', 'Diao ', 'Cuo ', 'Wan ', 'Han ', 'You ', 'Cuo ', 'Jia ', 'Wang ', 'You ', 'Niu ', 'Shao ', 'Xian ', 'Lang ', 'Fu ', 'E ', 'Mo ', 'Wen ', 'Jie ', 'Nan ', 'Mu ', 'Kan ', 'Lai ', 'Lian ', 'Shi ', 'Wo ', 'Usagi ', 'Lian ', 'Huo ', 'You ', 'Ying ', 'Ying ', 'Nuc ', 'Chun ', 'Mang ', 'Mang ', 'Ci ', 'Wan ', 'Jing ', 'Di ', 'Qu ', 'Dong ', 'Jian ', 'Zou ', 'Gu ', 'La ', 'Lu ', 'Ju ', 'Wei ', 'Jun ', 'Nie ', 'Kun ', 'He ', 'Pu ', 'Zi ', 'Gao ', 'Guo ', 'Fu ', 'Lun ', 'Chang ', 'Chou ', 'Song ', 'Chui ', 'Zhan ', 'Men ', 'Cai ', 'Ba ', 'Li ', 'Tu ', 'Bo ', 'Han ', 'Bao ', 'Qin ', 'Juan ', 'Xi ', 'Qin ', 'Di ', 'Jie ', 'Pu ', 'Dang ', 'Jin ', 'Zhao ', 'Tai ', 'Geng ', 'Hua ', 'Gu ', 'Ling ', 'Fei ', 'Jin ', 'An ', 'Wang ', 'Beng ', 'Zhou ', 'Yan ', 'Ju ', 'Jian ', 'Lin ', 'Tan ', 'Shu ', 'Tian ', 'Dao ') |
# Copyright 2017 Internap.
#
# 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.
def form_encode(data):
exploded_data = {}
for k, v in data.items():
items = _explode_enumerable(k, v)
for new_key, new_val in items:
exploded_data[new_key] = new_val
return exploded_data
def form_encode_without_files(data):
return form_encode({k: v for k, v in data.items() if k != 'files'})
def _explode_enumerable(k, v):
exploded_items = []
if isinstance(v, list) or isinstance(v, tuple):
if len(v) == 0:
exploded_items.append((k, v))
else:
for idx, item in enumerate(v):
current_key = '{}[{}]'.format(k, idx)
exploded_items.extend(_explode_enumerable(current_key, item))
elif isinstance(v, dict):
if len(v) == 0:
exploded_items.append((k, v))
else:
for idx, item in v.items():
current_key = '{}[{}]'.format(k, idx)
exploded_items.extend(_explode_enumerable(current_key, item))
else:
exploded_items.append((k, v))
return exploded_items
| def form_encode(data):
exploded_data = {}
for (k, v) in data.items():
items = _explode_enumerable(k, v)
for (new_key, new_val) in items:
exploded_data[new_key] = new_val
return exploded_data
def form_encode_without_files(data):
return form_encode({k: v for (k, v) in data.items() if k != 'files'})
def _explode_enumerable(k, v):
exploded_items = []
if isinstance(v, list) or isinstance(v, tuple):
if len(v) == 0:
exploded_items.append((k, v))
else:
for (idx, item) in enumerate(v):
current_key = '{}[{}]'.format(k, idx)
exploded_items.extend(_explode_enumerable(current_key, item))
elif isinstance(v, dict):
if len(v) == 0:
exploded_items.append((k, v))
else:
for (idx, item) in v.items():
current_key = '{}[{}]'.format(k, idx)
exploded_items.extend(_explode_enumerable(current_key, item))
else:
exploded_items.append((k, v))
return exploded_items |
# -*- coding:utf-8 -*-
class Solution:
def FindNumbersWithSum(self, array, tsum):
# write code here
l, r = 0, len(array) - 1
while l < r:
if array[l] + array[r] < tsum: l += 1
elif array[l] + array[r] > tsum: r -= 1
else: return [array[l], array[r]]
return []
s = Solution()
print(s.FindNumbersWithSum([1, 2, 3, 4, 5, 6, 7, 8, 9], 10))
| class Solution:
def find_numbers_with_sum(self, array, tsum):
(l, r) = (0, len(array) - 1)
while l < r:
if array[l] + array[r] < tsum:
l += 1
elif array[l] + array[r] > tsum:
r -= 1
else:
return [array[l], array[r]]
return []
s = solution()
print(s.FindNumbersWithSum([1, 2, 3, 4, 5, 6, 7, 8, 9], 10)) |
def test_index_route(test_client):
response = test_client.get('/')
assert response.status_code == 200
assert '<title>Home | Flask-Startup</title>' in response
| def test_index_route(test_client):
response = test_client.get('/')
assert response.status_code == 200
assert '<title>Home | Flask-Startup</title>' in response |
class Motor:
def __init__(self):
self.velocidade = 0
def acelerar(self):
self.velocidade += 1
def frear(self):
self.velocidade -= 2
self.velocidade = max(0, self.velocidade)
motor = Motor()
velocidade = motor.velocidade
print(motor.velocidade)
motor.acelerar()
print(motor.velocidade)
NORTE = 'Norte'
LESTE = 'Leste'
SUL = 'Sul'
OESTE = 'Oeste'
class Direcao:
# rotacao_a_direita_dct = {NORTE: LESTE, LESTE: SUL, SUL: OESTE, OESTE: NORTE}
# def girar_a_direita (self)
# self.valor=self.rotacao_a_direita_dct[self.valor]
def __init__(self):
self.valor = NORTE
def girar_a_direita (self):
if self.valor == NORTE:
self.valor = LESTE
elif self.valor == LESTE:
self.valor = SUL
elif self.valor == SUL:
self.valor = OESTE
elif self.valor == OESTE:
self.valor = NORTE
def girar_a_esquerda (self):
if self.valor == NORTE:
self.valor = OESTE
elif self.valor == OESTE:
self.valor = SUL
elif self.valor == SUL:
self.valor = LESTE
elif self.valor == LESTE:
self.valor = NORTE
direcao = Direcao()
print(direcao.valor)
direcao.girar_a_direita()
print(direcao.valor)
direcao.girar_a_esquerda()
print(direcao.valor)
class Carro:
def __init__(direcao, motor):
self.direcao = direcao
self.motor = motor
def calcular_velocidade(self):
return self.motor.velocidade
def calcular_direcao(self):
return self.direcao.valor
def acelerar(self):
self.motor.acelerar()
def frear(self):
self.motor.frear()
def girar_a_direita(self):
self.direcao.girar_a_direita()
def girar_a_esquerda(self):
self.direcao.girar_a_esquerda()
| class Motor:
def __init__(self):
self.velocidade = 0
def acelerar(self):
self.velocidade += 1
def frear(self):
self.velocidade -= 2
self.velocidade = max(0, self.velocidade)
motor = motor()
velocidade = motor.velocidade
print(motor.velocidade)
motor.acelerar()
print(motor.velocidade)
norte = 'Norte'
leste = 'Leste'
sul = 'Sul'
oeste = 'Oeste'
class Direcao:
def __init__(self):
self.valor = NORTE
def girar_a_direita(self):
if self.valor == NORTE:
self.valor = LESTE
elif self.valor == LESTE:
self.valor = SUL
elif self.valor == SUL:
self.valor = OESTE
elif self.valor == OESTE:
self.valor = NORTE
def girar_a_esquerda(self):
if self.valor == NORTE:
self.valor = OESTE
elif self.valor == OESTE:
self.valor = SUL
elif self.valor == SUL:
self.valor = LESTE
elif self.valor == LESTE:
self.valor = NORTE
direcao = direcao()
print(direcao.valor)
direcao.girar_a_direita()
print(direcao.valor)
direcao.girar_a_esquerda()
print(direcao.valor)
class Carro:
def __init__(direcao, motor):
self.direcao = direcao
self.motor = motor
def calcular_velocidade(self):
return self.motor.velocidade
def calcular_direcao(self):
return self.direcao.valor
def acelerar(self):
self.motor.acelerar()
def frear(self):
self.motor.frear()
def girar_a_direita(self):
self.direcao.girar_a_direita()
def girar_a_esquerda(self):
self.direcao.girar_a_esquerda() |
class MirrorModifier:
merge_threshold = None
mirror_object = None
mirror_offset_u = None
mirror_offset_v = None
use_clip = None
use_mirror_merge = None
use_mirror_u = None
use_mirror_v = None
use_mirror_vertex_groups = None
use_x = None
use_y = None
use_z = None
| class Mirrormodifier:
merge_threshold = None
mirror_object = None
mirror_offset_u = None
mirror_offset_v = None
use_clip = None
use_mirror_merge = None
use_mirror_u = None
use_mirror_v = None
use_mirror_vertex_groups = None
use_x = None
use_y = None
use_z = None |
# create a game the guesses users secret number using bisection search
input("Please think of a number between 0 and 100!")
low = 0
high = 100
solved = False
while not solved:
guess = (high+low)//2
print('Is your secret number ' + str(guess) + '?')
response = input("Enter 'h' to indicate the guess is too high. Enter 'l' to indicate the guess is too low. Enter 'c' to indicate I guessed correctly." )
if response == 'c':
solved = True
elif response == 'l':
low = guess
elif response == 'h':
high = guess
else:
print('Sorry, I did not understand your input.')
print('Game over. Your secret number was: ' + str(guess)) | input('Please think of a number between 0 and 100!')
low = 0
high = 100
solved = False
while not solved:
guess = (high + low) // 2
print('Is your secret number ' + str(guess) + '?')
response = input("Enter 'h' to indicate the guess is too high. Enter 'l' to indicate the guess is too low. Enter 'c' to indicate I guessed correctly.")
if response == 'c':
solved = True
elif response == 'l':
low = guess
elif response == 'h':
high = guess
else:
print('Sorry, I did not understand your input.')
print('Game over. Your secret number was: ' + str(guess)) |
class persona:
def __init__(self,a,b):
self.a=a
self.b=b
def saluda(self,c):
return f"hola {c.a},me llamo {self.a}"
david=persona("David",35)
erika=persona("Erika",32)
print(david.saluda(erika))
| class Persona:
def __init__(self, a, b):
self.a = a
self.b = b
def saluda(self, c):
return f'hola {c.a},me llamo {self.a}'
david = persona('David', 35)
erika = persona('Erika', 32)
print(david.saluda(erika)) |
class ApplicationError(Exception):
pass
class FileNotFound(ApplicationError):
pass
| class Applicationerror(Exception):
pass
class Filenotfound(ApplicationError):
pass |
input_ = '6,19,0,5,7,13,1'
num_iterations = 30000000
starting_nums = list(map(int, input_.split(',')))
last_times_spoken_dict = dict(zip(starting_nums, range(1, len(starting_nums) + 1)))
last_time_spoken = None # assume that starting nums contain no duplicates
for turn in range(len(starting_nums) + 1, num_iterations + 1):
spoken_num = 0 if last_time_spoken is None else (turn - 1) - last_time_spoken
last_time_spoken = last_times_spoken_dict[spoken_num] if spoken_num in last_times_spoken_dict else None
last_times_spoken_dict[spoken_num] = turn
print(spoken_num)
| input_ = '6,19,0,5,7,13,1'
num_iterations = 30000000
starting_nums = list(map(int, input_.split(',')))
last_times_spoken_dict = dict(zip(starting_nums, range(1, len(starting_nums) + 1)))
last_time_spoken = None
for turn in range(len(starting_nums) + 1, num_iterations + 1):
spoken_num = 0 if last_time_spoken is None else turn - 1 - last_time_spoken
last_time_spoken = last_times_spoken_dict[spoken_num] if spoken_num in last_times_spoken_dict else None
last_times_spoken_dict[spoken_num] = turn
print(spoken_num) |
inputString = input("\nEnter the string : \n")
position = int(input("\nEnter the position : \n"))
subString = input("\nEnter the Substring\n")
inputString = inputString[:position-1] + subString + inputString[position-1:]
print("\nThe new string becomes : \n")
print(inputString) | input_string = input('\nEnter the string : \n')
position = int(input('\nEnter the position : \n'))
sub_string = input('\nEnter the Substring\n')
input_string = inputString[:position - 1] + subString + inputString[position - 1:]
print('\nThe new string becomes : \n')
print(inputString) |
# global settings module for fortiwlc_exporter
DEBUG = False
ONE_OFF = []
NO_DEFAULT_COLLECTORS = True
TIMEOUT = 60
EXPORTER_PORT = 9118
WLC_USERNAME = None
WLC_PASSWORD = None
WLC_API_KEY = None
| debug = False
one_off = []
no_default_collectors = True
timeout = 60
exporter_port = 9118
wlc_username = None
wlc_password = None
wlc_api_key = None |
# This file is a part of Arjuna
# Copyright 2015-2021 Rahul Verma
# Website: www.RahulVerma.net
# 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.
class HttpCookie:
def __init__(self, session, cookie):
self.__cookie = cookie
@property
def _cookie(self):
return self.__cookie
@property
def value(self):
'''
Value stored in this cookie.
'''
return self._cookie.value
@property
def secure(self):
'''
If secure flag is set for this cookie, this value is True, else False.
'''
return self._cookie.secure
@property
def httponly(self):
'''
If HttpOnly flag is set for this cookie, this value is True, else False.
'''
return self._cookie.has_nonstandard_attr("HttpOnly")
| class Httpcookie:
def __init__(self, session, cookie):
self.__cookie = cookie
@property
def _cookie(self):
return self.__cookie
@property
def value(self):
"""
Value stored in this cookie.
"""
return self._cookie.value
@property
def secure(self):
"""
If secure flag is set for this cookie, this value is True, else False.
"""
return self._cookie.secure
@property
def httponly(self):
"""
If HttpOnly flag is set for this cookie, this value is True, else False.
"""
return self._cookie.has_nonstandard_attr('HttpOnly') |
#!/usr/bin/python3
__author__ = "Mark H. Meng"
__copyright__ = "Copyright 2021, National University of S'pore and A*STAR"
__credits__ = ["G. Bai", "H. Guo", "S. G. Teo", "J. S. Dong"]
__license__ = "MIT"
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
| __author__ = 'Mark H. Meng'
__copyright__ = "Copyright 2021, National University of S'pore and A*STAR"
__credits__ = ['G. Bai', 'H. Guo', 'S. G. Teo', 'J. S. Dong']
__license__ = 'MIT'
header = '\x1b[95m'
okblue = '\x1b[94m'
okcyan = '\x1b[96m'
okgreen = '\x1b[92m'
warning = '\x1b[93m'
fail = '\x1b[91m'
endc = '\x1b[0m'
bold = '\x1b[1m'
underline = '\x1b[4m' |
# Complete the function below.
def arbitrage(quotes):
results = []
for quote in quotes:
# initial 100,000 dollars
initial = 100000
attrs = quote.split(' ')
attrs = list(map(float,attrs))
result = initial/attrs[0]/attrs[1]/attrs[2]
profit = int(result-initial)
if profit <= 0:
results.append(0)
else:
results.append(profit)
return results
| def arbitrage(quotes):
results = []
for quote in quotes:
initial = 100000
attrs = quote.split(' ')
attrs = list(map(float, attrs))
result = initial / attrs[0] / attrs[1] / attrs[2]
profit = int(result - initial)
if profit <= 0:
results.append(0)
else:
results.append(profit)
return results |
class number:
def __init__(self):
self.a=10
self.b=20
class addition(number):
def add(self):
self.c=self.a+self.b
print('addition :',self.c)
class substraction(number):
def sub(self):
self.c=self.a-self.b
print('substraction :',self.c)
class multiplication(number):
def mul(self):
self.c=self.a*self.b
print('multiplication :',self.c)
class division(number):
def div(self):
self.c=self.a/self.b
print('division :',self.c)
a1=addition()
a1.add()
s1=substraction()
s1.sub()
m1=multiplication()
m1.mul()
d1=division()
d1.div()
| class Number:
def __init__(self):
self.a = 10
self.b = 20
class Addition(number):
def add(self):
self.c = self.a + self.b
print('addition :', self.c)
class Substraction(number):
def sub(self):
self.c = self.a - self.b
print('substraction :', self.c)
class Multiplication(number):
def mul(self):
self.c = self.a * self.b
print('multiplication :', self.c)
class Division(number):
def div(self):
self.c = self.a / self.b
print('division :', self.c)
a1 = addition()
a1.add()
s1 = substraction()
s1.sub()
m1 = multiplication()
m1.mul()
d1 = division()
d1.div() |
class LogAndRaise:
def __init__(self, logger):
self.logger = logger
def logAndRaise(self, error, message, logMessage=None):
self.logger.error(message if not logMessage else logMessage)
raise error(message)
| class Logandraise:
def __init__(self, logger):
self.logger = logger
def log_and_raise(self, error, message, logMessage=None):
self.logger.error(message if not logMessage else logMessage)
raise error(message) |
# AUTOGENERATED! DO NOT EDIT! File to edit: nbs/definition.set.ipynb (unless otherwise specified).
__all__ = []
# Cell
if __name__ == '__main__':
embed_markdown_file('definition.set.md',
origin=ORIGIN, destination=DESTINATION) | __all__ = []
if __name__ == '__main__':
embed_markdown_file('definition.set.md', origin=ORIGIN, destination=DESTINATION) |
class HashMap1(object):
def __init__(self, hashMap={}):
self.hashMap = hashMap
def add(self, key, value):
if (key not in self.hashMap):
self.hashMap[key] = value
return
raise Exception("Key is already within our data structure")
def update(self, key, value):
if (key in self.hashMap):
self.hashMap[key] = value
return
raise Exception("Key does not exist in our data structure")
def delete(self, key):
if (key in self.hashMap):
self.hashMap.pop(key)
return
raise Exception("Key does not exist in our data structure")
class HashTable:
# Create empty bucket list of given size
def __init__(self, size):
self.size = size
self.hash_table = self.create_buckets()
def create_buckets(self):
return [[] for _ in range(self.size)]
# Insert values into hash map
def set_val(self, key, val):
# Get the index from the key
# using hash function
hashed_key = hash(key) % self.size
# Get the bucket corresponding to index
bucket = self.hash_table[hashed_key]
found_key = False
for index, record in enumerate(bucket):
record_key, record_val = record
# check if the bucket has same key as
# the key to be inserted
if record_key == key:
found_key = True
break
# If the bucket has same key as the key to be inserted,
# Update the key value
# Otherwise append the new key-value pair to the bucket
if found_key:
bucket[index] = (key, val)
else:
bucket.append((key, val))
# Return searched value with specific key
def get_val(self, key):
# Get the index from the key using
# hash function
hashed_key = hash(key) % self.size
# Get the bucket corresponding to index
bucket = self.hash_table[hashed_key]
found_key = False
for index, record in enumerate(bucket):
record_key, record_val = record
# check if the bucket has same key as
# the key being searched
if record_key == key:
found_key = True
break
# If the bucket has same key as the key being searched,
# Return the value found
# Otherwise indicate there was no record found
if found_key:
return record_val
else:
return "No record found"
# Remove a value with specific key
def delete_val(self, key):
# Get the index from the key using
# hash function
hashed_key = hash(key) % self.size
# Get the bucket corresponding to index
bucket = self.hash_table[hashed_key]
found_key = False
for index, record in enumerate(bucket):
record_key, record_val = record
# check if the bucket has same key as
# the key to be deleted
if record_key == key:
found_key = True
break
if found_key:
bucket.pop(index)
return
# To print the items of hash map
def __str__(self):
return "".join(str(item) for item in self.hash_table)
if __name__ == '__main__':
# obj = HashMap1()
# obj.add('key1', 'XYZ')
# obj.add('key2', 'ABC')
# obj.delete('key2')
# print(obj.hashMap)
hash_table = HashTable(50)
# insert some values
hash_table.set_val('gfg@example.com', 'some value')
print(hash_table)
print()
hash_table.set_val('portal@example.com', 'some other value')
print(hash_table)
print()
# search/access a record with key
print(hash_table.get_val('portal@example.com'))
print()
# delete or remove a value
hash_table.delete_val('portal@example.com')
print(hash_table) | class Hashmap1(object):
def __init__(self, hashMap={}):
self.hashMap = hashMap
def add(self, key, value):
if key not in self.hashMap:
self.hashMap[key] = value
return
raise exception('Key is already within our data structure')
def update(self, key, value):
if key in self.hashMap:
self.hashMap[key] = value
return
raise exception('Key does not exist in our data structure')
def delete(self, key):
if key in self.hashMap:
self.hashMap.pop(key)
return
raise exception('Key does not exist in our data structure')
class Hashtable:
def __init__(self, size):
self.size = size
self.hash_table = self.create_buckets()
def create_buckets(self):
return [[] for _ in range(self.size)]
def set_val(self, key, val):
hashed_key = hash(key) % self.size
bucket = self.hash_table[hashed_key]
found_key = False
for (index, record) in enumerate(bucket):
(record_key, record_val) = record
if record_key == key:
found_key = True
break
if found_key:
bucket[index] = (key, val)
else:
bucket.append((key, val))
def get_val(self, key):
hashed_key = hash(key) % self.size
bucket = self.hash_table[hashed_key]
found_key = False
for (index, record) in enumerate(bucket):
(record_key, record_val) = record
if record_key == key:
found_key = True
break
if found_key:
return record_val
else:
return 'No record found'
def delete_val(self, key):
hashed_key = hash(key) % self.size
bucket = self.hash_table[hashed_key]
found_key = False
for (index, record) in enumerate(bucket):
(record_key, record_val) = record
if record_key == key:
found_key = True
break
if found_key:
bucket.pop(index)
return
def __str__(self):
return ''.join((str(item) for item in self.hash_table))
if __name__ == '__main__':
hash_table = hash_table(50)
hash_table.set_val('gfg@example.com', 'some value')
print(hash_table)
print()
hash_table.set_val('portal@example.com', 'some other value')
print(hash_table)
print()
print(hash_table.get_val('portal@example.com'))
print()
hash_table.delete_val('portal@example.com')
print(hash_table) |
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# 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.
def test_bincount(backends):
inputs = [1, 2, 3, 3, 5]
for B in backends:
t = B.tensor(inputs)
cnt = B.bincount(t, minlength=6)
assert cnt.shape[0] == 6
assert B.tensor_equal(cnt, B.tensor([0, 1, 1, 2, 0, 1]))
| def test_bincount(backends):
inputs = [1, 2, 3, 3, 5]
for b in backends:
t = B.tensor(inputs)
cnt = B.bincount(t, minlength=6)
assert cnt.shape[0] == 6
assert B.tensor_equal(cnt, B.tensor([0, 1, 1, 2, 0, 1])) |
class Solution:
def numRescueBoats(self, people: List[int], limit: int) -> int:
people.sort()
low = total = 0
high = len(people) - 1
while low <= high:
total += 1
if people[low] + people[high] <= limit:
low += 1
high -= 1
return total
| class Solution:
def num_rescue_boats(self, people: List[int], limit: int) -> int:
people.sort()
low = total = 0
high = len(people) - 1
while low <= high:
total += 1
if people[low] + people[high] <= limit:
low += 1
high -= 1
return total |
# Definition for singly-linked list.
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def reverseBetween(self, head: ListNode, left: int, right: int) -> ListNode:
curr_node = head
count = 1
prev = None
while curr_node:
if count == left:
next_node = curr_node
while count != right:
next_node = next_node.next
count += 1
if prev:
while curr_node != next_node:
temp = prev.next = curr_node.next
curr_node.next = next_node.next
next_node.next = curr_node
curr_node = temp
else:
while curr_node != next_node:
temp = curr_node.next
curr_node.next = next_node.next
next_node.next = curr_node
head = curr_node = temp
break
prev = curr_node
curr_node = curr_node.next
count += 1
return head
| class Listnode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def reverse_between(self, head: ListNode, left: int, right: int) -> ListNode:
curr_node = head
count = 1
prev = None
while curr_node:
if count == left:
next_node = curr_node
while count != right:
next_node = next_node.next
count += 1
if prev:
while curr_node != next_node:
temp = prev.next = curr_node.next
curr_node.next = next_node.next
next_node.next = curr_node
curr_node = temp
else:
while curr_node != next_node:
temp = curr_node.next
curr_node.next = next_node.next
next_node.next = curr_node
head = curr_node = temp
break
prev = curr_node
curr_node = curr_node.next
count += 1
return head |
class Solution:
def minFlips(self, s: str) -> int:
n = len(s)
# count[0][0] := # of '0' in even indices
# count[0][1] := # of '0' in odd indices
# count[1][0] := # of '1' in even indices
# count[1][1] := # of '1' in odd indices
count = [[0] * 2 for _ in range(2)]
for i, c in enumerate(s):
count[ord(c) - ord('0')][i % 2] += 1
# min(make all '0' in even indices + make all '1' in odd indices,
# make all '1' in even indices + make all '0' in odd indices)
ans = min(count[1][0] + count[0][1], count[0][0] + count[1][1])
for i, c in enumerate(s):
count[ord(c) - ord('0')][i % 2] -= 1
count[ord(c) - ord('0')][(n + i) % 2] += 1
ans = min(ans, count[1][0] + count[0][1], count[0][0] + count[1][1])
return ans
| class Solution:
def min_flips(self, s: str) -> int:
n = len(s)
count = [[0] * 2 for _ in range(2)]
for (i, c) in enumerate(s):
count[ord(c) - ord('0')][i % 2] += 1
ans = min(count[1][0] + count[0][1], count[0][0] + count[1][1])
for (i, c) in enumerate(s):
count[ord(c) - ord('0')][i % 2] -= 1
count[ord(c) - ord('0')][(n + i) % 2] += 1
ans = min(ans, count[1][0] + count[0][1], count[0][0] + count[1][1])
return ans |
l = input()
T = len(l)
if(T <= 80):
print("YES")
else:
print("NO") | l = input()
t = len(l)
if T <= 80:
print('YES')
else:
print('NO') |
#Entrada de dados.
frase = str(input('Digite uma frase: '))
#Processamento e saida de dados.
print(frase.replace(" ", ""))
| frase = str(input('Digite uma frase: '))
print(frase.replace(' ', '')) |
class Solution:
def maxProfit(self, prices: List[int]) -> int:
res = 0
for i in range(1,len(prices)):
if prices[i]>prices[i-1]:
res+=prices[i]-prices[i-1]
return res | class Solution:
def max_profit(self, prices: List[int]) -> int:
res = 0
for i in range(1, len(prices)):
if prices[i] > prices[i - 1]:
res += prices[i] - prices[i - 1]
return res |
s = 'My Name is Pankaj'
# create substring using slice
name = s[11:]
print(name)
# list of substrings using split
l1 = s.split()
print(l1)
# if present or not
if 'Name' in s:
print('Substring found')
if s.find('Name') != -1:
print('Substring found')
# substring count
print('Substring count =', s.count('a'))
s = 'This Is The Best Theorem'
print('Substring count =', s.count('Th'))
# substring index positions
def find_all_indexes(input_str, substring):
l2 = []
length = len(input_str)
index = 0
while index < length:
i = input_str.find(substring, index)
if i == -1:
return l2
l2.append(i)
index = i + 1
return l2
print(find_all_indexes(s, 'Th'))
| s = 'My Name is Pankaj'
name = s[11:]
print(name)
l1 = s.split()
print(l1)
if 'Name' in s:
print('Substring found')
if s.find('Name') != -1:
print('Substring found')
print('Substring count =', s.count('a'))
s = 'This Is The Best Theorem'
print('Substring count =', s.count('Th'))
def find_all_indexes(input_str, substring):
l2 = []
length = len(input_str)
index = 0
while index < length:
i = input_str.find(substring, index)
if i == -1:
return l2
l2.append(i)
index = i + 1
return l2
print(find_all_indexes(s, 'Th')) |
# This problem was recently asked by Amazon:
# The h-index is a metric that attempts to measure the productivity and citation impact of the publication of a scholar.
# The definition of the h-index is if a scholar has at least h of their papers cited h times.
def hIndex(publications):
# Fill this in.
n = len(publications)
eq = [0] * (n + 1)
for h in range(n):
if publications[h] >= n:
eq[n] += 1
else:
eq[publications[h]] += 1
s = 0
for h in range(n, 0, -1):
s += eq[h]
if s >= h:
return h
return 0
print(hIndex([5, 3, 3, 1, 0]))
# 3
| def h_index(publications):
n = len(publications)
eq = [0] * (n + 1)
for h in range(n):
if publications[h] >= n:
eq[n] += 1
else:
eq[publications[h]] += 1
s = 0
for h in range(n, 0, -1):
s += eq[h]
if s >= h:
return h
return 0
print(h_index([5, 3, 3, 1, 0])) |
#
# PySNMP MIB module CISCO-ETHERNET-ACCESS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-ETHERNET-ACCESS-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:40: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)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint", "ConstraintsIntersection")
ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt")
vtpVlanIndex, managementDomainIndex = mibBuilder.importSymbols("CISCO-VTP-MIB", "vtpVlanIndex", "managementDomainIndex")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance")
Counter32, MibIdentifier, Bits, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, ObjectIdentity, NotificationType, ModuleIdentity, TimeTicks, Gauge32, Integer32, Counter64, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "MibIdentifier", "Bits", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "ObjectIdentity", "NotificationType", "ModuleIdentity", "TimeTicks", "Gauge32", "Integer32", "Counter64", "IpAddress")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
ciscoEthernetAccessMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 466))
ciscoEthernetAccessMIB.setRevisions(('2007-09-14 00:00', '2005-01-18 00:00',))
if mibBuilder.loadTexts: ciscoEthernetAccessMIB.setLastUpdated('200709140000Z')
if mibBuilder.loadTexts: ciscoEthernetAccessMIB.setOrganization('Cisco Systems, Inc.')
ciscoEthernetAccessMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 1))
ciscoEthernetAccessMIBConform = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 2))
ceaGlobals = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 1))
ceaConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2))
class CeaVlanUNIType(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("other", 1), ("isolated", 2), ("community", 3))
ceaMaxNNIPorts = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 512))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ceaMaxNNIPorts.setStatus('current')
ceaMaxUNIVlanCommunityPorts = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 512))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ceaMaxUNIVlanCommunityPorts.setStatus('current')
ceaPortTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 1), )
if mibBuilder.loadTexts: ceaPortTable.setStatus('current')
ceaPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: ceaPortEntry.setStatus('current')
ceaPortType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unspecified", 1), ("uni", 2), ("nni", 3), ("eni", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ceaPortType.setStatus('current')
ceaPortCapability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 1, 1, 2), Bits().clone(namedValues=NamedValues(("nni", 0), ("uni", 1), ("eni", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ceaPortCapability.setStatus('current')
ceaUNIVlanTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 2), )
if mibBuilder.loadTexts: ceaUNIVlanTable.setStatus('current')
ceaUNIVlanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 2, 1), ).setIndexNames((0, "CISCO-VTP-MIB", "managementDomainIndex"), (0, "CISCO-VTP-MIB", "vtpVlanIndex"))
if mibBuilder.loadTexts: ceaUNIVlanEntry.setStatus('current')
ceaUNIVlanType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 2, 1, 1), CeaVlanUNIType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ceaUNIVlanType.setStatus('current')
cEthernetAccessMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 1))
cEthernetAccessMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 2))
cEthernetAccessMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 1, 1)).setObjects(("CISCO-ETHERNET-ACCESS-MIB", "ceaPortGroup"), ("CISCO-ETHERNET-ACCESS-MIB", "ceaVlanGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cEthernetAccessMIBCompliance = cEthernetAccessMIBCompliance.setStatus('current')
ceaPortGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 2, 1)).setObjects(("CISCO-ETHERNET-ACCESS-MIB", "ceaMaxNNIPorts"), ("CISCO-ETHERNET-ACCESS-MIB", "ceaPortType"), ("CISCO-ETHERNET-ACCESS-MIB", "ceaPortCapability"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ceaPortGroup = ceaPortGroup.setStatus('current')
ceaVlanGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 2, 2)).setObjects(("CISCO-ETHERNET-ACCESS-MIB", "ceaMaxUNIVlanCommunityPorts"), ("CISCO-ETHERNET-ACCESS-MIB", "ceaUNIVlanType"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ceaVlanGroup = ceaVlanGroup.setStatus('current')
mibBuilder.exportSymbols("CISCO-ETHERNET-ACCESS-MIB", ceaPortEntry=ceaPortEntry, ceaConfig=ceaConfig, ceaPortType=ceaPortType, ciscoEthernetAccessMIBConform=ciscoEthernetAccessMIBConform, ceaUNIVlanType=ceaUNIVlanType, cEthernetAccessMIBGroups=cEthernetAccessMIBGroups, ciscoEthernetAccessMIBObjects=ciscoEthernetAccessMIBObjects, cEthernetAccessMIBCompliances=cEthernetAccessMIBCompliances, ceaMaxNNIPorts=ceaMaxNNIPorts, ceaPortTable=ceaPortTable, ceaGlobals=ceaGlobals, cEthernetAccessMIBCompliance=cEthernetAccessMIBCompliance, CeaVlanUNIType=CeaVlanUNIType, PYSNMP_MODULE_ID=ciscoEthernetAccessMIB, ceaUNIVlanEntry=ceaUNIVlanEntry, ceaPortGroup=ceaPortGroup, ceaUNIVlanTable=ceaUNIVlanTable, ciscoEthernetAccessMIB=ciscoEthernetAccessMIB, ceaMaxUNIVlanCommunityPorts=ceaMaxUNIVlanCommunityPorts, ceaVlanGroup=ceaVlanGroup, ceaPortCapability=ceaPortCapability)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_range_constraint, constraints_union, value_size_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ValueSizeConstraint', 'ConstraintsIntersection')
(cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt')
(vtp_vlan_index, management_domain_index) = mibBuilder.importSymbols('CISCO-VTP-MIB', 'vtpVlanIndex', 'managementDomainIndex')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance')
(counter32, mib_identifier, bits, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, object_identity, notification_type, module_identity, time_ticks, gauge32, integer32, counter64, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'MibIdentifier', 'Bits', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'ObjectIdentity', 'NotificationType', 'ModuleIdentity', 'TimeTicks', 'Gauge32', 'Integer32', 'Counter64', 'IpAddress')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
cisco_ethernet_access_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 466))
ciscoEthernetAccessMIB.setRevisions(('2007-09-14 00:00', '2005-01-18 00:00'))
if mibBuilder.loadTexts:
ciscoEthernetAccessMIB.setLastUpdated('200709140000Z')
if mibBuilder.loadTexts:
ciscoEthernetAccessMIB.setOrganization('Cisco Systems, Inc.')
cisco_ethernet_access_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 1))
cisco_ethernet_access_mib_conform = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 2))
cea_globals = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 1))
cea_config = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2))
class Ceavlanunitype(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('other', 1), ('isolated', 2), ('community', 3))
cea_max_nni_ports = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 512))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ceaMaxNNIPorts.setStatus('current')
cea_max_uni_vlan_community_ports = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 512))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ceaMaxUNIVlanCommunityPorts.setStatus('current')
cea_port_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 1))
if mibBuilder.loadTexts:
ceaPortTable.setStatus('current')
cea_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
ceaPortEntry.setStatus('current')
cea_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unspecified', 1), ('uni', 2), ('nni', 3), ('eni', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ceaPortType.setStatus('current')
cea_port_capability = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 1, 1, 2), bits().clone(namedValues=named_values(('nni', 0), ('uni', 1), ('eni', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ceaPortCapability.setStatus('current')
cea_uni_vlan_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 2))
if mibBuilder.loadTexts:
ceaUNIVlanTable.setStatus('current')
cea_uni_vlan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 2, 1)).setIndexNames((0, 'CISCO-VTP-MIB', 'managementDomainIndex'), (0, 'CISCO-VTP-MIB', 'vtpVlanIndex'))
if mibBuilder.loadTexts:
ceaUNIVlanEntry.setStatus('current')
cea_uni_vlan_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 466, 1, 2, 2, 1, 1), cea_vlan_uni_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ceaUNIVlanType.setStatus('current')
c_ethernet_access_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 1))
c_ethernet_access_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 2))
c_ethernet_access_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 1, 1)).setObjects(('CISCO-ETHERNET-ACCESS-MIB', 'ceaPortGroup'), ('CISCO-ETHERNET-ACCESS-MIB', 'ceaVlanGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
c_ethernet_access_mib_compliance = cEthernetAccessMIBCompliance.setStatus('current')
cea_port_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 2, 1)).setObjects(('CISCO-ETHERNET-ACCESS-MIB', 'ceaMaxNNIPorts'), ('CISCO-ETHERNET-ACCESS-MIB', 'ceaPortType'), ('CISCO-ETHERNET-ACCESS-MIB', 'ceaPortCapability'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cea_port_group = ceaPortGroup.setStatus('current')
cea_vlan_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 466, 2, 2, 2)).setObjects(('CISCO-ETHERNET-ACCESS-MIB', 'ceaMaxUNIVlanCommunityPorts'), ('CISCO-ETHERNET-ACCESS-MIB', 'ceaUNIVlanType'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cea_vlan_group = ceaVlanGroup.setStatus('current')
mibBuilder.exportSymbols('CISCO-ETHERNET-ACCESS-MIB', ceaPortEntry=ceaPortEntry, ceaConfig=ceaConfig, ceaPortType=ceaPortType, ciscoEthernetAccessMIBConform=ciscoEthernetAccessMIBConform, ceaUNIVlanType=ceaUNIVlanType, cEthernetAccessMIBGroups=cEthernetAccessMIBGroups, ciscoEthernetAccessMIBObjects=ciscoEthernetAccessMIBObjects, cEthernetAccessMIBCompliances=cEthernetAccessMIBCompliances, ceaMaxNNIPorts=ceaMaxNNIPorts, ceaPortTable=ceaPortTable, ceaGlobals=ceaGlobals, cEthernetAccessMIBCompliance=cEthernetAccessMIBCompliance, CeaVlanUNIType=CeaVlanUNIType, PYSNMP_MODULE_ID=ciscoEthernetAccessMIB, ceaUNIVlanEntry=ceaUNIVlanEntry, ceaPortGroup=ceaPortGroup, ceaUNIVlanTable=ceaUNIVlanTable, ciscoEthernetAccessMIB=ciscoEthernetAccessMIB, ceaMaxUNIVlanCommunityPorts=ceaMaxUNIVlanCommunityPorts, ceaVlanGroup=ceaVlanGroup, ceaPortCapability=ceaPortCapability) |
class PythonListener(object):
def __init__(self, gateway):
self.gateway = gateway
def mapCollective(self, msg, harp_context):
harp_context.p(msg+1)
print(msg)
class Java:
implements = ["edu.iu.harp.boot.python.MapCollectiveReceiver"] | class Pythonlistener(object):
def __init__(self, gateway):
self.gateway = gateway
def map_collective(self, msg, harp_context):
harp_context.p(msg + 1)
print(msg)
class Java:
implements = ['edu.iu.harp.boot.python.MapCollectiveReceiver'] |
#code
def subary(l,n,k):
cur_sum=l[0]
j=0
i=1
while i<n:
cur_sum+=l[i]
i+=1
while cur_sum>k:
cur_sum-=l[j]
j+=1
if cur_sum==k:
return [j+1,i]
return -1
for _ in range(int(input())):
n,k = map(int,input().split())
l = list(map(int,input().split()))
if subary(l,n,k)!=-1:
print(*subary(l,n,k))
else:
print(-1)
# ratndeep
# https://www.geeksforgeeks.org/find-subarray-with-given-sum/
# O(n)
| def subary(l, n, k):
cur_sum = l[0]
j = 0
i = 1
while i < n:
cur_sum += l[i]
i += 1
while cur_sum > k:
cur_sum -= l[j]
j += 1
if cur_sum == k:
return [j + 1, i]
return -1
for _ in range(int(input())):
(n, k) = map(int, input().split())
l = list(map(int, input().split()))
if subary(l, n, k) != -1:
print(*subary(l, n, k))
else:
print(-1) |
i=0
while i<10:
child=raw_input()
child=child.split()
child=[int(u) for u in child]
sum=child[0]+child[1]
if sum>0:
print(sum)
i=i+1
if (child[0] == 0 and child[1] == 0):
break
| i = 0
while i < 10:
child = raw_input()
child = child.split()
child = [int(u) for u in child]
sum = child[0] + child[1]
if sum > 0:
print(sum)
i = i + 1
if child[0] == 0 and child[1] == 0:
break |
var = input ()
print("Hello, World." )
print (var)
| var = input()
print('Hello, World.')
print(var) |
#!/usr/bin/env python3
#https://codeforces.com/problemset/problem/900/A
xs = [list(map(int,input().split()))[0] for _ in range(int(input()))]
np = sum([x>0 for x in xs])
nn = sum([x<0 for x in xs])
print('NO' if np>1 and nn>1 else 'YES')
| xs = [list(map(int, input().split()))[0] for _ in range(int(input()))]
np = sum([x > 0 for x in xs])
nn = sum([x < 0 for x in xs])
print('NO' if np > 1 and nn > 1 else 'YES') |
def question(a, bc, s):
exa = int(a)
exb, exc = map(int, bc.split())
exs = s
return f"{exa + exb + exc} {exs}"
| def question(a, bc, s):
exa = int(a)
(exb, exc) = map(int, bc.split())
exs = s
return f'{exa + exb + exc} {exs}' |
def word_to_text_id(word):
return (word.text, int(word.id))
def filter_sent(sent, condition, postprocessor=word_to_text_id):
t = [w for w in sent.words if condition(w)]
if len(t) > 0:
return postprocessor(t[0])
else:
return None
def is_wh(word):
return word.xpos.startswith('W')
def to_tuple(tpl):
# return ('wh', tpl.get('wh', None), 'pred', tpl.get('pred', None), 'arg', tpl.get('arg', None))#, 'ans', tpl.get('ans', None))
res = tuple()
for key in ['wh', 'pred', 'arg']:
if key in tpl and tpl[key] is not None:
res += tpl[key]
return res
def parsed_to_tuple(question, answer=None):
root = filter_sent(question, lambda w: w.deprel == 'root', postprocessor=lambda x: x)
# ansroot = filter_sent(answer, lambda w: w.deprel == 'root')
# tpl = {'ans': ansroot}
tpl = dict()
#print(qa['question'])
#print()
#question.print_dependencies()
#print()
if is_wh(root):
# root is wh-word
tpl['wh'] = word_to_text_id(root)
tpl['pred'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'cop')
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'nsubj')
elif filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'expl') is not None:
# is there?
tpl['wh'] = word_to_text_id(root) + filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'expl')
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'nsubj')
elif filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'cop') is not None and root.upos in ['ADJ', 'ADV']:
wh_word = filter_sent(question, lambda w: w.head == int(root.id) and is_wh(w))
if wh_word is not None:
# how old
tpl['wh'] = wh_word + word_to_text_id(root)
tpl['pred'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'cop')
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel in ['nsubj', 'nsubj:pass'] and not is_wh(w))
else:
# is ... good?
tpl['wh'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'cop')
tpl['pred'] = word_to_text_id(root)
else:
obj_found = False
tpl['wh'] = filter_sent(question, lambda w: w.head == int(root.id) and is_wh(w))
if tpl['wh'] is None:
wh = filter_sent(question, lambda w: is_wh(w), postprocessor=lambda x: x)
if wh is not None:
# what instrument
wh_noun = filter_sent(question, lambda w: wh.head == int(w.id))
tpl['wh'] = word_to_text_id(wh) + wh_noun
obj_found = True
else:
# yes/no question
tpl['wh'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'aux')
tpl['pred'] = word_to_text_id(root)
if not obj_found:
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'obj' and not is_wh(w))
if tpl['arg'] is None:
# find obliques or nmods
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel in ['obl', 'nmod'] and not is_wh(w))
if tpl['arg'] is None and root.upos == 'NOUN':
# find adjective
# tpl['wh'] = tpl['wh'] if tpl.get('wh', None) is not None else 'be'
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel in ['amod'] and not is_wh(w))
if tpl['arg'] is None and tpl['wh'] is None:
# find subject
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel in ['nsubj', 'nsubj:pass'] and not is_wh(w))
return to_tuple(tpl)
| def word_to_text_id(word):
return (word.text, int(word.id))
def filter_sent(sent, condition, postprocessor=word_to_text_id):
t = [w for w in sent.words if condition(w)]
if len(t) > 0:
return postprocessor(t[0])
else:
return None
def is_wh(word):
return word.xpos.startswith('W')
def to_tuple(tpl):
res = tuple()
for key in ['wh', 'pred', 'arg']:
if key in tpl and tpl[key] is not None:
res += tpl[key]
return res
def parsed_to_tuple(question, answer=None):
root = filter_sent(question, lambda w: w.deprel == 'root', postprocessor=lambda x: x)
tpl = dict()
if is_wh(root):
tpl['wh'] = word_to_text_id(root)
tpl['pred'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'cop')
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'nsubj')
elif filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'expl') is not None:
tpl['wh'] = word_to_text_id(root) + filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'expl')
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'nsubj')
elif filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'cop') is not None and root.upos in ['ADJ', 'ADV']:
wh_word = filter_sent(question, lambda w: w.head == int(root.id) and is_wh(w))
if wh_word is not None:
tpl['wh'] = wh_word + word_to_text_id(root)
tpl['pred'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'cop')
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel in ['nsubj', 'nsubj:pass'] and (not is_wh(w)))
else:
tpl['wh'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'cop')
tpl['pred'] = word_to_text_id(root)
else:
obj_found = False
tpl['wh'] = filter_sent(question, lambda w: w.head == int(root.id) and is_wh(w))
if tpl['wh'] is None:
wh = filter_sent(question, lambda w: is_wh(w), postprocessor=lambda x: x)
if wh is not None:
wh_noun = filter_sent(question, lambda w: wh.head == int(w.id))
tpl['wh'] = word_to_text_id(wh) + wh_noun
obj_found = True
else:
tpl['wh'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'aux')
tpl['pred'] = word_to_text_id(root)
if not obj_found:
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel == 'obj' and (not is_wh(w)))
if tpl['arg'] is None:
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel in ['obl', 'nmod'] and (not is_wh(w)))
if tpl['arg'] is None and root.upos == 'NOUN':
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel in ['amod'] and (not is_wh(w)))
if tpl['arg'] is None and tpl['wh'] is None:
tpl['arg'] = filter_sent(question, lambda w: w.head == int(root.id) and w.deprel in ['nsubj', 'nsubj:pass'] and (not is_wh(w)))
return to_tuple(tpl) |
class Solution:
def buildTree(self, inorder: List[int], postorder: List[int]) -> Optional[TreeNode]:
if not postorder or not inorder :
return None
root = TreeNode(postorder[-1])
m = inorder.index(root.val)
root.right = self.buildTree( inorder[m+1:] , postorder[m:-1] )
root.left = self.buildTree( inorder[:m] , postorder[:m])
return root
| class Solution:
def build_tree(self, inorder: List[int], postorder: List[int]) -> Optional[TreeNode]:
if not postorder or not inorder:
return None
root = tree_node(postorder[-1])
m = inorder.index(root.val)
root.right = self.buildTree(inorder[m + 1:], postorder[m:-1])
root.left = self.buildTree(inorder[:m], postorder[:m])
return root |
class Pedido():
def __init__(self,cliente,valor,quantidade):
self._cliente = cliente
self._valor = valor
self._quantidade = quantidade
self._valor_total = 0
def get_valor(self):
return self._valor
def get_quantidade(self):
return self._quantidade
def get_valor_total(self):
return self._valor_total
def get_cliente(self):
return self._cliente
def set_valor_total(self,valor):
self._valor_total = valor
| class Pedido:
def __init__(self, cliente, valor, quantidade):
self._cliente = cliente
self._valor = valor
self._quantidade = quantidade
self._valor_total = 0
def get_valor(self):
return self._valor
def get_quantidade(self):
return self._quantidade
def get_valor_total(self):
return self._valor_total
def get_cliente(self):
return self._cliente
def set_valor_total(self, valor):
self._valor_total = valor |
def generate_confluence_graph(
project, data, type='bar', x_axis='name',
exclude_metrics=['started_at'],
):
exclude_metrics.append(x_axis)
metric_names = []
for k in data[0]:
if k not in exclude_metrics:
metric_names.append(k)
html = ""
html += '''
<ac:structured-macro ac:macro-id="f16ff7f1-2469-49cb-ad18-d9ed551fe985" ac:name="chart" ac:schema-version="1">
<ac:parameter ac:name="subTitle">Aggregate average/median response times</ac:parameter>
<ac:parameter ac:name="xtitle">display_name</ac:parameter>
<ac:parameter ac:name="aggregation">average,median</ac:parameter>
<ac:parameter ac:name="type">{0}</ac:parameter>
<ac:parameter ac:name="width">1200</ac:parameter>
<ac:parameter ac:name="height">300</ac:parameter>
<ac:parameter ac:name="column">display_name</ac:parameter>
<ac:parameter ac:name="pieKeys">display_name</ac:parameter>
<ac:parameter ac:name="minvalue">0</ac:parameter>
<ac:parameter ac:name="yLabel">response times (ms)</ac:parameter>
<ac:parameter ac:name="xLabel">release name</ac:parameter>
<ac:parameter ac:name="categoryLabelPosition">up90</ac:parameter>
<ac:rich-text-body>
<table class="wrapped">
<colgroup>
<col/>
<col/>
</colgroup>
<tbody>
<tr>
<th></th>
'''.format(type)
for row in reversed(data):
html += "<th>{0}</th>".format(row['name'])
html += "</tr>"
for metric_name in metric_names:
html += "<tr>"
html += "<td>{0}</td>".format(metric_name)
for row in reversed(data):
html += "<td>{0}</td>".format(row[metric_name])
html += "</tr>"
html += '''
</tbody>
</table>
</ac:rich-text-body>
</ac:structured-macro>
'''
return html
| def generate_confluence_graph(project, data, type='bar', x_axis='name', exclude_metrics=['started_at']):
exclude_metrics.append(x_axis)
metric_names = []
for k in data[0]:
if k not in exclude_metrics:
metric_names.append(k)
html = ''
html += '\n <ac:structured-macro ac:macro-id="f16ff7f1-2469-49cb-ad18-d9ed551fe985" ac:name="chart" ac:schema-version="1">\n <ac:parameter ac:name="subTitle">Aggregate average/median response times</ac:parameter>\n <ac:parameter ac:name="xtitle">display_name</ac:parameter>\n <ac:parameter ac:name="aggregation">average,median</ac:parameter>\n <ac:parameter ac:name="type">{0}</ac:parameter>\n <ac:parameter ac:name="width">1200</ac:parameter>\n <ac:parameter ac:name="height">300</ac:parameter>\n <ac:parameter ac:name="column">display_name</ac:parameter>\n <ac:parameter ac:name="pieKeys">display_name</ac:parameter>\n <ac:parameter ac:name="minvalue">0</ac:parameter>\n <ac:parameter ac:name="yLabel">response times (ms)</ac:parameter>\n <ac:parameter ac:name="xLabel">release name</ac:parameter>\n <ac:parameter ac:name="categoryLabelPosition">up90</ac:parameter>\n <ac:rich-text-body>\n <table class="wrapped">\n <colgroup>\n <col/>\n <col/>\n </colgroup>\n <tbody>\n <tr>\n <th></th>\n '.format(type)
for row in reversed(data):
html += '<th>{0}</th>'.format(row['name'])
html += '</tr>'
for metric_name in metric_names:
html += '<tr>'
html += '<td>{0}</td>'.format(metric_name)
for row in reversed(data):
html += '<td>{0}</td>'.format(row[metric_name])
html += '</tr>'
html += '\n </tbody>\n </table>\n </ac:rich-text-body>\n </ac:structured-macro>\n '
return html |
s = 1201
n = s > 1200
print(n)
a = 5
b = 1
c = True
d = True
condicao = a > b and c or d
print(condicao)
| s = 1201
n = s > 1200
print(n)
a = 5
b = 1
c = True
d = True
condicao = a > b and c or d
print(condicao) |
class PerfilpageTests(SimpleTestCase):
def test_perfilpage_status_code(self):
response = self.client.get('/')
self.assertEqual(response.status_code, 200)
def test_perfilpage_url_name(self):
response = self.client.get(reverse('profile'))
self.assertEqual(response.status_code, 200)
def test_perfilpage_template(self):
response = self.client.get('<id>/')
self.assertTemplateUsed(response, 'perfil.html') | class Perfilpagetests(SimpleTestCase):
def test_perfilpage_status_code(self):
response = self.client.get('/')
self.assertEqual(response.status_code, 200)
def test_perfilpage_url_name(self):
response = self.client.get(reverse('profile'))
self.assertEqual(response.status_code, 200)
def test_perfilpage_template(self):
response = self.client.get('<id>/')
self.assertTemplateUsed(response, 'perfil.html') |
def tribonacci(signature, n):
accu = signature[0:n]
for i in range(3,n):
accu.append( sum(accu[i-3:i]) )
return accu | def tribonacci(signature, n):
accu = signature[0:n]
for i in range(3, n):
accu.append(sum(accu[i - 3:i]))
return accu |
#!/usr/bin/env python
ip_addr = input("Please enter IP address: ")
my_ip_list = ip_addr.split(".")
my_ip_list[-1] = 0
ip_binary = []
ip_binary.append(bin(int(my_ip_list[0])))
ip_binary.append(bin(int(my_ip_list[1])))
ip_binary.append(bin(int(my_ip_list[2])))
ip_binary.append(bin(int(my_ip_list[3])))
print()
print("{:<12} {:<12} {:<12} {:<12}".format("octet1", "octet2", "octet3", "octet4"))
print("{:<12} {:<12} {:<12} {:<12}".format(*my_ip_list))
print("{:<12} {:<12} {:<12} {:<12}".format(*ip_binary))
print()
| ip_addr = input('Please enter IP address: ')
my_ip_list = ip_addr.split('.')
my_ip_list[-1] = 0
ip_binary = []
ip_binary.append(bin(int(my_ip_list[0])))
ip_binary.append(bin(int(my_ip_list[1])))
ip_binary.append(bin(int(my_ip_list[2])))
ip_binary.append(bin(int(my_ip_list[3])))
print()
print('{:<12} {:<12} {:<12} {:<12}'.format('octet1', 'octet2', 'octet3', 'octet4'))
print('{:<12} {:<12} {:<12} {:<12}'.format(*my_ip_list))
print('{:<12} {:<12} {:<12} {:<12}'.format(*ip_binary))
print() |
#
# PySNMP MIB module Novell-LANalyzer-TR-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Novell-LANalyzer-TR-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:31:56 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueRangeConstraint, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint")
EntryStatus, OwnerString = mibBuilder.importSymbols("RFC1271-MIB", "EntryStatus", "OwnerString")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
enterprises, iso, TimeTicks, Counter32, Bits, Counter64, ObjectIdentity, MibIdentifier, Integer32, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, ModuleIdentity, IpAddress, NotificationType, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "enterprises", "iso", "TimeTicks", "Counter32", "Bits", "Counter64", "ObjectIdentity", "MibIdentifier", "Integer32", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "ModuleIdentity", "IpAddress", "NotificationType", "NotificationType")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
class MacAddress(OctetString):
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(6, 6)
fixedLength = 6
novell = MibIdentifier((1, 3, 6, 1, 4, 1, 23))
productType = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 1))
mibDoc = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2))
ringrmon_mib = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 15)).setLabel("ringrmon-mib")
tokenRingStatistics = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 15, 1))
tokenRingHistory = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 15, 2))
tokenRing = MibIdentifier((1, 3, 6, 1, 4, 1, 23, 2, 15, 3))
tokenRingStatsTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1), )
if mibBuilder.loadTexts: tokenRingStatsTable.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsTable.setDescription('A list of token ring statistics entries.')
tokenRingStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1), ).setIndexNames((0, "Novell-LANalyzer-TR-MIB", "tokenRingStatsIndex"))
if mibBuilder.loadTexts: tokenRingStatsEntry.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsEntry.setDescription('A collection of statistics kept for a particular token ring interface.')
tokenRingStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsIndex.setDescription('The value of this object uniquely identifies this tokenRingStat entry.')
tokenRingStatsDataSource = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingStatsDataSource.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataSource.setDescription('This object contains the identifier for the source of the data that this tokenRingStats entry is set up to analyze. The identifier is defined to contain the name of the instance that this entry receives data from. This object may not be modified unless the associated tokenRingStatsEntry object is equal to invalid(4).')
tokenRingStatsDropEvents = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDropEvents.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDropEvents.setDescription('The total number of events in which packets are dropped by the probe due to lack of resources. Note that this is not necessarily the number of packets dropped, it is just the number of times this condition has been detected.')
tokenRingStatsDataOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataOctets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataOctets.setDescription('The total number of good NON-MAC octets received on the network, excluding framing bits but including FCS octets. In contrast to etherStatsOctets, octets from bad packets are not counted.')
tokenRingStatsDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPkts.setDescription('The total number of good NON-MAC packets received on the network. In contrast to etherStatsPkts, bad packets are not counted.')
tokenRingStatsBroadcastDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsBroadcastDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsBroadcastDataPkts.setDescription('The total number of good NON-MAC packets received that were direct to the broadcast address. Note that bad broadcast packets are not counted.')
tokenRingStatsMulticastDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsMulticastDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsMulticastDataPkts.setDescription('The total number of good NON-MAC packets received that were directed to a local or global multicast or functional address. Note that bad mutlicast packets are not counted.')
tokenRingStatsMACOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsMACOctets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsMACOctets.setDescription('The total number of good MAC octets received on the network, excluding framing bits but including FCS octets. Same as tokenRingStatsDataOctets, octets from bad MAC packets are not counted.')
tokenRingStatsMACPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsMACPkts.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsMACPkts.setDescription('The total number of good MAC packets received on the network, including unicast, multicast and broadcast MAC packets. Same as tokenRingStatsDataPkts, bad MAC packets are not counted.')
tokenRingStatsRingPurges = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsRingPurges.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsRingPurges.setDescription('The total number of times that the ring enters the ring purge state from normal ring state. Ring purge occurs when the active monitor station detects a type 2 soft errors. The ring purge state that comes from the monitor contention or beacon state is not counted.')
tokenRingStatsMonitorContentions = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsMonitorContentions.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsMonitorContentions.setDescription('The total number of times that the ring enters the monitor contention state from normal ring state or ring purge state. Monitor contention occurs when a type 3 soft error occurs in the network. The monitor contention state that comes from the beacon state is not counted.')
tokenRingStatsBeacons = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsBeacons.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsBeacons.setDescription('The total number of times that the ring enters the beaconing state. Beaconing occurs when a type 4 soft error or hard error occurs in the network.')
tokenRingStatsLostMonitors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsLostMonitors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsLostMonitors.setDescription('The total number of monitor errors reported by the Report Monitor Error MAC frame. It occurs when the standby monitor fails to detect a good token in 2.6 seconds, or no ring poll process is executed in 15 seconds. The standby monitor assumes that the active monitor is not present or not functioning. Lost monitor is a type 3 error and will cause the detect station to initiate the monitor contention process.')
tokenRingStatsDuplicateMonitors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDuplicateMonitors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDuplicateMonitors.setDescription('The total number of duplicate monitor errors reported by the Report Monitor Error MAC frame. When an active monitor detects a ring purge frame or an active monitor present frame from other station, it realizes another active monitor in the ring. This station reports duplicate monitor to the Ring Error Monitor and becomes a standby monitor.')
tokenRingStatsDuplicateAddresses = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDuplicateAddresses.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDuplicateAddresses.setDescription('The total number of duplicate address errors reported by the Report Monitor Error MAC frame. It is generated by the station when it detects other stations using its own address.')
tokenRingStatsRingPollFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsRingPollFailures.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsRingPollFailures.setDescription('The total number of Report Ring Poll Failure MAC frames received. It is generated when the active monitor cannot see a ring poll cycle completed within a time limit. The MAC address of the last station in the incomplete ring poll cycle is saved in the tokenRingNetwork table for reference.')
tokenRingStatsLineErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingStatsInternalErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsInternalErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsInternalErrors.setDescription('The total number of adapter internal errors reported to the Ring Error Monitor. Internal error indicates that a station recognizes a recoverable internal error. Internal error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingStatsBurstErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and the active monitor will purge the ring.')
tokenRingStatsACErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsACErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsACErrors.setDescription('The total number of AC errors reported to the Ring Error Monitor. AC error indicates that a station cannot interpret the address recognition bit or the frame copied bit. AC error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingStatsAbortDelimiters = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsAbortDelimiters.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsAbortDelimiters.setDescription('The total number of abort delimiters reported to the Ring Error Monitor. Abort delimiter indicates that a station aborts a transmission. Abort delimiter is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingStatsLostFrameErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsLostFrameErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsLostFrameErrors.setDescription('The total number of lost frame errors reported to the Ring Error Monitor. Lost frame error indicates that the end delimiter of a frame is lost in the network. Lost frame error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
tokenRingStatsReceiveCongestions = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsReceiveCongestions.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsReceiveCongestions.setDescription('The total number of receive congestion errors reported to the Ring Error Monitor. Receive congestion error indicates that a station recognizes a frame addressed to its specific address, but has no available buffer space. Receive congestion error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingStatsFrameCopiedErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsFrameCopiedErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsFrameCopiedErrors.setDescription('The total number of frame copied errors reported to the Ring Error Monitor. Frame copied error indicates that a station recognizes a frame addressed to its specific address and detects that the FS field A bits are set to 1. It implies either a line hit or duplicate address. Frame copied error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingStatsFrequencyErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsFrequencyErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsFrequencyErrors.setDescription('The total number of frequency errors reported to the Ring Error Monitor. Frequency error indicates that a station detects that the frequency of the incoming signal differs by more than the standard specified margin. Frequency error is non-isolated error. It is a type 3 error and will cause the detect station initiating monitor contention process.')
tokenRingStatsTokenErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsTokenErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsTokenErrors.setDescription('The total number of token errors reported to the Ring Error Monitor. Token error indicates that the Active Monitor station recognizes an error condition that needs a token transmitted. Token error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
tokenRingStatsDataPktsUndersizePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPktsUndersizePkts.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPktsUndersizePkts.setDescription('The total number of packets received that were between 0 and 17 octets in length inclusive, excluding framing bits but including FCS octets. Packets in this category are too short. It is the counterpart of runt packets in Ethernet RMON.')
tokenRingStatsDataPkts18to63Octets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPkts18to63Octets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPkts18to63Octets.setDescription('The total number of data packets received that were between 18 and 63 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts64Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
tokenRingStatsDataPkts64to127Octets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPkts64to127Octets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPkts64to127Octets.setDescription('The total number of data packets received that were between 64 and 127 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts65to127Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
tokenRingStatsDataPkts128to255Octets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPkts128to255Octets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPkts128to255Octets.setDescription('The total number of data packets received that were between 128 and 255 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts128to255Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
tokenRingStatsDataPkts256to511Octets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPkts256to511Octets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPkts256to511Octets.setDescription('The total number of data packets received that were between 256 and 511 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts256to511Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
tokenRingStatsDataPkts512to1023Octets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPkts512to1023Octets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPkts512to1023Octets.setDescription('The total number of data packets received that were between 512 and 1023 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts512to1023Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
tokenRingStatsDataPkts1024to2047Octets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPkts1024to2047Octets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPkts1024to2047Octets.setDescription('The total number of data packets received that were between 1024 and 2047 octets in length inclusive, excluding framing bits but including FCS octets. It is the superset of etherStatsPkts1024to1518Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
tokenRingStatsDataPkts2048to4608Octets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 34), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPkts2048to4608Octets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPkts2048to4608Octets.setDescription('The total number of data packets (excluding error packets) received that were between 2048 and 4608 octets in length inclusive, excluding framing bits but including FCS octets. Note that error packets in this length range is not counted.')
tokenRingStatsDataPkts4609to18000Octets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 35), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPkts4609to18000Octets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPkts4609to18000Octets.setDescription('The total number of data packets (excluding error packets) received that were between 4609 and 18000 octets in length inclusive, excluding framing bits but including FCS octets. Note that error packets in this length range is not counted.')
tokenRingStatsDataPktsMoreThan18000Octets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 36), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingStatsDataPktsMoreThan18000Octets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsDataPktsMoreThan18000Octets.setDescription('The total number of data packets (excluding error packets) received that were more than 18000 in length, excluding framing bits but including FCS octets. Note that error packets in this length range is not counted.')
tokenRingStatsOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 37), OwnerString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingStatsOwner.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsOwner.setDescription("An administratively assigned name for the management station that configured this entry and is therefore using the resources assigned to it. This object contains a NVT octet string up to 127 characters. In some cases the agent itself will configure an entry. In this case, the agent is responsible for the resources and this object shall be set to a string starting with 'monitor'.")
tokenRingStatsStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 38), EntryStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingStatsStatus.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingStatsStatus.setDescription('The status of this tokenRingStats entry.')
tokenRingHistoryTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1), )
if mibBuilder.loadTexts: tokenRingHistoryTable.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryTable.setDescription('A list of token ring statistics entries.')
tokenRingHistoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1), ).setIndexNames((0, "Novell-LANalyzer-TR-MIB", "tokenRingHistoryIndex"), (0, "Novell-LANalyzer-TR-MIB", "tokenRingHistoryStartIndex"))
if mibBuilder.loadTexts: tokenRingHistoryEntry.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryEntry.setDescription('A collection of history statistics kept for a particular token ring interface.')
tokenRingHistoryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryIndex.setDescription('The history of which this entry is a part. The history identified by a particular value of this index is the same history as identified by the same value of historyControlIndex.')
tokenRingHistoryStartIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryStartIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryStartIndex.setDescription('An index that uniquely identifies the particular sample this entry represents among all samples associated with the same historyControlEntry. This index starts at 1 and increases by one as each new sample is taken.')
tokenRingHistoryIntervalStart = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 3), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryIntervalStart.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryIntervalStart.setDescription('The value of sysUpTime at the start of the interval over which this sample was measured. If the probe keeps track of the time of day, it should start the first sample of the history at a time such that when the next hour of the day begins, a sample is started at that instant. Note that following this rule may require the probe to delay collecting the first sample of the history, as each sample must be of the same interval. Also note that the sample which is currently being collected is not accessible in this table until the end of its interval.')
tokenRingHistoryDropEvents = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryDropEvents.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryDropEvents.setDescription('')
tokenRingHistoryDataOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryDataOctets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryDataOctets.setDescription('')
tokenRingHistoryDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryDataPkts.setDescription('')
tokenRingHistoryBroadcastDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryBroadcastDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryBroadcastDataPkts.setDescription('')
tokenRingHistoryMulticastDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryMulticastDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryMulticastDataPkts.setDescription('')
tokenRingHistoryMACOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryMACOctets.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryMACOctets.setDescription('')
tokenRingHistoryMACPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryMACPkts.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryMACPkts.setDescription('')
tokenRingHistoryRingPurges = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryRingPurges.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryRingPurges.setDescription('')
tokenRingHistoryMonitorContentions = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryMonitorContentions.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryMonitorContentions.setDescription('')
tokenRingHistoryBeacons = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryBeacons.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryBeacons.setDescription('')
tokenRingHistoryLostMonitors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryLostMonitors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryLostMonitors.setDescription('')
tokenRingHistoryDuplicateMonitors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryDuplicateMonitors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryDuplicateMonitors.setDescription('')
tokenRingHistoryDuplicateAddresses = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryDuplicateAddresses.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryDuplicateAddresses.setDescription('')
tokenRingHistoryRingPollFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryRingPollFailures.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryRingPollFailures.setDescription('')
tokenRingHistoryLineErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryLineErrors.setDescription('')
tokenRingHistoryInternalErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryInternalErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryInternalErrors.setDescription('')
tokenRingHistoryBurstErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryBurstErrors.setDescription('')
tokenRingHistoryACErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryACErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryACErrors.setDescription('')
tokenRingHistoryAbortDelimiters = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryAbortDelimiters.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryAbortDelimiters.setDescription('')
tokenRingHistoryLostFrameErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryLostFrameErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryLostFrameErrors.setDescription('')
tokenRingHistoryReceiveCongestions = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryReceiveCongestions.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryReceiveCongestions.setDescription('')
tokenRingHistoryFrameCopiedErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryFrameCopiedErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryFrameCopiedErrors.setDescription('')
tokenRingHistoryFrequencyErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryFrequencyErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryFrequencyErrors.setDescription('')
tokenRingHistoryTokenErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryTokenErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryTokenErrors.setDescription('')
tokenRingHistoryUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHistoryUtilization.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHistoryUtilization.setDescription('')
tokenRingControlTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1), )
if mibBuilder.loadTexts: tokenRingControlTable.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlTable.setDescription('A list of token ring configuration control entries.')
tokenRingControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1), ).setIndexNames((0, "Novell-LANalyzer-TR-MIB", "tokenRingControlIndex"))
if mibBuilder.loadTexts: tokenRingControlEntry.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlEntry.setDescription('A list of parameters that sets up a command buffer and two event pointers for the manager who has created this instance.')
tokenRingControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingControlIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlIndex.setDescription('An index that uniquely identifies an entry in the tokenRingControl table. Each entry contains a command buffer for the management station to issue a command and two event indexes for specifying the actions to be done when the ring starts beaconing and a host has entered or exited the ring.')
tokenRingControlIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingControlIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlIfIndex.setDescription('This object contains the board interface number which is identical to the ifIndex object in the interface table of MIB-I or MIB-II.')
tokenRingControlCommandStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("none", 1), ("success", 2), ("inProgress", 3), ("notSupported", 4), ("unAbleToRun", 5), ("missingData", 6), ("aborted", 7), ("failed", 8), ("sendPending", 9)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingControlCommandStatus.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlCommandStatus.setDescription('The object contains the result of the most recent test, or the value none(1) if no tests have been requested since last reset. After the manager issues a new command, the agent will turn the status to inProgress(3) and start executing. Meanwhile, the manager polls this object until a completion status is returned. Then it proceeds to read the result.')
tokenRingControlCommandType = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("nop", 1), ("removeStation", 2), ("testStation", 3), ("requestStationAddress", 4), ("requestStationState", 5), ("requestStationAttachment", 6)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingControlCommandType.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlCommandType.setDescription('The object specifies the operation to act upon the target station requested by the manager. The agent only accepts unicast address from the management station. If non-unicast address is specified, the notSupported(4) value will be written to the tokenRingControlCommandStatus object. Note that the agent does not check the specified address with the host table. In other words, the management station can specify a non-existing MAC address in the command. The removeStation(1) command requests the agent to send the Remove Ring Station MAC frame to the target station that deinserts the target station from the ring. The testStation(2) command requests the agent to send the Transmit Forward MAC frame to the tagart station. The agent then monitors the response frames from the target station. If the expected response frame is not detected, the agent will write the failed(7) value to the tokenRingControlCommandStatus object. Otherwise, the success(2) value will be written to. The requestStationAddress(3) command requests the agent to send the Request Station Address MAC frame to the target station. This command is to update the address assignments of the target station in the host table. The requestStationState(4) command requests the agent to send the Request Station State MAC frame to the target station. This command is to update the state information of the target station in the host table. The requestStationAttachment(5) command requests the agent to send the Request Station Attachment MAC frame to the target station. This command is to update the configuration information about the host attachment unit of the target station in the host table.')
tokenRingControlCommandTargetAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 5), MacAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingControlCommandTargetAddress.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlCommandTargetAddress.setDescription('This object contains the MAC address of the target station requested by the manager. The value must be an unicast address. Multicast, functional or broadcast address is not allowed. Note that the proxy agent does not check whether the address is in the host table or not.')
tokenRingControlBeaconEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingControlBeaconEventIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlBeaconEventIndex.setDescription('The value of this object identifies the event that is configured to be generated when the ring to which this interface board is connected starts beaconing. The beacon event is generated only when the ring enters the beacon state. The beacon event will not be generated again unless the ring has exited the beacon state. The agent reports the failure domain and the beacon level in the first detected beacon frame to the management station. The information may not be the most accurate because the failure domain takes time to converge and the beacon level can be elevated. The station can poll the tokenRingNetwork table to read the current status of the ring.')
tokenRingControlConfigEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingControlConfigEventIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlConfigEventIndex.setDescription('The value of this object identifies the event that is configured to be generated when a station has entered or exited the ring that this interface board is connected to. This control table does not establish any flow control mechanism with the management station. If a group of stations enter or exit the ring at the same time and the link between the management station and the agent is slow, some events may be lost.')
tokenRingControlOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 8), OwnerString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingControlOwner.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlOwner.setDescription("An administratively assigned name for the management station that configured this entry and is therefore using the resources assigned to it. In some cases the agent itself will configure an entry. In this case, the agent is responsible for the resources and this object shall be set to a string starting with 'monitor'.")
tokenRingControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 9), EntryStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tokenRingControlStatus.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingControlStatus.setDescription('The status of this entry.')
tokenRingNetworkTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2), )
if mibBuilder.loadTexts: tokenRingNetworkTable.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkTable.setDescription('The ring level information about the token ring networks in this machine.')
tokenRingNetworkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1), ).setIndexNames((0, "Novell-LANalyzer-TR-MIB", "tokenRingNetworkIfIndex"))
if mibBuilder.loadTexts: tokenRingNetworkEntry.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkEntry.setDescription('The current state of this token ring network.')
tokenRingNetworkIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkIfIndex.setDescription('This object contains the board interface number which is identical to the ifIndex object in the interface table of MIB-I or MIB-II.')
tokenRingNetworkLastResetTime = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 2), TimeTicks().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkLastResetTime.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkLastResetTime.setDescription('This object contains the sysUpTime when the data base of this group is created or last reset.')
tokenRingNetworkRingNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4095))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkRingNumber.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkRingNumber.setDescription('The ring number of which this interface board connects to. If the ring number is not known, it should be set to zero.')
tokenRingNetworkMediaSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(4, 16))).clone(namedValues=NamedValues(("fourMbps", 4), ("sixteenMbps", 16)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkMediaSpeed.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkMediaSpeed.setDescription('The media speed of the ring. The value is either 4 or 16. Other values are not allowed.')
tokenRingNetworkBridges = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkBridges.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkBridges.setDescription('The number of bridges in the host table. The bridge is referred to the device which supports the bridge functional address.')
tokenRingNetworkActiveStations = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkActiveStations.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkActiveStations.setDescription('The number of active stations in the host table. The active stations are participating in the ring poll process.')
tokenRingNetworkInactiveStations = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkInactiveStations.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkInactiveStations.setDescription('The number of inactive stations in the host table. The inactive stations are not inserted in the ring or are not participating in the ring poll process. Note that the station became inactive before the tokenRingNetworkLastResetTime cannot be detected by the agent.')
tokenRingNetworkLastEnterMACAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 8), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkLastEnterMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkLastEnterMACAddress.setDescription('The MAC address of the token ring station that has entered this ring most recently.')
tokenRingNetworkLastExitMACAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 9), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkLastExitMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkLastExitMACAddress.setDescription('The MAC address of the token ring station that has left this ring most recently.')
tokenRingNetworkState = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("normalOperation", 1), ("ringPurgeState", 2), ("claimTokenState", 3), ("beaconState", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkState.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkState.setDescription('The state of the ring of which this entry is a part.')
tokenRingNetworkStateCause = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 11), 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))).clone(namedValues=NamedValues(("notClear", 1), ("initialState", 2), ("normalRing", 3), ("recovering", 4), ("hardError", 5), ("beaconSetRecoveryMode", 6), ("beaconRingSignalLoss", 7), ("beaconBitStreaming", 8), ("beaconFrameStreaming", 9), ("type1SoftError", 10), ("type2SoftError", 11), ("type3SoftError", 12), ("type4SoftError", 13), ("burst5Error", 14), ("lostFrameError", 15), ("corruptedToken", 16), ("lostToken", 17), ("circulatingFrame", 18), ("multipleMonitor", 19), ("lostMonitor", 20), ("frequencyError", 21))).clone('initialState')).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkStateCause.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkStateCause.setDescription('The cause of this state transition. It is required to give the best estimation of the cause. When this interface just enters the ring, this object is initialized to initiatState(2). If no hint is available, then it sets the cause to notClear(1).')
tokenRingNetworkStateSenderMACAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 12), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkStateSenderMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkStateSenderMACAddress.setDescription('The MAC address of the station which initiates the state transition.')
tokenRingNetworkStateUpstreamNeighborMACAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 13), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkStateUpstreamNeighborMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkStateUpstreamNeighborMACAddress.setDescription('The MAC address in the upstream neighbor address subvector of the MAC protocol frame. Some MAC protocol frames, such as ring purge frame, do not contain that subvector, then the MAC address contained in this object is irrelevant.')
tokenRingNetworkHostOrderChanges = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkHostOrderChanges.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkHostOrderChanges.setDescription('The count of the index in the host table that has changed since this table is created. The host table contains active and inactive stations which are arranged in sequential order. This counter roughly estimates the number of times that the hosts have changed their port connections.')
tokenRingNetworkActiveMonitorChanges = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingNetworkActiveMonitorChanges.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingNetworkActiveMonitorChanges.setDescription('The number of times that the active monitor changes station since this table is created.')
tokenRingHostTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3), )
if mibBuilder.loadTexts: tokenRingHostTable.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostTable.setDescription('A list of token ring host table entries.')
tokenRingHostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1), ).setIndexNames((0, "Novell-LANalyzer-TR-MIB", "tokenRingHostIfIndex"), (0, "Novell-LANalyzer-TR-MIB", "tokenRingHostMACAddress"))
if mibBuilder.loadTexts: tokenRingHostEntry.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostEntry.setDescription('The information of the host that has been discovered on this interface.')
tokenRingHostIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostIfIndex.setDescription('This object contains the board interface number which is identical to the ifIndex object in the interface table of MIB-I or MIB-II.')
tokenRingHostIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostIndex.setDescription('An index that defines the relative order of the hosts in this ring starting from the Active Monitor station. The active monitor station contains the value of 1. The rest of the stations are arranged in sequential order relative to the active monitor station. When a station becomes inactive, its entry is not meant to be deleted. The value in the tokenRingHostStatus is changed to inactive. The delete algorithm is implementation specific. If a station becomes active and its entry is already in the host table, then the value of the tokenRingHostStatus object is changed to active. In addition, if the relative order of the host entries has changed, it shall increment the tokenRingNetworkHostOrderChange counter in the tokenRingNetwork table by one. On the other hand, if a station becomes active and its entry is not in the host table, then a new entry must be created. The new entry is inserted right after its upstream neighbor station. The tokenRingNetworkHostOrderChange counter in the tokenRingNetwork table shall not be increment. If the active monitor changes station and the relative position of the host entries is unchanged, then the tokenRingNetworkHostOrderChange object in the tokenRingNetwork table shall not be increment.')
tokenRingHostStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("active", 1), ("inactive", 2), ("activeMonitor", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostStatus.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostStatus.setDescription('The host table contains active and inactive stations. An active station is currently participating in the ring poll process. An inactive station is vice versa. The inactive station can be a previous active station which has exited the ring, or a station which is in the ring but does not participate in the ring poll process.')
tokenRingHostLastEnterTime = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostLastEnterTime.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostLastEnterTime.setDescription('The sysUpTime that the station has entered the ring most recently or when the host entry is created.')
tokenRingHostLastExitTime = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 5), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostLastExitTime.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostLastExitTime.setDescription('The sysUpTime that the station has exited the ring most recently. When this object is created, it shall reset its value to 0. It indicates that the station has never exited since creation.')
tokenRingHostMACAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 6), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostMACAddress.setDescription("The station's MAC address to which this entry is belonged.")
tokenRingHostPhysicalDropNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 7), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostPhysicalDropNumber.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostPhysicalDropNumber.setDescription("The station's physical drop number of which this entry is belonged. If the value of this object is not assigned, then it is defaulted to four zeros.")
tokenRingHostSoftErrorReportTimerValue = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(2000)).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostSoftErrorReportTimerValue.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostSoftErrorReportTimerValue.setDescription('The time interval of the host station that the Report Soft Error MAC frame is generated. The default value is two seconds. The value is in units of millisecond.')
tokenRingHostGroupAddresses = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostGroupAddresses.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostGroupAddresses.setDescription('The group address of this station.')
tokenRingHostFunctionalAddresses = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostFunctionalAddresses.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostFunctionalAddresses.setDescription("The functional address of the station. The functional address is assigned in the bit map fashion. The first two bytes are always 'C0-00' in hex. and the first bit of the third byte is always zero. The following 31 bits are defined as follows: 00-00-00-01 : Active Monitor. 00-00-00-02 : Ring Parameter Server. 00-00-00-04 : 00-00-00-08 : Ring Error Monitor. 00-00-00-10 : Configuration Report Server. 00-00-00-20 : 00-00-00-40 : 00-00-00-80 : NetBIOS. 00-00-01-00 : Bridge. 00-00-02-00 : 00-00-04-00 : 00-00-08-00 : 00-00-10-00 : 00-00-20-00 : IBM LAN Network Manager. 00-00-40-00 : 00-00-80-00 : The bit range between 00-01-00-00 and 40-00-00-00 are not administrated by IEEE. They are defined by users. Below lists a couple of popular assignments: 00-80-00-00 : Novell NetWare. 40-00-00-00 : Apple TokenTalk Broadcast.")
tokenRingHostAuthorizedFunctionClass = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostAuthorizedFunctionClass.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostAuthorizedFunctionClass.setDescription("Source classes for which the host is enabled to transmit. Valid range is '0000 0000 0000 0000'b to '1111 1111 1111 1111'b. Each bit 0 to 15 corresponds to function class '0000'b to '1111'b. Bit value '1'b means function class is enabled. Defined function classes are the following: '00'H : Ring Station. '01'H : LLC Manager. '04'H : Configuration Report Server. '05'H : Ring Parameter Server. '06'H : Ring Error Monitor.")
tokenRingHostAuthorizedAccessPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostAuthorizedAccessPriority.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostAuthorizedAccessPriority.setDescription('Maximum allowed token priority with which the attached product is allowed to transmit.')
tokenRingHostAdapterSoftwareLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 13), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostAdapterSoftwareLevel.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostAdapterSoftwareLevel.setDescription('The adapter software level of this station. The interpretation of the value in this object is vendor specific.')
tokenRingHostAdapterStatusVector = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 14), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostAdapterStatusVector.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostAdapterStatusVector.setDescription('The adapter status vector of this station. The interpretation of the value in this object is vendor specific.')
tokenRingHostProductID = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 15), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostProductID.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostProductID.setDescription('The product identification of this station. The content is defined by vendor.')
tokenRingHostLostMonitors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostLostMonitors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostLostMonitors.setDescription('The total number of monitor errors reported by the Report Monitor Error MAC frame. It occurs when the standby monitor fails to detect a good token in 2.6 seconds, or no ring poll process is executed in 15 seconds. The standby monitor assumes that the active monitor is not present or not functioning. Lost monitor is a type 3 error and will cause the detect station to initiate the monitor contention process.')
tokenRingHostDuplicateMonitors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostDuplicateMonitors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostDuplicateMonitors.setDescription('The total number of duplicate monitor errors reported by the Report Monitor Error MAC frame. When an active monitor detects a ring purge frame or an active monitor present frame from other station, it realizes another active monitor in the ring. This station reports duplicate monitor to the Ring Error Monitor and becomes a standby monitor.')
tokenRingHostDuplicateAddresses = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostDuplicateAddresses.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostDuplicateAddresses.setDescription('The total number of duplicate address errors reported by the Report Monitor Error MAC frame. It is generated by the station when it detects other stations using its MAC address.')
tokenRingHostRingPollFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostRingPollFailures.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostRingPollFailures.setDescription('The total number of Report Ring Poll Failure MAC frames received. It is generated when the active monitor cannot see a ring poll cycle completed within a time limit. The MAC address of the last station in the incomplete ring poll cycle is saved in the tokenRingNetwork table for reference.')
tokenRingHostInLineErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostInLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostInLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingHostInternalErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostInternalErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostInternalErrors.setDescription('The total number of adapter internal errors reported to the Ring Error Monitor. Internal error indicates that a station recognizes a recoverable internal error. Internal error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingHostInBurstErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostInBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostInBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and will casue the active monitor purging the ring.')
tokenRingHostACErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostACErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostACErrors.setDescription('The total number of AC errors reported to the Ring Error Monitor. AC error indicates that a station cannot interpret the address recognition bit or the frame copied bit. AC error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingHostAbortDelimiters = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostAbortDelimiters.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostAbortDelimiters.setDescription('The number of abort delimiters reported to the Ring Error Monitor. Abort delimiter indicates that a station aborts a transmission. Abort delimiter is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingHostLostFrameErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostLostFrameErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostLostFrameErrors.setDescription('The number of lost frame errors reported to the Ring Error Monitor. Lost frame error indicates that the end delimiter of a frame is lost in the network. Lost frame error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
tokenRingHostReceiveCongestions = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostReceiveCongestions.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostReceiveCongestions.setDescription('The number of receive congestions reported to the Ring Error Monitor. Receive congestion error indicates that a station recognizes a frame addressed to its specific address, but has no available buffer space. Receive congestion error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingHostFrameCopiedErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostFrameCopiedErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostFrameCopiedErrors.setDescription('The number of frame copied errors reported to the Ring Error Monitor. Frame copied error indicates that a station recognizes a frame addressed to its specific address and detects that the A bits in Frame Status byte are set to 1. It implies either a line hit or duplicate address. Frame copied error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingHostFrequencyErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostFrequencyErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostFrequencyErrors.setDescription('The number of frequency errors reported to the Ring Error Monitor. Frequency error indicates that a station detects that the frequency of the incoming signal differs by more than the standard specified margin. Frequency error is non-isolated error. It is a type 3 error and will cause the detect station initiating monitor contention process.')
tokenRingHostTokenErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostTokenErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostTokenErrors.setDescription('The total number of token errors reported to the Ring Error Monitor. Token error indicates that the Active Monitor station recognizes an error condition that needs a token transmitted. Token error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
tokenRingHostOutLineErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostOutLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostOutLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingHostOutBurstErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostOutBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostOutBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and will casue the active monitor purging the ring.')
tokenRingHostInBeacons = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostInBeacons.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostInBeacons.setDescription('')
tokenRingHostOutBeacons = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostOutBeacons.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostOutBeacons.setDescription('')
tokenRingHostInsertions = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 34), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingHostInsertions.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingHostInsertions.setDescription('')
tokenRingOrderTable = MibTable((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4), )
if mibBuilder.loadTexts: tokenRingOrderTable.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderTable.setDescription('A list of token ring host table entries.')
tokenRingOrderEntry = MibTableRow((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1), ).setIndexNames((0, "Novell-LANalyzer-TR-MIB", "tokenRingOrderIfIndex"), (0, "Novell-LANalyzer-TR-MIB", "tokenRingOrderIndex"))
if mibBuilder.loadTexts: tokenRingOrderEntry.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderEntry.setDescription('The information of the host that has been discovered on this interface.')
tokenRingOrderIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderIfIndex.setDescription('This object contains the board interface number which is identical to the ifIndex object in the interface table of MIB-I or MIB-II.')
tokenRingOrderIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderIndex.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderIndex.setDescription('An index that defines the relative order of the hosts in this ring starting from the Active Monitor station. The active monitor station contains the value of 1. The rest of the stations are arranged in sequential order relative to the active monitor station. When a station becomes inactive, its entry is not meant to be deleted. The value in the tokenRingOrderStatus is changed to inactive. The delete algorithm is implementation specific. If a station becomes active and its entry is already in the host table, then the value of the tokenRingOrderStatus object is changed to active. In addition, if the relative order of the host entries has changed, it shall increment the tokenRingNetworkHostOrderChange counter in the tokenRingNetwork table by one. On the other hand, if a station becomes active and its entry is not in the host table, then a new entry must be created. The new entry is inserted right after its upstream neighbor station. The tokenRingNetworkHostOrderChange counter in the tokenRingNetwork table shall not be increment. If the active monitor changes station and the relative position of the host entries is unchanged, then the tokenRingNetworkHostOrderChange object in the tokenRingNetwork table shall not be increment.')
tokenRingOrderStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("active", 1), ("inactive", 2), ("activeMonitor", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderStatus.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderStatus.setDescription('The host table contains active and inactive stations. An active station is currently participating in the ring poll process. An inactive station is vice versa. The inactive station can be a previous active station which has exited the ring, or a station which is in the ring but does not participate in the ring poll process.')
tokenRingOrderLastEnterTime = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderLastEnterTime.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderLastEnterTime.setDescription('The sysUpTime that the station has entered the ring most recently or when the host entry is created.')
tokenRingOrderLastExitTime = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 5), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderLastExitTime.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderLastExitTime.setDescription('The sysUpTime that the station has exited the ring most recently. When this object is created, it shall reset its value to 0. It indicates that the station has never exited since creation.')
tokenRingOrderMACAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 6), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderMACAddress.setDescription("The station's MAC address to which this entry is belonged.")
tokenRingOrderPhysicalDropNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 7), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderPhysicalDropNumber.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderPhysicalDropNumber.setDescription("The station's physical drop number of which this entry is belonged. If the value of this object is not assigned, then it is defaulted to four zeros.")
tokenRingOrderSoftErrorReportTimerValue = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(2000)).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderSoftErrorReportTimerValue.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderSoftErrorReportTimerValue.setDescription('The time interval of the host station that the Report Soft Error MAC frame is generated. The default value is two seconds. The value is in units of millisecond.')
tokenRingOrderGroupAddresses = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderGroupAddresses.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderGroupAddresses.setDescription('The group address of this station.')
tokenRingOrderFunctionalAddresses = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderFunctionalAddresses.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderFunctionalAddresses.setDescription("The functional address of the station. The functional address is assigned in the bit map fashion. The first two bytes are always 'C0-00' in hex. and the first bit of the third byte is always zero. The following 31 bits are defined as follows: 00-00-00-01 : Active Monitor. 00-00-00-02 : Ring Parameter Server. 00-00-00-04 : 00-00-00-08 : Ring Error Monitor. 00-00-00-10 : Configuration Report Server. 00-00-00-20 : 00-00-00-40 : 00-00-00-80 : NetBIOS. 00-00-01-00 : Bridge. 00-00-02-00 : 00-00-04-00 : 00-00-08-00 : 00-00-10-00 : 00-00-20-00 : IBM LAN Network Manager. 00-00-40-00 : 00-00-80-00 : The bit range between 00-01-00-00 and 40-00-00-00 are not administrated by IEEE. They are defined by users. Below lists a couple of popular assignments: 00-80-00-00 : Novell NetWare. 40-00-00-00 : Apple TokenTalk Broadcast.")
tokenRingOrderAuthorizedFunctionClass = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderAuthorizedFunctionClass.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderAuthorizedFunctionClass.setDescription("Source classes for which the host is enabled to transmit. Valid range is '0000 0000 0000 0000'b to '1111 1111 1111 1111'b. Each bit 0 to 15 corresponds to function class '0000'b to '1111'b. Bit value '1'b means function class is enabled. Defined function classes are the following: '00'H : Ring Station. '01'H : LLC Manager. '04'H : Configuration Report Server. '05'H : Ring Parameter Server. '06'H : Ring Error Monitor.")
tokenRingOrderAuthorizedAccessPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderAuthorizedAccessPriority.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderAuthorizedAccessPriority.setDescription('Maximum allowed token priority with which the attached product is allowed to transmit.')
tokenRingOrderAdapterSoftwareLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 13), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderAdapterSoftwareLevel.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderAdapterSoftwareLevel.setDescription('The adapter software level of this station. The interpretation of the value in this object is vendor specific.')
tokenRingOrderAdapterStatusVector = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 14), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderAdapterStatusVector.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderAdapterStatusVector.setDescription('The adapter status vector of this station. The interpretation of the value in this object is vendor specific.')
tokenRingOrderProductID = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 15), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderProductID.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderProductID.setDescription('The product identification of this station. The content is defined by vendor.')
tokenRingOrderLostMonitors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderLostMonitors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderLostMonitors.setDescription('The total number of monitor errors reported by the Report Monitor Error MAC frame. It occurs when the standby monitor fails to detect a good token in 2.6 seconds, or no ring poll process is executed in 15 seconds. The standby monitor assumes that the active monitor is not present or not functioning. Lost monitor is a type 3 error and will cause the detect station to initiate the monitor contention process.')
tokenRingOrderDuplicateMonitors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderDuplicateMonitors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderDuplicateMonitors.setDescription('The total number of duplicate monitor errors reported by the Report Monitor Error MAC frame. When an active monitor detects a ring purge frame or an active monitor present frame from other station, it realizes another active monitor in the ring. This station reports duplicate monitor to the Ring Error Monitor and becomes a standby monitor.')
tokenRingOrderDuplicateAddresses = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderDuplicateAddresses.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderDuplicateAddresses.setDescription('The total number of duplicate address errors reported by the Report Monitor Error MAC frame. It is generated by the station when it detects other stations using its MAC address.')
tokenRingOrderRingPollFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderRingPollFailures.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderRingPollFailures.setDescription('The total number of Report Ring Poll Failure MAC frames received. It is generated when the active monitor cannot see a ring poll cycle completed within a time limit. The MAC address of the last station in the incomplete ring poll cycle is saved in the tokenRingNetwork table for reference.')
tokenRingOrderInLineErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderInLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderInLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingOrderInternalErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderInternalErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderInternalErrors.setDescription('The total number of adapter internal errors reported to the Ring Error Monitor. Internal error indicates that a station recognizes a recoverable internal error. Internal error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingOrderInBurstErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderInBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderInBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and will casue the active monitor purging the ring.')
tokenRingOrderACErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderACErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderACErrors.setDescription('The total number of AC errors reported to the Ring Error Monitor. AC error indicates that a station cannot interpret the address recognition bit or the frame copied bit. AC error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingOrderAbortDelimiters = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderAbortDelimiters.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderAbortDelimiters.setDescription('The number of abort delimiters reported to the Ring Error Monitor. Abort delimiter indicates that a station aborts a transmission. Abort delimiter is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingOrderLostFrameErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderLostFrameErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderLostFrameErrors.setDescription('The number of lost frame errors reported to the Ring Error Monitor. Lost frame error indicates that the end delimiter of a frame is lost in the network. Lost frame error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
tokenRingOrderReceiveCongestions = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderReceiveCongestions.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderReceiveCongestions.setDescription('The number of receive congestions reported to the Ring Error Monitor. Receive congestion error indicates that a station recognizes a frame addressed to its specific address, but has no available buffer space. Receive congestion error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingOrderFrameCopiedErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderFrameCopiedErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderFrameCopiedErrors.setDescription('The number of frame copied errors reported to the Ring Error Monitor. Frame copied error indicates that a station recognizes a frame addressed to its specific address and detects that the A bits in Frame Status byte are set to 1. It implies either a line hit or duplicate address. Frame copied error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingOrderFrequencyErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderFrequencyErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderFrequencyErrors.setDescription('The number of frequency errors reported to the Ring Error Monitor. Frequency error indicates that a station detects that the frequency of the incoming signal differs by more than the standard specified margin. Frequency error is non-isolated error. It is a type 3 error and will cause the detect station initiating monitor contention process.')
tokenRingOrderTokenErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderTokenErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderTokenErrors.setDescription('The total number of token errors reported to the Ring Error Monitor. Token error indicates that the Active Monitor station recognizes an error condition that needs a token transmitted. Token error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
tokenRingOrderOutLineErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderOutLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderOutLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
tokenRingOrderOutBurstErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderOutBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderOutBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and will casue the active monitor purging the ring.')
tokenRingOrderInBeacons = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderInBeacons.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderInBeacons.setDescription('')
tokenRingOrderOutBeacons = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderOutBeacons.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderOutBeacons.setDescription('')
tokenRingOrderInsertions = MibTableColumn((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 34), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tokenRingOrderInsertions.setStatus('mandatory')
if mibBuilder.loadTexts: tokenRingOrderInsertions.setDescription('')
tokenRingBeaconing = NotificationType((1, 3, 6, 1, 4, 1, 23, 2, 15) + (0,4)).setObjects(("Novell-LANalyzer-TR-MIB", "tokenRingNetworkRingNumber"), ("Novell-LANalyzer-TR-MIB", "tokenRingNetworkState"), ("Novell-LANalyzer-TR-MIB", "tokenRingNetworkStateCause"), ("Novell-LANalyzer-TR-MIB", "tokenRingNetworkStateSenderMACAddress"), ("Novell-LANalyzer-TR-MIB", "tokenRingNetworkStateUpstreamNeighborMACAddress"))
if mibBuilder.loadTexts: tokenRingBeaconing.setDescription('The SNMP trap that is generated when the token ring network starts beaconing.')
tokenRingConfigurationChange = NotificationType((1, 3, 6, 1, 4, 1, 23, 2, 15) + (0,5)).setObjects(("Novell-LANalyzer-TR-MIB", "tokenRingNetworkRingNumber"), ("Novell-LANalyzer-TR-MIB", "tokenRingHostMACAddress"), ("Novell-LANalyzer-TR-MIB", "tokenRingHostPhysicalDropNumber"), ("Novell-LANalyzer-TR-MIB", "tokenRingHostStatus"))
if mibBuilder.loadTexts: tokenRingConfigurationChange.setDescription('The SNMP trap that is generated when the a host has entered or exited the token ring network.')
mibBuilder.exportSymbols("Novell-LANalyzer-TR-MIB", tokenRingNetworkIfIndex=tokenRingNetworkIfIndex, tokenRingOrderSoftErrorReportTimerValue=tokenRingOrderSoftErrorReportTimerValue, tokenRingOrderAbortDelimiters=tokenRingOrderAbortDelimiters, tokenRingHistoryTable=tokenRingHistoryTable, tokenRingHostDuplicateMonitors=tokenRingHostDuplicateMonitors, tokenRingHistoryTokenErrors=tokenRingHistoryTokenErrors, tokenRingHostLostMonitors=tokenRingHostLostMonitors, tokenRingOrderAuthorizedAccessPriority=tokenRingOrderAuthorizedAccessPriority, tokenRingHistoryUtilization=tokenRingHistoryUtilization, tokenRingHostAuthorizedFunctionClass=tokenRingHostAuthorizedFunctionClass, tokenRingOrderLostFrameErrors=tokenRingOrderLostFrameErrors, tokenRingHostTokenErrors=tokenRingHostTokenErrors, tokenRingControlBeaconEventIndex=tokenRingControlBeaconEventIndex, tokenRingHostRingPollFailures=tokenRingHostRingPollFailures, tokenRingHistoryLostFrameErrors=tokenRingHistoryLostFrameErrors, tokenRingHistoryFrequencyErrors=tokenRingHistoryFrequencyErrors, tokenRingHostReceiveCongestions=tokenRingHostReceiveCongestions, tokenRingStatsDataPkts256to511Octets=tokenRingStatsDataPkts256to511Octets, tokenRingStatsDataPktsUndersizePkts=tokenRingStatsDataPktsUndersizePkts, tokenRingNetworkLastResetTime=tokenRingNetworkLastResetTime, tokenRingHostOutBeacons=tokenRingHostOutBeacons, tokenRingHostLastEnterTime=tokenRingHostLastEnterTime, tokenRingNetworkInactiveStations=tokenRingNetworkInactiveStations, tokenRingStatsDataPkts=tokenRingStatsDataPkts, tokenRingOrderInternalErrors=tokenRingOrderInternalErrors, tokenRingHostTable=tokenRingHostTable, tokenRingHistory=tokenRingHistory, tokenRingHistoryDuplicateMonitors=tokenRingHistoryDuplicateMonitors, tokenRingControlEntry=tokenRingControlEntry, tokenRingStatsDataSource=tokenRingStatsDataSource, tokenRingHistoryMACPkts=tokenRingHistoryMACPkts, tokenRingNetworkMediaSpeed=tokenRingNetworkMediaSpeed, tokenRingNetworkState=tokenRingNetworkState, tokenRingHostDuplicateAddresses=tokenRingHostDuplicateAddresses, tokenRingOrderOutBurstErrors=tokenRingOrderOutBurstErrors, tokenRingHistoryIndex=tokenRingHistoryIndex, tokenRingStatsDataPkts2048to4608Octets=tokenRingStatsDataPkts2048to4608Octets, tokenRingStatistics=tokenRingStatistics, tokenRingNetworkActiveMonitorChanges=tokenRingNetworkActiveMonitorChanges, tokenRingStatsBurstErrors=tokenRingStatsBurstErrors, tokenRingControlCommandType=tokenRingControlCommandType, tokenRingHostInBurstErrors=tokenRingHostInBurstErrors, tokenRingOrderDuplicateAddresses=tokenRingOrderDuplicateAddresses, tokenRingOrderOutLineErrors=tokenRingOrderOutLineErrors, MacAddress=MacAddress, tokenRingStatsRingPollFailures=tokenRingStatsRingPollFailures, tokenRingStatsTokenErrors=tokenRingStatsTokenErrors, tokenRingHistoryRingPurges=tokenRingHistoryRingPurges, tokenRingStatsFrequencyErrors=tokenRingStatsFrequencyErrors, tokenRingOrderIndex=tokenRingOrderIndex, tokenRingHistoryInternalErrors=tokenRingHistoryInternalErrors, tokenRingHostInternalErrors=tokenRingHostInternalErrors, tokenRingStatsDataPkts128to255Octets=tokenRingStatsDataPkts128to255Octets, tokenRingOrderTable=tokenRingOrderTable, tokenRingOrderProductID=tokenRingOrderProductID, tokenRingHostPhysicalDropNumber=tokenRingHostPhysicalDropNumber, tokenRingStatsDuplicateMonitors=tokenRingStatsDuplicateMonitors, tokenRingNetworkStateUpstreamNeighborMACAddress=tokenRingNetworkStateUpstreamNeighborMACAddress, tokenRingOrderRingPollFailures=tokenRingOrderRingPollFailures, tokenRingStatsIndex=tokenRingStatsIndex, tokenRingOrderIfIndex=tokenRingOrderIfIndex, tokenRingOrderInBeacons=tokenRingOrderInBeacons, tokenRingOrderPhysicalDropNumber=tokenRingOrderPhysicalDropNumber, tokenRingHistoryStartIndex=tokenRingHistoryStartIndex, tokenRingOrderAdapterSoftwareLevel=tokenRingOrderAdapterSoftwareLevel, tokenRingHistoryMACOctets=tokenRingHistoryMACOctets, tokenRingOrderInsertions=tokenRingOrderInsertions, tokenRingOrderFrameCopiedErrors=tokenRingOrderFrameCopiedErrors, tokenRingHistoryReceiveCongestions=tokenRingHistoryReceiveCongestions, tokenRingNetworkStateCause=tokenRingNetworkStateCause, tokenRingStatsMACPkts=tokenRingStatsMACPkts, tokenRingHistoryRingPollFailures=tokenRingHistoryRingPollFailures, tokenRingStatsDataPkts512to1023Octets=tokenRingStatsDataPkts512to1023Octets, tokenRingHistoryBroadcastDataPkts=tokenRingHistoryBroadcastDataPkts, tokenRingHostInLineErrors=tokenRingHostInLineErrors, tokenRingOrderStatus=tokenRingOrderStatus, tokenRingOrderACErrors=tokenRingOrderACErrors, tokenRingHostIndex=tokenRingHostIndex, tokenRingStatsMACOctets=tokenRingStatsMACOctets, tokenRingOrderTokenErrors=tokenRingOrderTokenErrors, tokenRingNetworkStateSenderMACAddress=tokenRingNetworkStateSenderMACAddress, tokenRingHistoryACErrors=tokenRingHistoryACErrors, tokenRingHostFunctionalAddresses=tokenRingHostFunctionalAddresses, tokenRingStatsEntry=tokenRingStatsEntry, tokenRingHostInBeacons=tokenRingHostInBeacons, tokenRingStatsFrameCopiedErrors=tokenRingStatsFrameCopiedErrors, tokenRingHistoryLostMonitors=tokenRingHistoryLostMonitors, tokenRingStatsInternalErrors=tokenRingStatsInternalErrors, tokenRingControlIndex=tokenRingControlIndex, tokenRingControlIfIndex=tokenRingControlIfIndex, tokenRingHistoryAbortDelimiters=tokenRingHistoryAbortDelimiters, tokenRingOrderInLineErrors=tokenRingOrderInLineErrors, tokenRingHostStatus=tokenRingHostStatus, tokenRingHistoryEntry=tokenRingHistoryEntry, tokenRingControlTable=tokenRingControlTable, tokenRingControlOwner=tokenRingControlOwner, tokenRingStatsDuplicateAddresses=tokenRingStatsDuplicateAddresses, tokenRingHistoryDataOctets=tokenRingHistoryDataOctets, tokenRingNetworkLastEnterMACAddress=tokenRingNetworkLastEnterMACAddress, tokenRingHistoryLineErrors=tokenRingHistoryLineErrors, novell=novell, tokenRingHostFrameCopiedErrors=tokenRingHostFrameCopiedErrors, tokenRingOrderFrequencyErrors=tokenRingOrderFrequencyErrors, tokenRingNetworkEntry=tokenRingNetworkEntry, tokenRingNetworkLastExitMACAddress=tokenRingNetworkLastExitMACAddress, tokenRingStatsDataPktsMoreThan18000Octets=tokenRingStatsDataPktsMoreThan18000Octets, tokenRingOrderMACAddress=tokenRingOrderMACAddress, tokenRingOrderDuplicateMonitors=tokenRingOrderDuplicateMonitors, tokenRingStatsOwner=tokenRingStatsOwner, ringrmon_mib=ringrmon_mib, tokenRingHistoryBurstErrors=tokenRingHistoryBurstErrors, tokenRingHistoryDuplicateAddresses=tokenRingHistoryDuplicateAddresses, tokenRingStatsAbortDelimiters=tokenRingStatsAbortDelimiters, tokenRingOrderGroupAddresses=tokenRingOrderGroupAddresses, tokenRingStatsLineErrors=tokenRingStatsLineErrors, tokenRingOrderAdapterStatusVector=tokenRingOrderAdapterStatusVector, tokenRingHistoryMulticastDataPkts=tokenRingHistoryMulticastDataPkts, tokenRingHostLastExitTime=tokenRingHostLastExitTime, tokenRingOrderInBurstErrors=tokenRingOrderInBurstErrors, tokenRingStatsMulticastDataPkts=tokenRingStatsMulticastDataPkts, tokenRingStatsMonitorContentions=tokenRingStatsMonitorContentions, tokenRingOrderOutBeacons=tokenRingOrderOutBeacons, tokenRingHistoryIntervalStart=tokenRingHistoryIntervalStart, tokenRingHostAdapterStatusVector=tokenRingHostAdapterStatusVector, tokenRingHistoryFrameCopiedErrors=tokenRingHistoryFrameCopiedErrors, productType=productType, tokenRingStatsBroadcastDataPkts=tokenRingStatsBroadcastDataPkts, mibDoc=mibDoc, tokenRingStatsDataPkts1024to2047Octets=tokenRingStatsDataPkts1024to2047Octets, tokenRingStatsACErrors=tokenRingStatsACErrors, tokenRingHostEntry=tokenRingHostEntry, tokenRingControlStatus=tokenRingControlStatus, tokenRingHostMACAddress=tokenRingHostMACAddress, tokenRingBeaconing=tokenRingBeaconing, tokenRingHostAdapterSoftwareLevel=tokenRingHostAdapterSoftwareLevel, tokenRingHistoryDropEvents=tokenRingHistoryDropEvents, tokenRingHostOutLineErrors=tokenRingHostOutLineErrors, tokenRingStatsDataOctets=tokenRingStatsDataOctets, tokenRingOrderFunctionalAddresses=tokenRingOrderFunctionalAddresses, tokenRingStatsDataPkts64to127Octets=tokenRingStatsDataPkts64to127Octets, tokenRingStatsRingPurges=tokenRingStatsRingPurges, tokenRingStatsDataPkts4609to18000Octets=tokenRingStatsDataPkts4609to18000Octets, tokenRingStatsDataPkts18to63Octets=tokenRingStatsDataPkts18to63Octets, tokenRingStatsReceiveCongestions=tokenRingStatsReceiveCongestions, tokenRingHostAbortDelimiters=tokenRingHostAbortDelimiters, tokenRingStatsStatus=tokenRingStatsStatus, tokenRingControlCommandStatus=tokenRingControlCommandStatus, tokenRingOrderLostMonitors=tokenRingOrderLostMonitors, tokenRingConfigurationChange=tokenRingConfigurationChange, tokenRingNetworkActiveStations=tokenRingNetworkActiveStations, tokenRingOrderReceiveCongestions=tokenRingOrderReceiveCongestions, tokenRingControlConfigEventIndex=tokenRingControlConfigEventIndex, tokenRingOrderAuthorizedFunctionClass=tokenRingOrderAuthorizedFunctionClass, tokenRingNetworkTable=tokenRingNetworkTable, tokenRingHostACErrors=tokenRingHostACErrors, tokenRingStatsTable=tokenRingStatsTable, tokenRingNetworkHostOrderChanges=tokenRingNetworkHostOrderChanges, tokenRingHostSoftErrorReportTimerValue=tokenRingHostSoftErrorReportTimerValue, tokenRingHostProductID=tokenRingHostProductID, tokenRingControlCommandTargetAddress=tokenRingControlCommandTargetAddress, tokenRingHostOutBurstErrors=tokenRingHostOutBurstErrors, tokenRingHostInsertions=tokenRingHostInsertions, tokenRingHostLostFrameErrors=tokenRingHostLostFrameErrors, tokenRingHistoryBeacons=tokenRingHistoryBeacons, tokenRingOrderLastExitTime=tokenRingOrderLastExitTime, tokenRing=tokenRing, tokenRingHostIfIndex=tokenRingHostIfIndex, tokenRingStatsDropEvents=tokenRingStatsDropEvents, tokenRingNetworkRingNumber=tokenRingNetworkRingNumber, tokenRingStatsBeacons=tokenRingStatsBeacons, tokenRingStatsLostFrameErrors=tokenRingStatsLostFrameErrors, tokenRingHostAuthorizedAccessPriority=tokenRingHostAuthorizedAccessPriority, tokenRingHistoryDataPkts=tokenRingHistoryDataPkts, tokenRingHistoryMonitorContentions=tokenRingHistoryMonitorContentions, tokenRingOrderLastEnterTime=tokenRingOrderLastEnterTime, tokenRingHostGroupAddresses=tokenRingHostGroupAddresses, tokenRingStatsLostMonitors=tokenRingStatsLostMonitors, tokenRingHostFrequencyErrors=tokenRingHostFrequencyErrors, tokenRingOrderEntry=tokenRingOrderEntry, tokenRingNetworkBridges=tokenRingNetworkBridges)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_range_constraint, single_value_constraint, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint')
(entry_status, owner_string) = mibBuilder.importSymbols('RFC1271-MIB', 'EntryStatus', 'OwnerString')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(enterprises, iso, time_ticks, counter32, bits, counter64, object_identity, mib_identifier, integer32, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, module_identity, ip_address, notification_type, notification_type) = mibBuilder.importSymbols('SNMPv2-SMI', 'enterprises', 'iso', 'TimeTicks', 'Counter32', 'Bits', 'Counter64', 'ObjectIdentity', 'MibIdentifier', 'Integer32', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'ModuleIdentity', 'IpAddress', 'NotificationType', 'NotificationType')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
class Macaddress(OctetString):
subtype_spec = OctetString.subtypeSpec + value_size_constraint(6, 6)
fixed_length = 6
novell = mib_identifier((1, 3, 6, 1, 4, 1, 23))
product_type = mib_identifier((1, 3, 6, 1, 4, 1, 23, 1))
mib_doc = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2))
ringrmon_mib = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 15)).setLabel('ringrmon-mib')
token_ring_statistics = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 15, 1))
token_ring_history = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 15, 2))
token_ring = mib_identifier((1, 3, 6, 1, 4, 1, 23, 2, 15, 3))
token_ring_stats_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1))
if mibBuilder.loadTexts:
tokenRingStatsTable.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsTable.setDescription('A list of token ring statistics entries.')
token_ring_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1)).setIndexNames((0, 'Novell-LANalyzer-TR-MIB', 'tokenRingStatsIndex'))
if mibBuilder.loadTexts:
tokenRingStatsEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsEntry.setDescription('A collection of statistics kept for a particular token ring interface.')
token_ring_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsIndex.setDescription('The value of this object uniquely identifies this tokenRingStat entry.')
token_ring_stats_data_source = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 2), object_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingStatsDataSource.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataSource.setDescription('This object contains the identifier for the source of the data that this tokenRingStats entry is set up to analyze. The identifier is defined to contain the name of the instance that this entry receives data from. This object may not be modified unless the associated tokenRingStatsEntry object is equal to invalid(4).')
token_ring_stats_drop_events = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDropEvents.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDropEvents.setDescription('The total number of events in which packets are dropped by the probe due to lack of resources. Note that this is not necessarily the number of packets dropped, it is just the number of times this condition has been detected.')
token_ring_stats_data_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataOctets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataOctets.setDescription('The total number of good NON-MAC octets received on the network, excluding framing bits but including FCS octets. In contrast to etherStatsOctets, octets from bad packets are not counted.')
token_ring_stats_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts.setDescription('The total number of good NON-MAC packets received on the network. In contrast to etherStatsPkts, bad packets are not counted.')
token_ring_stats_broadcast_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsBroadcastDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsBroadcastDataPkts.setDescription('The total number of good NON-MAC packets received that were direct to the broadcast address. Note that bad broadcast packets are not counted.')
token_ring_stats_multicast_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsMulticastDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsMulticastDataPkts.setDescription('The total number of good NON-MAC packets received that were directed to a local or global multicast or functional address. Note that bad mutlicast packets are not counted.')
token_ring_stats_mac_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsMACOctets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsMACOctets.setDescription('The total number of good MAC octets received on the network, excluding framing bits but including FCS octets. Same as tokenRingStatsDataOctets, octets from bad MAC packets are not counted.')
token_ring_stats_mac_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsMACPkts.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsMACPkts.setDescription('The total number of good MAC packets received on the network, including unicast, multicast and broadcast MAC packets. Same as tokenRingStatsDataPkts, bad MAC packets are not counted.')
token_ring_stats_ring_purges = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsRingPurges.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsRingPurges.setDescription('The total number of times that the ring enters the ring purge state from normal ring state. Ring purge occurs when the active monitor station detects a type 2 soft errors. The ring purge state that comes from the monitor contention or beacon state is not counted.')
token_ring_stats_monitor_contentions = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsMonitorContentions.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsMonitorContentions.setDescription('The total number of times that the ring enters the monitor contention state from normal ring state or ring purge state. Monitor contention occurs when a type 3 soft error occurs in the network. The monitor contention state that comes from the beacon state is not counted.')
token_ring_stats_beacons = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsBeacons.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsBeacons.setDescription('The total number of times that the ring enters the beaconing state. Beaconing occurs when a type 4 soft error or hard error occurs in the network.')
token_ring_stats_lost_monitors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsLostMonitors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsLostMonitors.setDescription('The total number of monitor errors reported by the Report Monitor Error MAC frame. It occurs when the standby monitor fails to detect a good token in 2.6 seconds, or no ring poll process is executed in 15 seconds. The standby monitor assumes that the active monitor is not present or not functioning. Lost monitor is a type 3 error and will cause the detect station to initiate the monitor contention process.')
token_ring_stats_duplicate_monitors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDuplicateMonitors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDuplicateMonitors.setDescription('The total number of duplicate monitor errors reported by the Report Monitor Error MAC frame. When an active monitor detects a ring purge frame or an active monitor present frame from other station, it realizes another active monitor in the ring. This station reports duplicate monitor to the Ring Error Monitor and becomes a standby monitor.')
token_ring_stats_duplicate_addresses = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDuplicateAddresses.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDuplicateAddresses.setDescription('The total number of duplicate address errors reported by the Report Monitor Error MAC frame. It is generated by the station when it detects other stations using its own address.')
token_ring_stats_ring_poll_failures = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsRingPollFailures.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsRingPollFailures.setDescription('The total number of Report Ring Poll Failure MAC frames received. It is generated when the active monitor cannot see a ring poll cycle completed within a time limit. The MAC address of the last station in the incomplete ring poll cycle is saved in the tokenRingNetwork table for reference.')
token_ring_stats_line_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_stats_internal_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsInternalErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsInternalErrors.setDescription('The total number of adapter internal errors reported to the Ring Error Monitor. Internal error indicates that a station recognizes a recoverable internal error. Internal error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_stats_burst_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and the active monitor will purge the ring.')
token_ring_stats_ac_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsACErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsACErrors.setDescription('The total number of AC errors reported to the Ring Error Monitor. AC error indicates that a station cannot interpret the address recognition bit or the frame copied bit. AC error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_stats_abort_delimiters = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsAbortDelimiters.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsAbortDelimiters.setDescription('The total number of abort delimiters reported to the Ring Error Monitor. Abort delimiter indicates that a station aborts a transmission. Abort delimiter is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_stats_lost_frame_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsLostFrameErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsLostFrameErrors.setDescription('The total number of lost frame errors reported to the Ring Error Monitor. Lost frame error indicates that the end delimiter of a frame is lost in the network. Lost frame error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
token_ring_stats_receive_congestions = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsReceiveCongestions.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsReceiveCongestions.setDescription('The total number of receive congestion errors reported to the Ring Error Monitor. Receive congestion error indicates that a station recognizes a frame addressed to its specific address, but has no available buffer space. Receive congestion error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_stats_frame_copied_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsFrameCopiedErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsFrameCopiedErrors.setDescription('The total number of frame copied errors reported to the Ring Error Monitor. Frame copied error indicates that a station recognizes a frame addressed to its specific address and detects that the FS field A bits are set to 1. It implies either a line hit or duplicate address. Frame copied error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_stats_frequency_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsFrequencyErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsFrequencyErrors.setDescription('The total number of frequency errors reported to the Ring Error Monitor. Frequency error indicates that a station detects that the frequency of the incoming signal differs by more than the standard specified margin. Frequency error is non-isolated error. It is a type 3 error and will cause the detect station initiating monitor contention process.')
token_ring_stats_token_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsTokenErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsTokenErrors.setDescription('The total number of token errors reported to the Ring Error Monitor. Token error indicates that the Active Monitor station recognizes an error condition that needs a token transmitted. Token error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
token_ring_stats_data_pkts_undersize_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPktsUndersizePkts.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPktsUndersizePkts.setDescription('The total number of packets received that were between 0 and 17 octets in length inclusive, excluding framing bits but including FCS octets. Packets in this category are too short. It is the counterpart of runt packets in Ethernet RMON.')
token_ring_stats_data_pkts18to63_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts18to63Octets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts18to63Octets.setDescription('The total number of data packets received that were between 18 and 63 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts64Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
token_ring_stats_data_pkts64to127_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts64to127Octets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts64to127Octets.setDescription('The total number of data packets received that were between 64 and 127 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts65to127Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
token_ring_stats_data_pkts128to255_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts128to255Octets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts128to255Octets.setDescription('The total number of data packets received that were between 128 and 255 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts128to255Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
token_ring_stats_data_pkts256to511_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts256to511Octets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts256to511Octets.setDescription('The total number of data packets received that were between 256 and 511 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts256to511Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
token_ring_stats_data_pkts512to1023_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts512to1023Octets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts512to1023Octets.setDescription('The total number of data packets received that were between 512 and 1023 octets in length inclusive, excluding framing bits but including FCS octets. It is the counterpart of etherStatsPkts512to1023Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
token_ring_stats_data_pkts1024to2047_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 33), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts1024to2047Octets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts1024to2047Octets.setDescription('The total number of data packets received that were between 1024 and 2047 octets in length inclusive, excluding framing bits but including FCS octets. It is the superset of etherStatsPkts1024to1518Octets in Ethernet RMON. In contrast to Ethernet, error packets are not counted.')
token_ring_stats_data_pkts2048to4608_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 34), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts2048to4608Octets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts2048to4608Octets.setDescription('The total number of data packets (excluding error packets) received that were between 2048 and 4608 octets in length inclusive, excluding framing bits but including FCS octets. Note that error packets in this length range is not counted.')
token_ring_stats_data_pkts4609to18000_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 35), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts4609to18000Octets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPkts4609to18000Octets.setDescription('The total number of data packets (excluding error packets) received that were between 4609 and 18000 octets in length inclusive, excluding framing bits but including FCS octets. Note that error packets in this length range is not counted.')
token_ring_stats_data_pkts_more_than18000_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 36), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingStatsDataPktsMoreThan18000Octets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsDataPktsMoreThan18000Octets.setDescription('The total number of data packets (excluding error packets) received that were more than 18000 in length, excluding framing bits but including FCS octets. Note that error packets in this length range is not counted.')
token_ring_stats_owner = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 37), owner_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingStatsOwner.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsOwner.setDescription("An administratively assigned name for the management station that configured this entry and is therefore using the resources assigned to it. This object contains a NVT octet string up to 127 characters. In some cases the agent itself will configure an entry. In this case, the agent is responsible for the resources and this object shall be set to a string starting with 'monitor'.")
token_ring_stats_status = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 1, 1, 1, 38), entry_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingStatsStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingStatsStatus.setDescription('The status of this tokenRingStats entry.')
token_ring_history_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1))
if mibBuilder.loadTexts:
tokenRingHistoryTable.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryTable.setDescription('A list of token ring statistics entries.')
token_ring_history_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1)).setIndexNames((0, 'Novell-LANalyzer-TR-MIB', 'tokenRingHistoryIndex'), (0, 'Novell-LANalyzer-TR-MIB', 'tokenRingHistoryStartIndex'))
if mibBuilder.loadTexts:
tokenRingHistoryEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryEntry.setDescription('A collection of history statistics kept for a particular token ring interface.')
token_ring_history_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryIndex.setDescription('The history of which this entry is a part. The history identified by a particular value of this index is the same history as identified by the same value of historyControlIndex.')
token_ring_history_start_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryStartIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryStartIndex.setDescription('An index that uniquely identifies the particular sample this entry represents among all samples associated with the same historyControlEntry. This index starts at 1 and increases by one as each new sample is taken.')
token_ring_history_interval_start = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 3), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryIntervalStart.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryIntervalStart.setDescription('The value of sysUpTime at the start of the interval over which this sample was measured. If the probe keeps track of the time of day, it should start the first sample of the history at a time such that when the next hour of the day begins, a sample is started at that instant. Note that following this rule may require the probe to delay collecting the first sample of the history, as each sample must be of the same interval. Also note that the sample which is currently being collected is not accessible in this table until the end of its interval.')
token_ring_history_drop_events = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryDropEvents.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryDropEvents.setDescription('')
token_ring_history_data_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryDataOctets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryDataOctets.setDescription('')
token_ring_history_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryDataPkts.setDescription('')
token_ring_history_broadcast_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryBroadcastDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryBroadcastDataPkts.setDescription('')
token_ring_history_multicast_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryMulticastDataPkts.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryMulticastDataPkts.setDescription('')
token_ring_history_mac_octets = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryMACOctets.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryMACOctets.setDescription('')
token_ring_history_mac_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryMACPkts.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryMACPkts.setDescription('')
token_ring_history_ring_purges = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryRingPurges.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryRingPurges.setDescription('')
token_ring_history_monitor_contentions = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryMonitorContentions.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryMonitorContentions.setDescription('')
token_ring_history_beacons = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryBeacons.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryBeacons.setDescription('')
token_ring_history_lost_monitors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryLostMonitors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryLostMonitors.setDescription('')
token_ring_history_duplicate_monitors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryDuplicateMonitors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryDuplicateMonitors.setDescription('')
token_ring_history_duplicate_addresses = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryDuplicateAddresses.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryDuplicateAddresses.setDescription('')
token_ring_history_ring_poll_failures = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryRingPollFailures.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryRingPollFailures.setDescription('')
token_ring_history_line_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryLineErrors.setDescription('')
token_ring_history_internal_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryInternalErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryInternalErrors.setDescription('')
token_ring_history_burst_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryBurstErrors.setDescription('')
token_ring_history_ac_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryACErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryACErrors.setDescription('')
token_ring_history_abort_delimiters = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryAbortDelimiters.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryAbortDelimiters.setDescription('')
token_ring_history_lost_frame_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryLostFrameErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryLostFrameErrors.setDescription('')
token_ring_history_receive_congestions = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryReceiveCongestions.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryReceiveCongestions.setDescription('')
token_ring_history_frame_copied_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryFrameCopiedErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryFrameCopiedErrors.setDescription('')
token_ring_history_frequency_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryFrequencyErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryFrequencyErrors.setDescription('')
token_ring_history_token_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryTokenErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryTokenErrors.setDescription('')
token_ring_history_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 2, 1, 1, 28), integer32().subtype(subtypeSpec=value_range_constraint(0, 10000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHistoryUtilization.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHistoryUtilization.setDescription('')
token_ring_control_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1))
if mibBuilder.loadTexts:
tokenRingControlTable.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlTable.setDescription('A list of token ring configuration control entries.')
token_ring_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1)).setIndexNames((0, 'Novell-LANalyzer-TR-MIB', 'tokenRingControlIndex'))
if mibBuilder.loadTexts:
tokenRingControlEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlEntry.setDescription('A list of parameters that sets up a command buffer and two event pointers for the manager who has created this instance.')
token_ring_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingControlIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlIndex.setDescription('An index that uniquely identifies an entry in the tokenRingControl table. Each entry contains a command buffer for the management station to issue a command and two event indexes for specifying the actions to be done when the ring starts beaconing and a host has entered or exited the ring.')
token_ring_control_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingControlIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlIfIndex.setDescription('This object contains the board interface number which is identical to the ifIndex object in the interface table of MIB-I or MIB-II.')
token_ring_control_command_status = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('none', 1), ('success', 2), ('inProgress', 3), ('notSupported', 4), ('unAbleToRun', 5), ('missingData', 6), ('aborted', 7), ('failed', 8), ('sendPending', 9)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingControlCommandStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlCommandStatus.setDescription('The object contains the result of the most recent test, or the value none(1) if no tests have been requested since last reset. After the manager issues a new command, the agent will turn the status to inProgress(3) and start executing. Meanwhile, the manager polls this object until a completion status is returned. Then it proceeds to read the result.')
token_ring_control_command_type = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('nop', 1), ('removeStation', 2), ('testStation', 3), ('requestStationAddress', 4), ('requestStationState', 5), ('requestStationAttachment', 6)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingControlCommandType.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlCommandType.setDescription('The object specifies the operation to act upon the target station requested by the manager. The agent only accepts unicast address from the management station. If non-unicast address is specified, the notSupported(4) value will be written to the tokenRingControlCommandStatus object. Note that the agent does not check the specified address with the host table. In other words, the management station can specify a non-existing MAC address in the command. The removeStation(1) command requests the agent to send the Remove Ring Station MAC frame to the target station that deinserts the target station from the ring. The testStation(2) command requests the agent to send the Transmit Forward MAC frame to the tagart station. The agent then monitors the response frames from the target station. If the expected response frame is not detected, the agent will write the failed(7) value to the tokenRingControlCommandStatus object. Otherwise, the success(2) value will be written to. The requestStationAddress(3) command requests the agent to send the Request Station Address MAC frame to the target station. This command is to update the address assignments of the target station in the host table. The requestStationState(4) command requests the agent to send the Request Station State MAC frame to the target station. This command is to update the state information of the target station in the host table. The requestStationAttachment(5) command requests the agent to send the Request Station Attachment MAC frame to the target station. This command is to update the configuration information about the host attachment unit of the target station in the host table.')
token_ring_control_command_target_address = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 5), mac_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingControlCommandTargetAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlCommandTargetAddress.setDescription('This object contains the MAC address of the target station requested by the manager. The value must be an unicast address. Multicast, functional or broadcast address is not allowed. Note that the proxy agent does not check whether the address is in the host table or not.')
token_ring_control_beacon_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingControlBeaconEventIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlBeaconEventIndex.setDescription('The value of this object identifies the event that is configured to be generated when the ring to which this interface board is connected starts beaconing. The beacon event is generated only when the ring enters the beacon state. The beacon event will not be generated again unless the ring has exited the beacon state. The agent reports the failure domain and the beacon level in the first detected beacon frame to the management station. The information may not be the most accurate because the failure domain takes time to converge and the beacon level can be elevated. The station can poll the tokenRingNetwork table to read the current status of the ring.')
token_ring_control_config_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingControlConfigEventIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlConfigEventIndex.setDescription('The value of this object identifies the event that is configured to be generated when a station has entered or exited the ring that this interface board is connected to. This control table does not establish any flow control mechanism with the management station. If a group of stations enter or exit the ring at the same time and the link between the management station and the agent is slow, some events may be lost.')
token_ring_control_owner = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 8), owner_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingControlOwner.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlOwner.setDescription("An administratively assigned name for the management station that configured this entry and is therefore using the resources assigned to it. In some cases the agent itself will configure an entry. In this case, the agent is responsible for the resources and this object shall be set to a string starting with 'monitor'.")
token_ring_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 1, 1, 9), entry_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
tokenRingControlStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingControlStatus.setDescription('The status of this entry.')
token_ring_network_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2))
if mibBuilder.loadTexts:
tokenRingNetworkTable.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkTable.setDescription('The ring level information about the token ring networks in this machine.')
token_ring_network_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1)).setIndexNames((0, 'Novell-LANalyzer-TR-MIB', 'tokenRingNetworkIfIndex'))
if mibBuilder.loadTexts:
tokenRingNetworkEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkEntry.setDescription('The current state of this token ring network.')
token_ring_network_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkIfIndex.setDescription('This object contains the board interface number which is identical to the ifIndex object in the interface table of MIB-I or MIB-II.')
token_ring_network_last_reset_time = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 2), time_ticks().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkLastResetTime.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkLastResetTime.setDescription('This object contains the sysUpTime when the data base of this group is created or last reset.')
token_ring_network_ring_number = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 4095))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkRingNumber.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkRingNumber.setDescription('The ring number of which this interface board connects to. If the ring number is not known, it should be set to zero.')
token_ring_network_media_speed = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(4, 16))).clone(namedValues=named_values(('fourMbps', 4), ('sixteenMbps', 16)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkMediaSpeed.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkMediaSpeed.setDescription('The media speed of the ring. The value is either 4 or 16. Other values are not allowed.')
token_ring_network_bridges = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkBridges.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkBridges.setDescription('The number of bridges in the host table. The bridge is referred to the device which supports the bridge functional address.')
token_ring_network_active_stations = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkActiveStations.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkActiveStations.setDescription('The number of active stations in the host table. The active stations are participating in the ring poll process.')
token_ring_network_inactive_stations = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkInactiveStations.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkInactiveStations.setDescription('The number of inactive stations in the host table. The inactive stations are not inserted in the ring or are not participating in the ring poll process. Note that the station became inactive before the tokenRingNetworkLastResetTime cannot be detected by the agent.')
token_ring_network_last_enter_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 8), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkLastEnterMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkLastEnterMACAddress.setDescription('The MAC address of the token ring station that has entered this ring most recently.')
token_ring_network_last_exit_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 9), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkLastExitMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkLastExitMACAddress.setDescription('The MAC address of the token ring station that has left this ring most recently.')
token_ring_network_state = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('normalOperation', 1), ('ringPurgeState', 2), ('claimTokenState', 3), ('beaconState', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkState.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkState.setDescription('The state of the ring of which this entry is a part.')
token_ring_network_state_cause = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 11), 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))).clone(namedValues=named_values(('notClear', 1), ('initialState', 2), ('normalRing', 3), ('recovering', 4), ('hardError', 5), ('beaconSetRecoveryMode', 6), ('beaconRingSignalLoss', 7), ('beaconBitStreaming', 8), ('beaconFrameStreaming', 9), ('type1SoftError', 10), ('type2SoftError', 11), ('type3SoftError', 12), ('type4SoftError', 13), ('burst5Error', 14), ('lostFrameError', 15), ('corruptedToken', 16), ('lostToken', 17), ('circulatingFrame', 18), ('multipleMonitor', 19), ('lostMonitor', 20), ('frequencyError', 21))).clone('initialState')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkStateCause.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkStateCause.setDescription('The cause of this state transition. It is required to give the best estimation of the cause. When this interface just enters the ring, this object is initialized to initiatState(2). If no hint is available, then it sets the cause to notClear(1).')
token_ring_network_state_sender_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 12), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkStateSenderMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkStateSenderMACAddress.setDescription('The MAC address of the station which initiates the state transition.')
token_ring_network_state_upstream_neighbor_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 13), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkStateUpstreamNeighborMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkStateUpstreamNeighborMACAddress.setDescription('The MAC address in the upstream neighbor address subvector of the MAC protocol frame. Some MAC protocol frames, such as ring purge frame, do not contain that subvector, then the MAC address contained in this object is irrelevant.')
token_ring_network_host_order_changes = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkHostOrderChanges.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkHostOrderChanges.setDescription('The count of the index in the host table that has changed since this table is created. The host table contains active and inactive stations which are arranged in sequential order. This counter roughly estimates the number of times that the hosts have changed their port connections.')
token_ring_network_active_monitor_changes = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 2, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingNetworkActiveMonitorChanges.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingNetworkActiveMonitorChanges.setDescription('The number of times that the active monitor changes station since this table is created.')
token_ring_host_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3))
if mibBuilder.loadTexts:
tokenRingHostTable.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostTable.setDescription('A list of token ring host table entries.')
token_ring_host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1)).setIndexNames((0, 'Novell-LANalyzer-TR-MIB', 'tokenRingHostIfIndex'), (0, 'Novell-LANalyzer-TR-MIB', 'tokenRingHostMACAddress'))
if mibBuilder.loadTexts:
tokenRingHostEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostEntry.setDescription('The information of the host that has been discovered on this interface.')
token_ring_host_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostIfIndex.setDescription('This object contains the board interface number which is identical to the ifIndex object in the interface table of MIB-I or MIB-II.')
token_ring_host_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostIndex.setDescription('An index that defines the relative order of the hosts in this ring starting from the Active Monitor station. The active monitor station contains the value of 1. The rest of the stations are arranged in sequential order relative to the active monitor station. When a station becomes inactive, its entry is not meant to be deleted. The value in the tokenRingHostStatus is changed to inactive. The delete algorithm is implementation specific. If a station becomes active and its entry is already in the host table, then the value of the tokenRingHostStatus object is changed to active. In addition, if the relative order of the host entries has changed, it shall increment the tokenRingNetworkHostOrderChange counter in the tokenRingNetwork table by one. On the other hand, if a station becomes active and its entry is not in the host table, then a new entry must be created. The new entry is inserted right after its upstream neighbor station. The tokenRingNetworkHostOrderChange counter in the tokenRingNetwork table shall not be increment. If the active monitor changes station and the relative position of the host entries is unchanged, then the tokenRingNetworkHostOrderChange object in the tokenRingNetwork table shall not be increment.')
token_ring_host_status = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('active', 1), ('inactive', 2), ('activeMonitor', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostStatus.setDescription('The host table contains active and inactive stations. An active station is currently participating in the ring poll process. An inactive station is vice versa. The inactive station can be a previous active station which has exited the ring, or a station which is in the ring but does not participate in the ring poll process.')
token_ring_host_last_enter_time = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostLastEnterTime.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostLastEnterTime.setDescription('The sysUpTime that the station has entered the ring most recently or when the host entry is created.')
token_ring_host_last_exit_time = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 5), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostLastExitTime.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostLastExitTime.setDescription('The sysUpTime that the station has exited the ring most recently. When this object is created, it shall reset its value to 0. It indicates that the station has never exited since creation.')
token_ring_host_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 6), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostMACAddress.setDescription("The station's MAC address to which this entry is belonged.")
token_ring_host_physical_drop_number = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 7), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostPhysicalDropNumber.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostPhysicalDropNumber.setDescription("The station's physical drop number of which this entry is belonged. If the value of this object is not assigned, then it is defaulted to four zeros.")
token_ring_host_soft_error_report_timer_value = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(2000)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostSoftErrorReportTimerValue.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostSoftErrorReportTimerValue.setDescription('The time interval of the host station that the Report Soft Error MAC frame is generated. The default value is two seconds. The value is in units of millisecond.')
token_ring_host_group_addresses = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostGroupAddresses.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostGroupAddresses.setDescription('The group address of this station.')
token_ring_host_functional_addresses = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostFunctionalAddresses.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostFunctionalAddresses.setDescription("The functional address of the station. The functional address is assigned in the bit map fashion. The first two bytes are always 'C0-00' in hex. and the first bit of the third byte is always zero. The following 31 bits are defined as follows: 00-00-00-01 : Active Monitor. 00-00-00-02 : Ring Parameter Server. 00-00-00-04 : 00-00-00-08 : Ring Error Monitor. 00-00-00-10 : Configuration Report Server. 00-00-00-20 : 00-00-00-40 : 00-00-00-80 : NetBIOS. 00-00-01-00 : Bridge. 00-00-02-00 : 00-00-04-00 : 00-00-08-00 : 00-00-10-00 : 00-00-20-00 : IBM LAN Network Manager. 00-00-40-00 : 00-00-80-00 : The bit range between 00-01-00-00 and 40-00-00-00 are not administrated by IEEE. They are defined by users. Below lists a couple of popular assignments: 00-80-00-00 : Novell NetWare. 40-00-00-00 : Apple TokenTalk Broadcast.")
token_ring_host_authorized_function_class = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostAuthorizedFunctionClass.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostAuthorizedFunctionClass.setDescription("Source classes for which the host is enabled to transmit. Valid range is '0000 0000 0000 0000'b to '1111 1111 1111 1111'b. Each bit 0 to 15 corresponds to function class '0000'b to '1111'b. Bit value '1'b means function class is enabled. Defined function classes are the following: '00'H : Ring Station. '01'H : LLC Manager. '04'H : Configuration Report Server. '05'H : Ring Parameter Server. '06'H : Ring Error Monitor.")
token_ring_host_authorized_access_priority = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostAuthorizedAccessPriority.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostAuthorizedAccessPriority.setDescription('Maximum allowed token priority with which the attached product is allowed to transmit.')
token_ring_host_adapter_software_level = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 13), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostAdapterSoftwareLevel.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostAdapterSoftwareLevel.setDescription('The adapter software level of this station. The interpretation of the value in this object is vendor specific.')
token_ring_host_adapter_status_vector = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 14), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostAdapterStatusVector.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostAdapterStatusVector.setDescription('The adapter status vector of this station. The interpretation of the value in this object is vendor specific.')
token_ring_host_product_id = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 15), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostProductID.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostProductID.setDescription('The product identification of this station. The content is defined by vendor.')
token_ring_host_lost_monitors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostLostMonitors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostLostMonitors.setDescription('The total number of monitor errors reported by the Report Monitor Error MAC frame. It occurs when the standby monitor fails to detect a good token in 2.6 seconds, or no ring poll process is executed in 15 seconds. The standby monitor assumes that the active monitor is not present or not functioning. Lost monitor is a type 3 error and will cause the detect station to initiate the monitor contention process.')
token_ring_host_duplicate_monitors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostDuplicateMonitors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostDuplicateMonitors.setDescription('The total number of duplicate monitor errors reported by the Report Monitor Error MAC frame. When an active monitor detects a ring purge frame or an active monitor present frame from other station, it realizes another active monitor in the ring. This station reports duplicate monitor to the Ring Error Monitor and becomes a standby monitor.')
token_ring_host_duplicate_addresses = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostDuplicateAddresses.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostDuplicateAddresses.setDescription('The total number of duplicate address errors reported by the Report Monitor Error MAC frame. It is generated by the station when it detects other stations using its MAC address.')
token_ring_host_ring_poll_failures = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostRingPollFailures.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostRingPollFailures.setDescription('The total number of Report Ring Poll Failure MAC frames received. It is generated when the active monitor cannot see a ring poll cycle completed within a time limit. The MAC address of the last station in the incomplete ring poll cycle is saved in the tokenRingNetwork table for reference.')
token_ring_host_in_line_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostInLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostInLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_host_internal_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostInternalErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostInternalErrors.setDescription('The total number of adapter internal errors reported to the Ring Error Monitor. Internal error indicates that a station recognizes a recoverable internal error. Internal error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_host_in_burst_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostInBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostInBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and will casue the active monitor purging the ring.')
token_ring_host_ac_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostACErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostACErrors.setDescription('The total number of AC errors reported to the Ring Error Monitor. AC error indicates that a station cannot interpret the address recognition bit or the frame copied bit. AC error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_host_abort_delimiters = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostAbortDelimiters.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostAbortDelimiters.setDescription('The number of abort delimiters reported to the Ring Error Monitor. Abort delimiter indicates that a station aborts a transmission. Abort delimiter is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_host_lost_frame_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostLostFrameErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostLostFrameErrors.setDescription('The number of lost frame errors reported to the Ring Error Monitor. Lost frame error indicates that the end delimiter of a frame is lost in the network. Lost frame error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
token_ring_host_receive_congestions = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostReceiveCongestions.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostReceiveCongestions.setDescription('The number of receive congestions reported to the Ring Error Monitor. Receive congestion error indicates that a station recognizes a frame addressed to its specific address, but has no available buffer space. Receive congestion error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_host_frame_copied_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostFrameCopiedErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostFrameCopiedErrors.setDescription('The number of frame copied errors reported to the Ring Error Monitor. Frame copied error indicates that a station recognizes a frame addressed to its specific address and detects that the A bits in Frame Status byte are set to 1. It implies either a line hit or duplicate address. Frame copied error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_host_frequency_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostFrequencyErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostFrequencyErrors.setDescription('The number of frequency errors reported to the Ring Error Monitor. Frequency error indicates that a station detects that the frequency of the incoming signal differs by more than the standard specified margin. Frequency error is non-isolated error. It is a type 3 error and will cause the detect station initiating monitor contention process.')
token_ring_host_token_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostTokenErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostTokenErrors.setDescription('The total number of token errors reported to the Ring Error Monitor. Token error indicates that the Active Monitor station recognizes an error condition that needs a token transmitted. Token error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
token_ring_host_out_line_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostOutLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostOutLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_host_out_burst_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostOutBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostOutBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and will casue the active monitor purging the ring.')
token_ring_host_in_beacons = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostInBeacons.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostInBeacons.setDescription('')
token_ring_host_out_beacons = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 33), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostOutBeacons.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostOutBeacons.setDescription('')
token_ring_host_insertions = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 3, 1, 34), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingHostInsertions.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingHostInsertions.setDescription('')
token_ring_order_table = mib_table((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4))
if mibBuilder.loadTexts:
tokenRingOrderTable.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderTable.setDescription('A list of token ring host table entries.')
token_ring_order_entry = mib_table_row((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1)).setIndexNames((0, 'Novell-LANalyzer-TR-MIB', 'tokenRingOrderIfIndex'), (0, 'Novell-LANalyzer-TR-MIB', 'tokenRingOrderIndex'))
if mibBuilder.loadTexts:
tokenRingOrderEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderEntry.setDescription('The information of the host that has been discovered on this interface.')
token_ring_order_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderIfIndex.setDescription('This object contains the board interface number which is identical to the ifIndex object in the interface table of MIB-I or MIB-II.')
token_ring_order_index = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderIndex.setDescription('An index that defines the relative order of the hosts in this ring starting from the Active Monitor station. The active monitor station contains the value of 1. The rest of the stations are arranged in sequential order relative to the active monitor station. When a station becomes inactive, its entry is not meant to be deleted. The value in the tokenRingOrderStatus is changed to inactive. The delete algorithm is implementation specific. If a station becomes active and its entry is already in the host table, then the value of the tokenRingOrderStatus object is changed to active. In addition, if the relative order of the host entries has changed, it shall increment the tokenRingNetworkHostOrderChange counter in the tokenRingNetwork table by one. On the other hand, if a station becomes active and its entry is not in the host table, then a new entry must be created. The new entry is inserted right after its upstream neighbor station. The tokenRingNetworkHostOrderChange counter in the tokenRingNetwork table shall not be increment. If the active monitor changes station and the relative position of the host entries is unchanged, then the tokenRingNetworkHostOrderChange object in the tokenRingNetwork table shall not be increment.')
token_ring_order_status = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('active', 1), ('inactive', 2), ('activeMonitor', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderStatus.setDescription('The host table contains active and inactive stations. An active station is currently participating in the ring poll process. An inactive station is vice versa. The inactive station can be a previous active station which has exited the ring, or a station which is in the ring but does not participate in the ring poll process.')
token_ring_order_last_enter_time = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderLastEnterTime.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderLastEnterTime.setDescription('The sysUpTime that the station has entered the ring most recently or when the host entry is created.')
token_ring_order_last_exit_time = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 5), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderLastExitTime.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderLastExitTime.setDescription('The sysUpTime that the station has exited the ring most recently. When this object is created, it shall reset its value to 0. It indicates that the station has never exited since creation.')
token_ring_order_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 6), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderMACAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderMACAddress.setDescription("The station's MAC address to which this entry is belonged.")
token_ring_order_physical_drop_number = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 7), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderPhysicalDropNumber.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderPhysicalDropNumber.setDescription("The station's physical drop number of which this entry is belonged. If the value of this object is not assigned, then it is defaulted to four zeros.")
token_ring_order_soft_error_report_timer_value = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(2000)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderSoftErrorReportTimerValue.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderSoftErrorReportTimerValue.setDescription('The time interval of the host station that the Report Soft Error MAC frame is generated. The default value is two seconds. The value is in units of millisecond.')
token_ring_order_group_addresses = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderGroupAddresses.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderGroupAddresses.setDescription('The group address of this station.')
token_ring_order_functional_addresses = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderFunctionalAddresses.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderFunctionalAddresses.setDescription("The functional address of the station. The functional address is assigned in the bit map fashion. The first two bytes are always 'C0-00' in hex. and the first bit of the third byte is always zero. The following 31 bits are defined as follows: 00-00-00-01 : Active Monitor. 00-00-00-02 : Ring Parameter Server. 00-00-00-04 : 00-00-00-08 : Ring Error Monitor. 00-00-00-10 : Configuration Report Server. 00-00-00-20 : 00-00-00-40 : 00-00-00-80 : NetBIOS. 00-00-01-00 : Bridge. 00-00-02-00 : 00-00-04-00 : 00-00-08-00 : 00-00-10-00 : 00-00-20-00 : IBM LAN Network Manager. 00-00-40-00 : 00-00-80-00 : The bit range between 00-01-00-00 and 40-00-00-00 are not administrated by IEEE. They are defined by users. Below lists a couple of popular assignments: 00-80-00-00 : Novell NetWare. 40-00-00-00 : Apple TokenTalk Broadcast.")
token_ring_order_authorized_function_class = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderAuthorizedFunctionClass.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderAuthorizedFunctionClass.setDescription("Source classes for which the host is enabled to transmit. Valid range is '0000 0000 0000 0000'b to '1111 1111 1111 1111'b. Each bit 0 to 15 corresponds to function class '0000'b to '1111'b. Bit value '1'b means function class is enabled. Defined function classes are the following: '00'H : Ring Station. '01'H : LLC Manager. '04'H : Configuration Report Server. '05'H : Ring Parameter Server. '06'H : Ring Error Monitor.")
token_ring_order_authorized_access_priority = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderAuthorizedAccessPriority.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderAuthorizedAccessPriority.setDescription('Maximum allowed token priority with which the attached product is allowed to transmit.')
token_ring_order_adapter_software_level = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 13), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderAdapterSoftwareLevel.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderAdapterSoftwareLevel.setDescription('The adapter software level of this station. The interpretation of the value in this object is vendor specific.')
token_ring_order_adapter_status_vector = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 14), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderAdapterStatusVector.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderAdapterStatusVector.setDescription('The adapter status vector of this station. The interpretation of the value in this object is vendor specific.')
token_ring_order_product_id = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 15), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderProductID.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderProductID.setDescription('The product identification of this station. The content is defined by vendor.')
token_ring_order_lost_monitors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderLostMonitors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderLostMonitors.setDescription('The total number of monitor errors reported by the Report Monitor Error MAC frame. It occurs when the standby monitor fails to detect a good token in 2.6 seconds, or no ring poll process is executed in 15 seconds. The standby monitor assumes that the active monitor is not present or not functioning. Lost monitor is a type 3 error and will cause the detect station to initiate the monitor contention process.')
token_ring_order_duplicate_monitors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderDuplicateMonitors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderDuplicateMonitors.setDescription('The total number of duplicate monitor errors reported by the Report Monitor Error MAC frame. When an active monitor detects a ring purge frame or an active monitor present frame from other station, it realizes another active monitor in the ring. This station reports duplicate monitor to the Ring Error Monitor and becomes a standby monitor.')
token_ring_order_duplicate_addresses = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderDuplicateAddresses.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderDuplicateAddresses.setDescription('The total number of duplicate address errors reported by the Report Monitor Error MAC frame. It is generated by the station when it detects other stations using its MAC address.')
token_ring_order_ring_poll_failures = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderRingPollFailures.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderRingPollFailures.setDescription('The total number of Report Ring Poll Failure MAC frames received. It is generated when the active monitor cannot see a ring poll cycle completed within a time limit. The MAC address of the last station in the incomplete ring poll cycle is saved in the tokenRingNetwork table for reference.')
token_ring_order_in_line_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderInLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderInLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_order_internal_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderInternalErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderInternalErrors.setDescription('The total number of adapter internal errors reported to the Ring Error Monitor. Internal error indicates that a station recognizes a recoverable internal error. Internal error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_order_in_burst_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderInBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderInBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and will casue the active monitor purging the ring.')
token_ring_order_ac_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderACErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderACErrors.setDescription('The total number of AC errors reported to the Ring Error Monitor. AC error indicates that a station cannot interpret the address recognition bit or the frame copied bit. AC error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_order_abort_delimiters = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderAbortDelimiters.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderAbortDelimiters.setDescription('The number of abort delimiters reported to the Ring Error Monitor. Abort delimiter indicates that a station aborts a transmission. Abort delimiter is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_order_lost_frame_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderLostFrameErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderLostFrameErrors.setDescription('The number of lost frame errors reported to the Ring Error Monitor. Lost frame error indicates that the end delimiter of a frame is lost in the network. Lost frame error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
token_ring_order_receive_congestions = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderReceiveCongestions.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderReceiveCongestions.setDescription('The number of receive congestions reported to the Ring Error Monitor. Receive congestion error indicates that a station recognizes a frame addressed to its specific address, but has no available buffer space. Receive congestion error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_order_frame_copied_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderFrameCopiedErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderFrameCopiedErrors.setDescription('The number of frame copied errors reported to the Ring Error Monitor. Frame copied error indicates that a station recognizes a frame addressed to its specific address and detects that the A bits in Frame Status byte are set to 1. It implies either a line hit or duplicate address. Frame copied error is non-isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_order_frequency_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderFrequencyErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderFrequencyErrors.setDescription('The number of frequency errors reported to the Ring Error Monitor. Frequency error indicates that a station detects that the frequency of the incoming signal differs by more than the standard specified margin. Frequency error is non-isolated error. It is a type 3 error and will cause the detect station initiating monitor contention process.')
token_ring_order_token_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderTokenErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderTokenErrors.setDescription('The total number of token errors reported to the Ring Error Monitor. Token error indicates that the Active Monitor station recognizes an error condition that needs a token transmitted. Token error is non-isolated error. It is a type 2 error and the active monitor will purge the ring.')
token_ring_order_out_line_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderOutLineErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderOutLineErrors.setDescription('The total number of line errors reported to the Ring Error Monitor. Line error means packet contains incorrect CRC or code violation. Line error is isolated error. It is a type 1 error and no ring recovery is performed.')
token_ring_order_out_burst_errors = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderOutBurstErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderOutBurstErrors.setDescription('The total number of burst errors reported to the Ring Error Monitor. Burst error indicates that a station detects the absence of transitions for five half-bit times. Burst error is isolated error. It is a type 2 error and will casue the active monitor purging the ring.')
token_ring_order_in_beacons = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderInBeacons.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderInBeacons.setDescription('')
token_ring_order_out_beacons = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 33), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderOutBeacons.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderOutBeacons.setDescription('')
token_ring_order_insertions = mib_table_column((1, 3, 6, 1, 4, 1, 23, 2, 15, 3, 4, 1, 34), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tokenRingOrderInsertions.setStatus('mandatory')
if mibBuilder.loadTexts:
tokenRingOrderInsertions.setDescription('')
token_ring_beaconing = notification_type((1, 3, 6, 1, 4, 1, 23, 2, 15) + (0, 4)).setObjects(('Novell-LANalyzer-TR-MIB', 'tokenRingNetworkRingNumber'), ('Novell-LANalyzer-TR-MIB', 'tokenRingNetworkState'), ('Novell-LANalyzer-TR-MIB', 'tokenRingNetworkStateCause'), ('Novell-LANalyzer-TR-MIB', 'tokenRingNetworkStateSenderMACAddress'), ('Novell-LANalyzer-TR-MIB', 'tokenRingNetworkStateUpstreamNeighborMACAddress'))
if mibBuilder.loadTexts:
tokenRingBeaconing.setDescription('The SNMP trap that is generated when the token ring network starts beaconing.')
token_ring_configuration_change = notification_type((1, 3, 6, 1, 4, 1, 23, 2, 15) + (0, 5)).setObjects(('Novell-LANalyzer-TR-MIB', 'tokenRingNetworkRingNumber'), ('Novell-LANalyzer-TR-MIB', 'tokenRingHostMACAddress'), ('Novell-LANalyzer-TR-MIB', 'tokenRingHostPhysicalDropNumber'), ('Novell-LANalyzer-TR-MIB', 'tokenRingHostStatus'))
if mibBuilder.loadTexts:
tokenRingConfigurationChange.setDescription('The SNMP trap that is generated when the a host has entered or exited the token ring network.')
mibBuilder.exportSymbols('Novell-LANalyzer-TR-MIB', tokenRingNetworkIfIndex=tokenRingNetworkIfIndex, tokenRingOrderSoftErrorReportTimerValue=tokenRingOrderSoftErrorReportTimerValue, tokenRingOrderAbortDelimiters=tokenRingOrderAbortDelimiters, tokenRingHistoryTable=tokenRingHistoryTable, tokenRingHostDuplicateMonitors=tokenRingHostDuplicateMonitors, tokenRingHistoryTokenErrors=tokenRingHistoryTokenErrors, tokenRingHostLostMonitors=tokenRingHostLostMonitors, tokenRingOrderAuthorizedAccessPriority=tokenRingOrderAuthorizedAccessPriority, tokenRingHistoryUtilization=tokenRingHistoryUtilization, tokenRingHostAuthorizedFunctionClass=tokenRingHostAuthorizedFunctionClass, tokenRingOrderLostFrameErrors=tokenRingOrderLostFrameErrors, tokenRingHostTokenErrors=tokenRingHostTokenErrors, tokenRingControlBeaconEventIndex=tokenRingControlBeaconEventIndex, tokenRingHostRingPollFailures=tokenRingHostRingPollFailures, tokenRingHistoryLostFrameErrors=tokenRingHistoryLostFrameErrors, tokenRingHistoryFrequencyErrors=tokenRingHistoryFrequencyErrors, tokenRingHostReceiveCongestions=tokenRingHostReceiveCongestions, tokenRingStatsDataPkts256to511Octets=tokenRingStatsDataPkts256to511Octets, tokenRingStatsDataPktsUndersizePkts=tokenRingStatsDataPktsUndersizePkts, tokenRingNetworkLastResetTime=tokenRingNetworkLastResetTime, tokenRingHostOutBeacons=tokenRingHostOutBeacons, tokenRingHostLastEnterTime=tokenRingHostLastEnterTime, tokenRingNetworkInactiveStations=tokenRingNetworkInactiveStations, tokenRingStatsDataPkts=tokenRingStatsDataPkts, tokenRingOrderInternalErrors=tokenRingOrderInternalErrors, tokenRingHostTable=tokenRingHostTable, tokenRingHistory=tokenRingHistory, tokenRingHistoryDuplicateMonitors=tokenRingHistoryDuplicateMonitors, tokenRingControlEntry=tokenRingControlEntry, tokenRingStatsDataSource=tokenRingStatsDataSource, tokenRingHistoryMACPkts=tokenRingHistoryMACPkts, tokenRingNetworkMediaSpeed=tokenRingNetworkMediaSpeed, tokenRingNetworkState=tokenRingNetworkState, tokenRingHostDuplicateAddresses=tokenRingHostDuplicateAddresses, tokenRingOrderOutBurstErrors=tokenRingOrderOutBurstErrors, tokenRingHistoryIndex=tokenRingHistoryIndex, tokenRingStatsDataPkts2048to4608Octets=tokenRingStatsDataPkts2048to4608Octets, tokenRingStatistics=tokenRingStatistics, tokenRingNetworkActiveMonitorChanges=tokenRingNetworkActiveMonitorChanges, tokenRingStatsBurstErrors=tokenRingStatsBurstErrors, tokenRingControlCommandType=tokenRingControlCommandType, tokenRingHostInBurstErrors=tokenRingHostInBurstErrors, tokenRingOrderDuplicateAddresses=tokenRingOrderDuplicateAddresses, tokenRingOrderOutLineErrors=tokenRingOrderOutLineErrors, MacAddress=MacAddress, tokenRingStatsRingPollFailures=tokenRingStatsRingPollFailures, tokenRingStatsTokenErrors=tokenRingStatsTokenErrors, tokenRingHistoryRingPurges=tokenRingHistoryRingPurges, tokenRingStatsFrequencyErrors=tokenRingStatsFrequencyErrors, tokenRingOrderIndex=tokenRingOrderIndex, tokenRingHistoryInternalErrors=tokenRingHistoryInternalErrors, tokenRingHostInternalErrors=tokenRingHostInternalErrors, tokenRingStatsDataPkts128to255Octets=tokenRingStatsDataPkts128to255Octets, tokenRingOrderTable=tokenRingOrderTable, tokenRingOrderProductID=tokenRingOrderProductID, tokenRingHostPhysicalDropNumber=tokenRingHostPhysicalDropNumber, tokenRingStatsDuplicateMonitors=tokenRingStatsDuplicateMonitors, tokenRingNetworkStateUpstreamNeighborMACAddress=tokenRingNetworkStateUpstreamNeighborMACAddress, tokenRingOrderRingPollFailures=tokenRingOrderRingPollFailures, tokenRingStatsIndex=tokenRingStatsIndex, tokenRingOrderIfIndex=tokenRingOrderIfIndex, tokenRingOrderInBeacons=tokenRingOrderInBeacons, tokenRingOrderPhysicalDropNumber=tokenRingOrderPhysicalDropNumber, tokenRingHistoryStartIndex=tokenRingHistoryStartIndex, tokenRingOrderAdapterSoftwareLevel=tokenRingOrderAdapterSoftwareLevel, tokenRingHistoryMACOctets=tokenRingHistoryMACOctets, tokenRingOrderInsertions=tokenRingOrderInsertions, tokenRingOrderFrameCopiedErrors=tokenRingOrderFrameCopiedErrors, tokenRingHistoryReceiveCongestions=tokenRingHistoryReceiveCongestions, tokenRingNetworkStateCause=tokenRingNetworkStateCause, tokenRingStatsMACPkts=tokenRingStatsMACPkts, tokenRingHistoryRingPollFailures=tokenRingHistoryRingPollFailures, tokenRingStatsDataPkts512to1023Octets=tokenRingStatsDataPkts512to1023Octets, tokenRingHistoryBroadcastDataPkts=tokenRingHistoryBroadcastDataPkts, tokenRingHostInLineErrors=tokenRingHostInLineErrors, tokenRingOrderStatus=tokenRingOrderStatus, tokenRingOrderACErrors=tokenRingOrderACErrors, tokenRingHostIndex=tokenRingHostIndex, tokenRingStatsMACOctets=tokenRingStatsMACOctets, tokenRingOrderTokenErrors=tokenRingOrderTokenErrors, tokenRingNetworkStateSenderMACAddress=tokenRingNetworkStateSenderMACAddress, tokenRingHistoryACErrors=tokenRingHistoryACErrors, tokenRingHostFunctionalAddresses=tokenRingHostFunctionalAddresses, tokenRingStatsEntry=tokenRingStatsEntry, tokenRingHostInBeacons=tokenRingHostInBeacons, tokenRingStatsFrameCopiedErrors=tokenRingStatsFrameCopiedErrors, tokenRingHistoryLostMonitors=tokenRingHistoryLostMonitors, tokenRingStatsInternalErrors=tokenRingStatsInternalErrors, tokenRingControlIndex=tokenRingControlIndex, tokenRingControlIfIndex=tokenRingControlIfIndex, tokenRingHistoryAbortDelimiters=tokenRingHistoryAbortDelimiters, tokenRingOrderInLineErrors=tokenRingOrderInLineErrors, tokenRingHostStatus=tokenRingHostStatus, tokenRingHistoryEntry=tokenRingHistoryEntry, tokenRingControlTable=tokenRingControlTable, tokenRingControlOwner=tokenRingControlOwner, tokenRingStatsDuplicateAddresses=tokenRingStatsDuplicateAddresses, tokenRingHistoryDataOctets=tokenRingHistoryDataOctets, tokenRingNetworkLastEnterMACAddress=tokenRingNetworkLastEnterMACAddress, tokenRingHistoryLineErrors=tokenRingHistoryLineErrors, novell=novell, tokenRingHostFrameCopiedErrors=tokenRingHostFrameCopiedErrors, tokenRingOrderFrequencyErrors=tokenRingOrderFrequencyErrors, tokenRingNetworkEntry=tokenRingNetworkEntry, tokenRingNetworkLastExitMACAddress=tokenRingNetworkLastExitMACAddress, tokenRingStatsDataPktsMoreThan18000Octets=tokenRingStatsDataPktsMoreThan18000Octets, tokenRingOrderMACAddress=tokenRingOrderMACAddress, tokenRingOrderDuplicateMonitors=tokenRingOrderDuplicateMonitors, tokenRingStatsOwner=tokenRingStatsOwner, ringrmon_mib=ringrmon_mib, tokenRingHistoryBurstErrors=tokenRingHistoryBurstErrors, tokenRingHistoryDuplicateAddresses=tokenRingHistoryDuplicateAddresses, tokenRingStatsAbortDelimiters=tokenRingStatsAbortDelimiters, tokenRingOrderGroupAddresses=tokenRingOrderGroupAddresses, tokenRingStatsLineErrors=tokenRingStatsLineErrors, tokenRingOrderAdapterStatusVector=tokenRingOrderAdapterStatusVector, tokenRingHistoryMulticastDataPkts=tokenRingHistoryMulticastDataPkts, tokenRingHostLastExitTime=tokenRingHostLastExitTime, tokenRingOrderInBurstErrors=tokenRingOrderInBurstErrors, tokenRingStatsMulticastDataPkts=tokenRingStatsMulticastDataPkts, tokenRingStatsMonitorContentions=tokenRingStatsMonitorContentions, tokenRingOrderOutBeacons=tokenRingOrderOutBeacons, tokenRingHistoryIntervalStart=tokenRingHistoryIntervalStart, tokenRingHostAdapterStatusVector=tokenRingHostAdapterStatusVector, tokenRingHistoryFrameCopiedErrors=tokenRingHistoryFrameCopiedErrors, productType=productType, tokenRingStatsBroadcastDataPkts=tokenRingStatsBroadcastDataPkts, mibDoc=mibDoc, tokenRingStatsDataPkts1024to2047Octets=tokenRingStatsDataPkts1024to2047Octets, tokenRingStatsACErrors=tokenRingStatsACErrors, tokenRingHostEntry=tokenRingHostEntry, tokenRingControlStatus=tokenRingControlStatus, tokenRingHostMACAddress=tokenRingHostMACAddress, tokenRingBeaconing=tokenRingBeaconing, tokenRingHostAdapterSoftwareLevel=tokenRingHostAdapterSoftwareLevel, tokenRingHistoryDropEvents=tokenRingHistoryDropEvents, tokenRingHostOutLineErrors=tokenRingHostOutLineErrors, tokenRingStatsDataOctets=tokenRingStatsDataOctets, tokenRingOrderFunctionalAddresses=tokenRingOrderFunctionalAddresses, tokenRingStatsDataPkts64to127Octets=tokenRingStatsDataPkts64to127Octets, tokenRingStatsRingPurges=tokenRingStatsRingPurges, tokenRingStatsDataPkts4609to18000Octets=tokenRingStatsDataPkts4609to18000Octets, tokenRingStatsDataPkts18to63Octets=tokenRingStatsDataPkts18to63Octets, tokenRingStatsReceiveCongestions=tokenRingStatsReceiveCongestions, tokenRingHostAbortDelimiters=tokenRingHostAbortDelimiters, tokenRingStatsStatus=tokenRingStatsStatus, tokenRingControlCommandStatus=tokenRingControlCommandStatus, tokenRingOrderLostMonitors=tokenRingOrderLostMonitors, tokenRingConfigurationChange=tokenRingConfigurationChange, tokenRingNetworkActiveStations=tokenRingNetworkActiveStations, tokenRingOrderReceiveCongestions=tokenRingOrderReceiveCongestions, tokenRingControlConfigEventIndex=tokenRingControlConfigEventIndex, tokenRingOrderAuthorizedFunctionClass=tokenRingOrderAuthorizedFunctionClass, tokenRingNetworkTable=tokenRingNetworkTable, tokenRingHostACErrors=tokenRingHostACErrors, tokenRingStatsTable=tokenRingStatsTable, tokenRingNetworkHostOrderChanges=tokenRingNetworkHostOrderChanges, tokenRingHostSoftErrorReportTimerValue=tokenRingHostSoftErrorReportTimerValue, tokenRingHostProductID=tokenRingHostProductID, tokenRingControlCommandTargetAddress=tokenRingControlCommandTargetAddress, tokenRingHostOutBurstErrors=tokenRingHostOutBurstErrors, tokenRingHostInsertions=tokenRingHostInsertions, tokenRingHostLostFrameErrors=tokenRingHostLostFrameErrors, tokenRingHistoryBeacons=tokenRingHistoryBeacons, tokenRingOrderLastExitTime=tokenRingOrderLastExitTime, tokenRing=tokenRing, tokenRingHostIfIndex=tokenRingHostIfIndex, tokenRingStatsDropEvents=tokenRingStatsDropEvents, tokenRingNetworkRingNumber=tokenRingNetworkRingNumber, tokenRingStatsBeacons=tokenRingStatsBeacons, tokenRingStatsLostFrameErrors=tokenRingStatsLostFrameErrors, tokenRingHostAuthorizedAccessPriority=tokenRingHostAuthorizedAccessPriority, tokenRingHistoryDataPkts=tokenRingHistoryDataPkts, tokenRingHistoryMonitorContentions=tokenRingHistoryMonitorContentions, tokenRingOrderLastEnterTime=tokenRingOrderLastEnterTime, tokenRingHostGroupAddresses=tokenRingHostGroupAddresses, tokenRingStatsLostMonitors=tokenRingStatsLostMonitors, tokenRingHostFrequencyErrors=tokenRingHostFrequencyErrors, tokenRingOrderEntry=tokenRingOrderEntry, tokenRingNetworkBridges=tokenRingNetworkBridges) |
LANGUAGE_CONFIG = {"language": "en", "locale": "en_CA"}
CUSTOM_ACTION_CONFIG = {"url": "http://0.0.0.0:8080/"}
NLP_CONFIG = {
"resolve_entities_using_nbest_transcripts": ["store_info.get_store_hours"]
}
DOMAIN_CLASSIFIER_CONFIG = {
"model_type": "text",
"model_settings": {"classifier_type": "logreg",},
"param_selection": {
"type": "k-fold",
"k": 10,
"grid": {"fit_intercept": [True, False], "C": [10, 100, 1000, 10000, 100000]},
},
"features": {
"bag-of-words": {"lengths": [1],},
"freq": {"bins": 5},
"in-gaz": {},
"exact": {},
"enable-stemming": True,
},
}
INTENT_CLASSIFIER_CONFIG = {
"model_type": "text",
"model_settings": {"classifier_type": "logreg"},
"param_selection": {
"type": "k-fold",
"k": 10,
"grid": {
"fit_intercept": [True, False],
"C": [0.01, 1, 100, 10000, 1000000],
"class_bias": [1, 0.7, 0.3, 0],
},
},
"features": {
"bag-of-words": {"lengths": [1]},
"word-shape": {"lengths": [1]},
"in-gaz": {},
"freq": {"bins": 5},
"sys-candidates": {"entities": ["sys_number", "sys_ordinal"]},
"exact": {},
"length": {},
"enable-stemming": True,
},
}
ENTITY_RECOGNIZER_CONFIG = {
"model_type": "tagger",
"label_type": "entities",
"model_settings": {
"classifier_type": "memm",
"tag_scheme": "IOB",
"feature_scaler": "max-abs",
},
"param_selection": {
"type": "k-fold",
"k": 5,
"scoring": "accuracy",
"grid": {
"penalty": ["l1", "l2"],
"C": [0.01, 1, 100, 10000, 1000000, 100000000],
},
},
"features": {
"bag-of-words-seq": {
"ngram_lengths_to_start_positions": {
1: [-2, -1, 0, 1, 2],
2: [-2, -1, 0, 1],
}
},
"in-gaz-span-seq": {},
"sys-candidates-seq": {"start_positions": [-1, 0, 1]},
"enable-stemming": True,
},
}
TEST_ENTITY_RECOGNIZER_CONFIG = {
"model_type": "tagger",
"label_type": "entities",
"model_settings": {
"classifier_type": "memm",
"tag_scheme": "IOB",
"feature_scaler": "max-abs",
},
"params": {"penalty": "l1", "C": 50},
"features": {
"bag-of-words-seq": {
"ngram_lengths_to_start_positions": {
1: [-2, -1, 0, 1, 2],
2: [-2, -1, 0, 1],
}
},
"in-gaz-span-seq": {},
"sys-candidates-seq": {"start_positions": [-1, 0, 1]},
"enable-stemming": True,
},
"train_label_set": "testtrain.*\.txt", # noqa: W605
"test_label_set": "testtrain.*\.txt", # noqa: W605
}
def get_entity_recognizer_config(domain, intent):
if domain == "store_info" and intent == "get_store_hours":
return TEST_ENTITY_RECOGNIZER_CONFIG
return ENTITY_RECOGNIZER_CONFIG
| language_config = {'language': 'en', 'locale': 'en_CA'}
custom_action_config = {'url': 'http://0.0.0.0:8080/'}
nlp_config = {'resolve_entities_using_nbest_transcripts': ['store_info.get_store_hours']}
domain_classifier_config = {'model_type': 'text', 'model_settings': {'classifier_type': 'logreg'}, 'param_selection': {'type': 'k-fold', 'k': 10, 'grid': {'fit_intercept': [True, False], 'C': [10, 100, 1000, 10000, 100000]}}, 'features': {'bag-of-words': {'lengths': [1]}, 'freq': {'bins': 5}, 'in-gaz': {}, 'exact': {}, 'enable-stemming': True}}
intent_classifier_config = {'model_type': 'text', 'model_settings': {'classifier_type': 'logreg'}, 'param_selection': {'type': 'k-fold', 'k': 10, 'grid': {'fit_intercept': [True, False], 'C': [0.01, 1, 100, 10000, 1000000], 'class_bias': [1, 0.7, 0.3, 0]}}, 'features': {'bag-of-words': {'lengths': [1]}, 'word-shape': {'lengths': [1]}, 'in-gaz': {}, 'freq': {'bins': 5}, 'sys-candidates': {'entities': ['sys_number', 'sys_ordinal']}, 'exact': {}, 'length': {}, 'enable-stemming': True}}
entity_recognizer_config = {'model_type': 'tagger', 'label_type': 'entities', 'model_settings': {'classifier_type': 'memm', 'tag_scheme': 'IOB', 'feature_scaler': 'max-abs'}, 'param_selection': {'type': 'k-fold', 'k': 5, 'scoring': 'accuracy', 'grid': {'penalty': ['l1', 'l2'], 'C': [0.01, 1, 100, 10000, 1000000, 100000000]}}, 'features': {'bag-of-words-seq': {'ngram_lengths_to_start_positions': {1: [-2, -1, 0, 1, 2], 2: [-2, -1, 0, 1]}}, 'in-gaz-span-seq': {}, 'sys-candidates-seq': {'start_positions': [-1, 0, 1]}, 'enable-stemming': True}}
test_entity_recognizer_config = {'model_type': 'tagger', 'label_type': 'entities', 'model_settings': {'classifier_type': 'memm', 'tag_scheme': 'IOB', 'feature_scaler': 'max-abs'}, 'params': {'penalty': 'l1', 'C': 50}, 'features': {'bag-of-words-seq': {'ngram_lengths_to_start_positions': {1: [-2, -1, 0, 1, 2], 2: [-2, -1, 0, 1]}}, 'in-gaz-span-seq': {}, 'sys-candidates-seq': {'start_positions': [-1, 0, 1]}, 'enable-stemming': True}, 'train_label_set': 'testtrain.*\\.txt', 'test_label_set': 'testtrain.*\\.txt'}
def get_entity_recognizer_config(domain, intent):
if domain == 'store_info' and intent == 'get_store_hours':
return TEST_ENTITY_RECOGNIZER_CONFIG
return ENTITY_RECOGNIZER_CONFIG |
#funcao soma
def sum(a, b):
return a + b
c = sum(1, 3)
print("Somado: ", c)
| def sum(a, b):
return a + b
c = sum(1, 3)
print('Somado: ', c) |
class Snake():
def __init__(self, snake):
self.id = snake['id']
self.name = snake['name']
self.health = snake['health']
self.body = snake['body']
self.head = snake['head']
self.length = snake['length']
# self.head = self.coordinates[0]
# self.length = len(self.coordinates)
| class Snake:
def __init__(self, snake):
self.id = snake['id']
self.name = snake['name']
self.health = snake['health']
self.body = snake['body']
self.head = snake['head']
self.length = snake['length'] |
# CHECKING ARRAY IF IN SORTED ORDER
def checkSorted(n,A,i):
if i==n:
return 1
if A[i]>=A[i-1]:
return checkSorted(n,A,i+1)
else:
return 0
n = int(input("Enter number of elements :"))
Arr = [int(a) for a in input().split()]
if checkSorted(n,Arr,1):
print("Sorted")
else:
print("Not Sorted")
| def check_sorted(n, A, i):
if i == n:
return 1
if A[i] >= A[i - 1]:
return check_sorted(n, A, i + 1)
else:
return 0
n = int(input('Enter number of elements :'))
arr = [int(a) for a in input().split()]
if check_sorted(n, Arr, 1):
print('Sorted')
else:
print('Not Sorted') |
temp = 120
if temp > 85:
print("Hot")
elif temp > 100:
print("REALLY HOT!")
elif temp > 60:
print("Comfortable")
else:
print("Cold") | temp = 120
if temp > 85:
print('Hot')
elif temp > 100:
print('REALLY HOT!')
elif temp > 60:
print('Comfortable')
else:
print('Cold') |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.