content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
def _pipe(f, g):
def inner(*arguments):
return g(f(*arguments))
return inner
| def _pipe(f, g):
def inner(*arguments):
return g(f(*arguments))
return inner |
'''
Given m arrays, and each array is sorted in ascending order. Now you can pick up two integers from two different arrays (each array picks one) and calculate the distance. We define the distance between two integers a and b to be their absolute difference |a-b|. Your task is to find the maximum distance.
Example 1:
Input:
[[1,2,3],
[4,5],
[1,2,3]]
Output: 4
Explanation:
One way to reach the maximum distance 4 is to pick 1 in the first or third array and pick 5 in the second array.
Note:
Each given array will have at least 1 number. There will be at least two non-empty arrays.
The total number of the integers in all the m arrays will be in the range of [2, 10000].
The integers in the m arrays will be in the range of [-10000, 10000].
'''
class Solution(object):
def maxDistance(self, arrays):
"""
:type arrays: List[List[int]]
:rtype: int
"""
if not arrays or len(arrays) < 2:
return 0
res = 0
tmpmin = arrays[0][0]
tmpmax = arrays[0][-1]
for i in xrange(1, len(arrays)):
res = max(res, abs(tmpmin - arrays[i][-1]), abs(tmpmax - arrays[i][0]))
tmpmin = min(tmpmin, arrays[i][0])
tmpmax = max(tmpmax, arrays[i][-1])
return res
| """
Given m arrays, and each array is sorted in ascending order. Now you can pick up two integers from two different arrays (each array picks one) and calculate the distance. We define the distance between two integers a and b to be their absolute difference |a-b|. Your task is to find the maximum distance.
Example 1:
Input:
[[1,2,3],
[4,5],
[1,2,3]]
Output: 4
Explanation:
One way to reach the maximum distance 4 is to pick 1 in the first or third array and pick 5 in the second array.
Note:
Each given array will have at least 1 number. There will be at least two non-empty arrays.
The total number of the integers in all the m arrays will be in the range of [2, 10000].
The integers in the m arrays will be in the range of [-10000, 10000].
"""
class Solution(object):
def max_distance(self, arrays):
"""
:type arrays: List[List[int]]
:rtype: int
"""
if not arrays or len(arrays) < 2:
return 0
res = 0
tmpmin = arrays[0][0]
tmpmax = arrays[0][-1]
for i in xrange(1, len(arrays)):
res = max(res, abs(tmpmin - arrays[i][-1]), abs(tmpmax - arrays[i][0]))
tmpmin = min(tmpmin, arrays[i][0])
tmpmax = max(tmpmax, arrays[i][-1])
return res |
class Solution:
def matrixScore(self, A):
"""
:type A: List[List[int]]
:rtype: int
"""
# toggle each value in a row or column
# sum of rows intepreted as binary number
for i, row in enumerate(A):
if row[0] == 0:
for j in range(len(row)):
row[j] = 1 - row[j]
ans, m = 0, len(A)
unit = 2 ** (len(A[0]) - 1)
for j in range(len(A[0])):
cnt = sum(A[i][j] == 1 for i in range(m))
ans += unit * max(cnt, m - cnt)
unit >>= 1
return ans | class Solution:
def matrix_score(self, A):
"""
:type A: List[List[int]]
:rtype: int
"""
for (i, row) in enumerate(A):
if row[0] == 0:
for j in range(len(row)):
row[j] = 1 - row[j]
(ans, m) = (0, len(A))
unit = 2 ** (len(A[0]) - 1)
for j in range(len(A[0])):
cnt = sum((A[i][j] == 1 for i in range(m)))
ans += unit * max(cnt, m - cnt)
unit >>= 1
return ans |
def saveFeat (lc, tName, cur, conn): #pass in lightcurve table and cursor
feats_to_use = [
'amplitude',
'flux_percentile_ratio_mid20',
'flux_percentile_ratio_mid35',
'flux_percentile_ratio_mid50',
'flux_percentile_ratio_mid65',
'flux_percentile_ratio_mid80',
'max_slope',
'maximum',
'median',
'median_absolute_deviation',
'minimum',
'percent_amplitude',
'percent_beyond_1_std',
'percent_close_to_median',
'percent_difference_flux_percentile',
'period_fast',
'qso_log_chi2_qsonu',
'qso_log_chi2nuNULL_chi2nu',
'skew',
'std',
'stetson_j',
'stetson_k',
'weighted_average',
'fold2P_slope_10percentile',
'fold2P_slope_90percentile',
'freq1_amplitude1',
'freq1_amplitude2',
'freq1_amplitude3',
'freq1_amplitude4',
'freq1_freq',
'freq1_lambda',
'freq1_rel_phase2',
'freq1_rel_phase3',
'freq1_rel_phase4',
'freq1_signif',
'freq2_amplitude1',
'freq2_amplitude2',
'freq2_amplitude3',
'freq2_amplitude4',
'freq2_freq',
'freq2_rel_phase2',
'freq2_rel_phase3',
'freq2_rel_phase4',
'freq3_amplitude1',
'freq3_amplitude2',
'freq3_amplitude3',
'freq3_amplitude4',
'freq3_freq',
'freq3_rel_phase2',
'freq3_rel_phase3',
'freq3_rel_phase4',
'freq_amplitude_ratio_21',
'freq_amplitude_ratio_31',
'freq_frequency_ratio_21',
'freq_frequency_ratio_31',
'freq_model_max_delta_mags',
'freq_model_min_delta_mags',
'freq_model_phi1_phi2',
'freq_n_alias',
'freq_signif_ratio_21',
'freq_signif_ratio_31',
'freq_varrat',
'freq_y_offset',
'linear_trend',
'medperc90_2p_p',
'p2p_scatter_2praw',
'p2p_scatter_over_mad',
'p2p_scatter_pfold_over_mad',
'p2p_ssqr_diff_over_var',
'scatter_res_raw'
]
string = "insert into " + tName + """ values (
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"""
cur.execute("""select oid from {:}""".format(tName))
check = cur.fetchall()
for oid in np.unique(lc['oid']):
if (oid not in check):
mask = np.logical_and(lc['oid'] == oid, lc['mag_autocorr'] > 0)
fset = featurize.featurize_time_series(lc[mask]['obsmjd'], lc[mask]['mag_autocorr'], lc[mask]['magerr_auto'],
meta_features = {'oid': str(oid)}, features_to_use = feats_to_use)
cur.execute(string, fset.get_values()[0])
else:
print('Database already contains a ', oid)
conn.commit() | def save_feat(lc, tName, cur, conn):
feats_to_use = ['amplitude', 'flux_percentile_ratio_mid20', 'flux_percentile_ratio_mid35', 'flux_percentile_ratio_mid50', 'flux_percentile_ratio_mid65', 'flux_percentile_ratio_mid80', 'max_slope', 'maximum', 'median', 'median_absolute_deviation', 'minimum', 'percent_amplitude', 'percent_beyond_1_std', 'percent_close_to_median', 'percent_difference_flux_percentile', 'period_fast', 'qso_log_chi2_qsonu', 'qso_log_chi2nuNULL_chi2nu', 'skew', 'std', 'stetson_j', 'stetson_k', 'weighted_average', 'fold2P_slope_10percentile', 'fold2P_slope_90percentile', 'freq1_amplitude1', 'freq1_amplitude2', 'freq1_amplitude3', 'freq1_amplitude4', 'freq1_freq', 'freq1_lambda', 'freq1_rel_phase2', 'freq1_rel_phase3', 'freq1_rel_phase4', 'freq1_signif', 'freq2_amplitude1', 'freq2_amplitude2', 'freq2_amplitude3', 'freq2_amplitude4', 'freq2_freq', 'freq2_rel_phase2', 'freq2_rel_phase3', 'freq2_rel_phase4', 'freq3_amplitude1', 'freq3_amplitude2', 'freq3_amplitude3', 'freq3_amplitude4', 'freq3_freq', 'freq3_rel_phase2', 'freq3_rel_phase3', 'freq3_rel_phase4', 'freq_amplitude_ratio_21', 'freq_amplitude_ratio_31', 'freq_frequency_ratio_21', 'freq_frequency_ratio_31', 'freq_model_max_delta_mags', 'freq_model_min_delta_mags', 'freq_model_phi1_phi2', 'freq_n_alias', 'freq_signif_ratio_21', 'freq_signif_ratio_31', 'freq_varrat', 'freq_y_offset', 'linear_trend', 'medperc90_2p_p', 'p2p_scatter_2praw', 'p2p_scatter_over_mad', 'p2p_scatter_pfold_over_mad', 'p2p_ssqr_diff_over_var', 'scatter_res_raw']
string = 'insert into ' + tName + ' values (\n ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, \n ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)'
cur.execute('select oid from {:}'.format(tName))
check = cur.fetchall()
for oid in np.unique(lc['oid']):
if oid not in check:
mask = np.logical_and(lc['oid'] == oid, lc['mag_autocorr'] > 0)
fset = featurize.featurize_time_series(lc[mask]['obsmjd'], lc[mask]['mag_autocorr'], lc[mask]['magerr_auto'], meta_features={'oid': str(oid)}, features_to_use=feats_to_use)
cur.execute(string, fset.get_values()[0])
else:
print('Database already contains a ', oid)
conn.commit() |
anna = {'name': 'Anna',
'age': 35,
'cats':True,
'beard': False,
'hair_color': 'pink'}
ryan = dict(anna)
ryan['beard'] = True
ryan['hair_color'] = 'Brown'
ryan['name'] = 'Ryan'
ryan['cats'] = 'Nope!'
print(ryan)
print(anna)
class Person(object):
def __init__(
self, name, age, cats, beard,
hair_color=None, works_at_google=True):
self.name = name
self.age = age
self.cats = cats
self.beard = beard
self.hair_color = hair_color
self.googler = works_at_google
self.hungry = True
self.kids = []
def eat(self, food):
print('OMNOMNOMNOM I AM EATING {food}'.format(food=food))
self.hungry = False
def __str__(self):
anna_string = 'Name: {n}, Age: {a}, Cats:{c}'.format(
n=self.name, a=self.age, c=self.cats)
return anna_string
def give_birth(self):
new_person = Person('..........')
self.kids.append(new_person)
anna = Person(
name='Anna',
age=35,
cats=True,
beard=False,
hair_color='pink')
max = Person(
name='Max',
age=90,
cats=False,
beard=True,
hair_color='pink')
print(anna.name)
print('Anna is hungry: {h}'.format(h=anna.hungry))
# anna.hungry = False
anna.eat('banana')
print('Anna is hungry: {h}'.format(h=anna.hungry))
print(max.name)
print('Max is hungry: {h}'.format(h=max.hungry))
| anna = {'name': 'Anna', 'age': 35, 'cats': True, 'beard': False, 'hair_color': 'pink'}
ryan = dict(anna)
ryan['beard'] = True
ryan['hair_color'] = 'Brown'
ryan['name'] = 'Ryan'
ryan['cats'] = 'Nope!'
print(ryan)
print(anna)
class Person(object):
def __init__(self, name, age, cats, beard, hair_color=None, works_at_google=True):
self.name = name
self.age = age
self.cats = cats
self.beard = beard
self.hair_color = hair_color
self.googler = works_at_google
self.hungry = True
self.kids = []
def eat(self, food):
print('OMNOMNOMNOM I AM EATING {food}'.format(food=food))
self.hungry = False
def __str__(self):
anna_string = 'Name: {n}, Age: {a}, Cats:{c}'.format(n=self.name, a=self.age, c=self.cats)
return anna_string
def give_birth(self):
new_person = person('..........')
self.kids.append(new_person)
anna = person(name='Anna', age=35, cats=True, beard=False, hair_color='pink')
max = person(name='Max', age=90, cats=False, beard=True, hair_color='pink')
print(anna.name)
print('Anna is hungry: {h}'.format(h=anna.hungry))
anna.eat('banana')
print('Anna is hungry: {h}'.format(h=anna.hungry))
print(max.name)
print('Max is hungry: {h}'.format(h=max.hungry)) |
# PCB.py
#
#
# Author: Neha Karanjkar
# Date: 18 Oct 2017
class PCB:
creation_timestamp=0.0
def __init__(self, type_ID, serial_ID, creation_timestamp=0.0):
#A PCB has the following attributes:
self.type_ID=type_ID # type (used to infer dimensions, num of components etc)
self.serial_ID=serial_ID # a unique identifier for each PCB instance
self.creation_timestamp=creation_timestamp
def __str__(self):
return"PCB <type_ID="+str(self.type_ID)+", serial_ID="+str(self.serial_ID)+">"
| class Pcb:
creation_timestamp = 0.0
def __init__(self, type_ID, serial_ID, creation_timestamp=0.0):
self.type_ID = type_ID
self.serial_ID = serial_ID
self.creation_timestamp = creation_timestamp
def __str__(self):
return 'PCB <type_ID=' + str(self.type_ID) + ', serial_ID=' + str(self.serial_ID) + '>' |
x = object()
y = object()
x_list = [x] * 10
y_list = [y] * 10
big_list = x_list + y_list
print("x_list contains %d objects" % len(x_list))
print("y_list contains %d objects" % len(y_list))
print("big_list contains %d objects" % len(big_list))
if x_list.count(x) == 10 and y_list.count(y) == 10:
print("Almost there...")
if big_list.count(x) == 10 and big_list.count(y) == 10:
print("Great!")
| x = object()
y = object()
x_list = [x] * 10
y_list = [y] * 10
big_list = x_list + y_list
print('x_list contains %d objects' % len(x_list))
print('y_list contains %d objects' % len(y_list))
print('big_list contains %d objects' % len(big_list))
if x_list.count(x) == 10 and y_list.count(y) == 10:
print('Almost there...')
if big_list.count(x) == 10 and big_list.count(y) == 10:
print('Great!') |
#-*- coding:utf-8 -*-
class NoSuchClient(RuntimeError):
def __init__(self, arg):
self.args = (arg,) | class Nosuchclient(RuntimeError):
def __init__(self, arg):
self.args = (arg,) |
with open("FBres") as f:
raw = f.read()
res = raw.split("\\' \\'")
lst = []
for i, r in enumerate(res):
if i == 0 or i == len(res) - 1:
r = r.replace("\\'", "")
if i % 2 == 0:
dic = {}
if r != "_separator_":
resx, resy, aspect = r.split()
resx, resy, aspect = int(resx), int(resy), float(aspect)
dic["resx"] = resx
dic["resy"] = resy
dic["aspect"] = aspect
else:
dic["resx"] = None
dic["resy"] = None
dic["aspect"] = None
else:
if r != "---------":
dic["name"] = r
dic["isSeparator"] = False
else:
dic["name"] = None
dic["isSeparator"] = True
lst.append(dic)
| with open('FBres') as f:
raw = f.read()
res = raw.split("\\' \\'")
lst = []
for (i, r) in enumerate(res):
if i == 0 or i == len(res) - 1:
r = r.replace("\\'", '')
if i % 2 == 0:
dic = {}
if r != '_separator_':
(resx, resy, aspect) = r.split()
(resx, resy, aspect) = (int(resx), int(resy), float(aspect))
dic['resx'] = resx
dic['resy'] = resy
dic['aspect'] = aspect
else:
dic['resx'] = None
dic['resy'] = None
dic['aspect'] = None
else:
if r != '---------':
dic['name'] = r
dic['isSeparator'] = False
else:
dic['name'] = None
dic['isSeparator'] = True
lst.append(dic) |
def banner():
print("""
_ _ _ _
| |_ __ _ | |_ ___ | |_ (_)
| __|/ _` || __|/ _ \| __|| |
| |_| (_| || |_| __/| |_ | |
\__|\__,_| \__|\___| \__||_|
""")
def instructions():
print("""
#### Board Positions ####
(0,0) | (1,0) | (2,0)
--------------------------
(0,1) | (1,1) | (2,1)
--------------------------
(0,2) | (1,2) | (2,2)
""")
def new_player(players):
_ok = False
player = []
# player name
p_name = input("Player Name: ")
player.append(p_name)
# player type
while not _ok:
try:
p_type = int(input("Player type [0 = Human, 1 = Computer]: "))
if p_type == 1 or p_type == 0:
player.append(p_type)
_ok = True
else:
print("Insert a valid type!")
except Exception as e:
print("Insert a valid type!")
# player symbol
if len(players) != 0:
if players[0][2] == 0:
p_symbol = 1
else:
p_symbol = 0
player.append(p_symbol)
else:
_ok = False
while not _ok:
try:
p_symbol = int(input("Player symbol [0 = 'X', 1 = 'O']: "))
if p_symbol == 1 or p_symbol == 0:
player.append(p_symbol)
_ok = True
else:
print("Insert a valid symbol!")
except Exception as e:
print("Insert a valid symbol!")
# player difficulty if computer type
_ok = False
if p_type == 1:
while not _ok:
try:
p_difficulty = int(input("Player difficulty [0 = Easy, 1 = Difficult]: "))
if p_difficulty == 0:
player.append(p_difficulty)
_ok = True
elif p_difficulty == 1:
print("Difficulty level not yet developed. Choose another one!")
else:
print("Insert a valid difficulty!")
except Exception as e:
print("Insert a valid difficulty!")
return player
def play_again():
p_again = ''
while p_again.upper() != 'Y' and p_again.upper() != 'N':
p_again = input("Do you want to play again? [Y/N]")
if p_again.upper() == 'Y':
return True
else:
return False
| def banner():
print('\n _ _ _ _ \n | |_ __ _ | |_ ___ | |_ (_)\n | __|/ _` || __|/ _ \\| __|| |\n | |_| (_| || |_| __/| |_ | |\n \\__|\\__,_| \\__|\\___| \\__||_|\n \n ')
def instructions():
print('\n #### Board Positions ####\n \n (0,0) | (1,0) | (2,0)\n --------------------------\n (0,1) | (1,1) | (2,1) \n --------------------------\n (0,2) | (1,2) | (2,2)\n ')
def new_player(players):
_ok = False
player = []
p_name = input('Player Name: ')
player.append(p_name)
while not _ok:
try:
p_type = int(input('Player type [0 = Human, 1 = Computer]: '))
if p_type == 1 or p_type == 0:
player.append(p_type)
_ok = True
else:
print('Insert a valid type!')
except Exception as e:
print('Insert a valid type!')
if len(players) != 0:
if players[0][2] == 0:
p_symbol = 1
else:
p_symbol = 0
player.append(p_symbol)
else:
_ok = False
while not _ok:
try:
p_symbol = int(input("Player symbol [0 = 'X', 1 = 'O']: "))
if p_symbol == 1 or p_symbol == 0:
player.append(p_symbol)
_ok = True
else:
print('Insert a valid symbol!')
except Exception as e:
print('Insert a valid symbol!')
_ok = False
if p_type == 1:
while not _ok:
try:
p_difficulty = int(input('Player difficulty [0 = Easy, 1 = Difficult]: '))
if p_difficulty == 0:
player.append(p_difficulty)
_ok = True
elif p_difficulty == 1:
print('Difficulty level not yet developed. Choose another one!')
else:
print('Insert a valid difficulty!')
except Exception as e:
print('Insert a valid difficulty!')
return player
def play_again():
p_again = ''
while p_again.upper() != 'Y' and p_again.upper() != 'N':
p_again = input('Do you want to play again? [Y/N]')
if p_again.upper() == 'Y':
return True
else:
return False |
"""Cached evaluation of coefficients for Lagrange basis polynomials on the unit simplex.
"""
lagrange_basis_coefficients_cache = [
# n = 1
[
# r = 1
{
(0,): [1, -1],
(1,): [0, 1],
},
# r = 2
{
(0,): [1, -3, 2],
(1,): [0, 4, -4],
(2,): [0, -1, 2],
},
# r = 3
{
(0,): [1, -11 / 2, 9, -9 / 2],
(1,): [0, 9, -45 / 2, 27 / 2],
(2,): [0, -9 / 2, 18, -27 / 2],
(3,): [0, 1, -9 / 2, 9 / 2],
},
# r = 4
{
(0,): [1, -25 / 3, 70 / 3, -80 / 3, 32 / 3],
(1,): [0, 16, -208 / 3, 96, -128 / 3],
(2,): [0, -12, 76, -128, 64],
(3,): [0, 16 / 3, -112 / 3, 224 / 3, -128 / 3],
(4,): [0, -1, 22 / 3, -16, 32 / 3],
},
],
# n = 2
[
# r = 1
{
(0, 0): [1, -1, -1],
(1, 0): [0, 1, 0],
(0, 1): [0, 0, 1],
},
# r = 2
{
(0, 0): [1, -3, 2, -3, 4, 2],
(1, 0): [0, 4, -4, 0, -4, 0],
(2, 0): [0, -1, 2, 0, 0, 0],
(0, 1): [0, 0, 0, 4, -4, -4],
(1, 1): [0, 0, 0, 0, 4, 0],
(0, 2): [0, 0, 0, -1, 0, 2],
},
# r = 3
{
(0, 0): [1, -11 / 2, 9, -9 / 2, -11 / 2, 18, -27 / 2, 9, -27 / 2, -9 / 2],
(1, 0): [0, 9, -45 / 2, 27 / 2, 0, -45 / 2, 27, 0, 27 / 2, 0],
(2, 0): [0, -9 / 2, 18, -27 / 2, 0, 9 / 2, -27 / 2, 0, 0, 0],
(3, 0): [0, 1, -9 / 2, 9 / 2, 0, 0, 0, 0, 0, 0],
(0, 1): [0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2],
(1, 1): [0, 0, 0, 0, 0, 27, -27, 0, -27, 0],
(2, 1): [0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0],
(0, 2): [0, 0, 0, 0, -9 / 2, 9 / 2, 0, 18, -27 / 2, -27 / 2],
(1, 2): [0, 0, 0, 0, 0, -9 / 2, 0, 0, 27 / 2, 0],
(0, 3): [0, 0, 0, 0, 1, 0, 0, -9 / 2, 0, 9 / 2],
},
# r = 4
{
(0, 0): [1, -25 / 3, 70 / 3, -80 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 70 / 3, -80, 64, -80 / 3,
128 / 3, 32 / 3],
(1, 0): [0, 16, -208 / 3, 96, -128 / 3, 0, -208 / 3, 192, -128, 0, 96, -128, 0, -128 / 3, 0],
(2, 0): [0, -12, 76, -128, 64, 0, 28, -144, 128, 0, -16, 64, 0, 0, 0],
(3, 0): [0, 16 / 3, -112 / 3, 224 / 3, -128 / 3, 0, -16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0],
(4, 0): [0, -1, 22 / 3, -16, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1): [0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3],
(1, 1): [0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0],
(2, 1): [0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0],
(3, 1): [0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0],
(0, 2): [0, 0, 0, 0, 0, -12, 28, -16, 0, 76, -144, 64, -128, 128, 64],
(1, 2): [0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 160, -128, 0, -128, 0],
(2, 2): [0, 0, 0, 0, 0, 0, 4, -16, 0, 0, -16, 64, 0, 0, 0],
(0, 3): [0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -112 / 3, 32, 0, 224 / 3, -128 / 3, -128 / 3],
(1, 3): [0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, -32, 0, 0, 128 / 3, 0],
(0, 4): [0, 0, 0, 0, 0, -1, 0, 0, 0, 22 / 3, 0, 0, -16, 0, 32 / 3],
},
],
# n = 3
[
# r = 1
{
(0, 0, 0): [1, -1, -1, -1],
(1, 0, 0): [0, 1, 0, 0],
(0, 1, 0): [0, 0, 1, 0],
(0, 0, 1): [0, 0, 0, 1],
},
# r = 2
{
(0, 0, 0): [1, -3, 2, -3, 4, 2, -3, 4, 4, 2],
(1, 0, 0): [0, 4, -4, 0, -4, 0, 0, -4, 0, 0],
(2, 0, 0): [0, -1, 2, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 0): [0, 0, 0, 4, -4, -4, 0, 0, -4, 0],
(1, 1, 0): [0, 0, 0, 0, 4, 0, 0, 0, 0, 0],
(0, 2, 0): [0, 0, 0, -1, 0, 2, 0, 0, 0, 0],
(0, 0, 1): [0, 0, 0, 0, 0, 0, 4, -4, -4, -4],
(1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 4, 0, 0],
(0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 4, 0],
(0, 0, 2): [0, 0, 0, 0, 0, 0, -1, 0, 0, 2],
},
# r = 3
{
(0, 0, 0): [1, -11 / 2, 9, -9 / 2, -11 / 2, 18, -27 / 2, 9, -27 / 2, -9 / 2, -11 / 2, 18, -27 / 2, 18, -27,
-27 / 2, 9, -27 / 2, -27 / 2, -9 / 2],
(1, 0, 0): [0, 9, -45 / 2, 27 / 2, 0, -45 / 2, 27, 0, 27 / 2, 0, 0, -45 / 2, 27, 0, 27, 0, 0, 27 / 2, 0, 0],
(2, 0, 0): [0, -9 / 2, 18, -27 / 2, 0, 9 / 2, -27 / 2, 0, 0, 0, 0, 9 / 2, -27 / 2, 0, 0, 0, 0, 0, 0, 0],
(3, 0, 0): [0, 1, -9 / 2, 9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 0): [0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2, 0, 0, 0, -45 / 2, 27, 27, 0, 0, 27 / 2, 0],
(1, 1, 0): [0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, 0],
(2, 1, 0): [0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 2, 0): [0, 0, 0, 0, -9 / 2, 9 / 2, 0, 18, -27 / 2, -27 / 2, 0, 0, 0, 9 / 2, 0, -27 / 2, 0, 0, 0, 0],
(1, 2, 0): [0, 0, 0, 0, 0, -9 / 2, 0, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 3, 0): [0, 0, 0, 0, 1, 0, 0, -9 / 2, 0, 9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2, -45 / 2, 27, 27, 27 / 2],
(1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, -27, 0, 0],
(2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, -27, 0, 0, -27, 0],
(1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0],
(0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 27 / 2, 0, 0, 0, 0],
(0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 9 / 2, 0, 9 / 2, 0, 0, 18, -27 / 2, -27 / 2, -27 / 2],
(1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 0, 27 / 2, 0, 0],
(0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 27 / 2, 0],
(0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 9 / 2],
},
# r = 4
{
(0, 0, 0): [1, -25 / 3, 70 / 3, -80 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 70 / 3, -80, 64, -80 / 3,
128 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 140 / 3, -160, 128, -80, 128, 128 / 3, 70 / 3,
-80, 64, -80, 128, 64, -80 / 3, 128 / 3, 128 / 3, 32 / 3],
(1, 0, 0): [0, 16, -208 / 3, 96, -128 / 3, 0, -208 / 3, 192, -128, 0, 96, -128, 0, -128 / 3, 0, 0, -208 / 3,
192, -128, 0, 192, -256, 0, -128, 0, 0, 96, -128, 0, -128, 0, 0, -128 / 3, 0, 0],
(2, 0, 0): [0, -12, 76, -128, 64, 0, 28, -144, 128, 0, -16, 64, 0, 0, 0, 0, 28, -144, 128, 0, -32, 128,
0, 0, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0],
(3, 0, 0): [0, 16 / 3, -112 / 3, 224 / 3, -128 / 3, 0, -16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0, 0, -16 / 3,
32, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(4, 0, 0): [0, -1, 22 / 3, -16, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 0): [0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3, 0, 0, 0, 0,
-208 / 3, 192, -128, 192, -256, -128, 0, 0, 0, 96, -128, -128, 0, 0, -128 / 3, 0],
(1, 1, 0): [0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0, 0, 0, 0, 0, -224, 256, 0, 256, 0,
0, 0, 0, 0, 128, 0, 0, 0, 0, 0],
(2, 1, 0): [0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(3, 1, 0): [0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0],
(0, 2, 0): [0, 0, 0, 0, 0, -12, 28, -16, 0, 76, -144, 64, -128, 128, 64, 0, 0, 0, 0, 28, -32, 0, -144, 128,
128, 0, 0, 0, -16, 0, 64, 0, 0, 0, 0],
(1, 2, 0): [0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 160, -128, 0, -128, 0, 0, 0, 0, 0, 0, 32, 0, 0, -128,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(2, 2, 0): [0, 0, 0, 0, 0, 0, 4, -16, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0],
(0, 3, 0): [0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -112 / 3, 32, 0, 224 / 3, -128 / 3, -128 / 3, 0, 0, 0, 0,
-16 / 3, 0, 0, 32, 0, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(1, 3, 0): [0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, -32, 0, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0],
(0, 4, 0): [0, 0, 0, 0, 0, -1, 0, 0, 0, 22 / 3, 0, 0, -16, 0, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0],
(0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128,
96, -128, -128 / 3, -208 / 3, 192, -128, 192, -256, -128, 96, -128, -128, -128 / 3],
(1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0, -224,
256, 0, 256, 0, 0, 128, 0, 0],
(2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0, 32,
-128, 0, 0, 0, 0, 0, 0, 0],
(3, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, -224, 256, 128, 0, 0,
0, -224, 256, 256, 0, 0, 128, 0],
(1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, 0, -256, 0, 0, 0, 0, 0,
-256, 0, 0, 0, 0, 0],
(2, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0],
(0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 160, -128, -128, 0, 0, 0,
32, 0, -128, 0, 0, 0, 0],
(1, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0],
(0, 3, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, -32, 0, 128 / 3, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0],
(0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 28, -16, 0, 28, -32, 0, -16, 0, 0, 76, -144,
64, -144, 128, 64, -128, 128, 128, 64],
(1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 32, 0, 0, 0, 0, 0, 160, -128, 0,
-128, 0, 0, -128, 0, 0],
(2, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, -16, 64, 0, 0,
0, 0, 0, 0, 0],
(0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 0, 0, 0, 160,
-128, -128, 0, 0, -128, 0],
(1, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 128,
0, 0, 0, 0, 0],
(0, 2, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -16, 0, 0, 0, 0, 0, -16, 0,
64, 0, 0, 0, 0],
(0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -16 / 3, 0, 0, 0, 0, 0,
-112 / 3, 32, 0, 32, 0, 0, 224 / 3, -128 / 3, -128 / 3, -128 / 3],
(1, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0,
0, 0, 0, 128 / 3, 0, 0],
(0, 1, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0,
0, 0, 0, 128 / 3, 0],
(0, 0, 4): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22 / 3, 0, 0, 0, 0,
0, -16, 0, 0, 32 / 3],
},
],
# n = 4
[
# r = 1
{
(0, 0, 0, 0): [1, -1, -1, -1, -1],
(1, 0, 0, 0): [0, 1, 0, 0, 0],
(0, 1, 0, 0): [0, 0, 1, 0, 0],
(0, 0, 1, 0): [0, 0, 0, 1, 0],
(0, 0, 0, 1): [0, 0, 0, 0, 1],
},
# r = 2
{
(0, 0, 0, 0): [1, -3, 2, -3, 4, 2, -3, 4, 4, 2, -3, 4, 4, 4, 2],
(1, 0, 0, 0): [0, 4, -4, 0, -4, 0, 0, -4, 0, 0, 0, -4, 0, 0, 0],
(2, 0, 0, 0): [0, -1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 0, 0): [0, 0, 0, 4, -4, -4, 0, 0, -4, 0, 0, 0, -4, 0, 0],
(1, 1, 0, 0): [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 2, 0, 0): [0, 0, 0, -1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 1, 0): [0, 0, 0, 0, 0, 0, 4, -4, -4, -4, 0, 0, 0, -4, 0],
(1, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0],
(0, 0, 2, 0): [0, 0, 0, 0, 0, 0, -1, 0, 0, 2, 0, 0, 0, 0, 0],
(0, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -4, -4, -4, -4],
(1, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0],
(0, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0],
(0, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0],
(0, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 2],
},
# r = 3
{
(0, 0, 0, 0): [1, -11 / 2, 9, -9 / 2, -11 / 2, 18, -27 / 2, 9, -27 / 2, -9 / 2, -11 / 2, 18, -27 / 2, 18,
-27, -27 / 2, 9, -27 / 2, -27 / 2, -9 / 2, -11 / 2, 18, -27 / 2, 18, -27, -27 / 2, 18, -27,
-27, -27 / 2, 9, -27 / 2, -27 / 2, -27 / 2, -9 / 2],
(1, 0, 0, 0): [0, 9, -45 / 2, 27 / 2, 0, -45 / 2, 27, 0, 27 / 2, 0, 0, -45 / 2, 27, 0, 27, 0, 0, 27 / 2,
0, 0, 0, -45 / 2, 27, 0, 27, 0, 0, 27, 0, 0, 0, 27 / 2, 0, 0, 0],
(2, 0, 0, 0): [0, -9 / 2, 18, -27 / 2, 0, 9 / 2, -27 / 2, 0, 0, 0, 0, 9 / 2, -27 / 2, 0, 0, 0, 0, 0, 0, 0,
0, 9 / 2, -27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(3, 0, 0, 0): [0, 1, -9 / 2, 9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 0, 0): [0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2, 0, 0, 0, -45 / 2, 27, 27, 0, 0,
27 / 2, 0, 0, 0, 0, -45 / 2, 27, 27, 0, 0, 27, 0, 0, 0, 27 / 2, 0, 0],
(1, 1, 0, 0): [0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(2, 1, 0, 0): [0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 2, 0, 0): [0, 0, 0, 0, -9 / 2, 9 / 2, 0, 18, -27 / 2, -27 / 2, 0, 0, 0, 9 / 2, 0, -27 / 2, 0, 0, 0, 0,
0, 0, 0, 9 / 2, 0, -27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(1, 2, 0, 0): [0, 0, 0, 0, 0, -9 / 2, 0, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 3, 0, 0): [0, 0, 0, 0, 1, 0, 0, -9 / 2, 0, 9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2, -45 / 2, 27, 27,
27 / 2, 0, 0, 0, 0, 0, 0, -45 / 2, 27, 27, 27, 0, 0, 0, 27 / 2, 0],
(1, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-27, 0, 0, 0, 0, 0, 0, 0],
(2, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, -27, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-27, 0, 0, 0, 0, 0, 0],
(1, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0],
(0, 2, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 9 / 2, 0, 9 / 2, 0, 0, 18, -27 / 2, -27 / 2, -27 / 2,
0, 0, 0, 0, 0, 0, 9 / 2, 0, 0, -27 / 2, 0, 0, 0, 0, 0],
(1, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 3, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 9 / 2, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2,
27, 27 / 2, -45 / 2, 27, 27, 27 / 2, -45 / 2, 27, 27, 27, 27 / 2],
(1, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, -27,
0, 0, 0, -27, 0, 0, 0],
(2, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, -27, 0, 0,
-27, 0, 0, 0, -27, 0, 0],
(1, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0],
(0, 2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 27 / 2, 0,
0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, -27,
-27, 0, 0, 0, -27, 0],
(1, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0,
0, 0, 0, 0, 0],
(0, 1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0,
0, 0, 0, 0, 0],
(0, 0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0,
27 / 2, 0, 0, 0, 0, 0],
(0, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 9 / 2, 0, 9 / 2, 0, 0,
9 / 2, 0, 0, 0, 18, -27 / 2, -27 / 2, -27 / 2, -27 / 2],
(1, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 0, 0, 0,
0, 0, 27 / 2, 0, 0, 0],
(0, 1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 0,
0, 0, 0, 27 / 2, 0, 0],
(0, 0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0,
0, 0, 0, 0, 27 / 2, 0],
(0, 0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-9 / 2, 0, 0, 0, 9 / 2],
},
# r = 4
{
(0, 0, 0, 0): [1, -25 / 3, 70 / 3, -80 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 70 / 3, -80, 64,
-80 / 3, 128 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 140 / 3, -160, 128, -80, 128,
128 / 3, 70 / 3, -80, 64, -80, 128, 64, -80 / 3, 128 / 3, 128 / 3, 32 / 3, -25 / 3, 140 / 3,
-80, 128 / 3, 140 / 3, -160, 128, -80, 128, 128 / 3, 140 / 3, -160, 128, -160, 256, 128,
-80, 128, 128, 128 / 3, 70 / 3, -80, 64, -80, 128, 64, -80, 128, 128, 64, -80 / 3, 128 / 3,
128 / 3, 128 / 3, 32 / 3],
(1, 0, 0, 0): [0, 16, -208 / 3, 96, -128 / 3, 0, -208 / 3, 192, -128, 0, 96, -128, 0, -128 / 3, 0, 0,
-208 / 3, 192, -128, 0, 192, -256, 0, -128, 0, 0, 96, -128, 0, -128, 0, 0, -128 / 3, 0, 0,
0, -208 / 3, 192, -128, 0, 192, -256, 0, -128, 0, 0, 192, -256, 0, -256, 0, 0, -128, 0, 0,
0, 96, -128, 0, -128, 0, 0, -128, 0, 0, 0, -128 / 3, 0, 0, 0],
(2, 0, 0, 0): [0, -12, 76, -128, 64, 0, 28, -144, 128, 0, -16, 64, 0, 0, 0, 0, 28, -144, 128, 0, -32, 128,
0, 0, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 28, -144, 128, 0, -32, 128, 0, 0, 0, 0, -32,
128, 0, 0, 0, 0, 0, 0, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(3, 0, 0, 0): [0, 16 / 3, -112 / 3, 224 / 3, -128 / 3, 0, -16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0, 0,
-16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16 / 3, 32,
-128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0],
(4, 0, 0, 0): [0, -1, 22 / 3, -16, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 0, 0): [0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3, 0, 0,
0, 0, -208 / 3, 192, -128, 192, -256, -128, 0, 0, 0, 96, -128, -128, 0, 0, -128 / 3, 0, 0,
0, 0, 0, -208 / 3, 192, -128, 192, -256, -128, 0, 0, 0, 192, -256, -256, 0, 0, -128, 0, 0,
0, 0, 96, -128, -128, 0, 0, -128, 0, 0, 0, -128 / 3, 0, 0],
(1, 1, 0, 0): [0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0, 0, 0, 0, 0, -224, 256, 0, 256,
0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -224, 256, 0, 256, 0, 0, 0, 0, 0, 256, 0,
0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(2, 1, 0, 0): [0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 32, -128, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(3, 1, 0, 0): [0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 2, 0, 0): [0, 0, 0, 0, 0, -12, 28, -16, 0, 76, -144, 64, -128, 128, 64, 0, 0, 0, 0, 28, -32, 0, -144,
128, 128, 0, 0, 0, -16, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 28, -32, 0, -144, 128, 128, 0, 0, 0,
-32, 0, 128, 0, 0, 0, 0, 0, 0, 0, -16, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(1, 2, 0, 0): [0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 160, -128, 0, -128, 0, 0, 0, 0, 0, 0, 32, 0, 0, -128, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(2, 2, 0, 0): [0, 0, 0, 0, 0, 0, 4, -16, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 3, 0, 0): [0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -112 / 3, 32, 0, 224 / 3, -128 / 3, -128 / 3, 0, 0,
0, 0, -16 / 3, 0, 0, 32, 0, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16 / 3, 0,
0, 32, 0, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0],
(1, 3, 0, 0): [0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, -32, 0, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 4, 0, 0): [0, 0, 0, 0, 0, -1, 0, 0, 0, 22 / 3, 0, 0, -16, 0, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192,
-128, 96, -128, -128 / 3, -208 / 3, 192, -128, 192, -256, -128, 96, -128, -128, -128 / 3, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, -208 / 3, 192, -128, 192, -256, -128, 192, -256, -256, -128, 0,
0, 0, 0, 0, 0, 96, -128, -128, -128, 0, 0, 0, -128 / 3, 0],
(1, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0,
-224, 256, 0, 256, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -224, 256, 0, 256, 0,
0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0],
(2, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0,
32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(3, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, -224, 256, 128, 0,
0, 0, -224, 256, 256, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -224, 256, 256,
0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0],
(1, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, 0, -256, 0, 0, 0, 0,
0, -256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(2, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 128, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 2, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 160, -128, -128, 0, 0,
0, 32, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, -128, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(1, 2, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 128, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 3, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, -32, 0, 128 / 3, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 28, -16, 0, 28, -32, 0, -16, 0, 0, 76,
-144, 64, -144, 128, 64, -128, 128, 128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, -32, 0, -32,
0, 0, -144, 128, 128, 128, 0, 0, 0, 0, 0, 0, -16, 0, 0, 64, 0, 0, 0, 0, 0],
(1, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 32, 0, 0, 0, 0, 0, 160,
-128, 0, -128, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, -128,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(2, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, -16, 64, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 0, 0, 0,
160, -128, -128, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, -128,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(1, 1, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0,
128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 2, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -16, 0, 0, 0, 0, 0, -16,
0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 3, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -16 / 3, 0, 0, 0, 0, 0,
-112 / 3, 32, 0, 32, 0, 0, 224 / 3, -128 / 3, -128 / 3, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, -16 / 3, 0, 0, 0, 0, 0, 32, 0, 0, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(1, 0, 3, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0,
0, 0, 0, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 3, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0,
-32, 0, 0, 0, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 4, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22 / 3, 0, 0,
0, 0, 0, -16, 0, 0, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3,
-208 / 3, 192, -128, 192, -256, -128, 96, -128, -128, -128 / 3, -208 / 3, 192, -128, 192,
-256, -128, 192, -256, -256, -128, 96, -128, -128, -128, -128 / 3],
(1, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0, -224, 256, 0, 256, 0, 0, 128,
0, 0, 0, -224, 256, 0, 256, 0, 0, 256, 0, 0, 0, 128, 0, 0, 0],
(2, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0,
32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(3, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, -224, 256, 128, 0, 0, 0, -224, 256, 256, 0, 0,
128, 0, 0, 0, 0, -224, 256, 256, 0, 0, 256, 0, 0, 0, 128, 0, 0],
(1, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, 0, -256, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0,
0, 0, -256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(2, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 160, -128, -128, 0, 0, 0, 32, 0, -128, 0, 0, 0, 0, 0,
0, 0, 32, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(1, 2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 3, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, -32, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, -224, 256, 128, -224, 256, 256,
128, 0, 0, 0, 0, 0, 0, -224, 256, 256, 256, 0, 0, 0, 128, 0],
(1, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, 0, -256, 0, 0, -256, 0, 0, 0, 0,
0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0],
(2, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, -256, 0, 0, -256, 0, 0, 0,
0, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0],
(1, 1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 2, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 160, -128, -128, -128, 0,
0, 0, 0, 0, 0, 32, 0, 0, -128, 0, 0, 0, 0, 0],
(1, 0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 3, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, -32, 0, 0, 128 / 3, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -12, 28, -16, 0, 28, -32, 0, -16, 0, 0, 28, -32, 0, -32, 0, 0, -16, 0, 0, 0,
76, -144, 64, -144, 128, 64, -144, 128, 128, 64, -128, 128, 128, 128, 64],
(1, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 32, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160,
-128, 0, -128, 0, 0, -128, 0, 0, 0, -128, 0, 0, 0],
(2, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 64, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0,
160, -128, -128, 0, 0, -128, 0, 0, 0, -128, 0, 0],
(1, 1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 2, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16,
0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0],
(0, 0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0,
0, 0, 160, -128, -128, -128, 0, 0, 0, -128, 0],
(1, 0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 128, 0, 0, 0, 0, 0, 0, 0],
(0, 1, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 128, 0, 0, 0, 0, 0, 0],
(0, 0, 2, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0,
0, -16, 0, 0, 64, 0, 0, 0, 0, 0],
(0, 0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -16 / 3, 0, 0, 0, 0, 0, -16 / 3, 0, 0, 0, 0, 0, 0, 0,
0, 0, -112 / 3, 32, 0, 32, 0, 0, 32, 0, 0, 0, 224 / 3, -128 / 3, -128 / 3, -128 / 3,
-128 / 3],
(1, 0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0,
0, 0, 0, 0, 0, 0, 0, 0, 128 / 3, 0, 0, 0],
(0, 1, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-32, 0, 0, 0, 0, 0, 0, 0, 0, 128 / 3, 0, 0],
(0, 0, 1, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -32, 0, 0, 0, 0, 0, 0, 128 / 3, 0],
(0, 0, 0, 4): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22 / 3, 0, 0, 0,
0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 32 / 3],
},
],
]
| """Cached evaluation of coefficients for Lagrange basis polynomials on the unit simplex.
"""
lagrange_basis_coefficients_cache = [[{(0,): [1, -1], (1,): [0, 1]}, {(0,): [1, -3, 2], (1,): [0, 4, -4], (2,): [0, -1, 2]}, {(0,): [1, -11 / 2, 9, -9 / 2], (1,): [0, 9, -45 / 2, 27 / 2], (2,): [0, -9 / 2, 18, -27 / 2], (3,): [0, 1, -9 / 2, 9 / 2]}, {(0,): [1, -25 / 3, 70 / 3, -80 / 3, 32 / 3], (1,): [0, 16, -208 / 3, 96, -128 / 3], (2,): [0, -12, 76, -128, 64], (3,): [0, 16 / 3, -112 / 3, 224 / 3, -128 / 3], (4,): [0, -1, 22 / 3, -16, 32 / 3]}], [{(0, 0): [1, -1, -1], (1, 0): [0, 1, 0], (0, 1): [0, 0, 1]}, {(0, 0): [1, -3, 2, -3, 4, 2], (1, 0): [0, 4, -4, 0, -4, 0], (2, 0): [0, -1, 2, 0, 0, 0], (0, 1): [0, 0, 0, 4, -4, -4], (1, 1): [0, 0, 0, 0, 4, 0], (0, 2): [0, 0, 0, -1, 0, 2]}, {(0, 0): [1, -11 / 2, 9, -9 / 2, -11 / 2, 18, -27 / 2, 9, -27 / 2, -9 / 2], (1, 0): [0, 9, -45 / 2, 27 / 2, 0, -45 / 2, 27, 0, 27 / 2, 0], (2, 0): [0, -9 / 2, 18, -27 / 2, 0, 9 / 2, -27 / 2, 0, 0, 0], (3, 0): [0, 1, -9 / 2, 9 / 2, 0, 0, 0, 0, 0, 0], (0, 1): [0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2], (1, 1): [0, 0, 0, 0, 0, 27, -27, 0, -27, 0], (2, 1): [0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0], (0, 2): [0, 0, 0, 0, -9 / 2, 9 / 2, 0, 18, -27 / 2, -27 / 2], (1, 2): [0, 0, 0, 0, 0, -9 / 2, 0, 0, 27 / 2, 0], (0, 3): [0, 0, 0, 0, 1, 0, 0, -9 / 2, 0, 9 / 2]}, {(0, 0): [1, -25 / 3, 70 / 3, -80 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 70 / 3, -80, 64, -80 / 3, 128 / 3, 32 / 3], (1, 0): [0, 16, -208 / 3, 96, -128 / 3, 0, -208 / 3, 192, -128, 0, 96, -128, 0, -128 / 3, 0], (2, 0): [0, -12, 76, -128, 64, 0, 28, -144, 128, 0, -16, 64, 0, 0, 0], (3, 0): [0, 16 / 3, -112 / 3, 224 / 3, -128 / 3, 0, -16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0], (4, 0): [0, -1, 22 / 3, -16, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1): [0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3], (1, 1): [0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0], (2, 1): [0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0], (3, 1): [0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0], (0, 2): [0, 0, 0, 0, 0, -12, 28, -16, 0, 76, -144, 64, -128, 128, 64], (1, 2): [0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 160, -128, 0, -128, 0], (2, 2): [0, 0, 0, 0, 0, 0, 4, -16, 0, 0, -16, 64, 0, 0, 0], (0, 3): [0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -112 / 3, 32, 0, 224 / 3, -128 / 3, -128 / 3], (1, 3): [0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, -32, 0, 0, 128 / 3, 0], (0, 4): [0, 0, 0, 0, 0, -1, 0, 0, 0, 22 / 3, 0, 0, -16, 0, 32 / 3]}], [{(0, 0, 0): [1, -1, -1, -1], (1, 0, 0): [0, 1, 0, 0], (0, 1, 0): [0, 0, 1, 0], (0, 0, 1): [0, 0, 0, 1]}, {(0, 0, 0): [1, -3, 2, -3, 4, 2, -3, 4, 4, 2], (1, 0, 0): [0, 4, -4, 0, -4, 0, 0, -4, 0, 0], (2, 0, 0): [0, -1, 2, 0, 0, 0, 0, 0, 0, 0], (0, 1, 0): [0, 0, 0, 4, -4, -4, 0, 0, -4, 0], (1, 1, 0): [0, 0, 0, 0, 4, 0, 0, 0, 0, 0], (0, 2, 0): [0, 0, 0, -1, 0, 2, 0, 0, 0, 0], (0, 0, 1): [0, 0, 0, 0, 0, 0, 4, -4, -4, -4], (1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 4, 0, 0], (0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 4, 0], (0, 0, 2): [0, 0, 0, 0, 0, 0, -1, 0, 0, 2]}, {(0, 0, 0): [1, -11 / 2, 9, -9 / 2, -11 / 2, 18, -27 / 2, 9, -27 / 2, -9 / 2, -11 / 2, 18, -27 / 2, 18, -27, -27 / 2, 9, -27 / 2, -27 / 2, -9 / 2], (1, 0, 0): [0, 9, -45 / 2, 27 / 2, 0, -45 / 2, 27, 0, 27 / 2, 0, 0, -45 / 2, 27, 0, 27, 0, 0, 27 / 2, 0, 0], (2, 0, 0): [0, -9 / 2, 18, -27 / 2, 0, 9 / 2, -27 / 2, 0, 0, 0, 0, 9 / 2, -27 / 2, 0, 0, 0, 0, 0, 0, 0], (3, 0, 0): [0, 1, -9 / 2, 9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 0): [0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2, 0, 0, 0, -45 / 2, 27, 27, 0, 0, 27 / 2, 0], (1, 1, 0): [0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, 0], (2, 1, 0): [0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 0): [0, 0, 0, 0, -9 / 2, 9 / 2, 0, 18, -27 / 2, -27 / 2, 0, 0, 0, 9 / 2, 0, -27 / 2, 0, 0, 0, 0], (1, 2, 0): [0, 0, 0, 0, 0, -9 / 2, 0, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 3, 0): [0, 0, 0, 0, 1, 0, 0, -9 / 2, 0, 9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2, -45 / 2, 27, 27, 27 / 2], (1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, -27, 0, 0], (2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0, 0, 0, 0], (0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, -27, 0, 0, -27, 0], (1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0], (0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 27 / 2, 0, 0, 0, 0], (0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 9 / 2, 0, 9 / 2, 0, 0, 18, -27 / 2, -27 / 2, -27 / 2], (1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 0, 27 / 2, 0, 0], (0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 27 / 2, 0], (0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 9 / 2]}, {(0, 0, 0): [1, -25 / 3, 70 / 3, -80 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 70 / 3, -80, 64, -80 / 3, 128 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 140 / 3, -160, 128, -80, 128, 128 / 3, 70 / 3, -80, 64, -80, 128, 64, -80 / 3, 128 / 3, 128 / 3, 32 / 3], (1, 0, 0): [0, 16, -208 / 3, 96, -128 / 3, 0, -208 / 3, 192, -128, 0, 96, -128, 0, -128 / 3, 0, 0, -208 / 3, 192, -128, 0, 192, -256, 0, -128, 0, 0, 96, -128, 0, -128, 0, 0, -128 / 3, 0, 0], (2, 0, 0): [0, -12, 76, -128, 64, 0, 28, -144, 128, 0, -16, 64, 0, 0, 0, 0, 28, -144, 128, 0, -32, 128, 0, 0, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0], (3, 0, 0): [0, 16 / 3, -112 / 3, 224 / 3, -128 / 3, 0, -16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0, 0, -16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (4, 0, 0): [0, -1, 22 / 3, -16, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 0): [0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3, 0, 0, 0, 0, -208 / 3, 192, -128, 192, -256, -128, 0, 0, 0, 96, -128, -128, 0, 0, -128 / 3, 0], (1, 1, 0): [0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0, 0, 0, 0, 0, -224, 256, 0, 256, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0], (2, 1, 0): [0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (3, 1, 0): [0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 0): [0, 0, 0, 0, 0, -12, 28, -16, 0, 76, -144, 64, -128, 128, 64, 0, 0, 0, 0, 28, -32, 0, -144, 128, 128, 0, 0, 0, -16, 0, 64, 0, 0, 0, 0], (1, 2, 0): [0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 160, -128, 0, -128, 0, 0, 0, 0, 0, 0, 32, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (2, 2, 0): [0, 0, 0, 0, 0, 0, 4, -16, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 3, 0): [0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -112 / 3, 32, 0, 224 / 3, -128 / 3, -128 / 3, 0, 0, 0, 0, -16 / 3, 0, 0, 32, 0, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (1, 3, 0): [0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, -32, 0, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 4, 0): [0, 0, 0, 0, 0, -1, 0, 0, 0, 22 / 3, 0, 0, -16, 0, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3, -208 / 3, 192, -128, 192, -256, -128, 96, -128, -128, -128 / 3], (1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0, -224, 256, 0, 256, 0, 0, 128, 0, 0], (2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0], (3, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, -224, 256, 128, 0, 0, 0, -224, 256, 256, 0, 0, 128, 0], (1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, 0, -256, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0], (2, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 160, -128, -128, 0, 0, 0, 32, 0, -128, 0, 0, 0, 0], (1, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 3, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, -32, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 28, -16, 0, 28, -32, 0, -16, 0, 0, 76, -144, 64, -144, 128, 64, -128, 128, 128, 64], (1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 32, 0, 0, 0, 0, 0, 160, -128, 0, -128, 0, 0, -128, 0, 0], (2, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0], (0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 0, 0, 0, 160, -128, -128, 0, 0, -128, 0], (1, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0], (0, 2, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -16, 0, 0, 0, 0, 0, -16, 0, 64, 0, 0, 0, 0], (0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -16 / 3, 0, 0, 0, 0, 0, -112 / 3, 32, 0, 32, 0, 0, 224 / 3, -128 / 3, -128 / 3, -128 / 3], (1, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 128 / 3, 0, 0], (0, 1, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 128 / 3, 0], (0, 0, 4): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22 / 3, 0, 0, 0, 0, 0, -16, 0, 0, 32 / 3]}], [{(0, 0, 0, 0): [1, -1, -1, -1, -1], (1, 0, 0, 0): [0, 1, 0, 0, 0], (0, 1, 0, 0): [0, 0, 1, 0, 0], (0, 0, 1, 0): [0, 0, 0, 1, 0], (0, 0, 0, 1): [0, 0, 0, 0, 1]}, {(0, 0, 0, 0): [1, -3, 2, -3, 4, 2, -3, 4, 4, 2, -3, 4, 4, 4, 2], (1, 0, 0, 0): [0, 4, -4, 0, -4, 0, 0, -4, 0, 0, 0, -4, 0, 0, 0], (2, 0, 0, 0): [0, -1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 0, 0): [0, 0, 0, 4, -4, -4, 0, 0, -4, 0, 0, 0, -4, 0, 0], (1, 1, 0, 0): [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 0, 0): [0, 0, 0, -1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 1, 0): [0, 0, 0, 0, 0, 0, 4, -4, -4, -4, 0, 0, 0, -4, 0], (1, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], (0, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], (0, 0, 2, 0): [0, 0, 0, 0, 0, 0, -1, 0, 0, 2, 0, 0, 0, 0, 0], (0, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -4, -4, -4, -4], (1, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], (0, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], (0, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], (0, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 2]}, {(0, 0, 0, 0): [1, -11 / 2, 9, -9 / 2, -11 / 2, 18, -27 / 2, 9, -27 / 2, -9 / 2, -11 / 2, 18, -27 / 2, 18, -27, -27 / 2, 9, -27 / 2, -27 / 2, -9 / 2, -11 / 2, 18, -27 / 2, 18, -27, -27 / 2, 18, -27, -27, -27 / 2, 9, -27 / 2, -27 / 2, -27 / 2, -9 / 2], (1, 0, 0, 0): [0, 9, -45 / 2, 27 / 2, 0, -45 / 2, 27, 0, 27 / 2, 0, 0, -45 / 2, 27, 0, 27, 0, 0, 27 / 2, 0, 0, 0, -45 / 2, 27, 0, 27, 0, 0, 27, 0, 0, 0, 27 / 2, 0, 0, 0], (2, 0, 0, 0): [0, -9 / 2, 18, -27 / 2, 0, 9 / 2, -27 / 2, 0, 0, 0, 0, 9 / 2, -27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 9 / 2, -27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (3, 0, 0, 0): [0, 1, -9 / 2, 9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 0, 0): [0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2, 0, 0, 0, -45 / 2, 27, 27, 0, 0, 27 / 2, 0, 0, 0, 0, -45 / 2, 27, 27, 0, 0, 27, 0, 0, 0, 27 / 2, 0, 0], (1, 1, 0, 0): [0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (2, 1, 0, 0): [0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 0, 0): [0, 0, 0, 0, -9 / 2, 9 / 2, 0, 18, -27 / 2, -27 / 2, 0, 0, 0, 9 / 2, 0, -27 / 2, 0, 0, 0, 0, 0, 0, 0, 9 / 2, 0, -27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], (1, 2, 0, 0): [0, 0, 0, 0, 0, -9 / 2, 0, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 3, 0, 0): [0, 0, 0, 0, 1, 0, 0, -9 / 2, 0, 9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2, -45 / 2, 27, 27, 27 / 2, 0, 0, 0, 0, 0, 0, -45 / 2, 27, 27, 27, 0, 0, 0, 27 / 2, 0], (1, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0], (2, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, -27, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, 0, 0], (1, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 9 / 2, 0, 9 / 2, 0, 0, 18, -27 / 2, -27 / 2, -27 / 2, 0, 0, 0, 0, 0, 0, 9 / 2, 0, 0, -27 / 2, 0, 0, 0, 0, 0], (1, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 3, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -45 / 2, 27 / 2, -45 / 2, 27, 27 / 2, -45 / 2, 27, 27, 27 / 2, -45 / 2, 27, 27, 27, 27 / 2], (1, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, 0, -27, 0, 0, -27, 0, 0, 0, -27, 0, 0, 0], (2, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, -27, 0, 0, -27, 0, 0, 0, -27, 0, 0], (1, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 27 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -27, -27, -27, 0, 0, 0, -27, 0], (1, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0], (0, 1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0], (0, 0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 27 / 2, 0, 0, 0, 0, 0], (0, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 9 / 2, 0, 9 / 2, 0, 0, 9 / 2, 0, 0, 0, 18, -27 / 2, -27 / 2, -27 / 2, -27 / 2], (1, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27 / 2, 0, 0, 0], (0, 1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 0, 0, 0, 0, 27 / 2, 0, 0], (0, 0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 0, 0, 0, 27 / 2, 0], (0, 0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9 / 2, 0, 0, 0, 9 / 2]}, {(0, 0, 0, 0): [1, -25 / 3, 70 / 3, -80 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 70 / 3, -80, 64, -80 / 3, 128 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 140 / 3, -160, 128, -80, 128, 128 / 3, 70 / 3, -80, 64, -80, 128, 64, -80 / 3, 128 / 3, 128 / 3, 32 / 3, -25 / 3, 140 / 3, -80, 128 / 3, 140 / 3, -160, 128, -80, 128, 128 / 3, 140 / 3, -160, 128, -160, 256, 128, -80, 128, 128, 128 / 3, 70 / 3, -80, 64, -80, 128, 64, -80, 128, 128, 64, -80 / 3, 128 / 3, 128 / 3, 128 / 3, 32 / 3], (1, 0, 0, 0): [0, 16, -208 / 3, 96, -128 / 3, 0, -208 / 3, 192, -128, 0, 96, -128, 0, -128 / 3, 0, 0, -208 / 3, 192, -128, 0, 192, -256, 0, -128, 0, 0, 96, -128, 0, -128, 0, 0, -128 / 3, 0, 0, 0, -208 / 3, 192, -128, 0, 192, -256, 0, -128, 0, 0, 192, -256, 0, -256, 0, 0, -128, 0, 0, 0, 96, -128, 0, -128, 0, 0, -128, 0, 0, 0, -128 / 3, 0, 0, 0], (2, 0, 0, 0): [0, -12, 76, -128, 64, 0, 28, -144, 128, 0, -16, 64, 0, 0, 0, 0, 28, -144, 128, 0, -32, 128, 0, 0, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 28, -144, 128, 0, -32, 128, 0, 0, 0, 0, -32, 128, 0, 0, 0, 0, 0, 0, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (3, 0, 0, 0): [0, 16 / 3, -112 / 3, 224 / 3, -128 / 3, 0, -16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0, 0, -16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16 / 3, 32, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (4, 0, 0, 0): [0, -1, 22 / 3, -16, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 0, 0): [0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3, 0, 0, 0, 0, -208 / 3, 192, -128, 192, -256, -128, 0, 0, 0, 96, -128, -128, 0, 0, -128 / 3, 0, 0, 0, 0, 0, -208 / 3, 192, -128, 192, -256, -128, 0, 0, 0, 192, -256, -256, 0, 0, -128, 0, 0, 0, 0, 96, -128, -128, 0, 0, -128, 0, 0, 0, -128 / 3, 0, 0], (1, 1, 0, 0): [0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0, 0, 0, 0, 0, -224, 256, 0, 256, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -224, 256, 0, 256, 0, 0, 0, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (2, 1, 0, 0): [0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (3, 1, 0, 0): [0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 0, 0): [0, 0, 0, 0, 0, -12, 28, -16, 0, 76, -144, 64, -128, 128, 64, 0, 0, 0, 0, 28, -32, 0, -144, 128, 128, 0, 0, 0, -16, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 28, -32, 0, -144, 128, 128, 0, 0, 0, -32, 0, 128, 0, 0, 0, 0, 0, 0, 0, -16, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0], (1, 2, 0, 0): [0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 160, -128, 0, -128, 0, 0, 0, 0, 0, 0, 32, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (2, 2, 0, 0): [0, 0, 0, 0, 0, 0, 4, -16, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 3, 0, 0): [0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -112 / 3, 32, 0, 224 / 3, -128 / 3, -128 / 3, 0, 0, 0, 0, -16 / 3, 0, 0, 32, 0, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16 / 3, 0, 0, 32, 0, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (1, 3, 0, 0): [0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, -32, 0, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 4, 0, 0): [0, 0, 0, 0, 0, -1, 0, 0, 0, 22 / 3, 0, 0, -16, 0, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3, -208 / 3, 192, -128, 192, -256, -128, 96, -128, -128, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -208 / 3, 192, -128, 192, -256, -128, 192, -256, -256, -128, 0, 0, 0, 0, 0, 0, 96, -128, -128, -128, 0, 0, 0, -128 / 3, 0], (1, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0, -224, 256, 0, 256, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -224, 256, 0, 256, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0], (2, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (3, 0, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, -224, 256, 128, 0, 0, 0, -224, 256, 256, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -224, 256, 256, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0], (1, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, 0, -256, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (2, 1, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 160, -128, -128, 0, 0, 0, 32, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (1, 2, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 3, 1, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, -32, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 28, -16, 0, 28, -32, 0, -16, 0, 0, 76, -144, 64, -144, 128, 64, -128, 128, 128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, -32, 0, -32, 0, 0, -144, 128, 128, 128, 0, 0, 0, 0, 0, 0, -16, 0, 0, 64, 0, 0, 0, 0, 0], (1, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 32, 0, 0, 0, 0, 0, 160, -128, 0, -128, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (2, 0, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 0, 0, 0, 160, -128, -128, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (1, 1, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 2, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -16, 0, 0, 0, 0, 0, -16, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 3, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -16 / 3, 0, 0, 0, 0, 0, -112 / 3, 32, 0, 32, 0, 0, 224 / 3, -128 / 3, -128 / 3, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16 / 3, 0, 0, 0, 0, 0, 32, 0, 0, -128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (1, 0, 3, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 3, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 4, 0): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22 / 3, 0, 0, 0, 0, 0, -16, 0, 0, 32 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, -208 / 3, 96, -128 / 3, -208 / 3, 192, -128, 96, -128, -128 / 3, -208 / 3, 192, -128, 192, -256, -128, 96, -128, -128, -128 / 3, -208 / 3, 192, -128, 192, -256, -128, 192, -256, -256, -128, 96, -128, -128, -128, -128 / 3], (1, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, 0, -224, 256, 0, 128, 0, 0, -224, 256, 0, 256, 0, 0, 128, 0, 0, 0, -224, 256, 0, 256, 0, 0, 256, 0, 0, 0, 128, 0, 0, 0], (2, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 160, -128, 0, 32, -128, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 32, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (3, 0, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -32, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, -224, 256, 128, 0, 0, 0, -224, 256, 256, 0, 0, 128, 0, 0, 0, 0, -224, 256, 256, 0, 0, 256, 0, 0, 0, 128, 0, 0], (1, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, 0, -256, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (2, 1, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 160, -128, -128, 0, 0, 0, 32, 0, -128, 0, 0, 0, 0, 0, 0, 0, 32, 0, -128, 0, 0, 0, 0, 0, 0, 0, 0, 0], (1, 2, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 3, 0, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, -32, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, -224, 128, -224, 256, 128, -224, 256, 256, 128, 0, 0, 0, 0, 0, 0, -224, 256, 256, 256, 0, 0, 0, 128, 0], (1, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, 0, -256, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0], (2, 0, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, -256, -256, 0, 0, -256, 0, 0, 0, 0, 0, 0, 0, 0, 0, -256, 0, 0, 0, 0, 0, 0], (1, 1, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 1, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 160, -128, -128, -128, 0, 0, 0, 0, 0, 0, 32, 0, 0, -128, 0, 0, 0, 0, 0], (1, 0, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 2, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 3, 1): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, -32, 0, 0, 128 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 28, -16, 0, 28, -32, 0, -16, 0, 0, 28, -32, 0, -32, 0, 0, -16, 0, 0, 0, 76, -144, 64, -144, 128, 64, -144, 128, 128, 64, -128, 128, 128, 128, 64], (1, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 0, 32, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, -128, 0, -128, 0, 0, -128, 0, 0, 0, -128, 0, 0, 0], (2, 0, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, -128, -128, 0, 0, -128, 0, 0, 0, -128, 0, 0], (1, 1, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 2, 0, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0], (0, 0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 32, 0, 32, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, -128, -128, -128, 0, 0, 0, -128, 0], (1, 0, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0], (0, 1, 1, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0], (0, 0, 2, 2): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 64, 0, 0, 0, 0, 0], (0, 0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, -16 / 3, 0, 0, -16 / 3, 0, 0, 0, 0, 0, -16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -112 / 3, 32, 0, 32, 0, 0, 32, 0, 0, 0, 224 / 3, -128 / 3, -128 / 3, -128 / 3, -128 / 3], (1, 0, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128 / 3, 0, 0, 0], (0, 1, 0, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 128 / 3, 0, 0], (0, 0, 1, 3): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 128 / 3, 0], (0, 0, 0, 4): [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22 / 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 32 / 3]}]] |
registry = {
"alpha_zero_service": {
"grpc": 7003,
},
} | registry = {'alpha_zero_service': {'grpc': 7003}} |
def dropOnto(nodeName, mimeData, row):
pass
def mimeData(nodeNames):
pass
| def drop_onto(nodeName, mimeData, row):
pass
def mime_data(nodeNames):
pass |
def nearest(numbers, x):
minimal = abs(numbers[0] - x)
answer = numbers[0]
for item in numbers:
if abs(item - x) < minimal:
minimal = abs(item - x)
answer = item
return answer
def main():
size = int(input())
numbers = list(map(int, input().split()))
x = int(input())
print(nearest(numbers, x))
if __name__ == '__main__':
main()
| def nearest(numbers, x):
minimal = abs(numbers[0] - x)
answer = numbers[0]
for item in numbers:
if abs(item - x) < minimal:
minimal = abs(item - x)
answer = item
return answer
def main():
size = int(input())
numbers = list(map(int, input().split()))
x = int(input())
print(nearest(numbers, x))
if __name__ == '__main__':
main() |
def missing_number2(N, numbers):
S = N * (N + 1) // 2
for n in numbers:
S -= n
return S
N = int(input())
numbers = list(map(int, input().split()))
print(missing_number2(N, numbers))
| def missing_number2(N, numbers):
s = N * (N + 1) // 2
for n in numbers:
s -= n
return S
n = int(input())
numbers = list(map(int, input().split()))
print(missing_number2(N, numbers)) |
def main():
a = set("I am fine")
b = set("I am ok")
print_set(sorted(a))
print_set(sorted(b))
def print_set(o):
print('{', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
# Members in set a but not b
def main():
a = set("I am fine")
b = set("I am ok")
print_set(a - b) # Members are in a but not b
def print_set(o):
print('Members with a but not b{', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
# Members in set a or b or both
def main():
a = set("I am fine")
b = set("I am ok")
print_set(a | b)
def print_set(o):
print('Members with a or b or both: {', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
# Members in set a or b not both
def main():
a = set("I am fine")
b = set("I am ok")
print_set(a ^ b)
def print_set(o):
print('Members with a or b but not both: {', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
# Members in both set a and b
def main():
a = set("I am fine")
b = set("I am ok")
print_set(a & b)
def print_set(o):
print('Members with both a and b are: {', end = ' ')
for x in o: print(x, end = ' ')
print('}')
if __name__ == '__main__': main()
| def main():
a = set('I am fine')
b = set('I am ok')
print_set(sorted(a))
print_set(sorted(b))
def print_set(o):
print('{', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main()
def main():
a = set('I am fine')
b = set('I am ok')
print_set(a - b)
def print_set(o):
print('Members with a but not b{', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main()
def main():
a = set('I am fine')
b = set('I am ok')
print_set(a | b)
def print_set(o):
print('Members with a or b or both: {', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main()
def main():
a = set('I am fine')
b = set('I am ok')
print_set(a ^ b)
def print_set(o):
print('Members with a or b but not both: {', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main()
def main():
a = set('I am fine')
b = set('I am ok')
print_set(a & b)
def print_set(o):
print('Members with both a and b are: {', end=' ')
for x in o:
print(x, end=' ')
print('}')
if __name__ == '__main__':
main() |
# solution to kata found here
# https://www.codewars.com/kata/5412509bd436bd33920011bc/solutions/python
def maskify(cc):
s2 = ''
for i in range(len(cc)):
character = cc[-(i+1)]
if (i+1) > 4:
character = '#'
s2 += character
s2 = s2[::-1]
return s2
'''
here's the solution voted best practice
it's a one-liner
# return masked string
def maskify(cc):
return "#"*(len(cc)-4) + cc[-4:]
and I actually understand how it works
'''
| def maskify(cc):
s2 = ''
for i in range(len(cc)):
character = cc[-(i + 1)]
if i + 1 > 4:
character = '#'
s2 += character
s2 = s2[::-1]
return s2
'\nhere\'s the solution voted best practice\nit\'s a one-liner\n\n# return masked string\ndef maskify(cc):\n return "#"*(len(cc)-4) + cc[-4:]\n\nand I actually understand how it works\n' |
# -*- coding: utf-8 -*-
# Copyright 2017 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
{
"name": "Bus Presence Override",
"summary": "Adds user-defined im status (online, away, offline).",
"version": "10.0.1.0.0",
"category": "Social",
"website": "https://github.com/OCA/social",
"author": "LasLabs, Odoo Community Association (OCA)",
"license": "LGPL-3",
"application": False,
"installable": True,
"depends": [
"mail",
],
"data": [
"views/assets.xml",
],
"qweb": [
"static/src/xml/bus_presence_systray.xml",
],
}
| {'name': 'Bus Presence Override', 'summary': 'Adds user-defined im status (online, away, offline).', 'version': '10.0.1.0.0', 'category': 'Social', 'website': 'https://github.com/OCA/social', 'author': 'LasLabs, Odoo Community Association (OCA)', 'license': 'LGPL-3', 'application': False, 'installable': True, 'depends': ['mail'], 'data': ['views/assets.xml'], 'qweb': ['static/src/xml/bus_presence_systray.xml']} |
class Singleton(type):
"""
Metaclass for all singletons in the system (e.g. Kernel).
The example code is taken from
http://python-3-patterns-idioms-test.readthedocs.io/en/latest/Metaprogramming.html
"""
instance = None
def __init__(cls, name, bases, attrs):
super().__init__(name, bases, attrs)
def __call__(cls, *args, **kw):
if not cls.instance:
cls.instance = super(Singleton, cls).__call__(*args, **kw)
return cls.instance
| class Singleton(type):
"""
Metaclass for all singletons in the system (e.g. Kernel).
The example code is taken from
http://python-3-patterns-idioms-test.readthedocs.io/en/latest/Metaprogramming.html
"""
instance = None
def __init__(cls, name, bases, attrs):
super().__init__(name, bases, attrs)
def __call__(cls, *args, **kw):
if not cls.instance:
cls.instance = super(Singleton, cls).__call__(*args, **kw)
return cls.instance |
class Emo:
Tag = '<:Tag:931120394323251270>'
Tags = '<:Tags:931091527936127006>'
TagNotFound = '<:TagNotFound:931120394394566666>'
TagNeutral = '<:TagNeutral:931120394117726248>'
TagFound = '<:TagFound:931120394033823745>' | class Emo:
tag = '<:Tag:931120394323251270>'
tags = '<:Tags:931091527936127006>'
tag_not_found = '<:TagNotFound:931120394394566666>'
tag_neutral = '<:TagNeutral:931120394117726248>'
tag_found = '<:TagFound:931120394033823745>' |
"""
Financefeast Client Library exceptions
"""
class NotAuthorised(Exception):
"""
Raises an Not Authorised exception for a 403 HTTP response from the API
"""
class RateLimitExceeded(Exception):
"""
Rate Limit exceeded
"""
super(Exception)
class MissingClientId(Exception):
"""
Missing client_id
"""
def __init__(self, message):
self.message = message
class MissingClientSecret(Exception):
"""
Missing client_secret
"""
def __init__(self, message):
self.message = message
class MissingTicker(Exception):
"""
Ticker not passed to method
"""
pass
| """
Financefeast Client Library exceptions
"""
class Notauthorised(Exception):
"""
Raises an Not Authorised exception for a 403 HTTP response from the API
"""
class Ratelimitexceeded(Exception):
"""
Rate Limit exceeded
"""
super(Exception)
class Missingclientid(Exception):
"""
Missing client_id
"""
def __init__(self, message):
self.message = message
class Missingclientsecret(Exception):
"""
Missing client_secret
"""
def __init__(self, message):
self.message = message
class Missingticker(Exception):
"""
Ticker not passed to method
"""
pass |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
def CSV_Parse_To_Dict(handle, column_delim = ","):
"""
Initializes the class. The Dictionary structure is built through the first line of the CSV data file. Line delimiter is not customizable and is "\n" by default.
Args:
handle (File): File handler. The handle should be opened as "r", or "rw".
column_delim (str): Column Delimiter Symbol. Default: ",".
Returns:
list: A List of Dict each corresponding to the rows.
Raises:
ValueError: If non-float data exists in the rows.
"""
# Reach the beginning of the file
handle.seek(0)
# Get the CSV columns - Remove trailing chomp, and split at ","
column_headers = handle.readline().rstrip().split(",")
#: List[Dict]: Output data.
out_list = []
for row in handle:
column_data = row.rstrip().split(",")
if len(column_data) == len(column_headers):
dat_map = {column_headers[i]: float(column_data[i]) for i in range(0, len(column_headers))}
out_list.append(dat_map)
return out_list
| def csv__parse__to__dict(handle, column_delim=','):
"""
Initializes the class. The Dictionary structure is built through the first line of the CSV data file. Line delimiter is not customizable and is "
" by default.
Args:
handle (File): File handler. The handle should be opened as "r", or "rw".
column_delim (str): Column Delimiter Symbol. Default: ",".
Returns:
list: A List of Dict each corresponding to the rows.
Raises:
ValueError: If non-float data exists in the rows.
"""
handle.seek(0)
column_headers = handle.readline().rstrip().split(',')
out_list = []
for row in handle:
column_data = row.rstrip().split(',')
if len(column_data) == len(column_headers):
dat_map = {column_headers[i]: float(column_data[i]) for i in range(0, len(column_headers))}
out_list.append(dat_map)
return out_list |
class GW_Commands:
@staticmethod
def ping(slack_id=None, channel=None, params=None) :
return 'pong',None
| class Gw_Commands:
@staticmethod
def ping(slack_id=None, channel=None, params=None):
return ('pong', None) |
class AdaptivePointOrientationType(Enum, IComparable, IFormattable, IConvertible):
"""
An enumerated type containing possible orientation types for Adaptive Points.
enum AdaptivePointOrientationType,values: ToGlobalXYZ (7),ToGlobalZthenHost (6),ToHost (2),ToHostAndLoopSystem (3),ToInstance (9),ToInstanceZthenHost (8)
"""
def __eq__(self, *args):
""" x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """
pass
def __format__(self, *args):
""" __format__(formattable: IFormattable,format: str) -> str """
pass
def __ge__(self, *args):
pass
def __gt__(self, *args):
pass
def __init__(self, *args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
def __le__(self, *args):
pass
def __lt__(self, *args):
pass
def __ne__(self, *args):
pass
def __reduce_ex__(self, *args):
pass
def __str__(self, *args):
pass
ToGlobalXYZ = None
ToGlobalZthenHost = None
ToHost = None
ToHostAndLoopSystem = None
ToInstance = None
ToInstanceZthenHost = None
value__ = None
| class Adaptivepointorientationtype(Enum, IComparable, IFormattable, IConvertible):
"""
An enumerated type containing possible orientation types for Adaptive Points.
enum AdaptivePointOrientationType,values: ToGlobalXYZ (7),ToGlobalZthenHost (6),ToHost (2),ToHostAndLoopSystem (3),ToInstance (9),ToInstanceZthenHost (8)
"""
def __eq__(self, *args):
""" x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """
pass
def __format__(self, *args):
""" __format__(formattable: IFormattable,format: str) -> str """
pass
def __ge__(self, *args):
pass
def __gt__(self, *args):
pass
def __init__(self, *args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
def __le__(self, *args):
pass
def __lt__(self, *args):
pass
def __ne__(self, *args):
pass
def __reduce_ex__(self, *args):
pass
def __str__(self, *args):
pass
to_global_xyz = None
to_global_zthen_host = None
to_host = None
to_host_and_loop_system = None
to_instance = None
to_instance_zthen_host = None
value__ = None |
a="-5.54"
k=list(range(-5,6))
print(k)
d=10.5//1
f=5.45
print(round(f,0))
print(d)
f=float(a)
print(f)
aux=""
if len(a)>2:
if a[0]=='-':
aux='-'
i=1
else:
i=0
while a[i]!='.' or i==len(a):
aux=aux+a[i]
i=i+1
if a[i]=='.':
if (i+1)!=len(a):
i=i+1
aux=aux+a[i]
else:
aux=aux+'0'
else:
aux=aux+'0'
else:
if a[0]=='-':
aux='-'+a[1]+'0'
else:
aux=a[0]+'0'
print(aux) | a = '-5.54'
k = list(range(-5, 6))
print(k)
d = 10.5 // 1
f = 5.45
print(round(f, 0))
print(d)
f = float(a)
print(f)
aux = ''
if len(a) > 2:
if a[0] == '-':
aux = '-'
i = 1
else:
i = 0
while a[i] != '.' or i == len(a):
aux = aux + a[i]
i = i + 1
if a[i] == '.':
if i + 1 != len(a):
i = i + 1
aux = aux + a[i]
else:
aux = aux + '0'
else:
aux = aux + '0'
elif a[0] == '-':
aux = '-' + a[1] + '0'
else:
aux = a[0] + '0'
print(aux) |
def beautifulTriplets(d, arr):
count = 0
for i in arr:
if i+d in arr and i+2*d in arr:
count += 1
return count
arr = [1, 6, 7, 7, 8, 10, 12, 13, 14, 19]
# arr = [1,1,1,2,4,4,4,5,7,7,7,8]
print(beautifulTriplets(3, arr)) | def beautiful_triplets(d, arr):
count = 0
for i in arr:
if i + d in arr and i + 2 * d in arr:
count += 1
return count
arr = [1, 6, 7, 7, 8, 10, 12, 13, 14, 19]
print(beautiful_triplets(3, arr)) |
l1 = [1, 2, 3, 4, 5, 6, 7]
ex1 = [val for val in l1]
print('passando valor a valor para a variavel ex1 \n', ex1)
ex2 = [v * 2 for v in l1]
print('multiplicando usando compreensao de lista \n', ex2)
ex3 = [(v, v2) for v in l1 for v2 in range(3)]
print(ex3)
l2 = ['Adriana', 'Luiz', 'Mauro']
ex4 = [v.replace('a', '@').upper() for v in l2]
print(ex4)
tupla = (
('chave', 'valor'),
('chave2', 'valor2')
)
ex5 = [(y, x) for x, y in tupla]
print('invertendo os valores da tupla \n', ex5)
l3 = list(range(100))
ex6 = [v for v in l3 if v % 2 == 0 if v % 8 == 0] # pegando so os numeros pares e divisiveis por 8
print(ex6)
ex7 = [v if v % 3 == 0 else 0 for v in l3]
print(ex7) | l1 = [1, 2, 3, 4, 5, 6, 7]
ex1 = [val for val in l1]
print('passando valor a valor para a variavel ex1 \n', ex1)
ex2 = [v * 2 for v in l1]
print('multiplicando usando compreensao de lista \n', ex2)
ex3 = [(v, v2) for v in l1 for v2 in range(3)]
print(ex3)
l2 = ['Adriana', 'Luiz', 'Mauro']
ex4 = [v.replace('a', '@').upper() for v in l2]
print(ex4)
tupla = (('chave', 'valor'), ('chave2', 'valor2'))
ex5 = [(y, x) for (x, y) in tupla]
print('invertendo os valores da tupla \n', ex5)
l3 = list(range(100))
ex6 = [v for v in l3 if v % 2 == 0 if v % 8 == 0]
print(ex6)
ex7 = [v if v % 3 == 0 else 0 for v in l3]
print(ex7) |
def test_textline_repr_works(m_16_19_doc):
assert repr(m_16_19_doc.pages[0][4]) == \
'<OMBTextLine with text "August 1, 2016 ">'
def test_textline_is_blank_works(m_16_19_doc):
assert m_16_19_doc.pages[0][0].is_blank()
assert not m_16_19_doc.pages[0][4].is_blank()
def test_page_numbers_work(m_16_19_doc):
assert m_16_19_doc.pages[0].number == 1
assert m_16_19_doc.pages[1].number == 2
def test_useful_lines_are_not_culled(m_11_29_doc):
lastpage_text = '\n'.join([str(line) for line in m_11_29_doc.pages[-1]])
assert 'opportunities to reduce duplication' in lastpage_text
| def test_textline_repr_works(m_16_19_doc):
assert repr(m_16_19_doc.pages[0][4]) == '<OMBTextLine with text "August 1, 2016 ">'
def test_textline_is_blank_works(m_16_19_doc):
assert m_16_19_doc.pages[0][0].is_blank()
assert not m_16_19_doc.pages[0][4].is_blank()
def test_page_numbers_work(m_16_19_doc):
assert m_16_19_doc.pages[0].number == 1
assert m_16_19_doc.pages[1].number == 2
def test_useful_lines_are_not_culled(m_11_29_doc):
lastpage_text = '\n'.join([str(line) for line in m_11_29_doc.pages[-1]])
assert 'opportunities to reduce duplication' in lastpage_text |
class Person:
number_of_people = 0
def __init__(self, name):
self.name = name
Person.add_people()
def get_name():
return self.name
@classmethod
def get_number_of_people(cls):
return cls.number_of_people
@classmethod
def add_people(cls):
cls.number_of_people += 1
p1 = Person('burak')
p2 = Person('ahmet')
print(Person.get_number_of_people()) | class Person:
number_of_people = 0
def __init__(self, name):
self.name = name
Person.add_people()
def get_name():
return self.name
@classmethod
def get_number_of_people(cls):
return cls.number_of_people
@classmethod
def add_people(cls):
cls.number_of_people += 1
p1 = person('burak')
p2 = person('ahmet')
print(Person.get_number_of_people()) |
#
# PySNMP MIB module VPN-TC-STD-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/VPN-TC-STD-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:35:18 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, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsUnion, ValueRangeConstraint, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint", "ConstraintsIntersection", "ValueSizeConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
IpAddress, ModuleIdentity, Bits, Integer32, Gauge32, MibIdentifier, TimeTicks, ObjectIdentity, Counter32, Counter64, Unsigned32, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, mib_2 = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "ModuleIdentity", "Bits", "Integer32", "Gauge32", "MibIdentifier", "TimeTicks", "ObjectIdentity", "Counter32", "Counter64", "Unsigned32", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "mib-2")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
vpnTcMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 129))
vpnTcMIB.setRevisions(('2005-11-15 00:00',))
if mibBuilder.loadTexts: vpnTcMIB.setLastUpdated('200511150000Z')
if mibBuilder.loadTexts: vpnTcMIB.setOrganization('Layer 3 Virtual Private Networks (L3VPN) Working Group.')
class VPNId(TextualConvention, OctetString):
reference = "Fox, B. and Gleeson, B., 'Virtual Private Networks Identifier', RFC 2685, September 1999."
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(7, 7)
fixedLength = 7
class VPNIdOrZero(TextualConvention, OctetString):
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(7, 7), )
mibBuilder.exportSymbols("VPN-TC-STD-MIB", vpnTcMIB=vpnTcMIB, VPNId=VPNId, VPNIdOrZero=VPNIdOrZero, PYSNMP_MODULE_ID=vpnTcMIB)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, value_range_constraint, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(ip_address, module_identity, bits, integer32, gauge32, mib_identifier, time_ticks, object_identity, counter32, counter64, unsigned32, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, mib_2) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'ModuleIdentity', 'Bits', 'Integer32', 'Gauge32', 'MibIdentifier', 'TimeTicks', 'ObjectIdentity', 'Counter32', 'Counter64', 'Unsigned32', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'mib-2')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
vpn_tc_mib = module_identity((1, 3, 6, 1, 2, 1, 129))
vpnTcMIB.setRevisions(('2005-11-15 00:00',))
if mibBuilder.loadTexts:
vpnTcMIB.setLastUpdated('200511150000Z')
if mibBuilder.loadTexts:
vpnTcMIB.setOrganization('Layer 3 Virtual Private Networks (L3VPN) Working Group.')
class Vpnid(TextualConvention, OctetString):
reference = "Fox, B. and Gleeson, B., 'Virtual Private Networks Identifier', RFC 2685, September 1999."
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(7, 7)
fixed_length = 7
class Vpnidorzero(TextualConvention, OctetString):
status = 'current'
subtype_spec = OctetString.subtypeSpec + constraints_union(value_size_constraint(0, 0), value_size_constraint(7, 7))
mibBuilder.exportSymbols('VPN-TC-STD-MIB', vpnTcMIB=vpnTcMIB, VPNId=VPNId, VPNIdOrZero=VPNIdOrZero, PYSNMP_MODULE_ID=vpnTcMIB) |
# The character class is used as a super class in the enemy and player class.
class Character:
def __init__(self, x=0, y=0, movementSpeed=0): # Arguments are optinal.
self.x = x
self.y = y
self.movementSpeed = movementSpeed
self.width = 32
self.height = 32
self.xVelocity = 0
self.yVelocity = 0
self.diagonalVelocityMultiplier = 0.7071 # Constant x and y velocity is multiplied with when moving diagonal (45 degrees).
def collisionWithObject(self, object): # Check collision with other class object with Character as super class.
pass
| class Character:
def __init__(self, x=0, y=0, movementSpeed=0):
self.x = x
self.y = y
self.movementSpeed = movementSpeed
self.width = 32
self.height = 32
self.xVelocity = 0
self.yVelocity = 0
self.diagonalVelocityMultiplier = 0.7071
def collision_with_object(self, object):
pass |
data = input()
city_dict = {}
trans_dict = {}
while data != 'ready':
city = data.split(":")[0]
transportation_list = data.split(":")[1].split(",")
if city not in city_dict:
city_dict.update({city: trans_dict})
trans_dict = {}
for items in transportation_list:
vehicle = items.split("-")[0]
vehicle_count = int(items.split("-")[1])
city_dict[city].update({vehicle: vehicle_count})
else:
trans_dict = {}
for items in transportation_list:
vehicle = items.split("-")[0]
vehicle_count = int(items.split("-")[1])
city_dict[city].update({vehicle: vehicle_count})
data = input()
data = input()
total = 0
while data != 'travel time!':
city = data.split(" ")[0]
passengers = int(data.split(" ")[1])
for key, value in city_dict.items():
if key == city:
for key2, value2 in value.items():
total += value2
if total >= passengers:
print(f'{city} -> all {passengers} accommodated')
else:
print(f'{city} -> all except {passengers - total} accommodated')
total = 0
data = input() | data = input()
city_dict = {}
trans_dict = {}
while data != 'ready':
city = data.split(':')[0]
transportation_list = data.split(':')[1].split(',')
if city not in city_dict:
city_dict.update({city: trans_dict})
trans_dict = {}
for items in transportation_list:
vehicle = items.split('-')[0]
vehicle_count = int(items.split('-')[1])
city_dict[city].update({vehicle: vehicle_count})
else:
trans_dict = {}
for items in transportation_list:
vehicle = items.split('-')[0]
vehicle_count = int(items.split('-')[1])
city_dict[city].update({vehicle: vehicle_count})
data = input()
data = input()
total = 0
while data != 'travel time!':
city = data.split(' ')[0]
passengers = int(data.split(' ')[1])
for (key, value) in city_dict.items():
if key == city:
for (key2, value2) in value.items():
total += value2
if total >= passengers:
print(f'{city} -> all {passengers} accommodated')
else:
print(f'{city} -> all except {passengers - total} accommodated')
total = 0
data = input() |
# -*- coding: utf-8 -*-
"""
.. module:: composite.visitors.base
:synopsis: Base visitors classes, utils
:platform: Linux, Unix, Windows
.. moduleauthor:: Nickolas Fox <tarvitz@blacklibary.ru>
.. sectionauthor:: Nickolas Fox <tarvitz@blacklibary.ru>
"""
class FieldVisitor(object):
"""
Field visitor, helps to parse and build documents. There are 5 types of
fields:
- ``attribute field``, field attribute:
.. code-block:: xml
<font size="12em" color="black" weight="bold">
``size``, ``color`` and ``weight`` are attributes
- ``field``, simple data field:
.. code-block:: xml
:emphasize-lines: 2-4
<Document>
<x>0</x>
<name>Jim</name>
<pi>3.14</pi>
</Document>
- ``list field``, simple data fields combined in array/list:
.. code-block:: xml
:emphasize-lines: 2-4
<Document>
<name>Jim</name>
<name>Jill</name>
<name>Jerry</name>
</Document>
- ``node``, block with several data in it:
.. code-block:: xml
:emphasize-lines: 2-6
<User>
<name>Alexander</name>
<last_name>Pepyako</last_name>
<age>32</age>
<email>com@alexander.pepyako</email>
</User>
- ``list node``, several nodes combined in array/list:
.. code-block:: xml
:emphasize-lines: 2-7
<Clients>
<user>
<name>Alexander</name>
<last_name>Pepyako</last_name>
<age>32</age>
<email>com@alexander.pepyako</email>
</user>
<user>
<name>Mary</name>
<last_name>Noname</last_name>
<age>27</age>
<email>mary@noname.nozone</email>
</user>
</Clients>
"""
def __init__(self, builder_class, composite):
self.builder_class = builder_class
self.composite = composite
def visit_attribute_field(self, field, source):
"""
visit attribute field
:param field: field to visit
:type field: composite.fields.AttributeField
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented
def visit_field(self, field, source):
"""
visit field
:param field: field to visit
:type field: composite.fields.Field
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented
def visit_list_field(self, field, source):
"""
visit list field
:param field: field to visit
:type field: composite.fields.ListField
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented
def visit_node(self, node, source):
"""
visit node
:param node: node field to visit
:type node: composite.fields.Node
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented
def visit_list_node(self, node, source):
"""
visit list node
:param field: field to visit
:type field: composite.fields.ListNode
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented
| """
.. module:: composite.visitors.base
:synopsis: Base visitors classes, utils
:platform: Linux, Unix, Windows
.. moduleauthor:: Nickolas Fox <tarvitz@blacklibary.ru>
.. sectionauthor:: Nickolas Fox <tarvitz@blacklibary.ru>
"""
class Fieldvisitor(object):
"""
Field visitor, helps to parse and build documents. There are 5 types of
fields:
- ``attribute field``, field attribute:
.. code-block:: xml
<font size="12em" color="black" weight="bold">
``size``, ``color`` and ``weight`` are attributes
- ``field``, simple data field:
.. code-block:: xml
:emphasize-lines: 2-4
<Document>
<x>0</x>
<name>Jim</name>
<pi>3.14</pi>
</Document>
- ``list field``, simple data fields combined in array/list:
.. code-block:: xml
:emphasize-lines: 2-4
<Document>
<name>Jim</name>
<name>Jill</name>
<name>Jerry</name>
</Document>
- ``node``, block with several data in it:
.. code-block:: xml
:emphasize-lines: 2-6
<User>
<name>Alexander</name>
<last_name>Pepyako</last_name>
<age>32</age>
<email>com@alexander.pepyako</email>
</User>
- ``list node``, several nodes combined in array/list:
.. code-block:: xml
:emphasize-lines: 2-7
<Clients>
<user>
<name>Alexander</name>
<last_name>Pepyako</last_name>
<age>32</age>
<email>com@alexander.pepyako</email>
</user>
<user>
<name>Mary</name>
<last_name>Noname</last_name>
<age>27</age>
<email>mary@noname.nozone</email>
</user>
</Clients>
"""
def __init__(self, builder_class, composite):
self.builder_class = builder_class
self.composite = composite
def visit_attribute_field(self, field, source):
"""
visit attribute field
:param field: field to visit
:type field: composite.fields.AttributeField
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented
def visit_field(self, field, source):
"""
visit field
:param field: field to visit
:type field: composite.fields.Field
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented
def visit_list_field(self, field, source):
"""
visit list field
:param field: field to visit
:type field: composite.fields.ListField
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented
def visit_node(self, node, source):
"""
visit node
:param node: node field to visit
:type node: composite.fields.Node
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented
def visit_list_node(self, node, source):
"""
visit list node
:param field: field to visit
:type field: composite.fields.ListNode
:param source: any source of data
:rtype: None
:return: None
"""
raise NotImplemented |
def f(x):
return x * x
#def g(x):
# return
# Should be 2 SLOC
| def f(x):
return x * x |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Author: Sword York
# GitHub: https://github.com/SwordYork/sequencing
# No rights reserved.
#
class Vocab(object):
def __init__(self, tokens, embedding_dim, delimiter=' ', vocab_size=None,
bos_token='SEQ_BEG', eos_token='SEQ_END', unk_token='UNK'):
"""
:param embedding_dim:
:param tokens: list of tokens
:param delimiter: delimiter between symbols, if '' then character level.
:param vocab_size:
:param bos_token:
:param eos_token:
:param unk_token:
"""
if not vocab_size:
vocab_size = len(tokens)
vocab_size = min(vocab_size, len(tokens))
self.embedding_dim = embedding_dim
self.delimiter = delimiter
self.unk_token, self.unk_id = unk_token, 0
self.bos_token, self.bos_id = bos_token, 1
self.eos_token, self.eos_id = eos_token, 2
self.token_to_id_dict = {token: token_id + 3 for token_id, token in
enumerate(tokens[:vocab_size])}
self.token_to_id_dict.update(**{self.unk_token: self.unk_id,
self.bos_token: self.bos_id,
self.eos_token: self.eos_id})
self.id_to_token_dict = {v: k for k, v in self.token_to_id_dict.items()}
self.vocab_size = vocab_size + 3
if self.delimiter == '':
self.space_id = self.token_to_id_dict[' ']
def _map_token_to_id_with_unk(self, token):
try:
return self.token_to_id_dict[token]
except:
return self.unk_id
def _token_to_id(self, tokens):
"""
:param tokens: tokens
:return: list of ids
"""
return list(map(self._map_token_to_id_with_unk, tokens))
def string_to_ids(self, token_string, bos=False):
if self.delimiter:
tokens = token_string.strip().split(self.delimiter)
else:
# delimiter is '', character-level
tokens = list(token_string.strip())
if bos:
return [self.bos_id] + self._token_to_id(tokens) + [self.eos_id]
return self._token_to_id(tokens) + [self.eos_id]
def id_to_token(self, token_ids, not_keep_eos=True):
"""
:param token_ids: list of token ids
:return:
"""
token_len = token_ids.index(self.eos_id) \
if (self.eos_id in token_ids) and not_keep_eos else len(token_ids)
return (self.delimiter).join([self.id_to_token_dict[token_id] for
token_id in token_ids[:token_len]])
def build_vocab(vocab_file, embedding_dim, delimiter=' ',
vocab_size=None):
# construct vocab
with open(vocab_file, 'r') as f:
symbols = [s.split('\t')[0] for s in f.readlines()]
vocab = Vocab(symbols, embedding_dim, delimiter, vocab_size)
return vocab
| class Vocab(object):
def __init__(self, tokens, embedding_dim, delimiter=' ', vocab_size=None, bos_token='SEQ_BEG', eos_token='SEQ_END', unk_token='UNK'):
"""
:param embedding_dim:
:param tokens: list of tokens
:param delimiter: delimiter between symbols, if '' then character level.
:param vocab_size:
:param bos_token:
:param eos_token:
:param unk_token:
"""
if not vocab_size:
vocab_size = len(tokens)
vocab_size = min(vocab_size, len(tokens))
self.embedding_dim = embedding_dim
self.delimiter = delimiter
(self.unk_token, self.unk_id) = (unk_token, 0)
(self.bos_token, self.bos_id) = (bos_token, 1)
(self.eos_token, self.eos_id) = (eos_token, 2)
self.token_to_id_dict = {token: token_id + 3 for (token_id, token) in enumerate(tokens[:vocab_size])}
self.token_to_id_dict.update(**{self.unk_token: self.unk_id, self.bos_token: self.bos_id, self.eos_token: self.eos_id})
self.id_to_token_dict = {v: k for (k, v) in self.token_to_id_dict.items()}
self.vocab_size = vocab_size + 3
if self.delimiter == '':
self.space_id = self.token_to_id_dict[' ']
def _map_token_to_id_with_unk(self, token):
try:
return self.token_to_id_dict[token]
except:
return self.unk_id
def _token_to_id(self, tokens):
"""
:param tokens: tokens
:return: list of ids
"""
return list(map(self._map_token_to_id_with_unk, tokens))
def string_to_ids(self, token_string, bos=False):
if self.delimiter:
tokens = token_string.strip().split(self.delimiter)
else:
tokens = list(token_string.strip())
if bos:
return [self.bos_id] + self._token_to_id(tokens) + [self.eos_id]
return self._token_to_id(tokens) + [self.eos_id]
def id_to_token(self, token_ids, not_keep_eos=True):
"""
:param token_ids: list of token ids
:return:
"""
token_len = token_ids.index(self.eos_id) if self.eos_id in token_ids and not_keep_eos else len(token_ids)
return self.delimiter.join([self.id_to_token_dict[token_id] for token_id in token_ids[:token_len]])
def build_vocab(vocab_file, embedding_dim, delimiter=' ', vocab_size=None):
with open(vocab_file, 'r') as f:
symbols = [s.split('\t')[0] for s in f.readlines()]
vocab = vocab(symbols, embedding_dim, delimiter, vocab_size)
return vocab |
"""
Ex 34 - Create a program that reads a salary and shows on the screen the new salary with 15% increase. If the salary is highest that 1250 just give 10% increase
"""
s = float(input('Enter your salary: '))
# increase
if s > 1250:
s = (s / 100) * 10 + s
else:
s = (s/100) * 15 + s
# shows the new salary
print(f'Your new salary is: {s:.2f}')
input('Enter to exit')
| """
Ex 34 - Create a program that reads a salary and shows on the screen the new salary with 15% increase. If the salary is highest that 1250 just give 10% increase
"""
s = float(input('Enter your salary: '))
if s > 1250:
s = s / 100 * 10 + s
else:
s = s / 100 * 15 + s
print(f'Your new salary is: {s:.2f}')
input('Enter to exit') |
ODRL = {
"@context": {
"odrl": "http://www.w3.org/ns/odrl/2/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"owl": "http://www.w3.org/2002/07/owl#",
"skos": "http://www.w3.org/2004/02/skos/core#",
"dct": "http://purl.org/dc/terms/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"vcard": "http://www.w3.org/2006/vcard/ns#",
"foaf": "http://xmlns.com/foaf/0.1/",
"schema": "http://schema.org/",
"cc": "http://creativecommons.org/ns#",
"uid": "@id",
"type": "@type",
"Policy": "odrl:Policy",
"Rule": "odrl:Rule",
"profile": {"@type": "@id", "@id": "odrl:profile"},
"inheritFrom": {"@type": "@id", "@id": "odrl:inheritFrom"},
"ConflictTerm": "odrl:ConflictTerm",
"conflict": {"@type": "@vocab", "@id": "odrl:conflict"},
"perm": "odrl:perm",
"prohibit": "odrl:prohibit",
"invalid": "odrl:invalid",
"Agreement": "odrl:Agreement",
"Assertion": "odrl:Assertion",
"Offer": "odrl:Offer",
"Privacy": "odrl:Privacy",
"Request": "odrl:Request",
"Set": "odrl:Set",
"Ticket": "odrl:Ticket",
"Asset": "odrl:Asset",
"AssetCollection": "odrl:AssetCollection",
"relation": {"@type": "@id", "@id": "odrl:relation"},
"hasPolicy": {"@type": "@id", "@id": "odrl:hasPolicy"},
"target": {"@type": "@id", "@id": "odrl:target"},
"output": {"@type": "@id", "@id": "odrl:output"},
"partOf": {"@type": "@id", "@id": "odrl:partOf"},
"source": {"@type": "@id", "@id": "odrl:source"},
"Party": "odrl:Party",
"PartyCollection": "odrl:PartyCollection",
"function": {"@type": "@vocab", "@id": "odrl:function"},
"PartyScope": "odrl:PartyScope",
"assignee": {"@type": "@id", "@id": "odrl:assignee"},
"assigner": {"@type": "@id", "@id": "odrl:assigner"},
"assigneeOf": {"@type": "@id", "@id": "odrl:assigneeOf"},
"assignerOf": {"@type": "@id", "@id": "odrl:assignerOf"},
"attributedParty": {"@type": "@id", "@id": "odrl:attributedParty"},
"attributingParty": {"@type": "@id", "@id": "odrl:attributingParty"},
"compensatedParty": {"@type": "@id", "@id": "odrl:compensatedParty"},
"compensatingParty": {"@type": "@id", "@id": "odrl:compensatingParty"},
"consentingParty": {"@type": "@id", "@id": "odrl:consentingParty"},
"consentedParty": {"@type": "@id", "@id": "odrl:consentedParty"},
"informedParty": {"@type": "@id", "@id": "odrl:informedParty"},
"informingParty": {"@type": "@id", "@id": "odrl:informingParty"},
"trackingParty": {"@type": "@id", "@id": "odrl:trackingParty"},
"trackedParty": {"@type": "@id", "@id": "odrl:trackedParty"},
"contractingParty": {"@type": "@id", "@id": "odrl:contractingParty"},
"contractedParty": {"@type": "@id", "@id": "odrl:contractedParty"},
"Action": "odrl:Action",
"action": {"@type": "@vocab", "@id": "odrl:action"},
"includedIn": {"@type": "@id", "@id": "odrl:includedIn"},
"implies": {"@type": "@id", "@id": "odrl:implies"},
"Permission": "odrl:Permission",
"permission": {"@type": "@id", "@id": "odrl:permission"},
"Prohibition": "odrl:Prohibition",
"prohibition": {"@type": "@id", "@id": "odrl:prohibition"},
"obligation": {"@type": "@id", "@id": "odrl:obligation"},
"use": "odrl:use",
"grantUse": "odrl:grantUse",
"aggregate": "odrl:aggregate",
"annotate": "odrl:annotate",
"anonymize": "odrl:anonymize",
"archive": "odrl:archive",
"concurrentUse": "odrl:concurrentUse",
"derive": "odrl:derive",
"digitize": "odrl:digitize",
"display": "odrl:display",
"distribute": "odrl:distribute",
"execute": "odrl:execute",
"extract": "odrl:extract",
"give": "odrl:give",
"index": "odrl:index",
"install": "odrl:install",
"modify": "odrl:modify",
"move": "odrl:move",
"play": "odrl:play",
"present": "odrl:present",
"print": "odrl:print",
"read": "odrl:read",
"reproduce": "odrl:reproduce",
"sell": "odrl:sell",
"stream": "odrl:stream",
"textToSpeech": "odrl:textToSpeech",
"transfer": "odrl:transfer",
"transform": "odrl:transform",
"translate": "odrl:translate",
"Duty": "odrl:Duty",
"duty": {"@type": "@id", "@id": "odrl:duty"},
"consequence": {"@type": "@id", "@id": "odrl:consequence"},
"remedy": {"@type": "@id", "@id": "odrl:remedy"},
"acceptTracking": "odrl:acceptTracking",
"attribute": "odrl:attribute",
"compensate": "odrl:compensate",
"delete": "odrl:delete",
"ensureExclusivity": "odrl:ensureExclusivity",
"include": "odrl:include",
"inform": "odrl:inform",
"nextPolicy": "odrl:nextPolicy",
"obtainConsent": "odrl:obtainConsent",
"reviewPolicy": "odrl:reviewPolicy",
"uninstall": "odrl:uninstall",
"watermark": "odrl:watermark",
"Constraint": "odrl:Constraint",
"LogicalConstraint": "odrl:LogicalConstraint",
"constraint": {"@type": "@id", "@id": "odrl:constraint"},
"refinement": {"@type": "@id", "@id": "odrl:refinement"},
"Operator": "odrl:Operator",
"operator": {"@type": "@vocab", "@id": "odrl:operator"},
"RightOperand": "odrl:RightOperand",
"rightOperand": "odrl:rightOperand",
"rightOperandReference": {
"@type": "xsd:anyURI",
"@id": "odrl:rightOperandReference",
},
"LeftOperand": "odrl:LeftOperand",
"leftOperand": {"@type": "@vocab", "@id": "odrl:leftOperand"},
"unit": "odrl:unit",
"dataType": {"@type": "xsd:anyType", "@id": "odrl:datatype"},
"status": "odrl:status",
"absolutePosition": "odrl:absolutePosition",
"absoluteSpatialPosition": "odrl:absoluteSpatialPosition",
"absoluteTemporalPosition": "odrl:absoluteTemporalPosition",
"absoluteSize": "odrl:absoluteSize",
"count": "odrl:count",
"dateTime": "odrl:dateTime",
"delayPeriod": "odrl:delayPeriod",
"deliveryChannel": "odrl:deliveryChannel",
"elapsedTime": "odrl:elapsedTime",
"event": "odrl:event",
"fileFormat": "odrl:fileFormat",
"industry": "odrl:industry:",
"language": "odrl:language",
"media": "odrl:media",
"meteredTime": "odrl:meteredTime",
"payAmount": "odrl:payAmount",
"percentage": "odrl:percentage",
"product": "odrl:product",
"purpose": "odrl:purpose",
"recipient": "odrl:recipient",
"relativePosition": "odrl:relativePosition",
"relativeSpatialPosition": "odrl:relativeSpatialPosition",
"relativeTemporalPosition": "odrl:relativeTemporalPosition",
"relativeSize": "odrl:relativeSize",
"resolution": "odrl:resolution",
"spatial": "odrl:spatial",
"spatialCoordinates": "odrl:spatialCoordinates",
"systemDevice": "odrl:systemDevice",
"timeInterval": "odrl:timeInterval",
"unitOfCount": "odrl:unitOfCount",
"version": "odrl:version",
"virtualLocation": "odrl:virtualLocation",
"eq": "odrl:eq",
"gt": "odrl:gt",
"gteq": "odrl:gteq",
"lt": "odrl:lt",
"lteq": "odrl:lteq",
"neq": "odrl:neg",
"isA": "odrl:isA",
"hasPart": "odrl:hasPart",
"isPartOf": "odrl:isPartOf",
"isAllOf": "odrl:isAllOf",
"isAnyOf": "odrl:isAnyOf",
"isNoneOf": "odrl:isNoneOf",
"or": "odrl:or",
"xone": "odrl:xone",
"and": "odrl:and",
"andSequence": "odrl:andSequence",
"policyUsage": "odrl:policyUsage",
}
}
| odrl = {'@context': {'odrl': 'http://www.w3.org/ns/odrl/2/', 'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', 'rdfs': 'http://www.w3.org/2000/01/rdf-schema#', 'owl': 'http://www.w3.org/2002/07/owl#', 'skos': 'http://www.w3.org/2004/02/skos/core#', 'dct': 'http://purl.org/dc/terms/', 'xsd': 'http://www.w3.org/2001/XMLSchema#', 'vcard': 'http://www.w3.org/2006/vcard/ns#', 'foaf': 'http://xmlns.com/foaf/0.1/', 'schema': 'http://schema.org/', 'cc': 'http://creativecommons.org/ns#', 'uid': '@id', 'type': '@type', 'Policy': 'odrl:Policy', 'Rule': 'odrl:Rule', 'profile': {'@type': '@id', '@id': 'odrl:profile'}, 'inheritFrom': {'@type': '@id', '@id': 'odrl:inheritFrom'}, 'ConflictTerm': 'odrl:ConflictTerm', 'conflict': {'@type': '@vocab', '@id': 'odrl:conflict'}, 'perm': 'odrl:perm', 'prohibit': 'odrl:prohibit', 'invalid': 'odrl:invalid', 'Agreement': 'odrl:Agreement', 'Assertion': 'odrl:Assertion', 'Offer': 'odrl:Offer', 'Privacy': 'odrl:Privacy', 'Request': 'odrl:Request', 'Set': 'odrl:Set', 'Ticket': 'odrl:Ticket', 'Asset': 'odrl:Asset', 'AssetCollection': 'odrl:AssetCollection', 'relation': {'@type': '@id', '@id': 'odrl:relation'}, 'hasPolicy': {'@type': '@id', '@id': 'odrl:hasPolicy'}, 'target': {'@type': '@id', '@id': 'odrl:target'}, 'output': {'@type': '@id', '@id': 'odrl:output'}, 'partOf': {'@type': '@id', '@id': 'odrl:partOf'}, 'source': {'@type': '@id', '@id': 'odrl:source'}, 'Party': 'odrl:Party', 'PartyCollection': 'odrl:PartyCollection', 'function': {'@type': '@vocab', '@id': 'odrl:function'}, 'PartyScope': 'odrl:PartyScope', 'assignee': {'@type': '@id', '@id': 'odrl:assignee'}, 'assigner': {'@type': '@id', '@id': 'odrl:assigner'}, 'assigneeOf': {'@type': '@id', '@id': 'odrl:assigneeOf'}, 'assignerOf': {'@type': '@id', '@id': 'odrl:assignerOf'}, 'attributedParty': {'@type': '@id', '@id': 'odrl:attributedParty'}, 'attributingParty': {'@type': '@id', '@id': 'odrl:attributingParty'}, 'compensatedParty': {'@type': '@id', '@id': 'odrl:compensatedParty'}, 'compensatingParty': {'@type': '@id', '@id': 'odrl:compensatingParty'}, 'consentingParty': {'@type': '@id', '@id': 'odrl:consentingParty'}, 'consentedParty': {'@type': '@id', '@id': 'odrl:consentedParty'}, 'informedParty': {'@type': '@id', '@id': 'odrl:informedParty'}, 'informingParty': {'@type': '@id', '@id': 'odrl:informingParty'}, 'trackingParty': {'@type': '@id', '@id': 'odrl:trackingParty'}, 'trackedParty': {'@type': '@id', '@id': 'odrl:trackedParty'}, 'contractingParty': {'@type': '@id', '@id': 'odrl:contractingParty'}, 'contractedParty': {'@type': '@id', '@id': 'odrl:contractedParty'}, 'Action': 'odrl:Action', 'action': {'@type': '@vocab', '@id': 'odrl:action'}, 'includedIn': {'@type': '@id', '@id': 'odrl:includedIn'}, 'implies': {'@type': '@id', '@id': 'odrl:implies'}, 'Permission': 'odrl:Permission', 'permission': {'@type': '@id', '@id': 'odrl:permission'}, 'Prohibition': 'odrl:Prohibition', 'prohibition': {'@type': '@id', '@id': 'odrl:prohibition'}, 'obligation': {'@type': '@id', '@id': 'odrl:obligation'}, 'use': 'odrl:use', 'grantUse': 'odrl:grantUse', 'aggregate': 'odrl:aggregate', 'annotate': 'odrl:annotate', 'anonymize': 'odrl:anonymize', 'archive': 'odrl:archive', 'concurrentUse': 'odrl:concurrentUse', 'derive': 'odrl:derive', 'digitize': 'odrl:digitize', 'display': 'odrl:display', 'distribute': 'odrl:distribute', 'execute': 'odrl:execute', 'extract': 'odrl:extract', 'give': 'odrl:give', 'index': 'odrl:index', 'install': 'odrl:install', 'modify': 'odrl:modify', 'move': 'odrl:move', 'play': 'odrl:play', 'present': 'odrl:present', 'print': 'odrl:print', 'read': 'odrl:read', 'reproduce': 'odrl:reproduce', 'sell': 'odrl:sell', 'stream': 'odrl:stream', 'textToSpeech': 'odrl:textToSpeech', 'transfer': 'odrl:transfer', 'transform': 'odrl:transform', 'translate': 'odrl:translate', 'Duty': 'odrl:Duty', 'duty': {'@type': '@id', '@id': 'odrl:duty'}, 'consequence': {'@type': '@id', '@id': 'odrl:consequence'}, 'remedy': {'@type': '@id', '@id': 'odrl:remedy'}, 'acceptTracking': 'odrl:acceptTracking', 'attribute': 'odrl:attribute', 'compensate': 'odrl:compensate', 'delete': 'odrl:delete', 'ensureExclusivity': 'odrl:ensureExclusivity', 'include': 'odrl:include', 'inform': 'odrl:inform', 'nextPolicy': 'odrl:nextPolicy', 'obtainConsent': 'odrl:obtainConsent', 'reviewPolicy': 'odrl:reviewPolicy', 'uninstall': 'odrl:uninstall', 'watermark': 'odrl:watermark', 'Constraint': 'odrl:Constraint', 'LogicalConstraint': 'odrl:LogicalConstraint', 'constraint': {'@type': '@id', '@id': 'odrl:constraint'}, 'refinement': {'@type': '@id', '@id': 'odrl:refinement'}, 'Operator': 'odrl:Operator', 'operator': {'@type': '@vocab', '@id': 'odrl:operator'}, 'RightOperand': 'odrl:RightOperand', 'rightOperand': 'odrl:rightOperand', 'rightOperandReference': {'@type': 'xsd:anyURI', '@id': 'odrl:rightOperandReference'}, 'LeftOperand': 'odrl:LeftOperand', 'leftOperand': {'@type': '@vocab', '@id': 'odrl:leftOperand'}, 'unit': 'odrl:unit', 'dataType': {'@type': 'xsd:anyType', '@id': 'odrl:datatype'}, 'status': 'odrl:status', 'absolutePosition': 'odrl:absolutePosition', 'absoluteSpatialPosition': 'odrl:absoluteSpatialPosition', 'absoluteTemporalPosition': 'odrl:absoluteTemporalPosition', 'absoluteSize': 'odrl:absoluteSize', 'count': 'odrl:count', 'dateTime': 'odrl:dateTime', 'delayPeriod': 'odrl:delayPeriod', 'deliveryChannel': 'odrl:deliveryChannel', 'elapsedTime': 'odrl:elapsedTime', 'event': 'odrl:event', 'fileFormat': 'odrl:fileFormat', 'industry': 'odrl:industry:', 'language': 'odrl:language', 'media': 'odrl:media', 'meteredTime': 'odrl:meteredTime', 'payAmount': 'odrl:payAmount', 'percentage': 'odrl:percentage', 'product': 'odrl:product', 'purpose': 'odrl:purpose', 'recipient': 'odrl:recipient', 'relativePosition': 'odrl:relativePosition', 'relativeSpatialPosition': 'odrl:relativeSpatialPosition', 'relativeTemporalPosition': 'odrl:relativeTemporalPosition', 'relativeSize': 'odrl:relativeSize', 'resolution': 'odrl:resolution', 'spatial': 'odrl:spatial', 'spatialCoordinates': 'odrl:spatialCoordinates', 'systemDevice': 'odrl:systemDevice', 'timeInterval': 'odrl:timeInterval', 'unitOfCount': 'odrl:unitOfCount', 'version': 'odrl:version', 'virtualLocation': 'odrl:virtualLocation', 'eq': 'odrl:eq', 'gt': 'odrl:gt', 'gteq': 'odrl:gteq', 'lt': 'odrl:lt', 'lteq': 'odrl:lteq', 'neq': 'odrl:neg', 'isA': 'odrl:isA', 'hasPart': 'odrl:hasPart', 'isPartOf': 'odrl:isPartOf', 'isAllOf': 'odrl:isAllOf', 'isAnyOf': 'odrl:isAnyOf', 'isNoneOf': 'odrl:isNoneOf', 'or': 'odrl:or', 'xone': 'odrl:xone', 'and': 'odrl:and', 'andSequence': 'odrl:andSequence', 'policyUsage': 'odrl:policyUsage'}} |
# List Unpacking
numbers = ["1","2","3","4"]
one, two, *others = numbers
print(one)
print(others)
| numbers = ['1', '2', '3', '4']
(one, two, *others) = numbers
print(one)
print(others) |
"""/**
* @author [Jai Miles]
* @email [jaimiles23@gmail.com]
* @create date 2020-05-18 09:56:46
* @modify date 2020-06-16 23:43:24
* @desc [
Data module for survival mode. Contains data for:
- Mode Name
- Welcome
- Scores
- Z-score response lists
- Survival Mode High Scores
]
*/
"""
##########
# Imports
##########
##########
# Mode Name
##########
MODE_NAME = "Survival Mode"
##########
# Survival Welcome
##########
MMT_FIRST_WELCOME = (
f"Welcome to {MODE_NAME}.",
1,
f"In {MODE_NAME}, answer as many questions as you can, without making a mistake.",
2,
"But watch out! The questions get harder until you mess up!",
)
########## Short Welcome
MT_SHORT_WELCOME = (
"Welcome back to",
"Welcome to",
"Loading",
)
MMT_SHORT_WELCOME = (
MT_SHORT_WELCOME,
" ",
MODE_NAME,
"!"
)
########## Long Welcome
MT_HOW_MANY = (
"How many",
)
MT_QUESTION_SYN = (
"questions",
"problems",
"times tables",
"tables",
)
MT_SOLVE = (
"can you get right?",
"can you get?",
"can you do?",
"can you answer?",
)
MMT_LONG_WELCOME = (
MT_SHORT_WELCOME,
" ",
MODE_NAME,
"!",
" ",
MT_HOW_MANY,
" ",
MT_QUESTION_SYN,
" ",
MT_SOLVE,
)
########## Scores
MT_HIGH_SCORE = (
"Your high score is {}",
"Your record is {}",
)
MT_AVERAGE_SCORE = (
"You usually get to {}",
"On average, you get to {}",
)
MT_BEAT_IT = (
"Let's beat that!",
"Let's try and beat that!",
"Let's try and do better than that!",
"Let's set a new record!",
"Can you beat that?",
"Do you think you can do better?",
)
##########
# SM Score
##########
MT_PROBLEM_SCORE = (
"You got through {} questions!",
"You answered {} questions!",
"You made it through {} questions!",
"You answered {} questions correctly!",
)
##########
# Z-score response lists
##########
MT_BETTER_NEXT_TIME = (
"Let's try and get higher next time.",
"Let's get a higher score next time.",
"We can do better next time.",
"We'll do better next time.",
)
MT_NORM_ATTEMPT = (
"Keep practicing and get even better.",
"Good game.",
"Nice game.",
)
MT_GOOD_ATTEMPT = (
"That's better than usual!",
"You're definitely improving!",
"You're getting better at this!",
"You're getting further each time!",
"You get better each time!",
)
MT_AWESOME_ATTEMPT = (
"You got really far this time!",
"You're on the way to setting a new record!",
"You almost set a new record!",
"Keep this up, and you'll set a new high score!",
)
##########
# Survival Mode High score
##########
MS_FIRST_HS = "I'll set your Survival Mode highscore as {} questions."
## Beat highscore MTT
MS_YOU = "You"
MT_BEAT = (
"beat",
"passed",
)
MS_YOUR = "your"
MT_HIGH_SCORE_SYNS = (
"old highscore",
"highscore",
"old record",
"record",
)
MS_OF = "of"
MTT_BEAT_OLD_HS = (
MS_YOU,
MT_BEAT,
MS_YOUR,
MT_HIGH_SCORE_SYNS,
MS_OF,
) # format with problem, & chance of questions. syns
# MT_NEW_HS = ( # not used right now.
# "I'll set your new highscore as {}.",
# "Your new high score is {}.",
# "Your new record is {}."
# )
MT_TIE_HS = (
"You tied your highscore of {}!",
"You tied your highscore of {} questions!",
"{} questions? Ha! That's your high score!",
)
| """/**
* @author [Jai Miles]
* @email [jaimiles23@gmail.com]
* @create date 2020-05-18 09:56:46
* @modify date 2020-06-16 23:43:24
* @desc [
Data module for survival mode. Contains data for:
- Mode Name
- Welcome
- Scores
- Z-score response lists
- Survival Mode High Scores
]
*/
"""
mode_name = 'Survival Mode'
mmt_first_welcome = (f'Welcome to {MODE_NAME}.', 1, f'In {MODE_NAME}, answer as many questions as you can, without making a mistake.', 2, 'But watch out! The questions get harder until you mess up!')
mt_short_welcome = ('Welcome back to', 'Welcome to', 'Loading')
mmt_short_welcome = (MT_SHORT_WELCOME, ' ', MODE_NAME, '!')
mt_how_many = ('How many',)
mt_question_syn = ('questions', 'problems', 'times tables', 'tables')
mt_solve = ('can you get right?', 'can you get?', 'can you do?', 'can you answer?')
mmt_long_welcome = (MT_SHORT_WELCOME, ' ', MODE_NAME, '!', ' ', MT_HOW_MANY, ' ', MT_QUESTION_SYN, ' ', MT_SOLVE)
mt_high_score = ('Your high score is {}', 'Your record is {}')
mt_average_score = ('You usually get to {}', 'On average, you get to {}')
mt_beat_it = ("Let's beat that!", "Let's try and beat that!", "Let's try and do better than that!", "Let's set a new record!", 'Can you beat that?', 'Do you think you can do better?')
mt_problem_score = ('You got through {} questions!', 'You answered {} questions!', 'You made it through {} questions!', 'You answered {} questions correctly!')
mt_better_next_time = ("Let's try and get higher next time.", "Let's get a higher score next time.", 'We can do better next time.', "We'll do better next time.")
mt_norm_attempt = ('Keep practicing and get even better.', 'Good game.', 'Nice game.')
mt_good_attempt = ("That's better than usual!", "You're definitely improving!", "You're getting better at this!", "You're getting further each time!", 'You get better each time!')
mt_awesome_attempt = ('You got really far this time!', "You're on the way to setting a new record!", 'You almost set a new record!', "Keep this up, and you'll set a new high score!")
ms_first_hs = "I'll set your Survival Mode highscore as {} questions."
ms_you = 'You'
mt_beat = ('beat', 'passed')
ms_your = 'your'
mt_high_score_syns = ('old highscore', 'highscore', 'old record', 'record')
ms_of = 'of'
mtt_beat_old_hs = (MS_YOU, MT_BEAT, MS_YOUR, MT_HIGH_SCORE_SYNS, MS_OF)
mt_tie_hs = ('You tied your highscore of {}!', 'You tied your highscore of {} questions!', "{} questions? Ha! That's your high score!") |
""" Include a dump of snapshot data from the live system"""
SNAPSHOTS_LIST = {
u"snapshots": [
{
u"duration_in_millis": 54877,
u"end_time": u"2018-05-06T05:00:54.937Z",
u"end_time_in_millis": 1525582854937,
u"failures": [],
u"indices": [
u"doaj_v1"
],
u"shards": {
u"failed": 0,
u"successful": 6,
u"total": 6
},
u"snapshot": u"snapshot_2018-05-06_0600",
u"start_time": u"2018-05-06T05:00:00.060Z",
u"start_time_in_millis": 1525582800060,
u"state": u"SUCCESS",
u"version": u"1.7.5",
u"version_id": 1070599
},
{
u"duration_in_millis": 53051,
u"end_time": u"2018-05-07T05:00:53.176Z",
u"end_time_in_millis": 1525669253176,
u"failures": [],
u"indices": [
u"doaj_v1"
],
u"shards": {
u"failed": 0,
u"successful": 6,
u"total": 6
},
u"snapshot": u"snapshot_2018-05-07_0600",
u"start_time": u"2018-05-07T05:00:00.125Z",
u"start_time_in_millis": 1525669200125,
u"state": u"SUCCESS",
u"version": u"1.7.5",
u"version_id": 1070599
},
{
u"duration_in_millis": 45674,
u"end_time": u"2018-05-08T05:00:45.990Z",
u"end_time_in_millis": 1525755645990,
u"failures": [],
u"indices": [
u"doaj_v1"
],
u"shards": {
u"failed": 0,
u"successful": 6,
u"total": 6
},
u"snapshot": u"snapshot_2018-05-08_0600",
u"start_time": u"2018-05-08T05:00:00.316Z",
u"start_time_in_millis": 1525755600316,
u"state": u"SUCCESS",
u"version": u"1.7.5",
u"version_id": 1070599
},
{
u"duration_in_millis": 52140,
u"end_time": u"2018-05-09T05:00:51.611Z",
u"end_time_in_millis": 1525842051611,
u"failures": [],
u"indices": [
u"doaj_v1"
],
u"shards": {
u"failed": 0,
u"successful": 6,
u"total": 6
},
u"snapshot": u"snapshot_2018-05-09_0600",
u"start_time": u"2018-05-09T04:59:59.471Z",
u"start_time_in_millis": 1525841999471,
u"state": u"SUCCESS",
u"version": u"1.7.5",
u"version_id": 1070599
},
{
u"duration_in_millis": 43258,
u"end_time": u"2018-05-10T05:00:42.828Z",
u"end_time_in_millis": 1525928442828,
u"failures": [],
u"indices": [
u"doaj_v1"
],
u"shards": {
u"failed": 0,
u"successful": 6,
u"total": 6
},
u"snapshot": u"snapshot_2018-05-10_0600",
u"start_time": u"2018-05-10T04:59:59.570Z",
u"start_time_in_millis": 1525928399570,
u"state": u"SUCCESS",
u"version": u"1.7.5",
u"version_id": 1070599
},
{
u"duration_in_millis": 49055,
u"end_time": u"2018-05-11T05:00:48.678Z",
u"end_time_in_millis": 1526014848678,
u"failures": [],
u"indices": [
u"doaj_v1"
],
u"shards": {
u"failed": 0,
u"successful": 6,
u"total": 6
},
u"snapshot": u"snapshot_2018-05-11_0600",
u"start_time": u"2018-05-11T04:59:59.623Z",
u"start_time_in_millis": 1526014799623,
u"state": u"SUCCESS",
u"version": u"1.7.5",
u"version_id": 1070599
},
{
u"duration_in_millis": 42105,
u"end_time": u"2018-05-12T05:00:42.006Z",
u"end_time_in_millis": 1526101242006,
u"failures": [],
u"indices": [
u"doaj_v1"
],
u"shards": {
u"failed": 0,
u"successful": 6,
u"total": 6
},
u"snapshot": u"snapshot_2018-05-12_0600",
u"start_time": u"2018-05-12T04:59:59.901Z",
u"start_time_in_millis": 1526101199901,
u"state": u"SUCCESS",
u"version": u"1.7.5",
u"version_id": 1070599
},
{
u"duration_in_millis": 36901,
u"end_time": u"2018-05-13T05:00:36.604Z",
u"end_time_in_millis": 1526187636604,
u"failures": [
{
u"index": u"doaj_v1",
u"node_id": u"RTVV05UoToubyPr9ErBlKg",
u"reason": u"node shutdown",
u"shard_id": 1,
u"status": u"INTERNAL_SERVER_ERROR"
},
{
u"index": u"doaj_v1",
u"node_id": u"RTVV05UoToubyPr9ErBlKg",
u"reason": u"node shutdown",
u"shard_id": 2,
u"status": u"INTERNAL_SERVER_ERROR"
}
],
u"indices": [
u"doaj_v1"
],
u"shards": {
u"failed": 2,
u"successful": 0,
u"total": 2
},
u"snapshot": u"snapshot_2018-05-13_0600",
u"start_time": u"2018-05-13T04:59:59.703Z",
u"start_time_in_millis": 1526187599703,
u"state": u"PARTIAL",
u"version": u"1.7.5",
u"version_id": 1070599
},
{
u"duration_in_millis": 40825,
u"end_time": u"2018-05-14T05:00:40.714Z",
u"end_time_in_millis": 1526274040714,
u"failures": [],
u"indices": [
u"doaj_v1"
],
u"shards": {
u"failed": 0,
u"successful": 6,
u"total": 6
},
u"snapshot": u"snapshot_2018-05-14_0600",
u"start_time": u"2018-05-14T04:59:59.889Z",
u"start_time_in_millis": 1526273999889,
u"state": u"SUCCESS",
u"version": u"1.7.5",
u"version_id": 1070599
}
]
}
| """ Include a dump of snapshot data from the live system"""
snapshots_list = {u'snapshots': [{u'duration_in_millis': 54877, u'end_time': u'2018-05-06T05:00:54.937Z', u'end_time_in_millis': 1525582854937, u'failures': [], u'indices': [u'doaj_v1'], u'shards': {u'failed': 0, u'successful': 6, u'total': 6}, u'snapshot': u'snapshot_2018-05-06_0600', u'start_time': u'2018-05-06T05:00:00.060Z', u'start_time_in_millis': 1525582800060, u'state': u'SUCCESS', u'version': u'1.7.5', u'version_id': 1070599}, {u'duration_in_millis': 53051, u'end_time': u'2018-05-07T05:00:53.176Z', u'end_time_in_millis': 1525669253176, u'failures': [], u'indices': [u'doaj_v1'], u'shards': {u'failed': 0, u'successful': 6, u'total': 6}, u'snapshot': u'snapshot_2018-05-07_0600', u'start_time': u'2018-05-07T05:00:00.125Z', u'start_time_in_millis': 1525669200125, u'state': u'SUCCESS', u'version': u'1.7.5', u'version_id': 1070599}, {u'duration_in_millis': 45674, u'end_time': u'2018-05-08T05:00:45.990Z', u'end_time_in_millis': 1525755645990, u'failures': [], u'indices': [u'doaj_v1'], u'shards': {u'failed': 0, u'successful': 6, u'total': 6}, u'snapshot': u'snapshot_2018-05-08_0600', u'start_time': u'2018-05-08T05:00:00.316Z', u'start_time_in_millis': 1525755600316, u'state': u'SUCCESS', u'version': u'1.7.5', u'version_id': 1070599}, {u'duration_in_millis': 52140, u'end_time': u'2018-05-09T05:00:51.611Z', u'end_time_in_millis': 1525842051611, u'failures': [], u'indices': [u'doaj_v1'], u'shards': {u'failed': 0, u'successful': 6, u'total': 6}, u'snapshot': u'snapshot_2018-05-09_0600', u'start_time': u'2018-05-09T04:59:59.471Z', u'start_time_in_millis': 1525841999471, u'state': u'SUCCESS', u'version': u'1.7.5', u'version_id': 1070599}, {u'duration_in_millis': 43258, u'end_time': u'2018-05-10T05:00:42.828Z', u'end_time_in_millis': 1525928442828, u'failures': [], u'indices': [u'doaj_v1'], u'shards': {u'failed': 0, u'successful': 6, u'total': 6}, u'snapshot': u'snapshot_2018-05-10_0600', u'start_time': u'2018-05-10T04:59:59.570Z', u'start_time_in_millis': 1525928399570, u'state': u'SUCCESS', u'version': u'1.7.5', u'version_id': 1070599}, {u'duration_in_millis': 49055, u'end_time': u'2018-05-11T05:00:48.678Z', u'end_time_in_millis': 1526014848678, u'failures': [], u'indices': [u'doaj_v1'], u'shards': {u'failed': 0, u'successful': 6, u'total': 6}, u'snapshot': u'snapshot_2018-05-11_0600', u'start_time': u'2018-05-11T04:59:59.623Z', u'start_time_in_millis': 1526014799623, u'state': u'SUCCESS', u'version': u'1.7.5', u'version_id': 1070599}, {u'duration_in_millis': 42105, u'end_time': u'2018-05-12T05:00:42.006Z', u'end_time_in_millis': 1526101242006, u'failures': [], u'indices': [u'doaj_v1'], u'shards': {u'failed': 0, u'successful': 6, u'total': 6}, u'snapshot': u'snapshot_2018-05-12_0600', u'start_time': u'2018-05-12T04:59:59.901Z', u'start_time_in_millis': 1526101199901, u'state': u'SUCCESS', u'version': u'1.7.5', u'version_id': 1070599}, {u'duration_in_millis': 36901, u'end_time': u'2018-05-13T05:00:36.604Z', u'end_time_in_millis': 1526187636604, u'failures': [{u'index': u'doaj_v1', u'node_id': u'RTVV05UoToubyPr9ErBlKg', u'reason': u'node shutdown', u'shard_id': 1, u'status': u'INTERNAL_SERVER_ERROR'}, {u'index': u'doaj_v1', u'node_id': u'RTVV05UoToubyPr9ErBlKg', u'reason': u'node shutdown', u'shard_id': 2, u'status': u'INTERNAL_SERVER_ERROR'}], u'indices': [u'doaj_v1'], u'shards': {u'failed': 2, u'successful': 0, u'total': 2}, u'snapshot': u'snapshot_2018-05-13_0600', u'start_time': u'2018-05-13T04:59:59.703Z', u'start_time_in_millis': 1526187599703, u'state': u'PARTIAL', u'version': u'1.7.5', u'version_id': 1070599}, {u'duration_in_millis': 40825, u'end_time': u'2018-05-14T05:00:40.714Z', u'end_time_in_millis': 1526274040714, u'failures': [], u'indices': [u'doaj_v1'], u'shards': {u'failed': 0, u'successful': 6, u'total': 6}, u'snapshot': u'snapshot_2018-05-14_0600', u'start_time': u'2018-05-14T04:59:59.889Z', u'start_time_in_millis': 1526273999889, u'state': u'SUCCESS', u'version': u'1.7.5', u'version_id': 1070599}]} |
#perulangan bersarang pada python
list_angka = [1,2,3]
list_huruf = ['a','b']
for angka in list_angka:
for huruf in list_huruf:
print(huruf)
print(angka) | list_angka = [1, 2, 3]
list_huruf = ['a', 'b']
for angka in list_angka:
for huruf in list_huruf:
print(huruf)
print(angka) |
# Program make a simple calculator
# This function adds two numbers
def add(x, y):
return x + y
# This function subtracts two numbers
def subtract(x, y):
return x - y
# This function multiplies two numbers
def multiply(x, y):
return x * y
# This function divides two numbers
def divide(x, y):
return x / y
print("Select operation.")
print("1.Add")
print("2.Subtract")
print("3.Multiply")
print("4.Divide")
while True:
# Take input from the user
choice = input("Enter choice(1/2/3/4): ") | def add(x, y):
return x + y
def subtract(x, y):
return x - y
def multiply(x, y):
return x * y
def divide(x, y):
return x / y
print('Select operation.')
print('1.Add')
print('2.Subtract')
print('3.Multiply')
print('4.Divide')
while True:
choice = input('Enter choice(1/2/3/4): ') |
class SomeClass(object):
""" Awesome class
@ivar bar: great stuff
@type bar: string
"""
def __init__(self):
self.bar = None | class Someclass(object):
""" Awesome class
@ivar bar: great stuff
@type bar: string
"""
def __init__(self):
self.bar = None |
"""
.. module:: project.settings.celery
synopsis: Celery settings
"""
CELERY_BROKER_URL = "amqp://user:pwd@rabbitmq:5672/test"
CELERY_RESULT_BACKEND = "redis://redis:6379/0"
CELERY_WORKER_LOG_FORMAT = (
"[CELERY] $(processName)s %(levelname)s %(asctime)s "
"%(module)s '%(name)s.%(funcName)s:%(lineno)s: %(message)s"
)
| """
.. module:: project.settings.celery
synopsis: Celery settings
"""
celery_broker_url = 'amqp://user:pwd@rabbitmq:5672/test'
celery_result_backend = 'redis://redis:6379/0'
celery_worker_log_format = "[CELERY] $(processName)s %(levelname)s %(asctime)s %(module)s '%(name)s.%(funcName)s:%(lineno)s: %(message)s" |
def findAns(N):
if (N <= 2):
print ("NO")
return
value = (N * (N + 1)) // 2
if(value & 1):
print ("NO")
return
v1 = []
v2 = []
if (not (N & 1)):
turn = 1
start = 1
last = N
while (start < last):
if (turn):
v1.append(start)
v1.append(last)
turn = 0
else:
v2.append(start)
v2.append(last)
turn = 1
start += 1
last -= 1
else:
rem = value // 2
vis = [False] * (N + 1)
for i in range (1, N + 1):
vis[i] = False
vis[0] = True
for i in range (N , 0, -1):
if (rem > i):
v1.append(i)
vis[i] = True
rem -= i
else:
v1.append(rem)
vis[rem] = True
break
for i in range (1, N + 1):
if (not vis[i]):
v2.append(i)
print ("YES""\n" "Size of subset 1 is: ", end = "")
print (len( v1))
print ("Elements of the subset are: ", end = "")
for c in v1:
print (c, end = " ")
print ()
print ("Size of subset 2 is: ", end = "")
print(len( v2))
print ("Elements of the subset are: ", end = "")
for c in v2:
print (c, end = " ")
inp = int(input("Enter number: "))
findAns(inp)
| def find_ans(N):
if N <= 2:
print('NO')
return
value = N * (N + 1) // 2
if value & 1:
print('NO')
return
v1 = []
v2 = []
if not N & 1:
turn = 1
start = 1
last = N
while start < last:
if turn:
v1.append(start)
v1.append(last)
turn = 0
else:
v2.append(start)
v2.append(last)
turn = 1
start += 1
last -= 1
else:
rem = value // 2
vis = [False] * (N + 1)
for i in range(1, N + 1):
vis[i] = False
vis[0] = True
for i in range(N, 0, -1):
if rem > i:
v1.append(i)
vis[i] = True
rem -= i
else:
v1.append(rem)
vis[rem] = True
break
for i in range(1, N + 1):
if not vis[i]:
v2.append(i)
print('YES\nSize of subset 1 is: ', end='')
print(len(v1))
print('Elements of the subset are: ', end='')
for c in v1:
print(c, end=' ')
print()
print('Size of subset 2 is: ', end='')
print(len(v2))
print('Elements of the subset are: ', end='')
for c in v2:
print(c, end=' ')
inp = int(input('Enter number: '))
find_ans(inp) |
delay = 'delays=pairs(-10us, [-10.1us, 0]+log_series(562ns, 10ms, steps_per_decade=4))'
description = 'Laser Y = -4.235mm, X-ray 40um (H) x 40um (V), Laser 1443nm, 1.10mJ'
finish_series = False
finish_series_variable = u'Delay'
basename = 'RNA-Hairpin-8BP-AU-Stem-End-1'
power = ''
temperature_wait = 1.0
temperature_idle = 22.0
temperature = 'ramp(low=20,high=24,step=0.5,hold=2,repeat=1)'
scan_points = ''
scan_return = 1.0
scan_relative = 1.0
scan_motor = ''
temperatures = '-15.35, 20.15, 89.15'
collection_order = 'Delay, Repeat=4, Temperature, Repeat=5'
cancelled = False
directory = '/net/mx340hs/data/anfinrud_1906/Data/WAXS/RNA-Hairpin/RNA-Hairpin-8BP/RNA-Hairpin-8BP-AU-Stem-End/RNA-Hairpin-8BP-AU-Stem-End-1'
diagnostics = 'ring_current, bunch_current, temperature'
logfile_basename = 'RNA-Hairpin-8BP-AU-Stem-End-1.log'
scan_origin = -1.1740000000000004
detector_configuration = 'xray_detector, xray_scope, laser_scope' | delay = 'delays=pairs(-10us, [-10.1us, 0]+log_series(562ns, 10ms, steps_per_decade=4))'
description = 'Laser Y = -4.235mm, X-ray 40um (H) x 40um (V), Laser 1443nm, 1.10mJ'
finish_series = False
finish_series_variable = u'Delay'
basename = 'RNA-Hairpin-8BP-AU-Stem-End-1'
power = ''
temperature_wait = 1.0
temperature_idle = 22.0
temperature = 'ramp(low=20,high=24,step=0.5,hold=2,repeat=1)'
scan_points = ''
scan_return = 1.0
scan_relative = 1.0
scan_motor = ''
temperatures = '-15.35, 20.15, 89.15'
collection_order = 'Delay, Repeat=4, Temperature, Repeat=5'
cancelled = False
directory = '/net/mx340hs/data/anfinrud_1906/Data/WAXS/RNA-Hairpin/RNA-Hairpin-8BP/RNA-Hairpin-8BP-AU-Stem-End/RNA-Hairpin-8BP-AU-Stem-End-1'
diagnostics = 'ring_current, bunch_current, temperature'
logfile_basename = 'RNA-Hairpin-8BP-AU-Stem-End-1.log'
scan_origin = -1.1740000000000004
detector_configuration = 'xray_detector, xray_scope, laser_scope' |
n = int(input())
f = [[c == '.' for c in input()] for _ in range(n)]
r2 = 0
for xc in range(n):
for yc in range(n):
if not f[xc][yc]:
continue
closest = 2 * n ** 2
for x in range(-1, n + 1):
for y in range(-1, n + 1):
if 0 <= x < n and 0 <= y < n and f[x][y]:
continue
closest = min(closest, (x - xc) ** 2 + (y - yc) ** 2)
r2 = max(r2, closest)
r = 0
while (r + 1) ** 2 < r2:
r += 1
print(r)
| n = int(input())
f = [[c == '.' for c in input()] for _ in range(n)]
r2 = 0
for xc in range(n):
for yc in range(n):
if not f[xc][yc]:
continue
closest = 2 * n ** 2
for x in range(-1, n + 1):
for y in range(-1, n + 1):
if 0 <= x < n and 0 <= y < n and f[x][y]:
continue
closest = min(closest, (x - xc) ** 2 + (y - yc) ** 2)
r2 = max(r2, closest)
r = 0
while (r + 1) ** 2 < r2:
r += 1
print(r) |
class License:
def __init__(self, license_id, name, short_name, cross_reference, comment, is_spdx_official):
self.license_id = license_id
self.name = name
self.short_name = short_name
self.cross_reference = cross_reference
self.comment = comment
self.is_spdx_official = is_spdx_official
class FileType:
def __init__(self, file_type_id, name):
self.file_type_id = file_type_id
self.name = name
class Project:
def __init__(self, project_id, name, homepage, uri):
self.project_id = project_id
self.name = name
self.homepage = homepage
self.uri = uri
class File:
def __init__(self, file_id, file_type_id, sha256, copyright_text, project_id, comment, notice):
self.file_id = file_id
self.file_type_id = file_type_id
self.sha256 = sha256
self.copyright_text = copyright_text
self.project_id = project_id
self.comment = comment
self.notice = notice
class FileLicense:
def __init__(self, file_license_id, file_id, license_id, extracted_text):
self.file_license_id = file_license_id
self.file_id = file_id
self.license_id = license_id
self.extracted_text = extracted_text
class CreatorType:
def __init__(self, creator_type_id, name):
self.creator_type_id = creator_type_id
self.name = name
class Creator:
def __init__(self, creator_id, creator_type_id, name, email):
self.creator_id = creator_id
self.creator_type_id = creator_type_id
self.name = name
self.email = email
class Package:
def __init__(self,
package_id,
name,
version,
file_name,
supplier_id,
originator_id,
download_location,
verification_code,
ver_code_excluded_file_id,
sha256,
home_page,
source_info,
concluded_license_id,
declared_license_id,
license_comment,
copyright_text,
summary,
description,
comment,
dosocs2_dir_code):
self.package_id = package_id
self.name = name
self.version = version
self.file_name = file_name
self.supplier_id = supplier_id
self.originator_id = originator_id
self.download_location = download_location
self.verification_code = verification_code
self.ver_code_excluded_file_id = ver_code_excluded_file_id
self.sha256 = sha256
self.home_page = home_page
self.source_info = source_info
self.concluded_license_id = concluded_license_id
self.declared_license_id = declared_license_id
self.license_comment = license_comment
self.copyright_text = copyright_text
self.summary = summary
self.description = description
self.comment = comment
self.dosocs2_dir_code = dosocs2_dir_code
class PackageFile:
def __init__(self, package_file_id, package_id, file_id, concluded_license_id, license_comment, file_name):
self.package_file_id = package_file_id
self.package_id = package_id
self.file_id = file_id
self.concluded_license_id = concluded_license_id
self.license_comment = license_comment
self.file_name = file_name
class DocumentNamespace:
def __init__(self, document_namespace_id, uri):
self.document_namespace_id = document_namespace_id
self.uri = uri
class Document:
def __init__(self,
document_id,
document_namespace_id,
data_license_id,
spdx_version,
name,
license_list_version,
created_ts,
creator_comment,
document_comment,
package_id):
self.document_id = document_id
self.document_namespace_id = document_namespace_id
self.data_license_id = data_license_id
self.spdx_version = spdx_version
self.name = name
self.license_list_version = license_list_version
self.created_ts = created_ts
self.creator_comment = creator_comment
self.document_comment = document_comment
self.package_id = package_id
class ExternalRef:
def __init__(self, external_ref_id, document_id, document_namespace_id, id_string, sha256):
self.external_ref_id = external_ref_id
self.document_id = document_id
self.document_namespace_id = document_namespace_id
self.id_string = id_string
self.sha256 = sha256
class DocumentCreator:
def __init__(self, document_creator_id, document_id, creator_id):
self.document_creator_id = document_creator_id
self.document_id = document_id
self.creator_id = creator_id
class FileContributor:
def __init__(self, file_contributor_id, file_id, contributor):
self.file_contributor_id = file_contributor_id
self.file_id = file_id
self.contributor = contributor
class Identifier:
def __init__(self, identifier_id, document_namespace_id, id_string, document_id, package_id, package_file_id):
self.identifier_id = identifier_id
self.document_namespace_id = document_namespace_id
self.id_string = id_string
self.document_id = document_id
self.package_id = package_id
self.package_file_id = package_file_id
class RelationshipType:
def __init__(self, relationship_type_id, name):
self.relationship_type_id = relationship_type_id
self.name = name
class Relationship:
def __init__(self,
relationship_id,
left_identifier_id,
right_identifier_id,
relationship_type_id,
relationship_comment):
self.relationship_id = relationship_id
self.left_identifier_id = left_identifier_id
self.right_identifier_id = right_identifier_id
self.relationship_type_id = relationship_type_id
self.relationship_comment = relationship_comment
class AnnotationType:
def __init__(self, annotation_type_id, name):
self.annotation_type_id = annotation_type_id,
self.name = name
class Annotation:
def __init__(self, annotation_id, document_id, annotation_type_id, identifier_id, creator_id, created_ts, comment):
self.annotation_id = annotation_id
self.document_id = document_id
self.annotation_type_id = annotation_type_id
self.identifier_id = identifier_id
self.creator_id = creator_id
self.created_ts = created_ts
self.comment = comment
class Scanner:
def __init__(self, scanner_id, name):
self.scanner_id = scanner_id
self.name = name
class PackageScan:
def __init__(self, package_scan_id, package_id, scanner_id):
self.package_scan_id = package_scan_id
self.package_id = package_id
self.scanner_id = scanner_id
class FileScan:
def __init__(self, file_scan_id, file_id, scanner_id):
self.file_scan_id = file_scan_id
self.file_id = file_id
self.scanner_id = scanner_id
class Queries:
def __init__(self, host, port, username, password):
# TODO starts database connection
return
def get_license(self, projectId):
# TODO gets license/licenses from the projectId
return
def get_creators(self, projectId):
# TODO gets the creators of the project
return
def get_files(self, projectId):
# TODO gets files of a project
return
def close(self):
# TODO closes database connection
return
| class License:
def __init__(self, license_id, name, short_name, cross_reference, comment, is_spdx_official):
self.license_id = license_id
self.name = name
self.short_name = short_name
self.cross_reference = cross_reference
self.comment = comment
self.is_spdx_official = is_spdx_official
class Filetype:
def __init__(self, file_type_id, name):
self.file_type_id = file_type_id
self.name = name
class Project:
def __init__(self, project_id, name, homepage, uri):
self.project_id = project_id
self.name = name
self.homepage = homepage
self.uri = uri
class File:
def __init__(self, file_id, file_type_id, sha256, copyright_text, project_id, comment, notice):
self.file_id = file_id
self.file_type_id = file_type_id
self.sha256 = sha256
self.copyright_text = copyright_text
self.project_id = project_id
self.comment = comment
self.notice = notice
class Filelicense:
def __init__(self, file_license_id, file_id, license_id, extracted_text):
self.file_license_id = file_license_id
self.file_id = file_id
self.license_id = license_id
self.extracted_text = extracted_text
class Creatortype:
def __init__(self, creator_type_id, name):
self.creator_type_id = creator_type_id
self.name = name
class Creator:
def __init__(self, creator_id, creator_type_id, name, email):
self.creator_id = creator_id
self.creator_type_id = creator_type_id
self.name = name
self.email = email
class Package:
def __init__(self, package_id, name, version, file_name, supplier_id, originator_id, download_location, verification_code, ver_code_excluded_file_id, sha256, home_page, source_info, concluded_license_id, declared_license_id, license_comment, copyright_text, summary, description, comment, dosocs2_dir_code):
self.package_id = package_id
self.name = name
self.version = version
self.file_name = file_name
self.supplier_id = supplier_id
self.originator_id = originator_id
self.download_location = download_location
self.verification_code = verification_code
self.ver_code_excluded_file_id = ver_code_excluded_file_id
self.sha256 = sha256
self.home_page = home_page
self.source_info = source_info
self.concluded_license_id = concluded_license_id
self.declared_license_id = declared_license_id
self.license_comment = license_comment
self.copyright_text = copyright_text
self.summary = summary
self.description = description
self.comment = comment
self.dosocs2_dir_code = dosocs2_dir_code
class Packagefile:
def __init__(self, package_file_id, package_id, file_id, concluded_license_id, license_comment, file_name):
self.package_file_id = package_file_id
self.package_id = package_id
self.file_id = file_id
self.concluded_license_id = concluded_license_id
self.license_comment = license_comment
self.file_name = file_name
class Documentnamespace:
def __init__(self, document_namespace_id, uri):
self.document_namespace_id = document_namespace_id
self.uri = uri
class Document:
def __init__(self, document_id, document_namespace_id, data_license_id, spdx_version, name, license_list_version, created_ts, creator_comment, document_comment, package_id):
self.document_id = document_id
self.document_namespace_id = document_namespace_id
self.data_license_id = data_license_id
self.spdx_version = spdx_version
self.name = name
self.license_list_version = license_list_version
self.created_ts = created_ts
self.creator_comment = creator_comment
self.document_comment = document_comment
self.package_id = package_id
class Externalref:
def __init__(self, external_ref_id, document_id, document_namespace_id, id_string, sha256):
self.external_ref_id = external_ref_id
self.document_id = document_id
self.document_namespace_id = document_namespace_id
self.id_string = id_string
self.sha256 = sha256
class Documentcreator:
def __init__(self, document_creator_id, document_id, creator_id):
self.document_creator_id = document_creator_id
self.document_id = document_id
self.creator_id = creator_id
class Filecontributor:
def __init__(self, file_contributor_id, file_id, contributor):
self.file_contributor_id = file_contributor_id
self.file_id = file_id
self.contributor = contributor
class Identifier:
def __init__(self, identifier_id, document_namespace_id, id_string, document_id, package_id, package_file_id):
self.identifier_id = identifier_id
self.document_namespace_id = document_namespace_id
self.id_string = id_string
self.document_id = document_id
self.package_id = package_id
self.package_file_id = package_file_id
class Relationshiptype:
def __init__(self, relationship_type_id, name):
self.relationship_type_id = relationship_type_id
self.name = name
class Relationship:
def __init__(self, relationship_id, left_identifier_id, right_identifier_id, relationship_type_id, relationship_comment):
self.relationship_id = relationship_id
self.left_identifier_id = left_identifier_id
self.right_identifier_id = right_identifier_id
self.relationship_type_id = relationship_type_id
self.relationship_comment = relationship_comment
class Annotationtype:
def __init__(self, annotation_type_id, name):
self.annotation_type_id = (annotation_type_id,)
self.name = name
class Annotation:
def __init__(self, annotation_id, document_id, annotation_type_id, identifier_id, creator_id, created_ts, comment):
self.annotation_id = annotation_id
self.document_id = document_id
self.annotation_type_id = annotation_type_id
self.identifier_id = identifier_id
self.creator_id = creator_id
self.created_ts = created_ts
self.comment = comment
class Scanner:
def __init__(self, scanner_id, name):
self.scanner_id = scanner_id
self.name = name
class Packagescan:
def __init__(self, package_scan_id, package_id, scanner_id):
self.package_scan_id = package_scan_id
self.package_id = package_id
self.scanner_id = scanner_id
class Filescan:
def __init__(self, file_scan_id, file_id, scanner_id):
self.file_scan_id = file_scan_id
self.file_id = file_id
self.scanner_id = scanner_id
class Queries:
def __init__(self, host, port, username, password):
return
def get_license(self, projectId):
return
def get_creators(self, projectId):
return
def get_files(self, projectId):
return
def close(self):
return |
def largestNumber(array):
extval, ans = [], ""
l = len(str(max(array))) + 1
for i in array:
temp = str(i) * l
extval.append((temp[:l:], i))
extval.sort(reverse = True)
for i in extval:
ans += str(i[1])
if int(ans)==0:
return "0"
return ans
for t in range(int(input())):
n=int(input())
arr=list(map(int,input().split()))
print(largestNumber(arr)) | def largest_number(array):
(extval, ans) = ([], '')
l = len(str(max(array))) + 1
for i in array:
temp = str(i) * l
extval.append((temp[:l], i))
extval.sort(reverse=True)
for i in extval:
ans += str(i[1])
if int(ans) == 0:
return '0'
return ans
for t in range(int(input())):
n = int(input())
arr = list(map(int, input().split()))
print(largest_number(arr)) |
# Copyright 2012 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at: http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distrib-
# uted 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
# specific language governing permissions and limitations under the License.
XTB_LANGUAGES = [
"af",
"am",
"ar",
"bg",
"bn",
"ca",
"cs",
"da",
"de",
"el",
"en-GB",
"es",
"es-419",
"es-MX",
"et",
"eu",
"fa",
"fi",
"fil",
"fr",
"fr-CA",
"gl",
"gu",
"hi",
"hr",
"hu",
"id",
"is",
"it",
"iw",
"ja",
"km",
"kn",
"ko",
"lo",
"lt",
"lv",
"ml",
"mr",
"ms",
"my",
"ne",
"nl",
"no",
"pl",
"pt-BR",
"pt-PT",
"ro",
"ru",
"si",
"sk",
"sl",
"sr",
"sv",
"sw",
"ta",
"te",
"th",
"tr",
"uk",
"ur",
"vi",
"zh-CN",
"zh-HK",
"zh-TW",
"zu",
]
ALL_LANGUAGES = XTB_LANGUAGES + ["en"]
| xtb_languages = ['af', 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'es', 'es-419', 'es-MX', 'et', 'eu', 'fa', 'fi', 'fil', 'fr', 'fr-CA', 'gl', 'gu', 'hi', 'hr', 'hu', 'id', 'is', 'it', 'iw', 'ja', 'km', 'kn', 'ko', 'lo', 'lt', 'lv', 'ml', 'mr', 'ms', 'my', 'ne', 'nl', 'no', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', 'si', 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', 'ur', 'vi', 'zh-CN', 'zh-HK', 'zh-TW', 'zu']
all_languages = XTB_LANGUAGES + ['en'] |
#
# PySNMP MIB module OSPF-PRIVATE-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/OSPF-PRIVATE-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:26:28 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint")
cjnProtocol, = mibBuilder.importSymbols("Cajun-ROOT", "cjnProtocol")
RouterID, TOSType, AreaID, Metric = mibBuilder.importSymbols("OSPF-MIB", "RouterID", "TOSType", "AreaID", "Metric")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
TimeTicks, NotificationType, Bits, Gauge32, ModuleIdentity, Unsigned32, Integer32, IpAddress, Counter64, ObjectIdentity, Counter32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, iso = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "NotificationType", "Bits", "Gauge32", "ModuleIdentity", "Unsigned32", "Integer32", "IpAddress", "Counter64", "ObjectIdentity", "Counter32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso")
RowStatus, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "TextualConvention", "DisplayString")
cjnOspf = ModuleIdentity((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9))
if mibBuilder.loadTexts: cjnOspf.setLastUpdated('9903020000Z')
if mibBuilder.loadTexts: cjnOspf.setOrganization("Lucent's Concord Technology Center (CTC)")
cjnOspfGblConfGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1))
cjnOspfRouterId = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 1), RouterID()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfRouterId.setStatus('current')
cjnOspfPathSplit = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfPathSplit.setStatus('current')
cjnOspfPeMax = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfPeMax.setStatus('current')
cjnOspfSpfState = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfSpfState.setStatus('current')
cjnOspfAsbdrStatus = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfAsbdrStatus.setStatus('current')
cjnOspfAutoVLinkCreate = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfAutoVLinkCreate.setStatus('current')
cjnOspfSpfHold = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 7), Integer32().clone(3)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfSpfHold.setStatus('current')
cjnOspfSpfSuspendTime = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 8), Integer32().clone(1000)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfSpfSuspendTime.setStatus('current')
cjnOspfLocalExtType = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfLocalExtType.setStatus('current')
cjnOspfRipExtType = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfRipExtType.setStatus('current')
cjnOspfSpfStaticExtType = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfSpfStaticExtType.setStatus('current')
cjnOspfLowExtType = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfLowExtType.setStatus('current')
cjnOspfTraceFlags = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfTraceFlags.setStatus('current')
cjnOspfGlobalStatsReset = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cjnOspfGlobalStatsReset.setStatus('current')
cjnOspfGblStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2))
cjnOspfTOSCount = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTOSCount.setStatus('current')
cjnOspfRunSpf = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRunSpf.setStatus('current')
cjnOspfAbdrStatus = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAbdrStatus.setStatus('current')
cjnOspfTxNewLsa = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxNewLsa.setStatus('current')
cjnOspfRxNewLsa = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxNewLsa.setStatus('current')
cjnOspfRxHelloCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxHelloCnt.setStatus('current')
cjnOspfTxHelloCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxHelloCnt.setStatus('current')
cjnOspfRxDBDescCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxDBDescCnt.setStatus('current')
cjnOspfTxDBDescCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxDBDescCnt.setStatus('current')
cjnOspfRxLsaAckCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxLsaAckCnt.setStatus('current')
cjnOspfTxLsaAckCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxLsaAckCnt.setStatus('current')
cjnOspfRxLsaUpdCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxLsaUpdCnt.setStatus('current')
cjnOspfTxLsaUpdCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxLsaUpdCnt.setStatus('current')
cjnOspfRxLsaReqCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRxLsaReqCnt.setStatus('current')
cjnOspfTxLsaReqCnt = MibScalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfTxLsaReqCnt.setStatus('current')
cjnOspfIfTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3), )
if mibBuilder.loadTexts: cjnOspfIfTable.setStatus('current')
cjnOspfIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfIfIpAddress"))
if mibBuilder.loadTexts: cjnOspfIfEntry.setStatus('current')
cjnOspfIfIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfIpAddress.setStatus('current')
cjnOspfIfRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfRowStatus.setStatus('current')
cjnOspfIfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 3), AreaID()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfAreaId.setStatus('current')
cjnOspfIfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfMask.setStatus('current')
cjnOspfIfType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("bcast", 1), ("nbma", 2), ("pointToPoint", 3), ("pointToMultiPoint", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfType.setStatus('current')
cjnOspfIfCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 6), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfCost.setStatus('current')
cjnOspfIfDrRouterId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 7), RouterID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfDrRouterId.setStatus('current')
cjnOspfIfDrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfDrIpAddr.setStatus('current')
cjnOspfIfBDrRouterId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfBDrRouterId.setStatus('current')
cjnOspfIfDrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfDrState.setStatus('current')
cjnOspfIfHelloTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 11), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfHelloTimer.setStatus('current')
cjnOspfIfDeadInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 12), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfDeadInterval.setStatus('current')
cjnOspfIfRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 13), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfRtrPriority.setStatus('current')
cjnOspfIfRxmtTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 14), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfRxmtTimer.setStatus('current')
cjnOspfIfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 15), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfTransitDelay.setStatus('current')
cjnOspfIfAuthKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfAuthKey.setStatus('current')
cjnOspfIfMd5KeyId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 17), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfMd5KeyId.setStatus('current')
cjnOspfIfMd5KeyFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfMd5KeyFlags.setStatus('current')
cjnOspfIfMd5Key = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 19), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfMd5Key.setStatus('current')
cjnOspfIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("simple", 1), ("md5", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfAuthType.setStatus('current')
cjnOspfIfMtu = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfIfMtu.setStatus('current')
cjnOspfIfPollInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 22), Integer32().clone(120)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfIfPollInterval.setStatus('current')
cjnOspfVirtIfTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4), )
if mibBuilder.loadTexts: cjnOspfVirtIfTable.setStatus('current')
cjnOspfVirtIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfVirtIfAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfVirtIfNbrRtrId"))
if mibBuilder.loadTexts: cjnOspfVirtIfEntry.setStatus('current')
cjnOspfVirtIfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 1), AreaID()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfAreaId.setStatus('current')
cjnOspfVirtIfNbrRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 2), RouterID()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfNbrRtrId.setStatus('current')
cjnOspfVirtIfRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfRowStatus.setStatus('current')
cjnOspfVirtIfDrRouterId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 4), RouterID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfVirtIfDrRouterId.setStatus('current')
cjnOspfVirtIfDrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfVirtIfDrIpAddr.setStatus('current')
cjnOspfVirtIfBDrRouterId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 6), RouterID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfVirtIfBDrRouterId.setStatus('current')
cjnOspfVirtIfDrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notDesignatedRouter", 1), ("desigatedRouter", 2), ("backupDesignatedRouter", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfVirtIfDrState.setStatus('current')
cjnOspfVirtIfHelloTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 8), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfHelloTimer.setStatus('current')
cjnOspfVirtIfDeadInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 9), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfDeadInterval.setStatus('current')
cjnOspfVirtIfRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 10), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfRtrPriority.setStatus('current')
cjnOspfVirtIfRxmtTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 11), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfRxmtTimer.setStatus('current')
cjnOspfVirtIfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 12), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfTransitDelay.setStatus('current')
cjnOspfVirtIfAuthKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 13), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfAuthKey.setStatus('current')
cjnOspfVirtIfMd5Key = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfMd5Key.setStatus('current')
cjnOspfVirtIfMd5KeyId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 15), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfMd5KeyId.setStatus('current')
cjnOspfVirtIfMd5KeyFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfMd5KeyFlags.setStatus('current')
cjnOspfVirtIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("simple", 1), ("md5", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfVirtIfAuthType.setStatus('current')
cjnOspfAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5), )
if mibBuilder.loadTexts: cjnOspfAreaTable.setStatus('current')
cjnOspfAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfAreaId"))
if mibBuilder.loadTexts: cjnOspfAreaEntry.setStatus('current')
cjnOspfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaId.setStatus('current')
cjnOspfAreaRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaRowStatus.setStatus('current')
cjnOspfAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("nonStub", 0), ("stub", 1), ("nssa", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaType.setStatus('current')
cjnOspfAreaTranslate = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("noTranslation", 0), ("translate", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaTranslate.setStatus('current')
cjnOspfAreaStubCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 5), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaStubCost.setStatus('current')
cjnOspfAreaT3Filter = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("noFiltering", 0), ("filter", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfAreaT3Filter.setStatus('current')
cjnOspfAreaSpfRuns = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaSpfRuns.setStatus('current')
cjnOspfAreaAbdrCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaAbdrCnt.setStatus('current')
cjnOspfAreaAsbdrCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaAsbdrCnt.setStatus('current')
cjnOspfAreaNetCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfAreaNetCnt.setStatus('current')
cjnOspfCnfgRangeTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6), )
if mibBuilder.loadTexts: cjnOspfCnfgRangeTable.setStatus('obsolete')
cjnOspfCnfgRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfCnfgRangeAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfCnfgRangeIpAddr"), (0, "OSPF-PRIVATE-MIB", "cjnOspfCnfgRangeMask"))
if mibBuilder.loadTexts: cjnOspfCnfgRangeEntry.setStatus('obsolete')
cjnOspfCnfgRangeAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 1), AreaID()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRangeAreaId.setStatus('current')
cjnOspfCnfgRangeIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRangeIpAddr.setStatus('current')
cjnOspfCnfgRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRangeMask.setStatus('current')
cjnOspfCnfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 4), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRowStatus.setStatus('current')
cjnOspfCnfgRangeAdv = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("notAdvertising", 0), ("advertising", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cjnOspfCnfgRangeAdv.setStatus('current')
cjnOspfNbrTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7), )
if mibBuilder.loadTexts: cjnOspfNbrTable.setStatus('current')
cjnOspfNbrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfNbrIpAddr"))
if mibBuilder.loadTexts: cjnOspfNbrEntry.setStatus('current')
cjnOspfNbrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrIpAddr.setStatus('current')
cjnOspfNbrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("down", 1), ("attempt", 2), ("init", 3), ("twoWay", 4), ("exchangeStart", 5), ("exchange", 6), ("loading", 7), ("full", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrState.setStatus('current')
cjnOspfNbrRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 3), RouterID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrRtrId.setStatus('current')
cjnOspfNbrMasterSlave = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("slave", 0), ("master", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrMasterSlave.setStatus('current')
cjnOspfNbrDrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrDrIpAddr.setStatus('current')
cjnOspfNbrBackUpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrBackUpIpAddr.setStatus('current')
cjnOspfNbrDDNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNbrDDNum.setStatus('current')
cjnOspfLsaHdrTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8), )
if mibBuilder.loadTexts: cjnOspfLsaHdrTable.setStatus('current')
cjnOspfLsaHdrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfLsaHdrAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfLsaHdrLsaType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfLsaHdrAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfLsaHdrLsId"))
if mibBuilder.loadTexts: cjnOspfLsaHdrEntry.setStatus('current')
cjnOspfLsaHdrAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrAreaId.setStatus('current')
cjnOspfLsaHdrLsaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrLsaType.setStatus('current')
cjnOspfLsaHdrAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrAdvRtrId.setStatus('current')
cjnOspfLsaHdrLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrLsId.setStatus('current')
cjnOspfLsaHdrLsaAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrLsaAge.setStatus('current')
cjnOspfLsaHdrChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrChecksum.setStatus('current')
cjnOspfLsaHdrSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfLsaHdrSequence.setStatus('current')
cjnOspfExtLsdbTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9), )
if mibBuilder.loadTexts: cjnOspfExtLsdbTable.setStatus('current')
cjnOspfExtLsdbEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfExtLsdbType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfExtLsdbAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfExtLsdbLsId"))
if mibBuilder.loadTexts: cjnOspfExtLsdbEntry.setStatus('current')
cjnOspfExtLsdbType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbType.setStatus('current')
cjnOspfExtLsdbAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbAdvRtrId.setStatus('current')
cjnOspfExtLsdbLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbLsId.setStatus('current')
cjnOspfExtLsdbAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbAge.setStatus('current')
cjnOspfExtLsdbLsdbChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbLsdbChecksum.setStatus('current')
cjnOspfExtLsdbSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbSequence.setStatus('current')
cjnOspfExtLsdNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdNetMask.setStatus('current')
cjnOspfExtLsdbTOS = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 8), TOSType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbTOS.setStatus('current')
cjnOspfExtLsdbMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 9), Metric()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbMetric.setStatus('current')
cjnOspfExtLsdForwardingAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 10), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdForwardingAddress.setStatus('current')
cjnOspfExtLsdbRouteTag = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 11), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfExtLsdbRouteTag.setStatus('current')
cjnOspfNetLsdbTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10), )
if mibBuilder.loadTexts: cjnOspfNetLsdbTable.setStatus('current')
cjnOspfNetLsdbEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfNetLsdbAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfNetLsdbType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfNetLsdbAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfNetLsdbLsId"))
if mibBuilder.loadTexts: cjnOspfNetLsdbEntry.setStatus('current')
cjnOspfNetLsdbAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbAreaId.setStatus('current')
cjnOspfNetLsdbType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbType.setStatus('current')
cjnOspfNetLsdbAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbAdvRtrId.setStatus('current')
cjnOspfNetLsdbLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbLsId.setStatus('current')
cjnOspfNetLsdbAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbAge.setStatus('current')
cjnOspfNetLsdbLsdbChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbLsdbChecksum.setStatus('current')
cjnOspfNetLsdbSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdbSequence.setStatus('current')
cjnOspfNetLsdNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfNetLsdNetMask.setStatus('current')
cjnOspfRouterLsdbTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11), )
if mibBuilder.loadTexts: cjnOspfRouterLsdbTable.setStatus('current')
cjnOspfRouterLsdbEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsdbAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsdbType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsdbRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsdbLsId"))
if mibBuilder.loadTexts: cjnOspfRouterLsdbEntry.setStatus('current')
cjnOspfRouterLsdbAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbAreaId.setStatus('current')
cjnOspfRouterLsdbType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("bcast", 1), ("nbma", 2), ("pointToPoint", 3), ("pointToMultiPoint", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbType.setStatus('current')
cjnOspfRouterLsdbRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbRtrId.setStatus('current')
cjnOspfRouterLsdbLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbLsId.setStatus('current')
cjnOspfRouterLsdbLinkData = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbLinkData.setStatus('current')
cjnOspfRouterLsdbNumOfTos = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbNumOfTos.setStatus('current')
cjnOspfRouterLsdbMet = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsdbMet.setStatus('current')
cjnOspfRouterLsaHdrTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12), )
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrTable.setStatus('current')
cjnOspfRouterLsaHdrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsaHdrAreaId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsaHdrType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsaHdrAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfRouterLsaHdrLsId"))
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrEntry.setStatus('current')
cjnOspfRouterLsaHdrAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 1), AreaID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrAreaId.setStatus('current')
cjnOspfRouterLsaHdrType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrType.setStatus('current')
cjnOspfRouterLsaHdrAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrAdvRtrId.setStatus('current')
cjnOspfRouterLsaHdrLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrLsId.setStatus('current')
cjnOspfRouterLsaHdrAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrAge.setStatus('current')
cjnOspfRouterLsaHdrChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrChecksum.setStatus('current')
cjnOspfRouterLsaHdrSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrSequence.setStatus('current')
cjnOspfRouterLsaHdrFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrFlags.setStatus('current')
cjnOspfRouterLsaHdrLinkCount = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfRouterLsaHdrLinkCount.setStatus('current')
cjnOspfSumLsaTable = MibTable((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13), )
if mibBuilder.loadTexts: cjnOspfSumLsaTable.setStatus('current')
cjnOspfSumLsaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1), ).setIndexNames((0, "OSPF-PRIVATE-MIB", "cjnOspfSumLsaType"), (0, "OSPF-PRIVATE-MIB", "cjnOspfSumLsaAdvRtrId"), (0, "OSPF-PRIVATE-MIB", "cjnOspfSumLsaLsId"))
if mibBuilder.loadTexts: cjnOspfSumLsaEntry.setStatus('current')
cjnOspfSumLsaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaType.setStatus('current')
cjnOspfSumLsaAdvRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaAdvRtrId.setStatus('current')
cjnOspfSumLsaLsId = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaLsId.setStatus('current')
cjnOspfSumLsaLsdbAge = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaLsdbAge.setStatus('current')
cjnOspfSumLsaChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaChecksum.setStatus('current')
cjnOspfSumLsaSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaSequence.setStatus('current')
cjnOspfSumLsaMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaMask.setStatus('current')
cjnOspfSumLsaTOS = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 8), TOSType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaTOS.setStatus('current')
cjnOspfSumLsaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 9), Metric()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cjnOspfSumLsaMetric.setStatus('current')
mibBuilder.exportSymbols("OSPF-PRIVATE-MIB", cjnOspfSumLsaType=cjnOspfSumLsaType, cjnOspfVirtIfDrRouterId=cjnOspfVirtIfDrRouterId, cjnOspfIfRxmtTimer=cjnOspfIfRxmtTimer, cjnOspfRouterLsaHdrLsId=cjnOspfRouterLsaHdrLsId, cjnOspfIfRtrPriority=cjnOspfIfRtrPriority, cjnOspfTxDBDescCnt=cjnOspfTxDBDescCnt, cjnOspfRouterLsdbAreaId=cjnOspfRouterLsdbAreaId, cjnOspfNbrBackUpIpAddr=cjnOspfNbrBackUpIpAddr, cjnOspfTxLsaAckCnt=cjnOspfTxLsaAckCnt, cjnOspfSumLsaTable=cjnOspfSumLsaTable, cjnOspfCnfgRangeMask=cjnOspfCnfgRangeMask, cjnOspfNetLsdbAge=cjnOspfNetLsdbAge, cjnOspfRouterLsaHdrLinkCount=cjnOspfRouterLsaHdrLinkCount, cjnOspfIfDrIpAddr=cjnOspfIfDrIpAddr, cjnOspfCnfgRangeIpAddr=cjnOspfCnfgRangeIpAddr, cjnOspfNbrDrIpAddr=cjnOspfNbrDrIpAddr, cjnOspfIfTable=cjnOspfIfTable, cjnOspfExtLsdbAge=cjnOspfExtLsdbAge, cjnOspfExtLsdbEntry=cjnOspfExtLsdbEntry, cjnOspfNbrTable=cjnOspfNbrTable, cjnOspfExtLsdbRouteTag=cjnOspfExtLsdbRouteTag, cjnOspfExtLsdbType=cjnOspfExtLsdbType, cjnOspfNbrEntry=cjnOspfNbrEntry, cjnOspfNbrDDNum=cjnOspfNbrDDNum, cjnOspfExtLsdbLsdbChecksum=cjnOspfExtLsdbLsdbChecksum, cjnOspfAutoVLinkCreate=cjnOspfAutoVLinkCreate, cjnOspfSumLsaChecksum=cjnOspfSumLsaChecksum, cjnOspfAbdrStatus=cjnOspfAbdrStatus, cjnOspfAreaId=cjnOspfAreaId, cjnOspfExtLsdbAdvRtrId=cjnOspfExtLsdbAdvRtrId, cjnOspfAreaRowStatus=cjnOspfAreaRowStatus, cjnOspfVirtIfAuthType=cjnOspfVirtIfAuthType, cjnOspfVirtIfAreaId=cjnOspfVirtIfAreaId, cjnOspfSpfHold=cjnOspfSpfHold, cjnOspfIfDrState=cjnOspfIfDrState, cjnOspfNetLsdbAdvRtrId=cjnOspfNetLsdbAdvRtrId, cjnOspfRouterLsdbNumOfTos=cjnOspfRouterLsdbNumOfTos, cjnOspfSpfStaticExtType=cjnOspfSpfStaticExtType, cjnOspfSumLsaEntry=cjnOspfSumLsaEntry, cjnOspfVirtIfRtrPriority=cjnOspfVirtIfRtrPriority, cjnOspfLsaHdrLsaAge=cjnOspfLsaHdrLsaAge, cjnOspfRouterLsaHdrAreaId=cjnOspfRouterLsaHdrAreaId, cjnOspfRunSpf=cjnOspfRunSpf, cjnOspfAreaType=cjnOspfAreaType, cjnOspfAreaAbdrCnt=cjnOspfAreaAbdrCnt, cjnOspfRouterLsaHdrFlags=cjnOspfRouterLsaHdrFlags, cjnOspfRouterLsaHdrAdvRtrId=cjnOspfRouterLsaHdrAdvRtrId, cjnOspfSumLsaMetric=cjnOspfSumLsaMetric, cjnOspfAreaTranslate=cjnOspfAreaTranslate, cjnOspfLsaHdrTable=cjnOspfLsaHdrTable, cjnOspfNetLsdbType=cjnOspfNetLsdbType, cjnOspfIfMd5Key=cjnOspfIfMd5Key, cjnOspfExtLsdbSequence=cjnOspfExtLsdbSequence, cjnOspfVirtIfNbrRtrId=cjnOspfVirtIfNbrRtrId, cjnOspfVirtIfDeadInterval=cjnOspfVirtIfDeadInterval, cjnOspfLocalExtType=cjnOspfLocalExtType, cjnOspfVirtIfMd5KeyId=cjnOspfVirtIfMd5KeyId, cjnOspfRxLsaAckCnt=cjnOspfRxLsaAckCnt, cjnOspfNbrMasterSlave=cjnOspfNbrMasterSlave, cjnOspfTraceFlags=cjnOspfTraceFlags, cjnOspfVirtIfTable=cjnOspfVirtIfTable, cjnOspfSpfSuspendTime=cjnOspfSpfSuspendTime, cjnOspfTxHelloCnt=cjnOspfTxHelloCnt, cjnOspfRxHelloCnt=cjnOspfRxHelloCnt, cjnOspfLsaHdrAreaId=cjnOspfLsaHdrAreaId, cjnOspfIfPollInterval=cjnOspfIfPollInterval, cjnOspfExtLsdbLsId=cjnOspfExtLsdbLsId, cjnOspfIfType=cjnOspfIfType, cjnOspfRouterLsdbLsId=cjnOspfRouterLsdbLsId, cjnOspfIfMtu=cjnOspfIfMtu, cjnOspfCnfgRowStatus=cjnOspfCnfgRowStatus, cjnOspfRouterLsaHdrTable=cjnOspfRouterLsaHdrTable, cjnOspfNbrRtrId=cjnOspfNbrRtrId, cjnOspfExtLsdNetMask=cjnOspfExtLsdNetMask, cjnOspfSumLsaLsdbAge=cjnOspfSumLsaLsdbAge, cjnOspfLowExtType=cjnOspfLowExtType, cjnOspfAreaAsbdrCnt=cjnOspfAreaAsbdrCnt, cjnOspfPathSplit=cjnOspfPathSplit, cjnOspfVirtIfEntry=cjnOspfVirtIfEntry, cjnOspfNetLsdbEntry=cjnOspfNetLsdbEntry, cjnOspfNetLsdNetMask=cjnOspfNetLsdNetMask, cjnOspfLsaHdrLsId=cjnOspfLsaHdrLsId, cjnOspfIfEntry=cjnOspfIfEntry, cjnOspfVirtIfHelloTimer=cjnOspfVirtIfHelloTimer, cjnOspfTxNewLsa=cjnOspfTxNewLsa, cjnOspfLsaHdrEntry=cjnOspfLsaHdrEntry, cjnOspfExtLsdForwardingAddress=cjnOspfExtLsdForwardingAddress, cjnOspfAreaTable=cjnOspfAreaTable, cjnOspfIfAuthType=cjnOspfIfAuthType, cjnOspfRxDBDescCnt=cjnOspfRxDBDescCnt, cjnOspfIfIpAddress=cjnOspfIfIpAddress, PYSNMP_MODULE_ID=cjnOspf, cjnOspfRouterLsdbTable=cjnOspfRouterLsdbTable, cjnOspfIfMd5KeyId=cjnOspfIfMd5KeyId, cjnOspfTxLsaReqCnt=cjnOspfTxLsaReqCnt, cjnOspfLsaHdrAdvRtrId=cjnOspfLsaHdrAdvRtrId, cjnOspfRouterLsaHdrEntry=cjnOspfRouterLsaHdrEntry, cjnOspfNetLsdbAreaId=cjnOspfNetLsdbAreaId, cjnOspfGblConfGroup=cjnOspfGblConfGroup, cjnOspfRouterId=cjnOspfRouterId, cjnOspfCnfgRangeTable=cjnOspfCnfgRangeTable, cjnOspfGblStatsGroup=cjnOspfGblStatsGroup, cjnOspfPeMax=cjnOspfPeMax, cjnOspfNetLsdbSequence=cjnOspfNetLsdbSequence, cjnOspfIfRowStatus=cjnOspfIfRowStatus, cjnOspfVirtIfAuthKey=cjnOspfVirtIfAuthKey, cjnOspfVirtIfMd5Key=cjnOspfVirtIfMd5Key, cjnOspfIfCost=cjnOspfIfCost, cjnOspfTOSCount=cjnOspfTOSCount, cjnOspfVirtIfRowStatus=cjnOspfVirtIfRowStatus, cjnOspfVirtIfBDrRouterId=cjnOspfVirtIfBDrRouterId, cjnOspfRouterLsdbType=cjnOspfRouterLsdbType, cjnOspfRouterLsaHdrType=cjnOspfRouterLsaHdrType, cjnOspfCnfgRangeAdv=cjnOspfCnfgRangeAdv, cjnOspfRouterLsaHdrSequence=cjnOspfRouterLsaHdrSequence, cjnOspfSumLsaTOS=cjnOspfSumLsaTOS, cjnOspfIfAreaId=cjnOspfIfAreaId, cjnOspfRouterLsaHdrChecksum=cjnOspfRouterLsaHdrChecksum, cjnOspfRouterLsdbLinkData=cjnOspfRouterLsdbLinkData, cjnOspfAreaNetCnt=cjnOspfAreaNetCnt, cjnOspfRouterLsdbMet=cjnOspfRouterLsdbMet, cjnOspfRipExtType=cjnOspfRipExtType, cjnOspfExtLsdbTOS=cjnOspfExtLsdbTOS, cjnOspfRouterLsdbEntry=cjnOspfRouterLsdbEntry, cjnOspfIfBDrRouterId=cjnOspfIfBDrRouterId, cjnOspfRxLsaReqCnt=cjnOspfRxLsaReqCnt, cjnOspfRxLsaUpdCnt=cjnOspfRxLsaUpdCnt, cjnOspfRouterLsdbRtrId=cjnOspfRouterLsdbRtrId, cjnOspfSumLsaMask=cjnOspfSumLsaMask, cjnOspfSumLsaSequence=cjnOspfSumLsaSequence, cjnOspfNetLsdbTable=cjnOspfNetLsdbTable, cjnOspfVirtIfDrIpAddr=cjnOspfVirtIfDrIpAddr, cjnOspfVirtIfRxmtTimer=cjnOspfVirtIfRxmtTimer, cjnOspfRxNewLsa=cjnOspfRxNewLsa, cjnOspfVirtIfTransitDelay=cjnOspfVirtIfTransitDelay, cjnOspfVirtIfMd5KeyFlags=cjnOspfVirtIfMd5KeyFlags, cjnOspfNbrIpAddr=cjnOspfNbrIpAddr, cjnOspfIfDrRouterId=cjnOspfIfDrRouterId, cjnOspfIfAuthKey=cjnOspfIfAuthKey, cjnOspfNbrState=cjnOspfNbrState, cjnOspfCnfgRangeAreaId=cjnOspfCnfgRangeAreaId, cjnOspfSpfState=cjnOspfSpfState, cjnOspfGlobalStatsReset=cjnOspfGlobalStatsReset, cjnOspfLsaHdrLsaType=cjnOspfLsaHdrLsaType, cjnOspfAsbdrStatus=cjnOspfAsbdrStatus, cjnOspfSumLsaAdvRtrId=cjnOspfSumLsaAdvRtrId, cjnOspfNetLsdbLsdbChecksum=cjnOspfNetLsdbLsdbChecksum, cjnOspfSumLsaLsId=cjnOspfSumLsaLsId, cjnOspfLsaHdrChecksum=cjnOspfLsaHdrChecksum, cjnOspfLsaHdrSequence=cjnOspfLsaHdrSequence, cjnOspfIfTransitDelay=cjnOspfIfTransitDelay, cjnOspfVirtIfDrState=cjnOspfVirtIfDrState, cjnOspfAreaSpfRuns=cjnOspfAreaSpfRuns, cjnOspfIfDeadInterval=cjnOspfIfDeadInterval, cjnOspfCnfgRangeEntry=cjnOspfCnfgRangeEntry, cjnOspfAreaT3Filter=cjnOspfAreaT3Filter, cjnOspfExtLsdbTable=cjnOspfExtLsdbTable, cjnOspfAreaEntry=cjnOspfAreaEntry, cjnOspf=cjnOspf, cjnOspfExtLsdbMetric=cjnOspfExtLsdbMetric, cjnOspfRouterLsaHdrAge=cjnOspfRouterLsaHdrAge, cjnOspfAreaStubCost=cjnOspfAreaStubCost, cjnOspfIfMask=cjnOspfIfMask, cjnOspfNetLsdbLsId=cjnOspfNetLsdbLsId, cjnOspfIfHelloTimer=cjnOspfIfHelloTimer, cjnOspfIfMd5KeyFlags=cjnOspfIfMd5KeyFlags, cjnOspfTxLsaUpdCnt=cjnOspfTxLsaUpdCnt)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, value_range_constraint, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint')
(cjn_protocol,) = mibBuilder.importSymbols('Cajun-ROOT', 'cjnProtocol')
(router_id, tos_type, area_id, metric) = mibBuilder.importSymbols('OSPF-MIB', 'RouterID', 'TOSType', 'AreaID', 'Metric')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(time_ticks, notification_type, bits, gauge32, module_identity, unsigned32, integer32, ip_address, counter64, object_identity, counter32, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'NotificationType', 'Bits', 'Gauge32', 'ModuleIdentity', 'Unsigned32', 'Integer32', 'IpAddress', 'Counter64', 'ObjectIdentity', 'Counter32', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso')
(row_status, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'TextualConvention', 'DisplayString')
cjn_ospf = module_identity((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9))
if mibBuilder.loadTexts:
cjnOspf.setLastUpdated('9903020000Z')
if mibBuilder.loadTexts:
cjnOspf.setOrganization("Lucent's Concord Technology Center (CTC)")
cjn_ospf_gbl_conf_group = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1))
cjn_ospf_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 1), router_id()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfRouterId.setStatus('current')
cjn_ospf_path_split = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfPathSplit.setStatus('current')
cjn_ospf_pe_max = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfPeMax.setStatus('current')
cjn_ospf_spf_state = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfSpfState.setStatus('current')
cjn_ospf_asbdr_status = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfAsbdrStatus.setStatus('current')
cjn_ospf_auto_v_link_create = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfAutoVLinkCreate.setStatus('current')
cjn_ospf_spf_hold = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 7), integer32().clone(3)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfSpfHold.setStatus('current')
cjn_ospf_spf_suspend_time = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 8), integer32().clone(1000)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfSpfSuspendTime.setStatus('current')
cjn_ospf_local_ext_type = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfLocalExtType.setStatus('current')
cjn_ospf_rip_ext_type = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfRipExtType.setStatus('current')
cjn_ospf_spf_static_ext_type = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfSpfStaticExtType.setStatus('current')
cjn_ospf_low_ext_type = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfLowExtType.setStatus('current')
cjn_ospf_trace_flags = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfTraceFlags.setStatus('current')
cjn_ospf_global_stats_reset = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cjnOspfGlobalStatsReset.setStatus('current')
cjn_ospf_gbl_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2))
cjn_ospf_tos_count = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTOSCount.setStatus('current')
cjn_ospf_run_spf = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRunSpf.setStatus('current')
cjn_ospf_abdr_status = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAbdrStatus.setStatus('current')
cjn_ospf_tx_new_lsa = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxNewLsa.setStatus('current')
cjn_ospf_rx_new_lsa = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxNewLsa.setStatus('current')
cjn_ospf_rx_hello_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxHelloCnt.setStatus('current')
cjn_ospf_tx_hello_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxHelloCnt.setStatus('current')
cjn_ospf_rx_db_desc_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxDBDescCnt.setStatus('current')
cjn_ospf_tx_db_desc_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxDBDescCnt.setStatus('current')
cjn_ospf_rx_lsa_ack_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxLsaAckCnt.setStatus('current')
cjn_ospf_tx_lsa_ack_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxLsaAckCnt.setStatus('current')
cjn_ospf_rx_lsa_upd_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxLsaUpdCnt.setStatus('current')
cjn_ospf_tx_lsa_upd_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxLsaUpdCnt.setStatus('current')
cjn_ospf_rx_lsa_req_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRxLsaReqCnt.setStatus('current')
cjn_ospf_tx_lsa_req_cnt = mib_scalar((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 2, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfTxLsaReqCnt.setStatus('current')
cjn_ospf_if_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3))
if mibBuilder.loadTexts:
cjnOspfIfTable.setStatus('current')
cjn_ospf_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfIfIpAddress'))
if mibBuilder.loadTexts:
cjnOspfIfEntry.setStatus('current')
cjn_ospf_if_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfIpAddress.setStatus('current')
cjn_ospf_if_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfRowStatus.setStatus('current')
cjn_ospf_if_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 3), area_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfAreaId.setStatus('current')
cjn_ospf_if_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfMask.setStatus('current')
cjn_ospf_if_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('bcast', 1), ('nbma', 2), ('pointToPoint', 3), ('pointToMultiPoint', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfType.setStatus('current')
cjn_ospf_if_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 6), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfCost.setStatus('current')
cjn_ospf_if_dr_router_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 7), router_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfDrRouterId.setStatus('current')
cjn_ospf_if_dr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfDrIpAddr.setStatus('current')
cjn_ospf_if_b_dr_router_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfBDrRouterId.setStatus('current')
cjn_ospf_if_dr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfDrState.setStatus('current')
cjn_ospf_if_hello_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 11), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfHelloTimer.setStatus('current')
cjn_ospf_if_dead_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 12), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfDeadInterval.setStatus('current')
cjn_ospf_if_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 13), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfRtrPriority.setStatus('current')
cjn_ospf_if_rxmt_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 14), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfRxmtTimer.setStatus('current')
cjn_ospf_if_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 15), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfTransitDelay.setStatus('current')
cjn_ospf_if_auth_key = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfAuthKey.setStatus('current')
cjn_ospf_if_md5_key_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 17), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfMd5KeyId.setStatus('current')
cjn_ospf_if_md5_key_flags = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfMd5KeyFlags.setStatus('current')
cjn_ospf_if_md5_key = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 19), octet_string().subtype(subtypeSpec=value_size_constraint(1, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfMd5Key.setStatus('current')
cjn_ospf_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('simple', 1), ('md5', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfAuthType.setStatus('current')
cjn_ospf_if_mtu = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfIfMtu.setStatus('current')
cjn_ospf_if_poll_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 3, 1, 22), integer32().clone(120)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfIfPollInterval.setStatus('current')
cjn_ospf_virt_if_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4))
if mibBuilder.loadTexts:
cjnOspfVirtIfTable.setStatus('current')
cjn_ospf_virt_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfVirtIfAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfVirtIfNbrRtrId'))
if mibBuilder.loadTexts:
cjnOspfVirtIfEntry.setStatus('current')
cjn_ospf_virt_if_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 1), area_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfAreaId.setStatus('current')
cjn_ospf_virt_if_nbr_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 2), router_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfNbrRtrId.setStatus('current')
cjn_ospf_virt_if_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfRowStatus.setStatus('current')
cjn_ospf_virt_if_dr_router_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 4), router_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfVirtIfDrRouterId.setStatus('current')
cjn_ospf_virt_if_dr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfVirtIfDrIpAddr.setStatus('current')
cjn_ospf_virt_if_b_dr_router_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 6), router_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfVirtIfBDrRouterId.setStatus('current')
cjn_ospf_virt_if_dr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notDesignatedRouter', 1), ('desigatedRouter', 2), ('backupDesignatedRouter', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfVirtIfDrState.setStatus('current')
cjn_ospf_virt_if_hello_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 8), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfHelloTimer.setStatus('current')
cjn_ospf_virt_if_dead_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 9), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfDeadInterval.setStatus('current')
cjn_ospf_virt_if_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 10), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfRtrPriority.setStatus('current')
cjn_ospf_virt_if_rxmt_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 11), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfRxmtTimer.setStatus('current')
cjn_ospf_virt_if_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 12), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfTransitDelay.setStatus('current')
cjn_ospf_virt_if_auth_key = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 13), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfAuthKey.setStatus('current')
cjn_ospf_virt_if_md5_key = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(1, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfMd5Key.setStatus('current')
cjn_ospf_virt_if_md5_key_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 15), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfMd5KeyId.setStatus('current')
cjn_ospf_virt_if_md5_key_flags = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfMd5KeyFlags.setStatus('current')
cjn_ospf_virt_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 4, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('simple', 1), ('md5', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfVirtIfAuthType.setStatus('current')
cjn_ospf_area_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5))
if mibBuilder.loadTexts:
cjnOspfAreaTable.setStatus('current')
cjn_ospf_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfAreaId'))
if mibBuilder.loadTexts:
cjnOspfAreaEntry.setStatus('current')
cjn_ospf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaId.setStatus('current')
cjn_ospf_area_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaRowStatus.setStatus('current')
cjn_ospf_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('nonStub', 0), ('stub', 1), ('nssa', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaType.setStatus('current')
cjn_ospf_area_translate = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('noTranslation', 0), ('translate', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaTranslate.setStatus('current')
cjn_ospf_area_stub_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 5), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaStubCost.setStatus('current')
cjn_ospf_area_t3_filter = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('noFiltering', 0), ('filter', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfAreaT3Filter.setStatus('current')
cjn_ospf_area_spf_runs = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaSpfRuns.setStatus('current')
cjn_ospf_area_abdr_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaAbdrCnt.setStatus('current')
cjn_ospf_area_asbdr_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaAsbdrCnt.setStatus('current')
cjn_ospf_area_net_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 5, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfAreaNetCnt.setStatus('current')
cjn_ospf_cnfg_range_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6))
if mibBuilder.loadTexts:
cjnOspfCnfgRangeTable.setStatus('obsolete')
cjn_ospf_cnfg_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfCnfgRangeAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfCnfgRangeIpAddr'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfCnfgRangeMask'))
if mibBuilder.loadTexts:
cjnOspfCnfgRangeEntry.setStatus('obsolete')
cjn_ospf_cnfg_range_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 1), area_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRangeAreaId.setStatus('current')
cjn_ospf_cnfg_range_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRangeIpAddr.setStatus('current')
cjn_ospf_cnfg_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRangeMask.setStatus('current')
cjn_ospf_cnfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 4), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRowStatus.setStatus('current')
cjn_ospf_cnfg_range_adv = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('notAdvertising', 0), ('advertising', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cjnOspfCnfgRangeAdv.setStatus('current')
cjn_ospf_nbr_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7))
if mibBuilder.loadTexts:
cjnOspfNbrTable.setStatus('current')
cjn_ospf_nbr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfNbrIpAddr'))
if mibBuilder.loadTexts:
cjnOspfNbrEntry.setStatus('current')
cjn_ospf_nbr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrIpAddr.setStatus('current')
cjn_ospf_nbr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('down', 1), ('attempt', 2), ('init', 3), ('twoWay', 4), ('exchangeStart', 5), ('exchange', 6), ('loading', 7), ('full', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrState.setStatus('current')
cjn_ospf_nbr_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 3), router_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrRtrId.setStatus('current')
cjn_ospf_nbr_master_slave = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('slave', 0), ('master', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrMasterSlave.setStatus('current')
cjn_ospf_nbr_dr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrDrIpAddr.setStatus('current')
cjn_ospf_nbr_back_up_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrBackUpIpAddr.setStatus('current')
cjn_ospf_nbr_dd_num = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 7, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNbrDDNum.setStatus('current')
cjn_ospf_lsa_hdr_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8))
if mibBuilder.loadTexts:
cjnOspfLsaHdrTable.setStatus('current')
cjn_ospf_lsa_hdr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfLsaHdrAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfLsaHdrLsaType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfLsaHdrAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfLsaHdrLsId'))
if mibBuilder.loadTexts:
cjnOspfLsaHdrEntry.setStatus('current')
cjn_ospf_lsa_hdr_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrAreaId.setStatus('current')
cjn_ospf_lsa_hdr_lsa_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrLsaType.setStatus('current')
cjn_ospf_lsa_hdr_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrAdvRtrId.setStatus('current')
cjn_ospf_lsa_hdr_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrLsId.setStatus('current')
cjn_ospf_lsa_hdr_lsa_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrLsaAge.setStatus('current')
cjn_ospf_lsa_hdr_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrChecksum.setStatus('current')
cjn_ospf_lsa_hdr_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 8, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfLsaHdrSequence.setStatus('current')
cjn_ospf_ext_lsdb_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9))
if mibBuilder.loadTexts:
cjnOspfExtLsdbTable.setStatus('current')
cjn_ospf_ext_lsdb_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfExtLsdbType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfExtLsdbAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfExtLsdbLsId'))
if mibBuilder.loadTexts:
cjnOspfExtLsdbEntry.setStatus('current')
cjn_ospf_ext_lsdb_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbType.setStatus('current')
cjn_ospf_ext_lsdb_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbAdvRtrId.setStatus('current')
cjn_ospf_ext_lsdb_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbLsId.setStatus('current')
cjn_ospf_ext_lsdb_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbAge.setStatus('current')
cjn_ospf_ext_lsdb_lsdb_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbLsdbChecksum.setStatus('current')
cjn_ospf_ext_lsdb_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbSequence.setStatus('current')
cjn_ospf_ext_lsd_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdNetMask.setStatus('current')
cjn_ospf_ext_lsdb_tos = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 8), tos_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbTOS.setStatus('current')
cjn_ospf_ext_lsdb_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 9), metric()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbMetric.setStatus('current')
cjn_ospf_ext_lsd_forwarding_address = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 10), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdForwardingAddress.setStatus('current')
cjn_ospf_ext_lsdb_route_tag = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 9, 1, 11), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfExtLsdbRouteTag.setStatus('current')
cjn_ospf_net_lsdb_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10))
if mibBuilder.loadTexts:
cjnOspfNetLsdbTable.setStatus('current')
cjn_ospf_net_lsdb_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfNetLsdbAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfNetLsdbType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfNetLsdbAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfNetLsdbLsId'))
if mibBuilder.loadTexts:
cjnOspfNetLsdbEntry.setStatus('current')
cjn_ospf_net_lsdb_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbAreaId.setStatus('current')
cjn_ospf_net_lsdb_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbType.setStatus('current')
cjn_ospf_net_lsdb_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbAdvRtrId.setStatus('current')
cjn_ospf_net_lsdb_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbLsId.setStatus('current')
cjn_ospf_net_lsdb_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbAge.setStatus('current')
cjn_ospf_net_lsdb_lsdb_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbLsdbChecksum.setStatus('current')
cjn_ospf_net_lsdb_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdbSequence.setStatus('current')
cjn_ospf_net_lsd_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 10, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfNetLsdNetMask.setStatus('current')
cjn_ospf_router_lsdb_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11))
if mibBuilder.loadTexts:
cjnOspfRouterLsdbTable.setStatus('current')
cjn_ospf_router_lsdb_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsdbAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsdbType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsdbRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsdbLsId'))
if mibBuilder.loadTexts:
cjnOspfRouterLsdbEntry.setStatus('current')
cjn_ospf_router_lsdb_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbAreaId.setStatus('current')
cjn_ospf_router_lsdb_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('bcast', 1), ('nbma', 2), ('pointToPoint', 3), ('pointToMultiPoint', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbType.setStatus('current')
cjn_ospf_router_lsdb_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbRtrId.setStatus('current')
cjn_ospf_router_lsdb_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbLsId.setStatus('current')
cjn_ospf_router_lsdb_link_data = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbLinkData.setStatus('current')
cjn_ospf_router_lsdb_num_of_tos = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbNumOfTos.setStatus('current')
cjn_ospf_router_lsdb_met = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 11, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsdbMet.setStatus('current')
cjn_ospf_router_lsa_hdr_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12))
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrTable.setStatus('current')
cjn_ospf_router_lsa_hdr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsaHdrAreaId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsaHdrType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsaHdrAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfRouterLsaHdrLsId'))
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrEntry.setStatus('current')
cjn_ospf_router_lsa_hdr_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 1), area_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrAreaId.setStatus('current')
cjn_ospf_router_lsa_hdr_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrType.setStatus('current')
cjn_ospf_router_lsa_hdr_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrAdvRtrId.setStatus('current')
cjn_ospf_router_lsa_hdr_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrLsId.setStatus('current')
cjn_ospf_router_lsa_hdr_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrAge.setStatus('current')
cjn_ospf_router_lsa_hdr_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrChecksum.setStatus('current')
cjn_ospf_router_lsa_hdr_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrSequence.setStatus('current')
cjn_ospf_router_lsa_hdr_flags = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrFlags.setStatus('current')
cjn_ospf_router_lsa_hdr_link_count = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 12, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfRouterLsaHdrLinkCount.setStatus('current')
cjn_ospf_sum_lsa_table = mib_table((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13))
if mibBuilder.loadTexts:
cjnOspfSumLsaTable.setStatus('current')
cjn_ospf_sum_lsa_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1)).setIndexNames((0, 'OSPF-PRIVATE-MIB', 'cjnOspfSumLsaType'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfSumLsaAdvRtrId'), (0, 'OSPF-PRIVATE-MIB', 'cjnOspfSumLsaLsId'))
if mibBuilder.loadTexts:
cjnOspfSumLsaEntry.setStatus('current')
cjn_ospf_sum_lsa_type = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaType.setStatus('current')
cjn_ospf_sum_lsa_adv_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaAdvRtrId.setStatus('current')
cjn_ospf_sum_lsa_ls_id = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaLsId.setStatus('current')
cjn_ospf_sum_lsa_lsdb_age = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaLsdbAge.setStatus('current')
cjn_ospf_sum_lsa_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaChecksum.setStatus('current')
cjn_ospf_sum_lsa_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaSequence.setStatus('current')
cjn_ospf_sum_lsa_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaMask.setStatus('current')
cjn_ospf_sum_lsa_tos = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 8), tos_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaTOS.setStatus('current')
cjn_ospf_sum_lsa_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1751, 2, 43, 2, 9, 13, 1, 9), metric()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cjnOspfSumLsaMetric.setStatus('current')
mibBuilder.exportSymbols('OSPF-PRIVATE-MIB', cjnOspfSumLsaType=cjnOspfSumLsaType, cjnOspfVirtIfDrRouterId=cjnOspfVirtIfDrRouterId, cjnOspfIfRxmtTimer=cjnOspfIfRxmtTimer, cjnOspfRouterLsaHdrLsId=cjnOspfRouterLsaHdrLsId, cjnOspfIfRtrPriority=cjnOspfIfRtrPriority, cjnOspfTxDBDescCnt=cjnOspfTxDBDescCnt, cjnOspfRouterLsdbAreaId=cjnOspfRouterLsdbAreaId, cjnOspfNbrBackUpIpAddr=cjnOspfNbrBackUpIpAddr, cjnOspfTxLsaAckCnt=cjnOspfTxLsaAckCnt, cjnOspfSumLsaTable=cjnOspfSumLsaTable, cjnOspfCnfgRangeMask=cjnOspfCnfgRangeMask, cjnOspfNetLsdbAge=cjnOspfNetLsdbAge, cjnOspfRouterLsaHdrLinkCount=cjnOspfRouterLsaHdrLinkCount, cjnOspfIfDrIpAddr=cjnOspfIfDrIpAddr, cjnOspfCnfgRangeIpAddr=cjnOspfCnfgRangeIpAddr, cjnOspfNbrDrIpAddr=cjnOspfNbrDrIpAddr, cjnOspfIfTable=cjnOspfIfTable, cjnOspfExtLsdbAge=cjnOspfExtLsdbAge, cjnOspfExtLsdbEntry=cjnOspfExtLsdbEntry, cjnOspfNbrTable=cjnOspfNbrTable, cjnOspfExtLsdbRouteTag=cjnOspfExtLsdbRouteTag, cjnOspfExtLsdbType=cjnOspfExtLsdbType, cjnOspfNbrEntry=cjnOspfNbrEntry, cjnOspfNbrDDNum=cjnOspfNbrDDNum, cjnOspfExtLsdbLsdbChecksum=cjnOspfExtLsdbLsdbChecksum, cjnOspfAutoVLinkCreate=cjnOspfAutoVLinkCreate, cjnOspfSumLsaChecksum=cjnOspfSumLsaChecksum, cjnOspfAbdrStatus=cjnOspfAbdrStatus, cjnOspfAreaId=cjnOspfAreaId, cjnOspfExtLsdbAdvRtrId=cjnOspfExtLsdbAdvRtrId, cjnOspfAreaRowStatus=cjnOspfAreaRowStatus, cjnOspfVirtIfAuthType=cjnOspfVirtIfAuthType, cjnOspfVirtIfAreaId=cjnOspfVirtIfAreaId, cjnOspfSpfHold=cjnOspfSpfHold, cjnOspfIfDrState=cjnOspfIfDrState, cjnOspfNetLsdbAdvRtrId=cjnOspfNetLsdbAdvRtrId, cjnOspfRouterLsdbNumOfTos=cjnOspfRouterLsdbNumOfTos, cjnOspfSpfStaticExtType=cjnOspfSpfStaticExtType, cjnOspfSumLsaEntry=cjnOspfSumLsaEntry, cjnOspfVirtIfRtrPriority=cjnOspfVirtIfRtrPriority, cjnOspfLsaHdrLsaAge=cjnOspfLsaHdrLsaAge, cjnOspfRouterLsaHdrAreaId=cjnOspfRouterLsaHdrAreaId, cjnOspfRunSpf=cjnOspfRunSpf, cjnOspfAreaType=cjnOspfAreaType, cjnOspfAreaAbdrCnt=cjnOspfAreaAbdrCnt, cjnOspfRouterLsaHdrFlags=cjnOspfRouterLsaHdrFlags, cjnOspfRouterLsaHdrAdvRtrId=cjnOspfRouterLsaHdrAdvRtrId, cjnOspfSumLsaMetric=cjnOspfSumLsaMetric, cjnOspfAreaTranslate=cjnOspfAreaTranslate, cjnOspfLsaHdrTable=cjnOspfLsaHdrTable, cjnOspfNetLsdbType=cjnOspfNetLsdbType, cjnOspfIfMd5Key=cjnOspfIfMd5Key, cjnOspfExtLsdbSequence=cjnOspfExtLsdbSequence, cjnOspfVirtIfNbrRtrId=cjnOspfVirtIfNbrRtrId, cjnOspfVirtIfDeadInterval=cjnOspfVirtIfDeadInterval, cjnOspfLocalExtType=cjnOspfLocalExtType, cjnOspfVirtIfMd5KeyId=cjnOspfVirtIfMd5KeyId, cjnOspfRxLsaAckCnt=cjnOspfRxLsaAckCnt, cjnOspfNbrMasterSlave=cjnOspfNbrMasterSlave, cjnOspfTraceFlags=cjnOspfTraceFlags, cjnOspfVirtIfTable=cjnOspfVirtIfTable, cjnOspfSpfSuspendTime=cjnOspfSpfSuspendTime, cjnOspfTxHelloCnt=cjnOspfTxHelloCnt, cjnOspfRxHelloCnt=cjnOspfRxHelloCnt, cjnOspfLsaHdrAreaId=cjnOspfLsaHdrAreaId, cjnOspfIfPollInterval=cjnOspfIfPollInterval, cjnOspfExtLsdbLsId=cjnOspfExtLsdbLsId, cjnOspfIfType=cjnOspfIfType, cjnOspfRouterLsdbLsId=cjnOspfRouterLsdbLsId, cjnOspfIfMtu=cjnOspfIfMtu, cjnOspfCnfgRowStatus=cjnOspfCnfgRowStatus, cjnOspfRouterLsaHdrTable=cjnOspfRouterLsaHdrTable, cjnOspfNbrRtrId=cjnOspfNbrRtrId, cjnOspfExtLsdNetMask=cjnOspfExtLsdNetMask, cjnOspfSumLsaLsdbAge=cjnOspfSumLsaLsdbAge, cjnOspfLowExtType=cjnOspfLowExtType, cjnOspfAreaAsbdrCnt=cjnOspfAreaAsbdrCnt, cjnOspfPathSplit=cjnOspfPathSplit, cjnOspfVirtIfEntry=cjnOspfVirtIfEntry, cjnOspfNetLsdbEntry=cjnOspfNetLsdbEntry, cjnOspfNetLsdNetMask=cjnOspfNetLsdNetMask, cjnOspfLsaHdrLsId=cjnOspfLsaHdrLsId, cjnOspfIfEntry=cjnOspfIfEntry, cjnOspfVirtIfHelloTimer=cjnOspfVirtIfHelloTimer, cjnOspfTxNewLsa=cjnOspfTxNewLsa, cjnOspfLsaHdrEntry=cjnOspfLsaHdrEntry, cjnOspfExtLsdForwardingAddress=cjnOspfExtLsdForwardingAddress, cjnOspfAreaTable=cjnOspfAreaTable, cjnOspfIfAuthType=cjnOspfIfAuthType, cjnOspfRxDBDescCnt=cjnOspfRxDBDescCnt, cjnOspfIfIpAddress=cjnOspfIfIpAddress, PYSNMP_MODULE_ID=cjnOspf, cjnOspfRouterLsdbTable=cjnOspfRouterLsdbTable, cjnOspfIfMd5KeyId=cjnOspfIfMd5KeyId, cjnOspfTxLsaReqCnt=cjnOspfTxLsaReqCnt, cjnOspfLsaHdrAdvRtrId=cjnOspfLsaHdrAdvRtrId, cjnOspfRouterLsaHdrEntry=cjnOspfRouterLsaHdrEntry, cjnOspfNetLsdbAreaId=cjnOspfNetLsdbAreaId, cjnOspfGblConfGroup=cjnOspfGblConfGroup, cjnOspfRouterId=cjnOspfRouterId, cjnOspfCnfgRangeTable=cjnOspfCnfgRangeTable, cjnOspfGblStatsGroup=cjnOspfGblStatsGroup, cjnOspfPeMax=cjnOspfPeMax, cjnOspfNetLsdbSequence=cjnOspfNetLsdbSequence, cjnOspfIfRowStatus=cjnOspfIfRowStatus, cjnOspfVirtIfAuthKey=cjnOspfVirtIfAuthKey, cjnOspfVirtIfMd5Key=cjnOspfVirtIfMd5Key, cjnOspfIfCost=cjnOspfIfCost, cjnOspfTOSCount=cjnOspfTOSCount, cjnOspfVirtIfRowStatus=cjnOspfVirtIfRowStatus, cjnOspfVirtIfBDrRouterId=cjnOspfVirtIfBDrRouterId, cjnOspfRouterLsdbType=cjnOspfRouterLsdbType, cjnOspfRouterLsaHdrType=cjnOspfRouterLsaHdrType, cjnOspfCnfgRangeAdv=cjnOspfCnfgRangeAdv, cjnOspfRouterLsaHdrSequence=cjnOspfRouterLsaHdrSequence, cjnOspfSumLsaTOS=cjnOspfSumLsaTOS, cjnOspfIfAreaId=cjnOspfIfAreaId, cjnOspfRouterLsaHdrChecksum=cjnOspfRouterLsaHdrChecksum, cjnOspfRouterLsdbLinkData=cjnOspfRouterLsdbLinkData, cjnOspfAreaNetCnt=cjnOspfAreaNetCnt, cjnOspfRouterLsdbMet=cjnOspfRouterLsdbMet, cjnOspfRipExtType=cjnOspfRipExtType, cjnOspfExtLsdbTOS=cjnOspfExtLsdbTOS, cjnOspfRouterLsdbEntry=cjnOspfRouterLsdbEntry, cjnOspfIfBDrRouterId=cjnOspfIfBDrRouterId, cjnOspfRxLsaReqCnt=cjnOspfRxLsaReqCnt, cjnOspfRxLsaUpdCnt=cjnOspfRxLsaUpdCnt, cjnOspfRouterLsdbRtrId=cjnOspfRouterLsdbRtrId, cjnOspfSumLsaMask=cjnOspfSumLsaMask, cjnOspfSumLsaSequence=cjnOspfSumLsaSequence, cjnOspfNetLsdbTable=cjnOspfNetLsdbTable, cjnOspfVirtIfDrIpAddr=cjnOspfVirtIfDrIpAddr, cjnOspfVirtIfRxmtTimer=cjnOspfVirtIfRxmtTimer, cjnOspfRxNewLsa=cjnOspfRxNewLsa, cjnOspfVirtIfTransitDelay=cjnOspfVirtIfTransitDelay, cjnOspfVirtIfMd5KeyFlags=cjnOspfVirtIfMd5KeyFlags, cjnOspfNbrIpAddr=cjnOspfNbrIpAddr, cjnOspfIfDrRouterId=cjnOspfIfDrRouterId, cjnOspfIfAuthKey=cjnOspfIfAuthKey, cjnOspfNbrState=cjnOspfNbrState, cjnOspfCnfgRangeAreaId=cjnOspfCnfgRangeAreaId, cjnOspfSpfState=cjnOspfSpfState, cjnOspfGlobalStatsReset=cjnOspfGlobalStatsReset, cjnOspfLsaHdrLsaType=cjnOspfLsaHdrLsaType, cjnOspfAsbdrStatus=cjnOspfAsbdrStatus, cjnOspfSumLsaAdvRtrId=cjnOspfSumLsaAdvRtrId, cjnOspfNetLsdbLsdbChecksum=cjnOspfNetLsdbLsdbChecksum, cjnOspfSumLsaLsId=cjnOspfSumLsaLsId, cjnOspfLsaHdrChecksum=cjnOspfLsaHdrChecksum, cjnOspfLsaHdrSequence=cjnOspfLsaHdrSequence, cjnOspfIfTransitDelay=cjnOspfIfTransitDelay, cjnOspfVirtIfDrState=cjnOspfVirtIfDrState, cjnOspfAreaSpfRuns=cjnOspfAreaSpfRuns, cjnOspfIfDeadInterval=cjnOspfIfDeadInterval, cjnOspfCnfgRangeEntry=cjnOspfCnfgRangeEntry, cjnOspfAreaT3Filter=cjnOspfAreaT3Filter, cjnOspfExtLsdbTable=cjnOspfExtLsdbTable, cjnOspfAreaEntry=cjnOspfAreaEntry, cjnOspf=cjnOspf, cjnOspfExtLsdbMetric=cjnOspfExtLsdbMetric, cjnOspfRouterLsaHdrAge=cjnOspfRouterLsaHdrAge, cjnOspfAreaStubCost=cjnOspfAreaStubCost, cjnOspfIfMask=cjnOspfIfMask, cjnOspfNetLsdbLsId=cjnOspfNetLsdbLsId, cjnOspfIfHelloTimer=cjnOspfIfHelloTimer, cjnOspfIfMd5KeyFlags=cjnOspfIfMd5KeyFlags, cjnOspfTxLsaUpdCnt=cjnOspfTxLsaUpdCnt) |
def predict(list_items):
"""Returns the double of the items"""
return [i*2 for i in list_items]
| def predict(list_items):
"""Returns the double of the items"""
return [i * 2 for i in list_items] |
# Copyright 2020 Nicole Borrelli
#
# 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 Flags(object):
def __init__(self, parsed=None):
if parsed is not None:
self.no_shuffle = parsed.no_shuffle
self.standard_shops = parsed.standard_shops
self.standard_treasure = parsed.standard_treasure
self.default_start_gear = parsed.default_start_gear
self.debug = parsed.debug
self.boss_shuffle = parsed.boss_shuffle
if parsed.exp_mult is not None:
self.scale_levels = 1.0 / parsed.exp_mult
else:
self.scale_levels = 1.0
else:
self.no_shuffle = False
self.standard_shops = False
self.standard_treasure = False
self.default_start_gear = False
self.debug = False
self.boss_shuffle = False
self.scale_levels = 1.0
def encode(self) -> str:
encoded = ""
if not self.no_shuffle:
encoded += "K"
if not self.standard_shops:
encoded += "S"
if not self.standard_treasure:
encoded += "T"
if not self.default_start_gear:
encoded += "G"
if not self.boss_shuffle:
encoded += "B"
if self.debug:
encoded += "\\u819a"
encoded += str(int((self.scale_levels * 10)))
return encoded
def __str__(self):
out = []
for property, value in vars(self).items():
out.append(f"{property}={value}")
return "[Flags:" + ",".join(out) + "]"
| class Flags(object):
def __init__(self, parsed=None):
if parsed is not None:
self.no_shuffle = parsed.no_shuffle
self.standard_shops = parsed.standard_shops
self.standard_treasure = parsed.standard_treasure
self.default_start_gear = parsed.default_start_gear
self.debug = parsed.debug
self.boss_shuffle = parsed.boss_shuffle
if parsed.exp_mult is not None:
self.scale_levels = 1.0 / parsed.exp_mult
else:
self.scale_levels = 1.0
else:
self.no_shuffle = False
self.standard_shops = False
self.standard_treasure = False
self.default_start_gear = False
self.debug = False
self.boss_shuffle = False
self.scale_levels = 1.0
def encode(self) -> str:
encoded = ''
if not self.no_shuffle:
encoded += 'K'
if not self.standard_shops:
encoded += 'S'
if not self.standard_treasure:
encoded += 'T'
if not self.default_start_gear:
encoded += 'G'
if not self.boss_shuffle:
encoded += 'B'
if self.debug:
encoded += '\\u819a'
encoded += str(int(self.scale_levels * 10))
return encoded
def __str__(self):
out = []
for (property, value) in vars(self).items():
out.append(f'{property}={value}')
return '[Flags:' + ','.join(out) + ']' |
_base_ = './schedule_1x.py'
# learning policy
lr_config = dict(step=[30, 40])
total_epochs = 50
| _base_ = './schedule_1x.py'
lr_config = dict(step=[30, 40])
total_epochs = 50 |
{
"targets": [
{
"target_name": "audio",
'conditions': [
['OS=="win"', {
"sources": ["audio-napi.cc"],
"cflags" : [ "-lole32", "-loleaut32"]
}],
['OS=="linux"', {
"sources": ["audio-napi_dummy.cc"]
}],
['OS=="mac"', {
"sources": ["audio-napi_dummy.cc"]
}],
]
}
]
}
| {'targets': [{'target_name': 'audio', 'conditions': [['OS=="win"', {'sources': ['audio-napi.cc'], 'cflags': ['-lole32', '-loleaut32']}], ['OS=="linux"', {'sources': ['audio-napi_dummy.cc']}], ['OS=="mac"', {'sources': ['audio-napi_dummy.cc']}]]}]} |
str = input('Enter a string:')
i = len(str) - 1
while i > -1 :
print(str[i])
i -= 1 | str = input('Enter a string:')
i = len(str) - 1
while i > -1:
print(str[i])
i -= 1 |
#!/usr/bin/env python3
def load_input_file(path):
with open(path) as input_file:
return [int(line.strip()) for line in input_file]
test_data = [199, 200, 208, 210, 200, 207, 240, 269, 260, 263]
def count_increases(inputs, width=1):
return sum(
inputs[step] > inputs[step - width] for step in range(width, len(inputs))
)
def test_part_one():
assert count_increases(test_data, width=1) == 7
def part_one():
inputs = load_input_file("input.txt")
answer = count_increases(inputs, width=1)
print(f"\n# Measurements larger than the previous measurement: {answer}")
def test_part_two():
assert count_increases(test_data, width=3) == 5
def part_two():
inputs = load_input_file("input.txt")
answer = count_increases(inputs, width=3)
print(f"\n# Sums larger than the previous sum: {answer}")
if __name__ == "__main__":
test_part_one()
part_one()
test_part_two()
part_two()
| def load_input_file(path):
with open(path) as input_file:
return [int(line.strip()) for line in input_file]
test_data = [199, 200, 208, 210, 200, 207, 240, 269, 260, 263]
def count_increases(inputs, width=1):
return sum((inputs[step] > inputs[step - width] for step in range(width, len(inputs))))
def test_part_one():
assert count_increases(test_data, width=1) == 7
def part_one():
inputs = load_input_file('input.txt')
answer = count_increases(inputs, width=1)
print(f'\n# Measurements larger than the previous measurement: {answer}')
def test_part_two():
assert count_increases(test_data, width=3) == 5
def part_two():
inputs = load_input_file('input.txt')
answer = count_increases(inputs, width=3)
print(f'\n# Sums larger than the previous sum: {answer}')
if __name__ == '__main__':
test_part_one()
part_one()
test_part_two()
part_two() |
class Solution:
def daysBetweenDates(self, date1: str, date2: str) -> int:
if date1 > date2: date1, date2 = date2, date1
@lru_cache(None)
def special(year: int) -> bool:
return (year % 400 == 0) or (year % 4 == 0 and year % 100 != 0)
def split_date(date: str):
year, month, day = int(date[0:4]), int(date[5:7]), int(date[8:10])
if month > 1:
m2d = {1: 31, 3: 31, 5: 31, 7: 31, 8: 31, 10: 31, 12: 31, 4: 30, 6: 30, 9: 30, 11: 30, 2: 28}
day += sum([m2d[m] for m in range(1, month)])
if month > 2 and special(year):
day += 1
return year, day
year1, day1 = split_date(date1)
year2, day2 = split_date(date2)
gap = 0
for year in range(year1, year2):
if special(year):
gap += 366
else:
gap += 365
return gap - day1 + day2
| class Solution:
def days_between_dates(self, date1: str, date2: str) -> int:
if date1 > date2:
(date1, date2) = (date2, date1)
@lru_cache(None)
def special(year: int) -> bool:
return year % 400 == 0 or (year % 4 == 0 and year % 100 != 0)
def split_date(date: str):
(year, month, day) = (int(date[0:4]), int(date[5:7]), int(date[8:10]))
if month > 1:
m2d = {1: 31, 3: 31, 5: 31, 7: 31, 8: 31, 10: 31, 12: 31, 4: 30, 6: 30, 9: 30, 11: 30, 2: 28}
day += sum([m2d[m] for m in range(1, month)])
if month > 2 and special(year):
day += 1
return (year, day)
(year1, day1) = split_date(date1)
(year2, day2) = split_date(date2)
gap = 0
for year in range(year1, year2):
if special(year):
gap += 366
else:
gap += 365
return gap - day1 + day2 |
names = ['james', 'john', 'jack']
email_domains = ['gmail', 'yahoo', 'hotmail']
for i, j in zip(names, email_domains):
print(i, j)
print("------------")
| names = ['james', 'john', 'jack']
email_domains = ['gmail', 'yahoo', 'hotmail']
for (i, j) in zip(names, email_domains):
print(i, j)
print('------------') |
class SimpleEquality(object):
"""
Helper class for the simple comparison of two objects of the same class.
If their __dict__'s are equal, true is returned
"""
def __eq__(self, other):
if isinstance(self, other.__class__):
return self.__dict__ == other.__dict__
return NotImplemented | class Simpleequality(object):
"""
Helper class for the simple comparison of two objects of the same class.
If their __dict__'s are equal, true is returned
"""
def __eq__(self, other):
if isinstance(self, other.__class__):
return self.__dict__ == other.__dict__
return NotImplemented |
with open("texto.txt", "r") as arquivo:
conteudo = arquivo.read()
palavras = conteudo.split()
print(palavras)
print(len(palavras)) | with open('texto.txt', 'r') as arquivo:
conteudo = arquivo.read()
palavras = conteudo.split()
print(palavras)
print(len(palavras)) |
# Question: https://projecteuler.net/problem=61
P3n = lambda n: n*(n+1) // 2
P4n = lambda n: n*n
P5n = lambda n: n*(3*n-1)//2
P6n = lambda n: n*(2*n-1)
P7n = lambda n: n*(5*n-3)//2
P8n = lambda n: n*(3*n-2)
has_four_digits = lambda n: n if (n >= 1000) and (n <= 9999) else 0
P3 = {has_four_digits(P3n(n)) for n in range(1, 1000)}
P4 = {has_four_digits(P4n(n)) for n in range(1, 1000)}
P5 = {has_four_digits(P5n(n)) for n in range(1, 1000)}
P6 = {has_four_digits(P6n(n)) for n in range(1, 1000)}
P7 = {has_four_digits(P7n(n)) for n in range(1, 1000)}
P8 = {has_four_digits(P8n(n)) for n in range(1, 1000)}
for P in [P3, P4, P5, P6, P7, P8]:
P.discard(0)
split = lambda n: (n // 100, n % 100)
G = {}
vertex = set()
G_set = []
P_set = [P3, P4, P5, P6, P7, P8]
W_set = [1, 2, 4, 8, 16, 32]
for P, W in zip(P_set, W_set):
new_G = {}
for Pn in P:
u, v = split(Pn)
if v < 10:
continue
if not u in new_G:
new_G[u] = {}
new_G[u][v] = W
G_set.append(new_G)
"""
# remove impossible combination where the ending of a Pn couldn't be found in the beginning of another Pn of another P set
for i in range(len(G_set)):
Q = G_set[:i] + G_set[i+1:]
for u in G_set[i]:
to_remove = []
for v in G_set[i][u]:
found_v = False
for q in Q:
if v in q:
found_v = True
break
if not found_v:
to_remove.append(v)
for v in to_remove:
del G_set[i][u][v]
"""
for g in G_set:
to_remove = []
for u in g:
if len(g[u]) == 0:
to_remove.append(u)
for u in to_remove:
del g[u]
G = {}
def merge_g(G, H):
for u in H:
if not u in G:
G[u] = {}
for v, w in H[u].items():
G[u][v] = w
for g in G_set:
merge_g(G, g)
# The special cases where u == v are 5151, 5050, 1717, 4141, none of them are in P8
# So it's safe to say that we don't need to consider self loop of a vertex
s = 0
def sum_path(path):
s = 0
for i in range(len(path)-1):
s = s + path[i]*100 + path[i+1]
s = s + path[-1] * 100 + path[0]
return s
def DFS(node, path, edges, total_weights, target_node, goal_weight):
if len(path) == 6:
if total_weights + 32 == goal_weight and path[-1] == target_node:
found = True
global s
s = sum_path(path)
return True
else:
return False
u = path[-1]
found = False
for v, w in node.items():
if not (u,v) in edges and total_weights & w == 0 and v in G: # no repeating weights
if DFS(G[v], path + [v], edges + [(u,v)], total_weights + w, target_node, goal_weight):
found = True
break
return found
for Pn in P8:
u, v = split(Pn)
if not v in G:
continue
found = DFS(G[v], [v], [], 0, u, sum([1,2,4,8,16,32]))
if found:
break
print(s)
| p3n = lambda n: n * (n + 1) // 2
p4n = lambda n: n * n
p5n = lambda n: n * (3 * n - 1) // 2
p6n = lambda n: n * (2 * n - 1)
p7n = lambda n: n * (5 * n - 3) // 2
p8n = lambda n: n * (3 * n - 2)
has_four_digits = lambda n: n if n >= 1000 and n <= 9999 else 0
p3 = {has_four_digits(p3n(n)) for n in range(1, 1000)}
p4 = {has_four_digits(p4n(n)) for n in range(1, 1000)}
p5 = {has_four_digits(p5n(n)) for n in range(1, 1000)}
p6 = {has_four_digits(p6n(n)) for n in range(1, 1000)}
p7 = {has_four_digits(p7n(n)) for n in range(1, 1000)}
p8 = {has_four_digits(p8n(n)) for n in range(1, 1000)}
for p in [P3, P4, P5, P6, P7, P8]:
P.discard(0)
split = lambda n: (n // 100, n % 100)
g = {}
vertex = set()
g_set = []
p_set = [P3, P4, P5, P6, P7, P8]
w_set = [1, 2, 4, 8, 16, 32]
for (p, w) in zip(P_set, W_set):
new_g = {}
for pn in P:
(u, v) = split(Pn)
if v < 10:
continue
if not u in new_G:
new_G[u] = {}
new_G[u][v] = W
G_set.append(new_G)
"\n# remove impossible combination where the ending of a Pn couldn't be found in the beginning of another Pn of another P set\nfor i in range(len(G_set)):\n Q = G_set[:i] + G_set[i+1:]\n for u in G_set[i]:\n to_remove = []\n for v in G_set[i][u]:\n found_v = False\n for q in Q:\n if v in q:\n found_v = True\n break\n if not found_v:\n to_remove.append(v)\n for v in to_remove:\n del G_set[i][u][v]\n"
for g in G_set:
to_remove = []
for u in g:
if len(g[u]) == 0:
to_remove.append(u)
for u in to_remove:
del g[u]
g = {}
def merge_g(G, H):
for u in H:
if not u in G:
G[u] = {}
for (v, w) in H[u].items():
G[u][v] = w
for g in G_set:
merge_g(G, g)
s = 0
def sum_path(path):
s = 0
for i in range(len(path) - 1):
s = s + path[i] * 100 + path[i + 1]
s = s + path[-1] * 100 + path[0]
return s
def dfs(node, path, edges, total_weights, target_node, goal_weight):
if len(path) == 6:
if total_weights + 32 == goal_weight and path[-1] == target_node:
found = True
global s
s = sum_path(path)
return True
else:
return False
u = path[-1]
found = False
for (v, w) in node.items():
if not (u, v) in edges and total_weights & w == 0 and (v in G):
if dfs(G[v], path + [v], edges + [(u, v)], total_weights + w, target_node, goal_weight):
found = True
break
return found
for pn in P8:
(u, v) = split(Pn)
if not v in G:
continue
found = dfs(G[v], [v], [], 0, u, sum([1, 2, 4, 8, 16, 32]))
if found:
break
print(s) |
__all__ = ["BaseProcess", "BaseSignalState", "BaseSimulation", "BaseEngine"]
class BaseProcess:
__slots__ = ()
def __init__(self):
self.reset()
def reset(self):
self.runnable = False
self.passive = True
def run(self):
raise NotImplementedError
class BaseSignalState:
__slots__ = ()
signal = NotImplemented
curr = NotImplemented
next = NotImplemented
def set(self, value):
raise NotImplementedError
class BaseSimulation:
def reset(self):
raise NotImplementedError
def get_signal(self, signal):
raise NotImplementedError
slots = NotImplemented
def add_trigger(self, process, signal, *, trigger=None):
raise NotImplementedError
def remove_trigger(self, process, signal):
raise NotImplementedError
def wait_interval(self, process, interval):
raise NotImplementedError
class BaseEngine:
def add_coroutine_process(self, process, *, default_cmd):
raise NotImplementedError
def add_clock_process(self, clock, *, phase, period):
raise NotImplementedError
def reset(self):
raise NotImplementedError
@property
def now(self):
raise NotImplementedError
def advance(self):
raise NotImplementedError
def write_vcd(self, *, vcd_file, gtkw_file, traces):
raise NotImplementedError
| __all__ = ['BaseProcess', 'BaseSignalState', 'BaseSimulation', 'BaseEngine']
class Baseprocess:
__slots__ = ()
def __init__(self):
self.reset()
def reset(self):
self.runnable = False
self.passive = True
def run(self):
raise NotImplementedError
class Basesignalstate:
__slots__ = ()
signal = NotImplemented
curr = NotImplemented
next = NotImplemented
def set(self, value):
raise NotImplementedError
class Basesimulation:
def reset(self):
raise NotImplementedError
def get_signal(self, signal):
raise NotImplementedError
slots = NotImplemented
def add_trigger(self, process, signal, *, trigger=None):
raise NotImplementedError
def remove_trigger(self, process, signal):
raise NotImplementedError
def wait_interval(self, process, interval):
raise NotImplementedError
class Baseengine:
def add_coroutine_process(self, process, *, default_cmd):
raise NotImplementedError
def add_clock_process(self, clock, *, phase, period):
raise NotImplementedError
def reset(self):
raise NotImplementedError
@property
def now(self):
raise NotImplementedError
def advance(self):
raise NotImplementedError
def write_vcd(self, *, vcd_file, gtkw_file, traces):
raise NotImplementedError |
class ColorRGB:
def __init__(self, red, green, blue):
self.red = red
self.green = green
self.blue = blue
| class Colorrgb:
def __init__(self, red, green, blue):
self.red = red
self.green = green
self.blue = blue |
class TaskError(Exception):
def __init__(self, msg):
self.msg = msg
def print_msg(self):
return ("Exception raised: ", self.msg)
| class Taskerror(Exception):
def __init__(self, msg):
self.msg = msg
def print_msg(self):
return ('Exception raised: ', self.msg) |
#
# PySNMP MIB module QOSSLA-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/QOSSLA-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:35: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)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ConstraintsIntersection, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion")
ntEnterpriseDataTasmanMgmt, = mibBuilder.importSymbols("NT-ENTERPRISE-DATA-MIB", "ntEnterpriseDataTasmanMgmt")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
NotificationType, Counter32, ModuleIdentity, Counter64, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Integer32, Bits, TimeTicks, MibIdentifier, Gauge32, iso, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Counter32", "ModuleIdentity", "Counter64", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Integer32", "Bits", "TimeTicks", "MibIdentifier", "Gauge32", "iso", "IpAddress")
TextualConvention, TruthValue, DisplayString, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "TruthValue", "DisplayString", "RowStatus")
nnqosSLAMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24))
nnqosSLAMib.setRevisions(('1900-08-18 00:00',))
if mibBuilder.loadTexts: nnqosSLAMib.setLastUpdated('0008180000Z')
if mibBuilder.loadTexts: nnqosSLAMib.setOrganization('Nortel Networks')
nnqosSLANotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1))
nnqosSLANotificationsVars = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2))
nnqosSLATraps = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1, 0))
nnqosSlaIndex = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaIndex.setStatus('current')
nnqosSlaThresholdType = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("average", 1), ("immediate", 2), ("consecutive", 3), ("xofy", 4)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaThresholdType.setStatus('current')
nnqosSlaEffectType = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=NamedValues(("jitterAvg", 1), ("jitterAvgSrcDest", 2), ("jitterAvgDestSrc", 3), ("jitterMaxPosSrcDest", 4), ("jitterMaxPosDestSrc", 5), ("jitterMaxNegSrcDest", 6), ("jitterMaxNegDestSrc", 7), ("delayAvg", 8), ("delayAvgSrcDest", 9), ("delayAvgDestSrc", 10), ("delayMaxSrcDest", 11), ("delayMaxDestSrc", 12), ("packetLoss", 13), ("packetOutOfOrder", 14), ("packetLateArrival", 15), ("responseTime", 16), ("timeout", 17)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaEffectType.setStatus('current')
nnqosSlaThresholdValue1 = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 4), Integer32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaThresholdValue1.setStatus('current')
nnqosSlaThresholdValue2 = MibScalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 5), Integer32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: nnqosSlaThresholdValue2.setStatus('current')
nnqosSLANotification = NotificationType((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1, 0, 1)).setObjects(("QOSSLA-MIB", "nnqosSlaIndex"), ("QOSSLA-MIB", "nnqosSlaThresholdType"), ("QOSSLA-MIB", "nnqosSlaEffectType"), ("QOSSLA-MIB", "nnqosSlaThresholdValue1"), ("QOSSLA-MIB", "nnqosSlaThresholdValue2"))
if mibBuilder.loadTexts: nnqosSLANotification.setStatus('current')
nnqosNotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 3)).setObjects(("QOSSLA-MIB", "nnqosSLANotification"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnqosNotificationGroup = nnqosNotificationGroup.setStatus('current')
mibBuilder.exportSymbols("QOSSLA-MIB", nnqosSLATraps=nnqosSLATraps, nnqosSLAMib=nnqosSLAMib, nnqosSlaIndex=nnqosSlaIndex, nnqosSlaThresholdType=nnqosSlaThresholdType, nnqosSLANotification=nnqosSLANotification, nnqosSlaThresholdValue2=nnqosSlaThresholdValue2, PYSNMP_MODULE_ID=nnqosSLAMib, nnqosSLANotificationsVars=nnqosSLANotificationsVars, nnqosSLANotifications=nnqosSLANotifications, nnqosSlaThresholdValue1=nnqosSlaThresholdValue1, nnqosNotificationGroup=nnqosNotificationGroup, nnqosSlaEffectType=nnqosSlaEffectType)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_intersection, single_value_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion')
(nt_enterprise_data_tasman_mgmt,) = mibBuilder.importSymbols('NT-ENTERPRISE-DATA-MIB', 'ntEnterpriseDataTasmanMgmt')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(notification_type, counter32, module_identity, counter64, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, integer32, bits, time_ticks, mib_identifier, gauge32, iso, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'Counter32', 'ModuleIdentity', 'Counter64', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Integer32', 'Bits', 'TimeTicks', 'MibIdentifier', 'Gauge32', 'iso', 'IpAddress')
(textual_convention, truth_value, display_string, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'TruthValue', 'DisplayString', 'RowStatus')
nnqos_sla_mib = module_identity((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24))
nnqosSLAMib.setRevisions(('1900-08-18 00:00',))
if mibBuilder.loadTexts:
nnqosSLAMib.setLastUpdated('0008180000Z')
if mibBuilder.loadTexts:
nnqosSLAMib.setOrganization('Nortel Networks')
nnqos_sla_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1))
nnqos_sla_notifications_vars = mib_identifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2))
nnqos_sla_traps = mib_identifier((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1, 0))
nnqos_sla_index = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaIndex.setStatus('current')
nnqos_sla_threshold_type = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('average', 1), ('immediate', 2), ('consecutive', 3), ('xofy', 4)))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaThresholdType.setStatus('current')
nnqos_sla_effect_type = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=named_values(('jitterAvg', 1), ('jitterAvgSrcDest', 2), ('jitterAvgDestSrc', 3), ('jitterMaxPosSrcDest', 4), ('jitterMaxPosDestSrc', 5), ('jitterMaxNegSrcDest', 6), ('jitterMaxNegDestSrc', 7), ('delayAvg', 8), ('delayAvgSrcDest', 9), ('delayAvgDestSrc', 10), ('delayMaxSrcDest', 11), ('delayMaxDestSrc', 12), ('packetLoss', 13), ('packetOutOfOrder', 14), ('packetLateArrival', 15), ('responseTime', 16), ('timeout', 17)))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaEffectType.setStatus('current')
nnqos_sla_threshold_value1 = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 4), integer32()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaThresholdValue1.setStatus('current')
nnqos_sla_threshold_value2 = mib_scalar((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 2, 5), integer32()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
nnqosSlaThresholdValue2.setStatus('current')
nnqos_sla_notification = notification_type((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 1, 0, 1)).setObjects(('QOSSLA-MIB', 'nnqosSlaIndex'), ('QOSSLA-MIB', 'nnqosSlaThresholdType'), ('QOSSLA-MIB', 'nnqosSlaEffectType'), ('QOSSLA-MIB', 'nnqosSlaThresholdValue1'), ('QOSSLA-MIB', 'nnqosSlaThresholdValue2'))
if mibBuilder.loadTexts:
nnqosSLANotification.setStatus('current')
nnqos_notification_group = notification_group((1, 3, 6, 1, 4, 1, 562, 73, 1, 1, 1, 24, 3)).setObjects(('QOSSLA-MIB', 'nnqosSLANotification'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnqos_notification_group = nnqosNotificationGroup.setStatus('current')
mibBuilder.exportSymbols('QOSSLA-MIB', nnqosSLATraps=nnqosSLATraps, nnqosSLAMib=nnqosSLAMib, nnqosSlaIndex=nnqosSlaIndex, nnqosSlaThresholdType=nnqosSlaThresholdType, nnqosSLANotification=nnqosSLANotification, nnqosSlaThresholdValue2=nnqosSlaThresholdValue2, PYSNMP_MODULE_ID=nnqosSLAMib, nnqosSLANotificationsVars=nnqosSLANotificationsVars, nnqosSLANotifications=nnqosSLANotifications, nnqosSlaThresholdValue1=nnqosSlaThresholdValue1, nnqosNotificationGroup=nnqosNotificationGroup, nnqosSlaEffectType=nnqosSlaEffectType) |
Nomod = 0
NoFail = 1
Easy = 2
NoVideo = 4
Hidden = 8
HardRock = 16
SuddenDeath = 32
DoubleTime = 64
Relax = 128
HalfTime = 256
Nightcore = 512
Flashlight = 1024
Autoplay = 2048
SpunOut = 4096
Relax2 = 8192
Perfect = 16384
Key4 = 32768
Key5 = 65536
Key6 = 131072
Key7 = 262144
Key8 = 524288
keyMod = 1015808
FadeIn = 1048576
Random = 2097152
LastMod = 4194304
Key9 = 16777216
Key10 = 33554432
Key1 = 67108864
Key3 = 134217728
Key2 = 268435456
| nomod = 0
no_fail = 1
easy = 2
no_video = 4
hidden = 8
hard_rock = 16
sudden_death = 32
double_time = 64
relax = 128
half_time = 256
nightcore = 512
flashlight = 1024
autoplay = 2048
spun_out = 4096
relax2 = 8192
perfect = 16384
key4 = 32768
key5 = 65536
key6 = 131072
key7 = 262144
key8 = 524288
key_mod = 1015808
fade_in = 1048576
random = 2097152
last_mod = 4194304
key9 = 16777216
key10 = 33554432
key1 = 67108864
key3 = 134217728
key2 = 268435456 |
people = ["jack chen", "brus lee"]
jackChen = people[0]
brusLee = people[1]
people = ["jack chen", "brus lee"]
jackChen, brusLee = people
print(jackChen, brusLee)
# jack chen brus lee
jackChen, brusLee = ["jack chen", "brus lee"]
print(jackChen, brusLee)
# jack chen brus lee
numbers = [i for i in range(1, 20, 2)]
print(numbers)
# [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]
numbers = [i for i in range(1, 20, 2)]
print(numbers)
num1, num2, num3, *numOthers, numEnd = numbers
print(num1, num2, num3, numEnd)
print(numOthers)
# [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]
# 1 3 5 19
# [7, 9, 11, 13, 15, 17]
numbers = [i for i in range(1, 20, 2)]
print(numbers)
*_, last1, last2 = numbers
print(last1, last2)
# [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]
# 17 19
people = [["jack chen", 16, "actor"], ["brus Lee", "engineer"]]
for person in people:
name, *info = person
print("name is ", name, "person info is ", info)
# name is jack chen person info is [16, 'actor']
# name is brus Lee person info is ['engineer']
numbers1 = [1, 2, 3]
numbers2 = [7, 8, 9]
numbers3 = numbers1+numbers2
print(numbers3)
# [1, 2, 3, 7, 8, 9]
print('-'*10)
# ----------
numbers = [1, 2, 3]
print(numbers*3)
# [1, 2, 3, 1, 2, 3, 1, 2, 3]
numbers = [[]]*3
print(numbers)
numbers[0].append(1)
print(numbers)
# [[], [], []]
# [[1], [1], [1]]
numbers = [[] for i in range(0, 3)]
print(numbers)
numbers[0].append(1)
numbers[1].append(2)
numbers[2].append(3)
print(numbers)
# [[], [], []]
# [[1], [2], [3]] | people = ['jack chen', 'brus lee']
jack_chen = people[0]
brus_lee = people[1]
people = ['jack chen', 'brus lee']
(jack_chen, brus_lee) = people
print(jackChen, brusLee)
(jack_chen, brus_lee) = ['jack chen', 'brus lee']
print(jackChen, brusLee)
numbers = [i for i in range(1, 20, 2)]
print(numbers)
numbers = [i for i in range(1, 20, 2)]
print(numbers)
(num1, num2, num3, *num_others, num_end) = numbers
print(num1, num2, num3, numEnd)
print(numOthers)
numbers = [i for i in range(1, 20, 2)]
print(numbers)
(*_, last1, last2) = numbers
print(last1, last2)
people = [['jack chen', 16, 'actor'], ['brus Lee', 'engineer']]
for person in people:
(name, *info) = person
print('name is ', name, 'person info is ', info)
numbers1 = [1, 2, 3]
numbers2 = [7, 8, 9]
numbers3 = numbers1 + numbers2
print(numbers3)
print('-' * 10)
numbers = [1, 2, 3]
print(numbers * 3)
numbers = [[]] * 3
print(numbers)
numbers[0].append(1)
print(numbers)
numbers = [[] for i in range(0, 3)]
print(numbers)
numbers[0].append(1)
numbers[1].append(2)
numbers[2].append(3)
print(numbers) |
#!/usr/bin/env python
# encoding: utf-8
class Solution:
def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
ans = collections.defaultdict(list)
for word in strs:
count = [0] * 26
for c in word:
count[ord(c) - ord('a')] += 1
ans[tuple(count)].append(word)
return ans.values()
| class Solution:
def group_anagrams(self, strs: List[str]) -> List[List[str]]:
ans = collections.defaultdict(list)
for word in strs:
count = [0] * 26
for c in word:
count[ord(c) - ord('a')] += 1
ans[tuple(count)].append(word)
return ans.values() |
class Node(object):
def __init__(self, value, children=None):
if not children:
children = []
self.value = value
self.children = children
def __str__(self, level=0):
if not self.value:
ret = (
"| Catalogs\t| Schemas\t| Table Names\t\n-----------"
"------------------------------------------------\n"
)
else:
ret = (
"|\t\t\t" * (level - 1)
+ "|-- " * (int(level / level) if level > 0 else level)
+ str(self.value)
+ "\n"
)
for child in self.children:
ret += child.__str__(level + 1)
return ret
def __repr__(self):
return "<DoordaHost permissions representation>"
| class Node(object):
def __init__(self, value, children=None):
if not children:
children = []
self.value = value
self.children = children
def __str__(self, level=0):
if not self.value:
ret = '| Catalogs\t| Schemas\t| Table Names\t\n-----------------------------------------------------------\n'
else:
ret = '|\t\t\t' * (level - 1) + '|-- ' * (int(level / level) if level > 0 else level) + str(self.value) + '\n'
for child in self.children:
ret += child.__str__(level + 1)
return ret
def __repr__(self):
return '<DoordaHost permissions representation>' |
def getCountyFDARestaurantsData(county):
data = {"01001": {"FFRPTH14": 0.649878148, "FSRPTH14": 0.523512952}, "01003": {"FFRPTH14": 0.659633903, "FSRPTH14": 1.104387065}, "01005": {"FFRPTH14": 0.818239298, "FSRPTH14": 0.55789043}, "01007": {"FFRPTH14": 0.22216297899999998, "FSRPTH14": 0.22216297899999998}, "01009": {"FFRPTH14": 0.363831667, "FSRPTH14": 0.259879762}, "01011": {"FFRPTH14": 0.2787068, "FSRPTH14": 0.092902267}, "01013": {"FFRPTH14": 0.837603469, "FSRPTH14": 0.492707923}, "01015": {"FFRPTH14": 0.888574485, "FSRPTH14": 0.66427413}, "01017": {"FFRPTH14": 0.763000352, "FSRPTH14": 0.469538678}, "01019": {"FFRPTH14": 0.576103238, "FSRPTH14": 0.42247570799999995}, "01021": {"FFRPTH14": 0.455259384, "FSRPTH14": 0.409733446}, "01023": {"FFRPTH14": 0.45034902, "FSRPTH14": 0.37529085}, "01025": {"FFRPTH14": 1.042293045, "FSRPTH14": 0.60132291}, "01027": {"FFRPTH14": 0.295159386, "FSRPTH14": 0.442739079}, "01029": {"FFRPTH14": 0.530503979, "FSRPTH14": 0.132625995}, "01031": {"FFRPTH14": 0.667858335, "FSRPTH14": 0.550000982}, "01033": {"FFRPTH14": 0.953376235, "FSRPTH14": 0.696698018}, "01035": {"FFRPTH14": 0.5524861879999999, "FSRPTH14": 0.31570639300000003}, "01037": {"FFRPTH14": 0.091861106, "FSRPTH14": 0.0}, "01039": {"FFRPTH14": 0.633011552, "FSRPTH14": 0.474758664}, "01041": {"FFRPTH14": 0.357730557, "FSRPTH14": 0.429276669}, "01043": {"FFRPTH14": 0.651994735, "FSRPTH14": 0.590485798}, "01045": {"FFRPTH14": 0.687090777, "FSRPTH14": 0.6062565679999999}, "01047": {"FFRPTH14": 0.45551533200000005, "FSRPTH14": 0.359617367}, "01049": {"FFRPTH14": 0.605079856, "FSRPTH14": 0.43622036200000003}, "01051": {"FFRPTH14": 0.555713351, "FSRPTH14": 0.469269052}, "01053": {"FFRPTH14": 0.715554024, "FSRPTH14": 0.530040018}, "01055": {"FFRPTH14": 0.7630564759999999, "FSRPTH14": 0.550559736}, "01057": {"FFRPTH14": 0.53336494, "FSRPTH14": 0.53336494}, "01059": {"FFRPTH14": 0.5696022279999999, "FSRPTH14": 0.506313091}, "01061": {"FFRPTH14": 0.37436358200000003, "FSRPTH14": 0.41179994}, "01063": {"FFRPTH14": 0.11691804, "FSRPTH14": 0.233836081}, "01065": {"FFRPTH14": 0.461011591, "FSRPTH14": 0.263435195}, "01067": {"FFRPTH14": 0.581733566, "FSRPTH14": 0.639906923}, "01069": {"FFRPTH14": 0.930964652, "FSRPTH14": 0.739013177}, "01071": {"FFRPTH14": 0.550650337, "FSRPTH14": 0.474698566}, "01073": {"FFRPTH14": 0.9715599290000001, "FSRPTH14": 0.5690132920000001}, "01075": {"FFRPTH14": 0.42595484899999997, "FSRPTH14": 0.7099247479999999}, "01077": {"FFRPTH14": 0.773395205, "FSRPTH14": 0.751912005}, "01079": {"FFRPTH14": 0.477940078, "FSRPTH14": 0.5078113329999999}, "01081": {"FFRPTH14": 0.82979482, "FSRPTH14": 0.706622152}, "01083": {"FFRPTH14": 0.561754436, "FSRPTH14": 0.429576922}, "01085": {"FFRPTH14": 0.0, "FSRPTH14": 0.189035917}, "01087": {"FFRPTH14": 0.46332046299999996, "FSRPTH14": 0.10296010300000001}, "01089": {"FFRPTH14": 0.9420523609999999, "FSRPTH14": 0.6451631320000001}, "01091": {"FFRPTH14": 0.94480358, "FSRPTH14": 0.447538538}, "01093": {"FFRPTH14": 0.561593604, "FSRPTH14": 0.660698358}, "01095": {"FFRPTH14": 0.750243036, "FSRPTH14": 0.6340081999999999}, "01097": {"FFRPTH14": 0.60945792, "FSRPTH14": 0.522736635}, "01099": {"FFRPTH14": 0.410078826, "FSRPTH14": 0.45564314}, "01101": {"FFRPTH14": 0.928427112, "FSRPTH14": 0.623372489}, "01103": {"FFRPTH14": 0.827710753, "FSRPTH14": 0.560167883}, "01105": {"FFRPTH14": 0.10177081199999999, "FSRPTH14": 0.610624873}, "01107": {"FFRPTH14": 0.39283083700000004, "FSRPTH14": 0.294623128}, "01109": {"FFRPTH14": 0.9883494559999999, "FSRPTH14": 0.658899638}, "01111": {"FFRPTH14": 0.399307866, "FSRPTH14": 0.310572785}, "01113": {"FFRPTH14": 0.7381559520000001, "FSRPTH14": 0.352301704}, "01115": {"FFRPTH14": 0.5651868, "FSRPTH14": 0.5075146779999999}, "01117": {"FFRPTH14": 0.6822965809999999, "FSRPTH14": 0.6387457360000001}, "01119": {"FFRPTH14": 0.53167249, "FSRPTH14": 0.45571927700000003}, "01121": {"FFRPTH14": 0.602542977, "FSRPTH14": 0.454981432}, "01123": {"FFRPTH14": 0.48584963, "FSRPTH14": 0.412972185}, "01125": {"FFRPTH14": 0.796194093, "FSRPTH14": 0.543983542}, "01127": {"FFRPTH14": 0.626231461, "FSRPTH14": 0.519313895}, "01129": {"FFRPTH14": 0.178210764, "FSRPTH14": 0.356421528}, "01131": {"FFRPTH14": 0.45053162700000005, "FSRPTH14": 0.45053162700000005}, "01133": {"FFRPTH14": 0.414078675, "FSRPTH14": 0.621118012}, "02013": {"FFRPTH14": 0.297619048, "FSRPTH14": 0.297619048}, "02016": {"FFRPTH14": 0.0, "FSRPTH14": 0.347826087}, "02020": {"FFRPTH14": 0.677718348, "FSRPTH14": 0.767416365}, "02050": {"FFRPTH14": 0.39176180899999996, "FSRPTH14": 0.39176180899999996}, "02060": {"FFRPTH14": 0.0, "FSRPTH14": 2.089864159}, "02068": {"FFRPTH14": 1.041124414, "FSRPTH14": 3.64393545}, "02070": {"FFRPTH14": 0.200481155, "FSRPTH14": 0.40096231}, "02090": {"FFRPTH14": 0.49317109, "FSRPTH14": 0.654206548}, "02100": {"FFRPTH14": 0.38971161299999996, "FSRPTH14": 2.33826968}, "02105": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02110": {"FFRPTH14": 0.9566129729999999, "FSRPTH14": 0.894896007}, "02122": {"FFRPTH14": 0.678532282, "FSRPTH14": 1.3396663009999998}, "02130": {"FFRPTH14": 0.870385145, "FSRPTH14": 0.870385145}, "02150": {"FFRPTH14": 0.500500501, "FSRPTH14": 0.786500787}, "02164": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02170": {"FFRPTH14": 0.439304469, "FSRPTH14": 0.51081915}, "02180": {"FFRPTH14": 0.101864113, "FSRPTH14": 1.018641133}, "02185": {"FFRPTH14": 0.206121818, "FSRPTH14": 0.515304545}, "02188": {"FFRPTH14": 0.25916807, "FSRPTH14": 0.129584035}, "02195": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02198": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02220": {"FFRPTH14": 0.449438202, "FSRPTH14": 0.898876404}, "02230": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02240": {"FFRPTH14": 0.28855865, "FSRPTH14": 1.0099552729999999}, "02261": {"FFRPTH14": 0.94856661, "FSRPTH14": 1.5809443509999999}, "02270": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02275": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02282": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "02290": {"FFRPTH14": 0.0, "FSRPTH14": 0.180277628}, "04001": {"FFRPTH14": 0.222754358, "FSRPTH14": 0.250598652}, "04003": {"FFRPTH14": 0.47862657700000005, "FSRPTH14": 0.753248384}, "04005": {"FFRPTH14": 0.871573626, "FSRPTH14": 1.176624395}, "04007": {"FFRPTH14": 0.640072291, "FSRPTH14": 1.035411058}, "04009": {"FFRPTH14": 0.421529626, "FSRPTH14": 0.316147219}, "04011": {"FFRPTH14": 0.213995292, "FSRPTH14": 0.7489835220000001}, "04012": {"FFRPTH14": 0.7414364090000001, "FSRPTH14": 1.482872819}, "04013": {"FFRPTH14": 0.68041841, "FSRPTH14": 0.583285684}, "04015": {"FFRPTH14": 0.5605794620000001, "FSRPTH14": 0.634339918}, "04017": {"FFRPTH14": 0.499532844, "FSRPTH14": 0.721547442}, "04019": {"FFRPTH14": 0.608253129, "FSRPTH14": 0.648073301}, "04021": {"FFRPTH14": 0.28612801600000004, "FSRPTH14": 0.271199598}, "04023": {"FFRPTH14": 0.578220366, "FSRPTH14": 0.856622765}, "04025": {"FFRPTH14": 0.584891521, "FSRPTH14": 0.9367403259999999}, "04027": {"FFRPTH14": 0.575654253, "FSRPTH14": 0.37884938}, "05001": {"FFRPTH14": 0.591588685, "FSRPTH14": 0.645369474}, "05003": {"FFRPTH14": 0.716058812, "FSRPTH14": 0.286423525}, "05005": {"FFRPTH14": 0.783219522, "FSRPTH14": 0.758743912}, "05007": {"FFRPTH14": 0.660281197, "FSRPTH14": 0.631393895}, "05009": {"FFRPTH14": 0.618346059, "FSRPTH14": 0.672115281}, "05011": {"FFRPTH14": 0.538213132, "FSRPTH14": 0.538213132}, "05013": {"FFRPTH14": 0.384467512, "FSRPTH14": 0.576701269}, "05015": {"FFRPTH14": 0.540657439, "FSRPTH14": 1.838235294}, "05017": {"FFRPTH14": 0.447227191, "FSRPTH14": 0.178890877}, "05019": {"FFRPTH14": 0.841601701, "FSRPTH14": 0.48724309}, "05021": {"FFRPTH14": 0.595316841, "FSRPTH14": 0.529170525}, "05023": {"FFRPTH14": 0.6241710229999999, "FSRPTH14": 0.9362565340000001}, "05025": {"FFRPTH14": 0.118357202, "FSRPTH14": 0.118357202}, "05027": {"FFRPTH14": 0.919232858, "FSRPTH14": 0.33426649399999997}, "05029": {"FFRPTH14": 0.33202106, "FSRPTH14": 0.569178959}, "05031": {"FFRPTH14": 0.7413332290000001, "FSRPTH14": 0.682806922}, "05033": {"FFRPTH14": 0.45383081799999997, "FSRPTH14": 0.486247305}, "05035": {"FFRPTH14": 0.6862032779999999, "FSRPTH14": 0.403648987}, "05037": {"FFRPTH14": 0.696580949, "FSRPTH14": 0.40633888700000004}, "05039": {"FFRPTH14": 0.386847195, "FSRPTH14": 0.7736943909999999}, "05041": {"FFRPTH14": 0.733855186, "FSRPTH14": 0.896934116}, "05043": {"FFRPTH14": 0.805498872, "FSRPTH14": 0.6980990229999999}, "05045": {"FFRPTH14": 0.654146794, "FSRPTH14": 0.579623741}, "05047": {"FFRPTH14": 0.336983993, "FSRPTH14": 0.730131985}, "05049": {"FFRPTH14": 0.329896907, "FSRPTH14": 0.329896907}, "05051": {"FFRPTH14": 0.873389367, "FSRPTH14": 1.027516903}, "05053": {"FFRPTH14": 0.330687831, "FSRPTH14": 0.496031746}, "05055": {"FFRPTH14": 0.64082025, "FSRPTH14": 0.503501625}, "05057": {"FFRPTH14": 0.49267702799999996, "FSRPTH14": 0.582254669}, "05059": {"FFRPTH14": 0.419563654, "FSRPTH14": 0.269719492}, "05061": {"FFRPTH14": 0.666666667, "FSRPTH14": 0.592592593}, "05063": {"FFRPTH14": 0.568197191, "FSRPTH14": 0.730539246}, "05065": {"FFRPTH14": 0.22245291399999997, "FSRPTH14": 0.5190568}, "05067": {"FFRPTH14": 0.5132884679999999, "FSRPTH14": 0.456256416}, "05069": {"FFRPTH14": 0.7745826240000001, "FSRPTH14": 0.442618643}, "05071": {"FFRPTH14": 0.422995578, "FSRPTH14": 0.422995578}, "05073": {"FFRPTH14": 0.421881592, "FSRPTH14": 0.14062719699999998}, "05075": {"FFRPTH14": 0.35437954, "FSRPTH14": 0.649695824}, "05077": {"FFRPTH14": 0.304259635, "FSRPTH14": 0.101419878}, "05079": {"FFRPTH14": 0.357909807, "FSRPTH14": 0.429491768}, "05081": {"FFRPTH14": 0.47877433799999997, "FSRPTH14": 0.23938716899999998}, "05083": {"FFRPTH14": 0.592039348, "FSRPTH14": 0.409873395}, "05085": {"FFRPTH14": 0.531045181, "FSRPTH14": 0.43322106899999996}, "05087": {"FFRPTH14": 0.190597205, "FSRPTH14": 0.698856417}, "05089": {"FFRPTH14": 0.30549276, "FSRPTH14": 0.672084072}, "05091": {"FFRPTH14": 0.552638851, "FSRPTH14": 0.5065856129999999}, "05093": {"FFRPTH14": 0.723409065, "FSRPTH14": 0.542556799}, "05095": {"FFRPTH14": 0.6594566079999999, "FSRPTH14": 0.6594566079999999}, "05097": {"FFRPTH14": 0.440431623, "FSRPTH14": 0.660647434}, "05099": {"FFRPTH14": 0.34391837700000005, "FSRPTH14": 0.229278918}, "05101": {"FFRPTH14": 0.12651821900000002, "FSRPTH14": 0.6325910929999999}, "05103": {"FFRPTH14": 0.644433704, "FSRPTH14": 0.36249395799999995}, "05105": {"FFRPTH14": 0.09760859, "FSRPTH14": 0.390434358}, "05107": {"FFRPTH14": 0.351229303, "FSRPTH14": 0.45158053200000003}, "05109": {"FFRPTH14": 0.45355587799999997, "FSRPTH14": 0.725689405}, "05111": {"FFRPTH14": 0.7011465809999999, "FSRPTH14": 0.536170915}, "05113": {"FFRPTH14": 0.39555006200000004, "FSRPTH14": 0.939431397}, "05115": {"FFRPTH14": 0.8227717920000001, "FSRPTH14": 0.537966171}, "05117": {"FFRPTH14": 0.12042389199999999, "FSRPTH14": 0.48169556799999996}, "05119": {"FFRPTH14": 0.8759822970000001, "FSRPTH14": 0.883621678}, "05121": {"FFRPTH14": 0.455295658, "FSRPTH14": 0.5691195720000001}, "05123": {"FFRPTH14": 0.37176103200000005, "FSRPTH14": 0.44611323799999997}, "05125": {"FFRPTH14": 0.553063888, "FSRPTH14": 0.337023306}, "05127": {"FFRPTH14": 0.374076499, "FSRPTH14": 0.46759562299999996}, "05129": {"FFRPTH14": 0.504477235, "FSRPTH14": 0.37835792700000004}, "05131": {"FFRPTH14": 0.7572411179999999, "FSRPTH14": 0.788792831}, "05133": {"FFRPTH14": 0.40169861100000004, "FSRPTH14": 0.631240675}, "05135": {"FFRPTH14": 0.532355377, "FSRPTH14": 1.005560156}, "05137": {"FFRPTH14": 0.8003841840000001, "FSRPTH14": 0.640307348}, "05139": {"FFRPTH14": 0.6711909909999999, "FSRPTH14": 0.6960499170000001}, "05141": {"FFRPTH14": 0.356061955, "FSRPTH14": 0.71212391}, "05143": {"FFRPTH14": 0.711076488, "FSRPTH14": 0.8741258740000001}, "05145": {"FFRPTH14": 0.763436482, "FSRPTH14": 0.5853013029999999}, "05147": {"FFRPTH14": 0.578871201, "FSRPTH14": 0.28943560100000004}, "05149": {"FFRPTH14": 0.41000410000000004, "FSRPTH14": 0.227780056}, "06001": {"FFRPTH14": 0.767262951, "FSRPTH14": 0.96590708}, "06003": {"FFRPTH14": 1.792114695, "FSRPTH14": 0.8960573479999999}, "06005": {"FFRPTH14": 0.38103532700000003, "FSRPTH14": 1.088672364}, "06007": {"FFRPTH14": 0.66446368, "FSRPTH14": 0.62432829}, "06009": {"FFRPTH14": 0.649874507, "FSRPTH14": 0.8515596990000001}, "06011": {"FFRPTH14": 0.420187684, "FSRPTH14": 0.7003128059999999}, "06013": {"FFRPTH14": 0.579481148, "FSRPTH14": 0.676661217}, "06015": {"FFRPTH14": 0.36748493299999996, "FSRPTH14": 0.77171836}, "06017": {"FFRPTH14": 0.589883498, "FSRPTH14": 0.950367858}, "06019": {"FFRPTH14": 0.620099506, "FSRPTH14": 0.528999745}, "06021": {"FFRPTH14": 0.500804865, "FSRPTH14": 0.536576641}, "06023": {"FFRPTH14": 0.682447018, "FSRPTH14": 0.993998917}, "06025": {"FFRPTH14": 0.563959105, "FSRPTH14": 0.435532774}, "06027": {"FFRPTH14": 0.760456274, "FSRPTH14": 1.629549158}, "06029": {"FFRPTH14": 0.628866816, "FSRPTH14": 0.500806665}, "06031": {"FFRPTH14": 0.578961729, "FSRPTH14": 0.299462963}, "06033": {"FFRPTH14": 0.514146828, "FSRPTH14": 0.65436869}, "06035": {"FFRPTH14": 0.409461715, "FSRPTH14": 0.472455825}, "06037": {"FFRPTH14": 0.770804328, "FSRPTH14": 0.7730777959999999}, "06039": {"FFRPTH14": 0.50469757, "FSRPTH14": 0.342935528}, "06041": {"FFRPTH14": 0.70949185, "FSRPTH14": 1.2042186000000001}, "06043": {"FFRPTH14": 0.452437507, "FSRPTH14": 0.7352109490000001}, "06045": {"FFRPTH14": 0.591790051, "FSRPTH14": 1.263244148}, "06047": {"FFRPTH14": 0.484319681, "FSRPTH14": 0.345406284}, "06049": {"FFRPTH14": 0.332483653, "FSRPTH14": 0.8866230740000001}, "06051": {"FFRPTH14": 1.214545974, "FSRPTH14": 2.643423591}, "06053": {"FFRPTH14": 0.584220483, "FSRPTH14": 0.867057383}, "06055": {"FFRPTH14": 0.557645747, "FSRPTH14": 1.00940939}, "06057": {"FFRPTH14": 0.6269402279999999, "FSRPTH14": 0.930298403}, "06059": {"FFRPTH14": 0.886977172, "FSRPTH14": 0.8580470920000001}, "06061": {"FFRPTH14": 0.836709767, "FSRPTH14": 0.823257841}, "06063": {"FFRPTH14": 0.537461034, "FSRPTH14": 2.042351929}, "06065": {"FFRPTH14": 0.612208713, "FSRPTH14": 0.505737632}, "06067": {"FFRPTH14": 0.6808247629999999, "FSRPTH14": 0.6538346829999999}, "06069": {"FFRPTH14": 0.463384077, "FSRPTH14": 0.583520689}, "06071": {"FFRPTH14": 0.678778332, "FSRPTH14": 0.479499616}, "06073": {"FFRPTH14": 0.806513145, "FSRPTH14": 0.75748499}, "06075": {"FFRPTH14": 1.0839103829999999, "FSRPTH14": 2.220608609}, "06077": {"FFRPTH14": 0.617666089, "FSRPTH14": 0.49888414799999997}, "06079": {"FFRPTH14": 0.795462282, "FSRPTH14": 1.171694442}, "06081": {"FFRPTH14": 0.7276744340000001, "FSRPTH14": 1.026917363}, "06083": {"FFRPTH14": 0.7397859609999999, "FSRPTH14": 0.8963664259999999}, "06085": {"FFRPTH14": 0.756886, "FSRPTH14": 0.8698383040000001}, "06087": {"FFRPTH14": 0.654883666, "FSRPTH14": 0.9749672559999999}, "06089": {"FFRPTH14": 0.695201442, "FSRPTH14": 0.667393384}, "06091": {"FFRPTH14": 0.333000333, "FSRPTH14": 0.9990009990000001}, "06093": {"FFRPTH14": 0.641789676, "FSRPTH14": 1.077289814}, "06095": {"FFRPTH14": 0.649454574, "FSRPTH14": 0.5566753489999999}, "06097": {"FFRPTH14": 0.589655641, "FSRPTH14": 1.023402333}, "06099": {"FFRPTH14": 0.633462219, "FSRPTH14": 0.541356436}, "06101": {"FFRPTH14": 0.667730863, "FSRPTH14": 0.45906496799999996}, "06103": {"FFRPTH14": 0.539109201, "FSRPTH14": 0.539109201}, "06105": {"FFRPTH14": 0.759301443, "FSRPTH14": 0.911161731}, "06107": {"FFRPTH14": 0.497601474, "FSRPTH14": 0.449587296}, "06109": {"FFRPTH14": 0.538723041, "FSRPTH14": 0.984562798}, "06111": {"FFRPTH14": 0.713797806, "FSRPTH14": 0.6972528240000001}, "06113": {"FFRPTH14": 0.693675033, "FSRPTH14": 0.7129437829999999}, "06115": {"FFRPTH14": 0.392072033, "FSRPTH14": 0.31095368100000004}, "08001": {"FFRPTH14": 0.657350047, "FSRPTH14": 0.468049875}, "08003": {"FFRPTH14": 0.8654262220000001, "FSRPTH14": 0.9272423809999999}, "08005": {"FFRPTH14": 0.738501117, "FSRPTH14": 0.7530449029999999}, "08007": {"FFRPTH14": 0.571708592, "FSRPTH14": 2.0418164}, "08009": {"FFRPTH14": 0.274348422, "FSRPTH14": 0.274348422}, "08011": {"FFRPTH14": 0.177619893, "FSRPTH14": 0.35523978700000003}, "08013": {"FFRPTH14": 0.8234051309999999, "FSRPTH14": 1.101065001}, "08014": {"FFRPTH14": 1.094338408, "FSRPTH14": 0.756380959}, "08015": {"FFRPTH14": 0.925774656, "FSRPTH14": 2.23275064}, "08017": {"FFRPTH14": 0.0, "FSRPTH14": 1.068947087}, "08019": {"FFRPTH14": 1.197344073, "FSRPTH14": 2.176989224}, "08021": {"FFRPTH14": 0.120992136, "FSRPTH14": 0.36297640700000006}, "08023": {"FFRPTH14": 0.0, "FSRPTH14": 1.121076233}, "08025": {"FFRPTH14": 0.0, "FSRPTH14": 0.18656716399999998}, "08027": {"FFRPTH14": 0.229305205, "FSRPTH14": 2.063746847}, "08029": {"FFRPTH14": 0.535654503, "FSRPTH14": 1.171744225}, "08031": {"FFRPTH14": 0.876688227, "FSRPTH14": 1.2336901340000002}, "08033": {"FFRPTH14": 0.0, "FSRPTH14": 2.527805865}, "08035": {"FFRPTH14": 0.6483641520000001, "FSRPTH14": 0.6006903170000001}, "08037": {"FFRPTH14": 0.869220158, "FSRPTH14": 2.418699571}, "08039": {"FFRPTH14": 0.289315974, "FSRPTH14": 0.537301095}, "08041": {"FFRPTH14": 0.679709247, "FSRPTH14": 0.593803644}, "08043": {"FFRPTH14": 0.32256677100000003, "FSRPTH14": 0.774160251}, "08045": {"FFRPTH14": 0.800542977, "FSRPTH14": 1.44445798}, "08047": {"FFRPTH14": 0.0, "FSRPTH14": 0.34182191100000003}, "08049": {"FFRPTH14": 1.099958752, "FSRPTH14": 3.6436133639999997}, "08051": {"FFRPTH14": 0.890302067, "FSRPTH14": 3.116057234}, "08053": {"FFRPTH14": 0.0, "FSRPTH14": 7.6335877860000005}, "08055": {"FFRPTH14": 0.619003405, "FSRPTH14": 1.083255958}, "08057": {"FFRPTH14": 0.0, "FSRPTH14": 1.4326647559999999}, "08059": {"FFRPTH14": 0.7591722870000001, "FSRPTH14": 0.814677808}, "08061": {"FFRPTH14": 0.0, "FSRPTH14": 1.426533524}, "08063": {"FFRPTH14": 0.991080278, "FSRPTH14": 0.867195243}, "08065": {"FFRPTH14": 0.679624847, "FSRPTH14": 1.359249694}, "08067": {"FFRPTH14": 0.852025413, "FSRPTH14": 1.259515827}, "08069": {"FFRPTH14": 0.7774850209999999, "FSRPTH14": 0.87312802}, "08071": {"FFRPTH14": 0.782806718, "FSRPTH14": 0.853970965}, "08073": {"FFRPTH14": 0.54446461, "FSRPTH14": 1.4519056259999998}, "08075": {"FFRPTH14": 0.5771621379999999, "FSRPTH14": 0.665956313}, "08077": {"FFRPTH14": 0.613807291, "FSRPTH14": 0.661023237}, "08079": {"FFRPTH14": 1.4326647559999999, "FSRPTH14": 7.163323782000001}, "08081": {"FFRPTH14": 0.386757426, "FSRPTH14": 1.160272277}, "08083": {"FFRPTH14": 0.543225206, "FSRPTH14": 1.435666615}, "08085": {"FFRPTH14": 0.5382526360000001, "FSRPTH14": 0.7584468959999999}, "08087": {"FFRPTH14": 0.38830838700000003, "FSRPTH14": 0.8825190620000001}, "08089": {"FFRPTH14": 0.594980528, "FSRPTH14": 0.919515361}, "08091": {"FFRPTH14": 1.29617628, "FSRPTH14": 3.88852884}, "08093": {"FFRPTH14": 0.30590394600000004, "FSRPTH14": 0.917711838}, "08095": {"FFRPTH14": 0.45840018299999996, "FSRPTH14": 1.8336007330000001}, "08097": {"FFRPTH14": 1.0779530240000001, "FSRPTH14": 4.368546465}, "08099": {"FFRPTH14": 0.8309788929999999, "FSRPTH14": 0.498587336}, "08101": {"FFRPTH14": 0.599227799, "FSRPTH14": 0.796911197}, "08103": {"FFRPTH14": 0.745489787, "FSRPTH14": 1.341881616}, "08105": {"FFRPTH14": 0.43077453299999996, "FSRPTH14": 1.033858878}, "08107": {"FFRPTH14": 1.047559187, "FSRPTH14": 2.891263356}, "08109": {"FFRPTH14": 0.161394448, "FSRPTH14": 0.645577792}, "08111": {"FFRPTH14": 5.555555556, "FSRPTH14": 13.88888889}, "08113": {"FFRPTH14": 1.530612245, "FSRPTH14": 3.826530612}, "08115": {"FFRPTH14": 0.42589437799999996, "FSRPTH14": 1.7035775130000002}, "08117": {"FFRPTH14": 1.632430962, "FSRPTH14": 4.013059448}, "08119": {"FFRPTH14": 0.598571978, "FSRPTH14": 0.897857967}, "08121": {"FFRPTH14": 0.41841004200000004, "FSRPTH14": 0.41841004200000004}, "08123": {"FFRPTH14": 0.536608204, "FSRPTH14": 0.551013793}, "08125": {"FFRPTH14": 0.196039992, "FSRPTH14": 1.2742599490000002}, "09001": {"FFRPTH14": 0.697031429, "FSRPTH14": 1.022806361}, "09003": {"FFRPTH14": 0.667049004, "FSRPTH14": 0.873065808}, "09005": {"FFRPTH14": 0.518938554, "FSRPTH14": 1.070310769}, "09007": {"FFRPTH14": 0.6426462470000001, "FSRPTH14": 1.0670352790000002}, "09009": {"FFRPTH14": 0.757015455, "FSRPTH14": 0.882410653}, "09011": {"FFRPTH14": 0.686943685, "FSRPTH14": 1.004837837}, "09013": {"FFRPTH14": 0.442632806, "FSRPTH14": 0.627613681}, "09015": {"FFRPTH14": 0.529923588, "FSRPTH14": 0.7008666809999999}, "10001": {"FFRPTH14": 0.511666579, "FSRPTH14": 0.505852187}, "10003": {"FFRPTH14": 0.696482132, "FSRPTH14": 0.7109544879999999}, "10005": {"FFRPTH14": 0.673467742, "FSRPTH14": 1.380134599}, "11001": {"FFRPTH14": 1.273347873, "FSRPTH14": 1.2232638679999999}, "12001": {"FFRPTH14": 0.7527888290000001, "FSRPTH14": 0.7527888290000001}, "12003": {"FFRPTH14": 0.590558447, "FSRPTH14": 0.479828738}, "12005": {"FFRPTH14": 0.75984021, "FSRPTH14": 1.06712853}, "12007": {"FFRPTH14": 0.599206052, "FSRPTH14": 0.41195416100000004}, "12009": {"FFRPTH14": 0.615926089, "FSRPTH14": 0.8619373840000001}, "12011": {"FFRPTH14": 0.687981982, "FSRPTH14": 0.7901628209999999}, "12013": {"FFRPTH14": 0.48169556799999996, "FSRPTH14": 0.550509221}, "12015": {"FFRPTH14": 0.439236915, "FSRPTH14": 0.7478898820000001}, "12017": {"FFRPTH14": 0.33721489200000004, "FSRPTH14": 0.60985672}, "12019": {"FFRPTH14": 0.5956015579999999, "FSRPTH14": 0.5005055110000001}, "12021": {"FFRPTH14": 0.530424885, "FSRPTH14": 1.161200423}, "12023": {"FFRPTH14": 0.589474925, "FSRPTH14": 0.604211798}, "12027": {"FFRPTH14": 0.314177996, "FSRPTH14": 0.314177996}, "12029": {"FFRPTH14": 0.502923241, "FSRPTH14": 0.251461621}, "12031": {"FFRPTH14": 0.823216717, "FSRPTH14": 0.77531642}, "12033": {"FFRPTH14": 0.605165149, "FSRPTH14": 0.653449602}, "12035": {"FFRPTH14": 0.36129989799999995, "FSRPTH14": 0.712834935}, "12037": {"FFRPTH14": 0.423190859, "FSRPTH14": 1.86203978}, "12039": {"FFRPTH14": 0.410535641, "FSRPTH14": 0.302499946}, "12041": {"FFRPTH14": 0.353003471, "FSRPTH14": 0.23533564699999998}, "12043": {"FFRPTH14": 0.146681335, "FSRPTH14": 0.220022002}, "12045": {"FFRPTH14": 0.439036628, "FSRPTH14": 0.689914701}, "12047": {"FFRPTH14": 0.498291572, "FSRPTH14": 0.21355353100000002}, "12049": {"FFRPTH14": 0.327642069, "FSRPTH14": 0.291237395}, "12051": {"FFRPTH14": 0.57135437, "FSRPTH14": 0.415530451}, "12053": {"FFRPTH14": 0.46629325299999996, "FSRPTH14": 0.60845583}, "12055": {"FFRPTH14": 0.407182703, "FSRPTH14": 0.570055784}, "12057": {"FFRPTH14": 0.6358742470000001, "FSRPTH14": 0.66474309}, "12059": {"FFRPTH14": 0.203562341, "FSRPTH14": 0.508905852}, "12061": {"FFRPTH14": 0.538841491, "FSRPTH14": 0.8082622359999999}, "12063": {"FFRPTH14": 0.553267351, "FSRPTH14": 0.512284584}, "12065": {"FFRPTH14": 0.427046263, "FSRPTH14": 0.355871886}, "12067": {"FFRPTH14": 0.226372383, "FSRPTH14": 0.226372383}, "12069": {"FFRPTH14": 0.446640692, "FSRPTH14": 0.6588742120000001}, "12071": {"FFRPTH14": 0.522432978, "FSRPTH14": 0.8874002409999999}, "12073": {"FFRPTH14": 0.8944039890000001, "FSRPTH14": 0.7641167940000001}, "12075": {"FFRPTH14": 0.429152046, "FSRPTH14": 0.63110595}, "12077": {"FFRPTH14": 0.0, "FSRPTH14": 0.47846890000000003}, "12079": {"FFRPTH14": 0.486013608, "FSRPTH14": 0.324009072}, "12081": {"FFRPTH14": 0.511732898, "FSRPTH14": 0.767599347}, "12083": {"FFRPTH14": 0.477640808, "FSRPTH14": 0.518918409}, "12085": {"FFRPTH14": 0.6714822159999999, "FSRPTH14": 1.153906331}, "12086": {"FFRPTH14": 0.61587593, "FSRPTH14": 0.762709764}, "12087": {"FFRPTH14": 0.907488073, "FSRPTH14": 2.800248911}, "12089": {"FFRPTH14": 0.639528054, "FSRPTH14": 0.8614051340000001}, "12091": {"FFRPTH14": 0.758223416, "FSRPTH14": 1.027927048}, "12093": {"FFRPTH14": 0.434238422, "FSRPTH14": 0.664129352}, "12095": {"FFRPTH14": 0.7565835940000001, "FSRPTH14": 0.837190074}, "12097": {"FFRPTH14": 0.5963682779999999, "FSRPTH14": 0.693076648}, "12099": {"FFRPTH14": 0.651064956, "FSRPTH14": 0.839945339}, "12101": {"FFRPTH14": 0.391485399, "FSRPTH14": 0.552200457}, "12103": {"FFRPTH14": 0.653449853, "FSRPTH14": 0.9252764640000001}, "12105": {"FFRPTH14": 0.456953413, "FSRPTH14": 0.46798332299999995}, "12107": {"FFRPTH14": 0.38811804299999997, "FSRPTH14": 0.38811804299999997}, "12109": {"FFRPTH14": 0.610318513, "FSRPTH14": 0.9682496709999999}, "12111": {"FFRPTH14": 0.474181178, "FSRPTH14": 0.539466993}, "12113": {"FFRPTH14": 0.507887555, "FSRPTH14": 0.43445802899999997}, "12115": {"FFRPTH14": 0.463520438, "FSRPTH14": 1.14620543}, "12117": {"FFRPTH14": 0.693760226, "FSRPTH14": 0.752515163}, "12119": {"FFRPTH14": 0.23611718399999998, "FSRPTH14": 0.568430258}, "12121": {"FFRPTH14": 0.499750125, "FSRPTH14": 0.363454636}, "12123": {"FFRPTH14": 0.44283057299999995, "FSRPTH14": 0.398547516}, "12125": {"FFRPTH14": 0.197498354, "FSRPTH14": 0.065832785}, "12127": {"FFRPTH14": 0.530016886, "FSRPTH14": 0.876793733}, "12129": {"FFRPTH14": 0.31814711100000004, "FSRPTH14": 0.6681089339999999}, "12131": {"FFRPTH14": 0.731350561, "FSRPTH14": 1.787745815}, "12133": {"FFRPTH14": 0.695268087, "FSRPTH14": 0.44987935100000004}, "13001": {"FFRPTH14": 0.7011866240000001, "FSRPTH14": 0.485436893}, "13003": {"FFRPTH14": 0.486440472, "FSRPTH14": 0.121610118}, "13005": {"FFRPTH14": 0.620512366, "FSRPTH14": 0.354578495}, "13007": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "13009": {"FFRPTH14": 0.8712888540000001, "FSRPTH14": 0.6534666410000001}, "13011": {"FFRPTH14": 0.765236403, "FSRPTH14": 0.929215633}, "13013": {"FFRPTH14": 0.546149645, "FSRPTH14": 0.39595849299999997}, "13015": {"FFRPTH14": 0.570103012, "FSRPTH14": 0.638908548}, "13017": {"FFRPTH14": 0.801649107, "FSRPTH14": 0.629867155}, "13019": {"FFRPTH14": 0.481283422, "FSRPTH14": 0.42780748700000004}, "13021": {"FFRPTH14": 1.124070043, "FSRPTH14": 0.7407166759999999}, "13023": {"FFRPTH14": 0.390777648, "FSRPTH14": 0.312622118}, "13025": {"FFRPTH14": 0.32578595899999996, "FSRPTH14": 0.162892979}, "13027": {"FFRPTH14": 0.45401478799999995, "FSRPTH14": 0.32429627699999997}, "13029": {"FFRPTH14": 0.796319236, "FSRPTH14": 0.766825931}, "13031": {"FFRPTH14": 0.776839097, "FSRPTH14": 0.707478464}, "13033": {"FFRPTH14": 0.352283236, "FSRPTH14": 0.39631864}, "13035": {"FFRPTH14": 0.513522766, "FSRPTH14": 0.470729202}, "13037": {"FFRPTH14": 0.154726907, "FSRPTH14": 0.773634535}, "13039": {"FFRPTH14": 0.672727622, "FSRPTH14": 0.845714725}, "13043": {"FFRPTH14": 1.102130786, "FSRPTH14": 0.551065393}, "13045": {"FFRPTH14": 0.7099471479999999, "FSRPTH14": 0.745006267}, "13047": {"FFRPTH14": 0.700995108, "FSRPTH14": 0.441931699}, "13049": {"FFRPTH14": 0.46522447100000003, "FSRPTH14": 0.310149647}, "13051": {"FFRPTH14": 1.0198356259999999, "FSRPTH14": 1.150402817}, "13053": {"FFRPTH14": 0.16896173, "FSRPTH14": 0.084480865}, "13055": {"FFRPTH14": 0.40097838700000005, "FSRPTH14": 0.360880549}, "13057": {"FFRPTH14": 0.640734247, "FSRPTH14": 0.610429249}, "13059": {"FFRPTH14": 0.99224396, "FSRPTH14": 1.0418561579999999}, "13061": {"FFRPTH14": 0.0, "FSRPTH14": 0.644745326}, "13063": {"FFRPTH14": 0.70643114, "FSRPTH14": 0.321444857}, "13065": {"FFRPTH14": 0.7319572540000001, "FSRPTH14": 0.29278290100000004}, "13067": {"FFRPTH14": 0.824918842, "FSRPTH14": 0.752413537}, "13069": {"FFRPTH14": 0.6773959959999999, "FSRPTH14": 0.350377239}, "13071": {"FFRPTH14": 0.563966856, "FSRPTH14": 0.433820659}, "13073": {"FFRPTH14": 0.517029665, "FSRPTH14": 0.5960203079999999}, "13075": {"FFRPTH14": 0.7551992559999999, "FSRPTH14": 0.290461252}, "13077": {"FFRPTH14": 0.48682977899999996, "FSRPTH14": 0.48682977899999996}, "13079": {"FFRPTH14": 0.080729797, "FSRPTH14": 0.161459595}, "13081": {"FFRPTH14": 0.784860905, "FSRPTH14": 0.566843987}, "13083": {"FFRPTH14": 0.48813228399999997, "FSRPTH14": 0.42711574799999996}, "13085": {"FFRPTH14": 0.740514876, "FSRPTH14": 0.60983578}, "13087": {"FFRPTH14": 0.77149155, "FSRPTH14": 0.551065393}, "13089": {"FFRPTH14": 0.8239159970000001, "FSRPTH14": 0.758833557}, "13091": {"FFRPTH14": 0.619755912, "FSRPTH14": 0.238367658}, "13093": {"FFRPTH14": 0.422892585, "FSRPTH14": 0.140964195}, "13095": {"FFRPTH14": 0.995595572, "FSRPTH14": 0.627658078}, "13097": {"FFRPTH14": 0.612497838, "FSRPTH14": 0.526027555}, "13099": {"FFRPTH14": 0.47659899, "FSRPTH14": 1.3344771709999999}, "13101": {"FFRPTH14": 0.0, "FSRPTH14": 0.249812641}, "13103": {"FFRPTH14": 0.433033217, "FSRPTH14": 0.396947116}, "13105": {"FFRPTH14": 0.565901842, "FSRPTH14": 0.25722811}, "13107": {"FFRPTH14": 0.527356625, "FSRPTH14": 0.659195781}, "13109": {"FFRPTH14": 0.45879978, "FSRPTH14": 0.550559736}, "13111": {"FFRPTH14": 0.841998905, "FSRPTH14": 1.052498632}, "13113": {"FFRPTH14": 0.866282463, "FSRPTH14": 0.8298074120000001}, "13115": {"FFRPTH14": 0.780737641, "FSRPTH14": 0.624590113}, "13117": {"FFRPTH14": 0.636312909, "FSRPTH14": 0.636312909}, "13119": {"FFRPTH14": 0.6737333809999999, "FSRPTH14": 0.808480057}, "13121": {"FFRPTH14": 1.1512377059999999, "FSRPTH14": 1.1141010059999998}, "13123": {"FFRPTH14": 0.728433175, "FSRPTH14": 0.936556939}, "13125": {"FFRPTH14": 0.0, "FSRPTH14": 0.327546675}, "13127": {"FFRPTH14": 1.095223608, "FSRPTH14": 1.2290842709999998}, "13129": {"FFRPTH14": 0.624475886, "FSRPTH14": 0.481738541}, "13131": {"FFRPTH14": 0.630939706, "FSRPTH14": 0.197168658}, "13133": {"FFRPTH14": 0.424499697, "FSRPTH14": 0.9702850209999999}, "13135": {"FFRPTH14": 0.766582908, "FSRPTH14": 0.765443855}, "13137": {"FFRPTH14": 0.68568294, "FSRPTH14": 0.639970744}, "13139": {"FFRPTH14": 0.581879944, "FSRPTH14": 0.566153459}, "13141": {"FFRPTH14": 0.822658362, "FSRPTH14": 0.235045246}, "13143": {"FFRPTH14": 0.663384658, "FSRPTH14": 0.628469676}, "13145": {"FFRPTH14": 0.243338606, "FSRPTH14": 0.39542523399999996}, "13147": {"FFRPTH14": 0.472869133, "FSRPTH14": 0.433463372}, "13149": {"FFRPTH14": 0.34473843, "FSRPTH14": 0.172369215}, "13151": {"FFRPTH14": 0.7107154379999999, "FSRPTH14": 0.565766895}, "13153": {"FFRPTH14": 0.8383016679999999, "FSRPTH14": 0.523100241}, "13155": {"FFRPTH14": 0.43936731100000004, "FSRPTH14": 0.329525483}, "13157": {"FFRPTH14": 0.549539357, "FSRPTH14": 0.50105059}, "13159": {"FFRPTH14": 0.22334723, "FSRPTH14": 0.521143538}, "13161": {"FFRPTH14": 0.5383942389999999, "FSRPTH14": 0.26919712}, "13163": {"FFRPTH14": 0.676007866, "FSRPTH14": 0.43018682399999997}, "13165": {"FFRPTH14": 0.6575342470000001, "FSRPTH14": 0.328767123}, "13167": {"FFRPTH14": 0.618492939, "FSRPTH14": 0.20616431300000002}, "13169": {"FFRPTH14": 0.24316531800000002, "FSRPTH14": 0.486330635}, "13171": {"FFRPTH14": 0.439391443, "FSRPTH14": 0.49431537299999995}, "13173": {"FFRPTH14": 0.38561650399999997, "FSRPTH14": 0.48202063}, "13175": {"FFRPTH14": 0.815029989, "FSRPTH14": 0.73143717}, "13177": {"FFRPTH14": 0.445342743, "FSRPTH14": 0.23979993800000002}, "13179": {"FFRPTH14": 0.659529433, "FSRPTH14": 0.414123133}, "13181": {"FFRPTH14": 0.393597481, "FSRPTH14": 0.6559958020000001}, "13183": {"FFRPTH14": 0.175305323, "FSRPTH14": 0.116870216}, "13185": {"FFRPTH14": 0.960157853, "FSRPTH14": 0.757555738}, "13187": {"FFRPTH14": 0.866050808, "FSRPTH14": 0.737746985}, "13189": {"FFRPTH14": 0.701918577, "FSRPTH14": 0.608329434}, "13191": {"FFRPTH14": 0.703531729, "FSRPTH14": 0.9849444209999999}, "13193": {"FFRPTH14": 0.5075406029999999, "FSRPTH14": 0.145011601}, "13195": {"FFRPTH14": 0.353207121, "FSRPTH14": 0.17660356}, "13197": {"FFRPTH14": 0.454700466, "FSRPTH14": 0.227350233}, "13199": {"FFRPTH14": 0.47174261700000003, "FSRPTH14": 0.613265402}, "13201": {"FFRPTH14": 0.167841558, "FSRPTH14": 0.67136623}, "13205": {"FFRPTH14": 0.658732598, "FSRPTH14": 0.39523955899999996}, "13207": {"FFRPTH14": 0.480573731, "FSRPTH14": 0.480573731}, "13209": {"FFRPTH14": 0.44488933399999997, "FSRPTH14": 0.111222333}, "13211": {"FFRPTH14": 0.8353753620000001, "FSRPTH14": 1.058142125}, "13213": {"FFRPTH14": 0.634356762, "FSRPTH14": 0.152245623}, "13215": {"FFRPTH14": 0.970694968, "FSRPTH14": 0.6122845179999999}, "13217": {"FFRPTH14": 0.569086086, "FSRPTH14": 0.356884495}, "13219": {"FFRPTH14": 0.9403584759999999, "FSRPTH14": 0.598409939}, "13221": {"FFRPTH14": 0.272609555, "FSRPTH14": 0.0}, "13223": {"FFRPTH14": 0.422855685, "FSRPTH14": 0.37587172}, "13225": {"FFRPTH14": 0.705742515, "FSRPTH14": 0.445732115}, "13227": {"FFRPTH14": 0.466713338, "FSRPTH14": 0.800080008}, "13229": {"FFRPTH14": 0.68453478, "FSRPTH14": 0.315939129}, "13231": {"FFRPTH14": 0.224921278, "FSRPTH14": 0.281151597}, "13233": {"FFRPTH14": 0.705030025, "FSRPTH14": 0.583473124}, "13235": {"FFRPTH14": 0.9579378209999999, "FSRPTH14": 0.43542628200000005}, "13237": {"FFRPTH14": 0.330313326, "FSRPTH14": 0.70781427}, "13239": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "13241": {"FFRPTH14": 1.046604691, "FSRPTH14": 1.66225451}, "13243": {"FFRPTH14": 0.546971147, "FSRPTH14": 0.546971147}, "13245": {"FFRPTH14": 0.78463311, "FSRPTH14": 0.6455842039999999}, "13247": {"FFRPTH14": 0.82047542, "FSRPTH14": 0.672334025}, "13249": {"FFRPTH14": 0.38737168299999997, "FSRPTH14": 0.193685842}, "13251": {"FFRPTH14": 0.354987575, "FSRPTH14": 0.42598509100000004}, "13253": {"FFRPTH14": 0.46051116700000005, "FSRPTH14": 0.46051116700000005}, "13255": {"FFRPTH14": 0.843908233, "FSRPTH14": 0.562605489}, "13257": {"FFRPTH14": 0.588697017, "FSRPTH14": 0.549450549}, "13259": {"FFRPTH14": 0.0, "FSRPTH14": 0.17409470800000001}, "13261": {"FFRPTH14": 0.672387295, "FSRPTH14": 0.5122950820000001}, "13263": {"FFRPTH14": 0.156494523, "FSRPTH14": 0.156494523}, "13265": {"FFRPTH14": 0.0, "FSRPTH14": 0.590667454}, "13267": {"FFRPTH14": 0.23786869600000002, "FSRPTH14": 0.15857913099999998}, "13269": {"FFRPTH14": 0.7107320540000001, "FSRPTH14": 0.11845534199999999}, "13271": {"FFRPTH14": 0.423780119, "FSRPTH14": 0.302700085}, "13273": {"FFRPTH14": 0.657030223, "FSRPTH14": 0.328515112}, "13275": {"FFRPTH14": 0.822972041, "FSRPTH14": 0.711759603}, "13277": {"FFRPTH14": 0.958136792, "FSRPTH14": 0.737028302}, "13279": {"FFRPTH14": 0.95300931, "FSRPTH14": 0.6964298809999999}, "13281": {"FFRPTH14": 0.630744278, "FSRPTH14": 0.901063255}, "13283": {"FFRPTH14": 0.44260843899999996, "FSRPTH14": 0.44260843899999996}, "13285": {"FFRPTH14": 0.762930228, "FSRPTH14": 0.719745498}, "13287": {"FFRPTH14": 0.981233902, "FSRPTH14": 0.613271189}, "13289": {"FFRPTH14": 0.12019230800000001, "FSRPTH14": 0.12019230800000001}, "13291": {"FFRPTH14": 0.818777293, "FSRPTH14": 0.86426492}, "13293": {"FFRPTH14": 0.685557587, "FSRPTH14": 0.49512492399999997}, "13295": {"FFRPTH14": 0.33715441700000004, "FSRPTH14": 0.307836641}, "13297": {"FFRPTH14": 0.570678537, "FSRPTH14": 0.388061405}, "13299": {"FFRPTH14": 0.816556385, "FSRPTH14": 0.563142334}, "13301": {"FFRPTH14": 0.18115942, "FSRPTH14": 0.0}, "13303": {"FFRPTH14": 0.581536225, "FSRPTH14": 0.533074873}, "13305": {"FFRPTH14": 0.701192026, "FSRPTH14": 0.701192026}, "13307": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "13309": {"FFRPTH14": 0.12507817400000001, "FSRPTH14": 0.25015634800000003}, "13311": {"FFRPTH14": 0.786557025, "FSRPTH14": 1.179835538}, "13313": {"FFRPTH14": 0.7919491609999999, "FSRPTH14": 0.560159162}, "13315": {"FFRPTH14": 0.226065333, "FSRPTH14": 0.226065333}, "13317": {"FFRPTH14": 0.40241448700000004, "FSRPTH14": 0.704225352}, "13319": {"FFRPTH14": 0.10722710699999999, "FSRPTH14": 0.536135535}, "13321": {"FFRPTH14": 0.334288443, "FSRPTH14": 0.238777459}, "15001": {"FFRPTH14": 0.746691385, "FSRPTH14": 0.7672897679999999}, "15003": {"FFRPTH14": 0.9245927559999999, "FSRPTH14": 0.8056157159999999}, "15005": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "15007": {"FFRPTH14": 0.908123448, "FSRPTH14": 1.319616885}, "15009": {"FFRPTH14": 0.754513278, "FSRPTH14": 1.165508315}, "16001": {"FFRPTH14": 0.7202582609999999, "FSRPTH14": 0.7789112140000001}, "16003": {"FFRPTH14": 0.259000259, "FSRPTH14": 1.813001813}, "16005": {"FFRPTH14": 0.755876036, "FSRPTH14": 0.659891778}, "16007": {"FFRPTH14": 0.503609199, "FSRPTH14": 1.007218399}, "16009": {"FFRPTH14": 0.767712218, "FSRPTH14": 0.54836587}, "16011": {"FFRPTH14": 0.30926240899999996, "FSRPTH14": 0.41971327}, "16013": {"FFRPTH14": 1.070663812, "FSRPTH14": 2.6533842290000003}, "16015": {"FFRPTH14": 0.146541618, "FSRPTH14": 1.905041032}, "16017": {"FFRPTH14": 0.577131177, "FSRPTH14": 0.9859324279999999}, "16019": {"FFRPTH14": 0.672049198, "FSRPTH14": 0.727286118}, "16021": {"FFRPTH14": 0.54649786, "FSRPTH14": 1.0019127429999999}, "16023": {"FFRPTH14": 0.7627765059999999, "FSRPTH14": 0.7627765059999999}, "16025": {"FFRPTH14": 1.924927815, "FSRPTH14": 1.924927815}, "16027": {"FFRPTH14": 0.536567836, "FSRPTH14": 0.393811256}, "16029": {"FFRPTH14": 0.292525962, "FSRPTH14": 0.585051923}, "16031": {"FFRPTH14": 0.807136788, "FSRPTH14": 0.807136788}, "16033": {"FFRPTH14": 0.0, "FSRPTH14": 1.153402537}, "16035": {"FFRPTH14": 0.350385424, "FSRPTH14": 1.051156272}, "16037": {"FFRPTH14": 0.966183575, "FSRPTH14": 2.173913043}, "16039": {"FFRPTH14": 0.421552847, "FSRPTH14": 0.804782709}, "16041": {"FFRPTH14": 0.537593119, "FSRPTH14": 0.46079410200000004}, "16043": {"FFRPTH14": 0.388590969, "FSRPTH14": 0.6217455510000001}, "16045": {"FFRPTH14": 0.592908811, "FSRPTH14": 0.592908811}, "16047": {"FFRPTH14": 0.464684015, "FSRPTH14": 0.663834307}, "16049": {"FFRPTH14": 0.30835646, "FSRPTH14": 1.171754548}, "16051": {"FFRPTH14": 0.407090781, "FSRPTH14": 0.407090781}, "16053": {"FFRPTH14": 0.438250504, "FSRPTH14": 0.657375756}, "16055": {"FFRPTH14": 0.6719791479999999, "FSRPTH14": 0.7873695070000001}, "16057": {"FFRPTH14": 0.75499206, "FSRPTH14": 0.807060477}, "16059": {"FFRPTH14": 0.38829924899999996, "FSRPTH14": 1.8120631630000001}, "16061": {"FFRPTH14": 1.042209484, "FSRPTH14": 0.521104742}, "16063": {"FFRPTH14": 0.0, "FSRPTH14": 0.752445448}, "16065": {"FFRPTH14": 0.7361059990000001, "FSRPTH14": 0.368053}, "16067": {"FFRPTH14": 0.24602666899999998, "FSRPTH14": 0.590464006}, "16069": {"FFRPTH14": 0.6998775209999999, "FSRPTH14": 0.724873147}, "16071": {"FFRPTH14": 1.195028681, "FSRPTH14": 0.956022945}, "16073": {"FFRPTH14": 0.616577116, "FSRPTH14": 0.880824452}, "16075": {"FFRPTH14": 0.525486075, "FSRPTH14": 0.306533544}, "16077": {"FFRPTH14": 0.262570566, "FSRPTH14": 0.393855849}, "16079": {"FFRPTH14": 0.645682002, "FSRPTH14": 1.291364003}, "16081": {"FFRPTH14": 0.48351223299999996, "FSRPTH14": 2.030751378}, "16083": {"FFRPTH14": 0.7786044440000001, "FSRPTH14": 0.70445164}, "16085": {"FFRPTH14": 0.814166497, "FSRPTH14": 2.646041115}, "16087": {"FFRPTH14": 0.59874264, "FSRPTH14": 0.898113961}, "17001": {"FFRPTH14": 0.47769749799999994, "FSRPTH14": 0.850898668}, "17003": {"FFRPTH14": 0.0, "FSRPTH14": 0.53390283}, "17005": {"FFRPTH14": 0.405350628, "FSRPTH14": 0.7527940240000001}, "17007": {"FFRPTH14": 0.48265236, "FSRPTH14": 0.33414394199999997}, "17009": {"FFRPTH14": 0.43911007, "FSRPTH14": 0.292740047}, "17011": {"FFRPTH14": 0.354609929, "FSRPTH14": 0.8274231679999999}, "17013": {"FFRPTH14": 0.201775626, "FSRPTH14": 2.4213075059999998}, "17015": {"FFRPTH14": 0.679578661, "FSRPTH14": 0.88345226}, "17017": {"FFRPTH14": 0.608087565, "FSRPTH14": 0.608087565}, "17019": {"FFRPTH14": 0.830384342, "FSRPTH14": 0.8496956059999999}, "17021": {"FFRPTH14": 0.501593296, "FSRPTH14": 0.796648177}, "17023": {"FFRPTH14": 0.927070457, "FSRPTH14": 0.927070457}, "17025": {"FFRPTH14": 0.591715976, "FSRPTH14": 0.73964497}, "17027": {"FFRPTH14": 0.47547349200000005, "FSRPTH14": 0.9773621790000001}, "17029": {"FFRPTH14": 0.731432858, "FSRPTH14": 0.825206302}, "17031": {"FFRPTH14": 0.835039882, "FSRPTH14": 0.726776323}, "17033": {"FFRPTH14": 0.618779972, "FSRPTH14": 0.567214974}, "17035": {"FFRPTH14": 0.276931598, "FSRPTH14": 0.461552663}, "17037": {"FFRPTH14": 0.711156625, "FSRPTH14": 0.663746183}, "17039": {"FFRPTH14": 0.491279784, "FSRPTH14": 0.859739622}, "17041": {"FFRPTH14": 0.8547438279999999, "FSRPTH14": 1.0055809740000001}, "17043": {"FFRPTH14": 0.903819845, "FSRPTH14": 0.7483585429999999}, "17045": {"FFRPTH14": 0.448405358, "FSRPTH14": 0.784709377}, "17047": {"FFRPTH14": 0.755629439, "FSRPTH14": 0.45337766399999996}, "17049": {"FFRPTH14": 0.9906759909999999, "FSRPTH14": 0.757575758}, "17051": {"FFRPTH14": 0.32007316, "FSRPTH14": 1.051668953}, "17053": {"FFRPTH14": 0.43834015200000004, "FSRPTH14": 1.46113384}, "17055": {"FFRPTH14": 0.558219786, "FSRPTH14": 0.811956053}, "17057": {"FFRPTH14": 0.5554475520000001, "FSRPTH14": 0.9720332159999999}, "17059": {"FFRPTH14": 0.0, "FSRPTH14": 0.945000945}, "17061": {"FFRPTH14": 0.297751973, "FSRPTH14": 0.669941938}, "17063": {"FFRPTH14": 0.753594447, "FSRPTH14": 0.5156172529999999}, "17065": {"FFRPTH14": 0.36162005799999997, "FSRPTH14": 0.482160077}, "17067": {"FFRPTH14": 0.538677009, "FSRPTH14": 0.269338505}, "17069": {"FFRPTH14": 0.0, "FSRPTH14": 1.453136353}, "17071": {"FFRPTH14": 0.28918449999999996, "FSRPTH14": 0.43377675}, "17073": {"FFRPTH14": 0.463382694, "FSRPTH14": 0.765588798}, "17075": {"FFRPTH14": 0.727171993, "FSRPTH14": 0.5886630420000001}, "17077": {"FFRPTH14": 0.603247482, "FSRPTH14": 0.8043299759999999}, "17079": {"FFRPTH14": 0.519588486, "FSRPTH14": 0.415670789}, "17081": {"FFRPTH14": 0.7785332429999999, "FSRPTH14": 0.6487777029999999}, "17083": {"FFRPTH14": 0.575960303, "FSRPTH14": 0.930397413}, "17085": {"FFRPTH14": 0.40442167700000003, "FSRPTH14": 1.797429676}, "17087": {"FFRPTH14": 0.396793905, "FSRPTH14": 0.476152686}, "17089": {"FFRPTH14": 0.6163404170000001, "FSRPTH14": 0.597376097}, "17091": {"FFRPTH14": 0.691358025, "FSRPTH14": 0.6015712679999999}, "17093": {"FFRPTH14": 0.585084466, "FSRPTH14": 0.46147507200000004}, "17095": {"FFRPTH14": 0.7490061259999999, "FSRPTH14": 0.787416697}, "17097": {"FFRPTH14": 0.7728457459999999, "FSRPTH14": 0.689179876}, "17099": {"FFRPTH14": 0.620274899, "FSRPTH14": 1.1326759020000001}, "17101": {"FFRPTH14": 0.36321811200000004, "FSRPTH14": 0.726436225}, "17103": {"FFRPTH14": 0.37426227100000004, "FSRPTH14": 0.9212609759999999}, "17105": {"FFRPTH14": 0.527662718, "FSRPTH14": 0.844260349}, "17107": {"FFRPTH14": 0.470651516, "FSRPTH14": 0.7059772740000001}, "17109": {"FFRPTH14": 0.752823087, "FSRPTH14": 0.90966123}, "17111": {"FFRPTH14": 0.696426421, "FSRPTH14": 0.69968075}, "17113": {"FFRPTH14": 0.7296292679999999, "FSRPTH14": 0.695158594}, "17115": {"FFRPTH14": 0.581449008, "FSRPTH14": 0.756806645}, "17117": {"FFRPTH14": 0.430542699, "FSRPTH14": 0.753449723}, "17119": {"FFRPTH14": 0.701530612, "FSRPTH14": 0.772809124}, "17121": {"FFRPTH14": 0.622229136, "FSRPTH14": 0.700007778}, "17123": {"FFRPTH14": 0.416181122, "FSRPTH14": 0.915598468}, "17125": {"FFRPTH14": 0.5036695929999999, "FSRPTH14": 0.7914807890000001}, "17127": {"FFRPTH14": 0.33545790000000003, "FSRPTH14": 0.46964106}, "17129": {"FFRPTH14": 0.15910899, "FSRPTH14": 0.6364359589999999}, "17131": {"FFRPTH14": 0.313577924, "FSRPTH14": 0.7525870179999999}, "17133": {"FFRPTH14": 0.6523930960000001, "FSRPTH14": 0.859972718}, "17135": {"FFRPTH14": 0.681222112, "FSRPTH14": 0.8855887459999999}, "17137": {"FFRPTH14": 0.629849123, "FSRPTH14": 0.744367145}, "17139": {"FFRPTH14": 0.13479814, "FSRPTH14": 0.606591629}, "17141": {"FFRPTH14": 0.5567821829999999, "FSRPTH14": 0.729576654}, "17143": {"FFRPTH14": 0.720695712, "FSRPTH14": 0.827465447}, "17145": {"FFRPTH14": 0.46142488, "FSRPTH14": 0.8305647840000001}, "17147": {"FFRPTH14": 0.365163411, "FSRPTH14": 0.669466253}, "17149": {"FFRPTH14": 0.312070903, "FSRPTH14": 0.748970166}, "17151": {"FFRPTH14": 0.0, "FSRPTH14": 0.467726848}, "17153": {"FFRPTH14": 0.343938091, "FSRPTH14": 0.343938091}, "17155": {"FFRPTH14": 0.0, "FSRPTH14": 1.71998624}, "17157": {"FFRPTH14": 0.578052268, "FSRPTH14": 0.7301712859999999}, "17159": {"FFRPTH14": 0.99620198, "FSRPTH14": 0.43583836600000003}, "17161": {"FFRPTH14": 0.7462533290000001, "FSRPTH14": 0.848948741}, "17163": {"FFRPTH14": 0.718777401, "FSRPTH14": 0.6209333570000001}, "17165": {"FFRPTH14": 0.6907199740000001, "FSRPTH14": 0.6500893870000001}, "17167": {"FFRPTH14": 0.773881013, "FSRPTH14": 0.8995110479999999}, "17169": {"FFRPTH14": 0.409276944, "FSRPTH14": 0.545702592}, "17171": {"FFRPTH14": 0.38431975399999996, "FSRPTH14": 1.152959262}, "17173": {"FFRPTH14": 0.317489115, "FSRPTH14": 0.8164005809999999}, "17175": {"FFRPTH14": 0.0, "FSRPTH14": 0.344056425}, "17177": {"FFRPTH14": 0.5814579520000001, "FSRPTH14": 0.6675998710000001}, "17179": {"FFRPTH14": 0.8032010140000001, "FSRPTH14": 0.7589881140000001}, "17181": {"FFRPTH14": 0.7451137729999999, "FSRPTH14": 0.687797329}, "17183": {"FFRPTH14": 0.52679109, "FSRPTH14": 0.62713225}, "17185": {"FFRPTH14": 0.8658758329999999, "FSRPTH14": 0.5195255}, "17187": {"FFRPTH14": 0.44757748700000005, "FSRPTH14": 0.615419044}, "17189": {"FFRPTH14": 0.6974959890000001, "FSRPTH14": 0.5579967920000001}, "17191": {"FFRPTH14": 0.30224264, "FSRPTH14": 0.846279393}, "17193": {"FFRPTH14": 0.556560456, "FSRPTH14": 0.765270628}, "17195": {"FFRPTH14": 0.527463253, "FSRPTH14": 0.861523314}, "17197": {"FFRPTH14": 0.695924683, "FSRPTH14": 0.47708044299999997}, "17199": {"FFRPTH14": 0.626790831, "FSRPTH14": 0.701408787}, "17201": {"FFRPTH14": 0.700071393, "FSRPTH14": 0.720865593}, "17203": {"FFRPTH14": 0.484854671, "FSRPTH14": 0.637966673}, "18001": {"FFRPTH14": 0.459889052, "FSRPTH14": 0.60360438}, "18003": {"FFRPTH14": 0.655884652, "FSRPTH14": 0.702343148}, "18005": {"FFRPTH14": 0.8850991690000001, "FSRPTH14": 0.698106386}, "18007": {"FFRPTH14": 0.574712644, "FSRPTH14": 0.229885057}, "18009": {"FFRPTH14": 0.403193291, "FSRPTH14": 0.483831949}, "18011": {"FFRPTH14": 0.61374465, "FSRPTH14": 0.74295405}, "18013": {"FFRPTH14": 0.267343938, "FSRPTH14": 0.802031814}, "18015": {"FFRPTH14": 0.652512172, "FSRPTH14": 0.652512172}, "18017": {"FFRPTH14": 0.8064935740000001, "FSRPTH14": 0.49430251299999994}, "18019": {"FFRPTH14": 0.74390436, "FSRPTH14": 0.638882568}, "18021": {"FFRPTH14": 0.527068745, "FSRPTH14": 0.60236428}, "18023": {"FFRPTH14": 0.640712717, "FSRPTH14": 0.48816207}, "18025": {"FFRPTH14": 0.093852651, "FSRPTH14": 1.032379165}, "18027": {"FFRPTH14": 0.5805249170000001, "FSRPTH14": 0.48886308799999995}, "18029": {"FFRPTH14": 0.504989294, "FSRPTH14": 0.504989294}, "18031": {"FFRPTH14": 0.829437491, "FSRPTH14": 0.6786306740000001}, "18033": {"FFRPTH14": 0.637047873, "FSRPTH14": 0.7550197009999999}, "18035": {"FFRPTH14": 0.657703675, "FSRPTH14": 0.597912431}, "18037": {"FFRPTH14": 0.921006022, "FSRPTH14": 0.9918526390000001}, "18039": {"FFRPTH14": 0.68326641, "FSRPTH14": 0.5594862629999999}, "18041": {"FFRPTH14": 0.9800579509999999, "FSRPTH14": 0.468723368}, "18043": {"FFRPTH14": 0.8795074759999999, "FSRPTH14": 0.5382060670000001}, "18045": {"FFRPTH14": 0.420218514, "FSRPTH14": 0.780405811}, "18047": {"FFRPTH14": 0.654050754, "FSRPTH14": 0.610447371}, "18049": {"FFRPTH14": 0.634146341, "FSRPTH14": 0.975609756}, "18051": {"FFRPTH14": 0.59243461, "FSRPTH14": 0.888651915}, "18053": {"FFRPTH14": 0.7146086420000001, "FSRPTH14": 0.525018594}, "18055": {"FFRPTH14": 0.672248365, "FSRPTH14": 0.702805109}, "18057": {"FFRPTH14": 0.723672688, "FSRPTH14": 0.6972371559999999}, "18059": {"FFRPTH14": 0.6251910310000001, "FSRPTH14": 0.402900886}, "18061": {"FFRPTH14": 0.483472862, "FSRPTH14": 0.381689102}, "18063": {"FFRPTH14": 0.768954734, "FSRPTH14": 0.7240990409999999}, "18065": {"FFRPTH14": 0.5102561489999999, "FSRPTH14": 0.367384427}, "18067": {"FFRPTH14": 0.927912077, "FSRPTH14": 0.626641922}, "18069": {"FFRPTH14": 0.844548575, "FSRPTH14": 0.817305073}, "18071": {"FFRPTH14": 0.7779430270000001, "FSRPTH14": 0.6177782860000001}, "18073": {"FFRPTH14": 0.6273338310000001, "FSRPTH14": 0.71695295}, "18075": {"FFRPTH14": 0.424949242, "FSRPTH14": 0.613815572}, "18077": {"FFRPTH14": 0.584723334, "FSRPTH14": 0.8616975440000001}, "18079": {"FFRPTH14": 0.39285714299999996, "FSRPTH14": 0.35714285700000004}, "18081": {"FFRPTH14": 0.847239355, "FSRPTH14": 0.7116810579999999}, "18083": {"FFRPTH14": 0.6589698979999999, "FSRPTH14": 0.896199062}, "18085": {"FFRPTH14": 0.687337712, "FSRPTH14": 0.814622473}, "18087": {"FFRPTH14": 0.208138204, "FSRPTH14": 0.676449162}, "18089": {"FFRPTH14": 0.8261462009999999, "FSRPTH14": 0.607880415}, "18091": {"FFRPTH14": 0.6281181579999999, "FSRPTH14": 0.798607372}, "18093": {"FFRPTH14": 0.481358306, "FSRPTH14": 0.393838614}, "18095": {"FFRPTH14": 0.59199348, "FSRPTH14": 0.661187524}, "18097": {"FFRPTH14": 0.890560593, "FSRPTH14": 0.7374954909999999}, "18099": {"FFRPTH14": 0.912815505, "FSRPTH14": 0.615619759}, "18101": {"FFRPTH14": 0.882093502, "FSRPTH14": 0.882093502}, "18103": {"FFRPTH14": 0.611892974, "FSRPTH14": 0.528453023}, "18105": {"FFRPTH14": 0.774387989, "FSRPTH14": 0.8511291409999999}, "18107": {"FFRPTH14": 0.7078068470000001, "FSRPTH14": 0.5243013679999999}, "18109": {"FFRPTH14": 0.5452484470000001, "FSRPTH14": 0.444807943}, "18111": {"FFRPTH14": 0.7064142409999999, "FSRPTH14": 0.777055665}, "18113": {"FFRPTH14": 0.546012012, "FSRPTH14": 0.5040110879999999}, "18115": {"FFRPTH14": 0.331400166, "FSRPTH14": 0.331400166}, "18117": {"FFRPTH14": 0.7133394479999999, "FSRPTH14": 0.7133394479999999}, "18119": {"FFRPTH14": 0.333826124, "FSRPTH14": 0.333826124}, "18121": {"FFRPTH14": 0.290141009, "FSRPTH14": 0.464225614}, "18123": {"FFRPTH14": 0.719646345, "FSRPTH14": 0.822452966}, "18125": {"FFRPTH14": 0.396070976, "FSRPTH14": 0.554499366}, "18127": {"FFRPTH14": 0.664368311, "FSRPTH14": 0.7002801120000001}, "18129": {"FFRPTH14": 0.391542678, "FSRPTH14": 0.626468285}, "18131": {"FFRPTH14": 0.694069561, "FSRPTH14": 0.616950721}, "18133": {"FFRPTH14": 0.611409432, "FSRPTH14": 0.39874528200000003}, "18135": {"FFRPTH14": 0.315159155, "FSRPTH14": 0.827292783}, "18137": {"FFRPTH14": 0.526371197, "FSRPTH14": 0.701828263}, "18139": {"FFRPTH14": 0.591996211, "FSRPTH14": 0.651195832}, "18141": {"FFRPTH14": 0.78843725, "FSRPTH14": 0.691283845}, "18143": {"FFRPTH14": 0.8012820509999999, "FSRPTH14": 0.421727395}, "18145": {"FFRPTH14": 0.515937998, "FSRPTH14": 0.6729626059999999}, "18147": {"FFRPTH14": 0.48074611799999994, "FSRPTH14": 0.19229844699999998}, "18149": {"FFRPTH14": 0.34671058299999996, "FSRPTH14": 0.520065875}, "18151": {"FFRPTH14": 0.612102134, "FSRPTH14": 1.195056547}, "18153": {"FFRPTH14": 0.522565321, "FSRPTH14": 0.712589074}, "18155": {"FFRPTH14": 0.478377344, "FSRPTH14": 0.574052813}, "18157": {"FFRPTH14": 0.7483312759999999, "FSRPTH14": 0.710095371}, "18159": {"FFRPTH14": 0.64871878, "FSRPTH14": 0.38923126799999996}, "18161": {"FFRPTH14": 0.552028705, "FSRPTH14": 0.276014353}, "18163": {"FFRPTH14": 0.884586222, "FSRPTH14": 0.758216762}, "18165": {"FFRPTH14": 0.446058752, "FSRPTH14": 0.637226789}, "18167": {"FFRPTH14": 0.859718049, "FSRPTH14": 0.850473769}, "18169": {"FFRPTH14": 0.806151556, "FSRPTH14": 0.651122411}, "18171": {"FFRPTH14": 0.0, "FSRPTH14": 0.35919540200000005}, "18173": {"FFRPTH14": 0.474251419, "FSRPTH14": 0.45789792100000004}, "18175": {"FFRPTH14": 0.35870579, "FSRPTH14": 0.502188105}, "18177": {"FFRPTH14": 0.6354272879999999, "FSRPTH14": 0.8275332120000001}, "18179": {"FFRPTH14": 0.46658531299999995, "FSRPTH14": 0.610150025}, "18181": {"FFRPTH14": 0.7361059990000001, "FSRPTH14": 0.858790332}, "18183": {"FFRPTH14": 0.598748615, "FSRPTH14": 0.6885609079999999}, "19001": {"FFRPTH14": 0.402468473, "FSRPTH14": 0.6707807889999999}, "19003": {"FFRPTH14": 0.516129032, "FSRPTH14": 0.774193548}, "19005": {"FFRPTH14": 0.21370565600000002, "FSRPTH14": 1.424704374}, "19007": {"FFRPTH14": 0.6318616220000001, "FSRPTH14": 0.710844325}, "19009": {"FFRPTH14": 0.17259233699999998, "FSRPTH14": 0.5177770110000001}, "19011": {"FFRPTH14": 0.23364486, "FSRPTH14": 0.46728972}, "19013": {"FFRPTH14": 0.6019699470000001, "FSRPTH14": 0.7524624329999999}, "19015": {"FFRPTH14": 0.302651988, "FSRPTH14": 0.605303976}, "19017": {"FFRPTH14": 0.525868695, "FSRPTH14": 1.0112859509999998}, "19019": {"FFRPTH14": 0.33273124800000003, "FSRPTH14": 0.475330355}, "19021": {"FFRPTH14": 0.437360288, "FSRPTH14": 0.680338225}, "19023": {"FFRPTH14": 0.066640011, "FSRPTH14": 0.6664001070000001}, "19025": {"FFRPTH14": 0.4054328, "FSRPTH14": 0.709507399}, "19027": {"FFRPTH14": 0.7295010209999999, "FSRPTH14": 1.02130143}, "19029": {"FFRPTH14": 0.669244497, "FSRPTH14": 1.115407496}, "19031": {"FFRPTH14": 0.488838195, "FSRPTH14": 0.7060996140000001}, "19033": {"FFRPTH14": 0.878531465, "FSRPTH14": 1.063485458}, "19035": {"FFRPTH14": 0.760392024, "FSRPTH14": 0.591416019}, "19037": {"FFRPTH14": 0.407697326, "FSRPTH14": 0.9784735809999999}, "19039": {"FFRPTH14": 0.43398068799999995, "FSRPTH14": 0.6509710320000001}, "19041": {"FFRPTH14": 1.211020285, "FSRPTH14": 1.029367242}, "19043": {"FFRPTH14": 0.734795388, "FSRPTH14": 1.5261134980000002}, "19045": {"FFRPTH14": 0.520280535, "FSRPTH14": 0.7283927490000001}, "19047": {"FFRPTH14": 0.522405387, "FSRPTH14": 0.812630601}, "19049": {"FFRPTH14": 0.529715762, "FSRPTH14": 0.7364341090000001}, "19051": {"FFRPTH14": 0.45552898299999994, "FSRPTH14": 0.45552898299999994}, "19053": {"FFRPTH14": 0.605107104, "FSRPTH14": 0.24204284199999998}, "19055": {"FFRPTH14": 0.287389355, "FSRPTH14": 0.977123807}, "19057": {"FFRPTH14": 0.7949323070000001, "FSRPTH14": 0.770090672}, "19059": {"FFRPTH14": 1.062887511, "FSRPTH14": 2.125775022}, "19061": {"FFRPTH14": 0.747120473, "FSRPTH14": 0.7886271659999999}, "19063": {"FFRPTH14": 0.600600601, "FSRPTH14": 1.001001001}, "19065": {"FFRPTH14": 0.344098707, "FSRPTH14": 0.9831391629999999}, "19067": {"FFRPTH14": 0.373203956, "FSRPTH14": 0.93300989}, "19069": {"FFRPTH14": 0.47911077, "FSRPTH14": 0.766577233}, "19071": {"FFRPTH14": 0.42722871, "FSRPTH14": 0.996866989}, "19073": {"FFRPTH14": 0.869565217, "FSRPTH14": 0.760869565}, "19075": {"FFRPTH14": 0.24242424199999998, "FSRPTH14": 1.212121212}, "19077": {"FFRPTH14": 0.466330908, "FSRPTH14": 0.652863272}, "19079": {"FFRPTH14": 0.264602765, "FSRPTH14": 0.661506913}, "19081": {"FFRPTH14": 0.27205949, "FSRPTH14": 0.544118981}, "19083": {"FFRPTH14": 0.34660042700000004, "FSRPTH14": 0.866501069}, "19085": {"FFRPTH14": 0.48869031, "FSRPTH14": 0.698129014}, "19087": {"FFRPTH14": 0.44516990700000003, "FSRPTH14": 0.7914131670000001}, "19089": {"FFRPTH14": 0.317493915, "FSRPTH14": 0.846650439}, "19091": {"FFRPTH14": 0.41493775899999996, "FSRPTH14": 0.9336099590000001}, "19093": {"FFRPTH14": 0.284010224, "FSRPTH14": 0.7100255609999999}, "19095": {"FFRPTH14": 0.427480916, "FSRPTH14": 0.854961832}, "19097": {"FFRPTH14": 0.256647161, "FSRPTH14": 1.3858946719999998}, "19099": {"FFRPTH14": 0.51529616, "FSRPTH14": 0.406812758}, "19101": {"FFRPTH14": 0.634920635, "FSRPTH14": 1.0389610390000001}, "19103": {"FFRPTH14": 0.744973188, "FSRPTH14": 0.9909549009999999}, "19105": {"FFRPTH14": 0.24445096300000002, "FSRPTH14": 1.075584238}, "19107": {"FFRPTH14": 0.390968625, "FSRPTH14": 0.586452937}, "19109": {"FFRPTH14": 0.656943897, "FSRPTH14": 1.051110235}, "19111": {"FFRPTH14": 0.5384571779999999, "FSRPTH14": 0.9352150990000001}, "19113": {"FFRPTH14": 0.7347842259999999, "FSRPTH14": 0.84500186}, "19115": {"FFRPTH14": 0.26879311899999997, "FSRPTH14": 0.627183944}, "19117": {"FFRPTH14": 0.344787955, "FSRPTH14": 0.8045052290000001}, "19119": {"FFRPTH14": 0.427972267, "FSRPTH14": 0.599161174}, "19121": {"FFRPTH14": 0.19219681, "FSRPTH14": 0.640656032}, "19123": {"FFRPTH14": 0.402324542, "FSRPTH14": 0.581135449}, "19125": {"FFRPTH14": 0.569459014, "FSRPTH14": 0.719316649}, "19127": {"FFRPTH14": 0.538344834, "FSRPTH14": 0.513874615}, "19129": {"FFRPTH14": 0.134852673, "FSRPTH14": 0.40455802}, "19131": {"FFRPTH14": 0.37109193799999995, "FSRPTH14": 0.927729845}, "19133": {"FFRPTH14": 0.555802579, "FSRPTH14": 0.77812361}, "19135": {"FFRPTH14": 0.374953131, "FSRPTH14": 1.24984377}, "19137": {"FFRPTH14": 0.575760484, "FSRPTH14": 1.055560887}, "19139": {"FFRPTH14": 0.7924853740000001, "FSRPTH14": 0.675943407}, "19141": {"FFRPTH14": 0.711439954, "FSRPTH14": 0.9248719409999999}, "19143": {"FFRPTH14": 0.321646832, "FSRPTH14": 0.643293664}, "19145": {"FFRPTH14": 0.5162622610000001, "FSRPTH14": 0.903458957}, "19147": {"FFRPTH14": 0.7693153090000001, "FSRPTH14": 0.989119683}, "19149": {"FFRPTH14": 0.482431455, "FSRPTH14": 0.7638498029999999}, "19151": {"FFRPTH14": 0.420285794, "FSRPTH14": 0.560381059}, "19153": {"FFRPTH14": 0.726304848, "FSRPTH14": 0.7958909409999999}, "19155": {"FFRPTH14": 0.751653638, "FSRPTH14": 0.590585001}, "19157": {"FFRPTH14": 0.482108421, "FSRPTH14": 1.232054853}, "19159": {"FFRPTH14": 0.593941794, "FSRPTH14": 0.98990299}, "19161": {"FFRPTH14": 0.19930244100000002, "FSRPTH14": 1.5944195319999999}, "19163": {"FFRPTH14": 0.7410130290000001, "FSRPTH14": 0.7235087840000001}, "19165": {"FFRPTH14": 0.502176096, "FSRPTH14": 0.585872112}, "19167": {"FFRPTH14": 0.663187336, "FSRPTH14": 0.836192728}, "19169": {"FFRPTH14": 0.7015828129999999, "FSRPTH14": 0.7334729409999999}, "19171": {"FFRPTH14": 0.343819838, "FSRPTH14": 0.8595495959999999}, "19173": {"FFRPTH14": 0.0, "FSRPTH14": 0.976721472}, "19175": {"FFRPTH14": 0.399488655, "FSRPTH14": 0.9587727709999999}, "19177": {"FFRPTH14": 0.26780932, "FSRPTH14": 0.53561864}, "19179": {"FFRPTH14": 0.653186414, "FSRPTH14": 0.624787004}, "19181": {"FFRPTH14": 0.43790141, "FSRPTH14": 0.375344065}, "19183": {"FFRPTH14": 0.453103761, "FSRPTH14": 0.815586769}, "19185": {"FFRPTH14": 0.156372166, "FSRPTH14": 0.938232995}, "19187": {"FFRPTH14": 0.73061832, "FSRPTH14": 0.649438506}, "19189": {"FFRPTH14": 0.378823752, "FSRPTH14": 1.136471257}, "19191": {"FFRPTH14": 0.38520801200000004, "FSRPTH14": 0.9148690290000001}, "19193": {"FFRPTH14": 0.9289045770000001, "FSRPTH14": 0.77245749}, "19195": {"FFRPTH14": 0.393494229, "FSRPTH14": 0.524658972}, "19197": {"FFRPTH14": 0.62305296, "FSRPTH14": 1.168224299}, "20001": {"FFRPTH14": 0.387326671, "FSRPTH14": 0.6971880079999999}, "20003": {"FFRPTH14": 0.507421033, "FSRPTH14": 1.014842065}, "20005": {"FFRPTH14": 0.7267001759999999, "FSRPTH14": 0.7267001759999999}, "20007": {"FFRPTH14": 0.816826629, "FSRPTH14": 1.021033286}, "20009": {"FFRPTH14": 0.69381048, "FSRPTH14": 0.839875844}, "20011": {"FFRPTH14": 0.609260764, "FSRPTH14": 0.7446520440000001}, "20013": {"FFRPTH14": 0.50942435, "FSRPTH14": 1.120733571}, "20015": {"FFRPTH14": 0.7700786690000001, "FSRPTH14": 0.483186616}, "20017": {"FFRPTH14": 0.0, "FSRPTH14": 1.114413076}, "20019": {"FFRPTH14": 0.0, "FSRPTH14": 1.43636886}, "20021": {"FFRPTH14": 0.529176889, "FSRPTH14": 0.7216048490000001}, "20023": {"FFRPTH14": 0.37133308600000003, "FSRPTH14": 1.485332343}, "20025": {"FFRPTH14": 0.46641791, "FSRPTH14": 1.399253731}, "20027": {"FFRPTH14": 0.480942648, "FSRPTH14": 1.322592281}, "20029": {"FFRPTH14": 0.532765051, "FSRPTH14": 0.8524240809999999}, "20031": {"FFRPTH14": 0.711490573, "FSRPTH14": 0.948654097}, "20033": {"FFRPTH14": 0.511770727, "FSRPTH14": 1.53531218}, "20035": {"FFRPTH14": 0.444901705, "FSRPTH14": 0.528320774}, "20037": {"FFRPTH14": 0.509035378, "FSRPTH14": 0.9671672179999999}, "20039": {"FFRPTH14": 0.343878955, "FSRPTH14": 0.6877579090000001}, "20041": {"FFRPTH14": 0.567185728, "FSRPTH14": 0.773435083}, "20043": {"FFRPTH14": 0.127000254, "FSRPTH14": 0.63500127}, "20045": {"FFRPTH14": 0.849165845, "FSRPTH14": 0.8920530090000001}, "20047": {"FFRPTH14": 0.330033003, "FSRPTH14": 0.99009901}, "20049": {"FFRPTH14": 0.0, "FSRPTH14": 2.227171492}, "20051": {"FFRPTH14": 1.102953848, "FSRPTH14": 0.965084617}, "20053": {"FFRPTH14": 0.46933667100000004, "FSRPTH14": 0.9386733420000001}, "20055": {"FFRPTH14": 0.618545611, "FSRPTH14": 0.6992254729999999}, "20057": {"FFRPTH14": 0.45983618299999995, "FSRPTH14": 0.8047133209999999}, "20059": {"FFRPTH14": 0.585685838, "FSRPTH14": 0.819960173}, "20061": {"FFRPTH14": 0.7081960070000001, "FSRPTH14": 0.6264810829999999}, "20063": {"FFRPTH14": 1.100110011, "FSRPTH14": 1.100110011}, "20065": {"FFRPTH14": 0.779423227, "FSRPTH14": 0.779423227}, "20067": {"FFRPTH14": 0.639713408, "FSRPTH14": 0.76765609}, "20069": {"FFRPTH14": 0.164419599, "FSRPTH14": 0.493258796}, "20071": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "20073": {"FFRPTH14": 0.15802781300000002, "FSRPTH14": 1.10619469}, "20075": {"FFRPTH14": 0.384172109, "FSRPTH14": 0.768344218}, "20077": {"FFRPTH14": 0.515641114, "FSRPTH14": 1.203162599}, "20079": {"FFRPTH14": 0.6892590470000001, "FSRPTH14": 0.545663412}, "20081": {"FFRPTH14": 0.24354603, "FSRPTH14": 1.217730151}, "20083": {"FFRPTH14": 0.5219206679999999, "FSRPTH14": 0.5219206679999999}, "20085": {"FFRPTH14": 0.369303494, "FSRPTH14": 0.812467686}, "20087": {"FFRPTH14": 0.21214532, "FSRPTH14": 0.477326969}, "20089": {"FFRPTH14": 0.657246139, "FSRPTH14": 0.985869208}, "20091": {"FFRPTH14": 0.722654073, "FSRPTH14": 0.7783767970000001}, "20093": {"FFRPTH14": 0.510855683, "FSRPTH14": 0.766283525}, "20095": {"FFRPTH14": 0.38971161299999996, "FSRPTH14": 0.519615485}, "20097": {"FFRPTH14": 0.0, "FSRPTH14": 0.39793076}, "20099": {"FFRPTH14": 0.477099237, "FSRPTH14": 0.90648855}, "20101": {"FFRPTH14": 0.592768228, "FSRPTH14": 0.592768228}, "20103": {"FFRPTH14": 0.444179347, "FSRPTH14": 0.431488508}, "20105": {"FFRPTH14": 0.0, "FSRPTH14": 0.947268709}, "20107": {"FFRPTH14": 0.21048200399999997, "FSRPTH14": 0.631446011}, "20109": {"FFRPTH14": 0.357909807, "FSRPTH14": 1.789549034}, "20111": {"FFRPTH14": 0.602191979, "FSRPTH14": 0.903287968}, "20113": {"FFRPTH14": 0.615574023, "FSRPTH14": 0.6839711359999999}, "20115": {"FFRPTH14": 0.327653997, "FSRPTH14": 1.064875491}, "20117": {"FFRPTH14": 0.49970018, "FSRPTH14": 0.8994603240000001}, "20119": {"FFRPTH14": 0.459031444, "FSRPTH14": 1.147578609}, "20121": {"FFRPTH14": 0.457010542, "FSRPTH14": 0.700749497}, "20123": {"FFRPTH14": 0.636537237, "FSRPTH14": 1.113940165}, "20125": {"FFRPTH14": 0.8219580209999999, "FSRPTH14": 0.7338910909999999}, "20127": {"FFRPTH14": 0.877500878, "FSRPTH14": 1.053001053}, "20129": {"FFRPTH14": 0.964630225, "FSRPTH14": 0.643086817}, "20131": {"FFRPTH14": 0.295624754, "FSRPTH14": 1.281040599}, "20133": {"FFRPTH14": 0.36549707600000003, "FSRPTH14": 0.791910331}, "20135": {"FFRPTH14": 0.644122383, "FSRPTH14": 0.966183575}, "20137": {"FFRPTH14": 0.35971223, "FSRPTH14": 0.71942446}, "20139": {"FFRPTH14": 0.251004016, "FSRPTH14": 0.815763052}, "20141": {"FFRPTH14": 0.266240682, "FSRPTH14": 0.5324813629999999}, "20143": {"FFRPTH14": 0.164880462, "FSRPTH14": 0.8244023079999999}, "20145": {"FFRPTH14": 0.43377675, "FSRPTH14": 0.5783689989999999}, "20147": {"FFRPTH14": 0.9036688959999999, "FSRPTH14": 1.084402675}, "20149": {"FFRPTH14": 0.480412281, "FSRPTH14": 0.655107656}, "20151": {"FFRPTH14": 0.913705584, "FSRPTH14": 1.218274112}, "20153": {"FFRPTH14": 0.0, "FSRPTH14": 0.773993808}, "20155": {"FFRPTH14": 0.8935009559999999, "FSRPTH14": 0.501614572}, "20157": {"FFRPTH14": 0.416406413, "FSRPTH14": 0.832812825}, "20159": {"FFRPTH14": 0.698951573, "FSRPTH14": 0.698951573}, "20161": {"FFRPTH14": 0.611750938, "FSRPTH14": 0.6383488039999999}, "20163": {"FFRPTH14": 0.581959263, "FSRPTH14": 1.163918526}, "20165": {"FFRPTH14": 0.6255864870000001, "FSRPTH14": 1.251172975}, "20167": {"FFRPTH14": 0.71880391, "FSRPTH14": 0.575043128}, "20169": {"FFRPTH14": 0.986458614, "FSRPTH14": 0.520132724}, "20171": {"FFRPTH14": 0.984251969, "FSRPTH14": 1.181102362}, "20173": {"FFRPTH14": 0.8608439809999999, "FSRPTH14": 0.6937852170000001}, "20175": {"FFRPTH14": 0.46878329399999996, "FSRPTH14": 0.7244832729999999}, "20177": {"FFRPTH14": 0.7959373559999999, "FSRPTH14": 0.538098494}, "20179": {"FFRPTH14": 0.393855849, "FSRPTH14": 0.787711698}, "20181": {"FFRPTH14": 1.47299509, "FSRPTH14": 1.309328969}, "20183": {"FFRPTH14": 0.7959670999999999, "FSRPTH14": 1.061289467}, "20185": {"FFRPTH14": 0.0, "FSRPTH14": 1.396323016}, "20187": {"FFRPTH14": 0.47370914299999994, "FSRPTH14": 0.947418285}, "20189": {"FFRPTH14": 0.689536287, "FSRPTH14": 1.206688502}, "20191": {"FFRPTH14": 0.467528052, "FSRPTH14": 0.8500510029999999}, "20193": {"FFRPTH14": 0.7603599040000001, "FSRPTH14": 0.7603599040000001}, "20195": {"FFRPTH14": 1.033769814, "FSRPTH14": 1.378359752}, "20197": {"FFRPTH14": 0.28481914, "FSRPTH14": 0.56963828}, "20199": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "20201": {"FFRPTH14": 0.17863522699999998, "FSRPTH14": 1.429081815}, "20203": {"FFRPTH14": 0.459558824, "FSRPTH14": 1.378676471}, "20205": {"FFRPTH14": 0.553832521, "FSRPTH14": 1.107665042}, "20207": {"FFRPTH14": 0.6335128289999999, "FSRPTH14": 1.267025657}, "20209": {"FFRPTH14": 0.64342102, "FSRPTH14": 0.501125987}, "21001": {"FFRPTH14": 0.312434909, "FSRPTH14": 0.572797334}, "21003": {"FFRPTH14": 0.441522763, "FSRPTH14": 0.294348509}, "21005": {"FFRPTH14": 0.868055556, "FSRPTH14": 0.36549707600000003}, "21007": {"FFRPTH14": 0.485436893, "FSRPTH14": 0.849514563}, "21009": {"FFRPTH14": 0.8575136740000001, "FSRPTH14": 0.8343376290000001}, "21011": {"FFRPTH14": 0.409634606, "FSRPTH14": 0.327707685}, "21013": {"FFRPTH14": 0.863993088, "FSRPTH14": 0.395996832}, "21015": {"FFRPTH14": 0.949269458, "FSRPTH14": 0.806879039}, "21017": {"FFRPTH14": 0.650911276, "FSRPTH14": 0.6008411779999999}, "21019": {"FFRPTH14": 1.249180865, "FSRPTH14": 0.59387287}, "21021": {"FFRPTH14": 0.7742543590000001, "FSRPTH14": 0.67326466}, "21023": {"FFRPTH14": 0.475850583, "FSRPTH14": 0.7137758740000001}, "21025": {"FFRPTH14": 0.372883884, "FSRPTH14": 0.298307107}, "21027": {"FFRPTH14": 0.15084473, "FSRPTH14": 0.45253419100000003}, "21029": {"FFRPTH14": 0.500288628, "FSRPTH14": 0.256558271}, "21031": {"FFRPTH14": 0.46601941700000005, "FSRPTH14": 0.310679612}, "21033": {"FFRPTH14": 0.785854617, "FSRPTH14": 0.785854617}, "21035": {"FFRPTH14": 0.679170367, "FSRPTH14": 1.044877488}, "21037": {"FFRPTH14": 0.773142552, "FSRPTH14": 0.8166998790000001}, "21039": {"FFRPTH14": 0.40176777799999996, "FSRPTH14": 0.6026516670000001}, "21041": {"FFRPTH14": 1.202034212, "FSRPTH14": 0.647249191}, "21043": {"FFRPTH14": 0.661205598, "FSRPTH14": 0.514271021}, "21045": {"FFRPTH14": 0.188786105, "FSRPTH14": 0.377572211}, "21047": {"FFRPTH14": 0.579124579, "FSRPTH14": 0.430976431}, "21049": {"FFRPTH14": 0.894904637, "FSRPTH14": 0.391520779}, "21051": {"FFRPTH14": 0.520168345, "FSRPTH14": 0.283728188}, "21053": {"FFRPTH14": 0.5902606979999999, "FSRPTH14": 0.5902606979999999}, "21055": {"FFRPTH14": 0.650477016, "FSRPTH14": 0.325238508}, "21057": {"FFRPTH14": 0.593031875, "FSRPTH14": 0.593031875}, "21059": {"FFRPTH14": 0.783515645, "FSRPTH14": 0.6817603659999999}, "21061": {"FFRPTH14": 0.24972946, "FSRPTH14": 0.49945892}, "21063": {"FFRPTH14": 0.260688217, "FSRPTH14": 0.13034410800000001}, "21065": {"FFRPTH14": 0.553748183, "FSRPTH14": 0.41531113700000005}, "21067": {"FFRPTH14": 1.000653159, "FSRPTH14": 0.88803946}, "21069": {"FFRPTH14": 0.343760743, "FSRPTH14": 0.137504297}, "21071": {"FFRPTH14": 0.6822714390000001, "FSRPTH14": 0.36737692899999996}, "21073": {"FFRPTH14": 0.942261427, "FSRPTH14": 0.6816359259999999}, "21075": {"FFRPTH14": 0.478850758, "FSRPTH14": 0.957701516}, "21077": {"FFRPTH14": 0.34928396799999994, "FSRPTH14": 0.34928396799999994}, "21079": {"FFRPTH14": 0.177957053, "FSRPTH14": 0.415233124}, "21081": {"FFRPTH14": 0.603015075, "FSRPTH14": 0.522613065}, "21083": {"FFRPTH14": 0.47849433799999996, "FSRPTH14": 0.664575469}, "21085": {"FFRPTH14": 0.649003589, "FSRPTH14": 0.343590135}, "21087": {"FFRPTH14": 0.633885719, "FSRPTH14": 0.271665308}, "21089": {"FFRPTH14": 0.5783849289999999, "FSRPTH14": 0.22033711600000003}, "21091": {"FFRPTH14": 0.342739632, "FSRPTH14": 0.114246544}, "21093": {"FFRPTH14": 0.609609665, "FSRPTH14": 0.600373155}, "21095": {"FFRPTH14": 0.639136456, "FSRPTH14": 0.213045485}, "21097": {"FFRPTH14": 0.537865749, "FSRPTH14": 0.537865749}, "21099": {"FFRPTH14": 0.32263268300000003, "FSRPTH14": 0.37640479600000004}, "21101": {"FFRPTH14": 0.753222717, "FSRPTH14": 0.602578174}, "21103": {"FFRPTH14": 0.513742615, "FSRPTH14": 0.385306961}, "21105": {"FFRPTH14": 0.21123785399999997, "FSRPTH14": 0.0}, "21107": {"FFRPTH14": 0.625323443, "FSRPTH14": 0.5821976879999999}, "21109": {"FFRPTH14": 0.301000828, "FSRPTH14": 0.075250207}, "21111": {"FFRPTH14": 0.8657598559999999, "FSRPTH14": 0.7473428540000001}, "21113": {"FFRPTH14": 0.688773, "FSRPTH14": 0.5510184}, "21115": {"FFRPTH14": 0.9027598659999999, "FSRPTH14": 0.472874215}, "21117": {"FFRPTH14": 0.597819788, "FSRPTH14": 0.689322817}, "21119": {"FFRPTH14": 0.31462371, "FSRPTH14": 0.125849484}, "21121": {"FFRPTH14": 0.597521857, "FSRPTH14": 0.34593370700000003}, "21123": {"FFRPTH14": 0.564174894, "FSRPTH14": 0.352609309}, "21125": {"FFRPTH14": 0.649837541, "FSRPTH14": 0.499875031}, "21127": {"FFRPTH14": 0.506200962, "FSRPTH14": 0.316375601}, "21129": {"FFRPTH14": 0.52673163, "FSRPTH14": 0.263365815}, "21131": {"FFRPTH14": 0.18318373300000002, "FSRPTH14": 0.18318373300000002}, "21133": {"FFRPTH14": 0.642150777, "FSRPTH14": 0.214050259}, "21135": {"FFRPTH14": 0.360230548, "FSRPTH14": 0.216138329}, "21137": {"FFRPTH14": 0.36817345100000004, "FSRPTH14": 0.20454080600000002}, "21139": {"FFRPTH14": 0.427396089, "FSRPTH14": 0.534245112}, "21141": {"FFRPTH14": 0.521085346, "FSRPTH14": 0.669966874}, "21143": {"FFRPTH14": 0.355871886, "FSRPTH14": 0.8303677340000001}, "21145": {"FFRPTH14": 1.0717129029999999, "FSRPTH14": 1.102333272}, "21147": {"FFRPTH14": 0.33588982799999995, "FSRPTH14": 0.223926552}, "21149": {"FFRPTH14": 0.844059928, "FSRPTH14": 0.633044946}, "21151": {"FFRPTH14": 0.721318983, "FSRPTH14": 0.515227845}, "21153": {"FFRPTH14": 0.619530705, "FSRPTH14": 0.154882676}, "21155": {"FFRPTH14": 0.6997550859999999, "FSRPTH14": 0.499825061}, "21157": {"FFRPTH14": 0.67844797, "FSRPTH14": 0.807676154}, "21159": {"FFRPTH14": 0.638111191, "FSRPTH14": 0.159527798}, "21161": {"FFRPTH14": 0.7573109640000001, "FSRPTH14": 0.9320750320000001}, "21163": {"FFRPTH14": 0.377500944, "FSRPTH14": 0.274546141}, "21165": {"FFRPTH14": 0.159058374, "FSRPTH14": 0.159058374}, "21167": {"FFRPTH14": 0.562878184, "FSRPTH14": 0.5159716679999999}, "21169": {"FFRPTH14": 0.20020020000000002, "FSRPTH14": 0.7007007009999999}, "21171": {"FFRPTH14": 1.027653214, "FSRPTH14": 0.653961136}, "21173": {"FFRPTH14": 0.618766834, "FSRPTH14": 0.40037854}, "21175": {"FFRPTH14": 0.30068405600000003, "FSRPTH14": 0.225513042}, "21177": {"FFRPTH14": 0.6729259459999999, "FSRPTH14": 0.544749575}, "21179": {"FFRPTH14": 0.535570829, "FSRPTH14": 0.513255378}, "21181": {"FFRPTH14": 0.0, "FSRPTH14": 0.710126402}, "21183": {"FFRPTH14": 0.5004796260000001, "FSRPTH14": 0.5004796260000001}, "21185": {"FFRPTH14": 0.519766892, "FSRPTH14": 0.33076075}, "21187": {"FFRPTH14": 0.469704086, "FSRPTH14": 0.281822452}, "21189": {"FFRPTH14": 0.221827862, "FSRPTH14": 0.0}, "21191": {"FFRPTH14": 0.413992962, "FSRPTH14": 0.344994135}, "21193": {"FFRPTH14": 0.760952277, "FSRPTH14": 0.688480632}, "21195": {"FFRPTH14": 0.7456293429999999, "FSRPTH14": 0.39661135299999994}, "21197": {"FFRPTH14": 0.965095705, "FSRPTH14": 0.24127392600000003}, "21199": {"FFRPTH14": 0.673717195, "FSRPTH14": 0.53270662}, "21201": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "21203": {"FFRPTH14": 0.534886485, "FSRPTH14": 0.475454654}, "21205": {"FFRPTH14": 0.845487212, "FSRPTH14": 0.422743606}, "21207": {"FFRPTH14": 0.506357601, "FSRPTH14": 0.7314054240000001}, "21209": {"FFRPTH14": 0.623976289, "FSRPTH14": 0.623976289}, "21211": {"FFRPTH14": 0.623955432, "FSRPTH14": 0.512534819}, "21213": {"FFRPTH14": 1.009761023, "FSRPTH14": 0.673174015}, "21215": {"FFRPTH14": 0.5659950189999999, "FSRPTH14": 0.0565995}, "21217": {"FFRPTH14": 0.752266698, "FSRPTH14": 0.435522825}, "21219": {"FFRPTH14": 0.399361022, "FSRPTH14": 0.399361022}, "21221": {"FFRPTH14": 0.42426813700000005, "FSRPTH14": 0.56569085}, "21223": {"FFRPTH14": 0.227634874, "FSRPTH14": 0.113817437}, "21225": {"FFRPTH14": 0.395647873, "FSRPTH14": 0.659413122}, "21227": {"FFRPTH14": 0.7637390000000001, "FSRPTH14": 0.7637390000000001}, "21229": {"FFRPTH14": 0.585333222, "FSRPTH14": 0.250857095}, "21231": {"FFRPTH14": 0.585765889, "FSRPTH14": 0.341696769}, "21233": {"FFRPTH14": 0.37775763100000004, "FSRPTH14": 0.528860683}, "21235": {"FFRPTH14": 0.788665747, "FSRPTH14": 0.506999409}, "21237": {"FFRPTH14": 0.27723870300000003, "FSRPTH14": 0.27723870300000003}, "21239": {"FFRPTH14": 0.50854751, "FSRPTH14": 0.782380785}, "22001": {"FFRPTH14": 0.44810037399999997, "FSRPTH14": 0.320071696}, "22003": {"FFRPTH14": 0.38890833399999997, "FSRPTH14": 0.350017501}, "22005": {"FFRPTH14": 0.692136137, "FSRPTH14": 0.367430295}, "22007": {"FFRPTH14": 0.173656334, "FSRPTH14": 0.173656334}, "22009": {"FFRPTH14": 0.388868635, "FSRPTH14": 0.267347187}, "22011": {"FFRPTH14": 0.49726504200000005, "FSRPTH14": 0.303884192}, "22013": {"FFRPTH14": 0.648181491, "FSRPTH14": 0.432120994}, "22015": {"FFRPTH14": 0.8715537640000001, "FSRPTH14": 0.639672488}, "22017": {"FFRPTH14": 0.823426483, "FSRPTH14": 0.5344354579999999}, "22019": {"FFRPTH14": 0.836697024, "FSRPTH14": 0.44623841299999994}, "22021": {"FFRPTH14": 0.404285426, "FSRPTH14": 0.404285426}, "22023": {"FFRPTH14": 0.149723012, "FSRPTH14": 0.149723012}, "22025": {"FFRPTH14": 0.492562309, "FSRPTH14": 0.197024924}, "22027": {"FFRPTH14": 0.548379235, "FSRPTH14": 0.243724104}, "22029": {"FFRPTH14": 0.68406137, "FSRPTH14": 0.43975373799999995}, "22031": {"FFRPTH14": 0.29474615, "FSRPTH14": 0.442119225}, "22033": {"FFRPTH14": 0.8586635340000001, "FSRPTH14": 0.645679106}, "22035": {"FFRPTH14": 0.6678242289999999, "FSRPTH14": 0.400694537}, "22037": {"FFRPTH14": 0.555191036, "FSRPTH14": 0.151415737}, "22039": {"FFRPTH14": 0.296735905, "FSRPTH14": 0.267062315}, "22041": {"FFRPTH14": 0.538134142, "FSRPTH14": 0.24460642800000001}, "22043": {"FFRPTH14": 0.089349535, "FSRPTH14": 0.0}, "22045": {"FFRPTH14": 0.5682356279999999, "FSRPTH14": 0.311176654}, "22047": {"FFRPTH14": 0.360068413, "FSRPTH14": 0.39007411399999997}, "22049": {"FFRPTH14": 0.562711017, "FSRPTH14": 0.250093785}, "22051": {"FFRPTH14": 0.8560622059999999, "FSRPTH14": 0.794095236}, "22053": {"FFRPTH14": 0.57184611, "FSRPTH14": 0.285923055}, "22055": {"FFRPTH14": 0.9463427879999999, "FSRPTH14": 0.836006858}, "22057": {"FFRPTH14": 0.520301979, "FSRPTH14": 0.39787798399999996}, "22059": {"FFRPTH14": 0.6065098729999999, "FSRPTH14": 0.202169958}, "22061": {"FFRPTH14": 0.840036122, "FSRPTH14": 0.609026188}, "22063": {"FFRPTH14": 0.530382833, "FSRPTH14": 0.324122843}, "22065": {"FFRPTH14": 0.5910664529999999, "FSRPTH14": 0.337752259}, "22067": {"FFRPTH14": 0.48579970100000003, "FSRPTH14": 0.26158445399999997}, "22069": {"FFRPTH14": 0.434049941, "FSRPTH14": 0.663841087}, "22071": {"FFRPTH14": 0.788405495, "FSRPTH14": 1.2359492090000002}, "22073": {"FFRPTH14": 0.72924996, "FSRPTH14": 0.652486806}, "22075": {"FFRPTH14": 0.554441933, "FSRPTH14": 0.81033821}, "22077": {"FFRPTH14": 0.446309024, "FSRPTH14": 0.446309024}, "22079": {"FFRPTH14": 0.762333192, "FSRPTH14": 0.46796691}, "22081": {"FFRPTH14": 0.5767677929999999, "FSRPTH14": 0.346060676}, "22083": {"FFRPTH14": 0.38572806200000004, "FSRPTH14": 0.38572806200000004}, "22085": {"FFRPTH14": 0.413240217, "FSRPTH14": 0.24794413}, "22087": {"FFRPTH14": 0.720574658, "FSRPTH14": 0.6755387420000001}, "22089": {"FFRPTH14": 0.587733434, "FSRPTH14": 0.417101147}, "22091": {"FFRPTH14": 0.094170826, "FSRPTH14": 0.188341652}, "22093": {"FFRPTH14": 0.508364914, "FSRPTH14": 0.36971993700000005}, "22095": {"FFRPTH14": 0.708652417, "FSRPTH14": 0.29717682}, "22097": {"FFRPTH14": 0.47784587100000003, "FSRPTH14": 0.238922935}, "22099": {"FFRPTH14": 0.41264184600000003, "FSRPTH14": 0.468911188}, "22101": {"FFRPTH14": 0.639554569, "FSRPTH14": 0.5455024270000001}, "22103": {"FFRPTH14": 0.764759243, "FSRPTH14": 0.866455951}, "22105": {"FFRPTH14": 0.669033208, "FSRPTH14": 0.629678313}, "22107": {"FFRPTH14": 0.0, "FSRPTH14": 0.621118012}, "22109": {"FFRPTH14": 0.723563462, "FSRPTH14": 0.626500071}, "22111": {"FFRPTH14": 0.266205244, "FSRPTH14": 0.17747016300000001}, "22113": {"FFRPTH14": 0.335480408, "FSRPTH14": 0.385802469}, "22115": {"FFRPTH14": 0.422005678, "FSRPTH14": 0.30691322}, "22117": {"FFRPTH14": 0.626539342, "FSRPTH14": 0.324072074}, "22119": {"FFRPTH14": 0.793394987, "FSRPTH14": 0.39669749299999996}, "22121": {"FFRPTH14": 0.797289217, "FSRPTH14": 0.5581024520000001}, "22123": {"FFRPTH14": 0.780911063, "FSRPTH14": 0.0}, "22125": {"FFRPTH14": 0.259639102, "FSRPTH14": 0.5192782029999999}, "22127": {"FFRPTH14": 0.542630401, "FSRPTH14": 0.33914400100000003}, "23001": {"FFRPTH14": 0.7073715559999999, "FSRPTH14": 0.716679077}, "23003": {"FFRPTH14": 0.719973505, "FSRPTH14": 0.8495687359999999}, "23005": {"FFRPTH14": 0.847819817, "FSRPTH14": 1.344697825}, "23007": {"FFRPTH14": 0.495114867, "FSRPTH14": 1.353313969}, "23009": {"FFRPTH14": 0.84101214, "FSRPTH14": 1.992833114}, "23011": {"FFRPTH14": 0.668802431, "FSRPTH14": 0.792654733}, "23013": {"FFRPTH14": 0.7561246090000001, "FSRPTH14": 1.663474141}, "23015": {"FFRPTH14": 0.7316359379999999, "FSRPTH14": 1.5218027509999998}, "23017": {"FFRPTH14": 0.454243684, "FSRPTH14": 0.908487369}, "23019": {"FFRPTH14": 0.606202824, "FSRPTH14": 0.769160572}, "23021": {"FFRPTH14": 0.41113591, "FSRPTH14": 1.233407729}, "23023": {"FFRPTH14": 0.570694821, "FSRPTH14": 0.82750749}, "23025": {"FFRPTH14": 0.429998241, "FSRPTH14": 0.625451987}, "23027": {"FFRPTH14": 0.512150777, "FSRPTH14": 0.921871399}, "23029": {"FFRPTH14": 0.597334004, "FSRPTH14": 0.88028169}, "23031": {"FFRPTH14": 0.782223108, "FSRPTH14": 1.220666633}, "24001": {"FFRPTH14": 0.84987389, "FSRPTH14": 0.671674526}, "24003": {"FFRPTH14": 0.810521787, "FSRPTH14": 0.6909073379999999}, "24005": {"FFRPTH14": 0.89367234, "FSRPTH14": 0.505487197}, "24009": {"FFRPTH14": 0.606976924, "FSRPTH14": 0.618012868}, "24011": {"FFRPTH14": 0.49173274299999997, "FSRPTH14": 0.33806626100000003}, "24013": {"FFRPTH14": 0.679258774, "FSRPTH14": 0.60179944}, "24015": {"FFRPTH14": 0.5371985579999999, "FSRPTH14": 0.566500298}, "24017": {"FFRPTH14": 0.7819214590000001, "FSRPTH14": 0.432964775}, "24019": {"FFRPTH14": 0.583215667, "FSRPTH14": 0.7366934740000001}, "24021": {"FFRPTH14": 0.705858213, "FSRPTH14": 0.6566122910000001}, "24023": {"FFRPTH14": 0.84234644, "FSRPTH14": 0.943428013}, "24025": {"FFRPTH14": 0.659722916, "FSRPTH14": 0.483796805}, "24027": {"FFRPTH14": 0.788918922, "FSRPTH14": 0.572289546}, "24029": {"FFRPTH14": 0.706357215, "FSRPTH14": 1.3622603430000002}, "24031": {"FFRPTH14": 0.770539387, "FSRPTH14": 0.608473798}, "24033": {"FFRPTH14": 0.832568579, "FSRPTH14": 0.326172285}, "24035": {"FFRPTH14": 0.676174084, "FSRPTH14": 0.6147037129999999}, "24037": {"FFRPTH14": 0.625101919, "FSRPTH14": 0.534507438}, "24039": {"FFRPTH14": 0.42538381200000003, "FSRPTH14": 0.309370045}, "24041": {"FFRPTH14": 0.956353107, "FSRPTH14": 1.567356481}, "24043": {"FFRPTH14": 0.735426848, "FSRPTH14": 0.615084273}, "24045": {"FFRPTH14": 0.807571475, "FSRPTH14": 0.6696934179999999}, "24047": {"FFRPTH14": 1.60619255, "FSRPTH14": 3.3865505560000004}, "24510": {"FFRPTH14": 1.075798861, "FSRPTH14": 0.582858189}, "25001": {"FFRPTH14": 1.005053184, "FSRPTH14": 1.9868412480000002}, "25003": {"FFRPTH14": 0.916754069, "FSRPTH14": 1.67035699}, "25005": {"FFRPTH14": 0.696506999, "FSRPTH14": 0.844469626}, "25007": {"FFRPTH14": 1.382807098, "FSRPTH14": 3.4570177460000004}, "25009": {"FFRPTH14": 0.7489360820000001, "FSRPTH14": 0.8074467129999999}, "25011": {"FFRPTH14": 0.49391775600000004, "FSRPTH14": 0.9172758320000001}, "25013": {"FFRPTH14": 0.6258530720000001, "FSRPTH14": 0.7155657990000001}, "25015": {"FFRPTH14": 0.615139898, "FSRPTH14": 1.043873766}, "25017": {"FFRPTH14": 0.772456482, "FSRPTH14": 0.829769823}, "25019": {"FFRPTH14": 1.565954311, "FSRPTH14": 4.974207811}, "25021": {"FFRPTH14": 0.680386101, "FSRPTH14": 0.868178443}, "25023": {"FFRPTH14": 0.603524107, "FSRPTH14": 0.808643412}, "25025": {"FFRPTH14": 0.970995264, "FSRPTH14": 1.1964747009999999}, "25027": {"FFRPTH14": 0.7142198590000001, "FSRPTH14": 0.705614801}, "26001": {"FFRPTH14": 0.382628659, "FSRPTH14": 0.9565716470000001}, "26003": {"FFRPTH14": 0.528597103, "FSRPTH14": 1.2686330479999999}, "26005": {"FFRPTH14": 0.47432079899999996, "FSRPTH14": 0.70269748}, "26007": {"FFRPTH14": 0.724437698, "FSRPTH14": 0.931419898}, "26009": {"FFRPTH14": 0.55873125, "FSRPTH14": 1.031503847}, "26011": {"FFRPTH14": 0.911873901, "FSRPTH14": 0.716472351}, "26013": {"FFRPTH14": 0.808874509, "FSRPTH14": 0.693321008}, "26015": {"FFRPTH14": 0.320507414, "FSRPTH14": 0.590408394}, "26017": {"FFRPTH14": 0.7722807709999999, "FSRPTH14": 0.574501549}, "26019": {"FFRPTH14": 0.742051487, "FSRPTH14": 1.1986985559999999}, "26021": {"FFRPTH14": 0.6055413479999999, "FSRPTH14": 0.927637809}, "26023": {"FFRPTH14": 0.52818923, "FSRPTH14": 0.665977724}, "26025": {"FFRPTH14": 0.6820978959999999, "FSRPTH14": 0.600542713}, "26027": {"FFRPTH14": 0.271275771, "FSRPTH14": 0.5619283829999999}, "26029": {"FFRPTH14": 0.65081735, "FSRPTH14": 1.4547681940000001}, "26031": {"FFRPTH14": 0.467380721, "FSRPTH14": 1.518987342}, "26033": {"FFRPTH14": 0.574097753, "FSRPTH14": 0.991623392}, "26035": {"FFRPTH14": 0.48936447899999996, "FSRPTH14": 0.7177345690000001}, "26037": {"FFRPTH14": 0.47867317, "FSRPTH14": 0.413987606}, "26039": {"FFRPTH14": 0.7275372859999999, "FSRPTH14": 0.800291015}, "26041": {"FFRPTH14": 0.71117919, "FSRPTH14": 0.738532236}, "26043": {"FFRPTH14": 0.7319798129999999, "FSRPTH14": 0.8090303190000001}, "26045": {"FFRPTH14": 0.699951188, "FSRPTH14": 0.653901767}, "26047": {"FFRPTH14": 0.843271895, "FSRPTH14": 1.7166606430000002}, "26049": {"FFRPTH14": 0.714467359, "FSRPTH14": 0.571573887}, "26051": {"FFRPTH14": 0.354177325, "FSRPTH14": 0.865766794}, "26053": {"FFRPTH14": 0.6354451289999999, "FSRPTH14": 1.652157336}, "26055": {"FFRPTH14": 0.826154965, "FSRPTH14": 1.024432156}, "26057": {"FFRPTH14": 0.552022081, "FSRPTH14": 0.43201728100000003}, "26059": {"FFRPTH14": 0.414575605, "FSRPTH14": 0.67641283}, "26061": {"FFRPTH14": 0.630223318, "FSRPTH14": 1.150842581}, "26063": {"FFRPTH14": 0.966786215, "FSRPTH14": 1.216279432}, "26065": {"FFRPTH14": 0.794147205, "FSRPTH14": 0.7484661709999999}, "26067": {"FFRPTH14": 0.40439232299999994, "FSRPTH14": 0.52882073}, "26069": {"FFRPTH14": 0.7474429579999999, "FSRPTH14": 1.140833989}, "26071": {"FFRPTH14": 0.790374989, "FSRPTH14": 1.229472205}, "26073": {"FFRPTH14": 0.538121672, "FSRPTH14": 0.637249349}, "26075": {"FFRPTH14": 0.532111355, "FSRPTH14": 0.588452558}, "26077": {"FFRPTH14": 0.7766075, "FSRPTH14": 0.7341065920000001}, "26079": {"FFRPTH14": 0.459928711, "FSRPTH14": 0.8048752440000001}, "26081": {"FFRPTH14": 0.637279753, "FSRPTH14": 0.649993564}, "26083": {"FFRPTH14": 0.0, "FSRPTH14": 2.706359946}, "26085": {"FFRPTH14": 0.176351292, "FSRPTH14": 1.146283397}, "26087": {"FFRPTH14": 0.408380883, "FSRPTH14": 0.555851758}, "26089": {"FFRPTH14": 0.593201004, "FSRPTH14": 1.688341319}, "26091": {"FFRPTH14": 0.5855805829999999, "FSRPTH14": 0.656254102}, "26093": {"FFRPTH14": 0.522640574, "FSRPTH14": 0.554968857}, "26095": {"FFRPTH14": 0.311235605, "FSRPTH14": 1.244942421}, "26097": {"FFRPTH14": 1.539576164, "FSRPTH14": 2.89802572}, "26099": {"FFRPTH14": 0.699908849, "FSRPTH14": 0.705722046}, "26101": {"FFRPTH14": 0.368550369, "FSRPTH14": 0.900900901}, "26103": {"FFRPTH14": 0.768366925, "FSRPTH14": 0.797919499}, "26105": {"FFRPTH14": 0.659172911, "FSRPTH14": 1.075492645}, "26107": {"FFRPTH14": 0.555735655, "FSRPTH14": 0.625202612}, "26109": {"FFRPTH14": 0.506030193, "FSRPTH14": 1.096398752}, "26111": {"FFRPTH14": 0.647272466, "FSRPTH14": 0.5633667760000001}, "26113": {"FFRPTH14": 0.332513134, "FSRPTH14": 0.46551838799999995}, "26115": {"FFRPTH14": 0.5673323370000001, "FSRPTH14": 0.533959846}, "26117": {"FFRPTH14": 0.365700475, "FSRPTH14": 0.540600703}, "26119": {"FFRPTH14": 0.215053763, "FSRPTH14": 1.612903226}, "26121": {"FFRPTH14": 0.702084204, "FSRPTH14": 0.591839577}, "26123": {"FFRPTH14": 0.584551148, "FSRPTH14": 0.563674322}, "26125": {"FFRPTH14": 0.8094562590000001, "FSRPTH14": 0.8595423740000001}, "26127": {"FFRPTH14": 0.45764845, "FSRPTH14": 0.762747416}, "26129": {"FFRPTH14": 0.808023195, "FSRPTH14": 1.045677076}, "26131": {"FFRPTH14": 0.162022035, "FSRPTH14": 1.458198315}, "26133": {"FFRPTH14": 0.474772325, "FSRPTH14": 0.561094566}, "26135": {"FFRPTH14": 0.597300203, "FSRPTH14": 1.0751403659999998}, "26137": {"FFRPTH14": 0.827883103, "FSRPTH14": 0.952065568}, "26139": {"FFRPTH14": 0.550142603, "FSRPTH14": 0.463277981}, "26141": {"FFRPTH14": 0.46139649299999996, "FSRPTH14": 1.153491233}, "26143": {"FFRPTH14": 0.709663953, "FSRPTH14": 1.252348153}, "26145": {"FFRPTH14": 0.7230324290000001, "FSRPTH14": 0.564067852}, "26147": {"FFRPTH14": 0.518497233, "FSRPTH14": 0.662177189}, "26149": {"FFRPTH14": 0.492239031, "FSRPTH14": 0.623502773}, "26151": {"FFRPTH14": 0.360689639, "FSRPTH14": 0.673287325}, "26153": {"FFRPTH14": 0.856688288, "FSRPTH14": 1.468608493}, "26155": {"FFRPTH14": 0.565766759, "FSRPTH14": 0.49323255899999996}, "26157": {"FFRPTH14": 0.333333333, "FSRPTH14": 0.40740740700000005}, "26159": {"FFRPTH14": 0.545220016, "FSRPTH14": 0.771286852}, "26161": {"FFRPTH14": 0.753767436, "FSRPTH14": 0.815413844}, "26163": {"FFRPTH14": 0.719626655, "FSRPTH14": 0.61253261}, "26165": {"FFRPTH14": 0.729793833, "FSRPTH14": 0.8514261390000001}, "27001": {"FFRPTH14": 0.570667681, "FSRPTH14": 1.268150403}, "27003": {"FFRPTH14": 0.587953104, "FSRPTH14": 0.427070414}, "27005": {"FFRPTH14": 0.481072792, "FSRPTH14": 0.7817432879999999}, "27007": {"FFRPTH14": 0.503679047, "FSRPTH14": 0.700770848}, "27009": {"FFRPTH14": 0.35437655, "FSRPTH14": 0.68344049}, "27011": {"FFRPTH14": 0.585137507, "FSRPTH14": 1.36532085}, "27013": {"FFRPTH14": 0.8105834670000001, "FSRPTH14": 0.841171523}, "27015": {"FFRPTH14": 0.71168749, "FSRPTH14": 0.869840266}, "27017": {"FFRPTH14": 0.33735346200000005, "FSRPTH14": 0.618481347}, "27019": {"FFRPTH14": 0.554767922, "FSRPTH14": 0.462306602}, "27021": {"FFRPTH14": 0.350152316, "FSRPTH14": 1.29556357}, "27023": {"FFRPTH14": 0.5780346820000001, "FSRPTH14": 0.660611065}, "27025": {"FFRPTH14": 0.481258677, "FSRPTH14": 0.481258677}, "27027": {"FFRPTH14": 0.522142088, "FSRPTH14": 0.342655745}, "27029": {"FFRPTH14": 0.227505403, "FSRPTH14": 1.251279718}, "27031": {"FFRPTH14": 0.764379897, "FSRPTH14": 2.484234665}, "27033": {"FFRPTH14": 0.343849394, "FSRPTH14": 0.515774091}, "27035": {"FFRPTH14": 0.632261124, "FSRPTH14": 1.1696830790000001}, "27037": {"FFRPTH14": 0.649651297, "FSRPTH14": 0.562384705}, "27039": {"FFRPTH14": 0.442195254, "FSRPTH14": 0.294796836}, "27041": {"FFRPTH14": 0.7067137809999999, "FSRPTH14": 1.1416145690000001}, "27043": {"FFRPTH14": 0.422773393, "FSRPTH14": 1.056933484}, "27045": {"FFRPTH14": 0.33692722399999997, "FSRPTH14": 1.540238737}, "27047": {"FFRPTH14": 0.745784695, "FSRPTH14": 0.778210117}, "27049": {"FFRPTH14": 0.646231394, "FSRPTH14": 0.7539366259999999}, "27051": {"FFRPTH14": 0.167897918, "FSRPTH14": 0.5036937539999999}, "27053": {"FFRPTH14": 0.7961625790000001, "FSRPTH14": 0.753260554}, "27055": {"FFRPTH14": 0.160102466, "FSRPTH14": 0.907247305}, "27057": {"FFRPTH14": 0.534681379, "FSRPTH14": 0.9721479609999999}, "27059": {"FFRPTH14": 0.416525655, "FSRPTH14": 0.468591362}, "27061": {"FFRPTH14": 0.329026739, "FSRPTH14": 0.636118362}, "27063": {"FFRPTH14": 0.486902327, "FSRPTH14": 0.8764241890000001}, "27065": {"FFRPTH14": 0.25109855600000003, "FSRPTH14": 0.941619586}, "27067": {"FFRPTH14": 0.567577155, "FSRPTH14": 0.638524299}, "27069": {"FFRPTH14": 0.0, "FSRPTH14": 1.3528748590000002}, "27071": {"FFRPTH14": 0.622277536, "FSRPTH14": 1.244555072}, "27073": {"FFRPTH14": 0.435350457, "FSRPTH14": 1.015817733}, "27075": {"FFRPTH14": 0.74906367, "FSRPTH14": 1.966292135}, "27077": {"FFRPTH14": 0.510464523, "FSRPTH14": 1.78662583}, "27079": {"FFRPTH14": 0.216060497, "FSRPTH14": 0.828231905}, "27081": {"FFRPTH14": 0.0, "FSRPTH14": 1.036627505}, "27083": {"FFRPTH14": 0.9351256579999999, "FSRPTH14": 0.8571985190000001}, "27085": {"FFRPTH14": 0.668859038, "FSRPTH14": 0.501644278}, "27087": {"FFRPTH14": 0.544959128, "FSRPTH14": 0.544959128}, "27089": {"FFRPTH14": 0.212381863, "FSRPTH14": 0.955718382}, "27091": {"FFRPTH14": 0.692383778, "FSRPTH14": 0.59347181}, "27093": {"FFRPTH14": 0.47604622, "FSRPTH14": 0.649153936}, "27095": {"FFRPTH14": 0.46360686100000004, "FSRPTH14": 1.0044815329999999}, "27097": {"FFRPTH14": 0.548613228, "FSRPTH14": 0.975312405}, "27099": {"FFRPTH14": 0.584899423, "FSRPTH14": 0.635760242}, "27101": {"FFRPTH14": 0.354191263, "FSRPTH14": 1.4167650530000002}, "27103": {"FFRPTH14": 0.5741395460000001, "FSRPTH14": 0.39283232100000004}, "27105": {"FFRPTH14": 0.41685965700000005, "FSRPTH14": 0.787401575}, "27107": {"FFRPTH14": 0.15062509400000001, "FSRPTH14": 0.30125018800000003}, "27109": {"FFRPTH14": 0.698663224, "FSRPTH14": 0.6653935470000001}, "27111": {"FFRPTH14": 0.624620456, "FSRPTH14": 0.7460744340000001}, "27113": {"FFRPTH14": 0.42680324399999997, "FSRPTH14": 1.138141983}, "27115": {"FFRPTH14": 0.378071834, "FSRPTH14": 0.756143667}, "27117": {"FFRPTH14": 0.75422907, "FSRPTH14": 0.75422907}, "27119": {"FFRPTH14": 0.567751703, "FSRPTH14": 0.820085794}, "27121": {"FFRPTH14": 0.36416606, "FSRPTH14": 0.8193736340000001}, "27123": {"FFRPTH14": 0.696510875, "FSRPTH14": 0.657085731}, "27125": {"FFRPTH14": 0.24734108300000002, "FSRPTH14": 0.9893643329999999}, "27127": {"FFRPTH14": 0.451176281, "FSRPTH14": 1.095713825}, "27129": {"FFRPTH14": 0.399334443, "FSRPTH14": 0.798668885}, "27131": {"FFRPTH14": 0.53721355, "FSRPTH14": 0.414421881}, "27133": {"FFRPTH14": 0.62807495, "FSRPTH14": 0.732754109}, "27135": {"FFRPTH14": 0.5102366220000001, "FSRPTH14": 0.892914089}, "27137": {"FFRPTH14": 0.567308123, "FSRPTH14": 0.816127475}, "27139": {"FFRPTH14": 0.5512915970000001, "FSRPTH14": 0.357981557}, "27141": {"FFRPTH14": 0.49382174100000004, "FSRPTH14": 0.40603121}, "27143": {"FFRPTH14": 0.268132457, "FSRPTH14": 0.469231801}, "27145": {"FFRPTH14": 0.6801297479999999, "FSRPTH14": 0.778225385}, "27147": {"FFRPTH14": 0.765592103, "FSRPTH14": 0.738249528}, "27149": {"FFRPTH14": 0.510204082, "FSRPTH14": 1.12244898}, "27151": {"FFRPTH14": 0.741839763, "FSRPTH14": 0.9537939809999999}, "27153": {"FFRPTH14": 0.247279921, "FSRPTH14": 0.576986482}, "27155": {"FFRPTH14": 0.5904930620000001, "FSRPTH14": 0.29524653100000003}, "27157": {"FFRPTH14": 0.46812096200000003, "FSRPTH14": 1.12349031}, "27159": {"FFRPTH14": 0.9449734679999999, "FSRPTH14": 0.7269026679999999}, "27161": {"FFRPTH14": 0.525624179, "FSRPTH14": 0.5781865970000001}, "27163": {"FFRPTH14": 0.517484145, "FSRPTH14": 0.653875314}, "27165": {"FFRPTH14": 0.541369665, "FSRPTH14": 0.812054498}, "27167": {"FFRPTH14": 0.307929176, "FSRPTH14": 0.615858353}, "27169": {"FFRPTH14": 0.6654011, "FSRPTH14": 0.626259859}, "27171": {"FFRPTH14": 0.49261842100000003, "FSRPTH14": 0.523407072}, "27173": {"FFRPTH14": 0.69245227, "FSRPTH14": 0.890295776}, "28001": {"FFRPTH14": 0.945268929, "FSRPTH14": 0.6301792860000001}, "28003": {"FFRPTH14": 0.7223113959999999, "FSRPTH14": 0.8560727659999999}, "28005": {"FFRPTH14": 0.237548499, "FSRPTH14": 0.158365666}, "28007": {"FFRPTH14": 0.52183896, "FSRPTH14": 0.469655064}, "28009": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "28011": {"FFRPTH14": 0.5330490410000001, "FSRPTH14": 0.6811182179999999}, "28013": {"FFRPTH14": 0.271278399, "FSRPTH14": 0.40691759899999996}, "28015": {"FFRPTH14": 0.0, "FSRPTH14": 0.292568754}, "28017": {"FFRPTH14": 0.462080518, "FSRPTH14": 0.346560388}, "28019": {"FFRPTH14": 0.48227634399999997, "FSRPTH14": 0.24113817199999998}, "28021": {"FFRPTH14": 0.5506607929999999, "FSRPTH14": 0.0}, "28023": {"FFRPTH14": 0.24541382899999997, "FSRPTH14": 0.429474201}, "28025": {"FFRPTH14": 0.543881335, "FSRPTH14": 0.64276885}, "28027": {"FFRPTH14": 0.685290442, "FSRPTH14": 0.604668037}, "28029": {"FFRPTH14": 0.590339271, "FSRPTH14": 0.45143591299999997}, "28031": {"FFRPTH14": 0.565785413, "FSRPTH14": 0.565785413}, "28033": {"FFRPTH14": 0.7606209009999999, "FSRPTH14": 0.6845588109999999}, "28035": {"FFRPTH14": 0.995676667, "FSRPTH14": 0.8122625440000001}, "28037": {"FFRPTH14": 0.510660028, "FSRPTH14": 0.127665007}, "28039": {"FFRPTH14": 0.514955156, "FSRPTH14": 0.472042226}, "28041": {"FFRPTH14": 0.209409465, "FSRPTH14": 0.209409465}, "28043": {"FFRPTH14": 0.969260593, "FSRPTH14": 0.738484261}, "28045": {"FFRPTH14": 0.6528977779999999, "FSRPTH14": 0.805240593}, "28047": {"FFRPTH14": 0.8138331540000001, "FSRPTH14": 0.884164414}, "28049": {"FFRPTH14": 0.943671044, "FSRPTH14": 0.41029175799999995}, "28051": {"FFRPTH14": 0.216696462, "FSRPTH14": 0.108348231}, "28053": {"FFRPTH14": 0.34321015899999996, "FSRPTH14": 0.22880677300000002}, "28055": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "28057": {"FFRPTH14": 0.51005228, "FSRPTH14": 0.552556637}, "28059": {"FFRPTH14": 0.588081084, "FSRPTH14": 0.58099577}, "28061": {"FFRPTH14": 0.24094934, "FSRPTH14": 0.24094934}, "28063": {"FFRPTH14": 0.263192525, "FSRPTH14": 0.0}, "28065": {"FFRPTH14": 0.42294028100000003, "FSRPTH14": 0.169176112}, "28067": {"FFRPTH14": 0.732171621, "FSRPTH14": 0.307512081}, "28069": {"FFRPTH14": 0.295188429, "FSRPTH14": 0.295188429}, "28071": {"FFRPTH14": 0.812393728, "FSRPTH14": 1.001322501}, "28073": {"FFRPTH14": 0.948435082, "FSRPTH14": 0.632290055}, "28075": {"FFRPTH14": 0.827700372, "FSRPTH14": 0.614504822}, "28077": {"FFRPTH14": 0.47992321200000004, "FSRPTH14": 0.15997440400000001}, "28079": {"FFRPTH14": 0.517397491, "FSRPTH14": 0.388048118}, "28081": {"FFRPTH14": 0.9384604559999999, "FSRPTH14": 0.9736527229999999}, "28083": {"FFRPTH14": 0.6683215579999999, "FSRPTH14": 0.6683215579999999}, "28085": {"FFRPTH14": 0.805176132, "FSRPTH14": 0.431344357}, "28087": {"FFRPTH14": 0.6696802279999999, "FSRPTH14": 0.7868742679999999}, "28089": {"FFRPTH14": 0.983400205, "FSRPTH14": 0.7375501529999999}, "28091": {"FFRPTH14": 0.811813824, "FSRPTH14": 0.541209216}, "28093": {"FFRPTH14": 0.358779047, "FSRPTH14": 0.24838549399999998}, "28095": {"FFRPTH14": 0.5555092629999999, "FSRPTH14": 0.583284726}, "28097": {"FFRPTH14": 0.576923077, "FSRPTH14": 0.480769231}, "28099": {"FFRPTH14": 0.610894281, "FSRPTH14": 0.373324283}, "28101": {"FFRPTH14": 0.595456211, "FSRPTH14": 0.32063026699999997}, "28103": {"FFRPTH14": 0.26990553300000003, "FSRPTH14": 0.0}, "28105": {"FFRPTH14": 0.7083012909999999, "FSRPTH14": 0.9106730890000001}, "28107": {"FFRPTH14": 0.580652654, "FSRPTH14": 0.43548949}, "28109": {"FFRPTH14": 0.669998551, "FSRPTH14": 0.5432420689999999}, "28111": {"FFRPTH14": 0.24535863300000002, "FSRPTH14": 0.163572422}, "28113": {"FFRPTH14": 0.773877877, "FSRPTH14": 0.574167457}, "28115": {"FFRPTH14": 0.549273021, "FSRPTH14": 0.549273021}, "28117": {"FFRPTH14": 0.629227623, "FSRPTH14": 0.393267264}, "28119": {"FFRPTH14": 0.5209690020000001, "FSRPTH14": 0.130242251}, "28121": {"FFRPTH14": 0.837441751, "FSRPTH14": 0.479502938}, "28123": {"FFRPTH14": 0.597308598, "FSRPTH14": 0.456765398}, "28125": {"FFRPTH14": 0.645577792, "FSRPTH14": 0.21519259699999999}, "28127": {"FFRPTH14": 0.69183993, "FSRPTH14": 0.436951535}, "28129": {"FFRPTH14": 0.37064492200000004, "FSRPTH14": 0.123548307}, "28131": {"FFRPTH14": 0.783216783, "FSRPTH14": 0.391608392}, "28133": {"FFRPTH14": 0.43642711700000003, "FSRPTH14": 0.327320338}, "28135": {"FFRPTH14": 0.406476526, "FSRPTH14": 0.33873043799999997}, "28137": {"FFRPTH14": 0.67366331, "FSRPTH14": 0.177279818}, "28139": {"FFRPTH14": 0.453741095, "FSRPTH14": 0.31761876699999997}, "28141": {"FFRPTH14": 0.566426365, "FSRPTH14": 0.978372812}, "28143": {"FFRPTH14": 0.943574259, "FSRPTH14": 0.566144556}, "28145": {"FFRPTH14": 0.533864825, "FSRPTH14": 0.462682849}, "28147": {"FFRPTH14": 0.5383942389999999, "FSRPTH14": 0.6729927990000001}, "28149": {"FFRPTH14": 0.750265719, "FSRPTH14": 0.625221433}, "28151": {"FFRPTH14": 0.755749826, "FSRPTH14": 0.388087749}, "28153": {"FFRPTH14": 0.634455832, "FSRPTH14": 0.683260127}, "28155": {"FFRPTH14": 0.601684717, "FSRPTH14": 0.300842359}, "28157": {"FFRPTH14": 0.435208356, "FSRPTH14": 0.0}, "28159": {"FFRPTH14": 0.7035393440000001, "FSRPTH14": 0.4870657}, "28161": {"FFRPTH14": 0.488758553, "FSRPTH14": 0.40729879399999996}, "28163": {"FFRPTH14": 0.359492397, "FSRPTH14": 0.503289355}, "29001": {"FFRPTH14": 0.78118897, "FSRPTH14": 0.546832279}, "29003": {"FFRPTH14": 0.23016284, "FSRPTH14": 0.28770355}, "29005": {"FFRPTH14": 0.371609067, "FSRPTH14": 1.114827202}, "29007": {"FFRPTH14": 0.6180708460000001, "FSRPTH14": 0.502182563}, "29009": {"FFRPTH14": 0.42061578200000005, "FSRPTH14": 0.644944198}, "29011": {"FFRPTH14": 0.49763622799999996, "FSRPTH14": 0.663514971}, "29013": {"FFRPTH14": 0.542691751, "FSRPTH14": 0.6632899179999999}, "29015": {"FFRPTH14": 0.26587259399999996, "FSRPTH14": 1.169839413}, "29017": {"FFRPTH14": 0.161368404, "FSRPTH14": 0.484105212}, "29019": {"FFRPTH14": 0.804784706, "FSRPTH14": 0.903211612}, "29021": {"FFRPTH14": 0.7934201999999999, "FSRPTH14": 0.715195673}, "29023": {"FFRPTH14": 0.7213999809999999, "FSRPTH14": 0.7446709490000001}, "29025": {"FFRPTH14": 0.221385876, "FSRPTH14": 0.442771751}, "29027": {"FFRPTH14": 0.49162011200000005, "FSRPTH14": 0.558659218}, "29029": {"FFRPTH14": 0.5224779079999999, "FSRPTH14": 1.862747325}, "29031": {"FFRPTH14": 0.807247287, "FSRPTH14": 0.8841279809999999}, "29033": {"FFRPTH14": 0.331748314, "FSRPTH14": 0.9952449409999999}, "29035": {"FFRPTH14": 0.479386385, "FSRPTH14": 0.479386385}, "29037": {"FFRPTH14": 0.505506051, "FSRPTH14": 0.574889235}, "29039": {"FFRPTH14": 0.860091743, "FSRPTH14": 0.7167431190000001}, "29041": {"FFRPTH14": 0.12997140599999998, "FSRPTH14": 1.03977125}, "29043": {"FFRPTH14": 0.511565024, "FSRPTH14": 0.548105382}, "29045": {"FFRPTH14": 0.289142692, "FSRPTH14": 0.72285673}, "29047": {"FFRPTH14": 0.6590152429999999, "FSRPTH14": 0.629060005}, "29049": {"FFRPTH14": 0.29558106300000003, "FSRPTH14": 0.7882161679999999}, "29051": {"FFRPTH14": 0.796791933, "FSRPTH14": 0.862102747}, "29053": {"FFRPTH14": 0.909866363, "FSRPTH14": 0.682399773}, "29055": {"FFRPTH14": 0.405679513, "FSRPTH14": 0.93306288}, "29057": {"FFRPTH14": 0.393287887, "FSRPTH14": 0.917671736}, "29059": {"FFRPTH14": 0.549148819, "FSRPTH14": 0.549148819}, "29061": {"FFRPTH14": 0.120525491, "FSRPTH14": 0.602627456}, "29063": {"FFRPTH14": 0.315159155, "FSRPTH14": 0.315159155}, "29065": {"FFRPTH14": 0.38326413299999995, "FSRPTH14": 0.574896199}, "29067": {"FFRPTH14": 0.295290123, "FSRPTH14": 0.516757714}, "29069": {"FFRPTH14": 0.446656457, "FSRPTH14": 0.8295048490000001}, "29071": {"FFRPTH14": 0.607342972, "FSRPTH14": 0.617138827}, "29073": {"FFRPTH14": 0.739943495, "FSRPTH14": 1.547154581}, "29075": {"FFRPTH14": 0.439496045, "FSRPTH14": 0.878992089}, "29077": {"FFRPTH14": 0.930509156, "FSRPTH14": 0.8710405259999999}, "29079": {"FFRPTH14": 0.294204178, "FSRPTH14": 0.588408355}, "29081": {"FFRPTH14": 0.810278967, "FSRPTH14": 0.810278967}, "29083": {"FFRPTH14": 0.7263482840000001, "FSRPTH14": 0.8625385870000001}, "29085": {"FFRPTH14": 0.108471635, "FSRPTH14": 1.193187981}, "29087": {"FFRPTH14": 0.664304694, "FSRPTH14": 1.771479185}, "29089": {"FFRPTH14": 0.19686977100000003, "FSRPTH14": 0.885913968}, "29091": {"FFRPTH14": 0.572523834, "FSRPTH14": 0.821447241}, "29093": {"FFRPTH14": 0.097399435, "FSRPTH14": 0.681796046}, "29095": {"FFRPTH14": 0.7128314040000001, "FSRPTH14": 0.775771344}, "29097": {"FFRPTH14": 0.816722391, "FSRPTH14": 0.740154667}, "29099": {"FFRPTH14": 0.547782827, "FSRPTH14": 0.41308213200000005}, "29101": {"FFRPTH14": 0.607041684, "FSRPTH14": 0.496670468}, "29103": {"FFRPTH14": 0.0, "FSRPTH14": 0.75}, "29105": {"FFRPTH14": 0.6490025110000001, "FSRPTH14": 0.7618725129999999}, "29107": {"FFRPTH14": 0.5506607929999999, "FSRPTH14": 0.856583456}, "29109": {"FFRPTH14": 0.447097809, "FSRPTH14": 0.657496778}, "29111": {"FFRPTH14": 0.295916354, "FSRPTH14": 0.789110278}, "29113": {"FFRPTH14": 0.331803351, "FSRPTH14": 0.497705027}, "29115": {"FFRPTH14": 0.48736902, "FSRPTH14": 0.56859719}, "29117": {"FFRPTH14": 0.265727762, "FSRPTH14": 0.664319405}, "29119": {"FFRPTH14": 0.307017544, "FSRPTH14": 0.43859649100000003}, "29121": {"FFRPTH14": 0.452225596, "FSRPTH14": 0.969054849}, "29123": {"FFRPTH14": 0.64683053, "FSRPTH14": 0.5659767139999999}, "29125": {"FFRPTH14": 0.332852546, "FSRPTH14": 0.7766559409999999}, "29127": {"FFRPTH14": 0.656984786, "FSRPTH14": 0.829875519}, "29129": {"FFRPTH14": 0.537778973, "FSRPTH14": 1.075557946}, "29131": {"FFRPTH14": 0.596634979, "FSRPTH14": 1.073942962}, "29133": {"FFRPTH14": 0.42158516, "FSRPTH14": 0.281056773}, "29135": {"FFRPTH14": 0.504540868, "FSRPTH14": 0.504540868}, "29137": {"FFRPTH14": 0.34455036200000005, "FSRPTH14": 1.033651085}, "29139": {"FFRPTH14": 0.42226163299999997, "FSRPTH14": 0.50671396}, "29141": {"FFRPTH14": 0.39525691700000004, "FSRPTH14": 1.4822134390000001}, "29143": {"FFRPTH14": 0.547285464, "FSRPTH14": 0.9303852890000001}, "29145": {"FFRPTH14": 0.460766579, "FSRPTH14": 0.426635721}, "29147": {"FFRPTH14": 0.51990815, "FSRPTH14": 0.51990815}, "29149": {"FFRPTH14": 0.274951883, "FSRPTH14": 0.733205022}, "29151": {"FFRPTH14": 0.291906882, "FSRPTH14": 0.7297672040000001}, "29153": {"FFRPTH14": 0.105351875, "FSRPTH14": 0.421407501}, "29155": {"FFRPTH14": 0.33994334299999995, "FSRPTH14": 0.793201133}, "29157": {"FFRPTH14": 0.572856994, "FSRPTH14": 0.624934903}, "29159": {"FFRPTH14": 0.663114269, "FSRPTH14": 0.663114269}, "29161": {"FFRPTH14": 0.713537137, "FSRPTH14": 0.735835173}, "29163": {"FFRPTH14": 0.485410711, "FSRPTH14": 0.9168868990000001}, "29165": {"FFRPTH14": 0.654091235, "FSRPTH14": 0.854538549}, "29167": {"FFRPTH14": 0.41862562, "FSRPTH14": 0.579635474}, "29169": {"FFRPTH14": 0.5427052920000001, "FSRPTH14": 0.561419268}, "29171": {"FFRPTH14": 0.207082212, "FSRPTH14": 0.41416442299999995}, "29173": {"FFRPTH14": 0.09751340800000001, "FSRPTH14": 0.19502681600000002}, "29175": {"FFRPTH14": 0.5185067010000001, "FSRPTH14": 0.757817486}, "29177": {"FFRPTH14": 0.305024184, "FSRPTH14": 0.261449301}, "29179": {"FFRPTH14": 0.152322925, "FSRPTH14": 0.45696877399999997}, "29181": {"FFRPTH14": 0.5011095999999999, "FSRPTH14": 0.21476125699999998}, "29183": {"FFRPTH14": 0.711475574, "FSRPTH14": 0.719380858}, "29185": {"FFRPTH14": 0.10574177900000001, "FSRPTH14": 0.951676007}, "29186": {"FFRPTH14": 0.334933572, "FSRPTH14": 0.893156191}, "29187": {"FFRPTH14": 0.773195876, "FSRPTH14": 0.591267435}, "29189": {"FFRPTH14": 0.80249452, "FSRPTH14": 0.7655638020000001}, "29195": {"FFRPTH14": 0.513984666, "FSRPTH14": 0.685312888}, "29197": {"FFRPTH14": 0.0, "FSRPTH14": 0.457665904}, "29199": {"FFRPTH14": 0.411268764, "FSRPTH14": 0.822537528}, "29201": {"FFRPTH14": 0.539804128, "FSRPTH14": 0.7197388379999999}, "29203": {"FFRPTH14": 0.120062432, "FSRPTH14": 0.720374595}, "29205": {"FFRPTH14": 0.163719712, "FSRPTH14": 1.309757695}, "29207": {"FFRPTH14": 0.502226538, "FSRPTH14": 0.602671845}, "29209": {"FFRPTH14": 0.450102881, "FSRPTH14": 0.932355967}, "29211": {"FFRPTH14": 0.46794571799999995, "FSRPTH14": 0.155981906}, "29213": {"FFRPTH14": 0.995758805, "FSRPTH14": 1.641158031}, "29215": {"FFRPTH14": 0.428983699, "FSRPTH14": 0.623976289}, "29217": {"FFRPTH14": 0.571401362, "FSRPTH14": 0.571401362}, "29219": {"FFRPTH14": 0.5413045439999999, "FSRPTH14": 0.45108712}, "29221": {"FFRPTH14": 0.319017426, "FSRPTH14": 0.398771783}, "29223": {"FFRPTH14": 0.37169194200000005, "FSRPTH14": 0.669045495}, "29225": {"FFRPTH14": 0.5150726520000001, "FSRPTH14": 0.298199957}, "29227": {"FFRPTH14": 0.0, "FSRPTH14": 1.447178003}, "29229": {"FFRPTH14": 0.492045268, "FSRPTH14": 0.546716965}, "29510": {"FFRPTH14": 0.8789643970000001, "FSRPTH14": 1.140448429}, "30001": {"FFRPTH14": 0.74906367, "FSRPTH14": 1.7121455319999999}, "30003": {"FFRPTH14": 0.150579732, "FSRPTH14": 0.451739196}, "30005": {"FFRPTH14": 0.302160447, "FSRPTH14": 0.302160447}, "30007": {"FFRPTH14": 0.176460208, "FSRPTH14": 0.882301041}, "30009": {"FFRPTH14": 0.7693047409999999, "FSRPTH14": 1.346283296}, "30011": {"FFRPTH14": 0.0, "FSRPTH14": 0.855431993}, "30013": {"FFRPTH14": 0.83794812, "FSRPTH14": 0.813659769}, "30015": {"FFRPTH14": 0.169664065, "FSRPTH14": 1.017984391}, "30017": {"FFRPTH14": 0.6615944429999999, "FSRPTH14": 1.0750909690000001}, "30019": {"FFRPTH14": 1.115448968, "FSRPTH14": 1.115448968}, "30021": {"FFRPTH14": 0.525320445, "FSRPTH14": 1.15570498}, "30023": {"FFRPTH14": 0.327868852, "FSRPTH14": 1.092896175}, "30025": {"FFRPTH14": 0.965250965, "FSRPTH14": 1.930501931}, "30027": {"FFRPTH14": 0.611781157, "FSRPTH14": 1.310959622}, "30029": {"FFRPTH14": 0.7163625640000001, "FSRPTH14": 1.1482870509999998}, "30031": {"FFRPTH14": 0.996834793, "FSRPTH14": 1.459283923}, "30033": {"FFRPTH14": 0.0, "FSRPTH14": 0.76394194}, "30035": {"FFRPTH14": 0.657126168, "FSRPTH14": 0.876168224}, "30037": {"FFRPTH14": 1.17370892, "FSRPTH14": 0.0}, "30039": {"FFRPTH14": 0.934870676, "FSRPTH14": 1.869741352}, "30041": {"FFRPTH14": 0.843576765, "FSRPTH14": 0.964087732}, "30043": {"FFRPTH14": 0.259560478, "FSRPTH14": 0.865201592}, "30045": {"FFRPTH14": 0.0, "FSRPTH14": 1.506780512}, "30047": {"FFRPTH14": 0.6185779579999999, "FSRPTH14": 0.6529434000000001}, "30049": {"FFRPTH14": 0.652939747, "FSRPTH14": 1.017371234}, "30051": {"FFRPTH14": 0.0, "FSRPTH14": 0.847816872}, "30053": {"FFRPTH14": 0.418300654, "FSRPTH14": 1.307189542}, "30055": {"FFRPTH14": 1.180637544, "FSRPTH14": 1.180637544}, "30057": {"FFRPTH14": 0.127877238, "FSRPTH14": 2.046035806}, "30059": {"FFRPTH14": 0.539665407, "FSRPTH14": 2.698327037}, "30061": {"FFRPTH14": 0.234907212, "FSRPTH14": 1.174536058}, "30063": {"FFRPTH14": 0.7454474459999999, "FSRPTH14": 0.931809307}, "30065": {"FFRPTH14": 0.0, "FSRPTH14": 0.871649597}, "30067": {"FFRPTH14": 0.755667506, "FSRPTH14": 2.518891688}, "30069": {"FFRPTH14": 0.0, "FSRPTH14": 2.06185567}, "30071": {"FFRPTH14": 0.477099237, "FSRPTH14": 1.43129771}, "30073": {"FFRPTH14": 0.321595112, "FSRPTH14": 0.964785335}, "30075": {"FFRPTH14": 0.560852496, "FSRPTH14": 2.8042624789999997}, "30077": {"FFRPTH14": 0.43421624, "FSRPTH14": 1.447387466}, "30079": {"FFRPTH14": 0.0, "FSRPTH14": 1.7421602790000001}, "30081": {"FFRPTH14": 0.41433097700000004, "FSRPTH14": 0.9992688279999999}, "30083": {"FFRPTH14": 0.8638562540000001, "FSRPTH14": 0.95024188}, "30085": {"FFRPTH14": 0.44122838, "FSRPTH14": 0.352982704}, "30087": {"FFRPTH14": 0.536135535, "FSRPTH14": 0.536135535}, "30089": {"FFRPTH14": 0.615980289, "FSRPTH14": 1.231960577}, "30091": {"FFRPTH14": 0.27056277100000004, "FSRPTH14": 1.6233766230000002}, "30093": {"FFRPTH14": 0.951557093, "FSRPTH14": 1.038062284}, "30095": {"FFRPTH14": 0.322927879, "FSRPTH14": 0.645855759}, "30097": {"FFRPTH14": 0.0, "FSRPTH14": 1.909959072}, "30099": {"FFRPTH14": 0.0, "FSRPTH14": 0.8245382590000001}, "30101": {"FFRPTH14": 0.388349515, "FSRPTH14": 2.13592233}, "30103": {"FFRPTH14": 0.0, "FSRPTH14": 1.445086705}, "30105": {"FFRPTH14": 1.570680628, "FSRPTH14": 1.178010471}, "30107": {"FFRPTH14": 0.0, "FSRPTH14": 2.378686965}, "30109": {"FFRPTH14": 0.89206066, "FSRPTH14": 0.89206066}, "30111": {"FFRPTH14": 0.745338422, "FSRPTH14": 0.7903157409999999}, "31001": {"FFRPTH14": 1.080840512, "FSRPTH14": 0.635788537}, "31003": {"FFRPTH14": 0.625195374, "FSRPTH14": 1.0940919040000001}, "31005": {"FFRPTH14": 0.0, "FSRPTH14": 2.207505519}, "31007": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31009": {"FFRPTH14": 0.0, "FSRPTH14": 1.984126984}, "31011": {"FFRPTH14": 0.186811134, "FSRPTH14": 0.560433402}, "31013": {"FFRPTH14": 0.44091710799999995, "FSRPTH14": 1.3227513229999999}, "31015": {"FFRPTH14": 0.0, "FSRPTH14": 0.491883915}, "31017": {"FFRPTH14": 0.0, "FSRPTH14": 1.7001020059999998}, "31019": {"FFRPTH14": 0.8709356340000001, "FSRPTH14": 0.9124087590000001}, "31021": {"FFRPTH14": 0.304275065, "FSRPTH14": 1.217100259}, "31023": {"FFRPTH14": 0.121226815, "FSRPTH14": 0.48490726100000003}, "31025": {"FFRPTH14": 0.391788121, "FSRPTH14": 0.587682181}, "31027": {"FFRPTH14": 0.116144019, "FSRPTH14": 0.6968641109999999}, "31029": {"FFRPTH14": 0.251382604, "FSRPTH14": 1.256913022}, "31031": {"FFRPTH14": 0.867754252, "FSRPTH14": 1.214855953}, "31033": {"FFRPTH14": 0.492707923, "FSRPTH14": 1.281040599}, "31035": {"FFRPTH14": 0.15835312699999998, "FSRPTH14": 0.950118765}, "31037": {"FFRPTH14": 0.380807312, "FSRPTH14": 0.666412795}, "31039": {"FFRPTH14": 0.664672649, "FSRPTH14": 1.218566523}, "31041": {"FFRPTH14": 0.279642058, "FSRPTH14": 1.398210291}, "31043": {"FFRPTH14": 0.623501199, "FSRPTH14": 0.527577938}, "31045": {"FFRPTH14": 0.8847600090000001, "FSRPTH14": 1.548330015}, "31047": {"FFRPTH14": 0.705511288, "FSRPTH14": 0.747011952}, "31049": {"FFRPTH14": 0.515463918, "FSRPTH14": 2.06185567}, "31051": {"FFRPTH14": 0.0, "FSRPTH14": 0.518851608}, "31053": {"FFRPTH14": 0.6803831920000001, "FSRPTH14": 0.762029175}, "31055": {"FFRPTH14": 0.7473621429999999, "FSRPTH14": 0.79890436}, "31057": {"FFRPTH14": 0.530222694, "FSRPTH14": 1.0604453870000001}, "31059": {"FFRPTH14": 0.529941706, "FSRPTH14": 1.236530648}, "31061": {"FFRPTH14": 0.0, "FSRPTH14": 0.975292588}, "31063": {"FFRPTH14": 0.0, "FSRPTH14": 0.36968576700000005}, "31065": {"FFRPTH14": 0.409165303, "FSRPTH14": 0.818330606}, "31067": {"FFRPTH14": 0.692424872, "FSRPTH14": 0.830909846}, "31069": {"FFRPTH14": 0.0, "FSRPTH14": 1.5698587130000001}, "31071": {"FFRPTH14": 0.49925112299999996, "FSRPTH14": 2.496255617}, "31073": {"FFRPTH14": 0.507614213, "FSRPTH14": 0.507614213}, "31075": {"FFRPTH14": 0.0, "FSRPTH14": 1.615508885}, "31077": {"FFRPTH14": 0.0, "FSRPTH14": 1.208702659}, "31079": {"FFRPTH14": 0.796851623, "FSRPTH14": 0.829376179}, "31081": {"FFRPTH14": 0.4378763, "FSRPTH14": 0.766283525}, "31083": {"FFRPTH14": 0.8591065290000001, "FSRPTH14": 1.7182130580000001}, "31085": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31087": {"FFRPTH14": 0.0, "FSRPTH14": 1.034126163}, "31089": {"FFRPTH14": 0.48063058700000005, "FSRPTH14": 1.345765645}, "31091": {"FFRPTH14": 1.373626374, "FSRPTH14": 2.7472527469999997}, "31093": {"FFRPTH14": 0.314366551, "FSRPTH14": 0.7859163779999999}, "31095": {"FFRPTH14": 0.545330607, "FSRPTH14": 1.090661213}, "31097": {"FFRPTH14": 0.38572806200000004, "FSRPTH14": 1.157184185}, "31099": {"FFRPTH14": 0.45153522, "FSRPTH14": 0.45153522}, "31101": {"FFRPTH14": 0.985100357, "FSRPTH14": 1.60078808}, "31103": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31105": {"FFRPTH14": 0.538647994, "FSRPTH14": 0.538647994}, "31107": {"FFRPTH14": 0.117896722, "FSRPTH14": 1.178967225}, "31109": {"FFRPTH14": 0.9310956109999999, "FSRPTH14": 0.6693285179999999}, "31111": {"FFRPTH14": 0.6980315509999999, "FSRPTH14": 0.642189027}, "31113": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31115": {"FFRPTH14": 0.0, "FSRPTH14": 3.4013605439999997}, "31117": {"FFRPTH14": 0.0, "FSRPTH14": 2.008032129}, "31119": {"FFRPTH14": 0.909762893, "FSRPTH14": 0.966623074}, "31121": {"FFRPTH14": 0.515065671, "FSRPTH14": 0.7725985059999999}, "31123": {"FFRPTH14": 1.439736734, "FSRPTH14": 0.822706705}, "31125": {"FFRPTH14": 0.56022409, "FSRPTH14": 1.120448179}, "31127": {"FFRPTH14": 0.557491289, "FSRPTH14": 0.975609756}, "31129": {"FFRPTH14": 0.457770657, "FSRPTH14": 0.686655985}, "31131": {"FFRPTH14": 0.506425271, "FSRPTH14": 0.6330315879999999}, "31133": {"FFRPTH14": 0.370096225, "FSRPTH14": 0.74019245}, "31135": {"FFRPTH14": 0.0, "FSRPTH14": 0.691802145}, "31137": {"FFRPTH14": 0.9796451509999999, "FSRPTH14": 0.761946228}, "31139": {"FFRPTH14": 0.5554012770000001, "FSRPTH14": 0.5554012770000001}, "31141": {"FFRPTH14": 0.704096002, "FSRPTH14": 0.6428702629999999}, "31143": {"FFRPTH14": 0.37943464200000004, "FSRPTH14": 0.569151964}, "31145": {"FFRPTH14": 1.012238888, "FSRPTH14": 0.368086869}, "31147": {"FFRPTH14": 0.61515748, "FSRPTH14": 1.230314961}, "31149": {"FFRPTH14": 0.0, "FSRPTH14": 2.079002079}, "31151": {"FFRPTH14": 0.491159136, "FSRPTH14": 0.701655908}, "31153": {"FFRPTH14": 0.679470129, "FSRPTH14": 0.42394290100000004}, "31155": {"FFRPTH14": 0.382427458, "FSRPTH14": 0.956068646}, "31157": {"FFRPTH14": 0.9872480459999999, "FSRPTH14": 0.9872480459999999}, "31159": {"FFRPTH14": 0.5830903789999999, "FSRPTH14": 0.466472303}, "31161": {"FFRPTH14": 0.9507510929999999, "FSRPTH14": 1.140901312}, "31163": {"FFRPTH14": 0.0, "FSRPTH14": 0.975927131}, "31165": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "31167": {"FFRPTH14": 0.164771791, "FSRPTH14": 0.49431537299999995}, "31169": {"FFRPTH14": 0.19120458899999998, "FSRPTH14": 1.912045889}, "31171": {"FFRPTH14": 0.0, "FSRPTH14": 1.455604076}, "31173": {"FFRPTH14": 0.43047783, "FSRPTH14": 0.28698522}, "31175": {"FFRPTH14": 0.7136060890000001, "FSRPTH14": 0.47573739299999995}, "31177": {"FFRPTH14": 0.44426893100000003, "FSRPTH14": 0.789811433}, "31179": {"FFRPTH14": 0.95429965, "FSRPTH14": 0.8482663559999999}, "31181": {"FFRPTH14": 0.27337342800000003, "FSRPTH14": 0.27337342800000003}, "31183": {"FFRPTH14": 0.0, "FSRPTH14": 2.6109660569999997}, "31185": {"FFRPTH14": 1.005963929, "FSRPTH14": 0.9341093629999999}, "32001": {"FFRPTH14": 0.708658135, "FSRPTH14": 0.500229272}, "32003": {"FFRPTH14": 0.8242816159999999, "FSRPTH14": 0.617969629}, "32005": {"FFRPTH14": 0.736284079, "FSRPTH14": 1.051834399}, "32007": {"FFRPTH14": 0.7391123070000001, "FSRPTH14": 0.549596331}, "32009": {"FFRPTH14": 0.0, "FSRPTH14": 1.216545012}, "32011": {"FFRPTH14": 0.991080278, "FSRPTH14": 0.495540139}, "32013": {"FFRPTH14": 0.636610915, "FSRPTH14": 1.041726952}, "32015": {"FFRPTH14": 0.332834082, "FSRPTH14": 0.998502247}, "32017": {"FFRPTH14": 0.192901235, "FSRPTH14": 0.385802469}, "32019": {"FFRPTH14": 0.36687327399999997, "FSRPTH14": 0.444109753}, "32021": {"FFRPTH14": 0.444444444, "FSRPTH14": 0.444444444}, "32023": {"FFRPTH14": 0.638569604, "FSRPTH14": 0.449363795}, "32027": {"FFRPTH14": 0.597193192, "FSRPTH14": 0.149298298}, "32029": {"FFRPTH14": 0.0, "FSRPTH14": 2.044989775}, "32031": {"FFRPTH14": 0.754411718, "FSRPTH14": 0.74532242}, "32033": {"FFRPTH14": 0.39864460799999996, "FSRPTH14": 0.996611521}, "32510": {"FFRPTH14": 0.898719783, "FSRPTH14": 0.990425883}, "33001": {"FFRPTH14": 0.795953901, "FSRPTH14": 1.4095017}, "33003": {"FFRPTH14": 0.9704846090000001, "FSRPTH14": 2.2363341}, "33005": {"FFRPTH14": 0.630624713, "FSRPTH14": 0.748866846}, "33007": {"FFRPTH14": 0.758221969, "FSRPTH14": 1.263703282}, "33009": {"FFRPTH14": 0.858819068, "FSRPTH14": 1.449954271}, "33011": {"FFRPTH14": 0.7132562, "FSRPTH14": 0.8736771440000001}, "33013": {"FFRPTH14": 0.72704541, "FSRPTH14": 0.6998661420000001}, "33015": {"FFRPTH14": 0.908120191, "FSRPTH14": 1.014566514}, "33017": {"FFRPTH14": 0.6926531, "FSRPTH14": 0.7643068690000001}, "33019": {"FFRPTH14": 0.417604343, "FSRPTH14": 0.510405308}, "34001": {"FFRPTH14": 0.755789237, "FSRPTH14": 1.188187886}, "34003": {"FFRPTH14": 0.816219852, "FSRPTH14": 1.000458454}, "34005": {"FFRPTH14": 0.689314732, "FSRPTH14": 0.6181596629999999}, "34007": {"FFRPTH14": 0.673139767, "FSRPTH14": 0.647701345}, "34009": {"FFRPTH14": 1.783017285, "FSRPTH14": 3.25138446}, "34011": {"FFRPTH14": 0.635368418, "FSRPTH14": 0.501941051}, "34013": {"FFRPTH14": 0.69370874, "FSRPTH14": 0.687425147}, "34015": {"FFRPTH14": 0.58772783, "FSRPTH14": 0.546483772}, "34017": {"FFRPTH14": 0.756222772, "FSRPTH14": 0.774156909}, "34019": {"FFRPTH14": 0.785296707, "FSRPTH14": 1.102588306}, "34021": {"FFRPTH14": 0.753626153, "FSRPTH14": 0.726710933}, "34023": {"FFRPTH14": 0.783214576, "FSRPTH14": 0.6779888009999999}, "34025": {"FFRPTH14": 0.842233731, "FSRPTH14": 1.09013649}, "34027": {"FFRPTH14": 0.826451242, "FSRPTH14": 0.952520076}, "34029": {"FFRPTH14": 0.701005115, "FSRPTH14": 0.736822895}, "34031": {"FFRPTH14": 0.650478721, "FSRPTH14": 0.752668731}, "34033": {"FFRPTH14": 0.525380515, "FSRPTH14": 0.47902341}, "34035": {"FFRPTH14": 0.790815713, "FSRPTH14": 0.859974501}, "34037": {"FFRPTH14": 0.5175661970000001, "FSRPTH14": 0.7867006190000001}, "34039": {"FFRPTH14": 0.661917499, "FSRPTH14": 0.7975563309999999}, "34041": {"FFRPTH14": 0.7014787170000001, "FSRPTH14": 0.841774461}, "35001": {"FFRPTH14": 0.8259924120000001, "FSRPTH14": 0.626155538}, "35003": {"FFRPTH14": 0.0, "FSRPTH14": 0.562429696}, "35005": {"FFRPTH14": 0.637542123, "FSRPTH14": 0.5920034000000001}, "35006": {"FFRPTH14": 0.511901715, "FSRPTH14": 0.329079674}, "35007": {"FFRPTH14": 1.261829653, "FSRPTH14": 1.41955836}, "35009": {"FFRPTH14": 0.667072142, "FSRPTH14": 0.49049422200000004}, "35011": {"FFRPTH14": 0.547945205, "FSRPTH14": 1.6438356159999998}, "35013": {"FFRPTH14": 0.58967783, "FSRPTH14": 0.50543814}, "35015": {"FFRPTH14": 0.656086532, "FSRPTH14": 0.620622396}, "35017": {"FFRPTH14": 0.756117679, "FSRPTH14": 0.859224636}, "35019": {"FFRPTH14": 0.223813787, "FSRPTH14": 1.342882722}, "35021": {"FFRPTH14": 0.0, "FSRPTH14": 1.4641288430000001}, "35023": {"FFRPTH14": 0.657894737, "FSRPTH14": 0.8771929820000001}, "35025": {"FFRPTH14": 0.6285804079999999, "FSRPTH14": 0.5428648979999999}, "35027": {"FFRPTH14": 1.0149193140000001, "FSRPTH14": 1.5731249369999998}, "35028": {"FFRPTH14": 0.565546884, "FSRPTH14": 0.508992195}, "35029": {"FFRPTH14": 0.7700725490000001, "FSRPTH14": 0.8916629509999999}, "35031": {"FFRPTH14": 0.674782045, "FSRPTH14": 0.458851791}, "35033": {"FFRPTH14": 0.217770035, "FSRPTH14": 0.0}, "35035": {"FFRPTH14": 0.507052641, "FSRPTH14": 0.460956947}, "35037": {"FFRPTH14": 0.9410657570000001, "FSRPTH14": 0.8234325370000001}, "35039": {"FFRPTH14": 0.5028031270000001, "FSRPTH14": 0.42738265799999997}, "35041": {"FFRPTH14": 0.40950041, "FSRPTH14": 0.46068796100000003}, "35043": {"FFRPTH14": 0.45782222, "FSRPTH14": 0.30521481300000003}, "35045": {"FFRPTH14": 0.759381185, "FSRPTH14": 0.444318779}, "35047": {"FFRPTH14": 0.531180283, "FSRPTH14": 0.672828358}, "35049": {"FFRPTH14": 0.735671283, "FSRPTH14": 1.02589023}, "35051": {"FFRPTH14": 0.529801325, "FSRPTH14": 1.236203091}, "35053": {"FFRPTH14": 0.635470826, "FSRPTH14": 0.808781051}, "35055": {"FFRPTH14": 0.78587837, "FSRPTH14": 1.632208923}, "35057": {"FFRPTH14": 0.448401768, "FSRPTH14": 0.448401768}, "35059": {"FFRPTH14": 0.698161508, "FSRPTH14": 0.9308820109999999}, "35061": {"FFRPTH14": 0.6331033939999999, "FSRPTH14": 0.422068929}, "36001": {"FFRPTH14": 1.05136434, "FSRPTH14": 1.093548712}, "36003": {"FFRPTH14": 0.377073906, "FSRPTH14": 0.837942014}, "36005": {"FFRPTH14": 0.6494414039999999, "FSRPTH14": 0.400512044}, "36007": {"FFRPTH14": 0.785410618, "FSRPTH14": 0.881686758}, "36009": {"FFRPTH14": 0.6234096689999999, "FSRPTH14": 0.992366412}, "36011": {"FFRPTH14": 0.6723925759999999, "FSRPTH14": 0.8119457520000001}, "36013": {"FFRPTH14": 0.73455355, "FSRPTH14": 1.029889514}, "36015": {"FFRPTH14": 0.7063917059999999, "FSRPTH14": 0.854506095}, "36017": {"FFRPTH14": 0.526038927, "FSRPTH14": 0.930684255}, "36019": {"FFRPTH14": 0.539004312, "FSRPTH14": 0.85750686}, "36021": {"FFRPTH14": 0.595602202, "FSRPTH14": 1.142912334}, "36023": {"FFRPTH14": 0.8567232379999999, "FSRPTH14": 0.87712141}, "36025": {"FFRPTH14": 0.558167493, "FSRPTH14": 1.0948670059999999}, "36027": {"FFRPTH14": 0.822715027, "FSRPTH14": 1.170008665}, "36029": {"FFRPTH14": 0.834385345, "FSRPTH14": 0.8571413090000001}, "36031": {"FFRPTH14": 0.594637917, "FSRPTH14": 2.042451977}, "36033": {"FFRPTH14": 0.44867543200000004, "FSRPTH14": 0.7998127270000001}, "36035": {"FFRPTH14": 0.757785787, "FSRPTH14": 0.8871638479999999}, "36037": {"FFRPTH14": 0.6423041820000001, "FSRPTH14": 0.8958453059999999}, "36039": {"FFRPTH14": 0.8130589779999999, "FSRPTH14": 1.4801842930000002}, "36041": {"FFRPTH14": 0.84835631, "FSRPTH14": 3.6055143160000003}, "36043": {"FFRPTH14": 0.78438755, "FSRPTH14": 0.8942018070000001}, "36045": {"FFRPTH14": 0.848005508, "FSRPTH14": 1.057907861}, "36047": {"FFRPTH14": 0.76054822, "FSRPTH14": 0.735756027}, "36049": {"FFRPTH14": 0.47759000700000004, "FSRPTH14": 0.918442322}, "36051": {"FFRPTH14": 0.727711888, "FSRPTH14": 0.83609451}, "36053": {"FFRPTH14": 0.5803589929999999, "FSRPTH14": 1.050173417}, "36055": {"FFRPTH14": 0.733473182, "FSRPTH14": 0.818822789}, "36057": {"FFRPTH14": 0.7432853209999999, "FSRPTH14": 0.803551699}, "36059": {"FFRPTH14": 0.9494879759999999, "FSRPTH14": 0.94580779}, "36061": {"FFRPTH14": 1.560257855, "FSRPTH14": 2.712880775}, "36063": {"FFRPTH14": 0.627561176, "FSRPTH14": 0.8570425009999999}, "36065": {"FFRPTH14": 0.695664123, "FSRPTH14": 0.888904157}, "36067": {"FFRPTH14": 0.914147067, "FSRPTH14": 0.762501175}, "36069": {"FFRPTH14": 0.793021412, "FSRPTH14": 1.148513768}, "36071": {"FFRPTH14": 0.797662318, "FSRPTH14": 0.8348865590000001}, "36073": {"FFRPTH14": 0.428734756, "FSRPTH14": 0.45255335399999996}, "36075": {"FFRPTH14": 0.7774184740000001, "FSRPTH14": 0.769148065}, "36077": {"FFRPTH14": 0.621646381, "FSRPTH14": 1.2923701090000002}, "36079": {"FFRPTH14": 0.73376421, "FSRPTH14": 0.914692372}, "36081": {"FFRPTH14": 0.844252621, "FSRPTH14": 0.780933674}, "36083": {"FFRPTH14": 0.6196252210000001, "FSRPTH14": 0.7072489890000001}, "36085": {"FFRPTH14": 0.667682276, "FSRPTH14": 0.61697223}, "36087": {"FFRPTH14": 0.7904503709999999, "FSRPTH14": 0.9417475129999999}, "36089": {"FFRPTH14": 0.47576301600000004, "FSRPTH14": 0.763016158}, "36091": {"FFRPTH14": 0.7424829159999999, "FSRPTH14": 0.960337185}, "36093": {"FFRPTH14": 0.783382027, "FSRPTH14": 0.7448550420000001}, "36095": {"FFRPTH14": 0.380155864, "FSRPTH14": 0.823671038}, "36097": {"FFRPTH14": 0.595270307, "FSRPTH14": 1.0823096490000002}, "36099": {"FFRPTH14": 0.573328747, "FSRPTH14": 0.917325995}, "36101": {"FFRPTH14": 0.467508181, "FSRPTH14": 0.904526699}, "36103": {"FFRPTH14": 0.874270111, "FSRPTH14": 0.9148564709999999}, "36105": {"FFRPTH14": 0.7505629220000001, "FSRPTH14": 1.119260498}, "36107": {"FFRPTH14": 0.481251253, "FSRPTH14": 0.7820332870000001}, "36109": {"FFRPTH14": 0.70684204, "FSRPTH14": 1.002951543}, "36111": {"FFRPTH14": 0.8589875029999999, "FSRPTH14": 1.4020892790000001}, "36113": {"FFRPTH14": 1.092761609, "FSRPTH14": 2.185523217}, "36115": {"FFRPTH14": 0.5290835629999999, "FSRPTH14": 0.7214775859999999}, "36117": {"FFRPTH14": 0.7061302970000001, "FSRPTH14": 0.673539668}, "36119": {"FFRPTH14": 0.7896084240000001, "FSRPTH14": 1.105246167}, "36121": {"FFRPTH14": 0.582693989, "FSRPTH14": 0.606972905}, "36123": {"FFRPTH14": 0.555379245, "FSRPTH14": 0.9124087590000001}, "37001": {"FFRPTH14": 0.808770669, "FSRPTH14": 0.74458252}, "37003": {"FFRPTH14": 0.427899016, "FSRPTH14": 0.454642704}, "37005": {"FFRPTH14": 0.367680853, "FSRPTH14": 1.286882986}, "37007": {"FFRPTH14": 0.543372793, "FSRPTH14": 0.426935766}, "37009": {"FFRPTH14": 0.663570007, "FSRPTH14": 0.811030008}, "37011": {"FFRPTH14": 0.562651213, "FSRPTH14": 1.744218759}, "37013": {"FFRPTH14": 0.69349585, "FSRPTH14": 0.7355259009999999}, "37015": {"FFRPTH14": 0.547100368, "FSRPTH14": 0.149209191}, "37017": {"FFRPTH14": 0.750209193, "FSRPTH14": 0.432812996}, "37019": {"FFRPTH14": 0.7573462590000001, "FSRPTH14": 1.009795012}, "37021": {"FFRPTH14": 0.878106802, "FSRPTH14": 1.177461393}, "37023": {"FFRPTH14": 0.636971146, "FSRPTH14": 0.5922714170000001}, "37025": {"FFRPTH14": 0.754803413, "FSRPTH14": 0.661103679}, "37027": {"FFRPTH14": 0.6381620929999999, "FSRPTH14": 0.503166266}, "37029": {"FFRPTH14": 0.096796051, "FSRPTH14": 0.290388152}, "37031": {"FFRPTH14": 0.886486172, "FSRPTH14": 1.46778858}, "37033": {"FFRPTH14": 0.259942813, "FSRPTH14": 0.21661901}, "37035": {"FFRPTH14": 0.808883482, "FSRPTH14": 0.828296686}, "37037": {"FFRPTH14": 0.465806865, "FSRPTH14": 0.5240327229999999}, "37039": {"FFRPTH14": 0.810581777, "FSRPTH14": 0.810581777}, "37041": {"FFRPTH14": 0.686247598, "FSRPTH14": 0.48037331899999997}, "37043": {"FFRPTH14": 0.567054154, "FSRPTH14": 1.2286173329999999}, "37045": {"FFRPTH14": 0.618072438, "FSRPTH14": 0.659277267}, "37047": {"FFRPTH14": 0.860358541, "FSRPTH14": 0.50919179}, "37049": {"FFRPTH14": 0.6984977509999999, "FSRPTH14": 0.679360827}, "37051": {"FFRPTH14": 0.845774803, "FSRPTH14": 0.640459905}, "37053": {"FFRPTH14": 0.840807175, "FSRPTH14": 1.561499039}, "37055": {"FFRPTH14": 1.766180492, "FSRPTH14": 3.646308113}, "37057": {"FFRPTH14": 0.536349895, "FSRPTH14": 0.627773173}, "37059": {"FFRPTH14": 0.6999082879999999, "FSRPTH14": 0.724043056}, "37061": {"FFRPTH14": 0.601182325, "FSRPTH14": 0.417487726}, "37063": {"FFRPTH14": 0.8965564079999999, "FSRPTH14": 0.7742987159999999}, "37065": {"FFRPTH14": 0.455099849, "FSRPTH14": 0.273059909}, "37067": {"FFRPTH14": 0.747335052, "FSRPTH14": 0.744597561}, "37069": {"FFRPTH14": 0.397709195, "FSRPTH14": 0.318167356}, "37071": {"FFRPTH14": 0.776783642, "FSRPTH14": 0.57311476}, "37073": {"FFRPTH14": 0.0, "FSRPTH14": 0.25935852}, "37075": {"FFRPTH14": 0.578435909, "FSRPTH14": 0.809810273}, "37077": {"FFRPTH14": 0.52991453, "FSRPTH14": 0.307692308}, "37079": {"FFRPTH14": 0.237045465, "FSRPTH14": 0.379272745}, "37081": {"FFRPTH14": 0.82793257, "FSRPTH14": 0.802547845}, "37083": {"FFRPTH14": 0.8306588640000001, "FSRPTH14": 0.5852369270000001}, "37085": {"FFRPTH14": 0.615792715, "FSRPTH14": 0.418423255}, "37087": {"FFRPTH14": 0.638966891, "FSRPTH14": 0.992080174}, "37089": {"FFRPTH14": 0.5398159229999999, "FSRPTH14": 0.6027944470000001}, "37091": {"FFRPTH14": 0.740496956, "FSRPTH14": 0.575942077}, "37093": {"FFRPTH14": 0.251884288, "FSRPTH14": 0.116254287}, "37095": {"FFRPTH14": 0.704721635, "FSRPTH14": 1.937984496}, "37097": {"FFRPTH14": 0.845957702, "FSRPTH14": 0.809959502}, "37099": {"FFRPTH14": 0.7076450059999999, "FSRPTH14": 0.927258974}, "37101": {"FFRPTH14": 0.639389714, "FSRPTH14": 0.485054265}, "37103": {"FFRPTH14": 0.297737197, "FSRPTH14": 0.198491465}, "37105": {"FFRPTH14": 0.771010023, "FSRPTH14": 0.6704434979999999}, "37107": {"FFRPTH14": 0.889116868, "FSRPTH14": 0.581345644}, "37109": {"FFRPTH14": 0.688972679, "FSRPTH14": 0.513597815}, "37111": {"FFRPTH14": 0.62270655, "FSRPTH14": 0.44479039299999995}, "37113": {"FFRPTH14": 0.9151291509999999, "FSRPTH14": 1.446494465}, "37115": {"FFRPTH14": 0.28359408199999997, "FSRPTH14": 0.472656804}, "37117": {"FFRPTH14": 0.724823058, "FSRPTH14": 0.554276456}, "37119": {"FFRPTH14": 0.821696745, "FSRPTH14": 0.8809537209999999}, "37121": {"FFRPTH14": 0.522500163, "FSRPTH14": 1.110312847}, "37123": {"FFRPTH14": 0.6570542070000001, "FSRPTH14": 0.43803613799999996}, "37125": {"FFRPTH14": 0.7198341159999999, "FSRPTH14": 1.0314041059999999}, "37127": {"FFRPTH14": 0.773657492, "FSRPTH14": 0.667677014}, "37129": {"FFRPTH14": 1.044854784, "FSRPTH14": 1.109580301}, "37131": {"FFRPTH14": 0.293212139, "FSRPTH14": 0.39094951899999997}, "37133": {"FFRPTH14": 0.810282053, "FSRPTH14": 0.565065116}, "37135": {"FFRPTH14": 0.740635237, "FSRPTH14": 0.74775673}, "37137": {"FFRPTH14": 1.0812480690000001, "FSRPTH14": 0.8495520540000001}, "37139": {"FFRPTH14": 0.779148968, "FSRPTH14": 0.9550858320000001}, "37141": {"FFRPTH14": 0.604444444, "FSRPTH14": 0.675555556}, "37143": {"FFRPTH14": 0.44556661200000003, "FSRPTH14": 0.44556661200000003}, "37145": {"FFRPTH14": 0.664417868, "FSRPTH14": 0.281099867}, "37147": {"FFRPTH14": 0.9124399790000001, "FSRPTH14": 0.650113485}, "37149": {"FFRPTH14": 0.44210836600000003, "FSRPTH14": 0.9333398829999999}, "37151": {"FFRPTH14": 0.546302652, "FSRPTH14": 0.567314292}, "37153": {"FFRPTH14": 0.502919117, "FSRPTH14": 0.5685172629999999}, "37155": {"FFRPTH14": 0.504600772, "FSRPTH14": 0.415553577}, "37157": {"FFRPTH14": 0.68705287, "FSRPTH14": 0.697958471}, "37159": {"FFRPTH14": 0.584289115, "FSRPTH14": 0.6997042490000001}, "37161": {"FFRPTH14": 0.585585586, "FSRPTH14": 0.7057057059999999}, "37163": {"FFRPTH14": 0.515222482, "FSRPTH14": 0.421545667}, "37165": {"FFRPTH14": 0.646503261, "FSRPTH14": 0.562176748}, "37167": {"FFRPTH14": 0.726072607, "FSRPTH14": 0.742574257}, "37169": {"FFRPTH14": 0.517029665, "FSRPTH14": 0.517029665}, "37171": {"FFRPTH14": 0.8359828970000001, "FSRPTH14": 0.8908014470000001}, "37173": {"FFRPTH14": 1.190976601, "FSRPTH14": 1.190976601}, "37175": {"FFRPTH14": 0.5447117570000001, "FSRPTH14": 0.847329399}, "37177": {"FFRPTH14": 0.972053463, "FSRPTH14": 0.972053463}, "37179": {"FFRPTH14": 0.535302515, "FSRPTH14": 0.43922257600000003}, "37181": {"FFRPTH14": 0.6276056839999999, "FSRPTH14": 0.448289775}, "37183": {"FFRPTH14": 0.849111487, "FSRPTH14": 0.78402629}, "37185": {"FFRPTH14": 0.543720034, "FSRPTH14": 0.543720034}, "37187": {"FFRPTH14": 0.6364359589999999, "FSRPTH14": 0.715990453}, "37189": {"FFRPTH14": 0.7420091320000001, "FSRPTH14": 1.560121766}, "37191": {"FFRPTH14": 0.594587645, "FSRPTH14": 0.5624477729999999}, "37193": {"FFRPTH14": 0.508440106, "FSRPTH14": 0.595601267}, "37195": {"FFRPTH14": 0.663382514, "FSRPTH14": 0.552818761}, "37197": {"FFRPTH14": 0.476291279, "FSRPTH14": 0.6879762909999999}, "37199": {"FFRPTH14": 0.39741115, "FSRPTH14": 0.624503236}, "38001": {"FFRPTH14": 0.0, "FSRPTH14": 1.6778523490000001}, "38003": {"FFRPTH14": 0.71787509, "FSRPTH14": 1.2562814070000001}, "38005": {"FFRPTH14": 0.0, "FSRPTH14": 0.731743012}, "38007": {"FFRPTH14": 0.0, "FSRPTH14": 6.6592674810000005}, "38009": {"FFRPTH14": 0.7518796990000001, "FSRPTH14": 1.203007519}, "38011": {"FFRPTH14": 1.231906375, "FSRPTH14": 1.847859563}, "38013": {"FFRPTH14": 0.890868597, "FSRPTH14": 1.781737194}, "38015": {"FFRPTH14": 0.629813376, "FSRPTH14": 0.618764019}, "38017": {"FFRPTH14": 0.6886021379999999, "FSRPTH14": 0.65267507}, "38019": {"FFRPTH14": 0.5188067439999999, "FSRPTH14": 1.815823606}, "38021": {"FFRPTH14": 0.388349515, "FSRPTH14": 0.970873786}, "38023": {"FFRPTH14": 0.411184211, "FSRPTH14": 1.644736842}, "38025": {"FFRPTH14": 0.227324392, "FSRPTH14": 0.454648784}, "38027": {"FFRPTH14": 0.841396719, "FSRPTH14": 0.42069835899999997}, "38029": {"FFRPTH14": 0.584453536, "FSRPTH14": 0.8766803040000001}, "38031": {"FFRPTH14": 1.189767995, "FSRPTH14": 0.892325996}, "38033": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "38035": {"FFRPTH14": 0.7128803220000001, "FSRPTH14": 0.655849896}, "38037": {"FFRPTH14": 0.0, "FSRPTH14": 0.847098687}, "38039": {"FFRPTH14": 0.431220354, "FSRPTH14": 1.7248814140000002}, "38041": {"FFRPTH14": 0.37593985, "FSRPTH14": 0.7518796990000001}, "38043": {"FFRPTH14": 0.0, "FSRPTH14": 1.650165017}, "38045": {"FFRPTH14": 0.241021933, "FSRPTH14": 1.6871535309999999}, "38047": {"FFRPTH14": 0.0, "FSRPTH14": 2.057613169}, "38049": {"FFRPTH14": 0.0, "FSRPTH14": 0.6680026720000001}, "38051": {"FFRPTH14": 0.357015352, "FSRPTH14": 1.7850767580000002}, "38053": {"FFRPTH14": 0.090942161, "FSRPTH14": 0.9094216079999999}, "38055": {"FFRPTH14": 0.10440593, "FSRPTH14": 1.044059303}, "38057": {"FFRPTH14": 0.571689915, "FSRPTH14": 0.914703865}, "38059": {"FFRPTH14": 0.502984374, "FSRPTH14": 0.435919791}, "38061": {"FFRPTH14": 0.613371499, "FSRPTH14": 0.817828665}, "38063": {"FFRPTH14": 0.328407225, "FSRPTH14": 0.985221675}, "38065": {"FFRPTH14": 0.0, "FSRPTH14": 1.081081081}, "38067": {"FFRPTH14": 0.140291807, "FSRPTH14": 0.982042649}, "38069": {"FFRPTH14": 0.68119891, "FSRPTH14": 0.908265213}, "38071": {"FFRPTH14": 0.9512279490000001, "FSRPTH14": 1.037703217}, "38073": {"FFRPTH14": 0.550863019, "FSRPTH14": 0.734484025}, "38075": {"FFRPTH14": 0.77309625, "FSRPTH14": 0.77309625}, "38077": {"FFRPTH14": 0.669425511, "FSRPTH14": 0.547711782}, "38079": {"FFRPTH14": 0.410509031, "FSRPTH14": 0.47892720299999997}, "38081": {"FFRPTH14": 0.0, "FSRPTH14": 0.508776393}, "38083": {"FFRPTH14": 0.0, "FSRPTH14": 0.754147813}, "38085": {"FFRPTH14": 0.226142017, "FSRPTH14": 0.226142017}, "38087": {"FFRPTH14": 0.0, "FSRPTH14": 2.614379085}, "38089": {"FFRPTH14": 0.6914263140000001, "FSRPTH14": 0.856051626}, "38091": {"FFRPTH14": 0.0, "FSRPTH14": 1.023017903}, "38093": {"FFRPTH14": 0.899238014, "FSRPTH14": 0.8519096979999999}, "38095": {"FFRPTH14": 0.432900433, "FSRPTH14": 2.164502165}, "38097": {"FFRPTH14": 0.8661222470000001, "FSRPTH14": 0.24746349899999998}, "38099": {"FFRPTH14": 0.273473108, "FSRPTH14": 0.911577028}, "38101": {"FFRPTH14": 0.691802145, "FSRPTH14": 0.6773895999999999}, "38103": {"FFRPTH14": 0.715648855, "FSRPTH14": 2.146946565}, "38105": {"FFRPTH14": 0.871459695, "FSRPTH14": 0.653594771}, "39001": {"FFRPTH14": 0.533257492, "FSRPTH14": 0.284403996}, "39003": {"FFRPTH14": 0.9424980959999999, "FSRPTH14": 0.533130236}, "39005": {"FFRPTH14": 0.5845196570000001, "FSRPTH14": 0.509097766}, "39007": {"FFRPTH14": 0.8671540209999999, "FSRPTH14": 0.7965717170000001}, "39009": {"FFRPTH14": 0.911717893, "FSRPTH14": 0.448132524}, "39011": {"FFRPTH14": 0.741694117, "FSRPTH14": 0.5453633210000001}, "39013": {"FFRPTH14": 0.777414664, "FSRPTH14": 0.518276443}, "39015": {"FFRPTH14": 0.566687823, "FSRPTH14": 0.498685284}, "39017": {"FFRPTH14": 0.726965613, "FSRPTH14": 0.5772962220000001}, "39019": {"FFRPTH14": 0.532160216, "FSRPTH14": 0.425728173}, "39021": {"FFRPTH14": 0.48558577, "FSRPTH14": 0.357800041}, "39023": {"FFRPTH14": 0.915388784, "FSRPTH14": 0.38812484399999997}, "39025": {"FFRPTH14": 0.654891844, "FSRPTH14": 0.520936694}, "39027": {"FFRPTH14": 0.741006334, "FSRPTH14": 0.5019720329999999}, "39029": {"FFRPTH14": 0.71911133, "FSRPTH14": 0.46363756799999994}, "39031": {"FFRPTH14": 0.575090371, "FSRPTH14": 0.38339358100000004}, "39033": {"FFRPTH14": 0.7768361579999999, "FSRPTH14": 0.44726930299999995}, "39035": {"FFRPTH14": 0.8747225809999999, "FSRPTH14": 0.7628025409999999}, "39037": {"FFRPTH14": 0.55559813, "FSRPTH14": 0.459805349}, "39039": {"FFRPTH14": 0.701116593, "FSRPTH14": 0.9348221240000001}, "39041": {"FFRPTH14": 0.877782067, "FSRPTH14": 0.7667373479999999}, "39043": {"FFRPTH14": 1.028643773, "FSRPTH14": 1.041831513}, "39045": {"FFRPTH14": 0.658327847, "FSRPTH14": 0.578530532}, "39047": {"FFRPTH14": 1.111111111, "FSRPTH14": 0.5902777779999999}, "39049": {"FFRPTH14": 0.898981885, "FSRPTH14": 0.6577916229999999}, "39051": {"FFRPTH14": 0.587130108, "FSRPTH14": 0.70455613}, "39053": {"FFRPTH14": 1.019837484, "FSRPTH14": 0.230285883}, "39055": {"FFRPTH14": 0.6150909379999999, "FSRPTH14": 0.646905987}, "39057": {"FFRPTH14": 0.805762422, "FSRPTH14": 0.598217556}, "39059": {"FFRPTH14": 0.9598383429999999, "FSRPTH14": 0.60621369}, "39061": {"FFRPTH14": 0.844252205, "FSRPTH14": 0.847971377}, "39063": {"FFRPTH14": 0.8229687940000001, "FSRPTH14": 0.783147723}, "39065": {"FFRPTH14": 0.6290099379999999, "FSRPTH14": 0.503207951}, "39067": {"FFRPTH14": 0.45036350799999997, "FSRPTH14": 0.900727015}, "39069": {"FFRPTH14": 0.680101657, "FSRPTH14": 0.7158964809999999}, "39071": {"FFRPTH14": 0.627250552, "FSRPTH14": 0.46463003799999997}, "39073": {"FFRPTH14": 0.661444735, "FSRPTH14": 0.591818973}, "39075": {"FFRPTH14": 0.318921135, "FSRPTH14": 0.36448129799999995}, "39077": {"FFRPTH14": 0.8175222259999999, "FSRPTH14": 0.40876111299999995}, "39079": {"FFRPTH14": 0.7328691829999999, "FSRPTH14": 0.335898375}, "39081": {"FFRPTH14": 0.694300824, "FSRPTH14": 0.6795284659999999}, "39083": {"FFRPTH14": 0.65394739, "FSRPTH14": 0.441414488}, "39085": {"FFRPTH14": 0.7852375340000001, "FSRPTH14": 0.772150242}, "39087": {"FFRPTH14": 0.6166528729999999, "FSRPTH14": 0.27587102199999997}, "39089": {"FFRPTH14": 0.7143278820000001, "FSRPTH14": 0.543125332}, "39091": {"FFRPTH14": 0.791087086, "FSRPTH14": 0.593315314}, "39093": {"FFRPTH14": 0.608120546, "FSRPTH14": 0.51608068}, "39095": {"FFRPTH14": 0.8569078720000001, "FSRPTH14": 0.7787983070000001}, "39097": {"FFRPTH14": 0.500933558, "FSRPTH14": 0.34154560799999995}, "39099": {"FFRPTH14": 0.8619063140000001, "FSRPTH14": 0.703246943}, "39101": {"FFRPTH14": 0.669506999, "FSRPTH14": 0.380401704}, "39103": {"FFRPTH14": 0.670344091, "FSRPTH14": 0.53400292}, "39105": {"FFRPTH14": 0.6857828640000001, "FSRPTH14": 0.214307145}, "39107": {"FFRPTH14": 0.636771081, "FSRPTH14": 0.9306654259999999}, "39109": {"FFRPTH14": 0.750721848, "FSRPTH14": 0.615976901}, "39111": {"FFRPTH14": 0.414794331, "FSRPTH14": 0.622191497}, "39113": {"FFRPTH14": 0.8947396059999999, "FSRPTH14": 0.611499186}, "39115": {"FFRPTH14": 0.13474365, "FSRPTH14": 0.404230951}, "39117": {"FFRPTH14": 0.39827036899999996, "FSRPTH14": 0.170687301}, "39119": {"FFRPTH14": 0.745764292, "FSRPTH14": 0.5826283529999999}, "39121": {"FFRPTH14": 0.556986702, "FSRPTH14": 0.348116689}, "39123": {"FFRPTH14": 0.874763085, "FSRPTH14": 1.628031297}, "39125": {"FFRPTH14": 0.526620675, "FSRPTH14": 0.315972405}, "39127": {"FFRPTH14": 0.558472021, "FSRPTH14": 0.390930414}, "39129": {"FFRPTH14": 0.632955904, "FSRPTH14": 0.29889584399999997}, "39131": {"FFRPTH14": 0.6724235559999999, "FSRPTH14": 0.460079275}, "39133": {"FFRPTH14": 0.765990042, "FSRPTH14": 0.5374284970000001}, "39135": {"FFRPTH14": 0.529024191, "FSRPTH14": 0.384744866}, "39137": {"FFRPTH14": 0.643820784, "FSRPTH14": 0.526762459}, "39139": {"FFRPTH14": 0.7872595170000001, "FSRPTH14": 0.533040298}, "39141": {"FFRPTH14": 0.686893298, "FSRPTH14": 0.479529284}, "39143": {"FFRPTH14": 0.598215324, "FSRPTH14": 0.614832417}, "39145": {"FFRPTH14": 0.750731316, "FSRPTH14": 0.5436330220000001}, "39147": {"FFRPTH14": 0.502972929, "FSRPTH14": 0.7005694370000001}, "39149": {"FFRPTH14": 0.612857756, "FSRPTH14": 0.653714939}, "39151": {"FFRPTH14": 0.8410160329999999, "FSRPTH14": 0.662699342}, "39153": {"FFRPTH14": 0.819274352, "FSRPTH14": 0.664276501}, "39155": {"FFRPTH14": 0.687218228, "FSRPTH14": 0.614109906}, "39157": {"FFRPTH14": 0.8406259429999999, "FSRPTH14": 0.7220761309999999}, "39159": {"FFRPTH14": 0.502082713, "FSRPTH14": 0.48348705700000005}, "39161": {"FFRPTH14": 0.562153046, "FSRPTH14": 0.597287612}, "39163": {"FFRPTH14": 0.528940608, "FSRPTH14": 0.075562944}, "39165": {"FFRPTH14": 0.58648645, "FSRPTH14": 0.559417845}, "39167": {"FFRPTH14": 0.7678107590000001, "FSRPTH14": 0.57177397}, "39169": {"FFRPTH14": 0.614521755, "FSRPTH14": 0.536624631}, "39171": {"FFRPTH14": 0.72403529, "FSRPTH14": 0.455874071}, "39173": {"FFRPTH14": 0.902847442, "FSRPTH14": 0.7485145459999999}, "39175": {"FFRPTH14": 0.671050866, "FSRPTH14": 0.671050866}, "40001": {"FFRPTH14": 0.405661228, "FSRPTH14": 0.180293879}, "40003": {"FFRPTH14": 0.345423143, "FSRPTH14": 1.03626943}, "40005": {"FFRPTH14": 0.507393447, "FSRPTH14": 0.579878226}, "40007": {"FFRPTH14": 0.18228217300000002, "FSRPTH14": 0.546846518}, "40009": {"FFRPTH14": 0.63315183, "FSRPTH14": 0.759782196}, "40011": {"FFRPTH14": 0.20167389300000002, "FSRPTH14": 1.3108803070000001}, "40013": {"FFRPTH14": 0.674369465, "FSRPTH14": 0.49453760700000005}, "40015": {"FFRPTH14": 0.37520892299999997, "FSRPTH14": 0.545758434}, "40017": {"FFRPTH14": 0.617369696, "FSRPTH14": 0.486178636}, "40019": {"FFRPTH14": 0.614489666, "FSRPTH14": 0.757870588}, "40021": {"FFRPTH14": 0.537845721, "FSRPTH14": 0.599904843}, "40023": {"FFRPTH14": 0.395752259, "FSRPTH14": 0.593628389}, "40025": {"FFRPTH14": 1.307759372, "FSRPTH14": 1.307759372}, "40027": {"FFRPTH14": 0.829912415, "FSRPTH14": 0.626139277}, "40029": {"FFRPTH14": 0.17220595800000002, "FSRPTH14": 0.8610297920000001}, "40031": {"FFRPTH14": 0.735805747, "FSRPTH14": 0.5918437529999999}, "40033": {"FFRPTH14": 0.325203252, "FSRPTH14": 0.325203252}, "40035": {"FFRPTH14": 0.34288849299999996, "FSRPTH14": 0.754354684}, "40037": {"FFRPTH14": 0.523841885, "FSRPTH14": 0.410578774}, "40039": {"FFRPTH14": 0.847457627, "FSRPTH14": 0.8813559320000001}, "40041": {"FFRPTH14": 0.386044492, "FSRPTH14": 0.603194518}, "40043": {"FFRPTH14": 0.0, "FSRPTH14": 0.814000814}, "40045": {"FFRPTH14": 0.240963855, "FSRPTH14": 1.2048192770000001}, "40047": {"FFRPTH14": 0.6815552140000001, "FSRPTH14": 0.570604365}, "40049": {"FFRPTH14": 0.6168136129999999, "FSRPTH14": 0.6530967670000001}, "40051": {"FFRPTH14": 0.464218071, "FSRPTH14": 0.501355517}, "40053": {"FFRPTH14": 0.0, "FSRPTH14": 0.666518551}, "40055": {"FFRPTH14": 0.162575191, "FSRPTH14": 0.812875955}, "40057": {"FFRPTH14": 0.35739814200000003, "FSRPTH14": 0.35739814200000003}, "40059": {"FFRPTH14": 0.262329486, "FSRPTH14": 0.786988458}, "40061": {"FFRPTH14": 0.31017369699999997, "FSRPTH14": 0.465260546}, "40063": {"FFRPTH14": 0.5794582070000001, "FSRPTH14": 0.289729103}, "40065": {"FFRPTH14": 0.653896454, "FSRPTH14": 0.769289945}, "40067": {"FFRPTH14": 0.317863954, "FSRPTH14": 0.7946598859999999}, "40069": {"FFRPTH14": 0.360262992, "FSRPTH14": 0.180131496}, "40071": {"FFRPTH14": 0.8355688459999999, "FSRPTH14": 0.7256255770000001}, "40073": {"FFRPTH14": 0.450682462, "FSRPTH14": 0.901364924}, "40075": {"FFRPTH14": 0.21422450699999998, "FSRPTH14": 0.642673522}, "40077": {"FFRPTH14": 0.187038249, "FSRPTH14": 0.187038249}, "40079": {"FFRPTH14": 0.361729065, "FSRPTH14": 0.38182512399999996}, "40081": {"FFRPTH14": 0.462173951, "FSRPTH14": 0.7221467979999999}, "40083": {"FFRPTH14": 0.331301352, "FSRPTH14": 0.530082163}, "40085": {"FFRPTH14": 0.511613629, "FSRPTH14": 1.330195436}, "40087": {"FFRPTH14": 0.6700077720000001, "FSRPTH14": 0.589606839}, "40089": {"FFRPTH14": 0.453857791, "FSRPTH14": 0.453857791}, "40091": {"FFRPTH14": 0.39824771, "FSRPTH14": 0.597371565}, "40093": {"FFRPTH14": 0.258064516, "FSRPTH14": 0.516129032}, "40095": {"FFRPTH14": 0.556173526, "FSRPTH14": 0.617970585}, "40097": {"FFRPTH14": 0.73500588, "FSRPTH14": 0.8085064679999999}, "40099": {"FFRPTH14": 0.724480185, "FSRPTH14": 0.652032167}, "40101": {"FFRPTH14": 0.7860961040000001, "FSRPTH14": 0.585998914}, "40103": {"FFRPTH14": 0.522011484, "FSRPTH14": 0.609013398}, "40105": {"FFRPTH14": 0.19004180899999998, "FSRPTH14": 0.47510452299999995}, "40107": {"FFRPTH14": 0.164122764, "FSRPTH14": 0.492368291}, "40109": {"FFRPTH14": 0.9344635640000001, "FSRPTH14": 0.7909007259999999}, "40111": {"FFRPTH14": 0.562731807, "FSRPTH14": 0.409259496}, "40113": {"FFRPTH14": 0.437673246, "FSRPTH14": 0.291782164}, "40115": {"FFRPTH14": 0.46721694399999997, "FSRPTH14": 0.560660333}, "40117": {"FFRPTH14": 0.42680324399999997, "FSRPTH14": 0.487775136}, "40119": {"FFRPTH14": 0.7849097979999999, "FSRPTH14": 0.573108741}, "40121": {"FFRPTH14": 0.672253843, "FSRPTH14": 0.6498453820000001}, "40123": {"FFRPTH14": 0.552558874, "FSRPTH14": 0.631495856}, "40125": {"FFRPTH14": 0.863377477, "FSRPTH14": 0.417763295}, "40127": {"FFRPTH14": 0.359550562, "FSRPTH14": 0.629213483}, "40129": {"FFRPTH14": 0.0, "FSRPTH14": 0.531773465}, "40131": {"FFRPTH14": 0.378555921, "FSRPTH14": 0.445359906}, "40133": {"FFRPTH14": 0.629400889, "FSRPTH14": 0.43271311100000004}, "40135": {"FFRPTH14": 0.580298854, "FSRPTH14": 0.483582378}, "40137": {"FFRPTH14": 0.606837031, "FSRPTH14": 0.606837031}, "40139": {"FFRPTH14": 0.36608246, "FSRPTH14": 1.09824738}, "40141": {"FFRPTH14": 0.524383849, "FSRPTH14": 0.655479811}, "40143": {"FFRPTH14": 0.924399379, "FSRPTH14": 0.767156185}, "40145": {"FFRPTH14": 0.40950041, "FSRPTH14": 0.264193813}, "40147": {"FFRPTH14": 0.750909756, "FSRPTH14": 0.6931474670000001}, "40149": {"FFRPTH14": 0.173205162, "FSRPTH14": 0.606218065}, "40151": {"FFRPTH14": 0.8613264429999999, "FSRPTH14": 0.7536606370000001}, "40153": {"FFRPTH14": 0.603836685, "FSRPTH14": 0.88253054}, "41001": {"FFRPTH14": 0.560433402, "FSRPTH14": 1.3699483159999999}, "41003": {"FFRPTH14": 0.683534918, "FSRPTH14": 0.892070995}, "41005": {"FFRPTH14": 0.59751071, "FSRPTH14": 0.777270288}, "41007": {"FFRPTH14": 0.800555052, "FSRPTH14": 2.855313017}, "41009": {"FFRPTH14": 0.465031642, "FSRPTH14": 0.647000546}, "41011": {"FFRPTH14": 0.6722689079999999, "FSRPTH14": 1.040416166}, "41013": {"FFRPTH14": 0.428612249, "FSRPTH14": 0.619106582}, "41015": {"FFRPTH14": 0.671591672, "FSRPTH14": 1.567047235}, "41017": {"FFRPTH14": 0.78644036, "FSRPTH14": 1.144446792}, "41019": {"FFRPTH14": 0.635680365, "FSRPTH14": 0.803948697}, "41021": {"FFRPTH14": 1.035196687, "FSRPTH14": 2.587991718}, "41023": {"FFRPTH14": 0.69637883, "FSRPTH14": 1.6713091919999998}, "41025": {"FFRPTH14": 0.9823182709999999, "FSRPTH14": 1.683974179}, "41027": {"FFRPTH14": 1.04872187, "FSRPTH14": 1.704173039}, "41029": {"FFRPTH14": 0.727577073, "FSRPTH14": 0.9463257359999999}, "41031": {"FFRPTH14": 0.495674117, "FSRPTH14": 0.6308579670000001}, "41033": {"FFRPTH14": 0.550245816, "FSRPTH14": 0.825368725}, "41035": {"FFRPTH14": 0.549996181, "FSRPTH14": 1.008326331}, "41037": {"FFRPTH14": 0.765501403, "FSRPTH14": 1.913753509}, "41039": {"FFRPTH14": 0.8204567209999999, "FSRPTH14": 0.901386125}, "41041": {"FFRPTH14": 0.689566004, "FSRPTH14": 2.241089514}, "41043": {"FFRPTH14": 0.519454405, "FSRPTH14": 0.6786420459999999}, "41045": {"FFRPTH14": 0.658783227, "FSRPTH14": 1.021114002}, "41047": {"FFRPTH14": 0.689951243, "FSRPTH14": 0.696084143}, "41049": {"FFRPTH14": 0.08938947, "FSRPTH14": 0.8045052290000001}, "41051": {"FFRPTH14": 0.858748159, "FSRPTH14": 1.5488366340000002}, "41053": {"FFRPTH14": 0.539042045, "FSRPTH14": 0.5903793829999999}, "41055": {"FFRPTH14": 0.5847953220000001, "FSRPTH14": 1.754385965}, "41057": {"FFRPTH14": 0.473522216, "FSRPTH14": 1.933549049}, "41059": {"FFRPTH14": 0.521478391, "FSRPTH14": 0.821328466}, "41061": {"FFRPTH14": 0.700634463, "FSRPTH14": 0.817406874}, "41063": {"FFRPTH14": 0.586510264, "FSRPTH14": 3.0791788860000002}, "41065": {"FFRPTH14": 0.705467372, "FSRPTH14": 1.254164217}, "41067": {"FFRPTH14": 0.655419735, "FSRPTH14": 0.7744254859999999}, "41069": {"FFRPTH14": 0.0, "FSRPTH14": 1.454545455}, "41071": {"FFRPTH14": 0.461880147, "FSRPTH14": 0.8353151590000001}, "42001": {"FFRPTH14": 0.717698645, "FSRPTH14": 0.678372692}, "42003": {"FFRPTH14": 0.809742905, "FSRPTH14": 0.86009803}, "42005": {"FFRPTH14": 0.398318212, "FSRPTH14": 0.516338423}, "42007": {"FFRPTH14": 0.602153585, "FSRPTH14": 0.52540852}, "42009": {"FFRPTH14": 0.36775221700000005, "FSRPTH14": 0.735504433}, "42011": {"FFRPTH14": 0.650243781, "FSRPTH14": 0.681668202}, "42013": {"FFRPTH14": 0.746298281, "FSRPTH14": 0.754237625}, "42015": {"FFRPTH14": 0.485562605, "FSRPTH14": 0.7607147479999999}, "42017": {"FFRPTH14": 0.753169455, "FSRPTH14": 0.7739135290000001}, "42019": {"FFRPTH14": 0.570067171, "FSRPTH14": 0.6883829990000001}, "42021": {"FFRPTH14": 0.740568641, "FSRPTH14": 0.631661488}, "42023": {"FFRPTH14": 0.208116545, "FSRPTH14": 1.040582726}, "42025": {"FFRPTH14": 0.543132478, "FSRPTH14": 0.837975823}, "42027": {"FFRPTH14": 0.617353945, "FSRPTH14": 0.686648776}, "42029": {"FFRPTH14": 0.657196792, "FSRPTH14": 0.668897626}, "42031": {"FFRPTH14": 0.592462842, "FSRPTH14": 0.9273331440000001}, "42033": {"FFRPTH14": 0.652781712, "FSRPTH14": 0.837531253}, "42035": {"FFRPTH14": 0.427726758, "FSRPTH14": 0.679330733}, "42037": {"FFRPTH14": 0.8045052290000001, "FSRPTH14": 0.864098209}, "42039": {"FFRPTH14": 0.5391453970000001, "FSRPTH14": 0.814453685}, "42041": {"FFRPTH14": 0.6932992020000001, "FSRPTH14": 0.7015039259999999}, "42043": {"FFRPTH14": 0.8067694959999999, "FSRPTH14": 0.8178211329999999}, "42045": {"FFRPTH14": 0.742503908, "FSRPTH14": 0.555989768}, "42047": {"FFRPTH14": 0.544976598, "FSRPTH14": 0.8334936209999999}, "42049": {"FFRPTH14": 0.664408874, "FSRPTH14": 0.68595727}, "42051": {"FFRPTH14": 0.6040899120000001, "FSRPTH14": 0.671211014}, "42053": {"FFRPTH14": 0.26602819899999997, "FSRPTH14": 0.931098696}, "42055": {"FFRPTH14": 0.647515894, "FSRPTH14": 0.634434764}, "42057": {"FFRPTH14": 0.341716785, "FSRPTH14": 0.27337342800000003}, "42059": {"FFRPTH14": 0.6870491240000001, "FSRPTH14": 0.528499326}, "42061": {"FFRPTH14": 0.415300546, "FSRPTH14": 0.524590164}, "42063": {"FFRPTH14": 0.570086425, "FSRPTH14": 0.6042916110000001}, "42065": {"FFRPTH14": 0.560060935, "FSRPTH14": 0.7392804340000001}, "42067": {"FFRPTH14": 0.40329085299999995, "FSRPTH14": 0.44361993899999996}, "42069": {"FFRPTH14": 0.68165044, "FSRPTH14": 1.095341742}, "42071": {"FFRPTH14": 0.6112652820000001, "FSRPTH14": 0.6112652820000001}, "42073": {"FFRPTH14": 0.563247006, "FSRPTH14": 0.5857768870000001}, "42075": {"FFRPTH14": 0.572019449, "FSRPTH14": 0.484016457}, "42077": {"FFRPTH14": 0.687490743, "FSRPTH14": 0.7210268759999999}, "42079": {"FFRPTH14": 0.649250852, "FSRPTH14": 0.9472162190000001}, "42081": {"FFRPTH14": 0.635149518, "FSRPTH14": 0.909808768}, "42083": {"FFRPTH14": 0.657987498, "FSRPTH14": 0.7754852659999999}, "42085": {"FFRPTH14": 0.626719125, "FSRPTH14": 0.748581178}, "42087": {"FFRPTH14": 0.579996563, "FSRPTH14": 0.7088846879999999}, "42089": {"FFRPTH14": 0.63734863, "FSRPTH14": 0.8778575470000001}, "42091": {"FFRPTH14": 0.8043023440000001, "FSRPTH14": 0.785939277}, "42093": {"FFRPTH14": 0.590097098, "FSRPTH14": 0.75103267}, "42095": {"FFRPTH14": 0.661890412, "FSRPTH14": 0.844824948}, "42097": {"FFRPTH14": 0.5428766070000001, "FSRPTH14": 0.734480116}, "42099": {"FFRPTH14": 0.372529255, "FSRPTH14": 0.525923653}, "42101": {"FFRPTH14": 0.874833445, "FSRPTH14": 0.703071274}, "42103": {"FFRPTH14": 0.42711466200000003, "FSRPTH14": 0.7118577709999999}, "42105": {"FFRPTH14": 0.29059630399999997, "FSRPTH14": 1.046146693}, "42107": {"FFRPTH14": 0.521272729, "FSRPTH14": 0.754473686}, "42109": {"FFRPTH14": 0.669593036, "FSRPTH14": 0.9175904570000001}, "42111": {"FFRPTH14": 0.393607809, "FSRPTH14": 0.787215618}, "42113": {"FFRPTH14": 0.631014356, "FSRPTH14": 1.577535889}, "42115": {"FFRPTH14": 0.405534351, "FSRPTH14": 0.596374046}, "42117": {"FFRPTH14": 0.44944883399999996, "FSRPTH14": 0.969863273}, "42119": {"FFRPTH14": 0.512546241, "FSRPTH14": 0.80224629}, "42121": {"FFRPTH14": 0.44835509700000004, "FSRPTH14": 0.579125334}, "42123": {"FFRPTH14": 0.49136427299999996, "FSRPTH14": 0.663341768}, "42125": {"FFRPTH14": 0.648455475, "FSRPTH14": 0.634045353}, "42127": {"FFRPTH14": 0.42800723700000004, "FSRPTH14": 1.303476586}, "42129": {"FFRPTH14": 0.654013136, "FSRPTH14": 0.751419348}, "42131": {"FFRPTH14": 0.35547972, "FSRPTH14": 0.959795244}, "42133": {"FFRPTH14": 0.680650248, "FSRPTH14": 0.5354448620000001}, "44001": {"FFRPTH14": 0.570729719, "FSRPTH14": 1.100693029}, "44003": {"FFRPTH14": 0.8841625890000001, "FSRPTH14": 1.029504384}, "44005": {"FFRPTH14": 0.898516234, "FSRPTH14": 1.590616576}, "44007": {"FFRPTH14": 0.7437014809999999, "FSRPTH14": 0.925670993}, "44009": {"FFRPTH14": 0.81324564, "FSRPTH14": 1.3659368509999998}, "45001": {"FFRPTH14": 0.36050470700000004, "FSRPTH14": 0.36050470700000004}, "45003": {"FFRPTH14": 0.6676661429999999, "FSRPTH14": 0.588760144}, "45005": {"FFRPTH14": 0.206291903, "FSRPTH14": 0.206291903}, "45007": {"FFRPTH14": 0.7831544009999999, "FSRPTH14": 0.757222136}, "45009": {"FFRPTH14": 0.724542221, "FSRPTH14": 0.263469899}, "45011": {"FFRPTH14": 0.637551801, "FSRPTH14": 0.455394144}, "45013": {"FFRPTH14": 0.59709301, "FSRPTH14": 1.580874827}, "45015": {"FFRPTH14": 0.529754547, "FSRPTH14": 0.39857723100000003}, "45017": {"FFRPTH14": 0.268853341, "FSRPTH14": 0.13442667}, "45019": {"FFRPTH14": 0.8766059079999999, "FSRPTH14": 1.3857722140000002}, "45021": {"FFRPTH14": 0.678280737, "FSRPTH14": 0.642581751}, "45023": {"FFRPTH14": 0.49478925100000004, "FSRPTH14": 0.556637907}, "45025": {"FFRPTH14": 0.411924119, "FSRPTH14": 0.60704607}, "45027": {"FFRPTH14": 0.439715065, "FSRPTH14": 0.46902940200000004}, "45029": {"FFRPTH14": 0.608932779, "FSRPTH14": 0.608932779}, "45031": {"FFRPTH14": 0.5162318029999999, "FSRPTH14": 0.45723388299999995}, "45033": {"FFRPTH14": 0.867414142, "FSRPTH14": 0.385517396}, "45035": {"FFRPTH14": 0.505155958, "FSRPTH14": 0.43780183100000003}, "45037": {"FFRPTH14": 0.18830264, "FSRPTH14": 0.45192633600000004}, "45039": {"FFRPTH14": 0.217618384, "FSRPTH14": 0.304665738}, "45041": {"FFRPTH14": 0.696683928, "FSRPTH14": 0.7397777790000001}, "45043": {"FFRPTH14": 0.608822997, "FSRPTH14": 1.431556777}, "45045": {"FFRPTH14": 0.8410115340000001, "FSRPTH14": 0.880369216}, "45047": {"FFRPTH14": 0.86306099, "FSRPTH14": 0.719217491}, "45049": {"FFRPTH14": 0.588091154, "FSRPTH14": 0.588091154}, "45051": {"FFRPTH14": 0.970444932, "FSRPTH14": 1.7468008780000002}, "45053": {"FFRPTH14": 0.8465218990000001, "FSRPTH14": 0.662495399}, "45055": {"FFRPTH14": 0.6491347510000001, "FSRPTH14": 0.554139421}, "45057": {"FFRPTH14": 0.48100048100000004, "FSRPTH14": 0.517075517}, "45059": {"FFRPTH14": 0.48096433299999997, "FSRPTH14": 0.46593419799999997}, "45061": {"FFRPTH14": 0.490650384, "FSRPTH14": 0.272583547}, "45063": {"FFRPTH14": 0.7916858590000001, "FSRPTH14": 0.698122985}, "45065": {"FFRPTH14": 0.304692261, "FSRPTH14": 0.406256348}, "45067": {"FFRPTH14": 0.6576269060000001, "FSRPTH14": 0.407102371}, "45069": {"FFRPTH14": 0.358114883, "FSRPTH14": 0.21486893}, "45071": {"FFRPTH14": 0.555805521, "FSRPTH14": 0.767540958}, "45073": {"FFRPTH14": 0.571869348, "FSRPTH14": 0.625066496}, "45075": {"FFRPTH14": 0.7659007659999999, "FSRPTH14": 0.532800533}, "45077": {"FFRPTH14": 0.7560148879999999, "FSRPTH14": 0.73109132}, "45079": {"FFRPTH14": 0.831743723, "FSRPTH14": 0.679838433}, "45081": {"FFRPTH14": 0.24967542199999998, "FSRPTH14": 0.399480675}, "45083": {"FFRPTH14": 0.7119935140000001, "FSRPTH14": 0.6881468409999999}, "45085": {"FFRPTH14": 0.537440117, "FSRPTH14": 0.611569788}, "45087": {"FFRPTH14": 0.466350983, "FSRPTH14": 0.609843593}, "45089": {"FFRPTH14": 0.305857165, "FSRPTH14": 0.367028598}, "45091": {"FFRPTH14": 0.627684984, "FSRPTH14": 0.635836737}, "46003": {"FFRPTH14": 0.72859745, "FSRPTH14": 1.4571949}, "46005": {"FFRPTH14": 0.550388024, "FSRPTH14": 0.495349221}, "46007": {"FFRPTH14": 0.29154519, "FSRPTH14": 0.0}, "46009": {"FFRPTH14": 0.142389292, "FSRPTH14": 0.42716787700000003}, "46011": {"FFRPTH14": 0.600348202, "FSRPTH14": 0.900522303}, "46013": {"FFRPTH14": 0.729014789, "FSRPTH14": 0.7550510309999999}, "46015": {"FFRPTH14": 0.9417969490000001, "FSRPTH14": 0.7534375590000001}, "46017": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "46019": {"FFRPTH14": 0.582637405, "FSRPTH14": 1.068168576}, "46021": {"FFRPTH14": 0.721500722, "FSRPTH14": 4.329004329}, "46023": {"FFRPTH14": 0.5383869929999999, "FSRPTH14": 0.5383869929999999}, "46025": {"FFRPTH14": 0.0, "FSRPTH14": 0.548696845}, "46027": {"FFRPTH14": 0.574217628, "FSRPTH14": 0.8613264429999999}, "46029": {"FFRPTH14": 0.680077314, "FSRPTH14": 1.324361085}, "46031": {"FFRPTH14": 0.0, "FSRPTH14": 0.47824007700000004}, "46033": {"FFRPTH14": 0.473653049, "FSRPTH14": 2.368265246}, "46035": {"FFRPTH14": 0.854915766, "FSRPTH14": 1.005783254}, "46037": {"FFRPTH14": 0.715819613, "FSRPTH14": 1.252684324}, "46039": {"FFRPTH14": 0.463821892, "FSRPTH14": 1.1595547309999998}, "46041": {"FFRPTH14": 0.0, "FSRPTH14": 0.176616037}, "46043": {"FFRPTH14": 0.0, "FSRPTH14": 1.345442314}, "46045": {"FFRPTH14": 0.251067035, "FSRPTH14": 1.255335174}, "46047": {"FFRPTH14": 0.73046019, "FSRPTH14": 1.46092038}, "46049": {"FFRPTH14": 0.42426813700000005, "FSRPTH14": 2.121340687}, "46051": {"FFRPTH14": 0.9667173040000001, "FSRPTH14": 1.38102472}, "46053": {"FFRPTH14": 0.0, "FSRPTH14": 2.371354043}, "46055": {"FFRPTH14": 0.541418517, "FSRPTH14": 1.082837033}, "46057": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "46059": {"FFRPTH14": 0.298953662, "FSRPTH14": 0.597907324}, "46061": {"FFRPTH14": 0.0, "FSRPTH14": 0.292483182}, "46063": {"FFRPTH14": 0.0, "FSRPTH14": 0.8}, "46065": {"FFRPTH14": 0.510146242, "FSRPTH14": 0.850243737}, "46067": {"FFRPTH14": 0.27777777800000003, "FSRPTH14": 0.694444444}, "46069": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "46071": {"FFRPTH14": 0.610873549, "FSRPTH14": 0.916310324}, "46073": {"FFRPTH14": 0.0, "FSRPTH14": 1.4947683109999998}, "46075": {"FFRPTH14": 2.051282051, "FSRPTH14": 4.102564103}, "46077": {"FFRPTH14": 0.197044335, "FSRPTH14": 0.78817734}, "46079": {"FFRPTH14": 0.40426908200000006, "FSRPTH14": 1.1319534279999999}, "46081": {"FFRPTH14": 0.932797988, "FSRPTH14": 1.257249463}, "46083": {"FFRPTH14": 0.310390316, "FSRPTH14": 0.387987895}, "46085": {"FFRPTH14": 0.515862781, "FSRPTH14": 0.515862781}, "46087": {"FFRPTH14": 0.17702248199999998, "FSRPTH14": 1.239157373}, "46089": {"FFRPTH14": 0.0, "FSRPTH14": 1.646768217}, "46091": {"FFRPTH14": 0.42707666, "FSRPTH14": 1.0676916509999999}, "46093": {"FFRPTH14": 0.25973062199999997, "FSRPTH14": 0.779191867}, "46095": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "46097": {"FFRPTH14": 1.7271157169999998, "FSRPTH14": 0.863557858}, "46099": {"FFRPTH14": 0.836605024, "FSRPTH14": 0.672564823}, "46101": {"FFRPTH14": 0.15705984, "FSRPTH14": 0.9423590390000001}, "46103": {"FFRPTH14": 0.812993108, "FSRPTH14": 0.89614013}, "46105": {"FFRPTH14": 0.0, "FSRPTH14": 1.318826245}, "46107": {"FFRPTH14": 0.854700855, "FSRPTH14": 1.709401709}, "46109": {"FFRPTH14": 0.38557933299999997, "FSRPTH14": 0.674763833}, "46111": {"FFRPTH14": 0.42808219200000003, "FSRPTH14": 0.8561643840000001}, "46113": {"FFRPTH14": 0.14066676, "FSRPTH14": 0.07033338}, "46115": {"FFRPTH14": 0.454683237, "FSRPTH14": 0.454683237}, "46117": {"FFRPTH14": 1.005698961, "FSRPTH14": 1.340931948}, "46119": {"FFRPTH14": 0.0, "FSRPTH14": 3.47705146}, "46121": {"FFRPTH14": 0.10119409, "FSRPTH14": 0.10119409}, "46123": {"FFRPTH14": 0.544267054, "FSRPTH14": 0.9071117559999999}, "46125": {"FFRPTH14": 0.24177949699999998, "FSRPTH14": 1.329787234}, "46127": {"FFRPTH14": 0.465766185, "FSRPTH14": 0.5988422379999999}, "46129": {"FFRPTH14": 1.270186899, "FSRPTH14": 0.9072763559999999}, "46135": {"FFRPTH14": 0.793510845, "FSRPTH14": 0.969846588}, "46137": {"FFRPTH14": 0.353857042, "FSRPTH14": 0.353857042}, "47001": {"FFRPTH14": 0.8473678640000001, "FSRPTH14": 0.476644423}, "47003": {"FFRPTH14": 0.514723229, "FSRPTH14": 0.47182962700000003}, "47005": {"FFRPTH14": 0.495509446, "FSRPTH14": 0.86714153}, "47007": {"FFRPTH14": 0.0, "FSRPTH14": 0.14356471199999998}, "47009": {"FFRPTH14": 0.506573584, "FSRPTH14": 0.5698952820000001}, "47011": {"FFRPTH14": 0.718621025, "FSRPTH14": 0.534110221}, "47013": {"FFRPTH14": 0.6763865929999999, "FSRPTH14": 0.300616263}, "47015": {"FFRPTH14": 0.508831867, "FSRPTH14": 0.36345133399999996}, "47017": {"FFRPTH14": 0.422982023, "FSRPTH14": 0.599224533}, "47019": {"FFRPTH14": 0.580107584, "FSRPTH14": 0.369159371}, "47021": {"FFRPTH14": 0.47781913299999995, "FSRPTH14": 0.352077256}, "47023": {"FFRPTH14": 0.51786639, "FSRPTH14": 0.51786639}, "47025": {"FFRPTH14": 0.443150165, "FSRPTH14": 0.253228665}, "47027": {"FFRPTH14": 0.515132003, "FSRPTH14": 0.515132003}, "47029": {"FFRPTH14": 0.45230960600000003, "FSRPTH14": 0.76327246}, "47031": {"FFRPTH14": 0.7086511390000001, "FSRPTH14": 0.801894709}, "47033": {"FFRPTH14": 0.409053722, "FSRPTH14": 0.204526861}, "47035": {"FFRPTH14": 0.5863585410000001, "FSRPTH14": 0.60360438}, "47037": {"FFRPTH14": 0.9351429720000001, "FSRPTH14": 0.963571318}, "47039": {"FFRPTH14": 0.342876736, "FSRPTH14": 0.85719184}, "47041": {"FFRPTH14": 0.311397135, "FSRPTH14": 0.518995225}, "47043": {"FFRPTH14": 0.790904597, "FSRPTH14": 0.6722689079999999}, "47045": {"FFRPTH14": 0.527217609, "FSRPTH14": 0.474495848}, "47047": {"FFRPTH14": 0.281971752, "FSRPTH14": 0.461408321}, "47049": {"FFRPTH14": 0.560067208, "FSRPTH14": 0.280033604}, "47051": {"FFRPTH14": 0.45891502799999995, "FSRPTH14": 0.603835563}, "47053": {"FFRPTH14": 0.54576326, "FSRPTH14": 0.54576326}, "47055": {"FFRPTH14": 0.65851038, "FSRPTH14": 0.41590129299999995}, "47057": {"FFRPTH14": 0.17494751600000003, "FSRPTH14": 0.262421274}, "47059": {"FFRPTH14": 0.599985366, "FSRPTH14": 0.643886734}, "47061": {"FFRPTH14": 0.37243947899999996, "FSRPTH14": 0.297951583}, "47063": {"FFRPTH14": 0.824925439, "FSRPTH14": 0.507646424}, "47065": {"FFRPTH14": 0.902568191, "FSRPTH14": 0.8598599170000001}, "47067": {"FFRPTH14": 0.150217816, "FSRPTH14": 0.300435632}, "47069": {"FFRPTH14": 0.308107067, "FSRPTH14": 0.308107067}, "47071": {"FFRPTH14": 0.46385775, "FSRPTH14": 1.0823347509999999}, "47073": {"FFRPTH14": 0.42301930000000004, "FSRPTH14": 0.38776769200000005}, "47075": {"FFRPTH14": 0.549903767, "FSRPTH14": 0.49491339}, "47077": {"FFRPTH14": 0.6426505770000001, "FSRPTH14": 0.42843371799999996}, "47079": {"FFRPTH14": 0.589988821, "FSRPTH14": 0.745249037}, "47081": {"FFRPTH14": 0.24606299199999998, "FSRPTH14": 0.41010498700000003}, "47083": {"FFRPTH14": 0.725777186, "FSRPTH14": 0.8467400509999999}, "47085": {"FFRPTH14": 0.9374138409999999, "FSRPTH14": 0.9374138409999999}, "47087": {"FFRPTH14": 0.17289073300000002, "FSRPTH14": 0.2593361}, "47089": {"FFRPTH14": 0.53154128, "FSRPTH14": 0.47459042799999995}, "47091": {"FFRPTH14": 0.33596506, "FSRPTH14": 0.727924296}, "47093": {"FFRPTH14": 0.8737439929999999, "FSRPTH14": 0.7132604020000001}, "47095": {"FFRPTH14": 0.262088848, "FSRPTH14": 0.65522212}, "47097": {"FFRPTH14": 0.292162735, "FSRPTH14": 0.219122051}, "47099": {"FFRPTH14": 0.544069641, "FSRPTH14": 0.473104036}, "47101": {"FFRPTH14": 0.8399126490000001, "FSRPTH14": 0.33596506}, "47103": {"FFRPTH14": 0.624312513, "FSRPTH14": 0.683770848}, "47105": {"FFRPTH14": 0.7484587659999999, "FSRPTH14": 0.47271079899999996}, "47107": {"FFRPTH14": 0.646068483, "FSRPTH14": 0.513054384}, "47109": {"FFRPTH14": 0.647199909, "FSRPTH14": 0.609129326}, "47111": {"FFRPTH14": 0.565143677, "FSRPTH14": 0.347780724}, "47113": {"FFRPTH14": 0.8352176659999999, "FSRPTH14": 0.8046609220000001}, "47115": {"FFRPTH14": 0.774457, "FSRPTH14": 0.7392544090000001}, "47117": {"FFRPTH14": 0.607630561, "FSRPTH14": 0.319805558}, "47119": {"FFRPTH14": 0.8302636959999999, "FSRPTH14": 0.619774309}, "47121": {"FFRPTH14": 0.170925562, "FSRPTH14": 0.5982394670000001}, "47123": {"FFRPTH14": 0.6632325960000001, "FSRPTH14": 0.619017089}, "47125": {"FFRPTH14": 0.615915899, "FSRPTH14": 0.658029806}, "47127": {"FFRPTH14": 0.316505776, "FSRPTH14": 0.633011552}, "47129": {"FFRPTH14": 0.184672207, "FSRPTH14": 0.092336103}, "47131": {"FFRPTH14": 0.581752367, "FSRPTH14": 0.678711095}, "47133": {"FFRPTH14": 0.499364445, "FSRPTH14": 0.36317414200000003}, "47135": {"FFRPTH14": 0.511378164, "FSRPTH14": 0.383533623}, "47137": {"FFRPTH14": 0.780640125, "FSRPTH14": 0.9758001559999999}, "47139": {"FFRPTH14": 0.298864316, "FSRPTH14": 0.41841004200000004}, "47141": {"FFRPTH14": 0.8224903929999999, "FSRPTH14": 0.782040046}, "47143": {"FFRPTH14": 0.612726326, "FSRPTH14": 0.673998958}, "47145": {"FFRPTH14": 0.644574202, "FSRPTH14": 0.28437097100000003}, "47147": {"FFRPTH14": 0.719752053, "FSRPTH14": 0.558175061}, "47149": {"FFRPTH14": 0.699189356, "FSRPTH14": 0.609194686}, "47151": {"FFRPTH14": 0.5912584710000001, "FSRPTH14": 0.318369946}, "47153": {"FFRPTH14": 0.8161044609999999, "FSRPTH14": 0.34004352600000004}, "47155": {"FFRPTH14": 1.019871727, "FSRPTH14": 1.629691936}, "47157": {"FFRPTH14": 0.725391802, "FSRPTH14": 0.5975694579999999}, "47159": {"FFRPTH14": 0.47345994, "FSRPTH14": 0.47345994}, "47161": {"FFRPTH14": 0.45184125299999994, "FSRPTH14": 0.45184125299999994}, "47163": {"FFRPTH14": 0.897820398, "FSRPTH14": 0.7386323840000001}, "47165": {"FFRPTH14": 0.555857932, "FSRPTH14": 0.567438306}, "47167": {"FFRPTH14": 0.40569268, "FSRPTH14": 0.438148094}, "47169": {"FFRPTH14": 0.499875031, "FSRPTH14": 0.37490627299999996}, "47171": {"FFRPTH14": 0.556699883, "FSRPTH14": 0.7237098479999999}, "47173": {"FFRPTH14": 0.20928164100000002, "FSRPTH14": 0.20928164100000002}, "47175": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "47177": {"FFRPTH14": 0.600465361, "FSRPTH14": 0.475368411}, "47179": {"FFRPTH14": 0.80797199, "FSRPTH14": 0.895106225}, "47181": {"FFRPTH14": 0.236504464, "FSRPTH14": 0.41388281200000004}, "47183": {"FFRPTH14": 0.66912984, "FSRPTH14": 0.5236668320000001}, "47185": {"FFRPTH14": 0.6843846240000001, "FSRPTH14": 0.456256416}, "47187": {"FFRPTH14": 0.779628312, "FSRPTH14": 0.838100436}, "47189": {"FFRPTH14": 0.725816743, "FSRPTH14": 0.622128637}, "48001": {"FFRPTH14": 0.416471446, "FSRPTH14": 0.451177399}, "48003": {"FFRPTH14": 0.57218058, "FSRPTH14": 0.57218058}, "48005": {"FFRPTH14": 0.729344729, "FSRPTH14": 0.535612536}, "48007": {"FFRPTH14": 0.680762454, "FSRPTH14": 1.2814352070000001}, "48009": {"FFRPTH14": 0.453977982, "FSRPTH14": 0.226988991}, "48011": {"FFRPTH14": 1.023017903, "FSRPTH14": 0.0}, "48013": {"FFRPTH14": 0.460501528, "FSRPTH14": 0.5023653029999999}, "48015": {"FFRPTH14": 0.515216047, "FSRPTH14": 0.515216047}, "48017": {"FFRPTH14": 0.578871201, "FSRPTH14": 0.578871201}, "48019": {"FFRPTH14": 0.335056481, "FSRPTH14": 0.62224775}, "48021": {"FFRPTH14": 0.461130538, "FSRPTH14": 0.5379856279999999}, "48023": {"FFRPTH14": 0.83518931, "FSRPTH14": 1.113585746}, "48025": {"FFRPTH14": 0.48686973200000006, "FSRPTH14": 0.456440374}, "48027": {"FFRPTH14": 0.665370359, "FSRPTH14": 0.531688643}, "48029": {"FFRPTH14": 0.7004816079999999, "FSRPTH14": 0.691321464}, "48031": {"FFRPTH14": 0.832408435, "FSRPTH14": 0.9248982609999999}, "48033": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48035": {"FFRPTH14": 0.562429696, "FSRPTH14": 0.33745781799999996}, "48037": {"FFRPTH14": 0.997051729, "FSRPTH14": 0.589654248}, "48039": {"FFRPTH14": 0.576711502, "FSRPTH14": 0.547136553}, "48041": {"FFRPTH14": 0.827149633, "FSRPTH14": 0.602432681}, "48043": {"FFRPTH14": 0.763109125, "FSRPTH14": 1.1991714820000001}, "48045": {"FFRPTH14": 0.0, "FSRPTH14": 0.651041667}, "48047": {"FFRPTH14": 0.834028357, "FSRPTH14": 0.973033083}, "48049": {"FFRPTH14": 0.956099116, "FSRPTH14": 0.690516028}, "48051": {"FFRPTH14": 0.695531212, "FSRPTH14": 0.695531212}, "48053": {"FFRPTH14": 0.62301137, "FSRPTH14": 1.13477071}, "48055": {"FFRPTH14": 0.527505652, "FSRPTH14": 0.477267018}, "48057": {"FFRPTH14": 0.6422902229999999, "FSRPTH14": 0.963435335}, "48059": {"FFRPTH14": 0.666025309, "FSRPTH14": 0.148005624}, "48061": {"FFRPTH14": 0.570895735, "FSRPTH14": 0.5732744679999999}, "48063": {"FFRPTH14": 0.55463117, "FSRPTH14": 0.475398146}, "48065": {"FFRPTH14": 0.665225345, "FSRPTH14": 0.166306336}, "48067": {"FFRPTH14": 0.5617791879999999, "FSRPTH14": 0.49568751899999997}, "48069": {"FFRPTH14": 0.771109112, "FSRPTH14": 0.771109112}, "48071": {"FFRPTH14": 0.655393892, "FSRPTH14": 0.471883602}, "48073": {"FFRPTH14": 0.5107854310000001, "FSRPTH14": 0.353620683}, "48075": {"FFRPTH14": 0.987445338, "FSRPTH14": 1.5516998169999998}, "48077": {"FFRPTH14": 0.38572806200000004, "FSRPTH14": 0.19286403100000002}, "48079": {"FFRPTH14": 0.0, "FSRPTH14": 0.340715503}, "48081": {"FFRPTH14": 0.0, "FSRPTH14": 0.921942225}, "48083": {"FFRPTH14": 0.711743772, "FSRPTH14": 0.8303677340000001}, "48085": {"FFRPTH14": 0.83706019, "FSRPTH14": 0.735392961}, "48087": {"FFRPTH14": 1.325820351, "FSRPTH14": 0.331455088}, "48089": {"FFRPTH14": 0.772238042, "FSRPTH14": 0.6757082870000001}, "48091": {"FFRPTH14": 0.679095187, "FSRPTH14": 0.8084466509999999}, "48093": {"FFRPTH14": 0.44280442799999997, "FSRPTH14": 0.664206642}, "48095": {"FFRPTH14": 0.740740741, "FSRPTH14": 0.49382716}, "48097": {"FFRPTH14": 0.46438430399999997, "FSRPTH14": 0.8255720959999999}, "48099": {"FFRPTH14": 0.42349329, "FSRPTH14": 0.383790794}, "48101": {"FFRPTH14": 0.7067137809999999, "FSRPTH14": 0.7067137809999999}, "48103": {"FFRPTH14": 0.606060606, "FSRPTH14": 0.606060606}, "48105": {"FFRPTH14": 1.311647429, "FSRPTH14": 1.311647429}, "48107": {"FFRPTH14": 0.169520258, "FSRPTH14": 0.169520258}, "48109": {"FFRPTH14": 0.882612533, "FSRPTH14": 1.3239188}, "48111": {"FFRPTH14": 0.840925018, "FSRPTH14": 0.9810791870000001}, "48113": {"FFRPTH14": 0.820681654, "FSRPTH14": 0.6872762179999999}, "48115": {"FFRPTH14": 0.9721806759999999, "FSRPTH14": 0.523481902}, "48117": {"FFRPTH14": 0.5730659029999999, "FSRPTH14": 0.468872102}, "48119": {"FFRPTH14": 0.19091256199999998, "FSRPTH14": 0.38182512399999996}, "48121": {"FFRPTH14": 0.65572639, "FSRPTH14": 0.5853751779999999}, "48123": {"FFRPTH14": 0.773544769, "FSRPTH14": 0.9185844129999999}, "48125": {"FFRPTH14": 1.3525698830000001, "FSRPTH14": 1.3525698830000001}, "48127": {"FFRPTH14": 0.541076743, "FSRPTH14": 0.721435657}, "48129": {"FFRPTH14": 1.1289867340000002, "FSRPTH14": 0.8467400509999999}, "48131": {"FFRPTH14": 0.433538542, "FSRPTH14": 0.34683083299999995}, "48133": {"FFRPTH14": 0.935299296, "FSRPTH14": 0.7152288729999999}, "48135": {"FFRPTH14": 0.701736147, "FSRPTH14": 0.519804553}, "48137": {"FFRPTH14": 0.532197978, "FSRPTH14": 0.532197978}, "48139": {"FFRPTH14": 0.608849024, "FSRPTH14": 0.45192917299999996}, "48141": {"FFRPTH14": 0.6838738940000001, "FSRPTH14": 0.613086947}, "48143": {"FFRPTH14": 0.8468876879999999, "FSRPTH14": 0.7223453809999999}, "48145": {"FFRPTH14": 0.412031314, "FSRPTH14": 0.353169698}, "48147": {"FFRPTH14": 0.385162361, "FSRPTH14": 0.444418109}, "48149": {"FFRPTH14": 0.805379938, "FSRPTH14": 1.087262916}, "48151": {"FFRPTH14": 0.26102845199999997, "FSRPTH14": 0.5220569039999999}, "48153": {"FFRPTH14": 1.008572869, "FSRPTH14": 0.840477391}, "48155": {"FFRPTH14": 1.568627451, "FSRPTH14": 0.784313725}, "48157": {"FFRPTH14": 0.579270295, "FSRPTH14": 0.5063143379999999}, "48159": {"FFRPTH14": 0.471698113, "FSRPTH14": 0.5660377360000001}, "48161": {"FFRPTH14": 0.506021658, "FSRPTH14": 0.506021658}, "48163": {"FFRPTH14": 0.755490799, "FSRPTH14": 0.431709028}, "48165": {"FFRPTH14": 0.6177606179999999, "FSRPTH14": 0.6177606179999999}, "48167": {"FFRPTH14": 0.7288397759999999, "FSRPTH14": 0.697012712}, "48169": {"FFRPTH14": 0.777000777, "FSRPTH14": 0.46620046600000004}, "48171": {"FFRPTH14": 0.587774295, "FSRPTH14": 1.84169279}, "48173": {"FFRPTH14": 0.774593338, "FSRPTH14": 0.774593338}, "48175": {"FFRPTH14": 0.39740363, "FSRPTH14": 0.662339383}, "48177": {"FFRPTH14": 0.6841950929999999, "FSRPTH14": 0.6841950929999999}, "48179": {"FFRPTH14": 0.520742927, "FSRPTH14": 0.911300122}, "48181": {"FFRPTH14": 0.7042595559999999, "FSRPTH14": 0.574740557}, "48183": {"FFRPTH14": 0.965877731, "FSRPTH14": 0.8522450570000001}, "48185": {"FFRPTH14": 0.294420727, "FSRPTH14": 0.478433682}, "48187": {"FFRPTH14": 0.482173175, "FSRPTH14": 0.37351443100000004}, "48189": {"FFRPTH14": 0.5472350229999999, "FSRPTH14": 0.51843318}, "48191": {"FFRPTH14": 1.271051795, "FSRPTH14": 1.588814744}, "48193": {"FFRPTH14": 0.8537626540000001, "FSRPTH14": 0.7317965609999999}, "48195": {"FFRPTH14": 0.7260845890000001, "FSRPTH14": 1.089126883}, "48197": {"FFRPTH14": 1.018329939, "FSRPTH14": 1.018329939}, "48199": {"FFRPTH14": 0.75511048, "FSRPTH14": 0.359576419}, "48201": {"FFRPTH14": 0.703611723, "FSRPTH14": 0.62480721}, "48203": {"FFRPTH14": 0.5346322920000001, "FSRPTH14": 0.40097421899999997}, "48205": {"FFRPTH14": 0.0, "FSRPTH14": 0.8211528990000001}, "48207": {"FFRPTH14": 0.520020801, "FSRPTH14": 0.866701335}, "48209": {"FFRPTH14": 0.7080124309999999, "FSRPTH14": 0.62153763}, "48211": {"FFRPTH14": 0.7177033490000001, "FSRPTH14": 0.9569377990000001}, "48213": {"FFRPTH14": 0.7188800609999999, "FSRPTH14": 0.605372683}, "48215": {"FFRPTH14": 0.436784735, "FSRPTH14": 0.458443482}, "48217": {"FFRPTH14": 0.60261708, "FSRPTH14": 0.545224977}, "48219": {"FFRPTH14": 0.678627476, "FSRPTH14": 0.678627476}, "48221": {"FFRPTH14": 0.778917305, "FSRPTH14": 0.630552104}, "48223": {"FFRPTH14": 0.38974416100000003, "FSRPTH14": 0.6681328470000001}, "48225": {"FFRPTH14": 0.4397344, "FSRPTH14": 0.571654721}, "48227": {"FFRPTH14": 0.7639627840000001, "FSRPTH14": 0.791247169}, "48229": {"FFRPTH14": 0.0, "FSRPTH14": 1.245717845}, "48231": {"FFRPTH14": 0.5989174279999999, "FSRPTH14": 0.42941249600000003}, "48233": {"FFRPTH14": 0.7807835390000001, "FSRPTH14": 0.688926652}, "48235": {"FFRPTH14": 0.635324015, "FSRPTH14": 1.27064803}, "48237": {"FFRPTH14": 0.677583286, "FSRPTH14": 0.677583286}, "48239": {"FFRPTH14": 0.6784720809999999, "FSRPTH14": 0.407083249}, "48241": {"FFRPTH14": 0.646939694, "FSRPTH14": 0.450045005}, "48243": {"FFRPTH14": 0.45372050799999997, "FSRPTH14": 1.361161525}, "48245": {"FFRPTH14": 0.705691121, "FSRPTH14": 0.54314429}, "48247": {"FFRPTH14": 0.761179829, "FSRPTH14": 0.380589914}, "48249": {"FFRPTH14": 0.749643315, "FSRPTH14": 0.556186976}, "48251": {"FFRPTH14": 0.660501982, "FSRPTH14": 0.387409816}, "48253": {"FFRPTH14": 0.401284109, "FSRPTH14": 0.250802568}, "48255": {"FFRPTH14": 0.6037837110000001, "FSRPTH14": 1.140480343}, "48257": {"FFRPTH14": 0.629292675, "FSRPTH14": 0.485454349}, "48259": {"FFRPTH14": 0.694444444, "FSRPTH14": 0.7973251029999999}, "48261": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48263": {"FFRPTH14": 0.0, "FSRPTH14": 1.27388535}, "48265": {"FFRPTH14": 0.7713302479999999, "FSRPTH14": 0.791107947}, "48267": {"FFRPTH14": 0.901306895, "FSRPTH14": 0.901306895}, "48269": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48271": {"FFRPTH14": 0.283607487, "FSRPTH14": 0.567214974}, "48273": {"FFRPTH14": 0.8698353529999999, "FSRPTH14": 0.7145076109999999}, "48275": {"FFRPTH14": 0.259201659, "FSRPTH14": 0.518403318}, "48277": {"FFRPTH14": 0.706742322, "FSRPTH14": 0.72693496}, "48279": {"FFRPTH14": 0.442021512, "FSRPTH14": 0.6630322679999999}, "48281": {"FFRPTH14": 0.496130185, "FSRPTH14": 0.8434213140000001}, "48283": {"FFRPTH14": 0.936580145, "FSRPTH14": 0.5351886539999999}, "48285": {"FFRPTH14": 0.45636631, "FSRPTH14": 0.5070736779999999}, "48287": {"FFRPTH14": 0.657030223, "FSRPTH14": 0.716760244}, "48289": {"FFRPTH14": 0.5930846329999999, "FSRPTH14": 1.0082438759999999}, "48291": {"FFRPTH14": 0.512052434, "FSRPTH14": 0.371238015}, "48293": {"FFRPTH14": 0.46760755, "FSRPTH14": 0.680156436}, "48295": {"FFRPTH14": 0.281452294, "FSRPTH14": 0.844356882}, "48297": {"FFRPTH14": 0.744355306, "FSRPTH14": 1.240592176}, "48299": {"FFRPTH14": 0.9738595590000001, "FSRPTH14": 0.7688364940000001}, "48301": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48303": {"FFRPTH14": 0.904841925, "FSRPTH14": 0.57147911}, "48305": {"FFRPTH14": 0.519840582, "FSRPTH14": 0.346560388}, "48307": {"FFRPTH14": 0.975728747, "FSRPTH14": 1.097694841}, "48309": {"FFRPTH14": 0.805123213, "FSRPTH14": 0.529902523}, "48311": {"FFRPTH14": 0.0, "FSRPTH14": 3.726708075}, "48313": {"FFRPTH14": 1.226462737, "FSRPTH14": 0.721448669}, "48315": {"FFRPTH14": 0.492659375, "FSRPTH14": 0.689723125}, "48317": {"FFRPTH14": 0.183150183, "FSRPTH14": 0.366300366}, "48319": {"FFRPTH14": 1.22819946, "FSRPTH14": 1.719479243}, "48321": {"FFRPTH14": 0.62980914, "FSRPTH14": 0.876256195}, "48323": {"FFRPTH14": 0.526103502, "FSRPTH14": 0.45595636799999995}, "48325": {"FFRPTH14": 0.584624379, "FSRPTH14": 0.6890215890000001}, "48327": {"FFRPTH14": 0.465766185, "FSRPTH14": 0.931532371}, "48329": {"FFRPTH14": 0.750818199, "FSRPTH14": 0.59038696}, "48331": {"FFRPTH14": 0.535949868, "FSRPTH14": 0.618403694}, "48333": {"FFRPTH14": 0.41067761799999997, "FSRPTH14": 1.026694045}, "48335": {"FFRPTH14": 0.550903482, "FSRPTH14": 0.661084178}, "48337": {"FFRPTH14": 0.618046972, "FSRPTH14": 0.5665430570000001}, "48339": {"FFRPTH14": 0.59158257, "FSRPTH14": 0.549189031}, "48341": {"FFRPTH14": 0.496658841, "FSRPTH14": 0.812714466}, "48343": {"FFRPTH14": 0.7062701090000001, "FSRPTH14": 0.47084673899999996}, "48345": {"FFRPTH14": 0.0, "FSRPTH14": 1.7346053769999998}, "48347": {"FFRPTH14": 0.6278617479999999, "FSRPTH14": 0.459411035}, "48349": {"FFRPTH14": 0.663969291, "FSRPTH14": 0.45647888799999997}, "48351": {"FFRPTH14": 0.070731362, "FSRPTH14": 0.070731362}, "48353": {"FFRPTH14": 0.8613264429999999, "FSRPTH14": 0.927582323}, "48355": {"FFRPTH14": 0.850595557, "FSRPTH14": 0.788836144}, "48357": {"FFRPTH14": 0.37181632299999995, "FSRPTH14": 1.30135713}, "48359": {"FFRPTH14": 1.4492753619999998, "FSRPTH14": 1.4492753619999998}, "48361": {"FFRPTH14": 0.767082569, "FSRPTH14": 0.35956995399999997}, "48363": {"FFRPTH14": 0.960990888, "FSRPTH14": 0.960990888}, "48365": {"FFRPTH14": 0.21035802899999997, "FSRPTH14": 0.336572847}, "48367": {"FFRPTH14": 0.6820174729999999, "FSRPTH14": 0.5115131039999999}, "48369": {"FFRPTH14": 0.10092854300000001, "FSRPTH14": 0.201857085}, "48371": {"FFRPTH14": 0.503366262, "FSRPTH14": 0.880890958}, "48373": {"FFRPTH14": 0.542546496, "FSRPTH14": 0.412335337}, "48375": {"FFRPTH14": 0.953735601, "FSRPTH14": 0.90440445}, "48377": {"FFRPTH14": 0.860091743, "FSRPTH14": 1.003440367}, "48379": {"FFRPTH14": 0.634517766, "FSRPTH14": 0.453226976}, "48381": {"FFRPTH14": 0.616128529, "FSRPTH14": 0.506941195}, "48383": {"FFRPTH14": 0.266311585, "FSRPTH14": 0.798934754}, "48385": {"FFRPTH14": 0.593295758, "FSRPTH14": 0.889943637}, "48387": {"FFRPTH14": 0.321388398, "FSRPTH14": 0.562429696}, "48389": {"FFRPTH14": 0.348456338, "FSRPTH14": 0.836295212}, "48391": {"FFRPTH14": 1.095590249, "FSRPTH14": 1.095590249}, "48393": {"FFRPTH14": 0.0, "FSRPTH14": 1.077586207}, "48395": {"FFRPTH14": 0.545454545, "FSRPTH14": 0.787878788}, "48397": {"FFRPTH14": 0.797184799, "FSRPTH14": 0.831349862}, "48399": {"FFRPTH14": 0.480030722, "FSRPTH14": 0.8640553}, "48401": {"FFRPTH14": 0.5563488679999999, "FSRPTH14": 0.445079094}, "48403": {"FFRPTH14": 0.289855072, "FSRPTH14": 0.579710145}, "48405": {"FFRPTH14": 0.116144019, "FSRPTH14": 0.232288037}, "48407": {"FFRPTH14": 0.147606923, "FSRPTH14": 0.221410384}, "48409": {"FFRPTH14": 0.82193828, "FSRPTH14": 0.5081073}, "48411": {"FFRPTH14": 0.711490573, "FSRPTH14": 1.600853789}, "48413": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "48415": {"FFRPTH14": 1.211911357, "FSRPTH14": 0.692520776}, "48417": {"FFRPTH14": 0.5982650310000001, "FSRPTH14": 0.8973975470000001}, "48419": {"FFRPTH14": 0.391926318, "FSRPTH14": 0.548696845}, "48421": {"FFRPTH14": 0.324254215, "FSRPTH14": 0.648508431}, "48423": {"FFRPTH14": 0.8225112179999999, "FSRPTH14": 0.644300454}, "48425": {"FFRPTH14": 0.920174833, "FSRPTH14": 0.805152979}, "48427": {"FFRPTH14": 0.42887777, "FSRPTH14": 0.381224684}, "48429": {"FFRPTH14": 0.850611377, "FSRPTH14": 0.9569377990000001}, "48431": {"FFRPTH14": 1.493651979, "FSRPTH14": 0.0}, "48433": {"FFRPTH14": 2.138275125, "FSRPTH14": 1.42551675}, "48435": {"FFRPTH14": 1.007049345, "FSRPTH14": 1.258811682}, "48437": {"FFRPTH14": 0.131908719, "FSRPTH14": 0.791452315}, "48439": {"FFRPTH14": 0.757700374, "FSRPTH14": 0.6132541020000001}, "48441": {"FFRPTH14": 0.9101470290000001, "FSRPTH14": 0.5771664089999999}, "48443": {"FFRPTH14": 1.078748652, "FSRPTH14": 0.0}, "48445": {"FFRPTH14": 0.5494936810000001, "FSRPTH14": 0.627992778}, "48447": {"FFRPTH14": 0.0, "FSRPTH14": 2.487562189}, "48449": {"FFRPTH14": 0.584507476, "FSRPTH14": 0.7075616809999999}, "48451": {"FFRPTH14": 0.6860592759999999, "FSRPTH14": 0.7117864979999999}, "48453": {"FFRPTH14": 0.774880662, "FSRPTH14": 0.823527879}, "48455": {"FFRPTH14": 0.35151856, "FSRPTH14": 0.281214848}, "48457": {"FFRPTH14": 0.420207302, "FSRPTH14": 0.373517602}, "48459": {"FFRPTH14": 0.446052436, "FSRPTH14": 0.297368291}, "48461": {"FFRPTH14": 1.737116387, "FSRPTH14": 0.8685581929999999}, "48463": {"FFRPTH14": 0.700667478, "FSRPTH14": 0.8481764209999999}, "48465": {"FFRPTH14": 0.6329889329999999, "FSRPTH14": 0.428798955}, "48467": {"FFRPTH14": 0.51030051, "FSRPTH14": 0.68040068}, "48469": {"FFRPTH14": 0.779525916, "FSRPTH14": 0.724629725}, "48471": {"FFRPTH14": 0.487182794, "FSRPTH14": 0.5015117}, "48473": {"FFRPTH14": 0.44852627100000003, "FSRPTH14": 0.234942332}, "48475": {"FFRPTH14": 0.516129032, "FSRPTH14": 1.2903225809999999}, "48477": {"FFRPTH14": 0.7549799640000001, "FSRPTH14": 0.842093037}, "48479": {"FFRPTH14": 0.659984325, "FSRPTH14": 0.442489491}, "48481": {"FFRPTH14": 0.777302759, "FSRPTH14": 0.558686358}, "48483": {"FFRPTH14": 0.700035002, "FSRPTH14": 2.625131257}, "48485": {"FFRPTH14": 0.732877489, "FSRPTH14": 0.732877489}, "48487": {"FFRPTH14": 1.002081246, "FSRPTH14": 0.616665382}, "48489": {"FFRPTH14": 0.36524677, "FSRPTH14": 0.36524677}, "48491": {"FFRPTH14": 0.656106285, "FSRPTH14": 0.54777721}, "48493": {"FFRPTH14": 0.431015904, "FSRPTH14": 0.560320676}, "48495": {"FFRPTH14": 0.383582662, "FSRPTH14": 0.511443549}, "48497": {"FFRPTH14": 0.584055291, "FSRPTH14": 0.48671274200000003}, "48499": {"FFRPTH14": 0.350042005, "FSRPTH14": 0.70008401}, "48501": {"FFRPTH14": 0.844798455, "FSRPTH14": 1.086169442}, "48503": {"FFRPTH14": 0.980926431, "FSRPTH14": 0.871934605}, "48505": {"FFRPTH14": 0.419023675, "FSRPTH14": 0.48886095399999996}, "48507": {"FFRPTH14": 0.244558572, "FSRPTH14": 0.733675715}, "49001": {"FFRPTH14": 1.702522829, "FSRPTH14": 0.9286488159999999}, "49003": {"FFRPTH14": 0.601731434, "FSRPTH14": 0.349392445}, "49005": {"FFRPTH14": 0.743601227, "FSRPTH14": 0.346450572}, "49007": {"FFRPTH14": 0.677637948, "FSRPTH14": 0.580832527}, "49009": {"FFRPTH14": 0.0, "FSRPTH14": 1.790510295}, "49011": {"FFRPTH14": 0.636958131, "FSRPTH14": 0.360942941}, "49013": {"FFRPTH14": 0.588812561, "FSRPTH14": 0.539744848}, "49015": {"FFRPTH14": 0.7525162259999999, "FSRPTH14": 0.282193585}, "49017": {"FFRPTH14": 2.7866242039999998, "FSRPTH14": 2.1894904459999998}, "49019": {"FFRPTH14": 0.9545020679999999, "FSRPTH14": 3.075617775}, "49021": {"FFRPTH14": 0.719287482, "FSRPTH14": 0.634665426}, "49023": {"FFRPTH14": 0.85828724, "FSRPTH14": 0.667556742}, "49025": {"FFRPTH14": 0.827129859, "FSRPTH14": 2.205679625}, "49027": {"FFRPTH14": 0.9519276529999999, "FSRPTH14": 0.475963827}, "49029": {"FFRPTH14": 0.377073906, "FSRPTH14": 0.377073906}, "49031": {"FFRPTH14": 1.347708895, "FSRPTH14": 0.6738544470000001}, "49033": {"FFRPTH14": 3.0527692980000003, "FSRPTH14": 0.872219799}, "49035": {"FFRPTH14": 0.829866397, "FSRPTH14": 0.622857781}, "49037": {"FFRPTH14": 0.393416825, "FSRPTH14": 0.5901252379999999}, "49039": {"FFRPTH14": 0.526740879, "FSRPTH14": 0.316044527}, "49041": {"FFRPTH14": 0.770230588, "FSRPTH14": 0.577672941}, "49043": {"FFRPTH14": 0.997314921, "FSRPTH14": 2.045774198}, "49045": {"FFRPTH14": 0.470794506, "FSRPTH14": 0.30845157300000003}, "49047": {"FFRPTH14": 0.542490574, "FSRPTH14": 0.46111698799999995}, "49049": {"FFRPTH14": 0.6256974479999999, "FSRPTH14": 0.335131396}, "49051": {"FFRPTH14": 0.793822617, "FSRPTH14": 0.5773255389999999}, "49053": {"FFRPTH14": 0.763419064, "FSRPTH14": 0.651538684}, "49055": {"FFRPTH14": 0.734484025, "FSRPTH14": 2.5706940869999997}, "49057": {"FFRPTH14": 0.602973282, "FSRPTH14": 0.544755172}, "50001": {"FFRPTH14": 0.459347726, "FSRPTH14": 0.7565727259999999}, "50003": {"FFRPTH14": 0.8231581840000001, "FSRPTH14": 1.317053094}, "50005": {"FFRPTH14": 0.613279107, "FSRPTH14": 0.871501888}, "50007": {"FFRPTH14": 0.747519171, "FSRPTH14": 1.02783886}, "50009": {"FFRPTH14": 0.163265306, "FSRPTH14": 0.816326531}, "50011": {"FFRPTH14": 0.4728424, "FSRPTH14": 0.781217878}, "50013": {"FFRPTH14": 0.142979697, "FSRPTH14": 0.428939091}, "50015": {"FFRPTH14": 0.7176461209999999, "FSRPTH14": 1.87385376}, "50017": {"FFRPTH14": 0.311861118, "FSRPTH14": 0.866280883}, "50019": {"FFRPTH14": 0.443098737, "FSRPTH14": 0.738497895}, "50021": {"FFRPTH14": 0.732283727, "FSRPTH14": 1.447924641}, "50023": {"FFRPTH14": 0.559340995, "FSRPTH14": 1.135631716}, "50025": {"FFRPTH14": 0.869286727, "FSRPTH14": 1.624193622}, "50027": {"FFRPTH14": 0.57128575, "FSRPTH14": 1.410361695}, "51001": {"FFRPTH14": 0.545107659, "FSRPTH14": 1.090215318}, "51003": {"FFRPTH14": 0.555082353, "FSRPTH14": 0.60293428}, "51005": {"FFRPTH14": 0.442477876, "FSRPTH14": 0.442477876}, "51007": {"FFRPTH14": 0.311162972, "FSRPTH14": 0.311162972}, "51009": {"FFRPTH14": 0.499360195, "FSRPTH14": 0.468150183}, "51011": {"FFRPTH14": 0.458145167, "FSRPTH14": 0.458145167}, "51013": {"FFRPTH14": 1.044476175, "FSRPTH14": 1.075325683}, "51015": {"FFRPTH14": 0.36554656, "FSRPTH14": 0.33846903700000003}, "51017": {"FFRPTH14": 0.219154065, "FSRPTH14": 0.8766162609999999}, "51019": {"FFRPTH14": 0.261154564, "FSRPTH14": 0.483135944}, "51021": {"FFRPTH14": 0.301886792, "FSRPTH14": 0.150943396}, "51023": {"FFRPTH14": 0.574018127, "FSRPTH14": 0.6646525679999999}, "51025": {"FFRPTH14": 0.181840223, "FSRPTH14": 0.303067038}, "51027": {"FFRPTH14": 0.389509218, "FSRPTH14": 0.302951614}, "51029": {"FFRPTH14": 0.118252232, "FSRPTH14": 0.17737834800000002}, "51031": {"FFRPTH14": 0.765236403, "FSRPTH14": 0.455497859}, "51033": {"FFRPTH14": 0.268654712, "FSRPTH14": 0.436563906}, "51035": {"FFRPTH14": 0.405117991, "FSRPTH14": 0.506397488}, "51036": {"FFRPTH14": 0.0, "FSRPTH14": 0.284778585}, "51037": {"FFRPTH14": 0.24539877300000001, "FSRPTH14": 0.408997955}, "51041": {"FFRPTH14": 0.7097765709999999, "FSRPTH14": 0.652633542}, "51043": {"FFRPTH14": 0.416002219, "FSRPTH14": 0.554669625}, "51045": {"FFRPTH14": 0.0, "FSRPTH14": 0.38211692799999997}, "51047": {"FFRPTH14": 0.569499247, "FSRPTH14": 0.569499247}, "51049": {"FFRPTH14": 0.0, "FSRPTH14": 0.305281368}, "51051": {"FFRPTH14": 0.26130128, "FSRPTH14": 0.587927881}, "51053": {"FFRPTH14": 0.21537025699999998, "FSRPTH14": 0.287160343}, "51057": {"FFRPTH14": 0.90065748, "FSRPTH14": 0.990723228}, "51059": {"FFRPTH14": 0.8008523670000001, "FSRPTH14": 0.661076817}, "51061": {"FFRPTH14": 0.805884422, "FSRPTH14": 0.615402649}, "51063": {"FFRPTH14": 0.256772371, "FSRPTH14": 0.770317114}, "51065": {"FFRPTH14": 0.191629618, "FSRPTH14": 0.38325923700000003}, "51067": {"FFRPTH14": 0.461336456, "FSRPTH14": 0.532311296}, "51069": {"FFRPTH14": 0.5705476039999999, "FSRPTH14": 0.558408294}, "51071": {"FFRPTH14": 0.713648528, "FSRPTH14": 0.654177817}, "51073": {"FFRPTH14": 0.538488463, "FSRPTH14": 0.646186155}, "51075": {"FFRPTH14": 0.31911013899999996, "FSRPTH14": 0.774981765}, "51077": {"FFRPTH14": 0.19876764100000002, "FSRPTH14": 0.463791161}, "51079": {"FFRPTH14": 0.367820924, "FSRPTH14": 0.525458463}, "51081": {"FFRPTH14": 0.342436435, "FSRPTH14": 0.085609109}, "51083": {"FFRPTH14": 0.710227273, "FSRPTH14": 0.653409091}, "51085": {"FFRPTH14": 0.7358857120000001, "FSRPTH14": 0.726073903}, "51087": {"FFRPTH14": 0.835600949, "FSRPTH14": 0.848026242}, "51089": {"FFRPTH14": 0.595226666, "FSRPTH14": 0.345615484}, "51091": {"FFRPTH14": 0.0, "FSRPTH14": 1.334519573}, "51093": {"FFRPTH14": 0.5554475520000001, "FSRPTH14": 0.638764685}, "51095": {"FFRPTH14": 0.427097254, "FSRPTH14": 0.688866539}, "51097": {"FFRPTH14": 0.0, "FSRPTH14": 0.278745645}, "51099": {"FFRPTH14": 0.472980963, "FSRPTH14": 0.551811123}, "51101": {"FFRPTH14": 0.432472507, "FSRPTH14": 0.864945014}, "51103": {"FFRPTH14": 0.9054690329999999, "FSRPTH14": 1.2676566459999998}, "51105": {"FFRPTH14": 0.28054987800000003, "FSRPTH14": 0.320628432}, "51107": {"FFRPTH14": 0.718909241, "FSRPTH14": 0.6886103840000001}, "51109": {"FFRPTH14": 0.26202399, "FSRPTH14": 0.378479096}, "51111": {"FFRPTH14": 0.16043638699999999, "FSRPTH14": 0.561527354}, "51113": {"FFRPTH14": 0.380025842, "FSRPTH14": 0.5320361779999999}, "51115": {"FFRPTH14": 0.565866908, "FSRPTH14": 0.905387053}, "51117": {"FFRPTH14": 0.801487561, "FSRPTH14": 0.673249551}, "51119": {"FFRPTH14": 0.654450262, "FSRPTH14": 1.682872102}, "51121": {"FFRPTH14": 0.647854881, "FSRPTH14": 0.812389453}, "51125": {"FFRPTH14": 0.40404040399999996, "FSRPTH14": 0.673400673}, "51127": {"FFRPTH14": 0.499475551, "FSRPTH14": 0.699265771}, "51131": {"FFRPTH14": 1.072518769, "FSRPTH14": 0.742512994}, "51133": {"FFRPTH14": 0.24487796899999997, "FSRPTH14": 0.979511877}, "51135": {"FFRPTH14": 0.83445664, "FSRPTH14": 0.83445664}, "51137": {"FFRPTH14": 0.742305716, "FSRPTH14": 0.742305716}, "51139": {"FFRPTH14": 0.712848038, "FSRPTH14": 0.545119088}, "51141": {"FFRPTH14": 0.328515112, "FSRPTH14": 0.38326763}, "51143": {"FFRPTH14": 0.24045012300000002, "FSRPTH14": 0.304570155}, "51145": {"FFRPTH14": 0.210903722, "FSRPTH14": 0.562409927}, "51147": {"FFRPTH14": 0.650082344, "FSRPTH14": 0.780098813}, "51149": {"FFRPTH14": 0.455361209, "FSRPTH14": 0.401789302}, "51153": {"FFRPTH14": 0.634395441, "FSRPTH14": 0.529036481}, "51155": {"FFRPTH14": 0.961482431, "FSRPTH14": 0.37876580600000004}, "51157": {"FFRPTH14": 0.271702214, "FSRPTH14": 0.95095775}, "51159": {"FFRPTH14": 0.224668614, "FSRPTH14": 0.6740058409999999}, "51161": {"FFRPTH14": 0.565122354, "FSRPTH14": 0.6824119000000001}, "51163": {"FFRPTH14": 0.403099386, "FSRPTH14": 0.671832311}, "51165": {"FFRPTH14": 0.34539663, "FSRPTH14": 0.460528841}, "51167": {"FFRPTH14": 0.535274596, "FSRPTH14": 0.46390465}, "51169": {"FFRPTH14": 0.446747677, "FSRPTH14": 0.402072909}, "51171": {"FFRPTH14": 0.534622626, "FSRPTH14": 0.604356012}, "51173": {"FFRPTH14": 0.602123277, "FSRPTH14": 0.570432578}, "51175": {"FFRPTH14": 0.221496207, "FSRPTH14": 0.276870259}, "51177": {"FFRPTH14": 0.681177818, "FSRPTH14": 0.588289934}, "51179": {"FFRPTH14": 0.542888165, "FSRPTH14": 0.5000285729999999}, "51181": {"FFRPTH14": 0.147275405, "FSRPTH14": 0.29455081}, "51183": {"FFRPTH14": 0.509900569, "FSRPTH14": 0.424917141}, "51185": {"FFRPTH14": 0.736444813, "FSRPTH14": 0.529319709}, "51187": {"FFRPTH14": 0.589940236, "FSRPTH14": 0.8207864159999999}, "51191": {"FFRPTH14": 0.602971003, "FSRPTH14": 0.6577865479999999}, "51193": {"FFRPTH14": 0.22887223199999998, "FSRPTH14": 1.029925044}, "51195": {"FFRPTH14": 0.651057969, "FSRPTH14": 0.500813822}, "51197": {"FFRPTH14": 0.755468562, "FSRPTH14": 0.961505443}, "51199": {"FFRPTH14": 0.753670375, "FSRPTH14": 0.798890597}, "51510": {"FFRPTH14": 0.8367922959999999, "FSRPTH14": 1.0625933920000001}, "51515": {"FFRPTH14": 0.0, "FSRPTH14": 0.0}, "51520": {"FFRPTH14": 1.804003724, "FSRPTH14": 1.7458100559999998}, "51530": {"FFRPTH14": 0.605785249, "FSRPTH14": 0.45433893700000005}, "51540": {"FFRPTH14": 1.447590639, "FSRPTH14": 2.895181278}, "51550": {"FFRPTH14": 0.7713040609999999, "FSRPTH14": 0.788444151}, "51570": {"FFRPTH14": 1.97394394, "FSRPTH14": 1.8611471430000002}, "51580": {"FFRPTH14": 1.723543606, "FSRPTH14": 1.551189245}, "51590": {"FFRPTH14": 1.295825087, "FSRPTH14": 1.083780982}, "51595": {"FFRPTH14": 1.830831197, "FSRPTH14": 2.380080557}, "51600": {"FFRPTH14": 3.512641425, "FSRPTH14": 3.471796757}, "51610": {"FFRPTH14": 2.4262921840000002, "FSRPTH14": 3.8967722960000004}, "51620": {"FFRPTH14": 1.290171241, "FSRPTH14": 1.52474783}, "51630": {"FFRPTH14": 1.4462081130000002, "FSRPTH14": 2.8924162260000004}, "51640": {"FFRPTH14": 2.281151982, "FSRPTH14": 1.996007984}, "51650": {"FFRPTH14": 0.8109352059999999, "FSRPTH14": 0.6940436440000001}, "51660": {"FFRPTH14": 1.009947025, "FSRPTH14": 1.5816151530000002}, "51670": {"FFRPTH14": 0.856010092, "FSRPTH14": 0.630744278}, "51678": {"FFRPTH14": 1.3678019419999998, "FSRPTH14": 1.778142525}, "51680": {"FFRPTH14": 1.02470682, "FSRPTH14": 0.986754716}, "51683": {"FFRPTH14": 1.188184691, "FSRPTH14": 1.069366222}, "51685": {"FFRPTH14": 0.39541320700000004, "FSRPTH14": 0.527217609}, "51690": {"FFRPTH14": 1.677485231, "FSRPTH14": 1.239880388}, "51700": {"FFRPTH14": 0.836225508, "FSRPTH14": 0.819828929}, "51710": {"FFRPTH14": 0.969734505, "FSRPTH14": 0.89639324}, "51720": {"FFRPTH14": 2.9769288019999998, "FSRPTH14": 1.9846192009999999}, "51730": {"FFRPTH14": 1.039723556, "FSRPTH14": 0.764502615}, "51735": {"FFRPTH14": 0.83001328, "FSRPTH14": 0.9960159359999999}, "51740": {"FFRPTH14": 0.82288238, "FSRPTH14": 0.624973959}, "51750": {"FFRPTH14": 0.5667006689999999, "FSRPTH14": 0.680040802}, "51760": {"FFRPTH14": 0.812474467, "FSRPTH14": 1.344943609}, "51770": {"FFRPTH14": 0.885062558, "FSRPTH14": 1.28736372}, "51775": {"FFRPTH14": 1.177255425, "FSRPTH14": 1.25573912}, "51790": {"FFRPTH14": 0.9780748229999999, "FSRPTH14": 1.1003341759999998}, "51800": {"FFRPTH14": 0.67967652, "FSRPTH14": 0.552957169}, "51810": {"FFRPTH14": 0.9335225509999999, "FSRPTH14": 1.124218369}, "51820": {"FFRPTH14": 1.263689975, "FSRPTH14": 1.310493307}, "51830": {"FFRPTH14": 2.2462732290000003, "FSRPTH14": 3.8799264860000005}, "51840": {"FFRPTH14": 1.670115819, "FSRPTH14": 2.287332535}, "53001": {"FFRPTH14": 0.6778247040000001, "FSRPTH14": 0.46926325700000004}, "53003": {"FFRPTH14": 0.450673757, "FSRPTH14": 0.6760106359999999}, "53005": {"FFRPTH14": 0.60594361, "FSRPTH14": 0.681016269}, "53007": {"FFRPTH14": 0.710570065, "FSRPTH14": 1.206628412}, "53009": {"FFRPTH14": 0.536340507, "FSRPTH14": 1.16894726}, "53011": {"FFRPTH14": 0.5387931029999999, "FSRPTH14": 0.5764864479999999}, "53013": {"FFRPTH14": 0.501882058, "FSRPTH14": 1.5056461730000001}, "53015": {"FFRPTH14": 0.597260435, "FSRPTH14": 0.626633899}, "53017": {"FFRPTH14": 0.37684654799999995, "FSRPTH14": 0.5024620639999999}, "53019": {"FFRPTH14": 0.26085822399999997, "FSRPTH14": 0.6521455589999999}, "53021": {"FFRPTH14": 0.489699234, "FSRPTH14": 0.398592399}, "53023": {"FFRPTH14": 0.0, "FSRPTH14": 0.902934537}, "53025": {"FFRPTH14": 0.611935972, "FSRPTH14": 0.5260502220000001}, "53027": {"FFRPTH14": 0.578948855, "FSRPTH14": 0.833121523}, "53029": {"FFRPTH14": 0.37842951799999996, "FSRPTH14": 0.756859035}, "53031": {"FFRPTH14": 0.595474395, "FSRPTH14": 1.2240307}, "53033": {"FFRPTH14": 0.826936197, "FSRPTH14": 1.106267551}, "53035": {"FFRPTH14": 0.625533572, "FSRPTH14": 0.708151214}, "53037": {"FFRPTH14": 1.128827431, "FSRPTH14": 1.058275716}, "53039": {"FFRPTH14": 0.431427065, "FSRPTH14": 0.86285413}, "53041": {"FFRPTH14": 0.638909594, "FSRPTH14": 0.7587051429999999}, "53043": {"FFRPTH14": 0.87804878, "FSRPTH14": 0.487804878}, "53045": {"FFRPTH14": 0.395315511, "FSRPTH14": 0.576501787}, "53047": {"FFRPTH14": 0.460159845, "FSRPTH14": 0.847662872}, "53049": {"FFRPTH14": 0.583629201, "FSRPTH14": 1.604980303}, "53051": {"FFRPTH14": 0.38505968399999996, "FSRPTH14": 1.001155179}, "53053": {"FFRPTH14": 0.647892606, "FSRPTH14": 0.6082257120000001}, "53055": {"FFRPTH14": 0.9366219170000001, "FSRPTH14": 2.18545114}, "53057": {"FFRPTH14": 0.639720849, "FSRPTH14": 0.9554272420000001}, "53059": {"FFRPTH14": 0.352733686, "FSRPTH14": 0.793650794}, "53061": {"FFRPTH14": 0.7017008020000001, "FSRPTH14": 0.687219172}, "53063": {"FFRPTH14": 0.704082855, "FSRPTH14": 0.660722913}, "53065": {"FFRPTH14": 0.595647194, "FSRPTH14": 0.641466208}, "53067": {"FFRPTH14": 0.628171419, "FSRPTH14": 0.643217441}, "53069": {"FFRPTH14": 0.49176297, "FSRPTH14": 0.737644455}, "53071": {"FFRPTH14": 0.484593276, "FSRPTH14": 0.73524497}, "53073": {"FFRPTH14": 0.595149531, "FSRPTH14": 0.940720227}, "53075": {"FFRPTH14": 0.875563243, "FSRPTH14": 0.640656032}, "53077": {"FFRPTH14": 0.553117443, "FSRPTH14": 0.512743907}, "54001": {"FFRPTH14": 0.417511631, "FSRPTH14": 0.477156149}, "54003": {"FFRPTH14": 0.5973012839999999, "FSRPTH14": 0.443450953}, "54005": {"FFRPTH14": 0.295184279, "FSRPTH14": 0.295184279}, "54007": {"FFRPTH14": 0.553135587, "FSRPTH14": 0.829703381}, "54009": {"FFRPTH14": 0.679983, "FSRPTH14": 0.679983}, "54011": {"FFRPTH14": 1.132747737, "FSRPTH14": 0.7414348820000001}, "54013": {"FFRPTH14": 0.133102622, "FSRPTH14": 0.532410488}, "54015": {"FFRPTH14": 0.111844313, "FSRPTH14": 0.223688625}, "54017": {"FFRPTH14": 0.0, "FSRPTH14": 0.357525921}, "54019": {"FFRPTH14": 0.420987326, "FSRPTH14": 0.598245148}, "54021": {"FFRPTH14": 0.23207240699999998, "FSRPTH14": 0.580181016}, "54023": {"FFRPTH14": 0.513390947, "FSRPTH14": 0.9412167370000001}, "54025": {"FFRPTH14": 0.818053597, "FSRPTH14": 0.705218618}, "54027": {"FFRPTH14": 0.298087979, "FSRPTH14": 0.511007963}, "54029": {"FFRPTH14": 0.8302337940000001, "FSRPTH14": 0.6973963870000001}, "54031": {"FFRPTH14": 0.502765209, "FSRPTH14": 1.0055304170000001}, "54033": {"FFRPTH14": 0.785328893, "FSRPTH14": 0.785328893}, "54035": {"FFRPTH14": 0.755338872, "FSRPTH14": 0.515003777}, "54037": {"FFRPTH14": 0.628219626, "FSRPTH14": 0.7359144190000001}, "54039": {"FFRPTH14": 0.998827692, "FSRPTH14": 0.70969336}, "54041": {"FFRPTH14": 1.096624832, "FSRPTH14": 0.487388814}, "54043": {"FFRPTH14": 0.23190019, "FSRPTH14": 0.46380038}, "54045": {"FFRPTH14": 0.565802874, "FSRPTH14": 0.678963449}, "54047": {"FFRPTH14": 0.391236307, "FSRPTH14": 0.146713615}, "54049": {"FFRPTH14": 0.757002271, "FSRPTH14": 0.686583455}, "54051": {"FFRPTH14": 0.616979269, "FSRPTH14": 0.524432379}, "54053": {"FFRPTH14": 0.333135919, "FSRPTH14": 0.296120817}, "54055": {"FFRPTH14": 0.566480537, "FSRPTH14": 0.43699927200000005}, "54057": {"FFRPTH14": 0.543911814, "FSRPTH14": 0.507651026}, "54059": {"FFRPTH14": 0.23331777899999998, "FSRPTH14": 0.583294447}, "54061": {"FFRPTH14": 0.937533224, "FSRPTH14": 0.918202642}, "54063": {"FFRPTH14": 0.0, "FSRPTH14": 0.736268591}, "54065": {"FFRPTH14": 0.286483699, "FSRPTH14": 0.859451097}, "54067": {"FFRPTH14": 0.542068378, "FSRPTH14": 0.890540907}, "54069": {"FFRPTH14": 1.038589365, "FSRPTH14": 0.9693500740000001}, "54071": {"FFRPTH14": 0.407000407, "FSRPTH14": 0.407000407}, "54073": {"FFRPTH14": 0.654964632, "FSRPTH14": 0.392978779}, "54075": {"FFRPTH14": 0.230893558, "FSRPTH14": 1.269914569}, "54077": {"FFRPTH14": 0.295963064, "FSRPTH14": 0.47354090200000004}, "54079": {"FFRPTH14": 1.0392813109999999, "FSRPTH14": 0.317068874}, "54081": {"FFRPTH14": 0.600708069, "FSRPTH14": 0.575146023}, "54083": {"FFRPTH14": 0.475721227, "FSRPTH14": 0.9174623670000001}, "54085": {"FFRPTH14": 0.699230846, "FSRPTH14": 0.599340725}, "54087": {"FFRPTH14": 0.34097108600000003, "FSRPTH14": 0.204582651}, "54089": {"FFRPTH14": 0.372661549, "FSRPTH14": 0.372661549}, "54091": {"FFRPTH14": 0.527271662, "FSRPTH14": 0.41010018200000004}, "54093": {"FFRPTH14": 0.8661758340000001, "FSRPTH14": 1.5879890280000002}, "54095": {"FFRPTH14": 0.32974280100000003, "FSRPTH14": 0.32974280100000003}, "54097": {"FFRPTH14": 0.566091141, "FSRPTH14": 0.727831467}, "54099": {"FFRPTH14": 0.413404017, "FSRPTH14": 0.2918146}, "54101": {"FFRPTH14": 0.113199004, "FSRPTH14": 0.452796015}, "54103": {"FFRPTH14": 0.938203653, "FSRPTH14": 0.875656743}, "54105": {"FFRPTH14": 0.0, "FSRPTH14": 0.684345595}, "54107": {"FFRPTH14": 0.9392720059999999, "FSRPTH14": 0.742140844}, "54109": {"FFRPTH14": 0.265510222, "FSRPTH14": 0.531020444}, "55001": {"FFRPTH14": 0.5936186, "FSRPTH14": 0.74202325}, "55003": {"FFRPTH14": 0.745202757, "FSRPTH14": 1.304104825}, "55005": {"FFRPTH14": 0.63799362, "FSRPTH14": 0.96799032}, "55007": {"FFRPTH14": 0.4671338, "FSRPTH14": 2.268935602}, "55009": {"FFRPTH14": 0.670121167, "FSRPTH14": 0.8454435659999999}, "55011": {"FFRPTH14": 0.227479527, "FSRPTH14": 1.5923566880000002}, "55013": {"FFRPTH14": 0.26096033399999996, "FSRPTH14": 1.891962422}, "55015": {"FFRPTH14": 0.42431957299999995, "FSRPTH14": 0.686993595}, "55017": {"FFRPTH14": 0.551528522, "FSRPTH14": 0.8194138040000001}, "55019": {"FFRPTH14": 0.319553787, "FSRPTH14": 0.8134096390000001}, "55021": {"FFRPTH14": 0.582884395, "FSRPTH14": 1.2010951159999999}, "55023": {"FFRPTH14": 0.488042948, "FSRPTH14": 1.037091264}, "55025": {"FFRPTH14": 0.8115688259999999, "FSRPTH14": 0.8541810320000001}, "55027": {"FFRPTH14": 0.429019803, "FSRPTH14": 0.598369725}, "55029": {"FFRPTH14": 0.8283512209999999, "FSRPTH14": 3.3134048839999997}, "55031": {"FFRPTH14": 0.503455536, "FSRPTH14": 1.1671014690000001}, "55033": {"FFRPTH14": 0.473987135, "FSRPTH14": 0.7674077420000001}, "55035": {"FFRPTH14": 0.87629475, "FSRPTH14": 0.777834666}, "55037": {"FFRPTH14": 0.446328944, "FSRPTH14": 1.7853157780000002}, "55039": {"FFRPTH14": 0.579801295, "FSRPTH14": 0.766516967}, "55041": {"FFRPTH14": 0.328695081, "FSRPTH14": 1.533910376}, "55043": {"FFRPTH14": 0.424472786, "FSRPTH14": 0.8103571359999999}, "55045": {"FFRPTH14": 0.43169738, "FSRPTH14": 0.998300192}, "55047": {"FFRPTH14": 0.26544914, "FSRPTH14": 1.2741558720000001}, "55049": {"FFRPTH14": 0.419727177, "FSRPTH14": 1.049317943}, "55051": {"FFRPTH14": 0.676018252, "FSRPTH14": 3.380091262}, "55053": {"FFRPTH14": 0.629478985, "FSRPTH14": 1.1136935890000002}, "55055": {"FFRPTH14": 0.497659814, "FSRPTH14": 0.805734937}, "55057": {"FFRPTH14": 0.303087706, "FSRPTH14": 0.795605228}, "55059": {"FFRPTH14": 0.654496989, "FSRPTH14": 0.737796606}, "55061": {"FFRPTH14": 0.391312855, "FSRPTH14": 1.173938564}, "55063": {"FFRPTH14": 0.677902907, "FSRPTH14": 0.88127378}, "55065": {"FFRPTH14": 0.296683083, "FSRPTH14": 0.949385866}, "55067": {"FFRPTH14": 0.566718187, "FSRPTH14": 1.3910355490000001}, "55069": {"FFRPTH14": 0.526445092, "FSRPTH14": 1.052890184}, "55071": {"FFRPTH14": 0.42415169700000005, "FSRPTH14": 0.873253493}, "55073": {"FFRPTH14": 0.574458683, "FSRPTH14": 0.7880394759999999}, "55075": {"FFRPTH14": 0.629570439, "FSRPTH14": 1.477069107}, "55077": {"FFRPTH14": 0.398671096, "FSRPTH14": 0.9302325579999999}, "55078": {"FFRPTH14": 0.221141088, "FSRPTH14": 0.0}, "55079": {"FFRPTH14": 0.6430323520000001, "FSRPTH14": 0.6587160679999999}, "55081": {"FFRPTH14": 0.484805747, "FSRPTH14": 0.7051719959999999}, "55083": {"FFRPTH14": 0.42761311700000004, "FSRPTH14": 1.256113531}, "55085": {"FFRPTH14": 0.759216039, "FSRPTH14": 1.827742316}, "55087": {"FFRPTH14": 0.714262167, "FSRPTH14": 0.939529466}, "55089": {"FFRPTH14": 0.60592203, "FSRPTH14": 0.8345718529999999}, "55091": {"FFRPTH14": 0.6816632579999999, "FSRPTH14": 1.4996591680000002}, "55093": {"FFRPTH14": 0.537135602, "FSRPTH14": 0.805703403}, "55095": {"FFRPTH14": 0.575546193, "FSRPTH14": 0.897852062}, "55097": {"FFRPTH14": 0.638460884, "FSRPTH14": 0.950597316}, "55099": {"FFRPTH14": 0.365630713, "FSRPTH14": 1.535648995}, "55101": {"FFRPTH14": 0.538011816, "FSRPTH14": 0.660985945}, "55103": {"FFRPTH14": 0.452949836, "FSRPTH14": 0.736043483}, "55105": {"FFRPTH14": 0.6452093210000001, "FSRPTH14": 0.7630841009999999}, "55107": {"FFRPTH14": 0.418614386, "FSRPTH14": 0.837228773}, "55109": {"FFRPTH14": 0.564782904, "FSRPTH14": 0.8068327209999999}, "55111": {"FFRPTH14": 0.85201723, "FSRPTH14": 1.309582038}, "55113": {"FFRPTH14": 0.5475451720000001, "FSRPTH14": 3.1027559769999997}, "55115": {"FFRPTH14": 0.384809639, "FSRPTH14": 1.106327714}, "55117": {"FFRPTH14": 0.589816983, "FSRPTH14": 0.867377917}, "55119": {"FFRPTH14": 0.29211295, "FSRPTH14": 0.827653359}, "55121": {"FFRPTH14": 0.47443152899999996, "FSRPTH14": 0.84719916}, "55123": {"FFRPTH14": 0.362294974, "FSRPTH14": 0.889269482}, "55125": {"FFRPTH14": 0.747733433, "FSRPTH14": 4.065800542}, "55127": {"FFRPTH14": 0.676152115, "FSRPTH14": 1.0818433840000001}, "55129": {"FFRPTH14": 0.318593093, "FSRPTH14": 2.166433032}, "55131": {"FFRPTH14": 0.562847558, "FSRPTH14": 0.5778568270000001}, "55133": {"FFRPTH14": 0.652969493, "FSRPTH14": 0.756735962}, "55135": {"FFRPTH14": 0.7106365, "FSRPTH14": 0.941113202}, "55137": {"FFRPTH14": 0.330879312, "FSRPTH14": 1.323517247}, "55139": {"FFRPTH14": 0.5427376389999999, "FSRPTH14": 0.7256166270000001}, "55141": {"FFRPTH14": 0.557004673, "FSRPTH14": 0.8966416690000001}, "56001": {"FFRPTH14": 0.7140779140000001, "FSRPTH14": 0.925656555}, "56003": {"FFRPTH14": 0.419111484, "FSRPTH14": 0.586756077}, "56005": {"FFRPTH14": 0.68294702, "FSRPTH14": 0.641556291}, "56007": {"FFRPTH14": 0.44152895200000003, "FSRPTH14": 1.6399646780000001}, "56009": {"FFRPTH14": 0.56749663, "FSRPTH14": 1.20593034}, "56011": {"FFRPTH14": 0.82781457, "FSRPTH14": 1.793598234}, "56013": {"FFRPTH14": 0.49136427299999996, "FSRPTH14": 0.9581603320000001}, "56015": {"FFRPTH14": 0.813970697, "FSRPTH14": 0.8879680329999999}, "56017": {"FFRPTH14": 1.03820598, "FSRPTH14": 1.6611295680000002}, "56019": {"FFRPTH14": 0.8165169720000001, "FSRPTH14": 0.9331622540000001}, "56021": {"FFRPTH14": 0.674350808, "FSRPTH14": 0.549855274}, "56023": {"FFRPTH14": 0.6463079660000001, "FSRPTH14": 1.1848979370000001}, "56025": {"FFRPTH14": 0.649318828, "FSRPTH14": 0.784083113}, "56027": {"FFRPTH14": 1.218026797, "FSRPTH14": 1.218026797}, "56029": {"FFRPTH14": 0.620925179, "FSRPTH14": 1.37983373}, "56031": {"FFRPTH14": 0.568246392, "FSRPTH14": 1.4774406180000001}, "56033": {"FFRPTH14": 0.732551945, "FSRPTH14": 0.99893447}, "56035": {"FFRPTH14": 0.298299692, "FSRPTH14": 1.193198767}, "56037": {"FFRPTH14": 0.733170407, "FSRPTH14": 0.710953122}, "56039": {"FFRPTH14": 1.003052769, "FSRPTH14": 2.398604448}, "56041": {"FFRPTH14": 0.76540375, "FSRPTH14": 0.76540375}, "56043": {"FFRPTH14": 0.7209805340000001, "FSRPTH14": 1.321797645}, "56045": {"FFRPTH14": 0.416608804, "FSRPTH14": 1.527565616}}
try:
retval = data[county]
except:
retval = None
return retval
| def get_county_fda_restaurants_data(county):
data = {'01001': {'FFRPTH14': 0.649878148, 'FSRPTH14': 0.523512952}, '01003': {'FFRPTH14': 0.659633903, 'FSRPTH14': 1.104387065}, '01005': {'FFRPTH14': 0.818239298, 'FSRPTH14': 0.55789043}, '01007': {'FFRPTH14': 0.22216297899999998, 'FSRPTH14': 0.22216297899999998}, '01009': {'FFRPTH14': 0.363831667, 'FSRPTH14': 0.259879762}, '01011': {'FFRPTH14': 0.2787068, 'FSRPTH14': 0.092902267}, '01013': {'FFRPTH14': 0.837603469, 'FSRPTH14': 0.492707923}, '01015': {'FFRPTH14': 0.888574485, 'FSRPTH14': 0.66427413}, '01017': {'FFRPTH14': 0.763000352, 'FSRPTH14': 0.469538678}, '01019': {'FFRPTH14': 0.576103238, 'FSRPTH14': 0.42247570799999995}, '01021': {'FFRPTH14': 0.455259384, 'FSRPTH14': 0.409733446}, '01023': {'FFRPTH14': 0.45034902, 'FSRPTH14': 0.37529085}, '01025': {'FFRPTH14': 1.042293045, 'FSRPTH14': 0.60132291}, '01027': {'FFRPTH14': 0.295159386, 'FSRPTH14': 0.442739079}, '01029': {'FFRPTH14': 0.530503979, 'FSRPTH14': 0.132625995}, '01031': {'FFRPTH14': 0.667858335, 'FSRPTH14': 0.550000982}, '01033': {'FFRPTH14': 0.953376235, 'FSRPTH14': 0.696698018}, '01035': {'FFRPTH14': 0.5524861879999999, 'FSRPTH14': 0.31570639300000003}, '01037': {'FFRPTH14': 0.091861106, 'FSRPTH14': 0.0}, '01039': {'FFRPTH14': 0.633011552, 'FSRPTH14': 0.474758664}, '01041': {'FFRPTH14': 0.357730557, 'FSRPTH14': 0.429276669}, '01043': {'FFRPTH14': 0.651994735, 'FSRPTH14': 0.590485798}, '01045': {'FFRPTH14': 0.687090777, 'FSRPTH14': 0.6062565679999999}, '01047': {'FFRPTH14': 0.45551533200000005, 'FSRPTH14': 0.359617367}, '01049': {'FFRPTH14': 0.605079856, 'FSRPTH14': 0.43622036200000003}, '01051': {'FFRPTH14': 0.555713351, 'FSRPTH14': 0.469269052}, '01053': {'FFRPTH14': 0.715554024, 'FSRPTH14': 0.530040018}, '01055': {'FFRPTH14': 0.7630564759999999, 'FSRPTH14': 0.550559736}, '01057': {'FFRPTH14': 0.53336494, 'FSRPTH14': 0.53336494}, '01059': {'FFRPTH14': 0.5696022279999999, 'FSRPTH14': 0.506313091}, '01061': {'FFRPTH14': 0.37436358200000003, 'FSRPTH14': 0.41179994}, '01063': {'FFRPTH14': 0.11691804, 'FSRPTH14': 0.233836081}, '01065': {'FFRPTH14': 0.461011591, 'FSRPTH14': 0.263435195}, '01067': {'FFRPTH14': 0.581733566, 'FSRPTH14': 0.639906923}, '01069': {'FFRPTH14': 0.930964652, 'FSRPTH14': 0.739013177}, '01071': {'FFRPTH14': 0.550650337, 'FSRPTH14': 0.474698566}, '01073': {'FFRPTH14': 0.9715599290000001, 'FSRPTH14': 0.5690132920000001}, '01075': {'FFRPTH14': 0.42595484899999997, 'FSRPTH14': 0.7099247479999999}, '01077': {'FFRPTH14': 0.773395205, 'FSRPTH14': 0.751912005}, '01079': {'FFRPTH14': 0.477940078, 'FSRPTH14': 0.5078113329999999}, '01081': {'FFRPTH14': 0.82979482, 'FSRPTH14': 0.706622152}, '01083': {'FFRPTH14': 0.561754436, 'FSRPTH14': 0.429576922}, '01085': {'FFRPTH14': 0.0, 'FSRPTH14': 0.189035917}, '01087': {'FFRPTH14': 0.46332046299999996, 'FSRPTH14': 0.10296010300000001}, '01089': {'FFRPTH14': 0.9420523609999999, 'FSRPTH14': 0.6451631320000001}, '01091': {'FFRPTH14': 0.94480358, 'FSRPTH14': 0.447538538}, '01093': {'FFRPTH14': 0.561593604, 'FSRPTH14': 0.660698358}, '01095': {'FFRPTH14': 0.750243036, 'FSRPTH14': 0.6340081999999999}, '01097': {'FFRPTH14': 0.60945792, 'FSRPTH14': 0.522736635}, '01099': {'FFRPTH14': 0.410078826, 'FSRPTH14': 0.45564314}, '01101': {'FFRPTH14': 0.928427112, 'FSRPTH14': 0.623372489}, '01103': {'FFRPTH14': 0.827710753, 'FSRPTH14': 0.560167883}, '01105': {'FFRPTH14': 0.10177081199999999, 'FSRPTH14': 0.610624873}, '01107': {'FFRPTH14': 0.39283083700000004, 'FSRPTH14': 0.294623128}, '01109': {'FFRPTH14': 0.9883494559999999, 'FSRPTH14': 0.658899638}, '01111': {'FFRPTH14': 0.399307866, 'FSRPTH14': 0.310572785}, '01113': {'FFRPTH14': 0.7381559520000001, 'FSRPTH14': 0.352301704}, '01115': {'FFRPTH14': 0.5651868, 'FSRPTH14': 0.5075146779999999}, '01117': {'FFRPTH14': 0.6822965809999999, 'FSRPTH14': 0.6387457360000001}, '01119': {'FFRPTH14': 0.53167249, 'FSRPTH14': 0.45571927700000003}, '01121': {'FFRPTH14': 0.602542977, 'FSRPTH14': 0.454981432}, '01123': {'FFRPTH14': 0.48584963, 'FSRPTH14': 0.412972185}, '01125': {'FFRPTH14': 0.796194093, 'FSRPTH14': 0.543983542}, '01127': {'FFRPTH14': 0.626231461, 'FSRPTH14': 0.519313895}, '01129': {'FFRPTH14': 0.178210764, 'FSRPTH14': 0.356421528}, '01131': {'FFRPTH14': 0.45053162700000005, 'FSRPTH14': 0.45053162700000005}, '01133': {'FFRPTH14': 0.414078675, 'FSRPTH14': 0.621118012}, '02013': {'FFRPTH14': 0.297619048, 'FSRPTH14': 0.297619048}, '02016': {'FFRPTH14': 0.0, 'FSRPTH14': 0.347826087}, '02020': {'FFRPTH14': 0.677718348, 'FSRPTH14': 0.767416365}, '02050': {'FFRPTH14': 0.39176180899999996, 'FSRPTH14': 0.39176180899999996}, '02060': {'FFRPTH14': 0.0, 'FSRPTH14': 2.089864159}, '02068': {'FFRPTH14': 1.041124414, 'FSRPTH14': 3.64393545}, '02070': {'FFRPTH14': 0.200481155, 'FSRPTH14': 0.40096231}, '02090': {'FFRPTH14': 0.49317109, 'FSRPTH14': 0.654206548}, '02100': {'FFRPTH14': 0.38971161299999996, 'FSRPTH14': 2.33826968}, '02105': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02110': {'FFRPTH14': 0.9566129729999999, 'FSRPTH14': 0.894896007}, '02122': {'FFRPTH14': 0.678532282, 'FSRPTH14': 1.3396663009999998}, '02130': {'FFRPTH14': 0.870385145, 'FSRPTH14': 0.870385145}, '02150': {'FFRPTH14': 0.500500501, 'FSRPTH14': 0.786500787}, '02164': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02170': {'FFRPTH14': 0.439304469, 'FSRPTH14': 0.51081915}, '02180': {'FFRPTH14': 0.101864113, 'FSRPTH14': 1.018641133}, '02185': {'FFRPTH14': 0.206121818, 'FSRPTH14': 0.515304545}, '02188': {'FFRPTH14': 0.25916807, 'FSRPTH14': 0.129584035}, '02195': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02198': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02220': {'FFRPTH14': 0.449438202, 'FSRPTH14': 0.898876404}, '02230': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02240': {'FFRPTH14': 0.28855865, 'FSRPTH14': 1.0099552729999999}, '02261': {'FFRPTH14': 0.94856661, 'FSRPTH14': 1.5809443509999999}, '02270': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02275': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02282': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '02290': {'FFRPTH14': 0.0, 'FSRPTH14': 0.180277628}, '04001': {'FFRPTH14': 0.222754358, 'FSRPTH14': 0.250598652}, '04003': {'FFRPTH14': 0.47862657700000005, 'FSRPTH14': 0.753248384}, '04005': {'FFRPTH14': 0.871573626, 'FSRPTH14': 1.176624395}, '04007': {'FFRPTH14': 0.640072291, 'FSRPTH14': 1.035411058}, '04009': {'FFRPTH14': 0.421529626, 'FSRPTH14': 0.316147219}, '04011': {'FFRPTH14': 0.213995292, 'FSRPTH14': 0.7489835220000001}, '04012': {'FFRPTH14': 0.7414364090000001, 'FSRPTH14': 1.482872819}, '04013': {'FFRPTH14': 0.68041841, 'FSRPTH14': 0.583285684}, '04015': {'FFRPTH14': 0.5605794620000001, 'FSRPTH14': 0.634339918}, '04017': {'FFRPTH14': 0.499532844, 'FSRPTH14': 0.721547442}, '04019': {'FFRPTH14': 0.608253129, 'FSRPTH14': 0.648073301}, '04021': {'FFRPTH14': 0.28612801600000004, 'FSRPTH14': 0.271199598}, '04023': {'FFRPTH14': 0.578220366, 'FSRPTH14': 0.856622765}, '04025': {'FFRPTH14': 0.584891521, 'FSRPTH14': 0.9367403259999999}, '04027': {'FFRPTH14': 0.575654253, 'FSRPTH14': 0.37884938}, '05001': {'FFRPTH14': 0.591588685, 'FSRPTH14': 0.645369474}, '05003': {'FFRPTH14': 0.716058812, 'FSRPTH14': 0.286423525}, '05005': {'FFRPTH14': 0.783219522, 'FSRPTH14': 0.758743912}, '05007': {'FFRPTH14': 0.660281197, 'FSRPTH14': 0.631393895}, '05009': {'FFRPTH14': 0.618346059, 'FSRPTH14': 0.672115281}, '05011': {'FFRPTH14': 0.538213132, 'FSRPTH14': 0.538213132}, '05013': {'FFRPTH14': 0.384467512, 'FSRPTH14': 0.576701269}, '05015': {'FFRPTH14': 0.540657439, 'FSRPTH14': 1.838235294}, '05017': {'FFRPTH14': 0.447227191, 'FSRPTH14': 0.178890877}, '05019': {'FFRPTH14': 0.841601701, 'FSRPTH14': 0.48724309}, '05021': {'FFRPTH14': 0.595316841, 'FSRPTH14': 0.529170525}, '05023': {'FFRPTH14': 0.6241710229999999, 'FSRPTH14': 0.9362565340000001}, '05025': {'FFRPTH14': 0.118357202, 'FSRPTH14': 0.118357202}, '05027': {'FFRPTH14': 0.919232858, 'FSRPTH14': 0.33426649399999997}, '05029': {'FFRPTH14': 0.33202106, 'FSRPTH14': 0.569178959}, '05031': {'FFRPTH14': 0.7413332290000001, 'FSRPTH14': 0.682806922}, '05033': {'FFRPTH14': 0.45383081799999997, 'FSRPTH14': 0.486247305}, '05035': {'FFRPTH14': 0.6862032779999999, 'FSRPTH14': 0.403648987}, '05037': {'FFRPTH14': 0.696580949, 'FSRPTH14': 0.40633888700000004}, '05039': {'FFRPTH14': 0.386847195, 'FSRPTH14': 0.7736943909999999}, '05041': {'FFRPTH14': 0.733855186, 'FSRPTH14': 0.896934116}, '05043': {'FFRPTH14': 0.805498872, 'FSRPTH14': 0.6980990229999999}, '05045': {'FFRPTH14': 0.654146794, 'FSRPTH14': 0.579623741}, '05047': {'FFRPTH14': 0.336983993, 'FSRPTH14': 0.730131985}, '05049': {'FFRPTH14': 0.329896907, 'FSRPTH14': 0.329896907}, '05051': {'FFRPTH14': 0.873389367, 'FSRPTH14': 1.027516903}, '05053': {'FFRPTH14': 0.330687831, 'FSRPTH14': 0.496031746}, '05055': {'FFRPTH14': 0.64082025, 'FSRPTH14': 0.503501625}, '05057': {'FFRPTH14': 0.49267702799999996, 'FSRPTH14': 0.582254669}, '05059': {'FFRPTH14': 0.419563654, 'FSRPTH14': 0.269719492}, '05061': {'FFRPTH14': 0.666666667, 'FSRPTH14': 0.592592593}, '05063': {'FFRPTH14': 0.568197191, 'FSRPTH14': 0.730539246}, '05065': {'FFRPTH14': 0.22245291399999997, 'FSRPTH14': 0.5190568}, '05067': {'FFRPTH14': 0.5132884679999999, 'FSRPTH14': 0.456256416}, '05069': {'FFRPTH14': 0.7745826240000001, 'FSRPTH14': 0.442618643}, '05071': {'FFRPTH14': 0.422995578, 'FSRPTH14': 0.422995578}, '05073': {'FFRPTH14': 0.421881592, 'FSRPTH14': 0.14062719699999998}, '05075': {'FFRPTH14': 0.35437954, 'FSRPTH14': 0.649695824}, '05077': {'FFRPTH14': 0.304259635, 'FSRPTH14': 0.101419878}, '05079': {'FFRPTH14': 0.357909807, 'FSRPTH14': 0.429491768}, '05081': {'FFRPTH14': 0.47877433799999997, 'FSRPTH14': 0.23938716899999998}, '05083': {'FFRPTH14': 0.592039348, 'FSRPTH14': 0.409873395}, '05085': {'FFRPTH14': 0.531045181, 'FSRPTH14': 0.43322106899999996}, '05087': {'FFRPTH14': 0.190597205, 'FSRPTH14': 0.698856417}, '05089': {'FFRPTH14': 0.30549276, 'FSRPTH14': 0.672084072}, '05091': {'FFRPTH14': 0.552638851, 'FSRPTH14': 0.5065856129999999}, '05093': {'FFRPTH14': 0.723409065, 'FSRPTH14': 0.542556799}, '05095': {'FFRPTH14': 0.6594566079999999, 'FSRPTH14': 0.6594566079999999}, '05097': {'FFRPTH14': 0.440431623, 'FSRPTH14': 0.660647434}, '05099': {'FFRPTH14': 0.34391837700000005, 'FSRPTH14': 0.229278918}, '05101': {'FFRPTH14': 0.12651821900000002, 'FSRPTH14': 0.6325910929999999}, '05103': {'FFRPTH14': 0.644433704, 'FSRPTH14': 0.36249395799999995}, '05105': {'FFRPTH14': 0.09760859, 'FSRPTH14': 0.390434358}, '05107': {'FFRPTH14': 0.351229303, 'FSRPTH14': 0.45158053200000003}, '05109': {'FFRPTH14': 0.45355587799999997, 'FSRPTH14': 0.725689405}, '05111': {'FFRPTH14': 0.7011465809999999, 'FSRPTH14': 0.536170915}, '05113': {'FFRPTH14': 0.39555006200000004, 'FSRPTH14': 0.939431397}, '05115': {'FFRPTH14': 0.8227717920000001, 'FSRPTH14': 0.537966171}, '05117': {'FFRPTH14': 0.12042389199999999, 'FSRPTH14': 0.48169556799999996}, '05119': {'FFRPTH14': 0.8759822970000001, 'FSRPTH14': 0.883621678}, '05121': {'FFRPTH14': 0.455295658, 'FSRPTH14': 0.5691195720000001}, '05123': {'FFRPTH14': 0.37176103200000005, 'FSRPTH14': 0.44611323799999997}, '05125': {'FFRPTH14': 0.553063888, 'FSRPTH14': 0.337023306}, '05127': {'FFRPTH14': 0.374076499, 'FSRPTH14': 0.46759562299999996}, '05129': {'FFRPTH14': 0.504477235, 'FSRPTH14': 0.37835792700000004}, '05131': {'FFRPTH14': 0.7572411179999999, 'FSRPTH14': 0.788792831}, '05133': {'FFRPTH14': 0.40169861100000004, 'FSRPTH14': 0.631240675}, '05135': {'FFRPTH14': 0.532355377, 'FSRPTH14': 1.005560156}, '05137': {'FFRPTH14': 0.8003841840000001, 'FSRPTH14': 0.640307348}, '05139': {'FFRPTH14': 0.6711909909999999, 'FSRPTH14': 0.6960499170000001}, '05141': {'FFRPTH14': 0.356061955, 'FSRPTH14': 0.71212391}, '05143': {'FFRPTH14': 0.711076488, 'FSRPTH14': 0.8741258740000001}, '05145': {'FFRPTH14': 0.763436482, 'FSRPTH14': 0.5853013029999999}, '05147': {'FFRPTH14': 0.578871201, 'FSRPTH14': 0.28943560100000004}, '05149': {'FFRPTH14': 0.41000410000000004, 'FSRPTH14': 0.227780056}, '06001': {'FFRPTH14': 0.767262951, 'FSRPTH14': 0.96590708}, '06003': {'FFRPTH14': 1.792114695, 'FSRPTH14': 0.8960573479999999}, '06005': {'FFRPTH14': 0.38103532700000003, 'FSRPTH14': 1.088672364}, '06007': {'FFRPTH14': 0.66446368, 'FSRPTH14': 0.62432829}, '06009': {'FFRPTH14': 0.649874507, 'FSRPTH14': 0.8515596990000001}, '06011': {'FFRPTH14': 0.420187684, 'FSRPTH14': 0.7003128059999999}, '06013': {'FFRPTH14': 0.579481148, 'FSRPTH14': 0.676661217}, '06015': {'FFRPTH14': 0.36748493299999996, 'FSRPTH14': 0.77171836}, '06017': {'FFRPTH14': 0.589883498, 'FSRPTH14': 0.950367858}, '06019': {'FFRPTH14': 0.620099506, 'FSRPTH14': 0.528999745}, '06021': {'FFRPTH14': 0.500804865, 'FSRPTH14': 0.536576641}, '06023': {'FFRPTH14': 0.682447018, 'FSRPTH14': 0.993998917}, '06025': {'FFRPTH14': 0.563959105, 'FSRPTH14': 0.435532774}, '06027': {'FFRPTH14': 0.760456274, 'FSRPTH14': 1.629549158}, '06029': {'FFRPTH14': 0.628866816, 'FSRPTH14': 0.500806665}, '06031': {'FFRPTH14': 0.578961729, 'FSRPTH14': 0.299462963}, '06033': {'FFRPTH14': 0.514146828, 'FSRPTH14': 0.65436869}, '06035': {'FFRPTH14': 0.409461715, 'FSRPTH14': 0.472455825}, '06037': {'FFRPTH14': 0.770804328, 'FSRPTH14': 0.7730777959999999}, '06039': {'FFRPTH14': 0.50469757, 'FSRPTH14': 0.342935528}, '06041': {'FFRPTH14': 0.70949185, 'FSRPTH14': 1.2042186000000001}, '06043': {'FFRPTH14': 0.452437507, 'FSRPTH14': 0.7352109490000001}, '06045': {'FFRPTH14': 0.591790051, 'FSRPTH14': 1.263244148}, '06047': {'FFRPTH14': 0.484319681, 'FSRPTH14': 0.345406284}, '06049': {'FFRPTH14': 0.332483653, 'FSRPTH14': 0.8866230740000001}, '06051': {'FFRPTH14': 1.214545974, 'FSRPTH14': 2.643423591}, '06053': {'FFRPTH14': 0.584220483, 'FSRPTH14': 0.867057383}, '06055': {'FFRPTH14': 0.557645747, 'FSRPTH14': 1.00940939}, '06057': {'FFRPTH14': 0.6269402279999999, 'FSRPTH14': 0.930298403}, '06059': {'FFRPTH14': 0.886977172, 'FSRPTH14': 0.8580470920000001}, '06061': {'FFRPTH14': 0.836709767, 'FSRPTH14': 0.823257841}, '06063': {'FFRPTH14': 0.537461034, 'FSRPTH14': 2.042351929}, '06065': {'FFRPTH14': 0.612208713, 'FSRPTH14': 0.505737632}, '06067': {'FFRPTH14': 0.6808247629999999, 'FSRPTH14': 0.6538346829999999}, '06069': {'FFRPTH14': 0.463384077, 'FSRPTH14': 0.583520689}, '06071': {'FFRPTH14': 0.678778332, 'FSRPTH14': 0.479499616}, '06073': {'FFRPTH14': 0.806513145, 'FSRPTH14': 0.75748499}, '06075': {'FFRPTH14': 1.0839103829999999, 'FSRPTH14': 2.220608609}, '06077': {'FFRPTH14': 0.617666089, 'FSRPTH14': 0.49888414799999997}, '06079': {'FFRPTH14': 0.795462282, 'FSRPTH14': 1.171694442}, '06081': {'FFRPTH14': 0.7276744340000001, 'FSRPTH14': 1.026917363}, '06083': {'FFRPTH14': 0.7397859609999999, 'FSRPTH14': 0.8963664259999999}, '06085': {'FFRPTH14': 0.756886, 'FSRPTH14': 0.8698383040000001}, '06087': {'FFRPTH14': 0.654883666, 'FSRPTH14': 0.9749672559999999}, '06089': {'FFRPTH14': 0.695201442, 'FSRPTH14': 0.667393384}, '06091': {'FFRPTH14': 0.333000333, 'FSRPTH14': 0.9990009990000001}, '06093': {'FFRPTH14': 0.641789676, 'FSRPTH14': 1.077289814}, '06095': {'FFRPTH14': 0.649454574, 'FSRPTH14': 0.5566753489999999}, '06097': {'FFRPTH14': 0.589655641, 'FSRPTH14': 1.023402333}, '06099': {'FFRPTH14': 0.633462219, 'FSRPTH14': 0.541356436}, '06101': {'FFRPTH14': 0.667730863, 'FSRPTH14': 0.45906496799999996}, '06103': {'FFRPTH14': 0.539109201, 'FSRPTH14': 0.539109201}, '06105': {'FFRPTH14': 0.759301443, 'FSRPTH14': 0.911161731}, '06107': {'FFRPTH14': 0.497601474, 'FSRPTH14': 0.449587296}, '06109': {'FFRPTH14': 0.538723041, 'FSRPTH14': 0.984562798}, '06111': {'FFRPTH14': 0.713797806, 'FSRPTH14': 0.6972528240000001}, '06113': {'FFRPTH14': 0.693675033, 'FSRPTH14': 0.7129437829999999}, '06115': {'FFRPTH14': 0.392072033, 'FSRPTH14': 0.31095368100000004}, '08001': {'FFRPTH14': 0.657350047, 'FSRPTH14': 0.468049875}, '08003': {'FFRPTH14': 0.8654262220000001, 'FSRPTH14': 0.9272423809999999}, '08005': {'FFRPTH14': 0.738501117, 'FSRPTH14': 0.7530449029999999}, '08007': {'FFRPTH14': 0.571708592, 'FSRPTH14': 2.0418164}, '08009': {'FFRPTH14': 0.274348422, 'FSRPTH14': 0.274348422}, '08011': {'FFRPTH14': 0.177619893, 'FSRPTH14': 0.35523978700000003}, '08013': {'FFRPTH14': 0.8234051309999999, 'FSRPTH14': 1.101065001}, '08014': {'FFRPTH14': 1.094338408, 'FSRPTH14': 0.756380959}, '08015': {'FFRPTH14': 0.925774656, 'FSRPTH14': 2.23275064}, '08017': {'FFRPTH14': 0.0, 'FSRPTH14': 1.068947087}, '08019': {'FFRPTH14': 1.197344073, 'FSRPTH14': 2.176989224}, '08021': {'FFRPTH14': 0.120992136, 'FSRPTH14': 0.36297640700000006}, '08023': {'FFRPTH14': 0.0, 'FSRPTH14': 1.121076233}, '08025': {'FFRPTH14': 0.0, 'FSRPTH14': 0.18656716399999998}, '08027': {'FFRPTH14': 0.229305205, 'FSRPTH14': 2.063746847}, '08029': {'FFRPTH14': 0.535654503, 'FSRPTH14': 1.171744225}, '08031': {'FFRPTH14': 0.876688227, 'FSRPTH14': 1.2336901340000002}, '08033': {'FFRPTH14': 0.0, 'FSRPTH14': 2.527805865}, '08035': {'FFRPTH14': 0.6483641520000001, 'FSRPTH14': 0.6006903170000001}, '08037': {'FFRPTH14': 0.869220158, 'FSRPTH14': 2.418699571}, '08039': {'FFRPTH14': 0.289315974, 'FSRPTH14': 0.537301095}, '08041': {'FFRPTH14': 0.679709247, 'FSRPTH14': 0.593803644}, '08043': {'FFRPTH14': 0.32256677100000003, 'FSRPTH14': 0.774160251}, '08045': {'FFRPTH14': 0.800542977, 'FSRPTH14': 1.44445798}, '08047': {'FFRPTH14': 0.0, 'FSRPTH14': 0.34182191100000003}, '08049': {'FFRPTH14': 1.099958752, 'FSRPTH14': 3.6436133639999997}, '08051': {'FFRPTH14': 0.890302067, 'FSRPTH14': 3.116057234}, '08053': {'FFRPTH14': 0.0, 'FSRPTH14': 7.6335877860000005}, '08055': {'FFRPTH14': 0.619003405, 'FSRPTH14': 1.083255958}, '08057': {'FFRPTH14': 0.0, 'FSRPTH14': 1.4326647559999999}, '08059': {'FFRPTH14': 0.7591722870000001, 'FSRPTH14': 0.814677808}, '08061': {'FFRPTH14': 0.0, 'FSRPTH14': 1.426533524}, '08063': {'FFRPTH14': 0.991080278, 'FSRPTH14': 0.867195243}, '08065': {'FFRPTH14': 0.679624847, 'FSRPTH14': 1.359249694}, '08067': {'FFRPTH14': 0.852025413, 'FSRPTH14': 1.259515827}, '08069': {'FFRPTH14': 0.7774850209999999, 'FSRPTH14': 0.87312802}, '08071': {'FFRPTH14': 0.782806718, 'FSRPTH14': 0.853970965}, '08073': {'FFRPTH14': 0.54446461, 'FSRPTH14': 1.4519056259999998}, '08075': {'FFRPTH14': 0.5771621379999999, 'FSRPTH14': 0.665956313}, '08077': {'FFRPTH14': 0.613807291, 'FSRPTH14': 0.661023237}, '08079': {'FFRPTH14': 1.4326647559999999, 'FSRPTH14': 7.163323782000001}, '08081': {'FFRPTH14': 0.386757426, 'FSRPTH14': 1.160272277}, '08083': {'FFRPTH14': 0.543225206, 'FSRPTH14': 1.435666615}, '08085': {'FFRPTH14': 0.5382526360000001, 'FSRPTH14': 0.7584468959999999}, '08087': {'FFRPTH14': 0.38830838700000003, 'FSRPTH14': 0.8825190620000001}, '08089': {'FFRPTH14': 0.594980528, 'FSRPTH14': 0.919515361}, '08091': {'FFRPTH14': 1.29617628, 'FSRPTH14': 3.88852884}, '08093': {'FFRPTH14': 0.30590394600000004, 'FSRPTH14': 0.917711838}, '08095': {'FFRPTH14': 0.45840018299999996, 'FSRPTH14': 1.8336007330000001}, '08097': {'FFRPTH14': 1.0779530240000001, 'FSRPTH14': 4.368546465}, '08099': {'FFRPTH14': 0.8309788929999999, 'FSRPTH14': 0.498587336}, '08101': {'FFRPTH14': 0.599227799, 'FSRPTH14': 0.796911197}, '08103': {'FFRPTH14': 0.745489787, 'FSRPTH14': 1.341881616}, '08105': {'FFRPTH14': 0.43077453299999996, 'FSRPTH14': 1.033858878}, '08107': {'FFRPTH14': 1.047559187, 'FSRPTH14': 2.891263356}, '08109': {'FFRPTH14': 0.161394448, 'FSRPTH14': 0.645577792}, '08111': {'FFRPTH14': 5.555555556, 'FSRPTH14': 13.88888889}, '08113': {'FFRPTH14': 1.530612245, 'FSRPTH14': 3.826530612}, '08115': {'FFRPTH14': 0.42589437799999996, 'FSRPTH14': 1.7035775130000002}, '08117': {'FFRPTH14': 1.632430962, 'FSRPTH14': 4.013059448}, '08119': {'FFRPTH14': 0.598571978, 'FSRPTH14': 0.897857967}, '08121': {'FFRPTH14': 0.41841004200000004, 'FSRPTH14': 0.41841004200000004}, '08123': {'FFRPTH14': 0.536608204, 'FSRPTH14': 0.551013793}, '08125': {'FFRPTH14': 0.196039992, 'FSRPTH14': 1.2742599490000002}, '09001': {'FFRPTH14': 0.697031429, 'FSRPTH14': 1.022806361}, '09003': {'FFRPTH14': 0.667049004, 'FSRPTH14': 0.873065808}, '09005': {'FFRPTH14': 0.518938554, 'FSRPTH14': 1.070310769}, '09007': {'FFRPTH14': 0.6426462470000001, 'FSRPTH14': 1.0670352790000002}, '09009': {'FFRPTH14': 0.757015455, 'FSRPTH14': 0.882410653}, '09011': {'FFRPTH14': 0.686943685, 'FSRPTH14': 1.004837837}, '09013': {'FFRPTH14': 0.442632806, 'FSRPTH14': 0.627613681}, '09015': {'FFRPTH14': 0.529923588, 'FSRPTH14': 0.7008666809999999}, '10001': {'FFRPTH14': 0.511666579, 'FSRPTH14': 0.505852187}, '10003': {'FFRPTH14': 0.696482132, 'FSRPTH14': 0.7109544879999999}, '10005': {'FFRPTH14': 0.673467742, 'FSRPTH14': 1.380134599}, '11001': {'FFRPTH14': 1.273347873, 'FSRPTH14': 1.2232638679999999}, '12001': {'FFRPTH14': 0.7527888290000001, 'FSRPTH14': 0.7527888290000001}, '12003': {'FFRPTH14': 0.590558447, 'FSRPTH14': 0.479828738}, '12005': {'FFRPTH14': 0.75984021, 'FSRPTH14': 1.06712853}, '12007': {'FFRPTH14': 0.599206052, 'FSRPTH14': 0.41195416100000004}, '12009': {'FFRPTH14': 0.615926089, 'FSRPTH14': 0.8619373840000001}, '12011': {'FFRPTH14': 0.687981982, 'FSRPTH14': 0.7901628209999999}, '12013': {'FFRPTH14': 0.48169556799999996, 'FSRPTH14': 0.550509221}, '12015': {'FFRPTH14': 0.439236915, 'FSRPTH14': 0.7478898820000001}, '12017': {'FFRPTH14': 0.33721489200000004, 'FSRPTH14': 0.60985672}, '12019': {'FFRPTH14': 0.5956015579999999, 'FSRPTH14': 0.5005055110000001}, '12021': {'FFRPTH14': 0.530424885, 'FSRPTH14': 1.161200423}, '12023': {'FFRPTH14': 0.589474925, 'FSRPTH14': 0.604211798}, '12027': {'FFRPTH14': 0.314177996, 'FSRPTH14': 0.314177996}, '12029': {'FFRPTH14': 0.502923241, 'FSRPTH14': 0.251461621}, '12031': {'FFRPTH14': 0.823216717, 'FSRPTH14': 0.77531642}, '12033': {'FFRPTH14': 0.605165149, 'FSRPTH14': 0.653449602}, '12035': {'FFRPTH14': 0.36129989799999995, 'FSRPTH14': 0.712834935}, '12037': {'FFRPTH14': 0.423190859, 'FSRPTH14': 1.86203978}, '12039': {'FFRPTH14': 0.410535641, 'FSRPTH14': 0.302499946}, '12041': {'FFRPTH14': 0.353003471, 'FSRPTH14': 0.23533564699999998}, '12043': {'FFRPTH14': 0.146681335, 'FSRPTH14': 0.220022002}, '12045': {'FFRPTH14': 0.439036628, 'FSRPTH14': 0.689914701}, '12047': {'FFRPTH14': 0.498291572, 'FSRPTH14': 0.21355353100000002}, '12049': {'FFRPTH14': 0.327642069, 'FSRPTH14': 0.291237395}, '12051': {'FFRPTH14': 0.57135437, 'FSRPTH14': 0.415530451}, '12053': {'FFRPTH14': 0.46629325299999996, 'FSRPTH14': 0.60845583}, '12055': {'FFRPTH14': 0.407182703, 'FSRPTH14': 0.570055784}, '12057': {'FFRPTH14': 0.6358742470000001, 'FSRPTH14': 0.66474309}, '12059': {'FFRPTH14': 0.203562341, 'FSRPTH14': 0.508905852}, '12061': {'FFRPTH14': 0.538841491, 'FSRPTH14': 0.8082622359999999}, '12063': {'FFRPTH14': 0.553267351, 'FSRPTH14': 0.512284584}, '12065': {'FFRPTH14': 0.427046263, 'FSRPTH14': 0.355871886}, '12067': {'FFRPTH14': 0.226372383, 'FSRPTH14': 0.226372383}, '12069': {'FFRPTH14': 0.446640692, 'FSRPTH14': 0.6588742120000001}, '12071': {'FFRPTH14': 0.522432978, 'FSRPTH14': 0.8874002409999999}, '12073': {'FFRPTH14': 0.8944039890000001, 'FSRPTH14': 0.7641167940000001}, '12075': {'FFRPTH14': 0.429152046, 'FSRPTH14': 0.63110595}, '12077': {'FFRPTH14': 0.0, 'FSRPTH14': 0.47846890000000003}, '12079': {'FFRPTH14': 0.486013608, 'FSRPTH14': 0.324009072}, '12081': {'FFRPTH14': 0.511732898, 'FSRPTH14': 0.767599347}, '12083': {'FFRPTH14': 0.477640808, 'FSRPTH14': 0.518918409}, '12085': {'FFRPTH14': 0.6714822159999999, 'FSRPTH14': 1.153906331}, '12086': {'FFRPTH14': 0.61587593, 'FSRPTH14': 0.762709764}, '12087': {'FFRPTH14': 0.907488073, 'FSRPTH14': 2.800248911}, '12089': {'FFRPTH14': 0.639528054, 'FSRPTH14': 0.8614051340000001}, '12091': {'FFRPTH14': 0.758223416, 'FSRPTH14': 1.027927048}, '12093': {'FFRPTH14': 0.434238422, 'FSRPTH14': 0.664129352}, '12095': {'FFRPTH14': 0.7565835940000001, 'FSRPTH14': 0.837190074}, '12097': {'FFRPTH14': 0.5963682779999999, 'FSRPTH14': 0.693076648}, '12099': {'FFRPTH14': 0.651064956, 'FSRPTH14': 0.839945339}, '12101': {'FFRPTH14': 0.391485399, 'FSRPTH14': 0.552200457}, '12103': {'FFRPTH14': 0.653449853, 'FSRPTH14': 0.9252764640000001}, '12105': {'FFRPTH14': 0.456953413, 'FSRPTH14': 0.46798332299999995}, '12107': {'FFRPTH14': 0.38811804299999997, 'FSRPTH14': 0.38811804299999997}, '12109': {'FFRPTH14': 0.610318513, 'FSRPTH14': 0.9682496709999999}, '12111': {'FFRPTH14': 0.474181178, 'FSRPTH14': 0.539466993}, '12113': {'FFRPTH14': 0.507887555, 'FSRPTH14': 0.43445802899999997}, '12115': {'FFRPTH14': 0.463520438, 'FSRPTH14': 1.14620543}, '12117': {'FFRPTH14': 0.693760226, 'FSRPTH14': 0.752515163}, '12119': {'FFRPTH14': 0.23611718399999998, 'FSRPTH14': 0.568430258}, '12121': {'FFRPTH14': 0.499750125, 'FSRPTH14': 0.363454636}, '12123': {'FFRPTH14': 0.44283057299999995, 'FSRPTH14': 0.398547516}, '12125': {'FFRPTH14': 0.197498354, 'FSRPTH14': 0.065832785}, '12127': {'FFRPTH14': 0.530016886, 'FSRPTH14': 0.876793733}, '12129': {'FFRPTH14': 0.31814711100000004, 'FSRPTH14': 0.6681089339999999}, '12131': {'FFRPTH14': 0.731350561, 'FSRPTH14': 1.787745815}, '12133': {'FFRPTH14': 0.695268087, 'FSRPTH14': 0.44987935100000004}, '13001': {'FFRPTH14': 0.7011866240000001, 'FSRPTH14': 0.485436893}, '13003': {'FFRPTH14': 0.486440472, 'FSRPTH14': 0.121610118}, '13005': {'FFRPTH14': 0.620512366, 'FSRPTH14': 0.354578495}, '13007': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '13009': {'FFRPTH14': 0.8712888540000001, 'FSRPTH14': 0.6534666410000001}, '13011': {'FFRPTH14': 0.765236403, 'FSRPTH14': 0.929215633}, '13013': {'FFRPTH14': 0.546149645, 'FSRPTH14': 0.39595849299999997}, '13015': {'FFRPTH14': 0.570103012, 'FSRPTH14': 0.638908548}, '13017': {'FFRPTH14': 0.801649107, 'FSRPTH14': 0.629867155}, '13019': {'FFRPTH14': 0.481283422, 'FSRPTH14': 0.42780748700000004}, '13021': {'FFRPTH14': 1.124070043, 'FSRPTH14': 0.7407166759999999}, '13023': {'FFRPTH14': 0.390777648, 'FSRPTH14': 0.312622118}, '13025': {'FFRPTH14': 0.32578595899999996, 'FSRPTH14': 0.162892979}, '13027': {'FFRPTH14': 0.45401478799999995, 'FSRPTH14': 0.32429627699999997}, '13029': {'FFRPTH14': 0.796319236, 'FSRPTH14': 0.766825931}, '13031': {'FFRPTH14': 0.776839097, 'FSRPTH14': 0.707478464}, '13033': {'FFRPTH14': 0.352283236, 'FSRPTH14': 0.39631864}, '13035': {'FFRPTH14': 0.513522766, 'FSRPTH14': 0.470729202}, '13037': {'FFRPTH14': 0.154726907, 'FSRPTH14': 0.773634535}, '13039': {'FFRPTH14': 0.672727622, 'FSRPTH14': 0.845714725}, '13043': {'FFRPTH14': 1.102130786, 'FSRPTH14': 0.551065393}, '13045': {'FFRPTH14': 0.7099471479999999, 'FSRPTH14': 0.745006267}, '13047': {'FFRPTH14': 0.700995108, 'FSRPTH14': 0.441931699}, '13049': {'FFRPTH14': 0.46522447100000003, 'FSRPTH14': 0.310149647}, '13051': {'FFRPTH14': 1.0198356259999999, 'FSRPTH14': 1.150402817}, '13053': {'FFRPTH14': 0.16896173, 'FSRPTH14': 0.084480865}, '13055': {'FFRPTH14': 0.40097838700000005, 'FSRPTH14': 0.360880549}, '13057': {'FFRPTH14': 0.640734247, 'FSRPTH14': 0.610429249}, '13059': {'FFRPTH14': 0.99224396, 'FSRPTH14': 1.0418561579999999}, '13061': {'FFRPTH14': 0.0, 'FSRPTH14': 0.644745326}, '13063': {'FFRPTH14': 0.70643114, 'FSRPTH14': 0.321444857}, '13065': {'FFRPTH14': 0.7319572540000001, 'FSRPTH14': 0.29278290100000004}, '13067': {'FFRPTH14': 0.824918842, 'FSRPTH14': 0.752413537}, '13069': {'FFRPTH14': 0.6773959959999999, 'FSRPTH14': 0.350377239}, '13071': {'FFRPTH14': 0.563966856, 'FSRPTH14': 0.433820659}, '13073': {'FFRPTH14': 0.517029665, 'FSRPTH14': 0.5960203079999999}, '13075': {'FFRPTH14': 0.7551992559999999, 'FSRPTH14': 0.290461252}, '13077': {'FFRPTH14': 0.48682977899999996, 'FSRPTH14': 0.48682977899999996}, '13079': {'FFRPTH14': 0.080729797, 'FSRPTH14': 0.161459595}, '13081': {'FFRPTH14': 0.784860905, 'FSRPTH14': 0.566843987}, '13083': {'FFRPTH14': 0.48813228399999997, 'FSRPTH14': 0.42711574799999996}, '13085': {'FFRPTH14': 0.740514876, 'FSRPTH14': 0.60983578}, '13087': {'FFRPTH14': 0.77149155, 'FSRPTH14': 0.551065393}, '13089': {'FFRPTH14': 0.8239159970000001, 'FSRPTH14': 0.758833557}, '13091': {'FFRPTH14': 0.619755912, 'FSRPTH14': 0.238367658}, '13093': {'FFRPTH14': 0.422892585, 'FSRPTH14': 0.140964195}, '13095': {'FFRPTH14': 0.995595572, 'FSRPTH14': 0.627658078}, '13097': {'FFRPTH14': 0.612497838, 'FSRPTH14': 0.526027555}, '13099': {'FFRPTH14': 0.47659899, 'FSRPTH14': 1.3344771709999999}, '13101': {'FFRPTH14': 0.0, 'FSRPTH14': 0.249812641}, '13103': {'FFRPTH14': 0.433033217, 'FSRPTH14': 0.396947116}, '13105': {'FFRPTH14': 0.565901842, 'FSRPTH14': 0.25722811}, '13107': {'FFRPTH14': 0.527356625, 'FSRPTH14': 0.659195781}, '13109': {'FFRPTH14': 0.45879978, 'FSRPTH14': 0.550559736}, '13111': {'FFRPTH14': 0.841998905, 'FSRPTH14': 1.052498632}, '13113': {'FFRPTH14': 0.866282463, 'FSRPTH14': 0.8298074120000001}, '13115': {'FFRPTH14': 0.780737641, 'FSRPTH14': 0.624590113}, '13117': {'FFRPTH14': 0.636312909, 'FSRPTH14': 0.636312909}, '13119': {'FFRPTH14': 0.6737333809999999, 'FSRPTH14': 0.808480057}, '13121': {'FFRPTH14': 1.1512377059999999, 'FSRPTH14': 1.1141010059999998}, '13123': {'FFRPTH14': 0.728433175, 'FSRPTH14': 0.936556939}, '13125': {'FFRPTH14': 0.0, 'FSRPTH14': 0.327546675}, '13127': {'FFRPTH14': 1.095223608, 'FSRPTH14': 1.2290842709999998}, '13129': {'FFRPTH14': 0.624475886, 'FSRPTH14': 0.481738541}, '13131': {'FFRPTH14': 0.630939706, 'FSRPTH14': 0.197168658}, '13133': {'FFRPTH14': 0.424499697, 'FSRPTH14': 0.9702850209999999}, '13135': {'FFRPTH14': 0.766582908, 'FSRPTH14': 0.765443855}, '13137': {'FFRPTH14': 0.68568294, 'FSRPTH14': 0.639970744}, '13139': {'FFRPTH14': 0.581879944, 'FSRPTH14': 0.566153459}, '13141': {'FFRPTH14': 0.822658362, 'FSRPTH14': 0.235045246}, '13143': {'FFRPTH14': 0.663384658, 'FSRPTH14': 0.628469676}, '13145': {'FFRPTH14': 0.243338606, 'FSRPTH14': 0.39542523399999996}, '13147': {'FFRPTH14': 0.472869133, 'FSRPTH14': 0.433463372}, '13149': {'FFRPTH14': 0.34473843, 'FSRPTH14': 0.172369215}, '13151': {'FFRPTH14': 0.7107154379999999, 'FSRPTH14': 0.565766895}, '13153': {'FFRPTH14': 0.8383016679999999, 'FSRPTH14': 0.523100241}, '13155': {'FFRPTH14': 0.43936731100000004, 'FSRPTH14': 0.329525483}, '13157': {'FFRPTH14': 0.549539357, 'FSRPTH14': 0.50105059}, '13159': {'FFRPTH14': 0.22334723, 'FSRPTH14': 0.521143538}, '13161': {'FFRPTH14': 0.5383942389999999, 'FSRPTH14': 0.26919712}, '13163': {'FFRPTH14': 0.676007866, 'FSRPTH14': 0.43018682399999997}, '13165': {'FFRPTH14': 0.6575342470000001, 'FSRPTH14': 0.328767123}, '13167': {'FFRPTH14': 0.618492939, 'FSRPTH14': 0.20616431300000002}, '13169': {'FFRPTH14': 0.24316531800000002, 'FSRPTH14': 0.486330635}, '13171': {'FFRPTH14': 0.439391443, 'FSRPTH14': 0.49431537299999995}, '13173': {'FFRPTH14': 0.38561650399999997, 'FSRPTH14': 0.48202063}, '13175': {'FFRPTH14': 0.815029989, 'FSRPTH14': 0.73143717}, '13177': {'FFRPTH14': 0.445342743, 'FSRPTH14': 0.23979993800000002}, '13179': {'FFRPTH14': 0.659529433, 'FSRPTH14': 0.414123133}, '13181': {'FFRPTH14': 0.393597481, 'FSRPTH14': 0.6559958020000001}, '13183': {'FFRPTH14': 0.175305323, 'FSRPTH14': 0.116870216}, '13185': {'FFRPTH14': 0.960157853, 'FSRPTH14': 0.757555738}, '13187': {'FFRPTH14': 0.866050808, 'FSRPTH14': 0.737746985}, '13189': {'FFRPTH14': 0.701918577, 'FSRPTH14': 0.608329434}, '13191': {'FFRPTH14': 0.703531729, 'FSRPTH14': 0.9849444209999999}, '13193': {'FFRPTH14': 0.5075406029999999, 'FSRPTH14': 0.145011601}, '13195': {'FFRPTH14': 0.353207121, 'FSRPTH14': 0.17660356}, '13197': {'FFRPTH14': 0.454700466, 'FSRPTH14': 0.227350233}, '13199': {'FFRPTH14': 0.47174261700000003, 'FSRPTH14': 0.613265402}, '13201': {'FFRPTH14': 0.167841558, 'FSRPTH14': 0.67136623}, '13205': {'FFRPTH14': 0.658732598, 'FSRPTH14': 0.39523955899999996}, '13207': {'FFRPTH14': 0.480573731, 'FSRPTH14': 0.480573731}, '13209': {'FFRPTH14': 0.44488933399999997, 'FSRPTH14': 0.111222333}, '13211': {'FFRPTH14': 0.8353753620000001, 'FSRPTH14': 1.058142125}, '13213': {'FFRPTH14': 0.634356762, 'FSRPTH14': 0.152245623}, '13215': {'FFRPTH14': 0.970694968, 'FSRPTH14': 0.6122845179999999}, '13217': {'FFRPTH14': 0.569086086, 'FSRPTH14': 0.356884495}, '13219': {'FFRPTH14': 0.9403584759999999, 'FSRPTH14': 0.598409939}, '13221': {'FFRPTH14': 0.272609555, 'FSRPTH14': 0.0}, '13223': {'FFRPTH14': 0.422855685, 'FSRPTH14': 0.37587172}, '13225': {'FFRPTH14': 0.705742515, 'FSRPTH14': 0.445732115}, '13227': {'FFRPTH14': 0.466713338, 'FSRPTH14': 0.800080008}, '13229': {'FFRPTH14': 0.68453478, 'FSRPTH14': 0.315939129}, '13231': {'FFRPTH14': 0.224921278, 'FSRPTH14': 0.281151597}, '13233': {'FFRPTH14': 0.705030025, 'FSRPTH14': 0.583473124}, '13235': {'FFRPTH14': 0.9579378209999999, 'FSRPTH14': 0.43542628200000005}, '13237': {'FFRPTH14': 0.330313326, 'FSRPTH14': 0.70781427}, '13239': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '13241': {'FFRPTH14': 1.046604691, 'FSRPTH14': 1.66225451}, '13243': {'FFRPTH14': 0.546971147, 'FSRPTH14': 0.546971147}, '13245': {'FFRPTH14': 0.78463311, 'FSRPTH14': 0.6455842039999999}, '13247': {'FFRPTH14': 0.82047542, 'FSRPTH14': 0.672334025}, '13249': {'FFRPTH14': 0.38737168299999997, 'FSRPTH14': 0.193685842}, '13251': {'FFRPTH14': 0.354987575, 'FSRPTH14': 0.42598509100000004}, '13253': {'FFRPTH14': 0.46051116700000005, 'FSRPTH14': 0.46051116700000005}, '13255': {'FFRPTH14': 0.843908233, 'FSRPTH14': 0.562605489}, '13257': {'FFRPTH14': 0.588697017, 'FSRPTH14': 0.549450549}, '13259': {'FFRPTH14': 0.0, 'FSRPTH14': 0.17409470800000001}, '13261': {'FFRPTH14': 0.672387295, 'FSRPTH14': 0.5122950820000001}, '13263': {'FFRPTH14': 0.156494523, 'FSRPTH14': 0.156494523}, '13265': {'FFRPTH14': 0.0, 'FSRPTH14': 0.590667454}, '13267': {'FFRPTH14': 0.23786869600000002, 'FSRPTH14': 0.15857913099999998}, '13269': {'FFRPTH14': 0.7107320540000001, 'FSRPTH14': 0.11845534199999999}, '13271': {'FFRPTH14': 0.423780119, 'FSRPTH14': 0.302700085}, '13273': {'FFRPTH14': 0.657030223, 'FSRPTH14': 0.328515112}, '13275': {'FFRPTH14': 0.822972041, 'FSRPTH14': 0.711759603}, '13277': {'FFRPTH14': 0.958136792, 'FSRPTH14': 0.737028302}, '13279': {'FFRPTH14': 0.95300931, 'FSRPTH14': 0.6964298809999999}, '13281': {'FFRPTH14': 0.630744278, 'FSRPTH14': 0.901063255}, '13283': {'FFRPTH14': 0.44260843899999996, 'FSRPTH14': 0.44260843899999996}, '13285': {'FFRPTH14': 0.762930228, 'FSRPTH14': 0.719745498}, '13287': {'FFRPTH14': 0.981233902, 'FSRPTH14': 0.613271189}, '13289': {'FFRPTH14': 0.12019230800000001, 'FSRPTH14': 0.12019230800000001}, '13291': {'FFRPTH14': 0.818777293, 'FSRPTH14': 0.86426492}, '13293': {'FFRPTH14': 0.685557587, 'FSRPTH14': 0.49512492399999997}, '13295': {'FFRPTH14': 0.33715441700000004, 'FSRPTH14': 0.307836641}, '13297': {'FFRPTH14': 0.570678537, 'FSRPTH14': 0.388061405}, '13299': {'FFRPTH14': 0.816556385, 'FSRPTH14': 0.563142334}, '13301': {'FFRPTH14': 0.18115942, 'FSRPTH14': 0.0}, '13303': {'FFRPTH14': 0.581536225, 'FSRPTH14': 0.533074873}, '13305': {'FFRPTH14': 0.701192026, 'FSRPTH14': 0.701192026}, '13307': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '13309': {'FFRPTH14': 0.12507817400000001, 'FSRPTH14': 0.25015634800000003}, '13311': {'FFRPTH14': 0.786557025, 'FSRPTH14': 1.179835538}, '13313': {'FFRPTH14': 0.7919491609999999, 'FSRPTH14': 0.560159162}, '13315': {'FFRPTH14': 0.226065333, 'FSRPTH14': 0.226065333}, '13317': {'FFRPTH14': 0.40241448700000004, 'FSRPTH14': 0.704225352}, '13319': {'FFRPTH14': 0.10722710699999999, 'FSRPTH14': 0.536135535}, '13321': {'FFRPTH14': 0.334288443, 'FSRPTH14': 0.238777459}, '15001': {'FFRPTH14': 0.746691385, 'FSRPTH14': 0.7672897679999999}, '15003': {'FFRPTH14': 0.9245927559999999, 'FSRPTH14': 0.8056157159999999}, '15005': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '15007': {'FFRPTH14': 0.908123448, 'FSRPTH14': 1.319616885}, '15009': {'FFRPTH14': 0.754513278, 'FSRPTH14': 1.165508315}, '16001': {'FFRPTH14': 0.7202582609999999, 'FSRPTH14': 0.7789112140000001}, '16003': {'FFRPTH14': 0.259000259, 'FSRPTH14': 1.813001813}, '16005': {'FFRPTH14': 0.755876036, 'FSRPTH14': 0.659891778}, '16007': {'FFRPTH14': 0.503609199, 'FSRPTH14': 1.007218399}, '16009': {'FFRPTH14': 0.767712218, 'FSRPTH14': 0.54836587}, '16011': {'FFRPTH14': 0.30926240899999996, 'FSRPTH14': 0.41971327}, '16013': {'FFRPTH14': 1.070663812, 'FSRPTH14': 2.6533842290000003}, '16015': {'FFRPTH14': 0.146541618, 'FSRPTH14': 1.905041032}, '16017': {'FFRPTH14': 0.577131177, 'FSRPTH14': 0.9859324279999999}, '16019': {'FFRPTH14': 0.672049198, 'FSRPTH14': 0.727286118}, '16021': {'FFRPTH14': 0.54649786, 'FSRPTH14': 1.0019127429999999}, '16023': {'FFRPTH14': 0.7627765059999999, 'FSRPTH14': 0.7627765059999999}, '16025': {'FFRPTH14': 1.924927815, 'FSRPTH14': 1.924927815}, '16027': {'FFRPTH14': 0.536567836, 'FSRPTH14': 0.393811256}, '16029': {'FFRPTH14': 0.292525962, 'FSRPTH14': 0.585051923}, '16031': {'FFRPTH14': 0.807136788, 'FSRPTH14': 0.807136788}, '16033': {'FFRPTH14': 0.0, 'FSRPTH14': 1.153402537}, '16035': {'FFRPTH14': 0.350385424, 'FSRPTH14': 1.051156272}, '16037': {'FFRPTH14': 0.966183575, 'FSRPTH14': 2.173913043}, '16039': {'FFRPTH14': 0.421552847, 'FSRPTH14': 0.804782709}, '16041': {'FFRPTH14': 0.537593119, 'FSRPTH14': 0.46079410200000004}, '16043': {'FFRPTH14': 0.388590969, 'FSRPTH14': 0.6217455510000001}, '16045': {'FFRPTH14': 0.592908811, 'FSRPTH14': 0.592908811}, '16047': {'FFRPTH14': 0.464684015, 'FSRPTH14': 0.663834307}, '16049': {'FFRPTH14': 0.30835646, 'FSRPTH14': 1.171754548}, '16051': {'FFRPTH14': 0.407090781, 'FSRPTH14': 0.407090781}, '16053': {'FFRPTH14': 0.438250504, 'FSRPTH14': 0.657375756}, '16055': {'FFRPTH14': 0.6719791479999999, 'FSRPTH14': 0.7873695070000001}, '16057': {'FFRPTH14': 0.75499206, 'FSRPTH14': 0.807060477}, '16059': {'FFRPTH14': 0.38829924899999996, 'FSRPTH14': 1.8120631630000001}, '16061': {'FFRPTH14': 1.042209484, 'FSRPTH14': 0.521104742}, '16063': {'FFRPTH14': 0.0, 'FSRPTH14': 0.752445448}, '16065': {'FFRPTH14': 0.7361059990000001, 'FSRPTH14': 0.368053}, '16067': {'FFRPTH14': 0.24602666899999998, 'FSRPTH14': 0.590464006}, '16069': {'FFRPTH14': 0.6998775209999999, 'FSRPTH14': 0.724873147}, '16071': {'FFRPTH14': 1.195028681, 'FSRPTH14': 0.956022945}, '16073': {'FFRPTH14': 0.616577116, 'FSRPTH14': 0.880824452}, '16075': {'FFRPTH14': 0.525486075, 'FSRPTH14': 0.306533544}, '16077': {'FFRPTH14': 0.262570566, 'FSRPTH14': 0.393855849}, '16079': {'FFRPTH14': 0.645682002, 'FSRPTH14': 1.291364003}, '16081': {'FFRPTH14': 0.48351223299999996, 'FSRPTH14': 2.030751378}, '16083': {'FFRPTH14': 0.7786044440000001, 'FSRPTH14': 0.70445164}, '16085': {'FFRPTH14': 0.814166497, 'FSRPTH14': 2.646041115}, '16087': {'FFRPTH14': 0.59874264, 'FSRPTH14': 0.898113961}, '17001': {'FFRPTH14': 0.47769749799999994, 'FSRPTH14': 0.850898668}, '17003': {'FFRPTH14': 0.0, 'FSRPTH14': 0.53390283}, '17005': {'FFRPTH14': 0.405350628, 'FSRPTH14': 0.7527940240000001}, '17007': {'FFRPTH14': 0.48265236, 'FSRPTH14': 0.33414394199999997}, '17009': {'FFRPTH14': 0.43911007, 'FSRPTH14': 0.292740047}, '17011': {'FFRPTH14': 0.354609929, 'FSRPTH14': 0.8274231679999999}, '17013': {'FFRPTH14': 0.201775626, 'FSRPTH14': 2.4213075059999998}, '17015': {'FFRPTH14': 0.679578661, 'FSRPTH14': 0.88345226}, '17017': {'FFRPTH14': 0.608087565, 'FSRPTH14': 0.608087565}, '17019': {'FFRPTH14': 0.830384342, 'FSRPTH14': 0.8496956059999999}, '17021': {'FFRPTH14': 0.501593296, 'FSRPTH14': 0.796648177}, '17023': {'FFRPTH14': 0.927070457, 'FSRPTH14': 0.927070457}, '17025': {'FFRPTH14': 0.591715976, 'FSRPTH14': 0.73964497}, '17027': {'FFRPTH14': 0.47547349200000005, 'FSRPTH14': 0.9773621790000001}, '17029': {'FFRPTH14': 0.731432858, 'FSRPTH14': 0.825206302}, '17031': {'FFRPTH14': 0.835039882, 'FSRPTH14': 0.726776323}, '17033': {'FFRPTH14': 0.618779972, 'FSRPTH14': 0.567214974}, '17035': {'FFRPTH14': 0.276931598, 'FSRPTH14': 0.461552663}, '17037': {'FFRPTH14': 0.711156625, 'FSRPTH14': 0.663746183}, '17039': {'FFRPTH14': 0.491279784, 'FSRPTH14': 0.859739622}, '17041': {'FFRPTH14': 0.8547438279999999, 'FSRPTH14': 1.0055809740000001}, '17043': {'FFRPTH14': 0.903819845, 'FSRPTH14': 0.7483585429999999}, '17045': {'FFRPTH14': 0.448405358, 'FSRPTH14': 0.784709377}, '17047': {'FFRPTH14': 0.755629439, 'FSRPTH14': 0.45337766399999996}, '17049': {'FFRPTH14': 0.9906759909999999, 'FSRPTH14': 0.757575758}, '17051': {'FFRPTH14': 0.32007316, 'FSRPTH14': 1.051668953}, '17053': {'FFRPTH14': 0.43834015200000004, 'FSRPTH14': 1.46113384}, '17055': {'FFRPTH14': 0.558219786, 'FSRPTH14': 0.811956053}, '17057': {'FFRPTH14': 0.5554475520000001, 'FSRPTH14': 0.9720332159999999}, '17059': {'FFRPTH14': 0.0, 'FSRPTH14': 0.945000945}, '17061': {'FFRPTH14': 0.297751973, 'FSRPTH14': 0.669941938}, '17063': {'FFRPTH14': 0.753594447, 'FSRPTH14': 0.5156172529999999}, '17065': {'FFRPTH14': 0.36162005799999997, 'FSRPTH14': 0.482160077}, '17067': {'FFRPTH14': 0.538677009, 'FSRPTH14': 0.269338505}, '17069': {'FFRPTH14': 0.0, 'FSRPTH14': 1.453136353}, '17071': {'FFRPTH14': 0.28918449999999996, 'FSRPTH14': 0.43377675}, '17073': {'FFRPTH14': 0.463382694, 'FSRPTH14': 0.765588798}, '17075': {'FFRPTH14': 0.727171993, 'FSRPTH14': 0.5886630420000001}, '17077': {'FFRPTH14': 0.603247482, 'FSRPTH14': 0.8043299759999999}, '17079': {'FFRPTH14': 0.519588486, 'FSRPTH14': 0.415670789}, '17081': {'FFRPTH14': 0.7785332429999999, 'FSRPTH14': 0.6487777029999999}, '17083': {'FFRPTH14': 0.575960303, 'FSRPTH14': 0.930397413}, '17085': {'FFRPTH14': 0.40442167700000003, 'FSRPTH14': 1.797429676}, '17087': {'FFRPTH14': 0.396793905, 'FSRPTH14': 0.476152686}, '17089': {'FFRPTH14': 0.6163404170000001, 'FSRPTH14': 0.597376097}, '17091': {'FFRPTH14': 0.691358025, 'FSRPTH14': 0.6015712679999999}, '17093': {'FFRPTH14': 0.585084466, 'FSRPTH14': 0.46147507200000004}, '17095': {'FFRPTH14': 0.7490061259999999, 'FSRPTH14': 0.787416697}, '17097': {'FFRPTH14': 0.7728457459999999, 'FSRPTH14': 0.689179876}, '17099': {'FFRPTH14': 0.620274899, 'FSRPTH14': 1.1326759020000001}, '17101': {'FFRPTH14': 0.36321811200000004, 'FSRPTH14': 0.726436225}, '17103': {'FFRPTH14': 0.37426227100000004, 'FSRPTH14': 0.9212609759999999}, '17105': {'FFRPTH14': 0.527662718, 'FSRPTH14': 0.844260349}, '17107': {'FFRPTH14': 0.470651516, 'FSRPTH14': 0.7059772740000001}, '17109': {'FFRPTH14': 0.752823087, 'FSRPTH14': 0.90966123}, '17111': {'FFRPTH14': 0.696426421, 'FSRPTH14': 0.69968075}, '17113': {'FFRPTH14': 0.7296292679999999, 'FSRPTH14': 0.695158594}, '17115': {'FFRPTH14': 0.581449008, 'FSRPTH14': 0.756806645}, '17117': {'FFRPTH14': 0.430542699, 'FSRPTH14': 0.753449723}, '17119': {'FFRPTH14': 0.701530612, 'FSRPTH14': 0.772809124}, '17121': {'FFRPTH14': 0.622229136, 'FSRPTH14': 0.700007778}, '17123': {'FFRPTH14': 0.416181122, 'FSRPTH14': 0.915598468}, '17125': {'FFRPTH14': 0.5036695929999999, 'FSRPTH14': 0.7914807890000001}, '17127': {'FFRPTH14': 0.33545790000000003, 'FSRPTH14': 0.46964106}, '17129': {'FFRPTH14': 0.15910899, 'FSRPTH14': 0.6364359589999999}, '17131': {'FFRPTH14': 0.313577924, 'FSRPTH14': 0.7525870179999999}, '17133': {'FFRPTH14': 0.6523930960000001, 'FSRPTH14': 0.859972718}, '17135': {'FFRPTH14': 0.681222112, 'FSRPTH14': 0.8855887459999999}, '17137': {'FFRPTH14': 0.629849123, 'FSRPTH14': 0.744367145}, '17139': {'FFRPTH14': 0.13479814, 'FSRPTH14': 0.606591629}, '17141': {'FFRPTH14': 0.5567821829999999, 'FSRPTH14': 0.729576654}, '17143': {'FFRPTH14': 0.720695712, 'FSRPTH14': 0.827465447}, '17145': {'FFRPTH14': 0.46142488, 'FSRPTH14': 0.8305647840000001}, '17147': {'FFRPTH14': 0.365163411, 'FSRPTH14': 0.669466253}, '17149': {'FFRPTH14': 0.312070903, 'FSRPTH14': 0.748970166}, '17151': {'FFRPTH14': 0.0, 'FSRPTH14': 0.467726848}, '17153': {'FFRPTH14': 0.343938091, 'FSRPTH14': 0.343938091}, '17155': {'FFRPTH14': 0.0, 'FSRPTH14': 1.71998624}, '17157': {'FFRPTH14': 0.578052268, 'FSRPTH14': 0.7301712859999999}, '17159': {'FFRPTH14': 0.99620198, 'FSRPTH14': 0.43583836600000003}, '17161': {'FFRPTH14': 0.7462533290000001, 'FSRPTH14': 0.848948741}, '17163': {'FFRPTH14': 0.718777401, 'FSRPTH14': 0.6209333570000001}, '17165': {'FFRPTH14': 0.6907199740000001, 'FSRPTH14': 0.6500893870000001}, '17167': {'FFRPTH14': 0.773881013, 'FSRPTH14': 0.8995110479999999}, '17169': {'FFRPTH14': 0.409276944, 'FSRPTH14': 0.545702592}, '17171': {'FFRPTH14': 0.38431975399999996, 'FSRPTH14': 1.152959262}, '17173': {'FFRPTH14': 0.317489115, 'FSRPTH14': 0.8164005809999999}, '17175': {'FFRPTH14': 0.0, 'FSRPTH14': 0.344056425}, '17177': {'FFRPTH14': 0.5814579520000001, 'FSRPTH14': 0.6675998710000001}, '17179': {'FFRPTH14': 0.8032010140000001, 'FSRPTH14': 0.7589881140000001}, '17181': {'FFRPTH14': 0.7451137729999999, 'FSRPTH14': 0.687797329}, '17183': {'FFRPTH14': 0.52679109, 'FSRPTH14': 0.62713225}, '17185': {'FFRPTH14': 0.8658758329999999, 'FSRPTH14': 0.5195255}, '17187': {'FFRPTH14': 0.44757748700000005, 'FSRPTH14': 0.615419044}, '17189': {'FFRPTH14': 0.6974959890000001, 'FSRPTH14': 0.5579967920000001}, '17191': {'FFRPTH14': 0.30224264, 'FSRPTH14': 0.846279393}, '17193': {'FFRPTH14': 0.556560456, 'FSRPTH14': 0.765270628}, '17195': {'FFRPTH14': 0.527463253, 'FSRPTH14': 0.861523314}, '17197': {'FFRPTH14': 0.695924683, 'FSRPTH14': 0.47708044299999997}, '17199': {'FFRPTH14': 0.626790831, 'FSRPTH14': 0.701408787}, '17201': {'FFRPTH14': 0.700071393, 'FSRPTH14': 0.720865593}, '17203': {'FFRPTH14': 0.484854671, 'FSRPTH14': 0.637966673}, '18001': {'FFRPTH14': 0.459889052, 'FSRPTH14': 0.60360438}, '18003': {'FFRPTH14': 0.655884652, 'FSRPTH14': 0.702343148}, '18005': {'FFRPTH14': 0.8850991690000001, 'FSRPTH14': 0.698106386}, '18007': {'FFRPTH14': 0.574712644, 'FSRPTH14': 0.229885057}, '18009': {'FFRPTH14': 0.403193291, 'FSRPTH14': 0.483831949}, '18011': {'FFRPTH14': 0.61374465, 'FSRPTH14': 0.74295405}, '18013': {'FFRPTH14': 0.267343938, 'FSRPTH14': 0.802031814}, '18015': {'FFRPTH14': 0.652512172, 'FSRPTH14': 0.652512172}, '18017': {'FFRPTH14': 0.8064935740000001, 'FSRPTH14': 0.49430251299999994}, '18019': {'FFRPTH14': 0.74390436, 'FSRPTH14': 0.638882568}, '18021': {'FFRPTH14': 0.527068745, 'FSRPTH14': 0.60236428}, '18023': {'FFRPTH14': 0.640712717, 'FSRPTH14': 0.48816207}, '18025': {'FFRPTH14': 0.093852651, 'FSRPTH14': 1.032379165}, '18027': {'FFRPTH14': 0.5805249170000001, 'FSRPTH14': 0.48886308799999995}, '18029': {'FFRPTH14': 0.504989294, 'FSRPTH14': 0.504989294}, '18031': {'FFRPTH14': 0.829437491, 'FSRPTH14': 0.6786306740000001}, '18033': {'FFRPTH14': 0.637047873, 'FSRPTH14': 0.7550197009999999}, '18035': {'FFRPTH14': 0.657703675, 'FSRPTH14': 0.597912431}, '18037': {'FFRPTH14': 0.921006022, 'FSRPTH14': 0.9918526390000001}, '18039': {'FFRPTH14': 0.68326641, 'FSRPTH14': 0.5594862629999999}, '18041': {'FFRPTH14': 0.9800579509999999, 'FSRPTH14': 0.468723368}, '18043': {'FFRPTH14': 0.8795074759999999, 'FSRPTH14': 0.5382060670000001}, '18045': {'FFRPTH14': 0.420218514, 'FSRPTH14': 0.780405811}, '18047': {'FFRPTH14': 0.654050754, 'FSRPTH14': 0.610447371}, '18049': {'FFRPTH14': 0.634146341, 'FSRPTH14': 0.975609756}, '18051': {'FFRPTH14': 0.59243461, 'FSRPTH14': 0.888651915}, '18053': {'FFRPTH14': 0.7146086420000001, 'FSRPTH14': 0.525018594}, '18055': {'FFRPTH14': 0.672248365, 'FSRPTH14': 0.702805109}, '18057': {'FFRPTH14': 0.723672688, 'FSRPTH14': 0.6972371559999999}, '18059': {'FFRPTH14': 0.6251910310000001, 'FSRPTH14': 0.402900886}, '18061': {'FFRPTH14': 0.483472862, 'FSRPTH14': 0.381689102}, '18063': {'FFRPTH14': 0.768954734, 'FSRPTH14': 0.7240990409999999}, '18065': {'FFRPTH14': 0.5102561489999999, 'FSRPTH14': 0.367384427}, '18067': {'FFRPTH14': 0.927912077, 'FSRPTH14': 0.626641922}, '18069': {'FFRPTH14': 0.844548575, 'FSRPTH14': 0.817305073}, '18071': {'FFRPTH14': 0.7779430270000001, 'FSRPTH14': 0.6177782860000001}, '18073': {'FFRPTH14': 0.6273338310000001, 'FSRPTH14': 0.71695295}, '18075': {'FFRPTH14': 0.424949242, 'FSRPTH14': 0.613815572}, '18077': {'FFRPTH14': 0.584723334, 'FSRPTH14': 0.8616975440000001}, '18079': {'FFRPTH14': 0.39285714299999996, 'FSRPTH14': 0.35714285700000004}, '18081': {'FFRPTH14': 0.847239355, 'FSRPTH14': 0.7116810579999999}, '18083': {'FFRPTH14': 0.6589698979999999, 'FSRPTH14': 0.896199062}, '18085': {'FFRPTH14': 0.687337712, 'FSRPTH14': 0.814622473}, '18087': {'FFRPTH14': 0.208138204, 'FSRPTH14': 0.676449162}, '18089': {'FFRPTH14': 0.8261462009999999, 'FSRPTH14': 0.607880415}, '18091': {'FFRPTH14': 0.6281181579999999, 'FSRPTH14': 0.798607372}, '18093': {'FFRPTH14': 0.481358306, 'FSRPTH14': 0.393838614}, '18095': {'FFRPTH14': 0.59199348, 'FSRPTH14': 0.661187524}, '18097': {'FFRPTH14': 0.890560593, 'FSRPTH14': 0.7374954909999999}, '18099': {'FFRPTH14': 0.912815505, 'FSRPTH14': 0.615619759}, '18101': {'FFRPTH14': 0.882093502, 'FSRPTH14': 0.882093502}, '18103': {'FFRPTH14': 0.611892974, 'FSRPTH14': 0.528453023}, '18105': {'FFRPTH14': 0.774387989, 'FSRPTH14': 0.8511291409999999}, '18107': {'FFRPTH14': 0.7078068470000001, 'FSRPTH14': 0.5243013679999999}, '18109': {'FFRPTH14': 0.5452484470000001, 'FSRPTH14': 0.444807943}, '18111': {'FFRPTH14': 0.7064142409999999, 'FSRPTH14': 0.777055665}, '18113': {'FFRPTH14': 0.546012012, 'FSRPTH14': 0.5040110879999999}, '18115': {'FFRPTH14': 0.331400166, 'FSRPTH14': 0.331400166}, '18117': {'FFRPTH14': 0.7133394479999999, 'FSRPTH14': 0.7133394479999999}, '18119': {'FFRPTH14': 0.333826124, 'FSRPTH14': 0.333826124}, '18121': {'FFRPTH14': 0.290141009, 'FSRPTH14': 0.464225614}, '18123': {'FFRPTH14': 0.719646345, 'FSRPTH14': 0.822452966}, '18125': {'FFRPTH14': 0.396070976, 'FSRPTH14': 0.554499366}, '18127': {'FFRPTH14': 0.664368311, 'FSRPTH14': 0.7002801120000001}, '18129': {'FFRPTH14': 0.391542678, 'FSRPTH14': 0.626468285}, '18131': {'FFRPTH14': 0.694069561, 'FSRPTH14': 0.616950721}, '18133': {'FFRPTH14': 0.611409432, 'FSRPTH14': 0.39874528200000003}, '18135': {'FFRPTH14': 0.315159155, 'FSRPTH14': 0.827292783}, '18137': {'FFRPTH14': 0.526371197, 'FSRPTH14': 0.701828263}, '18139': {'FFRPTH14': 0.591996211, 'FSRPTH14': 0.651195832}, '18141': {'FFRPTH14': 0.78843725, 'FSRPTH14': 0.691283845}, '18143': {'FFRPTH14': 0.8012820509999999, 'FSRPTH14': 0.421727395}, '18145': {'FFRPTH14': 0.515937998, 'FSRPTH14': 0.6729626059999999}, '18147': {'FFRPTH14': 0.48074611799999994, 'FSRPTH14': 0.19229844699999998}, '18149': {'FFRPTH14': 0.34671058299999996, 'FSRPTH14': 0.520065875}, '18151': {'FFRPTH14': 0.612102134, 'FSRPTH14': 1.195056547}, '18153': {'FFRPTH14': 0.522565321, 'FSRPTH14': 0.712589074}, '18155': {'FFRPTH14': 0.478377344, 'FSRPTH14': 0.574052813}, '18157': {'FFRPTH14': 0.7483312759999999, 'FSRPTH14': 0.710095371}, '18159': {'FFRPTH14': 0.64871878, 'FSRPTH14': 0.38923126799999996}, '18161': {'FFRPTH14': 0.552028705, 'FSRPTH14': 0.276014353}, '18163': {'FFRPTH14': 0.884586222, 'FSRPTH14': 0.758216762}, '18165': {'FFRPTH14': 0.446058752, 'FSRPTH14': 0.637226789}, '18167': {'FFRPTH14': 0.859718049, 'FSRPTH14': 0.850473769}, '18169': {'FFRPTH14': 0.806151556, 'FSRPTH14': 0.651122411}, '18171': {'FFRPTH14': 0.0, 'FSRPTH14': 0.35919540200000005}, '18173': {'FFRPTH14': 0.474251419, 'FSRPTH14': 0.45789792100000004}, '18175': {'FFRPTH14': 0.35870579, 'FSRPTH14': 0.502188105}, '18177': {'FFRPTH14': 0.6354272879999999, 'FSRPTH14': 0.8275332120000001}, '18179': {'FFRPTH14': 0.46658531299999995, 'FSRPTH14': 0.610150025}, '18181': {'FFRPTH14': 0.7361059990000001, 'FSRPTH14': 0.858790332}, '18183': {'FFRPTH14': 0.598748615, 'FSRPTH14': 0.6885609079999999}, '19001': {'FFRPTH14': 0.402468473, 'FSRPTH14': 0.6707807889999999}, '19003': {'FFRPTH14': 0.516129032, 'FSRPTH14': 0.774193548}, '19005': {'FFRPTH14': 0.21370565600000002, 'FSRPTH14': 1.424704374}, '19007': {'FFRPTH14': 0.6318616220000001, 'FSRPTH14': 0.710844325}, '19009': {'FFRPTH14': 0.17259233699999998, 'FSRPTH14': 0.5177770110000001}, '19011': {'FFRPTH14': 0.23364486, 'FSRPTH14': 0.46728972}, '19013': {'FFRPTH14': 0.6019699470000001, 'FSRPTH14': 0.7524624329999999}, '19015': {'FFRPTH14': 0.302651988, 'FSRPTH14': 0.605303976}, '19017': {'FFRPTH14': 0.525868695, 'FSRPTH14': 1.0112859509999998}, '19019': {'FFRPTH14': 0.33273124800000003, 'FSRPTH14': 0.475330355}, '19021': {'FFRPTH14': 0.437360288, 'FSRPTH14': 0.680338225}, '19023': {'FFRPTH14': 0.066640011, 'FSRPTH14': 0.6664001070000001}, '19025': {'FFRPTH14': 0.4054328, 'FSRPTH14': 0.709507399}, '19027': {'FFRPTH14': 0.7295010209999999, 'FSRPTH14': 1.02130143}, '19029': {'FFRPTH14': 0.669244497, 'FSRPTH14': 1.115407496}, '19031': {'FFRPTH14': 0.488838195, 'FSRPTH14': 0.7060996140000001}, '19033': {'FFRPTH14': 0.878531465, 'FSRPTH14': 1.063485458}, '19035': {'FFRPTH14': 0.760392024, 'FSRPTH14': 0.591416019}, '19037': {'FFRPTH14': 0.407697326, 'FSRPTH14': 0.9784735809999999}, '19039': {'FFRPTH14': 0.43398068799999995, 'FSRPTH14': 0.6509710320000001}, '19041': {'FFRPTH14': 1.211020285, 'FSRPTH14': 1.029367242}, '19043': {'FFRPTH14': 0.734795388, 'FSRPTH14': 1.5261134980000002}, '19045': {'FFRPTH14': 0.520280535, 'FSRPTH14': 0.7283927490000001}, '19047': {'FFRPTH14': 0.522405387, 'FSRPTH14': 0.812630601}, '19049': {'FFRPTH14': 0.529715762, 'FSRPTH14': 0.7364341090000001}, '19051': {'FFRPTH14': 0.45552898299999994, 'FSRPTH14': 0.45552898299999994}, '19053': {'FFRPTH14': 0.605107104, 'FSRPTH14': 0.24204284199999998}, '19055': {'FFRPTH14': 0.287389355, 'FSRPTH14': 0.977123807}, '19057': {'FFRPTH14': 0.7949323070000001, 'FSRPTH14': 0.770090672}, '19059': {'FFRPTH14': 1.062887511, 'FSRPTH14': 2.125775022}, '19061': {'FFRPTH14': 0.747120473, 'FSRPTH14': 0.7886271659999999}, '19063': {'FFRPTH14': 0.600600601, 'FSRPTH14': 1.001001001}, '19065': {'FFRPTH14': 0.344098707, 'FSRPTH14': 0.9831391629999999}, '19067': {'FFRPTH14': 0.373203956, 'FSRPTH14': 0.93300989}, '19069': {'FFRPTH14': 0.47911077, 'FSRPTH14': 0.766577233}, '19071': {'FFRPTH14': 0.42722871, 'FSRPTH14': 0.996866989}, '19073': {'FFRPTH14': 0.869565217, 'FSRPTH14': 0.760869565}, '19075': {'FFRPTH14': 0.24242424199999998, 'FSRPTH14': 1.212121212}, '19077': {'FFRPTH14': 0.466330908, 'FSRPTH14': 0.652863272}, '19079': {'FFRPTH14': 0.264602765, 'FSRPTH14': 0.661506913}, '19081': {'FFRPTH14': 0.27205949, 'FSRPTH14': 0.544118981}, '19083': {'FFRPTH14': 0.34660042700000004, 'FSRPTH14': 0.866501069}, '19085': {'FFRPTH14': 0.48869031, 'FSRPTH14': 0.698129014}, '19087': {'FFRPTH14': 0.44516990700000003, 'FSRPTH14': 0.7914131670000001}, '19089': {'FFRPTH14': 0.317493915, 'FSRPTH14': 0.846650439}, '19091': {'FFRPTH14': 0.41493775899999996, 'FSRPTH14': 0.9336099590000001}, '19093': {'FFRPTH14': 0.284010224, 'FSRPTH14': 0.7100255609999999}, '19095': {'FFRPTH14': 0.427480916, 'FSRPTH14': 0.854961832}, '19097': {'FFRPTH14': 0.256647161, 'FSRPTH14': 1.3858946719999998}, '19099': {'FFRPTH14': 0.51529616, 'FSRPTH14': 0.406812758}, '19101': {'FFRPTH14': 0.634920635, 'FSRPTH14': 1.0389610390000001}, '19103': {'FFRPTH14': 0.744973188, 'FSRPTH14': 0.9909549009999999}, '19105': {'FFRPTH14': 0.24445096300000002, 'FSRPTH14': 1.075584238}, '19107': {'FFRPTH14': 0.390968625, 'FSRPTH14': 0.586452937}, '19109': {'FFRPTH14': 0.656943897, 'FSRPTH14': 1.051110235}, '19111': {'FFRPTH14': 0.5384571779999999, 'FSRPTH14': 0.9352150990000001}, '19113': {'FFRPTH14': 0.7347842259999999, 'FSRPTH14': 0.84500186}, '19115': {'FFRPTH14': 0.26879311899999997, 'FSRPTH14': 0.627183944}, '19117': {'FFRPTH14': 0.344787955, 'FSRPTH14': 0.8045052290000001}, '19119': {'FFRPTH14': 0.427972267, 'FSRPTH14': 0.599161174}, '19121': {'FFRPTH14': 0.19219681, 'FSRPTH14': 0.640656032}, '19123': {'FFRPTH14': 0.402324542, 'FSRPTH14': 0.581135449}, '19125': {'FFRPTH14': 0.569459014, 'FSRPTH14': 0.719316649}, '19127': {'FFRPTH14': 0.538344834, 'FSRPTH14': 0.513874615}, '19129': {'FFRPTH14': 0.134852673, 'FSRPTH14': 0.40455802}, '19131': {'FFRPTH14': 0.37109193799999995, 'FSRPTH14': 0.927729845}, '19133': {'FFRPTH14': 0.555802579, 'FSRPTH14': 0.77812361}, '19135': {'FFRPTH14': 0.374953131, 'FSRPTH14': 1.24984377}, '19137': {'FFRPTH14': 0.575760484, 'FSRPTH14': 1.055560887}, '19139': {'FFRPTH14': 0.7924853740000001, 'FSRPTH14': 0.675943407}, '19141': {'FFRPTH14': 0.711439954, 'FSRPTH14': 0.9248719409999999}, '19143': {'FFRPTH14': 0.321646832, 'FSRPTH14': 0.643293664}, '19145': {'FFRPTH14': 0.5162622610000001, 'FSRPTH14': 0.903458957}, '19147': {'FFRPTH14': 0.7693153090000001, 'FSRPTH14': 0.989119683}, '19149': {'FFRPTH14': 0.482431455, 'FSRPTH14': 0.7638498029999999}, '19151': {'FFRPTH14': 0.420285794, 'FSRPTH14': 0.560381059}, '19153': {'FFRPTH14': 0.726304848, 'FSRPTH14': 0.7958909409999999}, '19155': {'FFRPTH14': 0.751653638, 'FSRPTH14': 0.590585001}, '19157': {'FFRPTH14': 0.482108421, 'FSRPTH14': 1.232054853}, '19159': {'FFRPTH14': 0.593941794, 'FSRPTH14': 0.98990299}, '19161': {'FFRPTH14': 0.19930244100000002, 'FSRPTH14': 1.5944195319999999}, '19163': {'FFRPTH14': 0.7410130290000001, 'FSRPTH14': 0.7235087840000001}, '19165': {'FFRPTH14': 0.502176096, 'FSRPTH14': 0.585872112}, '19167': {'FFRPTH14': 0.663187336, 'FSRPTH14': 0.836192728}, '19169': {'FFRPTH14': 0.7015828129999999, 'FSRPTH14': 0.7334729409999999}, '19171': {'FFRPTH14': 0.343819838, 'FSRPTH14': 0.8595495959999999}, '19173': {'FFRPTH14': 0.0, 'FSRPTH14': 0.976721472}, '19175': {'FFRPTH14': 0.399488655, 'FSRPTH14': 0.9587727709999999}, '19177': {'FFRPTH14': 0.26780932, 'FSRPTH14': 0.53561864}, '19179': {'FFRPTH14': 0.653186414, 'FSRPTH14': 0.624787004}, '19181': {'FFRPTH14': 0.43790141, 'FSRPTH14': 0.375344065}, '19183': {'FFRPTH14': 0.453103761, 'FSRPTH14': 0.815586769}, '19185': {'FFRPTH14': 0.156372166, 'FSRPTH14': 0.938232995}, '19187': {'FFRPTH14': 0.73061832, 'FSRPTH14': 0.649438506}, '19189': {'FFRPTH14': 0.378823752, 'FSRPTH14': 1.136471257}, '19191': {'FFRPTH14': 0.38520801200000004, 'FSRPTH14': 0.9148690290000001}, '19193': {'FFRPTH14': 0.9289045770000001, 'FSRPTH14': 0.77245749}, '19195': {'FFRPTH14': 0.393494229, 'FSRPTH14': 0.524658972}, '19197': {'FFRPTH14': 0.62305296, 'FSRPTH14': 1.168224299}, '20001': {'FFRPTH14': 0.387326671, 'FSRPTH14': 0.6971880079999999}, '20003': {'FFRPTH14': 0.507421033, 'FSRPTH14': 1.014842065}, '20005': {'FFRPTH14': 0.7267001759999999, 'FSRPTH14': 0.7267001759999999}, '20007': {'FFRPTH14': 0.816826629, 'FSRPTH14': 1.021033286}, '20009': {'FFRPTH14': 0.69381048, 'FSRPTH14': 0.839875844}, '20011': {'FFRPTH14': 0.609260764, 'FSRPTH14': 0.7446520440000001}, '20013': {'FFRPTH14': 0.50942435, 'FSRPTH14': 1.120733571}, '20015': {'FFRPTH14': 0.7700786690000001, 'FSRPTH14': 0.483186616}, '20017': {'FFRPTH14': 0.0, 'FSRPTH14': 1.114413076}, '20019': {'FFRPTH14': 0.0, 'FSRPTH14': 1.43636886}, '20021': {'FFRPTH14': 0.529176889, 'FSRPTH14': 0.7216048490000001}, '20023': {'FFRPTH14': 0.37133308600000003, 'FSRPTH14': 1.485332343}, '20025': {'FFRPTH14': 0.46641791, 'FSRPTH14': 1.399253731}, '20027': {'FFRPTH14': 0.480942648, 'FSRPTH14': 1.322592281}, '20029': {'FFRPTH14': 0.532765051, 'FSRPTH14': 0.8524240809999999}, '20031': {'FFRPTH14': 0.711490573, 'FSRPTH14': 0.948654097}, '20033': {'FFRPTH14': 0.511770727, 'FSRPTH14': 1.53531218}, '20035': {'FFRPTH14': 0.444901705, 'FSRPTH14': 0.528320774}, '20037': {'FFRPTH14': 0.509035378, 'FSRPTH14': 0.9671672179999999}, '20039': {'FFRPTH14': 0.343878955, 'FSRPTH14': 0.6877579090000001}, '20041': {'FFRPTH14': 0.567185728, 'FSRPTH14': 0.773435083}, '20043': {'FFRPTH14': 0.127000254, 'FSRPTH14': 0.63500127}, '20045': {'FFRPTH14': 0.849165845, 'FSRPTH14': 0.8920530090000001}, '20047': {'FFRPTH14': 0.330033003, 'FSRPTH14': 0.99009901}, '20049': {'FFRPTH14': 0.0, 'FSRPTH14': 2.227171492}, '20051': {'FFRPTH14': 1.102953848, 'FSRPTH14': 0.965084617}, '20053': {'FFRPTH14': 0.46933667100000004, 'FSRPTH14': 0.9386733420000001}, '20055': {'FFRPTH14': 0.618545611, 'FSRPTH14': 0.6992254729999999}, '20057': {'FFRPTH14': 0.45983618299999995, 'FSRPTH14': 0.8047133209999999}, '20059': {'FFRPTH14': 0.585685838, 'FSRPTH14': 0.819960173}, '20061': {'FFRPTH14': 0.7081960070000001, 'FSRPTH14': 0.6264810829999999}, '20063': {'FFRPTH14': 1.100110011, 'FSRPTH14': 1.100110011}, '20065': {'FFRPTH14': 0.779423227, 'FSRPTH14': 0.779423227}, '20067': {'FFRPTH14': 0.639713408, 'FSRPTH14': 0.76765609}, '20069': {'FFRPTH14': 0.164419599, 'FSRPTH14': 0.493258796}, '20071': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '20073': {'FFRPTH14': 0.15802781300000002, 'FSRPTH14': 1.10619469}, '20075': {'FFRPTH14': 0.384172109, 'FSRPTH14': 0.768344218}, '20077': {'FFRPTH14': 0.515641114, 'FSRPTH14': 1.203162599}, '20079': {'FFRPTH14': 0.6892590470000001, 'FSRPTH14': 0.545663412}, '20081': {'FFRPTH14': 0.24354603, 'FSRPTH14': 1.217730151}, '20083': {'FFRPTH14': 0.5219206679999999, 'FSRPTH14': 0.5219206679999999}, '20085': {'FFRPTH14': 0.369303494, 'FSRPTH14': 0.812467686}, '20087': {'FFRPTH14': 0.21214532, 'FSRPTH14': 0.477326969}, '20089': {'FFRPTH14': 0.657246139, 'FSRPTH14': 0.985869208}, '20091': {'FFRPTH14': 0.722654073, 'FSRPTH14': 0.7783767970000001}, '20093': {'FFRPTH14': 0.510855683, 'FSRPTH14': 0.766283525}, '20095': {'FFRPTH14': 0.38971161299999996, 'FSRPTH14': 0.519615485}, '20097': {'FFRPTH14': 0.0, 'FSRPTH14': 0.39793076}, '20099': {'FFRPTH14': 0.477099237, 'FSRPTH14': 0.90648855}, '20101': {'FFRPTH14': 0.592768228, 'FSRPTH14': 0.592768228}, '20103': {'FFRPTH14': 0.444179347, 'FSRPTH14': 0.431488508}, '20105': {'FFRPTH14': 0.0, 'FSRPTH14': 0.947268709}, '20107': {'FFRPTH14': 0.21048200399999997, 'FSRPTH14': 0.631446011}, '20109': {'FFRPTH14': 0.357909807, 'FSRPTH14': 1.789549034}, '20111': {'FFRPTH14': 0.602191979, 'FSRPTH14': 0.903287968}, '20113': {'FFRPTH14': 0.615574023, 'FSRPTH14': 0.6839711359999999}, '20115': {'FFRPTH14': 0.327653997, 'FSRPTH14': 1.064875491}, '20117': {'FFRPTH14': 0.49970018, 'FSRPTH14': 0.8994603240000001}, '20119': {'FFRPTH14': 0.459031444, 'FSRPTH14': 1.147578609}, '20121': {'FFRPTH14': 0.457010542, 'FSRPTH14': 0.700749497}, '20123': {'FFRPTH14': 0.636537237, 'FSRPTH14': 1.113940165}, '20125': {'FFRPTH14': 0.8219580209999999, 'FSRPTH14': 0.7338910909999999}, '20127': {'FFRPTH14': 0.877500878, 'FSRPTH14': 1.053001053}, '20129': {'FFRPTH14': 0.964630225, 'FSRPTH14': 0.643086817}, '20131': {'FFRPTH14': 0.295624754, 'FSRPTH14': 1.281040599}, '20133': {'FFRPTH14': 0.36549707600000003, 'FSRPTH14': 0.791910331}, '20135': {'FFRPTH14': 0.644122383, 'FSRPTH14': 0.966183575}, '20137': {'FFRPTH14': 0.35971223, 'FSRPTH14': 0.71942446}, '20139': {'FFRPTH14': 0.251004016, 'FSRPTH14': 0.815763052}, '20141': {'FFRPTH14': 0.266240682, 'FSRPTH14': 0.5324813629999999}, '20143': {'FFRPTH14': 0.164880462, 'FSRPTH14': 0.8244023079999999}, '20145': {'FFRPTH14': 0.43377675, 'FSRPTH14': 0.5783689989999999}, '20147': {'FFRPTH14': 0.9036688959999999, 'FSRPTH14': 1.084402675}, '20149': {'FFRPTH14': 0.480412281, 'FSRPTH14': 0.655107656}, '20151': {'FFRPTH14': 0.913705584, 'FSRPTH14': 1.218274112}, '20153': {'FFRPTH14': 0.0, 'FSRPTH14': 0.773993808}, '20155': {'FFRPTH14': 0.8935009559999999, 'FSRPTH14': 0.501614572}, '20157': {'FFRPTH14': 0.416406413, 'FSRPTH14': 0.832812825}, '20159': {'FFRPTH14': 0.698951573, 'FSRPTH14': 0.698951573}, '20161': {'FFRPTH14': 0.611750938, 'FSRPTH14': 0.6383488039999999}, '20163': {'FFRPTH14': 0.581959263, 'FSRPTH14': 1.163918526}, '20165': {'FFRPTH14': 0.6255864870000001, 'FSRPTH14': 1.251172975}, '20167': {'FFRPTH14': 0.71880391, 'FSRPTH14': 0.575043128}, '20169': {'FFRPTH14': 0.986458614, 'FSRPTH14': 0.520132724}, '20171': {'FFRPTH14': 0.984251969, 'FSRPTH14': 1.181102362}, '20173': {'FFRPTH14': 0.8608439809999999, 'FSRPTH14': 0.6937852170000001}, '20175': {'FFRPTH14': 0.46878329399999996, 'FSRPTH14': 0.7244832729999999}, '20177': {'FFRPTH14': 0.7959373559999999, 'FSRPTH14': 0.538098494}, '20179': {'FFRPTH14': 0.393855849, 'FSRPTH14': 0.787711698}, '20181': {'FFRPTH14': 1.47299509, 'FSRPTH14': 1.309328969}, '20183': {'FFRPTH14': 0.7959670999999999, 'FSRPTH14': 1.061289467}, '20185': {'FFRPTH14': 0.0, 'FSRPTH14': 1.396323016}, '20187': {'FFRPTH14': 0.47370914299999994, 'FSRPTH14': 0.947418285}, '20189': {'FFRPTH14': 0.689536287, 'FSRPTH14': 1.206688502}, '20191': {'FFRPTH14': 0.467528052, 'FSRPTH14': 0.8500510029999999}, '20193': {'FFRPTH14': 0.7603599040000001, 'FSRPTH14': 0.7603599040000001}, '20195': {'FFRPTH14': 1.033769814, 'FSRPTH14': 1.378359752}, '20197': {'FFRPTH14': 0.28481914, 'FSRPTH14': 0.56963828}, '20199': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '20201': {'FFRPTH14': 0.17863522699999998, 'FSRPTH14': 1.429081815}, '20203': {'FFRPTH14': 0.459558824, 'FSRPTH14': 1.378676471}, '20205': {'FFRPTH14': 0.553832521, 'FSRPTH14': 1.107665042}, '20207': {'FFRPTH14': 0.6335128289999999, 'FSRPTH14': 1.267025657}, '20209': {'FFRPTH14': 0.64342102, 'FSRPTH14': 0.501125987}, '21001': {'FFRPTH14': 0.312434909, 'FSRPTH14': 0.572797334}, '21003': {'FFRPTH14': 0.441522763, 'FSRPTH14': 0.294348509}, '21005': {'FFRPTH14': 0.868055556, 'FSRPTH14': 0.36549707600000003}, '21007': {'FFRPTH14': 0.485436893, 'FSRPTH14': 0.849514563}, '21009': {'FFRPTH14': 0.8575136740000001, 'FSRPTH14': 0.8343376290000001}, '21011': {'FFRPTH14': 0.409634606, 'FSRPTH14': 0.327707685}, '21013': {'FFRPTH14': 0.863993088, 'FSRPTH14': 0.395996832}, '21015': {'FFRPTH14': 0.949269458, 'FSRPTH14': 0.806879039}, '21017': {'FFRPTH14': 0.650911276, 'FSRPTH14': 0.6008411779999999}, '21019': {'FFRPTH14': 1.249180865, 'FSRPTH14': 0.59387287}, '21021': {'FFRPTH14': 0.7742543590000001, 'FSRPTH14': 0.67326466}, '21023': {'FFRPTH14': 0.475850583, 'FSRPTH14': 0.7137758740000001}, '21025': {'FFRPTH14': 0.372883884, 'FSRPTH14': 0.298307107}, '21027': {'FFRPTH14': 0.15084473, 'FSRPTH14': 0.45253419100000003}, '21029': {'FFRPTH14': 0.500288628, 'FSRPTH14': 0.256558271}, '21031': {'FFRPTH14': 0.46601941700000005, 'FSRPTH14': 0.310679612}, '21033': {'FFRPTH14': 0.785854617, 'FSRPTH14': 0.785854617}, '21035': {'FFRPTH14': 0.679170367, 'FSRPTH14': 1.044877488}, '21037': {'FFRPTH14': 0.773142552, 'FSRPTH14': 0.8166998790000001}, '21039': {'FFRPTH14': 0.40176777799999996, 'FSRPTH14': 0.6026516670000001}, '21041': {'FFRPTH14': 1.202034212, 'FSRPTH14': 0.647249191}, '21043': {'FFRPTH14': 0.661205598, 'FSRPTH14': 0.514271021}, '21045': {'FFRPTH14': 0.188786105, 'FSRPTH14': 0.377572211}, '21047': {'FFRPTH14': 0.579124579, 'FSRPTH14': 0.430976431}, '21049': {'FFRPTH14': 0.894904637, 'FSRPTH14': 0.391520779}, '21051': {'FFRPTH14': 0.520168345, 'FSRPTH14': 0.283728188}, '21053': {'FFRPTH14': 0.5902606979999999, 'FSRPTH14': 0.5902606979999999}, '21055': {'FFRPTH14': 0.650477016, 'FSRPTH14': 0.325238508}, '21057': {'FFRPTH14': 0.593031875, 'FSRPTH14': 0.593031875}, '21059': {'FFRPTH14': 0.783515645, 'FSRPTH14': 0.6817603659999999}, '21061': {'FFRPTH14': 0.24972946, 'FSRPTH14': 0.49945892}, '21063': {'FFRPTH14': 0.260688217, 'FSRPTH14': 0.13034410800000001}, '21065': {'FFRPTH14': 0.553748183, 'FSRPTH14': 0.41531113700000005}, '21067': {'FFRPTH14': 1.000653159, 'FSRPTH14': 0.88803946}, '21069': {'FFRPTH14': 0.343760743, 'FSRPTH14': 0.137504297}, '21071': {'FFRPTH14': 0.6822714390000001, 'FSRPTH14': 0.36737692899999996}, '21073': {'FFRPTH14': 0.942261427, 'FSRPTH14': 0.6816359259999999}, '21075': {'FFRPTH14': 0.478850758, 'FSRPTH14': 0.957701516}, '21077': {'FFRPTH14': 0.34928396799999994, 'FSRPTH14': 0.34928396799999994}, '21079': {'FFRPTH14': 0.177957053, 'FSRPTH14': 0.415233124}, '21081': {'FFRPTH14': 0.603015075, 'FSRPTH14': 0.522613065}, '21083': {'FFRPTH14': 0.47849433799999996, 'FSRPTH14': 0.664575469}, '21085': {'FFRPTH14': 0.649003589, 'FSRPTH14': 0.343590135}, '21087': {'FFRPTH14': 0.633885719, 'FSRPTH14': 0.271665308}, '21089': {'FFRPTH14': 0.5783849289999999, 'FSRPTH14': 0.22033711600000003}, '21091': {'FFRPTH14': 0.342739632, 'FSRPTH14': 0.114246544}, '21093': {'FFRPTH14': 0.609609665, 'FSRPTH14': 0.600373155}, '21095': {'FFRPTH14': 0.639136456, 'FSRPTH14': 0.213045485}, '21097': {'FFRPTH14': 0.537865749, 'FSRPTH14': 0.537865749}, '21099': {'FFRPTH14': 0.32263268300000003, 'FSRPTH14': 0.37640479600000004}, '21101': {'FFRPTH14': 0.753222717, 'FSRPTH14': 0.602578174}, '21103': {'FFRPTH14': 0.513742615, 'FSRPTH14': 0.385306961}, '21105': {'FFRPTH14': 0.21123785399999997, 'FSRPTH14': 0.0}, '21107': {'FFRPTH14': 0.625323443, 'FSRPTH14': 0.5821976879999999}, '21109': {'FFRPTH14': 0.301000828, 'FSRPTH14': 0.075250207}, '21111': {'FFRPTH14': 0.8657598559999999, 'FSRPTH14': 0.7473428540000001}, '21113': {'FFRPTH14': 0.688773, 'FSRPTH14': 0.5510184}, '21115': {'FFRPTH14': 0.9027598659999999, 'FSRPTH14': 0.472874215}, '21117': {'FFRPTH14': 0.597819788, 'FSRPTH14': 0.689322817}, '21119': {'FFRPTH14': 0.31462371, 'FSRPTH14': 0.125849484}, '21121': {'FFRPTH14': 0.597521857, 'FSRPTH14': 0.34593370700000003}, '21123': {'FFRPTH14': 0.564174894, 'FSRPTH14': 0.352609309}, '21125': {'FFRPTH14': 0.649837541, 'FSRPTH14': 0.499875031}, '21127': {'FFRPTH14': 0.506200962, 'FSRPTH14': 0.316375601}, '21129': {'FFRPTH14': 0.52673163, 'FSRPTH14': 0.263365815}, '21131': {'FFRPTH14': 0.18318373300000002, 'FSRPTH14': 0.18318373300000002}, '21133': {'FFRPTH14': 0.642150777, 'FSRPTH14': 0.214050259}, '21135': {'FFRPTH14': 0.360230548, 'FSRPTH14': 0.216138329}, '21137': {'FFRPTH14': 0.36817345100000004, 'FSRPTH14': 0.20454080600000002}, '21139': {'FFRPTH14': 0.427396089, 'FSRPTH14': 0.534245112}, '21141': {'FFRPTH14': 0.521085346, 'FSRPTH14': 0.669966874}, '21143': {'FFRPTH14': 0.355871886, 'FSRPTH14': 0.8303677340000001}, '21145': {'FFRPTH14': 1.0717129029999999, 'FSRPTH14': 1.102333272}, '21147': {'FFRPTH14': 0.33588982799999995, 'FSRPTH14': 0.223926552}, '21149': {'FFRPTH14': 0.844059928, 'FSRPTH14': 0.633044946}, '21151': {'FFRPTH14': 0.721318983, 'FSRPTH14': 0.515227845}, '21153': {'FFRPTH14': 0.619530705, 'FSRPTH14': 0.154882676}, '21155': {'FFRPTH14': 0.6997550859999999, 'FSRPTH14': 0.499825061}, '21157': {'FFRPTH14': 0.67844797, 'FSRPTH14': 0.807676154}, '21159': {'FFRPTH14': 0.638111191, 'FSRPTH14': 0.159527798}, '21161': {'FFRPTH14': 0.7573109640000001, 'FSRPTH14': 0.9320750320000001}, '21163': {'FFRPTH14': 0.377500944, 'FSRPTH14': 0.274546141}, '21165': {'FFRPTH14': 0.159058374, 'FSRPTH14': 0.159058374}, '21167': {'FFRPTH14': 0.562878184, 'FSRPTH14': 0.5159716679999999}, '21169': {'FFRPTH14': 0.20020020000000002, 'FSRPTH14': 0.7007007009999999}, '21171': {'FFRPTH14': 1.027653214, 'FSRPTH14': 0.653961136}, '21173': {'FFRPTH14': 0.618766834, 'FSRPTH14': 0.40037854}, '21175': {'FFRPTH14': 0.30068405600000003, 'FSRPTH14': 0.225513042}, '21177': {'FFRPTH14': 0.6729259459999999, 'FSRPTH14': 0.544749575}, '21179': {'FFRPTH14': 0.535570829, 'FSRPTH14': 0.513255378}, '21181': {'FFRPTH14': 0.0, 'FSRPTH14': 0.710126402}, '21183': {'FFRPTH14': 0.5004796260000001, 'FSRPTH14': 0.5004796260000001}, '21185': {'FFRPTH14': 0.519766892, 'FSRPTH14': 0.33076075}, '21187': {'FFRPTH14': 0.469704086, 'FSRPTH14': 0.281822452}, '21189': {'FFRPTH14': 0.221827862, 'FSRPTH14': 0.0}, '21191': {'FFRPTH14': 0.413992962, 'FSRPTH14': 0.344994135}, '21193': {'FFRPTH14': 0.760952277, 'FSRPTH14': 0.688480632}, '21195': {'FFRPTH14': 0.7456293429999999, 'FSRPTH14': 0.39661135299999994}, '21197': {'FFRPTH14': 0.965095705, 'FSRPTH14': 0.24127392600000003}, '21199': {'FFRPTH14': 0.673717195, 'FSRPTH14': 0.53270662}, '21201': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '21203': {'FFRPTH14': 0.534886485, 'FSRPTH14': 0.475454654}, '21205': {'FFRPTH14': 0.845487212, 'FSRPTH14': 0.422743606}, '21207': {'FFRPTH14': 0.506357601, 'FSRPTH14': 0.7314054240000001}, '21209': {'FFRPTH14': 0.623976289, 'FSRPTH14': 0.623976289}, '21211': {'FFRPTH14': 0.623955432, 'FSRPTH14': 0.512534819}, '21213': {'FFRPTH14': 1.009761023, 'FSRPTH14': 0.673174015}, '21215': {'FFRPTH14': 0.5659950189999999, 'FSRPTH14': 0.0565995}, '21217': {'FFRPTH14': 0.752266698, 'FSRPTH14': 0.435522825}, '21219': {'FFRPTH14': 0.399361022, 'FSRPTH14': 0.399361022}, '21221': {'FFRPTH14': 0.42426813700000005, 'FSRPTH14': 0.56569085}, '21223': {'FFRPTH14': 0.227634874, 'FSRPTH14': 0.113817437}, '21225': {'FFRPTH14': 0.395647873, 'FSRPTH14': 0.659413122}, '21227': {'FFRPTH14': 0.7637390000000001, 'FSRPTH14': 0.7637390000000001}, '21229': {'FFRPTH14': 0.585333222, 'FSRPTH14': 0.250857095}, '21231': {'FFRPTH14': 0.585765889, 'FSRPTH14': 0.341696769}, '21233': {'FFRPTH14': 0.37775763100000004, 'FSRPTH14': 0.528860683}, '21235': {'FFRPTH14': 0.788665747, 'FSRPTH14': 0.506999409}, '21237': {'FFRPTH14': 0.27723870300000003, 'FSRPTH14': 0.27723870300000003}, '21239': {'FFRPTH14': 0.50854751, 'FSRPTH14': 0.782380785}, '22001': {'FFRPTH14': 0.44810037399999997, 'FSRPTH14': 0.320071696}, '22003': {'FFRPTH14': 0.38890833399999997, 'FSRPTH14': 0.350017501}, '22005': {'FFRPTH14': 0.692136137, 'FSRPTH14': 0.367430295}, '22007': {'FFRPTH14': 0.173656334, 'FSRPTH14': 0.173656334}, '22009': {'FFRPTH14': 0.388868635, 'FSRPTH14': 0.267347187}, '22011': {'FFRPTH14': 0.49726504200000005, 'FSRPTH14': 0.303884192}, '22013': {'FFRPTH14': 0.648181491, 'FSRPTH14': 0.432120994}, '22015': {'FFRPTH14': 0.8715537640000001, 'FSRPTH14': 0.639672488}, '22017': {'FFRPTH14': 0.823426483, 'FSRPTH14': 0.5344354579999999}, '22019': {'FFRPTH14': 0.836697024, 'FSRPTH14': 0.44623841299999994}, '22021': {'FFRPTH14': 0.404285426, 'FSRPTH14': 0.404285426}, '22023': {'FFRPTH14': 0.149723012, 'FSRPTH14': 0.149723012}, '22025': {'FFRPTH14': 0.492562309, 'FSRPTH14': 0.197024924}, '22027': {'FFRPTH14': 0.548379235, 'FSRPTH14': 0.243724104}, '22029': {'FFRPTH14': 0.68406137, 'FSRPTH14': 0.43975373799999995}, '22031': {'FFRPTH14': 0.29474615, 'FSRPTH14': 0.442119225}, '22033': {'FFRPTH14': 0.8586635340000001, 'FSRPTH14': 0.645679106}, '22035': {'FFRPTH14': 0.6678242289999999, 'FSRPTH14': 0.400694537}, '22037': {'FFRPTH14': 0.555191036, 'FSRPTH14': 0.151415737}, '22039': {'FFRPTH14': 0.296735905, 'FSRPTH14': 0.267062315}, '22041': {'FFRPTH14': 0.538134142, 'FSRPTH14': 0.24460642800000001}, '22043': {'FFRPTH14': 0.089349535, 'FSRPTH14': 0.0}, '22045': {'FFRPTH14': 0.5682356279999999, 'FSRPTH14': 0.311176654}, '22047': {'FFRPTH14': 0.360068413, 'FSRPTH14': 0.39007411399999997}, '22049': {'FFRPTH14': 0.562711017, 'FSRPTH14': 0.250093785}, '22051': {'FFRPTH14': 0.8560622059999999, 'FSRPTH14': 0.794095236}, '22053': {'FFRPTH14': 0.57184611, 'FSRPTH14': 0.285923055}, '22055': {'FFRPTH14': 0.9463427879999999, 'FSRPTH14': 0.836006858}, '22057': {'FFRPTH14': 0.520301979, 'FSRPTH14': 0.39787798399999996}, '22059': {'FFRPTH14': 0.6065098729999999, 'FSRPTH14': 0.202169958}, '22061': {'FFRPTH14': 0.840036122, 'FSRPTH14': 0.609026188}, '22063': {'FFRPTH14': 0.530382833, 'FSRPTH14': 0.324122843}, '22065': {'FFRPTH14': 0.5910664529999999, 'FSRPTH14': 0.337752259}, '22067': {'FFRPTH14': 0.48579970100000003, 'FSRPTH14': 0.26158445399999997}, '22069': {'FFRPTH14': 0.434049941, 'FSRPTH14': 0.663841087}, '22071': {'FFRPTH14': 0.788405495, 'FSRPTH14': 1.2359492090000002}, '22073': {'FFRPTH14': 0.72924996, 'FSRPTH14': 0.652486806}, '22075': {'FFRPTH14': 0.554441933, 'FSRPTH14': 0.81033821}, '22077': {'FFRPTH14': 0.446309024, 'FSRPTH14': 0.446309024}, '22079': {'FFRPTH14': 0.762333192, 'FSRPTH14': 0.46796691}, '22081': {'FFRPTH14': 0.5767677929999999, 'FSRPTH14': 0.346060676}, '22083': {'FFRPTH14': 0.38572806200000004, 'FSRPTH14': 0.38572806200000004}, '22085': {'FFRPTH14': 0.413240217, 'FSRPTH14': 0.24794413}, '22087': {'FFRPTH14': 0.720574658, 'FSRPTH14': 0.6755387420000001}, '22089': {'FFRPTH14': 0.587733434, 'FSRPTH14': 0.417101147}, '22091': {'FFRPTH14': 0.094170826, 'FSRPTH14': 0.188341652}, '22093': {'FFRPTH14': 0.508364914, 'FSRPTH14': 0.36971993700000005}, '22095': {'FFRPTH14': 0.708652417, 'FSRPTH14': 0.29717682}, '22097': {'FFRPTH14': 0.47784587100000003, 'FSRPTH14': 0.238922935}, '22099': {'FFRPTH14': 0.41264184600000003, 'FSRPTH14': 0.468911188}, '22101': {'FFRPTH14': 0.639554569, 'FSRPTH14': 0.5455024270000001}, '22103': {'FFRPTH14': 0.764759243, 'FSRPTH14': 0.866455951}, '22105': {'FFRPTH14': 0.669033208, 'FSRPTH14': 0.629678313}, '22107': {'FFRPTH14': 0.0, 'FSRPTH14': 0.621118012}, '22109': {'FFRPTH14': 0.723563462, 'FSRPTH14': 0.626500071}, '22111': {'FFRPTH14': 0.266205244, 'FSRPTH14': 0.17747016300000001}, '22113': {'FFRPTH14': 0.335480408, 'FSRPTH14': 0.385802469}, '22115': {'FFRPTH14': 0.422005678, 'FSRPTH14': 0.30691322}, '22117': {'FFRPTH14': 0.626539342, 'FSRPTH14': 0.324072074}, '22119': {'FFRPTH14': 0.793394987, 'FSRPTH14': 0.39669749299999996}, '22121': {'FFRPTH14': 0.797289217, 'FSRPTH14': 0.5581024520000001}, '22123': {'FFRPTH14': 0.780911063, 'FSRPTH14': 0.0}, '22125': {'FFRPTH14': 0.259639102, 'FSRPTH14': 0.5192782029999999}, '22127': {'FFRPTH14': 0.542630401, 'FSRPTH14': 0.33914400100000003}, '23001': {'FFRPTH14': 0.7073715559999999, 'FSRPTH14': 0.716679077}, '23003': {'FFRPTH14': 0.719973505, 'FSRPTH14': 0.8495687359999999}, '23005': {'FFRPTH14': 0.847819817, 'FSRPTH14': 1.344697825}, '23007': {'FFRPTH14': 0.495114867, 'FSRPTH14': 1.353313969}, '23009': {'FFRPTH14': 0.84101214, 'FSRPTH14': 1.992833114}, '23011': {'FFRPTH14': 0.668802431, 'FSRPTH14': 0.792654733}, '23013': {'FFRPTH14': 0.7561246090000001, 'FSRPTH14': 1.663474141}, '23015': {'FFRPTH14': 0.7316359379999999, 'FSRPTH14': 1.5218027509999998}, '23017': {'FFRPTH14': 0.454243684, 'FSRPTH14': 0.908487369}, '23019': {'FFRPTH14': 0.606202824, 'FSRPTH14': 0.769160572}, '23021': {'FFRPTH14': 0.41113591, 'FSRPTH14': 1.233407729}, '23023': {'FFRPTH14': 0.570694821, 'FSRPTH14': 0.82750749}, '23025': {'FFRPTH14': 0.429998241, 'FSRPTH14': 0.625451987}, '23027': {'FFRPTH14': 0.512150777, 'FSRPTH14': 0.921871399}, '23029': {'FFRPTH14': 0.597334004, 'FSRPTH14': 0.88028169}, '23031': {'FFRPTH14': 0.782223108, 'FSRPTH14': 1.220666633}, '24001': {'FFRPTH14': 0.84987389, 'FSRPTH14': 0.671674526}, '24003': {'FFRPTH14': 0.810521787, 'FSRPTH14': 0.6909073379999999}, '24005': {'FFRPTH14': 0.89367234, 'FSRPTH14': 0.505487197}, '24009': {'FFRPTH14': 0.606976924, 'FSRPTH14': 0.618012868}, '24011': {'FFRPTH14': 0.49173274299999997, 'FSRPTH14': 0.33806626100000003}, '24013': {'FFRPTH14': 0.679258774, 'FSRPTH14': 0.60179944}, '24015': {'FFRPTH14': 0.5371985579999999, 'FSRPTH14': 0.566500298}, '24017': {'FFRPTH14': 0.7819214590000001, 'FSRPTH14': 0.432964775}, '24019': {'FFRPTH14': 0.583215667, 'FSRPTH14': 0.7366934740000001}, '24021': {'FFRPTH14': 0.705858213, 'FSRPTH14': 0.6566122910000001}, '24023': {'FFRPTH14': 0.84234644, 'FSRPTH14': 0.943428013}, '24025': {'FFRPTH14': 0.659722916, 'FSRPTH14': 0.483796805}, '24027': {'FFRPTH14': 0.788918922, 'FSRPTH14': 0.572289546}, '24029': {'FFRPTH14': 0.706357215, 'FSRPTH14': 1.3622603430000002}, '24031': {'FFRPTH14': 0.770539387, 'FSRPTH14': 0.608473798}, '24033': {'FFRPTH14': 0.832568579, 'FSRPTH14': 0.326172285}, '24035': {'FFRPTH14': 0.676174084, 'FSRPTH14': 0.6147037129999999}, '24037': {'FFRPTH14': 0.625101919, 'FSRPTH14': 0.534507438}, '24039': {'FFRPTH14': 0.42538381200000003, 'FSRPTH14': 0.309370045}, '24041': {'FFRPTH14': 0.956353107, 'FSRPTH14': 1.567356481}, '24043': {'FFRPTH14': 0.735426848, 'FSRPTH14': 0.615084273}, '24045': {'FFRPTH14': 0.807571475, 'FSRPTH14': 0.6696934179999999}, '24047': {'FFRPTH14': 1.60619255, 'FSRPTH14': 3.3865505560000004}, '24510': {'FFRPTH14': 1.075798861, 'FSRPTH14': 0.582858189}, '25001': {'FFRPTH14': 1.005053184, 'FSRPTH14': 1.9868412480000002}, '25003': {'FFRPTH14': 0.916754069, 'FSRPTH14': 1.67035699}, '25005': {'FFRPTH14': 0.696506999, 'FSRPTH14': 0.844469626}, '25007': {'FFRPTH14': 1.382807098, 'FSRPTH14': 3.4570177460000004}, '25009': {'FFRPTH14': 0.7489360820000001, 'FSRPTH14': 0.8074467129999999}, '25011': {'FFRPTH14': 0.49391775600000004, 'FSRPTH14': 0.9172758320000001}, '25013': {'FFRPTH14': 0.6258530720000001, 'FSRPTH14': 0.7155657990000001}, '25015': {'FFRPTH14': 0.615139898, 'FSRPTH14': 1.043873766}, '25017': {'FFRPTH14': 0.772456482, 'FSRPTH14': 0.829769823}, '25019': {'FFRPTH14': 1.565954311, 'FSRPTH14': 4.974207811}, '25021': {'FFRPTH14': 0.680386101, 'FSRPTH14': 0.868178443}, '25023': {'FFRPTH14': 0.603524107, 'FSRPTH14': 0.808643412}, '25025': {'FFRPTH14': 0.970995264, 'FSRPTH14': 1.1964747009999999}, '25027': {'FFRPTH14': 0.7142198590000001, 'FSRPTH14': 0.705614801}, '26001': {'FFRPTH14': 0.382628659, 'FSRPTH14': 0.9565716470000001}, '26003': {'FFRPTH14': 0.528597103, 'FSRPTH14': 1.2686330479999999}, '26005': {'FFRPTH14': 0.47432079899999996, 'FSRPTH14': 0.70269748}, '26007': {'FFRPTH14': 0.724437698, 'FSRPTH14': 0.931419898}, '26009': {'FFRPTH14': 0.55873125, 'FSRPTH14': 1.031503847}, '26011': {'FFRPTH14': 0.911873901, 'FSRPTH14': 0.716472351}, '26013': {'FFRPTH14': 0.808874509, 'FSRPTH14': 0.693321008}, '26015': {'FFRPTH14': 0.320507414, 'FSRPTH14': 0.590408394}, '26017': {'FFRPTH14': 0.7722807709999999, 'FSRPTH14': 0.574501549}, '26019': {'FFRPTH14': 0.742051487, 'FSRPTH14': 1.1986985559999999}, '26021': {'FFRPTH14': 0.6055413479999999, 'FSRPTH14': 0.927637809}, '26023': {'FFRPTH14': 0.52818923, 'FSRPTH14': 0.665977724}, '26025': {'FFRPTH14': 0.6820978959999999, 'FSRPTH14': 0.600542713}, '26027': {'FFRPTH14': 0.271275771, 'FSRPTH14': 0.5619283829999999}, '26029': {'FFRPTH14': 0.65081735, 'FSRPTH14': 1.4547681940000001}, '26031': {'FFRPTH14': 0.467380721, 'FSRPTH14': 1.518987342}, '26033': {'FFRPTH14': 0.574097753, 'FSRPTH14': 0.991623392}, '26035': {'FFRPTH14': 0.48936447899999996, 'FSRPTH14': 0.7177345690000001}, '26037': {'FFRPTH14': 0.47867317, 'FSRPTH14': 0.413987606}, '26039': {'FFRPTH14': 0.7275372859999999, 'FSRPTH14': 0.800291015}, '26041': {'FFRPTH14': 0.71117919, 'FSRPTH14': 0.738532236}, '26043': {'FFRPTH14': 0.7319798129999999, 'FSRPTH14': 0.8090303190000001}, '26045': {'FFRPTH14': 0.699951188, 'FSRPTH14': 0.653901767}, '26047': {'FFRPTH14': 0.843271895, 'FSRPTH14': 1.7166606430000002}, '26049': {'FFRPTH14': 0.714467359, 'FSRPTH14': 0.571573887}, '26051': {'FFRPTH14': 0.354177325, 'FSRPTH14': 0.865766794}, '26053': {'FFRPTH14': 0.6354451289999999, 'FSRPTH14': 1.652157336}, '26055': {'FFRPTH14': 0.826154965, 'FSRPTH14': 1.024432156}, '26057': {'FFRPTH14': 0.552022081, 'FSRPTH14': 0.43201728100000003}, '26059': {'FFRPTH14': 0.414575605, 'FSRPTH14': 0.67641283}, '26061': {'FFRPTH14': 0.630223318, 'FSRPTH14': 1.150842581}, '26063': {'FFRPTH14': 0.966786215, 'FSRPTH14': 1.216279432}, '26065': {'FFRPTH14': 0.794147205, 'FSRPTH14': 0.7484661709999999}, '26067': {'FFRPTH14': 0.40439232299999994, 'FSRPTH14': 0.52882073}, '26069': {'FFRPTH14': 0.7474429579999999, 'FSRPTH14': 1.140833989}, '26071': {'FFRPTH14': 0.790374989, 'FSRPTH14': 1.229472205}, '26073': {'FFRPTH14': 0.538121672, 'FSRPTH14': 0.637249349}, '26075': {'FFRPTH14': 0.532111355, 'FSRPTH14': 0.588452558}, '26077': {'FFRPTH14': 0.7766075, 'FSRPTH14': 0.7341065920000001}, '26079': {'FFRPTH14': 0.459928711, 'FSRPTH14': 0.8048752440000001}, '26081': {'FFRPTH14': 0.637279753, 'FSRPTH14': 0.649993564}, '26083': {'FFRPTH14': 0.0, 'FSRPTH14': 2.706359946}, '26085': {'FFRPTH14': 0.176351292, 'FSRPTH14': 1.146283397}, '26087': {'FFRPTH14': 0.408380883, 'FSRPTH14': 0.555851758}, '26089': {'FFRPTH14': 0.593201004, 'FSRPTH14': 1.688341319}, '26091': {'FFRPTH14': 0.5855805829999999, 'FSRPTH14': 0.656254102}, '26093': {'FFRPTH14': 0.522640574, 'FSRPTH14': 0.554968857}, '26095': {'FFRPTH14': 0.311235605, 'FSRPTH14': 1.244942421}, '26097': {'FFRPTH14': 1.539576164, 'FSRPTH14': 2.89802572}, '26099': {'FFRPTH14': 0.699908849, 'FSRPTH14': 0.705722046}, '26101': {'FFRPTH14': 0.368550369, 'FSRPTH14': 0.900900901}, '26103': {'FFRPTH14': 0.768366925, 'FSRPTH14': 0.797919499}, '26105': {'FFRPTH14': 0.659172911, 'FSRPTH14': 1.075492645}, '26107': {'FFRPTH14': 0.555735655, 'FSRPTH14': 0.625202612}, '26109': {'FFRPTH14': 0.506030193, 'FSRPTH14': 1.096398752}, '26111': {'FFRPTH14': 0.647272466, 'FSRPTH14': 0.5633667760000001}, '26113': {'FFRPTH14': 0.332513134, 'FSRPTH14': 0.46551838799999995}, '26115': {'FFRPTH14': 0.5673323370000001, 'FSRPTH14': 0.533959846}, '26117': {'FFRPTH14': 0.365700475, 'FSRPTH14': 0.540600703}, '26119': {'FFRPTH14': 0.215053763, 'FSRPTH14': 1.612903226}, '26121': {'FFRPTH14': 0.702084204, 'FSRPTH14': 0.591839577}, '26123': {'FFRPTH14': 0.584551148, 'FSRPTH14': 0.563674322}, '26125': {'FFRPTH14': 0.8094562590000001, 'FSRPTH14': 0.8595423740000001}, '26127': {'FFRPTH14': 0.45764845, 'FSRPTH14': 0.762747416}, '26129': {'FFRPTH14': 0.808023195, 'FSRPTH14': 1.045677076}, '26131': {'FFRPTH14': 0.162022035, 'FSRPTH14': 1.458198315}, '26133': {'FFRPTH14': 0.474772325, 'FSRPTH14': 0.561094566}, '26135': {'FFRPTH14': 0.597300203, 'FSRPTH14': 1.0751403659999998}, '26137': {'FFRPTH14': 0.827883103, 'FSRPTH14': 0.952065568}, '26139': {'FFRPTH14': 0.550142603, 'FSRPTH14': 0.463277981}, '26141': {'FFRPTH14': 0.46139649299999996, 'FSRPTH14': 1.153491233}, '26143': {'FFRPTH14': 0.709663953, 'FSRPTH14': 1.252348153}, '26145': {'FFRPTH14': 0.7230324290000001, 'FSRPTH14': 0.564067852}, '26147': {'FFRPTH14': 0.518497233, 'FSRPTH14': 0.662177189}, '26149': {'FFRPTH14': 0.492239031, 'FSRPTH14': 0.623502773}, '26151': {'FFRPTH14': 0.360689639, 'FSRPTH14': 0.673287325}, '26153': {'FFRPTH14': 0.856688288, 'FSRPTH14': 1.468608493}, '26155': {'FFRPTH14': 0.565766759, 'FSRPTH14': 0.49323255899999996}, '26157': {'FFRPTH14': 0.333333333, 'FSRPTH14': 0.40740740700000005}, '26159': {'FFRPTH14': 0.545220016, 'FSRPTH14': 0.771286852}, '26161': {'FFRPTH14': 0.753767436, 'FSRPTH14': 0.815413844}, '26163': {'FFRPTH14': 0.719626655, 'FSRPTH14': 0.61253261}, '26165': {'FFRPTH14': 0.729793833, 'FSRPTH14': 0.8514261390000001}, '27001': {'FFRPTH14': 0.570667681, 'FSRPTH14': 1.268150403}, '27003': {'FFRPTH14': 0.587953104, 'FSRPTH14': 0.427070414}, '27005': {'FFRPTH14': 0.481072792, 'FSRPTH14': 0.7817432879999999}, '27007': {'FFRPTH14': 0.503679047, 'FSRPTH14': 0.700770848}, '27009': {'FFRPTH14': 0.35437655, 'FSRPTH14': 0.68344049}, '27011': {'FFRPTH14': 0.585137507, 'FSRPTH14': 1.36532085}, '27013': {'FFRPTH14': 0.8105834670000001, 'FSRPTH14': 0.841171523}, '27015': {'FFRPTH14': 0.71168749, 'FSRPTH14': 0.869840266}, '27017': {'FFRPTH14': 0.33735346200000005, 'FSRPTH14': 0.618481347}, '27019': {'FFRPTH14': 0.554767922, 'FSRPTH14': 0.462306602}, '27021': {'FFRPTH14': 0.350152316, 'FSRPTH14': 1.29556357}, '27023': {'FFRPTH14': 0.5780346820000001, 'FSRPTH14': 0.660611065}, '27025': {'FFRPTH14': 0.481258677, 'FSRPTH14': 0.481258677}, '27027': {'FFRPTH14': 0.522142088, 'FSRPTH14': 0.342655745}, '27029': {'FFRPTH14': 0.227505403, 'FSRPTH14': 1.251279718}, '27031': {'FFRPTH14': 0.764379897, 'FSRPTH14': 2.484234665}, '27033': {'FFRPTH14': 0.343849394, 'FSRPTH14': 0.515774091}, '27035': {'FFRPTH14': 0.632261124, 'FSRPTH14': 1.1696830790000001}, '27037': {'FFRPTH14': 0.649651297, 'FSRPTH14': 0.562384705}, '27039': {'FFRPTH14': 0.442195254, 'FSRPTH14': 0.294796836}, '27041': {'FFRPTH14': 0.7067137809999999, 'FSRPTH14': 1.1416145690000001}, '27043': {'FFRPTH14': 0.422773393, 'FSRPTH14': 1.056933484}, '27045': {'FFRPTH14': 0.33692722399999997, 'FSRPTH14': 1.540238737}, '27047': {'FFRPTH14': 0.745784695, 'FSRPTH14': 0.778210117}, '27049': {'FFRPTH14': 0.646231394, 'FSRPTH14': 0.7539366259999999}, '27051': {'FFRPTH14': 0.167897918, 'FSRPTH14': 0.5036937539999999}, '27053': {'FFRPTH14': 0.7961625790000001, 'FSRPTH14': 0.753260554}, '27055': {'FFRPTH14': 0.160102466, 'FSRPTH14': 0.907247305}, '27057': {'FFRPTH14': 0.534681379, 'FSRPTH14': 0.9721479609999999}, '27059': {'FFRPTH14': 0.416525655, 'FSRPTH14': 0.468591362}, '27061': {'FFRPTH14': 0.329026739, 'FSRPTH14': 0.636118362}, '27063': {'FFRPTH14': 0.486902327, 'FSRPTH14': 0.8764241890000001}, '27065': {'FFRPTH14': 0.25109855600000003, 'FSRPTH14': 0.941619586}, '27067': {'FFRPTH14': 0.567577155, 'FSRPTH14': 0.638524299}, '27069': {'FFRPTH14': 0.0, 'FSRPTH14': 1.3528748590000002}, '27071': {'FFRPTH14': 0.622277536, 'FSRPTH14': 1.244555072}, '27073': {'FFRPTH14': 0.435350457, 'FSRPTH14': 1.015817733}, '27075': {'FFRPTH14': 0.74906367, 'FSRPTH14': 1.966292135}, '27077': {'FFRPTH14': 0.510464523, 'FSRPTH14': 1.78662583}, '27079': {'FFRPTH14': 0.216060497, 'FSRPTH14': 0.828231905}, '27081': {'FFRPTH14': 0.0, 'FSRPTH14': 1.036627505}, '27083': {'FFRPTH14': 0.9351256579999999, 'FSRPTH14': 0.8571985190000001}, '27085': {'FFRPTH14': 0.668859038, 'FSRPTH14': 0.501644278}, '27087': {'FFRPTH14': 0.544959128, 'FSRPTH14': 0.544959128}, '27089': {'FFRPTH14': 0.212381863, 'FSRPTH14': 0.955718382}, '27091': {'FFRPTH14': 0.692383778, 'FSRPTH14': 0.59347181}, '27093': {'FFRPTH14': 0.47604622, 'FSRPTH14': 0.649153936}, '27095': {'FFRPTH14': 0.46360686100000004, 'FSRPTH14': 1.0044815329999999}, '27097': {'FFRPTH14': 0.548613228, 'FSRPTH14': 0.975312405}, '27099': {'FFRPTH14': 0.584899423, 'FSRPTH14': 0.635760242}, '27101': {'FFRPTH14': 0.354191263, 'FSRPTH14': 1.4167650530000002}, '27103': {'FFRPTH14': 0.5741395460000001, 'FSRPTH14': 0.39283232100000004}, '27105': {'FFRPTH14': 0.41685965700000005, 'FSRPTH14': 0.787401575}, '27107': {'FFRPTH14': 0.15062509400000001, 'FSRPTH14': 0.30125018800000003}, '27109': {'FFRPTH14': 0.698663224, 'FSRPTH14': 0.6653935470000001}, '27111': {'FFRPTH14': 0.624620456, 'FSRPTH14': 0.7460744340000001}, '27113': {'FFRPTH14': 0.42680324399999997, 'FSRPTH14': 1.138141983}, '27115': {'FFRPTH14': 0.378071834, 'FSRPTH14': 0.756143667}, '27117': {'FFRPTH14': 0.75422907, 'FSRPTH14': 0.75422907}, '27119': {'FFRPTH14': 0.567751703, 'FSRPTH14': 0.820085794}, '27121': {'FFRPTH14': 0.36416606, 'FSRPTH14': 0.8193736340000001}, '27123': {'FFRPTH14': 0.696510875, 'FSRPTH14': 0.657085731}, '27125': {'FFRPTH14': 0.24734108300000002, 'FSRPTH14': 0.9893643329999999}, '27127': {'FFRPTH14': 0.451176281, 'FSRPTH14': 1.095713825}, '27129': {'FFRPTH14': 0.399334443, 'FSRPTH14': 0.798668885}, '27131': {'FFRPTH14': 0.53721355, 'FSRPTH14': 0.414421881}, '27133': {'FFRPTH14': 0.62807495, 'FSRPTH14': 0.732754109}, '27135': {'FFRPTH14': 0.5102366220000001, 'FSRPTH14': 0.892914089}, '27137': {'FFRPTH14': 0.567308123, 'FSRPTH14': 0.816127475}, '27139': {'FFRPTH14': 0.5512915970000001, 'FSRPTH14': 0.357981557}, '27141': {'FFRPTH14': 0.49382174100000004, 'FSRPTH14': 0.40603121}, '27143': {'FFRPTH14': 0.268132457, 'FSRPTH14': 0.469231801}, '27145': {'FFRPTH14': 0.6801297479999999, 'FSRPTH14': 0.778225385}, '27147': {'FFRPTH14': 0.765592103, 'FSRPTH14': 0.738249528}, '27149': {'FFRPTH14': 0.510204082, 'FSRPTH14': 1.12244898}, '27151': {'FFRPTH14': 0.741839763, 'FSRPTH14': 0.9537939809999999}, '27153': {'FFRPTH14': 0.247279921, 'FSRPTH14': 0.576986482}, '27155': {'FFRPTH14': 0.5904930620000001, 'FSRPTH14': 0.29524653100000003}, '27157': {'FFRPTH14': 0.46812096200000003, 'FSRPTH14': 1.12349031}, '27159': {'FFRPTH14': 0.9449734679999999, 'FSRPTH14': 0.7269026679999999}, '27161': {'FFRPTH14': 0.525624179, 'FSRPTH14': 0.5781865970000001}, '27163': {'FFRPTH14': 0.517484145, 'FSRPTH14': 0.653875314}, '27165': {'FFRPTH14': 0.541369665, 'FSRPTH14': 0.812054498}, '27167': {'FFRPTH14': 0.307929176, 'FSRPTH14': 0.615858353}, '27169': {'FFRPTH14': 0.6654011, 'FSRPTH14': 0.626259859}, '27171': {'FFRPTH14': 0.49261842100000003, 'FSRPTH14': 0.523407072}, '27173': {'FFRPTH14': 0.69245227, 'FSRPTH14': 0.890295776}, '28001': {'FFRPTH14': 0.945268929, 'FSRPTH14': 0.6301792860000001}, '28003': {'FFRPTH14': 0.7223113959999999, 'FSRPTH14': 0.8560727659999999}, '28005': {'FFRPTH14': 0.237548499, 'FSRPTH14': 0.158365666}, '28007': {'FFRPTH14': 0.52183896, 'FSRPTH14': 0.469655064}, '28009': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '28011': {'FFRPTH14': 0.5330490410000001, 'FSRPTH14': 0.6811182179999999}, '28013': {'FFRPTH14': 0.271278399, 'FSRPTH14': 0.40691759899999996}, '28015': {'FFRPTH14': 0.0, 'FSRPTH14': 0.292568754}, '28017': {'FFRPTH14': 0.462080518, 'FSRPTH14': 0.346560388}, '28019': {'FFRPTH14': 0.48227634399999997, 'FSRPTH14': 0.24113817199999998}, '28021': {'FFRPTH14': 0.5506607929999999, 'FSRPTH14': 0.0}, '28023': {'FFRPTH14': 0.24541382899999997, 'FSRPTH14': 0.429474201}, '28025': {'FFRPTH14': 0.543881335, 'FSRPTH14': 0.64276885}, '28027': {'FFRPTH14': 0.685290442, 'FSRPTH14': 0.604668037}, '28029': {'FFRPTH14': 0.590339271, 'FSRPTH14': 0.45143591299999997}, '28031': {'FFRPTH14': 0.565785413, 'FSRPTH14': 0.565785413}, '28033': {'FFRPTH14': 0.7606209009999999, 'FSRPTH14': 0.6845588109999999}, '28035': {'FFRPTH14': 0.995676667, 'FSRPTH14': 0.8122625440000001}, '28037': {'FFRPTH14': 0.510660028, 'FSRPTH14': 0.127665007}, '28039': {'FFRPTH14': 0.514955156, 'FSRPTH14': 0.472042226}, '28041': {'FFRPTH14': 0.209409465, 'FSRPTH14': 0.209409465}, '28043': {'FFRPTH14': 0.969260593, 'FSRPTH14': 0.738484261}, '28045': {'FFRPTH14': 0.6528977779999999, 'FSRPTH14': 0.805240593}, '28047': {'FFRPTH14': 0.8138331540000001, 'FSRPTH14': 0.884164414}, '28049': {'FFRPTH14': 0.943671044, 'FSRPTH14': 0.41029175799999995}, '28051': {'FFRPTH14': 0.216696462, 'FSRPTH14': 0.108348231}, '28053': {'FFRPTH14': 0.34321015899999996, 'FSRPTH14': 0.22880677300000002}, '28055': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '28057': {'FFRPTH14': 0.51005228, 'FSRPTH14': 0.552556637}, '28059': {'FFRPTH14': 0.588081084, 'FSRPTH14': 0.58099577}, '28061': {'FFRPTH14': 0.24094934, 'FSRPTH14': 0.24094934}, '28063': {'FFRPTH14': 0.263192525, 'FSRPTH14': 0.0}, '28065': {'FFRPTH14': 0.42294028100000003, 'FSRPTH14': 0.169176112}, '28067': {'FFRPTH14': 0.732171621, 'FSRPTH14': 0.307512081}, '28069': {'FFRPTH14': 0.295188429, 'FSRPTH14': 0.295188429}, '28071': {'FFRPTH14': 0.812393728, 'FSRPTH14': 1.001322501}, '28073': {'FFRPTH14': 0.948435082, 'FSRPTH14': 0.632290055}, '28075': {'FFRPTH14': 0.827700372, 'FSRPTH14': 0.614504822}, '28077': {'FFRPTH14': 0.47992321200000004, 'FSRPTH14': 0.15997440400000001}, '28079': {'FFRPTH14': 0.517397491, 'FSRPTH14': 0.388048118}, '28081': {'FFRPTH14': 0.9384604559999999, 'FSRPTH14': 0.9736527229999999}, '28083': {'FFRPTH14': 0.6683215579999999, 'FSRPTH14': 0.6683215579999999}, '28085': {'FFRPTH14': 0.805176132, 'FSRPTH14': 0.431344357}, '28087': {'FFRPTH14': 0.6696802279999999, 'FSRPTH14': 0.7868742679999999}, '28089': {'FFRPTH14': 0.983400205, 'FSRPTH14': 0.7375501529999999}, '28091': {'FFRPTH14': 0.811813824, 'FSRPTH14': 0.541209216}, '28093': {'FFRPTH14': 0.358779047, 'FSRPTH14': 0.24838549399999998}, '28095': {'FFRPTH14': 0.5555092629999999, 'FSRPTH14': 0.583284726}, '28097': {'FFRPTH14': 0.576923077, 'FSRPTH14': 0.480769231}, '28099': {'FFRPTH14': 0.610894281, 'FSRPTH14': 0.373324283}, '28101': {'FFRPTH14': 0.595456211, 'FSRPTH14': 0.32063026699999997}, '28103': {'FFRPTH14': 0.26990553300000003, 'FSRPTH14': 0.0}, '28105': {'FFRPTH14': 0.7083012909999999, 'FSRPTH14': 0.9106730890000001}, '28107': {'FFRPTH14': 0.580652654, 'FSRPTH14': 0.43548949}, '28109': {'FFRPTH14': 0.669998551, 'FSRPTH14': 0.5432420689999999}, '28111': {'FFRPTH14': 0.24535863300000002, 'FSRPTH14': 0.163572422}, '28113': {'FFRPTH14': 0.773877877, 'FSRPTH14': 0.574167457}, '28115': {'FFRPTH14': 0.549273021, 'FSRPTH14': 0.549273021}, '28117': {'FFRPTH14': 0.629227623, 'FSRPTH14': 0.393267264}, '28119': {'FFRPTH14': 0.5209690020000001, 'FSRPTH14': 0.130242251}, '28121': {'FFRPTH14': 0.837441751, 'FSRPTH14': 0.479502938}, '28123': {'FFRPTH14': 0.597308598, 'FSRPTH14': 0.456765398}, '28125': {'FFRPTH14': 0.645577792, 'FSRPTH14': 0.21519259699999999}, '28127': {'FFRPTH14': 0.69183993, 'FSRPTH14': 0.436951535}, '28129': {'FFRPTH14': 0.37064492200000004, 'FSRPTH14': 0.123548307}, '28131': {'FFRPTH14': 0.783216783, 'FSRPTH14': 0.391608392}, '28133': {'FFRPTH14': 0.43642711700000003, 'FSRPTH14': 0.327320338}, '28135': {'FFRPTH14': 0.406476526, 'FSRPTH14': 0.33873043799999997}, '28137': {'FFRPTH14': 0.67366331, 'FSRPTH14': 0.177279818}, '28139': {'FFRPTH14': 0.453741095, 'FSRPTH14': 0.31761876699999997}, '28141': {'FFRPTH14': 0.566426365, 'FSRPTH14': 0.978372812}, '28143': {'FFRPTH14': 0.943574259, 'FSRPTH14': 0.566144556}, '28145': {'FFRPTH14': 0.533864825, 'FSRPTH14': 0.462682849}, '28147': {'FFRPTH14': 0.5383942389999999, 'FSRPTH14': 0.6729927990000001}, '28149': {'FFRPTH14': 0.750265719, 'FSRPTH14': 0.625221433}, '28151': {'FFRPTH14': 0.755749826, 'FSRPTH14': 0.388087749}, '28153': {'FFRPTH14': 0.634455832, 'FSRPTH14': 0.683260127}, '28155': {'FFRPTH14': 0.601684717, 'FSRPTH14': 0.300842359}, '28157': {'FFRPTH14': 0.435208356, 'FSRPTH14': 0.0}, '28159': {'FFRPTH14': 0.7035393440000001, 'FSRPTH14': 0.4870657}, '28161': {'FFRPTH14': 0.488758553, 'FSRPTH14': 0.40729879399999996}, '28163': {'FFRPTH14': 0.359492397, 'FSRPTH14': 0.503289355}, '29001': {'FFRPTH14': 0.78118897, 'FSRPTH14': 0.546832279}, '29003': {'FFRPTH14': 0.23016284, 'FSRPTH14': 0.28770355}, '29005': {'FFRPTH14': 0.371609067, 'FSRPTH14': 1.114827202}, '29007': {'FFRPTH14': 0.6180708460000001, 'FSRPTH14': 0.502182563}, '29009': {'FFRPTH14': 0.42061578200000005, 'FSRPTH14': 0.644944198}, '29011': {'FFRPTH14': 0.49763622799999996, 'FSRPTH14': 0.663514971}, '29013': {'FFRPTH14': 0.542691751, 'FSRPTH14': 0.6632899179999999}, '29015': {'FFRPTH14': 0.26587259399999996, 'FSRPTH14': 1.169839413}, '29017': {'FFRPTH14': 0.161368404, 'FSRPTH14': 0.484105212}, '29019': {'FFRPTH14': 0.804784706, 'FSRPTH14': 0.903211612}, '29021': {'FFRPTH14': 0.7934201999999999, 'FSRPTH14': 0.715195673}, '29023': {'FFRPTH14': 0.7213999809999999, 'FSRPTH14': 0.7446709490000001}, '29025': {'FFRPTH14': 0.221385876, 'FSRPTH14': 0.442771751}, '29027': {'FFRPTH14': 0.49162011200000005, 'FSRPTH14': 0.558659218}, '29029': {'FFRPTH14': 0.5224779079999999, 'FSRPTH14': 1.862747325}, '29031': {'FFRPTH14': 0.807247287, 'FSRPTH14': 0.8841279809999999}, '29033': {'FFRPTH14': 0.331748314, 'FSRPTH14': 0.9952449409999999}, '29035': {'FFRPTH14': 0.479386385, 'FSRPTH14': 0.479386385}, '29037': {'FFRPTH14': 0.505506051, 'FSRPTH14': 0.574889235}, '29039': {'FFRPTH14': 0.860091743, 'FSRPTH14': 0.7167431190000001}, '29041': {'FFRPTH14': 0.12997140599999998, 'FSRPTH14': 1.03977125}, '29043': {'FFRPTH14': 0.511565024, 'FSRPTH14': 0.548105382}, '29045': {'FFRPTH14': 0.289142692, 'FSRPTH14': 0.72285673}, '29047': {'FFRPTH14': 0.6590152429999999, 'FSRPTH14': 0.629060005}, '29049': {'FFRPTH14': 0.29558106300000003, 'FSRPTH14': 0.7882161679999999}, '29051': {'FFRPTH14': 0.796791933, 'FSRPTH14': 0.862102747}, '29053': {'FFRPTH14': 0.909866363, 'FSRPTH14': 0.682399773}, '29055': {'FFRPTH14': 0.405679513, 'FSRPTH14': 0.93306288}, '29057': {'FFRPTH14': 0.393287887, 'FSRPTH14': 0.917671736}, '29059': {'FFRPTH14': 0.549148819, 'FSRPTH14': 0.549148819}, '29061': {'FFRPTH14': 0.120525491, 'FSRPTH14': 0.602627456}, '29063': {'FFRPTH14': 0.315159155, 'FSRPTH14': 0.315159155}, '29065': {'FFRPTH14': 0.38326413299999995, 'FSRPTH14': 0.574896199}, '29067': {'FFRPTH14': 0.295290123, 'FSRPTH14': 0.516757714}, '29069': {'FFRPTH14': 0.446656457, 'FSRPTH14': 0.8295048490000001}, '29071': {'FFRPTH14': 0.607342972, 'FSRPTH14': 0.617138827}, '29073': {'FFRPTH14': 0.739943495, 'FSRPTH14': 1.547154581}, '29075': {'FFRPTH14': 0.439496045, 'FSRPTH14': 0.878992089}, '29077': {'FFRPTH14': 0.930509156, 'FSRPTH14': 0.8710405259999999}, '29079': {'FFRPTH14': 0.294204178, 'FSRPTH14': 0.588408355}, '29081': {'FFRPTH14': 0.810278967, 'FSRPTH14': 0.810278967}, '29083': {'FFRPTH14': 0.7263482840000001, 'FSRPTH14': 0.8625385870000001}, '29085': {'FFRPTH14': 0.108471635, 'FSRPTH14': 1.193187981}, '29087': {'FFRPTH14': 0.664304694, 'FSRPTH14': 1.771479185}, '29089': {'FFRPTH14': 0.19686977100000003, 'FSRPTH14': 0.885913968}, '29091': {'FFRPTH14': 0.572523834, 'FSRPTH14': 0.821447241}, '29093': {'FFRPTH14': 0.097399435, 'FSRPTH14': 0.681796046}, '29095': {'FFRPTH14': 0.7128314040000001, 'FSRPTH14': 0.775771344}, '29097': {'FFRPTH14': 0.816722391, 'FSRPTH14': 0.740154667}, '29099': {'FFRPTH14': 0.547782827, 'FSRPTH14': 0.41308213200000005}, '29101': {'FFRPTH14': 0.607041684, 'FSRPTH14': 0.496670468}, '29103': {'FFRPTH14': 0.0, 'FSRPTH14': 0.75}, '29105': {'FFRPTH14': 0.6490025110000001, 'FSRPTH14': 0.7618725129999999}, '29107': {'FFRPTH14': 0.5506607929999999, 'FSRPTH14': 0.856583456}, '29109': {'FFRPTH14': 0.447097809, 'FSRPTH14': 0.657496778}, '29111': {'FFRPTH14': 0.295916354, 'FSRPTH14': 0.789110278}, '29113': {'FFRPTH14': 0.331803351, 'FSRPTH14': 0.497705027}, '29115': {'FFRPTH14': 0.48736902, 'FSRPTH14': 0.56859719}, '29117': {'FFRPTH14': 0.265727762, 'FSRPTH14': 0.664319405}, '29119': {'FFRPTH14': 0.307017544, 'FSRPTH14': 0.43859649100000003}, '29121': {'FFRPTH14': 0.452225596, 'FSRPTH14': 0.969054849}, '29123': {'FFRPTH14': 0.64683053, 'FSRPTH14': 0.5659767139999999}, '29125': {'FFRPTH14': 0.332852546, 'FSRPTH14': 0.7766559409999999}, '29127': {'FFRPTH14': 0.656984786, 'FSRPTH14': 0.829875519}, '29129': {'FFRPTH14': 0.537778973, 'FSRPTH14': 1.075557946}, '29131': {'FFRPTH14': 0.596634979, 'FSRPTH14': 1.073942962}, '29133': {'FFRPTH14': 0.42158516, 'FSRPTH14': 0.281056773}, '29135': {'FFRPTH14': 0.504540868, 'FSRPTH14': 0.504540868}, '29137': {'FFRPTH14': 0.34455036200000005, 'FSRPTH14': 1.033651085}, '29139': {'FFRPTH14': 0.42226163299999997, 'FSRPTH14': 0.50671396}, '29141': {'FFRPTH14': 0.39525691700000004, 'FSRPTH14': 1.4822134390000001}, '29143': {'FFRPTH14': 0.547285464, 'FSRPTH14': 0.9303852890000001}, '29145': {'FFRPTH14': 0.460766579, 'FSRPTH14': 0.426635721}, '29147': {'FFRPTH14': 0.51990815, 'FSRPTH14': 0.51990815}, '29149': {'FFRPTH14': 0.274951883, 'FSRPTH14': 0.733205022}, '29151': {'FFRPTH14': 0.291906882, 'FSRPTH14': 0.7297672040000001}, '29153': {'FFRPTH14': 0.105351875, 'FSRPTH14': 0.421407501}, '29155': {'FFRPTH14': 0.33994334299999995, 'FSRPTH14': 0.793201133}, '29157': {'FFRPTH14': 0.572856994, 'FSRPTH14': 0.624934903}, '29159': {'FFRPTH14': 0.663114269, 'FSRPTH14': 0.663114269}, '29161': {'FFRPTH14': 0.713537137, 'FSRPTH14': 0.735835173}, '29163': {'FFRPTH14': 0.485410711, 'FSRPTH14': 0.9168868990000001}, '29165': {'FFRPTH14': 0.654091235, 'FSRPTH14': 0.854538549}, '29167': {'FFRPTH14': 0.41862562, 'FSRPTH14': 0.579635474}, '29169': {'FFRPTH14': 0.5427052920000001, 'FSRPTH14': 0.561419268}, '29171': {'FFRPTH14': 0.207082212, 'FSRPTH14': 0.41416442299999995}, '29173': {'FFRPTH14': 0.09751340800000001, 'FSRPTH14': 0.19502681600000002}, '29175': {'FFRPTH14': 0.5185067010000001, 'FSRPTH14': 0.757817486}, '29177': {'FFRPTH14': 0.305024184, 'FSRPTH14': 0.261449301}, '29179': {'FFRPTH14': 0.152322925, 'FSRPTH14': 0.45696877399999997}, '29181': {'FFRPTH14': 0.5011095999999999, 'FSRPTH14': 0.21476125699999998}, '29183': {'FFRPTH14': 0.711475574, 'FSRPTH14': 0.719380858}, '29185': {'FFRPTH14': 0.10574177900000001, 'FSRPTH14': 0.951676007}, '29186': {'FFRPTH14': 0.334933572, 'FSRPTH14': 0.893156191}, '29187': {'FFRPTH14': 0.773195876, 'FSRPTH14': 0.591267435}, '29189': {'FFRPTH14': 0.80249452, 'FSRPTH14': 0.7655638020000001}, '29195': {'FFRPTH14': 0.513984666, 'FSRPTH14': 0.685312888}, '29197': {'FFRPTH14': 0.0, 'FSRPTH14': 0.457665904}, '29199': {'FFRPTH14': 0.411268764, 'FSRPTH14': 0.822537528}, '29201': {'FFRPTH14': 0.539804128, 'FSRPTH14': 0.7197388379999999}, '29203': {'FFRPTH14': 0.120062432, 'FSRPTH14': 0.720374595}, '29205': {'FFRPTH14': 0.163719712, 'FSRPTH14': 1.309757695}, '29207': {'FFRPTH14': 0.502226538, 'FSRPTH14': 0.602671845}, '29209': {'FFRPTH14': 0.450102881, 'FSRPTH14': 0.932355967}, '29211': {'FFRPTH14': 0.46794571799999995, 'FSRPTH14': 0.155981906}, '29213': {'FFRPTH14': 0.995758805, 'FSRPTH14': 1.641158031}, '29215': {'FFRPTH14': 0.428983699, 'FSRPTH14': 0.623976289}, '29217': {'FFRPTH14': 0.571401362, 'FSRPTH14': 0.571401362}, '29219': {'FFRPTH14': 0.5413045439999999, 'FSRPTH14': 0.45108712}, '29221': {'FFRPTH14': 0.319017426, 'FSRPTH14': 0.398771783}, '29223': {'FFRPTH14': 0.37169194200000005, 'FSRPTH14': 0.669045495}, '29225': {'FFRPTH14': 0.5150726520000001, 'FSRPTH14': 0.298199957}, '29227': {'FFRPTH14': 0.0, 'FSRPTH14': 1.447178003}, '29229': {'FFRPTH14': 0.492045268, 'FSRPTH14': 0.546716965}, '29510': {'FFRPTH14': 0.8789643970000001, 'FSRPTH14': 1.140448429}, '30001': {'FFRPTH14': 0.74906367, 'FSRPTH14': 1.7121455319999999}, '30003': {'FFRPTH14': 0.150579732, 'FSRPTH14': 0.451739196}, '30005': {'FFRPTH14': 0.302160447, 'FSRPTH14': 0.302160447}, '30007': {'FFRPTH14': 0.176460208, 'FSRPTH14': 0.882301041}, '30009': {'FFRPTH14': 0.7693047409999999, 'FSRPTH14': 1.346283296}, '30011': {'FFRPTH14': 0.0, 'FSRPTH14': 0.855431993}, '30013': {'FFRPTH14': 0.83794812, 'FSRPTH14': 0.813659769}, '30015': {'FFRPTH14': 0.169664065, 'FSRPTH14': 1.017984391}, '30017': {'FFRPTH14': 0.6615944429999999, 'FSRPTH14': 1.0750909690000001}, '30019': {'FFRPTH14': 1.115448968, 'FSRPTH14': 1.115448968}, '30021': {'FFRPTH14': 0.525320445, 'FSRPTH14': 1.15570498}, '30023': {'FFRPTH14': 0.327868852, 'FSRPTH14': 1.092896175}, '30025': {'FFRPTH14': 0.965250965, 'FSRPTH14': 1.930501931}, '30027': {'FFRPTH14': 0.611781157, 'FSRPTH14': 1.310959622}, '30029': {'FFRPTH14': 0.7163625640000001, 'FSRPTH14': 1.1482870509999998}, '30031': {'FFRPTH14': 0.996834793, 'FSRPTH14': 1.459283923}, '30033': {'FFRPTH14': 0.0, 'FSRPTH14': 0.76394194}, '30035': {'FFRPTH14': 0.657126168, 'FSRPTH14': 0.876168224}, '30037': {'FFRPTH14': 1.17370892, 'FSRPTH14': 0.0}, '30039': {'FFRPTH14': 0.934870676, 'FSRPTH14': 1.869741352}, '30041': {'FFRPTH14': 0.843576765, 'FSRPTH14': 0.964087732}, '30043': {'FFRPTH14': 0.259560478, 'FSRPTH14': 0.865201592}, '30045': {'FFRPTH14': 0.0, 'FSRPTH14': 1.506780512}, '30047': {'FFRPTH14': 0.6185779579999999, 'FSRPTH14': 0.6529434000000001}, '30049': {'FFRPTH14': 0.652939747, 'FSRPTH14': 1.017371234}, '30051': {'FFRPTH14': 0.0, 'FSRPTH14': 0.847816872}, '30053': {'FFRPTH14': 0.418300654, 'FSRPTH14': 1.307189542}, '30055': {'FFRPTH14': 1.180637544, 'FSRPTH14': 1.180637544}, '30057': {'FFRPTH14': 0.127877238, 'FSRPTH14': 2.046035806}, '30059': {'FFRPTH14': 0.539665407, 'FSRPTH14': 2.698327037}, '30061': {'FFRPTH14': 0.234907212, 'FSRPTH14': 1.174536058}, '30063': {'FFRPTH14': 0.7454474459999999, 'FSRPTH14': 0.931809307}, '30065': {'FFRPTH14': 0.0, 'FSRPTH14': 0.871649597}, '30067': {'FFRPTH14': 0.755667506, 'FSRPTH14': 2.518891688}, '30069': {'FFRPTH14': 0.0, 'FSRPTH14': 2.06185567}, '30071': {'FFRPTH14': 0.477099237, 'FSRPTH14': 1.43129771}, '30073': {'FFRPTH14': 0.321595112, 'FSRPTH14': 0.964785335}, '30075': {'FFRPTH14': 0.560852496, 'FSRPTH14': 2.8042624789999997}, '30077': {'FFRPTH14': 0.43421624, 'FSRPTH14': 1.447387466}, '30079': {'FFRPTH14': 0.0, 'FSRPTH14': 1.7421602790000001}, '30081': {'FFRPTH14': 0.41433097700000004, 'FSRPTH14': 0.9992688279999999}, '30083': {'FFRPTH14': 0.8638562540000001, 'FSRPTH14': 0.95024188}, '30085': {'FFRPTH14': 0.44122838, 'FSRPTH14': 0.352982704}, '30087': {'FFRPTH14': 0.536135535, 'FSRPTH14': 0.536135535}, '30089': {'FFRPTH14': 0.615980289, 'FSRPTH14': 1.231960577}, '30091': {'FFRPTH14': 0.27056277100000004, 'FSRPTH14': 1.6233766230000002}, '30093': {'FFRPTH14': 0.951557093, 'FSRPTH14': 1.038062284}, '30095': {'FFRPTH14': 0.322927879, 'FSRPTH14': 0.645855759}, '30097': {'FFRPTH14': 0.0, 'FSRPTH14': 1.909959072}, '30099': {'FFRPTH14': 0.0, 'FSRPTH14': 0.8245382590000001}, '30101': {'FFRPTH14': 0.388349515, 'FSRPTH14': 2.13592233}, '30103': {'FFRPTH14': 0.0, 'FSRPTH14': 1.445086705}, '30105': {'FFRPTH14': 1.570680628, 'FSRPTH14': 1.178010471}, '30107': {'FFRPTH14': 0.0, 'FSRPTH14': 2.378686965}, '30109': {'FFRPTH14': 0.89206066, 'FSRPTH14': 0.89206066}, '30111': {'FFRPTH14': 0.745338422, 'FSRPTH14': 0.7903157409999999}, '31001': {'FFRPTH14': 1.080840512, 'FSRPTH14': 0.635788537}, '31003': {'FFRPTH14': 0.625195374, 'FSRPTH14': 1.0940919040000001}, '31005': {'FFRPTH14': 0.0, 'FSRPTH14': 2.207505519}, '31007': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31009': {'FFRPTH14': 0.0, 'FSRPTH14': 1.984126984}, '31011': {'FFRPTH14': 0.186811134, 'FSRPTH14': 0.560433402}, '31013': {'FFRPTH14': 0.44091710799999995, 'FSRPTH14': 1.3227513229999999}, '31015': {'FFRPTH14': 0.0, 'FSRPTH14': 0.491883915}, '31017': {'FFRPTH14': 0.0, 'FSRPTH14': 1.7001020059999998}, '31019': {'FFRPTH14': 0.8709356340000001, 'FSRPTH14': 0.9124087590000001}, '31021': {'FFRPTH14': 0.304275065, 'FSRPTH14': 1.217100259}, '31023': {'FFRPTH14': 0.121226815, 'FSRPTH14': 0.48490726100000003}, '31025': {'FFRPTH14': 0.391788121, 'FSRPTH14': 0.587682181}, '31027': {'FFRPTH14': 0.116144019, 'FSRPTH14': 0.6968641109999999}, '31029': {'FFRPTH14': 0.251382604, 'FSRPTH14': 1.256913022}, '31031': {'FFRPTH14': 0.867754252, 'FSRPTH14': 1.214855953}, '31033': {'FFRPTH14': 0.492707923, 'FSRPTH14': 1.281040599}, '31035': {'FFRPTH14': 0.15835312699999998, 'FSRPTH14': 0.950118765}, '31037': {'FFRPTH14': 0.380807312, 'FSRPTH14': 0.666412795}, '31039': {'FFRPTH14': 0.664672649, 'FSRPTH14': 1.218566523}, '31041': {'FFRPTH14': 0.279642058, 'FSRPTH14': 1.398210291}, '31043': {'FFRPTH14': 0.623501199, 'FSRPTH14': 0.527577938}, '31045': {'FFRPTH14': 0.8847600090000001, 'FSRPTH14': 1.548330015}, '31047': {'FFRPTH14': 0.705511288, 'FSRPTH14': 0.747011952}, '31049': {'FFRPTH14': 0.515463918, 'FSRPTH14': 2.06185567}, '31051': {'FFRPTH14': 0.0, 'FSRPTH14': 0.518851608}, '31053': {'FFRPTH14': 0.6803831920000001, 'FSRPTH14': 0.762029175}, '31055': {'FFRPTH14': 0.7473621429999999, 'FSRPTH14': 0.79890436}, '31057': {'FFRPTH14': 0.530222694, 'FSRPTH14': 1.0604453870000001}, '31059': {'FFRPTH14': 0.529941706, 'FSRPTH14': 1.236530648}, '31061': {'FFRPTH14': 0.0, 'FSRPTH14': 0.975292588}, '31063': {'FFRPTH14': 0.0, 'FSRPTH14': 0.36968576700000005}, '31065': {'FFRPTH14': 0.409165303, 'FSRPTH14': 0.818330606}, '31067': {'FFRPTH14': 0.692424872, 'FSRPTH14': 0.830909846}, '31069': {'FFRPTH14': 0.0, 'FSRPTH14': 1.5698587130000001}, '31071': {'FFRPTH14': 0.49925112299999996, 'FSRPTH14': 2.496255617}, '31073': {'FFRPTH14': 0.507614213, 'FSRPTH14': 0.507614213}, '31075': {'FFRPTH14': 0.0, 'FSRPTH14': 1.615508885}, '31077': {'FFRPTH14': 0.0, 'FSRPTH14': 1.208702659}, '31079': {'FFRPTH14': 0.796851623, 'FSRPTH14': 0.829376179}, '31081': {'FFRPTH14': 0.4378763, 'FSRPTH14': 0.766283525}, '31083': {'FFRPTH14': 0.8591065290000001, 'FSRPTH14': 1.7182130580000001}, '31085': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31087': {'FFRPTH14': 0.0, 'FSRPTH14': 1.034126163}, '31089': {'FFRPTH14': 0.48063058700000005, 'FSRPTH14': 1.345765645}, '31091': {'FFRPTH14': 1.373626374, 'FSRPTH14': 2.7472527469999997}, '31093': {'FFRPTH14': 0.314366551, 'FSRPTH14': 0.7859163779999999}, '31095': {'FFRPTH14': 0.545330607, 'FSRPTH14': 1.090661213}, '31097': {'FFRPTH14': 0.38572806200000004, 'FSRPTH14': 1.157184185}, '31099': {'FFRPTH14': 0.45153522, 'FSRPTH14': 0.45153522}, '31101': {'FFRPTH14': 0.985100357, 'FSRPTH14': 1.60078808}, '31103': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31105': {'FFRPTH14': 0.538647994, 'FSRPTH14': 0.538647994}, '31107': {'FFRPTH14': 0.117896722, 'FSRPTH14': 1.178967225}, '31109': {'FFRPTH14': 0.9310956109999999, 'FSRPTH14': 0.6693285179999999}, '31111': {'FFRPTH14': 0.6980315509999999, 'FSRPTH14': 0.642189027}, '31113': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31115': {'FFRPTH14': 0.0, 'FSRPTH14': 3.4013605439999997}, '31117': {'FFRPTH14': 0.0, 'FSRPTH14': 2.008032129}, '31119': {'FFRPTH14': 0.909762893, 'FSRPTH14': 0.966623074}, '31121': {'FFRPTH14': 0.515065671, 'FSRPTH14': 0.7725985059999999}, '31123': {'FFRPTH14': 1.439736734, 'FSRPTH14': 0.822706705}, '31125': {'FFRPTH14': 0.56022409, 'FSRPTH14': 1.120448179}, '31127': {'FFRPTH14': 0.557491289, 'FSRPTH14': 0.975609756}, '31129': {'FFRPTH14': 0.457770657, 'FSRPTH14': 0.686655985}, '31131': {'FFRPTH14': 0.506425271, 'FSRPTH14': 0.6330315879999999}, '31133': {'FFRPTH14': 0.370096225, 'FSRPTH14': 0.74019245}, '31135': {'FFRPTH14': 0.0, 'FSRPTH14': 0.691802145}, '31137': {'FFRPTH14': 0.9796451509999999, 'FSRPTH14': 0.761946228}, '31139': {'FFRPTH14': 0.5554012770000001, 'FSRPTH14': 0.5554012770000001}, '31141': {'FFRPTH14': 0.704096002, 'FSRPTH14': 0.6428702629999999}, '31143': {'FFRPTH14': 0.37943464200000004, 'FSRPTH14': 0.569151964}, '31145': {'FFRPTH14': 1.012238888, 'FSRPTH14': 0.368086869}, '31147': {'FFRPTH14': 0.61515748, 'FSRPTH14': 1.230314961}, '31149': {'FFRPTH14': 0.0, 'FSRPTH14': 2.079002079}, '31151': {'FFRPTH14': 0.491159136, 'FSRPTH14': 0.701655908}, '31153': {'FFRPTH14': 0.679470129, 'FSRPTH14': 0.42394290100000004}, '31155': {'FFRPTH14': 0.382427458, 'FSRPTH14': 0.956068646}, '31157': {'FFRPTH14': 0.9872480459999999, 'FSRPTH14': 0.9872480459999999}, '31159': {'FFRPTH14': 0.5830903789999999, 'FSRPTH14': 0.466472303}, '31161': {'FFRPTH14': 0.9507510929999999, 'FSRPTH14': 1.140901312}, '31163': {'FFRPTH14': 0.0, 'FSRPTH14': 0.975927131}, '31165': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '31167': {'FFRPTH14': 0.164771791, 'FSRPTH14': 0.49431537299999995}, '31169': {'FFRPTH14': 0.19120458899999998, 'FSRPTH14': 1.912045889}, '31171': {'FFRPTH14': 0.0, 'FSRPTH14': 1.455604076}, '31173': {'FFRPTH14': 0.43047783, 'FSRPTH14': 0.28698522}, '31175': {'FFRPTH14': 0.7136060890000001, 'FSRPTH14': 0.47573739299999995}, '31177': {'FFRPTH14': 0.44426893100000003, 'FSRPTH14': 0.789811433}, '31179': {'FFRPTH14': 0.95429965, 'FSRPTH14': 0.8482663559999999}, '31181': {'FFRPTH14': 0.27337342800000003, 'FSRPTH14': 0.27337342800000003}, '31183': {'FFRPTH14': 0.0, 'FSRPTH14': 2.6109660569999997}, '31185': {'FFRPTH14': 1.005963929, 'FSRPTH14': 0.9341093629999999}, '32001': {'FFRPTH14': 0.708658135, 'FSRPTH14': 0.500229272}, '32003': {'FFRPTH14': 0.8242816159999999, 'FSRPTH14': 0.617969629}, '32005': {'FFRPTH14': 0.736284079, 'FSRPTH14': 1.051834399}, '32007': {'FFRPTH14': 0.7391123070000001, 'FSRPTH14': 0.549596331}, '32009': {'FFRPTH14': 0.0, 'FSRPTH14': 1.216545012}, '32011': {'FFRPTH14': 0.991080278, 'FSRPTH14': 0.495540139}, '32013': {'FFRPTH14': 0.636610915, 'FSRPTH14': 1.041726952}, '32015': {'FFRPTH14': 0.332834082, 'FSRPTH14': 0.998502247}, '32017': {'FFRPTH14': 0.192901235, 'FSRPTH14': 0.385802469}, '32019': {'FFRPTH14': 0.36687327399999997, 'FSRPTH14': 0.444109753}, '32021': {'FFRPTH14': 0.444444444, 'FSRPTH14': 0.444444444}, '32023': {'FFRPTH14': 0.638569604, 'FSRPTH14': 0.449363795}, '32027': {'FFRPTH14': 0.597193192, 'FSRPTH14': 0.149298298}, '32029': {'FFRPTH14': 0.0, 'FSRPTH14': 2.044989775}, '32031': {'FFRPTH14': 0.754411718, 'FSRPTH14': 0.74532242}, '32033': {'FFRPTH14': 0.39864460799999996, 'FSRPTH14': 0.996611521}, '32510': {'FFRPTH14': 0.898719783, 'FSRPTH14': 0.990425883}, '33001': {'FFRPTH14': 0.795953901, 'FSRPTH14': 1.4095017}, '33003': {'FFRPTH14': 0.9704846090000001, 'FSRPTH14': 2.2363341}, '33005': {'FFRPTH14': 0.630624713, 'FSRPTH14': 0.748866846}, '33007': {'FFRPTH14': 0.758221969, 'FSRPTH14': 1.263703282}, '33009': {'FFRPTH14': 0.858819068, 'FSRPTH14': 1.449954271}, '33011': {'FFRPTH14': 0.7132562, 'FSRPTH14': 0.8736771440000001}, '33013': {'FFRPTH14': 0.72704541, 'FSRPTH14': 0.6998661420000001}, '33015': {'FFRPTH14': 0.908120191, 'FSRPTH14': 1.014566514}, '33017': {'FFRPTH14': 0.6926531, 'FSRPTH14': 0.7643068690000001}, '33019': {'FFRPTH14': 0.417604343, 'FSRPTH14': 0.510405308}, '34001': {'FFRPTH14': 0.755789237, 'FSRPTH14': 1.188187886}, '34003': {'FFRPTH14': 0.816219852, 'FSRPTH14': 1.000458454}, '34005': {'FFRPTH14': 0.689314732, 'FSRPTH14': 0.6181596629999999}, '34007': {'FFRPTH14': 0.673139767, 'FSRPTH14': 0.647701345}, '34009': {'FFRPTH14': 1.783017285, 'FSRPTH14': 3.25138446}, '34011': {'FFRPTH14': 0.635368418, 'FSRPTH14': 0.501941051}, '34013': {'FFRPTH14': 0.69370874, 'FSRPTH14': 0.687425147}, '34015': {'FFRPTH14': 0.58772783, 'FSRPTH14': 0.546483772}, '34017': {'FFRPTH14': 0.756222772, 'FSRPTH14': 0.774156909}, '34019': {'FFRPTH14': 0.785296707, 'FSRPTH14': 1.102588306}, '34021': {'FFRPTH14': 0.753626153, 'FSRPTH14': 0.726710933}, '34023': {'FFRPTH14': 0.783214576, 'FSRPTH14': 0.6779888009999999}, '34025': {'FFRPTH14': 0.842233731, 'FSRPTH14': 1.09013649}, '34027': {'FFRPTH14': 0.826451242, 'FSRPTH14': 0.952520076}, '34029': {'FFRPTH14': 0.701005115, 'FSRPTH14': 0.736822895}, '34031': {'FFRPTH14': 0.650478721, 'FSRPTH14': 0.752668731}, '34033': {'FFRPTH14': 0.525380515, 'FSRPTH14': 0.47902341}, '34035': {'FFRPTH14': 0.790815713, 'FSRPTH14': 0.859974501}, '34037': {'FFRPTH14': 0.5175661970000001, 'FSRPTH14': 0.7867006190000001}, '34039': {'FFRPTH14': 0.661917499, 'FSRPTH14': 0.7975563309999999}, '34041': {'FFRPTH14': 0.7014787170000001, 'FSRPTH14': 0.841774461}, '35001': {'FFRPTH14': 0.8259924120000001, 'FSRPTH14': 0.626155538}, '35003': {'FFRPTH14': 0.0, 'FSRPTH14': 0.562429696}, '35005': {'FFRPTH14': 0.637542123, 'FSRPTH14': 0.5920034000000001}, '35006': {'FFRPTH14': 0.511901715, 'FSRPTH14': 0.329079674}, '35007': {'FFRPTH14': 1.261829653, 'FSRPTH14': 1.41955836}, '35009': {'FFRPTH14': 0.667072142, 'FSRPTH14': 0.49049422200000004}, '35011': {'FFRPTH14': 0.547945205, 'FSRPTH14': 1.6438356159999998}, '35013': {'FFRPTH14': 0.58967783, 'FSRPTH14': 0.50543814}, '35015': {'FFRPTH14': 0.656086532, 'FSRPTH14': 0.620622396}, '35017': {'FFRPTH14': 0.756117679, 'FSRPTH14': 0.859224636}, '35019': {'FFRPTH14': 0.223813787, 'FSRPTH14': 1.342882722}, '35021': {'FFRPTH14': 0.0, 'FSRPTH14': 1.4641288430000001}, '35023': {'FFRPTH14': 0.657894737, 'FSRPTH14': 0.8771929820000001}, '35025': {'FFRPTH14': 0.6285804079999999, 'FSRPTH14': 0.5428648979999999}, '35027': {'FFRPTH14': 1.0149193140000001, 'FSRPTH14': 1.5731249369999998}, '35028': {'FFRPTH14': 0.565546884, 'FSRPTH14': 0.508992195}, '35029': {'FFRPTH14': 0.7700725490000001, 'FSRPTH14': 0.8916629509999999}, '35031': {'FFRPTH14': 0.674782045, 'FSRPTH14': 0.458851791}, '35033': {'FFRPTH14': 0.217770035, 'FSRPTH14': 0.0}, '35035': {'FFRPTH14': 0.507052641, 'FSRPTH14': 0.460956947}, '35037': {'FFRPTH14': 0.9410657570000001, 'FSRPTH14': 0.8234325370000001}, '35039': {'FFRPTH14': 0.5028031270000001, 'FSRPTH14': 0.42738265799999997}, '35041': {'FFRPTH14': 0.40950041, 'FSRPTH14': 0.46068796100000003}, '35043': {'FFRPTH14': 0.45782222, 'FSRPTH14': 0.30521481300000003}, '35045': {'FFRPTH14': 0.759381185, 'FSRPTH14': 0.444318779}, '35047': {'FFRPTH14': 0.531180283, 'FSRPTH14': 0.672828358}, '35049': {'FFRPTH14': 0.735671283, 'FSRPTH14': 1.02589023}, '35051': {'FFRPTH14': 0.529801325, 'FSRPTH14': 1.236203091}, '35053': {'FFRPTH14': 0.635470826, 'FSRPTH14': 0.808781051}, '35055': {'FFRPTH14': 0.78587837, 'FSRPTH14': 1.632208923}, '35057': {'FFRPTH14': 0.448401768, 'FSRPTH14': 0.448401768}, '35059': {'FFRPTH14': 0.698161508, 'FSRPTH14': 0.9308820109999999}, '35061': {'FFRPTH14': 0.6331033939999999, 'FSRPTH14': 0.422068929}, '36001': {'FFRPTH14': 1.05136434, 'FSRPTH14': 1.093548712}, '36003': {'FFRPTH14': 0.377073906, 'FSRPTH14': 0.837942014}, '36005': {'FFRPTH14': 0.6494414039999999, 'FSRPTH14': 0.400512044}, '36007': {'FFRPTH14': 0.785410618, 'FSRPTH14': 0.881686758}, '36009': {'FFRPTH14': 0.6234096689999999, 'FSRPTH14': 0.992366412}, '36011': {'FFRPTH14': 0.6723925759999999, 'FSRPTH14': 0.8119457520000001}, '36013': {'FFRPTH14': 0.73455355, 'FSRPTH14': 1.029889514}, '36015': {'FFRPTH14': 0.7063917059999999, 'FSRPTH14': 0.854506095}, '36017': {'FFRPTH14': 0.526038927, 'FSRPTH14': 0.930684255}, '36019': {'FFRPTH14': 0.539004312, 'FSRPTH14': 0.85750686}, '36021': {'FFRPTH14': 0.595602202, 'FSRPTH14': 1.142912334}, '36023': {'FFRPTH14': 0.8567232379999999, 'FSRPTH14': 0.87712141}, '36025': {'FFRPTH14': 0.558167493, 'FSRPTH14': 1.0948670059999999}, '36027': {'FFRPTH14': 0.822715027, 'FSRPTH14': 1.170008665}, '36029': {'FFRPTH14': 0.834385345, 'FSRPTH14': 0.8571413090000001}, '36031': {'FFRPTH14': 0.594637917, 'FSRPTH14': 2.042451977}, '36033': {'FFRPTH14': 0.44867543200000004, 'FSRPTH14': 0.7998127270000001}, '36035': {'FFRPTH14': 0.757785787, 'FSRPTH14': 0.8871638479999999}, '36037': {'FFRPTH14': 0.6423041820000001, 'FSRPTH14': 0.8958453059999999}, '36039': {'FFRPTH14': 0.8130589779999999, 'FSRPTH14': 1.4801842930000002}, '36041': {'FFRPTH14': 0.84835631, 'FSRPTH14': 3.6055143160000003}, '36043': {'FFRPTH14': 0.78438755, 'FSRPTH14': 0.8942018070000001}, '36045': {'FFRPTH14': 0.848005508, 'FSRPTH14': 1.057907861}, '36047': {'FFRPTH14': 0.76054822, 'FSRPTH14': 0.735756027}, '36049': {'FFRPTH14': 0.47759000700000004, 'FSRPTH14': 0.918442322}, '36051': {'FFRPTH14': 0.727711888, 'FSRPTH14': 0.83609451}, '36053': {'FFRPTH14': 0.5803589929999999, 'FSRPTH14': 1.050173417}, '36055': {'FFRPTH14': 0.733473182, 'FSRPTH14': 0.818822789}, '36057': {'FFRPTH14': 0.7432853209999999, 'FSRPTH14': 0.803551699}, '36059': {'FFRPTH14': 0.9494879759999999, 'FSRPTH14': 0.94580779}, '36061': {'FFRPTH14': 1.560257855, 'FSRPTH14': 2.712880775}, '36063': {'FFRPTH14': 0.627561176, 'FSRPTH14': 0.8570425009999999}, '36065': {'FFRPTH14': 0.695664123, 'FSRPTH14': 0.888904157}, '36067': {'FFRPTH14': 0.914147067, 'FSRPTH14': 0.762501175}, '36069': {'FFRPTH14': 0.793021412, 'FSRPTH14': 1.148513768}, '36071': {'FFRPTH14': 0.797662318, 'FSRPTH14': 0.8348865590000001}, '36073': {'FFRPTH14': 0.428734756, 'FSRPTH14': 0.45255335399999996}, '36075': {'FFRPTH14': 0.7774184740000001, 'FSRPTH14': 0.769148065}, '36077': {'FFRPTH14': 0.621646381, 'FSRPTH14': 1.2923701090000002}, '36079': {'FFRPTH14': 0.73376421, 'FSRPTH14': 0.914692372}, '36081': {'FFRPTH14': 0.844252621, 'FSRPTH14': 0.780933674}, '36083': {'FFRPTH14': 0.6196252210000001, 'FSRPTH14': 0.7072489890000001}, '36085': {'FFRPTH14': 0.667682276, 'FSRPTH14': 0.61697223}, '36087': {'FFRPTH14': 0.7904503709999999, 'FSRPTH14': 0.9417475129999999}, '36089': {'FFRPTH14': 0.47576301600000004, 'FSRPTH14': 0.763016158}, '36091': {'FFRPTH14': 0.7424829159999999, 'FSRPTH14': 0.960337185}, '36093': {'FFRPTH14': 0.783382027, 'FSRPTH14': 0.7448550420000001}, '36095': {'FFRPTH14': 0.380155864, 'FSRPTH14': 0.823671038}, '36097': {'FFRPTH14': 0.595270307, 'FSRPTH14': 1.0823096490000002}, '36099': {'FFRPTH14': 0.573328747, 'FSRPTH14': 0.917325995}, '36101': {'FFRPTH14': 0.467508181, 'FSRPTH14': 0.904526699}, '36103': {'FFRPTH14': 0.874270111, 'FSRPTH14': 0.9148564709999999}, '36105': {'FFRPTH14': 0.7505629220000001, 'FSRPTH14': 1.119260498}, '36107': {'FFRPTH14': 0.481251253, 'FSRPTH14': 0.7820332870000001}, '36109': {'FFRPTH14': 0.70684204, 'FSRPTH14': 1.002951543}, '36111': {'FFRPTH14': 0.8589875029999999, 'FSRPTH14': 1.4020892790000001}, '36113': {'FFRPTH14': 1.092761609, 'FSRPTH14': 2.185523217}, '36115': {'FFRPTH14': 0.5290835629999999, 'FSRPTH14': 0.7214775859999999}, '36117': {'FFRPTH14': 0.7061302970000001, 'FSRPTH14': 0.673539668}, '36119': {'FFRPTH14': 0.7896084240000001, 'FSRPTH14': 1.105246167}, '36121': {'FFRPTH14': 0.582693989, 'FSRPTH14': 0.606972905}, '36123': {'FFRPTH14': 0.555379245, 'FSRPTH14': 0.9124087590000001}, '37001': {'FFRPTH14': 0.808770669, 'FSRPTH14': 0.74458252}, '37003': {'FFRPTH14': 0.427899016, 'FSRPTH14': 0.454642704}, '37005': {'FFRPTH14': 0.367680853, 'FSRPTH14': 1.286882986}, '37007': {'FFRPTH14': 0.543372793, 'FSRPTH14': 0.426935766}, '37009': {'FFRPTH14': 0.663570007, 'FSRPTH14': 0.811030008}, '37011': {'FFRPTH14': 0.562651213, 'FSRPTH14': 1.744218759}, '37013': {'FFRPTH14': 0.69349585, 'FSRPTH14': 0.7355259009999999}, '37015': {'FFRPTH14': 0.547100368, 'FSRPTH14': 0.149209191}, '37017': {'FFRPTH14': 0.750209193, 'FSRPTH14': 0.432812996}, '37019': {'FFRPTH14': 0.7573462590000001, 'FSRPTH14': 1.009795012}, '37021': {'FFRPTH14': 0.878106802, 'FSRPTH14': 1.177461393}, '37023': {'FFRPTH14': 0.636971146, 'FSRPTH14': 0.5922714170000001}, '37025': {'FFRPTH14': 0.754803413, 'FSRPTH14': 0.661103679}, '37027': {'FFRPTH14': 0.6381620929999999, 'FSRPTH14': 0.503166266}, '37029': {'FFRPTH14': 0.096796051, 'FSRPTH14': 0.290388152}, '37031': {'FFRPTH14': 0.886486172, 'FSRPTH14': 1.46778858}, '37033': {'FFRPTH14': 0.259942813, 'FSRPTH14': 0.21661901}, '37035': {'FFRPTH14': 0.808883482, 'FSRPTH14': 0.828296686}, '37037': {'FFRPTH14': 0.465806865, 'FSRPTH14': 0.5240327229999999}, '37039': {'FFRPTH14': 0.810581777, 'FSRPTH14': 0.810581777}, '37041': {'FFRPTH14': 0.686247598, 'FSRPTH14': 0.48037331899999997}, '37043': {'FFRPTH14': 0.567054154, 'FSRPTH14': 1.2286173329999999}, '37045': {'FFRPTH14': 0.618072438, 'FSRPTH14': 0.659277267}, '37047': {'FFRPTH14': 0.860358541, 'FSRPTH14': 0.50919179}, '37049': {'FFRPTH14': 0.6984977509999999, 'FSRPTH14': 0.679360827}, '37051': {'FFRPTH14': 0.845774803, 'FSRPTH14': 0.640459905}, '37053': {'FFRPTH14': 0.840807175, 'FSRPTH14': 1.561499039}, '37055': {'FFRPTH14': 1.766180492, 'FSRPTH14': 3.646308113}, '37057': {'FFRPTH14': 0.536349895, 'FSRPTH14': 0.627773173}, '37059': {'FFRPTH14': 0.6999082879999999, 'FSRPTH14': 0.724043056}, '37061': {'FFRPTH14': 0.601182325, 'FSRPTH14': 0.417487726}, '37063': {'FFRPTH14': 0.8965564079999999, 'FSRPTH14': 0.7742987159999999}, '37065': {'FFRPTH14': 0.455099849, 'FSRPTH14': 0.273059909}, '37067': {'FFRPTH14': 0.747335052, 'FSRPTH14': 0.744597561}, '37069': {'FFRPTH14': 0.397709195, 'FSRPTH14': 0.318167356}, '37071': {'FFRPTH14': 0.776783642, 'FSRPTH14': 0.57311476}, '37073': {'FFRPTH14': 0.0, 'FSRPTH14': 0.25935852}, '37075': {'FFRPTH14': 0.578435909, 'FSRPTH14': 0.809810273}, '37077': {'FFRPTH14': 0.52991453, 'FSRPTH14': 0.307692308}, '37079': {'FFRPTH14': 0.237045465, 'FSRPTH14': 0.379272745}, '37081': {'FFRPTH14': 0.82793257, 'FSRPTH14': 0.802547845}, '37083': {'FFRPTH14': 0.8306588640000001, 'FSRPTH14': 0.5852369270000001}, '37085': {'FFRPTH14': 0.615792715, 'FSRPTH14': 0.418423255}, '37087': {'FFRPTH14': 0.638966891, 'FSRPTH14': 0.992080174}, '37089': {'FFRPTH14': 0.5398159229999999, 'FSRPTH14': 0.6027944470000001}, '37091': {'FFRPTH14': 0.740496956, 'FSRPTH14': 0.575942077}, '37093': {'FFRPTH14': 0.251884288, 'FSRPTH14': 0.116254287}, '37095': {'FFRPTH14': 0.704721635, 'FSRPTH14': 1.937984496}, '37097': {'FFRPTH14': 0.845957702, 'FSRPTH14': 0.809959502}, '37099': {'FFRPTH14': 0.7076450059999999, 'FSRPTH14': 0.927258974}, '37101': {'FFRPTH14': 0.639389714, 'FSRPTH14': 0.485054265}, '37103': {'FFRPTH14': 0.297737197, 'FSRPTH14': 0.198491465}, '37105': {'FFRPTH14': 0.771010023, 'FSRPTH14': 0.6704434979999999}, '37107': {'FFRPTH14': 0.889116868, 'FSRPTH14': 0.581345644}, '37109': {'FFRPTH14': 0.688972679, 'FSRPTH14': 0.513597815}, '37111': {'FFRPTH14': 0.62270655, 'FSRPTH14': 0.44479039299999995}, '37113': {'FFRPTH14': 0.9151291509999999, 'FSRPTH14': 1.446494465}, '37115': {'FFRPTH14': 0.28359408199999997, 'FSRPTH14': 0.472656804}, '37117': {'FFRPTH14': 0.724823058, 'FSRPTH14': 0.554276456}, '37119': {'FFRPTH14': 0.821696745, 'FSRPTH14': 0.8809537209999999}, '37121': {'FFRPTH14': 0.522500163, 'FSRPTH14': 1.110312847}, '37123': {'FFRPTH14': 0.6570542070000001, 'FSRPTH14': 0.43803613799999996}, '37125': {'FFRPTH14': 0.7198341159999999, 'FSRPTH14': 1.0314041059999999}, '37127': {'FFRPTH14': 0.773657492, 'FSRPTH14': 0.667677014}, '37129': {'FFRPTH14': 1.044854784, 'FSRPTH14': 1.109580301}, '37131': {'FFRPTH14': 0.293212139, 'FSRPTH14': 0.39094951899999997}, '37133': {'FFRPTH14': 0.810282053, 'FSRPTH14': 0.565065116}, '37135': {'FFRPTH14': 0.740635237, 'FSRPTH14': 0.74775673}, '37137': {'FFRPTH14': 1.0812480690000001, 'FSRPTH14': 0.8495520540000001}, '37139': {'FFRPTH14': 0.779148968, 'FSRPTH14': 0.9550858320000001}, '37141': {'FFRPTH14': 0.604444444, 'FSRPTH14': 0.675555556}, '37143': {'FFRPTH14': 0.44556661200000003, 'FSRPTH14': 0.44556661200000003}, '37145': {'FFRPTH14': 0.664417868, 'FSRPTH14': 0.281099867}, '37147': {'FFRPTH14': 0.9124399790000001, 'FSRPTH14': 0.650113485}, '37149': {'FFRPTH14': 0.44210836600000003, 'FSRPTH14': 0.9333398829999999}, '37151': {'FFRPTH14': 0.546302652, 'FSRPTH14': 0.567314292}, '37153': {'FFRPTH14': 0.502919117, 'FSRPTH14': 0.5685172629999999}, '37155': {'FFRPTH14': 0.504600772, 'FSRPTH14': 0.415553577}, '37157': {'FFRPTH14': 0.68705287, 'FSRPTH14': 0.697958471}, '37159': {'FFRPTH14': 0.584289115, 'FSRPTH14': 0.6997042490000001}, '37161': {'FFRPTH14': 0.585585586, 'FSRPTH14': 0.7057057059999999}, '37163': {'FFRPTH14': 0.515222482, 'FSRPTH14': 0.421545667}, '37165': {'FFRPTH14': 0.646503261, 'FSRPTH14': 0.562176748}, '37167': {'FFRPTH14': 0.726072607, 'FSRPTH14': 0.742574257}, '37169': {'FFRPTH14': 0.517029665, 'FSRPTH14': 0.517029665}, '37171': {'FFRPTH14': 0.8359828970000001, 'FSRPTH14': 0.8908014470000001}, '37173': {'FFRPTH14': 1.190976601, 'FSRPTH14': 1.190976601}, '37175': {'FFRPTH14': 0.5447117570000001, 'FSRPTH14': 0.847329399}, '37177': {'FFRPTH14': 0.972053463, 'FSRPTH14': 0.972053463}, '37179': {'FFRPTH14': 0.535302515, 'FSRPTH14': 0.43922257600000003}, '37181': {'FFRPTH14': 0.6276056839999999, 'FSRPTH14': 0.448289775}, '37183': {'FFRPTH14': 0.849111487, 'FSRPTH14': 0.78402629}, '37185': {'FFRPTH14': 0.543720034, 'FSRPTH14': 0.543720034}, '37187': {'FFRPTH14': 0.6364359589999999, 'FSRPTH14': 0.715990453}, '37189': {'FFRPTH14': 0.7420091320000001, 'FSRPTH14': 1.560121766}, '37191': {'FFRPTH14': 0.594587645, 'FSRPTH14': 0.5624477729999999}, '37193': {'FFRPTH14': 0.508440106, 'FSRPTH14': 0.595601267}, '37195': {'FFRPTH14': 0.663382514, 'FSRPTH14': 0.552818761}, '37197': {'FFRPTH14': 0.476291279, 'FSRPTH14': 0.6879762909999999}, '37199': {'FFRPTH14': 0.39741115, 'FSRPTH14': 0.624503236}, '38001': {'FFRPTH14': 0.0, 'FSRPTH14': 1.6778523490000001}, '38003': {'FFRPTH14': 0.71787509, 'FSRPTH14': 1.2562814070000001}, '38005': {'FFRPTH14': 0.0, 'FSRPTH14': 0.731743012}, '38007': {'FFRPTH14': 0.0, 'FSRPTH14': 6.6592674810000005}, '38009': {'FFRPTH14': 0.7518796990000001, 'FSRPTH14': 1.203007519}, '38011': {'FFRPTH14': 1.231906375, 'FSRPTH14': 1.847859563}, '38013': {'FFRPTH14': 0.890868597, 'FSRPTH14': 1.781737194}, '38015': {'FFRPTH14': 0.629813376, 'FSRPTH14': 0.618764019}, '38017': {'FFRPTH14': 0.6886021379999999, 'FSRPTH14': 0.65267507}, '38019': {'FFRPTH14': 0.5188067439999999, 'FSRPTH14': 1.815823606}, '38021': {'FFRPTH14': 0.388349515, 'FSRPTH14': 0.970873786}, '38023': {'FFRPTH14': 0.411184211, 'FSRPTH14': 1.644736842}, '38025': {'FFRPTH14': 0.227324392, 'FSRPTH14': 0.454648784}, '38027': {'FFRPTH14': 0.841396719, 'FSRPTH14': 0.42069835899999997}, '38029': {'FFRPTH14': 0.584453536, 'FSRPTH14': 0.8766803040000001}, '38031': {'FFRPTH14': 1.189767995, 'FSRPTH14': 0.892325996}, '38033': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '38035': {'FFRPTH14': 0.7128803220000001, 'FSRPTH14': 0.655849896}, '38037': {'FFRPTH14': 0.0, 'FSRPTH14': 0.847098687}, '38039': {'FFRPTH14': 0.431220354, 'FSRPTH14': 1.7248814140000002}, '38041': {'FFRPTH14': 0.37593985, 'FSRPTH14': 0.7518796990000001}, '38043': {'FFRPTH14': 0.0, 'FSRPTH14': 1.650165017}, '38045': {'FFRPTH14': 0.241021933, 'FSRPTH14': 1.6871535309999999}, '38047': {'FFRPTH14': 0.0, 'FSRPTH14': 2.057613169}, '38049': {'FFRPTH14': 0.0, 'FSRPTH14': 0.6680026720000001}, '38051': {'FFRPTH14': 0.357015352, 'FSRPTH14': 1.7850767580000002}, '38053': {'FFRPTH14': 0.090942161, 'FSRPTH14': 0.9094216079999999}, '38055': {'FFRPTH14': 0.10440593, 'FSRPTH14': 1.044059303}, '38057': {'FFRPTH14': 0.571689915, 'FSRPTH14': 0.914703865}, '38059': {'FFRPTH14': 0.502984374, 'FSRPTH14': 0.435919791}, '38061': {'FFRPTH14': 0.613371499, 'FSRPTH14': 0.817828665}, '38063': {'FFRPTH14': 0.328407225, 'FSRPTH14': 0.985221675}, '38065': {'FFRPTH14': 0.0, 'FSRPTH14': 1.081081081}, '38067': {'FFRPTH14': 0.140291807, 'FSRPTH14': 0.982042649}, '38069': {'FFRPTH14': 0.68119891, 'FSRPTH14': 0.908265213}, '38071': {'FFRPTH14': 0.9512279490000001, 'FSRPTH14': 1.037703217}, '38073': {'FFRPTH14': 0.550863019, 'FSRPTH14': 0.734484025}, '38075': {'FFRPTH14': 0.77309625, 'FSRPTH14': 0.77309625}, '38077': {'FFRPTH14': 0.669425511, 'FSRPTH14': 0.547711782}, '38079': {'FFRPTH14': 0.410509031, 'FSRPTH14': 0.47892720299999997}, '38081': {'FFRPTH14': 0.0, 'FSRPTH14': 0.508776393}, '38083': {'FFRPTH14': 0.0, 'FSRPTH14': 0.754147813}, '38085': {'FFRPTH14': 0.226142017, 'FSRPTH14': 0.226142017}, '38087': {'FFRPTH14': 0.0, 'FSRPTH14': 2.614379085}, '38089': {'FFRPTH14': 0.6914263140000001, 'FSRPTH14': 0.856051626}, '38091': {'FFRPTH14': 0.0, 'FSRPTH14': 1.023017903}, '38093': {'FFRPTH14': 0.899238014, 'FSRPTH14': 0.8519096979999999}, '38095': {'FFRPTH14': 0.432900433, 'FSRPTH14': 2.164502165}, '38097': {'FFRPTH14': 0.8661222470000001, 'FSRPTH14': 0.24746349899999998}, '38099': {'FFRPTH14': 0.273473108, 'FSRPTH14': 0.911577028}, '38101': {'FFRPTH14': 0.691802145, 'FSRPTH14': 0.6773895999999999}, '38103': {'FFRPTH14': 0.715648855, 'FSRPTH14': 2.146946565}, '38105': {'FFRPTH14': 0.871459695, 'FSRPTH14': 0.653594771}, '39001': {'FFRPTH14': 0.533257492, 'FSRPTH14': 0.284403996}, '39003': {'FFRPTH14': 0.9424980959999999, 'FSRPTH14': 0.533130236}, '39005': {'FFRPTH14': 0.5845196570000001, 'FSRPTH14': 0.509097766}, '39007': {'FFRPTH14': 0.8671540209999999, 'FSRPTH14': 0.7965717170000001}, '39009': {'FFRPTH14': 0.911717893, 'FSRPTH14': 0.448132524}, '39011': {'FFRPTH14': 0.741694117, 'FSRPTH14': 0.5453633210000001}, '39013': {'FFRPTH14': 0.777414664, 'FSRPTH14': 0.518276443}, '39015': {'FFRPTH14': 0.566687823, 'FSRPTH14': 0.498685284}, '39017': {'FFRPTH14': 0.726965613, 'FSRPTH14': 0.5772962220000001}, '39019': {'FFRPTH14': 0.532160216, 'FSRPTH14': 0.425728173}, '39021': {'FFRPTH14': 0.48558577, 'FSRPTH14': 0.357800041}, '39023': {'FFRPTH14': 0.915388784, 'FSRPTH14': 0.38812484399999997}, '39025': {'FFRPTH14': 0.654891844, 'FSRPTH14': 0.520936694}, '39027': {'FFRPTH14': 0.741006334, 'FSRPTH14': 0.5019720329999999}, '39029': {'FFRPTH14': 0.71911133, 'FSRPTH14': 0.46363756799999994}, '39031': {'FFRPTH14': 0.575090371, 'FSRPTH14': 0.38339358100000004}, '39033': {'FFRPTH14': 0.7768361579999999, 'FSRPTH14': 0.44726930299999995}, '39035': {'FFRPTH14': 0.8747225809999999, 'FSRPTH14': 0.7628025409999999}, '39037': {'FFRPTH14': 0.55559813, 'FSRPTH14': 0.459805349}, '39039': {'FFRPTH14': 0.701116593, 'FSRPTH14': 0.9348221240000001}, '39041': {'FFRPTH14': 0.877782067, 'FSRPTH14': 0.7667373479999999}, '39043': {'FFRPTH14': 1.028643773, 'FSRPTH14': 1.041831513}, '39045': {'FFRPTH14': 0.658327847, 'FSRPTH14': 0.578530532}, '39047': {'FFRPTH14': 1.111111111, 'FSRPTH14': 0.5902777779999999}, '39049': {'FFRPTH14': 0.898981885, 'FSRPTH14': 0.6577916229999999}, '39051': {'FFRPTH14': 0.587130108, 'FSRPTH14': 0.70455613}, '39053': {'FFRPTH14': 1.019837484, 'FSRPTH14': 0.230285883}, '39055': {'FFRPTH14': 0.6150909379999999, 'FSRPTH14': 0.646905987}, '39057': {'FFRPTH14': 0.805762422, 'FSRPTH14': 0.598217556}, '39059': {'FFRPTH14': 0.9598383429999999, 'FSRPTH14': 0.60621369}, '39061': {'FFRPTH14': 0.844252205, 'FSRPTH14': 0.847971377}, '39063': {'FFRPTH14': 0.8229687940000001, 'FSRPTH14': 0.783147723}, '39065': {'FFRPTH14': 0.6290099379999999, 'FSRPTH14': 0.503207951}, '39067': {'FFRPTH14': 0.45036350799999997, 'FSRPTH14': 0.900727015}, '39069': {'FFRPTH14': 0.680101657, 'FSRPTH14': 0.7158964809999999}, '39071': {'FFRPTH14': 0.627250552, 'FSRPTH14': 0.46463003799999997}, '39073': {'FFRPTH14': 0.661444735, 'FSRPTH14': 0.591818973}, '39075': {'FFRPTH14': 0.318921135, 'FSRPTH14': 0.36448129799999995}, '39077': {'FFRPTH14': 0.8175222259999999, 'FSRPTH14': 0.40876111299999995}, '39079': {'FFRPTH14': 0.7328691829999999, 'FSRPTH14': 0.335898375}, '39081': {'FFRPTH14': 0.694300824, 'FSRPTH14': 0.6795284659999999}, '39083': {'FFRPTH14': 0.65394739, 'FSRPTH14': 0.441414488}, '39085': {'FFRPTH14': 0.7852375340000001, 'FSRPTH14': 0.772150242}, '39087': {'FFRPTH14': 0.6166528729999999, 'FSRPTH14': 0.27587102199999997}, '39089': {'FFRPTH14': 0.7143278820000001, 'FSRPTH14': 0.543125332}, '39091': {'FFRPTH14': 0.791087086, 'FSRPTH14': 0.593315314}, '39093': {'FFRPTH14': 0.608120546, 'FSRPTH14': 0.51608068}, '39095': {'FFRPTH14': 0.8569078720000001, 'FSRPTH14': 0.7787983070000001}, '39097': {'FFRPTH14': 0.500933558, 'FSRPTH14': 0.34154560799999995}, '39099': {'FFRPTH14': 0.8619063140000001, 'FSRPTH14': 0.703246943}, '39101': {'FFRPTH14': 0.669506999, 'FSRPTH14': 0.380401704}, '39103': {'FFRPTH14': 0.670344091, 'FSRPTH14': 0.53400292}, '39105': {'FFRPTH14': 0.6857828640000001, 'FSRPTH14': 0.214307145}, '39107': {'FFRPTH14': 0.636771081, 'FSRPTH14': 0.9306654259999999}, '39109': {'FFRPTH14': 0.750721848, 'FSRPTH14': 0.615976901}, '39111': {'FFRPTH14': 0.414794331, 'FSRPTH14': 0.622191497}, '39113': {'FFRPTH14': 0.8947396059999999, 'FSRPTH14': 0.611499186}, '39115': {'FFRPTH14': 0.13474365, 'FSRPTH14': 0.404230951}, '39117': {'FFRPTH14': 0.39827036899999996, 'FSRPTH14': 0.170687301}, '39119': {'FFRPTH14': 0.745764292, 'FSRPTH14': 0.5826283529999999}, '39121': {'FFRPTH14': 0.556986702, 'FSRPTH14': 0.348116689}, '39123': {'FFRPTH14': 0.874763085, 'FSRPTH14': 1.628031297}, '39125': {'FFRPTH14': 0.526620675, 'FSRPTH14': 0.315972405}, '39127': {'FFRPTH14': 0.558472021, 'FSRPTH14': 0.390930414}, '39129': {'FFRPTH14': 0.632955904, 'FSRPTH14': 0.29889584399999997}, '39131': {'FFRPTH14': 0.6724235559999999, 'FSRPTH14': 0.460079275}, '39133': {'FFRPTH14': 0.765990042, 'FSRPTH14': 0.5374284970000001}, '39135': {'FFRPTH14': 0.529024191, 'FSRPTH14': 0.384744866}, '39137': {'FFRPTH14': 0.643820784, 'FSRPTH14': 0.526762459}, '39139': {'FFRPTH14': 0.7872595170000001, 'FSRPTH14': 0.533040298}, '39141': {'FFRPTH14': 0.686893298, 'FSRPTH14': 0.479529284}, '39143': {'FFRPTH14': 0.598215324, 'FSRPTH14': 0.614832417}, '39145': {'FFRPTH14': 0.750731316, 'FSRPTH14': 0.5436330220000001}, '39147': {'FFRPTH14': 0.502972929, 'FSRPTH14': 0.7005694370000001}, '39149': {'FFRPTH14': 0.612857756, 'FSRPTH14': 0.653714939}, '39151': {'FFRPTH14': 0.8410160329999999, 'FSRPTH14': 0.662699342}, '39153': {'FFRPTH14': 0.819274352, 'FSRPTH14': 0.664276501}, '39155': {'FFRPTH14': 0.687218228, 'FSRPTH14': 0.614109906}, '39157': {'FFRPTH14': 0.8406259429999999, 'FSRPTH14': 0.7220761309999999}, '39159': {'FFRPTH14': 0.502082713, 'FSRPTH14': 0.48348705700000005}, '39161': {'FFRPTH14': 0.562153046, 'FSRPTH14': 0.597287612}, '39163': {'FFRPTH14': 0.528940608, 'FSRPTH14': 0.075562944}, '39165': {'FFRPTH14': 0.58648645, 'FSRPTH14': 0.559417845}, '39167': {'FFRPTH14': 0.7678107590000001, 'FSRPTH14': 0.57177397}, '39169': {'FFRPTH14': 0.614521755, 'FSRPTH14': 0.536624631}, '39171': {'FFRPTH14': 0.72403529, 'FSRPTH14': 0.455874071}, '39173': {'FFRPTH14': 0.902847442, 'FSRPTH14': 0.7485145459999999}, '39175': {'FFRPTH14': 0.671050866, 'FSRPTH14': 0.671050866}, '40001': {'FFRPTH14': 0.405661228, 'FSRPTH14': 0.180293879}, '40003': {'FFRPTH14': 0.345423143, 'FSRPTH14': 1.03626943}, '40005': {'FFRPTH14': 0.507393447, 'FSRPTH14': 0.579878226}, '40007': {'FFRPTH14': 0.18228217300000002, 'FSRPTH14': 0.546846518}, '40009': {'FFRPTH14': 0.63315183, 'FSRPTH14': 0.759782196}, '40011': {'FFRPTH14': 0.20167389300000002, 'FSRPTH14': 1.3108803070000001}, '40013': {'FFRPTH14': 0.674369465, 'FSRPTH14': 0.49453760700000005}, '40015': {'FFRPTH14': 0.37520892299999997, 'FSRPTH14': 0.545758434}, '40017': {'FFRPTH14': 0.617369696, 'FSRPTH14': 0.486178636}, '40019': {'FFRPTH14': 0.614489666, 'FSRPTH14': 0.757870588}, '40021': {'FFRPTH14': 0.537845721, 'FSRPTH14': 0.599904843}, '40023': {'FFRPTH14': 0.395752259, 'FSRPTH14': 0.593628389}, '40025': {'FFRPTH14': 1.307759372, 'FSRPTH14': 1.307759372}, '40027': {'FFRPTH14': 0.829912415, 'FSRPTH14': 0.626139277}, '40029': {'FFRPTH14': 0.17220595800000002, 'FSRPTH14': 0.8610297920000001}, '40031': {'FFRPTH14': 0.735805747, 'FSRPTH14': 0.5918437529999999}, '40033': {'FFRPTH14': 0.325203252, 'FSRPTH14': 0.325203252}, '40035': {'FFRPTH14': 0.34288849299999996, 'FSRPTH14': 0.754354684}, '40037': {'FFRPTH14': 0.523841885, 'FSRPTH14': 0.410578774}, '40039': {'FFRPTH14': 0.847457627, 'FSRPTH14': 0.8813559320000001}, '40041': {'FFRPTH14': 0.386044492, 'FSRPTH14': 0.603194518}, '40043': {'FFRPTH14': 0.0, 'FSRPTH14': 0.814000814}, '40045': {'FFRPTH14': 0.240963855, 'FSRPTH14': 1.2048192770000001}, '40047': {'FFRPTH14': 0.6815552140000001, 'FSRPTH14': 0.570604365}, '40049': {'FFRPTH14': 0.6168136129999999, 'FSRPTH14': 0.6530967670000001}, '40051': {'FFRPTH14': 0.464218071, 'FSRPTH14': 0.501355517}, '40053': {'FFRPTH14': 0.0, 'FSRPTH14': 0.666518551}, '40055': {'FFRPTH14': 0.162575191, 'FSRPTH14': 0.812875955}, '40057': {'FFRPTH14': 0.35739814200000003, 'FSRPTH14': 0.35739814200000003}, '40059': {'FFRPTH14': 0.262329486, 'FSRPTH14': 0.786988458}, '40061': {'FFRPTH14': 0.31017369699999997, 'FSRPTH14': 0.465260546}, '40063': {'FFRPTH14': 0.5794582070000001, 'FSRPTH14': 0.289729103}, '40065': {'FFRPTH14': 0.653896454, 'FSRPTH14': 0.769289945}, '40067': {'FFRPTH14': 0.317863954, 'FSRPTH14': 0.7946598859999999}, '40069': {'FFRPTH14': 0.360262992, 'FSRPTH14': 0.180131496}, '40071': {'FFRPTH14': 0.8355688459999999, 'FSRPTH14': 0.7256255770000001}, '40073': {'FFRPTH14': 0.450682462, 'FSRPTH14': 0.901364924}, '40075': {'FFRPTH14': 0.21422450699999998, 'FSRPTH14': 0.642673522}, '40077': {'FFRPTH14': 0.187038249, 'FSRPTH14': 0.187038249}, '40079': {'FFRPTH14': 0.361729065, 'FSRPTH14': 0.38182512399999996}, '40081': {'FFRPTH14': 0.462173951, 'FSRPTH14': 0.7221467979999999}, '40083': {'FFRPTH14': 0.331301352, 'FSRPTH14': 0.530082163}, '40085': {'FFRPTH14': 0.511613629, 'FSRPTH14': 1.330195436}, '40087': {'FFRPTH14': 0.6700077720000001, 'FSRPTH14': 0.589606839}, '40089': {'FFRPTH14': 0.453857791, 'FSRPTH14': 0.453857791}, '40091': {'FFRPTH14': 0.39824771, 'FSRPTH14': 0.597371565}, '40093': {'FFRPTH14': 0.258064516, 'FSRPTH14': 0.516129032}, '40095': {'FFRPTH14': 0.556173526, 'FSRPTH14': 0.617970585}, '40097': {'FFRPTH14': 0.73500588, 'FSRPTH14': 0.8085064679999999}, '40099': {'FFRPTH14': 0.724480185, 'FSRPTH14': 0.652032167}, '40101': {'FFRPTH14': 0.7860961040000001, 'FSRPTH14': 0.585998914}, '40103': {'FFRPTH14': 0.522011484, 'FSRPTH14': 0.609013398}, '40105': {'FFRPTH14': 0.19004180899999998, 'FSRPTH14': 0.47510452299999995}, '40107': {'FFRPTH14': 0.164122764, 'FSRPTH14': 0.492368291}, '40109': {'FFRPTH14': 0.9344635640000001, 'FSRPTH14': 0.7909007259999999}, '40111': {'FFRPTH14': 0.562731807, 'FSRPTH14': 0.409259496}, '40113': {'FFRPTH14': 0.437673246, 'FSRPTH14': 0.291782164}, '40115': {'FFRPTH14': 0.46721694399999997, 'FSRPTH14': 0.560660333}, '40117': {'FFRPTH14': 0.42680324399999997, 'FSRPTH14': 0.487775136}, '40119': {'FFRPTH14': 0.7849097979999999, 'FSRPTH14': 0.573108741}, '40121': {'FFRPTH14': 0.672253843, 'FSRPTH14': 0.6498453820000001}, '40123': {'FFRPTH14': 0.552558874, 'FSRPTH14': 0.631495856}, '40125': {'FFRPTH14': 0.863377477, 'FSRPTH14': 0.417763295}, '40127': {'FFRPTH14': 0.359550562, 'FSRPTH14': 0.629213483}, '40129': {'FFRPTH14': 0.0, 'FSRPTH14': 0.531773465}, '40131': {'FFRPTH14': 0.378555921, 'FSRPTH14': 0.445359906}, '40133': {'FFRPTH14': 0.629400889, 'FSRPTH14': 0.43271311100000004}, '40135': {'FFRPTH14': 0.580298854, 'FSRPTH14': 0.483582378}, '40137': {'FFRPTH14': 0.606837031, 'FSRPTH14': 0.606837031}, '40139': {'FFRPTH14': 0.36608246, 'FSRPTH14': 1.09824738}, '40141': {'FFRPTH14': 0.524383849, 'FSRPTH14': 0.655479811}, '40143': {'FFRPTH14': 0.924399379, 'FSRPTH14': 0.767156185}, '40145': {'FFRPTH14': 0.40950041, 'FSRPTH14': 0.264193813}, '40147': {'FFRPTH14': 0.750909756, 'FSRPTH14': 0.6931474670000001}, '40149': {'FFRPTH14': 0.173205162, 'FSRPTH14': 0.606218065}, '40151': {'FFRPTH14': 0.8613264429999999, 'FSRPTH14': 0.7536606370000001}, '40153': {'FFRPTH14': 0.603836685, 'FSRPTH14': 0.88253054}, '41001': {'FFRPTH14': 0.560433402, 'FSRPTH14': 1.3699483159999999}, '41003': {'FFRPTH14': 0.683534918, 'FSRPTH14': 0.892070995}, '41005': {'FFRPTH14': 0.59751071, 'FSRPTH14': 0.777270288}, '41007': {'FFRPTH14': 0.800555052, 'FSRPTH14': 2.855313017}, '41009': {'FFRPTH14': 0.465031642, 'FSRPTH14': 0.647000546}, '41011': {'FFRPTH14': 0.6722689079999999, 'FSRPTH14': 1.040416166}, '41013': {'FFRPTH14': 0.428612249, 'FSRPTH14': 0.619106582}, '41015': {'FFRPTH14': 0.671591672, 'FSRPTH14': 1.567047235}, '41017': {'FFRPTH14': 0.78644036, 'FSRPTH14': 1.144446792}, '41019': {'FFRPTH14': 0.635680365, 'FSRPTH14': 0.803948697}, '41021': {'FFRPTH14': 1.035196687, 'FSRPTH14': 2.587991718}, '41023': {'FFRPTH14': 0.69637883, 'FSRPTH14': 1.6713091919999998}, '41025': {'FFRPTH14': 0.9823182709999999, 'FSRPTH14': 1.683974179}, '41027': {'FFRPTH14': 1.04872187, 'FSRPTH14': 1.704173039}, '41029': {'FFRPTH14': 0.727577073, 'FSRPTH14': 0.9463257359999999}, '41031': {'FFRPTH14': 0.495674117, 'FSRPTH14': 0.6308579670000001}, '41033': {'FFRPTH14': 0.550245816, 'FSRPTH14': 0.825368725}, '41035': {'FFRPTH14': 0.549996181, 'FSRPTH14': 1.008326331}, '41037': {'FFRPTH14': 0.765501403, 'FSRPTH14': 1.913753509}, '41039': {'FFRPTH14': 0.8204567209999999, 'FSRPTH14': 0.901386125}, '41041': {'FFRPTH14': 0.689566004, 'FSRPTH14': 2.241089514}, '41043': {'FFRPTH14': 0.519454405, 'FSRPTH14': 0.6786420459999999}, '41045': {'FFRPTH14': 0.658783227, 'FSRPTH14': 1.021114002}, '41047': {'FFRPTH14': 0.689951243, 'FSRPTH14': 0.696084143}, '41049': {'FFRPTH14': 0.08938947, 'FSRPTH14': 0.8045052290000001}, '41051': {'FFRPTH14': 0.858748159, 'FSRPTH14': 1.5488366340000002}, '41053': {'FFRPTH14': 0.539042045, 'FSRPTH14': 0.5903793829999999}, '41055': {'FFRPTH14': 0.5847953220000001, 'FSRPTH14': 1.754385965}, '41057': {'FFRPTH14': 0.473522216, 'FSRPTH14': 1.933549049}, '41059': {'FFRPTH14': 0.521478391, 'FSRPTH14': 0.821328466}, '41061': {'FFRPTH14': 0.700634463, 'FSRPTH14': 0.817406874}, '41063': {'FFRPTH14': 0.586510264, 'FSRPTH14': 3.0791788860000002}, '41065': {'FFRPTH14': 0.705467372, 'FSRPTH14': 1.254164217}, '41067': {'FFRPTH14': 0.655419735, 'FSRPTH14': 0.7744254859999999}, '41069': {'FFRPTH14': 0.0, 'FSRPTH14': 1.454545455}, '41071': {'FFRPTH14': 0.461880147, 'FSRPTH14': 0.8353151590000001}, '42001': {'FFRPTH14': 0.717698645, 'FSRPTH14': 0.678372692}, '42003': {'FFRPTH14': 0.809742905, 'FSRPTH14': 0.86009803}, '42005': {'FFRPTH14': 0.398318212, 'FSRPTH14': 0.516338423}, '42007': {'FFRPTH14': 0.602153585, 'FSRPTH14': 0.52540852}, '42009': {'FFRPTH14': 0.36775221700000005, 'FSRPTH14': 0.735504433}, '42011': {'FFRPTH14': 0.650243781, 'FSRPTH14': 0.681668202}, '42013': {'FFRPTH14': 0.746298281, 'FSRPTH14': 0.754237625}, '42015': {'FFRPTH14': 0.485562605, 'FSRPTH14': 0.7607147479999999}, '42017': {'FFRPTH14': 0.753169455, 'FSRPTH14': 0.7739135290000001}, '42019': {'FFRPTH14': 0.570067171, 'FSRPTH14': 0.6883829990000001}, '42021': {'FFRPTH14': 0.740568641, 'FSRPTH14': 0.631661488}, '42023': {'FFRPTH14': 0.208116545, 'FSRPTH14': 1.040582726}, '42025': {'FFRPTH14': 0.543132478, 'FSRPTH14': 0.837975823}, '42027': {'FFRPTH14': 0.617353945, 'FSRPTH14': 0.686648776}, '42029': {'FFRPTH14': 0.657196792, 'FSRPTH14': 0.668897626}, '42031': {'FFRPTH14': 0.592462842, 'FSRPTH14': 0.9273331440000001}, '42033': {'FFRPTH14': 0.652781712, 'FSRPTH14': 0.837531253}, '42035': {'FFRPTH14': 0.427726758, 'FSRPTH14': 0.679330733}, '42037': {'FFRPTH14': 0.8045052290000001, 'FSRPTH14': 0.864098209}, '42039': {'FFRPTH14': 0.5391453970000001, 'FSRPTH14': 0.814453685}, '42041': {'FFRPTH14': 0.6932992020000001, 'FSRPTH14': 0.7015039259999999}, '42043': {'FFRPTH14': 0.8067694959999999, 'FSRPTH14': 0.8178211329999999}, '42045': {'FFRPTH14': 0.742503908, 'FSRPTH14': 0.555989768}, '42047': {'FFRPTH14': 0.544976598, 'FSRPTH14': 0.8334936209999999}, '42049': {'FFRPTH14': 0.664408874, 'FSRPTH14': 0.68595727}, '42051': {'FFRPTH14': 0.6040899120000001, 'FSRPTH14': 0.671211014}, '42053': {'FFRPTH14': 0.26602819899999997, 'FSRPTH14': 0.931098696}, '42055': {'FFRPTH14': 0.647515894, 'FSRPTH14': 0.634434764}, '42057': {'FFRPTH14': 0.341716785, 'FSRPTH14': 0.27337342800000003}, '42059': {'FFRPTH14': 0.6870491240000001, 'FSRPTH14': 0.528499326}, '42061': {'FFRPTH14': 0.415300546, 'FSRPTH14': 0.524590164}, '42063': {'FFRPTH14': 0.570086425, 'FSRPTH14': 0.6042916110000001}, '42065': {'FFRPTH14': 0.560060935, 'FSRPTH14': 0.7392804340000001}, '42067': {'FFRPTH14': 0.40329085299999995, 'FSRPTH14': 0.44361993899999996}, '42069': {'FFRPTH14': 0.68165044, 'FSRPTH14': 1.095341742}, '42071': {'FFRPTH14': 0.6112652820000001, 'FSRPTH14': 0.6112652820000001}, '42073': {'FFRPTH14': 0.563247006, 'FSRPTH14': 0.5857768870000001}, '42075': {'FFRPTH14': 0.572019449, 'FSRPTH14': 0.484016457}, '42077': {'FFRPTH14': 0.687490743, 'FSRPTH14': 0.7210268759999999}, '42079': {'FFRPTH14': 0.649250852, 'FSRPTH14': 0.9472162190000001}, '42081': {'FFRPTH14': 0.635149518, 'FSRPTH14': 0.909808768}, '42083': {'FFRPTH14': 0.657987498, 'FSRPTH14': 0.7754852659999999}, '42085': {'FFRPTH14': 0.626719125, 'FSRPTH14': 0.748581178}, '42087': {'FFRPTH14': 0.579996563, 'FSRPTH14': 0.7088846879999999}, '42089': {'FFRPTH14': 0.63734863, 'FSRPTH14': 0.8778575470000001}, '42091': {'FFRPTH14': 0.8043023440000001, 'FSRPTH14': 0.785939277}, '42093': {'FFRPTH14': 0.590097098, 'FSRPTH14': 0.75103267}, '42095': {'FFRPTH14': 0.661890412, 'FSRPTH14': 0.844824948}, '42097': {'FFRPTH14': 0.5428766070000001, 'FSRPTH14': 0.734480116}, '42099': {'FFRPTH14': 0.372529255, 'FSRPTH14': 0.525923653}, '42101': {'FFRPTH14': 0.874833445, 'FSRPTH14': 0.703071274}, '42103': {'FFRPTH14': 0.42711466200000003, 'FSRPTH14': 0.7118577709999999}, '42105': {'FFRPTH14': 0.29059630399999997, 'FSRPTH14': 1.046146693}, '42107': {'FFRPTH14': 0.521272729, 'FSRPTH14': 0.754473686}, '42109': {'FFRPTH14': 0.669593036, 'FSRPTH14': 0.9175904570000001}, '42111': {'FFRPTH14': 0.393607809, 'FSRPTH14': 0.787215618}, '42113': {'FFRPTH14': 0.631014356, 'FSRPTH14': 1.577535889}, '42115': {'FFRPTH14': 0.405534351, 'FSRPTH14': 0.596374046}, '42117': {'FFRPTH14': 0.44944883399999996, 'FSRPTH14': 0.969863273}, '42119': {'FFRPTH14': 0.512546241, 'FSRPTH14': 0.80224629}, '42121': {'FFRPTH14': 0.44835509700000004, 'FSRPTH14': 0.579125334}, '42123': {'FFRPTH14': 0.49136427299999996, 'FSRPTH14': 0.663341768}, '42125': {'FFRPTH14': 0.648455475, 'FSRPTH14': 0.634045353}, '42127': {'FFRPTH14': 0.42800723700000004, 'FSRPTH14': 1.303476586}, '42129': {'FFRPTH14': 0.654013136, 'FSRPTH14': 0.751419348}, '42131': {'FFRPTH14': 0.35547972, 'FSRPTH14': 0.959795244}, '42133': {'FFRPTH14': 0.680650248, 'FSRPTH14': 0.5354448620000001}, '44001': {'FFRPTH14': 0.570729719, 'FSRPTH14': 1.100693029}, '44003': {'FFRPTH14': 0.8841625890000001, 'FSRPTH14': 1.029504384}, '44005': {'FFRPTH14': 0.898516234, 'FSRPTH14': 1.590616576}, '44007': {'FFRPTH14': 0.7437014809999999, 'FSRPTH14': 0.925670993}, '44009': {'FFRPTH14': 0.81324564, 'FSRPTH14': 1.3659368509999998}, '45001': {'FFRPTH14': 0.36050470700000004, 'FSRPTH14': 0.36050470700000004}, '45003': {'FFRPTH14': 0.6676661429999999, 'FSRPTH14': 0.588760144}, '45005': {'FFRPTH14': 0.206291903, 'FSRPTH14': 0.206291903}, '45007': {'FFRPTH14': 0.7831544009999999, 'FSRPTH14': 0.757222136}, '45009': {'FFRPTH14': 0.724542221, 'FSRPTH14': 0.263469899}, '45011': {'FFRPTH14': 0.637551801, 'FSRPTH14': 0.455394144}, '45013': {'FFRPTH14': 0.59709301, 'FSRPTH14': 1.580874827}, '45015': {'FFRPTH14': 0.529754547, 'FSRPTH14': 0.39857723100000003}, '45017': {'FFRPTH14': 0.268853341, 'FSRPTH14': 0.13442667}, '45019': {'FFRPTH14': 0.8766059079999999, 'FSRPTH14': 1.3857722140000002}, '45021': {'FFRPTH14': 0.678280737, 'FSRPTH14': 0.642581751}, '45023': {'FFRPTH14': 0.49478925100000004, 'FSRPTH14': 0.556637907}, '45025': {'FFRPTH14': 0.411924119, 'FSRPTH14': 0.60704607}, '45027': {'FFRPTH14': 0.439715065, 'FSRPTH14': 0.46902940200000004}, '45029': {'FFRPTH14': 0.608932779, 'FSRPTH14': 0.608932779}, '45031': {'FFRPTH14': 0.5162318029999999, 'FSRPTH14': 0.45723388299999995}, '45033': {'FFRPTH14': 0.867414142, 'FSRPTH14': 0.385517396}, '45035': {'FFRPTH14': 0.505155958, 'FSRPTH14': 0.43780183100000003}, '45037': {'FFRPTH14': 0.18830264, 'FSRPTH14': 0.45192633600000004}, '45039': {'FFRPTH14': 0.217618384, 'FSRPTH14': 0.304665738}, '45041': {'FFRPTH14': 0.696683928, 'FSRPTH14': 0.7397777790000001}, '45043': {'FFRPTH14': 0.608822997, 'FSRPTH14': 1.431556777}, '45045': {'FFRPTH14': 0.8410115340000001, 'FSRPTH14': 0.880369216}, '45047': {'FFRPTH14': 0.86306099, 'FSRPTH14': 0.719217491}, '45049': {'FFRPTH14': 0.588091154, 'FSRPTH14': 0.588091154}, '45051': {'FFRPTH14': 0.970444932, 'FSRPTH14': 1.7468008780000002}, '45053': {'FFRPTH14': 0.8465218990000001, 'FSRPTH14': 0.662495399}, '45055': {'FFRPTH14': 0.6491347510000001, 'FSRPTH14': 0.554139421}, '45057': {'FFRPTH14': 0.48100048100000004, 'FSRPTH14': 0.517075517}, '45059': {'FFRPTH14': 0.48096433299999997, 'FSRPTH14': 0.46593419799999997}, '45061': {'FFRPTH14': 0.490650384, 'FSRPTH14': 0.272583547}, '45063': {'FFRPTH14': 0.7916858590000001, 'FSRPTH14': 0.698122985}, '45065': {'FFRPTH14': 0.304692261, 'FSRPTH14': 0.406256348}, '45067': {'FFRPTH14': 0.6576269060000001, 'FSRPTH14': 0.407102371}, '45069': {'FFRPTH14': 0.358114883, 'FSRPTH14': 0.21486893}, '45071': {'FFRPTH14': 0.555805521, 'FSRPTH14': 0.767540958}, '45073': {'FFRPTH14': 0.571869348, 'FSRPTH14': 0.625066496}, '45075': {'FFRPTH14': 0.7659007659999999, 'FSRPTH14': 0.532800533}, '45077': {'FFRPTH14': 0.7560148879999999, 'FSRPTH14': 0.73109132}, '45079': {'FFRPTH14': 0.831743723, 'FSRPTH14': 0.679838433}, '45081': {'FFRPTH14': 0.24967542199999998, 'FSRPTH14': 0.399480675}, '45083': {'FFRPTH14': 0.7119935140000001, 'FSRPTH14': 0.6881468409999999}, '45085': {'FFRPTH14': 0.537440117, 'FSRPTH14': 0.611569788}, '45087': {'FFRPTH14': 0.466350983, 'FSRPTH14': 0.609843593}, '45089': {'FFRPTH14': 0.305857165, 'FSRPTH14': 0.367028598}, '45091': {'FFRPTH14': 0.627684984, 'FSRPTH14': 0.635836737}, '46003': {'FFRPTH14': 0.72859745, 'FSRPTH14': 1.4571949}, '46005': {'FFRPTH14': 0.550388024, 'FSRPTH14': 0.495349221}, '46007': {'FFRPTH14': 0.29154519, 'FSRPTH14': 0.0}, '46009': {'FFRPTH14': 0.142389292, 'FSRPTH14': 0.42716787700000003}, '46011': {'FFRPTH14': 0.600348202, 'FSRPTH14': 0.900522303}, '46013': {'FFRPTH14': 0.729014789, 'FSRPTH14': 0.7550510309999999}, '46015': {'FFRPTH14': 0.9417969490000001, 'FSRPTH14': 0.7534375590000001}, '46017': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '46019': {'FFRPTH14': 0.582637405, 'FSRPTH14': 1.068168576}, '46021': {'FFRPTH14': 0.721500722, 'FSRPTH14': 4.329004329}, '46023': {'FFRPTH14': 0.5383869929999999, 'FSRPTH14': 0.5383869929999999}, '46025': {'FFRPTH14': 0.0, 'FSRPTH14': 0.548696845}, '46027': {'FFRPTH14': 0.574217628, 'FSRPTH14': 0.8613264429999999}, '46029': {'FFRPTH14': 0.680077314, 'FSRPTH14': 1.324361085}, '46031': {'FFRPTH14': 0.0, 'FSRPTH14': 0.47824007700000004}, '46033': {'FFRPTH14': 0.473653049, 'FSRPTH14': 2.368265246}, '46035': {'FFRPTH14': 0.854915766, 'FSRPTH14': 1.005783254}, '46037': {'FFRPTH14': 0.715819613, 'FSRPTH14': 1.252684324}, '46039': {'FFRPTH14': 0.463821892, 'FSRPTH14': 1.1595547309999998}, '46041': {'FFRPTH14': 0.0, 'FSRPTH14': 0.176616037}, '46043': {'FFRPTH14': 0.0, 'FSRPTH14': 1.345442314}, '46045': {'FFRPTH14': 0.251067035, 'FSRPTH14': 1.255335174}, '46047': {'FFRPTH14': 0.73046019, 'FSRPTH14': 1.46092038}, '46049': {'FFRPTH14': 0.42426813700000005, 'FSRPTH14': 2.121340687}, '46051': {'FFRPTH14': 0.9667173040000001, 'FSRPTH14': 1.38102472}, '46053': {'FFRPTH14': 0.0, 'FSRPTH14': 2.371354043}, '46055': {'FFRPTH14': 0.541418517, 'FSRPTH14': 1.082837033}, '46057': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '46059': {'FFRPTH14': 0.298953662, 'FSRPTH14': 0.597907324}, '46061': {'FFRPTH14': 0.0, 'FSRPTH14': 0.292483182}, '46063': {'FFRPTH14': 0.0, 'FSRPTH14': 0.8}, '46065': {'FFRPTH14': 0.510146242, 'FSRPTH14': 0.850243737}, '46067': {'FFRPTH14': 0.27777777800000003, 'FSRPTH14': 0.694444444}, '46069': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '46071': {'FFRPTH14': 0.610873549, 'FSRPTH14': 0.916310324}, '46073': {'FFRPTH14': 0.0, 'FSRPTH14': 1.4947683109999998}, '46075': {'FFRPTH14': 2.051282051, 'FSRPTH14': 4.102564103}, '46077': {'FFRPTH14': 0.197044335, 'FSRPTH14': 0.78817734}, '46079': {'FFRPTH14': 0.40426908200000006, 'FSRPTH14': 1.1319534279999999}, '46081': {'FFRPTH14': 0.932797988, 'FSRPTH14': 1.257249463}, '46083': {'FFRPTH14': 0.310390316, 'FSRPTH14': 0.387987895}, '46085': {'FFRPTH14': 0.515862781, 'FSRPTH14': 0.515862781}, '46087': {'FFRPTH14': 0.17702248199999998, 'FSRPTH14': 1.239157373}, '46089': {'FFRPTH14': 0.0, 'FSRPTH14': 1.646768217}, '46091': {'FFRPTH14': 0.42707666, 'FSRPTH14': 1.0676916509999999}, '46093': {'FFRPTH14': 0.25973062199999997, 'FSRPTH14': 0.779191867}, '46095': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '46097': {'FFRPTH14': 1.7271157169999998, 'FSRPTH14': 0.863557858}, '46099': {'FFRPTH14': 0.836605024, 'FSRPTH14': 0.672564823}, '46101': {'FFRPTH14': 0.15705984, 'FSRPTH14': 0.9423590390000001}, '46103': {'FFRPTH14': 0.812993108, 'FSRPTH14': 0.89614013}, '46105': {'FFRPTH14': 0.0, 'FSRPTH14': 1.318826245}, '46107': {'FFRPTH14': 0.854700855, 'FSRPTH14': 1.709401709}, '46109': {'FFRPTH14': 0.38557933299999997, 'FSRPTH14': 0.674763833}, '46111': {'FFRPTH14': 0.42808219200000003, 'FSRPTH14': 0.8561643840000001}, '46113': {'FFRPTH14': 0.14066676, 'FSRPTH14': 0.07033338}, '46115': {'FFRPTH14': 0.454683237, 'FSRPTH14': 0.454683237}, '46117': {'FFRPTH14': 1.005698961, 'FSRPTH14': 1.340931948}, '46119': {'FFRPTH14': 0.0, 'FSRPTH14': 3.47705146}, '46121': {'FFRPTH14': 0.10119409, 'FSRPTH14': 0.10119409}, '46123': {'FFRPTH14': 0.544267054, 'FSRPTH14': 0.9071117559999999}, '46125': {'FFRPTH14': 0.24177949699999998, 'FSRPTH14': 1.329787234}, '46127': {'FFRPTH14': 0.465766185, 'FSRPTH14': 0.5988422379999999}, '46129': {'FFRPTH14': 1.270186899, 'FSRPTH14': 0.9072763559999999}, '46135': {'FFRPTH14': 0.793510845, 'FSRPTH14': 0.969846588}, '46137': {'FFRPTH14': 0.353857042, 'FSRPTH14': 0.353857042}, '47001': {'FFRPTH14': 0.8473678640000001, 'FSRPTH14': 0.476644423}, '47003': {'FFRPTH14': 0.514723229, 'FSRPTH14': 0.47182962700000003}, '47005': {'FFRPTH14': 0.495509446, 'FSRPTH14': 0.86714153}, '47007': {'FFRPTH14': 0.0, 'FSRPTH14': 0.14356471199999998}, '47009': {'FFRPTH14': 0.506573584, 'FSRPTH14': 0.5698952820000001}, '47011': {'FFRPTH14': 0.718621025, 'FSRPTH14': 0.534110221}, '47013': {'FFRPTH14': 0.6763865929999999, 'FSRPTH14': 0.300616263}, '47015': {'FFRPTH14': 0.508831867, 'FSRPTH14': 0.36345133399999996}, '47017': {'FFRPTH14': 0.422982023, 'FSRPTH14': 0.599224533}, '47019': {'FFRPTH14': 0.580107584, 'FSRPTH14': 0.369159371}, '47021': {'FFRPTH14': 0.47781913299999995, 'FSRPTH14': 0.352077256}, '47023': {'FFRPTH14': 0.51786639, 'FSRPTH14': 0.51786639}, '47025': {'FFRPTH14': 0.443150165, 'FSRPTH14': 0.253228665}, '47027': {'FFRPTH14': 0.515132003, 'FSRPTH14': 0.515132003}, '47029': {'FFRPTH14': 0.45230960600000003, 'FSRPTH14': 0.76327246}, '47031': {'FFRPTH14': 0.7086511390000001, 'FSRPTH14': 0.801894709}, '47033': {'FFRPTH14': 0.409053722, 'FSRPTH14': 0.204526861}, '47035': {'FFRPTH14': 0.5863585410000001, 'FSRPTH14': 0.60360438}, '47037': {'FFRPTH14': 0.9351429720000001, 'FSRPTH14': 0.963571318}, '47039': {'FFRPTH14': 0.342876736, 'FSRPTH14': 0.85719184}, '47041': {'FFRPTH14': 0.311397135, 'FSRPTH14': 0.518995225}, '47043': {'FFRPTH14': 0.790904597, 'FSRPTH14': 0.6722689079999999}, '47045': {'FFRPTH14': 0.527217609, 'FSRPTH14': 0.474495848}, '47047': {'FFRPTH14': 0.281971752, 'FSRPTH14': 0.461408321}, '47049': {'FFRPTH14': 0.560067208, 'FSRPTH14': 0.280033604}, '47051': {'FFRPTH14': 0.45891502799999995, 'FSRPTH14': 0.603835563}, '47053': {'FFRPTH14': 0.54576326, 'FSRPTH14': 0.54576326}, '47055': {'FFRPTH14': 0.65851038, 'FSRPTH14': 0.41590129299999995}, '47057': {'FFRPTH14': 0.17494751600000003, 'FSRPTH14': 0.262421274}, '47059': {'FFRPTH14': 0.599985366, 'FSRPTH14': 0.643886734}, '47061': {'FFRPTH14': 0.37243947899999996, 'FSRPTH14': 0.297951583}, '47063': {'FFRPTH14': 0.824925439, 'FSRPTH14': 0.507646424}, '47065': {'FFRPTH14': 0.902568191, 'FSRPTH14': 0.8598599170000001}, '47067': {'FFRPTH14': 0.150217816, 'FSRPTH14': 0.300435632}, '47069': {'FFRPTH14': 0.308107067, 'FSRPTH14': 0.308107067}, '47071': {'FFRPTH14': 0.46385775, 'FSRPTH14': 1.0823347509999999}, '47073': {'FFRPTH14': 0.42301930000000004, 'FSRPTH14': 0.38776769200000005}, '47075': {'FFRPTH14': 0.549903767, 'FSRPTH14': 0.49491339}, '47077': {'FFRPTH14': 0.6426505770000001, 'FSRPTH14': 0.42843371799999996}, '47079': {'FFRPTH14': 0.589988821, 'FSRPTH14': 0.745249037}, '47081': {'FFRPTH14': 0.24606299199999998, 'FSRPTH14': 0.41010498700000003}, '47083': {'FFRPTH14': 0.725777186, 'FSRPTH14': 0.8467400509999999}, '47085': {'FFRPTH14': 0.9374138409999999, 'FSRPTH14': 0.9374138409999999}, '47087': {'FFRPTH14': 0.17289073300000002, 'FSRPTH14': 0.2593361}, '47089': {'FFRPTH14': 0.53154128, 'FSRPTH14': 0.47459042799999995}, '47091': {'FFRPTH14': 0.33596506, 'FSRPTH14': 0.727924296}, '47093': {'FFRPTH14': 0.8737439929999999, 'FSRPTH14': 0.7132604020000001}, '47095': {'FFRPTH14': 0.262088848, 'FSRPTH14': 0.65522212}, '47097': {'FFRPTH14': 0.292162735, 'FSRPTH14': 0.219122051}, '47099': {'FFRPTH14': 0.544069641, 'FSRPTH14': 0.473104036}, '47101': {'FFRPTH14': 0.8399126490000001, 'FSRPTH14': 0.33596506}, '47103': {'FFRPTH14': 0.624312513, 'FSRPTH14': 0.683770848}, '47105': {'FFRPTH14': 0.7484587659999999, 'FSRPTH14': 0.47271079899999996}, '47107': {'FFRPTH14': 0.646068483, 'FSRPTH14': 0.513054384}, '47109': {'FFRPTH14': 0.647199909, 'FSRPTH14': 0.609129326}, '47111': {'FFRPTH14': 0.565143677, 'FSRPTH14': 0.347780724}, '47113': {'FFRPTH14': 0.8352176659999999, 'FSRPTH14': 0.8046609220000001}, '47115': {'FFRPTH14': 0.774457, 'FSRPTH14': 0.7392544090000001}, '47117': {'FFRPTH14': 0.607630561, 'FSRPTH14': 0.319805558}, '47119': {'FFRPTH14': 0.8302636959999999, 'FSRPTH14': 0.619774309}, '47121': {'FFRPTH14': 0.170925562, 'FSRPTH14': 0.5982394670000001}, '47123': {'FFRPTH14': 0.6632325960000001, 'FSRPTH14': 0.619017089}, '47125': {'FFRPTH14': 0.615915899, 'FSRPTH14': 0.658029806}, '47127': {'FFRPTH14': 0.316505776, 'FSRPTH14': 0.633011552}, '47129': {'FFRPTH14': 0.184672207, 'FSRPTH14': 0.092336103}, '47131': {'FFRPTH14': 0.581752367, 'FSRPTH14': 0.678711095}, '47133': {'FFRPTH14': 0.499364445, 'FSRPTH14': 0.36317414200000003}, '47135': {'FFRPTH14': 0.511378164, 'FSRPTH14': 0.383533623}, '47137': {'FFRPTH14': 0.780640125, 'FSRPTH14': 0.9758001559999999}, '47139': {'FFRPTH14': 0.298864316, 'FSRPTH14': 0.41841004200000004}, '47141': {'FFRPTH14': 0.8224903929999999, 'FSRPTH14': 0.782040046}, '47143': {'FFRPTH14': 0.612726326, 'FSRPTH14': 0.673998958}, '47145': {'FFRPTH14': 0.644574202, 'FSRPTH14': 0.28437097100000003}, '47147': {'FFRPTH14': 0.719752053, 'FSRPTH14': 0.558175061}, '47149': {'FFRPTH14': 0.699189356, 'FSRPTH14': 0.609194686}, '47151': {'FFRPTH14': 0.5912584710000001, 'FSRPTH14': 0.318369946}, '47153': {'FFRPTH14': 0.8161044609999999, 'FSRPTH14': 0.34004352600000004}, '47155': {'FFRPTH14': 1.019871727, 'FSRPTH14': 1.629691936}, '47157': {'FFRPTH14': 0.725391802, 'FSRPTH14': 0.5975694579999999}, '47159': {'FFRPTH14': 0.47345994, 'FSRPTH14': 0.47345994}, '47161': {'FFRPTH14': 0.45184125299999994, 'FSRPTH14': 0.45184125299999994}, '47163': {'FFRPTH14': 0.897820398, 'FSRPTH14': 0.7386323840000001}, '47165': {'FFRPTH14': 0.555857932, 'FSRPTH14': 0.567438306}, '47167': {'FFRPTH14': 0.40569268, 'FSRPTH14': 0.438148094}, '47169': {'FFRPTH14': 0.499875031, 'FSRPTH14': 0.37490627299999996}, '47171': {'FFRPTH14': 0.556699883, 'FSRPTH14': 0.7237098479999999}, '47173': {'FFRPTH14': 0.20928164100000002, 'FSRPTH14': 0.20928164100000002}, '47175': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '47177': {'FFRPTH14': 0.600465361, 'FSRPTH14': 0.475368411}, '47179': {'FFRPTH14': 0.80797199, 'FSRPTH14': 0.895106225}, '47181': {'FFRPTH14': 0.236504464, 'FSRPTH14': 0.41388281200000004}, '47183': {'FFRPTH14': 0.66912984, 'FSRPTH14': 0.5236668320000001}, '47185': {'FFRPTH14': 0.6843846240000001, 'FSRPTH14': 0.456256416}, '47187': {'FFRPTH14': 0.779628312, 'FSRPTH14': 0.838100436}, '47189': {'FFRPTH14': 0.725816743, 'FSRPTH14': 0.622128637}, '48001': {'FFRPTH14': 0.416471446, 'FSRPTH14': 0.451177399}, '48003': {'FFRPTH14': 0.57218058, 'FSRPTH14': 0.57218058}, '48005': {'FFRPTH14': 0.729344729, 'FSRPTH14': 0.535612536}, '48007': {'FFRPTH14': 0.680762454, 'FSRPTH14': 1.2814352070000001}, '48009': {'FFRPTH14': 0.453977982, 'FSRPTH14': 0.226988991}, '48011': {'FFRPTH14': 1.023017903, 'FSRPTH14': 0.0}, '48013': {'FFRPTH14': 0.460501528, 'FSRPTH14': 0.5023653029999999}, '48015': {'FFRPTH14': 0.515216047, 'FSRPTH14': 0.515216047}, '48017': {'FFRPTH14': 0.578871201, 'FSRPTH14': 0.578871201}, '48019': {'FFRPTH14': 0.335056481, 'FSRPTH14': 0.62224775}, '48021': {'FFRPTH14': 0.461130538, 'FSRPTH14': 0.5379856279999999}, '48023': {'FFRPTH14': 0.83518931, 'FSRPTH14': 1.113585746}, '48025': {'FFRPTH14': 0.48686973200000006, 'FSRPTH14': 0.456440374}, '48027': {'FFRPTH14': 0.665370359, 'FSRPTH14': 0.531688643}, '48029': {'FFRPTH14': 0.7004816079999999, 'FSRPTH14': 0.691321464}, '48031': {'FFRPTH14': 0.832408435, 'FSRPTH14': 0.9248982609999999}, '48033': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48035': {'FFRPTH14': 0.562429696, 'FSRPTH14': 0.33745781799999996}, '48037': {'FFRPTH14': 0.997051729, 'FSRPTH14': 0.589654248}, '48039': {'FFRPTH14': 0.576711502, 'FSRPTH14': 0.547136553}, '48041': {'FFRPTH14': 0.827149633, 'FSRPTH14': 0.602432681}, '48043': {'FFRPTH14': 0.763109125, 'FSRPTH14': 1.1991714820000001}, '48045': {'FFRPTH14': 0.0, 'FSRPTH14': 0.651041667}, '48047': {'FFRPTH14': 0.834028357, 'FSRPTH14': 0.973033083}, '48049': {'FFRPTH14': 0.956099116, 'FSRPTH14': 0.690516028}, '48051': {'FFRPTH14': 0.695531212, 'FSRPTH14': 0.695531212}, '48053': {'FFRPTH14': 0.62301137, 'FSRPTH14': 1.13477071}, '48055': {'FFRPTH14': 0.527505652, 'FSRPTH14': 0.477267018}, '48057': {'FFRPTH14': 0.6422902229999999, 'FSRPTH14': 0.963435335}, '48059': {'FFRPTH14': 0.666025309, 'FSRPTH14': 0.148005624}, '48061': {'FFRPTH14': 0.570895735, 'FSRPTH14': 0.5732744679999999}, '48063': {'FFRPTH14': 0.55463117, 'FSRPTH14': 0.475398146}, '48065': {'FFRPTH14': 0.665225345, 'FSRPTH14': 0.166306336}, '48067': {'FFRPTH14': 0.5617791879999999, 'FSRPTH14': 0.49568751899999997}, '48069': {'FFRPTH14': 0.771109112, 'FSRPTH14': 0.771109112}, '48071': {'FFRPTH14': 0.655393892, 'FSRPTH14': 0.471883602}, '48073': {'FFRPTH14': 0.5107854310000001, 'FSRPTH14': 0.353620683}, '48075': {'FFRPTH14': 0.987445338, 'FSRPTH14': 1.5516998169999998}, '48077': {'FFRPTH14': 0.38572806200000004, 'FSRPTH14': 0.19286403100000002}, '48079': {'FFRPTH14': 0.0, 'FSRPTH14': 0.340715503}, '48081': {'FFRPTH14': 0.0, 'FSRPTH14': 0.921942225}, '48083': {'FFRPTH14': 0.711743772, 'FSRPTH14': 0.8303677340000001}, '48085': {'FFRPTH14': 0.83706019, 'FSRPTH14': 0.735392961}, '48087': {'FFRPTH14': 1.325820351, 'FSRPTH14': 0.331455088}, '48089': {'FFRPTH14': 0.772238042, 'FSRPTH14': 0.6757082870000001}, '48091': {'FFRPTH14': 0.679095187, 'FSRPTH14': 0.8084466509999999}, '48093': {'FFRPTH14': 0.44280442799999997, 'FSRPTH14': 0.664206642}, '48095': {'FFRPTH14': 0.740740741, 'FSRPTH14': 0.49382716}, '48097': {'FFRPTH14': 0.46438430399999997, 'FSRPTH14': 0.8255720959999999}, '48099': {'FFRPTH14': 0.42349329, 'FSRPTH14': 0.383790794}, '48101': {'FFRPTH14': 0.7067137809999999, 'FSRPTH14': 0.7067137809999999}, '48103': {'FFRPTH14': 0.606060606, 'FSRPTH14': 0.606060606}, '48105': {'FFRPTH14': 1.311647429, 'FSRPTH14': 1.311647429}, '48107': {'FFRPTH14': 0.169520258, 'FSRPTH14': 0.169520258}, '48109': {'FFRPTH14': 0.882612533, 'FSRPTH14': 1.3239188}, '48111': {'FFRPTH14': 0.840925018, 'FSRPTH14': 0.9810791870000001}, '48113': {'FFRPTH14': 0.820681654, 'FSRPTH14': 0.6872762179999999}, '48115': {'FFRPTH14': 0.9721806759999999, 'FSRPTH14': 0.523481902}, '48117': {'FFRPTH14': 0.5730659029999999, 'FSRPTH14': 0.468872102}, '48119': {'FFRPTH14': 0.19091256199999998, 'FSRPTH14': 0.38182512399999996}, '48121': {'FFRPTH14': 0.65572639, 'FSRPTH14': 0.5853751779999999}, '48123': {'FFRPTH14': 0.773544769, 'FSRPTH14': 0.9185844129999999}, '48125': {'FFRPTH14': 1.3525698830000001, 'FSRPTH14': 1.3525698830000001}, '48127': {'FFRPTH14': 0.541076743, 'FSRPTH14': 0.721435657}, '48129': {'FFRPTH14': 1.1289867340000002, 'FSRPTH14': 0.8467400509999999}, '48131': {'FFRPTH14': 0.433538542, 'FSRPTH14': 0.34683083299999995}, '48133': {'FFRPTH14': 0.935299296, 'FSRPTH14': 0.7152288729999999}, '48135': {'FFRPTH14': 0.701736147, 'FSRPTH14': 0.519804553}, '48137': {'FFRPTH14': 0.532197978, 'FSRPTH14': 0.532197978}, '48139': {'FFRPTH14': 0.608849024, 'FSRPTH14': 0.45192917299999996}, '48141': {'FFRPTH14': 0.6838738940000001, 'FSRPTH14': 0.613086947}, '48143': {'FFRPTH14': 0.8468876879999999, 'FSRPTH14': 0.7223453809999999}, '48145': {'FFRPTH14': 0.412031314, 'FSRPTH14': 0.353169698}, '48147': {'FFRPTH14': 0.385162361, 'FSRPTH14': 0.444418109}, '48149': {'FFRPTH14': 0.805379938, 'FSRPTH14': 1.087262916}, '48151': {'FFRPTH14': 0.26102845199999997, 'FSRPTH14': 0.5220569039999999}, '48153': {'FFRPTH14': 1.008572869, 'FSRPTH14': 0.840477391}, '48155': {'FFRPTH14': 1.568627451, 'FSRPTH14': 0.784313725}, '48157': {'FFRPTH14': 0.579270295, 'FSRPTH14': 0.5063143379999999}, '48159': {'FFRPTH14': 0.471698113, 'FSRPTH14': 0.5660377360000001}, '48161': {'FFRPTH14': 0.506021658, 'FSRPTH14': 0.506021658}, '48163': {'FFRPTH14': 0.755490799, 'FSRPTH14': 0.431709028}, '48165': {'FFRPTH14': 0.6177606179999999, 'FSRPTH14': 0.6177606179999999}, '48167': {'FFRPTH14': 0.7288397759999999, 'FSRPTH14': 0.697012712}, '48169': {'FFRPTH14': 0.777000777, 'FSRPTH14': 0.46620046600000004}, '48171': {'FFRPTH14': 0.587774295, 'FSRPTH14': 1.84169279}, '48173': {'FFRPTH14': 0.774593338, 'FSRPTH14': 0.774593338}, '48175': {'FFRPTH14': 0.39740363, 'FSRPTH14': 0.662339383}, '48177': {'FFRPTH14': 0.6841950929999999, 'FSRPTH14': 0.6841950929999999}, '48179': {'FFRPTH14': 0.520742927, 'FSRPTH14': 0.911300122}, '48181': {'FFRPTH14': 0.7042595559999999, 'FSRPTH14': 0.574740557}, '48183': {'FFRPTH14': 0.965877731, 'FSRPTH14': 0.8522450570000001}, '48185': {'FFRPTH14': 0.294420727, 'FSRPTH14': 0.478433682}, '48187': {'FFRPTH14': 0.482173175, 'FSRPTH14': 0.37351443100000004}, '48189': {'FFRPTH14': 0.5472350229999999, 'FSRPTH14': 0.51843318}, '48191': {'FFRPTH14': 1.271051795, 'FSRPTH14': 1.588814744}, '48193': {'FFRPTH14': 0.8537626540000001, 'FSRPTH14': 0.7317965609999999}, '48195': {'FFRPTH14': 0.7260845890000001, 'FSRPTH14': 1.089126883}, '48197': {'FFRPTH14': 1.018329939, 'FSRPTH14': 1.018329939}, '48199': {'FFRPTH14': 0.75511048, 'FSRPTH14': 0.359576419}, '48201': {'FFRPTH14': 0.703611723, 'FSRPTH14': 0.62480721}, '48203': {'FFRPTH14': 0.5346322920000001, 'FSRPTH14': 0.40097421899999997}, '48205': {'FFRPTH14': 0.0, 'FSRPTH14': 0.8211528990000001}, '48207': {'FFRPTH14': 0.520020801, 'FSRPTH14': 0.866701335}, '48209': {'FFRPTH14': 0.7080124309999999, 'FSRPTH14': 0.62153763}, '48211': {'FFRPTH14': 0.7177033490000001, 'FSRPTH14': 0.9569377990000001}, '48213': {'FFRPTH14': 0.7188800609999999, 'FSRPTH14': 0.605372683}, '48215': {'FFRPTH14': 0.436784735, 'FSRPTH14': 0.458443482}, '48217': {'FFRPTH14': 0.60261708, 'FSRPTH14': 0.545224977}, '48219': {'FFRPTH14': 0.678627476, 'FSRPTH14': 0.678627476}, '48221': {'FFRPTH14': 0.778917305, 'FSRPTH14': 0.630552104}, '48223': {'FFRPTH14': 0.38974416100000003, 'FSRPTH14': 0.6681328470000001}, '48225': {'FFRPTH14': 0.4397344, 'FSRPTH14': 0.571654721}, '48227': {'FFRPTH14': 0.7639627840000001, 'FSRPTH14': 0.791247169}, '48229': {'FFRPTH14': 0.0, 'FSRPTH14': 1.245717845}, '48231': {'FFRPTH14': 0.5989174279999999, 'FSRPTH14': 0.42941249600000003}, '48233': {'FFRPTH14': 0.7807835390000001, 'FSRPTH14': 0.688926652}, '48235': {'FFRPTH14': 0.635324015, 'FSRPTH14': 1.27064803}, '48237': {'FFRPTH14': 0.677583286, 'FSRPTH14': 0.677583286}, '48239': {'FFRPTH14': 0.6784720809999999, 'FSRPTH14': 0.407083249}, '48241': {'FFRPTH14': 0.646939694, 'FSRPTH14': 0.450045005}, '48243': {'FFRPTH14': 0.45372050799999997, 'FSRPTH14': 1.361161525}, '48245': {'FFRPTH14': 0.705691121, 'FSRPTH14': 0.54314429}, '48247': {'FFRPTH14': 0.761179829, 'FSRPTH14': 0.380589914}, '48249': {'FFRPTH14': 0.749643315, 'FSRPTH14': 0.556186976}, '48251': {'FFRPTH14': 0.660501982, 'FSRPTH14': 0.387409816}, '48253': {'FFRPTH14': 0.401284109, 'FSRPTH14': 0.250802568}, '48255': {'FFRPTH14': 0.6037837110000001, 'FSRPTH14': 1.140480343}, '48257': {'FFRPTH14': 0.629292675, 'FSRPTH14': 0.485454349}, '48259': {'FFRPTH14': 0.694444444, 'FSRPTH14': 0.7973251029999999}, '48261': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48263': {'FFRPTH14': 0.0, 'FSRPTH14': 1.27388535}, '48265': {'FFRPTH14': 0.7713302479999999, 'FSRPTH14': 0.791107947}, '48267': {'FFRPTH14': 0.901306895, 'FSRPTH14': 0.901306895}, '48269': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48271': {'FFRPTH14': 0.283607487, 'FSRPTH14': 0.567214974}, '48273': {'FFRPTH14': 0.8698353529999999, 'FSRPTH14': 0.7145076109999999}, '48275': {'FFRPTH14': 0.259201659, 'FSRPTH14': 0.518403318}, '48277': {'FFRPTH14': 0.706742322, 'FSRPTH14': 0.72693496}, '48279': {'FFRPTH14': 0.442021512, 'FSRPTH14': 0.6630322679999999}, '48281': {'FFRPTH14': 0.496130185, 'FSRPTH14': 0.8434213140000001}, '48283': {'FFRPTH14': 0.936580145, 'FSRPTH14': 0.5351886539999999}, '48285': {'FFRPTH14': 0.45636631, 'FSRPTH14': 0.5070736779999999}, '48287': {'FFRPTH14': 0.657030223, 'FSRPTH14': 0.716760244}, '48289': {'FFRPTH14': 0.5930846329999999, 'FSRPTH14': 1.0082438759999999}, '48291': {'FFRPTH14': 0.512052434, 'FSRPTH14': 0.371238015}, '48293': {'FFRPTH14': 0.46760755, 'FSRPTH14': 0.680156436}, '48295': {'FFRPTH14': 0.281452294, 'FSRPTH14': 0.844356882}, '48297': {'FFRPTH14': 0.744355306, 'FSRPTH14': 1.240592176}, '48299': {'FFRPTH14': 0.9738595590000001, 'FSRPTH14': 0.7688364940000001}, '48301': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48303': {'FFRPTH14': 0.904841925, 'FSRPTH14': 0.57147911}, '48305': {'FFRPTH14': 0.519840582, 'FSRPTH14': 0.346560388}, '48307': {'FFRPTH14': 0.975728747, 'FSRPTH14': 1.097694841}, '48309': {'FFRPTH14': 0.805123213, 'FSRPTH14': 0.529902523}, '48311': {'FFRPTH14': 0.0, 'FSRPTH14': 3.726708075}, '48313': {'FFRPTH14': 1.226462737, 'FSRPTH14': 0.721448669}, '48315': {'FFRPTH14': 0.492659375, 'FSRPTH14': 0.689723125}, '48317': {'FFRPTH14': 0.183150183, 'FSRPTH14': 0.366300366}, '48319': {'FFRPTH14': 1.22819946, 'FSRPTH14': 1.719479243}, '48321': {'FFRPTH14': 0.62980914, 'FSRPTH14': 0.876256195}, '48323': {'FFRPTH14': 0.526103502, 'FSRPTH14': 0.45595636799999995}, '48325': {'FFRPTH14': 0.584624379, 'FSRPTH14': 0.6890215890000001}, '48327': {'FFRPTH14': 0.465766185, 'FSRPTH14': 0.931532371}, '48329': {'FFRPTH14': 0.750818199, 'FSRPTH14': 0.59038696}, '48331': {'FFRPTH14': 0.535949868, 'FSRPTH14': 0.618403694}, '48333': {'FFRPTH14': 0.41067761799999997, 'FSRPTH14': 1.026694045}, '48335': {'FFRPTH14': 0.550903482, 'FSRPTH14': 0.661084178}, '48337': {'FFRPTH14': 0.618046972, 'FSRPTH14': 0.5665430570000001}, '48339': {'FFRPTH14': 0.59158257, 'FSRPTH14': 0.549189031}, '48341': {'FFRPTH14': 0.496658841, 'FSRPTH14': 0.812714466}, '48343': {'FFRPTH14': 0.7062701090000001, 'FSRPTH14': 0.47084673899999996}, '48345': {'FFRPTH14': 0.0, 'FSRPTH14': 1.7346053769999998}, '48347': {'FFRPTH14': 0.6278617479999999, 'FSRPTH14': 0.459411035}, '48349': {'FFRPTH14': 0.663969291, 'FSRPTH14': 0.45647888799999997}, '48351': {'FFRPTH14': 0.070731362, 'FSRPTH14': 0.070731362}, '48353': {'FFRPTH14': 0.8613264429999999, 'FSRPTH14': 0.927582323}, '48355': {'FFRPTH14': 0.850595557, 'FSRPTH14': 0.788836144}, '48357': {'FFRPTH14': 0.37181632299999995, 'FSRPTH14': 1.30135713}, '48359': {'FFRPTH14': 1.4492753619999998, 'FSRPTH14': 1.4492753619999998}, '48361': {'FFRPTH14': 0.767082569, 'FSRPTH14': 0.35956995399999997}, '48363': {'FFRPTH14': 0.960990888, 'FSRPTH14': 0.960990888}, '48365': {'FFRPTH14': 0.21035802899999997, 'FSRPTH14': 0.336572847}, '48367': {'FFRPTH14': 0.6820174729999999, 'FSRPTH14': 0.5115131039999999}, '48369': {'FFRPTH14': 0.10092854300000001, 'FSRPTH14': 0.201857085}, '48371': {'FFRPTH14': 0.503366262, 'FSRPTH14': 0.880890958}, '48373': {'FFRPTH14': 0.542546496, 'FSRPTH14': 0.412335337}, '48375': {'FFRPTH14': 0.953735601, 'FSRPTH14': 0.90440445}, '48377': {'FFRPTH14': 0.860091743, 'FSRPTH14': 1.003440367}, '48379': {'FFRPTH14': 0.634517766, 'FSRPTH14': 0.453226976}, '48381': {'FFRPTH14': 0.616128529, 'FSRPTH14': 0.506941195}, '48383': {'FFRPTH14': 0.266311585, 'FSRPTH14': 0.798934754}, '48385': {'FFRPTH14': 0.593295758, 'FSRPTH14': 0.889943637}, '48387': {'FFRPTH14': 0.321388398, 'FSRPTH14': 0.562429696}, '48389': {'FFRPTH14': 0.348456338, 'FSRPTH14': 0.836295212}, '48391': {'FFRPTH14': 1.095590249, 'FSRPTH14': 1.095590249}, '48393': {'FFRPTH14': 0.0, 'FSRPTH14': 1.077586207}, '48395': {'FFRPTH14': 0.545454545, 'FSRPTH14': 0.787878788}, '48397': {'FFRPTH14': 0.797184799, 'FSRPTH14': 0.831349862}, '48399': {'FFRPTH14': 0.480030722, 'FSRPTH14': 0.8640553}, '48401': {'FFRPTH14': 0.5563488679999999, 'FSRPTH14': 0.445079094}, '48403': {'FFRPTH14': 0.289855072, 'FSRPTH14': 0.579710145}, '48405': {'FFRPTH14': 0.116144019, 'FSRPTH14': 0.232288037}, '48407': {'FFRPTH14': 0.147606923, 'FSRPTH14': 0.221410384}, '48409': {'FFRPTH14': 0.82193828, 'FSRPTH14': 0.5081073}, '48411': {'FFRPTH14': 0.711490573, 'FSRPTH14': 1.600853789}, '48413': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '48415': {'FFRPTH14': 1.211911357, 'FSRPTH14': 0.692520776}, '48417': {'FFRPTH14': 0.5982650310000001, 'FSRPTH14': 0.8973975470000001}, '48419': {'FFRPTH14': 0.391926318, 'FSRPTH14': 0.548696845}, '48421': {'FFRPTH14': 0.324254215, 'FSRPTH14': 0.648508431}, '48423': {'FFRPTH14': 0.8225112179999999, 'FSRPTH14': 0.644300454}, '48425': {'FFRPTH14': 0.920174833, 'FSRPTH14': 0.805152979}, '48427': {'FFRPTH14': 0.42887777, 'FSRPTH14': 0.381224684}, '48429': {'FFRPTH14': 0.850611377, 'FSRPTH14': 0.9569377990000001}, '48431': {'FFRPTH14': 1.493651979, 'FSRPTH14': 0.0}, '48433': {'FFRPTH14': 2.138275125, 'FSRPTH14': 1.42551675}, '48435': {'FFRPTH14': 1.007049345, 'FSRPTH14': 1.258811682}, '48437': {'FFRPTH14': 0.131908719, 'FSRPTH14': 0.791452315}, '48439': {'FFRPTH14': 0.757700374, 'FSRPTH14': 0.6132541020000001}, '48441': {'FFRPTH14': 0.9101470290000001, 'FSRPTH14': 0.5771664089999999}, '48443': {'FFRPTH14': 1.078748652, 'FSRPTH14': 0.0}, '48445': {'FFRPTH14': 0.5494936810000001, 'FSRPTH14': 0.627992778}, '48447': {'FFRPTH14': 0.0, 'FSRPTH14': 2.487562189}, '48449': {'FFRPTH14': 0.584507476, 'FSRPTH14': 0.7075616809999999}, '48451': {'FFRPTH14': 0.6860592759999999, 'FSRPTH14': 0.7117864979999999}, '48453': {'FFRPTH14': 0.774880662, 'FSRPTH14': 0.823527879}, '48455': {'FFRPTH14': 0.35151856, 'FSRPTH14': 0.281214848}, '48457': {'FFRPTH14': 0.420207302, 'FSRPTH14': 0.373517602}, '48459': {'FFRPTH14': 0.446052436, 'FSRPTH14': 0.297368291}, '48461': {'FFRPTH14': 1.737116387, 'FSRPTH14': 0.8685581929999999}, '48463': {'FFRPTH14': 0.700667478, 'FSRPTH14': 0.8481764209999999}, '48465': {'FFRPTH14': 0.6329889329999999, 'FSRPTH14': 0.428798955}, '48467': {'FFRPTH14': 0.51030051, 'FSRPTH14': 0.68040068}, '48469': {'FFRPTH14': 0.779525916, 'FSRPTH14': 0.724629725}, '48471': {'FFRPTH14': 0.487182794, 'FSRPTH14': 0.5015117}, '48473': {'FFRPTH14': 0.44852627100000003, 'FSRPTH14': 0.234942332}, '48475': {'FFRPTH14': 0.516129032, 'FSRPTH14': 1.2903225809999999}, '48477': {'FFRPTH14': 0.7549799640000001, 'FSRPTH14': 0.842093037}, '48479': {'FFRPTH14': 0.659984325, 'FSRPTH14': 0.442489491}, '48481': {'FFRPTH14': 0.777302759, 'FSRPTH14': 0.558686358}, '48483': {'FFRPTH14': 0.700035002, 'FSRPTH14': 2.625131257}, '48485': {'FFRPTH14': 0.732877489, 'FSRPTH14': 0.732877489}, '48487': {'FFRPTH14': 1.002081246, 'FSRPTH14': 0.616665382}, '48489': {'FFRPTH14': 0.36524677, 'FSRPTH14': 0.36524677}, '48491': {'FFRPTH14': 0.656106285, 'FSRPTH14': 0.54777721}, '48493': {'FFRPTH14': 0.431015904, 'FSRPTH14': 0.560320676}, '48495': {'FFRPTH14': 0.383582662, 'FSRPTH14': 0.511443549}, '48497': {'FFRPTH14': 0.584055291, 'FSRPTH14': 0.48671274200000003}, '48499': {'FFRPTH14': 0.350042005, 'FSRPTH14': 0.70008401}, '48501': {'FFRPTH14': 0.844798455, 'FSRPTH14': 1.086169442}, '48503': {'FFRPTH14': 0.980926431, 'FSRPTH14': 0.871934605}, '48505': {'FFRPTH14': 0.419023675, 'FSRPTH14': 0.48886095399999996}, '48507': {'FFRPTH14': 0.244558572, 'FSRPTH14': 0.733675715}, '49001': {'FFRPTH14': 1.702522829, 'FSRPTH14': 0.9286488159999999}, '49003': {'FFRPTH14': 0.601731434, 'FSRPTH14': 0.349392445}, '49005': {'FFRPTH14': 0.743601227, 'FSRPTH14': 0.346450572}, '49007': {'FFRPTH14': 0.677637948, 'FSRPTH14': 0.580832527}, '49009': {'FFRPTH14': 0.0, 'FSRPTH14': 1.790510295}, '49011': {'FFRPTH14': 0.636958131, 'FSRPTH14': 0.360942941}, '49013': {'FFRPTH14': 0.588812561, 'FSRPTH14': 0.539744848}, '49015': {'FFRPTH14': 0.7525162259999999, 'FSRPTH14': 0.282193585}, '49017': {'FFRPTH14': 2.7866242039999998, 'FSRPTH14': 2.1894904459999998}, '49019': {'FFRPTH14': 0.9545020679999999, 'FSRPTH14': 3.075617775}, '49021': {'FFRPTH14': 0.719287482, 'FSRPTH14': 0.634665426}, '49023': {'FFRPTH14': 0.85828724, 'FSRPTH14': 0.667556742}, '49025': {'FFRPTH14': 0.827129859, 'FSRPTH14': 2.205679625}, '49027': {'FFRPTH14': 0.9519276529999999, 'FSRPTH14': 0.475963827}, '49029': {'FFRPTH14': 0.377073906, 'FSRPTH14': 0.377073906}, '49031': {'FFRPTH14': 1.347708895, 'FSRPTH14': 0.6738544470000001}, '49033': {'FFRPTH14': 3.0527692980000003, 'FSRPTH14': 0.872219799}, '49035': {'FFRPTH14': 0.829866397, 'FSRPTH14': 0.622857781}, '49037': {'FFRPTH14': 0.393416825, 'FSRPTH14': 0.5901252379999999}, '49039': {'FFRPTH14': 0.526740879, 'FSRPTH14': 0.316044527}, '49041': {'FFRPTH14': 0.770230588, 'FSRPTH14': 0.577672941}, '49043': {'FFRPTH14': 0.997314921, 'FSRPTH14': 2.045774198}, '49045': {'FFRPTH14': 0.470794506, 'FSRPTH14': 0.30845157300000003}, '49047': {'FFRPTH14': 0.542490574, 'FSRPTH14': 0.46111698799999995}, '49049': {'FFRPTH14': 0.6256974479999999, 'FSRPTH14': 0.335131396}, '49051': {'FFRPTH14': 0.793822617, 'FSRPTH14': 0.5773255389999999}, '49053': {'FFRPTH14': 0.763419064, 'FSRPTH14': 0.651538684}, '49055': {'FFRPTH14': 0.734484025, 'FSRPTH14': 2.5706940869999997}, '49057': {'FFRPTH14': 0.602973282, 'FSRPTH14': 0.544755172}, '50001': {'FFRPTH14': 0.459347726, 'FSRPTH14': 0.7565727259999999}, '50003': {'FFRPTH14': 0.8231581840000001, 'FSRPTH14': 1.317053094}, '50005': {'FFRPTH14': 0.613279107, 'FSRPTH14': 0.871501888}, '50007': {'FFRPTH14': 0.747519171, 'FSRPTH14': 1.02783886}, '50009': {'FFRPTH14': 0.163265306, 'FSRPTH14': 0.816326531}, '50011': {'FFRPTH14': 0.4728424, 'FSRPTH14': 0.781217878}, '50013': {'FFRPTH14': 0.142979697, 'FSRPTH14': 0.428939091}, '50015': {'FFRPTH14': 0.7176461209999999, 'FSRPTH14': 1.87385376}, '50017': {'FFRPTH14': 0.311861118, 'FSRPTH14': 0.866280883}, '50019': {'FFRPTH14': 0.443098737, 'FSRPTH14': 0.738497895}, '50021': {'FFRPTH14': 0.732283727, 'FSRPTH14': 1.447924641}, '50023': {'FFRPTH14': 0.559340995, 'FSRPTH14': 1.135631716}, '50025': {'FFRPTH14': 0.869286727, 'FSRPTH14': 1.624193622}, '50027': {'FFRPTH14': 0.57128575, 'FSRPTH14': 1.410361695}, '51001': {'FFRPTH14': 0.545107659, 'FSRPTH14': 1.090215318}, '51003': {'FFRPTH14': 0.555082353, 'FSRPTH14': 0.60293428}, '51005': {'FFRPTH14': 0.442477876, 'FSRPTH14': 0.442477876}, '51007': {'FFRPTH14': 0.311162972, 'FSRPTH14': 0.311162972}, '51009': {'FFRPTH14': 0.499360195, 'FSRPTH14': 0.468150183}, '51011': {'FFRPTH14': 0.458145167, 'FSRPTH14': 0.458145167}, '51013': {'FFRPTH14': 1.044476175, 'FSRPTH14': 1.075325683}, '51015': {'FFRPTH14': 0.36554656, 'FSRPTH14': 0.33846903700000003}, '51017': {'FFRPTH14': 0.219154065, 'FSRPTH14': 0.8766162609999999}, '51019': {'FFRPTH14': 0.261154564, 'FSRPTH14': 0.483135944}, '51021': {'FFRPTH14': 0.301886792, 'FSRPTH14': 0.150943396}, '51023': {'FFRPTH14': 0.574018127, 'FSRPTH14': 0.6646525679999999}, '51025': {'FFRPTH14': 0.181840223, 'FSRPTH14': 0.303067038}, '51027': {'FFRPTH14': 0.389509218, 'FSRPTH14': 0.302951614}, '51029': {'FFRPTH14': 0.118252232, 'FSRPTH14': 0.17737834800000002}, '51031': {'FFRPTH14': 0.765236403, 'FSRPTH14': 0.455497859}, '51033': {'FFRPTH14': 0.268654712, 'FSRPTH14': 0.436563906}, '51035': {'FFRPTH14': 0.405117991, 'FSRPTH14': 0.506397488}, '51036': {'FFRPTH14': 0.0, 'FSRPTH14': 0.284778585}, '51037': {'FFRPTH14': 0.24539877300000001, 'FSRPTH14': 0.408997955}, '51041': {'FFRPTH14': 0.7097765709999999, 'FSRPTH14': 0.652633542}, '51043': {'FFRPTH14': 0.416002219, 'FSRPTH14': 0.554669625}, '51045': {'FFRPTH14': 0.0, 'FSRPTH14': 0.38211692799999997}, '51047': {'FFRPTH14': 0.569499247, 'FSRPTH14': 0.569499247}, '51049': {'FFRPTH14': 0.0, 'FSRPTH14': 0.305281368}, '51051': {'FFRPTH14': 0.26130128, 'FSRPTH14': 0.587927881}, '51053': {'FFRPTH14': 0.21537025699999998, 'FSRPTH14': 0.287160343}, '51057': {'FFRPTH14': 0.90065748, 'FSRPTH14': 0.990723228}, '51059': {'FFRPTH14': 0.8008523670000001, 'FSRPTH14': 0.661076817}, '51061': {'FFRPTH14': 0.805884422, 'FSRPTH14': 0.615402649}, '51063': {'FFRPTH14': 0.256772371, 'FSRPTH14': 0.770317114}, '51065': {'FFRPTH14': 0.191629618, 'FSRPTH14': 0.38325923700000003}, '51067': {'FFRPTH14': 0.461336456, 'FSRPTH14': 0.532311296}, '51069': {'FFRPTH14': 0.5705476039999999, 'FSRPTH14': 0.558408294}, '51071': {'FFRPTH14': 0.713648528, 'FSRPTH14': 0.654177817}, '51073': {'FFRPTH14': 0.538488463, 'FSRPTH14': 0.646186155}, '51075': {'FFRPTH14': 0.31911013899999996, 'FSRPTH14': 0.774981765}, '51077': {'FFRPTH14': 0.19876764100000002, 'FSRPTH14': 0.463791161}, '51079': {'FFRPTH14': 0.367820924, 'FSRPTH14': 0.525458463}, '51081': {'FFRPTH14': 0.342436435, 'FSRPTH14': 0.085609109}, '51083': {'FFRPTH14': 0.710227273, 'FSRPTH14': 0.653409091}, '51085': {'FFRPTH14': 0.7358857120000001, 'FSRPTH14': 0.726073903}, '51087': {'FFRPTH14': 0.835600949, 'FSRPTH14': 0.848026242}, '51089': {'FFRPTH14': 0.595226666, 'FSRPTH14': 0.345615484}, '51091': {'FFRPTH14': 0.0, 'FSRPTH14': 1.334519573}, '51093': {'FFRPTH14': 0.5554475520000001, 'FSRPTH14': 0.638764685}, '51095': {'FFRPTH14': 0.427097254, 'FSRPTH14': 0.688866539}, '51097': {'FFRPTH14': 0.0, 'FSRPTH14': 0.278745645}, '51099': {'FFRPTH14': 0.472980963, 'FSRPTH14': 0.551811123}, '51101': {'FFRPTH14': 0.432472507, 'FSRPTH14': 0.864945014}, '51103': {'FFRPTH14': 0.9054690329999999, 'FSRPTH14': 1.2676566459999998}, '51105': {'FFRPTH14': 0.28054987800000003, 'FSRPTH14': 0.320628432}, '51107': {'FFRPTH14': 0.718909241, 'FSRPTH14': 0.6886103840000001}, '51109': {'FFRPTH14': 0.26202399, 'FSRPTH14': 0.378479096}, '51111': {'FFRPTH14': 0.16043638699999999, 'FSRPTH14': 0.561527354}, '51113': {'FFRPTH14': 0.380025842, 'FSRPTH14': 0.5320361779999999}, '51115': {'FFRPTH14': 0.565866908, 'FSRPTH14': 0.905387053}, '51117': {'FFRPTH14': 0.801487561, 'FSRPTH14': 0.673249551}, '51119': {'FFRPTH14': 0.654450262, 'FSRPTH14': 1.682872102}, '51121': {'FFRPTH14': 0.647854881, 'FSRPTH14': 0.812389453}, '51125': {'FFRPTH14': 0.40404040399999996, 'FSRPTH14': 0.673400673}, '51127': {'FFRPTH14': 0.499475551, 'FSRPTH14': 0.699265771}, '51131': {'FFRPTH14': 1.072518769, 'FSRPTH14': 0.742512994}, '51133': {'FFRPTH14': 0.24487796899999997, 'FSRPTH14': 0.979511877}, '51135': {'FFRPTH14': 0.83445664, 'FSRPTH14': 0.83445664}, '51137': {'FFRPTH14': 0.742305716, 'FSRPTH14': 0.742305716}, '51139': {'FFRPTH14': 0.712848038, 'FSRPTH14': 0.545119088}, '51141': {'FFRPTH14': 0.328515112, 'FSRPTH14': 0.38326763}, '51143': {'FFRPTH14': 0.24045012300000002, 'FSRPTH14': 0.304570155}, '51145': {'FFRPTH14': 0.210903722, 'FSRPTH14': 0.562409927}, '51147': {'FFRPTH14': 0.650082344, 'FSRPTH14': 0.780098813}, '51149': {'FFRPTH14': 0.455361209, 'FSRPTH14': 0.401789302}, '51153': {'FFRPTH14': 0.634395441, 'FSRPTH14': 0.529036481}, '51155': {'FFRPTH14': 0.961482431, 'FSRPTH14': 0.37876580600000004}, '51157': {'FFRPTH14': 0.271702214, 'FSRPTH14': 0.95095775}, '51159': {'FFRPTH14': 0.224668614, 'FSRPTH14': 0.6740058409999999}, '51161': {'FFRPTH14': 0.565122354, 'FSRPTH14': 0.6824119000000001}, '51163': {'FFRPTH14': 0.403099386, 'FSRPTH14': 0.671832311}, '51165': {'FFRPTH14': 0.34539663, 'FSRPTH14': 0.460528841}, '51167': {'FFRPTH14': 0.535274596, 'FSRPTH14': 0.46390465}, '51169': {'FFRPTH14': 0.446747677, 'FSRPTH14': 0.402072909}, '51171': {'FFRPTH14': 0.534622626, 'FSRPTH14': 0.604356012}, '51173': {'FFRPTH14': 0.602123277, 'FSRPTH14': 0.570432578}, '51175': {'FFRPTH14': 0.221496207, 'FSRPTH14': 0.276870259}, '51177': {'FFRPTH14': 0.681177818, 'FSRPTH14': 0.588289934}, '51179': {'FFRPTH14': 0.542888165, 'FSRPTH14': 0.5000285729999999}, '51181': {'FFRPTH14': 0.147275405, 'FSRPTH14': 0.29455081}, '51183': {'FFRPTH14': 0.509900569, 'FSRPTH14': 0.424917141}, '51185': {'FFRPTH14': 0.736444813, 'FSRPTH14': 0.529319709}, '51187': {'FFRPTH14': 0.589940236, 'FSRPTH14': 0.8207864159999999}, '51191': {'FFRPTH14': 0.602971003, 'FSRPTH14': 0.6577865479999999}, '51193': {'FFRPTH14': 0.22887223199999998, 'FSRPTH14': 1.029925044}, '51195': {'FFRPTH14': 0.651057969, 'FSRPTH14': 0.500813822}, '51197': {'FFRPTH14': 0.755468562, 'FSRPTH14': 0.961505443}, '51199': {'FFRPTH14': 0.753670375, 'FSRPTH14': 0.798890597}, '51510': {'FFRPTH14': 0.8367922959999999, 'FSRPTH14': 1.0625933920000001}, '51515': {'FFRPTH14': 0.0, 'FSRPTH14': 0.0}, '51520': {'FFRPTH14': 1.804003724, 'FSRPTH14': 1.7458100559999998}, '51530': {'FFRPTH14': 0.605785249, 'FSRPTH14': 0.45433893700000005}, '51540': {'FFRPTH14': 1.447590639, 'FSRPTH14': 2.895181278}, '51550': {'FFRPTH14': 0.7713040609999999, 'FSRPTH14': 0.788444151}, '51570': {'FFRPTH14': 1.97394394, 'FSRPTH14': 1.8611471430000002}, '51580': {'FFRPTH14': 1.723543606, 'FSRPTH14': 1.551189245}, '51590': {'FFRPTH14': 1.295825087, 'FSRPTH14': 1.083780982}, '51595': {'FFRPTH14': 1.830831197, 'FSRPTH14': 2.380080557}, '51600': {'FFRPTH14': 3.512641425, 'FSRPTH14': 3.471796757}, '51610': {'FFRPTH14': 2.4262921840000002, 'FSRPTH14': 3.8967722960000004}, '51620': {'FFRPTH14': 1.290171241, 'FSRPTH14': 1.52474783}, '51630': {'FFRPTH14': 1.4462081130000002, 'FSRPTH14': 2.8924162260000004}, '51640': {'FFRPTH14': 2.281151982, 'FSRPTH14': 1.996007984}, '51650': {'FFRPTH14': 0.8109352059999999, 'FSRPTH14': 0.6940436440000001}, '51660': {'FFRPTH14': 1.009947025, 'FSRPTH14': 1.5816151530000002}, '51670': {'FFRPTH14': 0.856010092, 'FSRPTH14': 0.630744278}, '51678': {'FFRPTH14': 1.3678019419999998, 'FSRPTH14': 1.778142525}, '51680': {'FFRPTH14': 1.02470682, 'FSRPTH14': 0.986754716}, '51683': {'FFRPTH14': 1.188184691, 'FSRPTH14': 1.069366222}, '51685': {'FFRPTH14': 0.39541320700000004, 'FSRPTH14': 0.527217609}, '51690': {'FFRPTH14': 1.677485231, 'FSRPTH14': 1.239880388}, '51700': {'FFRPTH14': 0.836225508, 'FSRPTH14': 0.819828929}, '51710': {'FFRPTH14': 0.969734505, 'FSRPTH14': 0.89639324}, '51720': {'FFRPTH14': 2.9769288019999998, 'FSRPTH14': 1.9846192009999999}, '51730': {'FFRPTH14': 1.039723556, 'FSRPTH14': 0.764502615}, '51735': {'FFRPTH14': 0.83001328, 'FSRPTH14': 0.9960159359999999}, '51740': {'FFRPTH14': 0.82288238, 'FSRPTH14': 0.624973959}, '51750': {'FFRPTH14': 0.5667006689999999, 'FSRPTH14': 0.680040802}, '51760': {'FFRPTH14': 0.812474467, 'FSRPTH14': 1.344943609}, '51770': {'FFRPTH14': 0.885062558, 'FSRPTH14': 1.28736372}, '51775': {'FFRPTH14': 1.177255425, 'FSRPTH14': 1.25573912}, '51790': {'FFRPTH14': 0.9780748229999999, 'FSRPTH14': 1.1003341759999998}, '51800': {'FFRPTH14': 0.67967652, 'FSRPTH14': 0.552957169}, '51810': {'FFRPTH14': 0.9335225509999999, 'FSRPTH14': 1.124218369}, '51820': {'FFRPTH14': 1.263689975, 'FSRPTH14': 1.310493307}, '51830': {'FFRPTH14': 2.2462732290000003, 'FSRPTH14': 3.8799264860000005}, '51840': {'FFRPTH14': 1.670115819, 'FSRPTH14': 2.287332535}, '53001': {'FFRPTH14': 0.6778247040000001, 'FSRPTH14': 0.46926325700000004}, '53003': {'FFRPTH14': 0.450673757, 'FSRPTH14': 0.6760106359999999}, '53005': {'FFRPTH14': 0.60594361, 'FSRPTH14': 0.681016269}, '53007': {'FFRPTH14': 0.710570065, 'FSRPTH14': 1.206628412}, '53009': {'FFRPTH14': 0.536340507, 'FSRPTH14': 1.16894726}, '53011': {'FFRPTH14': 0.5387931029999999, 'FSRPTH14': 0.5764864479999999}, '53013': {'FFRPTH14': 0.501882058, 'FSRPTH14': 1.5056461730000001}, '53015': {'FFRPTH14': 0.597260435, 'FSRPTH14': 0.626633899}, '53017': {'FFRPTH14': 0.37684654799999995, 'FSRPTH14': 0.5024620639999999}, '53019': {'FFRPTH14': 0.26085822399999997, 'FSRPTH14': 0.6521455589999999}, '53021': {'FFRPTH14': 0.489699234, 'FSRPTH14': 0.398592399}, '53023': {'FFRPTH14': 0.0, 'FSRPTH14': 0.902934537}, '53025': {'FFRPTH14': 0.611935972, 'FSRPTH14': 0.5260502220000001}, '53027': {'FFRPTH14': 0.578948855, 'FSRPTH14': 0.833121523}, '53029': {'FFRPTH14': 0.37842951799999996, 'FSRPTH14': 0.756859035}, '53031': {'FFRPTH14': 0.595474395, 'FSRPTH14': 1.2240307}, '53033': {'FFRPTH14': 0.826936197, 'FSRPTH14': 1.106267551}, '53035': {'FFRPTH14': 0.625533572, 'FSRPTH14': 0.708151214}, '53037': {'FFRPTH14': 1.128827431, 'FSRPTH14': 1.058275716}, '53039': {'FFRPTH14': 0.431427065, 'FSRPTH14': 0.86285413}, '53041': {'FFRPTH14': 0.638909594, 'FSRPTH14': 0.7587051429999999}, '53043': {'FFRPTH14': 0.87804878, 'FSRPTH14': 0.487804878}, '53045': {'FFRPTH14': 0.395315511, 'FSRPTH14': 0.576501787}, '53047': {'FFRPTH14': 0.460159845, 'FSRPTH14': 0.847662872}, '53049': {'FFRPTH14': 0.583629201, 'FSRPTH14': 1.604980303}, '53051': {'FFRPTH14': 0.38505968399999996, 'FSRPTH14': 1.001155179}, '53053': {'FFRPTH14': 0.647892606, 'FSRPTH14': 0.6082257120000001}, '53055': {'FFRPTH14': 0.9366219170000001, 'FSRPTH14': 2.18545114}, '53057': {'FFRPTH14': 0.639720849, 'FSRPTH14': 0.9554272420000001}, '53059': {'FFRPTH14': 0.352733686, 'FSRPTH14': 0.793650794}, '53061': {'FFRPTH14': 0.7017008020000001, 'FSRPTH14': 0.687219172}, '53063': {'FFRPTH14': 0.704082855, 'FSRPTH14': 0.660722913}, '53065': {'FFRPTH14': 0.595647194, 'FSRPTH14': 0.641466208}, '53067': {'FFRPTH14': 0.628171419, 'FSRPTH14': 0.643217441}, '53069': {'FFRPTH14': 0.49176297, 'FSRPTH14': 0.737644455}, '53071': {'FFRPTH14': 0.484593276, 'FSRPTH14': 0.73524497}, '53073': {'FFRPTH14': 0.595149531, 'FSRPTH14': 0.940720227}, '53075': {'FFRPTH14': 0.875563243, 'FSRPTH14': 0.640656032}, '53077': {'FFRPTH14': 0.553117443, 'FSRPTH14': 0.512743907}, '54001': {'FFRPTH14': 0.417511631, 'FSRPTH14': 0.477156149}, '54003': {'FFRPTH14': 0.5973012839999999, 'FSRPTH14': 0.443450953}, '54005': {'FFRPTH14': 0.295184279, 'FSRPTH14': 0.295184279}, '54007': {'FFRPTH14': 0.553135587, 'FSRPTH14': 0.829703381}, '54009': {'FFRPTH14': 0.679983, 'FSRPTH14': 0.679983}, '54011': {'FFRPTH14': 1.132747737, 'FSRPTH14': 0.7414348820000001}, '54013': {'FFRPTH14': 0.133102622, 'FSRPTH14': 0.532410488}, '54015': {'FFRPTH14': 0.111844313, 'FSRPTH14': 0.223688625}, '54017': {'FFRPTH14': 0.0, 'FSRPTH14': 0.357525921}, '54019': {'FFRPTH14': 0.420987326, 'FSRPTH14': 0.598245148}, '54021': {'FFRPTH14': 0.23207240699999998, 'FSRPTH14': 0.580181016}, '54023': {'FFRPTH14': 0.513390947, 'FSRPTH14': 0.9412167370000001}, '54025': {'FFRPTH14': 0.818053597, 'FSRPTH14': 0.705218618}, '54027': {'FFRPTH14': 0.298087979, 'FSRPTH14': 0.511007963}, '54029': {'FFRPTH14': 0.8302337940000001, 'FSRPTH14': 0.6973963870000001}, '54031': {'FFRPTH14': 0.502765209, 'FSRPTH14': 1.0055304170000001}, '54033': {'FFRPTH14': 0.785328893, 'FSRPTH14': 0.785328893}, '54035': {'FFRPTH14': 0.755338872, 'FSRPTH14': 0.515003777}, '54037': {'FFRPTH14': 0.628219626, 'FSRPTH14': 0.7359144190000001}, '54039': {'FFRPTH14': 0.998827692, 'FSRPTH14': 0.70969336}, '54041': {'FFRPTH14': 1.096624832, 'FSRPTH14': 0.487388814}, '54043': {'FFRPTH14': 0.23190019, 'FSRPTH14': 0.46380038}, '54045': {'FFRPTH14': 0.565802874, 'FSRPTH14': 0.678963449}, '54047': {'FFRPTH14': 0.391236307, 'FSRPTH14': 0.146713615}, '54049': {'FFRPTH14': 0.757002271, 'FSRPTH14': 0.686583455}, '54051': {'FFRPTH14': 0.616979269, 'FSRPTH14': 0.524432379}, '54053': {'FFRPTH14': 0.333135919, 'FSRPTH14': 0.296120817}, '54055': {'FFRPTH14': 0.566480537, 'FSRPTH14': 0.43699927200000005}, '54057': {'FFRPTH14': 0.543911814, 'FSRPTH14': 0.507651026}, '54059': {'FFRPTH14': 0.23331777899999998, 'FSRPTH14': 0.583294447}, '54061': {'FFRPTH14': 0.937533224, 'FSRPTH14': 0.918202642}, '54063': {'FFRPTH14': 0.0, 'FSRPTH14': 0.736268591}, '54065': {'FFRPTH14': 0.286483699, 'FSRPTH14': 0.859451097}, '54067': {'FFRPTH14': 0.542068378, 'FSRPTH14': 0.890540907}, '54069': {'FFRPTH14': 1.038589365, 'FSRPTH14': 0.9693500740000001}, '54071': {'FFRPTH14': 0.407000407, 'FSRPTH14': 0.407000407}, '54073': {'FFRPTH14': 0.654964632, 'FSRPTH14': 0.392978779}, '54075': {'FFRPTH14': 0.230893558, 'FSRPTH14': 1.269914569}, '54077': {'FFRPTH14': 0.295963064, 'FSRPTH14': 0.47354090200000004}, '54079': {'FFRPTH14': 1.0392813109999999, 'FSRPTH14': 0.317068874}, '54081': {'FFRPTH14': 0.600708069, 'FSRPTH14': 0.575146023}, '54083': {'FFRPTH14': 0.475721227, 'FSRPTH14': 0.9174623670000001}, '54085': {'FFRPTH14': 0.699230846, 'FSRPTH14': 0.599340725}, '54087': {'FFRPTH14': 0.34097108600000003, 'FSRPTH14': 0.204582651}, '54089': {'FFRPTH14': 0.372661549, 'FSRPTH14': 0.372661549}, '54091': {'FFRPTH14': 0.527271662, 'FSRPTH14': 0.41010018200000004}, '54093': {'FFRPTH14': 0.8661758340000001, 'FSRPTH14': 1.5879890280000002}, '54095': {'FFRPTH14': 0.32974280100000003, 'FSRPTH14': 0.32974280100000003}, '54097': {'FFRPTH14': 0.566091141, 'FSRPTH14': 0.727831467}, '54099': {'FFRPTH14': 0.413404017, 'FSRPTH14': 0.2918146}, '54101': {'FFRPTH14': 0.113199004, 'FSRPTH14': 0.452796015}, '54103': {'FFRPTH14': 0.938203653, 'FSRPTH14': 0.875656743}, '54105': {'FFRPTH14': 0.0, 'FSRPTH14': 0.684345595}, '54107': {'FFRPTH14': 0.9392720059999999, 'FSRPTH14': 0.742140844}, '54109': {'FFRPTH14': 0.265510222, 'FSRPTH14': 0.531020444}, '55001': {'FFRPTH14': 0.5936186, 'FSRPTH14': 0.74202325}, '55003': {'FFRPTH14': 0.745202757, 'FSRPTH14': 1.304104825}, '55005': {'FFRPTH14': 0.63799362, 'FSRPTH14': 0.96799032}, '55007': {'FFRPTH14': 0.4671338, 'FSRPTH14': 2.268935602}, '55009': {'FFRPTH14': 0.670121167, 'FSRPTH14': 0.8454435659999999}, '55011': {'FFRPTH14': 0.227479527, 'FSRPTH14': 1.5923566880000002}, '55013': {'FFRPTH14': 0.26096033399999996, 'FSRPTH14': 1.891962422}, '55015': {'FFRPTH14': 0.42431957299999995, 'FSRPTH14': 0.686993595}, '55017': {'FFRPTH14': 0.551528522, 'FSRPTH14': 0.8194138040000001}, '55019': {'FFRPTH14': 0.319553787, 'FSRPTH14': 0.8134096390000001}, '55021': {'FFRPTH14': 0.582884395, 'FSRPTH14': 1.2010951159999999}, '55023': {'FFRPTH14': 0.488042948, 'FSRPTH14': 1.037091264}, '55025': {'FFRPTH14': 0.8115688259999999, 'FSRPTH14': 0.8541810320000001}, '55027': {'FFRPTH14': 0.429019803, 'FSRPTH14': 0.598369725}, '55029': {'FFRPTH14': 0.8283512209999999, 'FSRPTH14': 3.3134048839999997}, '55031': {'FFRPTH14': 0.503455536, 'FSRPTH14': 1.1671014690000001}, '55033': {'FFRPTH14': 0.473987135, 'FSRPTH14': 0.7674077420000001}, '55035': {'FFRPTH14': 0.87629475, 'FSRPTH14': 0.777834666}, '55037': {'FFRPTH14': 0.446328944, 'FSRPTH14': 1.7853157780000002}, '55039': {'FFRPTH14': 0.579801295, 'FSRPTH14': 0.766516967}, '55041': {'FFRPTH14': 0.328695081, 'FSRPTH14': 1.533910376}, '55043': {'FFRPTH14': 0.424472786, 'FSRPTH14': 0.8103571359999999}, '55045': {'FFRPTH14': 0.43169738, 'FSRPTH14': 0.998300192}, '55047': {'FFRPTH14': 0.26544914, 'FSRPTH14': 1.2741558720000001}, '55049': {'FFRPTH14': 0.419727177, 'FSRPTH14': 1.049317943}, '55051': {'FFRPTH14': 0.676018252, 'FSRPTH14': 3.380091262}, '55053': {'FFRPTH14': 0.629478985, 'FSRPTH14': 1.1136935890000002}, '55055': {'FFRPTH14': 0.497659814, 'FSRPTH14': 0.805734937}, '55057': {'FFRPTH14': 0.303087706, 'FSRPTH14': 0.795605228}, '55059': {'FFRPTH14': 0.654496989, 'FSRPTH14': 0.737796606}, '55061': {'FFRPTH14': 0.391312855, 'FSRPTH14': 1.173938564}, '55063': {'FFRPTH14': 0.677902907, 'FSRPTH14': 0.88127378}, '55065': {'FFRPTH14': 0.296683083, 'FSRPTH14': 0.949385866}, '55067': {'FFRPTH14': 0.566718187, 'FSRPTH14': 1.3910355490000001}, '55069': {'FFRPTH14': 0.526445092, 'FSRPTH14': 1.052890184}, '55071': {'FFRPTH14': 0.42415169700000005, 'FSRPTH14': 0.873253493}, '55073': {'FFRPTH14': 0.574458683, 'FSRPTH14': 0.7880394759999999}, '55075': {'FFRPTH14': 0.629570439, 'FSRPTH14': 1.477069107}, '55077': {'FFRPTH14': 0.398671096, 'FSRPTH14': 0.9302325579999999}, '55078': {'FFRPTH14': 0.221141088, 'FSRPTH14': 0.0}, '55079': {'FFRPTH14': 0.6430323520000001, 'FSRPTH14': 0.6587160679999999}, '55081': {'FFRPTH14': 0.484805747, 'FSRPTH14': 0.7051719959999999}, '55083': {'FFRPTH14': 0.42761311700000004, 'FSRPTH14': 1.256113531}, '55085': {'FFRPTH14': 0.759216039, 'FSRPTH14': 1.827742316}, '55087': {'FFRPTH14': 0.714262167, 'FSRPTH14': 0.939529466}, '55089': {'FFRPTH14': 0.60592203, 'FSRPTH14': 0.8345718529999999}, '55091': {'FFRPTH14': 0.6816632579999999, 'FSRPTH14': 1.4996591680000002}, '55093': {'FFRPTH14': 0.537135602, 'FSRPTH14': 0.805703403}, '55095': {'FFRPTH14': 0.575546193, 'FSRPTH14': 0.897852062}, '55097': {'FFRPTH14': 0.638460884, 'FSRPTH14': 0.950597316}, '55099': {'FFRPTH14': 0.365630713, 'FSRPTH14': 1.535648995}, '55101': {'FFRPTH14': 0.538011816, 'FSRPTH14': 0.660985945}, '55103': {'FFRPTH14': 0.452949836, 'FSRPTH14': 0.736043483}, '55105': {'FFRPTH14': 0.6452093210000001, 'FSRPTH14': 0.7630841009999999}, '55107': {'FFRPTH14': 0.418614386, 'FSRPTH14': 0.837228773}, '55109': {'FFRPTH14': 0.564782904, 'FSRPTH14': 0.8068327209999999}, '55111': {'FFRPTH14': 0.85201723, 'FSRPTH14': 1.309582038}, '55113': {'FFRPTH14': 0.5475451720000001, 'FSRPTH14': 3.1027559769999997}, '55115': {'FFRPTH14': 0.384809639, 'FSRPTH14': 1.106327714}, '55117': {'FFRPTH14': 0.589816983, 'FSRPTH14': 0.867377917}, '55119': {'FFRPTH14': 0.29211295, 'FSRPTH14': 0.827653359}, '55121': {'FFRPTH14': 0.47443152899999996, 'FSRPTH14': 0.84719916}, '55123': {'FFRPTH14': 0.362294974, 'FSRPTH14': 0.889269482}, '55125': {'FFRPTH14': 0.747733433, 'FSRPTH14': 4.065800542}, '55127': {'FFRPTH14': 0.676152115, 'FSRPTH14': 1.0818433840000001}, '55129': {'FFRPTH14': 0.318593093, 'FSRPTH14': 2.166433032}, '55131': {'FFRPTH14': 0.562847558, 'FSRPTH14': 0.5778568270000001}, '55133': {'FFRPTH14': 0.652969493, 'FSRPTH14': 0.756735962}, '55135': {'FFRPTH14': 0.7106365, 'FSRPTH14': 0.941113202}, '55137': {'FFRPTH14': 0.330879312, 'FSRPTH14': 1.323517247}, '55139': {'FFRPTH14': 0.5427376389999999, 'FSRPTH14': 0.7256166270000001}, '55141': {'FFRPTH14': 0.557004673, 'FSRPTH14': 0.8966416690000001}, '56001': {'FFRPTH14': 0.7140779140000001, 'FSRPTH14': 0.925656555}, '56003': {'FFRPTH14': 0.419111484, 'FSRPTH14': 0.586756077}, '56005': {'FFRPTH14': 0.68294702, 'FSRPTH14': 0.641556291}, '56007': {'FFRPTH14': 0.44152895200000003, 'FSRPTH14': 1.6399646780000001}, '56009': {'FFRPTH14': 0.56749663, 'FSRPTH14': 1.20593034}, '56011': {'FFRPTH14': 0.82781457, 'FSRPTH14': 1.793598234}, '56013': {'FFRPTH14': 0.49136427299999996, 'FSRPTH14': 0.9581603320000001}, '56015': {'FFRPTH14': 0.813970697, 'FSRPTH14': 0.8879680329999999}, '56017': {'FFRPTH14': 1.03820598, 'FSRPTH14': 1.6611295680000002}, '56019': {'FFRPTH14': 0.8165169720000001, 'FSRPTH14': 0.9331622540000001}, '56021': {'FFRPTH14': 0.674350808, 'FSRPTH14': 0.549855274}, '56023': {'FFRPTH14': 0.6463079660000001, 'FSRPTH14': 1.1848979370000001}, '56025': {'FFRPTH14': 0.649318828, 'FSRPTH14': 0.784083113}, '56027': {'FFRPTH14': 1.218026797, 'FSRPTH14': 1.218026797}, '56029': {'FFRPTH14': 0.620925179, 'FSRPTH14': 1.37983373}, '56031': {'FFRPTH14': 0.568246392, 'FSRPTH14': 1.4774406180000001}, '56033': {'FFRPTH14': 0.732551945, 'FSRPTH14': 0.99893447}, '56035': {'FFRPTH14': 0.298299692, 'FSRPTH14': 1.193198767}, '56037': {'FFRPTH14': 0.733170407, 'FSRPTH14': 0.710953122}, '56039': {'FFRPTH14': 1.003052769, 'FSRPTH14': 2.398604448}, '56041': {'FFRPTH14': 0.76540375, 'FSRPTH14': 0.76540375}, '56043': {'FFRPTH14': 0.7209805340000001, 'FSRPTH14': 1.321797645}, '56045': {'FFRPTH14': 0.416608804, 'FSRPTH14': 1.527565616}}
try:
retval = data[county]
except:
retval = None
return retval |
"""This problem was asked by Flipkart.
Starting from 0 on a number line, you would like to make
a series of jumps that lead to the integer N.
On the ith jump, you may move exactly i places to the left or right.
Find a path with the fewest number of jumps required to get from 0 to N.
""" | """This problem was asked by Flipkart.
Starting from 0 on a number line, you would like to make
a series of jumps that lead to the integer N.
On the ith jump, you may move exactly i places to the left or right.
Find a path with the fewest number of jumps required to get from 0 to N.
""" |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Aug 2 18:13:35 2018
@author: tim
https://docs.python.org/3/reference/datamodel.html
https://docs.python.org/3.6/whatsnew/3.6.html#pep-487-simpler-customization-of-class-creation
https://stackoverflow.com/a/51661030/7955763
"""
class PluginBase:
subclasses = []
def __init_subclass__(cls, **kwargs):
super().__init_subclass__(**kwargs)
cls.subclasses.append(cls)
class Plugin1(PluginBase):
def __init__(self):
pass
class Plugin2(PluginBase):
def __init__(self):
pass
m = Plugin1()
n = Plugin2()
print(PluginBase.subclasses)
print(m, n)
| """
Created on Thu Aug 2 18:13:35 2018
@author: tim
https://docs.python.org/3/reference/datamodel.html
https://docs.python.org/3.6/whatsnew/3.6.html#pep-487-simpler-customization-of-class-creation
https://stackoverflow.com/a/51661030/7955763
"""
class Pluginbase:
subclasses = []
def __init_subclass__(cls, **kwargs):
super().__init_subclass__(**kwargs)
cls.subclasses.append(cls)
class Plugin1(PluginBase):
def __init__(self):
pass
class Plugin2(PluginBase):
def __init__(self):
pass
m = plugin1()
n = plugin2()
print(PluginBase.subclasses)
print(m, n) |
"""
IDE: PyCharm
Project: semantic-match-classifier
Author: Robin
Filename: classify.py
Date: 21.03.2020
TODO: load model and classify
"""
| """
IDE: PyCharm
Project: semantic-match-classifier
Author: Robin
Filename: classify.py
Date: 21.03.2020
TODO: load model and classify
""" |
class Animal:
def __init__(self, name, owner, noiseMade, furColour):
self.name = name
self.owner = owner
self.noiseMade = noiseMade
self.furColour = furColour
def changeOwner(self, newOwnerName):
self.owner = newOwnerName
def changeName(self, newName):
self.name = newName
def makeNoise(self):
print(self.name, "says", self.noiseMade)
class Cat(Animal):
def __init__(self, name, owner, furColour, favFood):
Animal.__init__(self, name, owner, "meow", furColour)
self.favFood = favFood
def eatFavouriteFood(self):
print(self.name, "eats", self.favFood)
def changeFavouriteFood(self, newFavFood):
self.favFood = newFavFood
def scratchOwner(self):
print(self.name, "scratches", self.owner)
def purr(self):
print(self.name, "says purrrr")
class Dog(Animal):
def __init__(self, name, owner, furColour, favChewToy):
Animal.__init__(self, name, owner, "woof", furColour)
self.favChewToy = favChewToy
def playWithFavouriteToy(self):
print(self.name, "plays with", self.favChewToy)
def wagTail(self):
print(self.name, "wags their tail")
dog = Dog("Bob", "James", "Red", "Bone")
dog.makeNoise()
| class Animal:
def __init__(self, name, owner, noiseMade, furColour):
self.name = name
self.owner = owner
self.noiseMade = noiseMade
self.furColour = furColour
def change_owner(self, newOwnerName):
self.owner = newOwnerName
def change_name(self, newName):
self.name = newName
def make_noise(self):
print(self.name, 'says', self.noiseMade)
class Cat(Animal):
def __init__(self, name, owner, furColour, favFood):
Animal.__init__(self, name, owner, 'meow', furColour)
self.favFood = favFood
def eat_favourite_food(self):
print(self.name, 'eats', self.favFood)
def change_favourite_food(self, newFavFood):
self.favFood = newFavFood
def scratch_owner(self):
print(self.name, 'scratches', self.owner)
def purr(self):
print(self.name, 'says purrrr')
class Dog(Animal):
def __init__(self, name, owner, furColour, favChewToy):
Animal.__init__(self, name, owner, 'woof', furColour)
self.favChewToy = favChewToy
def play_with_favourite_toy(self):
print(self.name, 'plays with', self.favChewToy)
def wag_tail(self):
print(self.name, 'wags their tail')
dog = dog('Bob', 'James', 'Red', 'Bone')
dog.makeNoise() |
# -*- coding: utf-8 -*-
class StudentCard:
def __init__(self, name, id, major, faculty, course):
self.name = name
self.id = id
self.major = major
self.faculty = faculty
self.course = course
def print_StudentCard(self):
dic = {
'ID': self.id,
'Name': self.name,
'Major': self.major,
'Falculty': self.faculty,
'Course': self.course
}
return dic
| class Studentcard:
def __init__(self, name, id, major, faculty, course):
self.name = name
self.id = id
self.major = major
self.faculty = faculty
self.course = course
def print__student_card(self):
dic = {'ID': self.id, 'Name': self.name, 'Major': self.major, 'Falculty': self.faculty, 'Course': self.course}
return dic |
INSTALLED_APPS = add_to_tuple(INSTALLED_APPS,
'filer',
# cms plugins
'cmsplugin_filer_file',
'cmsplugin_filer_folder',
'cmsplugin_filer_image',
)
## django_filer
#FILER_0_8_COMPATIBILITY_MODE = True
| installed_apps = add_to_tuple(INSTALLED_APPS, 'filer', 'cmsplugin_filer_file', 'cmsplugin_filer_folder', 'cmsplugin_filer_image') |
territories = {'GAU', 'RHA', 'SAM', 'VIN', 'ILL', 'LUS', 'ARM', 'GAL', 'DAM', 'ARA', 'CIR', 'SAH', 'PHA', 'MAR', 'SAG',
'TAR', 'MAS', 'ETU', 'ROM', 'NEA', 'APU', 'RAV', 'VEN', 'DAL', 'EPI', 'ATH', 'SPA', 'MAC', 'BYZ', 'DAC',
'CHE', 'SIP', 'BIT', 'MIL', 'ISA', 'CAP', 'ANT', 'SID', 'TYE', 'JER', 'SII', 'PET', 'NAB', 'MAU', 'CAR',
'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'BAY', 'THE', 'COR', 'SAD', 'SIC', 'CRE', 'CYP', 'IBE', 'BER',
'LIG', 'TYN', 'PUN', 'ADR', 'ION', 'AUS', 'GOT', 'GOS', 'LIB', 'MES', 'AEG', 'BLA', 'MIN', 'EGY',
'CIL', 'SYR', 'GOP', 'REE', 'BAL'}
land_locked = {'GAU', 'RHA', 'SAM', 'VIN', 'ILL', 'LUS', 'ARM', 'GAL', 'DAM', 'ARA', 'CIR', 'SAH', 'PHA', 'MAR'}
coasts = {'SAG', 'TAR', 'MAS', 'ETU', 'ROM', 'NEA', 'APU', 'RAV', 'VEN', 'DAL', 'EPI', 'ATH', 'SPA', 'MAC', 'BYZ',
'DAC', 'CHE', 'SIP', 'BIT', 'MIL', 'ISA', 'CAP', 'ANT', 'SID', 'TYE', 'JER', 'SII', 'PET', 'NAB', 'MAU',
'CAR', 'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'BAY', 'THE', 'COR', 'SAD', 'SIC', 'CRE', 'CYP'}
seas = {'IBE', 'BER', 'LIG', 'TYN', 'PUN', 'ADR', 'ION', 'AUS', 'GOT', 'GOS', 'LIB', 'MES', 'AEG', 'BLA', 'MIN', 'EGY',
'CIL', 'SYR', 'GOP', 'REE', 'BAL'}
supply_center_territories = {'VIN', 'DAM', 'CIR', 'SAG', 'MAS', 'ROM', 'NEA', 'RAV', 'DAL', 'ATH', 'SPA', 'MAC', 'BYZ',
'CHE', 'SIP', 'MIL', 'ANT', 'SID', 'TYE', 'JER', 'PET', 'CAR', 'THA', 'NUM', 'LEP', 'CYR',
'ALE', 'MEM', 'THE', 'SAD', 'SIC', 'CRE', 'CYP', 'BAL'}
land_routes = {'GAU': ['RHA', 'MAS', 'TAR', 'LUS'],
'RHA': ['SAM', 'VIN', 'VEN', 'ETU', 'MAS', 'GAU'],
'SAM': ['CHE', 'DAC', 'ILL', 'VIN', 'RHA'],
'VIN': ['SAM', 'ILL', 'DAL', 'VEN', 'RHA'],
'ILL': ['SAM', 'DAC', 'MAC', 'EPI', 'DAL', 'VIN'],
'LUS': ['GAU', 'TAR', 'SAG'],
'ARM': ['CHE', 'DAM', 'CAP', 'SIP'],
'GAL': ['BIT', 'SIP', 'CAP', 'ISA', 'MIL', 'BYZ'],
'DAM': ['ARM', 'ARA', 'SID', 'ANT', 'CAP'],
'ARA': ['DAM', 'NAB', 'JER', 'TYE', 'SID'],
'CIR': ['CAR', 'THA', 'NUM', 'PHA', 'SAH', 'MAU'],
'SAH': ['CIR', 'PHA', 'BAY', 'MAU'],
'PHA': ['NUM', 'LEP', 'MAR', 'BAY', 'SAH', 'CIR'],
'MAR': ['CYR', 'MEM', 'BAY', 'PHA', 'LEP'],
'SAG': ['LUS'],
'TAR': ['GAU', 'LUS'],
'MAS': ['GAU', 'RHA'],
'ETU': ['RHA', 'VEN', 'RAV'],
'ROM': ['RAV', 'APU'],
'NEA': [],
'APU': ['ROM'],
'RAV': ['ROM', 'ETU'],
'VEN': ['RHA', 'VIN', 'ETU'],
'DAL': ['VIN', 'ILL'],
'EPI': ['ILL', 'MAC'],
'ATH': [],
'SPA': [],
'MAC': ['ILL', 'DAC', 'EPI'],
'BYZ': ['GAL'],
'DAC': ['SAM', 'ILL', 'MAC'],
'CHE': ['SAM', 'ARM'],
'SIP': ['ARM', 'CAP', 'GAL'],
'BIT': ['GAL'],
'MIL': ['GAL'],
'ISA': ['GAL'],
'CAP': ['SIP', 'ARM', 'DAM', 'GAL'],
'ANT': ['DAM'],
'SID': ['DAM', 'ARA'],
'TYE': ['ARA'],
'JER': ['ARA', 'NAB', 'PET'],
'SII': [],
'PET': ['JER'],
'NAB': ['ARA', 'JER'],
'MAU': ['CIR', 'SAH'],
'CAR': ['CIR'],
'THA': ['CIR'],
'NUM': ['PHA', 'CIR'],
'LEP': ['MAR', 'PHA'],
'CYR': ['MEM', 'MAR'],
'ALE': [],
'MEM': ['MAR', 'CYR'],
'BAY': ['MAR', 'SAH', 'PHA'],
'THE': [],
'COR': [],
'SAD': [],
'SIC': [],
'CRE': [],
'CYP': [],
'BAL': []}
coast_routes = {'SAG': ['TAR', 'MAU'],
'TAR': ['MAS', 'SAG'],
'MAS': ['ETU', 'TAR'],
'ETU': ['ROM', 'MAS'],
'ROM': ['NEA', 'ETU'],
'NEA': ['APU', 'SIC', 'ROM'],
'APU': ['RAV', 'NEA'],
'RAV': ['VEN', 'APU'],
'VEN': ['DAL', 'RAV'],
'DAL': ['EPI', 'VEN'],
'EPI': ['ATH', 'DAL'],
'ATH': ['MAC', 'SPA', 'EPI'],
'SPA': ['ATH'],
'MAC': ['BYZ', 'ATH'],
'BYZ': ['DAC', 'BIT', 'MIL', 'MAC'],
'DAC': ['CHE', 'BYZ'],
'CHE': ['SIP', 'DAC'],
'SIP': ['BIT', 'CHE'],
'BIT': ['BYZ', 'SIP'],
'MIL': ['ISA', 'BYZ'],
'ISA': ['CAP', 'MIL'],
'CAP': ['ANT', 'ISA'],
'ANT': ['SID', 'CAP'],
'SID': ['TYE', 'ANT'],
'TYE': ['JER', 'SID'],
'JER': ['SII', 'TYE'],
'SII': ['THE', 'ALE', 'JER', 'PET'],
'PET': ['SII', 'NAB'],
'NAB': ['PET'],
'MAU': ['CAR', 'SAG'],
'CAR': ['THA', 'MAU'],
'THA': ['NUM', 'CAR'],
'NUM': ['LEP', 'THA'],
'LEP': ['CYR', 'NUM'],
'CYR': ['ALE', 'LEP'],
'ALE': ['SII', 'THE', 'MEM', 'CYR'],
'MEM': ['BAY', 'THE', 'ALE'],
'BAY': ['THE', 'MEM'],
'THE': ['SII', 'BAY', 'MEM', "ALE"],
'COR': ['SAD'],
'SAD': ['COR'],
'SIC': ['NEA'],
'CRE': [],
'CYP': [],
'BAL': []}
sea_routes = {'IBE': ['SAG', 'BER', 'MAU'],
'BER': ['LIG', 'SAD', 'PUN', 'CAR', 'MAU', 'IBE', 'SAG', 'BAL'],
'LIG': ['MAS', 'ETU', 'ROM', 'COR', 'TYN', 'SAD', 'BER', 'BAL', 'TAR'],
'TYN': ['ROM', 'NEA', 'AUS', 'SIC', 'PUN', 'SAD', 'LIG', 'COR'],
'PUN': ['SAD', 'TYN', 'SIC', 'AUS', 'GOT', 'THA', 'CAR', 'BER'],
'ADR': ['VEN', 'DAL', 'EPI', 'ION', 'APU', 'RAV'],
'ION': ['ADR', 'EPI', 'ATH', 'SPA', 'MES', 'AUS', 'NEA', 'APU'],
'AUS': ['NEA', 'ION', 'MES', 'LIB', 'GOT', 'PUN', 'SIC', 'TYN'],
'GOT': ['AUS', 'MES', 'LIB', 'GOS', 'LEP', 'NUM', 'THA', 'PUN'],
'GOS': ['LIB', 'CYR', 'LEP', 'GOT'],
'LIB': ['MES', 'CRE', 'EGY', 'ALE', 'CYR', 'GOS', 'GOT', 'AUS'],
'MES': ['ION', 'SPA', 'AEG', 'CRE', 'LIB', 'GOT', 'AUS'],
'AEG': ['MAC', 'BYZ', 'MIL', 'MIN', 'CRE', 'MES', 'SPA', 'ATH'],
'BLA': ['CHE', 'SIP', 'BIT', 'BYZ', 'DAC'],
'MIN': ['MIL', 'CIL', 'EGY', 'CRE', 'AEG'],
'EGY': ['MIN', 'CIL', 'CYP', 'SYR', 'GOP', 'ALE', 'LIB', 'CRE'],
'CIL': ['ISA', 'CAP', 'ANT', 'SID', 'SYR', 'CYP', 'EGY', 'MIN', 'MIL'],
'SYR': ['CIL', 'SID', 'TYE', 'JER', 'GOP', 'EGY', 'CYP'],
'GOP': ['SYR', 'JER', 'SII', 'THE', 'ALE', 'EGY'],
'REE': ['SII', 'PET', 'NAB', 'THE'],
'BAL': ['TAR', 'LIG', 'BER', 'SAG'],
'SAG': ['BAL', 'BER', 'IBE'],
'TAR': ['LIG', 'BAL'],
'MAS': ['LIG'],
'ETU': ['LIG'],
'ROM': ['TYN', 'LIG'],
'NEA': ['ION', 'AUS', 'TYN'],
'APU': ['ADR', 'ION'],
'RAV': ['ADR'],
'VEN': ['ADR'],
'DAL': ['ADR'],
'EPI': ['ION', 'ADR'],
'ATH': ['AEG', 'ION'],
'SPA': ['AEG', 'MES', 'ION'],
'MAC': ['AEG'],
'BYZ': ['BLA', 'AEG'],
'DAC': ['BLA'],
'CHE': ['BLA'],
'SIP': ['BLA'],
'BIT': ['BLA'],
'MIL': ['CIL', 'MIN', 'AEG'],
'ISA': ['CIL'],
'CAP': ['CIL'],
'ANT': ['CIL'],
'SID': ['SYR', 'CIL'],
'TYE': ['SYR'],
'JER': ['GOP', 'SYR'],
'SII': ['GOP', 'REE'],
'PET': ['REE'],
'NAB': ['REE'],
'MAU': ['IBE', 'BER'],
'CAR': ['PUN', 'BER'],
'THA': ['GOT', 'PUN'],
'NUM': ['GOT'],
'LEP': ['GOT', 'GOS'],
'CYR': ['LIB', 'GOS'],
'ALE': ['EGY', 'GOP', 'LIB'],
'MEM': [],
'BAY': [],
'THE': ['GOP', 'REE'],
'COR': ['LIG', 'TYN'],
'SAD': ['LIG', 'TYN', 'PUN', 'BER'],
'SIC': ['TYN', 'AUS', 'PUN'],
'CRE': ['AEG', 'MIN', 'EGY', 'LIB', 'MES'],
'CYP': ['CIL', 'SYR', 'EGY']}
starting_supply_centers = {'red': {'NEA', 'ROM', 'RAV'},
'blue': {'THA', 'CIR', 'CAR'},
'green': {'SPA', 'ATH', 'MAC'},
'black': {'SID', 'ANT', 'DAM'},
'yellow': {'ALE', 'MEM', 'THE'}}
starting_units = {'red': {('F', 'NEA'), ('A', 'ROM'), ('A', 'RAV')}, # rome
'blue': {('F', 'THA'), ('A', 'CIR'), ('A', 'CAR')}, # carthage
'green': {('F', 'SPA'), ('A', 'ATH'), ('A', 'MAC')}, # greece
'black': {('F', 'SID'), ('A', 'ANT'), ('A', 'DAM')}, # persia
'yellow': {('F', 'ALE'), ('A', 'MEM'), ('A', 'THE')}} # egypt
territories2 = {'PAR', 'BUR', 'RUH', 'SIL', 'WAR', 'MOS', 'UKR', 'MUN', 'BOH', 'GAL', 'TYR', 'VIE', 'BUD', 'SER', 'CLY',
'EDI', 'YOR', 'LON', 'WAL', 'LVP', 'STP', 'NOR', 'SWE', 'FIN', 'LVN', 'PRU', 'BER', 'KIE', 'DEN', 'HOL',
'BEL', 'PIC', 'BRE', 'GAS', 'SPA', 'POR', 'MAR', 'PIE', 'TUS', 'ROM', 'NEA', 'APU', 'VEN', 'TRI', 'ALB',
'GRE', 'BUL', 'CON', 'SMY', 'SYR', 'ANK', 'ARM', 'SEV', 'RUM', 'NAF', 'TUN', 'NAO', 'NRG', 'BAR', 'MID',
'IRI', 'ENG', 'NTH', 'HEL', 'SKA', 'BAL', 'BOT', 'GOL', 'WES', 'TYN', 'ION', 'ADR', 'AEG', 'BLA', 'EAS'}
land_locked2 = {'PAR', 'BUR', 'RUH', 'SIL', 'WAR', 'MOS', 'UKR', 'MUN', 'BOH', 'GAL', 'TYR', 'VIE', 'BUD', 'SER'}
coasts2 = {'CLY', 'EDI', 'YOR', 'LON', 'WAL', 'LVP', 'STP', 'NOR', 'SWE', 'FIN', 'LVN', 'PRU', 'BER', 'KIE', 'DEN',
'HOL', 'BEL', 'PIC', 'BRE', 'GAS', 'SPA', 'POR', 'MAR', 'PIE', 'TUS', 'ROM', 'NEA', 'APU', 'VEN', 'TRI',
'ALB', 'GRE', 'BUL', 'CON', 'SMY', 'SYR', 'ANK', 'ARM', 'SEV', 'RUM', 'NAF', 'TUN'}
seas2 = {'NAO', 'NRG', 'BAR', 'MID', 'IRI', 'ENG', 'NTH', 'HEL', 'SKA', 'BAL', 'BOT', 'GOL', 'WES', 'TYN', 'ION', 'ADR',
'AEG', 'BLA', 'EAS'}
supply_center_territories2 = {'PAR', 'WAR', 'MOS', 'MUN', 'VIE', 'BUD', 'SER', 'EDI', 'LON', 'LVP', 'STP', 'NOR', 'SWE',
'BER', 'KIE', 'DEN', 'HOL', 'BEL', 'BRE', 'SPA', 'POR', 'MAR', 'ROM', 'NEA', 'VEN', 'TRI',
'GRE', 'BUL', 'CON', 'SMY', 'ANK', 'RUM', 'TUN'}
land_routes2 = {'PAR': ['PIC', 'BUR', 'GAS', 'BRE'],
'BUR': ['BEL', 'RUH', 'MUN', 'MAR', 'GAS', 'PAR', 'PIC'],
'RUH': ['KIE', 'MUN', 'BUR', 'BEL', 'HOL'],
'SIL': ['BER', 'PRU', 'WAR', 'GAL', 'BOH', 'MUN'],
'WAR': ['PRU', 'LVN', 'MOS', 'UKR', 'GAL', 'SIL'],
'MOS': ['STP', 'SEV', 'UKR', 'WAR', 'LVN'],
'UKR': ['MOS', 'SEV', 'RUM', 'GAL', 'WAR'],
'MUN': ['KIE', 'SIL', 'BOH', 'TYR', 'BUR', 'RUH'],
'BOH': ['SIL', 'GAL', 'VIE', 'TYR', 'MUN'],
'GAL': ['WAR', 'UKR', 'RUM', 'BUD', 'VIE', 'BOH', 'SIL'],
'TYR': ['MUN', 'BOH', 'VIE', 'TRI', 'VEN', 'PIE'],
'VIE': ['BOH', 'GAL', 'BUD', 'TRI', 'TRY'],
'BUD': ['GAL', 'RUM', 'SER', 'TRI', 'VIE'],
'SER': ['BUD', 'RUM', 'BUL', 'GRE', 'ALB', 'TRI'],
'CLY': [],
'EDI': ['LVP'],
'YOR': ['WAL', 'LVP'],
'LON': [],
'WAL': ['YOR'],
'LVP': ['EDI', 'YOR'],
'STP': ['MOS'],
'NOR': ['FIN'],
'SWE': [],
'FIN': ['NOR'],
'LVN': ['MOS', 'WAR'],
'PRU': ['WAR', 'SIL'],
'BER': ['SIL', 'MUN'],
'KIE': ['MUN', 'RUH'],
'DEN': [],
'HOL': ['RUH'],
'BEL': ['RUH', 'BUR'],
'PIC': ['BUR', 'PAR'],
'BRE': ['PAR'],
'GAS': ['PAR', 'BUR', 'MAR'],
'SPA': [],
'POR': [],
'MAR': ['BUR', 'GAS'],
'PIE': ['TYR', 'VEN'],
'TUS': ['VEN'],
'ROM': ['VEN', 'APU'],
'NEA': [],
'APU': ['ROM'],
'VEN': ['TYR', 'TUS', 'ROM', 'PIE'],
'TRI': ['VIE', 'BUD', 'SER', 'TYR'],
'ALB': ['SER'],
'GRE': ['SER'],
'BUL': ['SER'],
'CON': [],
'SMY': ['ANK', 'ARM'],
'SYR': ['ARM'],
'ANK': ['SMY'],
'ARM': ['SYR', 'SMY'],
'SEV': ['MOS', 'UKR'],
'RUM': ['UKR', 'SER', 'BUD', 'GAL'],
'NAF': [],
'TUN': []}
coast_routes2 = {'CLY': ['EDI', 'LVP'],
'EDI': ['YOR', 'CLY'],
'YOR': ['EDI', 'YOR'],
'LON': ['YOR', 'WAL'],
'WAL': ['LVP', 'LON'],
'LVP': ['CLY', 'WAL'],
'STP': ['LVN', 'FIN', 'NOR'], # HAS 2 COASTS
'NOR': ['STP', 'SWE'], # CONNECTS TO NORTH COAST OF ST PETERSBURG
'SWE': ['FIN', 'DEN', 'NOR'],
'FIN': ['STP', 'SWE'], # CONNECTS TO SOUTH COAST OF ST PETERSBURG
'LVN': ['STP', 'PRU'], # CONNECTS TO SOUTH COAST OF ST PETERSBURG
'PRU': ['LVN', 'BER'],
'BER': ['PRU', 'KIE'],
'KIE': ['DEN', 'BER', 'HOL'],
'DEN': ['SWE', 'KIE'],
'HOL': ['KIE', 'BEL'],
'BEL': ['HOL', 'PIC'],
'PIC': ['BEL', 'BRE'],
'BRE': ['PIC', 'GAS'],
'GAS': ['BRE', 'SPA'], # CONNECTS TO NORTH COAST OF SPAIN
'SPA': ['GAS', 'MAR', 'POR'], # HAS 2 COASTS
'POR': ['SPA'], # CONNECTS TO BOTH COASTS OF SPAIN
'MAR': ['PIE', 'SPA'], # CONNECTS TO SOUTH COAST OF SPAIN
'PIE': ['TUS', 'MAR'],
'TUS': ['POM', 'PIE'],
'ROM': ['NEA', 'TUS'],
'NEA': ['APU', 'ROM'],
'APU': ['NEA', 'VEN'],
'VEN': ['TRI', 'APU'],
'TRI': ['ALB', 'VEN'],
'ALB': ['GRE', 'TRI'],
'GRE': ['BUL', 'ALB'], # CONNECTS TO SOUTH COAST OF BULGARIA
'BUL': ['RUM', 'CON', 'GRE'], # HAS 2 COASTS
'CON': ['ANK', 'SMY', 'BUL'], # CONNECTS TO BOTH COASTS OF BULGARIA
'SMY': ['CON', 'SYR'],
'SYR': ['SMY'],
'ANK': ['ARM', 'CON'],
'ARM': ['SEV', 'ANK'],
'SEV': ['ARM', 'RUM'],
'RUM': ['SEV', 'BUL'], # CONNECTS TO NORTH COAST OF BULGARIA
'NAF': ['TUN'],
'TUN': ['NAF']}
sea_routes2 = {'NAO': ['NRG', 'CLY', 'LVP', 'IRI', 'MID'],
'NRG': ['BAR', 'NOR', 'NTH', 'EDI', 'NAO'],
'BAR': ['STP', 'NOR', 'NRG'], # CONNECTS TO NORTH COAST OF ST PETERSBURG
'MID': ['NAO', 'IRI', 'ENG', 'BRE', 'GAS', 'SPA', 'POR', 'WES', 'NAF'],
# CONNECTS TO BOTH COASTS OF SPAIN
'IRI': ['NAO', 'LVP', 'WAL', 'ENG', 'MID'],
'ENG': ['WAL', 'LON', 'NTH', 'BEL', 'PIC', 'BRE', 'MID'],
'NTH': ['NRG', 'NOR', 'SKA', 'DEN', 'HEL', 'HOL', 'BEL', 'ENG', 'LON', 'YOR', 'EDI'],
'HEL': ['NTH', 'DEN', 'KIE', 'HOL'],
'SKA': ['NOR', 'SWE', 'DEN', 'NTH'],
'BAL': ['SWE', 'BOT', 'LVN', 'PRU', 'BER', 'KIE', 'DEN'], # CONNNCTS TO SOUTH COAST OF ST PETERSBURG
'BOT': ['FIN', 'STP', 'LVN', 'BAL', 'SWE'],
'GOL': ['MAR', 'PIE', 'TUS', 'TYN', 'WES', 'SPA'], # CONNECTS TO SOUTH COAST OF SPAIN
'WES': ['SPA', 'GOL', 'TYN', 'TUN', 'NAF', 'MID'], # CONNECTS TO SOUTH COAST OF SPAIN
'TYN': ['GOL', 'TUS', 'ROM', 'NEA', 'ION', 'TUN', 'WES'],
'ION': ['NEA', 'APU', 'ADR', 'ALB', 'GRE', 'AEG', 'EAS', 'TUN', 'TYN'],
'ADR': ['TRI', 'ALB', 'ION', 'APU', 'VEN'],
'AEG': ['BUL', 'CON', 'SMY', 'EAS', 'ION', 'GRE'], # CONNECTS TO SOUTH COAST OF BULGARIA
'BLA': ['SEV', 'ARM', 'ANK', 'CON', 'BUL', 'RUM'], # CONNECTS TO NORTH COAST OF BULGARIA
'EAS': ['SMY', 'SYR', 'ION', 'AEG'],
'CLY': ['NAO', 'IRI'],
'EDI': ['NOR', 'NTH'],
'YOR': ['NTH'],
'LON': ['NTH', 'ENG'],
'WAL': ['ENG', 'IRI'],
'LVP': ['IRI', 'NAO'],
'STP': ['BAR', 'BOT'], # HAS 2 COASTS
'NOR': ['NRG', 'BAR', 'SKA', 'NTH'],
'SWE': ['BOT', 'BAL', 'SKA'],
'FIN': ['BOT'],
'LVN': ['BOT', 'BAL'],
'PRU': ['BAL'],
'BER': ['BAL'],
'KIE': ['BAL', 'HEL'],
'DEN': ['SKA', 'BAL', 'HEL', 'NTH'],
'HOL': ['HEL', 'NTH'],
'BEL': ['NTH', 'ENG'],
'PIC': ['ENG'],
'BRE': ['ENG', 'MID'],
'GAS': ['MID'],
'SPA': ['MID', 'GOL', 'WES'], # HAS 2 COASTS
'POR': ['MID'],
'MAR': ['GOL'],
'PIE': ['GOL'],
'TUS': ['TYN', 'GOL'],
'ROM': ['TYN'],
'NEA': ['ION', 'TYN'],
'APU': ['ADR', 'ION'],
'VEN': ['ADR'],
'TRI': ['ADR'],
'ALB': ['ION', 'ADR'],
'GRE': ['AEG', 'ION'],
'BUL': ['BLA', 'AEG'], # HAS 2 COASTS
'CON': ['BLA', 'AEG'],
'SMY': ['EAS', 'AEG'],
'SYR': ['EAS'],
'ANK': ['BLA'],
'ARM': ['BLA'],
'SEV': ['BLA'],
'RUM': ['BLA'],
'NAF': ['WES', 'MID'],
'TUN': ['WES', 'TYN', 'ION']}
starting_supply_centers2 = {'red': {'TRI', 'VIE', 'BUD'}, # austria
'pink': {'LON', 'EDI', 'LVP'}, # england
'blue': {'BRE', 'PAR', 'MAR'}, # france
'brown': {'KIE', 'BER', 'MUN'}, # germany
'green': {'NEA', 'ROM', 'VEN'}, # italy
'black': {'SEV', 'STP', 'MOS', 'WAR'}, # russia
'yellow': {'ANK', 'CON', 'SMY'}} # turkey
units_by_color2 = {'red': {('F', 'TRI'), ('A', 'VIE'), ('A', 'BUD')}, # austria
'pink': {('F', 'LON'), ('A', 'EDI'), ('A', 'LVP')}, # england
'blue': {('F', 'BRE'), ('A', 'PAR'), ('A', 'MAR')}, # france
'brown': {('F', 'KIE'), ('A', 'BER'), ('A', 'MUN')}, # germany
'green': {('F', 'NEA'), ('A', 'ROM'), ('A', 'VEN')}, # italy
'black': {('F', 'SEV'), ('F', 'STP'), ('A', 'MOS'), ('A', 'WAR')}, # russia
'yellow': {('F', 'ANK'), ('A', 'CON'), ('A', 'SMY')}} # turkey
# TODO: need special code for bulgaria, spain, and st. petersburg since they have 2 coasts each
# think of structure for game state to be generic to board variant
| territories = {'GAU', 'RHA', 'SAM', 'VIN', 'ILL', 'LUS', 'ARM', 'GAL', 'DAM', 'ARA', 'CIR', 'SAH', 'PHA', 'MAR', 'SAG', 'TAR', 'MAS', 'ETU', 'ROM', 'NEA', 'APU', 'RAV', 'VEN', 'DAL', 'EPI', 'ATH', 'SPA', 'MAC', 'BYZ', 'DAC', 'CHE', 'SIP', 'BIT', 'MIL', 'ISA', 'CAP', 'ANT', 'SID', 'TYE', 'JER', 'SII', 'PET', 'NAB', 'MAU', 'CAR', 'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'BAY', 'THE', 'COR', 'SAD', 'SIC', 'CRE', 'CYP', 'IBE', 'BER', 'LIG', 'TYN', 'PUN', 'ADR', 'ION', 'AUS', 'GOT', 'GOS', 'LIB', 'MES', 'AEG', 'BLA', 'MIN', 'EGY', 'CIL', 'SYR', 'GOP', 'REE', 'BAL'}
land_locked = {'GAU', 'RHA', 'SAM', 'VIN', 'ILL', 'LUS', 'ARM', 'GAL', 'DAM', 'ARA', 'CIR', 'SAH', 'PHA', 'MAR'}
coasts = {'SAG', 'TAR', 'MAS', 'ETU', 'ROM', 'NEA', 'APU', 'RAV', 'VEN', 'DAL', 'EPI', 'ATH', 'SPA', 'MAC', 'BYZ', 'DAC', 'CHE', 'SIP', 'BIT', 'MIL', 'ISA', 'CAP', 'ANT', 'SID', 'TYE', 'JER', 'SII', 'PET', 'NAB', 'MAU', 'CAR', 'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'BAY', 'THE', 'COR', 'SAD', 'SIC', 'CRE', 'CYP'}
seas = {'IBE', 'BER', 'LIG', 'TYN', 'PUN', 'ADR', 'ION', 'AUS', 'GOT', 'GOS', 'LIB', 'MES', 'AEG', 'BLA', 'MIN', 'EGY', 'CIL', 'SYR', 'GOP', 'REE', 'BAL'}
supply_center_territories = {'VIN', 'DAM', 'CIR', 'SAG', 'MAS', 'ROM', 'NEA', 'RAV', 'DAL', 'ATH', 'SPA', 'MAC', 'BYZ', 'CHE', 'SIP', 'MIL', 'ANT', 'SID', 'TYE', 'JER', 'PET', 'CAR', 'THA', 'NUM', 'LEP', 'CYR', 'ALE', 'MEM', 'THE', 'SAD', 'SIC', 'CRE', 'CYP', 'BAL'}
land_routes = {'GAU': ['RHA', 'MAS', 'TAR', 'LUS'], 'RHA': ['SAM', 'VIN', 'VEN', 'ETU', 'MAS', 'GAU'], 'SAM': ['CHE', 'DAC', 'ILL', 'VIN', 'RHA'], 'VIN': ['SAM', 'ILL', 'DAL', 'VEN', 'RHA'], 'ILL': ['SAM', 'DAC', 'MAC', 'EPI', 'DAL', 'VIN'], 'LUS': ['GAU', 'TAR', 'SAG'], 'ARM': ['CHE', 'DAM', 'CAP', 'SIP'], 'GAL': ['BIT', 'SIP', 'CAP', 'ISA', 'MIL', 'BYZ'], 'DAM': ['ARM', 'ARA', 'SID', 'ANT', 'CAP'], 'ARA': ['DAM', 'NAB', 'JER', 'TYE', 'SID'], 'CIR': ['CAR', 'THA', 'NUM', 'PHA', 'SAH', 'MAU'], 'SAH': ['CIR', 'PHA', 'BAY', 'MAU'], 'PHA': ['NUM', 'LEP', 'MAR', 'BAY', 'SAH', 'CIR'], 'MAR': ['CYR', 'MEM', 'BAY', 'PHA', 'LEP'], 'SAG': ['LUS'], 'TAR': ['GAU', 'LUS'], 'MAS': ['GAU', 'RHA'], 'ETU': ['RHA', 'VEN', 'RAV'], 'ROM': ['RAV', 'APU'], 'NEA': [], 'APU': ['ROM'], 'RAV': ['ROM', 'ETU'], 'VEN': ['RHA', 'VIN', 'ETU'], 'DAL': ['VIN', 'ILL'], 'EPI': ['ILL', 'MAC'], 'ATH': [], 'SPA': [], 'MAC': ['ILL', 'DAC', 'EPI'], 'BYZ': ['GAL'], 'DAC': ['SAM', 'ILL', 'MAC'], 'CHE': ['SAM', 'ARM'], 'SIP': ['ARM', 'CAP', 'GAL'], 'BIT': ['GAL'], 'MIL': ['GAL'], 'ISA': ['GAL'], 'CAP': ['SIP', 'ARM', 'DAM', 'GAL'], 'ANT': ['DAM'], 'SID': ['DAM', 'ARA'], 'TYE': ['ARA'], 'JER': ['ARA', 'NAB', 'PET'], 'SII': [], 'PET': ['JER'], 'NAB': ['ARA', 'JER'], 'MAU': ['CIR', 'SAH'], 'CAR': ['CIR'], 'THA': ['CIR'], 'NUM': ['PHA', 'CIR'], 'LEP': ['MAR', 'PHA'], 'CYR': ['MEM', 'MAR'], 'ALE': [], 'MEM': ['MAR', 'CYR'], 'BAY': ['MAR', 'SAH', 'PHA'], 'THE': [], 'COR': [], 'SAD': [], 'SIC': [], 'CRE': [], 'CYP': [], 'BAL': []}
coast_routes = {'SAG': ['TAR', 'MAU'], 'TAR': ['MAS', 'SAG'], 'MAS': ['ETU', 'TAR'], 'ETU': ['ROM', 'MAS'], 'ROM': ['NEA', 'ETU'], 'NEA': ['APU', 'SIC', 'ROM'], 'APU': ['RAV', 'NEA'], 'RAV': ['VEN', 'APU'], 'VEN': ['DAL', 'RAV'], 'DAL': ['EPI', 'VEN'], 'EPI': ['ATH', 'DAL'], 'ATH': ['MAC', 'SPA', 'EPI'], 'SPA': ['ATH'], 'MAC': ['BYZ', 'ATH'], 'BYZ': ['DAC', 'BIT', 'MIL', 'MAC'], 'DAC': ['CHE', 'BYZ'], 'CHE': ['SIP', 'DAC'], 'SIP': ['BIT', 'CHE'], 'BIT': ['BYZ', 'SIP'], 'MIL': ['ISA', 'BYZ'], 'ISA': ['CAP', 'MIL'], 'CAP': ['ANT', 'ISA'], 'ANT': ['SID', 'CAP'], 'SID': ['TYE', 'ANT'], 'TYE': ['JER', 'SID'], 'JER': ['SII', 'TYE'], 'SII': ['THE', 'ALE', 'JER', 'PET'], 'PET': ['SII', 'NAB'], 'NAB': ['PET'], 'MAU': ['CAR', 'SAG'], 'CAR': ['THA', 'MAU'], 'THA': ['NUM', 'CAR'], 'NUM': ['LEP', 'THA'], 'LEP': ['CYR', 'NUM'], 'CYR': ['ALE', 'LEP'], 'ALE': ['SII', 'THE', 'MEM', 'CYR'], 'MEM': ['BAY', 'THE', 'ALE'], 'BAY': ['THE', 'MEM'], 'THE': ['SII', 'BAY', 'MEM', 'ALE'], 'COR': ['SAD'], 'SAD': ['COR'], 'SIC': ['NEA'], 'CRE': [], 'CYP': [], 'BAL': []}
sea_routes = {'IBE': ['SAG', 'BER', 'MAU'], 'BER': ['LIG', 'SAD', 'PUN', 'CAR', 'MAU', 'IBE', 'SAG', 'BAL'], 'LIG': ['MAS', 'ETU', 'ROM', 'COR', 'TYN', 'SAD', 'BER', 'BAL', 'TAR'], 'TYN': ['ROM', 'NEA', 'AUS', 'SIC', 'PUN', 'SAD', 'LIG', 'COR'], 'PUN': ['SAD', 'TYN', 'SIC', 'AUS', 'GOT', 'THA', 'CAR', 'BER'], 'ADR': ['VEN', 'DAL', 'EPI', 'ION', 'APU', 'RAV'], 'ION': ['ADR', 'EPI', 'ATH', 'SPA', 'MES', 'AUS', 'NEA', 'APU'], 'AUS': ['NEA', 'ION', 'MES', 'LIB', 'GOT', 'PUN', 'SIC', 'TYN'], 'GOT': ['AUS', 'MES', 'LIB', 'GOS', 'LEP', 'NUM', 'THA', 'PUN'], 'GOS': ['LIB', 'CYR', 'LEP', 'GOT'], 'LIB': ['MES', 'CRE', 'EGY', 'ALE', 'CYR', 'GOS', 'GOT', 'AUS'], 'MES': ['ION', 'SPA', 'AEG', 'CRE', 'LIB', 'GOT', 'AUS'], 'AEG': ['MAC', 'BYZ', 'MIL', 'MIN', 'CRE', 'MES', 'SPA', 'ATH'], 'BLA': ['CHE', 'SIP', 'BIT', 'BYZ', 'DAC'], 'MIN': ['MIL', 'CIL', 'EGY', 'CRE', 'AEG'], 'EGY': ['MIN', 'CIL', 'CYP', 'SYR', 'GOP', 'ALE', 'LIB', 'CRE'], 'CIL': ['ISA', 'CAP', 'ANT', 'SID', 'SYR', 'CYP', 'EGY', 'MIN', 'MIL'], 'SYR': ['CIL', 'SID', 'TYE', 'JER', 'GOP', 'EGY', 'CYP'], 'GOP': ['SYR', 'JER', 'SII', 'THE', 'ALE', 'EGY'], 'REE': ['SII', 'PET', 'NAB', 'THE'], 'BAL': ['TAR', 'LIG', 'BER', 'SAG'], 'SAG': ['BAL', 'BER', 'IBE'], 'TAR': ['LIG', 'BAL'], 'MAS': ['LIG'], 'ETU': ['LIG'], 'ROM': ['TYN', 'LIG'], 'NEA': ['ION', 'AUS', 'TYN'], 'APU': ['ADR', 'ION'], 'RAV': ['ADR'], 'VEN': ['ADR'], 'DAL': ['ADR'], 'EPI': ['ION', 'ADR'], 'ATH': ['AEG', 'ION'], 'SPA': ['AEG', 'MES', 'ION'], 'MAC': ['AEG'], 'BYZ': ['BLA', 'AEG'], 'DAC': ['BLA'], 'CHE': ['BLA'], 'SIP': ['BLA'], 'BIT': ['BLA'], 'MIL': ['CIL', 'MIN', 'AEG'], 'ISA': ['CIL'], 'CAP': ['CIL'], 'ANT': ['CIL'], 'SID': ['SYR', 'CIL'], 'TYE': ['SYR'], 'JER': ['GOP', 'SYR'], 'SII': ['GOP', 'REE'], 'PET': ['REE'], 'NAB': ['REE'], 'MAU': ['IBE', 'BER'], 'CAR': ['PUN', 'BER'], 'THA': ['GOT', 'PUN'], 'NUM': ['GOT'], 'LEP': ['GOT', 'GOS'], 'CYR': ['LIB', 'GOS'], 'ALE': ['EGY', 'GOP', 'LIB'], 'MEM': [], 'BAY': [], 'THE': ['GOP', 'REE'], 'COR': ['LIG', 'TYN'], 'SAD': ['LIG', 'TYN', 'PUN', 'BER'], 'SIC': ['TYN', 'AUS', 'PUN'], 'CRE': ['AEG', 'MIN', 'EGY', 'LIB', 'MES'], 'CYP': ['CIL', 'SYR', 'EGY']}
starting_supply_centers = {'red': {'NEA', 'ROM', 'RAV'}, 'blue': {'THA', 'CIR', 'CAR'}, 'green': {'SPA', 'ATH', 'MAC'}, 'black': {'SID', 'ANT', 'DAM'}, 'yellow': {'ALE', 'MEM', 'THE'}}
starting_units = {'red': {('F', 'NEA'), ('A', 'ROM'), ('A', 'RAV')}, 'blue': {('F', 'THA'), ('A', 'CIR'), ('A', 'CAR')}, 'green': {('F', 'SPA'), ('A', 'ATH'), ('A', 'MAC')}, 'black': {('F', 'SID'), ('A', 'ANT'), ('A', 'DAM')}, 'yellow': {('F', 'ALE'), ('A', 'MEM'), ('A', 'THE')}}
territories2 = {'PAR', 'BUR', 'RUH', 'SIL', 'WAR', 'MOS', 'UKR', 'MUN', 'BOH', 'GAL', 'TYR', 'VIE', 'BUD', 'SER', 'CLY', 'EDI', 'YOR', 'LON', 'WAL', 'LVP', 'STP', 'NOR', 'SWE', 'FIN', 'LVN', 'PRU', 'BER', 'KIE', 'DEN', 'HOL', 'BEL', 'PIC', 'BRE', 'GAS', 'SPA', 'POR', 'MAR', 'PIE', 'TUS', 'ROM', 'NEA', 'APU', 'VEN', 'TRI', 'ALB', 'GRE', 'BUL', 'CON', 'SMY', 'SYR', 'ANK', 'ARM', 'SEV', 'RUM', 'NAF', 'TUN', 'NAO', 'NRG', 'BAR', 'MID', 'IRI', 'ENG', 'NTH', 'HEL', 'SKA', 'BAL', 'BOT', 'GOL', 'WES', 'TYN', 'ION', 'ADR', 'AEG', 'BLA', 'EAS'}
land_locked2 = {'PAR', 'BUR', 'RUH', 'SIL', 'WAR', 'MOS', 'UKR', 'MUN', 'BOH', 'GAL', 'TYR', 'VIE', 'BUD', 'SER'}
coasts2 = {'CLY', 'EDI', 'YOR', 'LON', 'WAL', 'LVP', 'STP', 'NOR', 'SWE', 'FIN', 'LVN', 'PRU', 'BER', 'KIE', 'DEN', 'HOL', 'BEL', 'PIC', 'BRE', 'GAS', 'SPA', 'POR', 'MAR', 'PIE', 'TUS', 'ROM', 'NEA', 'APU', 'VEN', 'TRI', 'ALB', 'GRE', 'BUL', 'CON', 'SMY', 'SYR', 'ANK', 'ARM', 'SEV', 'RUM', 'NAF', 'TUN'}
seas2 = {'NAO', 'NRG', 'BAR', 'MID', 'IRI', 'ENG', 'NTH', 'HEL', 'SKA', 'BAL', 'BOT', 'GOL', 'WES', 'TYN', 'ION', 'ADR', 'AEG', 'BLA', 'EAS'}
supply_center_territories2 = {'PAR', 'WAR', 'MOS', 'MUN', 'VIE', 'BUD', 'SER', 'EDI', 'LON', 'LVP', 'STP', 'NOR', 'SWE', 'BER', 'KIE', 'DEN', 'HOL', 'BEL', 'BRE', 'SPA', 'POR', 'MAR', 'ROM', 'NEA', 'VEN', 'TRI', 'GRE', 'BUL', 'CON', 'SMY', 'ANK', 'RUM', 'TUN'}
land_routes2 = {'PAR': ['PIC', 'BUR', 'GAS', 'BRE'], 'BUR': ['BEL', 'RUH', 'MUN', 'MAR', 'GAS', 'PAR', 'PIC'], 'RUH': ['KIE', 'MUN', 'BUR', 'BEL', 'HOL'], 'SIL': ['BER', 'PRU', 'WAR', 'GAL', 'BOH', 'MUN'], 'WAR': ['PRU', 'LVN', 'MOS', 'UKR', 'GAL', 'SIL'], 'MOS': ['STP', 'SEV', 'UKR', 'WAR', 'LVN'], 'UKR': ['MOS', 'SEV', 'RUM', 'GAL', 'WAR'], 'MUN': ['KIE', 'SIL', 'BOH', 'TYR', 'BUR', 'RUH'], 'BOH': ['SIL', 'GAL', 'VIE', 'TYR', 'MUN'], 'GAL': ['WAR', 'UKR', 'RUM', 'BUD', 'VIE', 'BOH', 'SIL'], 'TYR': ['MUN', 'BOH', 'VIE', 'TRI', 'VEN', 'PIE'], 'VIE': ['BOH', 'GAL', 'BUD', 'TRI', 'TRY'], 'BUD': ['GAL', 'RUM', 'SER', 'TRI', 'VIE'], 'SER': ['BUD', 'RUM', 'BUL', 'GRE', 'ALB', 'TRI'], 'CLY': [], 'EDI': ['LVP'], 'YOR': ['WAL', 'LVP'], 'LON': [], 'WAL': ['YOR'], 'LVP': ['EDI', 'YOR'], 'STP': ['MOS'], 'NOR': ['FIN'], 'SWE': [], 'FIN': ['NOR'], 'LVN': ['MOS', 'WAR'], 'PRU': ['WAR', 'SIL'], 'BER': ['SIL', 'MUN'], 'KIE': ['MUN', 'RUH'], 'DEN': [], 'HOL': ['RUH'], 'BEL': ['RUH', 'BUR'], 'PIC': ['BUR', 'PAR'], 'BRE': ['PAR'], 'GAS': ['PAR', 'BUR', 'MAR'], 'SPA': [], 'POR': [], 'MAR': ['BUR', 'GAS'], 'PIE': ['TYR', 'VEN'], 'TUS': ['VEN'], 'ROM': ['VEN', 'APU'], 'NEA': [], 'APU': ['ROM'], 'VEN': ['TYR', 'TUS', 'ROM', 'PIE'], 'TRI': ['VIE', 'BUD', 'SER', 'TYR'], 'ALB': ['SER'], 'GRE': ['SER'], 'BUL': ['SER'], 'CON': [], 'SMY': ['ANK', 'ARM'], 'SYR': ['ARM'], 'ANK': ['SMY'], 'ARM': ['SYR', 'SMY'], 'SEV': ['MOS', 'UKR'], 'RUM': ['UKR', 'SER', 'BUD', 'GAL'], 'NAF': [], 'TUN': []}
coast_routes2 = {'CLY': ['EDI', 'LVP'], 'EDI': ['YOR', 'CLY'], 'YOR': ['EDI', 'YOR'], 'LON': ['YOR', 'WAL'], 'WAL': ['LVP', 'LON'], 'LVP': ['CLY', 'WAL'], 'STP': ['LVN', 'FIN', 'NOR'], 'NOR': ['STP', 'SWE'], 'SWE': ['FIN', 'DEN', 'NOR'], 'FIN': ['STP', 'SWE'], 'LVN': ['STP', 'PRU'], 'PRU': ['LVN', 'BER'], 'BER': ['PRU', 'KIE'], 'KIE': ['DEN', 'BER', 'HOL'], 'DEN': ['SWE', 'KIE'], 'HOL': ['KIE', 'BEL'], 'BEL': ['HOL', 'PIC'], 'PIC': ['BEL', 'BRE'], 'BRE': ['PIC', 'GAS'], 'GAS': ['BRE', 'SPA'], 'SPA': ['GAS', 'MAR', 'POR'], 'POR': ['SPA'], 'MAR': ['PIE', 'SPA'], 'PIE': ['TUS', 'MAR'], 'TUS': ['POM', 'PIE'], 'ROM': ['NEA', 'TUS'], 'NEA': ['APU', 'ROM'], 'APU': ['NEA', 'VEN'], 'VEN': ['TRI', 'APU'], 'TRI': ['ALB', 'VEN'], 'ALB': ['GRE', 'TRI'], 'GRE': ['BUL', 'ALB'], 'BUL': ['RUM', 'CON', 'GRE'], 'CON': ['ANK', 'SMY', 'BUL'], 'SMY': ['CON', 'SYR'], 'SYR': ['SMY'], 'ANK': ['ARM', 'CON'], 'ARM': ['SEV', 'ANK'], 'SEV': ['ARM', 'RUM'], 'RUM': ['SEV', 'BUL'], 'NAF': ['TUN'], 'TUN': ['NAF']}
sea_routes2 = {'NAO': ['NRG', 'CLY', 'LVP', 'IRI', 'MID'], 'NRG': ['BAR', 'NOR', 'NTH', 'EDI', 'NAO'], 'BAR': ['STP', 'NOR', 'NRG'], 'MID': ['NAO', 'IRI', 'ENG', 'BRE', 'GAS', 'SPA', 'POR', 'WES', 'NAF'], 'IRI': ['NAO', 'LVP', 'WAL', 'ENG', 'MID'], 'ENG': ['WAL', 'LON', 'NTH', 'BEL', 'PIC', 'BRE', 'MID'], 'NTH': ['NRG', 'NOR', 'SKA', 'DEN', 'HEL', 'HOL', 'BEL', 'ENG', 'LON', 'YOR', 'EDI'], 'HEL': ['NTH', 'DEN', 'KIE', 'HOL'], 'SKA': ['NOR', 'SWE', 'DEN', 'NTH'], 'BAL': ['SWE', 'BOT', 'LVN', 'PRU', 'BER', 'KIE', 'DEN'], 'BOT': ['FIN', 'STP', 'LVN', 'BAL', 'SWE'], 'GOL': ['MAR', 'PIE', 'TUS', 'TYN', 'WES', 'SPA'], 'WES': ['SPA', 'GOL', 'TYN', 'TUN', 'NAF', 'MID'], 'TYN': ['GOL', 'TUS', 'ROM', 'NEA', 'ION', 'TUN', 'WES'], 'ION': ['NEA', 'APU', 'ADR', 'ALB', 'GRE', 'AEG', 'EAS', 'TUN', 'TYN'], 'ADR': ['TRI', 'ALB', 'ION', 'APU', 'VEN'], 'AEG': ['BUL', 'CON', 'SMY', 'EAS', 'ION', 'GRE'], 'BLA': ['SEV', 'ARM', 'ANK', 'CON', 'BUL', 'RUM'], 'EAS': ['SMY', 'SYR', 'ION', 'AEG'], 'CLY': ['NAO', 'IRI'], 'EDI': ['NOR', 'NTH'], 'YOR': ['NTH'], 'LON': ['NTH', 'ENG'], 'WAL': ['ENG', 'IRI'], 'LVP': ['IRI', 'NAO'], 'STP': ['BAR', 'BOT'], 'NOR': ['NRG', 'BAR', 'SKA', 'NTH'], 'SWE': ['BOT', 'BAL', 'SKA'], 'FIN': ['BOT'], 'LVN': ['BOT', 'BAL'], 'PRU': ['BAL'], 'BER': ['BAL'], 'KIE': ['BAL', 'HEL'], 'DEN': ['SKA', 'BAL', 'HEL', 'NTH'], 'HOL': ['HEL', 'NTH'], 'BEL': ['NTH', 'ENG'], 'PIC': ['ENG'], 'BRE': ['ENG', 'MID'], 'GAS': ['MID'], 'SPA': ['MID', 'GOL', 'WES'], 'POR': ['MID'], 'MAR': ['GOL'], 'PIE': ['GOL'], 'TUS': ['TYN', 'GOL'], 'ROM': ['TYN'], 'NEA': ['ION', 'TYN'], 'APU': ['ADR', 'ION'], 'VEN': ['ADR'], 'TRI': ['ADR'], 'ALB': ['ION', 'ADR'], 'GRE': ['AEG', 'ION'], 'BUL': ['BLA', 'AEG'], 'CON': ['BLA', 'AEG'], 'SMY': ['EAS', 'AEG'], 'SYR': ['EAS'], 'ANK': ['BLA'], 'ARM': ['BLA'], 'SEV': ['BLA'], 'RUM': ['BLA'], 'NAF': ['WES', 'MID'], 'TUN': ['WES', 'TYN', 'ION']}
starting_supply_centers2 = {'red': {'TRI', 'VIE', 'BUD'}, 'pink': {'LON', 'EDI', 'LVP'}, 'blue': {'BRE', 'PAR', 'MAR'}, 'brown': {'KIE', 'BER', 'MUN'}, 'green': {'NEA', 'ROM', 'VEN'}, 'black': {'SEV', 'STP', 'MOS', 'WAR'}, 'yellow': {'ANK', 'CON', 'SMY'}}
units_by_color2 = {'red': {('F', 'TRI'), ('A', 'VIE'), ('A', 'BUD')}, 'pink': {('F', 'LON'), ('A', 'EDI'), ('A', 'LVP')}, 'blue': {('F', 'BRE'), ('A', 'PAR'), ('A', 'MAR')}, 'brown': {('F', 'KIE'), ('A', 'BER'), ('A', 'MUN')}, 'green': {('F', 'NEA'), ('A', 'ROM'), ('A', 'VEN')}, 'black': {('F', 'SEV'), ('F', 'STP'), ('A', 'MOS'), ('A', 'WAR')}, 'yellow': {('F', 'ANK'), ('A', 'CON'), ('A', 'SMY')}} |
class Node:#create a Node
def __int__(self,data):
self.data=data#given data
self.next=None#given next to None
class Linked_List:
pass
def insert_tail(Head,data):
if(Head.next is None):
Head.next = Node(data)
else:
insert_tail(Head.next, data)
def insert_head(Head,data):
tamp = Head
if (tamp == None):
newNod = Node()#create a new Node
newNod.data = data
newNod.next = None
Head = newNod#make new node to Head
else:
newNod = Node()
newNod.data = data
newNod.next = Head#put the Head at NewNode Next
Head=newNod#make a NewNode to Head
return Head
def printList(Head):#print every node data
tamp=Head
while tamp!=None:
print(tamp.data)
tamp=tamp.next
def delete_head(Head):#delete from head
if Head!=None:
Head=Head.next
return Head#return new Head
def delete_tail(Head):#delete from tail
if Head!=None:
tamp = Node()
tamp = Head
while (tamp.next).next!= None:#find the 2nd last element
tamp = tamp.next
tamp.next=None#delete the last element by give next None to 2nd last Element
return Head
def isEmpty(Head):
return Head is None #Return if Head is none | class Node:
def __int__(self, data):
self.data = data
self.next = None
class Linked_List:
pass
def insert_tail(Head, data):
if Head.next is None:
Head.next = node(data)
else:
insert_tail(Head.next, data)
def insert_head(Head, data):
tamp = Head
if tamp == None:
new_nod = node()
newNod.data = data
newNod.next = None
head = newNod
else:
new_nod = node()
newNod.data = data
newNod.next = Head
head = newNod
return Head
def print_list(Head):
tamp = Head
while tamp != None:
print(tamp.data)
tamp = tamp.next
def delete_head(Head):
if Head != None:
head = Head.next
return Head
def delete_tail(Head):
if Head != None:
tamp = node()
tamp = Head
while tamp.next.next != None:
tamp = tamp.next
tamp.next = None
return Head
def is_empty(Head):
return Head is None |
def run (autoTester):
aList = [1, 2, 3, 'moon', 'stars']
autoTester.check (aList)
aList.insert (3, 'sun')
autoTester.check (aList)
autoTester.check (aList [2:4:1])
autoTester.check (aList [:])
autoTester.check (aList [2:])
autoTester.check (len (aList))
aList.append ('milkyway')
autoTester.check (aList)
aList.extend (['m1', 'm31'])
autoTester.check (aList)
anotherList = list (('a', 'b', 'c'))
autoTester.check (anotherList)
autoTester.check ('b' in anotherList)
autoTester.check ('d' in anotherList)
aDict = {1: 'plant', 'animal': 2}
autoTester.check (aDict)
autoTester.check (aDict [1], aDict ['animal'])
def p ():
return 3
q = 4
autoTester.check ({p (): 'three', q: 'four'})
aTuple = (1, 2, 3, 4, 5)
autoTester.check(aTuple)
autoTester.check (len (aTuple))
anotherTuple = (1,)
autoTester.check (anotherTuple)
aSet = {1, 2, 2, 3}
autoTester.check (aSet)
autoTester.check (len (aSet))
autoTester.check (2 in aSet)
autoTester.check (4 in aSet)
aSet.clear ()
autoTester.check (aSet)
anotherSet = set ((4, 5, 5, 6))
autoTester.check (anotherSet)
emptySet = set ()
autoTester.check (emptySet)
autoTester.check (len (emptySet))
aString = 'c_cis_d_dis_e_f_fis_g_gis_a_ais_b_c'
autoTester.check ('cis' in aString)
autoTester.check ('g' in aString)
autoTester.check ('bes' in aString)
autoTester.check ('z' in aString)
| def run(autoTester):
a_list = [1, 2, 3, 'moon', 'stars']
autoTester.check(aList)
aList.insert(3, 'sun')
autoTester.check(aList)
autoTester.check(aList[2:4:1])
autoTester.check(aList[:])
autoTester.check(aList[2:])
autoTester.check(len(aList))
aList.append('milkyway')
autoTester.check(aList)
aList.extend(['m1', 'm31'])
autoTester.check(aList)
another_list = list(('a', 'b', 'c'))
autoTester.check(anotherList)
autoTester.check('b' in anotherList)
autoTester.check('d' in anotherList)
a_dict = {1: 'plant', 'animal': 2}
autoTester.check(aDict)
autoTester.check(aDict[1], aDict['animal'])
def p():
return 3
q = 4
autoTester.check({p(): 'three', q: 'four'})
a_tuple = (1, 2, 3, 4, 5)
autoTester.check(aTuple)
autoTester.check(len(aTuple))
another_tuple = (1,)
autoTester.check(anotherTuple)
a_set = {1, 2, 2, 3}
autoTester.check(aSet)
autoTester.check(len(aSet))
autoTester.check(2 in aSet)
autoTester.check(4 in aSet)
aSet.clear()
autoTester.check(aSet)
another_set = set((4, 5, 5, 6))
autoTester.check(anotherSet)
empty_set = set()
autoTester.check(emptySet)
autoTester.check(len(emptySet))
a_string = 'c_cis_d_dis_e_f_fis_g_gis_a_ais_b_c'
autoTester.check('cis' in aString)
autoTester.check('g' in aString)
autoTester.check('bes' in aString)
autoTester.check('z' in aString) |
input_data = input().split()
def is_even(word):
return len(word) % 2 == 0
def get_even_len_words(words):
return [word for word in words if is_even(word)]
def print_result(words):
[print(word) for word in words]
words = get_even_len_words(input_data)
print_result(words) | input_data = input().split()
def is_even(word):
return len(word) % 2 == 0
def get_even_len_words(words):
return [word for word in words if is_even(word)]
def print_result(words):
[print(word) for word in words]
words = get_even_len_words(input_data)
print_result(words) |
counter_name = 'NIH:DI245.56671FE403.CH2.temperature'
Size = wx.Size(695, 305)
logfile = '//mx340hs/data/anfinrud_1710/Logfiles/DI-245-CH2-1.log'
average_count = 1
max_value = nan
min_value = nan
end_fraction = 1
reject_outliers = False
outlier_cutoff = 2.5
show_statistics = True
time_window = 21600
| counter_name = 'NIH:DI245.56671FE403.CH2.temperature'
size = wx.Size(695, 305)
logfile = '//mx340hs/data/anfinrud_1710/Logfiles/DI-245-CH2-1.log'
average_count = 1
max_value = nan
min_value = nan
end_fraction = 1
reject_outliers = False
outlier_cutoff = 2.5
show_statistics = True
time_window = 21600 |
# Title : Multilevel Inheritance
# Author : Kiran Raj R.
# Date : 08:11:2020
class Employee:
def __init__(self, emp_id, name, basicSalary, position):
self.emp_id = emp_id
self.name = name
self.basicSalary = basicSalary
self.position = position
def print_details(self):
print(f"ID: {self.emp_id}\nName: {self.name}\nSalary: {self.basicSalary}\nPosition: {self.position}")
class SalesTeam(Employee):
def __init__(self, emp_id, name, basicSalary, position, target):
Employee.__init__(self, emp_id, name, basicSalary, position)
self.target = target
self.position = "Sales"
def calcSalary(self):
if self.target == True:
self.basicSalary = self.basicSalary *1.2
class SalesManager (SalesTeam):
def __init__(self, emp_id, name, basicSalary, target, bonus):
SalesTeam.__init__(self, emp_id, name, basicSalary, position="Sales Manager", target=True)
self.bonus = bonus
self.position = "Sales Manager"
def calcBonus(self):
self.calcSalary()
if self.bonus == True:
self.basicSalary= self.basicSalary * 11.2
emp1 = Employee(121, "Kiran", 45000, "asst_store keeper")
emp1.print_details()
print("-----------------------------------------------------")
st1 = SalesTeam(121, "Kiran", 45000, "asst_store keeper", True)
st1.calcSalary()
st1.print_details()
print("-----------------------------------------------------")
sm = SalesManager(121, "Kiran", 45000, True, False)
sm.calcBonus()
sm.print_details() | class Employee:
def __init__(self, emp_id, name, basicSalary, position):
self.emp_id = emp_id
self.name = name
self.basicSalary = basicSalary
self.position = position
def print_details(self):
print(f'ID: {self.emp_id}\nName: {self.name}\nSalary: {self.basicSalary}\nPosition: {self.position}')
class Salesteam(Employee):
def __init__(self, emp_id, name, basicSalary, position, target):
Employee.__init__(self, emp_id, name, basicSalary, position)
self.target = target
self.position = 'Sales'
def calc_salary(self):
if self.target == True:
self.basicSalary = self.basicSalary * 1.2
class Salesmanager(SalesTeam):
def __init__(self, emp_id, name, basicSalary, target, bonus):
SalesTeam.__init__(self, emp_id, name, basicSalary, position='Sales Manager', target=True)
self.bonus = bonus
self.position = 'Sales Manager'
def calc_bonus(self):
self.calcSalary()
if self.bonus == True:
self.basicSalary = self.basicSalary * 11.2
emp1 = employee(121, 'Kiran', 45000, 'asst_store keeper')
emp1.print_details()
print('-----------------------------------------------------')
st1 = sales_team(121, 'Kiran', 45000, 'asst_store keeper', True)
st1.calcSalary()
st1.print_details()
print('-----------------------------------------------------')
sm = sales_manager(121, 'Kiran', 45000, True, False)
sm.calcBonus()
sm.print_details() |
"""Constants used across the skill
"""
MSG_PREFIX = "mycroft.api"
MSG_TYPE = {
"cache": f"{MSG_PREFIX}.cache",
"internet": f"{MSG_PREFIX}.internet",
"config": f"{MSG_PREFIX}.config",
"info": f"{MSG_PREFIX}.info",
"is_awake": f"{MSG_PREFIX}.is_awake",
"skill_settings": f"{MSG_PREFIX}.skill_settings",
"skill_install": f"{MSG_PREFIX}.skill_install",
"skill_uninstall": f"{MSG_PREFIX}.skill_uninstall",
"sleep": "recognizer_loop:sleep",
"speak": "speak",
"sleep_answer": f"{MSG_PREFIX}.sleep",
"wake_up": "recognizer_loop:wake_up",
"wake_up_answer": f"{MSG_PREFIX}.wake_up",
"websocket": f"{MSG_PREFIX}.websocket",
}
SKILLS_CONFIG_DIR = ".config/mycroft/skills"
TMP_DIR = "/tmp/mycroft"
TTS_CACHE_DIR = f"{TMP_DIR}/cache/tts"
SLEEP_MARK = f"{TMP_DIR}/sleep.mark"
| """Constants used across the skill
"""
msg_prefix = 'mycroft.api'
msg_type = {'cache': f'{MSG_PREFIX}.cache', 'internet': f'{MSG_PREFIX}.internet', 'config': f'{MSG_PREFIX}.config', 'info': f'{MSG_PREFIX}.info', 'is_awake': f'{MSG_PREFIX}.is_awake', 'skill_settings': f'{MSG_PREFIX}.skill_settings', 'skill_install': f'{MSG_PREFIX}.skill_install', 'skill_uninstall': f'{MSG_PREFIX}.skill_uninstall', 'sleep': 'recognizer_loop:sleep', 'speak': 'speak', 'sleep_answer': f'{MSG_PREFIX}.sleep', 'wake_up': 'recognizer_loop:wake_up', 'wake_up_answer': f'{MSG_PREFIX}.wake_up', 'websocket': f'{MSG_PREFIX}.websocket'}
skills_config_dir = '.config/mycroft/skills'
tmp_dir = '/tmp/mycroft'
tts_cache_dir = f'{TMP_DIR}/cache/tts'
sleep_mark = f'{TMP_DIR}/sleep.mark' |
set1 = {
"Madara", "Obito", "Itachi", "Sasuke"
}
set2 = {
"Hashirama", "Naruto", "Sasuke", "Sai"
}
print(set1.intersection(set2)) | set1 = {'Madara', 'Obito', 'Itachi', 'Sasuke'}
set2 = {'Hashirama', 'Naruto', 'Sasuke', 'Sai'}
print(set1.intersection(set2)) |
"""
Read the documentation ofthe dictionary method setdefault and use it to write a more
concise version of invert_dict.
"""
def invert_dict_og(d):
inverse = dict()
for key in d:
val = d[key]
if val not in inverse:
inverse[val] = [key]
else:
inverse[val].append(key)
return inverse
def invert_dict(d: dict):
inverse = dict()
for key in d:
val = d[key]
inverse.setdefault(val, []).append(key)
return inverse
if __name__ == '__main__':
d = dict(a=1, b=2, c=3, z=1)
inverse = invert_dict(d)
for val in inverse:
keys = inverse[val]
print(val, keys)
| """
Read the documentation ofthe dictionary method setdefault and use it to write a more
concise version of invert_dict.
"""
def invert_dict_og(d):
inverse = dict()
for key in d:
val = d[key]
if val not in inverse:
inverse[val] = [key]
else:
inverse[val].append(key)
return inverse
def invert_dict(d: dict):
inverse = dict()
for key in d:
val = d[key]
inverse.setdefault(val, []).append(key)
return inverse
if __name__ == '__main__':
d = dict(a=1, b=2, c=3, z=1)
inverse = invert_dict(d)
for val in inverse:
keys = inverse[val]
print(val, keys) |
def alternatingCharacters(s):
deletions = 0
for i in range(len(s)-1):
if s[i] == s[i+1]:
deletions += 1
return deletions
print(alternatingCharacters('AABBCD')) | def alternating_characters(s):
deletions = 0
for i in range(len(s) - 1):
if s[i] == s[i + 1]:
deletions += 1
return deletions
print(alternating_characters('AABBCD')) |
class DoAnnotator:
# get the gene, disease_dataset in bulk, do_dataset
@staticmethod
def attach_annotations(id, dataset):
return dataset[id]
| class Doannotator:
@staticmethod
def attach_annotations(id, dataset):
return dataset[id] |
class Camera:
name: str
projection_type: str = None
_width: int = None
_height: int = None
_width_rel_max = None
_height_rel_max = None
focal: float
c_x: float = 0
c_y: float = 0
k1: float = 0
k2: float = 0
k3: float = 0
p_1: float = 0
p_2: float = 0
@property
def width(self) -> int:
return self._width
@property
def height(self) -> int:
return self._height
@width.setter
def width(self, new_width: int):
self._width = new_width
self.__compute_ref_max()
@height.setter
def height(self, new_height: int):
self._height = new_height
self.__compute_ref_max()
def __compute_ref_max(self):
if self._width is None or self._height is None:
return
if self._width >= self.height:
self._width_rel_max = 0.5
self._height_rel_max = 0.5 * self._height / self._width
else:
self._height_rel_max = 0.5
self._width_rel_max = 0.5 / self._height * self._width
def perspective_pixel(self, rel_coords: (float, float, float)) -> (float, float):
"""
Turns a relative coordinates coordinates [x,y,z] into a [u,v] camera coordinates
https://opensfm.readthedocs.io/en/latest/geometry.html
:param rel_coords: a three fload array
:type rel_coords: list[float]
:return:
:rtype:
"""
[x, y, z] = rel_coords
x_n = x / z
y_n = y / z
r_2 = x_n * x_n + y_n * y_n
d = 1 + r_2 * self.k1 + r_2 * r_2 * self.k2
return self.focal * d * x_n, self.focal * d * y_n
def to_json(self) -> dict:
return {
'name': self.name,
'width': self.width,
'height': self.height,
'focal': self.focal,
'k1': self.k1,
'k2': self.k2,
}
def in_frame(self, pixel: (float, float)) -> bool:
return -self._width_rel_max <= pixel[0] <= self._width_rel_max and \
-self._height_rel_max <= pixel[1] <= self._height_rel_max
def json_parse_camera(name: str, el: dict) -> Camera:
camera = Camera()
camera.name = name
for k in ['width', 'height', 'projection_type', 'c_x', 'c_Y', 'k1', 'k2', 'k3', 'p1', 'p2']:
camera.__setattr__(k, el.get(k, 0))
if 'focal' in el:
camera.focal = el['focal']
else:
if el['focal_x'] != el['focal_y']:
raise Exception('Cannot survive different focal x/y %f/%f' % (el['focal_x'], el['focal_y']))
camera.focal = el['focal_x']
return camera
| class Camera:
name: str
projection_type: str = None
_width: int = None
_height: int = None
_width_rel_max = None
_height_rel_max = None
focal: float
c_x: float = 0
c_y: float = 0
k1: float = 0
k2: float = 0
k3: float = 0
p_1: float = 0
p_2: float = 0
@property
def width(self) -> int:
return self._width
@property
def height(self) -> int:
return self._height
@width.setter
def width(self, new_width: int):
self._width = new_width
self.__compute_ref_max()
@height.setter
def height(self, new_height: int):
self._height = new_height
self.__compute_ref_max()
def __compute_ref_max(self):
if self._width is None or self._height is None:
return
if self._width >= self.height:
self._width_rel_max = 0.5
self._height_rel_max = 0.5 * self._height / self._width
else:
self._height_rel_max = 0.5
self._width_rel_max = 0.5 / self._height * self._width
def perspective_pixel(self, rel_coords: (float, float, float)) -> (float, float):
"""
Turns a relative coordinates coordinates [x,y,z] into a [u,v] camera coordinates
https://opensfm.readthedocs.io/en/latest/geometry.html
:param rel_coords: a three fload array
:type rel_coords: list[float]
:return:
:rtype:
"""
[x, y, z] = rel_coords
x_n = x / z
y_n = y / z
r_2 = x_n * x_n + y_n * y_n
d = 1 + r_2 * self.k1 + r_2 * r_2 * self.k2
return (self.focal * d * x_n, self.focal * d * y_n)
def to_json(self) -> dict:
return {'name': self.name, 'width': self.width, 'height': self.height, 'focal': self.focal, 'k1': self.k1, 'k2': self.k2}
def in_frame(self, pixel: (float, float)) -> bool:
return -self._width_rel_max <= pixel[0] <= self._width_rel_max and -self._height_rel_max <= pixel[1] <= self._height_rel_max
def json_parse_camera(name: str, el: dict) -> Camera:
camera = camera()
camera.name = name
for k in ['width', 'height', 'projection_type', 'c_x', 'c_Y', 'k1', 'k2', 'k3', 'p1', 'p2']:
camera.__setattr__(k, el.get(k, 0))
if 'focal' in el:
camera.focal = el['focal']
else:
if el['focal_x'] != el['focal_y']:
raise exception('Cannot survive different focal x/y %f/%f' % (el['focal_x'], el['focal_y']))
camera.focal = el['focal_x']
return camera |
def main(request, response):
response.headers.set(b'Cache-Control', b'no-store')
response.headers.set(b'Access-Control-Allow-Origin',
request.headers.get(b'origin'))
headers = b'x-custom-s,x-custom-test,x-custom-u,x-custom-ua,x-custom-v'
if request.method == u'OPTIONS':
response.headers.set(b'Access-Control-Max-Age', b'0')
response.headers.set(b'Access-Control-Allow-Headers', headers)
# Access-Control-Request-Headers should be sorted.
if headers != request.headers.get(b'Access-Control-Request-Headers'):
response.status = 400
else:
if request.headers.get(b'x-custom-s'):
response.content = b'PASS'
else:
response.status = 400
response.content = b'FAIL'
| def main(request, response):
response.headers.set(b'Cache-Control', b'no-store')
response.headers.set(b'Access-Control-Allow-Origin', request.headers.get(b'origin'))
headers = b'x-custom-s,x-custom-test,x-custom-u,x-custom-ua,x-custom-v'
if request.method == u'OPTIONS':
response.headers.set(b'Access-Control-Max-Age', b'0')
response.headers.set(b'Access-Control-Allow-Headers', headers)
if headers != request.headers.get(b'Access-Control-Request-Headers'):
response.status = 400
elif request.headers.get(b'x-custom-s'):
response.content = b'PASS'
else:
response.status = 400
response.content = b'FAIL' |
squares = []
for i in range(1,11):
squares.append(i**2)
squ = [i**2 for i in range(1,11)]
print(squ)
negative = []
for i in range(1,11):
negative.append(-i)
neg = [-i for i in range(1,11)] #imp
print(neg)
l = ['abc','tuv','xyz']
rev = [st[::-1] for st in l]
print(rev)
even = [i for i in range(1,11) if i%2==0]
print(even)
ls = ["sss", 2,5,5.0,[3,"lsls"]]
number = [str(i) for i in ls if (type(i)==int or type(i)==float)]
print(number)
#even -> *2 || odd -> negative
number1 = [i*2 if(i%2 == 0) else -i for i in range(1,11) ]
print(number1)
square = {i:i**2 for i in range(1,5)}
print(square)
string = "siddharth"
word_count = {char:string.count(char) for char in string}
print(word_count)
odd_even = {i:("even" if i%2==0 else "odd") for i in range(1,5)}
print(odd_even)
s = {i**2 for i in range(1,5)}
print(s) | squares = []
for i in range(1, 11):
squares.append(i ** 2)
squ = [i ** 2 for i in range(1, 11)]
print(squ)
negative = []
for i in range(1, 11):
negative.append(-i)
neg = [-i for i in range(1, 11)]
print(neg)
l = ['abc', 'tuv', 'xyz']
rev = [st[::-1] for st in l]
print(rev)
even = [i for i in range(1, 11) if i % 2 == 0]
print(even)
ls = ['sss', 2, 5, 5.0, [3, 'lsls']]
number = [str(i) for i in ls if type(i) == int or type(i) == float]
print(number)
number1 = [i * 2 if i % 2 == 0 else -i for i in range(1, 11)]
print(number1)
square = {i: i ** 2 for i in range(1, 5)}
print(square)
string = 'siddharth'
word_count = {char: string.count(char) for char in string}
print(word_count)
odd_even = {i: 'even' if i % 2 == 0 else 'odd' for i in range(1, 5)}
print(odd_even)
s = {i ** 2 for i in range(1, 5)}
print(s) |
#!/usr/bin/python3
def print_sorted_dictionary(a_dictionary):
sorted_dictionary = sorted(a_dictionary.items())
for k, v in sorted_dictionary:
print('{0}: {1}'.format(k, v))
| def print_sorted_dictionary(a_dictionary):
sorted_dictionary = sorted(a_dictionary.items())
for (k, v) in sorted_dictionary:
print('{0}: {1}'.format(k, v)) |
xs = input().strip()
xs = "".join(f"{int(x, 16):04b}" for x in xs)
print(xs, end="")
| xs = input().strip()
xs = ''.join((f'{int(x, 16):04b}' for x in xs))
print(xs, end='') |
"""
1708. Largest Subarray Length K
Easy
An array A is larger than some array B if for the first index i where A[i] != B[i], A[i] > B[i].
For example, consider 0-indexing:
[1,3,2,4] > [1,2,2,4], since at index 1, 3 > 2.
[1,4,4,4] < [2,1,1,1], since at index 0, 1 < 2.
A subarray is a contiguous subsequence of the array.
Given an integer array nums of distinct integers, return the largest subarray of nums of length k.
Example 1:
Input: nums = [1,4,5,2,3], k = 3
Output: [5,2,3]
Explanation: The subarrays of size 3 are: [1,4,5], [4,5,2], and [5,2,3].
Of these, [5,2,3] is the largest.
Example 2:
Input: nums = [1,4,5,2,3], k = 4
Output: [4,5,2,3]
Explanation: The subarrays of size 4 are: [1,4,5,2], and [4,5,2,3].
Of these, [4,5,2,3] is the largest.
Example 3:
Input: nums = [1,4,5,2,3], k = 1
Output: [5]
Constraints:
1 <= k <= nums.length <= 105
1 <= nums[i] <= 109
All the integers of nums are unique.
Follow up: What if the integers in nums are not distinct?
"""
class Solution:
def largestSubarray(self, nums: List[int], k: int) -> List[int]:
mmax = max(nums[:len(nums)-k+1])
idx = nums.index(mmax)
return nums[idx: idx + k]
| """
1708. Largest Subarray Length K
Easy
An array A is larger than some array B if for the first index i where A[i] != B[i], A[i] > B[i].
For example, consider 0-indexing:
[1,3,2,4] > [1,2,2,4], since at index 1, 3 > 2.
[1,4,4,4] < [2,1,1,1], since at index 0, 1 < 2.
A subarray is a contiguous subsequence of the array.
Given an integer array nums of distinct integers, return the largest subarray of nums of length k.
Example 1:
Input: nums = [1,4,5,2,3], k = 3
Output: [5,2,3]
Explanation: The subarrays of size 3 are: [1,4,5], [4,5,2], and [5,2,3].
Of these, [5,2,3] is the largest.
Example 2:
Input: nums = [1,4,5,2,3], k = 4
Output: [4,5,2,3]
Explanation: The subarrays of size 4 are: [1,4,5,2], and [4,5,2,3].
Of these, [4,5,2,3] is the largest.
Example 3:
Input: nums = [1,4,5,2,3], k = 1
Output: [5]
Constraints:
1 <= k <= nums.length <= 105
1 <= nums[i] <= 109
All the integers of nums are unique.
Follow up: What if the integers in nums are not distinct?
"""
class Solution:
def largest_subarray(self, nums: List[int], k: int) -> List[int]:
mmax = max(nums[:len(nums) - k + 1])
idx = nums.index(mmax)
return nums[idx:idx + k] |
"""Flow - Algorithmic HF trader
Copyright 2016, Yazan Obeidi
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.
"""
__author__ = 'matthew'
# moving average cross crossovers
class Indicators(object):
"""
This class defines financial indicators used to populate the state tuple.
"""
def __init__(self, log=None):
self.logger = log
self.state = (0,0,0,0,0,0,0,0,0)
def get_states(self, quotes):
self.quotes = quotes
self.state = (self.crossover_indicator(self.quotes, 5, 7),
self.crossover_indicator(self.quotes, 5, 20),
self.crossover_indicator(self.quotes, 7, 30),
self.crossover_indicator(self.quotes, 12, 26),
self.crossover_indicator(self.quotes, 50, 100),
self.crossover_indicator(self.quotes, 50, 200),
self.MACD_sig_line(self.quotes, 12, 26, 9),
self.MACD_zero_cross(self.quotes, 12, 26),
self.RSI(self.quotes, 14, 25))
return self.state
def moving_average(self, size, sliced):
multiplier = 0.0
multiplier = float((2/(float(size) + 1)))
ema = sum(sliced)/float(size)
for value in sliced:
ema = (multiplier*value) + ((1-multiplier)*ema)
#print ema
if (ema == 0 and sum(sliced) != 0):
print("WE GOT A EMA PROBLEM MAWFUCKA")
return ema
def crossover_indicator(self, q, x, y):
if self.moving_average(x, q[-x:]) < self.moving_average(y, q[-y:]):
if self.moving_average(x, q[-x-1:-1]) > self.moving_average(y,
q[-y-1:-1]):
return -1
elif self.moving_average(x, q[-x:]) > self.moving_average(y, q[-y:]):
if self.moving_average(x, q[-x-1:-1]) < self.moving_average(y,
q[-y-1:-1]):
return 1
return 0
#https://en.wikipedia.org/wiki/MACD#Mathematical_interpretation
def MACD(self, q, m1, m2):
signal = self.moving_average(m1, q[-m1:]) - self.moving_average(m2, q[-m2:])
return signal
def MACD_series(self, q, m1, m2):
series = []
i = 0
for quotes in q:
if m2 > i:
series.append(self.moving_average(m1, q[-m1-i:-i]) - self.moving_average(m2, q[-m2-i:-i]))
i += 1
if m2 < i:
series.append(self.MACD(q,m1,m2))
return series
def MACD_sig_line(self, q, m1, m2, m3):
self.series = self.MACD_series(q, m1, m2)
if self.MACD(q, m1, m2) < self.moving_average(m3, self.series[-m2:]):
if self.MACD(q[:-1], m1, m2) > self.moving_average(m3, self.series[-m2-1:-1]):
return -1
elif self.MACD(q, m1, m2) > self.moving_average(m3, self.series[-m2:]):
if self.MACD(q[:-1], m1, m2) < self.moving_average(m3, self.series[-m2-1:-1]):
self.series = self.MACD_series(q, m1, m2)
if self.MACD(q, m1, m2) < self.moving_average(m3, self.series[-m2:]):
if self.MACD(q[:-1], m1, m2) > self.moving_average(m3, self.series[-m2-1:-1]):
return -1
elif self.MACD(q, m1, m2) > self.moving_average(m3, self.series[-m2:]):
if self.MACD(q[:-1], m1, m2) < self.moving_average(m3, self.series[-m2-1:-1]):
return 1
return 0
def MACD_zero_cross(self, q, m1, m2):
if self.MACD(q[:-1], m1, m2) > 0 and self.MACD(q, m1, m2) < 0:
return -1
elif self.MACD(q[:-1], m1, m2) < 0 and self.MACD(q, m1, m2) > 0:
return 1
return 0
def RSI(self, q, period, threshold):
i = 0
upcount = 0
downcount = 0
RS = 50.0
updays = []
downdays = []
while (upcount <= period and downcount <= period) and i < len(q) - 1:
if q[1+i] < q[i]:
updays.append(q[1+i])
upcount += 1
elif q[1+i] > q[i]:
downdays.append(q[1+i])
downcount += 1
i += 1
try:
RS = self.moving_average(period, updays) / self.moving_average(period, downdays)
except:
RS = 0
#print self.moving_average(period, downdays)
if float(self.moving_average(period, downdays)) != 0.0:
RS = float(self.moving_average(period, updays)) / float(self.moving_average(period, downdays))
#print RS
#print len(q)
RSI = (100-(100/(1+RS)))
#print RSI
if RSI < threshold:
return 1
elif RSI > (100-threshold):
return -1
return 0
| """Flow - Algorithmic HF trader
Copyright 2016, Yazan Obeidi
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.
"""
__author__ = 'matthew'
class Indicators(object):
"""
This class defines financial indicators used to populate the state tuple.
"""
def __init__(self, log=None):
self.logger = log
self.state = (0, 0, 0, 0, 0, 0, 0, 0, 0)
def get_states(self, quotes):
self.quotes = quotes
self.state = (self.crossover_indicator(self.quotes, 5, 7), self.crossover_indicator(self.quotes, 5, 20), self.crossover_indicator(self.quotes, 7, 30), self.crossover_indicator(self.quotes, 12, 26), self.crossover_indicator(self.quotes, 50, 100), self.crossover_indicator(self.quotes, 50, 200), self.MACD_sig_line(self.quotes, 12, 26, 9), self.MACD_zero_cross(self.quotes, 12, 26), self.RSI(self.quotes, 14, 25))
return self.state
def moving_average(self, size, sliced):
multiplier = 0.0
multiplier = float(2 / (float(size) + 1))
ema = sum(sliced) / float(size)
for value in sliced:
ema = multiplier * value + (1 - multiplier) * ema
if ema == 0 and sum(sliced) != 0:
print('WE GOT A EMA PROBLEM MAWFUCKA')
return ema
def crossover_indicator(self, q, x, y):
if self.moving_average(x, q[-x:]) < self.moving_average(y, q[-y:]):
if self.moving_average(x, q[-x - 1:-1]) > self.moving_average(y, q[-y - 1:-1]):
return -1
elif self.moving_average(x, q[-x:]) > self.moving_average(y, q[-y:]):
if self.moving_average(x, q[-x - 1:-1]) < self.moving_average(y, q[-y - 1:-1]):
return 1
return 0
def macd(self, q, m1, m2):
signal = self.moving_average(m1, q[-m1:]) - self.moving_average(m2, q[-m2:])
return signal
def macd_series(self, q, m1, m2):
series = []
i = 0
for quotes in q:
if m2 > i:
series.append(self.moving_average(m1, q[-m1 - i:-i]) - self.moving_average(m2, q[-m2 - i:-i]))
i += 1
if m2 < i:
series.append(self.MACD(q, m1, m2))
return series
def macd_sig_line(self, q, m1, m2, m3):
self.series = self.MACD_series(q, m1, m2)
if self.MACD(q, m1, m2) < self.moving_average(m3, self.series[-m2:]):
if self.MACD(q[:-1], m1, m2) > self.moving_average(m3, self.series[-m2 - 1:-1]):
return -1
elif self.MACD(q, m1, m2) > self.moving_average(m3, self.series[-m2:]):
if self.MACD(q[:-1], m1, m2) < self.moving_average(m3, self.series[-m2 - 1:-1]):
self.series = self.MACD_series(q, m1, m2)
if self.MACD(q, m1, m2) < self.moving_average(m3, self.series[-m2:]):
if self.MACD(q[:-1], m1, m2) > self.moving_average(m3, self.series[-m2 - 1:-1]):
return -1
elif self.MACD(q, m1, m2) > self.moving_average(m3, self.series[-m2:]):
if self.MACD(q[:-1], m1, m2) < self.moving_average(m3, self.series[-m2 - 1:-1]):
return 1
return 0
def macd_zero_cross(self, q, m1, m2):
if self.MACD(q[:-1], m1, m2) > 0 and self.MACD(q, m1, m2) < 0:
return -1
elif self.MACD(q[:-1], m1, m2) < 0 and self.MACD(q, m1, m2) > 0:
return 1
return 0
def rsi(self, q, period, threshold):
i = 0
upcount = 0
downcount = 0
rs = 50.0
updays = []
downdays = []
while (upcount <= period and downcount <= period) and i < len(q) - 1:
if q[1 + i] < q[i]:
updays.append(q[1 + i])
upcount += 1
elif q[1 + i] > q[i]:
downdays.append(q[1 + i])
downcount += 1
i += 1
try:
rs = self.moving_average(period, updays) / self.moving_average(period, downdays)
except:
rs = 0
if float(self.moving_average(period, downdays)) != 0.0:
rs = float(self.moving_average(period, updays)) / float(self.moving_average(period, downdays))
rsi = 100 - 100 / (1 + RS)
if RSI < threshold:
return 1
elif RSI > 100 - threshold:
return -1
return 0 |
def py35():
return [
('MacOS', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3-macosx10.6.pkg', 'python/python-3.5.3-macosx10.6.pkg'), # noqa
('Windows (64-bit)', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3-amd64.exe', 'python/python-3.5.3-amd64.exe'), # noqa
('Windows (32-bit)', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3.exe', 'python/python-3.5.3.exe')
]
def cheatsheet():
return [
('Download', 'https://github.com/ehmatthes/pcc/releases/download/v1.0.0/beginners_python_cheat_sheet_pcc.pdf', 'python/beginners_python_cheat_sheet_pcc.pdf')
] | def py35():
return [('MacOS', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3-macosx10.6.pkg', 'python/python-3.5.3-macosx10.6.pkg'), ('Windows (64-bit)', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3-amd64.exe', 'python/python-3.5.3-amd64.exe'), ('Windows (32-bit)', 'https://www.python.org/ftp/python/3.5.3/python-3.5.3.exe', 'python/python-3.5.3.exe')]
def cheatsheet():
return [('Download', 'https://github.com/ehmatthes/pcc/releases/download/v1.0.0/beginners_python_cheat_sheet_pcc.pdf', 'python/beginners_python_cheat_sheet_pcc.pdf')] |
palavra=input("Digite a palavra chave: ").upper()
palavra_chave=[]
forca=[]
for i in palavra:
palavra_chave.append(i)
for i in range(0,len(palavra_chave)):
forca.append("_")
acertou=False
while acertou==False:
letra=input("digte um litra: ").upper()
for i in range (0,len(palavra_chave)):
if letra==palavra_chave[i]:
forca[i]=letra
print(forca[i])
acertou=True
for x in range (0,len(forca)):
if forca[x]=="_":
acertou=False
| palavra = input('Digite a palavra chave: ').upper()
palavra_chave = []
forca = []
for i in palavra:
palavra_chave.append(i)
for i in range(0, len(palavra_chave)):
forca.append('_')
acertou = False
while acertou == False:
letra = input('digte um litra: ').upper()
for i in range(0, len(palavra_chave)):
if letra == palavra_chave[i]:
forca[i] = letra
print(forca[i])
acertou = True
for x in range(0, len(forca)):
if forca[x] == '_':
acertou = False |
class Block:
id = ""
name = "Block Name"
icon = ""
component = "BasicBlock"
disable_scrubbing = False
empty_msg = "No content."
has_sections = False
def __init__(self, tab, handler, options={}):
# tab which holds the block
self.tab = tab
self.handler = handler
self.options = options
self.data = {}
assert self.id, "Block should declare an 'id' attribute !"
def serialize(self):
raw_data = self.build()
self.data = self.handler.scrub_data(raw_data, self.disable_scrubbing)
return {
"id": self.id,
"name": self.name,
"icon": self.icon,
"component": self.component,
"data": self.data,
"empty_msg": self.empty_msg,
"has_content": self.has_content(),
"has_sections": self.has_sections,
}
def build(self):
raise NotImplementedError("block should implement build()")
def has_content(self):
return True
| class Block:
id = ''
name = 'Block Name'
icon = ''
component = 'BasicBlock'
disable_scrubbing = False
empty_msg = 'No content.'
has_sections = False
def __init__(self, tab, handler, options={}):
self.tab = tab
self.handler = handler
self.options = options
self.data = {}
assert self.id, "Block should declare an 'id' attribute !"
def serialize(self):
raw_data = self.build()
self.data = self.handler.scrub_data(raw_data, self.disable_scrubbing)
return {'id': self.id, 'name': self.name, 'icon': self.icon, 'component': self.component, 'data': self.data, 'empty_msg': self.empty_msg, 'has_content': self.has_content(), 'has_sections': self.has_sections}
def build(self):
raise not_implemented_error('block should implement build()')
def has_content(self):
return True |
a, b = map(int, input().split())
s = list(map(int, input().split()))
b = list(map(lambda x: bool(int(x)), bin(b)[2:]))[::-1]
t = 0
for i in range(len(b)):
if b[i]:
t += s[i]
print(t)
| (a, b) = map(int, input().split())
s = list(map(int, input().split()))
b = list(map(lambda x: bool(int(x)), bin(b)[2:]))[::-1]
t = 0
for i in range(len(b)):
if b[i]:
t += s[i]
print(t) |
class WykopAPIClientError(Exception):
"""Base Wykop client API exception."""
pass
class NamedParameterNone(WykopAPIClientError):
pass
class ApiParameterNone(WykopAPIClientError):
pass
class InvalidWykopConnectSign(WykopAPIClientError):
pass
| class Wykopapiclienterror(Exception):
"""Base Wykop client API exception."""
pass
class Namedparameternone(WykopAPIClientError):
pass
class Apiparameternone(WykopAPIClientError):
pass
class Invalidwykopconnectsign(WykopAPIClientError):
pass |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.