content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
enru=open('en-ru.txt','r')
input=open('input.txt','r')
output=open('output.txt','w')
s=enru.read()
x=''
prov={'q','w','e','r','t','y','u','i','o','p','a','s','d','f','g','h','j','k','l','z','x','c','v','b','n','m'}
slovar={}
s=s.replace('\t-\t',' ')
while len(s)>0:
slovar[s[:s.index(' ')]]=s[s.index(' '):s.index('\n')]
s=s[s.index('\n')+1:]
print(slovar)
s=input.read()
s=s.lower()
while len(s)>0:
a=s[0]
if a not in prov:
if x in slovar:
print(slovar[x],a, file=output, sep='',end='')
else:
print(x,a, file=output, sep='',end='')
x=''
else:
x+=a
s=s[1:]
| enru = open('en-ru.txt', 'r')
input = open('input.txt', 'r')
output = open('output.txt', 'w')
s = enru.read()
x = ''
prov = {'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'z', 'x', 'c', 'v', 'b', 'n', 'm'}
slovar = {}
s = s.replace('\t-\t', ' ')
while len(s) > 0:
slovar[s[:s.index(' ')]] = s[s.index(' '):s.index('\n')]
s = s[s.index('\n') + 1:]
print(slovar)
s = input.read()
s = s.lower()
while len(s) > 0:
a = s[0]
if a not in prov:
if x in slovar:
print(slovar[x], a, file=output, sep='', end='')
else:
print(x, a, file=output, sep='', end='')
x = ''
else:
x += a
s = s[1:] |
def conv(x):
return int(''.join(t[c] for c in x))
b = input().split()
N = int(input())
a = [input() for _ in range(N)]
t = {b[i]: str(i) for i in range(10)}
a.sort(key = lambda x: conv(x))
print(*a, sep='\n')
| def conv(x):
return int(''.join((t[c] for c in x)))
b = input().split()
n = int(input())
a = [input() for _ in range(N)]
t = {b[i]: str(i) for i in range(10)}
a.sort(key=lambda x: conv(x))
print(*a, sep='\n') |
IS_TEST = True
REPOSITORY = 'cms-sw/cmssw'
def get_repo_url():
return 'https://github.com/' + REPOSITORY + '/'
CERN_SSO_CERT_FILE = 'private/cert.pem'
CERN_SSO_KEY_FILE = 'private/cert.key'
CERN_SSO_COOKIES_LOCATION = 'private/'
TWIKI_CONTACTS_URL = 'https://ppdcontacts.web.cern.ch/PPDContacts/ppd_contacts'
TWIKI_TAG_COLLECTOR_URL = 'https://twiki.cern.ch/twiki/bin/edit/CMS/DQMP5TagCollector?nowysiwyg=1'
TWIKI_TAG_COLLECTOR_CANCEL_EDIT_URL = 'https://twiki.cern.ch/twiki/bin/save/CMS/DQMP5TagCollector'
CATEGORIES_MAP_URL = 'https://raw.githubusercontent.com/cms-sw/cms-bot/master/categories_map.py'
TWIKI_TIMEOUT_SECONDS = 10
__github_client_id = None
__github_client_secret = None
def get_github_client_id():
global __github_client_id
if __github_client_id == None:
__github_client_id = open('private/github_oauth_data.txt', 'r').readlines()[1].strip()
return __github_client_id
def get_github_client_secret():
global __github_client_secret
if __github_client_secret == None:
__github_client_secret = open('private/github_oauth_data.txt', 'r').readlines()[2].strip()
return __github_client_secret
def get_subsystems():
return ['l1t',
'hlt',
'tracker',
'sistrip',
'pixel',
'ecal',
'hcal',
'dt',
'rpc',
'csc',
'ct-pps',
'ctpps',
'bril',
'gem',
'hgcal',
'tracking',
'btag',
'vertexing',
'e-gamma',
'jetmet',
'lumi',
'muon',
'tau',
'generators',
'hfnose',
'beamspot',
'jme',
'jet',
'eventdisplay',
'castor',
'validation',
]
| is_test = True
repository = 'cms-sw/cmssw'
def get_repo_url():
return 'https://github.com/' + REPOSITORY + '/'
cern_sso_cert_file = 'private/cert.pem'
cern_sso_key_file = 'private/cert.key'
cern_sso_cookies_location = 'private/'
twiki_contacts_url = 'https://ppdcontacts.web.cern.ch/PPDContacts/ppd_contacts'
twiki_tag_collector_url = 'https://twiki.cern.ch/twiki/bin/edit/CMS/DQMP5TagCollector?nowysiwyg=1'
twiki_tag_collector_cancel_edit_url = 'https://twiki.cern.ch/twiki/bin/save/CMS/DQMP5TagCollector'
categories_map_url = 'https://raw.githubusercontent.com/cms-sw/cms-bot/master/categories_map.py'
twiki_timeout_seconds = 10
__github_client_id = None
__github_client_secret = None
def get_github_client_id():
global __github_client_id
if __github_client_id == None:
__github_client_id = open('private/github_oauth_data.txt', 'r').readlines()[1].strip()
return __github_client_id
def get_github_client_secret():
global __github_client_secret
if __github_client_secret == None:
__github_client_secret = open('private/github_oauth_data.txt', 'r').readlines()[2].strip()
return __github_client_secret
def get_subsystems():
return ['l1t', 'hlt', 'tracker', 'sistrip', 'pixel', 'ecal', 'hcal', 'dt', 'rpc', 'csc', 'ct-pps', 'ctpps', 'bril', 'gem', 'hgcal', 'tracking', 'btag', 'vertexing', 'e-gamma', 'jetmet', 'lumi', 'muon', 'tau', 'generators', 'hfnose', 'beamspot', 'jme', 'jet', 'eventdisplay', 'castor', 'validation'] |
# parsetab.py
# This file is automatically generated. Do not edit.
# pylint: disable=W,C,R
_tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'leftIMPLIESSIMPLIESleftANDORleftRPARENLPARENrightNEGATIONALPHABET AND IMPLIES LPAREN NEGATION OR PREDICATE RPAREN SIMPLIESexpr : expr AND exprexpr : ALPHABETexpr : expr OR exprexpr : NEGATION exprexpr : expr IMPLIES exprexpr : expr SIMPLIES exprexpr : LPAREN expr RPAREN'
_lr_action_items = {'ALPHABET':([0,3,4,5,6,7,8,],[2,2,2,2,2,2,2,]),'NEGATION':([0,3,4,5,6,7,8,],[3,3,3,3,3,3,3,]),'LPAREN':([0,3,4,5,6,7,8,],[4,4,4,4,4,4,4,]),'$end':([1,2,9,11,12,13,14,15,],[0,-2,-4,-1,-3,-5,-6,-7,]),'AND':([1,2,9,10,11,12,13,14,15,],[5,-2,-4,5,-1,-3,5,5,-7,]),'OR':([1,2,9,10,11,12,13,14,15,],[6,-2,-4,6,-1,-3,6,6,-7,]),'IMPLIES':([1,2,9,10,11,12,13,14,15,],[7,-2,-4,7,-1,-3,-5,-6,-7,]),'SIMPLIES':([1,2,9,10,11,12,13,14,15,],[8,-2,-4,8,-1,-3,-5,-6,-7,]),'RPAREN':([2,9,10,11,12,13,14,15,],[-2,-4,15,-1,-3,-5,-6,-7,]),}
_lr_action = {}
for _k, _v in _lr_action_items.items():
for _x,_y in zip(_v[0],_v[1]):
if not _x in _lr_action: _lr_action[_x] = {}
_lr_action[_x][_k] = _y
del _lr_action_items
_lr_goto_items = {'expr':([0,3,4,5,6,7,8,],[1,9,10,11,12,13,14,]),}
_lr_goto = {}
for _k, _v in _lr_goto_items.items():
for _x, _y in zip(_v[0], _v[1]):
if not _x in _lr_goto: _lr_goto[_x] = {}
_lr_goto[_x][_k] = _y
del _lr_goto_items
_lr_productions = [
("S' -> expr","S'",1,None,None,None),
('expr -> expr AND expr','expr',3,'p_and','main.py',48),
('expr -> ALPHABET','expr',1,'p_expr','main.py',52),
('expr -> expr OR expr','expr',3,'p_or','main.py',56),
('expr -> NEGATION expr','expr',2,'p_negation','main.py',60),
('expr -> expr IMPLIES expr','expr',3,'p_implies','main.py',64),
('expr -> expr SIMPLIES expr','expr',3,'p_simplies','main.py',69),
('expr -> LPAREN expr RPAREN','expr',3,'p_parens','main.py',73),
]
| _tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'leftIMPLIESSIMPLIESleftANDORleftRPARENLPARENrightNEGATIONALPHABET AND IMPLIES LPAREN NEGATION OR PREDICATE RPAREN SIMPLIESexpr : expr AND exprexpr : ALPHABETexpr : expr OR exprexpr : NEGATION exprexpr : expr IMPLIES exprexpr : expr SIMPLIES exprexpr : LPAREN expr RPAREN'
_lr_action_items = {'ALPHABET': ([0, 3, 4, 5, 6, 7, 8], [2, 2, 2, 2, 2, 2, 2]), 'NEGATION': ([0, 3, 4, 5, 6, 7, 8], [3, 3, 3, 3, 3, 3, 3]), 'LPAREN': ([0, 3, 4, 5, 6, 7, 8], [4, 4, 4, 4, 4, 4, 4]), '$end': ([1, 2, 9, 11, 12, 13, 14, 15], [0, -2, -4, -1, -3, -5, -6, -7]), 'AND': ([1, 2, 9, 10, 11, 12, 13, 14, 15], [5, -2, -4, 5, -1, -3, 5, 5, -7]), 'OR': ([1, 2, 9, 10, 11, 12, 13, 14, 15], [6, -2, -4, 6, -1, -3, 6, 6, -7]), 'IMPLIES': ([1, 2, 9, 10, 11, 12, 13, 14, 15], [7, -2, -4, 7, -1, -3, -5, -6, -7]), 'SIMPLIES': ([1, 2, 9, 10, 11, 12, 13, 14, 15], [8, -2, -4, 8, -1, -3, -5, -6, -7]), 'RPAREN': ([2, 9, 10, 11, 12, 13, 14, 15], [-2, -4, 15, -1, -3, -5, -6, -7])}
_lr_action = {}
for (_k, _v) in _lr_action_items.items():
for (_x, _y) in zip(_v[0], _v[1]):
if not _x in _lr_action:
_lr_action[_x] = {}
_lr_action[_x][_k] = _y
del _lr_action_items
_lr_goto_items = {'expr': ([0, 3, 4, 5, 6, 7, 8], [1, 9, 10, 11, 12, 13, 14])}
_lr_goto = {}
for (_k, _v) in _lr_goto_items.items():
for (_x, _y) in zip(_v[0], _v[1]):
if not _x in _lr_goto:
_lr_goto[_x] = {}
_lr_goto[_x][_k] = _y
del _lr_goto_items
_lr_productions = [("S' -> expr", "S'", 1, None, None, None), ('expr -> expr AND expr', 'expr', 3, 'p_and', 'main.py', 48), ('expr -> ALPHABET', 'expr', 1, 'p_expr', 'main.py', 52), ('expr -> expr OR expr', 'expr', 3, 'p_or', 'main.py', 56), ('expr -> NEGATION expr', 'expr', 2, 'p_negation', 'main.py', 60), ('expr -> expr IMPLIES expr', 'expr', 3, 'p_implies', 'main.py', 64), ('expr -> expr SIMPLIES expr', 'expr', 3, 'p_simplies', 'main.py', 69), ('expr -> LPAREN expr RPAREN', 'expr', 3, 'p_parens', 'main.py', 73)] |
def find_paths(start, connections, visited=None, small_cave_visited_twice=False):
if visited is None:
visited = ["start"]
possible_connections = [e for s, e in connections if s == start] + [s for s, e in connections if e == start]
paths = []
if not possible_connections:
raise ValueError(f"No possible connections from cave {start}.")
for e in possible_connections:
path = []
if start == "start":
path.append(start)
visited_on_path = [] + visited
small_cave_visited_twice_on_path = small_cave_visited_twice
if e == "start":
continue # don't return to the start cave
if e == e.lower() and e in visited_on_path and small_cave_visited_twice_on_path:
continue # don't visit small caves more than once
if e == e.lower() and e in visited_on_path:
small_cave_visited_twice_on_path = True
path.append(e)
if e == "end":
paths.append(path)
continue # path is complete
visited_on_path.append(e)
try:
resulting_paths = find_paths(
start=e,
connections=connections,
visited=visited_on_path,
small_cave_visited_twice=small_cave_visited_twice_on_path
)
resulting_paths = [path + p for p in resulting_paths]
except ValueError:
continue # skip connections which lead to a dead end
paths.extend(resulting_paths)
return paths
def main():
with open("data.txt") as f:
connections = [c.replace("\n", "").split("-") for c in f.readlines()]
print(len(find_paths("start", connections)))
if __name__ == "__main__":
main()
| def find_paths(start, connections, visited=None, small_cave_visited_twice=False):
if visited is None:
visited = ['start']
possible_connections = [e for (s, e) in connections if s == start] + [s for (s, e) in connections if e == start]
paths = []
if not possible_connections:
raise value_error(f'No possible connections from cave {start}.')
for e in possible_connections:
path = []
if start == 'start':
path.append(start)
visited_on_path = [] + visited
small_cave_visited_twice_on_path = small_cave_visited_twice
if e == 'start':
continue
if e == e.lower() and e in visited_on_path and small_cave_visited_twice_on_path:
continue
if e == e.lower() and e in visited_on_path:
small_cave_visited_twice_on_path = True
path.append(e)
if e == 'end':
paths.append(path)
continue
visited_on_path.append(e)
try:
resulting_paths = find_paths(start=e, connections=connections, visited=visited_on_path, small_cave_visited_twice=small_cave_visited_twice_on_path)
resulting_paths = [path + p for p in resulting_paths]
except ValueError:
continue
paths.extend(resulting_paths)
return paths
def main():
with open('data.txt') as f:
connections = [c.replace('\n', '').split('-') for c in f.readlines()]
print(len(find_paths('start', connections)))
if __name__ == '__main__':
main() |
"""An unofficial Python wrapper for the Binance exchange API v3
.. moduleauthor:: Sam McHardy
.. modified by Stephan Avenwedde for Pythonic
"""
| """An unofficial Python wrapper for the Binance exchange API v3
.. moduleauthor:: Sam McHardy
.. modified by Stephan Avenwedde for Pythonic
""" |
class Tree:
def __init__(self, val,left = None, right = None):
self.val = val
self.left = left
self.right = right
root = Tree(4, left = Tree(3), right=Tree(5, left= Tree(4)))
#InOrderTraversal
def InOrderTraversal(root, res = []):
if root is None:
return res
InOrderTraversal(root.left, res)
InOrderTraversal(root.right, res)
res.append(root.val)
return res
print("In order:", InOrderTraversal(root))
#PreOrderTraversal
def PreOrderTraversal(root, res = []):
if root is None:
return res
res.append(root.val)
InOrderTraversal(root.left, res)
InOrderTraversal(root.right, res)
return res
print("Pre order:", PreOrderTraversal(root))
#PostOrderTraversal
def PostOrderTraversal(root, res = []):
if root is None:
return res
InOrderTraversal(root.left, res)
res.append(root.val)
InOrderTraversal(root.right, res)
return res
print("Post order:", PostOrderTraversal(root))
def LevelOrderTraversal(root, res =[ ]):
if root is None:
return res
queue = []
queue.append(root)
while len(queue)>0:
res.append(queue[0].val)
node = queue.pop(0)
if node.left is not None:
queue.append(node.left)
if node.right is not None:
queue.append(node.right)
return res
print("Level order Traversal: ", LevelOrderTraversal(root)) | class Tree:
def __init__(self, val, left=None, right=None):
self.val = val
self.left = left
self.right = right
root = tree(4, left=tree(3), right=tree(5, left=tree(4)))
def in_order_traversal(root, res=[]):
if root is None:
return res
in_order_traversal(root.left, res)
in_order_traversal(root.right, res)
res.append(root.val)
return res
print('In order:', in_order_traversal(root))
def pre_order_traversal(root, res=[]):
if root is None:
return res
res.append(root.val)
in_order_traversal(root.left, res)
in_order_traversal(root.right, res)
return res
print('Pre order:', pre_order_traversal(root))
def post_order_traversal(root, res=[]):
if root is None:
return res
in_order_traversal(root.left, res)
res.append(root.val)
in_order_traversal(root.right, res)
return res
print('Post order:', post_order_traversal(root))
def level_order_traversal(root, res=[]):
if root is None:
return res
queue = []
queue.append(root)
while len(queue) > 0:
res.append(queue[0].val)
node = queue.pop(0)
if node.left is not None:
queue.append(node.left)
if node.right is not None:
queue.append(node.right)
return res
print('Level order Traversal: ', level_order_traversal(root)) |
def groups_for_user(environ, user):
if user == 'feng':
return ['secret-agents']
return ['']
| def groups_for_user(environ, user):
if user == 'feng':
return ['secret-agents']
return [''] |
SOLIDITY_TO_BQ_TYPES = {
'address': 'STRING',
}
table_description = ''
def abi_to_table_definitions_for_solana(
abi,
dataset_name,
contract_name,
contract_address=None,
include_functions=False
):
result = {}
for a in abi.get('events') if abi.get('events') else []:
parser_type = 'log'
table_name = create_table_name(a, contract_name, parser_type)
result[table_name] = abi_to_table_definition(a, contract_address, dataset_name, contract_name, parser_type)
if include_functions:
for a in abi.get('instructions') if abi.get('instructions') else []:
parser_type = 'instruction'
table_name = create_table_name(a, contract_name, parser_type)
result[table_name] = abi_to_table_definition(a, contract_address, dataset_name, contract_name, parser_type)
return result
def abi_to_table_definition(abi, contract_address, dataset_name, contract_name, parser_type):
table_name = create_table_name(abi, contract_name, parser_type)
result = {}
result['parser'] = {
'type': parser_type,
'contract_address': contract_address,
'idl': abi,
'field_mapping': {}
}
inputs = abi.get('args') if parser_type == 'instruction' else abi.get('fields')
schema = [
{
'name': x.get('name'),
'description': '',
'type': 'STRING' # we sometimes get parsing errors, so safest to make all STRING
} for x in inputs
]
if parser_type == 'instruction' and abi.get('accounts'):
schema.append({
'name': 'accounts',
'description': 'accounts',
'type': 'RECORD',
'fields': [
{
'name': acc.get('name'),
'description': '',
'type': 'STRING'
} for acc in abi.get('accounts')
]
})
result['table'] = {
'dataset_name': dataset_name,
'table_name': table_name,
'table_description': table_description,
'schema': schema
}
return result
def create_table_name(abi, contract_name, parser_type):
if parser_type == 'log':
return contract_name + '_event_' + abi['name']
else:
return contract_name + '_call_' + abi['name']
def get_columns_from_event_abi(event_abi):
return [a.get('name') for a in event_abi['inputs']]
| solidity_to_bq_types = {'address': 'STRING'}
table_description = ''
def abi_to_table_definitions_for_solana(abi, dataset_name, contract_name, contract_address=None, include_functions=False):
result = {}
for a in abi.get('events') if abi.get('events') else []:
parser_type = 'log'
table_name = create_table_name(a, contract_name, parser_type)
result[table_name] = abi_to_table_definition(a, contract_address, dataset_name, contract_name, parser_type)
if include_functions:
for a in abi.get('instructions') if abi.get('instructions') else []:
parser_type = 'instruction'
table_name = create_table_name(a, contract_name, parser_type)
result[table_name] = abi_to_table_definition(a, contract_address, dataset_name, contract_name, parser_type)
return result
def abi_to_table_definition(abi, contract_address, dataset_name, contract_name, parser_type):
table_name = create_table_name(abi, contract_name, parser_type)
result = {}
result['parser'] = {'type': parser_type, 'contract_address': contract_address, 'idl': abi, 'field_mapping': {}}
inputs = abi.get('args') if parser_type == 'instruction' else abi.get('fields')
schema = [{'name': x.get('name'), 'description': '', 'type': 'STRING'} for x in inputs]
if parser_type == 'instruction' and abi.get('accounts'):
schema.append({'name': 'accounts', 'description': 'accounts', 'type': 'RECORD', 'fields': [{'name': acc.get('name'), 'description': '', 'type': 'STRING'} for acc in abi.get('accounts')]})
result['table'] = {'dataset_name': dataset_name, 'table_name': table_name, 'table_description': table_description, 'schema': schema}
return result
def create_table_name(abi, contract_name, parser_type):
if parser_type == 'log':
return contract_name + '_event_' + abi['name']
else:
return contract_name + '_call_' + abi['name']
def get_columns_from_event_abi(event_abi):
return [a.get('name') for a in event_abi['inputs']] |
"""Metadata presets for commonly used keywords."""
presets = {
chest : {"Anatomical Region":
{"ID": "0001443",
"Name": "chest",
"Ontology Acronym": "UBERON",
"Ontology Name": "Uber Anatomy Ontology",
"Resource URL":
"http://purl.obolibrary.org/obo/UBERON_0001443"}},
abdomen : {"Anatomical Region":
{"ID": "0000916",
"Name": "abdomen",
"Ontology Acronym": "UBERON",
"Ontology Name": "Uber Anatomy Ontology",
"Resource URL":
"http://purl.obolibrary.org/obo/UBERON_0000916"}},
neck : {"Anatomical Region":
{"ID": "0000974",
"Name": "neck",
"Ontology Acronym": "UBERON",
"Ontology Name": "Uber Anatomy Ontology",
"Resource URL":
"http://purl.obolibrary.org/obo/UBERON_0000974"}},
head : {"Anatomical Region":
{"ID": "0000033",
"Name": "head",
"Ontology Acronym": "UBERON",
"Ontology Name": "Uber Anatomy Ontology",
"Resource URL":
"http://purl.obolibrary.org/obo/UBERON_0000033"}}}
| """Metadata presets for commonly used keywords."""
presets = {chest: {'Anatomical Region': {'ID': '0001443', 'Name': 'chest', 'Ontology Acronym': 'UBERON', 'Ontology Name': 'Uber Anatomy Ontology', 'Resource URL': 'http://purl.obolibrary.org/obo/UBERON_0001443'}}, abdomen: {'Anatomical Region': {'ID': '0000916', 'Name': 'abdomen', 'Ontology Acronym': 'UBERON', 'Ontology Name': 'Uber Anatomy Ontology', 'Resource URL': 'http://purl.obolibrary.org/obo/UBERON_0000916'}}, neck: {'Anatomical Region': {'ID': '0000974', 'Name': 'neck', 'Ontology Acronym': 'UBERON', 'Ontology Name': 'Uber Anatomy Ontology', 'Resource URL': 'http://purl.obolibrary.org/obo/UBERON_0000974'}}, head: {'Anatomical Region': {'ID': '0000033', 'Name': 'head', 'Ontology Acronym': 'UBERON', 'Ontology Name': 'Uber Anatomy Ontology', 'Resource URL': 'http://purl.obolibrary.org/obo/UBERON_0000033'}}} |
class Solution:
def validPalindrome(self, s):
"""
:type s: str
:rtype: bool
"""
left = 0
right = len(s)-1
while left < right:
if s[left] != s[right]:
return self.isPalindrome(s, left, right-1) or self.isPalindrome(s, left+1, right)
else:
left += 1
right -= 1
return True
def isPalindrome(self, s, left, right):
while left < right:
if s[left] != s[right]:
return False
else:
left += 1
right -= 1
return True
| class Solution:
def valid_palindrome(self, s):
"""
:type s: str
:rtype: bool
"""
left = 0
right = len(s) - 1
while left < right:
if s[left] != s[right]:
return self.isPalindrome(s, left, right - 1) or self.isPalindrome(s, left + 1, right)
else:
left += 1
right -= 1
return True
def is_palindrome(self, s, left, right):
while left < right:
if s[left] != s[right]:
return False
else:
left += 1
right -= 1
return True |
roman_dict = {
"I" : 1,
"V" : 5,
"X" : 10,
"L" : 50,
"C" : 100,
"D" : 500,
"M" : 1000
}
class Solution:
def romanToInt(self, s: str) -> int:
previous = 0
current = 0
result = 0
for x in s[::-1]:
current = roman_dict[x]
if (previous > current):
result -= current
else:
result += current
previous = current
print(result)
obj = Solution()
obj.romanToInt("III")
obj.romanToInt("XXVII")
obj.romanToInt("IV") | roman_dict = {'I': 1, 'V': 5, 'X': 10, 'L': 50, 'C': 100, 'D': 500, 'M': 1000}
class Solution:
def roman_to_int(self, s: str) -> int:
previous = 0
current = 0
result = 0
for x in s[::-1]:
current = roman_dict[x]
if previous > current:
result -= current
else:
result += current
previous = current
print(result)
obj = solution()
obj.romanToInt('III')
obj.romanToInt('XXVII')
obj.romanToInt('IV') |
# Usage: execute
# $ python support/generate.py
# at wpt/upgrade-insecure-requests/.
#
# Note: Some tests (link-upgrade.sub.https.html and
# websocket-upgrade.https.html) are not covered by this generator script.
template = '''<!DOCTYPE html>
<html>
<head>
<!-- Generated by wpt/upgrade-insecure-requests/support/generate.py -->%(additionalMeta)s
<title>Upgrade Insecure Requests: %(name)s.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="./support/testharness-helper.sub.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
</head>
<body>
<script>
const tests = %(generatorName)s(ResourceType.%(resourceType)s, %(sameOriginOnly)s);
tests.forEach(test => testMap['%(name)s'](test));
</script>
</body>
</html>
'''
def getLong(file):
testsThatNeedMoreTime = [ "worker-subresource-fetch-redirect-upgrade.https.html" ]
if any(file in item for item in testsThatNeedMoreTime ):
return '\n<meta name="timeout" content="long">'
return ""
# resourceType is |ResourceType| in testharness-helper.sub.js.
for name, resourceType in [
('image', 'IMAGE'), ('iframe', 'FRAME'),
('animation-worklet', 'WORKLET'), ('audio-worklet', 'WORKLET'),
('layout-worklet', 'WORKLET'), ('paint-worklet', 'WORKLET'),
('worker', 'WORKER'),
('module-worker', 'WORKER'),
('worker-subresource-xhr', 'FETCH'),
('worker-subresource-fetch', 'FETCH'),
('shared-worker', 'SHARED_WORKER')]:
# TODO(https://crbug.com/989399): Add tests for subresource requests on shared
# workers, and main/subresource requests on service workers.
sameOriginOnly = 'false'
if resourceType == 'WORKER' or resourceType == 'SHARED_WORKER':
sameOriginOnly = 'true'
types = [('', 'generateTests'), ('-redirect', 'generateRedirectTests')]
if name == 'module-worker' or resourceType == 'WORKLET':
types.append(('-import', 'generateModuleImportTests'))
for typeName, generatorName in types:
filename = '%s%s-upgrade.https.html' % (name, typeName)
with open(filename, 'w') as html_file:
html_file.write(template % {
'name': name,
'additionalMeta': getLong(filename),
'resourceType': resourceType,
'generatorName': generatorName,
'sameOriginOnly': sameOriginOnly})
| template = '<!DOCTYPE html>\n<html>\n<head>\n<!-- Generated by wpt/upgrade-insecure-requests/support/generate.py -->%(additionalMeta)s\n<title>Upgrade Insecure Requests: %(name)s.</title>\n<script src="/resources/testharness.js"></script>\n<script src="/resources/testharnessreport.js"></script>\n<script src="./support/testharness-helper.sub.js"></script>\n<script src="/common/security-features/resources/common.sub.js"></script>\n\n<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">\n</head>\n<body>\n<script>\nconst tests = %(generatorName)s(ResourceType.%(resourceType)s, %(sameOriginOnly)s);\ntests.forEach(test => testMap[\'%(name)s\'](test));\n</script>\n</body>\n</html>\n'
def get_long(file):
tests_that_need_more_time = ['worker-subresource-fetch-redirect-upgrade.https.html']
if any((file in item for item in testsThatNeedMoreTime)):
return '\n<meta name="timeout" content="long">'
return ''
for (name, resource_type) in [('image', 'IMAGE'), ('iframe', 'FRAME'), ('animation-worklet', 'WORKLET'), ('audio-worklet', 'WORKLET'), ('layout-worklet', 'WORKLET'), ('paint-worklet', 'WORKLET'), ('worker', 'WORKER'), ('module-worker', 'WORKER'), ('worker-subresource-xhr', 'FETCH'), ('worker-subresource-fetch', 'FETCH'), ('shared-worker', 'SHARED_WORKER')]:
same_origin_only = 'false'
if resourceType == 'WORKER' or resourceType == 'SHARED_WORKER':
same_origin_only = 'true'
types = [('', 'generateTests'), ('-redirect', 'generateRedirectTests')]
if name == 'module-worker' or resourceType == 'WORKLET':
types.append(('-import', 'generateModuleImportTests'))
for (type_name, generator_name) in types:
filename = '%s%s-upgrade.https.html' % (name, typeName)
with open(filename, 'w') as html_file:
html_file.write(template % {'name': name, 'additionalMeta': get_long(filename), 'resourceType': resourceType, 'generatorName': generatorName, 'sameOriginOnly': sameOriginOnly}) |
#!usr/bin/env python3
color_chart = {
'1C1':[13.24, 88.89, 228.98, 0.], '1N1':[14.2, 95.37, 233.82, 0.], '1N2':[12.95, 91.79, 219.5, 0.],
'1W1':[14.67, 103.64, 229.41, 0.], '1W2':[14.69, 106.34, 227.28, 0.], '2C0':[15.73, 134.68, 222.32, 0.],
'2C1':[14.57, 125.89, 220.69, 0.], '2C3':[13.7, 103.72, 199.46, 0.], '2N1':[15., 104.25, 225.8, 0.],
'2W0':[15., 110.11, 224.22, 0.], '2W1':[14.42, 125.06, 224.55, 0.], '2W2':[17.13, 141.58, 209.99, 0.],
'3C1':[15.7, 118.18, 212.01, 0.], '3C2':[15.7, 118.18, 212.01, 0.], '3N1':[16.1, 150.1, 189.09, 0.],
'3N2':[15.18, 140.68, 202.63, 0.], '3W1':[15.66, 129.81, 209.44, 0.], '3W2':[17.05, 161.56, 184.85, 0.],
'4C3':[14.23, 148.1, 198.74, 0.], '4N1':[15.92, 159.35, 190.71, 0.], '4N2':[17.29, 166.95, 195.76, 0.],
'4W1':[14.67, 143.61, 208.85, 0.], '4W2':[17.76, 162.02, 189.44, 0.], '5C1':[13.09, 179.49, 160.58, 0.],
'5N1':[15.43, 187.36, 180.34, 0.], '5N2':[16.66, 207.88, 147.84, 0.], '5W1':[15.66, 163.85, 182.07, 0.],
'5W2':[14.95, 160.63, 189.17, 0.], '6C2':[12.85, 179.52, 131.66, 0.], '6N1':[14.94, 185.61, 162.16, 0.],
'6N2':[15.7, 183.46, 138.37, 0.], '6W1':[14.76, 166.57, 166.78, 0.], '6W2':[13.79, 176.99, 142.22, 0.],
'7C1':[12.2, 191.5, 121.34, 0.], '7N1':[12.7, 162.67, 109.41, 0.], '7W1':[13.25, 165.64, 126.03, 0.],
'8N1':[12.5, 191.83, 95.43, 0.], 'CR1':[14.09, 173.14, 163.66, 0.]}
color_chart_new = {
'1C1':[14.63, 79.35, 239.58, 0.], '1N1':[16.89, 77.75, 243.46, 0.], '1N2':[13.27, 104.13, 231.18, 0.],
'1W1':[17.78, 104.99, 236.54, 0.], '1W2':[16., 117.24, 234.86, 0.], '2C0':[17.16, 80.90, 240.48, 0.],
'2C1':[14., 116.60, 237.21, 0.], '2C3':[13.36, 94.80, 231.17, 0.], '2N1':[16., 115.65, 238.19, 0.],
'2W0':[15.79, 108.95, 237.93, 0.], '2W1':[15.01, 120.45, 240.01, 0.], '2W2':[17.97, 125.56, 243.83, 0.],
'3C1':[10.99, 115.63, 226.18, 0.], '3C2':[10.84, 117.73, 219.17, 0.], '3N1':[11.9, 126.73, 228.04, 0.],
'3N2':[11.43, 126.97, 224.13, 0.], '3W1':[13.14, 148.12, 229.10, 0.], '3W2':[14.01, 133.06, 234.48, 0.],
'4C3':[11.68, 150.85, 219.34, 0.], '4N1':[12., 151.75, 190.41, 0.], '4N2':[12.24, 138.18, 206.75, 0.],
'4W1':[12., 151.31, 224.04, 0.], '4W2':[12., 165.62, 201.74, 0.], '5C1':[10.4, 184.48, 176.72, 0.],
'5N1':[11.68, 188.46, 210.23, 0.], '5N2':[10.98, 183.80, 195.04, 0.], '5W1':[12.73, 185.75, 221.30, 0.],
'5W2':[10.83, 162.54, 211.10, 0.], '6C2':[9.29, 217.70, 111.99, 0.], '6N1':[11.24, 180.30, 156.76, 0.],
'6N2':[11., 173.55, 145.55, 0.], '6W1':[11.09, 188.43, 171.41, 0.], '6W2':[11., 182.77, 151.02, 0.],
'7C1':[8.07, 199.37, 115.59, 0.], '7N1':[9.93, 187.51, 122.57, 0.], '7W1':[9.86, 192.48, 135.62, 0.],
'8N1':[8.64, 181.83, 109.53, 0.]} | color_chart = {'1C1': [13.24, 88.89, 228.98, 0.0], '1N1': [14.2, 95.37, 233.82, 0.0], '1N2': [12.95, 91.79, 219.5, 0.0], '1W1': [14.67, 103.64, 229.41, 0.0], '1W2': [14.69, 106.34, 227.28, 0.0], '2C0': [15.73, 134.68, 222.32, 0.0], '2C1': [14.57, 125.89, 220.69, 0.0], '2C3': [13.7, 103.72, 199.46, 0.0], '2N1': [15.0, 104.25, 225.8, 0.0], '2W0': [15.0, 110.11, 224.22, 0.0], '2W1': [14.42, 125.06, 224.55, 0.0], '2W2': [17.13, 141.58, 209.99, 0.0], '3C1': [15.7, 118.18, 212.01, 0.0], '3C2': [15.7, 118.18, 212.01, 0.0], '3N1': [16.1, 150.1, 189.09, 0.0], '3N2': [15.18, 140.68, 202.63, 0.0], '3W1': [15.66, 129.81, 209.44, 0.0], '3W2': [17.05, 161.56, 184.85, 0.0], '4C3': [14.23, 148.1, 198.74, 0.0], '4N1': [15.92, 159.35, 190.71, 0.0], '4N2': [17.29, 166.95, 195.76, 0.0], '4W1': [14.67, 143.61, 208.85, 0.0], '4W2': [17.76, 162.02, 189.44, 0.0], '5C1': [13.09, 179.49, 160.58, 0.0], '5N1': [15.43, 187.36, 180.34, 0.0], '5N2': [16.66, 207.88, 147.84, 0.0], '5W1': [15.66, 163.85, 182.07, 0.0], '5W2': [14.95, 160.63, 189.17, 0.0], '6C2': [12.85, 179.52, 131.66, 0.0], '6N1': [14.94, 185.61, 162.16, 0.0], '6N2': [15.7, 183.46, 138.37, 0.0], '6W1': [14.76, 166.57, 166.78, 0.0], '6W2': [13.79, 176.99, 142.22, 0.0], '7C1': [12.2, 191.5, 121.34, 0.0], '7N1': [12.7, 162.67, 109.41, 0.0], '7W1': [13.25, 165.64, 126.03, 0.0], '8N1': [12.5, 191.83, 95.43, 0.0], 'CR1': [14.09, 173.14, 163.66, 0.0]}
color_chart_new = {'1C1': [14.63, 79.35, 239.58, 0.0], '1N1': [16.89, 77.75, 243.46, 0.0], '1N2': [13.27, 104.13, 231.18, 0.0], '1W1': [17.78, 104.99, 236.54, 0.0], '1W2': [16.0, 117.24, 234.86, 0.0], '2C0': [17.16, 80.9, 240.48, 0.0], '2C1': [14.0, 116.6, 237.21, 0.0], '2C3': [13.36, 94.8, 231.17, 0.0], '2N1': [16.0, 115.65, 238.19, 0.0], '2W0': [15.79, 108.95, 237.93, 0.0], '2W1': [15.01, 120.45, 240.01, 0.0], '2W2': [17.97, 125.56, 243.83, 0.0], '3C1': [10.99, 115.63, 226.18, 0.0], '3C2': [10.84, 117.73, 219.17, 0.0], '3N1': [11.9, 126.73, 228.04, 0.0], '3N2': [11.43, 126.97, 224.13, 0.0], '3W1': [13.14, 148.12, 229.1, 0.0], '3W2': [14.01, 133.06, 234.48, 0.0], '4C3': [11.68, 150.85, 219.34, 0.0], '4N1': [12.0, 151.75, 190.41, 0.0], '4N2': [12.24, 138.18, 206.75, 0.0], '4W1': [12.0, 151.31, 224.04, 0.0], '4W2': [12.0, 165.62, 201.74, 0.0], '5C1': [10.4, 184.48, 176.72, 0.0], '5N1': [11.68, 188.46, 210.23, 0.0], '5N2': [10.98, 183.8, 195.04, 0.0], '5W1': [12.73, 185.75, 221.3, 0.0], '5W2': [10.83, 162.54, 211.1, 0.0], '6C2': [9.29, 217.7, 111.99, 0.0], '6N1': [11.24, 180.3, 156.76, 0.0], '6N2': [11.0, 173.55, 145.55, 0.0], '6W1': [11.09, 188.43, 171.41, 0.0], '6W2': [11.0, 182.77, 151.02, 0.0], '7C1': [8.07, 199.37, 115.59, 0.0], '7N1': [9.93, 187.51, 122.57, 0.0], '7W1': [9.86, 192.48, 135.62, 0.0], '8N1': [8.64, 181.83, 109.53, 0.0]} |
# !!!!!!! This file is OBSOLETE. Its content has been absorbed into pilotController.py in the autopilot repository.
# !!!!!!! Questions to Torre Wenaus.
PandaSiteIDs = {
'AGLT2' : {'nickname':'AGLT2-condor','status':'OK'},
'ALBERTA-LCG2' : {'nickname':'ALBERTA-LCG2-lcgce01-atlas-lcgpbs','status':'OK'},
'ANALY_AGLT2' : {'nickname':'ANALY_AGLT2-condor','status':'OK'},
'ANALY_ALBERTA' : {'nickname':'ALBERTA-LCG2-lcgce01-atlas-lcgpbs','status':'OK'},
'ANALY_BEIJING' : {'nickname':'BEIJING-LCG2-lcg002-atlas-lcgpbs','status':'OK'},
'ANALY_BNL' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_ATLAS_1' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_ATLAS_2' : {'nickname':'BNL_ATLAS_2-condor','status':'OK'},
#'ANALY_BNL_LOCAL' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_test' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_test2' : {'nickname':'ANALY_BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BNL_test3' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_BRUNEL' : {'nickname':'UKI-LT2-Brunel-dgc-grid-44-atlas-lcgpbs','status':'notOK'},
'ANALY_CERN' : {'nickname':'CERN-PROD-ce123-grid_atlas-lcglsf','status':'notOK'},
'ANALY_CNAF' : {'nickname':'INFN-CNAF-gridit-ce-001-lcg-lcgpbs','status':'notOK'},
'ANALY_CPPM' : {'nickname':'IN2P3-CPPM-marce01-atlas-pbs','status':'OK'},
'ANALY_FZK' : {'nickname':'FZK-LCG2-ce-5-fzk-atlasXS-pbspro','status':'OK'},
'ANALY_GLASGOW' : {'nickname':'UKI-SCOTGRID-GLASGOW-svr021-q3d-lcgpbs','status':'OK'},
'ANALY_GLOW-ATLAS' : {'nickname':'GLOW-ATLAS-condor','status':'OK'},
'ANALY_GRIF-IRFU' : {'nickname':'GRIF-IRFU-node07-atlas-lcgpbs','status':'OK'},
'ANALY_GRIF-LAL' : {'nickname':'GRIF-LAL-grid10-atlasana-pbs','status':'notOK'},
'ANALY_GRIF-LPNHE' : {'nickname':'GRIF-LPNHE-lpnce-atlas-pbs','status':'notOK'},
'ANALY_HU_ATLAS_Tier2' : {'nickname':'ANALY_HU_ATLAS_Tier2-lsf','status':'OK'},
'ANALY_LANCS' : {'nickname':'UKI-NORTHGRID-LANCS-HEP-fal-pygrid-18-atlas-lcgpbs','status':'notOK'},
'ANALY_LAPP' : {'nickname':'IN2P3-LAPP-lapp-ce01-atlas-pbs','status':'notOK'},
'ANALY_LIV' : {'nickname':'UKI-NORTHGRID-LIV-HEP-hepgrid2-atlas-lcgpbs','status':'notOK'},
'ANALY_LONG_BNL' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_LONG_BNL_ATLAS' : {'nickname':'BNL_ATLAS_2-condor','status':'OK'},
'ANALY_LONG_BNL_LOCAL' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'ANALY_LONG_LYON' : {'nickname':'IN2P3-CC-T2-cclcgceli05-long-bqs','status':'OK'},
'ANALY_LPC' : {'nickname':'IN2P3-LPC-clrlcgce03-atlas-lcgpbs','status':'notOK'},
'ANALY_LPSC' : {'nickname':'IN2P3-LPSC-lpsc-ce-atlas-pbs','status':'OK'},
'ANALY_LYON' : {'nickname':'IN2P3-CC-T2-cclcgceli05-medium-bqs','status':'OK'},
'ANALY_MANC' : {'nickname':'UKI-NORTHGRID-MAN-HEP-ce01-atlas-lcgpbs','status':'OK'},
'ANALY_MCGILL' : {'nickname':'MCGILL-LCG2-atlas-ce-atlas-lcgpbs','status':'OK'},
'ANALY_MWT2' : {'nickname':'ANALY_MWT2-condor','status':'notOK'},
'ANALY_MWT2_SHORT' : {'nickname':'ANALY_MWT2_SHORT-pbs','status':'notOK'},
'ANALY_NET2' : {'nickname':'ANALY_NET2-pbs','status':'OK'},
'ANALY_OU_OCHEP_SWT2' : {'nickname':'ANALY_OU_OCHEP_SWT2-condor','status':'notOK'},
'ANALY_PIC' : {'nickname':'pic-ce07-gshort-lcgpbs','status':'OK'},
'ANALY_RAL' : {'nickname':'RAL-LCG2-lcgce01-atlasL-lcgpbs','status':'OK'},
'ANALY_ROMANIA02' : {'nickname':'RO-02-NIPNE-tbat01-atlas-lcgpbs','status':'notOK'},
'ANALY_ROMANIA07' : {'nickname':'RO-07-NIPNE-tbit01-atlas-lcgpbs','status':'notOK'},
'ANALY_SARA' : {'nickname':'SARA-MATRIX-mu6-short-pbs','status':'notOK'},
'ANALY_SFU' : {'nickname':'SFU-LCG2-snowpatch-hep-atlas-lcgpbs','status':'notOK'},
'ANALY_SHEF' : {'nickname':'UKI-NORTHGRID-SHEF-HEP-lcgce0-atlas-lcgpbs','status':'OK'},
'ANALY_SLAC' : {'nickname':'ANALY_SLAC-lsf','status':'OK'},
'ANALY_SWT2_CPB' : {'nickname':'ANALY_SWT2_CPB-pbs','status':'OK'},
'ANALY_TAIWAN' : {'nickname':'Taiwan-LCG2-w-ce01-atlas-lcgpbs','status':'OK'},
'ANALY_TEST' : {'nickname':'ANALY_TEST','status':'OK'},
'ANALY_TORONTO' : {'nickname':'TORONTO-LCG2-bigmac-lcg-ce2-atlas-pbs','status':'OK'},
'ANALY_TOKYO' : {'nickname':'TOKYO-LCG2-lcg-ce01-atlas-lcgpbs','status':'OK'},
'ANALY_TRIUMF' : {'nickname':'TRIUMF-LCG2-ce1-atlas-lcgpbs','status':'OK'},
'ANALY_UBC' : {'nickname':'UBC-pbs','status':'OK'},
'ANALY_UIUC-HEP' : {'nickname':'ANALY_UIUC-HEP-condor','status':'OK'},
'ANALY_UTA' : {'nickname':'UTA-DPCC-pbs','status':'OK'},
'ANALY_UTA-DPCC' : {'nickname':'UTA-DPCC-test-pbs','status':'notOK'},
'ANALY_VICTORIA' : {'nickname':'VICTORIA-LCG2-lcg-ce-general-lcgpbs','status':'OK'},
'AUVERGRID' : {'nickname':'AUVERGRID-iut15auvergridce01-atlas-lcgpbs','status':'notOK'},
'ASGC' : {'nickname':'Taiwan-LCG2-w-ce01-atlas-lcgpbs','status':'OK'},
'ASGC_REPRO' : {'nickname':'ASGC_REPRO','status':'notOK'},
'Australia-ATLAS' : {'nickname':'Australia-ATLAS-agh2-atlas-lcgpbs','status':'OK'},
'BARNETT_TEST' : {'nickname':'BARNETT_TEST','status':'notOK'},
'BEIJING' : {'nickname':'BEIJING-LCG2-lcg002-atlas-lcgpbs','status':'OK'},
'BNLPROD' : {'nickname':'BNL_ATLAS_1-condor','status':'notOK'},
'BNL_ATLAS_1' : {'nickname':'BNL_ATLAS_1-condor','status':'OK'},
'BNL_ATLAS_2' : {'nickname':'BNL_ATLAS_2-condor','status':'OK'},
'BNL_ATLAS_DDM' : {'nickname':'BNL_DDM-condor','status':'notOK'},
'BNL_ATLAS_test' : {'nickname':'BNL_ATLAS_2-condor','status':'notOK'},
'BU_ATLAS_Tier2' : {'nickname':'BU_ATLAS_Tier2-pbs','status':'OK'},
'BU_ATLAS_Tier2o' : {'nickname':'BU_ATLAS_Tier2o-pbs','status':'OK'},
'BU_ATLAS_test' : {'nickname':'BU_ATLAS_Tier2-pbs','status':'NOTOK'},
'HU_ATLAS_Tier2' : {'nickname':'HU_ATLAS_Tier2-lsf','status':'OK'},
'CERN-BUILDS' : {'nickname':'CERN-BUILDS','status':'notOK'},
'CERN-RELEASE' : {'nickname':'CERN-RELEASE','status':'notOK'},
'CERN-UNVALID' : {'nickname':'CERN-UNVALID','status':'notOK'},
'CGG' : {'nickname':'CGG-LCG2-ce1-atlas-lcgpbs','status':'notOK'},
'CHARMM' : {'nickname':'CHARMM','status':'notOK'},
'CNR-ILC-PISA' : {'nickname':'CNR-ILC-PISA-gridce-atlas-lcgpbs','status':'notOK'},
'CPPM' : {'nickname':'IN2P3-CPPM-marce01-atlas-pbs','status':'OK'},
'CSCS-LCG2' : {'nickname':'CSCS-LCG2-ce01-egee48h-lcgpbs','status':'OK'},
'csTCDie' : {'nickname':'csTCDie-gridgate-himem-pbs','status':'OK'},
'CYF' : {'nickname':'CYFRONET-LCG2-ce-atlas-pbs','status':'OK'},
'DESY-HH' : {'nickname':'DESY-HH-grid-ce3-default-lcgpbs','status':'OK'},
'DESY-ZN' : {'nickname':'DESY-ZN-lcg-ce0-atlas-lcgpbs','status':'OK'},
'EFDA-JET' : {'nickname':'EFDA-JET-grid002-atlas-lcgpbs','status':'notok'},
'FZK-LCG2' : {'nickname':'FZK-LCG2-ce-1-fzk-atlasXL-pbspro','status':'OK'},
'FZK_REPRO' : {'nickname':'FZK_REPRO','status':'notOK'},
'FZU' : {'nickname':'praguelcg2-golias25-lcgatlas-lcgpbs','status':'OK'},
'GLOW' : {'nickname':'GLOW-CMS-cmsgrid02-atlas-condor','status':'notOK'},
'GLOW-ATLAS' : {'nickname':'GLOW-ATLAS-condor','status':'OK'},
'GoeGrid' : {'nickname':'GoeGrid-ce-goegrid-atlas-lcgpbs','status':'OK'},
'GRIF-IRFU' : {'nickname':'GRIF-IRFU-node07-atlas-lcgpbs','status':'OK'},
'GRIF-LAL' : {'nickname':'GRIF-LAL-grid10-atlas-pbs','status':'OK'},
'GRIF-LPNHE' : {'nickname':'GRIF-LPNHE-lpnce-atlas-pbs','status':'OK'},
'HEPHY-UIBK' : {'nickname':'HEPHY-UIBK-hepx4-atlas-lcgpbs','status':'OK'},
'IFAE' : {'nickname':'ifae-ifaece01-ifae-lcgpbs','status':'OK'},
'IFIC' : {'nickname':'IFIC-LCG2-ce01-atlas-pbs','status':'OK'},
'IHEP' : {'nickname':'BEIJING-LCG2-lcg002-atlas-lcgpbs','status':'OK'},
'ITEP' : {'nickname':'ITEP-ceglite-atlas-lcgpbs','status':'OK'},
'IN2P3-LPSC' : {'nickname':'IN2P3-LPSC-lpsc-ce-atlas-pbs','status':'OK'},
'JINR-LCG2' : {'nickname':'JINR-LCG2-lcgce01-atlas-lcgpbs', 'status':'OK'},
'LAPP' : {'nickname':'IN2P3-LAPP-lapp-ce01-atlas-pbs','status':'OK'},
'LIP-COIMBRA' : {'nickname':'LIP-Coimbra-grid006-atlas-lcgpbs','status':'OK'},
'LIP-LISBON' : {'nickname':'LIP-Lisbon-ce02-atlasgrid-lcgsge','status':'OK'},
'LLR' : {'nickname':'GRIF-LLR-polgrid1-atlas-pbs','status':'notOK'},
'LPC' : {'nickname':'IN2P3-LPC-clrlcgce03-atlas-lcgpbs','status':'OK'},
'LRZ' : {'nickname':'LRZ-LMU-lcg-lrz-ce-atlas-sge','status':'OK'},
'LYON' : {'nickname':'IN2P3-CC-cclcgceli02-long-bqs','status':'OK'},
'LYON_REPRO' : {'nickname':'LYON_REPRO','status':'notOK'},
'Lyon-T2' : {'nickname':'IN2P3-CC-T2-cclcgceli05-long-bqs','status':'OK'},
'LTU_CCT' : {'nickname':'LTU_CCT-pbs','status':'OK'},
'MANC' : {'nickname':'UKI-NORTHGRID-MAN-HEP-ce02-atlas-lcgpbs','status':'OK'},
'MCGILL-LCG2' : {'nickname':'MCGILL-LCG2-atlas-ce-atlas-pbs','status':'OK'},
'MONTREAL' : {'nickname':'Umontreal-LCG2-lcg-ce-atlas-lcgpbs','status':'notOK'},
'MPP' : {'nickname':'MPPMU-grid-ce-long-sge','status':'OK'},
'MWT2_IU' : {'nickname':'MWT2_IU-pbs','status':'OK'},
'MWT2_UC' : {'nickname':'MWT2_UC-pbs','status':'OK'},
'NDGF' : {'nickname':'NDGF-condor','status':'OK'},
'NIKHEF-ELPROD' : {'nickname':'NIKHEF-ELPROD-gazon-atlas-pbs','status':'OK'},
'NIKHEF_REPRO' : {'nickname':'NIKHEF_REPRO','status':'notOK'},
'OUHEP_ITB' : {'nickname':'OUHEP_ITB-condor','status':'notOK'},
'OU_PAUL_TEST' : {'nickname':'OU_OCHEP_SWT2-condor','status':'notOK'},
'OU_OCHEP_SWT2' : {'nickname':'OU_OCHEP_SWT2-condor','status':'OK'},
'OU_OSCER_ATLAS' : {'nickname':'OU_OSCER_ATLAS-lsf','status':'OK'},
'OU_OSCER_ATLASdeb' : {'nickname':'OU_OSCER_ATLASdeb-lsf','status':'notOK'},
'PSNC' : {'nickname':'PSNC-ce-atlas-pbs','status':'OK'},
'PIC' : {'nickname':'pic-ce05-glong-lcgpbs','status':'OK'},
'PIC_REPRO' : {'nickname':'PIC_REPRO','status':'notOK'},
'prague_cesnet_lcg2' : {'nickname':'prague_cesnet_lcg2-skurut17-egee_atlas-lcgpbs','status':'notOK'},
'RAL' : {'nickname':'RAL-LCG2-lcgce02-grid1000M-lcgpbs','status':'OK'},
'RAL_REPRO' : {'nickname':'RAL_REPRO','status':'notOK'},
'ru-Moscow-SINP-LCG2' : {'nickname':'ru-Moscow-SINP-LCG2-lcg02-atlas-lcgpbs','status':'OK'},
'ru-PNPI' : {'nickname':'ru-PNPI-cluster-atlas-pbs','status':'OK'},
'RDIGTEST' : {'nickname':'RDIGTEST','status':'notOK'},
'ROMANIA02' : {'nickname':'RO-02-NIPNE-tbat01-atlas-lcgpbs','status':'OK'},
'ROMANIA07' : {'nickname':'RO-07-NIPNE-tbit01-atlas-lcgpbs','status':'OK'},
'RRC-KI' : {'nickname':'RRC-KI-gate-atlas-lcgpbs','status':'OK'},
'RU-Protvino-IHEP' : {'nickname':'RU-Protvino-IHEP-ce0003-atlas-lcgpbs','status':'OK'},
'SARA_REPRO' : {'nickname':'SARA_REPRO','status':'notOK'},
'SFU-LCG2' : {'nickname':'SFU-LCG2-snowpatch-atlas-lcgpbs','status':'OK'},
'SLACXRD' : {'nickname':'SLACXRD-lsf','status':'OK'},
'SLAC_PAUL_TEST' : {'nickname':'SLACXRD-lsf','status':'notOK'},
'SNS-PISA' : {'nickname':'SNS-PISA-gridce-atlas-lcgpbs','status':'notOK'},
'SPACI-CS-IA64' : {'nickname':'SPACI-CS-IA64-square-atlas-lsf','status':'notOK'},
'SWT2_CPB' : {'nickname':'SWT2_CPB-pbs','status':'OK'},
'Taiwan-IPAS-LCG2' : {'nickname':'Taiwan-IPAS-LCG2-atlasce-atlas-lcgcondor','status':'notOK'},
'TEST1' : {'nickname':'TEST1','status':'notOK'},
'TEST2' : {'nickname':'TEST2','status':'notOK'},
'TEST3' : {'nickname':'TEST3','status':'notOK'},
'TEST4' : {'nickname':'TEST4','status':'notOK'},
'TESTCHARMM' : {'nickname':'TESTCHARMM','status':'notOK'},
'TESTGLIDE' : {'nickname':'TESTGLIDE','status':'notOK'},
'TOKYO' : {'nickname':'TOKYO-LCG2-lcg-ce01-atlas-lcgpbs','status':'OK'},
'TORONTO-LCG2' : {'nickname':'TORONTO-LCG2-bigmac-lcg-ce2-atlas-pbs','status':'OK'},
'TPATHENA' : {'nickname':'TPATHENA','status':'notOK'},
'TPPROD' : {'nickname':'TPPROD','status':'notOK'},
'TRIUMF' : {'nickname':'TRIUMF-LCG2-ce1-atlas-lcgpbs','status':'OK'},
'TRIUMF_DDM' : {'nickname':'TRIUMF_DDM','status':'notOK'},
'TRIUMF_REPRO' : {'nickname':'TRIUMF_REPRO','status':'notOK'},
'TW-FTT' : {'nickname':'TW-FTT-f-ce01-atlas-lcgpbs','status':'OK'},
'TWTEST' : {'nickname':'TWTEST','status':'notOK'},
'TestPilot' : {'nickname':'TestPilot','status':'notOK'},
'UAM-LCG2' : {'nickname':'UAM-LCG2-grid003-atlas-lcgpbs','status':'OK'},
'UBC' : {'nickname':'UBC-pbs','status':'OK'},
'UBC_PAUL_TEST' : {'nickname':'UBC-pbs','status':'notOK'},
'UIUC-HEP' : {'nickname':'UIUC-HEP-condor','status':'OK'},
'UCITB_EDGE7' : {'nickname':'UCITB_EDGE7-pbs','status':'OK'},
'UC_ATLAS_MWT2' : {'nickname':'UC_ATLAS_MWT2-condor','status':'OK'},
'UC_ATLAS_test' : {'nickname':'UC_ATLAS_MWT2-condor','status':'OK'},
'UC_Teraport' : {'nickname':'UC_Teraport-pbs','status':'notOK'},
'UMESHTEST' : {'nickname':'UMESHTEST','status':'notOK'},
'UNI-FREIBURG' : {'nickname':'UNI-FREIBURG-ce-atlas-pbs','status':'OK'},
'UTA-DPCC' : {'nickname':'UTA-DPCC-pbs','status':'OK'},
'UTA-DPCC-test' : {'nickname':'UTA-DPCC-test-pbs','status':'OK'},
'UTA_PAUL_TEST' : {'nickname':'UTA-SWT2-pbs','status':'notOK'},
'UTA_SWT2' : {'nickname':'UTA-SWT2-pbs','status':'OK'},
'UTD-HEP' : {'nickname':'UTD-HEP-pbs','status':'OK'},
'VICTORIA-LCG2' : {'nickname':'VICTORIA-LCG2-lcg-ce-general-lcgpbs','status':'OK'},
'Wuppertal' : {'nickname':'wuppertalprod-grid-ce-dg_long-lcgpbs','status':'OK'},
}
# cloud-MoverID mapping
PandaMoverIDs = {
'US' : 'BNL_ATLAS_DDM',
'CA' : 'TRIUMF_DDM',
'FR' : 'TRIUMF_DDM',
'IT' : 'TRIUMF_DDM',
'NL' : 'TRIUMF_DDM',
'DE' : 'TRIUMF_DDM',
'TW' : 'TRIUMF_DDM',
'UK' : 'TRIUMF_DDM',
'ES' : 'TRIUMF_DDM',
}
| panda_site_i_ds = {'AGLT2': {'nickname': 'AGLT2-condor', 'status': 'OK'}, 'ALBERTA-LCG2': {'nickname': 'ALBERTA-LCG2-lcgce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_AGLT2': {'nickname': 'ANALY_AGLT2-condor', 'status': 'OK'}, 'ANALY_ALBERTA': {'nickname': 'ALBERTA-LCG2-lcgce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_BEIJING': {'nickname': 'BEIJING-LCG2-lcg002-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_BNL': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BNL_ATLAS_1': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BNL_ATLAS_2': {'nickname': 'BNL_ATLAS_2-condor', 'status': 'OK'}, 'ANALY_BNL_test': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BNL_test2': {'nickname': 'ANALY_BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BNL_test3': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_BRUNEL': {'nickname': 'UKI-LT2-Brunel-dgc-grid-44-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_CERN': {'nickname': 'CERN-PROD-ce123-grid_atlas-lcglsf', 'status': 'notOK'}, 'ANALY_CNAF': {'nickname': 'INFN-CNAF-gridit-ce-001-lcg-lcgpbs', 'status': 'notOK'}, 'ANALY_CPPM': {'nickname': 'IN2P3-CPPM-marce01-atlas-pbs', 'status': 'OK'}, 'ANALY_FZK': {'nickname': 'FZK-LCG2-ce-5-fzk-atlasXS-pbspro', 'status': 'OK'}, 'ANALY_GLASGOW': {'nickname': 'UKI-SCOTGRID-GLASGOW-svr021-q3d-lcgpbs', 'status': 'OK'}, 'ANALY_GLOW-ATLAS': {'nickname': 'GLOW-ATLAS-condor', 'status': 'OK'}, 'ANALY_GRIF-IRFU': {'nickname': 'GRIF-IRFU-node07-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_GRIF-LAL': {'nickname': 'GRIF-LAL-grid10-atlasana-pbs', 'status': 'notOK'}, 'ANALY_GRIF-LPNHE': {'nickname': 'GRIF-LPNHE-lpnce-atlas-pbs', 'status': 'notOK'}, 'ANALY_HU_ATLAS_Tier2': {'nickname': 'ANALY_HU_ATLAS_Tier2-lsf', 'status': 'OK'}, 'ANALY_LANCS': {'nickname': 'UKI-NORTHGRID-LANCS-HEP-fal-pygrid-18-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_LAPP': {'nickname': 'IN2P3-LAPP-lapp-ce01-atlas-pbs', 'status': 'notOK'}, 'ANALY_LIV': {'nickname': 'UKI-NORTHGRID-LIV-HEP-hepgrid2-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_LONG_BNL': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_LONG_BNL_ATLAS': {'nickname': 'BNL_ATLAS_2-condor', 'status': 'OK'}, 'ANALY_LONG_BNL_LOCAL': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'ANALY_LONG_LYON': {'nickname': 'IN2P3-CC-T2-cclcgceli05-long-bqs', 'status': 'OK'}, 'ANALY_LPC': {'nickname': 'IN2P3-LPC-clrlcgce03-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_LPSC': {'nickname': 'IN2P3-LPSC-lpsc-ce-atlas-pbs', 'status': 'OK'}, 'ANALY_LYON': {'nickname': 'IN2P3-CC-T2-cclcgceli05-medium-bqs', 'status': 'OK'}, 'ANALY_MANC': {'nickname': 'UKI-NORTHGRID-MAN-HEP-ce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_MCGILL': {'nickname': 'MCGILL-LCG2-atlas-ce-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_MWT2': {'nickname': 'ANALY_MWT2-condor', 'status': 'notOK'}, 'ANALY_MWT2_SHORT': {'nickname': 'ANALY_MWT2_SHORT-pbs', 'status': 'notOK'}, 'ANALY_NET2': {'nickname': 'ANALY_NET2-pbs', 'status': 'OK'}, 'ANALY_OU_OCHEP_SWT2': {'nickname': 'ANALY_OU_OCHEP_SWT2-condor', 'status': 'notOK'}, 'ANALY_PIC': {'nickname': 'pic-ce07-gshort-lcgpbs', 'status': 'OK'}, 'ANALY_RAL': {'nickname': 'RAL-LCG2-lcgce01-atlasL-lcgpbs', 'status': 'OK'}, 'ANALY_ROMANIA02': {'nickname': 'RO-02-NIPNE-tbat01-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_ROMANIA07': {'nickname': 'RO-07-NIPNE-tbit01-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_SARA': {'nickname': 'SARA-MATRIX-mu6-short-pbs', 'status': 'notOK'}, 'ANALY_SFU': {'nickname': 'SFU-LCG2-snowpatch-hep-atlas-lcgpbs', 'status': 'notOK'}, 'ANALY_SHEF': {'nickname': 'UKI-NORTHGRID-SHEF-HEP-lcgce0-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_SLAC': {'nickname': 'ANALY_SLAC-lsf', 'status': 'OK'}, 'ANALY_SWT2_CPB': {'nickname': 'ANALY_SWT2_CPB-pbs', 'status': 'OK'}, 'ANALY_TAIWAN': {'nickname': 'Taiwan-LCG2-w-ce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_TEST': {'nickname': 'ANALY_TEST', 'status': 'OK'}, 'ANALY_TORONTO': {'nickname': 'TORONTO-LCG2-bigmac-lcg-ce2-atlas-pbs', 'status': 'OK'}, 'ANALY_TOKYO': {'nickname': 'TOKYO-LCG2-lcg-ce01-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_TRIUMF': {'nickname': 'TRIUMF-LCG2-ce1-atlas-lcgpbs', 'status': 'OK'}, 'ANALY_UBC': {'nickname': 'UBC-pbs', 'status': 'OK'}, 'ANALY_UIUC-HEP': {'nickname': 'ANALY_UIUC-HEP-condor', 'status': 'OK'}, 'ANALY_UTA': {'nickname': 'UTA-DPCC-pbs', 'status': 'OK'}, 'ANALY_UTA-DPCC': {'nickname': 'UTA-DPCC-test-pbs', 'status': 'notOK'}, 'ANALY_VICTORIA': {'nickname': 'VICTORIA-LCG2-lcg-ce-general-lcgpbs', 'status': 'OK'}, 'AUVERGRID': {'nickname': 'AUVERGRID-iut15auvergridce01-atlas-lcgpbs', 'status': 'notOK'}, 'ASGC': {'nickname': 'Taiwan-LCG2-w-ce01-atlas-lcgpbs', 'status': 'OK'}, 'ASGC_REPRO': {'nickname': 'ASGC_REPRO', 'status': 'notOK'}, 'Australia-ATLAS': {'nickname': 'Australia-ATLAS-agh2-atlas-lcgpbs', 'status': 'OK'}, 'BARNETT_TEST': {'nickname': 'BARNETT_TEST', 'status': 'notOK'}, 'BEIJING': {'nickname': 'BEIJING-LCG2-lcg002-atlas-lcgpbs', 'status': 'OK'}, 'BNLPROD': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'notOK'}, 'BNL_ATLAS_1': {'nickname': 'BNL_ATLAS_1-condor', 'status': 'OK'}, 'BNL_ATLAS_2': {'nickname': 'BNL_ATLAS_2-condor', 'status': 'OK'}, 'BNL_ATLAS_DDM': {'nickname': 'BNL_DDM-condor', 'status': 'notOK'}, 'BNL_ATLAS_test': {'nickname': 'BNL_ATLAS_2-condor', 'status': 'notOK'}, 'BU_ATLAS_Tier2': {'nickname': 'BU_ATLAS_Tier2-pbs', 'status': 'OK'}, 'BU_ATLAS_Tier2o': {'nickname': 'BU_ATLAS_Tier2o-pbs', 'status': 'OK'}, 'BU_ATLAS_test': {'nickname': 'BU_ATLAS_Tier2-pbs', 'status': 'NOTOK'}, 'HU_ATLAS_Tier2': {'nickname': 'HU_ATLAS_Tier2-lsf', 'status': 'OK'}, 'CERN-BUILDS': {'nickname': 'CERN-BUILDS', 'status': 'notOK'}, 'CERN-RELEASE': {'nickname': 'CERN-RELEASE', 'status': 'notOK'}, 'CERN-UNVALID': {'nickname': 'CERN-UNVALID', 'status': 'notOK'}, 'CGG': {'nickname': 'CGG-LCG2-ce1-atlas-lcgpbs', 'status': 'notOK'}, 'CHARMM': {'nickname': 'CHARMM', 'status': 'notOK'}, 'CNR-ILC-PISA': {'nickname': 'CNR-ILC-PISA-gridce-atlas-lcgpbs', 'status': 'notOK'}, 'CPPM': {'nickname': 'IN2P3-CPPM-marce01-atlas-pbs', 'status': 'OK'}, 'CSCS-LCG2': {'nickname': 'CSCS-LCG2-ce01-egee48h-lcgpbs', 'status': 'OK'}, 'csTCDie': {'nickname': 'csTCDie-gridgate-himem-pbs', 'status': 'OK'}, 'CYF': {'nickname': 'CYFRONET-LCG2-ce-atlas-pbs', 'status': 'OK'}, 'DESY-HH': {'nickname': 'DESY-HH-grid-ce3-default-lcgpbs', 'status': 'OK'}, 'DESY-ZN': {'nickname': 'DESY-ZN-lcg-ce0-atlas-lcgpbs', 'status': 'OK'}, 'EFDA-JET': {'nickname': 'EFDA-JET-grid002-atlas-lcgpbs', 'status': 'notok'}, 'FZK-LCG2': {'nickname': 'FZK-LCG2-ce-1-fzk-atlasXL-pbspro', 'status': 'OK'}, 'FZK_REPRO': {'nickname': 'FZK_REPRO', 'status': 'notOK'}, 'FZU': {'nickname': 'praguelcg2-golias25-lcgatlas-lcgpbs', 'status': 'OK'}, 'GLOW': {'nickname': 'GLOW-CMS-cmsgrid02-atlas-condor', 'status': 'notOK'}, 'GLOW-ATLAS': {'nickname': 'GLOW-ATLAS-condor', 'status': 'OK'}, 'GoeGrid': {'nickname': 'GoeGrid-ce-goegrid-atlas-lcgpbs', 'status': 'OK'}, 'GRIF-IRFU': {'nickname': 'GRIF-IRFU-node07-atlas-lcgpbs', 'status': 'OK'}, 'GRIF-LAL': {'nickname': 'GRIF-LAL-grid10-atlas-pbs', 'status': 'OK'}, 'GRIF-LPNHE': {'nickname': 'GRIF-LPNHE-lpnce-atlas-pbs', 'status': 'OK'}, 'HEPHY-UIBK': {'nickname': 'HEPHY-UIBK-hepx4-atlas-lcgpbs', 'status': 'OK'}, 'IFAE': {'nickname': 'ifae-ifaece01-ifae-lcgpbs', 'status': 'OK'}, 'IFIC': {'nickname': 'IFIC-LCG2-ce01-atlas-pbs', 'status': 'OK'}, 'IHEP': {'nickname': 'BEIJING-LCG2-lcg002-atlas-lcgpbs', 'status': 'OK'}, 'ITEP': {'nickname': 'ITEP-ceglite-atlas-lcgpbs', 'status': 'OK'}, 'IN2P3-LPSC': {'nickname': 'IN2P3-LPSC-lpsc-ce-atlas-pbs', 'status': 'OK'}, 'JINR-LCG2': {'nickname': 'JINR-LCG2-lcgce01-atlas-lcgpbs', 'status': 'OK'}, 'LAPP': {'nickname': 'IN2P3-LAPP-lapp-ce01-atlas-pbs', 'status': 'OK'}, 'LIP-COIMBRA': {'nickname': 'LIP-Coimbra-grid006-atlas-lcgpbs', 'status': 'OK'}, 'LIP-LISBON': {'nickname': 'LIP-Lisbon-ce02-atlasgrid-lcgsge', 'status': 'OK'}, 'LLR': {'nickname': 'GRIF-LLR-polgrid1-atlas-pbs', 'status': 'notOK'}, 'LPC': {'nickname': 'IN2P3-LPC-clrlcgce03-atlas-lcgpbs', 'status': 'OK'}, 'LRZ': {'nickname': 'LRZ-LMU-lcg-lrz-ce-atlas-sge', 'status': 'OK'}, 'LYON': {'nickname': 'IN2P3-CC-cclcgceli02-long-bqs', 'status': 'OK'}, 'LYON_REPRO': {'nickname': 'LYON_REPRO', 'status': 'notOK'}, 'Lyon-T2': {'nickname': 'IN2P3-CC-T2-cclcgceli05-long-bqs', 'status': 'OK'}, 'LTU_CCT': {'nickname': 'LTU_CCT-pbs', 'status': 'OK'}, 'MANC': {'nickname': 'UKI-NORTHGRID-MAN-HEP-ce02-atlas-lcgpbs', 'status': 'OK'}, 'MCGILL-LCG2': {'nickname': 'MCGILL-LCG2-atlas-ce-atlas-pbs', 'status': 'OK'}, 'MONTREAL': {'nickname': 'Umontreal-LCG2-lcg-ce-atlas-lcgpbs', 'status': 'notOK'}, 'MPP': {'nickname': 'MPPMU-grid-ce-long-sge', 'status': 'OK'}, 'MWT2_IU': {'nickname': 'MWT2_IU-pbs', 'status': 'OK'}, 'MWT2_UC': {'nickname': 'MWT2_UC-pbs', 'status': 'OK'}, 'NDGF': {'nickname': 'NDGF-condor', 'status': 'OK'}, 'NIKHEF-ELPROD': {'nickname': 'NIKHEF-ELPROD-gazon-atlas-pbs', 'status': 'OK'}, 'NIKHEF_REPRO': {'nickname': 'NIKHEF_REPRO', 'status': 'notOK'}, 'OUHEP_ITB': {'nickname': 'OUHEP_ITB-condor', 'status': 'notOK'}, 'OU_PAUL_TEST': {'nickname': 'OU_OCHEP_SWT2-condor', 'status': 'notOK'}, 'OU_OCHEP_SWT2': {'nickname': 'OU_OCHEP_SWT2-condor', 'status': 'OK'}, 'OU_OSCER_ATLAS': {'nickname': 'OU_OSCER_ATLAS-lsf', 'status': 'OK'}, 'OU_OSCER_ATLASdeb': {'nickname': 'OU_OSCER_ATLASdeb-lsf', 'status': 'notOK'}, 'PSNC': {'nickname': 'PSNC-ce-atlas-pbs', 'status': 'OK'}, 'PIC': {'nickname': 'pic-ce05-glong-lcgpbs', 'status': 'OK'}, 'PIC_REPRO': {'nickname': 'PIC_REPRO', 'status': 'notOK'}, 'prague_cesnet_lcg2': {'nickname': 'prague_cesnet_lcg2-skurut17-egee_atlas-lcgpbs', 'status': 'notOK'}, 'RAL': {'nickname': 'RAL-LCG2-lcgce02-grid1000M-lcgpbs', 'status': 'OK'}, 'RAL_REPRO': {'nickname': 'RAL_REPRO', 'status': 'notOK'}, 'ru-Moscow-SINP-LCG2': {'nickname': 'ru-Moscow-SINP-LCG2-lcg02-atlas-lcgpbs', 'status': 'OK'}, 'ru-PNPI': {'nickname': 'ru-PNPI-cluster-atlas-pbs', 'status': 'OK'}, 'RDIGTEST': {'nickname': 'RDIGTEST', 'status': 'notOK'}, 'ROMANIA02': {'nickname': 'RO-02-NIPNE-tbat01-atlas-lcgpbs', 'status': 'OK'}, 'ROMANIA07': {'nickname': 'RO-07-NIPNE-tbit01-atlas-lcgpbs', 'status': 'OK'}, 'RRC-KI': {'nickname': 'RRC-KI-gate-atlas-lcgpbs', 'status': 'OK'}, 'RU-Protvino-IHEP': {'nickname': 'RU-Protvino-IHEP-ce0003-atlas-lcgpbs', 'status': 'OK'}, 'SARA_REPRO': {'nickname': 'SARA_REPRO', 'status': 'notOK'}, 'SFU-LCG2': {'nickname': 'SFU-LCG2-snowpatch-atlas-lcgpbs', 'status': 'OK'}, 'SLACXRD': {'nickname': 'SLACXRD-lsf', 'status': 'OK'}, 'SLAC_PAUL_TEST': {'nickname': 'SLACXRD-lsf', 'status': 'notOK'}, 'SNS-PISA': {'nickname': 'SNS-PISA-gridce-atlas-lcgpbs', 'status': 'notOK'}, 'SPACI-CS-IA64': {'nickname': 'SPACI-CS-IA64-square-atlas-lsf', 'status': 'notOK'}, 'SWT2_CPB': {'nickname': 'SWT2_CPB-pbs', 'status': 'OK'}, 'Taiwan-IPAS-LCG2': {'nickname': 'Taiwan-IPAS-LCG2-atlasce-atlas-lcgcondor', 'status': 'notOK'}, 'TEST1': {'nickname': 'TEST1', 'status': 'notOK'}, 'TEST2': {'nickname': 'TEST2', 'status': 'notOK'}, 'TEST3': {'nickname': 'TEST3', 'status': 'notOK'}, 'TEST4': {'nickname': 'TEST4', 'status': 'notOK'}, 'TESTCHARMM': {'nickname': 'TESTCHARMM', 'status': 'notOK'}, 'TESTGLIDE': {'nickname': 'TESTGLIDE', 'status': 'notOK'}, 'TOKYO': {'nickname': 'TOKYO-LCG2-lcg-ce01-atlas-lcgpbs', 'status': 'OK'}, 'TORONTO-LCG2': {'nickname': 'TORONTO-LCG2-bigmac-lcg-ce2-atlas-pbs', 'status': 'OK'}, 'TPATHENA': {'nickname': 'TPATHENA', 'status': 'notOK'}, 'TPPROD': {'nickname': 'TPPROD', 'status': 'notOK'}, 'TRIUMF': {'nickname': 'TRIUMF-LCG2-ce1-atlas-lcgpbs', 'status': 'OK'}, 'TRIUMF_DDM': {'nickname': 'TRIUMF_DDM', 'status': 'notOK'}, 'TRIUMF_REPRO': {'nickname': 'TRIUMF_REPRO', 'status': 'notOK'}, 'TW-FTT': {'nickname': 'TW-FTT-f-ce01-atlas-lcgpbs', 'status': 'OK'}, 'TWTEST': {'nickname': 'TWTEST', 'status': 'notOK'}, 'TestPilot': {'nickname': 'TestPilot', 'status': 'notOK'}, 'UAM-LCG2': {'nickname': 'UAM-LCG2-grid003-atlas-lcgpbs', 'status': 'OK'}, 'UBC': {'nickname': 'UBC-pbs', 'status': 'OK'}, 'UBC_PAUL_TEST': {'nickname': 'UBC-pbs', 'status': 'notOK'}, 'UIUC-HEP': {'nickname': 'UIUC-HEP-condor', 'status': 'OK'}, 'UCITB_EDGE7': {'nickname': 'UCITB_EDGE7-pbs', 'status': 'OK'}, 'UC_ATLAS_MWT2': {'nickname': 'UC_ATLAS_MWT2-condor', 'status': 'OK'}, 'UC_ATLAS_test': {'nickname': 'UC_ATLAS_MWT2-condor', 'status': 'OK'}, 'UC_Teraport': {'nickname': 'UC_Teraport-pbs', 'status': 'notOK'}, 'UMESHTEST': {'nickname': 'UMESHTEST', 'status': 'notOK'}, 'UNI-FREIBURG': {'nickname': 'UNI-FREIBURG-ce-atlas-pbs', 'status': 'OK'}, 'UTA-DPCC': {'nickname': 'UTA-DPCC-pbs', 'status': 'OK'}, 'UTA-DPCC-test': {'nickname': 'UTA-DPCC-test-pbs', 'status': 'OK'}, 'UTA_PAUL_TEST': {'nickname': 'UTA-SWT2-pbs', 'status': 'notOK'}, 'UTA_SWT2': {'nickname': 'UTA-SWT2-pbs', 'status': 'OK'}, 'UTD-HEP': {'nickname': 'UTD-HEP-pbs', 'status': 'OK'}, 'VICTORIA-LCG2': {'nickname': 'VICTORIA-LCG2-lcg-ce-general-lcgpbs', 'status': 'OK'}, 'Wuppertal': {'nickname': 'wuppertalprod-grid-ce-dg_long-lcgpbs', 'status': 'OK'}}
panda_mover_i_ds = {'US': 'BNL_ATLAS_DDM', 'CA': 'TRIUMF_DDM', 'FR': 'TRIUMF_DDM', 'IT': 'TRIUMF_DDM', 'NL': 'TRIUMF_DDM', 'DE': 'TRIUMF_DDM', 'TW': 'TRIUMF_DDM', 'UK': 'TRIUMF_DDM', 'ES': 'TRIUMF_DDM'} |
class ScenarioError(Exception):
pass
class ScenarioTxError(ScenarioError):
pass
class TokenRegistrationError(ScenarioTxError):
pass
class ChannelError(ScenarioError):
pass
class TransferFailed(ScenarioError):
pass
class NodesUnreachableError(ScenarioError):
pass
class RESTAPIError(ScenarioError):
pass
class RESTAPIStatusMismatchError(ScenarioError):
pass
class UnknownTaskTypeError(ScenarioError):
pass
class ScenarioAssertionError(ScenarioError):
pass
| class Scenarioerror(Exception):
pass
class Scenariotxerror(ScenarioError):
pass
class Tokenregistrationerror(ScenarioTxError):
pass
class Channelerror(ScenarioError):
pass
class Transferfailed(ScenarioError):
pass
class Nodesunreachableerror(ScenarioError):
pass
class Restapierror(ScenarioError):
pass
class Restapistatusmismatcherror(ScenarioError):
pass
class Unknowntasktypeerror(ScenarioError):
pass
class Scenarioassertionerror(ScenarioError):
pass |
def truncatechars(value, arg):
"""
Truncates a string after a certain number of chars.
Argument: Number of chars to truncate after.
"""
try:
length = int(arg)
except ValueError: # Invalid literal for int().
return value # Fail silently.
if len(value) > length:
return value[:length] + '...'
return value
| def truncatechars(value, arg):
"""
Truncates a string after a certain number of chars.
Argument: Number of chars to truncate after.
"""
try:
length = int(arg)
except ValueError:
return value
if len(value) > length:
return value[:length] + '...'
return value |
def convertToHEXForChar(charList):
convertedCharList = []
for message in charList:
convertedCharList.append(ord(message))
return convertedCharList
def displayChar(line, *args):
concatedList = []
for argItem in args:
concatedList.extend(argItem)
print(len(concatedList))
for message in concatedList:
print(message)
def main():
displayChar(0, [0x00], convertToHEXForChar("! Rasbperry Pi"))
main() | def convert_to_hex_for_char(charList):
converted_char_list = []
for message in charList:
convertedCharList.append(ord(message))
return convertedCharList
def display_char(line, *args):
concated_list = []
for arg_item in args:
concatedList.extend(argItem)
print(len(concatedList))
for message in concatedList:
print(message)
def main():
display_char(0, [0], convert_to_hex_for_char('! Rasbperry Pi'))
main() |
# ------------------------------------------------------- class: Constants ------------------------------------------------------- #
class Constants:
# --------------------------------------------------- Public properties -------------------------------------------------- #
USER_AGENT_FILE_NAME = 'ua.txt'
GENERAL_COOKIES_FOLDER_NAME = 'cookies'
GENERAL_PROFILE_FOLDER_NAME = 'selenium-python-profile'
DEFAULT_PROFILE_ID = 'test'
DEFAULT_FIND_FUNC_TIMEOUT = 2.5
# -------------------------------------------------------------------------------------------------------------------------------- # | class Constants:
user_agent_file_name = 'ua.txt'
general_cookies_folder_name = 'cookies'
general_profile_folder_name = 'selenium-python-profile'
default_profile_id = 'test'
default_find_func_timeout = 2.5 |
expected = [
{
"abstract_type": None,
"content": "RET can be activated in cis or trans by its co-receptors and ligands in vitro, but the physiological roles of trans signaling are unclear. Rapidly adapting (RA) mechanoreceptors in dorsal root ganglia (DRGs) express Ret and the co-receptor Gfr\u03b12 and depend on Ret for survival and central projection growth. Here, we show that Ret and Gfr\u03b12 null mice display comparable early central projection deficits, but Gfr\u03b12 null RA mechanoreceptors recover later. Loss of Gfr\u03b11, the co-receptor implicated in activating RET in trans, causes no significant central projection or cell survival deficit, but Gfr\u03b11;Gfr\u03b12 double nulls phenocopy Ret nulls. Finally, we demonstrate that GFR\u03b11 produced by neighboring DRG neurons activates RET in RA mechanoreceptors. Taken together, our results suggest that trans and cis RET signaling could function in the same developmental process and that the availability of both forms of activation likely enhances but not diversifies outcomes of RET signaling.",
"full_content": "<p>RET can be activated in <italic>cis</italic> or <italic>trans</italic> by its co-receptors and ligands <italic>in vitro</italic>, but the physiological roles of <italic>trans</italic> signaling are unclear. Rapidly adapting (RA) mechanoreceptors in dorsal root ganglia (DRGs) express <italic>Ret</italic> and the co-receptor <italic>Gfr\u03b12</italic> and depend on <italic>Ret</italic> for survival and central projection growth. Here, we show that <italic>Ret</italic> and <italic>Gfr\u03b12</italic> null mice display comparable early central projection deficits, but <italic>Gfr\u03b12</italic> null RA mechanoreceptors recover later. Loss of <italic>Gfr\u03b11</italic>, the co-receptor implicated in activating RET <italic>in trans</italic>, causes no significant central projection or cell survival deficit, but <italic>Gfr\u03b11;Gfr\u03b12</italic> double nulls phenocopy <italic>Ret</italic> nulls. Finally, we demonstrate that GFR\u03b11 produced by neighboring DRG neurons activates RET in RA mechanoreceptors. Taken together, our results suggest that <italic>trans</italic> and <italic>cis</italic> RET signaling could function in the same developmental process and that the availability of both forms of activation likely enhances but not diversifies outcomes of RET signaling.</p>",
},
]
| expected = [{'abstract_type': None, 'content': 'RET can be activated in cis or trans by its co-receptors and ligands in vitro, but the physiological roles of trans signaling are unclear. Rapidly adapting (RA) mechanoreceptors in dorsal root ganglia (DRGs) express Ret and the co-receptor Gfrα2 and depend on Ret for survival and central projection growth. Here, we show that Ret and Gfrα2 null mice display comparable early central projection deficits, but Gfrα2 null RA mechanoreceptors recover later. Loss of Gfrα1, the co-receptor implicated in activating RET in trans, causes no significant central projection or cell survival deficit, but Gfrα1;Gfrα2 double nulls phenocopy Ret nulls. Finally, we demonstrate that GFRα1 produced by neighboring DRG neurons activates RET in RA mechanoreceptors. Taken together, our results suggest that trans and cis RET signaling could function in the same developmental process and that the availability of both forms of activation likely enhances but not diversifies outcomes of RET signaling.', 'full_content': '<p>RET can be activated in <italic>cis</italic> or <italic>trans</italic> by its co-receptors and ligands <italic>in vitro</italic>, but the physiological roles of <italic>trans</italic> signaling are unclear. Rapidly adapting (RA) mechanoreceptors in dorsal root ganglia (DRGs) express <italic>Ret</italic> and the co-receptor <italic>Gfrα2</italic> and depend on <italic>Ret</italic> for survival and central projection growth. Here, we show that <italic>Ret</italic> and <italic>Gfrα2</italic> null mice display comparable early central projection deficits, but <italic>Gfrα2</italic> null RA mechanoreceptors recover later. Loss of <italic>Gfrα1</italic>, the co-receptor implicated in activating RET <italic>in trans</italic>, causes no significant central projection or cell survival deficit, but <italic>Gfrα1;Gfrα2</italic> double nulls phenocopy <italic>Ret</italic> nulls. Finally, we demonstrate that GFRα1 produced by neighboring DRG neurons activates RET in RA mechanoreceptors. Taken together, our results suggest that <italic>trans</italic> and <italic>cis</italic> RET signaling could function in the same developmental process and that the availability of both forms of activation likely enhances but not diversifies outcomes of RET signaling.</p>'}] |
# Prim's Algorithm in Python
INF = 9999999
# number of vertices in graph
V = 5
# create a 2d array of size 5x5
# for adjacency matrix to represent graph
G = [
[0, 9, 75, 0, 0],
[9, 0, 95, 19, 42],
[75, 95, 0, 51, 66],
[0, 19, 51, 0, 31],
[0, 42, 66, 31, 0],
]
# create a array to track selected vertex
# selected will become true otherwise false
selected = [0, 0, 0, 0, 0]
# set number of edge to 0
no_edge = 0
# the number of egde in minimum spanning tree will be
# always less than(V - 1), where V is number of vertices in
# graph
# choose 0th vertex and make it true
selected[0] = True
# print for edge and weight
print("Edge : Weight\n")
while no_edge < V - 1:
# For every vertex in the set S, find the all adjacent vertices
# , calculate the distance from the vertex selected at step 1.
# if the vertex is already in the set S, discard it otherwise
# choose another vertex nearest to selected vertex at step 1.
minimum = INF
x = 0
y = 0
for i in range(V):
if selected[i]:
for j in range(V):
if (not selected[j]) and G[i][j]:
# not in selected and there is an edge
if minimum > G[i][j]:
minimum = G[i][j]
x = i
y = j
print(str(x) + "-" + str(y) + ":" + str(G[x][y]))
selected[y] = True
no_edge += 1
| inf = 9999999
v = 5
g = [[0, 9, 75, 0, 0], [9, 0, 95, 19, 42], [75, 95, 0, 51, 66], [0, 19, 51, 0, 31], [0, 42, 66, 31, 0]]
selected = [0, 0, 0, 0, 0]
no_edge = 0
selected[0] = True
print('Edge : Weight\n')
while no_edge < V - 1:
minimum = INF
x = 0
y = 0
for i in range(V):
if selected[i]:
for j in range(V):
if not selected[j] and G[i][j]:
if minimum > G[i][j]:
minimum = G[i][j]
x = i
y = j
print(str(x) + '-' + str(y) + ':' + str(G[x][y]))
selected[y] = True
no_edge += 1 |
def func(a, b):
return a + b
def func2(a):
print(a)
print("Hello")
| def func(a, b):
return a + b
def func2(a):
print(a)
print('Hello') |
# Dimmer Switch class
class DimmerSwitch():
def __init__(self, label):
self.label = label
self.isOn = False
self.brightness = 0
def turnOn(self):
self.isOn = True
# turn the light on at self.brightness
def turnOff(self):
self.isOn = False
# turn the light off
def raiseLevel(self):
if self.brightness < 10:
self.brightness = self.brightness + 1
def lowerLevel(self):
if self.brightness > 0:
self.brightness = self.brightness - 1
# Extra method for debugging
def show(self):
print('Label:', self.label)
print('Light is on?', self.isOn)
print('Brightness is:', self.brightness)
print()
# Main code
# Create first DimmerSwitch, turn on and raise level twice
oDimmer1 = DimmerSwitch('Dimmer1')
oDimmer1.turnOn()
oDimmer1.raiseLevel()
oDimmer1.raiseLevel()
# Create second DimmerSwitch, turn on and raise level 3 times
oDimmer2 = DimmerSwitch('Dimmer2')
oDimmer2.turnOn()
oDimmer2.raiseLevel()
oDimmer2.raiseLevel()
oDimmer2.raiseLevel()
# Create third DimmerSwitch, using the default settings
oDimmer3 = DimmerSwitch('Dimmer3')
# Ask each switch to show itself
oDimmer1.show()
oDimmer2.show()
oDimmer3.show()
| class Dimmerswitch:
def __init__(self, label):
self.label = label
self.isOn = False
self.brightness = 0
def turn_on(self):
self.isOn = True
def turn_off(self):
self.isOn = False
def raise_level(self):
if self.brightness < 10:
self.brightness = self.brightness + 1
def lower_level(self):
if self.brightness > 0:
self.brightness = self.brightness - 1
def show(self):
print('Label:', self.label)
print('Light is on?', self.isOn)
print('Brightness is:', self.brightness)
print()
o_dimmer1 = dimmer_switch('Dimmer1')
oDimmer1.turnOn()
oDimmer1.raiseLevel()
oDimmer1.raiseLevel()
o_dimmer2 = dimmer_switch('Dimmer2')
oDimmer2.turnOn()
oDimmer2.raiseLevel()
oDimmer2.raiseLevel()
oDimmer2.raiseLevel()
o_dimmer3 = dimmer_switch('Dimmer3')
oDimmer1.show()
oDimmer2.show()
oDimmer3.show() |
print(list(range(10, 0, -2)))
# if start > end and step > 0:
# a list generated from start to no more than end with step as constant increment
# if start > end and step < 0:
# an empty list generated
# if start < end and step > 0:
# an empty list generated
# if start < end and step < 0
# a list generated from start to no more than end with step as constant decrement
| print(list(range(10, 0, -2))) |
start = 104200
end = 702648265
for arm1 in range(start, end + 1):
exp = len(str(arm1))
num_sum = 0
c = arm1
while c > 0:
num = c % 10
num_sum += num ** exp
c //= 10
if arm1 != num_sum:
continue
else:
if arm1 == num_sum:
print("The first Armstrong number encountered is:", arm1)
break
#####OUTPUT#####
## The first Armstrong number encountered is: 548834
## Process finished with exit code 0
| start = 104200
end = 702648265
for arm1 in range(start, end + 1):
exp = len(str(arm1))
num_sum = 0
c = arm1
while c > 0:
num = c % 10
num_sum += num ** exp
c //= 10
if arm1 != num_sum:
continue
else:
if arm1 == num_sum:
print('The first Armstrong number encountered is:', arm1)
break |
def _do_set(env, name, value):
if env.contains(name):
env.set(name, value)
elif env.parent is not None:
_do_set(env.parent, name, value)
else:
raise Exception(
"Attempted to set name '%s' but it does not exist." %
name
)
def set_(env, symbol_name, value):
if symbol_name[0] != "string":
raise Exception(
"set() takes a string as its first argument, but was: %s" %
str(symbol_name)
)
_do_set(env, symbol_name[1], value)
return value
| def _do_set(env, name, value):
if env.contains(name):
env.set(name, value)
elif env.parent is not None:
_do_set(env.parent, name, value)
else:
raise exception("Attempted to set name '%s' but it does not exist." % name)
def set_(env, symbol_name, value):
if symbol_name[0] != 'string':
raise exception('set() takes a string as its first argument, but was: %s' % str(symbol_name))
_do_set(env, symbol_name[1], value)
return value |
class PostgresQueryPart:
""" Object representing Postgres query part
"""
def get_query(self) -> str:
""" Get query
Returns:
str
"""
pass
| class Postgresquerypart:
""" Object representing Postgres query part
"""
def get_query(self) -> str:
""" Get query
Returns:
str
"""
pass |
def email_subject(center_name):
return f"[Urgent Reminder] Vaccine slot is now available at {center_name}"
def email_body(email_data):
return f"Hi, \n" \
f"Vaccine slot is available for below centers \n " \
f"Center name and available data \n {email_data} \n" \
f"Please register at cowin website https://cowin.gov.in \n" \
f"Have a lovely day ahead! :) \n" \
f"Thanks, \n" \
f"Shishir Bondre \n" \
f"To unsubscribe click here http://3.6.160.147:8000/vaccine_tracker/unsubscribe/"
| def email_subject(center_name):
return f'[Urgent Reminder] Vaccine slot is now available at {center_name}'
def email_body(email_data):
return f'Hi, \nVaccine slot is available for below centers \n Center name and available data \n {email_data} \nPlease register at cowin website https://cowin.gov.in \nHave a lovely day ahead! :) \nThanks, \nShishir Bondre \nTo unsubscribe click here http://3.6.160.147:8000/vaccine_tracker/unsubscribe/' |
# -*- coding: utf-8 -*-
#
# Copyright Contributors to the Conu project.
# SPDX-License-Identifier: MIT
#
# TODO: move this line to some generic constants, instead of same in
# docker and nspawn
CONU_ARTIFACT_TAG = 'CONU.'
CONU_IMAGES_STORE = "/opt/conu-nspawn-images/"
CONU_NSPAWN_BASEPACKAGES = [
"dnf",
"iproute",
"dhcp-client",
"initscripts",
"passwd",
"systemd",
"rpm",
"bash",
"shadow-utils",
"sssd-client",
"util-linux",
"libcrypt",
"sssd-client",
"coreutils",
"glibc-all-langpacks",
"vim-minimal"]
BOOTSTRAP_IMAGE_SIZE_IN_MB = 5000
BOOTSTRAP_FS_UTIL = "mkfs.ext4"
BOOTSTRAP_PACKAGER = [
"dnf",
"-y",
"install",
"--nogpgcheck",
"--setopt=install_weak_deps=False",
"--allowerasing"]
DEFAULT_RETRYTIMEOUT = 30
DEFAULT_SLEEP = 1
| conu_artifact_tag = 'CONU.'
conu_images_store = '/opt/conu-nspawn-images/'
conu_nspawn_basepackages = ['dnf', 'iproute', 'dhcp-client', 'initscripts', 'passwd', 'systemd', 'rpm', 'bash', 'shadow-utils', 'sssd-client', 'util-linux', 'libcrypt', 'sssd-client', 'coreutils', 'glibc-all-langpacks', 'vim-minimal']
bootstrap_image_size_in_mb = 5000
bootstrap_fs_util = 'mkfs.ext4'
bootstrap_packager = ['dnf', '-y', 'install', '--nogpgcheck', '--setopt=install_weak_deps=False', '--allowerasing']
default_retrytimeout = 30
default_sleep = 1 |
def get_p_distance(list1, list2):
count = 0
i = 0
while i < len(list1):
if (list1[i] != list2[i]):
count += .1
i += 1
return count
def get_p_distance_matrix(list1, list2, list3, list4):
dna1 = get_p_distance(list1, list1), get_p_distance(list1, list2), get_p_distance(list1, list3), get_p_distance(list1, list4)
dna2 = get_p_distance(list2, list1), get_p_distance(list2, list2), get_p_distance(list2, list3), get_p_distance(list2, list4)
dna3 = get_p_distance(list3, list1), get_p_distance(list3, list2), get_p_distance(list3, list3), get_p_distance(list3, list4)
dna4 = get_p_distance(list4, list1), get_p_distance(list4, list2), get_p_distance(list4, list3), get_p_distance(list4, list4)
return dna1, dna2, dna3, dna4 | def get_p_distance(list1, list2):
count = 0
i = 0
while i < len(list1):
if list1[i] != list2[i]:
count += 0.1
i += 1
return count
def get_p_distance_matrix(list1, list2, list3, list4):
dna1 = (get_p_distance(list1, list1), get_p_distance(list1, list2), get_p_distance(list1, list3), get_p_distance(list1, list4))
dna2 = (get_p_distance(list2, list1), get_p_distance(list2, list2), get_p_distance(list2, list3), get_p_distance(list2, list4))
dna3 = (get_p_distance(list3, list1), get_p_distance(list3, list2), get_p_distance(list3, list3), get_p_distance(list3, list4))
dna4 = (get_p_distance(list4, list1), get_p_distance(list4, list2), get_p_distance(list4, list3), get_p_distance(list4, list4))
return (dna1, dna2, dna3, dna4) |
#
# PySNMP MIB module ZHONE-COM-IP-FILTER-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ZHONE-COM-IP-FILTER-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:47:04 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, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Gauge32, Counter64, iso, Integer32, ModuleIdentity, ObjectIdentity, IpAddress, Unsigned32, MibIdentifier, TimeTicks, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, NotificationType, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "Gauge32", "Counter64", "iso", "Integer32", "ModuleIdentity", "ObjectIdentity", "IpAddress", "Unsigned32", "MibIdentifier", "TimeTicks", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "NotificationType", "Counter32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
zhoneModules, zhoneIp = mibBuilder.importSymbols("Zhone", "zhoneModules", "zhoneIp")
ZhoneRowStatus, ZhoneAdminString = mibBuilder.importSymbols("Zhone-TC", "ZhoneRowStatus", "ZhoneAdminString")
comIpFilter = ModuleIdentity((1, 3, 6, 1, 4, 1, 5504, 6, 58))
comIpFilter.setRevisions(('2005-01-10 10:16', '2005-01-03 09:24', '2004-12-21 09:25', '2004-08-30 11:00', '2004-04-06 00:17', '2001-01-17 08:48', '2000-09-11 16:22',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: comIpFilter.setRevisionsDescriptions(('changed portAccessArg1, portAccessArg2 to more intuitive names.', 'changed portArg1, portArg2 to IP addresses', 'added Port_Access', 'V01.01.02 - Add type field to mcastControlList.', 'V01.01.01 - Implementation of multicast-control-list.', 'V01.01.00 - Added keyword markup, updated SMI, Added the filterStmtRenumTable and filterStatsTable', 'V01.00.00 - Initial Release',))
if mibBuilder.loadTexts: comIpFilter.setLastUpdated('200501100015Z')
if mibBuilder.loadTexts: comIpFilter.setOrganization('Zhone Technologies, Inc.')
if mibBuilder.loadTexts: comIpFilter.setContactInfo(' Postal: Zhone Technologies, Inc. @ Zhone Way 7001 Oakport Street Oakland, CA 94621 USA Toll-Free: +1 877-ZHONE20 (+1 877-946-6320) Tel: +1-510-777-7000 Fax: +1-510-777-7001 E-mail: support@zhone.com')
if mibBuilder.loadTexts: comIpFilter.setDescription('Zhone IP Filter MIB Module. IP Software Minneapolis, MN')
filter = ObjectIdentity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8))
if mibBuilder.loadTexts: filter.setStatus('current')
if mibBuilder.loadTexts: filter.setDescription('The MIB module representing IP filter specifications in Zhone Technologies products. IP filtering is typically performed to enhance network security by limiting what access is allowed between two networks. Filtering is also effective in eliminating certain denial-of-service attacks. Packet filtering also provides a framework for sanity checking packet headers, and rejecting packets that are unlikely (or that should be impossible). In this way, packet filtering can prevent certain unfortunate mistakes from shutting a network down.')
if mibBuilder.loadTexts: filter.setReference("RFC1812, 'Requirements for IP Version 4 Routers,' ftp://ftp.isi.edu/in-notes/rfc1812.txt. RFC2267, 'Network Ingress Filtering: Defeating Denial of Service Attacks which employ IP Source Address Spoofing,' ftp://ftp.isi.edu/in-notes/rfc2267.txt. RFC2474, 'Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers', ftp://ftp.isi.edu/in-notes/rfc2474.txt. D. Brent Chapman, 'Network (In)Security Through IP Packet Filtering,' Proceedings of the 3rd USENIX Security Symposium, Sept. 1992. Andrew Molitor, 'An Architecture for Advanced Packet Filtering,' Proceedings of the 5th USENIX Security Symposium, June. 1995. Paul Russell, 'Linux IPCHAINS-HOWTO,' http://www.rustcorp.com/linux/ipchains/HOWTO.html, v1.0.7, Mar. 1999.")
filterGlobal = ObjectIdentity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1))
if mibBuilder.loadTexts: filterGlobal.setStatus('current')
if mibBuilder.loadTexts: filterGlobal.setDescription('Global filter provisioning information.')
fltGlobalIndexNext = MibScalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fltGlobalIndexNext.setStatus('current')
if mibBuilder.loadTexts: fltGlobalIndexNext.setDescription('The next available filter spec table index (filterSpecIndex). A GET on this object increments the value by one. A GETNEXT on this object will always return zero.')
fltGlobalTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: fltGlobalTimeout.setStatus('current')
if mibBuilder.loadTexts: fltGlobalTimeout.setDescription('Filter inconsistency timeout in seconds. A filter spec is considered to be in an inconsistent state when the value of the objects fltSpecVersion1 and fltSpecVersion2 are not equal. This timeout indicates the minimum number of seconds a filter may be in an inconsistent state before the filter spec becomes invalid and the default action for a filter is used as the filter. Provided fltGlobalTimeout is long enough, it should ensure that both an old modification is permanently stalled (ensuring exclusive access) as well as enough time to repair a filter. Default is five seconds.')
filterSpecTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2), )
if mibBuilder.loadTexts: filterSpecTable.setStatus('current')
if mibBuilder.loadTexts: filterSpecTable.setDescription("The filter specification table contains specifications for the IP filtering module. Rows are indexed by a single integer index (filterSpecIndex). The fltGlobalIndexNext object is used to determine the next index value. Each row points to a sequence of rows (statements) in the filterStatementTable. When any row in that sequence is modified, created, or removed, the fltSpecVersion1 and fltSpecVersion2 objects must be incremented. Rows are created by assigning fltSpecIndex and setting fltSpecRowStatus to 'createAndGo'. All columnar objects in this table have default values, so no objects other than the index value need be set to create a row. Rows are removed by setting fltSpecRowStatus to 'destroy'. When a row is removed, each row in filterStatementTable with the same fltSpecIndex is automatically removed.")
filterSpecEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1), ).setIndexNames((0, "ZHONE-COM-IP-FILTER-MIB", "fltSpecIndex"))
if mibBuilder.loadTexts: filterSpecEntry.setStatus('current')
if mibBuilder.loadTexts: filterSpecEntry.setDescription('An entry in the filterSpecTable.')
fltSpecIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: fltSpecIndex.setStatus('current')
if mibBuilder.loadTexts: fltSpecIndex.setDescription('The index that identifies an entry in the filterSpecTable. The fltGlobalIndexNext object is used to determine the next value of this object.')
fltSpecName = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 2), ZhoneAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecName.setStatus('current')
if mibBuilder.loadTexts: fltSpecName.setDescription('The filter name associated with this filter specification. This name should indicate the nature of the filter. The default value is an empty string.')
fltSpecDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 3), SnmpAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecDesc.setStatus('current')
if mibBuilder.loadTexts: fltSpecDesc.setDescription('Textual description of the filter specification. This should briefly describe the nature of the filter defined by the associated filter statements. The default value is an empty string.')
fltSpecVersion1 = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 4), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecVersion1.setStatus('current')
if mibBuilder.loadTexts: fltSpecVersion1.setDescription('The version number of the filter specification. This is used to flag any changes in the statements that comprise a filter. Each time a modification occurs to an object in a filter spec (including the the list of filter statements of the same fltSpecIndex in filterStatementTable), the value of this object, and fltSpecVersion2 must be incremented. The manager adding, deleting, or modifying a filter statement or statements must increment this version number in the following manner. A read of fltSpecVersion1 returns its current value. A write to fltSpecVersion1 must be one greater than its current value. A successful write of this object transfers ownership to the manager, where the manager must subsequently perform any desired modifications to the filter spec and then write the new value of fltSpecVersion1 to the fltSpecVersion2 object to release ownership. When fltSpecVersion1 does not equal to fltSpecVersion2, the filter spec is in an inconsistent state. If the filter spec remains in an inconsistent state longer than the time specified in fltGlobalTimeout, the filter spec is declared invalid and the filter spec does not become active. The previously provisioned filter spec will remain active. If no previous filter spec was provisioned for this interface, a default action is used. It is up to the manager to fix the invalid filter spec and bring it into a consistent state.')
fltSpecVersion2 = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 5), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecVersion2.setStatus('current')
if mibBuilder.loadTexts: fltSpecVersion2.setDescription('The version number of the filter specification. The value of this object must be equal to fltSpecVersion1, otherwise the filter spec is inconsistent. See fltSpecVersion1 for details.')
fltSpecLanguageVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 6), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecLanguageVersion.setStatus('current')
if mibBuilder.loadTexts: fltSpecLanguageVersion.setDescription('The language version of the filter. The language version further details the meaning and use of the objects in filterStatmentTable. The definitions of the filter languages is beyond the scope of this description.')
fltSpecRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 7), ZhoneRowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltSpecRowStatus.setStatus('current')
if mibBuilder.loadTexts: fltSpecRowStatus.setDescription('Zhone convention to support row creation and deletion. This is the only object required to create or destroy a row in this table.')
filterStatementTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3), )
if mibBuilder.loadTexts: filterStatementTable.setStatus('current')
if mibBuilder.loadTexts: filterStatementTable.setDescription("This table contains the filter specification statements for the IP filtering module. A complete filter specification is comprised of all the linked statements (rows) that are pointed to by an entry in the filterSpecTable. Filter statements are linked together by fltSpecIndex, and are ordered within the comprised filter using fltStmtIndex. A statement can only be owned by one filter spec. Rows are created by assigning fltSpecIndex and fltStmtIndex, and setting fltStmtRowStatus to 'createAndGo'. All columnar objects in this table have default values, so no objects other than the index values need be set to create a row. Rows are destroyed by setting fltStmtRowStatus to 'delete'. When rows are created or destroyed, the version of the corresponding filter spec row is incremented.")
filterStatementEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1), ).setIndexNames((0, "ZHONE-COM-IP-FILTER-MIB", "fltSpecIndex"), (0, "ZHONE-COM-IP-FILTER-MIB", "fltStmtIndex"))
if mibBuilder.loadTexts: filterStatementEntry.setStatus('current')
if mibBuilder.loadTexts: filterStatementEntry.setDescription('An entry in the filterStatement table. Each entry represents one of a sequence of statements that comprise a filter. Each filter statement consists of an index, specific packet header fields, and arbitrary packet offsets and values. Some objects in this entry define ranges for specific packet header fields. These objects define comparison operations on the field they share in the following manner: Low High Compare Method for field f --- ---- ------------------------------------------- 0 0 no comparison on the field 0 H less than or equal to High (f <= H) L 0 exact match (L == f) L H inclusive between comparison (L <= f <= H) ')
fltStmtIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: fltStmtIndex.setStatus('current')
if mibBuilder.loadTexts: fltStmtIndex.setDescription('The table index that identifies a filter statement. These indicies should be sparse to allow for insertion into the list.')
fltStmtIpSrcAddrLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 2), IpAddress().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpSrcAddrLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpSrcAddrLow.setDescription('The inclusive lower bound for the source IP address range. See the filterStatementEntry description for details.')
fltStmtIpSrcAddrHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 3), IpAddress().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpSrcAddrHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpSrcAddrHigh.setDescription('The inclusive upper bound for the source IP address range. See the filterStatementEntry description for details.')
fltStmtSrcPortLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtSrcPortLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtSrcPortLow.setDescription('The inclusive lower bound for the transport layer source port range. See the filterStatementEntry description for details.')
fltStmtSrcPortHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtSrcPortHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtSrcPortHigh.setDescription('The inclusive upper bound for the transport layer source port range. See the filterStatementEntry description for details.')
fltStmtIpDstAddrLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 6), IpAddress().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpDstAddrLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpDstAddrLow.setDescription('The inclusive lower bound for the destination IP address range. See the filterStatementEntry description for details.')
fltStmtIpDstAddrHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 7), IpAddress().clone(hexValue="00000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpDstAddrHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpDstAddrHigh.setDescription('The inclusive upper bound for the destination IP address range. See the filterStatementEntry description for details.')
fltStmtDstPortLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtDstPortLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtDstPortLow.setDescription('The inclusive lower bound for the transport layer destination port range. See the filterStatementEntry description for details.')
fltStmtDstPortHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtDstPortHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtDstPortHigh.setDescription('The inclusive upper bound for the transport layer destination port range. See the filterStatementEntry description for details.')
fltStmtIpProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("any", 1), ("ip", 2), ("tcp", 3), ("udp", 4), ("icmp", 5))).clone('any')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtIpProtocol.setStatus('current')
if mibBuilder.loadTexts: fltStmtIpProtocol.setDescription('The IP protocol value that is to be matched. The enum values are as follows: any(1) : any protocol type is a match (wildcard) ip(2) : raw IP packet tcp(3) : TCP packet udp(4) : UDP packet icmp(5) : ICMP packet The default value is any(1).')
fltStmtArbValueBase = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("none", 1), ("ip", 2), ("udp", 3), ("tcp", 4), ("icmp", 5), ("ipOptions", 6), ("tcpOptions", 7))).clone('none')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbValueBase.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbValueBase.setDescription('This field identifies the protocol header to which the arbitrary value comparison applies. The enum values are as follows: none(1) : no arbitrary value comparison ip(2) : base is IP header udp(3) : base is UDP header tcp(4) : base is TCP header icmp(5) : base is ICMP header ipOptions(6) : base is IP options header tcpOptions(7) : base is TCP options header The default value is none(1).')
fltStmtArbOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 64))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbOffset.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbOffset.setDescription('The offset, in octets, from the beginning of the header to the most significant octet for the arbitrary value comparison.')
fltStmtArbMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 13), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbMask.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbMask.setDescription('This object is mask for for arbitrary value comparisons. The non-zero bits in this field determine the size of the arbitrary field.')
fltStmtArbValueLow = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 14), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbValueLow.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbValueLow.setDescription('This object is the inclusive lower bound for arbitrary value comparison. See the filterStatementEntry description for details.')
fltStmtArbValueHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 15), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtArbValueHigh.setStatus('current')
if mibBuilder.loadTexts: fltStmtArbValueHigh.setDescription('This object is the inclusive upper bound for arbitrary value comparison. See the filterStatementEntry description for details.')
fltStmtModifier = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 16), Bits().clone(namedValues=NamedValues(("notIpSrc", 0), ("notSrcPort", 1), ("notDstIp", 2), ("notPortDst", 3), ("notProtocol", 4), ("notArbitrary", 5), ("notStatement", 6)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtModifier.setStatus('current')
if mibBuilder.loadTexts: fltStmtModifier.setDescription('Filter statement modifier. The bits set in this object logically negate the results of the comparisons made on their respecive fields as shown : notIpSrcAddr(1) : fltStmtIpSrcAddrLow, fltStmtIpSrcAddrHigh notSrcPort(2) : fltStmtSrcPortLow, fltStmtSrcPortHigh notIpDstAddr(3) : fltStmtIpDstAddrLow, fltStmtIpDstAddrHigh notDstPort(4) : fltStmtDstPortLow, fltStmtDstPortHigh notIpProtocol(5) : fltStmtIpProtocol notArbitrary(6) : fltStmtArbValueLow, fltStmtArbValueHigh notStatement(7) : negate outcome of the entire statement No bits set (the default) specifies to use all outcomes as is.')
fltStmtAction = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 17), Bits().clone(namedValues=NamedValues(("reset", 0), ("permit", 1), ("deny", 2), ("forward", 3), ("reject", 4), ("log", 5))).clone(namedValues=NamedValues(("deny", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtAction.setStatus('current')
if mibBuilder.loadTexts: fltStmtAction.setDescription('Filter statement action. The bits set in this object specify actions to take on packets matching this statement. Supported actions are: reset(0) : Return a TCP reset packet to the packet sender and drop the packet. This cannot be specified with permit. permit(1) : Stop filtering the packet and allow it to be sent on the associated interface. This cannot be specified with deny. deny(2) : Stop filtering the packet and discard it. This cannot be specified with permit. forward(3) : Forward the packet the IP address specified in fltStmtActionArg. reject(4) : Return an ICMP destination unreachable packet (type 3) to the packet sender with code 13 (communication administratively prohibited). This cannot be specified permit. log(5) : Write the packet to the log stream. There are some mutually exclusive bits: reset(0) and permit(1), permit(1) and deny(2), permit(1) and reject(4). No bits set implies to continue filtering on the packet.')
fltStmtActionArg = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 18), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtActionArg.setStatus('current')
if mibBuilder.loadTexts: fltStmtActionArg.setDescription('Filter statement action argument. The meaning of this object depends on the value of fltStmtAction: forward(3) : An IP address to forward the packet to. The value of this object must be non-zero. All other values of fltStmtAction have no relation to this object. The default is zero.')
fltStmtRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 19), ZhoneRowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: fltStmtRowStatus.setStatus('current')
if mibBuilder.loadTexts: fltStmtRowStatus.setDescription('Zhone convention to support row creation and deletion. This is the only object required to create or destroy a row in this table.')
filterStmtRenumTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4), )
if mibBuilder.loadTexts: filterStmtRenumTable.setStatus('current')
if mibBuilder.loadTexts: filterStmtRenumTable.setDescription('This table provides a mechanism for renumbering individual filter statments within their particular filter spec.')
filterStmtRenumEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4, 1), )
filterStatementEntry.registerAugmentions(("ZHONE-COM-IP-FILTER-MIB", "filterStmtRenumEntry"))
filterStmtRenumEntry.setIndexNames(*filterStatementEntry.getIndexNames())
if mibBuilder.loadTexts: filterStmtRenumEntry.setStatus('current')
if mibBuilder.loadTexts: filterStmtRenumEntry.setDescription('An entry in the filterStmtRenumTable.')
fltStmtIndexNew = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: fltStmtIndexNew.setStatus('current')
if mibBuilder.loadTexts: fltStmtIndexNew.setDescription("The new statement index for the filter statement. Reading this object will return the same value as the 'fltStmtIndex' portion of its index. Writing to this object will cause the corresponding filter statement to be relocated to the position identified by the value written here. If no statement exists at the current index, 'no such instance' will be returned. If a statement already exists at the new index then 'inconsistent value' is returned. For example, to move the second statement of filter #4 to the third position (e.g. to make room for a new statement #2), the following SNMP set-request would be issued: fltStmtIndexNew.4.2 = 3 There is no default value for this object as it is derived from the fltStmtIndex.")
filterStatsTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5), )
if mibBuilder.loadTexts: filterStatsTable.setStatus('current')
if mibBuilder.loadTexts: filterStatsTable.setDescription('This table provides ingress and egress IP filter statistics for each interface. This table is indexed by the ifIndex of the interface and the direction (ingress or egress) of traffic being filtered. This is a read-only table.')
filterStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "ZHONE-COM-IP-FILTER-MIB", "fltStatDirection"))
if mibBuilder.loadTexts: filterStatsEntry.setStatus('current')
if mibBuilder.loadTexts: filterStatsEntry.setDescription('An entry in the filterStatsTable. There will be an entry for each filter provisioned on an interface. There can be, at most, two filters provisioned per interface; one for ingress filtering and the other for egress filtering.')
fltStatDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ingress", 1), ("egress", 2))))
if mibBuilder.loadTexts: fltStatDirection.setStatus('current')
if mibBuilder.loadTexts: fltStatDirection.setDescription('The direction for which this set of statistics is kept: ingress or egress.')
fltStatResetPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 2), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatResetPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatResetPkts.setDescription('The number of discarded packets for which a TCP reset packet was sent.')
fltStatPermitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 3), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatPermitPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatPermitPkts.setDescription('The number of permitted packets.')
fltStatDenyPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 4), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatDenyPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatDenyPkts.setDescription('The number of discarded packets.')
fltStatForwardPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 5), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatForwardPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatForwardPkts.setDescription('The number of packets forwarded to the IP address specified in the filter.')
fltStatRejectPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 6), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatRejectPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatRejectPkts.setDescription('The number of discarded packets for which an ICMP destination unreachable packet with code 13 was sent.')
fltStatLogPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 7), Counter32()).setUnits('packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatLogPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatLogPkts.setDescription('The number of logged packets.')
fltStatDefaultPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatDefaultPkts.setStatus('current')
if mibBuilder.loadTexts: fltStatDefaultPkts.setDescription('The number of packets that pass through the filter without matching upon which the default action is used.')
fltStatSpecVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatSpecVersion.setStatus('current')
if mibBuilder.loadTexts: fltStatSpecVersion.setDescription('The version of the filter being used on this interface.')
fltStatSpecIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fltStatSpecIndex.setStatus('current')
if mibBuilder.loadTexts: fltStatSpecIndex.setDescription('The index of the filter specification being used on this interface. If there is no filter configured for an interface, the entry will not exist in this table.')
mcastControl = ObjectIdentity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6))
if mibBuilder.loadTexts: mcastControl.setStatus('current')
if mibBuilder.loadTexts: mcastControl.setDescription('The MIB module representing Multicast control list specifications in Zhone Technologies products. The First application of multicast control list is to accept of deny a IGMP request to join or leave a IGMP group. Any IGMP request to join a group is accepted only if the group address is available in the Multicast Control list pointed by a field in the ip-interface-record.')
mcastControlListTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1), )
if mibBuilder.loadTexts: mcastControlListTable.setStatus('current')
if mibBuilder.loadTexts: mcastControlListTable.setDescription('Multicast control list table conatins the one of the IP Address that can be allowed to join to by a IGMP join request from IP interface that has the the multicast control list in its ip-interfce-profile. The address to the table is the multicast control list ID and the precedence. The Row status in the table contains indication of whether the row is being created or destroyed. ')
mcastControlListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1), ).setIndexNames((0, "ZHONE-COM-IP-FILTER-MIB", "mcastControlListControlId"), (0, "ZHONE-COM-IP-FILTER-MIB", "mcastControlListControlPrecedence"))
if mibBuilder.loadTexts: mcastControlListEntry.setStatus('current')
if mibBuilder.loadTexts: mcastControlListEntry.setDescription('An entry in the Multicast Control List.')
mcastControlListControlId = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: mcastControlListControlId.setStatus('current')
if mibBuilder.loadTexts: mcastControlListControlId.setDescription('Description.')
mcastControlListControlPrecedence = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: mcastControlListControlPrecedence.setStatus('current')
if mibBuilder.loadTexts: mcastControlListControlPrecedence.setDescription('Description.')
mcastControlListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 3), ZhoneRowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: mcastControlListRowStatus.setStatus('current')
if mibBuilder.loadTexts: mcastControlListRowStatus.setDescription('Description.')
mcastControlListIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 4), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: mcastControlListIpAddress.setStatus('current')
if mibBuilder.loadTexts: mcastControlListIpAddress.setDescription('multicast ip address.')
mcastControlListType = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("normal", 1), ("always-on", 2), ("periodic", 3))).clone('normal')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: mcastControlListType.setStatus('current')
if mibBuilder.loadTexts: mcastControlListType.setDescription('Defines the video stream type. normal - join and leave when desired. Used for video. always-on - always joined. Meant for EBS, not video. periodic - will join and leave after task complete. Not meant for video. Used to download the tv guide.')
portAccessControl = ObjectIdentity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7))
if mibBuilder.loadTexts: portAccessControl.setStatus('current')
if mibBuilder.loadTexts: portAccessControl.setDescription('This MIB represents the port access control list in Zhone products. It is used to control access to internal ports. Initially it is used just for TELNET (23) , but in theory could be used for other ports as well.')
portAccessNextIndex = MibScalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: portAccessNextIndex.setStatus('current')
if mibBuilder.loadTexts: portAccessNextIndex.setDescription('Description: A hint for the next free index should the manager want to create a new entry.')
portAccessTable = MibTable((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2), )
if mibBuilder.loadTexts: portAccessTable.setStatus('current')
if mibBuilder.loadTexts: portAccessTable.setDescription('Contains the list of entries that control port access on this device.')
portAccessEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1), ).setIndexNames((0, "ZHONE-COM-IP-FILTER-MIB", "portAccessIndex"))
if mibBuilder.loadTexts: portAccessEntry.setStatus('current')
if mibBuilder.loadTexts: portAccessEntry.setDescription('This contains the entry that is to be accepted. Currently only used to control access to port 23. arg1, arg2 provide IP Address/mask to allow in.')
portAccessIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100)))
if mibBuilder.loadTexts: portAccessIndex.setStatus('current')
if mibBuilder.loadTexts: portAccessIndex.setDescription('The index of this entry in table. 100 entries should be more than enough.')
portAccessRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 2), ZhoneRowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: portAccessRowStatus.setStatus('current')
if mibBuilder.loadTexts: portAccessRowStatus.setDescription('Description.: used to create/delete entries in the table.')
portAccessNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1023))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: portAccessNumber.setStatus('current')
if mibBuilder.loadTexts: portAccessNumber.setDescription('PortNumber that this applies to, 1..1023 supported.')
portAccessSrcAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 4), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: portAccessSrcAddr.setStatus('current')
if mibBuilder.loadTexts: portAccessSrcAddr.setDescription('The IP address that we will accept packets from.')
portAccessNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 5), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: portAccessNetMask.setStatus('current')
if mibBuilder.loadTexts: portAccessNetMask.setDescription('portAccessNetMask - used to pass the range that we will accept with regards to portAccessSrcAddr.')
mibBuilder.exportSymbols("ZHONE-COM-IP-FILTER-MIB", fltStmtIpDstAddrLow=fltStmtIpDstAddrLow, fltStmtIpSrcAddrHigh=fltStmtIpSrcAddrHigh, mcastControlListIpAddress=mcastControlListIpAddress, fltSpecVersion1=fltSpecVersion1, fltStatSpecIndex=fltStatSpecIndex, portAccessSrcAddr=portAccessSrcAddr, fltStatSpecVersion=fltStatSpecVersion, portAccessNumber=portAccessNumber, fltStmtIpProtocol=fltStmtIpProtocol, fltStmtModifier=fltStmtModifier, fltSpecLanguageVersion=fltSpecLanguageVersion, fltStmtSrcPortLow=fltStmtSrcPortLow, mcastControlListControlPrecedence=mcastControlListControlPrecedence, fltStmtActionArg=fltStmtActionArg, fltSpecVersion2=fltSpecVersion2, filterStmtRenumEntry=filterStmtRenumEntry, filterStmtRenumTable=filterStmtRenumTable, portAccessTable=portAccessTable, mcastControlListControlId=mcastControlListControlId, fltStmtIpDstAddrHigh=fltStmtIpDstAddrHigh, fltStmtRowStatus=fltStmtRowStatus, comIpFilter=comIpFilter, portAccessControl=portAccessControl, fltStatDirection=fltStatDirection, mcastControl=mcastControl, fltStmtArbValueLow=fltStmtArbValueLow, mcastControlListTable=mcastControlListTable, filterGlobal=filterGlobal, fltSpecIndex=fltSpecIndex, PYSNMP_MODULE_ID=comIpFilter, fltStmtSrcPortHigh=fltStmtSrcPortHigh, filterStatsTable=filterStatsTable, fltStmtArbMask=fltStmtArbMask, fltGlobalIndexNext=fltGlobalIndexNext, fltStmtIndexNew=fltStmtIndexNew, mcastControlListRowStatus=mcastControlListRowStatus, filterStatsEntry=filterStatsEntry, fltStmtArbValueBase=fltStmtArbValueBase, fltStatLogPkts=fltStatLogPkts, fltStatResetPkts=fltStatResetPkts, fltStatPermitPkts=fltStatPermitPkts, mcastControlListType=mcastControlListType, portAccessIndex=portAccessIndex, fltStmtDstPortLow=fltStmtDstPortLow, fltGlobalTimeout=fltGlobalTimeout, filterStatementTable=filterStatementTable, fltStatDefaultPkts=fltStatDefaultPkts, filter=filter, fltStmtArbOffset=fltStmtArbOffset, portAccessEntry=portAccessEntry, portAccessNextIndex=portAccessNextIndex, fltStatRejectPkts=fltStatRejectPkts, mcastControlListEntry=mcastControlListEntry, filterStatementEntry=filterStatementEntry, fltStmtIndex=fltStmtIndex, filterSpecTable=filterSpecTable, fltSpecRowStatus=fltSpecRowStatus, fltStmtArbValueHigh=fltStmtArbValueHigh, portAccessNetMask=portAccessNetMask, portAccessRowStatus=portAccessRowStatus, fltStmtAction=fltStmtAction, fltStmtIpSrcAddrLow=fltStmtIpSrcAddrLow, filterSpecEntry=filterSpecEntry, fltStatDenyPkts=fltStatDenyPkts, fltSpecDesc=fltSpecDesc, fltSpecName=fltSpecName, fltStmtDstPortHigh=fltStmtDstPortHigh, fltStatForwardPkts=fltStatForwardPkts)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, single_value_constraint, value_range_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(gauge32, counter64, iso, integer32, module_identity, object_identity, ip_address, unsigned32, mib_identifier, time_ticks, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, notification_type, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Gauge32', 'Counter64', 'iso', 'Integer32', 'ModuleIdentity', 'ObjectIdentity', 'IpAddress', 'Unsigned32', 'MibIdentifier', 'TimeTicks', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'NotificationType', 'Counter32')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
(zhone_modules, zhone_ip) = mibBuilder.importSymbols('Zhone', 'zhoneModules', 'zhoneIp')
(zhone_row_status, zhone_admin_string) = mibBuilder.importSymbols('Zhone-TC', 'ZhoneRowStatus', 'ZhoneAdminString')
com_ip_filter = module_identity((1, 3, 6, 1, 4, 1, 5504, 6, 58))
comIpFilter.setRevisions(('2005-01-10 10:16', '2005-01-03 09:24', '2004-12-21 09:25', '2004-08-30 11:00', '2004-04-06 00:17', '2001-01-17 08:48', '2000-09-11 16:22'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
comIpFilter.setRevisionsDescriptions(('changed portAccessArg1, portAccessArg2 to more intuitive names.', 'changed portArg1, portArg2 to IP addresses', 'added Port_Access', 'V01.01.02 - Add type field to mcastControlList.', 'V01.01.01 - Implementation of multicast-control-list.', 'V01.01.00 - Added keyword markup, updated SMI, Added the filterStmtRenumTable and filterStatsTable', 'V01.00.00 - Initial Release'))
if mibBuilder.loadTexts:
comIpFilter.setLastUpdated('200501100015Z')
if mibBuilder.loadTexts:
comIpFilter.setOrganization('Zhone Technologies, Inc.')
if mibBuilder.loadTexts:
comIpFilter.setContactInfo(' Postal: Zhone Technologies, Inc. @ Zhone Way 7001 Oakport Street Oakland, CA 94621 USA Toll-Free: +1 877-ZHONE20 (+1 877-946-6320) Tel: +1-510-777-7000 Fax: +1-510-777-7001 E-mail: support@zhone.com')
if mibBuilder.loadTexts:
comIpFilter.setDescription('Zhone IP Filter MIB Module. IP Software Minneapolis, MN')
filter = object_identity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8))
if mibBuilder.loadTexts:
filter.setStatus('current')
if mibBuilder.loadTexts:
filter.setDescription('The MIB module representing IP filter specifications in Zhone Technologies products. IP filtering is typically performed to enhance network security by limiting what access is allowed between two networks. Filtering is also effective in eliminating certain denial-of-service attacks. Packet filtering also provides a framework for sanity checking packet headers, and rejecting packets that are unlikely (or that should be impossible). In this way, packet filtering can prevent certain unfortunate mistakes from shutting a network down.')
if mibBuilder.loadTexts:
filter.setReference("RFC1812, 'Requirements for IP Version 4 Routers,' ftp://ftp.isi.edu/in-notes/rfc1812.txt. RFC2267, 'Network Ingress Filtering: Defeating Denial of Service Attacks which employ IP Source Address Spoofing,' ftp://ftp.isi.edu/in-notes/rfc2267.txt. RFC2474, 'Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers', ftp://ftp.isi.edu/in-notes/rfc2474.txt. D. Brent Chapman, 'Network (In)Security Through IP Packet Filtering,' Proceedings of the 3rd USENIX Security Symposium, Sept. 1992. Andrew Molitor, 'An Architecture for Advanced Packet Filtering,' Proceedings of the 5th USENIX Security Symposium, June. 1995. Paul Russell, 'Linux IPCHAINS-HOWTO,' http://www.rustcorp.com/linux/ipchains/HOWTO.html, v1.0.7, Mar. 1999.")
filter_global = object_identity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1))
if mibBuilder.loadTexts:
filterGlobal.setStatus('current')
if mibBuilder.loadTexts:
filterGlobal.setDescription('Global filter provisioning information.')
flt_global_index_next = mib_scalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltGlobalIndexNext.setStatus('current')
if mibBuilder.loadTexts:
fltGlobalIndexNext.setDescription('The next available filter spec table index (filterSpecIndex). A GET on this object increments the value by one. A GETNEXT on this object will always return zero.')
flt_global_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fltGlobalTimeout.setStatus('current')
if mibBuilder.loadTexts:
fltGlobalTimeout.setDescription('Filter inconsistency timeout in seconds. A filter spec is considered to be in an inconsistent state when the value of the objects fltSpecVersion1 and fltSpecVersion2 are not equal. This timeout indicates the minimum number of seconds a filter may be in an inconsistent state before the filter spec becomes invalid and the default action for a filter is used as the filter. Provided fltGlobalTimeout is long enough, it should ensure that both an old modification is permanently stalled (ensuring exclusive access) as well as enough time to repair a filter. Default is five seconds.')
filter_spec_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2))
if mibBuilder.loadTexts:
filterSpecTable.setStatus('current')
if mibBuilder.loadTexts:
filterSpecTable.setDescription("The filter specification table contains specifications for the IP filtering module. Rows are indexed by a single integer index (filterSpecIndex). The fltGlobalIndexNext object is used to determine the next index value. Each row points to a sequence of rows (statements) in the filterStatementTable. When any row in that sequence is modified, created, or removed, the fltSpecVersion1 and fltSpecVersion2 objects must be incremented. Rows are created by assigning fltSpecIndex and setting fltSpecRowStatus to 'createAndGo'. All columnar objects in this table have default values, so no objects other than the index value need be set to create a row. Rows are removed by setting fltSpecRowStatus to 'destroy'. When a row is removed, each row in filterStatementTable with the same fltSpecIndex is automatically removed.")
filter_spec_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1)).setIndexNames((0, 'ZHONE-COM-IP-FILTER-MIB', 'fltSpecIndex'))
if mibBuilder.loadTexts:
filterSpecEntry.setStatus('current')
if mibBuilder.loadTexts:
filterSpecEntry.setDescription('An entry in the filterSpecTable.')
flt_spec_index = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
fltSpecIndex.setStatus('current')
if mibBuilder.loadTexts:
fltSpecIndex.setDescription('The index that identifies an entry in the filterSpecTable. The fltGlobalIndexNext object is used to determine the next value of this object.')
flt_spec_name = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 2), zhone_admin_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecName.setStatus('current')
if mibBuilder.loadTexts:
fltSpecName.setDescription('The filter name associated with this filter specification. This name should indicate the nature of the filter. The default value is an empty string.')
flt_spec_desc = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 3), snmp_admin_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecDesc.setStatus('current')
if mibBuilder.loadTexts:
fltSpecDesc.setDescription('Textual description of the filter specification. This should briefly describe the nature of the filter defined by the associated filter statements. The default value is an empty string.')
flt_spec_version1 = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 4), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecVersion1.setStatus('current')
if mibBuilder.loadTexts:
fltSpecVersion1.setDescription('The version number of the filter specification. This is used to flag any changes in the statements that comprise a filter. Each time a modification occurs to an object in a filter spec (including the the list of filter statements of the same fltSpecIndex in filterStatementTable), the value of this object, and fltSpecVersion2 must be incremented. The manager adding, deleting, or modifying a filter statement or statements must increment this version number in the following manner. A read of fltSpecVersion1 returns its current value. A write to fltSpecVersion1 must be one greater than its current value. A successful write of this object transfers ownership to the manager, where the manager must subsequently perform any desired modifications to the filter spec and then write the new value of fltSpecVersion1 to the fltSpecVersion2 object to release ownership. When fltSpecVersion1 does not equal to fltSpecVersion2, the filter spec is in an inconsistent state. If the filter spec remains in an inconsistent state longer than the time specified in fltGlobalTimeout, the filter spec is declared invalid and the filter spec does not become active. The previously provisioned filter spec will remain active. If no previous filter spec was provisioned for this interface, a default action is used. It is up to the manager to fix the invalid filter spec and bring it into a consistent state.')
flt_spec_version2 = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 5), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecVersion2.setStatus('current')
if mibBuilder.loadTexts:
fltSpecVersion2.setDescription('The version number of the filter specification. The value of this object must be equal to fltSpecVersion1, otherwise the filter spec is inconsistent. See fltSpecVersion1 for details.')
flt_spec_language_version = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 6), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecLanguageVersion.setStatus('current')
if mibBuilder.loadTexts:
fltSpecLanguageVersion.setDescription('The language version of the filter. The language version further details the meaning and use of the objects in filterStatmentTable. The definitions of the filter languages is beyond the scope of this description.')
flt_spec_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 2, 1, 7), zhone_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltSpecRowStatus.setStatus('current')
if mibBuilder.loadTexts:
fltSpecRowStatus.setDescription('Zhone convention to support row creation and deletion. This is the only object required to create or destroy a row in this table.')
filter_statement_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3))
if mibBuilder.loadTexts:
filterStatementTable.setStatus('current')
if mibBuilder.loadTexts:
filterStatementTable.setDescription("This table contains the filter specification statements for the IP filtering module. A complete filter specification is comprised of all the linked statements (rows) that are pointed to by an entry in the filterSpecTable. Filter statements are linked together by fltSpecIndex, and are ordered within the comprised filter using fltStmtIndex. A statement can only be owned by one filter spec. Rows are created by assigning fltSpecIndex and fltStmtIndex, and setting fltStmtRowStatus to 'createAndGo'. All columnar objects in this table have default values, so no objects other than the index values need be set to create a row. Rows are destroyed by setting fltStmtRowStatus to 'delete'. When rows are created or destroyed, the version of the corresponding filter spec row is incremented.")
filter_statement_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1)).setIndexNames((0, 'ZHONE-COM-IP-FILTER-MIB', 'fltSpecIndex'), (0, 'ZHONE-COM-IP-FILTER-MIB', 'fltStmtIndex'))
if mibBuilder.loadTexts:
filterStatementEntry.setStatus('current')
if mibBuilder.loadTexts:
filterStatementEntry.setDescription('An entry in the filterStatement table. Each entry represents one of a sequence of statements that comprise a filter. Each filter statement consists of an index, specific packet header fields, and arbitrary packet offsets and values. Some objects in this entry define ranges for specific packet header fields. These objects define comparison operations on the field they share in the following manner: Low High Compare Method for field f --- ---- ------------------------------------------- 0 0 no comparison on the field 0 H less than or equal to High (f <= H) L 0 exact match (L == f) L H inclusive between comparison (L <= f <= H) ')
flt_stmt_index = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
fltStmtIndex.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIndex.setDescription('The table index that identifies a filter statement. These indicies should be sparse to allow for insertion into the list.')
flt_stmt_ip_src_addr_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 2), ip_address().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpSrcAddrLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpSrcAddrLow.setDescription('The inclusive lower bound for the source IP address range. See the filterStatementEntry description for details.')
flt_stmt_ip_src_addr_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 3), ip_address().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpSrcAddrHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpSrcAddrHigh.setDescription('The inclusive upper bound for the source IP address range. See the filterStatementEntry description for details.')
flt_stmt_src_port_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtSrcPortLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtSrcPortLow.setDescription('The inclusive lower bound for the transport layer source port range. See the filterStatementEntry description for details.')
flt_stmt_src_port_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtSrcPortHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtSrcPortHigh.setDescription('The inclusive upper bound for the transport layer source port range. See the filterStatementEntry description for details.')
flt_stmt_ip_dst_addr_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 6), ip_address().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpDstAddrLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpDstAddrLow.setDescription('The inclusive lower bound for the destination IP address range. See the filterStatementEntry description for details.')
flt_stmt_ip_dst_addr_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 7), ip_address().clone(hexValue='00000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpDstAddrHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpDstAddrHigh.setDescription('The inclusive upper bound for the destination IP address range. See the filterStatementEntry description for details.')
flt_stmt_dst_port_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtDstPortLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtDstPortLow.setDescription('The inclusive lower bound for the transport layer destination port range. See the filterStatementEntry description for details.')
flt_stmt_dst_port_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtDstPortHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtDstPortHigh.setDescription('The inclusive upper bound for the transport layer destination port range. See the filterStatementEntry description for details.')
flt_stmt_ip_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('any', 1), ('ip', 2), ('tcp', 3), ('udp', 4), ('icmp', 5))).clone('any')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtIpProtocol.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIpProtocol.setDescription('The IP protocol value that is to be matched. The enum values are as follows: any(1) : any protocol type is a match (wildcard) ip(2) : raw IP packet tcp(3) : TCP packet udp(4) : UDP packet icmp(5) : ICMP packet The default value is any(1).')
flt_stmt_arb_value_base = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('none', 1), ('ip', 2), ('udp', 3), ('tcp', 4), ('icmp', 5), ('ipOptions', 6), ('tcpOptions', 7))).clone('none')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbValueBase.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbValueBase.setDescription('This field identifies the protocol header to which the arbitrary value comparison applies. The enum values are as follows: none(1) : no arbitrary value comparison ip(2) : base is IP header udp(3) : base is UDP header tcp(4) : base is TCP header icmp(5) : base is ICMP header ipOptions(6) : base is IP options header tcpOptions(7) : base is TCP options header The default value is none(1).')
flt_stmt_arb_offset = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 64))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbOffset.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbOffset.setDescription('The offset, in octets, from the beginning of the header to the most significant octet for the arbitrary value comparison.')
flt_stmt_arb_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 13), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbMask.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbMask.setDescription('This object is mask for for arbitrary value comparisons. The non-zero bits in this field determine the size of the arbitrary field.')
flt_stmt_arb_value_low = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 14), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbValueLow.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbValueLow.setDescription('This object is the inclusive lower bound for arbitrary value comparison. See the filterStatementEntry description for details.')
flt_stmt_arb_value_high = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 15), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtArbValueHigh.setStatus('current')
if mibBuilder.loadTexts:
fltStmtArbValueHigh.setDescription('This object is the inclusive upper bound for arbitrary value comparison. See the filterStatementEntry description for details.')
flt_stmt_modifier = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 16), bits().clone(namedValues=named_values(('notIpSrc', 0), ('notSrcPort', 1), ('notDstIp', 2), ('notPortDst', 3), ('notProtocol', 4), ('notArbitrary', 5), ('notStatement', 6)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtModifier.setStatus('current')
if mibBuilder.loadTexts:
fltStmtModifier.setDescription('Filter statement modifier. The bits set in this object logically negate the results of the comparisons made on their respecive fields as shown : notIpSrcAddr(1) : fltStmtIpSrcAddrLow, fltStmtIpSrcAddrHigh notSrcPort(2) : fltStmtSrcPortLow, fltStmtSrcPortHigh notIpDstAddr(3) : fltStmtIpDstAddrLow, fltStmtIpDstAddrHigh notDstPort(4) : fltStmtDstPortLow, fltStmtDstPortHigh notIpProtocol(5) : fltStmtIpProtocol notArbitrary(6) : fltStmtArbValueLow, fltStmtArbValueHigh notStatement(7) : negate outcome of the entire statement No bits set (the default) specifies to use all outcomes as is.')
flt_stmt_action = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 17), bits().clone(namedValues=named_values(('reset', 0), ('permit', 1), ('deny', 2), ('forward', 3), ('reject', 4), ('log', 5))).clone(namedValues=named_values(('deny', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtAction.setStatus('current')
if mibBuilder.loadTexts:
fltStmtAction.setDescription('Filter statement action. The bits set in this object specify actions to take on packets matching this statement. Supported actions are: reset(0) : Return a TCP reset packet to the packet sender and drop the packet. This cannot be specified with permit. permit(1) : Stop filtering the packet and allow it to be sent on the associated interface. This cannot be specified with deny. deny(2) : Stop filtering the packet and discard it. This cannot be specified with permit. forward(3) : Forward the packet the IP address specified in fltStmtActionArg. reject(4) : Return an ICMP destination unreachable packet (type 3) to the packet sender with code 13 (communication administratively prohibited). This cannot be specified permit. log(5) : Write the packet to the log stream. There are some mutually exclusive bits: reset(0) and permit(1), permit(1) and deny(2), permit(1) and reject(4). No bits set implies to continue filtering on the packet.')
flt_stmt_action_arg = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 18), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtActionArg.setStatus('current')
if mibBuilder.loadTexts:
fltStmtActionArg.setDescription('Filter statement action argument. The meaning of this object depends on the value of fltStmtAction: forward(3) : An IP address to forward the packet to. The value of this object must be non-zero. All other values of fltStmtAction have no relation to this object. The default is zero.')
flt_stmt_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 3, 1, 19), zhone_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
fltStmtRowStatus.setStatus('current')
if mibBuilder.loadTexts:
fltStmtRowStatus.setDescription('Zhone convention to support row creation and deletion. This is the only object required to create or destroy a row in this table.')
filter_stmt_renum_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4))
if mibBuilder.loadTexts:
filterStmtRenumTable.setStatus('current')
if mibBuilder.loadTexts:
filterStmtRenumTable.setDescription('This table provides a mechanism for renumbering individual filter statments within their particular filter spec.')
filter_stmt_renum_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4, 1))
filterStatementEntry.registerAugmentions(('ZHONE-COM-IP-FILTER-MIB', 'filterStmtRenumEntry'))
filterStmtRenumEntry.setIndexNames(*filterStatementEntry.getIndexNames())
if mibBuilder.loadTexts:
filterStmtRenumEntry.setStatus('current')
if mibBuilder.loadTexts:
filterStmtRenumEntry.setDescription('An entry in the filterStmtRenumTable.')
flt_stmt_index_new = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fltStmtIndexNew.setStatus('current')
if mibBuilder.loadTexts:
fltStmtIndexNew.setDescription("The new statement index for the filter statement. Reading this object will return the same value as the 'fltStmtIndex' portion of its index. Writing to this object will cause the corresponding filter statement to be relocated to the position identified by the value written here. If no statement exists at the current index, 'no such instance' will be returned. If a statement already exists at the new index then 'inconsistent value' is returned. For example, to move the second statement of filter #4 to the third position (e.g. to make room for a new statement #2), the following SNMP set-request would be issued: fltStmtIndexNew.4.2 = 3 There is no default value for this object as it is derived from the fltStmtIndex.")
filter_stats_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5))
if mibBuilder.loadTexts:
filterStatsTable.setStatus('current')
if mibBuilder.loadTexts:
filterStatsTable.setDescription('This table provides ingress and egress IP filter statistics for each interface. This table is indexed by the ifIndex of the interface and the direction (ingress or egress) of traffic being filtered. This is a read-only table.')
filter_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'ZHONE-COM-IP-FILTER-MIB', 'fltStatDirection'))
if mibBuilder.loadTexts:
filterStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
filterStatsEntry.setDescription('An entry in the filterStatsTable. There will be an entry for each filter provisioned on an interface. There can be, at most, two filters provisioned per interface; one for ingress filtering and the other for egress filtering.')
flt_stat_direction = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ingress', 1), ('egress', 2))))
if mibBuilder.loadTexts:
fltStatDirection.setStatus('current')
if mibBuilder.loadTexts:
fltStatDirection.setDescription('The direction for which this set of statistics is kept: ingress or egress.')
flt_stat_reset_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 2), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatResetPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatResetPkts.setDescription('The number of discarded packets for which a TCP reset packet was sent.')
flt_stat_permit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 3), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatPermitPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatPermitPkts.setDescription('The number of permitted packets.')
flt_stat_deny_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 4), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatDenyPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatDenyPkts.setDescription('The number of discarded packets.')
flt_stat_forward_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 5), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatForwardPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatForwardPkts.setDescription('The number of packets forwarded to the IP address specified in the filter.')
flt_stat_reject_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 6), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatRejectPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatRejectPkts.setDescription('The number of discarded packets for which an ICMP destination unreachable packet with code 13 was sent.')
flt_stat_log_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 7), counter32()).setUnits('packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatLogPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatLogPkts.setDescription('The number of logged packets.')
flt_stat_default_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatDefaultPkts.setStatus('current')
if mibBuilder.loadTexts:
fltStatDefaultPkts.setDescription('The number of packets that pass through the filter without matching upon which the default action is used.')
flt_stat_spec_version = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 9), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatSpecVersion.setStatus('current')
if mibBuilder.loadTexts:
fltStatSpecVersion.setDescription('The version of the filter being used on this interface.')
flt_stat_spec_index = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 5, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fltStatSpecIndex.setStatus('current')
if mibBuilder.loadTexts:
fltStatSpecIndex.setDescription('The index of the filter specification being used on this interface. If there is no filter configured for an interface, the entry will not exist in this table.')
mcast_control = object_identity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6))
if mibBuilder.loadTexts:
mcastControl.setStatus('current')
if mibBuilder.loadTexts:
mcastControl.setDescription('The MIB module representing Multicast control list specifications in Zhone Technologies products. The First application of multicast control list is to accept of deny a IGMP request to join or leave a IGMP group. Any IGMP request to join a group is accepted only if the group address is available in the Multicast Control list pointed by a field in the ip-interface-record.')
mcast_control_list_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1))
if mibBuilder.loadTexts:
mcastControlListTable.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListTable.setDescription('Multicast control list table conatins the one of the IP Address that can be allowed to join to by a IGMP join request from IP interface that has the the multicast control list in its ip-interfce-profile. The address to the table is the multicast control list ID and the precedence. The Row status in the table contains indication of whether the row is being created or destroyed. ')
mcast_control_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1)).setIndexNames((0, 'ZHONE-COM-IP-FILTER-MIB', 'mcastControlListControlId'), (0, 'ZHONE-COM-IP-FILTER-MIB', 'mcastControlListControlPrecedence'))
if mibBuilder.loadTexts:
mcastControlListEntry.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListEntry.setDescription('An entry in the Multicast Control List.')
mcast_control_list_control_id = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
mcastControlListControlId.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListControlId.setDescription('Description.')
mcast_control_list_control_precedence = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
mcastControlListControlPrecedence.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListControlPrecedence.setDescription('Description.')
mcast_control_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 3), zhone_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
mcastControlListRowStatus.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListRowStatus.setDescription('Description.')
mcast_control_list_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 4), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
mcastControlListIpAddress.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListIpAddress.setDescription('multicast ip address.')
mcast_control_list_type = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 6, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('normal', 1), ('always-on', 2), ('periodic', 3))).clone('normal')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
mcastControlListType.setStatus('current')
if mibBuilder.loadTexts:
mcastControlListType.setDescription('Defines the video stream type. normal - join and leave when desired. Used for video. always-on - always joined. Meant for EBS, not video. periodic - will join and leave after task complete. Not meant for video. Used to download the tv guide.')
port_access_control = object_identity((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7))
if mibBuilder.loadTexts:
portAccessControl.setStatus('current')
if mibBuilder.loadTexts:
portAccessControl.setDescription('This MIB represents the port access control list in Zhone products. It is used to control access to internal ports. Initially it is used just for TELNET (23) , but in theory could be used for other ports as well.')
port_access_next_index = mib_scalar((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
portAccessNextIndex.setStatus('current')
if mibBuilder.loadTexts:
portAccessNextIndex.setDescription('Description: A hint for the next free index should the manager want to create a new entry.')
port_access_table = mib_table((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2))
if mibBuilder.loadTexts:
portAccessTable.setStatus('current')
if mibBuilder.loadTexts:
portAccessTable.setDescription('Contains the list of entries that control port access on this device.')
port_access_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1)).setIndexNames((0, 'ZHONE-COM-IP-FILTER-MIB', 'portAccessIndex'))
if mibBuilder.loadTexts:
portAccessEntry.setStatus('current')
if mibBuilder.loadTexts:
portAccessEntry.setDescription('This contains the entry that is to be accepted. Currently only used to control access to port 23. arg1, arg2 provide IP Address/mask to allow in.')
port_access_index = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 100)))
if mibBuilder.loadTexts:
portAccessIndex.setStatus('current')
if mibBuilder.loadTexts:
portAccessIndex.setDescription('The index of this entry in table. 100 entries should be more than enough.')
port_access_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 2), zhone_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
portAccessRowStatus.setStatus('current')
if mibBuilder.loadTexts:
portAccessRowStatus.setDescription('Description.: used to create/delete entries in the table.')
port_access_number = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 1023))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
portAccessNumber.setStatus('current')
if mibBuilder.loadTexts:
portAccessNumber.setDescription('PortNumber that this applies to, 1..1023 supported.')
port_access_src_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 4), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
portAccessSrcAddr.setStatus('current')
if mibBuilder.loadTexts:
portAccessSrcAddr.setDescription('The IP address that we will accept packets from.')
port_access_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5504, 4, 1, 8, 7, 2, 1, 5), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
portAccessNetMask.setStatus('current')
if mibBuilder.loadTexts:
portAccessNetMask.setDescription('portAccessNetMask - used to pass the range that we will accept with regards to portAccessSrcAddr.')
mibBuilder.exportSymbols('ZHONE-COM-IP-FILTER-MIB', fltStmtIpDstAddrLow=fltStmtIpDstAddrLow, fltStmtIpSrcAddrHigh=fltStmtIpSrcAddrHigh, mcastControlListIpAddress=mcastControlListIpAddress, fltSpecVersion1=fltSpecVersion1, fltStatSpecIndex=fltStatSpecIndex, portAccessSrcAddr=portAccessSrcAddr, fltStatSpecVersion=fltStatSpecVersion, portAccessNumber=portAccessNumber, fltStmtIpProtocol=fltStmtIpProtocol, fltStmtModifier=fltStmtModifier, fltSpecLanguageVersion=fltSpecLanguageVersion, fltStmtSrcPortLow=fltStmtSrcPortLow, mcastControlListControlPrecedence=mcastControlListControlPrecedence, fltStmtActionArg=fltStmtActionArg, fltSpecVersion2=fltSpecVersion2, filterStmtRenumEntry=filterStmtRenumEntry, filterStmtRenumTable=filterStmtRenumTable, portAccessTable=portAccessTable, mcastControlListControlId=mcastControlListControlId, fltStmtIpDstAddrHigh=fltStmtIpDstAddrHigh, fltStmtRowStatus=fltStmtRowStatus, comIpFilter=comIpFilter, portAccessControl=portAccessControl, fltStatDirection=fltStatDirection, mcastControl=mcastControl, fltStmtArbValueLow=fltStmtArbValueLow, mcastControlListTable=mcastControlListTable, filterGlobal=filterGlobal, fltSpecIndex=fltSpecIndex, PYSNMP_MODULE_ID=comIpFilter, fltStmtSrcPortHigh=fltStmtSrcPortHigh, filterStatsTable=filterStatsTable, fltStmtArbMask=fltStmtArbMask, fltGlobalIndexNext=fltGlobalIndexNext, fltStmtIndexNew=fltStmtIndexNew, mcastControlListRowStatus=mcastControlListRowStatus, filterStatsEntry=filterStatsEntry, fltStmtArbValueBase=fltStmtArbValueBase, fltStatLogPkts=fltStatLogPkts, fltStatResetPkts=fltStatResetPkts, fltStatPermitPkts=fltStatPermitPkts, mcastControlListType=mcastControlListType, portAccessIndex=portAccessIndex, fltStmtDstPortLow=fltStmtDstPortLow, fltGlobalTimeout=fltGlobalTimeout, filterStatementTable=filterStatementTable, fltStatDefaultPkts=fltStatDefaultPkts, filter=filter, fltStmtArbOffset=fltStmtArbOffset, portAccessEntry=portAccessEntry, portAccessNextIndex=portAccessNextIndex, fltStatRejectPkts=fltStatRejectPkts, mcastControlListEntry=mcastControlListEntry, filterStatementEntry=filterStatementEntry, fltStmtIndex=fltStmtIndex, filterSpecTable=filterSpecTable, fltSpecRowStatus=fltSpecRowStatus, fltStmtArbValueHigh=fltStmtArbValueHigh, portAccessNetMask=portAccessNetMask, portAccessRowStatus=portAccessRowStatus, fltStmtAction=fltStmtAction, fltStmtIpSrcAddrLow=fltStmtIpSrcAddrLow, filterSpecEntry=filterSpecEntry, fltStatDenyPkts=fltStatDenyPkts, fltSpecDesc=fltSpecDesc, fltSpecName=fltSpecName, fltStmtDstPortHigh=fltStmtDstPortHigh, fltStatForwardPkts=fltStatForwardPkts) |
"""Exceptions for this library"""
class NSBaseError(Exception):
"""Base Error for all custom exceptions"""
pass
class RateLimitReached(NSBaseError):
"""Rate Limit was reached"""
class NSServerBaseException(NSBaseError):
"""Exceptions that the server returns"""
pass
class APIError(NSServerBaseException):
"""General API Error"""
pass
class Forbidden(APIError):
pass
class ConflictError(APIError):
"""ConflictError from Server"""
pass
class NotFound(APIError):
"""Nation/Region Not Found"""
pass
class APIRateLimitBan(APIError):
"""Server has banned your IP"""
pass
class APIUsageError(APIError):
pass
class InternalServerError(APIError):
pass
class CloudflareServerError(APIError):
pass
class BadRequest(APIError):
pass | """Exceptions for this library"""
class Nsbaseerror(Exception):
"""Base Error for all custom exceptions"""
pass
class Ratelimitreached(NSBaseError):
"""Rate Limit was reached"""
class Nsserverbaseexception(NSBaseError):
"""Exceptions that the server returns"""
pass
class Apierror(NSServerBaseException):
"""General API Error"""
pass
class Forbidden(APIError):
pass
class Conflicterror(APIError):
"""ConflictError from Server"""
pass
class Notfound(APIError):
"""Nation/Region Not Found"""
pass
class Apiratelimitban(APIError):
"""Server has banned your IP"""
pass
class Apiusageerror(APIError):
pass
class Internalservererror(APIError):
pass
class Cloudflareservererror(APIError):
pass
class Badrequest(APIError):
pass |
def sync_read(socket, size):
"""
Perform a (temporary) blocking read.
The amount read may be smaller than the amount requested if a
timeout occurs.
"""
timeout = socket.gettimeout()
socket.settimeout(None)
try:
return socket.recv(size)
finally:
socket.settimeout(timeout)
def sync_write(socket, data):
"""
Perform a (temporary) blocking write.
"""
timeout = socket.gettimeout()
socket.settimeout(None)
try:
while data:
sent = socket.send(data)
data = data[sent:]
finally:
socket.settimeout(timeout)
| def sync_read(socket, size):
"""
Perform a (temporary) blocking read.
The amount read may be smaller than the amount requested if a
timeout occurs.
"""
timeout = socket.gettimeout()
socket.settimeout(None)
try:
return socket.recv(size)
finally:
socket.settimeout(timeout)
def sync_write(socket, data):
"""
Perform a (temporary) blocking write.
"""
timeout = socket.gettimeout()
socket.settimeout(None)
try:
while data:
sent = socket.send(data)
data = data[sent:]
finally:
socket.settimeout(timeout) |
"""
Q146
LRU Cache
Medium
Author: Lingqing Gan
Date: 08/06/2019
Question:
Design and implement a data structure for Least Recently Used (LRU) cache.
It should support the following operations: get and put.
get(key) - Get the value (will always be positive) of the key if the key
exists in the cache, otherwise return -1.
put(key, value) - Set or insert the value if the key is not already present.
When the cache reached its capacity, it should invalidate the least
recently used item before inserting a new item.
The cache is initialized with a positive capacity.
Follow up:
Could you do both operations in O(1) time complexity?
notes:
linked list + dict(hash map)
12/24/2019
Merry Xmas~~
Now the code I wrote is working correctly. Just not very efficient.
Time to learn how the tutorial did it.
"""
class LRUCache:
class Node:
def __init__(self, key, val):
self.key = key
self.val = val
self.next = None
self.prev = None
def __init__(self, capacity: int):
self.cap = capacity
self.size = 0
self.hash = {}
self.head = None
self.tail = None
def get(self, key: int) -> int:
if key not in self.hash:
return -1
# if the inquired node is the last/only node
if self.hash[key].next is None:
return self.hash[key].val
# AT LEAST 2 NODES
# move the inquired node to the end of the linked list
# handle head and tail of the linked list
if self.head == self.hash[key]:
self.head = self.head.next
last = self.tail.key
self.tail.next = self.hash[key]
self.tail = self.hash[key]
# connect the nodes before and after the inquired node
if self.hash[key].prev is not None:
self.hash[key].prev.next = self.hash[key].next
if self.hash[key].next is not None:
self.hash[key].next.prev = self.hash[key].prev
# update the prev/next node of the inquired node
self.hash[key].prev = self.hash[last]
self.hash[key].next = None
return self.hash[key].val
def put(self, key: int, value: int) -> None:
# if the key exists
if key in self.hash:
self.hash[key].val = value
self.get(key)
return 0
# if key is new
self.hash[key] = self.Node(key, value)
if self.size == 0:
# first node
self.head = self.tail = self.hash[key]
self.size = 1
elif self.size < self.cap:
# capacity not reached, just add new node to the end
self.tail.next = self.hash[key]
self.hash[key].prev = self.tail
self.tail = self.hash[key]
self.size += 1
else:
# capacity reached, need to remove LRU node
self.tail.next = self.hash[key]
self.hash[key].prev = self.tail
self.tail = self.hash[key]
first = self.head.key
self.head = self.head.next
self.head.prev = None
del self.hash[first]
# Your LRUCache object will be instantiated and called as such:
# obj = LRUCache(capacity)
# param_1 = obj.get(key)
# obj.put(key,value)
capacity = 2
cache = LRUCache(capacity)
cache.put(1,1)
cache.put(2,2)
print(cache.get(1))
cache.put(3,3)
print(cache.get(2))
cache.put(4,4)
print(cache.get(1))
print(cache.get(3))
print(cache.get(4))
| """
Q146
LRU Cache
Medium
Author: Lingqing Gan
Date: 08/06/2019
Question:
Design and implement a data structure for Least Recently Used (LRU) cache.
It should support the following operations: get and put.
get(key) - Get the value (will always be positive) of the key if the key
exists in the cache, otherwise return -1.
put(key, value) - Set or insert the value if the key is not already present.
When the cache reached its capacity, it should invalidate the least
recently used item before inserting a new item.
The cache is initialized with a positive capacity.
Follow up:
Could you do both operations in O(1) time complexity?
notes:
linked list + dict(hash map)
12/24/2019
Merry Xmas~~
Now the code I wrote is working correctly. Just not very efficient.
Time to learn how the tutorial did it.
"""
class Lrucache:
class Node:
def __init__(self, key, val):
self.key = key
self.val = val
self.next = None
self.prev = None
def __init__(self, capacity: int):
self.cap = capacity
self.size = 0
self.hash = {}
self.head = None
self.tail = None
def get(self, key: int) -> int:
if key not in self.hash:
return -1
if self.hash[key].next is None:
return self.hash[key].val
if self.head == self.hash[key]:
self.head = self.head.next
last = self.tail.key
self.tail.next = self.hash[key]
self.tail = self.hash[key]
if self.hash[key].prev is not None:
self.hash[key].prev.next = self.hash[key].next
if self.hash[key].next is not None:
self.hash[key].next.prev = self.hash[key].prev
self.hash[key].prev = self.hash[last]
self.hash[key].next = None
return self.hash[key].val
def put(self, key: int, value: int) -> None:
if key in self.hash:
self.hash[key].val = value
self.get(key)
return 0
self.hash[key] = self.Node(key, value)
if self.size == 0:
self.head = self.tail = self.hash[key]
self.size = 1
elif self.size < self.cap:
self.tail.next = self.hash[key]
self.hash[key].prev = self.tail
self.tail = self.hash[key]
self.size += 1
else:
self.tail.next = self.hash[key]
self.hash[key].prev = self.tail
self.tail = self.hash[key]
first = self.head.key
self.head = self.head.next
self.head.prev = None
del self.hash[first]
capacity = 2
cache = lru_cache(capacity)
cache.put(1, 1)
cache.put(2, 2)
print(cache.get(1))
cache.put(3, 3)
print(cache.get(2))
cache.put(4, 4)
print(cache.get(1))
print(cache.get(3))
print(cache.get(4)) |
# https://leetcode.com/problems/contains-duplicate/
# We are forming whole set always which isn't optimal though time complexity is O(n).
class Solution:
def containsDuplicate(self, nums: List[int]) -> bool:
return len(nums) != len(set(nums)) | class Solution:
def contains_duplicate(self, nums: List[int]) -> bool:
return len(nums) != len(set(nums)) |
a=''
n=int(input())
while n != 0:
a=str(n%2)+a
n//=2
print(a)
| a = ''
n = int(input())
while n != 0:
a = str(n % 2) + a
n //= 2
print(a) |
"""
ALGORITHM : Merge Sort
WORST CASE => {
PERFORMANCE: O(n log(n))
SPACE: O(n)
}
"""
def merge_sort(arr):
size = len(arr)
if size == 1:
return arr
elif size == 2:
if arr[1] > arr[0]:
return [arr[0], arr[1]]
mid = len(arr) // 2
left = merge_sort(arr[:mid])
right = merge_sort(arr[mid:])
merged_arr = []
while len(left) != 0 and len(right) != 0:
if left[0] > right[0]:
merged_arr.append(right.pop(0))
else:
merged_arr.append(left.pop(0))
merged_arr += left + right
return merged_arr
if __name__ == '__main__':
sorted_arr = merge_sort([8, 4, 2, 9, 1, 3])
print(sorted_arr)
| """
ALGORITHM : Merge Sort
WORST CASE => {
PERFORMANCE: O(n log(n))
SPACE: O(n)
}
"""
def merge_sort(arr):
size = len(arr)
if size == 1:
return arr
elif size == 2:
if arr[1] > arr[0]:
return [arr[0], arr[1]]
mid = len(arr) // 2
left = merge_sort(arr[:mid])
right = merge_sort(arr[mid:])
merged_arr = []
while len(left) != 0 and len(right) != 0:
if left[0] > right[0]:
merged_arr.append(right.pop(0))
else:
merged_arr.append(left.pop(0))
merged_arr += left + right
return merged_arr
if __name__ == '__main__':
sorted_arr = merge_sort([8, 4, 2, 9, 1, 3])
print(sorted_arr) |
# Time: O(|V| + |E|)
# Space: O(|V|)
# """
# This is HtmlParser's API interface.
# You should not implement it, or speculate about its implementation
# """
class HtmlParser(object):
def getUrls(self, url):
"""
:type url: str
:rtype List[str]
"""
pass
class Solution(object):
def crawl(self, startUrl, htmlParser):
"""
:type startUrl: str
:type htmlParser: HtmlParser
:rtype: List[str]
"""
SCHEME = "http://"
def hostname(url):
pos = url.find('/', len(SCHEME))
if pos == -1:
return url
return url[:pos]
result = [startUrl]
lookup = set(result)
for from_url in result:
name = hostname(from_url)
for to_url in htmlParser.getUrls(from_url):
if to_url not in lookup and name == hostname(to_url):
result.append(to_url)
lookup.add(to_url)
return result
| class Htmlparser(object):
def get_urls(self, url):
"""
:type url: str
:rtype List[str]
"""
pass
class Solution(object):
def crawl(self, startUrl, htmlParser):
"""
:type startUrl: str
:type htmlParser: HtmlParser
:rtype: List[str]
"""
scheme = 'http://'
def hostname(url):
pos = url.find('/', len(SCHEME))
if pos == -1:
return url
return url[:pos]
result = [startUrl]
lookup = set(result)
for from_url in result:
name = hostname(from_url)
for to_url in htmlParser.getUrls(from_url):
if to_url not in lookup and name == hostname(to_url):
result.append(to_url)
lookup.add(to_url)
return result |
class UniErrors(Exception):
pass
class SetupErrors(UniErrors):
pass
class SettingErrors(UniErrors):
pass
class ConfigureSyntaxErrors(UniErrors):
pass
class NoLocationErrors(UniErrors):
pass
class ImportedErrors(UniErrors):
pass
class KernelWaresSettingsErrors(UniErrors):
pass
class RegisterErrors(UniErrors):
pass
class ResoluterErrors(UniErrors):
pass
class VolumeErrors(UniErrors):
pass
class ConnectionErrors(UniErrors):
pass
class RedisOperationErrors(UniErrors):
pass
class SerializerSettingErrors(UniErrors):
pass
class SerializerValidationErrors(UniErrors):
pass
class ParserSettingErrors(UniErrors):
pass
class ContentTypeErrors(UniErrors):
pass
class IllegalParametersErrors(UniErrors):
pass
class CodingErrors(UniErrors):
pass
class AppRuntimeErrors(UniErrors):
pass
| class Unierrors(Exception):
pass
class Setuperrors(UniErrors):
pass
class Settingerrors(UniErrors):
pass
class Configuresyntaxerrors(UniErrors):
pass
class Nolocationerrors(UniErrors):
pass
class Importederrors(UniErrors):
pass
class Kernelwaressettingserrors(UniErrors):
pass
class Registererrors(UniErrors):
pass
class Resolutererrors(UniErrors):
pass
class Volumeerrors(UniErrors):
pass
class Connectionerrors(UniErrors):
pass
class Redisoperationerrors(UniErrors):
pass
class Serializersettingerrors(UniErrors):
pass
class Serializervalidationerrors(UniErrors):
pass
class Parsersettingerrors(UniErrors):
pass
class Contenttypeerrors(UniErrors):
pass
class Illegalparameterserrors(UniErrors):
pass
class Codingerrors(UniErrors):
pass
class Appruntimeerrors(UniErrors):
pass |
"""Values for controlled vocabularies from ENA.
Taken from
- https://ena-docs.readthedocs.io/en/latest/submit/reads/webin-cli.html
"""
# Constants for platform definitions.
LS454 = "LS454"
ILLUMINA = "ILLUMINA"
PACBIO_SMRT = "PACBIO_SMRT"
IONTORRENT = "ION_TORRENT"
CAPILLARY = "CAPILLARY"
ONT = "OXFORD_NANOPORE"
BGISEQ = "BGISEQ"
DNBSEQ = "DNBSEQ"
#: Allowed platforms in ENA.
PLATFORMS = (LS454, ILLUMINA, PACBIO_SMRT, IONTORRENT, CAPILLARY, ONT, BGISEQ, DNBSEQ)
# Constants for platforms.
LS454_454GS = "454 GS"
LS454_454GS_240 = "454 GS 20"
LS454_454GS_FLX = "454 GS FLX"
LS454_454GS_FLX_PLUS = "454 GS FLX+"
LS454_454GS_FLX_TITANIUM = "454 GS FLX Titanium"
LS454_454GS_JUNIOR = "454 GS Junior"
ILLUMINA_HISEQX_FIVE = "HiSeq X Five"
ILLUMINA_HISEQX_TEN = "HiSeq X Ten"
ILLUMINA_GA = "Illumina Genome Analyzer"
ILLUMINA_GA2 = "Illumina Genome Analyzer II"
ILLUMINA_GA2x = "Illumina Genome Analyzer IIx"
ILLUMINA_HISCANQ = "Illumina HiScanSQ"
ILLUMINA_HISEQ_1000 = "Illumina HiSeq 1000"
ILLUMINA_HISEQ_1500 = "Illumina HiSeq 1500"
ILLUMINA_HISEQ_2000 = "Illumina HiSeq 2000"
ILLUMINA_HISEQ_2500 = "Illumina HiSeq 2500"
ILLUMINA_HISEQ_3000 = "Illumina HiSeq 3000"
ILLUMINA_HISEQ_4000 = "Illumina HiSeq 4000"
ILLUMINA_ISEQ_100 = "Illumina iSeq 100"
ILLUMINA_MISEQ = "Illumina MiSeq"
ILLUMINA_MINISEQ = "Illumina MiniSeq"
ILLUMINA_NOVASEQ_6000 = "Illumina NovaSeq 6000"
ILLUMINA_NETSEQ_500 = "NextSeq 500"
ILLUMINA_NETSEQ_550 = "NextSeq 550"
PACBIO_RS = "PacBio RS"
PACBIO_RS2 = "PacBio RS II"
PACBIO_SEQEL = "Sequel"
IONTORRENT_PGM = "Ion Torrent PGM"
IONTORRENT_PROTON = "Ion Torrent Proton"
IONTORRENT_S5 = "Ion Torrent S5"
IONTORRENT_S5XL = "Ion Torrent S5 XL"
ABI_AB3730XL = "AB 3730xL Genetic Analyzer"
ABI_AB3730 = "AB 3730 Genetic Analyzer"
ABI_AB3500XL = "AB 3500xL Genetic Analyzer"
ABI_AB3500 = "AB 3500 Genetic Analyzer"
ABI_AB3130XL = "AB 3130xL Genetic Analyzer"
ABI_AB3130 = "AB 3130 Genetic Analyzer"
ABI_AB310 = "AB 310 Genetic Analyzer"
ONT_MINION = "MinION"
ONT_GRIDION = "GridION"
ONT_PROMETHION = "PromethION"
BGI_BGISEQ500 = "BGISEQ-500"
DNB_T7 = "DNBSEQ-T7"
DNB_G400 = "DNBSEQ-G400"
DNB_G50 = "DNBSEQ-G50"
DNB_G400_FAST = "DNBSEQ-G400 FAST"
UNSPECIFIED = "unspecified"
#: Allowed values for instruments in ENA records.
INSTRUMENTS = (
LS454_454GS,
LS454_454GS_240,
LS454_454GS_FLX,
LS454_454GS_FLX_PLUS,
LS454_454GS_FLX_TITANIUM,
LS454_454GS_JUNIOR,
ILLUMINA_HISEQX_FIVE,
ILLUMINA_HISEQX_TEN,
ILLUMINA_GA,
ILLUMINA_GA2,
ILLUMINA_GA2x,
ILLUMINA_HISCANQ,
ILLUMINA_HISEQ_1000,
ILLUMINA_HISEQ_1500,
ILLUMINA_HISEQ_2000,
ILLUMINA_HISEQ_2500,
ILLUMINA_HISEQ_3000,
ILLUMINA_HISEQ_4000,
ILLUMINA_ISEQ_100,
ILLUMINA_MISEQ,
ILLUMINA_MINISEQ,
ILLUMINA_NOVASEQ_6000,
ILLUMINA_NETSEQ_500,
ILLUMINA_NETSEQ_550,
PACBIO_RS,
PACBIO_RS2,
PACBIO_SEQEL,
IONTORRENT_PGM,
IONTORRENT_PROTON,
IONTORRENT_S5,
IONTORRENT_S5XL,
ABI_AB3730XL,
ABI_AB3730,
ABI_AB3500XL,
ABI_AB3500,
ABI_AB3130XL,
ABI_AB3130,
ABI_AB310,
ONT_MINION,
ONT_GRIDION,
ONT_PROMETHION,
BGI_BGISEQ500,
DNB_T7,
DNB_G400,
DNB_G50,
DNB_G400_FAST,
UNSPECIFIED,
)
# Constants for library selection.
LIBSEL_RANDOM = "RANDOM"
LIBSEL_PCR = "PCR"
LIBSEL_RANDOM_PCR = "RANDOM PCR"
LIBSEL_RT_PCR = "RT-PCR"
LIBSEL_HMPR = "HMPR"
LIBSEL_MF = "MF"
LIBSEL_REPEAT_FRACTIONATION = "repeat fractionation"
LIBSEL_SIZE_FRACTIONATION = "size fractionation"
LIBSEL_MSLL = "MSLL"
LIBSEL_CDNA = "cDNA"
LIBSEL_CDNA_RANDOM_PRIMING = "cDNA_randomPriming"
LIBSEL_CDNA_OLIGO_DT = "cDNA_oligo_dT"
LIBSEL_POLYA = "PolyA"
LIBSEL_OLIGO_DT = "Oligo-dT"
LIBSEL_INVERSE_RNA = "Inverse rRNA"
LIBSEL_INVERSE_RNA_SELECTION = "Inverse rRNA selection"
LIBSEL_CHIP = "ChIP"
LIBSEL_CHIP_SEQ = "ChIP-Seq"
LIBSEL_MNASE = "MNase"
LIBSEL_DNASE = "DNase"
LIBSEL_HYBRID_SELECTION = "Hybrid Selection"
LIBSEL_REDUCED_REPRESENTATION = "Reduced Representation"
LIBSEL_RESTRICTION_DIGEST = "Restriction Digest"
LIBSEL_5HETYHLCYTITINE_ANTIBODY = "5-methylcytidine antibody"
LIBSEL_MBD2_PROTEIN_METHYL_CPG_BINDING_DOMAIN = "MBD2 protein methyl-CpG binding domain"
LIBSEL_CAGE = "CAGE"
LIBSEL_RACE = "RACE"
LIBSEL_MDA = "MDA"
LIBSEL_PADLOCK_PROBES_CPATURE_METHOD = "padlock probes capture method"
LIBSEL_OTHER = "other"
LIBSEL_UNSPECIFIED = "unspecified"
#: Allowed library selection strategies for ENA records.
LIBRARY_SELECTIONS = (
LIBSEL_RANDOM,
LIBSEL_PCR,
LIBSEL_RANDOM_PCR,
LIBSEL_RT_PCR,
LIBSEL_HMPR,
LIBSEL_MF,
LIBSEL_REPEAT_FRACTIONATION,
LIBSEL_SIZE_FRACTIONATION,
LIBSEL_MSLL,
LIBSEL_CDNA,
LIBSEL_CDNA_RANDOM_PRIMING,
LIBSEL_CDNA_OLIGO_DT,
LIBSEL_POLYA,
LIBSEL_OLIGO_DT,
LIBSEL_INVERSE_RNA,
LIBSEL_INVERSE_RNA_SELECTION,
LIBSEL_CHIP,
LIBSEL_CHIP_SEQ,
LIBSEL_MNASE,
LIBSEL_DNASE,
LIBSEL_HYBRID_SELECTION,
LIBSEL_REDUCED_REPRESENTATION,
LIBSEL_RESTRICTION_DIGEST,
LIBSEL_5HETYHLCYTITINE_ANTIBODY,
LIBSEL_MBD2_PROTEIN_METHYL_CPG_BINDING_DOMAIN,
LIBSEL_CAGE,
LIBSEL_RACE,
LIBSEL_MDA,
LIBSEL_PADLOCK_PROBES_CPATURE_METHOD,
LIBSEL_OTHER,
LIBSEL_UNSPECIFIED,
)
# Constants for library sources.
LIBSRC_GENOMIC = "GENOMIC"
LIBSRC_GENOMIC_SC = "GENOMIC SINGLE CELL"
LIBSRC_TRANSCRIPTOMIC = "TRANSCRIPTOMIC"
LIBSRC_TRANSCRIPTOMIC_SC = "TRANSCRIPTOMIC SINGLE CELL"
LIBSRC_METAGENOMIC = "METAGENOMIC"
LIBSRC_METATRANSCRIPTOMIC = "METATRANSCRIPTOMIC"
LIBSRC_SYNTHETIC = "SYNTHETIC"
LIBSRC_VIRAL_RNA = "VIRAL RNA"
LIBSRC_OTHER = "OTHER"
#: Allowed library sources for ENA records.
LIBRARY_SOURCES = (
LIBSRC_GENOMIC,
LIBSRC_GENOMIC_SC,
LIBSRC_TRANSCRIPTOMIC,
LIBSRC_TRANSCRIPTOMIC_SC,
LIBSRC_METAGENOMIC,
LIBSRC_METATRANSCRIPTOMIC,
LIBSRC_SYNTHETIC,
LIBSRC_VIRAL_RNA,
LIBSRC_OTHER,
)
# Constants for library strategies.
LIBSTR_WGS = "WGS"
LIBSTR_WGA = "WGA"
LIBSTR_WXS = "WXS"
LIBSTR_RNA_SEQ = "RNA-Seq"
LIBSTR_SSRNA_SEQ = "ssRNA-seq"
LIBSTR_MIRNA_SEQ = "miRNA-Seq"
LIBSTR_NCRNA_SEQ = "ncRNA-Seq"
LIBSTR_FL_CDNA = "FL-cDNA"
LIBSTR_EST = "EST"
LIBSTR_HIC = "Hi-C"
LIBSTR_ATAC_SEQ = "ATAC-seq"
LIBSTR_WCS = "WCS"
LIBSTR_RAD_SEQ = "RAD-Seq"
LIBSTR_CLONE = "CLONE"
LIBSTR_POOLCLONE = "POOLCLONE"
LIBSTR_AMPLICON = "AMPLICON"
LIBSTR_CLONEEND = "CLONEEND"
LIBSTR_FINISHING = "FINISHING"
LIBSTR_CHIP_SEQ = "ChIP-Seq"
LIBSTR_MNASE_EQ = "MNase-Seq"
LIBSTR_DNASE_HYPERSENSITIVITY = "DNase-Hypersensitivity"
LIBSTR_BISULFITE_SEQ = "Bisulfite-Seq"
LIBSTR_CTS = "CTS"
LIBSTR_MRE_SEQ = "MRE-Seq"
LIBSTR_MEDIP_SEQ = "MeDIP-Seq"
LIBSTR_MBD_SEQ = "MBD-Seq"
LIBSTR_TN_SEQ = "Tn-Seq"
LIBSTR_VALIDATION = "VALIDATION"
LIBSTR_FAIRE_SEQ = "FAIRE-seq"
LIBSTR_SELEX = "SELEX"
LIBSTR_RIP_SEQ = "RIP-Seq"
LIBSTR_CHIA_PET = "ChIA-PET"
LIBSTR_SYNTHEETIC_LONG_READ = "Synthetic-Long-Read"
LIBSTR_TARGETED_CAPTURE = "Targeted-Capture"
LIBSTR_TETHERED_CHROMATIN_CONFORMATION_CAPTURE = "Tethered Chromatin Conformation Capture"
LIBSTR_OTHER = "OTHER"
#: Allowed library strategies for ENA records.
LIBRARY_STRATEGIES = (
LIBSTR_WGS,
LIBSTR_WGA,
LIBSTR_WXS,
LIBSTR_RNA_SEQ,
LIBSTR_SSRNA_SEQ,
LIBSTR_MIRNA_SEQ,
LIBSTR_NCRNA_SEQ,
LIBSTR_FL_CDNA,
LIBSTR_EST,
LIBSTR_HIC,
LIBSTR_ATAC_SEQ,
LIBSTR_WCS,
LIBSTR_RAD_SEQ,
LIBSTR_CLONE,
LIBSTR_POOLCLONE,
LIBSTR_AMPLICON,
LIBSTR_CLONEEND,
LIBSTR_FINISHING,
LIBSTR_CHIP_SEQ,
LIBSTR_MNASE_EQ,
LIBSTR_DNASE_HYPERSENSITIVITY,
LIBSTR_BISULFITE_SEQ,
LIBSTR_CTS,
LIBSTR_MRE_SEQ,
LIBSTR_MEDIP_SEQ,
LIBSTR_MBD_SEQ,
LIBSTR_TN_SEQ,
LIBSTR_VALIDATION,
LIBSTR_FAIRE_SEQ,
LIBSTR_SELEX,
LIBSTR_RIP_SEQ,
LIBSTR_CHIA_PET,
LIBSTR_SYNTHEETIC_LONG_READ,
LIBSTR_TARGETED_CAPTURE,
LIBSTR_TETHERED_CHROMATIN_CONFORMATION_CAPTURE,
LIBSTR_OTHER,
)
| """Values for controlled vocabularies from ENA.
Taken from
- https://ena-docs.readthedocs.io/en/latest/submit/reads/webin-cli.html
"""
ls454 = 'LS454'
illumina = 'ILLUMINA'
pacbio_smrt = 'PACBIO_SMRT'
iontorrent = 'ION_TORRENT'
capillary = 'CAPILLARY'
ont = 'OXFORD_NANOPORE'
bgiseq = 'BGISEQ'
dnbseq = 'DNBSEQ'
platforms = (LS454, ILLUMINA, PACBIO_SMRT, IONTORRENT, CAPILLARY, ONT, BGISEQ, DNBSEQ)
ls454_454_gs = '454 GS'
ls454_454_gs_240 = '454 GS 20'
ls454_454_gs_flx = '454 GS FLX'
ls454_454_gs_flx_plus = '454 GS FLX+'
ls454_454_gs_flx_titanium = '454 GS FLX Titanium'
ls454_454_gs_junior = '454 GS Junior'
illumina_hiseqx_five = 'HiSeq X Five'
illumina_hiseqx_ten = 'HiSeq X Ten'
illumina_ga = 'Illumina Genome Analyzer'
illumina_ga2 = 'Illumina Genome Analyzer II'
illumina_ga2x = 'Illumina Genome Analyzer IIx'
illumina_hiscanq = 'Illumina HiScanSQ'
illumina_hiseq_1000 = 'Illumina HiSeq 1000'
illumina_hiseq_1500 = 'Illumina HiSeq 1500'
illumina_hiseq_2000 = 'Illumina HiSeq 2000'
illumina_hiseq_2500 = 'Illumina HiSeq 2500'
illumina_hiseq_3000 = 'Illumina HiSeq 3000'
illumina_hiseq_4000 = 'Illumina HiSeq 4000'
illumina_iseq_100 = 'Illumina iSeq 100'
illumina_miseq = 'Illumina MiSeq'
illumina_miniseq = 'Illumina MiniSeq'
illumina_novaseq_6000 = 'Illumina NovaSeq 6000'
illumina_netseq_500 = 'NextSeq 500'
illumina_netseq_550 = 'NextSeq 550'
pacbio_rs = 'PacBio RS'
pacbio_rs2 = 'PacBio RS II'
pacbio_seqel = 'Sequel'
iontorrent_pgm = 'Ion Torrent PGM'
iontorrent_proton = 'Ion Torrent Proton'
iontorrent_s5 = 'Ion Torrent S5'
iontorrent_s5_xl = 'Ion Torrent S5 XL'
abi_ab3730_xl = 'AB 3730xL Genetic Analyzer'
abi_ab3730 = 'AB 3730 Genetic Analyzer'
abi_ab3500_xl = 'AB 3500xL Genetic Analyzer'
abi_ab3500 = 'AB 3500 Genetic Analyzer'
abi_ab3130_xl = 'AB 3130xL Genetic Analyzer'
abi_ab3130 = 'AB 3130 Genetic Analyzer'
abi_ab310 = 'AB 310 Genetic Analyzer'
ont_minion = 'MinION'
ont_gridion = 'GridION'
ont_promethion = 'PromethION'
bgi_bgiseq500 = 'BGISEQ-500'
dnb_t7 = 'DNBSEQ-T7'
dnb_g400 = 'DNBSEQ-G400'
dnb_g50 = 'DNBSEQ-G50'
dnb_g400_fast = 'DNBSEQ-G400 FAST'
unspecified = 'unspecified'
instruments = (LS454_454GS, LS454_454GS_240, LS454_454GS_FLX, LS454_454GS_FLX_PLUS, LS454_454GS_FLX_TITANIUM, LS454_454GS_JUNIOR, ILLUMINA_HISEQX_FIVE, ILLUMINA_HISEQX_TEN, ILLUMINA_GA, ILLUMINA_GA2, ILLUMINA_GA2x, ILLUMINA_HISCANQ, ILLUMINA_HISEQ_1000, ILLUMINA_HISEQ_1500, ILLUMINA_HISEQ_2000, ILLUMINA_HISEQ_2500, ILLUMINA_HISEQ_3000, ILLUMINA_HISEQ_4000, ILLUMINA_ISEQ_100, ILLUMINA_MISEQ, ILLUMINA_MINISEQ, ILLUMINA_NOVASEQ_6000, ILLUMINA_NETSEQ_500, ILLUMINA_NETSEQ_550, PACBIO_RS, PACBIO_RS2, PACBIO_SEQEL, IONTORRENT_PGM, IONTORRENT_PROTON, IONTORRENT_S5, IONTORRENT_S5XL, ABI_AB3730XL, ABI_AB3730, ABI_AB3500XL, ABI_AB3500, ABI_AB3130XL, ABI_AB3130, ABI_AB310, ONT_MINION, ONT_GRIDION, ONT_PROMETHION, BGI_BGISEQ500, DNB_T7, DNB_G400, DNB_G50, DNB_G400_FAST, UNSPECIFIED)
libsel_random = 'RANDOM'
libsel_pcr = 'PCR'
libsel_random_pcr = 'RANDOM PCR'
libsel_rt_pcr = 'RT-PCR'
libsel_hmpr = 'HMPR'
libsel_mf = 'MF'
libsel_repeat_fractionation = 'repeat fractionation'
libsel_size_fractionation = 'size fractionation'
libsel_msll = 'MSLL'
libsel_cdna = 'cDNA'
libsel_cdna_random_priming = 'cDNA_randomPriming'
libsel_cdna_oligo_dt = 'cDNA_oligo_dT'
libsel_polya = 'PolyA'
libsel_oligo_dt = 'Oligo-dT'
libsel_inverse_rna = 'Inverse rRNA'
libsel_inverse_rna_selection = 'Inverse rRNA selection'
libsel_chip = 'ChIP'
libsel_chip_seq = 'ChIP-Seq'
libsel_mnase = 'MNase'
libsel_dnase = 'DNase'
libsel_hybrid_selection = 'Hybrid Selection'
libsel_reduced_representation = 'Reduced Representation'
libsel_restriction_digest = 'Restriction Digest'
libsel_5_hetyhlcytitine_antibody = '5-methylcytidine antibody'
libsel_mbd2_protein_methyl_cpg_binding_domain = 'MBD2 protein methyl-CpG binding domain'
libsel_cage = 'CAGE'
libsel_race = 'RACE'
libsel_mda = 'MDA'
libsel_padlock_probes_cpature_method = 'padlock probes capture method'
libsel_other = 'other'
libsel_unspecified = 'unspecified'
library_selections = (LIBSEL_RANDOM, LIBSEL_PCR, LIBSEL_RANDOM_PCR, LIBSEL_RT_PCR, LIBSEL_HMPR, LIBSEL_MF, LIBSEL_REPEAT_FRACTIONATION, LIBSEL_SIZE_FRACTIONATION, LIBSEL_MSLL, LIBSEL_CDNA, LIBSEL_CDNA_RANDOM_PRIMING, LIBSEL_CDNA_OLIGO_DT, LIBSEL_POLYA, LIBSEL_OLIGO_DT, LIBSEL_INVERSE_RNA, LIBSEL_INVERSE_RNA_SELECTION, LIBSEL_CHIP, LIBSEL_CHIP_SEQ, LIBSEL_MNASE, LIBSEL_DNASE, LIBSEL_HYBRID_SELECTION, LIBSEL_REDUCED_REPRESENTATION, LIBSEL_RESTRICTION_DIGEST, LIBSEL_5HETYHLCYTITINE_ANTIBODY, LIBSEL_MBD2_PROTEIN_METHYL_CPG_BINDING_DOMAIN, LIBSEL_CAGE, LIBSEL_RACE, LIBSEL_MDA, LIBSEL_PADLOCK_PROBES_CPATURE_METHOD, LIBSEL_OTHER, LIBSEL_UNSPECIFIED)
libsrc_genomic = 'GENOMIC'
libsrc_genomic_sc = 'GENOMIC SINGLE CELL'
libsrc_transcriptomic = 'TRANSCRIPTOMIC'
libsrc_transcriptomic_sc = 'TRANSCRIPTOMIC SINGLE CELL'
libsrc_metagenomic = 'METAGENOMIC'
libsrc_metatranscriptomic = 'METATRANSCRIPTOMIC'
libsrc_synthetic = 'SYNTHETIC'
libsrc_viral_rna = 'VIRAL RNA'
libsrc_other = 'OTHER'
library_sources = (LIBSRC_GENOMIC, LIBSRC_GENOMIC_SC, LIBSRC_TRANSCRIPTOMIC, LIBSRC_TRANSCRIPTOMIC_SC, LIBSRC_METAGENOMIC, LIBSRC_METATRANSCRIPTOMIC, LIBSRC_SYNTHETIC, LIBSRC_VIRAL_RNA, LIBSRC_OTHER)
libstr_wgs = 'WGS'
libstr_wga = 'WGA'
libstr_wxs = 'WXS'
libstr_rna_seq = 'RNA-Seq'
libstr_ssrna_seq = 'ssRNA-seq'
libstr_mirna_seq = 'miRNA-Seq'
libstr_ncrna_seq = 'ncRNA-Seq'
libstr_fl_cdna = 'FL-cDNA'
libstr_est = 'EST'
libstr_hic = 'Hi-C'
libstr_atac_seq = 'ATAC-seq'
libstr_wcs = 'WCS'
libstr_rad_seq = 'RAD-Seq'
libstr_clone = 'CLONE'
libstr_poolclone = 'POOLCLONE'
libstr_amplicon = 'AMPLICON'
libstr_cloneend = 'CLONEEND'
libstr_finishing = 'FINISHING'
libstr_chip_seq = 'ChIP-Seq'
libstr_mnase_eq = 'MNase-Seq'
libstr_dnase_hypersensitivity = 'DNase-Hypersensitivity'
libstr_bisulfite_seq = 'Bisulfite-Seq'
libstr_cts = 'CTS'
libstr_mre_seq = 'MRE-Seq'
libstr_medip_seq = 'MeDIP-Seq'
libstr_mbd_seq = 'MBD-Seq'
libstr_tn_seq = 'Tn-Seq'
libstr_validation = 'VALIDATION'
libstr_faire_seq = 'FAIRE-seq'
libstr_selex = 'SELEX'
libstr_rip_seq = 'RIP-Seq'
libstr_chia_pet = 'ChIA-PET'
libstr_syntheetic_long_read = 'Synthetic-Long-Read'
libstr_targeted_capture = 'Targeted-Capture'
libstr_tethered_chromatin_conformation_capture = 'Tethered Chromatin Conformation Capture'
libstr_other = 'OTHER'
library_strategies = (LIBSTR_WGS, LIBSTR_WGA, LIBSTR_WXS, LIBSTR_RNA_SEQ, LIBSTR_SSRNA_SEQ, LIBSTR_MIRNA_SEQ, LIBSTR_NCRNA_SEQ, LIBSTR_FL_CDNA, LIBSTR_EST, LIBSTR_HIC, LIBSTR_ATAC_SEQ, LIBSTR_WCS, LIBSTR_RAD_SEQ, LIBSTR_CLONE, LIBSTR_POOLCLONE, LIBSTR_AMPLICON, LIBSTR_CLONEEND, LIBSTR_FINISHING, LIBSTR_CHIP_SEQ, LIBSTR_MNASE_EQ, LIBSTR_DNASE_HYPERSENSITIVITY, LIBSTR_BISULFITE_SEQ, LIBSTR_CTS, LIBSTR_MRE_SEQ, LIBSTR_MEDIP_SEQ, LIBSTR_MBD_SEQ, LIBSTR_TN_SEQ, LIBSTR_VALIDATION, LIBSTR_FAIRE_SEQ, LIBSTR_SELEX, LIBSTR_RIP_SEQ, LIBSTR_CHIA_PET, LIBSTR_SYNTHEETIC_LONG_READ, LIBSTR_TARGETED_CAPTURE, LIBSTR_TETHERED_CHROMATIN_CONFORMATION_CAPTURE, LIBSTR_OTHER) |
"""
Copyright 2012 Numan Sachwani <numan@7Geese.com>
This file is provided to you 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.
"""
# import_string comes form Werkzeug
# http://werkzeug.pocoo.org
def import_string(import_name, silent=False):
"""Imports an object based on a string. If *silent* is True the return
value will be None if the import fails.
Simplified version of the function with same name from `Werkzeug`_.
:param import_name:
The dotted name for the object to import.
:param silent:
If True, import errors are ignored and None is returned instead.
:returns:
The imported object.
"""
import_name = str(import_name)
try:
if '.' in import_name:
module, obj = import_name.rsplit('.', 1)
return getattr(__import__(module, None, None, [obj]), obj)
else:
return __import__(import_name)
except (ImportError, AttributeError):
if not silent:
raise
| """
Copyright 2012 Numan Sachwani <numan@7Geese.com>
This file is provided to you under the Apache License,
Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
"""
def import_string(import_name, silent=False):
"""Imports an object based on a string. If *silent* is True the return
value will be None if the import fails.
Simplified version of the function with same name from `Werkzeug`_.
:param import_name:
The dotted name for the object to import.
:param silent:
If True, import errors are ignored and None is returned instead.
:returns:
The imported object.
"""
import_name = str(import_name)
try:
if '.' in import_name:
(module, obj) = import_name.rsplit('.', 1)
return getattr(__import__(module, None, None, [obj]), obj)
else:
return __import__(import_name)
except (ImportError, AttributeError):
if not silent:
raise |
def string_to_list(string,array):
x=input(string)
i=1
while x[i]!=']':
if x[i]!=',':
j=i
temp=''
while x[j]!=',':
if x[j]==']':
break
temp+=x[j]
j+=1
i=j
array.append(int(temp))
else:
i+=1
start_time=[]
end_time=[]
query_time=0
students_count=0
string_to_list('start time : ',start_time)
string_to_list('end time : ',end_time)
query_time=int(input('query time : '))
if not(1<=len(start_time)<=100):
print('start time list out of range')
exit()
elif not(1<=len(end_time)<=100):
print('end time list out of range')
exit()
elif len(start_time)!=len(end_time):
print('length of lists start and end are not the same')
exit()
elif not(1<=query_time<=1000):
print('query time out of range')
exit()
for i in range(len(start_time)):
if not(1<=start_time[i]<=1000):
print(f'start time [{i}] out of range')
exit()
elif not(1<=end_time[i]<=1000):
print(f'end time [{i}] out of range')
exit()
if start_time[i]<=end_time[i]:
temp=end_time[i]-start_time[i]
if temp>=query_time:
students_count+=1
print(students_count) | def string_to_list(string, array):
x = input(string)
i = 1
while x[i] != ']':
if x[i] != ',':
j = i
temp = ''
while x[j] != ',':
if x[j] == ']':
break
temp += x[j]
j += 1
i = j
array.append(int(temp))
else:
i += 1
start_time = []
end_time = []
query_time = 0
students_count = 0
string_to_list('start time : ', start_time)
string_to_list('end time : ', end_time)
query_time = int(input('query time : '))
if not 1 <= len(start_time) <= 100:
print('start time list out of range')
exit()
elif not 1 <= len(end_time) <= 100:
print('end time list out of range')
exit()
elif len(start_time) != len(end_time):
print('length of lists start and end are not the same')
exit()
elif not 1 <= query_time <= 1000:
print('query time out of range')
exit()
for i in range(len(start_time)):
if not 1 <= start_time[i] <= 1000:
print(f'start time [{i}] out of range')
exit()
elif not 1 <= end_time[i] <= 1000:
print(f'end time [{i}] out of range')
exit()
if start_time[i] <= end_time[i]:
temp = end_time[i] - start_time[i]
if temp >= query_time:
students_count += 1
print(students_count) |
# You are given an array (which will have a length of at least 3, but could be very large) containing integers. The array is either entirely comprised of odd integers or entirely comprised of even integers except for a single integer N. Write a method that takes the array as an argument and returns this "outlier" N.
# Examples
# find_outlier([2, 4, 6, 7]) => 7
# find_outlier([3, 7, 11, 2]) => 2
def find_outlier(integers):
l = list(filter(lambda x: x%2==0, integers))
return list(filter(lambda x: x%2, integers))[0] if len(l) > 1 else l[0]
| def find_outlier(integers):
l = list(filter(lambda x: x % 2 == 0, integers))
return list(filter(lambda x: x % 2, integers))[0] if len(l) > 1 else l[0] |
"""
A student is taking a cryptography class and has found anagrams to be very useful.
Two strings are anagrams of each other if the first string's letters can be
rearranged to form the second string. In other words, both strings must
contain the same exact letters in the same exact frequency. For example,
bacdc and dcbac are anagrams, but bacdc and dcbad are not.
The student decides on an encryption scheme that involves two large strings.
The encryption is dependent on the minimum number of character deletions
required to make the two strings anagrams. Determine this number.
Given two strings, a and b, that may or may not be of the same length,
determine the minimum number of character deletions required to make
a and b anagrams. Any characters can be deleted from either of the strings.
"""
a = 'ceed'
b = 'acbeef'
total_len = len(a) + len(b)
match_counter = 0
c = list(a)
d = list(b)
if len(a) <= len(b):
for i in c:
if i in d:
match_counter += 2
d.remove(i)
else:
for i in d:
if i in c:
match_counter += 2
c.remove(i)
min_num = total_len - match_counter
print(min_num) | """
A student is taking a cryptography class and has found anagrams to be very useful.
Two strings are anagrams of each other if the first string's letters can be
rearranged to form the second string. In other words, both strings must
contain the same exact letters in the same exact frequency. For example,
bacdc and dcbac are anagrams, but bacdc and dcbad are not.
The student decides on an encryption scheme that involves two large strings.
The encryption is dependent on the minimum number of character deletions
required to make the two strings anagrams. Determine this number.
Given two strings, a and b, that may or may not be of the same length,
determine the minimum number of character deletions required to make
a and b anagrams. Any characters can be deleted from either of the strings.
"""
a = 'ceed'
b = 'acbeef'
total_len = len(a) + len(b)
match_counter = 0
c = list(a)
d = list(b)
if len(a) <= len(b):
for i in c:
if i in d:
match_counter += 2
d.remove(i)
else:
for i in d:
if i in c:
match_counter += 2
c.remove(i)
min_num = total_len - match_counter
print(min_num) |
#
# Copyright (C) [2020] Futurewei Technologies, Inc.
#
# FORCE-RISCV is 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
#
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES
# OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
# NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# BootPriority.py
#
# This file defines the BootPriority helper class.
# The boot priority class defines helper methods associated with boot priority
class BootPriority:
# Returns the appropriate boot priority based on the name and type of
# register provided along with if the register is write only
def getBootPriority(aName=None, aType=None, aWriteOnly=0):
return 1
| class Bootpriority:
def get_boot_priority(aName=None, aType=None, aWriteOnly=0):
return 1 |
#Assignment 9.4
#print('Hello World')
fname = input('Enter name: ')
if len(fname) < 1 : fname = 'mbox-short.txt'
handle = open(fname)
di = {} #create an empty dictionary
for line in handle:
line = line.rstrip()
wds = line.split()
#the second for-loop to print each word in the list
for w in wds :
#if the key is not in the dictionar the count starts with 0
##oldcount = di.get(w,0)
##print(w, 'old', oldcount)
##newcount = oldcount + 1
##di[w] = newcount
##print(w, 'new', newcount)
di[w] = di.get(w, 0) + 1
#print(w, 'new', di[w])
#workflow: retrieve/created/update counter
#if w in di:
# di[w] = di[w] + 1
#print('*Existing*') #To provide a hint of what the programmes is doing
# else:
# di[w] = 1
#print('**New**') #To provide a hint of what the programmes is doing
#print(di)
#print the Most commoncommon word programme.
#mulitiple for-loop
largest = -1
theword = None
for k, v in di.items() : # times looks for the elements in dictionary
print(k, v)
if v > largest :
largest = v
theword = k # catch/remember the word that was largest
print('Most common', theword,largest)
| fname = input('Enter name: ')
if len(fname) < 1:
fname = 'mbox-short.txt'
handle = open(fname)
di = {}
for line in handle:
line = line.rstrip()
wds = line.split()
for w in wds:
di[w] = di.get(w, 0) + 1
largest = -1
theword = None
for (k, v) in di.items():
print(k, v)
if v > largest:
largest = v
theword = k
print('Most common', theword, largest) |
class TypeRef:
'''Represents temporary type references by an integer; to be resolved
to actual types later
'''
def __init__(self, type_ref: int):
self.type_ref = type_ref
def __hash__(self):
return hash(self.type_ref)
def __eq__(self, other):
return isinstance(other, TypeRef) and self.type_ref == other.type_ref
def __repr__(self):
return '{}({})'.format(self.__class__.__name__, self.type_ref)
| class Typeref:
"""Represents temporary type references by an integer; to be resolved
to actual types later
"""
def __init__(self, type_ref: int):
self.type_ref = type_ref
def __hash__(self):
return hash(self.type_ref)
def __eq__(self, other):
return isinstance(other, TypeRef) and self.type_ref == other.type_ref
def __repr__(self):
return '{}({})'.format(self.__class__.__name__, self.type_ref) |
#!/usr/bin/env python
# encoding: utf-8
def run(whatweb, pluginname):
whatweb.recog_from_file(pluginname, "doc/page/login.asp", "Hikvision")
| def run(whatweb, pluginname):
whatweb.recog_from_file(pluginname, 'doc/page/login.asp', 'Hikvision') |
"""In this module we provide a list paths, urls and other usefull settings."""
GITHUB_URL = "https://github.com/MarcSkovMadsen/awesome-panel/"
GITHUB_BLOB_MASTER_URL = "https://github.com/MarcSkovMadsen/awesome-panel/blob/master/"
GITHUB_RAW_URL = "https://raw.githubusercontent.com/MarcSkovMadsen/awesome-panel/master/"
GITHUB_THUMBNAILS_URL = (
"https://github.com/MarcSkovMadsen/awesome-panel/blob/master/assets/images/thumbnails/"
)
THUMBNAILS_ROOT = "assets/images/thumbnails/"
| """In this module we provide a list paths, urls and other usefull settings."""
github_url = 'https://github.com/MarcSkovMadsen/awesome-panel/'
github_blob_master_url = 'https://github.com/MarcSkovMadsen/awesome-panel/blob/master/'
github_raw_url = 'https://raw.githubusercontent.com/MarcSkovMadsen/awesome-panel/master/'
github_thumbnails_url = 'https://github.com/MarcSkovMadsen/awesome-panel/blob/master/assets/images/thumbnails/'
thumbnails_root = 'assets/images/thumbnails/' |
wt1_10_10 = {'192.168.122.110': [5.5754, 5.5952, 9.2422, 8.5338, 9.0058, 8.4025, 8.7557, 8.4405, 8.1397, 8.1318, 8.0657, 7.8501, 8.1701, 8.0757, 7.8899, 7.7329, 7.6153, 7.9967, 7.9363, 7.838, 8.7936, 8.6351, 8.5151, 8.6381, 8.7262, 8.816, 8.8984, 8.7799, 8.8584, 8.9543, 8.8833, 8.794, 8.6935, 8.735, 8.635, 8.5429, 8.6163, 8.5476, 8.6108, 8.5577, 8.4882, 8.4211, 8.3623, 8.3054, 8.2413, 8.4337, 8.4888, 8.5373, 8.4713, 8.5225, 8.4593, 8.4011, 8.3452, 8.3259, 8.2905, 8.2449, 8.1937, 8.1445, 8.116, 8.1567, 8.1104, 8.0715, 8.115, 8.0737, 8.0345, 8.0136, 8.0019, 8.0049, 8.1192, 8.0796, 8.0452, 8.006, 7.981, 7.9482, 7.9175, 7.8876, 7.8733, 7.9073, 7.8801, 7.9114, 7.8796, 7.8656, 7.8337, 7.8213, 7.792, 7.8309, 7.8041, 7.8059, 7.7952, 7.7718, 7.8096, 7.7388, 7.7266, 7.7471, 7.7399, 7.7186, 7.7135, 7.6918, 7.7212, 7.7565, 7.7335, 7.711, 7.6962, 7.6741, 7.6596, 7.6417, 7.6303, 7.6106, 7.5902, 7.6216, 7.6199, 7.6491, 7.6785, 7.6596, 7.6464, 7.6277, 7.6561, 7.6506, 7.6396, 7.6222, 7.7245, 7.7135, 7.6971, 7.6861, 7.7189, 7.7939, 7.7734, 7.7552, 7.7516, 7.7743, 7.7593, 7.7427, 7.7249, 7.708, 7.6916, 7.6809, 7.703, 7.6865, 7.6734, 7.6572, 7.6484, 7.6386, 7.6612, 7.6835, 7.6686, 7.6592, 7.681, 7.6753, 7.7021, 7.6891, 7.6742, 7.665, 7.6538, 7.6739, 7.7405, 7.7304, 7.7693, 7.759, 7.7492, 7.7403, 7.7253, 7.7102, 7.6962, 7.7249, 7.7124, 7.7071, 7.7291, 7.7147, 7.7307, 7.717, 7.7031, 7.7357, 7.7238, 7.7431, 7.7364, 7.7563, 7.7441, 7.7358, 7.7272, 7.7473, 7.7372, 7.7443, 7.8068, 7.7982, 7.7906, 7.805, 7.7939, 7.7818, 7.8014, 7.7899, 7.7779, 7.7671, 7.7545, 7.9091, 7.8963, 7.8913, 7.8823, 7.8953, 7.9115, 7.9017, 7.9166, 7.9316, 7.9229, 7.9104, 7.9033, 7.8949, 7.8879, 7.9028, 7.8904, 7.8854, 7.8754, 7.8648, 7.8551, 7.8433, 7.8322, 7.8214, 7.8104, 7.8007, 7.7927, 7.7815, 7.7701, 7.783, 7.7734, 7.8037, 7.795, 7.7885, 7.7826, 7.7774, 7.7719, 7.7622, 7.7544, 7.7451, 7.7379, 7.7314, 7.7236, 7.7175, 7.7073, 7.7213, 7.7111, 7.7026, 7.6996, 7.6898, 7.7013, 7.6954, 7.7105, 7.7015, 7.692, 7.708, 7.7, 7.7133, 7.7291, 7.7193, 7.7098, 7.7936, 7.8109, 7.801, 7.7922, 7.8248, 7.8174, 7.809, 7.8018, 7.7969, 7.7876, 7.779, 7.7741, 7.7861, 7.7831, 7.8363, 7.8107, 7.807, 7.7985, 7.796, 7.7884, 7.7791, 7.7699, 7.7609, 7.7524, 7.7279, 7.7216, 7.7341, 7.7316, 7.727, 7.7204, 7.7139, 7.7255, 7.7206, 7.712, 7.7082, 7.7032, 7.6948, 7.7055, 7.6996, 7.6913, 7.6832, 7.6771, 7.6771, 7.687, 7.6898, 7.6686, 7.6639, 7.6614, 7.6572, 7.6555, 7.6487, 7.6588, 7.655, 7.6524, 7.6467, 7.6392, 7.6322, 7.6254, 7.618, 7.6111, 7.6039, 7.5989, 7.6084, 7.6017, 7.5977, 7.5922, 7.585, 7.5781, 7.5713, 7.5656, 7.5759, 7.5726, 7.5822, 7.5757, 7.5783, 7.5718, 7.5816, 7.5745, 7.5838, 7.5775, 7.5755, 7.5815, 7.5755, 7.5693, 7.564, 7.5588, 7.5405, 7.5338, 7.529, 7.5223, 7.5167, 7.526, 7.5195, 7.5056, 7.501, 7.4947, 7.504, 7.5005, 7.4983, 7.4962, 7.5053, 7.5001, 7.4945, 7.4886, 7.4852, 7.495, 7.4917, 7.4858, 7.4924, 7.5016, 7.4958, 7.4925, 7.5451, 7.5396, 7.5365, 7.5315, 7.5263, 7.5266, 7.5212, 7.5177, 7.5142, 7.5084, 7.5043, 7.4986, 7.526, 7.5214, 7.5294, 7.5234, 7.5207, 7.5166, 7.5125, 7.508, 7.5297, 7.5238, 7.521, 7.5162, 7.5259, 7.5214, 7.5166, 7.5263, 7.5209, 7.5181, 7.5129, 7.5073, 7.5034, 7.5056, 7.5024, 7.4975, 7.5072, 7.5537, 7.5498, 7.559, 7.5539, 7.5503, 7.5465, 7.5411, 7.5382, 7.5329, 7.5277, 7.5244, 7.519, 7.5167, 7.5244, 7.5335, 7.5661, 7.5608, 7.5701, 7.565, 7.5598, 7.5548, 7.5499, 7.5468, 7.5543, 7.5405, 7.5418, 7.5497, 7.5588, 7.556, 7.5408, 7.5372, 7.533, 7.5289, 7.5272, 7.522, 7.5192, 7.5044, 7.5113, 7.4982, 7.4835, 7.4797, 7.4871, 7.4821, 7.4794, 7.4755, 7.4705, 7.4669, 7.4621, 7.4572, 7.4548, 7.4508, 7.4483, 7.4561, 7.4521, 7.4605, 7.4562, 7.4529, 7.4485, 7.4487, 7.462, 7.4628, 7.4586, 7.4564, 7.4629, 7.4597, 7.4565, 7.4523, 7.4479, 7.4455, 7.4527, 7.4598, 7.4591, 7.4577, 7.4545, 7.451, 7.458, 7.4552, 7.4535, 7.4606, 7.4913, 7.4891, 7.4851, 7.4821, 7.4889, 7.5473, 7.5482, 7.5979, 7.5935, 7.5905, 7.5882, 7.5835, 7.5811, 7.5777, 7.5754, 7.5711, 7.5779, 7.5838, 7.5814, 7.5772, 7.5731, 7.5696, 7.5674, 7.5641, 7.5596, 7.5574, 7.5533, 7.5505, 7.5472, 7.5427, 7.5405, 7.5468, 7.5435, 7.5505, 7.5479, 7.544, 7.5502, 7.5533, 7.558, 7.5644, 7.5614, 7.5584, 7.554, 7.5503, 7.5566, 7.5522, 7.5501, 7.5458, 7.5515, 7.5473, 7.5444, 7.5401, 7.537, 7.5422, 7.5382, 7.5341, 7.5302, 7.5306, 7.5265, 7.5223, 7.5209, 7.5374, 7.5334, 7.5292, 7.5268, 7.5325, 7.5228, 7.5287, 7.5246, 7.5208, 7.5169, 7.5134, 7.5113, 7.5176, 7.5136, 7.5205, 7.5185, 7.5167, 7.5129, 7.5096, 7.5057, 7.504, 7.5019, 7.4985, 7.4949, 7.4931, 7.4834, 7.4902, 7.4881, 7.4949, 7.4917, 7.4974, 7.5012, 7.4979, 7.4945, 7.4926, 7.4808, 7.478, 7.4742, 7.4717, 7.4778, 7.4752, 7.4803, 7.4766, 7.4732, 7.4806, 7.4769, 7.4733, 7.4697, 7.4677, 7.4731, 7.4789, 7.4795, 7.4773, 7.4748, 7.4711, 7.469, 7.4654, 7.4619, 7.4598, 7.4669, 7.4649, 7.4616, 7.4674, 7.4646, 7.4538, 7.4595, 7.4562, 7.4531, 7.4497, 7.4469, 7.4458, 7.4422, 7.4468, 7.4358, 7.4337, 7.4307, 7.4285, 7.4342, 7.4322, 7.4385, 7.4351, 7.4326, 7.4306, 7.4361, 7.4338, 7.4316, 7.4289, 7.4377, 7.4343, 7.4398, 7.4445, 7.4422, 7.4388, 7.4356, 7.4339, 7.4322, 7.429, 7.4272, 7.4241, 7.4209, 7.418, 7.4157, 7.4124, 7.4091, 7.4062, 7.4031, 7.4009, 7.3981, 7.3986, 7.3959, 7.401, 7.3979, 7.4033, 7.401, 7.3993, 7.4053, 7.3954, 7.3923, 7.3936, 7.3909, 7.4051, 7.4033, 7.4003, 7.3978, 7.3946, 7.3947, 7.3914, 7.3918, 7.3989, 7.4042, 7.4026, 7.4002, 7.3994, 7.398, 7.4041, 7.4025, 7.4041, 7.4012, 7.4002, 7.3972, 7.3941, 7.394, 7.3913, 7.3895, 7.3872, 7.3859, 7.3829, 7.3913, 7.3886, 7.3942, 7.3922, 7.3979, 7.4103, 7.4074, 7.4246, 7.4325, 7.4312, 7.4356, 7.4328, 7.4309, 7.4281, 7.4285, 7.4257, 7.4232, 7.4207, 7.4277, 7.4269, 7.4315, 7.4285, 7.4259, 7.4247, 7.4239, 7.4211, 7.426, 7.4236, 7.421, 7.4259, 7.438, 7.4426, 7.4419, 7.4602, 7.4584, 7.456, 7.4532, 7.458, 7.4628, 7.467, 7.471, 7.4695, 7.4748, 7.4725, 7.4702, 7.4673, 7.4647, 7.4692, 7.4663, 7.4634, 7.4681, 7.4657, 7.4704, 7.4729, 7.4699, 7.468, 7.4589, 7.4562, 7.4537, 7.4522, 7.4575, 7.4548, 7.46, 7.4667, 7.4724, 7.4768, 7.474, 7.4717, 7.469, 7.4674, 7.4721, 7.4713, 7.4753, 7.4737, 7.4778, 7.4765, 7.4752, 7.4725, 7.4697, 7.4671, 7.4658, 7.4632, 7.4648, 7.4622, 7.4535, 7.451, 7.4494, 7.4534, 7.4579, 7.4574, 7.4548, 7.453, 7.4572, 7.4618, 7.4662, 7.4701, 7.4675, 7.4792, 7.4776, 7.4772, 7.4809, 7.4784, 7.4841, 7.4815, 7.4795, 7.4834, 7.4816, 7.4799, 7.4777, 7.4768, 7.4743, 7.4782, 7.4754, 7.4795, 7.4906, 7.4899, 7.491, 7.495, 7.4991, 7.5047, 7.5021, 7.4994, 7.5043, 7.5036, 7.5017, 7.4992, 7.4968, 7.4944, 7.4921, 7.4913, 7.4894, 7.4877, 7.4858, 7.4904, 7.4894, 7.487, 7.4845, 7.4819, 7.4805, 7.4812, 7.4788, 7.4768, 7.4753, 7.4727, 7.4704, 7.4681, 7.4655, 7.463, 7.461, 7.4586, 7.458, 7.4559, 7.4534, 7.4521, 7.4635, 7.4609, 7.4585, 7.4622, 7.4601, 7.4641, 7.4616, 7.4592, 7.4566, 7.4543, 7.4529, 7.4506, 7.4481, 7.4459, 7.4438, 7.4415, 7.4406, 7.4382, 7.4365, 7.435, 7.439, 7.437, 7.4409, 7.4639, 7.4678, 7.4735, 7.4713, 7.4701, 7.4739, 7.4715, 7.4691, 7.4675, 7.4715, 7.4696, 7.4735, 7.4711, 7.475, 7.474, 7.4664, 7.4761, 7.4799, 7.4837, 7.4814, 7.479, 7.4829, 7.4812, 7.4789, 7.4826, 7.4819, 7.4802, 7.4782, 7.476, 7.4794, 7.4772, 7.4811, 7.4911, 7.4888, 7.4867, 7.4847, 7.4773, 7.4763, 7.4743, 7.4723, 7.4706, 7.474, 7.4668, 7.4657, 7.4712, 7.469, 7.4727, 7.4714, 7.4697, 7.4743, 7.4764, 7.4742, 7.4727, 7.4765, 7.4751, 7.4729, 7.4766, 7.4831, 7.4811, 7.4794, 7.4781, 7.4757, 7.4737, 7.4714, 7.4693, 7.467, 7.4647, 7.4681, 7.4667, 7.4643, 7.462, 7.4607, 7.4641, 7.4678, 7.4656, 7.4639, 7.4674, 7.4709, 7.4744, 7.4722, 7.4702, 7.4679, 7.4751, 7.4748, 7.4734, 7.4816, 7.4794, 7.4771, 7.4772, 7.4808, 7.479, 7.4776, 7.4754, 7.4741, 7.4776, 7.4753, 7.4732, 7.4727, 7.4723, 7.47, 7.4682, 7.4672, 7.471, 7.4696, 7.4679, 7.4711, 7.472, 7.4752, 7.473, 7.472, 7.4699, 7.4753, 7.4732, 7.4769, 7.4747, 7.4736, 7.4772, 7.4825, 7.4803, 7.4791, 7.477, 7.4751, 7.473, 7.4715, 7.475, 7.4729, 7.4662, 7.4744, 7.4777, 7.4809, 7.4818, 7.4807, 7.4741, 7.4775, 7.4757, 7.4748, 7.4736, 7.4669, 7.4654, 7.4588, 7.4622, 7.4655, 7.4648, 7.4636, 7.4616, 7.4635, 7.4634, 7.4613, 7.4552, 7.4535, 7.4616, 7.4594, 7.4576, 7.4558, 7.4669, 7.4655, 7.464, 7.4707, 7.4687, 7.4667, 7.4703, 7.4693, 7.4684, 7.4695, 7.468, 7.4672, 7.4662, 7.4652, 7.4648, 7.4657, 7.4688, 7.4722, 7.4703, 7.4739, 7.473, 7.4711, 7.4987, 7.5019, 7.5051, 7.5034, 7.5014, 7.5046, 7.5041, 7.5073, 7.5061, 7.5041, 7.5099, 7.5078, 7.5057, 7.5088, 7.5086, 7.5077, 7.5057, 7.5191, 7.5178, 7.5157, 7.5147, 7.5126, 7.5109, 7.5089, 7.5072, 7.5053, 7.5046, 7.5037, 7.5017, 7.5003, 7.4983, 7.4962, 7.4942, 7.4972, 7.4961, 7.4991, 7.497, 7.5007, 7.4994, 7.4974, 7.5008, 7.5038, 7.5026, 7.5007, 7.5042, 7.5032, 7.5018, 7.4999, 7.4983, 7.4965, 7.4947, 7.4932, 7.4963, 7.495, 7.4946, 7.4977, 7.4958, 7.4938, 7.4931, 7.4981, 7.5012, 7.4993, 7.4989, 7.497, 7.4911, 7.4893, 7.5069, 7.5049, 7.5034, 7.5015, 7.5043, 7.5023, 7.5003, 7.4996, 7.4991, 7.4972, 7.4964, 7.5141, 7.517, 7.5156, 7.514, 7.5121, 7.5111, 7.5093, 7.5074, 7.5055, 7.5037, 7.5022, 7.5004, 7.4996, 7.5046, 7.503, 7.5012, 7.5056, 7.5044, 7.5026, 7.501, 7.4991, 7.4993, 7.4976, 7.492, 7.4902, 7.4889, 7.4871, 7.4857, 7.4802, 7.4805, 7.4787, 7.477, 7.4754, 7.4753, 7.4784, 7.4776, 7.4759, 7.4702, 7.4694, 7.4725, 7.4717, 7.4706, 7.4698, 7.469, 7.4673, 7.4616, 7.4603, 7.4585, 7.4568, 7.4556, 7.4538, 7.4521, 7.4503, 7.4485, 7.452, 7.4502, 7.4532, 7.4518, 7.4504, 7.4532, 7.4517, 7.4546, 7.4711, 7.4739, 7.4765, 7.4747, 7.469, 7.4718, 7.4702, 7.4684, 7.4666, 7.4695, 7.4678, 7.4711, 7.4738, 7.472, 7.4709, 7.469, 7.4693, 7.4676, 7.4667, 7.4651, 7.464, 7.4624, 7.4607, 7.4603, 7.4593, 7.4574, 7.4566, 7.4557, 7.4585, 7.4613, 7.4602, 7.455, 7.4533, 7.452, 7.4511, 7.4493, 7.4478, 7.4462, 7.4453, 7.4449, 7.4433, 7.4427, 7.4412, 7.4408, 7.4396, 7.4385, 7.4414, 7.4445, 7.4432, 7.4421, 7.4407, 7.4431, 7.4459, 7.4444, 7.4471, 7.4468, 7.4495, 7.4485, 7.4474, 7.4466, 7.447, 7.4462, 7.4447, 7.4434, 7.4423, 7.4424, 7.4407, 7.4356, 7.4339, 7.4327, 7.431, 7.4297, 7.4281, 7.4269, 7.4253, 7.4241, 7.4229, 7.4212, 7.4208, 7.4235, 7.4222, 7.4206, 7.4489, 7.4516, 7.4542, 7.4572, 7.4557, 7.4563, 7.4587, 7.4571, 7.4561, 7.455, 7.4543, 7.4572, 7.4597, 7.4582, 7.4568, 7.4596, 7.4622, 7.4608, 7.4592, 7.4621, 7.4569, 7.4561, 7.4546, 7.4532, 7.4559, 7.4543, 7.4538, 7.4573, 7.456, 7.4509, 7.4459, 7.4443, 7.4427, 7.4411, 7.4476, 7.4504, 7.4489, 7.4479, 7.4466, 7.449, 7.4441, 7.447, 7.4453, 7.4443, 7.4428, 7.4429, 7.4412, 7.44, 7.439, 7.4415, 7.4424, 7.4414, 7.4404, 7.4388, 7.4375, 7.4404, 7.4353, 7.4302, 7.4288, 7.4275, 7.4259, 7.4243, 7.4235, 7.4219, 7.4203, 7.4195, 7.418, 7.4169, 7.4157, 7.4141, 7.4126, 7.4111, 7.4101, 7.4086, 7.4071, 7.4056, 7.4042, 7.4068, 7.4052, 7.4037, 7.4064, 7.4088, 7.4079, 7.4065, 7.4049, 7.4001, 7.3987, 7.4005, 7.3991, 7.4059, 7.4046, 7.4032, 7.402, 7.4009, 7.3971, 7.3956, 7.3951, 7.394, 7.3926, 7.3952, 7.3941, 7.3927, 7.3914, 7.3979, 7.3966, 7.3954, 7.3942, 7.3929, 7.3925, 7.392, 7.3916, 7.3944, 7.3971, 7.3958, 7.3945, 7.393, 7.3925, 7.3912, 7.3903, 7.3926, 7.3914, 7.3905, 7.3946, 7.3933, 7.3959, 7.3946, 7.3932, 7.3921, 7.3907, 7.3901, 7.3895, 7.3885, 7.3872, 7.3859, 7.3844, 7.3835, 7.3822, 7.3921, 7.3946, 7.3943, 7.3929, 7.3954, 7.3979, 7.3973, 7.3999, 7.3987, 7.4005, 7.4018, 7.3986, 7.3973, 7.4002, 7.3997, 7.402, 7.401, 7.4004, 7.399, 7.3991, 7.3976, 7.3969, 7.3955, 7.3949, 7.3936, 7.3933, 7.3918, 7.3905, 7.3891, 7.385, 7.3806, 7.3791, 7.378, 7.3792, 7.3777, 7.3765, 7.375, 7.3775, 7.3761, 7.3787, 7.3779, 7.3775, 7.38, 7.3795, 7.3817, 7.3802, 7.3792, 7.3799, 7.3784, 7.381, 7.3798, 7.3789, 7.3777, 7.3765, 7.3786, 7.3778, 7.3763, 7.3748, 7.3733, 7.3742, 7.3765, 7.3752, 7.3738, 7.3724, 7.3749, 7.375, 7.3776, 7.38, 7.3759, 7.3746, 7.3908, 7.3896, 7.3892, 7.3883, 7.3907, 7.3897, 7.3885, 7.3875, 7.3869, 7.3892, 7.3879, 7.3932, 7.3955, 7.3977, 7.3963, 7.3949, 7.3948, 7.3935, 7.3923, 7.3947, 7.3942, 7.3965, 7.3985, 7.3974, 7.3995, 7.4022, 7.401, 7.4005, 7.3995, 7.3983, 7.3978, 7.3935, 7.3957, 7.3948, 7.3935, 7.3923, 7.391, 7.3897, 7.3888, 7.3876, 7.3863, 7.385, 7.3843, 7.383, 7.3816, 7.3839, 7.3826, 7.3817, 7.3805, 7.3762, 7.3752, 7.3738, 7.3724, 7.3716, 7.3703, 7.3689, 7.3676, 7.37, 7.3721, 7.3677, 7.3665, 7.3653, 7.3648, 7.3635, 7.3629, 7.3836, 7.3859, 7.3846, 7.3868, 7.3859, 7.3852, 7.3841, 7.3798, 7.3789, 7.3776, 7.3763, 7.3749, 7.3742, 7.3734, 7.3728, 7.3721, 7.3742, 7.3729, 7.375, 7.3741, 7.3729, 7.3726, 7.3725, 7.3729, 7.3765, 7.376, 7.3721, 7.3708, 7.3766, 7.3786, 7.3921, 7.3909, 7.3919, 7.3906, 7.3893, 7.3881, 7.3921, 7.3913, 7.39, 7.3887, 7.391, 7.3933, 7.3963, 7.3983, 7.3976, 7.3963, 7.3986, 7.3974, 7.3969, 7.3978, 7.397, 7.3998, 7.3992, 7.4014, 7.4035, 7.3994, 7.3982, 7.3976, 7.3963, 7.3987, 7.398, 7.4005, 7.3999, 7.3994, 7.3981, 7.399, 7.3979, 7.3969, 7.3963, 7.3985, 7.4013, 7.4, 7.4017, 7.4005, 7.4027, 7.4016, 7.4046, 7.4034, 7.4022, 7.4112, 7.4104, 7.4096, 7.4083, 7.4075, 7.4062, 7.4054, 7.4041, 7.4063, 7.4052, 7.4045, 7.4032, 7.4021, 7.404, 7.403, 7.4018, 7.4011, 7.4002, 7.3989, 7.3986, 7.4038, 7.4057, 7.4045, 7.4009, 7.3997, 7.4, 7.3994, 7.3991, 7.3982, 7.3979, 7.3945, 7.3938, 7.3927, 7.3921, 7.3915, 7.3906, 7.3906, 7.3902, 7.3897, 7.3952, 7.3973, 7.4041, 7.4062, 7.405, 7.4072, 7.4061, 7.4052, 7.4046, 7.4065, 7.4052, 7.4039, 7.4028, 7.4016, 7.4005, 7.3993, 7.4014, 7.4006, 7.4027, 7.4014, 7.4008, 7.3995, 7.3983, 7.3973, 7.3963, 7.3951, 7.3949, 7.3939, 7.3958, 7.3945, 7.3965, 7.3957, 7.3949, 7.3969, 7.3933, 7.3955, 7.3974, 7.3969, 7.3957, 7.3979, 7.3977, 7.3965, 7.3928, 7.3917, 7.4023, 7.4015, 7.4008, 7.4027, 7.4021, 7.4015, 7.4008, 7.3999, 7.3988, 7.3977, 7.3997, 7.399, 7.3979, 7.3973, 7.3971, 7.396, 7.3977, 7.3965, 7.3987, 7.3976, 7.3965, 7.3953, 7.3946, 7.3938, 7.3957, 7.3949, 7.3943, 7.3931, 7.392, 7.3908, 7.3896, 7.3891, 7.3881, 7.3869, 7.3865, 7.3827, 7.382, 7.3827, 7.3847, 7.3841, 7.3956, 7.3945, 7.3943, 7.3963, 7.3952, 7.394, 7.3928, 7.3916, 7.3906, 7.3896, 7.3889, 7.3877, 7.3895, 7.3884, 7.3905, 7.3894, 7.3883, 7.3872, 7.3891, 7.388, 7.39, 7.3893, 7.3886, 7.3907, 7.3896, 7.3885, 7.3874, 7.3868, 7.3887, 7.3878, 7.3866, 7.3853, 7.3844, 7.3808, 7.3797, 7.3788, 7.378, 7.3769, 7.3823, 7.3815, 7.3807, 7.38, 7.3789, 7.3781, 7.38, 7.3797, 7.3791, 7.378, 7.3808, 7.3797, 7.379, 7.3784, 7.3773, 7.3744, 7.3764, 7.3758, 7.3753, 7.3786, 7.3776, 7.3764, 7.3785, 7.3775, 7.3795, 7.3785, 7.3806, 7.3796, 7.3787, 7.3777, 7.3769, 7.3794, 7.3813, 7.3804, 7.3792, 7.3781, 7.3779, 7.3775, 7.3765, 7.3755, 7.3748, 7.3743, 7.3732, 7.3721, 7.3715, 7.3704, 7.3693, 7.3682, 7.3671, 7.3665, 7.3683, 7.3672, 7.3661, 7.3681, 7.367, 7.3689, 7.3678, 7.3667, 7.3685, 7.3679, 7.3671, 7.3659, 7.3801, 7.3791, 7.3784, 7.3773, 7.3791, 7.387, 7.3865, 7.3861, 7.3855, 7.3874, 7.3892, 7.3881, 7.3871, 7.389, 7.388, 7.387, 7.3889, 7.3883, 7.3877, 7.3872, 7.3905, 7.3927, 7.3916, 7.3909, 7.3898, 7.3889, 7.3881, 7.3873, 7.3897, 7.3888, 7.3882, 7.3877, 7.3871, 7.389, 7.3879, 7.3897, 7.3892, 7.3883, 7.3877, 7.3866, 7.3885, 7.3875, 7.3864, 7.3856, 7.3847, 7.3837, 7.3862, 7.3879, 7.387, 7.3858, 7.385, 7.3839, 7.3828, 7.3817, 7.3806, 7.3798, 7.379, 7.3782, 7.3771, 7.376, 7.3749, 7.3738, 7.3732, 7.3724, 7.3727, 7.3722, 7.3711, 7.3701, 7.369, 7.3708, 7.3703, 7.3723, 7.3713, 7.3702, 7.3691, 7.368, 7.3679, 7.3676, 7.3693, 7.3683, 7.3674, 7.3668, 7.3678, 7.3673, 7.369, 7.3679, 7.3673, 7.3663, 7.3652, 7.3646, 7.3636, 7.3633, 7.3629, 7.3619, 7.3612, 7.3602, 7.3592, 7.3587, 7.3608, 7.3599, 7.3589, 7.3579, 7.36, 7.3653, 7.3649, 7.364, 7.3629, 7.362, 7.3614, 7.3604, 7.3622, 7.3615, 7.3607, 7.36, 7.359, 7.3583, 7.3574, 7.3569, 7.3559, 7.3549, 7.3566, 7.3556, 7.3546, 7.3536, 7.3502, 7.3492, 7.3496, 7.3494, 7.3493, 7.3483, 7.35, 7.3489, 7.3488, 7.3479, 7.3474, 7.3467, 7.3485, 7.3474, 7.3464, 7.3457, 7.345, 7.3483, 7.3474, 7.3491, 7.3493, 7.3483, 7.3508, 7.3504, 7.3499, 7.3516, 7.3506, 7.3496, 7.3551, 7.3546, 7.3536, 7.3526, 7.352, 7.3513, 7.3506, 7.3535, 7.3526, 7.3569, 7.3828, 7.3821, 7.3812, 7.3805, 7.3797, 7.3813, 7.378, 7.3769, 7.3759, 7.3748, 7.3738, 7.373, 7.3723, 7.3714, 7.371, 7.3714, 7.3731, 7.3748, 7.3766, 7.3756, 7.3746, 7.3762, 7.3779, 7.3771, 7.3761, 7.3752, 7.3849, 7.384, 7.383, 7.382, 7.3811, 7.3828, 7.3817, 7.3807, 7.3805, 7.3799, 7.3819, 7.3834, 7.3824, 7.3927, 7.3917, 7.3914, 7.3932, 7.3923, 7.3941, 7.3932, 7.3928, 7.392, 7.3919, 7.3914, 7.3904, 7.3894, 7.3884, 7.3875, 7.3921, 7.3919, 7.3909, 7.3899, 7.3922, 7.3915, 7.3938, 7.393, 7.3925, 7.3915, 7.3932, 7.3949, 7.395, 7.3939, 7.3956, 7.395, 7.395, 7.3941, 7.3939, 7.3946, 7.3935, 7.3956, 7.3949, 7.3949, 7.394, 7.3932, 7.3925, 7.3917, 7.391, 7.3902, 7.3892, 7.389, 7.3907, 7.3899, 7.3998, 7.399, 7.3983, 7.3973, 7.3964, 7.3955, 7.3955, 7.3949, 7.3939, 7.393, 7.3928, 7.3921, 7.3938, 7.3929, 7.3945, 7.3942, 7.3944, 7.3961, 7.3952, 7.3974, 7.3993, 7.3989, 7.398, 7.397, 7.3986, 7.3977, 7.3947, 7.3942, 7.3932, 7.3922, 7.3915, 7.3905, 7.3926, 7.3923, 7.3917, 7.3908, 7.3923, 7.3917, 7.3909, 7.3902, 7.3895, 7.3889, 7.3879, 7.3869, 7.3863, 7.3853, 7.3843, 7.3835, 7.3828, 7.3827, 7.382, 7.3813, 7.3829, 7.3826, 7.3819, 7.3809, 7.3802, 7.3793, 7.3789, 7.3781, 7.3772, 7.3762, 7.3756, 7.3775, 7.3766, 7.3757, 7.3776, 7.3746, 7.3762, 7.3754, 7.3749, 7.3741, 7.3736, 7.3728, 7.3745, 7.3736, 7.3731, 7.3765, 7.3783, 7.3804, 7.3825, 7.3818, 7.3834, 7.3827, 7.3819, 7.3811, 7.3803, 7.3793, 7.3785, 7.3775, 7.3766, 7.376, 7.3751, 7.3767, 7.3785, 7.3777, 7.3769, 7.3785, 7.3777, 7.3769, 7.376, 7.3751, 7.3768, 7.3799, 7.379, 7.3806, 7.3797, 7.3791, 7.3787, 7.3779, 7.377, 7.3761, 7.3751, 7.3742, 7.3733, 7.3772, 7.3788, 7.3779, 7.3797, 7.3795, 7.3786, 7.3801, 7.3792, 7.3783, 7.3799, 7.3793, 7.3785, 7.3778, 7.3748, 7.3744, 7.3736, 7.3727, 7.3719, 7.3712, 7.3705, 7.3695, 7.3709, 7.3729, 7.3724, 7.3741, 7.3737, 7.3732, 7.3757, 7.3747, 7.3741, 7.3732, 7.3723, 7.3715, 7.3731, 7.3722, 7.3718, 7.371, 7.3701, 7.3767, 7.3788, 7.3782, 7.3779, 7.3775, 7.3766, 7.3762, 7.3763, 7.3758, 7.3749, 7.374, 7.3732, 7.3779, 7.3794, 7.3809, 7.38, 7.3794, 7.3789, 7.3783, 7.3778, 7.3775, 7.3789, 7.378, 7.3774, 7.3765, 7.3756, 7.3755, 7.375, 7.3765, 7.3759, 7.3774, 7.3767, 7.3758, 7.3735, 7.3726, 7.374, 7.3747, 7.3764, 7.3767, 7.3758, 7.375, 7.3771, 7.3787, 7.3827, 7.3821, 7.3814, 7.3806, 7.38, 7.3791, 7.3783, 7.382, 7.3816, 7.3807, 7.3799, 7.3792, 7.3783, 7.3774, 7.3789, 7.3803, 7.3817, 7.3813, 7.3827, 7.3818, 7.3814, 7.3805, 7.3797, 7.3811, 7.3802, 7.3793, 7.3789, 7.3806, 7.3798, 7.3815, 7.3829, 7.3822, 7.3817, 7.3861, 7.3852, 7.3843, 7.3837, 7.3837, 7.383, 7.3826, 7.3817, 7.383, 7.3824, 7.3848, 7.384, 7.3835, 7.3827, 7.3819, 7.3838, 7.3833, 7.3895, 7.391, 7.3909, 7.3924, 7.3917, 7.393, 7.3924, 7.3941, 7.3933, 7.3931, 7.3946, 7.3937, 7.3929, 7.3924, 7.3919, 7.3913, 7.3904, 7.3895, 7.3891, 7.3882, 7.3873, 7.3865, 7.3856, 7.3849, 7.3871, 7.3866, 7.3857, 7.3849, 7.3841, 7.3855, 7.3852, 7.3846, 7.3845, 7.385, 7.3845, 7.3843, 7.3834, 7.383, 7.3824, 7.3837, 7.3829, 7.383, 7.3821, 7.3813, 7.3805, 7.3796, 7.3824, 7.3839, 7.3832, 7.3823, 7.3815, 7.3833, 7.3824, 7.382, 7.3816, 7.383, 7.3823, 7.3824, 7.3921, 7.3937, 7.3955, 7.395, 7.3944, 7.3938, 7.393, 7.3936, 7.3927, 7.394, 7.3954, 7.3972, 7.3968, 7.3961, 7.3953, 7.3948, 7.3944, 7.3944, 7.3941, 7.3955, 7.3971, 7.3962, 7.3957, 7.3949, 7.3945, 7.394, 7.3955, 7.3948, 7.3962, 7.3954, 7.3946, 7.3938, 7.393, 7.3927, 7.3919, 7.3911, 7.3902, 7.3899, 7.3914, 7.3908, 7.3902, 7.3897, 7.3888, 7.3884, 7.3882, 7.3875, 7.3867, 7.3859, 7.3873, 7.3865, 7.3857, 7.3872, 7.3888, 7.3885, 7.3881, 7.3896, 7.3891, 7.3883, 7.3882, 7.3917, 7.3954, 7.3946, 7.3938, 7.393, 7.3924, 7.392, 7.3912, 7.3925, 7.3954, 7.3969, 7.3965, 7.398, 7.3993, 7.4031, 7.4047, 7.4041, 7.4039, 7.4035, 7.4035, 7.4049, 7.4111, 7.4125, 7.412, 7.4112, 7.4104, 7.41, 7.4115, 7.4111, 7.4103, 7.4097, 7.409, 7.4082, 7.4098, 7.409, 7.4063, 7.4083, 7.4077, 7.4072, 7.4064, 7.4056, 7.407, 7.4082, 7.4074, 7.4099, 7.409, 7.4085, 7.4077, 7.4069, 7.4107, 7.41, 7.4092, 7.4106, 7.4101, 7.4117, 7.4109, 7.4103, 7.4101, 7.4093, 7.409, 7.4083, 7.408, 7.4074, 7.407, 7.4061, 7.4053, 7.4069, 7.4082, 7.4078, 7.407, 7.4063, 7.4056, 7.4071, 7.4064, 7.4058, 7.4053, 7.4045, 7.402, 7.4015, 7.4028, 7.4021, 7.4014, 7.4031, 7.403, 7.4023, 7.4016, 7.4008, 7.4001, 7.3996, 7.4002, 7.4015, 7.4008, 7.4022, 7.4016, 7.4008, 7.4021, 7.4013, 7.4006, 7.4019, 7.4032, 7.4025, 7.4017, 7.4009, 7.4001, 7.3999, 7.3991, 7.3983, 7.3978, 7.397, 7.3982, 7.3989, 7.4007, 7.4003, 7.3996, 7.3988, 7.3981, 7.3995, 7.4008, 7.4004, 7.4003, 7.3996, 7.399, 7.3983, 7.3977, 7.3969, 7.3965, 7.3958, 7.395, 7.3948, 7.3962, 7.3962, 7.3956, 7.3951, 7.3964, 7.3961, 7.3966, 7.3981, 7.3976, 7.397, 7.3963, 7.3965, 7.3959, 7.3951, 7.3944, 7.396, 7.3961, 7.3955, 7.395, 7.3948, 7.394, 7.3954, 7.3949, 7.3941, 7.3956, 7.3952, 7.3966, 7.3962, 7.3975, 7.397, 7.3985, 7.3978, 7.3953, 7.3948, 7.394, 7.3932, 7.3947, 7.3943, 7.3957, 7.399, 7.3983, 7.3976, 7.3972, 7.3986, 7.3979, 7.3977, 7.3953, 7.3946, 7.3938, 7.3952, 7.3944, 7.3936, 7.3932, 7.3955, 7.3948, 7.3941, 7.3966, 7.4019, 7.4048, 7.4041, 7.4042, 7.4038, 7.4051, 7.4046, 7.404, 7.4035, 7.4054, 7.4046, 7.4042, 7.4034, 7.4047, 7.4044, 7.4057, 7.407, 7.4084, 7.4079, 7.4074, 7.4085, 7.41, 7.4096, 7.4111, 7.4103, 7.4095, 7.4091, 7.4125, 7.4119, 7.4118, 7.411, 7.4102, 7.4114, 7.4106, 7.4098, 7.4097, 7.4091, 7.4083, 7.4137, 7.4131, 7.4153, 7.4145, 7.4199, 7.4193, 7.4189, 7.4181, 7.4156, 7.4149, 7.4141, 7.4118, 7.4172, 7.4186, 7.4199, 7.4193, 7.4186, 7.4181, 7.4179, 7.4172, 7.4168, 7.4161, 7.4173, 7.4186, 7.4179, 7.416, 7.4162, 7.4155, 7.4148, 7.4143, 7.4155, 7.4148, 7.416, 7.4152, 7.4144, 7.4137, 7.4133, 7.413, 7.4143, 7.4137, 7.413, 7.4143, 7.4136, 7.4148, 7.4142, 7.4134, 7.4146, 7.4141, 7.4135, 7.4148, 7.4143, 7.4139, 7.4154, 7.4177, 7.4173, 7.4168, 7.4164, 7.4229, 7.4206, 7.4202, 7.4195, 7.4212, 7.4208, 7.4204, 7.42, 7.4194, 7.4207, 7.4201, 7.4197, 7.4192, 7.4185, 7.4166, 7.4162, 7.4157, 7.4151, 7.4146, 7.4219, 7.4222, 7.4235, 7.4248, 7.4241, 7.4234, 7.4226, 7.4222, 7.4216, 7.4268, 7.4264, 7.4262, 7.427, 7.4284, 7.4296, 7.4289, 7.4283, 7.4279, 7.4271, 7.4264, 7.4256, 7.4252, 7.4248, 7.427, 7.4263, 7.4275, 7.4268, 7.4261, 7.4269, 7.4282, 7.4279, 7.4272, 7.4285, 7.4278, 7.4271, 7.4266, 7.4279, 7.4272, 7.4307, 7.43, 7.4292, 7.4284, 7.4277, 7.4293, 7.4286, 7.4278, 7.4277, 7.4253, 7.4256, 7.4249, 7.4244, 7.4241, 7.4239, 7.4215, 7.4214, 7.4207, 7.4219, 7.4231, 7.4224, 7.4221, 7.4217, 7.421, 7.4205, 7.4199, 7.4211, 7.4206, 7.4217, 7.421, 7.4203, 7.4218, 7.4232, 7.4228, 7.424, 7.4253, 7.4259, 7.4252, 7.4245, 7.4239, 7.4238, 7.425, 7.4242, 7.4235, 7.4258, 7.4251, 7.4248, 7.4226, 7.4203, 7.4197, 7.4209, 7.4202, 7.4195, 7.4187, 7.4165, 7.4159, 7.4155, 7.415, 7.4145, 7.4139, 7.4135, 7.4128, 7.4141, 7.4155, 7.415, 7.4147, 7.4149, 7.4142, 7.4136, 7.4149, 7.4142, 7.4138, 7.415, 7.4143, 7.4136, 7.4129, 7.4128, 7.4123, 7.4117, 7.412, 7.4149, 7.4161, 7.4155, 7.4147, 7.414, 7.4135, 7.4148, 7.4161, 7.4173, 7.4167, 7.416, 7.4155, 7.4149, 7.4142, 7.4134, 7.4129, 7.4125, 7.4118, 7.4113, 7.4109, 7.4105, 7.41, 7.4093, 7.4086, 7.4098, 7.4093, 7.4105, 7.41, 7.4111, 7.4105, 7.41, 7.4104, 7.4097, 7.4094, 7.4089, 7.41, 7.4097, 7.4097, 7.4139, 7.4151, 7.4208, 7.4202, 7.423, 7.4241, 7.4253, 7.4248, 7.4248, 7.4244, 7.4256, 7.4267, 7.4263, 7.4258, 7.4254, 7.4264, 7.4262, 7.4274, 7.4267, 7.4279, 7.4274, 7.4268, 7.4262, 7.4277, 7.4274, 7.4268, 7.4261, 7.4273, 7.4285, 7.428, 7.4294, 7.4306, 7.4318, 7.433, 7.4326, 7.4319, 7.4314, 7.4324, 7.4319, 7.4313, 7.4308, 7.4301, 7.4312, 7.4305, 7.4299, 7.4293, 7.4287, 7.4282, 7.4275, 7.4269, 7.4262, 7.424, 7.4238, 7.4261, 7.4255, 7.4248, 7.4242, 7.4235, 7.4229, 7.4225, 7.4218, 7.4212, 7.4208, 7.4201, 7.4198, 7.4191, 7.4184, 7.4182, 7.4178, 7.4173, 7.4167, 7.418, 7.4228, 7.4221, 7.4218, 7.4216, 7.4233, 7.4227, 7.4238, 7.425, 7.4247, 7.4241, 7.4235, 7.4229, 7.4222, 7.4215, 7.4208, 7.4201, 7.4195, 7.4189, 7.4186, 7.4198, 7.4191, 7.4185, 7.4181, 7.4192, 7.4222, 7.4215, 7.4208, 7.4208, 7.4201, 7.4213, 7.4206, 7.4217, 7.421, 7.4203, 7.4197, 7.4193, 7.4186, 7.418, 7.4173, 7.4188, 7.4181, 7.4175, 7.4172, 7.4165, 7.4158, 7.4152, 7.4163, 7.4163, 7.4156, 7.415, 7.4145, 7.4138, 7.4148, 7.416, 7.4156, 7.4152, 7.4164, 7.4159, 7.4153, 7.4153, 7.415, 7.4144, 7.4139, 7.4136, 7.4133, 7.4127, 7.412, 7.4113, 7.4107, 7.4101, 7.4095, 7.4091, 7.4085, 7.409, 7.4103, 7.4097, 7.4093, 7.4086, 7.4098, 7.411, 7.4107, 7.41, 7.4093, 7.409, 7.4102, 7.4096, 7.4107, 7.4101, 7.4094, 7.409, 7.4088, 7.4084, 7.4081, 7.4101, 7.4112, 7.4106, 7.4102, 7.4095, 7.4106, 7.4099, 7.4095, 7.4088, 7.41, 7.4093, 7.4094, 7.4114, 7.4108, 7.4104, 7.4097, 7.411, 7.4104, 7.4097, 7.4108, 7.4101, 7.4094, 7.4087, 7.408, 7.4092, 7.4092, 7.4102, 7.414, 7.4155, 7.4193, 7.4186, 7.4179, 7.4179, 7.4174, 7.4167, 7.4161, 7.4141, 7.4152, 7.4146, 7.4142, 7.4136, 7.4132, 7.4142, 7.4157, 7.4168, 7.4185, 7.4179, 7.4172, 7.4168, 7.4165, 7.416, 7.4153, 7.4146, 7.414, 7.4137, 7.413, 7.414, 7.4136, 7.413, 7.4123, 7.4117, 7.411, 7.4104, 7.4102, 7.4096, 7.409, 7.4086, 7.4097, 7.409, 7.4084, 7.4078, 7.4075, 7.4086, 7.408, 7.409, 7.4085, 7.4081, 7.4074, 7.407, 7.414, 7.4158, 7.42, 7.4197, 7.4208, 7.4201, 7.4195, 7.419, 7.42, 7.4196, 7.4189, 7.4182, 7.4195, 7.4191, 7.4185, 7.4179, 7.4175, 7.4171, 7.4182, 7.4176, 7.4171, 7.4166, 7.4162, 7.4155, 7.4166, 7.4162, 7.4159, 7.4153, 7.4177, 7.4178, 7.4178, 7.4173, 7.4183, 7.4195, 7.4189, 7.4183, 7.4193, 7.4205, 7.4199, 7.4193, 7.4189, 7.4186, 7.4171, 7.4164, 7.4175, 7.4186, 7.4181, 7.4177, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4145, 7.4157, 7.4168, 7.4165, 7.4159, 7.4161, 7.4161, 7.4162, 7.4173, 7.417, 7.415, 7.4145, 7.4141, 7.4138, 7.4135, 7.4146, 7.4139, 7.4151, 7.4153, 7.4148, 7.4144, 7.4141, 7.4135, 7.4129, 7.4128, 7.4122, 7.4115, 7.4108, 7.4102, 7.4116, 7.4126, 7.4122, 7.4122, 7.4117, 7.4128, 7.4122, 7.4132, 7.4128, 7.4139, 7.4149, 7.4142, 7.4146, 7.414, 7.4136, 7.413, 7.4125, 7.4118, 7.4115, 7.411, 7.4104, 7.4098, 7.4094, 7.4087, 7.4084, 7.4093, 7.4103, 7.4105, 7.4102, 7.4097, 7.4107, 7.4102, 7.4097, 7.4098, 7.4095, 7.4089, 7.4083, 7.4077, 7.4075, 7.4069, 7.4063, 7.4057, 7.4067, 7.4118, 7.4113, 7.4125, 7.4119, 7.4113, 7.4124, 7.4156, 7.4178, 7.4173, 7.417, 7.4167, 7.4161, 7.4172, 7.4168, 7.4181, 7.4175, 7.4186, 7.418, 7.4174, 7.4175, 7.4186, 7.4183, 7.4186, 7.4183, 7.4177, 7.4173, 7.4168, 7.4165, 7.4176, 7.4174, 7.4168, 7.4178, 7.4172, 7.4183, 7.4193, 7.4203, 7.42, 7.4206, 7.4216, 7.421, 7.4204, 7.4214, 7.4208, 7.4207, 7.4201, 7.4199, 7.4195, 7.4205, 7.42, 7.421, 7.4194, 7.4188, 7.4182, 7.4181, 7.4175, 7.4172, 7.4153, 7.4147, 7.4141, 7.4155, 7.4149, 7.416, 7.4155, 7.415, 7.4144, 7.414, 7.415, 7.4157, 7.4168, 7.4162, 7.4156, 7.4153, 7.4147, 7.4141, 7.4152, 7.4145, 7.414, 7.4136, 7.4137, 7.4134, 7.4128, 7.4138, 7.4135, 7.4132, 7.4128, 7.4123, 7.4135, 7.413, 7.4124, 7.4118, 7.4114, 7.4111, 7.4121, 7.4131, 7.4157, 7.4151, 7.416, 7.4155, 7.415, 7.4152, 7.4146, 7.4156, 7.4152, 7.4146, 7.4143, 7.4139, 7.4133, 7.4145, 7.4141, 7.4135, 7.4162, 7.4156, 7.4152, 7.4146, 7.4149, 7.4143, 7.4156, 7.415, 7.416, 7.4155, 7.4149, 7.4143, 7.4137, 7.4131, 7.4157, 7.4151, 7.4145, 7.4139, 7.4137, 7.4133, 7.4127, 7.4138, 7.4132, 7.4126, 7.4121, 7.4115, 7.4129, 7.4128, 7.4139, 7.4134, 7.4146, 7.414, 7.4134, 7.413, 7.4124, 7.4118, 7.4114, 7.4153, 7.415, 7.4144, 7.4142, 7.4152, 7.415, 7.4143, 7.4138, 7.4132, 7.4141, 7.4138, 7.4147, 7.4141, 7.4152, 7.4158, 7.4152, 7.4139, 7.4133, 7.4134, 7.413, 7.4124, 7.4123, 7.4118, 7.416, 7.414, 7.4149, 7.4146, 7.4141, 7.4136, 7.4145, 7.414, 7.4158, 7.4155, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4146, 7.414, 7.4135, 7.4129, 7.4123, 7.4118, 7.4112, 7.4122, 7.4131, 7.4142, 7.4136, 7.413, 7.4127, 7.4108, 7.4105, 7.4101, 7.4095, 7.409, 7.41, 7.4174, 7.4171, 7.4167, 7.4178, 7.4175, 7.4172, 7.4168, 7.4164, 7.4158, 7.4153, 7.4153, 7.4182, 7.4192, 7.4189, 7.4199, 7.4194, 7.4193, 7.4205, 7.4199, 7.421, 7.4204, 7.4198, 7.4198, 7.4193, 7.419, 7.4201, 7.4198, 7.4194, 7.4188, 7.4182, 7.4182, 7.4178, 7.4173, 7.4168, 7.4165, 7.4177, 7.4172, 7.4167, 7.4167, 7.4163, 7.4157, 7.4154, 7.415, 7.4147, 7.4156, 7.4153, 7.415, 7.4145, 7.4139, 7.4136, 7.4133, 7.4127, 7.4122, 7.4116, 7.4113, 7.411, 7.4104, 7.4098, 7.4093, 7.4087, 7.4097, 7.4107, 7.4101, 7.4095, 7.4106, 7.4102, 7.4096, 7.4106, 7.41, 7.4097, 7.4093, 7.4089, 7.4085, 7.408, 7.4075, 7.4086, 7.4085, 7.409, 7.4084, 7.4081, 7.4091, 7.4086, 7.4097, 7.4092, 7.4102, 7.4099, 7.4094, 7.4106, 7.4118, 7.4127, 7.4124, 7.412, 7.4114, 7.4124, 7.4121, 7.4116, 7.4111, 7.4105, 7.4102, 7.4083, 7.4078, 7.4076, 7.4073, 7.4083, 7.4077, 7.4087, 7.4082, 7.4079, 7.4075, 7.4069, 7.4065, 7.406, 7.4055, 7.4049, 7.4043, 7.4026, 7.4034, 7.4029, 7.4024, 7.4018, 7.4014, 7.4009, 7.4003, 7.4012, 7.4006, 7.4003, 7.4, 7.3999, 7.4019, 7.4043, 7.4053, 7.4062, 7.4071, 7.4103, 7.4099, 7.4094, 7.409, 7.4085, 7.408, 7.4075, 7.4085, 7.4081, 7.4076, 7.4071, 7.4066, 7.4064, 7.4073, 7.4068, 7.4078, 7.4073, 7.4155, 7.4166, 7.4168, 7.4165, 7.4159, 7.4153, 7.415, 7.4145, 7.4139, 7.4135, 7.4133, 7.4128, 7.4123, 7.4118, 7.4113, 7.4107, 7.4131, 7.4125, 7.412, 7.4118, 7.4114, 7.411, 7.4105, 7.4101, 7.4104, 7.41, 7.4095, 7.4107, 7.4102, 7.4099, 7.4094, 7.409, 7.4086, 7.4083, 7.408, 7.4088, 7.4097, 7.4094, 7.4089, 7.4084, 7.4079, 7.4073, 7.4069, 7.4065, 7.406, 7.4043, 7.4052, 7.4049, 7.4043, 7.4038, 7.4032, 7.4041, 7.4038, 7.4033, 7.403, 7.4027, 7.4034, 7.4031, 7.4041, 7.4041, 7.4056, 7.4053, 7.4052, 7.4048, 7.4044, 7.404, 7.4037, 7.4034, 7.403, 7.4039, 7.4036, 7.4044, 7.4039, 7.4034, 7.403, 7.4026, 7.4021, 7.4015, 7.4027, 7.4022, 7.4018, 7.4029, 7.4029, 7.4024, 7.402, 7.4029, 7.4025, 7.402, 7.4014, 7.4009, 7.4004, 7.4018, 7.4013, 7.4007, 7.4002, 7.4, 7.3995, 7.399, 7.399, 7.3985, 7.398, 7.3976, 7.3992, 7.3987, 7.3983, 7.3978, 7.3994, 7.3989, 7.3984, 7.4003, 7.3998, 7.4001, 7.3997, 7.3992, 7.3987, 7.3997, 7.3993, 7.3988, 7.4012, 7.4006, 7.4, 7.3995, 7.3992, 7.3987, 7.3981, 7.3976, 7.3973, 7.3968, 7.3965, 7.3974, 7.3969, 7.3964, 7.3947, 7.3943, 7.3952, 7.401, 7.4019, 7.4016, 7.4012, 7.4007, 7.4003, 7.4, 7.4014, 7.4011, 7.4025, 7.4021, 7.4019, 7.4017, 7.4012, 7.401, 7.402, 7.4015, 7.401, 7.4006, 7.4003, 7.3998, 7.3993, 7.3989, 7.3984, 7.3979, 7.3974, 7.3971, 7.3971, 7.3965, 7.3962, 7.3964, 7.3962, 7.3957, 7.397, 7.3969, 7.3977, 7.3972, 7.3967, 7.3962, 7.3958, 7.3968, 7.3979, 7.3973, 7.3982, 7.3986, 7.3981, 7.3979, 7.3975, 7.397, 7.3964, 7.3963, 7.396, 7.3957, 7.3981, 7.3976, 7.3971, 7.3967, 7.3977, 7.3973, 7.397, 7.3967, 7.3977, 7.3972, 7.3968, 7.3965, 7.3961, 7.3956, 7.395, 7.3945, 7.394, 7.3935, 7.393, 7.394, 7.3935, 7.3929, 7.3926, 7.3955, 7.3983, 7.3993, 7.3988, 7.3985, 7.3968, 7.3995, 7.3993, 7.3988, 7.3987, 7.3996, 7.4005, 7.4, 7.3995, 7.399, 7.3999, 7.3994, 7.4002, 7.4011, 7.4006, 7.4005, 7.4001, 7.3996, 7.4006, 7.4002, 7.3999, 7.3995, 7.3992, 7.3987, 7.399, 7.3986, 7.3992, 7.4002, 7.3997, 7.3993, 7.3988, 7.3983, 7.3978, 7.3975, 7.4026, 7.4023, 7.4018, 7.4018, 7.4012, 7.4023, 7.4019, 7.4014, 7.4019, 7.4024, 7.4018, 7.4013, 7.4026, 7.4024, 7.404, 7.4038, 7.4033, 7.4028, 7.4023, 7.4032, 7.403, 7.4026, 7.4022, 7.4031, 7.4026, 7.4036, 7.4031, 7.4039, 7.4048, 7.4043, 7.4038, 7.4032, 7.4027, 7.4065, 7.4063, 7.406, 7.4056, 7.4054, 7.4051, 7.405, 7.4058, 7.4066, 7.4074, 7.407, 7.4066, 7.4067, 7.4064, 7.4061, 7.4074, 7.4071, 7.4066, 7.4063, 7.4059, 7.4056, 7.4052, 7.4103, 7.4099, 7.4094, 7.4091, 7.4089, 7.4084, 7.4081, 7.4086, 7.4081, 7.411, 7.4105, 7.4101, 7.411, 7.4106, 7.4102, 7.4097, 7.4106, 7.411, 7.4105, 7.41, 7.4083, 7.408, 7.4075, 7.407, 7.4066, 7.4075, 7.4083, 7.408, 7.4075, 7.407, 7.4065, 7.406, 7.4055, 7.405, 7.4072, 7.4069, 7.4065, 7.4073, 7.4068, 7.4067, 7.4063, 7.4059, 7.4054, 7.4063, 7.4058, 7.4065, 7.4087, 7.4083, 7.4078, 7.4088, 7.4085, 7.4095, 7.4092, 7.41, 7.4095, 7.409, 7.4104, 7.4113, 7.4108, 7.4117, 7.4112, 7.4108, 7.4103, 7.4098, 7.4094, 7.4092, 7.4183, 7.4178, 7.4178, 7.4161, 7.4156, 7.4151, 7.4187, 7.4182, 7.4191, 7.4174, 7.4171, 7.418, 7.4175, 7.4171, 7.418, 7.4175, 7.4183, 7.4192, 7.4202, 7.4211, 7.4206, 7.419, 7.4191, 7.4186, 7.4183, 7.4179, 7.4174, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4152, 7.4149, 7.4138, 7.4134, 7.4133, 7.415, 7.4147, 7.4156, 7.4151, 7.4148, 7.4143, 7.4138, 7.4134, 7.4129, 7.4126, 7.4123, 7.4138, 7.4133, 7.4141, 7.4137, 7.4134, 7.4129, 7.4124, 7.4121, 7.4118, 7.4113, 7.4121, 7.4116, 7.4112, 7.4109, 7.4104, 7.41, 7.4096, 7.4091, 7.4086, 7.4082, 7.409, 7.4085, 7.4086, 7.4083, 7.4078, 7.4073, 7.4068, 7.4076, 7.4073, 7.4081, 7.4068, 7.4067, 7.4064, 7.4077, 7.4072, 7.4067, 7.4062, 7.4069, 7.4064, 7.4074, 7.4075, 7.406, 7.4056, 7.4053, 7.4049, 7.4046, 7.4045, 7.404, 7.4035, 7.4031, 7.4026, 7.4034, 7.403, 7.4014, 7.4009, 7.4007, 7.4002, 7.3997, 7.4034, 7.4029, 7.404, 7.4052, 7.4047, 7.4042, 7.405, 7.4098, 7.4105, 7.41, 7.4108, 7.4103, 7.41, 7.4095, 7.4104, 7.41, 7.4095, 7.4103, 7.4101, 7.4096, 7.4105, 7.4103, 7.4098, 7.4096, 7.4091, 7.4088, 7.4089, 7.4086, 7.4084, 7.4083, 7.4107, 7.4115, 7.4113, 7.4098, 7.4099, 7.4109, 7.4104, 7.4113, 7.4109, 7.4104, 7.4113, 7.4108, 7.4104, 7.4102, 7.4098, 7.4093, 7.4089, 7.4085, 7.4081, 7.4077, 7.4074, 7.4082, 7.4077, 7.4073, 7.4068, 7.4066, 7.4062, 7.4059, 7.4069, 7.4064, 7.4075, 7.4072, 7.4067, 7.4072, 7.4069, 7.4066, 7.4063, 7.406, 7.4065, 7.4061, 7.406, 7.4056, 7.4053, 7.4051, 7.4035, 7.4032, 7.4042, 7.4041, 7.405, 7.4059, 7.4056, 7.4055, 7.4053, 7.4064, 7.4063, 7.407, 7.4066, 7.4064, 7.4059, 7.406, 7.4068, 7.4066, 7.4067, 7.4062, 7.4057, 7.4054, 7.4049, 7.4045, 7.4043, 7.404, 7.4052, 7.4047, 7.4043, 7.4066, 7.4077, 7.4089, 7.4084, 7.4091, 7.4086, 7.4083, 7.408, 7.4076, 7.4073, 7.4068, 7.4063, 7.4065, 7.4061, 7.4058, 7.4055, 7.4068, 7.414, 7.4137, 7.4134, 7.4131, 7.4129, 7.4126, 7.4134, 7.413, 7.4125, 7.4133, 7.4129, 7.4127, 7.4122, 7.4128, 7.4123, 7.4118, 7.4115, 7.4111, 7.4119, 7.4117, 7.4112, 7.4107, 7.4102, 7.4097, 7.4095, 7.4103, 7.411, 7.4108, 7.4105, 7.4103, 7.4098, 7.4106, 7.4103, 7.4099, 7.4085, 7.408, 7.4082, 7.408, 7.4075, 7.4074, 7.4069, 7.4077, 7.4072, 7.408, 7.4088, 7.4086, 7.4082, 7.4078, 7.4074, 7.4083, 7.408, 7.4066, 7.4062, 7.4095, 7.409, 7.4102, 7.4097, 7.4096, 7.4106, 7.4147, 7.4168, 7.4165, 7.4163, 7.4171, 7.4216, 7.4211, 7.4208, 7.4206, 7.4204, 7.42, 7.4196, 7.4193, 7.4202, 7.4199, 7.4194, 7.4189, 7.4187, 7.4219, 7.4216, 7.4225, 7.4224, 7.4232, 7.423, 7.4238, 7.4236, 7.4242, 7.4237, 7.4253, 7.4279, 7.4274, 7.4272, 7.4267, 7.4262, 7.4246, 7.4248, 7.4243, 7.4239, 7.4247, 7.4244, 7.424, 7.4248, 7.4245, 7.424, 7.4251, 7.4248, 7.4269, 7.4267, 7.4275, 7.427, 7.4278, 7.4286, 7.4281, 7.4289, 7.4284, 7.428, 7.4277, 7.4272, 7.4267, 7.4265, 7.4273, 7.427, 7.4266, 7.4262, 7.4258, 7.4253, 7.425, 7.4292, 7.4287, 7.4285, 7.4282, 7.4277, 7.4272, 7.428, 7.4276, 7.4283, 7.4278, 7.4277, 7.4272, 7.4304, 7.43, 7.4297, 7.4295, 7.4291, 7.4299, 7.4296, 7.4299, 7.4295, 7.4303, 7.4311, 7.4308, 7.4308, 7.4308, 7.4303, 7.4311, 7.4307, 7.4315, 7.431, 7.4305, 7.4313, 7.431, 7.4296, 7.4303, 7.431, 7.4306, 7.4304, 7.43, 7.4296, 7.4293, 7.4289, 7.4285, 7.4281, 7.4277, 7.4303, 7.4312, 7.4308, 7.4304, 7.43, 7.43, 7.4296, 7.4304, 7.4334, 7.4329, 7.4324, 7.432, 7.4317, 7.4313, 7.4322, 7.4329, 7.4326, 7.4334, 7.4329, 7.4338, 7.4335, 7.433, 7.4337, 7.4332, 7.4339, 7.4337, 7.4332, 7.434, 7.4347, 7.4344, 7.434, 7.4336, 7.4331, 7.433, 7.4327, 7.4323, 7.4322, 7.4317, 7.4316, 7.4312, 7.4297, 7.4294, 7.4289, 7.4287, 7.4283, 7.428, 7.4276, 7.4276, 7.4272, 7.4269, 7.4264, 7.4272, 7.4274, 7.4272, 7.4257, 7.4253, 7.425, 7.4259, 7.4255, 7.4252, 7.4249, 7.4244, 7.423, 7.4245, 7.4242, 7.4238, 7.4246, 7.4232, 7.424, 7.4235, 7.4232, 7.4229, 7.4226, 7.4226, 7.4224, 7.422, 7.4217, 7.4213, 7.4208, 7.4217, 7.4214, 7.4209, 7.4206, 7.4206, 7.4203, 7.4199, 7.4196, 7.4191, 7.422, 7.4218, 7.4213, 7.4211, 7.4207, 7.4202, 7.4198, 7.4256, 7.4265, 7.4261, 7.4269, 7.4267, 7.4263, 7.426, 7.4257, 7.4253, 7.4261, 7.4257, 7.4253, 7.4249, 7.4245, 7.4243, 7.4243, 7.4239, 7.4235, 7.423, 7.4229, 7.4224, 7.4221, 7.4217, 7.4213, 7.4221, 7.4229, 7.4226, 7.4224, 7.422, 7.4216, 7.4212, 7.4208, 7.4236, 7.4232, 7.4228, 7.4236, 7.4237, 7.4233, 7.4228, 7.4224, 7.4221, 7.4227, 7.4223, 7.4225, 7.4222, 7.4219, 7.4216, 7.4212, 7.4219, 7.4226, 7.4221, 7.4229, 7.4236, 7.4231, 7.4238, 7.4235, 7.4242, 7.4238, 7.4236, 7.4244, 7.424, 7.4238, 7.4236, 7.4245, 7.4244, 7.4243, 7.4239, 7.4239, 7.4235, 7.4237, 7.4234, 7.4264, 7.4261, 7.4257, 7.4253, 7.4249, 7.4246, 7.4242, 7.425, 7.4248, 7.4257, 7.4266, 7.4251, 7.4249, 7.4245, 7.4243, 7.4251, 7.4258, 7.4253, 7.4258, 7.4267, 7.4252, 7.4248, 7.4245, 7.4241, 7.4237, 7.4234, 7.4242, 7.4238, 7.4234, 7.423, 7.4226, 7.4224, 7.422, 7.4216, 7.4213, 7.422, 7.4216, 7.4224, 7.4223, 7.422, 7.4218, 7.4214, 7.4211, 7.4219, 7.4228, 7.4225, 7.4222, 7.4223, 7.4211, 7.4218, 7.4214, 7.4211, 7.421, 7.4229, 7.4228, 7.4214, 7.4212, 7.4219, 7.4217, 7.4212, 7.4209, 7.4204, 7.4225, 7.4222, 7.4219, 7.4217, 7.4225, 7.4234, 7.4244, 7.425, 7.4259, 7.4256, 7.4254, 7.425, 7.4247, 7.4245, 7.4241, 7.425, 7.4246, 7.4243, 7.4239, 7.4235, 7.4242, 7.425, 7.4248, 7.4244, 7.424, 7.4237, 7.4233, 7.423, 7.4226, 7.4223, 7.4209, 7.4208, 7.4206, 7.4203, 7.4211, 7.4208, 7.4204, 7.4201, 7.4197, 7.4194, 7.4194, 7.419, 7.4186, 7.4182, 7.4178, 7.4174, 7.417, 7.4166, 7.4162, 7.4169, 7.4165, 7.4178, 7.4174, 7.4169, 7.4165, 7.4178, 7.4176, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4153, 7.4161, 7.4192, 7.4188, 7.4186, 7.4182, 7.4179, 7.4175, 7.4182, 7.4178, 7.4185, 7.4193, 7.4189, 7.4186, 7.4182, 7.4184, 7.418, 7.4177, 7.4173, 7.4187, 7.4183, 7.4179, 7.4186, 7.4182, 7.4178, 7.4175, 7.4171, 7.4172, 7.4167, 7.4164, 7.4162, 7.4158, 7.4157, 7.4153, 7.4151, 7.4148, 7.4134, 7.4141, 7.4137, 7.4134, 7.4145, 7.4141, 7.415, 7.4146, 7.4142, 7.4147, 7.4145, 7.414, 7.4136, 7.4132, 7.413, 7.4138, 7.4135, 7.4151, 7.4147, 7.4154, 7.4161, 7.4157, 7.4153, 7.415, 7.4146, 7.4155, 7.4161, 7.4161, 7.4159, 7.4159, 7.4159, 7.4155, 7.4153, 7.4149, 7.4146, 7.4142, 7.4139, 7.4193, 7.419, 7.4185, 7.4187, 7.4184, 7.4184, 7.4192, 7.4199, 7.4206, 7.4213, 7.4211, 7.4209, 7.4207, 7.4214, 7.421, 7.4206, 7.4202, 7.4198, 7.4207, 7.4225, 7.4234, 7.4287, 7.4283, 7.4291, 7.4299, 7.4297, 7.4293, 7.429, 7.4297, 7.4293, 7.4289, 7.4296, 7.4292, 7.4299, 7.4295, 7.4291, 7.4299, 7.4296, 7.4294, 7.429, 7.4286, 7.4282, 7.428, 7.4276, 7.4272, 7.4269, 7.4265, 7.4261, 7.4257, 7.4255, 7.4262, 7.4257, 7.4253, 7.4249, 7.4276, 7.4272, 7.427, 7.4268, 7.4264, 7.4262, 7.4272, 7.4279, 7.4275, 7.4281, 7.4289, 7.4285, 7.428, 7.4277, 7.4284, 7.428, 7.4287, 7.4283, 7.4281, 7.4278, 7.4285, 7.4282, 7.428, 7.4287, 7.4283, 7.4283, 7.4279, 7.4275, 7.4271, 7.4267, 7.4275, 7.4282, 7.4285, 7.4282, 7.428, 7.4276, 7.4272, 7.427, 7.4269, 7.4276, 7.4273, 7.4269, 7.4265, 7.4263, 7.4259, 7.4268, 7.4266, 7.4261, 7.4259, 7.4255, 7.4253, 7.426, 7.4256, 7.4253, 7.4249, 7.4245, 7.4242, 7.4238, 7.4234, 7.423, 7.4227, 7.4224, 7.422, 7.4216, 7.4213, 7.4237, 7.4235, 7.4232, 7.4228, 7.4224, 7.4231, 7.4229, 7.4225, 7.4226, 7.4223, 7.4219, 7.4215, 7.4217, 7.4213, 7.422, 7.4216, 7.4223, 7.4219, 7.4215, 7.4222, 7.4227, 7.4223, 7.422, 7.4216, 7.4202, 7.4199, 7.4206, 7.4202, 7.4199, 7.4196, 7.4214, 7.421, 7.4206, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4188, 7.4186, 7.4194, 7.419, 7.4187, 7.4183, 7.418, 7.4187, 7.4193, 7.4195, 7.4191, 7.4191, 7.419, 7.4186, 7.4172, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4183, 7.419, 7.4186, 7.4182, 7.4195, 7.4193, 7.4189, 7.4196, 7.4214, 7.4212, 7.421, 7.4229, 7.4237, 7.4236, 7.4232, 7.4229, 7.4227, 7.4224, 7.4231, 7.4239, 7.4235, 7.4243, 7.423, 7.4216, 7.4213, 7.421, 7.4208, 7.4225, 7.4225, 7.4211, 7.4217, 7.4213, 7.4211, 7.4208, 7.4205, 7.4195, 7.4192, 7.4201, 7.4208, 7.4204, 7.42, 7.4208, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4187, 7.4174, 7.4172, 7.417, 7.4177, 7.4173, 7.4171, 7.4178, 7.4185, 7.4181, 7.4177, 7.4174, 7.4171, 7.4169, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4167, 7.4167, 7.4163, 7.4159, 7.4156, 7.4152, 7.4148, 7.4155, 7.4153, 7.4149, 7.4166, 7.4163, 7.4161, 7.4158, 7.4165, 7.4162, 7.4163, 7.416, 7.4173, 7.4222, 7.4218, 7.4214, 7.422, 7.4228, 7.4226, 7.4222, 7.424, 7.4237, 7.4235, 7.4243, 7.425, 7.4246, 7.4242, 7.4239, 7.4256, 7.4252, 7.4239, 7.4235, 7.4231, 7.4229, 7.4225, 7.4221, 7.4227, 7.4223, 7.422, 7.4216, 7.4212, 7.4199, 7.4195, 7.4203, 7.4199, 7.4197, 7.4203, 7.4201, 7.4197, 7.4204, 7.421, 7.4207, 7.4203, 7.4199, 7.4195, 7.4191, 7.4203, 7.4199, 7.4195, 7.4202, 7.4198, 7.4207, 7.4203, 7.42, 7.4198, 7.4201, 7.4208, 7.4205, 7.4202, 7.4189, 7.4196, 7.4193, 7.4198, 7.4195, 7.4196, 7.4192, 7.4188, 7.4184, 7.418, 7.4176, 7.4183, 7.4189, 7.4185, 7.4181, 7.4177, 7.4183, 7.418, 7.4176, 7.4173, 7.4171, 7.4167, 7.4165, 7.4172, 7.4168, 7.4165, 7.4228, 7.4224, 7.4231, 7.4227, 7.4223, 7.422, 7.4216, 7.4214, 7.421, 7.4207, 7.4208, 7.4214, 7.4221, 7.4219, 7.4225, 7.4222, 7.4218, 7.4216, 7.4212, 7.4228, 7.4225, 7.4222, 7.4228, 7.4224, 7.422, 7.4231, 7.4227, 7.4234, 7.424, 7.4247, 7.4254, 7.4261, 7.4261, 7.4258, 7.4265, 7.4263, 7.4259, 7.4266, 7.4273, 7.4269, 7.4265, 7.4263, 7.426, 7.4256, 7.4253, 7.4243, 7.4241, 7.424, 7.4237, 7.4235, 7.4231, 7.4233, 7.4229, 7.4236, 7.4242, 7.4249, 7.4245, 7.4241, 7.4237, 7.4233, 7.4229, 7.4235, 7.4231, 7.4229, 7.4247, 7.4251, 7.4258, 7.4258, 7.4271, 7.4267, 7.4263, 7.431, 7.4306, 7.4302, 7.4298, 7.4295, 7.4282, 7.4278, 7.4276, 7.4283, 7.4279, 7.4285, 7.4281, 7.4279, 7.4275, 7.4271, 7.4284, 7.4319, 7.4326, 7.4322, 7.4318, 7.4314, 7.431, 7.4306, 7.4302, 7.43, 7.4308, 7.4304, 7.4301, 7.4297, 7.4293, 7.4289, 7.4291, 7.4317, 7.4314, 7.431, 7.4307, 7.4303, 7.43, 7.4287, 7.4294, 7.429, 7.4296, 7.4292, 7.4299, 7.4296, 7.4292, 7.4296, 7.4292, 7.4288, 7.4284, 7.428, 7.4287, 7.4294, 7.429, 7.4286, 7.4282, 7.4278, 7.4275, 7.4271, 7.4273, 7.4272, 7.4279, 7.4276, 7.4275, 7.4282, 7.4289, 7.4285, 7.4291, 7.429, 7.4288, 7.4285, 7.4292, 7.4299, 7.4295, 7.4291, 7.4298, 7.4296, 7.4295, 7.4293, 7.4289, 7.4296, 7.4294, 7.429, 7.429, 7.4278, 7.4285, 7.4281, 7.4268, 7.4268, 7.4278, 7.4265, 7.4261, 7.4268, 7.4266, 7.4263, 7.4259, 7.4255, 7.4252, 7.4248, 7.4245, 7.4241, 7.4238, 7.4244, 7.4248, 7.4254, 7.425, 7.4248, 7.4254, 7.4251, 7.4248, 7.4255, 7.4264, 7.4266, 7.4263, 7.4261, 7.4289, 7.4285, 7.4282, 7.4286, 7.4292, 7.4289, 7.4285, 7.4291, 7.4287, 7.4283, 7.4279, 7.4275, 7.4273, 7.4286, 7.4282, 7.428, 7.4277, 7.4274, 7.4274, 7.428, 7.4268, 7.4265, 7.4262, 7.427, 7.4266, 7.4262, 7.4268, 7.4266, 7.4272, 7.4268, 7.4264, 7.4271, 7.4267, 7.4263, 7.4262, 7.4259, 7.4257, 7.4255, 7.4252, 7.4249, 7.4275, 7.4282, 7.428, 7.4287, 7.4284, 7.428, 7.4276, 7.4273, 7.428, 7.4278, 7.4274, 7.4271, 7.4278, 7.4276, 7.4282, 7.4278, 7.4274, 7.4282, 7.4278, 7.4307, 7.4314, 7.431, 7.4316, 7.4312, 7.4309, 7.4334, 7.434, 7.4347, 7.4354, 7.4351, 7.4358, 7.4354, 7.4352, 7.4358, 7.4364, 7.436, 7.4358, 7.4369, 7.4375, 7.4371, 7.4377, 7.4374, 7.4371, 7.4377, 7.4374, 7.437, 7.4367, 7.4363, 7.4369, 7.4375, 7.4381, 7.438, 7.4386, 7.4382, 7.4388, 7.4384, 7.439, 7.4396, 7.4397, 7.4394, 7.4393, 7.4389, 7.4387, 7.4384, 7.4383, 7.4389, 7.4395, 7.4392, 7.4389, 7.4385, 7.4383, 7.438, 7.4378, 7.4377, 7.4374, 7.437, 7.4367, 7.4365, 7.4371, 7.4368, 7.4376, 7.4382, 7.4379, 7.4377, 7.4375, 7.4382, 7.4388, 7.4386, 7.4382, 7.4379, 7.4377, 7.4374, 7.437, 7.4366, 7.4362, 7.4368, 7.4366, 7.4405, 7.4411, 7.4418, 7.4414, 7.441, 7.4409, 7.4407, 7.441, 7.4407, 7.4404, 7.44, 7.4397, 7.4393, 7.4389, 7.4385, 7.4392, 7.4388, 7.4384, 7.442, 7.4417, 7.4413, 7.441, 7.4398, 7.4397, 7.4396, 7.4392, 7.4399, 7.4398, 7.4405, 7.4401, 7.4399, 7.4396, 7.4393, 7.4389, 7.4396, 7.4403, 7.4401, 7.4426, 7.4422, 7.4419, 7.4416, 7.4413, 7.4419, 7.4415, 7.4414, 7.4411, 7.4399, 7.4395, 7.4392, 7.4392, 7.439, 7.4396, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4375, 7.4372, 7.4368, 7.4364, 7.436, 7.4358, 7.4356, 7.4357, 7.4367, 7.4363, 7.436, 7.4356, 7.4362, 7.4358, 7.4346, 7.4358, 7.4354, 7.435, 7.4348, 7.4345, 7.4342, 7.4348, 7.4354, 7.4351, 7.435, 7.4346, 7.4343, 7.4341, 7.4337, 7.4333, 7.4331, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4339, 7.4345, 7.4342, 7.4338, 7.4334, 7.4341, 7.4337, 7.4343, 7.4339, 7.4336, 7.4337, 7.4335, 7.4341, 7.4337, 7.434, 7.4338, 7.4346, 7.4344, 7.4341, 7.434, 7.4347, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4347, 7.4346, 7.4343, 7.435, 7.435, 7.4349, 7.4345, 7.4351, 7.4349, 7.4347, 7.4343, 7.4341, 7.4338, 7.4335, 7.4332, 7.4329, 7.4328, 7.4332, 7.4339, 7.4338, 7.4345, 7.4343, 7.4341, 7.4339, 7.4336, 7.4335, 7.4341, 7.4338, 7.4336, 7.4335, 7.4342, 7.4339, 7.4335, 7.4333, 7.433, 7.4327, 7.4323, 7.433, 7.4336, 7.4342, 7.434, 7.4338, 7.4335, 7.4333, 7.4339, 7.4346, 7.4352, 7.4348, 7.4346, 7.4351, 7.4357, 7.4363, 7.437, 7.4367, 7.4363, 7.4362, 7.4374, 7.438, 7.4378, 7.4366, 7.4364, 7.4361, 7.4359, 7.4355, 7.4352, 7.4349, 7.4355, 7.4351, 7.4357, 7.4363, 7.4369, 7.4375, 7.4372, 7.4369, 7.4365, 7.4361, 7.4367, 7.4365, 7.4363, 7.4383, 7.4379, 7.4375, 7.4373, 7.4379, 7.4376, 7.4372, 7.4369, 7.4367, 7.4374, 7.4362, 7.4369, 7.4366, 7.4365, 7.4362, 7.4369, 7.4366, 7.4354, 7.436, 7.4357, 7.4362, 7.4368, 7.4375, 7.4373, 7.4371, 7.4367, 7.4363, 7.4359, 7.4355, 7.4388, 7.4386, 7.4384, 7.439, 7.4386, 7.4401, 7.4408, 7.4414, 7.442, 7.4418, 7.4419, 7.4415, 7.4411, 7.44, 7.4398, 7.4399, 7.4395, 7.4392, 7.4398, 7.4394, 7.4385, 7.4381, 7.4377, 7.4374, 7.438, 7.4387, 7.4394, 7.439, 7.4387, 7.4385, 7.4383, 7.438, 7.4369, 7.4375, 7.4372, 7.4368, 7.4365, 7.4362, 7.4368, 7.4365, 7.4364, 7.437, 7.4376, 7.4373, 7.437, 7.4368, 7.4364, 7.4361, 7.4358, 7.4386, 7.4383, 7.4379, 7.4385, 7.4381, 7.4377, 7.4383, 7.4383, 7.4379, 7.4385, 7.4382, 7.4378, 7.4375, 7.4378, 7.4367, 7.4364, 7.4361, 7.4359, 7.4365, 7.4371, 7.4368, 7.4365, 7.4363, 7.4361, 7.4358, 7.4354, 7.436, 7.4357, 7.4354, 7.4352, 7.4349, 7.4357, 7.4354, 7.4351, 7.4348, 7.4346, 7.4344, 7.435, 7.4346, 7.4345, 7.4352, 7.4349, 7.4347, 7.4363, 7.4362, 7.4412, 7.4418, 7.4416, 7.4413, 7.4419, 7.4425, 7.4431, 7.4427, 7.4443, 7.4439, 7.4428, 7.4425, 7.4431, 7.4436, 7.4432, 7.4429, 7.4425, 7.4422, 7.4418, 7.4424, 7.442, 7.4423, 7.4419, 7.4416, 7.4413, 7.4409, 7.4398, 7.4395, 7.4391, 7.4389, 7.4395, 7.4391, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4372, 7.4369, 7.4375, 7.4381, 7.4387, 7.4403, 7.4418, 7.4417, 7.4414, 7.4411, 7.4408, 7.4406, 7.4403, 7.44, 7.4396, 7.4405, 7.4403, 7.44, 7.4398, 7.4395, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4387, 7.4394, 7.439, 7.4387, 7.4393, 7.4399, 7.4405, 7.4401, 7.4399, 7.4395, 7.4391, 7.4393, 7.4407, 7.4403, 7.4402, 7.44, 7.4397, 7.4396, 7.4401, 7.44, 7.4406, 7.4402, 7.4399, 7.4399, 7.4409, 7.4405, 7.4401, 7.4399, 7.4395, 7.4426, 7.4422, 7.4424, 7.4423, 7.4429, 7.4426, 7.4431, 7.4435, 7.4433, 7.4429, 7.4426, 7.4422, 7.4418, 7.4415, 7.4412, 7.441, 7.4415, 7.4412, 7.441, 7.4409, 7.4408, 7.4414, 7.442, 7.4416, 7.4413, 7.4409, 7.4407, 7.4404, 7.4401, 7.4398, 7.4395, 7.4392, 7.4407, 7.4406, 7.4412, 7.4418, 7.4416, 7.4414, 7.4411, 7.4416, 7.4413, 7.441, 7.4407, 7.4404, 7.4401, 7.44, 7.4397, 7.4394, 7.44, 7.4397, 7.4397, 7.4405, 7.4402, 7.4399, 7.4405, 7.4402, 7.44, 7.4406, 7.4403, 7.44, 7.4405, 7.4402, 7.4408, 7.4414, 7.4413, 7.441, 7.4408, 7.4414, 7.4411, 7.4416, 7.4412, 7.4409, 7.4406, 7.4404, 7.441, 7.441, 7.4416, 7.4452, 7.4448, 7.4454, 7.4452, 7.4449, 7.4446, 7.4465, 7.4462, 7.4459, 7.4465, 7.4471, 7.4468, 7.4465, 7.4462, 7.446, 7.4457, 7.4463, 7.447, 7.4474, 7.4473, 7.447, 7.4466, 7.4462, 7.4459, 7.4457, 7.4453, 7.4453, 7.445, 7.4448, 7.4454, 7.4451, 7.4448, 7.4444, 7.4441, 7.4439, 7.4445, 7.4442, 7.4441, 7.4438, 7.4444, 7.4442, 7.444, 7.4437, 7.4444, 7.4443, 7.4441, 7.4457, 7.4457, 7.4463, 7.4469, 7.4471, 7.4471, 7.447, 7.447, 7.4469, 7.4468, 7.4465, 7.4462, 7.4468, 7.4467, 7.4464, 7.4463, 7.4469, 7.4476, 7.4473, 7.4471, 7.4469, 7.4467, 7.4466, 7.4465, 7.4464, 7.4461, 7.4461, 7.4468, 7.4468, 7.4468, 7.4475, 7.4475, 7.4481, 7.4478, 7.4478, 7.4475, 7.4475, 7.4476, 7.4476, 7.4473, 7.447, 7.4467, 7.4466, 7.4463, 7.4461, 7.4462, 7.4478, 7.4477, 7.4474, 7.4471, 7.4478, 7.4476, 7.4483, 7.4472, 7.4472, 7.4469, 7.4475, 7.4472, 7.4478, 7.4475], '192.168.122.112': [5.4374, 5.6017, 5.5869, 5.5019, 5.5944, 5.6154, 5.7422, 5.7489, 6.3936, 6.3733, 6.3329, 6.3161, 6.3314, 6.2822, 6.2252, 6.2252, 6.237, 6.2496, 6.4751, 6.4505, 6.6715, 6.6209, 6.5924, 6.5475, 6.7619, 6.761, 6.717, 6.8626, 6.83, 6.7829, 6.7566, 6.891, 6.8432, 6.8105, 6.7956, 6.9084, 6.8882, 6.8519, 6.8153, 6.7788, 7.1727, 7.4555, 7.4147, 7.3723, 7.3271, 7.4084, 7.482, 7.4378, 7.3971, 7.3547, 7.3158, 7.2956, 7.2586, 7.2379, 7.3075, 7.2785, 7.3428, 7.4198, 7.4766, 7.4463, 7.4149, 7.3906, 7.3612, 7.4171, 7.3868, 7.3541, 7.3246, 7.2286, 7.2002, 7.1848, 7.169, 7.2183, 7.1931, 7.1804, 7.0927, 7.0706, 7.3733, 7.3644, 7.3458, 7.3866, 7.3607, 7.3378, 7.3149, 7.2914, 7.3396, 7.3199, 7.2985, 7.3379, 7.3217, 7.3615, 7.3411, 7.3315, 7.314, 7.2936, 7.2283, 7.2083, 7.189, 7.1706, 7.157, 7.1395, 7.1212, 7.1602, 7.1437, 7.1314, 7.1183, 7.1527, 7.1882, 7.1784, 7.1622, 7.1491, 7.1806, 7.1693, 7.1549, 7.1424, 7.1309, 7.1277, 7.1132, 7.0982, 7.0849, 7.0761, 7.0657, 7.0588, 7.0495, 7.0424, 6.9899, 6.9785, 6.9694, 6.9579, 6.9475, 6.9425, 6.975, 6.99, 6.9825, 6.9699, 7.0021, 6.991, 6.9816, 6.9705, 6.9618, 6.9886, 6.9799, 6.9684, 6.9654, 6.9562, 6.984, 6.9782, 6.9758, 6.9673, 6.9563, 6.9573, 6.9515, 6.9547, 6.9463, 7.0111, 7.033, 7.0239, 7.0819, 7.0705, 7.0593, 7.0824, 7.0745, 7.0636, 7.0535, 7.0468, 7.0378, 7.027, 7.0494, 7.0728, 7.0636, 7.0874, 7.0801, 7.1035, 7.1255, 7.1154, 7.1052, 7.1266, 7.1209, 7.145, 7.1356, 7.1286, 7.1195, 7.1103, 7.1014, 7.0958, 7.0859, 7.0796, 7.073, 7.0661, 7.0892, 7.0822, 7.1041, 7.0981, 7.0966, 7.0872, 7.0833, 7.1043, 7.2041, 7.1965, 7.1868, 7.1785, 7.1707, 7.1608, 7.1563, 7.1816, 7.1744, 7.1686, 7.1605, 7.1536, 7.1465, 7.141, 7.1583, 7.176, 7.1719, 7.166, 7.1603, 7.1515, 7.1434, 7.1362, 7.1428, 7.1597, 7.2515, 7.3986, 7.3893, 7.3832, 7.4478, 7.4632, 7.454, 7.4464, 7.4377, 7.4314, 7.4262, 7.4444, 7.4359, 7.4273, 7.4189, 7.4139, 7.428, 7.4192, 7.4119, 7.4288, 7.4232, 7.4175, 7.41, 7.4026, 7.3968, 7.3908, 7.3842, 7.3975, 7.4097, 7.4034, 7.4576, 7.4716, 7.4857, 7.4996, 7.5967, 7.6107, 7.6022, 7.6155, 7.6092, 7.6008, 7.613, 7.6059, 7.5992, 7.5723, 7.5644, 7.5575, 7.5722, 7.5655, 7.5798, 7.5726, 7.5847, 7.5985, 7.6123, 7.6072, 7.6013, 7.5929, 7.5846, 7.5784, 7.5703, 7.5626, 7.5742, 7.5855, 7.5798, 7.5724, 7.6023, 7.5995, 7.5935, 7.5879, 7.5995, 7.5923, 7.5849, 7.5962, 7.5912, 7.5848, 7.577, 7.5714, 7.5654, 7.5836, 7.5774, 7.5703, 7.5656, 7.5604, 7.5531, 7.5492, 7.544, 7.5544, 7.5649, 7.5593, 7.5692, 7.5787, 7.5718, 7.565, 7.5582, 7.5528, 7.5457, 7.5388, 7.5521, 7.5335, 7.5441, 7.5373, 7.5348, 7.5298, 7.5243, 7.5186, 7.4971, 7.4904, 7.484, 7.4935, 7.4873, 7.4811, 7.4759, 7.471, 7.4816, 7.4756, 7.47, 7.4664, 7.4609, 7.4563, 7.4512, 7.4447, 7.4403, 7.4359, 7.4302, 7.4271, 7.4212, 7.4307, 7.4256, 7.4212, 7.4175, 7.4136, 7.4078, 7.403, 7.3989, 7.4786, 7.4882, 7.4829, 7.4926, 7.5129, 7.5066, 7.5004, 7.494, 7.4893, 7.4847, 7.4804, 7.4804, 7.4892, 7.498, 7.4921, 7.4864, 7.4804, 7.4802, 7.4896, 7.4983, 7.4932, 7.4898, 7.4989, 7.4934, 7.492, 7.4881, 7.4855, 7.5247, 7.5206, 7.5028, 7.5119, 7.5242, 7.52, 7.5155, 7.5111, 7.493, 7.4887, 7.4844, 7.48, 7.4767, 7.4715, 7.468, 7.4637, 7.4471, 7.4646, 7.4726, 7.4822, 7.4768, 7.4714, 7.48, 7.4745, 7.4707, 7.4669, 7.4748, 7.4718, 7.4678, 7.4627, 7.4579, 7.4526, 7.4483, 7.4431, 7.4519, 7.4469, 7.4437, 7.452, 7.4529, 7.4482, 7.4446, 7.4425, 7.4465, 7.4427, 7.4386, 7.4465, 7.4421, 7.4392, 7.4345, 7.4302, 7.4267, 7.4239, 7.4212, 7.4169, 7.4259, 7.4345, 7.4391, 7.4475, 7.4426, 7.4281, 7.4253, 7.4224, 7.4179, 7.4376, 7.4331, 7.4407, 7.4365, 7.4734, 7.4689, 7.4655, 7.4634, 7.4597, 7.4558, 7.4626, 7.4592, 7.4473, 7.4426, 7.4389, 7.4358, 7.4316, 7.427, 7.4223, 7.4189, 7.4258, 7.4212, 7.4396, 7.436, 7.4541, 7.4529, 7.4978, 7.4986, 7.4949, 7.4908, 7.4874, 7.4838, 7.4806, 7.4667, 7.4739, 7.4707, 7.4719, 7.4794, 7.4755, 7.4724, 7.469, 7.4574, 7.4547, 7.451, 7.4467, 7.4423, 7.4487, 7.4445, 7.4424, 7.4412, 7.4378, 7.4338, 7.4295, 7.4255, 7.4219, 7.4342, 7.4412, 7.4642, 7.4731, 7.4794, 7.4755, 7.4712, 7.4679, 7.4748, 7.4879, 7.4843, 7.4808, 7.4765, 7.4737, 7.4701, 7.4676, 7.4738, 7.4708, 7.4668, 7.4744, 7.4708, 7.4715, 7.4684, 7.4645, 7.4609, 7.4676, 7.4685, 7.4758, 7.473, 7.4703, 7.483, 7.4878, 7.4949, 7.493, 7.4897, 7.4857, 7.4834, 7.4796, 7.4672, 7.4832, 7.4791, 7.4757, 7.4839, 7.4825, 7.4785, 7.4761, 7.4728, 7.4797, 7.4764, 7.473, 7.4693, 7.4654, 7.4715, 7.4683, 7.4643, 7.463, 7.4592, 7.4557, 7.461, 7.4573, 7.4547, 7.463, 7.4595, 7.4576, 7.454, 7.4503, 7.4558, 7.4531, 7.4502, 7.4466, 7.4464, 7.4429, 7.4399, 7.446, 7.4521, 7.4483, 7.4537, 7.4506, 7.4473, 7.4435, 7.4406, 7.4291, 7.4352, 7.441, 7.4383, 7.4347, 7.4325, 7.4298, 7.4307, 7.437, 7.4335, 7.438, 7.4352, 7.4323, 7.4291, 7.4353, 7.4411, 7.4392, 7.4592, 7.4741, 7.4625, 7.4769, 7.4735, 7.4705, 7.4769, 7.4737, 7.4706, 7.5045, 7.5109, 7.5301, 7.5273, 7.5251, 7.5232, 7.5196, 7.51, 7.5169, 7.5138, 7.5109, 7.5085, 7.5067, 7.5037, 7.5004, 7.4983, 7.4962, 7.4932, 7.49, 7.4864, 7.4929, 7.4902, 7.5047, 7.5021, 7.5002, 7.4972, 7.4961, 7.4927, 7.498, 7.5036, 7.5007, 7.4974, 7.4957, 7.4928, 7.49, 7.4867, 7.4918, 7.5202, 7.5172, 7.5141, 7.5148, 7.5248, 7.5215, 7.5268, 7.5232, 7.5278, 7.5244, 7.5213, 7.5179, 7.5145, 7.5113, 7.516, 7.5127, 7.5342, 7.534, 7.54, 7.5378, 7.5345, 7.5322, 7.5311, 7.5287, 7.5288, 7.5261, 7.5336, 7.5312, 7.529, 7.5263, 7.5321, 7.5288, 7.5269, 7.5235, 7.5206, 7.5176, 7.5145, 7.5121, 7.5166, 7.5213, 7.5218, 7.5269, 7.5237, 7.5288, 7.5259, 7.523, 7.5202, 7.5172, 7.5217, 7.5186, 7.5231, 7.5259, 7.5307, 7.5279, 7.5262, 7.5233, 7.5201, 7.5184, 7.5155, 7.5125, 7.5098, 7.507, 7.5054, 7.5106, 7.5076, 7.5052, 7.5096, 7.4997, 7.4972, 7.4949, 7.4919, 7.4901, 7.4871, 7.4854, 7.4829, 7.4918, 7.4966, 7.4935, 7.4908, 7.4878, 7.4853, 7.4833, 7.4807, 7.478, 7.4754, 7.4733, 7.4703, 7.4673, 7.465, 7.4634, 7.4606, 7.4576, 7.4561, 7.4567, 7.4648, 7.4718, 7.4765, 7.4814, 7.4788, 7.4762, 7.4811, 7.4796, 7.4769, 7.4752, 7.4729, 7.5075, 7.5191, 7.5263, 7.5251, 7.5221, 7.5193, 7.5163, 7.5149, 7.5124, 7.5034, 7.5006, 7.4978, 7.495, 7.4928, 7.4899, 7.4869, 7.4845, 7.4893, 7.4937, 7.4946, 7.4917, 7.4964, 7.494, 7.4914, 7.4899, 7.487, 7.485, 7.4821, 7.4794, 7.4774, 7.4756, 7.4794, 7.4768, 7.4742, 7.4745, 7.4718, 7.469, 7.4667, 7.4641, 7.4624, 7.4601, 7.4643, 7.475, 7.4724, 7.4826, 7.4801, 7.4775, 7.475, 7.4737, 7.4783, 7.4756, 7.4801, 7.4776, 7.4755, 7.473, 7.4707, 7.4818, 7.4927, 7.5235, 7.5221, 7.5212, 7.5191, 7.5168, 7.5208, 7.5249, 7.5241, 7.5223, 7.5264, 7.5249, 7.5233, 7.5208, 7.5183, 7.516, 7.5137, 7.5115, 7.5087, 7.5068, 7.5045, 7.5026, 7.501, 7.4989, 7.4978, 7.4951, 7.4928, 7.4906, 7.4906, 7.4914, 7.4891, 7.4929, 7.4969, 7.5007, 7.5045, 7.5019, 7.4998, 7.4988, 7.4962, 7.4939, 7.4915, 7.4964, 7.4944, 7.4919, 7.4964, 7.4999, 7.4972, 7.4946, 7.4928, 7.4906, 7.4893, 7.4935, 7.4913, 7.4831, 7.4806, 7.4783, 7.4762, 7.4742, 7.4716, 7.469, 7.4672, 7.4649, 7.4631, 7.4606, 7.4603, 7.4589, 7.4567, 7.4625, 7.4602, 7.4578, 7.456, 7.4543, 7.4467, 7.4447, 7.4423, 7.4463, 7.4454, 7.4501, 7.4427, 7.4403, 7.4387, 7.4369, 7.4358, 7.4334, 7.4311, 7.4236, 7.4225, 7.4208, 7.4196, 7.4238, 7.4224, 7.4202, 7.418, 7.4157, 7.4134, 7.4174, 7.4154, 7.4136, 7.4117, 7.4106, 7.4087, 7.4076, 7.4052, 7.403, 7.4007, 7.3989, 7.3973, 7.4011, 7.3998, 7.3974, 7.4013, 7.3995, 7.3978, 7.3957, 7.3885, 7.3865, 7.3843, 7.383, 7.3807, 7.3791, 7.377, 7.3755, 7.3792, 7.378, 7.3761, 7.3777, 7.3757, 7.3736, 7.3747, 7.3781, 7.3769, 7.3748, 7.3726, 7.3707, 7.3697, 7.3676, 7.3658, 7.3638, 7.3772, 7.392, 7.39, 7.3934, 7.3913, 7.3955, 7.3935, 7.3931, 7.3871, 7.3909, 7.3888, 7.3868, 7.3847, 7.3838, 7.3818, 7.3799, 7.384, 7.3826, 7.3812, 7.3802, 7.39, 7.388, 7.3862, 7.384, 7.3822, 7.3805, 7.3795, 7.3773, 7.3754, 7.3905, 7.389, 7.3872, 7.3855, 7.3951, 7.396, 7.3906, 7.4011, 7.4104, 7.4114, 7.4096, 7.4089, 7.4074, 7.4117, 7.4153, 7.4133, 7.4079, 7.4149, 7.4186, 7.4171, 7.4217, 7.4203, 7.4244, 7.4278, 7.4257, 7.424, 7.4221, 7.42, 7.4189, 7.4171, 7.4339, 7.4319, 7.435, 7.4329, 7.4317, 7.4297, 7.4283, 7.4316, 7.4349, 7.4332, 7.4316, 7.4296, 7.4276, 7.4255, 7.4237, 7.422, 7.4211, 7.419, 7.417, 7.4153, 7.4138, 7.4119, 7.4153, 7.4133, 7.4114, 7.4096, 7.4079, 7.4111, 7.4094, 7.4032, 7.3964, 7.3952, 7.3933, 7.3912, 7.3895, 7.3881, 7.3865, 7.3898, 7.3931, 7.3917, 7.3897, 7.3879, 7.3859, 7.3894, 7.3875, 7.3861, 7.3797, 7.3779, 7.3814, 7.3795, 7.3776, 7.3756, 7.3742, 7.3795, 7.3777, 7.376, 7.379, 7.382, 7.38, 7.378, 7.376, 7.3747, 7.3729, 7.3667, 7.369, 7.3763, 7.3745, 7.3726, 7.3716, 7.3746, 7.3729, 7.3716, 7.3749, 7.373, 7.3713, 7.3693, 7.3674, 7.3657, 7.3642, 7.3585, 7.357, 7.3602, 7.3633, 7.362, 7.3607, 7.36, 7.3585, 7.3617, 7.3605, 7.3586, 7.3567, 7.3562, 7.3543, 7.3525, 7.3507, 7.3498, 7.348, 7.3462, 7.3446, 7.3433, 7.3421, 7.3404, 7.3393, 7.3422, 7.3406, 7.3439, 7.3385, 7.3368, 7.3309, 7.3296, 7.3295, 7.328, 7.3263, 7.3254, 7.3237, 7.3221, 7.3207, 7.3285, 7.3275, 7.3462, 7.3448, 7.3387, 7.3369, 7.3398, 7.3386, 7.3374, 7.3403, 7.3385, 7.3419, 7.3407, 7.3396, 7.3381, 7.3413, 7.34, 7.3389, 7.3377, 7.3405, 7.339, 7.3372, 7.3353, 7.3337, 7.337, 7.336, 7.3342, 7.3328, 7.341, 7.3393, 7.3377, 7.3363, 7.3365, 7.335, 7.3334, 7.3319, 7.3311, 7.33, 7.3241, 7.3225, 7.3211, 7.3194, 7.3178, 7.3161, 7.3103, 7.3098, 7.3085, 7.3069, 7.3052, 7.3086, 7.3073, 7.3057, 7.3042, 7.3032, 7.3016, 7.3044, 7.3074, 7.3057, 7.3084, 7.3069, 7.3064, 7.3092, 7.3168, 7.315, 7.3133, 7.3122, 7.3106, 7.3134, 7.3123, 7.3152, 7.3181, 7.3168, 7.3164, 7.3152, 7.314, 7.3124, 7.3109, 7.3136, 7.312, 7.315, 7.3209, 7.3193, 7.3175, 7.3159, 7.3146, 7.3131, 7.3075, 7.306, 7.3051, 7.3039, 7.3025, 7.297, 7.2993, 7.2986, 7.2969, 7.2914, 7.2903, 7.2928, 7.2913, 7.2898, 7.2925, 7.2909, 7.2939, 7.2922, 7.2941, 7.2938, 7.2924, 7.291, 7.2898, 7.2884, 7.2879, 7.2829, 7.282, 7.2851, 7.2835, 7.2819, 7.2826, 7.2813, 7.2798, 7.2787, 7.2772, 7.2759, 7.2755, 7.275, 7.2736, 7.2723, 7.271, 7.2699, 7.2685, 7.2673, 7.2702, 7.273, 7.2766, 7.2753, 7.2738, 7.2769, 7.2795, 7.2782, 7.2768, 7.2752, 7.2738, 7.2726, 7.2712, 7.2699, 7.2685, 7.267, 7.2655, 7.2737, 7.2764, 7.2752, 7.2782, 7.2768, 7.2798, 7.2787, 7.2773, 7.2763, 7.2751, 7.2738, 7.2724, 7.2708, 7.2692, 7.2678, 7.2671, 7.2657, 7.2648, 7.2645, 7.2791, 7.2775, 7.2761, 7.2788, 7.2774, 7.2728, 7.2714, 7.2699, 7.2686, 7.2671, 7.262, 7.2608, 7.2594, 7.2581, 7.2567, 7.2557, 7.2541, 7.2526, 7.2515, 7.2504, 7.2529, 7.2522, 7.2546, 7.2547, 7.2536, 7.2528, 7.2557, 7.2584, 7.2629, 7.2655, 7.2642, 7.263, 7.266, 7.265, 7.268, 7.2676, 7.2694, 7.2684, 7.2672, 7.2659, 7.2646, 7.2633, 7.2619, 7.2646, 7.263, 7.2618, 7.2643, 7.2629, 7.2615, 7.2606, 7.2649, 7.2674, 7.2721, 7.2707, 7.2694, 7.2684, 7.2692, 7.272, 7.2758, 7.2743, 7.2734, 7.272, 7.2713, 7.2779, 7.2802, 7.2956, 7.3023, 7.3052, 7.304, 7.3065, 7.3057, 7.3083, 7.3035, 7.3021, 7.3049, 7.3035, 7.3105, 7.31, 7.3093, 7.3122, 7.3147, 7.3133, 7.3121, 7.3125, 7.3111, 7.3136, 7.3163, 7.3149, 7.314, 7.3173, 7.3158, 7.3144, 7.3131, 7.3124, 7.3109, 7.3098, 7.3123, 7.3108, 7.3096, 7.3083, 7.3072, 7.3059, 7.3051, 7.3037, 7.306, 7.3051, 7.3036, 7.3023, 7.3009, 7.3, 7.2989, 7.2979, 7.2966, 7.2957, 7.2947, 7.2938, 7.2932, 7.2924, 7.2913, 7.2899, 7.2889, 7.2879, 7.2865, 7.2853, 7.2841, 7.283, 7.2817, 7.2803, 7.283, 7.2818, 7.2811, 7.2799, 7.2787, 7.2809, 7.2796, 7.2782, 7.2769, 7.2796, 7.2783, 7.2774, 7.2765, 7.2797, 7.2832, 7.2818, 7.2847, 7.2837, 7.2827, 7.2817, 7.2841, 7.2832, 7.2818, 7.2845, 7.2833, 7.2821, 7.2822, 7.2808, 7.2854, 7.2842, 7.2833, 7.2833, 7.2825, 7.2811, 7.2799, 7.2787, 7.2789, 7.2777, 7.2764, 7.2754, 7.2741, 7.2732, 7.2759, 7.2746, 7.2769, 7.2794, 7.2797, 7.2788, 7.2809, 7.2797, 7.2822, 7.281, 7.2798, 7.2786, 7.2778, 7.2767, 7.2758, 7.2749, 7.2739, 7.2763, 7.2752, 7.2747, 7.2736, 7.276, 7.2748, 7.2771, 7.2763, 7.275, 7.2736, 7.2751, 7.2748, 7.2738, 7.2729, 7.2754, 7.2743, 7.2733, 7.2726, 7.2766, 7.2753, 7.2744, 7.2807, 7.2793, 7.2821, 7.2858, 7.2855, 7.2844, 7.287, 7.2864, 7.2855, 7.2844, 7.2836, 7.2824, 7.2842, 7.2798, 7.279, 7.2782, 7.277, 7.2757, 7.2744, 7.2768, 7.2792, 7.278, 7.2775, 7.2763, 7.2793, 7.2818, 7.2806, 7.283, 7.2818, 7.2809, 7.2799, 7.2786, 7.281, 7.2834, 7.2861, 7.285, 7.2838, 7.2826, 7.2817, 7.2804, 7.2798, 7.2791, 7.2815, 7.2802, 7.2826, 7.2849, 7.2837, 7.2824, 7.2815, 7.2805, 7.2865, 7.2853, 7.2843, 7.2867, 7.2889, 7.2877, 7.2867, 7.2857, 7.2879, 7.2867, 7.2866, 7.2858, 7.2847, 7.2869, 7.286, 7.2905, 7.2974, 7.2968, 7.299, 7.3013, 7.3037, 7.3024, 7.3012, 7.3005, 7.2993, 7.2987, 7.2981, 7.3004, 7.2992, 7.298, 7.2973, 7.2996, 7.299, 7.2948, 7.2972, 7.299, 7.2981, 7.2968, 7.299, 7.2978, 7.3002, 7.2991, 7.3086, 7.3074, 7.3084, 7.3109, 7.3098, 7.3091, 7.308, 7.3102, 7.3111, 7.3098, 7.3086, 7.3109, 7.3098, 7.3121, 7.314, 7.316, 7.3147, 7.3135, 7.3094, 7.3103, 7.3091, 7.3081, 7.3069, 7.3091, 7.3115, 7.3108, 7.313, 7.3121, 7.311, 7.31, 7.3088, 7.3077, 7.3067, 7.3055, 7.3044, 7.3055, 7.3076, 7.3133, 7.3155, 7.3179, 7.3167, 7.3158, 7.318, 7.3239, 7.3227, 7.3248, 7.3293, 7.3292, 7.3313, 7.3301, 7.3295, 7.3285, 7.3276, 7.3266, 7.3288, 7.3308, 7.3328, 7.3318, 7.3309, 7.3299, 7.329, 7.328, 7.3269, 7.3259, 7.3249, 7.3279, 7.3267, 7.33, 7.3292, 7.3293, 7.3282, 7.3276, 7.3297, 7.3316, 7.3337, 7.3359, 7.3352, 7.3341, 7.3361, 7.3349, 7.3341, 7.333, 7.332, 7.331, 7.3304, 7.3296, 7.3284, 7.3274, 7.3295, 7.3284, 7.3306, 7.3296, 7.3286, 7.3275, 7.3263, 7.3255, 7.3278, 7.3268, 7.3258, 7.3252, 7.324, 7.3234, 7.3224, 7.3213, 7.3204, 7.3197, 7.3192, 7.3183, 7.3173, 7.3162, 7.3153, 7.3176, 7.3168, 7.3156, 7.3149, 7.3137, 7.3129, 7.3149, 7.3137, 7.3129, 7.3119, 7.314, 7.3129, 7.3125, 7.3115, 7.3108, 7.31, 7.3091, 7.3079, 7.3043, 7.3065, 7.3068, 7.3056, 7.305, 7.3039, 7.3034, 7.3025, 7.3016, 7.3008, 7.2969, 7.2958, 7.295, 7.2944, 7.294, 7.2932, 7.2952, 7.2948, 7.2938, 7.2932, 7.292, 7.2931, 7.2985, 7.3007, 7.3001, 7.2989, 7.2981, 7.3, 7.2991, 7.3012, 7.3001, 7.2989, 7.2984, 7.2975, 7.2966, 7.2955, 7.2948, 7.2937, 7.2929, 7.2926, 7.2918, 7.2909, 7.2901, 7.29, 7.2891, 7.2911, 7.2901, 7.289, 7.2884, 7.288, 7.2869, 7.2858, 7.2847, 7.2849, 7.2868, 7.2859, 7.2848, 7.2838, 7.2831, 7.282, 7.2818, 7.2807, 7.2816, 7.2807, 7.28, 7.2789, 7.2781, 7.28, 7.2789, 7.2781, 7.2773, 7.2792, 7.2785, 7.2782, 7.2773, 7.2768, 7.2786, 7.2784, 7.2804, 7.2794, 7.2784, 7.2785, 7.2781, 7.2801, 7.2794, 7.2784, 7.2821, 7.2841, 7.2833, 7.2852, 7.2851, 7.2869, 7.2918, 7.2882, 7.2873, 7.2891, 7.2883, 7.3015, 7.3004, 7.3022, 7.3015, 7.3005, 7.3023, 7.3018, 7.3014, 7.3006, 7.3003, 7.2992, 7.2985, 7.2975, 7.3014, 7.3005, 7.2995, 7.2987, 7.3006, 7.2995, 7.2991, 7.2981, 7.3009, 7.2999, 7.3019, 7.3012, 7.3005, 7.2996, 7.3036, 7.3027, 7.3018, 7.301, 7.3005, 7.2998, 7.2988, 7.3007, 7.2996, 7.2999, 7.3019, 7.3011, 7.3003, 7.2997, 7.3016, 7.3011, 7.3005, 7.2995, 7.2984, 7.3004, 7.2993, 7.2987, 7.2977, 7.2996, 7.3014, 7.3003, 7.2994, 7.2986, 7.2976, 7.2995, 7.3017, 7.2989, 7.2963, 7.2982, 7.3042, 7.3061, 7.3109, 7.3099, 7.3113, 7.3103, 7.3095, 7.3061, 7.3051, 7.3041, 7.3035, 7.3053, 7.3071, 7.3063, 7.3054, 7.3045, 7.3124, 7.3113, 7.3103, 7.3122, 7.3115, 7.3108, 7.3187, 7.3265, 7.323, 7.3247, 7.3239, 7.3258, 7.3248, 7.3266, 7.3284, 7.3274, 7.3264, 7.3258, 7.3276, 7.3305, 7.3296, 7.3316, 7.3347, 7.3338, 7.3328, 7.3322, 7.3316, 7.3339, 7.3305, 7.3351, 7.3343, 7.3333, 7.3358, 7.335, 7.3366, 7.3356, 7.3346, 7.3336, 7.3327, 7.332, 7.331, 7.3304, 7.3301, 7.3295, 7.3314, 7.3333, 7.3323, 7.334, 7.3335, 7.3329, 7.3346, 7.3365, 7.3384, 7.3403, 7.3395, 7.3413, 7.3403, 7.3393, 7.3383, 7.3378, 7.337, 7.3364, 7.3355, 7.3349, 7.3342, 7.3337, 7.3327, 7.3347, 7.334, 7.3331, 7.3347, 7.3337, 7.3329, 7.3352, 7.3343, 7.3339, 7.3335, 7.333, 7.3347, 7.3338, 7.3328, 7.3345, 7.3335, 7.3351, 7.3342, 7.3335, 7.3327, 7.3318, 7.3334, 7.3324, 7.3315, 7.3332, 7.3323, 7.3342, 7.3332, 7.3299, 7.3292, 7.331, 7.331, 7.3303, 7.3296, 7.3314, 7.3305, 7.3295, 7.3368, 7.3414, 7.3404, 7.3394, 7.3386, 7.3404, 7.342, 7.341, 7.34, 7.3417, 7.3409, 7.338, 7.3399, 7.3414, 7.3406, 7.3398, 7.3393, 7.3411, 7.3403, 7.3394, 7.3411, 7.3402, 7.3369, 7.3415, 7.3381, 7.3468, 7.3462, 7.3452, 7.347, 7.346, 7.3477, 7.3444, 7.3461, 7.3454, 7.3499, 7.3489, 7.3506, 7.3523, 7.3513, 7.3504, 7.3494, 7.3489, 7.3479, 7.3495, 7.3485, 7.3476, 7.3482, 7.3474, 7.3465, 7.3459, 7.3475, 7.3521, 7.3515, 7.3488, 7.3479, 7.3469, 7.3513, 7.3508, 7.3655, 7.3645, 7.366, 7.3657, 7.3649, 7.3644, 7.3636, 7.3666, 7.3668, 7.3725, 7.3725, 7.3716, 7.3707, 7.3699, 7.3718, 7.3709, 7.3738, 7.3733, 7.375, 7.374, 7.3732, 7.3724, 7.3714, 7.3705, 7.3722, 7.3739, 7.3734, 7.3734, 7.3751, 7.3772, 7.3769, 7.3762, 7.3754, 7.375, 7.3759, 7.3758, 7.3753, 7.3745, 7.3737, 7.3729, 7.3719, 7.3709, 7.3735, 7.3702, 7.3693, 7.371, 7.3727, 7.3741, 7.376, 7.3751, 7.3741, 7.3709, 7.37, 7.3691, 7.3684, 7.3701, 7.3691, 7.3708, 7.3698, 7.3739, 7.373, 7.3721, 7.3715, 7.3707, 7.37, 7.3708, 7.3725, 7.3719, 7.371, 7.3706, 7.3696, 7.3688, 7.3681, 7.3675, 7.3667, 7.366, 7.3651, 7.3668, 7.3659, 7.3652, 7.3642, 7.3638, 7.3607, 7.3606, 7.3622, 7.3613, 7.3606, 7.3623, 7.364, 7.3656, 7.3672, 7.3663, 7.3679, 7.3669, 7.3661, 7.3654, 7.3671, 7.3662, 7.3654, 7.3644, 7.3637, 7.3628, 7.362, 7.3638, 7.3628, 7.3669, 7.3758, 7.3752, 7.3769, 7.378, 7.3775, 7.377, 7.3763, 7.378, 7.3774, 7.3767, 7.3762, 7.3752, 7.3745, 7.3736, 7.3726, 7.3718, 7.371, 7.3702, 7.3717, 7.371, 7.3726, 7.3745, 7.3761, 7.3754, 7.3773, 7.3789, 7.3781, 7.3751, 7.3743, 7.3735, 7.3728, 7.3721, 7.3712, 7.3702, 7.3699, 7.3692, 7.3711, 7.3726, 7.3717, 7.3708, 7.3724, 7.374, 7.3708, 7.37, 7.3691, 7.3766, 7.376, 7.3751, 7.3766, 7.3758, 7.375, 7.3747, 7.3741, 7.3738, 7.3732, 7.3725, 7.3741, 7.3733, 7.3725, 7.3718, 7.3711, 7.3702, 7.3692, 7.3683, 7.3675, 7.3676, 7.3667, 7.3686, 7.3705, 7.368, 7.3684, 7.3678, 7.3673, 7.37, 7.3693, 7.3684, 7.3675, 7.369, 7.368, 7.3674, 7.3729, 7.372, 7.3736, 7.373, 7.3745, 7.3752, 7.3744, 7.3735, 7.3728, 7.3722, 7.3714, 7.3707, 7.3698, 7.3691, 7.3684, 7.3675, 7.369, 7.3684, 7.3676, 7.3668, 7.3661, 7.3652, 7.3666, 7.3657, 7.3652, 7.3729, 7.3719, 7.371, 7.3701, 7.3694, 7.3685, 7.3676, 7.3668, 7.3664, 7.3657, 7.3672, 7.3666, 7.368, 7.3671, 7.3663, 7.3654, 7.3646, 7.3638, 7.3629, 7.3622, 7.3614, 7.3629, 7.36, 7.3592, 7.3584, 7.3608, 7.3637, 7.365, 7.3641, 7.3633, 7.3648, 7.3643, 7.3661, 7.3676, 7.3667, 7.3663, 7.3656, 7.3648, 7.3639, 7.3632, 7.3623, 7.3616, 7.3615, 7.3607, 7.3598, 7.3591, 7.3606, 7.3599, 7.3593, 7.359, 7.3583, 7.3581, 7.3596, 7.3615, 7.3613, 7.3606, 7.3702, 7.377, 7.3768, 7.376, 7.3752, 7.3747, 7.3738, 7.3732, 7.3723, 7.3715, 7.3708, 7.3724, 7.3719, 7.3734, 7.3727, 7.372, 7.3713, 7.3727, 7.3719, 7.3714, 7.3709, 7.3704, 7.3721, 7.3714, 7.3732, 7.3725, 7.3718, 7.3712, 7.3726, 7.372, 7.3717, 7.3709, 7.3701, 7.372, 7.3735, 7.3727, 7.3722, 7.3715, 7.3707, 7.3679, 7.3672, 7.3666, 7.3667, 7.3661, 7.366, 7.3655, 7.3647, 7.3756, 7.3748, 7.3742, 7.3758, 7.375, 7.3741, 7.3733, 7.3748, 7.3764, 7.3768, 7.376, 7.3815, 7.3829, 7.3841, 7.3848, 7.384, 7.3878, 7.3879, 7.3872, 7.3866, 7.386, 7.3878, 7.3872, 7.3849, 7.3843, 7.3835, 7.3837, 7.3852, 7.3844, 7.3839, 7.384, 7.3841, 7.3843, 7.3834, 7.3852, 7.386, 7.3853, 7.3867, 7.3881, 7.3875, 7.3889, 7.3881, 7.3878, 7.387, 7.3863, 7.3863, 7.3879, 7.3872, 7.3863, 7.3864, 7.3857, 7.3835, 7.3855, 7.3848, 7.3841, 7.3834, 7.385, 7.3953, 7.3945, 7.3974, 7.3966, 7.3983, 7.4022, 7.4016, 7.4008, 7.4001, 7.4002, 7.4008, 7.4, 7.3996, 7.3988, 7.398, 7.4006, 7.3997, 7.3989, 7.3984, 7.3975, 7.3967, 7.3959, 7.3931, 7.3925, 7.3919, 7.3933, 7.3946, 7.3942, 7.3936, 7.3931, 7.3927, 7.3948, 7.394, 7.3933, 7.3926, 7.397, 7.3963, 7.3968, 7.4051, 7.4046, 7.4038, 7.403, 7.4025, 7.4092, 7.4085, 7.4077, 7.4071, 7.4064, 7.4044, 7.4027, 7.4019, 7.4047, 7.4041, 7.4032, 7.4027, 7.4021, 7.4035, 7.4042, 7.4063, 7.4079, 7.4071, 7.4069, 7.4063, 7.4065, 7.4058, 7.4053, 7.4055, 7.4047, 7.402, 7.4013, 7.4027, 7.4029, 7.4052, 7.4048, 7.4084, 7.4077, 7.4111, 7.4126, 7.4119, 7.4093, 7.4085, 7.408, 7.4072, 7.4064, 7.4056, 7.4051, 7.4043, 7.4057, 7.4049, 7.4065, 7.4079, 7.4093, 7.4087, 7.4079, 7.4074, 7.4066, 7.408, 7.4074, 7.4066, 7.4058, 7.4162, 7.4176, 7.4173, 7.4187, 7.4178, 7.4172, 7.4167, 7.4159, 7.4174, 7.423, 7.4222, 7.4217, 7.4264, 7.4263, 7.4275, 7.4267, 7.4271, 7.4264, 7.4297, 7.4292, 7.4284, 7.4299, 7.4313, 7.433, 7.4321, 7.4315, 7.4307, 7.4298, 7.4312, 7.4325, 7.4337, 7.4372, 7.4348, 7.4341, 7.4314, 7.4306, 7.4318, 7.4309, 7.4305, 7.4298, 7.4291, 7.4287, 7.428, 7.4274, 7.4293, 7.4286, 7.4299, 7.4294, 7.4286, 7.428, 7.4274, 7.4266, 7.4288, 7.428, 7.4255, 7.4247, 7.426, 7.4251, 7.4264, 7.4276, 7.4288, 7.4284, 7.4301, 7.4306, 7.43, 7.4293, 7.4288, 7.4281, 7.4273, 7.4269, 7.426, 7.4252, 7.4265, 7.4278, 7.4254, 7.4268, 7.4281, 7.4275, 7.4267, 7.4264, 7.4258, 7.4273, 7.4266, 7.4279, 7.4275, 7.4267, 7.426, 7.4256, 7.4248, 7.424, 7.4232, 7.4245, 7.4242, 7.4256, 7.4248, 7.4261, 7.4257, 7.4252, 7.4227, 7.4222, 7.4196, 7.4204, 7.4196, 7.4188, 7.4181, 7.4155, 7.4148, 7.4143, 7.4139, 7.4132, 7.4125, 7.4118, 7.4112, 7.4124, 7.4118, 7.413, 7.4122, 7.4136, 7.4129, 7.4121, 7.4135, 7.4127, 7.4121, 7.4115, 7.4108, 7.4103, 7.4097, 7.4089, 7.4063, 7.4058, 7.4071, 7.4045, 7.4042, 7.4036, 7.4028, 7.4023, 7.4015, 7.4009, 7.4023, 7.4035, 7.4028, 7.4042, 7.4037, 7.4052, 7.4066, 7.4078, 7.4071, 7.4064, 7.4079, 7.4072, 7.4064, 7.4039, 7.4014, 7.4007, 7.3999, 7.3992, 7.3984, 7.3996, 7.399, 7.3982, 7.4002, 7.3995, 7.4006, 7.4018, 7.403, 7.4024, 7.4037, 7.403, 7.4022, 7.4014, 7.4008, 7.4001, 7.4014, 7.4028, 7.4041, 7.4054, 7.4046, 7.4039, 7.4034, 7.4031, 7.4035, 7.403, 7.4042, 7.4037, 7.4049, 7.4041, 7.4055, 7.4068, 7.4082, 7.4078, 7.4071, 7.4063, 7.4096, 7.4089, 7.4081, 7.4074, 7.4086, 7.4079, 7.4055, 7.4048, 7.4042, 7.4035, 7.4027, 7.4053, 7.4047, 7.404, 7.4052, 7.4044, 7.4039, 7.4037, 7.4032, 7.4045, 7.4058, 7.406, 7.4055, 7.4048, 7.4061, 7.4036, 7.4028, 7.4023, 7.4018, 7.4013, 7.4025, 7.4019, 7.4041, 7.4049, 7.4044, 7.4038, 7.4051, 7.4045, 7.4037, 7.4051, 7.4047, 7.4041, 7.4016, 7.4008, 7.4002, 7.4015, 7.401, 7.4003, 7.3996, 7.3992, 7.3985, 7.3979, 7.3973, 7.3967, 7.3943, 7.3941, 7.3934, 7.3929, 7.3925, 7.3918, 7.3931, 7.3923, 7.3916, 7.3929, 7.3922, 7.3919, 7.3913, 7.3905, 7.3918, 7.3911, 7.3904, 7.3917, 7.391, 7.3906, 7.3905, 7.3899, 7.3892, 7.3889, 7.3871, 7.3885, 7.3878, 7.3874, 7.3867, 7.386, 7.3854, 7.3848, 7.3843, 7.3819, 7.3813, 7.3825, 7.3818, 7.3811, 7.3824, 7.3821, 7.3834, 7.3829, 7.3824, 7.3821, 7.3814, 7.3809, 7.3837, 7.383, 7.3825, 7.3897, 7.389, 7.3883, 7.3876, 7.3873, 7.3866, 7.3859, 7.3851, 7.3846, 7.3839, 7.3873, 7.3868, 7.3861, 7.3873, 7.3865, 7.388, 7.3893, 7.3886, 7.388, 7.3873, 7.3887, 7.3879, 7.3891, 7.3955, 7.3948, 7.396, 7.3954, 7.3948, 7.3961, 7.3953, 7.3946, 7.3938, 7.3931, 7.3925, 7.3919, 7.3932, 7.3926, 7.3937, 7.3937, 7.395, 7.3944, 7.3958, 7.3972, 7.3986, 7.398, 7.3974, 7.3968, 7.398, 7.3993, 7.3991, 7.3987, 7.398, 7.3974, 7.3967, 7.397, 7.3963, 7.3957, 7.3953, 7.3947, 7.3942, 7.3954, 7.3948, 7.3941, 7.3934, 7.3946, 7.3958, 7.3952, 7.3928, 7.3923, 7.3916, 7.3911, 7.3904, 7.3917, 7.3912, 7.3907, 7.39, 7.3893, 7.3906, 7.3918, 7.393, 7.3923, 7.3917, 7.391, 7.3922, 7.3917, 7.3911, 7.3905, 7.3898, 7.3893, 7.3886, 7.3879, 7.3856, 7.3871, 7.3864, 7.3859, 7.3837, 7.3835, 7.383, 7.3807, 7.3804, 7.3798, 7.3791, 7.3768, 7.3761, 7.3775, 7.3769, 7.3763, 7.3774, 7.3769, 7.3762, 7.3757, 7.375, 7.3761, 7.3772, 7.3766, 7.3759, 7.3752, 7.3764, 7.376, 7.3771, 7.3749, 7.376, 7.3771, 7.3782, 7.3781, 7.3776, 7.3775, 7.3787, 7.3889, 7.3882, 7.3876, 7.3887, 7.3882, 7.3893, 7.3889, 7.3883, 7.3877, 7.3889, 7.3886, 7.3898, 7.3895, 7.3889, 7.389, 7.3901, 7.3894, 7.3887, 7.388, 7.389, 7.3884, 7.3879, 7.3872, 7.3884, 7.388, 7.3878, 7.3873, 7.3912, 7.3905, 7.3913, 7.3933, 7.3953, 7.3946, 7.3947, 7.3943, 7.3955, 7.395, 7.3944, 7.3937, 7.3933, 7.393, 7.3923, 7.3916, 7.391, 7.3905, 7.3899, 7.3892, 7.3886, 7.3898, 7.3892, 7.3888, 7.3866, 7.3861, 7.3857, 7.3851, 7.3844, 7.3837, 7.3848, 7.3842, 7.3836, 7.3834, 7.3831, 7.3824, 7.3835, 7.3846, 7.3828, 7.384, 7.3835, 7.3828, 7.384, 7.3834, 7.3827, 7.3823, 7.3817, 7.3813, 7.3808, 7.382, 7.3814, 7.3823, 7.3817, 7.3811, 7.3827, 7.3821, 7.3814, 7.3826, 7.382, 7.3813, 7.3809, 7.3806, 7.3817, 7.3795, 7.3807, 7.3821, 7.3835, 7.3828, 7.3866, 7.3859, 7.3852, 7.3849, 7.3861, 7.3856, 7.3866, 7.386, 7.3853, 7.3846, 7.3858, 7.3888, 7.3899, 7.3893, 7.3887, 7.3897, 7.389, 7.3885, 7.391, 7.3904, 7.39, 7.3895, 7.389, 7.3885, 7.3878, 7.3928, 7.3922, 7.3916, 7.3909, 7.3906, 7.39, 7.3894, 7.3888, 7.3881, 7.3875, 7.3871, 7.3864, 7.3857, 7.3855, 7.3853, 7.3846, 7.3843, 7.3839, 7.3851, 7.3844, 7.3838, 7.3831, 7.3824, 7.3834, 7.383, 7.3842, 7.3852, 7.3847, 7.3826, 7.3837, 7.3831, 7.3826, 7.3836, 7.3846, 7.384, 7.3839, 7.3834, 7.3829, 7.3807, 7.3803, 7.3797, 7.3808, 7.3819, 7.383, 7.3824, 7.3818, 7.3812, 7.381, 7.3808, 7.3819, 7.3813, 7.3809, 7.3804, 7.3816, 7.381, 7.3804, 7.3783, 7.3777, 7.3756, 7.3751, 7.376, 7.3755, 7.3749, 7.3742, 7.3739, 7.3733, 7.3745, 7.3739, 7.3733, 7.3717, 7.3713, 7.373, 7.373, 7.3734, 7.3727, 7.3739, 7.3733, 7.373, 7.3725, 7.3738, 7.3732, 7.3726, 7.374, 7.3735, 7.3729, 7.3707, 7.37, 7.3694, 7.3691, 7.3685, 7.3679, 7.3673, 7.3667, 7.366, 7.3657, 7.365, 7.3679, 7.3673, 7.3668, 7.3661, 7.3656, 7.3651, 7.3646, 7.3624, 7.3635, 7.3631, 7.363, 7.3625, 7.3635, 7.363, 7.3641, 7.3636, 7.363, 7.3624, 7.3634, 7.3645, 7.364, 7.3634, 7.3628, 7.3622, 7.3617, 7.3613, 7.3607, 7.3601, 7.3644, 7.3655, 7.3649, 7.3643, 7.3637, 7.3631, 7.3643, 7.3638, 7.3649, 7.3643, 7.3643, 7.3654, 7.365, 7.3712, 7.3724, 7.3719, 7.376, 7.3753, 7.3764, 7.3776, 7.377, 7.3783, 7.3837, 7.3837, 7.3832, 7.3829, 7.3845, 7.3873, 7.3868, 7.3864, 7.3858, 7.3837, 7.3849, 7.3846, 7.3857, 7.3868, 7.3861, 7.3858, 7.3852, 7.3845, 7.3842, 7.3821, 7.38, 7.3812, 7.381, 7.3804, 7.38, 7.3811, 7.3824, 7.3819, 7.3814, 7.3825, 7.382, 7.3815, 7.3809, 7.3848, 7.3851, 7.3849, 7.3844, 7.3856, 7.3868, 7.3864, 7.3859, 7.387, 7.3916, 7.391, 7.3906, 7.3905, 7.3916, 7.3911, 7.3905, 7.3902, 7.3897, 7.3908, 7.3903, 7.3883, 7.3878, 7.3873, 7.3883, 7.3877, 7.3871, 7.3864, 7.3858, 7.3854, 7.3848, 7.3845, 7.384, 7.3835, 7.386, 7.3854, 7.3834, 7.3847, 7.3841, 7.3852, 7.3862, 7.3858, 7.3868, 7.3862, 7.3856, 7.385, 7.3843, 7.384, 7.3836, 7.3836, 7.383, 7.3826, 7.3837, 7.3847, 7.3843, 7.3853, 7.385, 7.3844, 7.3854, 7.3848, 7.3842, 7.3852, 7.3863, 7.3873, 7.3884, 7.3894, 7.3888, 7.3898, 7.3896, 7.3891, 7.3885, 7.3879, 7.3873, 7.3867, 7.3861, 7.3873, 7.3868, 7.3862, 7.3856, 7.3866, 7.386, 7.3855, 7.385, 7.3861, 7.3855, 7.3849, 7.3844, 7.3838, 7.3849, 7.3843, 7.3853, 7.3847, 7.3843, 7.3839, 7.3835, 7.3845, 7.384, 7.3851, 7.3845, 7.3854, 7.3848, 7.3857, 7.3857, 7.3868, 7.3863, 7.3874, 7.3868, 7.3866, 7.3862, 7.3874, 7.3868, 7.3864, 7.3859, 7.3853, 7.3848, 7.3859, 7.3871, 7.3881, 7.389, 7.3884, 7.388, 7.3874, 7.3868, 7.3878, 7.3888, 7.3885, 7.3896, 7.389, 7.39, 7.3894, 7.3873, 7.3868, 7.3862, 7.3872, 7.3866, 7.3846, 7.3842, 7.3851, 7.3847, 7.3859, 7.3853, 7.3847, 7.3841, 7.3836, 7.3862, 7.3857, 7.3867, 7.3862, 7.3859, 7.3855, 7.3865, 7.3876, 7.3871, 7.3867, 7.3861, 7.3855, 7.3851, 7.3845, 7.384, 7.3835, 7.3839, 7.3849, 7.3843, 7.3853, 7.3847, 7.3841, 7.3836, 7.3831, 7.3825, 7.382, 7.3818, 7.3812, 7.3807, 7.3805, 7.3799, 7.3809, 7.379, 7.3786, 7.3798, 7.3792, 7.3786, 7.3797, 7.3791, 7.3785, 7.3779, 7.3773, 7.3801, 7.3795, 7.3789, 7.3784, 7.3779, 7.3774, 7.3768, 7.3778, 7.3772, 7.3767, 7.3762, 7.3756, 7.3751, 7.376, 7.3754, 7.3765, 7.3782, 7.3781, 7.3775, 7.3769, 7.3764, 7.3759, 7.3757, 7.3751, 7.3745, 7.3755, 7.3753, 7.375, 7.3732, 7.3726, 7.372, 7.3739, 7.3734, 7.3745, 7.3739, 7.3733, 7.3743, 7.3724, 7.3719, 7.3715, 7.3696, 7.3691, 7.3691, 7.3687, 7.3684, 7.3708, 7.3703, 7.3714, 7.3709, 7.3704, 7.3715, 7.3726, 7.3721, 7.373, 7.3725, 7.372, 7.3715, 7.371, 7.3705, 7.3715, 7.3709, 7.3722, 7.3718, 7.3743, 7.3753, 7.3749, 7.3744, 7.3753, 7.3747, 7.3742, 7.3752, 7.3747, 7.3742, 7.3737, 7.3742, 7.3738, 7.3777, 7.3771, 7.3779, 7.3774, 7.377, 7.3765, 7.3775, 7.3785, 7.3779, 7.3774, 7.3775, 7.3771, 7.3781, 7.3779, 7.3773, 7.3784, 7.3778, 7.3773, 7.3784, 7.3794, 7.3803, 7.3813, 7.381, 7.382, 7.3814, 7.3808, 7.3818, 7.3812, 7.3806, 7.3802, 7.3805, 7.3826, 7.3821, 7.3822, 7.3818, 7.3803, 7.383, 7.3826, 7.3851, 7.3847, 7.3842, 7.3838, 7.3849, 7.386, 7.3855, 7.3849, 7.3844, 7.3839, 7.3834, 7.3828, 7.3822, 7.3817, 7.3826, 7.3821, 7.3815, 7.3812, 7.3808, 7.3803, 7.3797, 7.3808, 7.3803, 7.3798, 7.3793, 7.3789, 7.3784, 7.378, 7.3775, 7.3772, 7.3796, 7.3778, 7.3774, 7.383, 7.3824, 7.3819, 7.3816, 7.3812, 7.3806, 7.38, 7.3794, 7.379, 7.3786, 7.378, 7.3775, 7.377, 7.378, 7.3776, 7.3771, 7.378, 7.3776, 7.3786, 7.3796, 7.3792, 7.3802, 7.3811, 7.3807, 7.3802, 7.3812, 7.3807, 7.3815, 7.3809, 7.379, 7.3785, 7.3787, 7.3784, 7.3778, 7.3788, 7.3798, 7.3807, 7.3789, 7.377, 7.3765, 7.376, 7.3755, 7.3749, 7.3759, 7.3741, 7.3737, 7.3732, 7.3727, 7.3722, 7.3731, 7.3727, 7.3723, 7.3718, 7.3716, 7.3726, 7.372, 7.3715, 7.371, 7.3707, 7.3717, 7.3727, 7.3725, 7.3722, 7.3717, 7.3712, 7.3706, 7.3701, 7.3698, 7.3693, 7.3688, 7.3683, 7.3694, 7.369, 7.3685, 7.3696, 7.3706, 7.3702, 7.3687, 7.3696, 7.3706, 7.3703, 7.3712, 7.3731, 7.3727, 7.3722, 7.3717, 7.3717, 7.3712, 7.3707, 7.3702, 7.3699, 7.3694, 7.3689, 7.3684, 7.3693, 7.3702, 7.3699, 7.3703, 7.3699, 7.3695, 7.369, 7.3684, 7.375, 7.3745, 7.3741, 7.3736, 7.3731, 7.3744, 7.3742, 7.3736, 7.373, 7.3725, 7.3719, 7.3716, 7.3715, 7.3709, 7.3703, 7.3697, 7.3706, 7.37, 7.3696, 7.3692, 7.3686, 7.368, 7.3675, 7.3672, 7.3669, 7.3664, 7.3658, 7.3654, 7.3664, 7.3673, 7.3668, 7.3662, 7.3657, 7.3652, 7.3646, 7.3641, 7.3638, 7.3648, 7.3645, 7.364, 7.3634, 7.3629, 7.3625, 7.362, 7.3617, 7.3612, 7.3606, 7.3603, 7.3626, 7.362, 7.3629, 7.3625, 7.3621, 7.3603, 7.3599, 7.3594, 7.3589, 7.3584, 7.3579, 7.3574, 7.3583, 7.358, 7.3576, 7.3572, 7.3582, 7.3577, 7.3572, 7.3581, 7.3575, 7.3569, 7.3565, 7.3561, 7.3587, 7.3573, 7.3585, 7.3584, 7.358, 7.3576, 7.3588, 7.3585, 7.3595, 7.3614, 7.3624, 7.3623, 7.3618, 7.3615, 7.3612, 7.3607, 7.3603, 7.3599, 7.3615, 7.3626, 7.3621, 7.3645, 7.364, 7.3635, 7.3617, 7.3613, 7.3608, 7.3603, 7.3599, 7.3594, 7.3589, 7.3585, 7.3583, 7.3585, 7.358, 7.3575, 7.357, 7.3565, 7.356, 7.3569, 7.3578, 7.3573, 7.357, 7.3564, 7.3559, 7.3555, 7.3564, 7.3559, 7.3553, 7.3551, 7.356, 7.3557, 7.3566, 7.3561, 7.3557, 7.3553, 7.3563, 7.3585, 7.3582, 7.3578, 7.3574, 7.3569, 7.3567, 7.3564, 7.3573, 7.357, 7.3565, 7.3574, 7.3571, 7.358, 7.3589, 7.3583, 7.3578, 7.3588, 7.3583, 7.3578, 7.3586, 7.3595, 7.3591, 7.3586, 7.3595, 7.3584, 7.3607, 7.3617, 7.3613, 7.3614, 7.3642, 7.3639, 7.3635, 7.363, 7.3627, 7.3636, 7.3633, 7.363, 7.3626, 7.3621, 7.3645, 7.3641, 7.3636, 7.3631, 7.3626, 7.364, 7.3692, 7.3703, 7.3701, 7.3724, 7.3719, 7.3714, 7.3709, 7.3704, 7.3699, 7.3682, 7.3679, 7.3675, 7.3669, 7.3678, 7.37, 7.3697, 7.3706, 7.3734, 7.3743, 7.3737, 7.3745, 7.3767, 7.3762, 7.3757, 7.3754, 7.3766, 7.3777, 7.3786, 7.3781, 7.379, 7.38, 7.3796, 7.3791, 7.3788, 7.3784, 7.3778, 7.3775, 7.377, 7.378, 7.3775, 7.377, 7.3766, 7.3763, 7.3813, 7.3808, 7.3803, 7.3799, 7.3807, 7.3816, 7.3811, 7.3806, 7.3801, 7.3796, 7.3806, 7.3806, 7.3801, 7.3796, 7.3792, 7.3788, 7.3783, 7.3778, 7.3778, 7.3773, 7.3768, 7.3765, 7.3775, 7.3771, 7.3769, 7.3778, 7.3773, 7.3756, 7.3752, 7.3747, 7.3743, 7.3738, 7.3735, 7.377, 7.3766, 7.3761, 7.3756, 7.3742, 7.3739, 7.3776, 7.3773, 7.3797, 7.3807, 7.3816, 7.3824, 7.3819, 7.3814, 7.3837, 7.3832, 7.3827, 7.3823, 7.3818, 7.3813, 7.381, 7.3805, 7.3813, 7.3808, 7.3803, 7.3819, 7.3827, 7.3822, 7.3832, 7.3828, 7.3813, 7.3809, 7.3818, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.382, 7.3829, 7.3837, 7.3834, 7.3842, 7.3837, 7.3833, 7.3841, 7.3824, 7.382, 7.3816, 7.3826, 7.3822, 7.3832, 7.3827, 7.3835, 7.3832, 7.384, 7.3835, 7.3856, 7.3855, 7.385, 7.3847, 7.3842, 7.3837, 7.3833, 7.3842, 7.3851, 7.3862, 7.3858, 7.3853, 7.386, 7.3858, 7.3857, 7.3856, 7.3851, 7.3846, 7.3845, 7.3855, 7.385, 7.3845, 7.3846, 7.3829, 7.3825, 7.3834, 7.3823, 7.3818, 7.3813, 7.3822, 7.3817, 7.3812, 7.3821, 7.3828, 7.3826, 7.3822, 7.3818, 7.3815, 7.3811, 7.3819, 7.3826, 7.3821, 7.3817, 7.3812, 7.3821, 7.3817, 7.3813, 7.381, 7.3807, 7.3802, 7.3799, 7.3795, 7.3791, 7.3802, 7.3797, 7.3792, 7.3788, 7.3771, 7.378, 7.3775, 7.3784, 7.378, 7.3776, 7.3773, 7.3769, 7.3767, 7.3762, 7.3757, 7.3752, 7.3749, 7.3744, 7.3753, 7.3748, 7.3745, 7.3742, 7.3738, 7.3735, 7.3731, 7.3727, 7.3722, 7.3717, 7.3713, 7.3713, 7.3708, 7.3704, 7.37, 7.3708, 7.3717, 7.3712, 7.3695, 7.3692, 7.3701, 7.3696, 7.3692, 7.3689, 7.3685, 7.368, 7.3676, 7.3671, 7.3666, 7.3662, 7.3671, 7.3668, 7.3677, 7.3683, 7.3679, 7.3674, 7.3669, 7.3665, 7.3682, 7.368, 7.3677, 7.3682, 7.369, 7.3685, 7.368, 7.3678, 7.3675, 7.3684, 7.368, 7.3689, 7.3685, 7.3692, 7.3687, 7.3683, 7.3681, 7.3689, 7.3684, 7.3684, 7.3679, 7.3674, 7.3669, 7.3664, 7.3661, 7.3657, 7.3653, 7.3648, 7.3644, 7.364, 7.3635, 7.3643, 7.3638, 7.3646, 7.3642, 7.3639, 7.3634, 7.363, 7.3626, 7.3622, 7.3617, 7.3612, 7.3621, 7.3617, 7.3614, 7.3611, 7.362, 7.3616, 7.3612, 7.3621, 7.3631, 7.3639, 7.3634, 7.3631, 7.3628, 7.3625, 7.3632, 7.3627, 7.3625, 7.3622, 7.3617, 7.3614, 7.3612, 7.362, 7.3618, 7.3616, 7.3613, 7.3608, 7.3604, 7.36, 7.3592, 7.3601, 7.3596, 7.3604, 7.3612, 7.3608, 7.3604, 7.36, 7.3599, 7.3621, 7.3629, 7.3677, 7.3672, 7.3668, 7.3676, 7.3684, 7.3681, 7.3679, 7.3674, 7.3682, 7.3678, 7.3673, 7.3657, 7.3666, 7.3666, 7.3662, 7.3658, 7.3656, 7.3652, 7.3649, 7.3645, 7.3642, 7.3642, 7.3637, 7.3627, 7.3623, 7.3619, 7.3614, 7.361, 7.3607, 7.3604, 7.36, 7.3623, 7.3633, 7.364, 7.3635, 7.363, 7.363, 7.3639, 7.366, 7.3656, 7.3652, 7.3675, 7.3683, 7.3679, 7.3675, 7.3674, 7.372, 7.3719, 7.3715, 7.3711, 7.3706, 7.3702, 7.3697, 7.372, 7.3727, 7.3722, 7.3719, 7.3714, 7.3709, 7.3708, 7.3704, 7.3706, 7.3703, 7.3711, 7.3708, 7.3704, 7.37, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3691, 7.3701, 7.3703, 7.3699, 7.3695, 7.3691, 7.3698, 7.3693, 7.3689, 7.3685, 7.3681, 7.3679, 7.3687, 7.3684, 7.3679, 7.3675, 7.3671, 7.3668, 7.3652, 7.365, 7.3659, 7.3655, 7.3653, 7.365, 7.3649, 7.3645, 7.3643, 7.364, 7.3637, 7.3645, 7.3642, 7.3653, 7.366, 7.3644, 7.3641, 7.3636, 7.3632, 7.3628, 7.3637, 7.3633, 7.3628, 7.3625, 7.363, 7.3638, 7.3622, 7.3618, 7.3623, 7.3653, 7.3662, 7.3658, 7.3653, 7.3648, 7.3645, 7.3653, 7.3661, 7.3678, 7.3662, 7.3658, 7.3655, 7.37, 7.3696, 7.3684, 7.3681, 7.3719, 7.3715, 7.3715, 7.3736, 7.3738, 7.3734, 7.3734, 7.373, 7.3739, 7.3762, 7.3759, 7.3754, 7.3751, 7.3746, 7.3747, 7.3743, 7.374, 7.3736, 7.3732, 7.3728, 7.375, 7.3748, 7.3757, 7.3754, 7.3813, 7.3811, 7.3827, 7.3829, 7.3837, 7.3846, 7.385, 7.3847, 7.3846, 7.3868, 7.3864, 7.3861, 7.3869, 7.3864, 7.386, 7.3856, 7.3852, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.3839, 7.3835, 7.3843, 7.3839, 7.3835, 7.383, 7.3827, 7.3822, 7.3831, 7.3828, 7.3855, 7.3853, 7.3851, 7.3859, 7.3843, 7.3852, 7.3848, 7.3869, 7.3882, 7.3878, 7.3888, 7.39, 7.391, 7.3906, 7.3901, 7.3896, 7.3891, 7.3888, 7.3884, 7.388, 7.3878, 7.3874, 7.3896, 7.3892, 7.3887, 7.389, 7.3885, 7.3893, 7.3889, 7.3884, 7.388, 7.3875, 7.3871, 7.3866, 7.3861, 7.3859, 7.3855, 7.3853, 7.3848, 7.3847, 7.3842, 7.3838, 7.3862, 7.386, 7.3856, 7.3851, 7.3859, 7.3855, 7.3851, 7.3851, 7.3848, 7.3847, 7.3842, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3812, 7.3808, 7.3807, 7.3804, 7.3802, 7.3798, 7.3806, 7.3802, 7.3798, 7.3811, 7.3806, 7.3802, 7.3811, 7.3818, 7.3813, 7.3809, 7.3804, 7.3805, 7.3803, 7.3807, 7.3804, 7.3801, 7.381, 7.3806, 7.3802, 7.3797, 7.3793, 7.379, 7.3786, 7.3794, 7.3793, 7.379, 7.3786, 7.3783, 7.3779, 7.3775, 7.377, 7.3768, 7.3764, 7.376, 7.3757, 7.3752, 7.375, 7.3745, 7.3741, 7.3751, 7.3747, 7.376, 7.3756, 7.3763, 7.376, 7.3756, 7.3752, 7.375, 7.3747, 7.3742, 7.3756, 7.3753, 7.375, 7.3745, 7.3741, 7.3737, 7.3736, 7.3735, 7.3731, 7.3726, 7.3721, 7.3728, 7.3736, 7.3744, 7.3739, 7.3747, 7.3743, 7.3738, 7.3737, 7.3734, 7.3742, 7.3738, 7.3741, 7.3736, 7.3732, 7.3728, 7.3726, 7.3733, 7.3729, 7.3714, 7.371, 7.3718, 7.3728, 7.3724, 7.3722, 7.3729, 7.3724, 7.3722, 7.3718, 7.3726, 7.3724, 7.3745, 7.3741, 7.3727, 7.3724, 7.372, 7.3716, 7.3713, 7.372, 7.3717, 7.3713, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.369, 7.3715, 7.3736, 7.3734, 7.3731, 7.3727, 7.3771, 7.3767, 7.3774, 7.377, 7.3767, 7.3763, 7.3771, 7.378, 7.3787, 7.3773, 7.3781, 7.3779, 7.3774, 7.377, 7.3767, 7.3753, 7.3761, 7.3757, 7.3753, 7.3753, 7.3749, 7.3745, 7.3741, 7.3737, 7.3732, 7.3739, 7.3735, 7.3731, 7.3727, 7.3722, 7.3721, 7.3718, 7.3714, 7.3721, 7.3718, 7.3704, 7.37, 7.3715, 7.3712, 7.3708, 7.3704, 7.37, 7.3696, 7.3716, 7.3739, 7.3736, 7.3736, 7.3732, 7.3728, 7.3724, 7.3732, 7.374, 7.3737, 7.3733, 7.374, 7.3736, 7.3733, 7.3729, 7.3725, 7.3721, 7.3728, 7.3724, 7.372, 7.3716, 7.3724, 7.372, 7.3728, 7.3736, 7.3731, 7.3727, 7.3723, 7.3719, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3725, 7.372, 7.3717, 7.3713, 7.371, 7.3707, 7.3725, 7.3722, 7.3718, 7.3714, 7.371, 7.3718, 7.3713, 7.3721, 7.3716, 7.3712, 7.3724, 7.3719, 7.3716, 7.3712, 7.372, 7.3717, 7.3713, 7.3721, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3726, 7.3728, 7.3747, 7.3743, 7.374, 7.3737, 7.3733, 7.3743, 7.374, 7.3748, 7.3743, 7.3739, 7.3753, 7.3749, 7.3749, 7.3756, 7.3752, 7.3748, 7.3744, 7.3741, 7.3737, 7.3761, 7.3769, 7.3765, 7.3772, 7.3802, 7.3798, 7.3801, 7.3798, 7.3789, 7.38, 7.38, 7.3789, 7.3785, 7.3782, 7.3778, 7.3774, 7.3759, 7.3766, 7.3762, 7.3758, 7.3756, 7.3752, 7.3748, 7.3745, 7.3752, 7.3766, 7.3763, 7.3759, 7.3767, 7.3781, 7.3777, 7.3787, 7.3783, 7.38, 7.3808, 7.3843, 7.3842, 7.3838, 7.3833, 7.3869, 7.3864, 7.386, 7.3867, 7.3876, 7.3883, 7.3881, 7.3877, 7.3884, 7.388, 7.3878, 7.3873, 7.387, 7.3877, 7.3874, 7.3871, 7.3884, 7.3891, 7.3902, 7.3898, 7.3894, 7.3891, 7.3892, 7.3888, 7.3874, 7.387, 7.3878, 7.3875, 7.3884, 7.3881, 7.3877, 7.3873, 7.388, 7.3876, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3865, 7.3861, 7.389, 7.3886, 7.3882, 7.388, 7.3876, 7.3872, 7.3868, 7.3866, 7.3873, 7.387, 7.3866, 7.3852, 7.3848, 7.3844, 7.384, 7.3837, 7.3846, 7.3842, 7.384, 7.3837, 7.3835, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3823, 7.3819, 7.3843, 7.3839, 7.3847, 7.3854, 7.3877, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3854, 7.385, 7.3857, 7.3854, 7.3861, 7.3858, 7.3854, 7.3862, 7.3861, 7.3857, 7.3856, 7.3854, 7.385, 7.3846, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3813, 7.3811, 7.3849, 7.3845, 7.3844, 7.384, 7.3837, 7.3834, 7.383, 7.384, 7.3838, 7.3834, 7.3821, 7.3817, 7.3815, 7.3812, 7.3819, 7.3816, 7.3824, 7.383, 7.3828, 7.3824, 7.381, 7.3806, 7.3803, 7.3799, 7.3795, 7.3791, 7.3798, 7.3806, 7.3813, 7.381, 7.3807, 7.3805, 7.3801, 7.3798, 7.3795, 7.3791, 7.3787, 7.3794, 7.379, 7.3797, 7.3804, 7.3803, 7.381, 7.3817, 7.3813, 7.3809, 7.3806, 7.3803, 7.3799, 7.3796, 7.3796, 7.3792, 7.3811, 7.3809, 7.3805, 7.3801, 7.3797, 7.3793, 7.3791, 7.3787, 7.3794, 7.3791, 7.3798, 7.3797, 7.3793, 7.3789, 7.3796, 7.3808, 7.3805, 7.3802, 7.3809, 7.3805, 7.3803, 7.3799, 7.3797, 7.3796, 7.3793, 7.379, 7.3786, 7.3782, 7.3778, 7.3776, 7.3783, 7.3789, 7.3785, 7.3815, 7.3811, 7.381, 7.3807, 7.3814, 7.381, 7.3806, 7.3813, 7.3819, 7.3826, 7.3833, 7.3829, 7.3836, 7.3843, 7.385, 7.3846, 7.3842, 7.3838, 7.3834, 7.3831, 7.3829, 7.3825, 7.3832, 7.3868, 7.3864, 7.3863, 7.3859, 7.3855, 7.3851, 7.3848, 7.3835, 7.3851, 7.3847, 7.3843, 7.385, 7.3836, 7.3832, 7.3828, 7.3824, 7.382, 7.3827, 7.3824, 7.382, 7.3827, 7.3823, 7.3819, 7.3827, 7.3827, 7.3823, 7.383, 7.3827, 7.3833, 7.3836, 7.3834, 7.3832, 7.3839, 7.3836, 7.3836, 7.3832, 7.3832, 7.3829, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.3817, 7.3814, 7.3812, 7.3818, 7.3815, 7.3832, 7.383, 7.3827, 7.3823, 7.3819, 7.3817, 7.3814, 7.3821, 7.3823, 7.3821, 7.3818, 7.3814, 7.381, 7.3806, 7.3813, 7.381, 7.3817, 7.3813, 7.3809, 7.3807, 7.3804, 7.38, 7.3796, 7.3802, 7.3804, 7.3813, 7.382, 7.3821, 7.3817, 7.3824, 7.383, 7.3816, 7.3813, 7.3809, 7.3805, 7.3814, 7.3811, 7.381, 7.3817, 7.3813, 7.3809, 7.3805, 7.3803, 7.38, 7.3829, 7.3869, 7.3878, 7.3875, 7.3875, 7.3882, 7.3878, 7.3874, 7.387, 7.3858, 7.3854, 7.385, 7.3852, 7.385, 7.3846, 7.3853, 7.3849, 7.3845, 7.3842, 7.3838, 7.3844, 7.3832, 7.3828, 7.3846, 7.3843, 7.3849, 7.3845, 7.3841, 7.3848, 7.3844, 7.3841, 7.3837, 7.3833, 7.3832, 7.3828, 7.3839, 7.3835, 7.3831, 7.3827, 7.3825, 7.3832, 7.3829, 7.3827, 7.385, 7.3863, 7.3859, 7.3865, 7.3871, 7.3867, 7.3863, 7.3872, 7.3868, 7.3866, 7.3885, 7.3872, 7.3869, 7.3865, 7.3872, 7.3869, 7.3898, 7.3906, 7.3903, 7.39, 7.3896, 7.3904, 7.3901, 7.3897, 7.3893, 7.3899, 7.3905, 7.3913, 7.3909, 7.3905, 7.3902, 7.3898, 7.3904, 7.39, 7.3898, 7.3957, 7.3953, 7.394, 7.3947, 7.3975, 7.3982, 7.3978, 7.3987, 7.3984, 7.3981, 7.3998, 7.4006, 7.4024, 7.4021, 7.4018, 7.4014, 7.4012, 7.4009, 7.4006, 7.4002, 7.4004, 7.4, 7.4007, 7.4015, 7.4012, 7.4008, 7.4007, 7.4013, 7.402, 7.4017, 7.4015, 7.4012, 7.4019, 7.4015, 7.4012, 7.4009, 7.4006, 7.4003, 7.401, 7.4016, 7.4022, 7.4018, 7.4014, 7.4011, 7.4007, 7.4004, 7.4001, 7.3998, 7.3995, 7.4002, 7.3999, 7.3997, 7.3994, 7.3991, 7.3987, 7.3984, 7.3981, 7.3979, 7.3986, 7.3984, 7.3982, 7.3979, 7.3996, 7.3992, 7.3989, 7.3986, 7.3993, 7.3989, 7.3986, 7.3982, 7.3978, 7.3975, 7.3971, 7.3967, 7.3963, 7.3971, 7.3978, 7.3974, 7.397, 7.3966, 7.3963, 7.396, 7.3966, 7.3962, 7.3958, 7.3954, 7.395, 7.3957, 7.3963, 7.3969, 7.3966, 7.3963, 7.397, 7.3966, 7.3963, 7.3961, 7.3967, 7.3974, 7.3982, 7.3978, 7.3974, 7.3971, 7.3967, 7.3966, 7.3962, 7.3969, 7.3965, 7.3963, 7.3969, 7.3977, 7.3988, 7.3995, 7.4002, 7.401, 7.4017, 7.4014, 7.4014, 7.4011, 7.4007, 7.4014, 7.4021, 7.4018, 7.4015, 7.4047, 7.4045, 7.4041, 7.4047, 7.4054, 7.406, 7.4057, 7.4064, 7.406, 7.4067, 7.4063, 7.407, 7.4069, 7.4066, 7.4064, 7.4061, 7.4057, 7.407, 7.4067, 7.4074, 7.4071, 7.4089, 7.4086, 7.4093, 7.409, 7.4101, 7.4097, 7.4094, 7.411, 7.4117, 7.4107, 7.4104, 7.4091, 7.4088, 7.4085, 7.4082, 7.4129, 7.4136, 7.4132, 7.4139, 7.4146, 7.4153, 7.415, 7.4146, 7.4142, 7.4139, 7.416, 7.4166, 7.4172, 7.4168, 7.4164, 7.417, 7.4168, 7.4175, 7.4171, 7.4167, 7.4173, 7.4171, 7.4177, 7.4173, 7.418, 7.4186, 7.4182, 7.4179, 7.4175, 7.4175, 7.4171, 7.4168, 7.4164, 7.4171, 7.4177, 7.4174, 7.4171, 7.4189, 7.4186, 7.4182, 7.4179, 7.4176, 7.4173, 7.4169, 7.4165, 7.4171, 7.4167, 7.4174, 7.418, 7.4186, 7.4192, 7.4189, 7.4179, 7.421, 7.4218, 7.4216, 7.4223, 7.422, 7.4217, 7.4224, 7.423, 7.4237, 7.4244, 7.424, 7.4236, 7.4242, 7.4239, 7.4236, 7.4232, 7.4238, 7.4244, 7.4251, 7.4258, 7.4254, 7.425, 7.4246, 7.4243, 7.4242, 7.4254, 7.4251, 7.425, 7.4259, 7.4259, 7.4256, 7.4247, 7.4244, 7.4241, 7.4238, 7.4244, 7.425, 7.4246, 7.4253, 7.4249, 7.4246, 7.4252, 7.4259, 7.4255, 7.4262, 7.4269, 7.4276, 7.4283, 7.4291, 7.4298, 7.4295, 7.4292, 7.4299, 7.4295], '192.168.122.113': [10.9024, 8.1601, 7.208, 6.8129, 6.6064, 6.4637, 6.4441, 6.4141, 6.2927, 6.2657, 6.209, 6.2029, 6.1718, 6.2001, 6.1376, 5.7958, 6.0899, 6.3522, 6.3098, 6.2653, 6.2386, 6.4406, 6.4073, 6.3661, 6.5319, 6.5282, 6.4957, 6.4948, 6.4635, 6.4318, 6.933, 7.0558, 7.0084, 6.9785, 6.9424, 6.9036, 7.1504, 7.1154, 7.0698, 7.1662, 7.1418, 7.1303, 6.9857, 6.947, 6.923, 6.8968, 6.8623, 6.8461, 6.824, 6.8033, 6.8758, 7.0579, 7.0411, 7.2128, 7.1765, 7.1528, 7.2253, 7.2043, 7.2593, 7.2253, 7.2802, 7.2483, 7.2173, 7.1963, 7.1785, 7.1777, 7.1604, 7.2144, 7.1857, 7.1723, 7.083, 7.0612, 7.0377, 7.0892, 7.0657, 7.048, 7.2915, 7.3357, 7.3171, 7.3073, 7.3589, 7.3331, 7.3091, 7.2862, 7.2625, 7.2407, 7.2196, 7.2166, 7.1978, 7.1889, 7.1719, 7.2114, 7.2554, 7.3003, 7.2838, 7.2718, 7.2622, 7.2559, 7.3613, 7.3944, 7.3793, 7.3601, 7.3464, 7.3279, 7.309, 7.2957, 7.2875, 7.3211, 7.3541, 7.3348, 7.364, 7.3601, 7.3464, 7.3282, 7.3606, 7.3929, 7.421, 7.4094, 7.3951, 7.3418, 7.3287, 7.362, 7.3493, 7.3777, 7.3701, 7.3957, 7.3879, 7.3787, 7.3739, 7.3635, 7.347, 7.3378, 7.3252, 7.3127, 7.2981, 7.2899, 7.2836, 7.2697, 7.2562, 7.2472, 7.2353, 7.2602, 7.252, 7.2385, 7.2597, 7.2505, 7.2743, 7.2611, 7.2918, 7.3184, 7.3057, 7.3283, 7.3156, 7.3058, 7.2959, 7.2837, 7.2782, 7.2667, 7.2553, 7.2427, 7.2306, 7.22, 7.212, 7.2013, 7.1993, 7.1973, 7.2199, 7.242, 7.2347, 7.2566, 7.2453, 7.2695, 7.2608, 7.2523, 7.2437, 7.2354, 7.2292, 7.2197, 7.1824, 7.1742, 7.1661, 7.16, 7.1501, 7.1678, 7.1881, 7.2053, 7.1967, 7.3323, 7.3216, 7.3966, 7.3854, 7.3783, 7.3726, 7.3912, 7.4113, 7.4294, 7.4185, 7.4074, 7.403, 7.3697, 7.362, 7.3794, 7.3691, 7.3647, 7.3552, 7.3505, 7.3678, 7.3847, 7.3754, 7.3653, 7.3552, 7.395, 7.3896, 7.3597, 7.352, 7.4208, 7.4369, 7.4278, 7.4315, 7.4465, 7.4383, 7.4294, 7.4225, 7.4176, 7.4109, 7.4043, 7.4195, 7.4133, 7.4041, 7.3956, 7.3906, 7.382, 7.3731, 7.3664, 7.3815, 7.3754, 7.3684, 7.4081, 7.4013, 7.3971, 7.3909, 7.3845, 7.3767, 7.37, 7.3647, 7.366, 7.3644, 7.3584, 7.3523, 7.3647, 7.3807, 7.3547, 7.3478, 7.3404, 7.3353, 7.33, 7.3241, 7.3392, 7.3528, 7.3492, 7.3412, 7.3335, 7.3465, 7.3386, 7.3504, 7.3432, 7.3567, 7.3693, 7.3621, 7.3553, 7.3489, 7.3418, 7.3548, 7.3491, 7.361, 7.3541, 7.4057, 7.3987, 7.3931, 7.3879, 7.3842, 7.3773, 7.3754, 7.3881, 7.388, 7.388, 7.3825, 7.3955, 7.3917, 7.3844, 7.3776, 7.3751, 7.3784, 7.3748, 7.3702, 7.4149, 7.4079, 7.4069, 7.4025, 7.4041, 7.3862, 7.3718, 7.4014, 7.3942, 7.4017, 7.3965, 7.4063, 7.4101, 7.4066, 7.4004, 7.3959, 7.3906, 7.3841, 7.3805, 7.3745, 7.3701, 7.3655, 7.3607, 7.3564, 7.3519, 7.3955, 7.3893, 7.3826, 7.393, 7.3886, 7.3825, 7.3812, 7.3751, 7.3691, 7.3796, 7.3732, 7.3695, 7.3639, 7.3579, 7.3528, 7.3474, 7.3582, 7.3526, 7.3489, 7.36, 7.3546, 7.3491, 7.345, 7.3407, 7.3357, 7.3616, 7.3569, 7.3509, 7.3452, 7.3544, 7.3495, 7.3442, 7.3398, 7.3369, 7.3311, 7.3274, 7.3218, 7.319, 7.3164, 7.3111, 7.3059, 7.3003, 7.2956, 7.2906, 7.2861, 7.2864, 7.301, 7.2966, 7.2784, 7.2747, 7.286, 7.2835, 7.2802, 7.2749, 7.2708, 7.253, 7.2516, 7.25, 7.2447, 7.2399, 7.2376, 7.233, 7.2292, 7.2126, 7.2092, 7.2042, 7.203, 7.2128, 7.208, 7.2172, 7.2291, 7.2408, 7.2442, 7.2399, 7.2361, 7.2462, 7.2557, 7.2518, 7.2755, 7.2921, 7.2887, 7.2845, 7.28, 7.3019, 7.2974, 7.3094, 7.2933, 7.2888, 7.2842, 7.2933, 7.2776, 7.274, 7.2702, 7.2658, 7.261, 7.2578, 7.2537, 7.2626, 7.2586, 7.2541, 7.2511, 7.2466, 7.2422, 7.2519, 7.26, 7.2689, 7.2656, 7.2504, 7.2457, 7.2544, 7.2523, 7.2492, 7.2566, 7.2651, 7.2727, 7.2815, 7.2786, 7.2761, 7.2718, 7.2708, 7.2674, 7.2639, 7.2603, 7.2564, 7.2542, 7.2551, 7.2511, 7.2474, 7.2558, 7.2528, 7.2512, 7.2584, 7.2554, 7.2539, 7.2501, 7.2458, 7.242, 7.2405, 7.2486, 7.2562, 7.254, 7.263, 7.2602, 7.256, 7.2532, 7.2391, 7.2351, 7.2426, 7.2393, 7.2466, 7.2423, 7.2608, 7.2681, 7.2655, 7.2613, 7.2594, 7.2574, 7.2541, 7.2503, 7.2468, 7.2427, 7.2506, 7.2477, 7.2448, 7.241, 7.2371, 7.2333, 7.2408, 7.2381, 7.234, 7.2315, 7.2459, 7.2421, 7.2404, 7.2471, 7.2439, 7.2407, 7.2373, 7.2545, 7.2633, 7.262, 7.2599, 7.2577, 7.2543, 7.2618, 7.2689, 7.2777, 7.2749, 7.271, 7.2783, 7.2745, 7.2815, 7.2885, 7.2847, 7.2811, 7.288, 7.2848, 7.3027, 7.2993, 7.306, 7.304, 7.3009, 7.308, 7.3041, 7.311, 7.3089, 7.3128, 7.3556, 7.3524, 7.3495, 7.3461, 7.3432, 7.3499, 7.3573, 7.3679, 7.3648, 7.3612, 7.3682, 7.3657, 7.3722, 7.3701, 7.3662, 7.3627, 7.3588, 7.3649, 7.3614, 7.3578, 7.3691, 7.3663, 7.3626, 7.3592, 7.3478, 7.3442, 7.3407, 7.3383, 7.3365, 7.333, 7.3315, 7.3281, 7.3245, 7.3221, 7.3208, 7.3173, 7.3057, 7.3025, 7.3012, 7.2979, 7.3043, 7.3018, 7.2985, 7.3045, 7.3017, 7.2995, 7.2971, 7.2938, 7.2999, 7.2966, 7.2943, 7.2912, 7.2887, 7.2854, 7.2838, 7.2806, 7.2802, 7.2803, 7.2862, 7.2844, 7.2989, 7.3051, 7.3033, 7.3008, 7.2984, 7.3038, 7.3014, 7.308, 7.3061, 7.313, 7.3112, 7.3084, 7.3144, 7.3114, 7.318, 7.315, 7.3119, 7.3176, 7.317, 7.315, 7.321, 7.318, 7.3148, 7.3116, 7.3162, 7.3134, 7.3101, 7.307, 7.3041, 7.3012, 7.3069, 7.3129, 7.3105, 7.3165, 7.3223, 7.3207, 7.3264, 7.3313, 7.3279, 7.3288, 7.3258, 7.3315, 7.3294, 7.3264, 7.3235, 7.3233, 7.329, 7.3345, 7.3312, 7.3294, 7.3284, 7.3264, 7.3231, 7.3282, 7.325, 7.3217, 7.312, 7.3177, 7.3161, 7.3056, 7.3111, 7.3167, 7.3137, 7.3111, 7.3086, 7.3216, 7.3187, 7.3243, 7.3137, 7.3192, 7.3189, 7.3165, 7.3143, 7.3146, 7.3117, 7.3166, 7.3223, 7.3227, 7.32, 7.3173, 7.3228, 7.3279, 7.3278, 7.3252, 7.3224, 7.3196, 7.3188, 7.3163, 7.3219, 7.319, 7.3161, 7.3131, 7.3103, 7.3243, 7.3214, 7.3199, 7.3171, 7.3219, 7.3192, 7.3164, 7.3143, 7.3115, 7.3086, 7.3066, 7.3114, 7.318, 7.3162, 7.3134, 7.3106, 7.3111, 7.3089, 7.3061, 7.3109, 7.3161, 7.3134, 7.3106, 7.3164, 7.3221, 7.3199, 7.3173, 7.3168, 7.314, 7.3194, 7.3248, 7.3221, 7.3279, 7.3252, 7.3299, 7.3283, 7.3263, 7.3237, 7.3213, 7.3193, 7.3169, 7.3144, 7.3055, 7.303, 7.3015, 7.3015, 7.3007, 7.298, 7.2962, 7.3118, 7.3095, 7.3076, 7.3051, 7.3027, 7.3077, 7.3051, 7.3023, 7.3014, 7.2989, 7.2962, 7.2937, 7.2925, 7.29, 7.2886, 7.2931, 7.2905, 7.2881, 7.2856, 7.2838, 7.2884, 7.2857, 7.2839, 7.2885, 7.2866, 7.2919, 7.2892, 7.2866, 7.2843, 7.2822, 7.2868, 7.291, 7.2921, 7.3001, 7.2975, 7.304, 7.3028, 7.3074, 7.306, 7.3106, 7.3082, 7.3129, 7.3174, 7.3156, 7.3071, 7.3052, 7.3027, 7.3011, 7.3055, 7.2989, 7.3067, 7.3387, 7.3367, 7.342, 7.3404, 7.3384, 7.3364, 7.3406, 7.3391, 7.3372, 7.3289, 7.327, 7.3313, 7.3289, 7.3334, 7.3316, 7.3293, 7.3398, 7.3377, 7.3409, 7.3384, 7.3365, 7.3342, 7.3316, 7.3298, 7.3275, 7.3294, 7.3269, 7.3244, 7.3218, 7.3258, 7.3237, 7.3211, 7.3186, 7.3165, 7.315, 7.3124, 7.3106, 7.3147, 7.3121, 7.3096, 7.3074, 7.3066, 7.3046, 7.3022, 7.2998, 7.2974, 7.2956, 7.2942, 7.292, 7.291, 7.2894, 7.2937, 7.2923, 7.29, 7.2886, 7.288, 7.2856, 7.284, 7.2822, 7.2804, 7.2785, 7.2761, 7.274, 7.2719, 7.2704, 7.2746, 7.2725, 7.2711, 7.2688, 7.2704, 7.2681, 7.2725, 7.2701, 7.2746, 7.2686, 7.2677, 7.2681, 7.2661, 7.2699, 7.2675, 7.2653, 7.2578, 7.2561, 7.2664, 7.2642, 7.2627, 7.2556, 7.2654, 7.2632, 7.2611, 7.2592, 7.2633, 7.2675, 7.2716, 7.2693, 7.2671, 7.2777, 7.2827, 7.2809, 7.2788, 7.2785, 7.282, 7.2863, 7.2839, 7.2827, 7.2808, 7.2845, 7.3067, 7.3045, 7.3085, 7.3147, 7.3124, 7.3102, 7.3142, 7.3181, 7.316, 7.3139, 7.3117, 7.3096, 7.309, 7.3089, 7.3071, 7.3053, 7.3043, 7.3021, 7.3001, 7.2985, 7.2913, 7.2893, 7.2873, 7.291, 7.2892, 7.3075, 7.3115, 7.3096, 7.3085, 7.3132, 7.3112, 7.3091, 7.313, 7.317, 7.3209, 7.3194, 7.3171, 7.315, 7.3413, 7.34, 7.3378, 7.3363, 7.3342, 7.332, 7.336, 7.334, 7.3381, 7.3362, 7.3342, 7.3331, 7.3373, 7.336, 7.3341, 7.3385, 7.3422, 7.3482, 7.3467, 7.3446, 7.3424, 7.3464, 7.3444, 7.3482, 7.341, 7.3389, 7.3432, 7.3468, 7.3503, 7.3553, 7.3532, 7.3575, 7.3563, 7.3552, 7.3536, 7.3521, 7.3506, 7.3485, 7.3417, 7.3449, 7.3432, 7.3418, 7.3398, 7.3384, 7.3369, 7.3353, 7.3336, 7.3315, 7.3296, 7.3331, 7.3315, 7.3298, 7.3334, 7.337, 7.3402, 7.3394, 7.3383, 7.3367, 7.3464, 7.3456, 7.344, 7.3428, 7.3412, 7.3391, 7.3381, 7.3362, 7.3377, 7.3364, 7.3343, 7.3323, 7.3303, 7.3287, 7.3324, 7.3312, 7.3293, 7.3383, 7.3368, 7.3368, 7.3348, 7.333, 7.3313, 7.3294, 7.3276, 7.3256, 7.324, 7.3273, 7.3255, 7.3242, 7.3229, 7.321, 7.3247, 7.3282, 7.3266, 7.3253, 7.3235, 7.3268, 7.3248, 7.3229, 7.3271, 7.3306, 7.329, 7.3321, 7.3307, 7.3289, 7.3274, 7.3208, 7.319, 7.3224, 7.3214, 7.3202, 7.3197, 7.318, 7.3165, 7.3155, 7.3141, 7.3171, 7.316, 7.3143, 7.3134, 7.3069, 7.3167, 7.3203, 7.3201, 7.3212, 7.3204, 7.3263, 7.3257, 7.3241, 7.3228, 7.322, 7.3307, 7.3293, 7.3279, 7.3269, 7.3407, 7.355, 7.3534, 7.3523, 7.353, 7.3588, 7.3577, 7.3563, 7.3544, 7.3529, 7.3466, 7.3448, 7.3429, 7.3467, 7.3448, 7.3436, 7.3417, 7.3409, 7.3443, 7.3473, 7.346, 7.349, 7.3473, 7.3506, 7.3493, 7.3524, 7.3465, 7.3455, 7.3492, 7.3525, 7.3518, 7.3505, 7.3492, 7.3527, 7.3512, 7.3498, 7.3484, 7.3465, 7.3452, 7.3487, 7.3473, 7.3501, 7.3482, 7.3488, 7.3534, 7.3515, 7.3508, 7.3445, 7.3525, 7.3508, 7.3495, 7.348, 7.3463, 7.3463, 7.3453, 7.3438, 7.3473, 7.3456, 7.3441, 7.3426, 7.341, 7.3394, 7.3384, 7.3368, 7.3352, 7.3389, 7.3374, 7.3358, 7.3511, 7.3494, 7.3519, 7.3554, 7.3692, 7.3675, 7.3704, 7.3686, 7.3668, 7.3651, 7.3637, 7.3627, 7.361, 7.3591, 7.3579, 7.361, 7.3601, 7.3627, 7.3618, 7.3605, 7.3633, 7.3661, 7.3643, 7.363, 7.3664, 7.3651, 7.3683, 7.3625, 7.3607, 7.3596, 7.3624, 7.3669, 7.3651, 7.3634, 7.3622, 7.3613, 7.3606, 7.3642, 7.3626, 7.3657, 7.3643, 7.3634, 7.3621, 7.3564, 7.3547, 7.3532, 7.3523, 7.3551, 7.3534, 7.3517, 7.3504, 7.3492, 7.3479, 7.3471, 7.3454, 7.3441, 7.3426, 7.3439, 7.3467, 7.3451, 7.3483, 7.3467, 7.345, 7.3394, 7.334, 7.3284, 7.327, 7.3256, 7.324, 7.3274, 7.3262, 7.3291, 7.3275, 7.3261, 7.3252, 7.3238, 7.3226, 7.3209, 7.3197, 7.3229, 7.3259, 7.3292, 7.3275, 7.3307, 7.3293, 7.3281, 7.3272, 7.3255, 7.3241, 7.3273, 7.3273, 7.3305, 7.3291, 7.3279, 7.3264, 7.3209, 7.3245, 7.3272, 7.3307, 7.3302, 7.3293, 7.3278, 7.3273, 7.3303, 7.3286, 7.3288, 7.3274, 7.3262, 7.3249, 7.3233, 7.3218, 7.3203, 7.3194, 7.314, 7.3178, 7.3166, 7.3149, 7.315, 7.316, 7.3119, 7.3111, 7.3097, 7.3084, 7.3031, 7.3018, 7.301, 7.3039, 7.3026, 7.3012, 7.3006, 7.2999, 7.2987, 7.2972, 7.2965, 7.2953, 7.2938, 7.2923, 7.2994, 7.3069, 7.3096, 7.3097, 7.3046, 7.3071, 7.3057, 7.3083, 7.3067, 7.3055, 7.3046, 7.3034, 7.302, 7.3045, 7.3036, 7.3024, 7.301, 7.3, 7.3025, 7.305, 7.3039, 7.3024, 7.3011, 7.2999, 7.3039, 7.2988, 7.2975, 7.2962, 7.2953, 7.2937, 7.2921, 7.2948, 7.2934, 7.2924, 7.2916, 7.2942, 7.3004, 7.2993, 7.2942, 7.2946, 7.2972, 7.3041, 7.3028, 7.3018, 7.3004, 7.3033, 7.302, 7.3011, 7.2996, 7.3047, 7.3034, 7.3019, 7.3048, 7.3037, 7.3062, 7.3053, 7.3042, 7.3029, 7.3019, 7.2967, 7.2994, 7.2984, 7.2978, 7.2965, 7.2954, 7.2942, 7.2928, 7.2914, 7.2901, 7.2928, 7.2955, 7.298, 7.2968, 7.296, 7.3109, 7.3094, 7.3082, 7.3108, 7.3092, 7.308, 7.3066, 7.3061, 7.305, 7.3036, 7.303, 7.3015, 7.3016, 7.3002, 7.2987, 7.2972, 7.2975, 7.3012, 7.3007, 7.3033, 7.302, 7.3006, 7.2999, 7.2949, 7.3082, 7.3068, 7.3055, 7.3043, 7.3042, 7.3032, 7.3019, 7.3004, 7.3023, 7.3011, 7.3037, 7.3064, 7.3056, 7.3041, 7.3027, 7.305, 7.3041, 7.3108, 7.3097, 7.3088, 7.3077, 7.3066, 7.3052, 7.304, 7.3027, 7.3023, 7.3014, 7.3012, 7.2999, 7.2985, 7.298, 7.2991, 7.3015, 7.304, 7.3028, 7.3217, 7.3244, 7.3276, 7.3231, 7.3217, 7.321, 7.3197, 7.3192, 7.3178, 7.3131, 7.3116, 7.3107, 7.3092, 7.3084, 7.311, 7.3097, 7.3084, 7.307, 7.3056, 7.3042, 7.303, 7.3016, 7.2971, 7.3005, 7.2996, 7.2951, 7.298, 7.2969, 7.2959, 7.2947, 7.2932, 7.2958, 7.2982, 7.3008, 7.2995, 7.2988, 7.298, 7.2974, 7.2964, 7.2951, 7.2939, 7.2925, 7.2913, 7.2904, 7.2891, 7.2879, 7.2869, 7.2859, 7.2851, 7.284, 7.2829, 7.2818, 7.281, 7.2802, 7.2788, 7.2777, 7.2767, 7.2754, 7.2781, 7.2806, 7.2792, 7.2779, 7.277, 7.2776, 7.2781, 7.2767, 7.2762, 7.2803, 7.2802, 7.2792, 7.2782, 7.2768, 7.2757, 7.2747, 7.2733, 7.276, 7.2749, 7.2775, 7.2763, 7.2751, 7.2747, 7.2736, 7.2725, 7.275, 7.2737, 7.2725, 7.2715, 7.2701, 7.2727, 7.2716, 7.2706, 7.2693, 7.2685, 7.2677, 7.267, 7.2657, 7.2647, 7.2671, 7.2659, 7.2649, 7.2652, 7.2639, 7.2627, 7.2614, 7.2635, 7.2622, 7.261, 7.2597, 7.2586, 7.261, 7.2599, 7.2586, 7.2574, 7.2746, 7.2735, 7.276, 7.2748, 7.2743, 7.2738, 7.2725, 7.2713, 7.2704, 7.2696, 7.2684, 7.268, 7.2637, 7.2629, 7.2654, 7.2641, 7.2631, 7.2619, 7.2611, 7.2598, 7.262, 7.2577, 7.2571, 7.264, 7.2628, 7.2616, 7.2606, 7.2629, 7.2652, 7.2639, 7.2628, 7.2651, 7.2639, 7.2642, 7.263, 7.262, 7.2611, 7.26, 7.2589, 7.2546, 7.2534, 7.2527, 7.2518, 7.2509, 7.2504, 7.2494, 7.249, 7.2478, 7.2465, 7.2455, 7.2445, 7.247, 7.2493, 7.2515, 7.2538, 7.2534, 7.2523, 7.2511, 7.2507, 7.2555, 7.2547, 7.2541, 7.2531, 7.252, 7.251, 7.2499, 7.2494, 7.2482, 7.247, 7.2462, 7.2485, 7.2479, 7.2467, 7.2492, 7.2483, 7.2476, 7.2464, 7.246, 7.2448, 7.2439, 7.2427, 7.2441, 7.2435, 7.2426, 7.2414, 7.2437, 7.2427, 7.242, 7.2414, 7.2406, 7.2401, 7.2421, 7.241, 7.24, 7.2426, 7.2423, 7.2413, 7.2406, 7.2402, 7.2394, 7.2382, 7.237, 7.236, 7.2348, 7.2338, 7.2296, 7.2286, 7.2278, 7.2266, 7.2235, 7.2227, 7.2217, 7.2208, 7.22, 7.22, 7.2189, 7.2184, 7.2173, 7.2162, 7.2151, 7.2141, 7.2131, 7.2119, 7.214, 7.2131, 7.2119, 7.2143, 7.2137, 7.2128, 7.2116, 7.2137, 7.2126, 7.2116, 7.2104, 7.2093, 7.2082, 7.2073, 7.2062, 7.2052, 7.2047, 7.2037, 7.2027, 7.2017, 7.201, 7.204, 7.2063, 7.2051, 7.2043, 7.2035, 7.2056, 7.2096, 7.2118, 7.2112, 7.2103, 7.2094, 7.2084, 7.2074, 7.2041, 7.2061, 7.2049, 7.2071, 7.2093, 7.2081, 7.2073, 7.2063, 7.2057, 7.2051, 7.2047, 7.2068, 7.2092, 7.2083, 7.213, 7.215, 7.2177, 7.2165, 7.2186, 7.2175, 7.2197, 7.2158, 7.2215, 7.2204, 7.2225, 7.2214, 7.2226, 7.2215, 7.2236, 7.2263, 7.2256, 7.2244, 7.2253, 7.2242, 7.2235, 7.2228, 7.2224, 7.2214, 7.2205, 7.2195, 7.2186, 7.2185, 7.2178, 7.2173, 7.2196, 7.2184, 7.2172, 7.2163, 7.2183, 7.2175, 7.2166, 7.2156, 7.2177, 7.2184, 7.2205, 7.2221, 7.2212, 7.2205, 7.2198, 7.2187, 7.2179, 7.2201, 7.2192, 7.2182, 7.2202, 7.2196, 7.2186, 7.2175, 7.2164, 7.2155, 7.2149, 7.2172, 7.2191, 7.2185, 7.2178, 7.2174, 7.2166, 7.2156, 7.2145, 7.2138, 7.21, 7.2089, 7.2082, 7.2076, 7.2067, 7.2061, 7.2057, 7.2049, 7.207, 7.2082, 7.2077, 7.2096, 7.2096, 7.209, 7.2123, 7.2144, 7.2165, 7.2187, 7.2178, 7.2201, 7.219, 7.2179, 7.22, 7.2192, 7.22, 7.2221, 7.2289, 7.2282, 7.2272, 7.2293, 7.2282, 7.2304, 7.2332, 7.2357, 7.235, 7.2371, 7.2363, 7.2355, 7.2347, 7.2339, 7.2329, 7.2348, 7.2338, 7.2333, 7.2354, 7.2345, 7.2358, 7.2349, 7.234, 7.2329, 7.2339, 7.2329, 7.2349, 7.2339, 7.2331, 7.2322, 7.2313, 7.2414, 7.2404, 7.2426, 7.242, 7.2412, 7.2433, 7.2423, 7.2413, 7.2433, 7.2434, 7.2455, 7.2446, 7.2468, 7.2488, 7.2479, 7.25, 7.2493, 7.2484, 7.2473, 7.2465, 7.2454, 7.2447, 7.2436, 7.2428, 7.2446, 7.2439, 7.2429, 7.2419, 7.2409, 7.2399, 7.2394, 7.2386, 7.2411, 7.2403, 7.2424, 7.2441, 7.2459, 7.2449, 7.244, 7.2431, 7.245, 7.2442, 7.2433, 7.2425, 7.2442, 7.2432, 7.2422, 7.2416, 7.2405, 7.2421, 7.241, 7.2401, 7.2393, 7.2383, 7.2376, 7.2344, 7.2364, 7.2359, 7.2381, 7.2372, 7.2362, 7.24, 7.2424, 7.2419, 7.2409, 7.2401, 7.2393, 7.2414, 7.2407, 7.2397, 7.2393, 7.241, 7.2405, 7.2395, 7.2385, 7.2395, 7.2415, 7.2406, 7.2396, 7.2387, 7.2382, 7.2374, 7.2367, 7.2359, 7.2355, 7.2346, 7.2339, 7.236, 7.2353, 7.2343, 7.2333, 7.2334, 7.2325, 7.2316, 7.2342, 7.2336, 7.2331, 7.2324, 7.2321, 7.2311, 7.2304, 7.2294, 7.2314, 7.2306, 7.2296, 7.2287, 7.2278, 7.2269, 7.2259, 7.2278, 7.2273, 7.2264, 7.2259, 7.2258, 7.2249, 7.2243, 7.2263, 7.2257, 7.2248, 7.2276, 7.2267, 7.2285, 7.2282, 7.2275, 7.2288, 7.2279, 7.2269, 7.2288, 7.2309, 7.233, 7.2324, 7.2322, 7.2343, 7.2336, 7.2327, 7.2331, 7.2337, 7.2361, 7.2354, 7.2348, 7.234, 7.2332, 7.2324, 7.2343, 7.2335, 7.2326, 7.2319, 7.2337, 7.2327, 7.2318, 7.2325, 7.2315, 7.2311, 7.2328, 7.2324, 7.2322, 7.243, 7.2448, 7.2464, 7.2586, 7.2604, 7.2621, 7.264, 7.2659, 7.2653, 7.2644, 7.2663, 7.2679, 7.2669, 7.2688, 7.2686, 7.2676, 7.2666, 7.2657, 7.2733, 7.27, 7.2691, 7.2687, 7.2707, 7.2673, 7.2696, 7.269, 7.2708, 7.2702, 7.2694, 7.2685, 7.2741, 7.2763, 7.2758, 7.2749, 7.2766, 7.2761, 7.2766, 7.2733, 7.2725, 7.2716, 7.2706, 7.2702, 7.2718, 7.2709, 7.27, 7.2691, 7.2683, 7.2699, 7.2689, 7.271, 7.2701, 7.2695, 7.2685, 7.2675, 7.2665, 7.2657, 7.2654, 7.2644, 7.2635, 7.2626, 7.2643, 7.2659, 7.2653, 7.2671, 7.2689, 7.2657, 7.2648, 7.2666, 7.2661, 7.2678, 7.2675, 7.2757, 7.2774, 7.2791, 7.2784, 7.2792, 7.2759, 7.275, 7.2767, 7.2785, 7.2803, 7.2794, 7.2785, 7.2776, 7.2767, 7.2763, 7.2754, 7.2798, 7.2819, 7.2812, 7.2813, 7.2834, 7.2827, 7.2817, 7.2832, 7.2824, 7.2843, 7.2835, 7.2828, 7.2848, 7.2842, 7.2855, 7.2846, 7.2838, 7.2831, 7.2823, 7.2816, 7.2809, 7.28, 7.2791, 7.2782, 7.2759, 7.2777, 7.2773, 7.2792, 7.2785, 7.2802, 7.2793, 7.2783, 7.2774, 7.2844, 7.286, 7.2857, 7.2874, 7.2865, 7.2855, 7.2851, 7.2842, 7.2833, 7.2825, 7.2816, 7.2808, 7.2799, 7.2792, 7.2808, 7.2825, 7.2854, 7.2844, 7.2861, 7.2852, 7.2843, 7.2862, 7.2879, 7.2896, 7.2886, 7.2903, 7.2894, 7.2915, 7.2933, 7.2924, 7.2915, 7.2906, 7.2897, 7.2888, 7.2882, 7.2911, 7.2928, 7.2918, 7.2909, 7.2901, 7.2892, 7.2884, 7.29, 7.2891, 7.2907, 7.29, 7.2896, 7.289, 7.288, 7.2896, 7.2864, 7.2856, 7.2877, 7.2873, 7.2865, 7.2856, 7.288, 7.2895, 7.2924, 7.2943, 7.2946, 7.3013, 7.3005, 7.3046, 7.3063, 7.3195, 7.321, 7.3227, 7.3248, 7.3241, 7.3234, 7.3227, 7.3219, 7.3236, 7.3241, 7.3272, 7.3269, 7.3262, 7.3253, 7.3244, 7.326, 7.3251, 7.3242, 7.3258, 7.325, 7.3241, 7.3232, 7.3238, 7.3229, 7.3245, 7.3238, 7.3254, 7.3269, 7.3287, 7.3302, 7.3319, 7.3313, 7.3304, 7.3296, 7.3287, 7.3304, 7.332, 7.3336, 7.3328, 7.3322, 7.3313, 7.3308, 7.3335, 7.3331, 7.3323, 7.3372, 7.3369, 7.336, 7.335, 7.3384, 7.3376, 7.3392, 7.3385, 7.3376, 7.3368, 7.336, 7.3376, 7.3368, 7.3359, 7.3356, 7.335, 7.3342, 7.3349, 7.3366, 7.3357, 7.3372, 7.3364, 7.3355, 7.3347, 7.3339, 7.3332, 7.3349, 7.3341, 7.3357, 7.3349, 7.3354, 7.3347, 7.3361, 7.3353, 7.3349, 7.3339, 7.333, 7.3321, 7.3312, 7.3303, 7.3301, 7.3295, 7.3287, 7.3279, 7.3294, 7.3286, 7.3277, 7.3291, 7.3283, 7.3274, 7.3316, 7.3311, 7.3304, 7.3297, 7.3312, 7.3328, 7.3343, 7.3314, 7.3306, 7.3297, 7.3312, 7.3304, 7.3299, 7.3305, 7.3296, 7.3314, 7.3309, 7.3302, 7.3318, 7.3345, 7.3371, 7.3365, 7.3358, 7.3351, 7.3366, 7.3357, 7.3351, 7.3344, 7.3336, 7.3329, 7.3322, 7.3338, 7.3355, 7.3348, 7.334, 7.3332, 7.3325, 7.3316, 7.3309, 7.3301, 7.3293, 7.3284, 7.3276, 7.3268, 7.3262, 7.3278, 7.3273, 7.3265, 7.3281, 7.3275, 7.327, 7.3261, 7.3253, 7.325, 7.3241, 7.3233, 7.3225, 7.3216, 7.3207, 7.3222, 7.3215, 7.3207, 7.3202, 7.3203, 7.3197, 7.3211, 7.3203, 7.3196, 7.3189, 7.3183, 7.3176, 7.3169, 7.3164, 7.3157, 7.3149, 7.3142, 7.3141, 7.3134, 7.3126, 7.3117, 7.3109, 7.3111, 7.3104, 7.3098, 7.3095, 7.3111, 7.3082, 7.3097, 7.309, 7.3062, 7.3055, 7.3048, 7.3042, 7.3037, 7.3029, 7.3023, 7.3014, 7.303, 7.3026, 7.302, 7.3012, 7.3015, 7.3011, 7.3002, 7.2997, 7.3176, 7.3169, 7.3185, 7.3176, 7.3192, 7.3187, 7.3179, 7.3194, 7.3219, 7.3246, 7.3266, 7.3258, 7.3272, 7.3266, 7.3259, 7.3253, 7.3246, 7.3218, 7.3233, 7.3247, 7.3238, 7.3231, 7.3228, 7.3226, 7.3274, 7.3272, 7.3287, 7.3303, 7.3298, 7.3293, 7.3288, 7.328, 7.3272, 7.3264, 7.3259, 7.3251, 7.3243, 7.3216, 7.3211, 7.3224, 7.3224, 7.3239, 7.3254, 7.3247, 7.3261, 7.3326, 7.3317, 7.3309, 7.3302, 7.3295, 7.3295, 7.3288, 7.3305, 7.3296, 7.3311, 7.3304, 7.3297, 7.329, 7.3282, 7.3275, 7.3269, 7.3261, 7.3254, 7.3246, 7.324, 7.3233, 7.3229, 7.3244, 7.3238, 7.3233, 7.3248, 7.3267, 7.3262, 7.3275, 7.327, 7.3286, 7.3301, 7.3292, 7.3292, 7.3309, 7.3304, 7.3295, 7.3288, 7.3282, 7.3297, 7.3288, 7.3285, 7.33, 7.3294, 7.3287, 7.328, 7.3295, 7.3363, 7.3382, 7.3396, 7.3411, 7.3403, 7.3375, 7.3367, 7.336, 7.3354, 7.3369, 7.3383, 7.3377, 7.339, 7.3434, 7.3428, 7.3422, 7.3416, 7.3408, 7.3402, 7.3396, 7.3389, 7.3408, 7.34, 7.3396, 7.3408, 7.3403, 7.3395, 7.3387, 7.3382, 7.3355, 7.3349, 7.3343, 7.3336, 7.3351, 7.3344, 7.336, 7.3353, 7.3344, 7.3356, 7.3348, 7.3341, 7.3336, 7.3331, 7.3344, 7.336, 7.3355, 7.3348, 7.3341, 7.3357, 7.3349, 7.3343, 7.3357, 7.3349, 7.3363, 7.339, 7.3363, 7.3356, 7.3348, 7.3361, 7.3375, 7.3367, 7.3361, 7.3375, 7.3369, 7.3363, 7.3376, 7.3371, 7.3366, 7.3402, 7.3395, 7.3388, 7.3382, 7.3395, 7.3388, 7.3382, 7.3376, 7.3368, 7.3398, 7.3412, 7.3405, 7.342, 7.3433, 7.3447, 7.344, 7.3454, 7.3453, 7.3427, 7.34, 7.35, 7.3494, 7.3467, 7.3465, 7.3463, 7.3457, 7.3451, 7.3447, 7.3441, 7.3457, 7.3474, 7.3468, 7.3482, 7.3474, 7.3469, 7.3472, 7.3465, 7.346, 7.3477, 7.3474, 7.3467, 7.3459, 7.3451, 7.3443, 7.3437, 7.3442, 7.3435, 7.3429, 7.3439, 7.3432, 7.3424, 7.3459, 7.3453, 7.3447, 7.3441, 7.3416, 7.341, 7.3431, 7.3445, 7.3438, 7.3434, 7.3427, 7.3421, 7.3436, 7.3428, 7.3422, 7.3417, 7.3411, 7.3403, 7.3412, 7.3405, 7.3418, 7.3431, 7.3423, 7.3415, 7.3408, 7.3401, 7.3396, 7.341, 7.3424, 7.3436, 7.3428, 7.344, 7.3433, 7.3426, 7.3419, 7.3412, 7.3412, 7.3405, 7.3404, 7.3378, 7.3386, 7.3381, 7.3397, 7.3413, 7.3407, 7.3402, 7.3398, 7.339, 7.3402, 7.3394, 7.3386, 7.3398, 7.3394, 7.3407, 7.3442, 7.3455, 7.3448, 7.3459, 7.3472, 7.3468, 7.3481, 7.3494, 7.3487, 7.348, 7.3472, 7.3467, 7.3441, 7.3455, 7.3447, 7.3442, 7.3434, 7.3448, 7.3441, 7.3434, 7.3469, 7.3483, 7.3475, 7.3468, 7.3463, 7.3458, 7.3452, 7.3463, 7.3476, 7.3469, 7.3486, 7.3461, 7.3435, 7.3448, 7.3447, 7.344, 7.3433, 7.3425, 7.3466, 7.3463, 7.3461, 7.3453, 7.3445, 7.3439, 7.3453, 7.3445, 7.3439, 7.3452, 7.3465, 7.3461, 7.3473, 7.3485, 7.3477, 7.3492, 7.3486, 7.3478, 7.3473, 7.3467, 7.346, 7.3453, 7.3466, 7.3459, 7.3453, 7.3447, 7.344, 7.3432, 7.3445, 7.3441, 7.3434, 7.3427, 7.3421, 7.3434, 7.3455, 7.345, 7.3449, 7.3441, 7.3455, 7.3469, 7.3466, 7.3459, 7.3453, 7.3446, 7.3458, 7.3451, 7.3448, 7.3441, 7.3448, 7.344, 7.3453, 7.3445, 7.3458, 7.348, 7.3473, 7.3486, 7.3479, 7.3473, 7.3467, 7.346, 7.3452, 7.3447, 7.346, 7.3453, 7.3446, 7.3439, 7.344, 7.3433, 7.3428, 7.3439, 7.3435, 7.3434, 7.3427, 7.3422, 7.3415, 7.3408, 7.3429, 7.3435, 7.3431, 7.3426, 7.3421, 7.3415, 7.3408, 7.3445, 7.344, 7.3433, 7.3429, 7.3424, 7.3418, 7.341, 7.3423, 7.3437, 7.3457, 7.347, 7.3465, 7.346, 7.3453, 7.3448, 7.3447, 7.3442, 7.3436, 7.3431, 7.3424, 7.342, 7.3413, 7.3408, 7.342, 7.3433, 7.3427, 7.3422, 7.3415, 7.3408, 7.3406, 7.3419, 7.3433, 7.3428, 7.3423, 7.3435, 7.3411, 7.3443, 7.3439, 7.3431, 7.3444, 7.3438, 7.3433, 7.3426, 7.3423, 7.3435, 7.3429, 7.3426, 7.3452, 7.3447, 7.344, 7.346, 7.3475, 7.3468, 7.346, 7.3455, 7.345, 7.3443, 7.3436, 7.3429, 7.3424, 7.3417, 7.341, 7.3407, 7.3401, 7.3394, 7.3406, 7.3399, 7.3411, 7.3404, 7.3397, 7.341, 7.3422, 7.3415, 7.3427, 7.3439, 7.3432, 7.3425, 7.3438, 7.3451, 7.3444, 7.3421, 7.3416, 7.3409, 7.3402, 7.3395, 7.339, 7.3385, 7.3381, 7.3374, 7.337, 7.3364, 7.3357, 7.3352, 7.3351, 7.3363, 7.3359, 7.3372, 7.3386, 7.3379, 7.3373, 7.3367, 7.3361, 7.3354, 7.3348, 7.3345, 7.3358, 7.3352, 7.3345, 7.3357, 7.335, 7.3344, 7.3337, 7.3332, 7.3345, 7.3361, 7.3341, 7.3336, 7.333, 7.3325, 7.3321, 7.3315, 7.3311, 7.3304, 7.3298, 7.3293, 7.3288, 7.3282, 7.3294, 7.3289, 7.3283, 7.326, 7.3254, 7.3248, 7.3243, 7.3236, 7.3229, 7.3225, 7.3219, 7.3214, 7.3208, 7.3202, 7.3195, 7.3207, 7.3201, 7.3197, 7.3209, 7.3203, 7.3216, 7.3229, 7.3241, 7.3235, 7.3246, 7.324, 7.3235, 7.3229, 7.3223, 7.3236, 7.3247, 7.3241, 7.3254, 7.3249, 7.3243, 7.3239, 7.3232, 7.3229, 7.3242, 7.3254, 7.3248, 7.3242, 7.3239, 7.3232, 7.3225, 7.3237, 7.3253, 7.323, 7.3242, 7.3236, 7.323, 7.3259, 7.3252, 7.3264, 7.3258, 7.3252, 7.3247, 7.324, 7.3236, 7.323, 7.3242, 7.3235, 7.3213, 7.319, 7.3187, 7.3181, 7.3174, 7.3167, 7.316, 7.3155, 7.3166, 7.3161, 7.3154, 7.3148, 7.3141, 7.3136, 7.3148, 7.3143, 7.3143, 7.3139, 7.3151, 7.315, 7.3162, 7.3159, 7.3153, 7.3146, 7.3141, 7.3153, 7.3147, 7.3144, 7.3156, 7.3153, 7.3168, 7.3179, 7.3172, 7.3191, 7.3185, 7.3185, 7.3179, 7.3172, 7.3166, 7.3161, 7.3156, 7.3153, 7.3148, 7.3142, 7.3137, 7.3132, 7.3146, 7.316, 7.3171, 7.3183, 7.3176, 7.3155, 7.3166, 7.316, 7.3137, 7.3132, 7.3143, 7.3138, 7.3135, 7.3131, 7.3124, 7.3119, 7.3112, 7.3123, 7.3116, 7.313, 7.3124, 7.3136, 7.3131, 7.3143, 7.3138, 7.3132, 7.3126, 7.3138, 7.3132, 7.3144, 7.3138, 7.3133, 7.3128, 7.3129, 7.3123, 7.3137, 7.3131, 7.3114, 7.3108, 7.3103, 7.3098, 7.3096, 7.3089, 7.3083, 7.3094, 7.309, 7.3083, 7.3078, 7.3074, 7.3069, 7.3063, 7.3075, 7.3069, 7.3049, 7.3043, 7.3036, 7.3032, 7.3082, 7.3076, 7.3054, 7.3048, 7.3042, 7.3055, 7.3103, 7.3081, 7.3093, 7.311, 7.3104, 7.3117, 7.3112, 7.3106, 7.3103, 7.311, 7.3104, 7.3116, 7.3115, 7.3127, 7.3145, 7.314, 7.3138, 7.3144, 7.3141, 7.3136, 7.3146, 7.3161, 7.3155, 7.3155, 7.3172, 7.3183, 7.3194, 7.3191, 7.3186, 7.318, 7.3173, 7.3167, 7.316, 7.3156, 7.3167, 7.3179, 7.3172, 7.3167, 7.3162, 7.3155, 7.3148, 7.3143, 7.3136, 7.3148, 7.3159, 7.3153, 7.3165, 7.3161, 7.3155, 7.3168, 7.3164, 7.3158, 7.3153, 7.3147, 7.3159, 7.3153, 7.3166, 7.3162, 7.3156, 7.3153, 7.3131, 7.3142, 7.3137, 7.3117, 7.3112, 7.3106, 7.3102, 7.3098, 7.3096, 7.309, 7.3101, 7.3131, 7.3127, 7.3123, 7.3101, 7.3095, 7.3089, 7.3084, 7.3079, 7.309, 7.3086, 7.3082, 7.3079, 7.3074, 7.3085, 7.3095, 7.3108, 7.3103, 7.3097, 7.3092, 7.3087, 7.3081, 7.3077, 7.307, 7.3099, 7.3093, 7.3089, 7.3085, 7.3096, 7.3091, 7.3084, 7.3095, 7.309, 7.3087, 7.3087, 7.3065, 7.3044, 7.3039, 7.3035, 7.3046, 7.3057, 7.3054, 7.3049, 7.3043, 7.3053, 7.3064, 7.3059, 7.3055, 7.3066, 7.3076, 7.3087, 7.3082, 7.3078, 7.3072, 7.3068, 7.3062, 7.3056, 7.3034, 7.3028, 7.3022, 7.3033, 7.3029, 7.3042, 7.3053, 7.3066, 7.3112, 7.3106, 7.3102, 7.3096, 7.309, 7.3085, 7.3079, 7.309, 7.312, 7.3114, 7.3161, 7.3168, 7.3163, 7.3175, 7.317, 7.3165, 7.3162, 7.3157, 7.3152, 7.3147, 7.3157, 7.3168, 7.3162, 7.3172, 7.3166, 7.3162, 7.3156, 7.3168, 7.3162, 7.3156, 7.3151, 7.3146, 7.314, 7.3137, 7.3131, 7.313, 7.3127, 7.3138, 7.3149, 7.3144, 7.3155, 7.3166, 7.3178, 7.3172, 7.3166, 7.3161, 7.3163, 7.3212, 7.3207, 7.3202, 7.3196, 7.3193, 7.3187, 7.3198, 7.3193, 7.3189, 7.3234, 7.3228, 7.3225, 7.3221, 7.3216, 7.321, 7.3208, 7.3253, 7.3248, 7.3242, 7.325, 7.3263, 7.3276, 7.3272, 7.3266, 7.3276, 7.3287, 7.3281, 7.3275, 7.3269, 7.3266, 7.326, 7.3254, 7.3265, 7.3261, 7.3273, 7.3253, 7.3247, 7.3241, 7.3235, 7.3247, 7.3248, 7.3243, 7.3237, 7.3232, 7.3226, 7.322, 7.3232, 7.3242, 7.3237, 7.3233, 7.3229, 7.3224, 7.3223, 7.3217, 7.3227, 7.3221, 7.3215, 7.3211, 7.3222, 7.3216, 7.3243, 7.3238, 7.3232, 7.3226, 7.322, 7.3215, 7.3232, 7.3229, 7.3241, 7.3257, 7.3251, 7.3245, 7.3239, 7.3233, 7.3244, 7.3238, 7.3234, 7.3215, 7.3226, 7.3221, 7.3216, 7.3213, 7.3208, 7.3202, 7.328, 7.3275, 7.3269, 7.3283, 7.3277, 7.3272, 7.3282, 7.3292, 7.3286, 7.3298, 7.3294, 7.3288, 7.3282, 7.3276, 7.3276, 7.3272, 7.3284, 7.328, 7.3292, 7.3286, 7.3281, 7.3277, 7.3276, 7.3273, 7.3268, 7.3296, 7.3306, 7.3317, 7.3327, 7.3339, 7.3336, 7.3333, 7.3327, 7.3322, 7.3318, 7.3328, 7.3324, 7.3334, 7.3329, 7.3324, 7.3335, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3348, 7.3343, 7.3337, 7.3332, 7.3342, 7.3337, 7.3348, 7.3342, 7.3336, 7.3333, 7.3327, 7.3323, 7.3318, 7.3329, 7.3324, 7.3318, 7.3328, 7.3338, 7.3332, 7.3358, 7.3358, 7.3353, 7.3348, 7.3358, 7.336, 7.337, 7.3366, 7.336, 7.3361, 7.3355, 7.335, 7.3346, 7.334, 7.3334, 7.333, 7.3329, 7.3325, 7.3321, 7.3331, 7.3326, 7.332, 7.333, 7.3327, 7.3338, 7.3333, 7.3328, 7.3324, 7.3319, 7.3314, 7.3325, 7.332, 7.3315, 7.3309, 7.3306, 7.33, 7.3296, 7.329, 7.3301, 7.3295, 7.3289, 7.3299, 7.3294, 7.3289, 7.3285, 7.3292, 7.3306, 7.3303, 7.3299, 7.3294, 7.3291, 7.3286, 7.3281, 7.3276, 7.327, 7.3265, 7.3259, 7.3254, 7.3248, 7.3242, 7.3254, 7.3248, 7.3229, 7.3238, 7.3232, 7.3242, 7.3238, 7.3258, 7.3275, 7.3271, 7.3283, 7.3279, 7.3273, 7.3268, 7.3279, 7.3289, 7.3286, 7.3282, 7.3263, 7.326, 7.3255, 7.3264, 7.3259, 7.3285, 7.328, 7.3277, 7.3287, 7.3283, 7.3289, 7.3299, 7.3295, 7.329, 7.33, 7.3295, 7.3292, 7.3286, 7.328, 7.3276, 7.327, 7.3264, 7.3261, 7.3255, 7.3251, 7.3246, 7.3241, 7.3235, 7.3232, 7.3226, 7.3315, 7.3325, 7.3335, 7.3331, 7.3327, 7.3308, 7.3335, 7.336, 7.3388, 7.3409, 7.3432, 7.3426, 7.3423, 7.3434, 7.3444, 7.3457, 7.3467, 7.3481, 7.3478, 7.3487, 7.3498, 7.3493, 7.3497, 7.3507, 7.3503, 7.3504, 7.3499, 7.3493, 7.3489, 7.3485, 7.3481, 7.3477, 7.3471, 7.3481, 7.3492, 7.3496, 7.3506, 7.3514, 7.351, 7.3507, 7.3501, 7.35, 7.3502, 7.3499, 7.3493, 7.3487, 7.3499, 7.3493, 7.3521, 7.3518, 7.3513, 7.351, 7.3506, 7.35, 7.3497, 7.3508, 7.3503, 7.3498, 7.3515, 7.351, 7.3506, 7.3501, 7.3495, 7.3505, 7.3501, 7.3495, 7.3492, 7.3488, 7.3484, 7.3494, 7.3493, 7.3487, 7.3481, 7.3477, 7.3486, 7.348, 7.348, 7.3477, 7.348, 7.3475, 7.347, 7.3465, 7.3462, 7.3459, 7.3453, 7.3449, 7.3443, 7.344, 7.3435, 7.343, 7.3424, 7.3418, 7.3412, 7.3408, 7.3403, 7.3412, 7.3408, 7.3403, 7.3398, 7.3393, 7.3402, 7.3384, 7.338, 7.3378, 7.3373, 7.3367, 7.3361, 7.3355, 7.3369, 7.338, 7.3376, 7.337, 7.3365, 7.336, 7.3355, 7.3365, 7.3366, 7.3347, 7.3344, 7.3341, 7.334, 7.3353, 7.3348, 7.3354, 7.3348, 7.3343, 7.3338, 7.3332, 7.3341, 7.3336, 7.3332, 7.3328, 7.3323, 7.3317, 7.3323, 7.3333, 7.3327, 7.3337, 7.3349, 7.3345, 7.334, 7.3322, 7.3334, 7.3331, 7.3328, 7.334, 7.3334, 7.3341, 7.3336, 7.3331, 7.3326, 7.3322, 7.3319, 7.3329, 7.3324, 7.3319, 7.333, 7.3325, 7.332, 7.3315, 7.3351, 7.336, 7.3355, 7.3352, 7.3352, 7.3364, 7.336, 7.3357, 7.3351, 7.3348, 7.3358, 7.3368, 7.3369, 7.3366, 7.3362, 7.3357, 7.3354, 7.3364, 7.3372, 7.3367, 7.3362, 7.3357, 7.3367, 7.3363, 7.3373, 7.3367, 7.3377, 7.3372, 7.3368, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3363, 7.3346, 7.3355, 7.3363, 7.3346, 7.3397, 7.3392, 7.3389, 7.3384, 7.3379, 7.3389, 7.3383, 7.3378, 7.3373, 7.3368, 7.3364, 7.3359, 7.3363, 7.3366, 7.3362, 7.3359, 7.3363, 7.3359, 7.3357, 7.3366, 7.3374, 7.3389, 7.3387, 7.3383, 7.338, 7.3375, 7.3384, 7.3379, 7.3373, 7.3368, 7.335, 7.336, 7.3356, 7.3353, 7.3378, 7.3373, 7.3382, 7.3378, 7.3388, 7.3383, 7.3379, 7.3374, 7.3383, 7.3379, 7.3375, 7.337, 7.3366, 7.336, 7.3355, 7.3353, 7.3362, 7.3358, 7.3368, 7.3363, 7.3359, 7.3355, 7.3352, 7.3349, 7.3348, 7.338, 7.3388, 7.3384, 7.338, 7.3376, 7.3372, 7.3366, 7.3362, 7.3374, 7.337, 7.3365, 7.3363, 7.3372, 7.3369, 7.3353, 7.3349, 7.3361, 7.3358, 7.3368, 7.3376, 7.3371, 7.3394, 7.3391, 7.34, 7.3396, 7.3392, 7.34, 7.3396, 7.3391, 7.34, 7.3398, 7.3408, 7.3417, 7.3426, 7.342, 7.3415, 7.341, 7.3404, 7.3399, 7.3393, 7.3391, 7.3399, 7.3408, 7.3417, 7.3414, 7.3409, 7.3404, 7.3414, 7.341, 7.3406, 7.3404, 7.3399, 7.3395, 7.339, 7.3385, 7.3411, 7.3393, 7.3388, 7.3397, 7.3393, 7.3403, 7.3458, 7.3453, 7.3463, 7.3462, 7.3457, 7.3454, 7.3449, 7.3449, 7.3444, 7.3439, 7.3434, 7.3432, 7.3428, 7.3423, 7.3419, 7.3415, 7.3424, 7.3419, 7.3415, 7.341, 7.341, 7.3408, 7.3403, 7.3412, 7.3408, 7.3405, 7.3407, 7.3403, 7.3418, 7.3416, 7.3423, 7.3418, 7.3413, 7.3408, 7.3403, 7.3398, 7.3393, 7.339, 7.3391, 7.34, 7.3397, 7.3392, 7.3391, 7.3393, 7.3402, 7.341, 7.3419, 7.3428, 7.3435, 7.3444, 7.3452, 7.3475, 7.3498, 7.3494, 7.3489, 7.3485, 7.348, 7.3516, 7.3527, 7.3538, 7.3536, 7.3533, 7.3528, 7.3524, 7.352, 7.3516, 7.3525, 7.352, 7.3515, 7.3511, 7.3509, 7.3504, 7.3499, 7.3494, 7.3491, 7.3486, 7.3481, 7.3476, 7.3473, 7.3469, 7.3465, 7.346, 7.3469, 7.3464, 7.3462, 7.3457, 7.3457, 7.3453, 7.3449, 7.3444, 7.3439, 7.3436, 7.3432, 7.3427, 7.3424, 7.342, 7.3415, 7.3411, 7.3408, 7.3403, 7.3399, 7.3397, 7.3392, 7.3388, 7.3397, 7.3394, 7.3389, 7.3384, 7.338, 7.339, 7.3399, 7.3395, 7.3392, 7.3387, 7.3384, 7.3379, 7.3375, 7.337, 7.3365, 7.3375, 7.3371, 7.3366, 7.3362, 7.3357, 7.3379, 7.3374, 7.3383, 7.3378, 7.3374, 7.339, 7.3387, 7.3434, 7.343, 7.3427, 7.3436, 7.3432, 7.3427, 7.3435, 7.3432, 7.3427, 7.3422, 7.3417, 7.3413, 7.3412, 7.3407, 7.3402, 7.34, 7.3402, 7.3399, 7.3396, 7.3394, 7.3391, 7.3387, 7.3383, 7.3379, 7.3375, 7.3371, 7.3367, 7.3363, 7.3357, 7.3366, 7.3363, 7.3358, 7.3356, 7.3352, 7.3378, 7.3386, 7.3381, 7.3377, 7.3372, 7.3367, 7.3375, 7.337, 7.3379, 7.3406, 7.3402, 7.3399, 7.3409, 7.3405, 7.3408, 7.3403, 7.3399, 7.3402, 7.3411, 7.3407, 7.339, 7.3432, 7.3429, 7.3426, 7.3422, 7.3435, 7.3443, 7.3438, 7.3434, 7.343, 7.3426, 7.3452, 7.3448, 7.3444, 7.3439, 7.3453, 7.345, 7.3459, 7.3454, 7.347, 7.3467, 7.3463, 7.3477, 7.3485, 7.3482, 7.3477, 7.3473, 7.3481, 7.3476, 7.3485, 7.3481, 7.3484, 7.3482, 7.3478, 7.3473, 7.3457, 7.3453, 7.3451, 7.3448, 7.346, 7.3456, 7.3439, 7.3434, 7.3432, 7.3443, 7.3451, 7.346, 7.3457, 7.3466, 7.3461, 7.3456, 7.3466, 7.3474, 7.3469, 7.3464, 7.3473, 7.347, 7.3479, 7.3475, 7.3472, 7.3482, 7.348, 7.3475, 7.349, 7.3499, 7.3498, 7.3506, 7.3517, 7.3512, 7.3508, 7.3504, 7.3514, 7.351, 7.3505, 7.3501, 7.3496, 7.3492, 7.3501, 7.3497, 7.3494, 7.349, 7.3499, 7.3508, 7.3504, 7.35, 7.3495, 7.3504, 7.3501, 7.3509, 7.3517, 7.3512, 7.3507, 7.3502, 7.3497, 7.3505, 7.35, 7.3495, 7.3491, 7.3486, 7.3494, 7.3489, 7.3484, 7.3479, 7.3487, 7.3482, 7.348, 7.3476, 7.3472, 7.348, 7.3476, 7.3473, 7.3481, 7.3476, 7.3471, 7.3468, 7.3476, 7.3471, 7.3467, 7.3475, 7.3472, 7.3467, 7.3463, 7.3458, 7.3454, 7.345, 7.3459, 7.3457, 7.3453, 7.3448, 7.3443, 7.3438, 7.3447, 7.3442, 7.3464, 7.346, 7.3456, 7.3452, 7.3448, 7.3457, 7.3466, 7.3461, 7.3469, 7.3465, 7.3461, 7.3444, 7.3458, 7.3458, 7.3453, 7.345, 7.3472, 7.3501, 7.3498, 7.3506, 7.3502, 7.3514, 7.351, 7.3506, 7.3502, 7.3498, 7.3494, 7.3489, 7.3497, 7.3495, 7.349, 7.3485, 7.3482, 7.3477, 7.3474, 7.3469, 7.3464, 7.3459, 7.3464, 7.3459, 7.3455, 7.3451, 7.346, 7.3455, 7.3452, 7.3453, 7.3449, 7.3445, 7.344, 7.3435, 7.3445, 7.3441, 7.3437, 7.3433, 7.3429, 7.3425, 7.3435, 7.343, 7.3429, 7.3425, 7.343, 7.3458, 7.3455, 7.3451, 7.3447, 7.3442, 7.3437, 7.3434, 7.343, 7.3429, 7.3439, 7.3436, 7.342, 7.3418, 7.3414, 7.3423, 7.3419, 7.3427, 7.3422, 7.3418, 7.3414, 7.3409, 7.3405, 7.34, 7.3409, 7.3405, 7.3402, 7.3399, 7.344, 7.3448, 7.3456, 7.3464, 7.3461, 7.3457, 7.3452, 7.3436, 7.3445, 7.3443, 7.3438, 7.3435, 7.343, 7.3426, 7.3435, 7.3431, 7.3454, 7.3449, 7.3458, 7.3453, 7.345, 7.3445, 7.3443, 7.3451, 7.3449, 7.3446, 7.3467, 7.3465, 7.346, 7.3456, 7.3504, 7.3503, 7.3513, 7.3509, 7.3517, 7.3512, 7.3508, 7.3505, 7.3501, 7.3498, 7.3495, 7.3491, 7.3487, 7.3487, 7.3483, 7.348, 7.3476, 7.3472, 7.3468, 7.3484, 7.348, 7.3477, 7.3476, 7.3472, 7.3467, 7.3475, 7.3472, 7.3481, 7.3477, 7.3473, 7.3481, 7.3477, 7.3477, 7.3474, 7.347, 7.3465, 7.3463, 7.347, 7.3465, 7.346, 7.3456, 7.3452, 7.3459, 7.3467, 7.3463, 7.346, 7.3456, 7.3453, 7.345, 7.3447, 7.3443, 7.3439, 7.3434, 7.3429, 7.3479, 7.3475, 7.3471, 7.3468, 7.3476, 7.3491, 7.3488, 7.3508, 7.3503, 7.3498, 7.3483, 7.3479, 7.3475, 7.347, 7.3466, 7.3462, 7.3457, 7.3454, 7.3449, 7.3445, 7.3454, 7.345, 7.3447, 7.3459, 7.3468, 7.3477, 7.3486, 7.3495, 7.3491, 7.351, 7.3505, 7.35, 7.35, 7.3496, 7.3491, 7.3487, 7.3483, 7.3491, 7.3505, 7.35, 7.3495, 7.3492, 7.35, 7.3508, 7.3503, 7.3511, 7.3507, 7.3504, 7.3502, 7.351, 7.3518, 7.3513, 7.351, 7.3516, 7.3511, 7.3507, 7.3503, 7.3512, 7.3507, 7.3515, 7.3513, 7.3521, 7.3516, 7.3524, 7.3519, 7.3515, 7.3523, 7.3518, 7.3527, 7.3535, 7.3543, 7.3539, 7.3547, 7.3555, 7.3551, 7.355, 7.3546, 7.3544, 7.354, 7.3536, 7.3531, 7.3528, 7.3539, 7.3547, 7.3555, 7.3551, 7.3546, 7.3542, 7.3538, 7.3533, 7.3542, 7.3537, 7.3545, 7.3576, 7.3573, 7.3581, 7.3577, 7.3574, 7.3581, 7.3592, 7.3588, 7.3586, 7.3583, 7.3579, 7.3587, 7.3595, 7.359, 7.3598, 7.3594, 7.3602, 7.3597, 7.3605, 7.3613, 7.3609, 7.3605, 7.3601, 7.3609, 7.3618, 7.3613, 7.362, 7.3616, 7.3612, 7.3609, 7.3605, 7.3637, 7.3633, 7.3629, 7.3624, 7.3619, 7.3615, 7.363, 7.3656, 7.3663, 7.3658, 7.3653, 7.3649, 7.3645, 7.3642, 7.3638, 7.3634, 7.3664, 7.3662, 7.3658, 7.366, 7.3672, 7.3668, 7.3664, 7.3659, 7.3667, 7.3663, 7.366, 7.3667, 7.3669, 7.3664, 7.366, 7.3656, 7.3665, 7.3661, 7.3656, 7.3652, 7.3648, 7.3645, 7.3653, 7.3649, 7.3647, 7.3644, 7.3642, 7.365, 7.3646, 7.3642, 7.3662, 7.367, 7.3678, 7.3675, 7.371, 7.3705, 7.3701, 7.3708, 7.374, 7.3748, 7.3743, 7.3757, 7.3753, 7.375, 7.3758, 7.3758, 7.3754, 7.3739, 7.3734, 7.3729, 7.3738, 7.3736, 7.3731, 7.3716, 7.3723, 7.3731, 7.3727, 7.3735, 7.3731, 7.3728, 7.3735, 7.3755, 7.3751, 7.3748, 7.3744, 7.374, 7.3748, 7.3744, 7.3739, 7.3745, 7.3742, 7.374, 7.3737, 7.3733, 7.3743, 7.3739, 7.3734, 7.3742, 7.3738, 7.3734, 7.3743, 7.3739, 7.3736, 7.3733, 7.3729, 7.3736, 7.3732, 7.3742, 7.3738, 7.3734, 7.3742, 7.3739, 7.3743, 7.3767, 7.3765, 7.3761, 7.3758, 7.3754, 7.375, 7.3806, 7.3815, 7.3811, 7.3808, 7.3805, 7.3813, 7.3822, 7.3819, 7.3828, 7.3824, 7.3819, 7.3815, 7.3811, 7.3809, 7.3817, 7.3816, 7.3823, 7.382, 7.3816, 7.3813, 7.3821, 7.3829, 7.3837, 7.3835, 7.3833, 7.3832, 7.3828, 7.3837, 7.3834, 7.3829, 7.3825, 7.3821, 7.3816, 7.3824, 7.382, 7.3818, 7.3815, 7.3823, 7.3819, 7.3815, 7.381, 7.3818, 7.3814, 7.3822, 7.3819, 7.3827, 7.3823, 7.382, 7.3815, 7.3811, 7.3819, 7.3816, 7.3812, 7.3813, 7.382, 7.3816, 7.3816, 7.3813, 7.3809, 7.3807, 7.3803, 7.3799, 7.3795, 7.3804, 7.3812, 7.3821, 7.3817, 7.3814, 7.382, 7.3816, 7.3812, 7.3807, 7.3804, 7.3812, 7.3807, 7.3804, 7.38, 7.3796, 7.3803, 7.381, 7.3814, 7.3811, 7.3807, 7.3827, 7.3823, 7.382, 7.3852, 7.3848, 7.3845, 7.3853, 7.3849, 7.3846, 7.3843, 7.384, 7.3837, 7.3845, 7.3853, 7.3848, 7.3846, 7.3843, 7.3838, 7.3834, 7.3832, 7.3828, 7.3835, 7.3832, 7.3831, 7.3838, 7.3847, 7.3843, 7.3839, 7.3835, 7.3831, 7.3838, 7.3833, 7.3829, 7.3826, 7.3832, 7.3829, 7.3825, 7.3833, 7.3841, 7.3838, 7.3845, 7.383, 7.3827, 7.3823, 7.3819, 7.3826, 7.3833, 7.383, 7.3828, 7.3825, 7.3822, 7.3818, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3829, 7.3824, 7.3821, 7.3831, 7.3816, 7.3813, 7.381, 7.3806, 7.3813, 7.381, 7.3818, 7.3814, 7.3821, 7.3854, 7.3861, 7.3902, 7.391, 7.3908, 7.3905, 7.3901, 7.3898, 7.3894, 7.389, 7.3897, 7.3892, 7.3888, 7.3884, 7.3891, 7.3887, 7.3883, 7.3879, 7.3876, 7.3874, 7.3881, 7.3877, 7.3885, 7.3893, 7.389, 7.3886, 7.3884, 7.3881, 7.3888, 7.3918, 7.3914, 7.3915, 7.3916, 7.3922, 7.3919, 7.3924, 7.392, 7.3917, 7.3913, 7.3909, 7.3905, 7.3902, 7.3899, 7.3919, 7.3915, 7.3911, 7.3908, 7.3905, 7.3901, 7.391, 7.3906, 7.3903, 7.3899, 7.3896, 7.3902, 7.3899, 7.3906, 7.3913, 7.392, 7.3917, 7.3925, 7.3921, 7.3918, 7.3915, 7.3911, 7.3907, 7.3903, 7.391, 7.3906, 7.3902, 7.3898, 7.3939, 7.3935, 7.3942, 7.3939, 7.3946, 7.3943, 7.394, 7.3937, 7.3933, 7.3929, 7.3924, 7.392, 7.3916, 7.3912, 7.3919, 7.3926, 7.3934, 7.393, 7.3926, 7.3912, 7.3909, 7.3927, 7.3934, 7.3941, 7.3948, 7.3945, 7.3942, 7.394, 7.3936, 7.3934, 7.3952, 7.3951, 7.3948, 7.3945, 7.4008, 7.4004, 7.4, 7.3986, 7.3981, 7.3977, 7.3973, 7.397, 7.3966, 7.3962, 7.3959, 7.3955, 7.3951, 7.3947, 7.3943, 7.3951, 7.3946, 7.3955, 7.3952, 7.3949, 7.3945, 7.3959, 7.3956, 7.3999, 7.4008, 7.4026, 7.4025, 7.4032, 7.4029, 7.4036, 7.4034, 7.4033, 7.4037, 7.4045, 7.4041, 7.4038, 7.4036, 7.4032, 7.4039, 7.4036, 7.4044, 7.4041, 7.4038, 7.4045, 7.4044, 7.404, 7.4036, 7.4034, 7.403, 7.4037, 7.4044, 7.4041, 7.4038, 7.4024, 7.4032, 7.4039, 7.4046, 7.4043, 7.4051, 7.4058, 7.406, 7.4057, 7.4053, 7.4049, 7.4056, 7.4063, 7.4051, 7.4047, 7.4043, 7.4041, 7.4027, 7.4023, 7.4019, 7.4019, 7.4016, 7.4033, 7.4036, 7.4032, 7.4029, 7.4025, 7.4021, 7.4018, 7.4024, 7.402, 7.4017, 7.4024, 7.402, 7.4016, 7.4002, 7.3998, 7.3996, 7.4004, 7.4001, 7.3999, 7.3997, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3988, 7.3985, 7.3982, 7.3978, 7.3974, 7.3972, 7.3969, 7.3966, 7.3973, 7.397, 7.3967, 7.3963, 7.3965, 7.3962, 7.3969, 7.3976, 7.3973, 7.3969, 7.3965, 7.3972, 7.3968, 7.3965, 7.3961, 7.3957, 7.3954, 7.3951, 7.3958, 7.3954, 7.395, 7.3947, 7.3933, 7.394, 7.3937, 7.3933, 7.3929, 7.3926, 7.3922, 7.3919, 7.3926, 7.3923, 7.3909, 7.3906, 7.3902, 7.3909, 7.3916, 7.3913, 7.3909, 7.3916, 7.3923, 7.3919, 7.3915, 7.3912, 7.3908, 7.3904, 7.3911, 7.3908, 7.3905, 7.3901, 7.3898, 7.3895, 7.3892, 7.3888, 7.3884, 7.388, 7.3887, 7.3894, 7.3902, 7.3898, 7.3894, 7.389, 7.3888, 7.3884, 7.3882, 7.3889, 7.3885, 7.3882, 7.3889, 7.3885, 7.3892, 7.3913, 7.3919, 7.3915, 7.3912, 7.3909, 7.3907, 7.3903, 7.3901, 7.3898, 7.3895, 7.3902, 7.3899, 7.3895, 7.3891, 7.3887, 7.3894, 7.3901, 7.3907, 7.3914, 7.3932, 7.3949, 7.3945, 7.3941, 7.3948, 7.3944, 7.3942, 7.3938, 7.3934, 7.3932, 7.3928, 7.3957, 7.3944, 7.3962, 7.3959, 7.3977, 7.3974, 7.3972, 7.397, 7.3967, 7.3972, 7.3979, 7.3975, 7.3971, 7.3968, 7.3965, 7.3971, 7.3968, 7.3974, 7.3971, 7.3968, 7.3964, 7.396, 7.3957, 7.3954, 7.3951, 7.3958, 7.3955, 7.3954, 7.3952, 7.3948, 7.3947, 7.3943, 7.3939, 7.3935, 7.3931, 7.3928, 7.3935, 7.3932, 7.3919, 7.3917, 7.3914, 7.3911, 7.3908, 7.3904, 7.39, 7.3907, 7.3903, 7.3899, 7.3897, 7.3905, 7.3903, 7.39, 7.3907, 7.3915, 7.3912, 7.391, 7.3906, 7.3903, 7.3901, 7.3897, 7.3903, 7.39, 7.3896, 7.3893, 7.3889, 7.3886, 7.3894, 7.3893, 7.3893, 7.3889, 7.3886, 7.3884, 7.3892, 7.3899, 7.3897, 7.3927, 7.3924, 7.3921, 7.3929, 7.3925, 7.3926, 7.3922, 7.3919, 7.3905, 7.3902, 7.3899, 7.3896, 7.3887, 7.3883, 7.3881, 7.3877, 7.3873, 7.3871, 7.3867, 7.3875, 7.3874, 7.3881, 7.388, 7.3887, 7.3884, 7.388, 7.3876, 7.3873, 7.3871, 7.3879, 7.3876, 7.3874, 7.3871, 7.3878, 7.3875, 7.3872, 7.3868, 7.3875, 7.3882, 7.3869, 7.3866, 7.3864, 7.3861, 7.3858, 7.3854, 7.3851, 7.3848, 7.3845, 7.3854, 7.3851, 7.3847, 7.3853, 7.385, 7.3837, 7.3825, 7.3822, 7.3829, 7.3826, 7.3833, 7.383, 7.3826, 7.3824, 7.3821, 7.3818, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3798, 7.3795, 7.3792, 7.3799, 7.3796, 7.3813, 7.382, 7.3816, 7.3813, 7.3821, 7.382, 7.3826, 7.3833, 7.3829, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3841, 7.3837, 7.3833, 7.384, 7.3847, 7.3845, 7.3842, 7.3844, 7.384, 7.3838, 7.3834, 7.3841, 7.3838, 7.3834, 7.384, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.385, 7.3846, 7.3845, 7.3841, 7.3839, 7.3836, 7.3834, 7.3831, 7.3828, 7.3827, 7.3824, 7.3822, 7.3818, 7.3815, 7.3811, 7.3809, 7.3813, 7.3809, 7.3805, 7.3801, 7.3797, 7.3805, 7.3802, 7.3799, 7.3795, 7.3802, 7.3798, 7.3795, 7.3792, 7.3791, 7.3788, 7.3784, 7.3782, 7.377, 7.3768, 7.3775, 7.3771, 7.3768, 7.3766, 7.3773, 7.3769, 7.3776, 7.3772, 7.3769, 7.3766, 7.3764, 7.376, 7.3757, 7.3755, 7.3754, 7.375, 7.3748, 7.3755, 7.3762, 7.3758, 7.3755, 7.3752, 7.3748, 7.3735, 7.3734, 7.3732, 7.3739, 7.3736, 7.3733, 7.3732, 7.3729, 7.3737, 7.3743, 7.374, 7.3737, 7.3733, 7.373, 7.3728, 7.3724, 7.3721, 7.3717, 7.3716, 7.3712, 7.3708, 7.3706, 7.3702, 7.3709, 7.3696, 7.3702, 7.3708, 7.3704, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3728, 7.3734, 7.3731, 7.3728, 7.3725, 7.3722, 7.3719, 7.3719, 7.3715, 7.3721, 7.3717, 7.3724, 7.3721, 7.3727, 7.3723, 7.374, 7.3737, 7.3734, 7.373, 7.3737, 7.3765, 7.3762, 7.3769, 7.3765, 7.3771, 7.3767, 7.3773, 7.3779, 7.3786, 7.3782, 7.3779, 7.3776, 7.3783, 7.3789, 7.3785, 7.3802, 7.38, 7.3796, 7.3803, 7.382, 7.3816, 7.3833, 7.383, 7.3826, 7.3822, 7.3828, 7.3824, 7.382, 7.3826, 7.3833, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3833, 7.384, 7.3838, 7.3835, 7.3841, 7.3847, 7.3843, 7.3849, 7.3855, 7.3861, 7.3858, 7.3855, 7.3851, 7.3848, 7.3855, 7.3862, 7.3858, 7.3854, 7.385, 7.3847, 7.3843, 7.3839, 7.3837, 7.3834, 7.383, 7.3827, 7.3824, 7.382, 7.3817, 7.3823, 7.3819, 7.3826, 7.3822, 7.3828, 7.3825, 7.3821, 7.3817, 7.3813, 7.3809, 7.3816, 7.3813, 7.3821, 7.3819, 7.3827, 7.3834, 7.3831, 7.3828, 7.3825, 7.3821, 7.3827, 7.3824, 7.3823, 7.383, 7.3827, 7.3824, 7.3821, 7.3817, 7.3823], '192.168.122.114': [10.659, 7.9768, 7.2521, 6.8601, 6.6943, 6.5908, 6.4914, 6.3863, 6.2582, 6.1833, 6.5629, 6.8982, 6.8205, 7.1645, 7.0342, 7.2808, 7.8222, 7.7088, 7.5989, 7.8443, 7.5187, 7.2045, 7.2171, 7.1415, 7.3198, 7.2736, 7.2028, 7.1439, 7.094, 7.048, 6.9936, 7.4576, 7.4126, 7.422, 7.5326, 7.5139, 7.475, 7.4167, 7.3863, 7.3442, 7.3047, 7.2591, 7.2351, 7.2003, 7.1796, 7.1567, 7.2283, 7.2985, 7.3786, 7.3456, 7.3048, 7.3748, 7.3439, 7.5064, 7.572, 7.6308, 7.6894, 7.6592, 7.6341, 7.602, 7.5729, 7.535, 7.5892, 7.5537, 7.538, 7.5043, 7.4733, 7.6966, 7.7399, 7.8084, 7.7749, 7.7456, 7.7324, 7.702, 7.6719, 7.6408, 7.6823, 7.7227, 7.6321, 7.6032, 7.6414, 7.6147, 7.5893, 7.6085, 7.582, 7.5583, 7.5576, 7.5339, 7.5105, 7.4872, 7.4661, 7.453, 7.4427, 7.4797, 7.4631, 7.441, 7.4204, 7.4048, 7.385, 7.3652, 7.3476, 7.3284, 7.3595, 7.3921, 7.3796, 7.361, 7.3959, 7.3913, 7.3864, 7.3749, 7.3559, 7.3439, 7.3332, 7.2745, 7.305, 7.2887, 7.2786, 7.2628, 7.2516, 7.2381, 7.2291, 7.2957, 7.3279, 7.3596, 7.3427, 7.3351, 7.3231, 7.3166, 7.3033, 7.2896, 7.2747, 7.3478, 7.3436, 7.331, 7.3185, 7.3101, 7.2956, 7.2962, 7.2886, 7.2779, 7.266, 7.2571, 7.2488, 7.2372, 7.2258, 7.213, 7.1996, 7.1906, 7.1842, 7.1718, 7.1634, 7.1526, 7.1417, 7.1368, 7.125, 7.1203, 7.1507, 7.1461, 7.1346, 7.1268, 7.1222, 7.1442, 7.137, 7.1263, 7.116, 7.1051, 7.0947, 7.085, 7.0752, 7.0649, 7.0868, 7.0808, 7.0745, 7.0648, 7.0579, 7.052, 7.0887, 7.0816, 7.0796, 7.0712, 7.0608, 7.053, 7.0462, 7.049, 7.0409, 7.0356, 7.0286, 7.0218, 7.0568, 7.0522, 7.0757, 7.0702, 7.0908, 7.0811, 7.074, 7.0464, 7.0382, 7.0355, 7.0277, 7.0193, 7.020300000000001, 7.0148, 7.0094, 7.0021, 6.9951, 6.989, 6.9864, 6.9861, 7.0048, 6.9992, 6.9976, 7.0183, 7.034, 7.0258, 7.0179, 7.036, 7.0277, 7.0466, 7.0639, 7.0816, 7.0744, 7.0929, 7.0939000000000005, 7.0907, 7.0835, 7.1006, 7.0931, 7.0864, 7.0796, 7.0835, 7.0795, 7.0745, 7.0717, 7.0729, 7.0877, 7.0828, 7.0767, 7.0732, 7.0665, 7.0609, 7.065, 7.061, 7.0589, 7.0425, 7.0415, 7.0387, 7.0316, 7.0249, 7.0206, 7.0163, 7.0101, 7.0095, 7.0667, 7.0817, 7.0761, 7.0569, 7.05, 7.0542, 7.055, 7.057, 7.0544, 7.0493, 7.0467, 7.0628, 7.0563, 7.0515, 7.0465, 7.0405, 7.0346, 7.0444, 7.0398, 7.0349, 7.031, 7.0079, 7.0022, 6.9989, 7.0116, 7.0101, 7.0122, 7.0062, 7.0005, 6.9961, 6.9912, 6.9871, 6.9825, 6.9963, 6.994, 6.991, 6.9881, 6.9823, 6.9769, 6.9759, 6.9704, 6.9832, 6.98, 6.9747, 6.9692, 6.9636, 6.9585, 6.9534, 6.9501, 6.9626, 6.9751, 6.9872, 6.9997, 6.9943, 6.9895, 7.0028, 6.9972, 7.0085, 7.0214, 7.0348, 7.0297, 7.0292, 7.0238, 7.0183, 7.0299, 7.042, 7.0424, 7.0371, 7.033, 7.0299, 7.0248, 7.0195, 7.0148, 7.0095, 7.0046, 6.9997, 6.9948, 6.9902, 6.9851, 6.9967, 7.0084, 7.0054, 7.0008, 7.0121, 7.0092, 7.0206, 7.0167, 7.0118, 7.0248, 7.0059, 7.0164, 7.0275, 7.0224, 7.0326, 7.0292, 7.0103, 7.0065, 7.089, 7.1072, 7.1284, 7.1498, 7.1445, 7.142, 7.1385, 7.1483, 7.1447, 7.1401, 7.1379, 7.1347, 7.145, 7.1409, 7.1429, 7.1289, 7.1391, 7.1367, 7.1324, 7.1302, 7.1395, 7.1485, 7.1444, 7.1398, 7.1365, 7.119, 7.1158, 7.1264, 7.1386, 7.1355, 7.1488, 7.1439, 7.1541, 7.1502, 7.1463, 7.1428, 7.1524, 7.1495, 7.1456, 7.1424, 7.1445, 7.1396, 7.1483, 7.1437, 7.1398, 7.1433, 7.1389, 7.1504, 7.1463, 7.1436, 7.1537, 7.1492, 7.1474, 7.1457, 7.1422, 7.1385, 7.1347, 7.1445, 7.1406, 7.1387, 7.1345, 7.1427, 7.1416, 7.1407, 7.1389, 7.1481, 7.1563, 7.1528, 7.1502, 7.1461, 7.1546, 7.1507, 7.1597, 7.1559, 7.1539, 7.1542, 7.1498, 7.1717, 7.1679, 7.1635, 7.1595, 7.1446, 7.1528, 7.1612, 7.1571, 7.1535, 7.1512, 7.159, 7.1442, 7.1402, 7.136, 7.1325, 7.1399, 7.1366, 7.1444, 7.1418, 7.1381, 7.1342, 7.1302, 7.1264, 7.1224, 7.1199, 7.1163, 7.1021, 7.1096, 7.1179, 7.1154, 7.1118, 7.1194, 7.1159, 7.1272, 7.1353, 7.1313, 7.1173, 7.1133, 7.115, 7.125, 7.1219, 7.1301, 7.1263, 7.1337, 7.13, 7.1261, 7.1224, 7.1188, 7.1151, 7.1112, 7.1076, 7.1162, 7.1125, 7.1097, 7.1071, 7.1046, 7.1025, 7.0997, 7.0962, 7.0942, 7.0911, 7.0989, 7.0955, 7.0943, 7.0907, 7.0879, 7.085, 7.0816, 7.0789, 7.0866, 7.0838, 7.0915, 7.088, 7.0862, 7.0835, 7.0901, 7.0867, 7.084, 7.0805, 7.0883, 7.0851, 7.0861, 7.094, 7.0906, 7.0973, 7.1039, 7.1037, 7.1005, 7.0974, 7.0943, 7.0907, 7.0875, 7.0941, 7.0912, 7.088, 7.095, 7.0919, 7.0887, 7.0958, 7.1026, 7.0909, 7.0981, 7.0949, 7.0923, 7.0896, 7.0969, 7.0949, 7.0968, 7.0938, 7.0906, 7.0873, 7.0855, 7.0891, 7.0859, 7.1143, 7.1117, 7.1084, 7.1056, 7.1066, 7.1036, 7.1102, 7.108, 7.1148, 7.1127, 7.1108, 7.1075, 7.1052, 7.102, 7.1089, 7.1156, 7.1127, 7.1094, 7.1077, 7.1048, 7.1036, 7.1103, 7.1168, 7.1136, 7.1121, 7.1104, 7.1075, 7.1142, 7.1125, 7.1054, 7.1024, 7.1094, 7.1064, 7.1047, 7.1112, 7.1173, 7.1142, 7.111, 7.1082, 7.1056, 7.1036, 7.1042, 7.0956, 7.0932, 7.0902, 7.1079, 7.1235, 7.1204, 7.1174, 7.1153, 7.1127, 7.1282, 7.1253, 7.1415, 7.1328, 7.1301, 7.1273, 7.1352, 7.1325, 7.1394, 7.1405, 7.139, 7.146, 7.143, 7.1409, 7.1385, 7.1369, 7.1354, 7.141, 7.139, 7.1453, 7.1452, 7.1457, 7.1428, 7.1401, 7.1407, 7.139, 7.1374, 7.1348, 7.1318, 7.1379, 7.1554, 7.1628, 7.1621, 7.1987, 7.1963, 7.2005, 7.1981, 7.2039, 7.2099, 7.2076, 7.2135, 7.2115, 7.2092, 7.208, 7.2063, 7.2036, 7.2081, 7.2052, 7.204, 7.2094, 7.2078, 7.2075, 7.2135, 7.2186, 7.217, 7.214, 7.2125, 7.2105, 7.2076, 7.2047, 7.1952, 7.1923, 7.1895, 7.1866, 7.184, 7.1903, 7.1973, 7.2036, 7.2211, 7.2203, 7.2257, 7.2235, 7.2284, 7.2187, 7.2164, 7.2141, 7.2114, 7.2162, 7.2133, 7.2113, 7.2162, 7.2133, 7.2036, 7.2094, 7.2067, 7.2116, 7.2092, 7.2072, 7.2049, 7.1956, 7.1929, 7.1903, 7.1959, 7.2011, 7.2033, 7.2028, 7.2002, 7.198, 7.2033, 7.2007, 7.1979, 7.2034, 7.2008, 7.1985, 7.196, 7.1934, 7.203, 7.2018, 7.1991, 7.1974, 7.2055, 7.2111, 7.216, 7.2205, 7.2192, 7.2186, 7.2172, 7.2145, 7.2134, 7.2107, 7.2153, 7.2204, 7.2178, 7.2157, 7.2205, 7.2186, 7.2162, 7.2134, 7.2108, 7.2085, 7.2066, 7.2041, 7.2022, 7.2001, 7.1978, 7.1954, 7.1927, 7.1912, 7.1891, 7.1869, 7.1922, 7.1976, 7.2029, 7.2006, 7.1916, 7.19, 7.1886, 7.1869, 7.1926, 7.1903, 7.1881, 7.1929, 7.1917, 7.1991, 7.2334, 7.2315, 7.2298, 7.2303, 7.2349, 7.2325, 7.2372, 7.2347, 7.2327, 7.2307, 7.2361, 7.2336, 7.2385, 7.236, 7.2343, 7.2329, 7.2264, 7.2382, 7.2366, 7.2357, 7.2567, 7.257, 7.2546, 7.2599, 7.2675, 7.2653, 7.2629, 7.2608, 7.2654, 7.2699, 7.2811, 7.2857, 7.2831, 7.2818, 7.2806, 7.2789, 7.2836, 7.2811, 7.2855, 7.2832, 7.2817, 7.28, 7.2846, 7.289, 7.2867, 7.2844, 7.276, 7.2803, 7.2781, 7.2758, 7.2736, 7.2782, 7.2772, 7.2752, 7.2793, 7.2776, 7.2755, 7.2734, 7.2712, 7.2689, 7.2665, 7.2647, 7.2733, 7.2778, 7.2761, 7.2744, 7.2724, 7.2885, 7.3025, 7.3002, 7.3045, 7.3021, 7.2998, 7.3008, 7.2987, 7.2968, 7.2955, 7.2933, 7.2908, 7.2884, 7.286, 7.2842, 7.2942, 7.2918, 7.2895, 7.2871, 7.2857, 7.2964, 7.2941, 7.2919, 7.2975, 7.2954, 7.2995, 7.3047, 7.309, 7.313, 7.3177, 7.316, 7.3137, 7.3182, 7.3166, 7.3169, 7.3148, 7.3135, 7.3111, 7.3089, 7.3066, 7.3054, 7.3041, 7.3025, 7.2947, 7.2925, 7.2908, 7.2955, 7.2933, 7.2911, 7.2895, 7.2875, 7.2851, 7.2838, 7.2881, 7.2857, 7.2836, 7.2815, 7.2738, 7.2761, 7.2739, 7.2663, 7.2703, 7.2688, 7.2673, 7.2656, 7.2641, 7.2619, 7.2597, 7.2575, 7.256, 7.2549, 7.2548, 7.2533, 7.2512, 7.2548, 7.253, 7.2513, 7.2492, 7.2474, 7.2453, 7.2434, 7.2419, 7.2411, 7.2393, 7.2455, 7.2435, 7.2508, 7.2588, 7.253, 7.2514, 7.2498, 7.2441, 7.2419, 7.2405, 7.246, 7.245, 7.2429, 7.2428, 7.2467, 7.2455, 7.2437, 7.243, 7.2423, 7.2654, 7.2635, 7.2621, 7.2601, 7.259, 7.2572, 7.255, 7.255, 7.2568, 7.2555, 7.2535, 7.2574, 7.2554, 7.2539, 7.2527, 7.2508, 7.2488, 7.2473, 7.2458, 7.2438, 7.2418, 7.2406, 7.2387, 7.2367, 7.2354, 7.234, 7.2319, 7.2299, 7.2286, 7.2274, 7.2255, 7.2185, 7.2224, 7.2215, 7.2196, 7.219, 7.2179, 7.2164, 7.2145, 7.2131, 7.2112, 7.2116, 7.2096, 7.2134, 7.2116, 7.2104, 7.2085, 7.2068, 7.2053, 7.2148, 7.2133, 7.2162, 7.2148, 7.2129, 7.2196, 7.2182, 7.2219, 7.22, 7.2182, 7.2164, 7.2146, 7.2129, 7.212, 7.2161, 7.2214, 7.2195, 7.2195, 7.2177, 7.2166, 7.2223, 7.2227, 7.2225, 7.2207, 7.2196, 7.2384, 7.2377, 7.2435, 7.2472, 7.2457, 7.2493, 7.2473, 7.2453, 7.2442, 7.2475, 7.2458, 7.2441, 7.2422, 7.2456, 7.2437, 7.2418, 7.2353, 7.2387, 7.2367, 7.235, 7.2282, 7.2278, 7.231, 7.2293, 7.2275, 7.2258, 7.224, 7.2221, 7.2209, 7.2245, 7.2235, 7.2218, 7.2204, 7.2205, 7.2157, 7.2153, 7.2141, 7.2177, 7.2208, 7.2192, 7.2192, 7.2228, 7.2209, 7.2192, 7.2227, 7.2208, 7.2189, 7.2173, 7.2429, 7.2477, 7.2462, 7.2444, 7.2427, 7.2411, 7.2453, 7.2389, 7.2372, 7.2358, 7.234, 7.2322, 7.2305, 7.2342, 7.2377, 7.2363, 7.2345, 7.2339, 7.232, 7.2305, 7.2292, 7.228, 7.2262, 7.2244, 7.2293, 7.2335, 7.2321, 7.2301, 7.2293, 7.2386, 7.2374, 7.2362, 7.2349, 7.2384, 7.2365, 7.2349, 7.2331, 7.2317, 7.2301, 7.2283, 7.2315, 7.2302, 7.2295, 7.2305, 7.2297, 7.2284, 7.2267, 7.2251, 7.2237, 7.2227, 7.2259, 7.2292, 7.2275, 7.2261, 7.2294, 7.2327, 7.231, 7.2301, 7.229, 7.2277, 7.2263, 7.2255, 7.2263, 7.2251, 7.2241, 7.2223, 7.2207, 7.2191, 7.2183, 7.2172, 7.216, 7.2154, 7.2137, 7.2129, 7.2162, 7.2151, 7.2143, 7.2128, 7.2163, 7.2151, 7.214, 7.2131, 7.2074, 7.2064, 7.2054, 7.2038, 7.2068, 7.2066, 7.2055, 7.2091, 7.2076, 7.2112, 7.21, 7.2084, 7.207, 7.2053, 7.2037, 7.2026, 7.2057, 7.2043, 7.2032, 7.2067, 7.2102, 7.2087, 7.2073, 7.2103, 7.2092, 7.2081, 7.2068, 7.2053, 7.2039, 7.2027, 7.2013, 7.2007, 7.207, 7.2056, 7.2108, 7.2096, 7.208, 7.2065, 7.2099, 7.2093, 7.2078, 7.2062, 7.2098, 7.2082, 7.207, 7.2053, 7.2042, 7.2072, 7.2055, 7.2038, 7.2021, 7.2049, 7.2044, 7.2051, 7.2035, 7.2063, 7.2047, 7.203, 7.2013, 7.2042, 7.1992, 7.2022, 7.2008, 7.1992, 7.1976, 7.1963, 7.1993, 7.2023, 7.2006, 7.2036, 7.1983, 7.1974, 7.1959, 7.1988, 7.198, 7.201, 7.2038, 7.2022, 7.2006, 7.1991, 7.2066, 7.2052, 7.2082, 7.2067, 7.2054, 7.204, 7.1985, 7.1968, 7.1998, 7.2027, 7.1972, 7.1962, 7.1946, 7.1936, 7.1926, 7.191, 7.1896, 7.1886, 7.183, 7.1863, 7.1899, 7.1887, 7.1874, 7.1862, 7.1846, 7.1838, 7.1829, 7.1816, 7.1808, 7.1799, 7.1794, 7.1787, 7.1783, 7.1776, 7.176, 7.1747, 7.178, 7.1772, 7.1763, 7.1752, 7.1737, 7.1769, 7.1758, 7.1749, 7.1737, 7.1723, 7.1708, 7.1735, 7.1683, 7.1669, 7.1655, 7.1645, 7.1636, 7.1622, 7.1612, 7.1597, 7.1582, 7.1568, 7.1596, 7.1624, 7.1611, 7.16, 7.1591, 7.1579, 7.1565, 7.1556, 7.1544, 7.1543, 7.1543, 7.1493, 7.1485, 7.1503, 7.1496, 7.1492, 7.1477, 7.1466, 7.147600000000001, 7.1466, 7.1453, 7.144, 7.1437, 7.1428, 7.1455, 7.1443, 7.1434, 7.1419, 7.1404, 7.1393, 7.1382, 7.1449, 7.1434, 7.1423, 7.1409, 7.1366, 7.1352, 7.1338, 7.1328, 7.1316, 7.1303, 7.1289, 7.1318, 7.1328000000000005, 7.133800000000001, 7.1368, 7.1414, 7.1374, 7.1403, 7.1393, 7.1382, 7.1372, 7.1367, 7.1357, 7.1346, 7.1386, 7.1435, 7.1425, 7.1416, 7.1443, 7.1452, 7.1482, 7.151, 7.1501, 7.149, 7.1565, 7.1595, 7.1583, 7.1574, 7.156, 7.1554, 7.1582, 7.1592, 7.1579, 7.1546, 7.1573, 7.1597, 7.1624, 7.1611, 7.1599, 7.1585, 7.1575, 7.1561, 7.1548, 7.155, 7.158, 7.1604, 7.163, 7.1623, 7.1613, 7.161, 7.1602, 7.1596, 7.1583, 7.1569, 7.1599, 7.1585, 7.161, 7.1603, 7.159, 7.1578, 7.1567, 7.157, 7.1559, 7.1546, 7.1539, 7.1532, 7.1521, 7.1512, 7.15, 7.1527, 7.153700000000001, 7.1524, 7.1513, 7.15, 7.1452, 7.1479, 7.1474, 7.1462, 7.1682, 7.1669, 7.1656, 7.1644, 7.1637, 7.1645, 7.1676, 7.1663, 7.1689, 7.1676, 7.1672, 7.1658, 7.1645, 7.1633, 7.1625, 7.1621, 7.1612, 7.1605, 7.1631, 7.1618, 7.1609, 7.1598, 7.1591, 7.1543, 7.1531, 7.1519, 7.1515, 7.154, 7.1538, 7.1532, 7.1559, 7.1548, 7.1539, 7.1526, 7.1514, 7.1538, 7.1491, 7.1479, 7.1467, 7.1461, 7.1449, 7.1442, 7.1433, 7.1456, 7.1483, 7.147, 7.1458, 7.1449, 7.1437, 7.1426, 7.1413, 7.1405, 7.136, 7.1347, 7.137, 7.1357, 7.1356, 7.1349, 7.1347, 7.1345, 7.1371, 7.1364, 7.1353, 7.1365, 7.1353, 7.1341, 7.1335, 7.1359, 7.1351, 7.138, 7.1369, 7.1361, 7.1317, 7.1343, 7.1333, 7.1324, 7.1318, 7.1315, 7.1325, 7.1314, 7.134, 7.1366, 7.1392, 7.1452, 7.144, 7.143, 7.1435, 7.1448, 7.1436, 7.1428, 7.1417, 7.1406, 7.1399, 7.1389, 7.1379, 7.1344, 7.1373, 7.1337, 7.1329, 7.1325, 7.1316, 7.1342, 7.1367, 7.1323, 7.1316, 7.1307, 7.1333, 7.1325, 7.1313, 7.1309, 7.1406, 7.1393, 7.1422, 7.1409, 7.1432, 7.1431, 7.1422, 7.1413, 7.1404, 7.1393, 7.1384, 7.1374, 7.1364, 7.1353, 7.1344, 7.1337, 7.1324, 7.1315, 7.1307, 7.1332, 7.1325, 7.135, 7.1339, 7.1329, 7.1321, 7.1344, 7.1369, 7.1357, 7.1346, 7.134, 7.1365, 7.136, 7.1385, 7.141, 7.1399, 7.1356, 7.1369, 7.1358, 7.1348, 7.1377, 7.1365, 7.1371, 7.1328, 7.1352, 7.1377, 7.1473, 7.1498, 7.1561, 7.1591, 7.1582, 7.1573, 7.1562, 7.155, 7.1541, 7.1541, 7.1609, 7.1598, 7.1658, 7.172, 7.1745, 7.1734, 7.1725, 7.1717, 7.1712, 7.1703, 7.1799, 7.1787, 7.1778, 7.1766, 7.1756, 7.1749, 7.1773, 7.1796, 7.1785, 7.1848, 7.1837, 7.1826, 7.1815, 7.1837, 7.1829, 7.1827, 7.1817, 7.1805, 7.1795, 7.1783, 7.1771, 7.1765, 7.1788, 7.1781, 7.1772, 7.176, 7.1749, 7.1778, 7.1804, 7.1793, 7.1787, 7.1812, 7.181, 7.1799, 7.1767, 7.179, 7.1813, 7.1805, 7.1793, 7.1815, 7.1837, 7.1863, 7.1904, 7.1925, 7.1913, 7.1903, 7.1894, 7.1897, 7.1886, 7.1878, 7.1911, 7.1899, 7.1907, 7.1896, 7.1885, 7.1882, 7.1871, 7.1871, 7.186, 7.185, 7.184, 7.1832, 7.1821, 7.1816, 7.1775, 7.1785000000000005, 7.1777, 7.18, 7.1791, 7.1813, 7.1803, 7.1799, 7.179, 7.1846, 7.1836, 7.1826, 7.1848, 7.1843, 7.1833, 7.1841, 7.1834, 7.1838, 7.1841, 7.1839, 7.1828, 7.1819, 7.1839, 7.186, 7.1853, 7.1813, 7.1804, 7.1799, 7.1823, 7.1818, 7.1844, 7.1865, 7.1854, 7.1845, 7.1867, 7.1959, 7.196, 7.1982, 7.1972, 7.1962, 7.1987, 7.1982, 7.2003, 7.1991, 7.1982, 7.2002, 7.1991, 7.199, 7.2012, 7.2005, 7.1998, 7.199, 7.1979, 7.1976, 7.1968, 7.1957, 7.1949, 7.194, 7.193, 7.1985, 7.1975, 7.1972, 7.1963, 7.1954, 7.1982, 7.2004, 7.2025, 7.2015, 7.2036, 7.2058, 7.2046, 7.2006, 7.1995, 7.2015, 7.2004, 7.1993, 7.1952, 7.1973, 7.201, 7.2031, 7.2052, 7.2059, 7.2049, 7.2043, 7.2065, 7.2089, 7.2083, 7.2104, 7.2093, 7.2134, 7.2158, 7.2149, 7.2142, 7.2135, 7.2126, 7.2114, 7.2109, 7.2139, 7.2127, 7.2121, 7.214, 7.2161, 7.215, 7.214, 7.2161, 7.215, 7.2139, 7.2128, 7.2117, 7.2109, 7.2099, 7.2093, 7.2084, 7.2105, 7.2125, 7.2114, 7.2108, 7.21, 7.2089, 7.2082, 7.2102, 7.2092, 7.2083, 7.2077, 7.2069, 7.2062, 7.2054, 7.2073, 7.2067, 7.2085, 7.2074, 7.2095, 7.2088, 7.2078, 7.2068, 7.2062, 7.2083, 7.2073, 7.2093, 7.2113, 7.2104, 7.2094, 7.2084, 7.2105, 7.2098, 7.2086, 7.2075, 7.2079, 7.2069, 7.206, 7.2079, 7.2102, 7.2092, 7.2081, 7.207, 7.2061, 7.2057, 7.2051, 7.2046, 7.2036, 7.2026, 7.2015, 7.201, 7.2007, 7.1997, 7.1989, 7.1979, 7.1971, 7.196, 7.1978, 7.1998, 7.2019, 7.2045, 7.2037, 7.2059, 7.2052, 7.2043, 7.2033, 7.2055, 7.2074, 7.2064, 7.2083, 7.2102, 7.2122, 7.2116, 7.2106, 7.2126, 7.2118, 7.2109, 7.2099, 7.2095, 7.2084, 7.2076, 7.2067, 7.2057, 7.2162, 7.2152, 7.2141, 7.2157, 7.2175, 7.2166, 7.2159, 7.2149, 7.2168, 7.2162, 7.2155, 7.2148, 7.2145, 7.2164, 7.2156, 7.2174, 7.2167, 7.2187, 7.2177, 7.2168, 7.216, 7.218, 7.2199, 7.2224, 7.2214, 7.2207, 7.2201, 7.2221, 7.224, 7.2232, 7.2253, 7.2244, 7.2237, 7.2258, 7.2249, 7.2242, 7.2236, 7.2241, 7.2233, 7.2224, 7.2259, 7.2249, 7.2239, 7.2232, 7.2252, 7.2242, 7.2234, 7.2224, 7.2216, 7.2205, 7.2198, 7.219, 7.2208, 7.2201, 7.2193, 7.2188, 7.2193, 7.2212, 7.2201, 7.2191, 7.2223, 7.2217, 7.2211, 7.2205, 7.2198, 7.2189, 7.218, 7.2172, 7.217, 7.2161, 7.2172, 7.2191, 7.2211, 7.2231, 7.2222, 7.2213, 7.2188, 7.2178, 7.2144, 7.2136, 7.2128, 7.2118, 7.2118, 7.2108, 7.2216, 7.2208, 7.2198, 7.2192, 7.2182, 7.2173, 7.2166, 7.2161, 7.2183, 7.2176, 7.2166, 7.2158, 7.2209, 7.2199, 7.2194, 7.219, 7.218, 7.2201, 7.2326, 7.2319, 7.2339, 7.2331, 7.2324, 7.2315, 7.2305, 7.2307, 7.23, 7.2295, 7.229, 7.2284, 7.2276, 7.2266, 7.226, 7.225, 7.2268, 7.2262, 7.2253, 7.2247, 7.2237, 7.2227, 7.2223, 7.2216, 7.2209, 7.2175, 7.2165, 7.2158, 7.2149, 7.214, 7.2137, 7.2128, 7.2135, 7.213, 7.2123, 7.2139, 7.213, 7.2154, 7.2152, 7.2143, 7.2162, 7.2156, 7.2175, 7.2166, 7.2158, 7.2176, 7.2166, 7.2158, 7.215, 7.2169, 7.2163, 7.218, 7.2177, 7.217, 7.2163, 7.2155, 7.2173, 7.2196, 7.2215, 7.2233, 7.2226, 7.2216, 7.2209, 7.2229, 7.2221, 7.2213, 7.2206, 7.2225, 7.2242, 7.2233, 7.2251, 7.2244, 7.2263, 7.2253, 7.2244, 7.2235, 7.2226, 7.2244, 7.2234, 7.2225, 7.2216, 7.2206, 7.2224, 7.2216, 7.2209, 7.2208, 7.2202, 7.2194, 7.2189, 7.2184, 7.218, 7.217, 7.2188, 7.2182, 7.2173, 7.2163, 7.2129, 7.2124, 7.2145, 7.214, 7.2132, 7.2124, 7.2133, 7.2128, 7.2119, 7.2228, 7.2218, 7.2213, 7.2203, 7.2193, 7.2212, 7.2207, 7.2227, 7.2245, 7.2238, 7.2256, 7.2247, 7.2242, 7.226, 7.2252, 7.2245, 7.2263, 7.2253, 7.2247, 7.224, 7.2231, 7.2248, 7.2265, 7.2233, 7.2226, 7.2238, 7.223, 7.2224, 7.222, 7.221, 7.2202, 7.2195, 7.2186, 7.2177, 7.2171, 7.2163, 7.2154, 7.2145, 7.2162, 7.2158, 7.2149, 7.2139, 7.2134, 7.2126, 7.2117, 7.2112, 7.2102, 7.2094, 7.2088, 7.2106, 7.21, 7.2094, 7.2086, 7.208, 7.2072, 7.2077, 7.2068, 7.206, 7.2051, 7.2042, 7.2059, 7.2054, 7.2048, 7.2039, 7.2034, 7.2027, 7.2018, 7.2038, 7.201, 7.202, 7.2012, 7.2031, 7.2025, 7.2044, 7.2044, 7.2035, 7.2051, 7.2072, 7.2066, 7.2058, 7.2052, 7.2043, 7.2041, 7.2059, 7.2051, 7.2041, 7.2032, 7.2031, 7.2027, 7.202, 7.2011, 7.2004, 7.2, 7.1992, 7.1997, 7.1992, 7.2012, 7.2004, 7.1995, 7.2029, 7.202, 7.2011, 7.2003, 7.1995, 7.1989, 7.1987, 7.1981, 7.1972, 7.1964, 7.1955, 7.1947, 7.1939, 7.193, 7.1947, 7.194, 7.1957, 7.2001, 7.2076, 7.2093, 7.2084, 7.2101, 7.2097, 7.2088, 7.2079, 7.2052, 7.2048, 7.2065, 7.2057, 7.2075, 7.2081, 7.2076, 7.2045, 7.2036, 7.2029, 7.2046, 7.2063, 7.2082, 7.2075, 7.2109, 7.21, 7.2092, 7.2084, 7.2079, 7.2074, 7.2066, 7.2061, 7.2055, 7.2072, 7.2065, 7.2064, 7.2058, 7.2051, 7.2088, 7.2081, 7.21, 7.2093, 7.2087, 7.213, 7.2147, 7.2141, 7.2158, 7.2175, 7.2168, 7.2161, 7.2154, 7.2172, 7.2165, 7.2161, 7.2153, 7.2147, 7.2162, 7.2301, 7.2309, 7.2325, 7.2318, 7.2311, 7.2305, 7.2335, 7.2305, 7.232, 7.2314, 7.2306, 7.2297, 7.2291, 7.2308, 7.2325, 7.2318, 7.2334, 7.2306, 7.2297, 7.2289, 7.2281, 7.2296, 7.2291, 7.2284, 7.2301, 7.2293, 7.2316, 7.233, 7.2322, 7.2315, 7.2307, 7.2301, 7.2293, 7.2307, 7.2326, 7.2318, 7.2313, 7.2306, 7.23, 7.2315, 7.2334, 7.2326, 7.2318, 7.2315, 7.2311, 7.2304, 7.2299, 7.2294, 7.2286, 7.2279, 7.2272, 7.2264, 7.2261, 7.2285, 7.2277, 7.227, 7.2247, 7.2264, 7.2256, 7.2248, 7.2241, 7.2257, 7.2249, 7.2241, 7.2234, 7.2226, 7.2218, 7.2234, 7.2226, 7.222, 7.2215, 7.2207, 7.2246, 7.224, 7.2256, 7.2248, 7.2263, 7.2257, 7.2271, 7.2263, 7.2255, 7.2271, 7.2266, 7.2259, 7.2251, 7.2267, 7.2261, 7.2252, 7.2244, 7.2239, 7.2233, 7.2206, 7.2197, 7.2189, 7.2182, 7.2202, 7.2217, 7.2232, 7.2232, 7.2225, 7.222, 7.2214, 7.2208, 7.2201, 7.2194, 7.2189, 7.2198, 7.2193, 7.2188, 7.2182, 7.2176, 7.2169, 7.2164, 7.2156, 7.215, 7.2145, 7.2137, 7.2134, 7.2131, 7.2123, 7.2115, 7.2109, 7.2101, 7.2095, 7.2091, 7.2083, 7.2075, 7.2067, 7.2125, 7.2125, 7.2141, 7.2135, 7.2128, 7.2122, 7.2114, 7.2106, 7.2098, 7.2115, 7.211, 7.2102, 7.2094, 7.2086, 7.2082, 7.2073, 7.2066, 7.2059, 7.2053, 7.2047, 7.2062, 7.2059, 7.2051, 7.2045, 7.2063, 7.2055, 7.2049, 7.2043, 7.2037, 7.2052, 7.2046, 7.2064, 7.2059, 7.2052, 7.2067, 7.2062, 7.2057, 7.205, 7.2045, 7.2037, 7.2053, 7.2045, 7.2062, 7.2057, 7.205, 7.2043, 7.2037, 7.2029, 7.2022, 7.2017, 7.201, 7.2034, 7.2027, 7.2022, 7.2015, 7.2013, 7.201, 7.2008, 7.2003, 7.1999, 7.2015, 7.2007, 7.2071, 7.2064, 7.2056, 7.2052, 7.2055, 7.2048, 7.2042, 7.2041, 7.2062, 7.2059, 7.2075, 7.2068, 7.2084, 7.2094000000000005, 7.2089, 7.2104, 7.2097, 7.2089, 7.2182, 7.2174, 7.2189, 7.2237, 7.223, 7.2225, 7.2219, 7.2212, 7.2206, 7.2216, 7.2231, 7.2223, 7.2219, 7.2212, 7.2225, 7.222, 7.2215, 7.2209, 7.2203, 7.2219, 7.2213, 7.2228, 7.2242, 7.2234, 7.2234, 7.2229, 7.2243, 7.2235, 7.2227, 7.2224, 7.2217, 7.221, 7.2204, 7.2197, 7.2212, 7.2205, 7.2198, 7.2191, 7.2185, 7.2177, 7.2173, 7.2188, 7.2162, 7.2161, 7.2134, 7.2133, 7.2147, 7.2163, 7.2155, 7.2148, 7.214, 7.2156, 7.217, 7.2162, 7.2158, 7.2152, 7.2149, 7.2144, 7.2139, 7.2135, 7.213, 7.2177, 7.2191, 7.2186, 7.2181, 7.2173, 7.2258, 7.2256, 7.2229, 7.2254, 7.2417, 7.243, 7.2424, 7.2418, 7.245, 7.2443, 7.2438, 7.2431, 7.2423, 7.2443, 7.2463, 7.2458, 7.2453, 7.2449, 7.2442, 7.2458, 7.245, 7.2442, 7.2435, 7.2432, 7.2445, 7.2459, 7.2476, 7.247, 7.2464, 7.2456, 7.245, 7.2464, 7.2456, 7.2449, 7.2464, 7.248, 7.2472, 7.2464, 7.2457, 7.2472, 7.2465, 7.2458, 7.245, 7.2448, 7.2421, 7.2436, 7.2429, 7.2422, 7.2415, 7.2409, 7.2423, 7.2415, 7.2431, 7.2445, 7.2437, 7.2434, 7.2431, 7.2424, 7.2416, 7.2411, 7.2384, 7.2378, 7.2393, 7.2386, 7.238, 7.2404, 7.2396, 7.239, 7.2405, 7.2401, 7.2415, 7.2408, 7.2403, 7.2396, 7.2392, 7.2385, 7.2379, 7.2372, 7.2366, 7.2359, 7.2355, 7.2348, 7.2362, 7.2355, 7.2349, 7.2346, 7.2339, 7.2332, 7.2325, 7.2303, 7.2301, 7.2275, 7.2272, 7.2267, 7.226, 7.2274, 7.2247, 7.2243, 7.2237, 7.2235, 7.2252, 7.2268, 7.2269, 7.2285, 7.2278, 7.2291, 7.2285, 7.2278, 7.2273, 7.2267, 7.226, 7.2312, 7.2305, 7.23, 7.2295, 7.2308, 7.2305, 7.2298, 7.2291, 7.2286, 7.2279, 7.2255, 7.2249, 7.2242, 7.2265, 7.2277, 7.227, 7.2263, 7.2312, 7.2306, 7.2303, 7.2317, 7.2312, 7.2307, 7.2321, 7.2314, 7.2311, 7.2307, 7.23, 7.2314, 7.2308, 7.2301, 7.2297, 7.2313, 7.2306, 7.2299, 7.2292, 7.2285, 7.2283, 7.2275, 7.2268, 7.2265, 7.2258, 7.2271, 7.2267, 7.226, 7.2268, 7.2302, 7.2316, 7.231, 7.2303, 7.2284, 7.2279, 7.2254, 7.231, 7.2325, 7.2339, 7.2335, 7.2327, 7.2322, 7.2347, 7.2352, 7.2349, 7.2353, 7.2349, 7.2342, 7.2339, 7.2339, 7.2334, 7.2327, 7.232, 7.2313, 7.2309, 7.2303, 7.2299, 7.2292, 7.2286, 7.23, 7.2295, 7.227, 7.2263, 7.2258, 7.2253, 7.2228, 7.2226, 7.2204, 7.2197, 7.219, 7.2206, 7.22, 7.2214, 7.2231, 7.2224, 7.2218, 7.2212, 7.2227, 7.224, 7.2234, 7.2228, 7.2242, 7.2235, 7.2249, 7.2242, 7.2235, 7.2228, 7.2234, 7.223, 7.2243, 7.2238, 7.2231, 7.2224, 7.2219, 7.2216, 7.2209, 7.2206, 7.2199, 7.2213, 7.2208, 7.2201, 7.2194, 7.2187, 7.22, 7.2193, 7.2187, 7.22, 7.2195, 7.2189, 7.2221, 7.2215, 7.2259, 7.2271, 7.2309, 7.2332, 7.2337, 7.2332, 7.2325, 7.2318, 7.2311, 7.2304, 7.2318, 7.2312, 7.2308, 7.2304, 7.2318, 7.2312, 7.2326, 7.232, 7.2316, 7.231, 7.2316, 7.2309, 7.2302, 7.2297, 7.2312, 7.2306, 7.23, 7.2294, 7.2317, 7.2312, 7.2308, 7.234, 7.2353, 7.2347, 7.2342, 7.2335, 7.233, 7.2344, 7.2337, 7.235, 7.2364, 7.2358, 7.2355, 7.2349, 7.2342, 7.2336, 7.2351, 7.2345, 7.2357, 7.2352, 7.2345, 7.2356, 7.2369, 7.2362, 7.2358, 7.2352, 7.2349, 7.2345, 7.2338, 7.2333, 7.2328, 7.2322, 7.232, 7.2316, 7.2309, 7.2325, 7.2348, 7.2342, 7.2356, 7.2351, 7.2346, 7.2342, 7.2377, 7.2389, 7.2401, 7.2394, 7.2404, 7.241, 7.2405, 7.2398, 7.2391, 7.2404, 7.2418, 7.2433, 7.2429, 7.2426, 7.2419, 7.2415, 7.241, 7.2405, 7.2401, 7.2435, 7.2496, 7.251, 7.2523, 7.2516, 7.2509, 7.2521, 7.2516, 7.251, 7.2506, 7.2482, 7.2486, 7.25, 7.2514, 7.2507, 7.2514, 7.2495, 7.2489, 7.2505, 7.2502, 7.2496, 7.249, 7.2503, 7.2496, 7.2489, 7.2484, 7.2501, 7.2513, 7.2508, 7.2502, 7.2498, 7.2513, 7.2506, 7.25, 7.2512, 7.2524, 7.2517, 7.2532, 7.2526, 7.2522, 7.2551, 7.2568, 7.2564, 7.259, 7.2604, 7.26, 7.2597, 7.2591, 7.2588, 7.2582, 7.2575, 7.2568, 7.2561, 7.2574, 7.2568, 7.2561, 7.2556, 7.255, 7.2545, 7.2539, 7.2573, 7.2588, 7.2601, 7.2614, 7.2608, 7.2603, 7.2597, 7.2593, 7.2586, 7.258, 7.2575, 7.2571, 7.2569, 7.2563, 7.2558, 7.2551, 7.2564, 7.2558, 7.2551, 7.2546, 7.2539, 7.2533, 7.2528, 7.2523, 7.2521, 7.2517, 7.2512, 7.2506, 7.2501, 7.2496, 7.249, 7.2484, 7.2461, 7.2455, 7.2448, 7.2442, 7.2436, 7.2432, 7.2426, 7.2423, 7.242, 7.2418, 7.2414, 7.2407, 7.2401, 7.24, 7.2396, 7.2391, 7.2415, 7.2445, 7.2457, 7.2452, 7.2449, 7.2444, 7.2438, 7.2432, 7.2429, 7.2425, 7.2421, 7.2434, 7.2429, 7.2424, 7.242, 7.2415, 7.2412, 7.2409, 7.2403, 7.2398, 7.2395, 7.2392, 7.2389, 7.2382, 7.2376, 7.2373, 7.2366, 7.2359, 7.2371, 7.2365, 7.238, 7.2375, 7.2373, 7.2367, 7.2379, 7.2391, 7.2395, 7.2389, 7.2383, 7.238, 7.2374, 7.2368, 7.238, 7.2401, 7.2395, 7.2389, 7.2403, 7.2401, 7.2409, 7.2403, 7.2396, 7.2426, 7.2419, 7.2413, 7.2425, 7.2419, 7.2416, 7.2411, 7.241, 7.2407, 7.2401, 7.2378, 7.2373, 7.2368, 7.2361, 7.2355, 7.235, 7.2344, 7.2338, 7.2351, 7.2347, 7.2341, 7.2335, 7.2328, 7.234, 7.2333, 7.2341, 7.2335, 7.2347, 7.2359, 7.2353, 7.2348, 7.2342, 7.2336, 7.2349, 7.2343, 7.2336, 7.2331, 7.2326, 7.2322, 7.2317, 7.2316, 7.2331, 7.2325, 7.232, 7.2315, 7.2328, 7.2323, 7.2318, 7.2311, 7.2307, 7.2285, 7.228, 7.2293, 7.2287, 7.2282, 7.2295, 7.229, 7.2287, 7.2264, 7.226, 7.2256, 7.2252, 7.2264, 7.2275, 7.2269, 7.2281, 7.2275, 7.2287, 7.2298, 7.2292, 7.2286, 7.2298, 7.231, 7.2305, 7.2318, 7.2315, 7.2309, 7.2321, 7.2387, 7.2399, 7.2394, 7.2388, 7.2384, 7.238, 7.2395, 7.239, 7.2386, 7.238, 7.238, 7.2374, 7.2386, 7.2399, 7.2393, 7.2387, 7.2381, 7.2375, 7.237, 7.2364, 7.2358, 7.2352, 7.2347, 7.2325, 7.2337, 7.2331, 7.2326, 7.2321, 7.2333, 7.2327, 7.2338, 7.2335, 7.2332, 7.2326, 7.2322, 7.2334, 7.2332, 7.2327, 7.2323, 7.2316, 7.2312, 7.2306, 7.2304, 7.2334, 7.2329, 7.2323, 7.2318, 7.2314, 7.2326, 7.2337, 7.2348, 7.2345, 7.234, 7.2335, 7.233, 7.2326, 7.232, 7.2332, 7.2326, 7.2338, 7.2333, 7.2327, 7.232, 7.2333, 7.2344, 7.2338, 7.2334, 7.2329, 7.2325, 7.2323, 7.2321, 7.2315, 7.2327, 7.2321, 7.2314, 7.2309, 7.2302, 7.2297, 7.2308, 7.2302, 7.2325, 7.2319, 7.2315, 7.2312, 7.2308, 7.2302, 7.2313, 7.2307, 7.2372, 7.2385, 7.2381, 7.2376, 7.2372, 7.2366, 7.236, 7.2354, 7.2348, 7.2326, 7.232, 7.2314, 7.2312, 7.2308, 7.2302, 7.2296, 7.2291, 7.2289, 7.2284, 7.2296, 7.2291, 7.2286, 7.2282, 7.2278, 7.2292, 7.2304, 7.23, 7.2311, 7.231, 7.2307, 7.2302, 7.2312, 7.2309, 7.2321, 7.2316, 7.231, 7.233, 7.2325, 7.2336, 7.2349, 7.2351, 7.2346, 7.2364, 7.2362, 7.2356, 7.2351, 7.2346, 7.2357, 7.2351, 7.2346, 7.234, 7.2334, 7.2328, 7.2324, 7.2335, 7.2329, 7.234, 7.2337, 7.2331, 7.2329, 7.2323, 7.2345, 7.2358, 7.2418, 7.2423, 7.2419, 7.2416, 7.2411, 7.2412, 7.2407, 7.2402, 7.2416, 7.2433, 7.2428, 7.2438, 7.2467, 7.2462, 7.2456, 7.2468, 7.2462, 7.2457, 7.2451, 7.2445, 7.2439, 7.2433, 7.2427, 7.2421, 7.2427, 7.2422, 7.2405, 7.2418, 7.2431, 7.2443, 7.2448, 7.2442, 7.2437, 7.2448, 7.2442, 7.2436, 7.243, 7.2442, 7.2436, 7.2432, 7.2427, 7.2425, 7.2436, 7.2447, 7.2442, 7.2439, 7.2434, 7.2428, 7.2439, 7.2434, 7.2433, 7.2427, 7.2422, 7.2424, 7.2419, 7.2452, 7.2486, 7.2501, 7.2503, 7.2498, 7.2493, 7.2488, 7.2473, 7.247, 7.2467, 7.2461, 7.2472, 7.2483, 7.2479, 7.2504, 7.2592, 7.2605, 7.2609, 7.2603, 7.26, 7.2596, 7.2591, 7.2587, 7.26, 7.2595, 7.2591, 7.2587, 7.2582, 7.2598, 7.2592, 7.2587, 7.2584, 7.2578, 7.2572, 7.2566, 7.256, 7.2556, 7.2551, 7.2546, 7.2557, 7.2585, 7.2579, 7.2574, 7.2571, 7.2581, 7.2577, 7.2571, 7.2567, 7.2561, 7.2572, 7.2566, 7.256, 7.2571, 7.2601, 7.2596, 7.2606, 7.26, 7.2598, 7.2628, 7.2623, 7.2618, 7.2615, 7.2611, 7.2623, 7.2617, 7.2629, 7.2625, 7.2605, 7.2608, 7.262, 7.2615, 7.2609, 7.262, 7.2617, 7.265, 7.2645, 7.2641, 7.2652, 7.265, 7.2661, 7.2657, 7.2656, 7.265, 7.2663, 7.2658, 7.2653, 7.2647, 7.2644, 7.2638, 7.2633, 7.2629, 7.2626, 7.2637, 7.265, 7.2644, 7.2638, 7.2633, 7.267, 7.2664, 7.2658, 7.2654, 7.265, 7.2646, 7.264, 7.2637, 7.2646, 7.264, 7.2634, 7.2628, 7.2624, 7.2636, 7.2631, 7.2642, 7.2652, 7.2648, 7.2643, 7.2654, 7.2651, 7.2648, 7.2643, 7.2674, 7.2673, 7.2682, 7.2678, 7.2689, 7.2687, 7.2696, 7.2692, 7.2702, 7.2696, 7.2701, 7.2711, 7.2707, 7.2701, 7.2695, 7.2706, 7.2702, 7.2713, 7.2708, 7.2719, 7.2714, 7.2747, 7.2758, 7.2772, 7.277, 7.2766, 7.2762, 7.2774, 7.2768, 7.2762, 7.2761, 7.2774, 7.2775, 7.277, 7.278, 7.2775, 7.2772, 7.2767, 7.2763, 7.2757, 7.2753, 7.2748, 7.2744, 7.2739, 7.2733, 7.273, 7.2742, 7.2744, 7.2739, 7.2737, 7.2746, 7.2741, 7.2753, 7.275, 7.2744, 7.274, 7.2741, 7.2738, 7.2757, 7.276, 7.2755, 7.2749, 7.2775, 7.277, 7.2779, 7.2774, 7.279, 7.2807, 7.2802, 7.2799, 7.2794, 7.2788, 7.2784, 7.2765, 7.2759, 7.2769, 7.2764, 7.276, 7.2755, 7.2749, 7.276, 7.2756, 7.2751, 7.2747, 7.2743, 7.2737, 7.2733, 7.2732, 7.2728, 7.2739, 7.2719, 7.2713, 7.273, 7.2758, 7.2752, 7.2748, 7.2745, 7.274, 7.2734, 7.2728, 7.2722, 7.2727, 7.2722, 7.2725, 7.272, 7.2716, 7.2711, 7.2705, 7.27, 7.2697, 7.2692, 7.2687, 7.2683, 7.2709, 7.2704, 7.2701, 7.2698, 7.2693, 7.2704, 7.2699, 7.2697, 7.2691, 7.2687, 7.2682, 7.2678, 7.2659, 7.2655, 7.2665, 7.266, 7.2657, 7.2654, 7.2649, 7.2647, 7.2643, 7.2638, 7.2634, 7.2641, 7.2652, 7.2662, 7.2656, 7.2651, 7.2647, 7.2642, 7.2636, 7.263, 7.2641, 7.2638, 7.2619, 7.263, 7.2626, 7.2684, 7.2678, 7.269, 7.27, 7.2696, 7.2694, 7.2689, 7.2683, 7.2677, 7.2672, 7.2667, 7.2677, 7.2704, 7.2699, 7.2681, 7.2676, 7.2679, 7.2676, 7.2672, 7.2666, 7.2676, 7.2671, 7.2682, 7.2695, 7.2693, 7.2687, 7.2683, 7.2679, 7.2676, 7.267, 7.2679, 7.2673, 7.2669, 7.2665, 7.266, 7.2656, 7.2665, 7.2675, 7.2669, 7.2679, 7.2675, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2661, 7.2656, 7.2654, 7.2649, 7.2659, 7.267, 7.2665, 7.2659, 7.2654, 7.2636, 7.2631, 7.2626, 7.2623, 7.2622, 7.262, 7.2615, 7.261, 7.2605, 7.26, 7.2597, 7.2592, 7.2587, 7.2582, 7.2591, 7.2586, 7.258, 7.2589, 7.2584, 7.2579, 7.2576, 7.2573, 7.2567, 7.2562, 7.2557, 7.2553, 7.255, 7.256, 7.2555, 7.2551, 7.2546, 7.2561, 7.2557, 7.2552, 7.2561, 7.2558, 7.2553, 7.2563, 7.2558, 7.2555, 7.255, 7.2545, 7.2543, 7.2539, 7.2537, 7.2547, 7.2542, 7.2536, 7.2531, 7.2526, 7.2536, 7.2531, 7.2527, 7.2528, 7.2533, 7.2551, 7.2565, 7.2568, 7.2563, 7.2559, 7.2554, 7.255, 7.2546, 7.2547, 7.2543, 7.2553, 7.2551, 7.2547, 7.2544, 7.2554, 7.2579, 7.2575, 7.2572, 7.2568, 7.2564, 7.2575, 7.2571, 7.2581, 7.2578, 7.2574, 7.2574, 7.2569, 7.2567, 7.2577, 7.2572, 7.2644, 7.2639, 7.2649, 7.2674, 7.2684, 7.268, 7.2676, 7.2672, 7.2711, 7.2707, 7.2732, 7.2761, 7.2757, 7.2754, 7.2752, 7.2762, 7.2757, 7.2757, 7.2752, 7.2747, 7.2742, 7.2737, 7.2734, 7.273, 7.2725, 7.272, 7.2702, 7.2698, 7.2696, 7.2707, 7.2716, 7.271, 7.2705, 7.2701, 7.2696, 7.2706, 7.2701, 7.2686, 7.2695, 7.2694, 7.2689, 7.2672, 7.2667, 7.2676, 7.2671, 7.2653, 7.2648, 7.2659, 7.2667, 7.2663, 7.2679, 7.2674, 7.2685, 7.268, 7.2689, 7.2698, 7.2693, 7.2703, 7.2699, 7.273, 7.2725, 7.272, 7.2729, 7.2732, 7.2742, 7.2737, 7.2747, 7.2743, 7.2753, 7.2763, 7.2773, 7.2768, 7.2787, 7.2783, 7.2778, 7.2789, 7.2784, 7.2781, 7.2776, 7.2801, 7.2796, 7.2792, 7.2787, 7.2795, 7.2777, 7.2773, 7.2784, 7.2781, 7.2763, 7.2758, 7.2767, 7.2764, 7.2759, 7.2769, 7.2764, 7.2759, 7.2754, 7.2749, 7.2746, 7.2741, 7.2752, 7.2761, 7.2758, 7.2755, 7.2754, 7.2752, 7.2749, 7.2746, 7.2742, 7.2738, 7.2735, 7.2733, 7.2728, 7.2724, 7.2736, 7.2733, 7.273, 7.2726, 7.2722, 7.2718, 7.2714, 7.2711, 7.2706, 7.2703, 7.2713, 7.2708, 7.2704, 7.2701, 7.2697, 7.2693, 7.2703, 7.2698, 7.2694, 7.2705, 7.27, 7.2697, 7.2693, 7.269, 7.2696, 7.2705, 7.27, 7.2712, 7.2708, 7.2703, 7.2698, 7.2707, 7.2702, 7.2697, 7.2708, 7.2704, 7.2699, 7.2694, 7.269, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2675, 7.2672, 7.2667, 7.2663, 7.2661, 7.2656, 7.2671, 7.2666, 7.2676, 7.2672, 7.2667, 7.2676, 7.2671, 7.2681, 7.2677, 7.268, 7.2689, 7.2687, 7.2682, 7.268, 7.2663, 7.2673, 7.2669, 7.2651, 7.266, 7.2669, 7.275, 7.2745, 7.2743, 7.2766, 7.2762, 7.2771, 7.2767, 7.2777, 7.2786, 7.2797, 7.2807, 7.2789, 7.2799, 7.2782, 7.2777, 7.2786, 7.2798, 7.2794, 7.279, 7.2807, 7.2808, 7.2803, 7.2813, 7.2809, 7.2806, 7.2793, 7.2802, 7.2797, 7.2792, 7.2787, 7.2796, 7.2818, 7.2814, 7.2809, 7.2805, 7.2813, 7.2822, 7.2818, 7.2823, 7.2818, 7.2813, 7.2809, 7.2806, 7.2815, 7.2812, 7.282, 7.286, 7.2855, 7.285, 7.2845, 7.284, 7.2836, 7.2848, 7.286, 7.2877, 7.2872, 7.289, 7.2893, 7.291, 7.2905, 7.2901, 7.2896, 7.2905, 7.2914, 7.2933, 7.2928, 7.2965, 7.2962, 7.3008, 7.3004, 7.3001, 7.2996, 7.2992, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2987, 7.3024, 7.302, 7.3016, 7.3025, 7.3033, 7.303, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3034, 7.3029, 7.3025, 7.3022, 7.3019, 7.3016, 7.3011, 7.302, 7.3029, 7.3026, 7.3022, 7.3017, 7.3015, 7.301, 7.3007, 7.3003, 7.2998, 7.2994, 7.299, 7.2999, 7.2995, 7.2992, 7.299, 7.2986, 7.2984, 7.2979, 7.2977, 7.2972, 7.2967, 7.2976, 7.2985, 7.2982, 7.2978, 7.2988, 7.2984, 7.298, 7.2992, 7.2987, 7.2983, 7.2979, 7.2974, 7.2996, 7.2992, 7.2987, 7.2984, 7.2979, 7.2976, 7.2986, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2973, 7.2969, 7.2964, 7.2959, 7.2955, 7.2951, 7.2948, 7.2958, 7.2945, 7.2954, 7.2949, 7.2946, 7.2959, 7.2954, 7.295, 7.2947, 7.2944, 7.2952, 7.2948, 7.2984, 7.2991, 7.2987, 7.2983, 7.2984, 7.2981, 7.2978, 7.2987, 7.2983, 7.2979, 7.2976, 7.2979, 7.2975, 7.2976, 7.2989, 7.2984, 7.2981, 7.299, 7.2986, 7.2982, 7.2978, 7.2975, 7.2971, 7.2969, 7.2964, 7.2962, 7.3039, 7.3036, 7.3046, 7.303, 7.3027, 7.3024, 7.3033, 7.3029, 7.3025, 7.3021, 7.3016, 7.3025, 7.3034, 7.3031, 7.3027, 7.3023, 7.3019, 7.3014, 7.3009, 7.3006, 7.3002, 7.2998, 7.2995, 7.2991, 7.2988, 7.2987, 7.2983, 7.2978, 7.2974, 7.2971, 7.2967, 7.2964, 7.2962, 7.2959, 7.2954, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2912, 7.2909, 7.2918, 7.2916, 7.2911, 7.2908, 7.2945, 7.2942, 7.295, 7.2947, 7.2943, 7.2939, 7.2934, 7.2931, 7.2927, 7.2924, 7.292, 7.2915, 7.2912, 7.2911, 7.292, 7.2929, 7.2925, 7.292, 7.2917, 7.2912, 7.2908, 7.2905, 7.29, 7.2897, 7.2903, 7.2899, 7.2895, 7.2891, 7.2878, 7.2875, 7.2929, 7.2926, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2953, 7.2976, 7.2972, 7.2968, 7.2965, 7.2973, 7.2968, 7.2963, 7.2958, 7.2966, 7.2963, 7.2959, 7.2943, 7.2939, 7.2934, 7.2944, 7.2941, 7.2937, 7.2934, 7.2932, 7.2928, 7.2925, 7.292, 7.2929, 7.2927, 7.2923, 7.2919, 7.2916, 7.2923, 7.2932, 7.294, 7.2939, 7.2935, 7.2932, 7.2917, 7.2913, 7.2909, 7.2904, 7.2902, 7.2897, 7.2906, 7.2915, 7.291, 7.2918, 7.2914, 7.291, 7.2907, 7.2917, 7.2902, 7.2898, 7.2894, 7.2889, 7.2885, 7.2882, 7.289, 7.2886, 7.2881, 7.2877, 7.2873, 7.2869, 7.2865, 7.2863, 7.2868, 7.2876, 7.286, 7.2856, 7.2851, 7.2847, 7.2843, 7.2838, 7.2834, 7.2829, 7.283, 7.2827, 7.2822, 7.2818, 7.2814, 7.281, 7.2823, 7.2821, 7.2816, 7.2829, 7.2826, 7.2822, 7.2823, 7.2819, 7.2815, 7.281, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.279, 7.2786, 7.2796, 7.2794, 7.2815, 7.2825, 7.2821, 7.2819, 7.2817, 7.2814, 7.2825, 7.2821, 7.2819, 7.2815, 7.2824, 7.2821, 7.2817, 7.2814, 7.2809, 7.2818, 7.2814, 7.2836, 7.2858, 7.2856, 7.2852, 7.2848, 7.2845, 7.2841, 7.2836, 7.2831, 7.2826, 7.2823, 7.2819, 7.2815, 7.2811, 7.2819, 7.2828, 7.2824, 7.2808, 7.2804, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2808, 7.2804, 7.2799, 7.2796, 7.2805, 7.2801, 7.2797, 7.2804, 7.28, 7.2797, 7.2807, 7.2804, 7.2814, 7.281, 7.2806, 7.2815, 7.2812, 7.2816, 7.2813, 7.2834, 7.2831, 7.2827, 7.2824, 7.2847, 7.2843, 7.2839, 7.2835, 7.2833, 7.2836, 7.2832, 7.2841, 7.2838, 7.2835, 7.2845, 7.2842, 7.2837, 7.2833, 7.283, 7.2826, 7.2822, 7.2818, 7.2814, 7.281, 7.2807, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2794, 7.279, 7.2786, 7.2783, 7.278, 7.2789, 7.2785, 7.2781, 7.2789, 7.2805, 7.2801, 7.2809, 7.2808, 7.2804, 7.28, 7.2796, 7.2804, 7.28, 7.2798, 7.2795, 7.2803, 7.2802, 7.2799, 7.2797, 7.2806, 7.2803, 7.2812, 7.2821, 7.2825, 7.282, 7.283, 7.2827, 7.2823, 7.2833, 7.2842, 7.2851, 7.2847, 7.2855, 7.2864, 7.286, 7.2856, 7.2852, 7.2849, 7.2846, 7.2832, 7.2828, 7.2824, 7.282, 7.2819, 7.2841, 7.2849, 7.2845, 7.2841, 7.2837, 7.2833, 7.2841, 7.2837, 7.2833, 7.2829, 7.2826, 7.2825, 7.2821, 7.2816, 7.2812, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.2802, 7.2797, 7.2794, 7.279, 7.2786, 7.2772, 7.2768, 7.2765, 7.2784, 7.2792, 7.2777, 7.2773, 7.2784, 7.2792, 7.2788, 7.2784, 7.2779, 7.2775, 7.2772, 7.2781, 7.2778, 7.2775, 7.2783, 7.2779, 7.2775, 7.2783, 7.278, 7.2775, 7.2773, 7.2785, 7.278, 7.2777, 7.2773, 7.278, 7.2788, 7.2796, 7.2808, 7.2804, 7.2811, 7.2807, 7.2804, 7.28, 7.2797, 7.2793, 7.279, 7.2788, 7.2796, 7.2795, 7.2804, 7.28, 7.2796, 7.2792, 7.28, 7.2799, 7.2797, 7.2793, 7.2802, 7.281, 7.2812, 7.2819, 7.2815, 7.2823, 7.282, 7.2805, 7.2801, 7.2786, 7.2771, 7.2767, 7.2763, 7.2771, 7.2767, 7.2764, 7.276, 7.2756, 7.2754, 7.2763, 7.276, 7.2756, 7.2751, 7.2737, 7.2733, 7.2729, 7.2716, 7.2711, 7.272, 7.2716, 7.2711, 7.2722, 7.2718, 7.2715, 7.2712, 7.272, 7.2718, 7.2716, 7.2747, 7.2746, 7.2742, 7.2739, 7.2745, 7.2742, 7.2738, 7.2734, 7.2731, 7.2728, 7.2724, 7.272, 7.2716, 7.2705, 7.2705, 7.2713, 7.2712, 7.2744, 7.2752, 7.2748, 7.2746, 7.2755, 7.2766, 7.2799, 7.2795, 7.281, 7.2806, 7.2815, 7.2824, 7.282, 7.2816, 7.2801, 7.2808, 7.2828, 7.2824, 7.2836, 7.2833, 7.283, 7.2827, 7.2835, 7.2831, 7.2827, 7.2823, 7.2831, 7.282, 7.2816, 7.2812, 7.2812, 7.2815, 7.2826, 7.2825, 7.2822, 7.2818, 7.2867, 7.2865, 7.2861, 7.2859, 7.2856, 7.2864, 7.286, 7.2856, 7.2865, 7.2861, 7.2857, 7.2854, 7.285, 7.2846, 7.2844, 7.2841, 7.285, 7.2848, 7.2857, 7.2855, 7.2852, 7.2848, 7.2845, 7.2841, 7.2837, 7.2833, 7.2831, 7.2851, 7.2859, 7.2869, 7.2878, 7.2891, 7.2899, 7.2895, 7.2891, 7.2888, 7.2895, 7.2892, 7.2899, 7.2908, 7.2904, 7.2899, 7.2895, 7.2891, 7.2888, 7.2896, 7.2892, 7.2889, 7.2897, 7.2893, 7.2891, 7.2887, 7.2884, 7.2892, 7.2889, 7.2887, 7.2883, 7.2881, 7.2877, 7.2873, 7.2917, 7.2913, 7.291, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.291, 7.2918, 7.2914, 7.2912, 7.2897, 7.2893, 7.2889, 7.2897, 7.2893, 7.289, 7.2886, 7.2883, 7.2879, 7.2875, 7.2872, 7.2879, 7.2882, 7.2878, 7.2874, 7.2871, 7.2869, 7.2864, 7.286, 7.2858, 7.2854, 7.2851, 7.2847, 7.2843, 7.2839, 7.2846, 7.2853, 7.285, 7.2846, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2836, 7.2833, 7.2829, 7.2826, 7.2823, 7.2831, 7.2827, 7.2823, 7.2823, 7.2819, 7.2816, 7.2824, 7.282, 7.2816, 7.2824, 7.282, 7.2818, 7.2816, 7.2812, 7.282, 7.2816, 7.2823, 7.2819, 7.2828, 7.2826, 7.2834, 7.283, 7.2826, 7.2824, 7.282, 7.2828, 7.2824, 7.2821, 7.2817, 7.2825, 7.2833, 7.2829, 7.2837, 7.2845, 7.2844, 7.2841, 7.2837, 7.2845, 7.2843, 7.2839, 7.2837, 7.2836, 7.2845, 7.2841, 7.2837, 7.2833, 7.2829, 7.2825, 7.2823, 7.2819, 7.2817, 7.2813, 7.2809, 7.2838, 7.2846, 7.2855, 7.2863, 7.2871, 7.2882, 7.289, 7.2886, 7.2872, 7.2879, 7.2875, 7.2872, 7.3009, 7.3005, 7.3001, 7.2998, 7.3006, 7.3004, 7.3002, 7.2999, 7.3008, 7.3006, 7.3008, 7.3016, 7.3012, 7.3008, 7.3029, 7.3027, 7.3027, 7.3024, 7.302, 7.3016, 7.3012, 7.3009, 7.3005, 7.3006, 7.3014, 7.301, 7.3018, 7.3015, 7.3013, 7.301, 7.3007, 7.3003, 7.301, 7.3018, 7.3015, 7.3011, 7.3007, 7.3004, 7.3, 7.2996, 7.2992, 7.2989, 7.2987, 7.2984, 7.298, 7.2977, 7.3033, 7.3029, 7.3026, 7.3032, 7.3028, 7.3026, 7.3024, 7.3025, 7.3033, 7.303, 7.3028, 7.3025, 7.3033, 7.3044, 7.3052, 7.3048, 7.3046, 7.3042, 7.305, 7.3057, 7.3053, 7.305, 7.3047, 7.3046, 7.3054, 7.305, 7.3046, 7.3053, 7.3059, 7.3055, 7.304, 7.3037, 7.3033, 7.3031, 7.3027, 7.3026, 7.3022, 7.3018, 7.3025, 7.3022, 7.3022, 7.302, 7.3007, 7.3004, 7.3, 7.2997, 7.2993, 7.299, 7.2986, 7.2982, 7.2982, 7.3003, 7.3, 7.2996, 7.3004, 7.3011, 7.3018, 7.3025, 7.3021, 7.3017, 7.3014, 7.301, 7.3006, 7.3013, 7.3009, 7.3007, 7.3014, 7.3011, 7.3007, 7.3003, 7.2999, 7.2995, 7.2991, 7.2979, 7.2975, 7.2972, 7.2968, 7.2964, 7.2971, 7.2967, 7.2964, 7.2973, 7.298, 7.2989, 7.2986, 7.2982, 7.2989, 7.2986, 7.2982, 7.2979, 7.2976, 7.2976, 7.2974, 7.2973, 7.2973, 7.2969, 7.2956, 7.2954, 7.2962, 7.2959, 7.2956, 7.2953, 7.2949, 7.2945, 7.2943, 7.295, 7.2947, 7.2943, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2935, 7.2942, 7.2949, 7.2946, 7.2942, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2932, 7.2928, 7.2924, 7.2931, 7.2927, 7.2924, 7.2924, 7.292, 7.2916, 7.2913, 7.291, 7.2908, 7.2906, 7.2913, 7.292, 7.2916, 7.2914, 7.2911, 7.2907, 7.2903, 7.2902, 7.2898, 7.2895, 7.2893, 7.2893, 7.289, 7.2888, 7.2909, 7.2917, 7.2915, 7.2912, 7.2909, 7.2916, 7.2912, 7.292, 7.2916, 7.2913, 7.2911, 7.2918, 7.2916, 7.2923, 7.2919, 7.2916, 7.2912, 7.2914, 7.291, 7.2906, 7.2913, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2899, 7.2897, 7.2895, 7.2891, 7.2888, 7.2884, 7.289, 7.2903, 7.2899, 7.2906, 7.2903, 7.29, 7.2898, 7.2894, 7.2901, 7.2909, 7.2905, 7.2901, 7.2908, 7.2905, 7.2912, 7.2912, 7.2908, 7.2906, 7.2903, 7.2899, 7.2895, 7.2892, 7.2888, 7.2886, 7.2882, 7.2878, 7.2875, 7.2872, 7.2868, 7.2869, 7.2867, 7.2864, 7.2868, 7.2877, 7.2874, 7.2871, 7.2878, 7.294, 7.2937, 7.2933, 7.293, 7.2927, 7.2934, 7.2931, 7.2939, 7.2936, 7.2933, 7.293, 7.2934, 7.2931, 7.2927, 7.2933, 7.293, 7.2927, 7.2924, 7.292, 7.2928, 7.2924, 7.292, 7.2917, 7.2914, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2898, 7.2894, 7.2891, 7.2891, 7.2888, 7.2884, 7.288, 7.2878, 7.2874, 7.2872, 7.2868, 7.2864, 7.286, 7.2867, 7.2907, 7.2903, 7.2901, 7.2897, 7.29, 7.2907, 7.2914, 7.2911, 7.2918, 7.2965, 7.2961, 7.2957, 7.2964, 7.2971, 7.2968, 7.2974, 7.297, 7.2967, 7.2974, 7.2982, 7.2979, 7.2976, 7.2972, 7.2979, 7.2975, 7.2981, 7.2977, 7.2974, 7.2981, 7.2978, 7.2975, 7.2972, 7.297, 7.2966, 7.2962, 7.298, 7.2987, 7.2984, 7.2982, 7.2978, 7.2974, 7.297, 7.2977, 7.2973, 7.2971, 7.2968, 7.2967, 7.2963, 7.2962, 7.297, 7.2967, 7.2975, 7.2971, 7.2968, 7.2964, 7.2961, 7.296, 7.2956, 7.2952, 7.295, 7.2946, 7.2942, 7.2949, 7.2945, 7.2952, 7.2948, 7.2956, 7.2953, 7.2961, 7.2958, 7.2968, 7.2976, 7.2973, 7.2971, 7.2968, 7.2967, 7.2965, 7.2968, 7.2976, 7.2972, 7.2969, 7.2966, 7.2988, 7.2995, 7.2993, 7.299, 7.2987, 7.2993, 7.2989, 7.2986, 7.2983, 7.298, 7.2987, 7.2984, 7.298, 7.2976, 7.2973, 7.2969, 7.2969, 7.2965, 7.2963, 7.2959, 7.2966, 7.2962, 7.2969, 7.2966, 7.2973, 7.2969, 7.2967, 7.2964, 7.2952, 7.296, 7.2956, 7.2953, 7.2951, 7.2958, 7.2956, 7.2952, 7.2949, 7.2946, 7.2943, 7.294, 7.2937, 7.2935, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2912, 7.2909, 7.2942, 7.2938, 7.2945, 7.2942, 7.2949, 7.2955, 7.2953, 7.296, 7.2956, 7.2953, 7.2949, 7.2946, 7.2943, 7.295, 7.2947, 7.2954, 7.2961, 7.296, 7.2958, 7.2956, 7.2962, 7.2959, 7.2966, 7.2963, 7.2959, 7.2966, 7.2972, 7.2969, 7.2966, 7.2973, 7.297, 7.2966, 7.2963, 7.2962, 7.2969, 7.2965, 7.2961, 7.2968, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2947, 7.2943, 7.2949, 7.2946, 7.2934, 7.2932, 7.2931, 7.2928, 7.293, 7.2926, 7.2924, 7.2931, 7.2928, 7.2934, 7.2931, 7.2938, 7.2935, 7.2942, 7.294, 7.2937, 7.2935, 7.2944, 7.294, 7.2947, 7.2945, 7.2941, 7.2938, 7.2935, 7.2932, 7.294, 7.2937, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2916, 7.2915, 7.2912, 7.2909, 7.2906, 7.2904, 7.292, 7.2916, 7.2913, 7.291, 7.2906, 7.2903, 7.2899, 7.2906, 7.2902, 7.2917, 7.2914, 7.291, 7.2898, 7.2908, 7.2905, 7.2933, 7.2949, 7.2946, 7.2943, 7.2961, 7.2957, 7.2963, 7.298, 7.2987, 7.2983, 7.298, 7.2986, 7.3003, 7.301, 7.3007, 7.3003, 7.3001, 7.2998, 7.2995, 7.3002, 7.3025, 7.3022, 7.3034, 7.3038, 7.3046, 7.3044, 7.304, 7.3036, 7.3065, 7.3072, 7.307, 7.3067, 7.3071, 7.3069, 7.3066, 7.3064, 7.3071, 7.3069, 7.3065, 7.3061, 7.3068, 7.3066, 7.3063, 7.307, 7.3077, 7.3077, 7.3074, 7.3081, 7.3077, 7.3073, 7.308, 7.3077, 7.3076, 7.3083, 7.308, 7.3078, 7.3075, 7.3073, 7.307, 7.3069, 7.3067, 7.3074, 7.3082, 7.3089, 7.3096, 7.3093, 7.3091, 7.3087, 7.3092, 7.3099, 7.3097, 7.3096, 7.3103, 7.3099, 7.3096, 7.3103, 7.3101, 7.3099, 7.3096, 7.3092, 7.309, 7.3097, 7.3103, 7.311, 7.3108, 7.3115, 7.3114, 7.3122, 7.3119, 7.3116, 7.3123, 7.3122, 7.3121, 7.3119, 7.3117, 7.3114, 7.3111, 7.3111, 7.3109, 7.3106, 7.3103, 7.31, 7.3098, 7.3129, 7.3128, 7.3134, 7.313, 7.3129, 7.3119, 7.3116, 7.3112, 7.311, 7.3098, 7.3095, 7.3094, 7.309, 7.3097, 7.3094, 7.309, 7.3087, 7.3084, 7.3082, 7.3078, 7.3075, 7.3072, 7.3068, 7.3064, 7.3087, 7.3084, 7.3081, 7.3081, 7.3078, 7.3075, 7.3066, 7.3085, 7.3102, 7.3098, 7.3094, 7.3091, 7.3089, 7.3087, 7.3084, 7.3081, 7.3078, 7.3084, 7.3087, 7.3074, 7.308, 7.3077, 7.3075, 7.3067, 7.3064, 7.3071, 7.3064, 7.3061, 7.3069, 7.3067, 7.3065, 7.3062, 7.3061, 7.3059, 7.3059, 7.3067, 7.3067, 7.3063, 7.3061, 7.3068, 7.3068, 7.3066, 7.3064, 7.3061, 7.3061, 7.3069, 7.3077, 7.3074, 7.3073, 7.3072, 7.3072, 7.308, 7.3079, 7.3078, 7.3075, 7.3075, 7.3072, 7.308, 7.3079, 7.3087, 7.3076, 7.3076, 7.3076, 7.3076, 7.3073], '192.168.122.116': [10.8111, 10.8828, 9.1753, 8.3186, 7.9092, 7.6551, 7.4737, 7.1981, 7.029, 7.4404, 7.2458, 7.129, 7.0411, 6.9245, 6.9201, 6.8585, 6.7923, 7.064, 6.7169, 7.1985, 7.1304, 7.1376, 7.0845, 7.297, 7.081, 7.0172, 7.0267, 7.5454, 7.4673, 7.4348, 7.3962, 7.3295, 7.4259, 7.3906, 7.3321, 7.2881, 7.2688, 7.2326, 7.3389, 7.419, 7.497, 7.4442, 7.4121, 7.3764, 7.3418, 7.4378, 7.4115, 7.3763, 7.3389, 7.3081, 7.2719, 7.2424, 7.4651, 7.4295, 7.3932, 7.3561, 7.319, 7.2837, 7.2559, 7.2215, 7.5617, 7.5397, 7.5042, 7.4772, 7.4734, 7.458, 7.4286, 7.4166, 7.3879, 7.4388, 7.4115, 7.3842, 7.357, 7.3805, 7.3649, 7.3513, 7.3309, 7.3149, 7.2974, 7.3401, 7.3155, 7.3594, 7.3368, 7.3218, 7.3059, 7.3478, 7.3229, 7.3084, 7.3526, 7.3403, 7.3252, 7.3455, 7.3251, 7.3041, 7.2955, 7.3329, 7.3152, 7.3, 7.3002, 7.2798, 7.5208, 7.4998, 7.4345, 7.4199, 7.4533, 7.4842, 7.5139, 7.4939, 7.4789, 7.4753, 7.4618, 7.4531, 7.3924, 7.4285, 7.4139, 7.4474, 7.4327, 7.4668, 7.4521, 7.4398, 7.428, 7.4268, 7.4119, 7.3977, 7.4285, 7.4594, 7.4469, 7.4305, 7.4157, 7.4038, 7.3903, 7.3768, 7.4039, 7.475, 7.4651, 7.495, 7.4839, 7.4708, 7.4546, 7.4406, 7.4988, 7.4884, 7.4799, 7.5034, 7.4948, 7.482, 7.4768, 7.4649, 7.4512, 7.5702, 7.5556, 7.6097, 7.5978, 7.5851, 7.5422, 7.5284, 7.5163, 7.5032, 7.4937, 7.4849, 7.4741, 7.462, 7.4506, 7.437, 7.4251, 7.4234, 7.3841, 7.372, 7.3612, 7.3495, 7.3434, 7.3345, 7.3869, 7.3774, 7.3692, 7.3595, 7.3564, 7.3448, 7.3348, 7.3286, 7.3179, 7.3359, 7.4373, 7.4283, 7.4186, 7.4094, 7.3987, 7.3918, 7.3858, 7.3749, 7.366, 7.357, 7.353, 7.3716, 7.3902, 7.3795, 7.3702, 7.3608, 7.3547, 7.3481, 7.3382, 7.3288, 7.3216, 7.337, 7.3302, 7.3211, 7.3386, 7.3308, 7.322, 7.318, 7.3096, 7.3002, 7.3469, 7.3407, 7.3305, 7.3478, 7.3428, 7.3337, 7.3305, 7.3478, 7.3402, 7.3564, 7.3499, 7.3287, 7.3195, 7.3137, 7.3075, 7.3013, 7.3199, 7.3388, 7.3571, 7.3723, 7.3682, 7.3647, 7.3586, 7.3354, 7.3266, 7.3186, 7.3143, 7.3293, 7.3224, 7.3198, 7.3113, 7.2868, 7.2946, 7.2893, 7.2831, 7.2766, 7.2691, 7.2834, 7.2867, 7.2807, 7.2777, 7.2915, 7.2842, 7.277, 7.2689, 7.2638, 7.2586, 7.2727, 7.2671, 7.2597, 7.2523, 7.2452, 7.2398, 7.233, 7.2462, 7.2391, 7.2529, 7.2664, 7.2614, 7.2572, 7.2519, 7.2453, 7.24, 7.2342, 7.2288, 7.2411, 7.2361, 7.2292, 7.2242, 7.2176, 7.2112, 7.2234, 7.2236, 7.2189, 7.2123, 7.2076, 7.2201, 7.2137, 7.2324, 7.2291, 7.2417, 7.2355, 7.2293, 7.2415, 7.2538, 7.2473, 7.2593, 7.2708, 7.2874, 7.2811, 7.2774, 7.2881, 7.336, 7.3328, 7.3259, 7.3213, 7.3152, 7.3092, 7.3032, 7.3133, 7.3068, 7.301, 7.3124, 7.3058, 7.3003, 7.337, 7.3305, 7.3268, 7.338, 7.3326, 7.3333, 7.3274, 7.3245, 7.3356, 7.3297, 7.3236, 7.3219, 7.3183, 7.3129, 7.3077, 7.3048, 7.3029, 7.2979, 7.2921, 7.2888, 7.2839, 7.2965, 7.3243, 7.3338, 7.33, 7.3405, 7.3351, 7.3317, 7.3322, 7.3312, 7.3271, 7.3223, 7.3225, 7.3197, 7.3624, 7.3601, 7.3855, 7.3799, 7.3738, 7.3843, 7.3653, 7.3778, 7.3586, 7.3708, 7.3821, 7.3638, 7.3678, 7.363, 7.3585, 7.3399, 7.3343, 7.3428, 7.3513, 7.3461, 7.3406, 7.3363, 7.3336, 7.3164, 7.3259, 7.3211, 7.3167, 7.3125, 7.3085, 7.3048, 7.2994, 7.295, 7.2907, 7.299, 7.2944, 7.2916, 7.2875, 7.2833, 7.2827, 7.2797, 7.2759, 7.2862, 7.2829, 7.2798, 7.2747, 7.2704, 7.2656, 7.2756, 7.2856, 7.2938, 7.2902, 7.2853, 7.2825, 7.2801, 7.2777, 7.2868, 7.2718, 7.268, 7.2665, 7.2755, 7.2726, 7.2564, 7.2677, 7.2644, 7.2483, 7.2601, 7.2443, 7.2464, 7.2417, 7.2421, 7.2383, 7.2405, 7.2364, 7.2319, 7.2406, 7.2406, 7.2491, 7.246, 7.2416, 7.2502, 7.2461, 7.2539, 7.2495, 7.2453, 7.2424, 7.238, 7.2348, 7.2322, 7.2284, 7.2262, 7.2403, 7.238, 7.2383, 7.2464, 7.2526, 7.2493, 7.2458, 7.2428, 7.2389, 7.2463, 7.2533, 7.2487, 7.2705, 7.2778, 7.2734, 7.2695, 7.2661, 7.2732, 7.2719, 7.2797, 7.2763, 7.287, 7.2834, 7.2909, 7.2866, 7.2825, 7.2826, 7.2906, 7.2863, 7.2824, 7.2906, 7.2908, 7.2867, 7.2839, 7.2805, 7.2785, 7.2792, 7.2755, 7.2745, 7.2718, 7.2792, 7.2769, 7.2846, 7.281, 7.2899, 7.2966, 7.2981, 7.2982, 7.3062, 7.3021, 7.2982, 7.2946, 7.2956, 7.3028, 7.3108, 7.3068, 7.3138, 7.3209, 7.3256, 7.3216, 7.3193, 7.3161, 7.3127, 7.3107, 7.3067, 7.3047, 7.3135, 7.3104, 7.3076, 7.3052, 7.3012, 7.2974, 7.2939, 7.2905, 7.2964, 7.2931, 7.2999, 7.2967, 7.2932, 7.2912, 7.2887, 7.2956, 7.2917, 7.2881, 7.2844, 7.2812, 7.2781, 7.2743, 7.2719, 7.2796, 7.2768, 7.2733, 7.2694, 7.2667, 7.2646, 7.2638, 7.2611, 7.2575, 7.2642, 7.2606, 7.2572, 7.2534, 7.253, 7.2413, 7.2482, 7.2545, 7.2521, 7.2492, 7.2464, 7.2432, 7.24, 7.2389, 7.2447, 7.2531, 7.2411, 7.2379, 7.2512, 7.2669, 7.2645, 7.2617, 7.2586, 7.2569, 7.2647, 7.2707, 7.2772, 7.2753, 7.2719, 7.2687, 7.2755, 7.272, 7.2699, 7.2683, 7.2666, 7.2644, 7.2624, 7.2609, 7.2584, 7.2644, 7.2612, 7.2684, 7.2672, 7.2749, 7.2804, 7.277, 7.2735, 7.2716, 7.2693, 7.2659, 7.2641, 7.2614, 7.2597, 7.257, 7.2557, 7.2524, 7.2496, 7.2466, 7.2528, 7.2497, 7.2578, 7.2545, 7.2563, 7.2618, 7.259, 7.2557, 7.2609, 7.2584, 7.2555, 7.2521, 7.2578, 7.2569, 7.2536, 7.2508, 7.2477, 7.2552, 7.2532, 7.2511, 7.248, 7.2448, 7.2457, 7.2444, 7.2423, 7.2398, 7.2371, 7.2362, 7.2329, 7.2305, 7.2287, 7.2255, 7.2308, 7.2289, 7.2258, 7.2227, 7.2195, 7.225, 7.2221, 7.2195, 7.2165, 7.2229, 7.2292, 7.2271, 7.2328, 7.2385, 7.3009, 7.3057, 7.3037, 7.301, 7.2978, 7.2954, 7.2935, 7.2992, 7.2977, 7.3033, 7.305, 7.3216, 7.3186, 7.3155, 7.321, 7.319, 7.3162, 7.3139, 7.3107, 7.308, 7.3074, 7.3046, 7.3024, 7.2993, 7.3046, 7.3026, 7.2998, 7.2973, 7.2955, 7.2939, 7.299, 7.3038, 7.3007, 7.2979, 7.2957, 7.293, 7.2901, 7.2873, 7.2853, 7.2826, 7.2801, 7.2774, 7.2745, 7.2809, 7.2783, 7.2756, 7.273, 7.2781, 7.2757, 7.2805, 7.2853, 7.2825, 7.28, 7.2784, 7.276, 7.2812, 7.2863, 7.2914, 7.2888, 7.2943, 7.2914, 7.2885, 7.2869, 7.2845, 7.2819, 7.2875, 7.2856, 7.2829, 7.2803, 7.2782, 7.2836, 7.2823, 7.28, 7.2774, 7.2747, 7.2736, 7.2737, 7.2711, 7.264, 7.2616, 7.2681, 7.2656, 7.2629, 7.2601, 7.2575, 7.2548, 7.2525, 7.25, 7.2475, 7.2462, 7.2437, 7.2421, 7.2335, 7.231, 7.2363, 7.2345, 7.2399, 7.2375, 7.2352, 7.2333, 7.2308, 7.2284, 7.233, 7.2305, 7.2281, 7.2268, 7.2317, 7.2294, 7.2276, 7.2253, 7.2232, 7.228, 7.2263, 7.2239, 7.2284, 7.2272, 7.2341, 7.2317, 7.2292, 7.2341, 7.2318, 7.2299, 7.2275, 7.2394, 7.2458, 7.2435, 7.2495, 7.2544, 7.2601, 7.2642, 7.2689, 7.2665, 7.2641, 7.2641, 7.2689, 7.2671, 7.2646, 7.2626, 7.2601, 7.2587, 7.2567, 7.2545, 7.2521, 7.2574, 7.2549, 7.2491, 7.2568, 7.2558, 7.2548, 7.2594, 7.2571, 7.2617, 7.2797, 7.2774, 7.2781, 7.283, 7.2888, 7.287, 7.2863, 7.2839, 7.2814, 7.2793, 7.2786, 7.2827, 7.2812, 7.2853, 7.2844, 7.2823, 7.2801, 7.2788, 7.2791, 7.2768, 7.2748, 7.2734, 7.271, 7.2701, 7.2687, 7.2732, 7.2777, 7.2754, 7.2797, 7.278, 7.2756, 7.2739, 7.2778, 7.2773, 7.2752, 7.279, 7.2831, 7.2812, 7.279, 7.2766, 7.2747, 7.2725, 7.2732, 7.2955, 7.2931, 7.2973, 7.3073, 7.305, 7.3025, 7.3005, 7.299, 7.2967, 7.3011, 7.2988, 7.2972, 7.2895, 7.2876, 7.2988, 7.2975, 7.2958, 7.2879, 7.2866, 7.2982, 7.3235, 7.3218, 7.3254, 7.3295, 7.3527, 7.351, 7.3492, 7.3472, 7.3544, 7.3525, 7.3565, 7.3605, 7.3589, 7.3528, 7.3511, 7.3488, 7.3525, 7.3506, 7.3489, 7.3468, 7.3705, 7.3683, 7.3664, 7.3702, 7.3688, 7.3669, 7.3646, 7.3627, 7.3667, 7.365, 7.3635, 7.3711, 7.3812, 7.3791, 7.3779, 7.3762, 7.3744, 7.3722, 7.37, 7.3678, 7.3655, 7.3693, 7.3673, 7.3674, 7.3709, 7.369, 7.373, 7.3768, 7.3757, 7.3741, 7.378, 7.3818, 7.3859, 7.3968, 7.3944, 7.3926, 7.3903, 7.3882, 7.3918, 7.3898, 7.3876, 7.3864, 7.3848, 7.3837, 7.3824, 7.3809, 7.389, 7.3926, 7.391, 7.3895, 7.3876, 7.3912, 7.3893, 7.3873, 7.3852, 7.383, 7.3808, 7.3785, 7.3823, 7.3811, 7.3792, 7.378, 7.3758, 7.3797, 7.3798, 7.3831, 7.3813, 7.3791, 7.3775, 7.3704, 7.3741, 7.3779, 7.3758, 7.3736, 7.3716, 7.3752, 7.3788, 7.3718, 7.3699, 7.3678, 7.3714, 7.3693, 7.3675, 7.366, 7.3648, 7.3629, 7.361, 7.3595, 7.3576, 7.3556, 7.3537, 7.3517, 7.3553, 7.3542, 7.3683, 7.3745, 7.3732, 7.3721, 7.371, 7.375, 7.3785, 7.3774, 7.3754, 7.3733, 7.377, 7.3764, 7.383, 7.3809, 7.3842, 7.3876, 7.3808, 7.3798, 7.3835, 7.382, 7.3751, 7.3787, 7.3766, 7.375, 7.3728, 7.3675, 7.3655, 7.3635, 7.3669, 7.3659, 7.3639, 7.362, 7.361, 7.3596, 7.3576, 7.3558, 7.3545, 7.3526, 7.346, 7.3495, 7.353, 7.3522, 7.3503, 7.3537, 7.3525, 7.3557, 7.3551, 7.3541, 7.3476, 7.3463, 7.345, 7.3443, 7.3482, 7.3467, 7.3401, 7.3402, 7.3391, 7.3379, 7.3367, 7.3349, 7.3345, 7.338, 7.336, 7.334, 7.332, 7.3367, 7.335, 7.333, 7.3321, 7.3352, 7.3335, 7.332, 7.3301, 7.3281, 7.3265, 7.3248, 7.3231, 7.3211, 7.3201, 7.314, 7.3121, 7.3104, 7.3138, 7.3119, 7.3157, 7.314, 7.3127, 7.3161, 7.3148, 7.3128, 7.311, 7.3093, 7.3128, 7.3117, 7.3153, 7.3143, 7.3128, 7.3122, 7.3106, 7.3166, 7.3152, 7.3257, 7.3293, 7.3276, 7.3271, 7.3254, 7.3241, 7.3228, 7.3211, 7.3194, 7.3175, 7.3161, 7.3193, 7.3176, 7.3159, 7.3142, 7.3132, 7.3115, 7.3096, 7.3082, 7.3063, 7.3056, 7.3048, 7.3083, 7.3111, 7.3099, 7.3082, 7.3022, 7.301, 7.2997, 7.2982, 7.3016, 7.3007, 7.3043, 7.3025, 7.3009, 7.2994, 7.303, 7.3061, 7.3147, 7.3135, 7.3121, 7.3106, 7.3091, 7.3076, 7.306, 7.3048, 7.3032, 7.3021, 7.3074, 7.3059, 7.3044, 7.3034, 7.3064, 7.3049, 7.3003, 7.3013, 7.2969, 7.3008, 7.2992, 7.2979, 7.2968, 7.2951, 7.2933, 7.2915, 7.2945, 7.2963, 7.2947, 7.2934, 7.2917, 7.2947, 7.2977, 7.3009, 7.2996, 7.2978, 7.3006, 7.3035, 7.3018, 7.3004, 7.2994, 7.2936, 7.2964, 7.2992, 7.302, 7.3048, 7.3036, 7.3023, 7.3051, 7.3042, 7.3076, 7.306, 7.3043, 7.3026, 7.3009, 7.2993, 7.2977, 7.2921, 7.2906, 7.289, 7.2875, 7.2905, 7.2898, 7.2927, 7.2954, 7.2939, 7.2969, 7.2998, 7.3026, 7.3057, 7.3041, 7.2986, 7.2971, 7.2957, 7.294, 7.2929, 7.2925, 7.2868, 7.2858, 7.2849, 7.2833, 7.2863, 7.2901, 7.2932, 7.2934, 7.2922, 7.2906, 7.2891, 7.2875, 7.2905, 7.2933, 7.2926, 7.2959, 7.2945, 7.2938, 7.2926, 7.2919, 7.2902, 7.289, 7.2923, 7.2908, 7.3073, 7.3137, 7.3163, 7.315, 7.3139, 7.3125, 7.3108, 7.3096, 7.3083, 7.3114, 7.3102, 7.3129, 7.3113, 7.3142, 7.3171, 7.3155, 7.3141, 7.3128, 7.3161, 7.3147, 7.3131, 7.3117, 7.3144, 7.3131, 7.3116, 7.3146, 7.3137, 7.3124, 7.3107, 7.31, 7.3091, 7.3084, 7.3114, 7.3111, 7.3139, 7.3123, 7.3112, 7.3096, 7.3082, 7.311, 7.3098, 7.3088, 7.3121, 7.3113, 7.314, 7.3124, 7.3109, 7.3097, 7.3087, 7.3072, 7.3057, 7.3043, 7.3029, 7.3014, 7.2967, 7.2922, 7.2906, 7.2933, 7.2917, 7.2905, 7.2889, 7.2873, 7.2902, 7.2931, 7.2916, 7.29, 7.2893, 7.2882, 7.291, 7.2895, 7.2921, 7.2924, 7.2917, 7.2944, 7.2931, 7.2957, 7.2946, 7.2937, 7.2926, 7.2911, 7.2895, 7.2921, 7.2907, 7.2896, 7.2881, 7.2867, 7.2863, 7.2814, 7.2798, 7.2786, 7.2771, 7.2796, 7.2782, 7.2767, 7.2792, 7.2788, 7.2778, 7.2767, 7.2753, 7.2739, 7.2726, 7.2719, 7.2704, 7.269, 7.2719, 7.2748, 7.274, 7.2729, 7.2756, 7.2784, 7.2769, 7.2764, 7.2754, 7.2793, 7.2784, 7.2773, 7.2764, 7.2752, 7.2739, 7.2768, 7.2756, 7.2781, 7.2732, 7.272, 7.2706, 7.2733, 7.2723, 7.2708, 7.2694, 7.268, 7.2672, 7.2665, 7.2652, 7.2637, 7.2628, 7.2655, 7.2682, 7.2669, 7.2654, 7.2681, 7.281, 7.2796, 7.2782, 7.2808, 7.2794, 7.278, 7.2766, 7.2761, 7.2714, 7.27, 7.2687, 7.2675, 7.2719, 7.2709, 7.2695, 7.2682, 7.2668, 7.2654, 7.2605, 7.2571, 7.2565, 7.2517, 7.2504, 7.254, 7.2533, 7.252, 7.2547, 7.2574, 7.2561, 7.2546, 7.2609, 7.2596, 7.2586, 7.2571, 7.2558, 7.2545, 7.2573, 7.2597, 7.2688, 7.2681, 7.2667, 7.2621, 7.2608, 7.2596, 7.2584, 7.2571, 7.2557, 7.2511, 7.2505, 7.2531, 7.2518, 7.2506, 7.2493, 7.2479, 7.2433, 7.2461, 7.2486, 7.2475, 7.2462, 7.2456, 7.2485, 7.2471, 7.2457, 7.2444, 7.2435, 7.2429, 7.2425, 7.2416, 7.2405, 7.2432, 7.2386, 7.2375, 7.2401, 7.2391, 7.2383, 7.2376, 7.2402, 7.2427, 7.2454, 7.2442, 7.2434, 7.2421, 7.2412, 7.2398, 7.2428, 7.2425, 7.2414, 7.2447, 7.2438, 7.2464, 7.2451, 7.2439, 7.2464, 7.2453, 7.2444, 7.2465, 7.2455, 7.2445, 7.24, 7.2361, 7.2364, 7.2394, 7.242, 7.2409, 7.24, 7.2386, 7.238, 7.2405, 7.2433, 7.242, 7.2376, 7.2399, 7.2425, 7.2412, 7.2402, 7.2392, 7.2383, 7.2373, 7.2362, 7.2352, 7.234, 7.2329, 7.2318, 7.2309, 7.2295, 7.2293, 7.2287, 7.2274, 7.2264, 7.2253, 7.2241, 7.2232, 7.2258, 7.2247, 7.2234, 7.2224, 7.2212, 7.2236, 7.223, 7.2218, 7.221, 7.2276, 7.2265, 7.229, 7.2281, 7.2268, 7.2262, 7.2252, 7.2244, 7.2266, 7.226, 7.2248, 7.2242, 7.223, 7.2251, 7.234, 7.2328, 7.2319, 7.2306, 7.2299, 7.2286, 7.2273, 7.2269, 7.2257, 7.2249, 7.2241, 7.2233, 7.2221, 7.2211, 7.2204, 7.2197, 7.2185, 7.2174, 7.2166, 7.2154, 7.2142, 7.2133, 7.2125, 7.2113, 7.2077, 7.2101, 7.2093, 7.2091, 7.2084, 7.2076, 7.2067, 7.2056, 7.2051, 7.2076, 7.2068, 7.2057, 7.2044, 7.2033, 7.2021, 7.2009, 7.2058, 7.205, 7.2038, 7.2038, 7.2026, 7.202, 7.2013, 7.2006, 7.1995, 7.201, 7.2, 7.1994, 7.2042, 7.203, 7.2062, 7.205, 7.2042, 7.203, 7.2022, 7.2011, 7.2001, 7.1989, 7.2034, 7.2025, 7.2013, 7.2067, 7.2066, 7.2057, 7.2046, 7.2035, 7.2025, 7.2015, 7.1975, 7.1967, 7.1956, 7.1979, 7.1969, 7.1963, 7.1956, 7.1947, 7.1944, 7.1968, 7.196, 7.1981, 7.197, 7.1965, 7.1958, 7.1951, 7.1942, 7.1931, 7.1925, 7.1919, 7.1908, 7.1899, 7.1923, 7.1913, 7.1937, 7.1931, 7.1953, 7.1941, 7.1933, 7.1893, 7.1882, 7.1963, 7.1955, 7.1943, 7.1956, 7.1948, 7.1939, 7.1929, 7.1924, 7.1913, 7.1904, 7.1892, 7.1882, 7.1872, 7.1898, 7.1887, 7.1947, 7.1971, 7.1962, 7.1955, 7.1944, 7.1933, 7.1932, 7.1924, 7.1913, 7.1901, 7.1925, 7.1917, 7.1908, 7.1897, 7.1928, 7.1923, 7.1912, 7.1939, 7.1966, 7.1963, 7.1956, 7.1953, 7.1977, 7.1965, 7.211, 7.2104, 7.2128, 7.2195, 7.2193, 7.2153, 7.2145, 7.2137, 7.2132, 7.2122, 7.2111, 7.2133, 7.2123, 7.2114, 7.2105, 7.2098, 7.209, 7.208, 7.2069, 7.2061, 7.2055, 7.2015, 7.2036, 7.2025, 7.2047, 7.2038, 7.2028, 7.2017, 7.2015, 7.2006, 7.1996, 7.1989, 7.1982, 7.1972, 7.1963, 7.1955, 7.1982, 7.1976, 7.1972, 7.1961, 7.1952, 7.1943, 7.1981, 7.2001, 7.199, 7.1981, 7.2002, 7.1991, 7.1981, 7.1971, 7.1995, 7.1984, 7.1976, 7.1968, 7.196, 7.1953, 7.1947, 7.1969, 7.1961, 7.195, 7.1969, 7.196, 7.1954, 7.1943, 7.1932, 7.1921, 7.1909, 7.1899, 7.1889, 7.1878, 7.1873, 7.1869, 7.1859, 7.1852, 7.1842, 7.1863, 7.1853, 7.1844, 7.1834, 7.1824, 7.1846, 7.1835, 7.1863, 7.1887, 7.1999, 7.1989, 7.1951, 7.194, 7.1961, 7.1925, 7.1916, 7.1907, 7.19, 7.1901, 7.1863, 7.1882, 7.1903, 7.1866, 7.1857, 7.1853, 7.1876, 7.1865, 7.1854, 7.1874, 7.1867, 7.1861, 7.1855, 7.1846, 7.184, 7.1861, 7.1854, 7.1849, 7.1876, 7.1841, 7.1834, 7.183, 7.1819, 7.1838, 7.1827, 7.1821, 7.184, 7.1863, 7.1883, 7.1873, 7.1863, 7.1884, 7.1905, 7.1895, 7.1885, 7.1875, 7.1867, 7.1888, 7.1877, 7.1868, 7.1858, 7.1847, 7.1836, 7.1825, 7.1875, 7.1866, 7.186, 7.185, 7.1842, 7.1861, 7.1881, 7.1871, 7.1865, 7.1854, 7.1871, 7.1891, 7.1881, 7.1871, 7.189, 7.1881, 7.1871, 7.1864, 7.1884, 7.1874, 7.1864, 7.1855, 7.1847, 7.1867, 7.1858, 7.1878, 7.1868, 7.1916, 7.1908, 7.1899, 7.1891, 7.1912, 7.1902, 7.1896, 7.1886, 7.1875, 7.1865, 7.1885, 7.1879, 7.1898, 7.189, 7.1883, 7.1877, 7.187, 7.1889, 7.188, 7.19, 7.189, 7.188, 7.1871, 7.1861, 7.1853, 7.1846, 7.1838, 7.183, 7.1819, 7.1809, 7.1801, 7.1823, 7.1815, 7.181, 7.1803, 7.1825, 7.1791, 7.1781, 7.1801, 7.179, 7.1783, 7.1778, 7.1769, 7.1759, 7.1778, 7.1773, 7.1764, 7.1755, 7.1744, 7.1735, 7.1893, 7.1896, 7.1889, 7.188, 7.1938, 7.1929, 7.192, 7.1911, 7.1967, 7.1963, 7.1953, 7.1922, 7.1941, 7.1932, 7.1953, 7.1973, 7.1966, 7.1986, 7.198, 7.197, 7.1964, 7.1955, 7.1976, 7.197, 7.1964, 7.1982, 7.2006, 7.2028, 7.2018, 7.2009, 7.2, 7.2046, 7.2012, 7.2061, 7.2056, 7.2079, 7.2158, 7.2152, 7.2368, 7.2359, 7.2349, 7.2342, 7.2345, 7.2366, 7.2358, 7.2379, 7.2372, 7.2344, 7.2336, 7.2328, 7.2322, 7.2322, 7.2313, 7.2307, 7.2331, 7.2321, 7.2337, 7.2355, 7.2372, 7.2395, 7.2387, 7.2378, 7.2426, 7.2418, 7.239, 7.2381, 7.2374, 7.2365, 7.2357, 7.2351, 7.2372, 7.2366, 7.2387, 7.2413, 7.2404, 7.2428, 7.2418, 7.2441, 7.2432, 7.2426, 7.2421, 7.2413, 7.2407, 7.2428, 7.2418, 7.2411, 7.2401, 7.2392, 7.2416, 7.241, 7.2448, 7.2466, 7.2457, 7.2476, 7.2472, 7.2492, 7.249, 7.2509, 7.2499, 7.249, 7.248, 7.2472, 7.2518, 7.2623, 7.267, 7.272, 7.2711, 7.2772, 7.2765, 7.2788, 7.2755, 7.2747, 7.2737, 7.2755, 7.2773, 7.2763, 7.2782, 7.2827, 7.2822, 7.2813, 7.286, 7.291, 7.2908, 7.2982, 7.3055, 7.3056, 7.3054, 7.3044, 7.3035, 7.3003, 7.3028, 7.3048, 7.3039, 7.3031, 7.3021, 7.3039, 7.3029, 7.302, 7.3011, 7.3001, 7.2995, 7.299, 7.2981, 7.2971, 7.2964, 7.2955, 7.2948, 7.2944, 7.2935, 7.2926, 7.2949, 7.2941, 7.2931, 7.2921, 7.2911, 7.2927, 7.2921, 7.2915, 7.2906, 7.2922, 7.2913, 7.2904, 7.2897, 7.2893, 7.2883, 7.2876, 7.2867, 7.2861, 7.2852, 7.2869, 7.2861, 7.2856, 7.2874, 7.2865, 7.2857, 7.2847, 7.2843, 7.2859, 7.2853, 7.2844, 7.2835, 7.2852, 7.282, 7.2813, 7.2805, 7.2822, 7.2818, 7.2814, 7.2834, 7.2828, 7.282, 7.2815, 7.2805, 7.2797, 7.2787, 7.2782, 7.2774, 7.2769, 7.2785, 7.2802, 7.2798, 7.2789, 7.2806, 7.2803, 7.2821, 7.2815, 7.2832, 7.2822, 7.2853, 7.2845, 7.2815, 7.2808, 7.28, 7.2793, 7.2811, 7.2802, 7.2797, 7.2789, 7.278, 7.2771, 7.281, 7.2801, 7.2794, 7.2789, 7.278, 7.2771, 7.2765, 7.2783, 7.2774, 7.2771, 7.2765, 7.276, 7.2751, 7.2742, 7.2738, 7.273, 7.2747, 7.2754, 7.2751, 7.2751, 7.2742, 7.2733, 7.2729, 7.2747, 7.2738, 7.2729, 7.2722, 7.2741, 7.2733, 7.2748, 7.2739, 7.2731, 7.2724, 7.272, 7.2712, 7.2708, 7.2702, 7.2694, 7.2685, 7.2726, 7.2719, 7.2712, 7.2756, 7.2748, 7.2844, 7.2843, 7.2837, 7.2828, 7.287, 7.2914, 7.2906, 7.2927, 7.2929, 7.2926, 7.2925, 7.2923, 7.2919, 7.2935, 7.2929, 7.292, 7.2938, 7.2934, 7.2927, 7.292, 7.2936, 7.2953, 7.2948, 7.2941, 7.3009, 7.3004, 7.2995, 7.2989, 7.2982, 7.2976, 7.2969, 7.296, 7.2976, 7.2993, 7.2984, 7.2976, 7.2993, 7.2984, 7.2975, 7.2983, 7.2999, 7.2968, 7.2962, 7.2953, 7.2972, 7.2967, 7.2963, 7.2955, 7.2949, 7.2965, 7.2957, 7.2974, 7.2966, 7.2958, 7.2974, 7.2968, 7.2985, 7.2977, 7.2994, 7.2986, 7.2978, 7.297, 7.2962, 7.2956, 7.2947, 7.2942, 7.2934, 7.293, 7.2923, 7.2918, 7.2934, 7.2925, 7.2919, 7.2911, 7.2902, 7.292, 7.2937, 7.3051, 7.3068, 7.3084, 7.3077, 7.3071, 7.3063, 7.3079, 7.3071, 7.3064, 7.3056, 7.306, 7.3051, 7.3067, 7.3058, 7.308, 7.3074, 7.3065, 7.3058, 7.3049, 7.3043, 7.3038, 7.3054, 7.3024, 7.3016, 7.3013, 7.3006, 7.2997, 7.2988, 7.298, 7.2976, 7.299, 7.2982, 7.2973, 7.2966, 7.2957, 7.2948, 7.294, 7.2958, 7.2974, 7.2965, 7.2957, 7.2948, 7.2944, 7.2935, 7.2926, 7.2921, 7.2918, 7.2913, 7.2908, 7.29, 7.2893, 7.2885, 7.2878, 7.2873, 7.2868, 7.286, 7.2878, 7.2896, 7.2891, 7.2884, 7.2876, 7.2871, 7.2865, 7.2857, 7.2875, 7.2867, 7.2859, 7.2851, 7.2867, 7.286, 7.2852, 7.2845, 7.2836, 7.2851, 7.2846, 7.2838, 7.2851, 7.2842, 7.2857, 7.2848, 7.284, 7.2857, 7.2873, 7.2865, 7.2857, 7.285, 7.2864, 7.2857, 7.2849, 7.2844, 7.2836, 7.285, 7.2841, 7.2855, 7.2853, 7.2846, 7.2837, 7.2829, 7.2823, 7.2816, 7.281, 7.2803, 7.2797, 7.279, 7.2783, 7.2775, 7.279, 7.2786, 7.2803, 7.2797, 7.2791, 7.2786, 7.2779, 7.2773, 7.2768, 7.2765, 7.2758, 7.2756, 7.2748, 7.2739, 7.2738, 7.2733, 7.2726, 7.2742, 7.2735, 7.2738, 7.2736, 7.2728, 7.2722, 7.2714, 7.271, 7.2726, 7.2719, 7.2713, 7.2707, 7.2699, 7.2709, 7.2701, 7.2733, 7.275, 7.2742, 7.2734, 7.2731, 7.2724, 7.2717, 7.271, 7.2706, 7.2698, 7.2692, 7.2688, 7.2682, 7.2675, 7.267, 7.2664, 7.2643, 7.2662, 7.2656, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2682, 7.2676, 7.2667, 7.2639, 7.2633, 7.2646, 7.2639, 7.2631, 7.2646, 7.264, 7.2655, 7.2648, 7.2662, 7.2657, 7.2649, 7.2646, 7.2638, 7.263, 7.2707, 7.2699, 7.2692, 7.2685, 7.27, 7.2692, 7.2686, 7.2702, 7.2696, 7.2691, 7.2692, 7.2705, 7.272, 7.2714, 7.273, 7.2723, 7.2718, 7.271, 7.2702, 7.2717, 7.2711, 7.2703, 7.2695, 7.271, 7.2702, 7.2696, 7.2692, 7.2665, 7.268, 7.2674, 7.2653, 7.2654, 7.2626, 7.2625, 7.262, 7.2614, 7.2611, 7.2604, 7.2597, 7.259, 7.2614, 7.2646, 7.2619, 7.2633, 7.2626, 7.262, 7.2635, 7.2628, 7.263, 7.2631, 7.2666, 7.2665, 7.2684, 7.2679, 7.2673, 7.2666, 7.2681, 7.2678, 7.2678, 7.2671, 7.2665, 7.2657, 7.2672, 7.2666, 7.266, 7.2687, 7.2679, 7.2671, 7.2666, 7.2659, 7.2653, 7.2632, 7.2649, 7.2659, 7.2652, 7.2624, 7.2617, 7.2631, 7.2657, 7.2649, 7.2641, 7.2634, 7.2667, 7.2664, 7.266, 7.2656, 7.265, 7.2643, 7.2636, 7.2628, 7.2621, 7.2614, 7.2606, 7.26, 7.2613, 7.2628, 7.2623, 7.2617, 7.261, 7.2605, 7.2598, 7.259, 7.2582, 7.2616, 7.2615, 7.2611, 7.2584, 7.2579, 7.2574, 7.2567, 7.254, 7.2555, 7.2548, 7.254, 7.2533, 7.2506, 7.2531, 7.2524, 7.2536, 7.2529, 7.2523, 7.2539, 7.2533, 7.2526, 7.2518, 7.2512, 7.2507, 7.25, 7.2514, 7.2507, 7.25, 7.2514, 7.2508, 7.25, 7.2494, 7.2486, 7.2503, 7.2497, 7.2492, 7.2488, 7.2482, 7.2475, 7.2491, 7.2484, 7.2478, 7.247, 7.2484, 7.2476, 7.2491, 7.2485, 7.2478, 7.2493, 7.2486, 7.2479, 7.2496, 7.2501, 7.2514, 7.2511, 7.2524, 7.2537, 7.2533, 7.2527, 7.2542, 7.2556, 7.255, 7.2562, 7.2555, 7.255, 7.2565, 7.2558, 7.2552, 7.2545, 7.2519, 7.2534, 7.2548, 7.2542, 7.2556, 7.2552, 7.2545, 7.2537, 7.2532, 7.2525, 7.2542, 7.2535, 7.2529, 7.2522, 7.2515, 7.2508, 7.2525, 7.2523, 7.2516, 7.2531, 7.2526, 7.254, 7.2533, 7.2526, 7.2541, 7.2535, 7.2532, 7.2528, 7.2526, 7.2519, 7.2532, 7.2525, 7.2577, 7.2574, 7.2593, 7.2586, 7.2598, 7.2593, 7.2585, 7.2577, 7.2571, 7.2563, 7.2556, 7.2548, 7.254, 7.2554, 7.255, 7.2543, 7.2556, 7.256, 7.2553, 7.2546, 7.254, 7.2535, 7.255, 7.2544, 7.2538, 7.2532, 7.2527, 7.2507, 7.2482, 7.2479, 7.2473, 7.2488, 7.251, 7.2511, 7.2506, 7.2521, 7.2516, 7.2508, 7.2522, 7.2515, 7.2551, 7.2544, 7.2537, 7.253, 7.2507, 7.2521, 7.2535, 7.2528, 7.2526, 7.2519, 7.2534, 7.2527, 7.2541, 7.2556, 7.255, 7.2544, 7.2539, 7.2532, 7.2527, 7.252, 7.2515, 7.251, 7.2502, 7.2516, 7.2509, 7.2503, 7.2517, 7.2533, 7.257, 7.2585, 7.2587, 7.2582, 7.2577, 7.2552, 7.2546, 7.2542, 7.2536, 7.2529, 7.2523, 7.2516, 7.2512, 7.2509, 7.2488, 7.2502, 7.2495, 7.2528, 7.2526, 7.2507, 7.25, 7.2493, 7.2491, 7.2505, 7.2498, 7.2497, 7.2511, 7.251, 7.2523, 7.2516, 7.2529, 7.2524, 7.2519, 7.2515, 7.2509, 7.2503, 7.2498, 7.2512, 7.2507, 7.2501, 7.2513, 7.2507, 7.2502, 7.2495, 7.2492, 7.2486, 7.2481, 7.2477, 7.247, 7.2484, 7.2496, 7.2489, 7.2482, 7.2477, 7.2471, 7.2464, 7.2457, 7.245, 7.2443, 7.2436, 7.2435, 7.2429, 7.2423, 7.2417, 7.2421, 7.2417, 7.243, 7.2423, 7.2417, 7.243, 7.2424, 7.2437, 7.243, 7.2424, 7.2418, 7.2394, 7.239, 7.239, 7.2384, 7.2398, 7.2398, 7.2391, 7.2388, 7.2383, 7.2376, 7.237, 7.2365, 7.236, 7.2373, 7.2366, 7.2359, 7.2352, 7.2365, 7.236, 7.2353, 7.2366, 7.2359, 7.2374, 7.2367, 7.2379, 7.2372, 7.2365, 7.2379, 7.2372, 7.2368, 7.2363, 7.2376, 7.237, 7.2346, 7.236, 7.2354, 7.2347, 7.2341, 7.2336, 7.2349, 7.2342, 7.2338, 7.2341, 7.2334, 7.2327, 7.2321, 7.2318, 7.2313, 7.2309, 7.2302, 7.2296, 7.2289, 7.2302, 7.2297, 7.2291, 7.2286, 7.228, 7.2283, 7.2296, 7.2291, 7.2287, 7.2282, 7.2295, 7.2289, 7.2301, 7.2294, 7.2308, 7.2303, 7.2362, 7.2357, 7.2351, 7.2345, 7.2342, 7.2339, 7.2335, 7.2331, 7.2308, 7.2302, 7.2295, 7.229, 7.2284, 7.2289, 7.2283, 7.2281, 7.2275, 7.227, 7.2271, 7.2289, 7.2323, 7.2339, 7.2377, 7.2378, 7.2372, 7.2385, 7.2399, 7.2393, 7.2388, 7.24, 7.2414, 7.2408, 7.2402, 7.2432, 7.2426, 7.2422, 7.2435, 7.2428, 7.2424, 7.2418, 7.2415, 7.2429, 7.2423, 7.2417, 7.2411, 7.2406, 7.242, 7.2414, 7.2408, 7.2387, 7.2383, 7.238, 7.2393, 7.2386, 7.2381, 7.2387, 7.24, 7.2394, 7.2389, 7.2383, 7.2376, 7.2371, 7.2365, 7.2359, 7.2336, 7.233, 7.2323, 7.2344, 7.2339, 7.2374, 7.2367, 7.236, 7.2449, 7.2445, 7.2439, 7.2434, 7.2433, 7.2427, 7.2421, 7.2416, 7.2413, 7.2425, 7.2421, 7.2415, 7.2409, 7.2422, 7.2418, 7.2412, 7.2407, 7.242, 7.2432, 7.2427, 7.2423, 7.2416, 7.2428, 7.2422, 7.2417, 7.2411, 7.2423, 7.2435, 7.243, 7.2425, 7.242, 7.2415, 7.2409, 7.2404, 7.2426, 7.2422, 7.2416, 7.2413, 7.2425, 7.2439, 7.244, 7.2453, 7.2465, 7.246, 7.2457, 7.2469, 7.2465, 7.2478, 7.2474, 7.2469, 7.2466, 7.246, 7.246, 7.2473, 7.247, 7.2464, 7.246, 7.2454, 7.2448, 7.2442, 7.2435, 7.2432, 7.2426, 7.242, 7.2433, 7.2426, 7.2457, 7.2452, 7.2449, 7.2461, 7.246, 7.2455, 7.2452, 7.2469, 7.2463, 7.2457, 7.2455, 7.2451, 7.2447, 7.244, 7.2433, 7.2445, 7.2441, 7.2436, 7.2448, 7.2442, 7.2456, 7.2451, 7.2444, 7.244, 7.2436, 7.2429, 7.2442, 7.2436, 7.2413, 7.2408, 7.2386, 7.2402, 7.2398, 7.2391, 7.2385, 7.2381, 7.2396, 7.2392, 7.2404, 7.2399, 7.2392, 7.2386, 7.2397, 7.239, 7.2387, 7.2384, 7.2378, 7.2375, 7.2369, 7.2382, 7.2375, 7.2369, 7.2346, 7.2339, 7.2333, 7.2345, 7.234, 7.2334, 7.2345, 7.234, 7.2335, 7.2346, 7.2358, 7.2353, 7.2348, 7.2349, 7.2344, 7.234, 7.2336, 7.233, 7.2327, 7.2321, 7.2315, 7.2347, 7.2368, 7.2363, 7.2358, 7.237, 7.2364, 7.2358, 7.2352, 7.2364, 7.2363, 7.2357, 7.2352, 7.2347, 7.2344, 7.2346, 7.2358, 7.2352, 7.2348, 7.236, 7.2355, 7.2349, 7.2399, 7.2394, 7.2406, 7.2401, 7.2395, 7.2389, 7.2386, 7.238, 7.2375, 7.237, 7.2365, 7.2377, 7.2371, 7.2365, 7.2361, 7.2372, 7.2367, 7.2378, 7.2372, 7.2366, 7.2365, 7.236, 7.2357, 7.2351, 7.2346, 7.234, 7.2335, 7.2332, 7.2315, 7.2309, 7.2303, 7.2315, 7.2309, 7.2321, 7.2332, 7.2329, 7.2327, 7.2328, 7.2322, 7.2334, 7.2347, 7.2341, 7.2353, 7.2347, 7.2359, 7.2353, 7.235, 7.2344, 7.2338, 7.2333, 7.2327, 7.2339, 7.2333, 7.2345, 7.2342, 7.2335, 7.235, 7.2344, 7.2338, 7.235, 7.2345, 7.2345, 7.2342, 7.2353, 7.2347, 7.2342, 7.2336, 7.2348, 7.2342, 7.2338, 7.2334, 7.2329, 7.2325, 7.2337, 7.2333, 7.2328, 7.2322, 7.2334, 7.233, 7.2326, 7.2325, 7.2326, 7.2323, 7.2319, 7.2316, 7.233, 7.2324, 7.2319, 7.2332, 7.2326, 7.2321, 7.2316, 7.233, 7.2326, 7.2325, 7.232, 7.2334, 7.2329, 7.2307, 7.2302, 7.2296, 7.229, 7.2287, 7.2284, 7.2281, 7.2275, 7.2269, 7.2269, 7.2263, 7.2258, 7.227, 7.2264, 7.2263, 7.2257, 7.2254, 7.2248, 7.2243, 7.2237, 7.2232, 7.2229, 7.2209, 7.2209, 7.2205, 7.2203, 7.2197, 7.2192, 7.2192, 7.2204, 7.2199, 7.2194, 7.219, 7.2185, 7.2179, 7.2174, 7.2169, 7.2164, 7.216, 7.2158, 7.2154, 7.2198, 7.2192, 7.2189, 7.2183, 7.2177, 7.2173, 7.2184, 7.2181, 7.2179, 7.221, 7.2206, 7.2201, 7.2213, 7.2208, 7.2203, 7.2202, 7.2196, 7.219, 7.22, 7.2194, 7.2189, 7.2184, 7.2186, 7.2199, 7.221, 7.2207, 7.2201, 7.2197, 7.2192, 7.2186, 7.2181, 7.2187, 7.2183, 7.2177, 7.2173, 7.217, 7.2167, 7.2178, 7.2175, 7.2189, 7.2184, 7.2181, 7.2176, 7.2173, 7.2171, 7.2168, 7.2181, 7.2177, 7.2172, 7.2167, 7.2182, 7.2212, 7.2206, 7.2201, 7.2196, 7.2191, 7.2185, 7.2179, 7.2175, 7.217, 7.2164, 7.2158, 7.2153, 7.215, 7.2144, 7.2154, 7.2148, 7.2142, 7.2141, 7.2135, 7.2146, 7.214, 7.215, 7.2144, 7.2138, 7.2135, 7.2115, 7.211, 7.2105, 7.2102, 7.2098, 7.2117, 7.2111, 7.2105, 7.2101, 7.2096, 7.213, 7.2141, 7.2136, 7.213, 7.2131, 7.2126, 7.2137, 7.2148, 7.2159, 7.217, 7.215, 7.2144, 7.2138, 7.2149, 7.2176, 7.2173, 7.2184, 7.2195, 7.2192, 7.2186, 7.2201, 7.2195, 7.2206, 7.22, 7.2195, 7.2189, 7.2184, 7.2179, 7.2174, 7.2169, 7.2165, 7.2175, 7.2172, 7.2173, 7.2186, 7.2197, 7.2215, 7.2209, 7.2205, 7.2213, 7.2223, 7.2233, 7.2249, 7.2244, 7.2255, 7.2249, 7.2244, 7.2243, 7.2238, 7.2235, 7.2229, 7.2223, 7.2234, 7.2248, 7.2244, 7.2239, 7.2233, 7.2248, 7.2244, 7.2239, 7.2234, 7.2228, 7.2223, 7.2218, 7.223, 7.2226, 7.2237, 7.2247, 7.2243, 7.2254, 7.2249, 7.226, 7.2256, 7.2252, 7.2248, 7.2243, 7.2238, 7.2234, 7.2244, 7.2238, 7.2235, 7.2231, 7.2226, 7.2223, 7.2217, 7.2227, 7.2224, 7.2237, 7.2231, 7.2228, 7.2225, 7.222, 7.22, 7.2194, 7.2211, 7.2206, 7.2201, 7.2202, 7.2196, 7.2193, 7.2187, 7.2181, 7.2176, 7.2173, 7.2168, 7.2163, 7.2173, 7.2167, 7.2148, 7.2144, 7.2139, 7.2151, 7.2148, 7.2158, 7.2153, 7.2149, 7.2159, 7.2154, 7.2151, 7.2146, 7.2141, 7.2136, 7.2139, 7.215, 7.2171, 7.2182, 7.2192, 7.2187, 7.2182, 7.2191, 7.2186, 7.2181, 7.2181, 7.2176, 7.2172, 7.2167, 7.2148, 7.2143, 7.2139, 7.2133, 7.213, 7.2125, 7.2136, 7.213, 7.2126, 7.2127, 7.2125, 7.2121, 7.2137, 7.2131, 7.2126, 7.2123, 7.2119, 7.2114, 7.2108, 7.2102, 7.2097, 7.2134, 7.2129, 7.2125, 7.2122, 7.2133, 7.2128, 7.2123, 7.2118, 7.2114, 7.2112, 7.2107, 7.2117, 7.2114, 7.2109, 7.2108, 7.2103, 7.2098, 7.2093, 7.2087, 7.2145, 7.2126, 7.2137, 7.2149, 7.2149, 7.2143, 7.2155, 7.2149, 7.2144, 7.214, 7.2135, 7.2116, 7.2111, 7.2122, 7.2116, 7.2112, 7.2122, 7.2133, 7.2128, 7.2127, 7.214, 7.2122, 7.2116, 7.2113, 7.2108, 7.2103, 7.2099, 7.2094, 7.2104, 7.21, 7.2095, 7.2105, 7.21, 7.2095, 7.2169, 7.2166, 7.216, 7.2154, 7.2149, 7.2145, 7.2141, 7.2137, 7.2146, 7.2144, 7.217, 7.2165, 7.2162, 7.2157, 7.2166, 7.2162, 7.2159, 7.2154, 7.2153, 7.2135, 7.2133, 7.213, 7.214, 7.2136, 7.2133, 7.213, 7.2126, 7.2123, 7.2137, 7.2134, 7.213, 7.2135, 7.2129, 7.2124, 7.2121, 7.2117, 7.2115, 7.2125, 7.2125, 7.212, 7.2137, 7.2163, 7.2159, 7.217, 7.2165, 7.2162, 7.2157, 7.2152, 7.2156, 7.2153, 7.2151, 7.2149, 7.2145, 7.2141, 7.2136, 7.2118, 7.2144, 7.2139, 7.215, 7.2145, 7.214, 7.2135, 7.2129, 7.2138, 7.2134, 7.2131, 7.2142, 7.2137, 7.2132, 7.2128, 7.2124, 7.212, 7.2117, 7.2112, 7.2107, 7.2118, 7.2114, 7.2125, 7.2119, 7.2114, 7.2111, 7.2106, 7.2115, 7.2112, 7.2106, 7.2102, 7.2098, 7.2103, 7.2104, 7.21, 7.211, 7.2109, 7.2107, 7.2106, 7.2118, 7.2115, 7.2096, 7.2105, 7.2124, 7.2122, 7.2131, 7.2126, 7.2122, 7.2118, 7.2113, 7.211, 7.2119, 7.2114, 7.211, 7.2105, 7.2131, 7.2127, 7.2123, 7.2121, 7.2146, 7.2141, 7.2138, 7.2139, 7.2125, 7.2135, 7.213, 7.2125, 7.2138, 7.2133, 7.2129, 7.2139, 7.2135, 7.2146, 7.2155, 7.2151, 7.2148, 7.2144, 7.214, 7.2154, 7.2155, 7.2151, 7.2147, 7.2142, 7.2137, 7.2131, 7.2129, 7.2139, 7.2149, 7.2144, 7.2139, 7.2136, 7.2132, 7.2127, 7.2124, 7.2119, 7.2114, 7.2124, 7.2122, 7.2104, 7.21, 7.2097, 7.2093, 7.2088, 7.2086, 7.2081, 7.2076, 7.2071, 7.2081, 7.2076, 7.2071, 7.2083, 7.2078, 7.2076, 7.2073, 7.2055, 7.205, 7.2045, 7.204, 7.2051, 7.2061, 7.2074, 7.2084, 7.2079, 7.2073, 7.2083, 7.2081, 7.2076, 7.2085, 7.208, 7.2075, 7.2075, 7.2071, 7.2066, 7.2063, 7.2074, 7.2072, 7.2068, 7.2078, 7.2073, 7.2068, 7.2073, 7.2069, 7.2065, 7.2075, 7.2084, 7.2079, 7.2074, 7.2071, 7.2066, 7.2076, 7.2071, 7.2081, 7.2091, 7.2101, 7.2096, 7.2091, 7.2087, 7.2083, 7.2078, 7.2073, 7.2101, 7.2097, 7.2157, 7.2167, 7.2166, 7.2164, 7.2174, 7.217, 7.2165, 7.2162, 7.2159, 7.2156, 7.2152, 7.2164, 7.2159, 7.2155, 7.2165, 7.2162, 7.2159, 7.217, 7.2165, 7.2147, 7.2157, 7.2182, 7.2196, 7.2192, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.217, 7.2167, 7.2165, 7.2163, 7.216, 7.2156, 7.2168, 7.2164, 7.2169, 7.2179, 7.2175, 7.217, 7.2182, 7.2178, 7.2175, 7.2188, 7.2184, 7.2179, 7.2188, 7.2183, 7.2194, 7.219, 7.22, 7.2212, 7.2207, 7.2204, 7.2214, 7.2209, 7.2219, 7.2214, 7.2224, 7.2219, 7.2216, 7.2225, 7.222, 7.2216, 7.2211, 7.2208, 7.2204, 7.2199, 7.2194, 7.2189, 7.2184, 7.218, 7.2191, 7.2187, 7.2183, 7.2179, 7.2189, 7.2184, 7.2179, 7.2177, 7.2172, 7.2169, 7.2165, 7.2161, 7.2156, 7.2151, 7.2147, 7.2142, 7.2172, 7.2167, 7.2165, 7.216, 7.2155, 7.2151, 7.2146, 7.2144, 7.214, 7.2137, 7.2134, 7.2131, 7.2127, 7.2139, 7.2137, 7.2133, 7.2143, 7.2138, 7.2133, 7.2128, 7.2123, 7.2119, 7.2114, 7.211, 7.2119, 7.2129, 7.2124, 7.2134, 7.2131, 7.2141, 7.2151, 7.2163, 7.216, 7.2155, 7.2154, 7.2152, 7.2149, 7.2146, 7.2142, 7.2138, 7.2133, 7.2129, 7.2125, 7.2121, 7.2119, 7.2114, 7.2109, 7.2105, 7.2103, 7.2155, 7.2156, 7.2166, 7.2163, 7.2173, 7.2169, 7.2164, 7.2159, 7.2154, 7.2164, 7.2162, 7.2178, 7.2179, 7.2175, 7.2172, 7.2169, 7.2165, 7.2148, 7.2143, 7.2154, 7.215, 7.2147, 7.2143, 7.2138, 7.2133, 7.2129, 7.2124, 7.2142, 7.215, 7.2159, 7.2154, 7.215, 7.2146, 7.2162, 7.2158, 7.2168, 7.2165, 7.2173, 7.2168, 7.2163, 7.2172, 7.2168, 7.2163, 7.2158, 7.2153, 7.2163, 7.2159, 7.2156, 7.2166, 7.2161, 7.2158, 7.2167, 7.2162, 7.2157, 7.2154, 7.2137, 7.2151, 7.2148, 7.2145, 7.2141, 7.2137, 7.2121, 7.2119, 7.2115, 7.211, 7.2106, 7.2115, 7.2124, 7.212, 7.2117, 7.2112, 7.2127, 7.2137, 7.2133, 7.213, 7.2125, 7.2135, 7.2131, 7.214, 7.215, 7.2147, 7.2144, 7.2139, 7.2134, 7.2144, 7.214, 7.2141, 7.2144, 7.2143, 7.2139, 7.2135, 7.2118, 7.2114, 7.211, 7.2105, 7.21, 7.2108, 7.2104, 7.21, 7.2109, 7.2106, 7.2103, 7.2111, 7.2106, 7.2102, 7.2097, 7.2094, 7.2103, 7.2086, 7.2081, 7.2089, 7.2085, 7.208, 7.2078, 7.2088, 7.2086, 7.2081, 7.209, 7.2085, 7.208, 7.2078, 7.2076, 7.2071, 7.2081, 7.2077, 7.2074, 7.2084, 7.2081, 7.2078, 7.2101, 7.2099, 7.2164, 7.216, 7.2157, 7.2152, 7.2139, 7.2134, 7.2156, 7.2153, 7.2149, 7.2145, 7.2141, 7.215, 7.2161, 7.2162, 7.2157, 7.2154, 7.2164, 7.2187, 7.2183, 7.2194, 7.219, 7.2187, 7.2182, 7.2193, 7.2206, 7.2202, 7.2198, 7.2207, 7.2204, 7.2204, 7.2202, 7.2198, 7.2196, 7.2205, 7.2214, 7.221, 7.2206, 7.2204, 7.22, 7.2196, 7.2205, 7.2202, 7.2197, 7.2193, 7.2189, 7.2184, 7.2194, 7.2203, 7.2212, 7.2208, 7.2217, 7.2215, 7.2211, 7.222, 7.2229, 7.2224, 7.2221, 7.2217, 7.2214, 7.2217, 7.2214, 7.2223, 7.2219, 7.2216, 7.2226, 7.2224, 7.2224, 7.2223, 7.2243, 7.224, 7.2235, 7.2231, 7.2227, 7.2223, 7.2233, 7.223, 7.2226, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2201, 7.2197, 7.2192, 7.219, 7.2186, 7.2238, 7.2233, 7.2229, 7.2224, 7.2221, 7.2216, 7.2225, 7.222, 7.2215, 7.2239, 7.2234, 7.2243, 7.2238, 7.2234, 7.2229, 7.2224, 7.222, 7.2217, 7.2214, 7.2209, 7.2207, 7.2207, 7.2202, 7.2197, 7.2194, 7.2191, 7.2186, 7.2181, 7.2177, 7.2172, 7.2169, 7.2177, 7.2185, 7.2223, 7.222, 7.2216, 7.2212, 7.2209, 7.2205, 7.2214, 7.221, 7.2207, 7.2216, 7.2225, 7.2221, 7.223, 7.2227, 7.2237, 7.2245, 7.2241, 7.2239, 7.2234, 7.223, 7.2227, 7.2282, 7.2281, 7.2278, 7.2274, 7.227, 7.2267, 7.2263, 7.2258, 7.2281, 7.2278, 7.2275, 7.227, 7.227, 7.2266, 7.2276, 7.2273, 7.2272, 7.2282, 7.228, 7.2275, 7.2272, 7.2275, 7.2272, 7.2269, 7.2265, 7.2261, 7.2265, 7.2261, 7.2257, 7.2254, 7.2251, 7.226, 7.2271, 7.2272, 7.2269, 7.2253, 7.225, 7.2248, 7.2246, 7.2243, 7.2238, 7.2236, 7.2237, 7.2247, 7.2289, 7.2284, 7.2289, 7.2286, 7.2283, 7.2291, 7.2288, 7.2284, 7.228, 7.2295, 7.2304, 7.23, 7.2309, 7.2317, 7.2341, 7.2336, 7.2332, 7.2329, 7.2325, 7.2323, 7.2331, 7.2327, 7.2326, 7.2323, 7.2319, 7.2341, 7.2326, 7.2334, 7.233, 7.2339, 7.2335, 7.2343, 7.2339, 7.2348, 7.2344, 7.2353, 7.2349, 7.2344, 7.234, 7.2336, 7.2332, 7.2336, 7.2347, 7.2356, 7.2365, 7.2361, 7.2357, 7.2353, 7.2351, 7.2348, 7.2357, 7.2355, 7.2353, 7.2351, 7.2336, 7.2344, 7.234, 7.2348, 7.2359, 7.2343, 7.2352, 7.2348, 7.2345, 7.2341, 7.2342, 7.2338, 7.2323, 7.2328, 7.2368, 7.2382, 7.2382, 7.2377, 7.2377, 7.2372, 7.2381, 7.2377, 7.239, 7.2386, 7.2395, 7.2391, 7.2399, 7.242, 7.2416, 7.2412, 7.2464, 7.246, 7.2456, 7.2453, 7.2461, 7.2457, 7.2453, 7.2453, 7.2449, 7.2458, 7.2479, 7.2477, 7.2477, 7.2462, 7.2459, 7.2455, 7.245, 7.2446, 7.2443, 7.2451, 7.2447, 7.2443, 7.2452, 7.2437, 7.2445, 7.2441, 7.2449, 7.2446, 7.2442, 7.2451, 7.2448, 7.2444, 7.244, 7.244, 7.2437, 7.2445, 7.2441, 7.2437, 7.2475, 7.2472, 7.2468, 7.2465, 7.2461, 7.2457, 7.2477, 7.2473, 7.2481, 7.2477, 7.2473, 7.247, 7.2476, 7.2474, 7.2499, 7.2495, 7.2503, 7.2499, 7.2509, 7.2518, 7.2515, 7.2511, 7.2519, 7.2516, 7.2534, 7.2533, 7.2518, 7.2514, 7.2513, 7.2522, 7.2531, 7.2528, 7.2525, 7.2522, 7.2531, 7.2529, 7.2525, 7.2521, 7.2519, 7.2515, 7.2526, 7.2521, 7.2527, 7.2525, 7.2523, 7.252, 7.2516, 7.2513, 7.2511, 7.2506, 7.2514, 7.2511, 7.2506, 7.2515, 7.251, 7.2506, 7.2514, 7.2523, 7.252, 7.2516, 7.2512, 7.2508, 7.2492, 7.2488, 7.2484, 7.2481, 7.2477, 7.2476, 7.2484, 7.248, 7.2476, 7.2475, 7.2471, 7.2468, 7.2465, 7.2461, 7.2457, 7.2463, 7.2459, 7.2467, 7.2475, 7.2482, 7.2478, 7.2475, 7.2482, 7.2479, 7.2475, 7.2471, 7.2492, 7.2487, 7.2492, 7.2488, 7.2485, 7.248, 7.2477, 7.2473, 7.2469, 7.2477, 7.2473, 7.2469, 7.2465, 7.2464, 7.246, 7.2457, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2445, 7.2453, 7.2461, 7.2457, 7.2468, 7.2476, 7.2492, 7.2488, 7.2496, 7.2493, 7.2494, 7.2502, 7.25, 7.2496, 7.2493, 7.2491, 7.2499, 7.252, 7.2505, 7.2502, 7.2498, 7.2509, 7.2518, 7.2561, 7.2557, 7.2555, 7.2541, 7.2537, 7.2546, 7.2554, 7.2553, 7.255, 7.2546, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.254, 7.2536, 7.2532, 7.2528, 7.2524, 7.2521, 7.2517, 7.2514, 7.2512, 7.2508, 7.2517, 7.2513, 7.2521, 7.2529, 7.2538, 7.2545, 7.2541, 7.2537, 7.2534, 7.2532, 7.2528, 7.2526, 7.2621, 7.2618, 7.2656, 7.2665, 7.2661, 7.2668, 7.2676, 7.2684, 7.2682, 7.2691, 7.2676, 7.2684, 7.2692, 7.2688, 7.2696, 7.2703, 7.2699, 7.2697, 7.2705, 7.2714, 7.2718, 7.2714, 7.2722, 7.2718, 7.2715, 7.2711, 7.2708, 7.2704, 7.2705, 7.2702, 7.2698, 7.2694, 7.2704, 7.2712, 7.2708, 7.2694, 7.2702, 7.271, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2718, 7.2738, 7.2735, 7.2731, 7.2727, 7.2728, 7.2736, 7.2744, 7.2741, 7.2737, 7.2734, 7.273, 7.2726, 7.2734, 7.2743, 7.2739, 7.2734, 7.273, 7.2729, 7.2725, 7.2721, 7.273, 7.2739, 7.2748, 7.2744, 7.2753, 7.2749, 7.2746, 7.2743, 7.2738, 7.2734, 7.2731, 7.2727, 7.2723, 7.2719, 7.2741, 7.2738, 7.2734, 7.273, 7.2727, 7.2724, 7.2732, 7.2745, 7.2742, 7.2738, 7.2735, 7.2733, 7.2729, 7.2725, 7.2722, 7.2718, 7.2716, 7.2712, 7.2711, 7.2719, 7.2717, 7.2702, 7.2698, 7.2696, 7.2692, 7.2701, 7.2697, 7.2694, 7.269, 7.2685, 7.2681, 7.2677, 7.2686, 7.2682, 7.2678, 7.2664, 7.2672, 7.268, 7.2676, 7.2673, 7.2681, 7.2677, 7.2673, 7.2681, 7.2678, 7.2674, 7.2671, 7.2669, 7.2665, 7.2681, 7.2677, 7.2674, 7.2681, 7.2678, 7.2697, 7.2695, 7.2691, 7.2688, 7.2685, 7.2692, 7.27, 7.2697, 7.2693, 7.2691, 7.2699, 7.2695, 7.2692, 7.2689, 7.2685, 7.2693, 7.2701, 7.2697, 7.2705, 7.269, 7.2698, 7.2706, 7.2703, 7.271, 7.2708, 7.2705, 7.2701, 7.2698, 7.2696, 7.2695, 7.2714, 7.271, 7.278, 7.2776, 7.2774, 7.2782, 7.2778, 7.2774, 7.2771, 7.278, 7.2787, 7.2784, 7.278, 7.2776, 7.2774, 7.2771, 7.2768, 7.2764, 7.2762, 7.2759, 7.2755, 7.2742, 7.2749, 7.2748, 7.2744, 7.274, 7.2737, 7.2733, 7.273, 7.2727, 7.2724, 7.2723, 7.2727, 7.2725, 7.2745, 7.2741, 7.2761, 7.2748, 7.2798, 7.2795, 7.2791, 7.2776, 7.2783, 7.2813, 7.2798, 7.2794, 7.2791, 7.2805, 7.2801, 7.2798, 7.2819, 7.2815, 7.2811, 7.2807, 7.2826, 7.2824, 7.282, 7.2816, 7.2814, 7.2845, 7.2882, 7.2882, 7.2878, 7.2886, 7.2882, 7.2878, 7.2876, 7.2872, 7.287, 7.2867, 7.2874, 7.2905, 7.2901, 7.2905, 7.2901, 7.2898, 7.2906, 7.2914, 7.2922, 7.2919, 7.2927, 7.2936, 7.2932, 7.294, 7.2948, 7.2945, 7.2941, 7.2938, 7.2934, 7.293, 7.2934, 7.2997, 7.3004, 7.3012, 7.302, 7.3017, 7.3013, 7.301, 7.3006, 7.3003, 7.2999, 7.2997, 7.2995, 7.2991, 7.2987, 7.2995, 7.2991, 7.2999, 7.2995, 7.2993, 7.299, 7.2988, 7.2984, 7.298, 7.2977, 7.2974, 7.2981, 7.2979, 7.2975, 7.2972, 7.2979, 7.2976, 7.2972, 7.2972, 7.2968, 7.2982, 7.2978, 7.2974, 7.296, 7.2968, 7.2975, 7.2976, 7.2974, 7.297, 7.2966, 7.2962, 7.2959, 7.2956, 7.2952, 7.2948, 7.295, 7.2948, 7.2957, 7.2943, 7.295, 7.2958, 7.2956, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2954, 7.295, 7.2946, 7.2943, 7.295, 7.2957, 7.2953, 7.2952, 7.296, 7.2956, 7.2953, 7.2961, 7.2958, 7.2955, 7.2951, 7.2947, 7.2943, 7.2939, 7.2991, 7.3, 7.3, 7.2998, 7.2997, 7.3005, 7.3003, 7.299, 7.2997, 7.3005, 7.3013, 7.3032, 7.3031, 7.3027, 7.3046, 7.3055, 7.3076, 7.3073, 7.307, 7.3068, 7.3066, 7.3062, 7.3069, 7.3067, 7.307, 7.3081, 7.308, 7.3089, 7.3087, 7.3084, 7.3081, 7.3077, 7.3074, 7.3105, 7.3107, 7.3096, 7.3094, 7.3093, 7.3089, 7.3085, 7.3118, 7.3117, 7.3113, 7.3109, 7.3126, 7.3122, 7.3129, 7.3126, 7.3122, 7.3118, 7.3115, 7.3112, 7.3119, 7.3125, 7.3121, 7.3128, 7.3126, 7.3122, 7.3119, 7.3116, 7.3112, 7.3108, 7.3104, 7.31, 7.3097, 7.3093, 7.309, 7.3087, 7.3119, 7.3115, 7.3112, 7.3109, 7.3108, 7.3115, 7.3115, 7.3123, 7.3119, 7.3116, 7.3113, 7.3111, 7.3108, 7.3106, 7.3102, 7.309, 7.3097, 7.3093, 7.31, 7.3099, 7.3106, 7.3102, 7.3098, 7.3105, 7.3102, 7.311, 7.3107, 7.3103, 7.3101, 7.3108, 7.3115, 7.3122, 7.3119, 7.3126, 7.3122, 7.3129, 7.3138, 7.3146, 7.3144, 7.314, 7.3136, 7.3132, 7.3129, 7.3125, 7.3132, 7.3129, 7.3126, 7.3122, 7.3185, 7.3181, 7.3168, 7.3164, 7.3161, 7.3159, 7.3155, 7.3154, 7.3162, 7.3158, 7.3165, 7.3161, 7.3157, 7.3155, 7.3151, 7.3147, 7.3143, 7.3139, 7.3146, 7.3143, 7.3151, 7.3148, 7.3147, 7.3145, 7.3154, 7.3151, 7.3157, 7.3165, 7.3162, 7.3159, 7.3158, 7.3165, 7.3161, 7.3158, 7.3155, 7.3152, 7.3154, 7.3161, 7.3213, 7.3209, 7.3206, 7.3202, 7.3198, 7.3195, 7.3203, 7.3201, 7.3199, 7.3195, 7.3192, 7.3198, 7.3196, 7.3201, 7.3197, 7.3204, 7.3201, 7.3208, 7.3204, 7.32, 7.3198, 7.3194, 7.319, 7.3176, 7.3172, 7.3169, 7.3165, 7.3172, 7.3169, 7.3167, 7.3163, 7.3159, 7.3155, 7.3152, 7.3148, 7.3144, 7.314, 7.3137, 7.3135, 7.3142, 7.3128, 7.3125, 7.3121, 7.3119, 7.3116, 7.3112, 7.3109, 7.3105, 7.3112, 7.3108, 7.3104, 7.3101, 7.3097, 7.3093, 7.3094, 7.309, 7.3087, 7.3083, 7.3079, 7.3075, 7.31, 7.3103, 7.3099, 7.3106, 7.3102, 7.3098, 7.3094, 7.3101, 7.3097, 7.3093, 7.3089, 7.3096, 7.3092, 7.3088, 7.3096, 7.3093, 7.309, 7.3087, 7.3085, 7.3105, 7.3101, 7.3109, 7.3105, 7.3112, 7.3108, 7.3105, 7.3102, 7.3099, 7.3096, 7.3094, 7.3113, 7.31, 7.3106, 7.3114, 7.3121, 7.3128, 7.3125, 7.3122, 7.3119, 7.3137, 7.3139, 7.3136, 7.3144, 7.314, 7.3137, 7.3133, 7.3129, 7.3125, 7.3112, 7.3108, 7.3105, 7.3112, 7.311, 7.3108, 7.3116, 7.3114, 7.3111, 7.3118, 7.3105, 7.3102, 7.3098, 7.3095, 7.3091, 7.3088, 7.3084, 7.3091, 7.3109, 7.3106, 7.3113, 7.3109, 7.3118, 7.3125, 7.3125, 7.3125, 7.3121, 7.3117, 7.3107, 7.3104, 7.3101, 7.3107, 7.3113, 7.3111, 7.3107, 7.3104, 7.3111, 7.3118, 7.3125, 7.3121, 7.3117, 7.3114, 7.312, 7.3116, 7.3113, 7.312, 7.3128, 7.3125, 7.3121, 7.3118, 7.3115, 7.3134, 7.3131, 7.3127, 7.3145, 7.3141, 7.3138, 7.3135, 7.3133, 7.3141, 7.3159, 7.3167, 7.3165, 7.3162, 7.3159, 7.3156, 7.3157, 7.3154, 7.3166, 7.3163, 7.3161, 7.3157, 7.3165, 7.3167, 7.3174, 7.3171, 7.3168, 7.3165, 7.3162, 7.3159, 7.3156, 7.3154, 7.3141, 7.3138, 7.3135, 7.3142, 7.3139, 7.3146, 7.3153, 7.316, 7.3157, 7.3153, 7.3149, 7.3145, 7.3152, 7.3159, 7.3157, 7.3164, 7.3171, 7.3167, 7.3174, 7.317, 7.3166, 7.3173, 7.3169, 7.3165, 7.3172, 7.3179, 7.3175, 7.3171, 7.3173, 7.3169, 7.3177, 7.3173, 7.3171, 7.3168, 7.3165, 7.3163, 7.3171, 7.3178, 7.3175, 7.3182, 7.3178, 7.3175, 7.3171, 7.3167, 7.3174, 7.3171, 7.3168, 7.3164, 7.3207, 7.3214, 7.3211, 7.3219, 7.3216, 7.3212, 7.3209, 7.3206, 7.3203, 7.3199, 7.3196, 7.3193, 7.32, 7.3197, 7.3204, 7.3202, 7.3199, 7.3216, 7.3215, 7.3211, 7.3233, 7.3255, 7.3245, 7.3251, 7.3247, 7.3258, 7.3254, 7.3261, 7.3248, 7.3255, 7.3252, 7.3248, 7.3254, 7.325, 7.3247, 7.3244, 7.3262, 7.3249, 7.3256, 7.3244, 7.3241, 7.3238, 7.3234, 7.3231, 7.3228, 7.3225, 7.3222, 7.3229, 7.3237, 7.3234, 7.3231, 7.3239, 7.3255, 7.3251, 7.3249, 7.3246, 7.3246, 7.3252, 7.3249, 7.3247, 7.3254], '192.168.122.115': [10.5276, 8.3502, 7.5139, 7.1993, 7.8743, 7.4328, 7.3273, 7.7374, 7.4819, 7.2691, 7.0982, 6.9504, 6.9125, 6.8052, 6.7264, 6.9861, 6.6075, 6.8479, 6.8006, 6.7602, 6.7243, 6.9063, 6.8384, 6.7833, 6.7498, 6.9079, 6.8861, 6.9515, 7.2796, 7.2167, 7.183, 7.1287, 7.0735, 7.0523, 7.0126, 7.126, 7.1076, 7.196, 7.157, 7.1339, 7.2292, 7.2251, 7.1878, 7.2852, 7.2539, 7.2358, 7.193, 7.168, 7.1383, 7.1182, 7.0838, 7.147, 7.1165, 7.0845, 7.064, 7.1315, 7.099, 7.0826, 7.0539, 7.0359, 7.098, 7.1895, 7.161, 7.1332, 7.1146, 7.102, 7.1577, 7.1446, 7.1179, 7.0951, 7.0847, 7.061, 7.0418, 7.0276, 7.0079, 7.0655, 7.0444, 7.0957, 7.0764, 7.1206, 7.1704, 7.1503, 7.1488, 7.1272, 7.1703, 7.1549, 7.1359, 7.1779, 7.1636, 7.1547, 7.1962, 7.1741, 7.1578, 7.2462, 7.2286, 7.2652, 7.2464, 7.2287, 7.2156, 7.2009, 7.2366, 7.2223, 7.2583, 7.2428, 7.225, 7.2128, 7.2022, 7.1853, 7.168, 7.1997, 7.1855, 7.1283, 7.1603, 7.1468, 7.1342, 7.1226, 7.1145, 7.1013, 7.0991, 7.0863, 7.1208, 7.1543, 7.1873, 7.1801, 7.1708, 7.1572, 7.1485, 7.1356, 7.1255, 7.0748, 7.0654, 7.0941, 7.083, 7.0726, 7.0662, 7.056, 7.0448, 7.036, 7.0233, 7.0922, 7.1163, 7.1036, 7.0944, 7.0832, 7.0944, 7.0831, 7.206, 7.1939, 7.191, 7.1868, 7.1811, 7.3066, 7.296, 7.2853, 7.2776, 7.2655, 7.2534, 7.2423, 7.231, 7.2199, 7.2103, 7.265, 7.2574, 7.2194, 7.2422, 7.2314, 7.2223, 7.2138, 7.2047, 7.2639, 7.2911, 7.3118, 7.3608, 7.3519, 7.3426, 7.3661, 7.3565, 7.3764, 7.366, 7.3557, 7.35, 7.3431, 7.3398, 7.3591, 7.3818, 7.3722, 7.3899, 7.3796, 7.3708, 7.5029, 7.494, 7.4856, 7.4738, 7.4649, 7.4558, 7.4468, 7.4368, 7.4278, 7.4191, 7.4124, 7.455, 7.4716, 7.461, 7.4549, 7.4219, 7.4157, 7.4056, 7.4235, 7.416, 7.4373, 7.4529, 7.4517, 7.4702, 7.4861, 7.4764, 7.5534, 7.5429, 7.5581, 7.5488, 7.5409, 7.5809, 7.5943, 7.5862, 7.5904, 7.5842, 7.5759, 7.5663, 7.5586, 7.5487, 7.5419, 7.5598, 7.5522, 7.5446, 7.5373, 7.5304, 7.525, 7.5179, 7.5112, 7.504, 7.4947, 7.5078, 7.502, 7.5174, 7.5087, 7.4993, 7.4909, 7.5122, 7.5041, 7.5166, 7.5095, 7.5028, 7.495, 7.4903, 7.4827, 7.4761, 7.4895, 7.4817, 7.4781, 7.4705, 7.4648, 7.4578, 7.4511, 7.4462, 7.4402, 7.4339, 7.4268, 7.4392, 7.4515, 7.4538, 7.4464, 7.4388, 7.4344, 7.427, 7.419, 7.4153, 7.4084, 7.403, 7.3974, 7.3905, 7.3829, 7.3776, 7.3705, 7.363, 7.359, 7.3522, 7.3451, 7.3587, 7.3703, 7.3646, 7.3583, 7.3521, 7.3467, 7.3424, 7.3373, 7.3312, 7.3249, 7.3186, 7.3154, 7.3288, 7.3437, 7.3373, 7.3154, 7.3088, 7.3051, 7.2996, 7.2957, 7.2766, 7.2711, 7.2655, 7.2905, 7.3016, 7.2957, 7.3073, 7.3021, 7.2961, 7.2924, 7.3036, 7.2973, 7.2954, 7.3097, 7.3043, 7.2986, 7.2933, 7.2871, 7.2981, 7.2924, 7.2894, 7.3003, 7.2941, 7.2909, 7.2852, 7.2675, 7.2779, 7.29, 7.2852, 7.265, 7.2618, 7.2728, 7.2679, 7.2634, 7.279, 7.2737, 7.2682, 7.2649, 7.275, 7.2693, 7.264, 7.2595, 7.2557, 7.2526, 7.2627, 7.2729, 7.2689, 7.2637, 7.261, 7.2557, 7.2502, 7.2455, 7.2429, 7.2381, 7.2352, 7.2324, 7.2285, 7.2239, 7.2223, 7.2349, 7.2815, 7.2646, 7.2606, 7.2435, 7.2396, 7.2379, 7.2329, 7.2425, 7.2512, 7.2492, 7.244, 7.2431, 7.2381, 7.2334, 7.2302, 7.2259, 7.2214, 7.2172, 7.215, 7.2125, 7.2215, 7.2186, 7.2146, 7.1972, 7.1934, 7.1903, 7.1874, 7.1827, 7.1787, 7.175, 7.1745, 7.1701, 7.1665, 7.1625, 7.1596, 7.1569, 7.1543, 7.1498, 7.1456, 7.1423, 7.1378, 7.1337, 7.1296, 7.1266, 7.1224, 7.1208, 7.1179, 7.1139, 7.11, 7.1063, 7.1164, 7.1143, 7.1237, 7.1212, 7.1199, 7.1195, 7.1169, 7.1129, 7.1103, 7.1071, 7.1033, 7.1123, 7.1664, 7.1513, 7.1524, 7.1502, 7.1598, 7.1555, 7.1593, 7.1638, 7.1611, 7.1703, 7.1661, 7.1619, 7.1581, 7.1545, 7.1512, 7.1504, 7.1466, 7.1321, 7.129, 7.1809, 7.1791, 7.1753, 7.1726, 7.1691, 7.1792, 7.175, 7.173, 7.1906, 7.1894, 7.1851, 7.1831, 7.179, 7.1866, 7.1941, 7.1917, 7.1889, 7.1889, 7.1866, 7.1829, 7.1807, 7.1767, 7.1748, 7.1796, 7.1764, 7.184, 7.1799, 7.1764, 7.1849, 7.1812, 7.1837, 7.1929, 7.1908, 7.1879, 7.1859, 7.1848, 7.1816, 7.1782, 7.1777, 7.1757, 7.1725, 7.1684, 7.165, 7.1615, 7.1588, 7.1552, 7.1514, 7.1476, 7.1468, 7.1449, 7.1417, 7.1383, 7.1349, 7.1429, 7.1405, 7.148, 7.1555, 7.1519, 7.1726, 7.1705, 7.1674, 7.1647, 7.161, 7.1681, 7.1643, 7.1652, 7.162, 7.1592, 7.1576, 7.1557, 7.1522, 7.1497, 7.1471, 7.1553, 7.1529, 7.1428, 7.1403, 7.1374, 7.1355, 7.132, 7.1289, 7.1265, 7.124, 7.1311, 7.1287, 7.1268, 7.1236, 7.1229, 7.1206, 7.1176, 7.1164, 7.1132, 7.1202, 7.1178, 7.117, 7.1138, 7.1131, 7.1099, 7.1077, 7.108700000000001, 7.1154, 7.1124, 7.1193, 7.1161, 7.1138, 7.105, 7.102, 7.0991, 7.0962, 7.0934, 7.0904, 7.0875, 7.086, 7.0839, 7.0732, 7.0701, 7.0686, 7.0755, 7.0725, 7.0793, 7.0868, 7.085, 7.0917, 7.094, 7.0912, 7.0889, 7.0958, 7.0926, 7.0897, 7.0869, 7.0843, 7.0827, 7.0826, 7.0887, 7.0855, 7.0829, 7.0799, 7.0779, 7.076, 7.073, 7.0721, 7.0694, 7.0671, 7.0659, 7.0635, 7.0608, 7.0583, 7.058, 7.0647, 7.0706, 7.0679, 7.0663, 7.0637, 7.0607, 7.0589, 7.0572, 7.0543, 7.0709, 7.0774, 7.0746, 7.072, 7.0706, 7.0766, 7.0745, 7.0718, 7.0783, 7.0755, 7.0818, 7.0792, 7.0854, 7.0828, 7.0884, 7.0936, 7.0917, 7.0909, 7.0969, 7.103, 7.1082, 7.1068, 7.1039, 7.1008, 7.1066, 7.1121, 7.1092, 7.1064, 7.1036, 7.1094, 7.099, 7.0962, 7.0935, 7.0923, 7.0902, 7.0875, 7.0857, 7.0932, 7.1002, 7.09, 7.0878, 7.0932, 7.0992, 7.0979, 7.0951, 7.0937, 7.0916, 7.0939, 7.0917, 7.0891, 7.0874, 7.0846, 7.0916, 7.09, 7.0874, 7.0849, 7.0832, 7.0893, 7.0901, 7.0955, 7.0941, 7.0999, 7.1219, 7.1196, 7.1169, 7.1144, 7.1119, 7.1094, 7.1075, 7.1051, 7.1027, 7.1082, 7.1064, 7.1046, 7.1107, 7.1081, 7.1056, 7.1029, 7.1016, 7.1077, 7.1051, 7.1025, 7.1003, 7.099, 7.0966, 7.1012, 7.0988, 7.1039, 7.1015, 7.0993, 7.0973, 7.0962, 7.0954, 7.1094, 7.1075, 7.105, 7.1028, 7.1077, 7.106, 7.1106, 7.1086, 7.1065, 7.1117, 7.1191, 7.1166, 7.1226, 7.1203, 7.1181, 7.1157, 7.1131, 7.1145, 7.12, 7.1178, 7.1164, 7.1145, 7.1125, 7.1103, 7.1155, 7.1139, 7.1114, 7.1098, 7.1075, 7.1127, 7.1104, 7.108, 7.1057, 7.1032, 7.1009, 7.0988, 7.0966, 7.0887, 7.0871, 7.0848, 7.0898, 7.0929, 7.0911, 7.0889, 7.0875, 7.0853, 7.0833, 7.081, 7.0788, 7.0764, 7.0815, 7.0792, 7.0769, 7.0753, 7.0737, 7.0727, 7.089, 7.0802, 7.0782, 7.0763, 7.0743, 7.0722, 7.0782, 7.0783, 7.083, 7.084, 7.0824, 7.0855, 7.0846, 7.0832, 7.0878, 7.0855, 7.0908, 7.0885, 7.0864, 7.0909, 7.0892, 7.0883, 7.0865, 7.0917, 7.0895, 7.0881, 7.093, 7.0973, 7.1022, 7.1003, 7.1013, 7.0989, 7.1, 7.0994, 7.0981, 7.1036, 7.1021, 7.1209, 7.119, 7.1204, 7.1208, 7.1185, 7.1163, 7.1211, 7.1252, 7.1231, 7.1213, 7.1255, 7.1298, 7.1275, 7.1291, 7.1269, 7.1253, 7.1232, 7.121, 7.1198, 7.1245, 7.1228, 7.1273, 7.1257, 7.1235, 7.1222, 7.1247, 7.1238, 7.1283, 7.1341, 7.1384, 7.1362, 7.1345, 7.139, 7.1435, 7.1482, 7.146, 7.1502, 7.1543, 7.1523, 7.1568, 7.1551, 7.1533, 7.1722, 7.1701, 7.1745, 7.1724, 7.1769, 7.1815, 7.1792, 7.1774, 7.1759, 7.1748, 7.1739, 7.1724, 7.1701, 7.1624, 7.1604, 7.1587, 7.1565, 7.1543, 7.1591, 7.1633, 7.1675, 7.1726, 7.172, 7.1761, 7.1802, 7.1782, 7.1784, 7.1767, 7.1747, 7.1789, 7.177, 7.1749, 7.1734, 7.1718, 7.176, 7.1739, 7.1719, 7.1706, 7.1747, 7.1734, 7.1712, 7.1693, 7.1678, 7.1717, 7.1706, 7.1744, 7.1786, 7.1932, 7.1976, 7.1955, 7.1934, 7.1919, 7.1905, 7.1957, 7.202, 7.2009, 7.1998, 7.2038, 7.2016, 7.2003, 7.1986, 7.1971, 7.1962, 7.1943, 7.1929, 7.1913, 7.1905, 7.1835, 7.1816, 7.1797, 7.1778, 7.1763, 7.1756, 7.1796, 7.1836, 7.1822, 7.183, 7.1811, 7.1794, 7.1799, 7.1846, 7.1826, 7.1812, 7.1917, 7.1904, 7.189, 7.1936, 7.1977, 7.1957, 7.1935, 7.1919, 7.1942, 7.1922, 7.1912, 7.1899, 7.1886, 7.1873, 7.1852, 7.184, 7.1822, 7.1804, 7.1795, 7.1851, 7.1833, 7.1878, 7.1859, 7.1852, 7.1839, 7.182, 7.1871, 7.1852, 7.1842, 7.1822, 7.1813, 7.193, 7.1922, 7.1903, 7.1884, 7.1864, 7.1846, 7.1826, 7.1822, 7.1803, 7.184, 7.182, 7.1752, 7.1745, 7.1736, 7.1729, 7.1767, 7.1749, 7.1788, 7.1771, 7.1762, 7.1754, 7.174, 7.1728, 7.1717, 7.1755, 7.1762, 7.1801, 7.1791, 7.1774, 7.1761, 7.1746, 7.1727, 7.1717, 7.1706, 7.1687, 7.1674, 7.1709, 7.1743, 7.1724, 7.1705, 7.1689, 7.1676, 7.1686000000000005, 7.169600000000001, 7.1678, 7.1669, 7.1705, 7.1693, 7.1687, 7.1724, 7.1707, 7.1689, 7.167, 7.1651, 7.1661, 7.1656, 7.1703, 7.1686, 7.167, 7.1661, 7.1644, 7.1627, 7.1619, 7.1602, 7.1586, 7.1524, 7.1521, 7.1503, 7.1485, 7.1468, 7.1457, 7.145, 7.1433, 7.1417, 7.1353, 7.1337, 7.1321, 7.1313, 7.1296, 7.1285, 7.1335, 7.137, 7.141, 7.1396, 7.1385, 7.1374, 7.1358, 7.134, 7.1328, 7.1309, 7.131, 7.1302, 7.1296, 7.1278, 7.1269, 7.1252, 7.124, 7.1227, 7.1209, 7.1193, 7.1177, 7.1214, 7.1251, 7.1261, 7.1357, 7.1367, 7.1307, 7.1293, 7.1289, 7.1325, 7.1309, 7.1292, 7.1324, 7.1308, 7.1293, 7.1284, 7.1269, 7.1253, 7.1289, 7.1279, 7.1264, 7.1246, 7.1229, 7.1218, 7.1201, 7.1185, 7.118, 7.1163, 7.1157, 7.1146, 7.1129, 7.1167, 7.1207, 7.1193, 7.1185, 7.1189, 7.1172, 7.1209, 7.1194, 7.1179, 7.1202, 7.1188, 7.119800000000001, 7.1181, 7.117, 7.1153, 7.1137, 7.1125, 7.1108, 7.1143, 7.1128, 7.1164, 7.115, 7.1135, 7.1084, 7.1128, 7.1218, 7.1216, 7.1247, 7.1236, 7.1224, 7.1255, 7.1242, 7.123, 7.1217, 7.1232, 7.1238, 7.1224, 7.1215, 7.1202, 7.124, 7.1273, 7.1261, 7.1294, 7.1283, 7.1269, 7.1306, 7.1299, 7.1242, 7.1229, 7.1216, 7.1202, 7.1186, 7.1174, 7.1162, 7.1331, 7.1335, 7.1321, 7.131, 7.1346, 7.1334, 7.132, 7.1304, 7.1289, 7.1234, 7.1364, 7.1349, 7.1337, 7.1327, 7.1313, 7.1297, 7.1341, 7.1328, 7.1357, 7.1341, 7.1331, 7.1325, 7.131, 7.1341, 7.1375, 7.137, 7.1513, 7.1505, 7.149, 7.1523, 7.1507, 7.1499, 7.1492, 7.1522, 7.151, 7.1499, 7.1483, 7.1468, 7.1517, 7.1642, 7.1673, 7.1657, 7.1653, 7.1642, 7.163, 7.1614, 7.1599, 7.1588, 7.1574, 7.1559, 7.1503, 7.1488, 7.1473, 7.1465, 7.1511, 7.1506, 7.1495, 7.1499, 7.1494, 7.1524, 7.1513, 7.1544, 7.1533, 7.1565, 7.1598, 7.1544, 7.1538, 7.1528, 7.1513, 7.1671, 7.1661, 7.1652, 7.1642, 7.1682, 7.1674, 7.1669, 7.1658, 7.1647, 7.1671, 7.1655, 7.1642, 7.1634, 7.1667, 7.1655, 7.1685, 7.1673, 7.166, 7.1647, 7.168, 7.1673, 7.1661, 7.1653, 7.1639, 7.163, 7.1578, 7.1564, 7.1549, 7.1539, 7.1531, 7.1518, 7.1504, 7.1494, 7.148, 7.1465, 7.1451, 7.1436, 7.1425, 7.1416, 7.1425, 7.142, 7.1406, 7.1393, 7.1379, 7.1463, 7.1451, 7.1437, 7.1424, 7.1414, 7.1451, 7.144, 7.1433, 7.1526, 7.1488, 7.1474, 7.1434, 7.1525, 7.1515, 7.1502, 7.1493, 7.1496, 7.1488, 7.1475, 7.1543, 7.1531, 7.1517, 7.1466, 7.146, 7.1519, 7.1505, 7.1495, 7.1569, 7.1619, 7.1607, 7.1594, 7.1583, 7.1833, 7.1822, 7.1811, 7.1841, 7.183, 7.1823, 7.1809, 7.1798, 7.1825, 7.1855, 7.1849, 7.184, 7.1868, 7.1899, 7.1927, 7.1955, 7.1982, 7.201, 7.1998, 7.1982, 7.1971, 7.1965, 7.195, 7.1977, 7.1963, 7.1953, 7.1981, 7.1969, 7.1956, 7.1941, 7.1934, 7.1921, 7.1908, 7.1896, 7.1965, 7.1994, 7.1982, 7.1972, 7.2007, 7.1993, 7.2017, 7.2003, 7.2034, 7.2059, 7.2047, 7.2032, 7.2021, 7.2012, 7.2, 7.2032, 7.2019, 7.2008, 7.1996, 7.1986, 7.1975, 7.1976, 7.1968, 7.1961, 7.1991, 7.198, 7.1967, 7.1954, 7.1904, 7.189, 7.192, 7.1951, 7.1938, 7.193, 7.1917, 7.1945, 7.1931, 7.1958, 7.1949, 7.1939, 7.1926, 7.1912, 7.1899, 7.1892, 7.1885, 7.2002, 7.1988, 7.1976, 7.1967, 7.1956, 7.1955, 7.1941, 7.1927, 7.1914, 7.1903, 7.189, 7.1878, 7.1871, 7.1897, 7.1884, 7.1877, 7.1867, 7.1853, 7.1843, 7.1831, 7.1785, 7.1773, 7.1783, 7.1774, 7.1761, 7.1747, 7.1734, 7.1725, 7.1711, 7.1699, 7.1815, 7.1814, 7.1842, 7.1831, 7.1824, 7.1812, 7.1837, 7.1827, 7.1815, 7.1802, 7.179, 7.1777, 7.1804, 7.1831, 7.1818, 7.1847, 7.1836, 7.1823, 7.1885, 7.1872, 7.186, 7.1909, 7.1935, 7.1923, 7.1911, 7.1907, 7.1894, 7.1886, 7.1877, 7.1864, 7.1857, 7.1843, 7.183, 7.1819, 7.1808, 7.1799, 7.1795, 7.1782, 7.1774, 7.1764, 7.1751, 7.1743, 7.1739, 7.1731, 7.1756, 7.1784, 7.1811, 7.181, 7.1836, 7.1828, 7.189, 7.1918, 7.1909, 7.1896, 7.1923, 7.1949, 7.1982, 7.2006, 7.1997, 7.2019, 7.2007, 7.1995, 7.2017, 7.2043, 7.2033, 7.2024, 7.2011, 7.2001, 7.2024, 7.2049, 7.2037, 7.2024, 7.2011, 7.1998, 7.1955, 7.1942, 7.1966, 7.1958, 7.1947, 7.1936, 7.1965, 7.203, 7.2022, 7.205, 7.204, 7.203, 7.202, 7.2011, 7.2008, 7.1997, 7.2023, 7.2016, 7.2007, 7.1996, 7.1984, 7.1981, 7.2043, 7.2105, 7.2093, 7.2081, 7.2069, 7.2077, 7.2065, 7.2053, 7.2041, 7.2031, 7.2057, 7.2048, 7.2043, 7.2032, 7.202, 7.2014, 7.2002, 7.1989, 7.198, 7.2219, 7.2208, 7.2243, 7.2231, 7.2256, 7.2244, 7.2232, 7.222, 7.2208, 7.2233, 7.2225, 7.225, 7.224, 7.2228, 7.2256, 7.2258, 7.225, 7.2276, 7.2265, 7.2253, 7.2242, 7.2271, 7.2267, 7.2289, 7.2285, 7.2285, 7.2273, 7.2262, 7.2258, 7.2315, 7.2307, 7.2331, 7.232, 7.2312, 7.23, 7.2289, 7.2277, 7.2268, 7.2255, 7.2248, 7.2236, 7.2225, 7.2213, 7.2201, 7.2189, 7.2184, 7.2186, 7.2178, 7.2135, 7.2126, 7.2147, 7.2172, 7.216, 7.2186, 7.2185, 7.2203, 7.226, 7.2255, 7.2247, 7.2305, 7.2293, 7.2282, 7.2272, 7.2259, 7.2247, 7.2235, 7.2223, 7.2246, 7.2272, 7.2259, 7.225, 7.2248, 7.2204, 7.2193, 7.2183, 7.2172, 7.2195, 7.2182, 7.217, 7.2159, 7.2151, 7.2174, 7.2135, 7.2128, 7.2123, 7.2118, 7.2107, 7.2095, 7.2118, 7.2111, 7.2133, 7.2154, 7.2177, 7.217, 7.2159, 7.218, 7.2203, 7.2202, 7.219, 7.2178, 7.2169, 7.2159, 7.2147, 7.2139, 7.2133, 7.2122, 7.2113, 7.2134, 7.2164, 7.2186, 7.2174, 7.2163, 7.2152, 7.2176, 7.2164, 7.2159, 7.2147, 7.2135, 7.2226, 7.2216, 7.2205, 7.2193, 7.2217, 7.2209, 7.2198, 7.2192, 7.218, 7.217, 7.2192, 7.2184, 7.2181, 7.217, 7.2167, 7.2188, 7.2181, 7.2169, 7.2158, 7.2179, 7.2168, 7.2157, 7.2146, 7.2139, 7.2129, 7.2149, 7.2172, 7.2161, 7.2152, 7.2173, 7.2163, 7.2153, 7.2144, 7.2168, 7.2216, 7.2205, 7.2194, 7.2203, 7.2164, 7.2153, 7.2146, 7.2167, 7.2156, 7.2146, 7.2168, 7.2158, 7.2148, 7.2137, 7.2126, 7.2118, 7.2138, 7.2159, 7.2153, 7.2255, 7.2246, 7.2238, 7.2228, 7.2253, 7.2242, 7.2236, 7.2226, 7.2218, 7.2207, 7.2198, 7.2187, 7.2175, 7.2167, 7.2187, 7.2179, 7.2168, 7.2191, 7.218, 7.2169, 7.2165, 7.2154, 7.2143, 7.2132, 7.2124, 7.2113, 7.2104, 7.2094, 7.2119, 7.211, 7.213, 7.2118, 7.2138, 7.2126, 7.2117, 7.2109, 7.2102, 7.2122, 7.2114, 7.2104, 7.2102, 7.2092, 7.2091, 7.2112, 7.2102, 7.2091, 7.2087, 7.2077, 7.2097, 7.2086, 7.2106, 7.2097, 7.2086, 7.2079, 7.2041, 7.203, 7.202, 7.201, 7.2086, 7.2117, 7.2112, 7.2101, 7.2094, 7.2093, 7.2086, 7.2079, 7.2069, 7.2058, 7.2049, 7.2039, 7.206, 7.205, 7.2044, 7.2034, 7.2023, 7.2015, 7.2005, 7.1995, 7.2054, 7.2048, 7.2167, 7.2157, 7.2177, 7.2171, 7.2161, 7.2155, 7.2144, 7.2133, 7.213, 7.2121, 7.211, 7.2102, 7.2094, 7.2084, 7.2074, 7.2038, 7.2076, 7.2096, 7.209, 7.2081, 7.2102, 7.2091, 7.2084, 7.2074, 7.2066, 7.2057, 7.2077, 7.2071, 7.2066, 7.2058, 7.2047, 7.2066, 7.2085, 7.2079, 7.207, 7.2064, 7.2054, 7.2043, 7.2035, 7.2024, 7.2043, 7.2063, 7.2106, 7.2124, 7.2113, 7.2102, 7.2092, 7.2085, 7.2112, 7.2107, 7.2097, 7.2089, 7.2081, 7.2076, 7.2068, 7.2089, 7.2108, 7.2099, 7.2095, 7.2089, 7.2081, 7.2101, 7.2092, 7.2057, 7.2049, 7.2039, 7.2031, 7.2023, 7.2015, 7.2006, 7.2001, 7.1994, 7.2014, 7.2035, 7.2025, 7.2046, 7.2036, 7.2027, 7.2017, 7.2008, 7.2037, 7.2064, 7.2112, 7.2104, 7.2094, 7.2088, 7.208, 7.207, 7.2066, 7.2056, 7.2048, 7.2038, 7.2058, 7.205, 7.2041, 7.2031, 7.2051, 7.2043, 7.2013, 7.2005, 7.2026, 7.2018, 7.2008, 7.2112, 7.2103, 7.2093, 7.209, 7.2081, 7.2071, 7.207, 7.2062, 7.208, 7.207, 7.2061, 7.2055, 7.2075, 7.2095, 7.2093, 7.2113, 7.2104, 7.2123, 7.2115, 7.2105, 7.2099, 7.2094, 7.2115, 7.2135, 7.2131, 7.2124, 7.2148, 7.214, 7.2133, 7.2125, 7.2123, 7.212, 7.2111, 7.2105, 7.2095, 7.2068, 7.206, 7.2051, 7.2129, 7.212, 7.2112, 7.2102, 7.2092, 7.2082, 7.2076, 7.2125, 7.2146, 7.214, 7.2135, 7.2129, 7.2148, 7.2142, 7.2134, 7.2124, 7.2114, 7.2104, 7.2095, 7.2086, 7.2088, 7.2107, 7.2181, 7.2171, 7.2166, 7.2207, 7.2232, 7.2223, 7.2215, 7.2237, 7.227, 7.2262, 7.2253, 7.2243, 7.2239, 7.2231, 7.2196, 7.2268, 7.229, 7.2284, 7.2304, 7.2324, 7.229, 7.2286, 7.2254, 7.2282, 7.2272, 7.229, 7.2307, 7.2297, 7.2287, 7.2361, 7.2353, 7.2347, 7.2368, 7.2394, 7.2386, 7.2386, 7.2381, 7.2372, 7.2365, 7.2384, 7.2402, 7.2392, 7.2383, 7.2376, 7.2369, 7.2387, 7.238, 7.2374, 7.2365, 7.2355, 7.2374, 7.2392, 7.2384, 7.2375, 7.2365, 7.2355, 7.2323, 7.2289, 7.2281, 7.2278, 7.2272, 7.2265, 7.2286, 7.232, 7.2337, 7.2329, 7.2326, 7.2345, 7.2337, 7.2328, 7.2347, 7.2337, 7.233, 7.2297, 7.2294, 7.2285, 7.2282, 7.2301, 7.2268, 7.2259, 7.2252, 7.2243, 7.2247, 7.2268, 7.226, 7.2306, 7.2325, 7.2315, 7.2305, 7.2295, 7.2314, 7.2334, 7.2342, 7.236, 7.2352, 7.2351, 7.2344, 7.2336, 7.2329, 7.2345, 7.2335, 7.2326, 7.2343, 7.2361, 7.2379, 7.2371, 7.2363, 7.236, 7.2407, 7.24, 7.239, 7.2381, 7.2371, 7.2362, 7.2357, 7.2374, 7.2368, 7.2385, 7.2376, 7.2367, 7.2358, 7.2349, 7.2341, 7.2335, 7.2328, 7.2318, 7.2339, 7.233, 7.2321, 7.2342, 7.2359, 7.2352, 7.2402, 7.2393, 7.2384, 7.2404, 7.2396, 7.2388, 7.2381, 7.2374, 7.2389, 7.2407, 7.2402, 7.2394, 7.241, 7.2401, 7.2418, 7.241, 7.2407, 7.2422, 7.242, 7.2411, 7.2402, 7.2401, 7.2391, 7.2382, 7.2374, 7.2392, 7.2383, 7.2374, 7.2365, 7.2356, 7.2373, 7.2367, 7.2358, 7.2375, 7.2392, 7.2382, 7.2402, 7.2399, 7.239, 7.2407, 7.2401, 7.2395, 7.2386, 7.2404, 7.2395, 7.2405, 7.24, 7.2393, 7.2368, 7.2359, 7.2351, 7.2343, 7.2335, 7.2353, 7.2344, 7.2338, 7.2336, 7.2351, 7.2342, 7.2359, 7.235, 7.2341, 7.2332, 7.2323, 7.2314, 7.2307, 7.2298, 7.229, 7.2287, 7.2279, 7.227, 7.2239, 7.2231, 7.2228, 7.2246, 7.2238, 7.2254, 7.2246, 7.2292, 7.2289, 7.228, 7.2272, 7.2263, 7.2257, 7.2251, 7.2246, 7.2243, 7.2233, 7.2227, 7.2218, 7.2213, 7.2206, 7.2211, 7.2204, 7.2223, 7.2222, 7.2215, 7.2233, 7.2224, 7.2217, 7.2223, 7.2216, 7.2234, 7.2227, 7.2227, 7.2218, 7.2214, 7.2213, 7.2204, 7.2195, 7.2188, 7.218, 7.2177, 7.2173, 7.2167, 7.2159, 7.2152, 7.2147, 7.2144, 7.2135, 7.2129, 7.2113, 7.2109, 7.2104, 7.2096, 7.2066, 7.2057, 7.2049, 7.2041, 7.2032, 7.2029, 7.2021, 7.2015, 7.2032, 7.2049, 7.204, 7.2032, 7.2048, 7.2043, 7.2037, 7.2038, 7.2035, 7.2029, 7.2021, 7.2014, 7.2005, 7.2023, 7.2017, 7.2036, 7.2027, 7.2069, 7.2088, 7.2082, 7.2073, 7.2094, 7.2094, 7.2088, 7.2116, 7.2132, 7.2168, 7.2162, 7.2178, 7.2171, 7.2165, 7.2183, 7.2178, 7.2155, 7.216, 7.2161, 7.2177, 7.2173, 7.2166, 7.2161, 7.2154, 7.2146, 7.2144, 7.2147, 7.2143, 7.2159, 7.2153, 7.217, 7.2166, 7.2161, 7.2153, 7.2146, 7.2138, 7.213, 7.2133, 7.2126, 7.2118, 7.2134, 7.2126, 7.2142, 7.2136, 7.213, 7.2167, 7.2158, 7.2149, 7.2141, 7.2139, 7.2133, 7.2148, 7.214, 7.2156, 7.2173, 7.2188, 7.2181, 7.2173, 7.2165, 7.2161, 7.2177, 7.2198, 7.2189, 7.2205, 7.2177, 7.217, 7.2162, 7.2157, 7.215, 7.2144, 7.216, 7.2153, 7.2148, 7.2144, 7.2168, 7.216, 7.2152, 7.2149, 7.2141, 7.2133, 7.2125, 7.2121, 7.2138, 7.2131, 7.2126, 7.2118, 7.211, 7.2102, 7.2118, 7.2112, 7.2128, 7.21, 7.2093, 7.2085, 7.2101, 7.2096, 7.209, 7.2106, 7.2099, 7.2095, 7.2103, 7.2119, 7.2112, 7.2104, 7.2101, 7.2095, 7.2088, 7.2081, 7.2099, 7.2092, 7.2084, 7.2102, 7.2098, 7.2093, 7.209, 7.2083, 7.2098, 7.2093, 7.2086, 7.208, 7.2096, 7.2092, 7.2087, 7.2104, 7.2121, 7.2116, 7.2109, 7.2101, 7.2096, 7.2089, 7.2082, 7.2075, 7.2068, 7.2062, 7.2054, 7.2046, 7.2042, 7.2034, 7.2029, 7.2044, 7.206, 7.2052, 7.2045, 7.2038, 7.2032, 7.205, 7.2043, 7.2036, 7.2031, 7.2078, 7.2102, 7.2095, 7.2158, 7.2174, 7.2168, 7.2161, 7.2157, 7.2172, 7.2187, 7.218, 7.2174, 7.219, 7.2183, 7.2156, 7.217, 7.2165, 7.2182, 7.2176, 7.2191, 7.2222, 7.2214, 7.2229, 7.2221, 7.2213, 7.2205, 7.2197, 7.2191, 7.2206, 7.2199, 7.2198, 7.2213, 7.2251, 7.2243, 7.2236, 7.2229, 7.2224, 7.2218, 7.2193, 7.219, 7.2182, 7.2177, 7.2171, 7.2165, 7.2162, 7.2154, 7.215, 7.2232, 7.2206, 7.22, 7.2193, 7.2186, 7.2178, 7.2171, 7.2164, 7.2158, 7.2151, 7.2143, 7.2143, 7.2135, 7.2127, 7.2142, 7.2165, 7.2164, 7.2156, 7.2148, 7.214, 7.2133, 7.2129, 7.2124, 7.212, 7.2114, 7.2108, 7.2125, 7.2137, 7.2132, 7.2147, 7.214, 7.2133, 7.2143, 7.2167, 7.2161, 7.2153, 7.2167, 7.2159, 7.2199, 7.2214, 7.2207, 7.2202, 7.2175, 7.219, 7.2184, 7.2178, 7.2171, 7.2164, 7.2162, 7.2178, 7.2171, 7.2165, 7.2157, 7.2172, 7.2164, 7.2156, 7.215, 7.2155, 7.2151, 7.2167, 7.2164, 7.2163, 7.2155, 7.2147, 7.2141, 7.2134, 7.2149, 7.2143, 7.2136, 7.2129, 7.2122, 7.2117, 7.211, 7.2103, 7.2096, 7.2111, 7.2104, 7.2119, 7.2112, 7.2106, 7.2124, 7.2119, 7.2114, 7.2134, 7.2108, 7.2103, 7.2116, 7.2113, 7.2107, 7.2121, 7.2114, 7.2129, 7.2123, 7.2137, 7.2151, 7.2146, 7.2143, 7.2136, 7.2129, 7.2126, 7.2119, 7.2115, 7.2107, 7.21, 7.2093, 7.2086, 7.2082, 7.2076, 7.2092, 7.2106, 7.2102, 7.2096, 7.2095, 7.2088, 7.208, 7.2073, 7.2074, 7.2112, 7.2107, 7.21, 7.2095, 7.211, 7.2104, 7.2119, 7.2112, 7.2127, 7.2119, 7.2114, 7.2107, 7.213, 7.2123, 7.2117, 7.2113, 7.2108, 7.2121, 7.2115, 7.2113, 7.2107, 7.2099, 7.2092, 7.2087, 7.2081, 7.2074, 7.2067, 7.2073, 7.2078, 7.2074, 7.2069, 7.2063, 7.2056, 7.2073, 7.2067, 7.206, 7.2074, 7.2067, 7.206, 7.2075, 7.2068, 7.2061, 7.2054, 7.2047, 7.204, 7.2015, 7.2009, 7.2001, 7.2015, 7.2009, 7.2006, 7.2001, 7.1993, 7.1986, 7.1983, 7.1977, 7.1973, 7.1979, 7.1973, 7.1987, 7.1982, 7.1996, 7.1991, 7.1987, 7.198, 7.1973, 7.1967, 7.196, 7.1955, 7.1969, 7.1943, 7.1937, 7.1931, 7.1924, 7.1981, 7.1976, 7.1997, 7.1992, 7.1972, 7.1988, 7.1981, 7.1977, 7.1952, 7.196, 7.1979, 7.1972, 7.1986, 7.1978, 7.1974, 7.1982, 7.1994, 7.2007, 7.1999, 7.1993, 7.1986, 7.1999, 7.1993, 7.1988, 7.1981, 7.1977, 7.1972, 7.1965, 7.1957, 7.1972, 7.1965, 7.1963, 7.1978, 7.1973, 7.1967, 7.1982, 7.1996, 7.1991, 7.1984, 7.1977, 7.1972, 7.1968, 7.1982, 7.1976, 7.1976, 7.1969, 7.1962, 7.1976, 7.1971, 7.1968, 7.1966, 7.196, 7.1954, 7.1947, 7.1941, 7.1938, 7.1932, 7.1926, 7.1919, 7.1913, 7.1906, 7.1904, 7.1897, 7.189, 7.1883, 7.1878, 7.1872, 7.1868, 7.1863, 7.1858, 7.1851, 7.1844, 7.1857, 7.1851, 7.1846, 7.184, 7.1833, 7.185, 7.1847, 7.1842, 7.1835, 7.1828, 7.1822, 7.1817, 7.1832, 7.1849, 7.1843, 7.184, 7.1833, 7.1828, 7.1821, 7.1828, 7.1821, 7.1797, 7.179, 7.1783, 7.1798, 7.1792, 7.1788, 7.1802, 7.1798, 7.1793, 7.1786, 7.178, 7.1793, 7.1786, 7.1783, 7.1776, 7.1773, 7.1771, 7.1767, 7.1764, 7.1757, 7.1752, 7.1746, 7.176, 7.1755, 7.1752, 7.1747, 7.1761, 7.176, 7.1759, 7.1755, 7.1749, 7.1746, 7.1741, 7.1753, 7.1748, 7.1743, 7.1741, 7.1755, 7.1748, 7.1746, 7.1741, 7.1753, 7.1746, 7.1742, 7.1736, 7.1731, 7.1745, 7.1761, 7.1738, 7.1753, 7.1767, 7.1761, 7.1757, 7.1754, 7.175, 7.1763, 7.1777, 7.177, 7.1763, 7.1798, 7.181, 7.1805, 7.181500000000001, 7.1809, 7.1804, 7.1806, 7.1801, 7.1795, 7.1791, 7.1784, 7.1778, 7.1772, 7.1766, 7.1761, 7.1758, 7.1772, 7.1768, 7.1763, 7.18, 7.1813, 7.1807, 7.1806, 7.1801, 7.1794, 7.1809, 7.1824, 7.1818, 7.1814, 7.1847, 7.1864, 7.1877, 7.1875, 7.187, 7.1863, 7.1859, 7.1853, 7.1887, 7.1883, 7.1877, 7.1876, 7.1872, 7.1866, 7.1882, 7.1875, 7.1888, 7.1902, 7.1903, 7.1898, 7.1891, 7.1884, 7.1881, 7.1874, 7.1867, 7.1881, 7.1875, 7.1887, 7.1903, 7.1898, 7.192, 7.1933, 7.1945, 7.1939, 7.1934, 7.1931, 7.1946, 7.1939, 7.1933, 7.1945, 7.1941, 7.1954, 7.1994, 7.1987, 7.198, 7.1974, 7.1969, 7.1965, 7.1977, 7.1991, 7.1984, 7.1979, 7.1993, 7.1989, 7.1982, 7.1978, 7.1976, 7.1972, 7.1966, 7.1962, 7.1958, 7.1953, 7.1948, 7.1944, 7.1958, 7.1952, 7.1946, 7.1961, 7.1977, 7.1972, 7.1966, 7.198, 7.1992, 7.2005, 7.1999, 7.2012, 7.2005, 7.1999, 7.1993, 7.1987, 7.1999, 7.1993, 7.1989, 7.2002, 7.1996, 7.1993, 7.1988, 7.1982, 7.1983, 7.1979, 7.1973, 7.1967, 7.1962, 7.1956, 7.195, 7.1943, 7.1955, 7.1967, 7.196, 7.1957, 7.1997, 7.2009, 7.2017, 7.2011, 7.1988, 7.1982, 7.1977, 7.1971, 7.1964, 7.1941, 7.1937, 7.1932, 7.1926, 7.192, 7.1914, 7.1927, 7.1941, 7.1935, 7.1929, 7.1923, 7.1917, 7.1911, 7.1905, 7.1903, 7.19, 7.1895, 7.1889, 7.19, 7.1893, 7.1905, 7.1917, 7.1929, 7.1926, 7.192, 7.1914, 7.1907, 7.1919, 7.1932, 7.1929, 7.1923, 7.192, 7.1915, 7.1927, 7.1921, 7.1917, 7.1936, 7.1929, 7.1923, 7.1937, 7.1931, 7.1927, 7.1939, 7.1934, 7.193, 7.1924, 7.1918, 7.1912, 7.1907, 7.19, 7.1894, 7.1889, 7.1891, 7.1903, 7.1898, 7.1892, 7.1888, 7.1899, 7.1895, 7.1889, 7.1883, 7.1878, 7.1891, 7.1903, 7.1896, 7.1891, 7.1903, 7.19, 7.1912, 7.1924, 7.1937, 7.195, 7.1944, 7.1957, 7.1952, 7.1965, 7.1977, 7.1971, 7.1965, 7.1976, 7.1973, 7.1971, 7.1964, 7.1958, 7.1953, 7.1946, 7.1941, 7.1936, 7.1931, 7.1926, 7.192, 7.1933, 7.1928, 7.1939, 7.1932, 7.1926, 7.192, 7.1915, 7.191, 7.1921, 7.1916, 7.191, 7.1921, 7.1917, 7.1911, 7.1906, 7.1901, 7.1895, 7.1907, 7.1903, 7.1914, 7.1912, 7.1918, 7.1912, 7.1906, 7.1901, 7.1895, 7.1892, 7.1886, 7.1898, 7.1897, 7.1895, 7.1892, 7.1936, 7.1931, 7.1944, 7.1954, 7.195, 7.1962, 7.1957, 7.1951, 7.1946, 7.1941, 7.1936, 7.1931, 7.1925, 7.1919, 7.1932, 7.1929, 7.1941, 7.1953, 7.1947, 7.1942, 7.1936, 7.1932, 7.1929, 7.1924, 7.1922, 7.1934, 7.1946, 7.194, 7.1951, 7.1945, 7.1939, 7.1951, 7.1945, 7.194, 7.1934, 7.1933, 7.1927, 7.1922, 7.1916, 7.1931, 7.1926, 7.1923, 7.1917, 7.1932, 7.1945, 7.1957, 7.1952, 7.1963, 7.1961, 7.1958, 7.1953, 7.1964, 7.1958, 7.1955, 7.1952, 7.1946, 7.1961, 7.1955, 7.195, 7.1963, 7.1958, 7.1955, 7.1967, 7.1962, 7.1959, 7.1972, 7.1984, 7.1978, 7.1957, 7.1936, 7.1948, 7.1942, 7.1939, 7.1933, 7.1928, 7.1922, 7.1916, 7.1911, 7.1907, 7.1901, 7.1895, 7.1891, 7.1886, 7.188, 7.1893, 7.1887, 7.1898, 7.1899, 7.1896, 7.1891, 7.1901, 7.1896, 7.1892, 7.1904, 7.1898, 7.1902, 7.1898, 7.1904, 7.1887, 7.1881, 7.1877, 7.189, 7.1884, 7.1896, 7.191, 7.1905, 7.1902, 7.1914, 7.1911, 7.1909, 7.1905, 7.19, 7.1898, 7.1894, 7.1889, 7.1885, 7.1899, 7.1894, 7.1891, 7.1887, 7.1899, 7.1893, 7.1889, 7.19, 7.1912, 7.1909, 7.1906, 7.1917, 7.1928, 7.1922, 7.1917, 7.193, 7.1927, 7.1926, 7.194, 7.1935, 7.193, 7.1927, 7.1922, 7.1924, 7.1919, 7.1914, 7.1908, 7.1902, 7.1897, 7.1892, 7.1889, 7.1884, 7.1899, 7.1903, 7.19, 7.1898, 7.1895, 7.1891, 7.1888, 7.1899, 7.1895, 7.189, 7.1885, 7.188, 7.1879, 7.1892, 7.1889, 7.1883, 7.1879, 7.1875, 7.1869, 7.1865, 7.1878, 7.1873, 7.1852, 7.1849, 7.1844, 7.1856, 7.1851, 7.1845, 7.1841, 7.1838, 7.1835, 7.1831, 7.1826, 7.184, 7.1834, 7.1828, 7.1823, 7.1837, 7.1834, 7.1847, 7.1841, 7.1841, 7.1859, 7.1853, 7.1848, 7.1843, 7.1855, 7.185, 7.1846, 7.184, 7.1834, 7.1828, 7.1807, 7.1802, 7.1813, 7.1808, 7.1802, 7.1802, 7.1797, 7.1793, 7.1804, 7.1815, 7.1828, 7.1822, 7.1819, 7.1813, 7.1807, 7.1788, 7.1816, 7.181, 7.1805, 7.1834, 7.185, 7.1844, 7.1839, 7.1836, 7.1831, 7.1841, 7.1869, 7.1863, 7.1857, 7.1854, 7.1866, 7.1862, 7.1874, 7.1869, 7.1864, 7.1858, 7.1868, 7.1864, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1852, 7.1848, 7.1842, 7.1836, 7.1831, 7.183, 7.1825, 7.1823, 7.1819, 7.1814, 7.1808, 7.182, 7.1814, 7.1808, 7.1802, 7.1797, 7.1797, 7.1792, 7.1787, 7.1783, 7.178, 7.1792, 7.1787, 7.1783, 7.178, 7.179, 7.1784, 7.1796, 7.1791, 7.1835, 7.1832, 7.1829, 7.1842, 7.1836, 7.1832, 7.1827, 7.1835, 7.183, 7.1841, 7.1822, 7.1819, 7.1814, 7.181, 7.1805, 7.18, 7.1795, 7.179, 7.1802, 7.1797, 7.1808, 7.1792, 7.1787, 7.1821, 7.1806, 7.1801, 7.1797, 7.181, 7.1838, 7.1832, 7.1849, 7.1829, 7.1824, 7.1821, 7.1831, 7.1811, 7.1807, 7.1821, 7.1872, 7.187, 7.1866, 7.1864, 7.1876, 7.1876, 7.1873, 7.1868, 7.1863, 7.1858, 7.187, 7.1865, 7.186, 7.1873, 7.1871, 7.1904, 7.1915, 7.1896, 7.1891, 7.1887, 7.1882, 7.1884, 7.1907, 7.192, 7.1915, 7.191, 7.1906, 7.1902, 7.1912, 7.1908, 7.1903, 7.1914, 7.1909, 7.1903, 7.1898, 7.1893, 7.1887, 7.1882, 7.1877, 7.1884, 7.188, 7.1876, 7.1888, 7.1903, 7.1899, 7.191, 7.1921, 7.1931, 7.1927, 7.1922, 7.1918, 7.1914, 7.1908, 7.1903, 7.1913, 7.1907, 7.1902, 7.1899, 7.1912, 7.1908, 7.1928, 7.1923, 7.1934, 7.1945, 7.194, 7.1935, 7.1946, 7.1941, 7.1936, 7.1931, 7.1928, 7.1923, 7.1934, 7.1931, 7.1925, 7.1936, 7.1931, 7.1927, 7.1924, 7.192, 7.1915, 7.191, 7.1904, 7.1914, 7.1895, 7.1891, 7.1919, 7.1914, 7.1914, 7.1924, 7.1919, 7.1914, 7.191, 7.192, 7.1915, 7.1911, 7.1909, 7.1906, 7.1903, 7.1899, 7.1894, 7.1875, 7.1871, 7.1866, 7.1861, 7.1889, 7.1884, 7.188, 7.1877, 7.1874, 7.1872, 7.1867, 7.1862, 7.1873, 7.1868, 7.1865, 7.1876, 7.1871, 7.187, 7.1865, 7.1883, 7.1878, 7.1881, 7.1892, 7.1933, 7.193, 7.1925, 7.1922, 7.1917, 7.1913, 7.1909, 7.192, 7.1915, 7.1909, 7.1904, 7.1899, 7.1894, 7.189, 7.1884, 7.1879, 7.1889, 7.1885, 7.188, 7.1878, 7.1873, 7.1884, 7.1879, 7.1876, 7.1882, 7.1877, 7.1871, 7.1868, 7.1881, 7.1891, 7.1902, 7.1913, 7.1924, 7.1918, 7.1899, 7.191, 7.1905, 7.19, 7.1899, 7.1909, 7.1906, 7.1902, 7.1897, 7.1907, 7.1901, 7.1911, 7.1925, 7.192, 7.1901, 7.1911, 7.1909, 7.1919, 7.1921, 7.1917, 7.1952, 7.1955, 7.1981, 7.1976, 7.1974, 7.1969, 7.1964, 7.1958, 7.1953, 7.1948, 7.1942, 7.1937, 7.1932, 7.1927, 7.1924, 7.1921, 7.1916, 7.1911, 7.1906, 7.1904, 7.1914, 7.1911, 7.1906, 7.19, 7.1896, 7.1892, 7.1889, 7.189, 7.1889, 7.1884, 7.1896, 7.1906, 7.1903, 7.1898, 7.1895, 7.1906, 7.1918, 7.1913, 7.1909, 7.1904, 7.1905, 7.19, 7.1895, 7.1905, 7.19, 7.1897, 7.1893, 7.1888, 7.1883, 7.1878, 7.1873, 7.1871, 7.1868, 7.1863, 7.186, 7.1858, 7.1853, 7.1848, 7.1844, 7.184, 7.1837, 7.1832, 7.1827, 7.1838, 7.1833, 7.1842, 7.1851, 7.1846, 7.1856, 7.1851, 7.1847, 7.1842, 7.1839, 7.1834, 7.1833, 7.1829, 7.1825, 7.1836, 7.183, 7.184, 7.1851, 7.1846, 7.1841, 7.1836, 7.1834, 7.1831, 7.1826, 7.1821, 7.1817, 7.1812, 7.1807, 7.1802, 7.1812, 7.1807, 7.1804, 7.1799, 7.1794, 7.1791, 7.1787, 7.1782, 7.1777, 7.1759, 7.177, 7.1765, 7.1777, 7.1772, 7.1782, 7.1779, 7.1776, 7.1771, 7.1766, 7.1776, 7.1773, 7.1768, 7.1771, 7.1768, 7.1763, 7.1769, 7.1779, 7.1774, 7.1771, 7.178100000000001, 7.1792, 7.1787, 7.1783, 7.178, 7.1776, 7.1792, 7.1788, 7.1784, 7.1795, 7.179, 7.1788, 7.1785, 7.1783, 7.1793, 7.1789, 7.1784, 7.1782, 7.1825, 7.182, 7.1822, 7.1832, 7.1865, 7.1872, 7.1854, 7.1856, 7.1852, 7.1848, 7.1909, 7.1912, 7.1895, 7.189, 7.1887, 7.1897, 7.191, 7.1906, 7.1903, 7.1898, 7.1893, 7.1888, 7.1884, 7.1879, 7.1874, 7.1869, 7.1878, 7.1888, 7.1898, 7.1894, 7.19, 7.1895, 7.1892, 7.1901, 7.1899, 7.1895, 7.1893, 7.1903, 7.1899, 7.1894, 7.189, 7.1886, 7.1912, 7.1922, 7.1917, 7.19, 7.1883, 7.1893, 7.1888, 7.1883, 7.1893, 7.189, 7.19, 7.1897, 7.1892, 7.1887, 7.1882, 7.1879, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1841, 7.1836, 7.1833, 7.1816, 7.1811, 7.1821, 7.1831, 7.184, 7.1835, 7.183, 7.1825, 7.1831, 7.1826, 7.1843, 7.184, 7.1837, 7.1847, 7.1842, 7.1837, 7.1833, 7.1829, 7.1839, 7.185, 7.1846, 7.1842, 7.1851, 7.1861, 7.1871, 7.1866, 7.1861, 7.1871, 7.1881, 7.1877, 7.1872, 7.1868, 7.1864, 7.186, 7.1857, 7.1854, 7.1864, 7.1874, 7.1888, 7.1885, 7.1898, 7.1895, 7.1905, 7.1902, 7.1898, 7.1894, 7.1891, 7.1889, 7.1874, 7.1871, 7.1867, 7.1864, 7.1859, 7.1855, 7.1854, 7.1851, 7.186, 7.1856, 7.1867, 7.1865, 7.1862, 7.1859, 7.1856, 7.1866, 7.1875, 7.187, 7.1881, 7.1876, 7.1886, 7.1882, 7.1877, 7.1873, 7.1869, 7.1864, 7.186, 7.1855, 7.185, 7.1849, 7.1845, 7.184, 7.1836, 7.186, 7.1855, 7.1851, 7.1848, 7.1845, 7.1854, 7.1851, 7.1846, 7.1856, 7.1852, 7.1861, 7.187, 7.1865, 7.1861, 7.1856, 7.1851, 7.1846, 7.1842, 7.1837, 7.1832, 7.1828, 7.1824, 7.1821, 7.1818, 7.1813, 7.181, 7.1806, 7.1815, 7.1811, 7.1807, 7.1803, 7.18, 7.1796, 7.1792, 7.1774, 7.177, 7.1766, 7.1776, 7.1787, 7.1783, 7.1792, 7.1788, 7.1784, 7.178, 7.1775, 7.1784, 7.1767, 7.1753, 7.1791, 7.1788, 7.1784, 7.1793, 7.1789, 7.1812, 7.1822, 7.1805, 7.18, 7.1813, 7.1824, 7.182, 7.1829, 7.183, 7.184, 7.1836, 7.1861, 7.187, 7.1909, 7.1919, 7.1915, 7.1898, 7.1895, 7.1904, 7.1913, 7.199, 7.1986, 7.1983, 7.1967, 7.1963, 7.1952, 7.1968, 7.1956, 7.1967, 7.1963, 7.1973, 7.1968, 7.1963, 7.1972, 7.1967, 7.1989, 7.2008, 7.2005, 7.2, 7.1996, 7.1992, 7.2002, 7.1985, 7.1995, 7.2005, 7.2001, 7.1996, 7.1991, 7.2, 7.1995, 7.1978, 7.1974, 7.1984, 7.1993, 7.1989, 7.1987, 7.1984, 7.1982, 7.1978, 7.1961, 7.1956, 7.1952, 7.1962, 7.1957, 7.1953, 7.1953, 7.195, 7.1959, 7.1956, 7.1952, 7.1949, 7.1944, 7.194, 7.1936, 7.1933, 7.193, 7.1926, 7.1922, 7.1917, 7.1913, 7.1911, 7.1908, 7.1904, 7.19, 7.1896, 7.1907, 7.1903, 7.1912, 7.1921, 7.1916, 7.1914, 7.1924, 7.1936, 7.1932, 7.1942, 7.1938, 7.1947, 7.1945, 7.1942, 7.1952, 7.1948, 7.1945, 7.1942, 7.1937, 7.1933, 7.193, 7.1927, 7.1937, 7.1933, 7.2008, 7.2004, 7.2013, 7.2009, 7.2018, 7.2003, 7.1998, 7.1994, 7.199, 7.1986, 7.1998, 7.2019, 7.2015, 7.2011, 7.1995, 7.1991, 7.1988, 7.1971, 7.1967, 7.1977, 7.1986, 7.1983, 7.1978, 7.1973, 7.1971, 7.1968, 7.1965, 7.196, 7.1957, 7.1953, 7.1949, 7.1945, 7.1954, 7.1964, 7.1962, 7.1958, 7.1954, 7.1949, 7.1959, 7.1957, 7.1952, 7.1949, 7.1946, 7.1944, 7.194, 7.1936, 7.1932, 7.1928, 7.1923, 7.1932, 7.1928, 7.1937, 7.1933, 7.1943, 7.1953, 7.195, 7.1946, 7.1944, 7.1942, 7.1938, 7.1957, 7.1956, 7.1951, 7.1949, 7.1945, 7.1955, 7.1951, 7.1947, 7.1942, 7.1937, 7.1932, 7.1941, 7.195, 7.1946, 7.1942, 7.1938, 7.1952, 7.195, 7.196, 7.1956, 7.1953, 7.1949, 7.196, 7.1956, 7.1952, 7.1949, 7.1958, 7.1954, 7.1951, 7.195, 7.1958, 7.1954, 7.195, 7.1947, 7.1944, 7.1939, 7.1935, 7.1931, 7.1927, 7.1936, 7.1932, 7.1928, 7.1925, 7.1926, 7.1922, 7.1918, 7.1914, 7.1923, 7.1932, 7.1928, 7.1924, 7.1922, 7.1932, 7.1928, 7.1936, 7.1933, 7.1942, 7.1939, 7.1947, 7.1944, 7.1952, 7.195, 7.1946, 7.1943, 7.194, 7.1938, 7.1947, 7.1943, 7.1939, 7.1935, 7.193, 7.1926, 7.1925, 7.1921, 7.1918, 7.1927, 7.1923, 7.1934, 7.1943, 7.1952, 7.196, 7.1955, 7.1951, 7.1948, 7.1943, 7.194, 7.1936, 7.1944, 7.1953, 7.1974, 7.197, 7.1965, 7.1962, 7.1957, 7.1953, 7.1948, 7.1944, 7.1941, 7.1948, 7.1958, 7.1954, 7.1951, 7.1947, 7.1942, 7.1938, 7.1933, 7.193, 7.1942, 7.1937, 7.1934, 7.1929, 7.1925, 7.1934, 7.1931, 7.1927, 7.1935, 7.1931, 7.1939, 7.1935, 7.1945, 7.1941, 7.1936, 7.1944, 7.194, 7.1949, 7.1945, 7.1955, 7.1977, 7.1973, 7.1982, 7.1978, 7.1974, 7.197, 7.1965, 7.1974, 7.1969, 7.1953, 7.1949, 7.1946, 7.1943, 7.1953, 7.1949, 7.1984, 7.199400000000001, 7.199, 7.1999, 7.1998, 7.1994, 7.1991, 7.2, 7.2009, 7.2007, 7.2026, 7.2023, 7.2032, 7.2029, 7.2037, 7.2047, 7.2043, 7.204, 7.2049, 7.2065, 7.2074, 7.2076, 7.2075, 7.2071, 7.2066, 7.2062, 7.2058, 7.2053, 7.2049, 7.2046, 7.2042, 7.2051, 7.2048, 7.2047, 7.2042, 7.204, 7.2037, 7.2035, 7.2034, 7.2031, 7.204, 7.2036, 7.2046, 7.2054, 7.2051, 7.2046, 7.2042, 7.2037, 7.2033, 7.2031, 7.2028, 7.2024, 7.2021, 7.2018, 7.202, 7.2016, 7.2012, 7.201, 7.2005, 7.2006, 7.2014, 7.2011, 7.201, 7.2007, 7.2004, 7.2, 7.2009, 7.2006, 7.2002, 7.1998, 7.1994, 7.1991, 7.1987, 7.1985, 7.1981, 7.1977, 7.1962, 7.197, 7.1967, 7.1963, 7.1972, 7.1968, 7.1968, 7.1964, 7.1991, 7.1987, 7.1996, 7.1994, 7.2004, 7.2, 7.1996, 7.2003, 7.1999, 7.1994, 7.199, 7.1987, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1965, 7.1962, 7.1969, 7.1965, 7.1961, 7.1958, 7.1954, 7.195, 7.1935, 7.1945, 7.1929, 7.1927, 7.1925, 7.1934, 7.193, 7.1926, 7.1922, 7.1917, 7.1925, 7.1933, 7.1928, 7.1925, 7.1933, 7.1934, 7.1931, 7.1927, 7.1923, 7.1931, 7.1927, 7.1937, 7.1921, 7.192, 7.1928, 7.1936, 7.1932, 7.194, 7.1937, 7.1942, 7.1939, 7.1937, 7.1934, 7.1931, 7.1927, 7.1923, 7.1932, 7.1956, 7.1952, 7.196, 7.1959, 7.1955, 7.1951, 7.1937, 7.1934, 7.193, 7.1927, 7.1929, 7.1925, 7.1934, 7.1932, 7.1934, 7.1932, 7.1928, 7.1936, 7.1935, 7.1932, 7.1928, 7.193, 7.1926, 7.1924, 7.1921, 7.1917, 7.1915, 7.1911, 7.1908, 7.1904, 7.1901, 7.1886, 7.1883, 7.1881, 7.1877, 7.1876, 7.1872, 7.187, 7.1879, 7.1889, 7.1897, 7.1905, 7.1903, 7.1901, 7.19, 7.1896, 7.191, 7.1907, 7.1923, 7.1919, 7.1917, 7.1914, 7.1923, 7.1918, 7.1914, 7.1911, 7.1907, 7.1903, 7.1888, 7.1884, 7.1882, 7.1879, 7.1875, 7.1871, 7.1867, 7.1865, 7.1861, 7.1859, 7.1855, 7.1851, 7.1847, 7.1845, 7.1843, 7.1851, 7.1847, 7.1844, 7.184, 7.1837, 7.1834, 7.1831, 7.1827, 7.1823, 7.1832, 7.1841, 7.1837, 7.1834, 7.183, 7.1827, 7.1835, 7.1832, 7.1841, 7.1837, 7.1835, 7.1831, 7.1839, 7.1837, 7.1835, 7.1832, 7.1828, 7.1824, 7.1834, 7.1854, 7.185, 7.1846, 7.1845, 7.1843, 7.1852, 7.1849, 7.1846, 7.1854, 7.1851, 7.1861, 7.1857, 7.1903, 7.1912, 7.1909, 7.193, 7.1927, 7.1924, 7.1948, 7.1957, 7.1967, 7.1964, 7.1973, 7.197, 7.1966, 7.1976, 7.198600000000001, 7.199600000000001, 7.1992, 7.1988, 7.1984, 7.1992, 7.1988, 7.1984, 7.1981, 7.199, 7.1988, 7.1986, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1964, 7.1961, 7.1958, 7.1955, 7.1963, 7.1959, 7.1967, 7.1964, 7.1973, 7.1969, 7.1977, 7.1973, 7.197, 7.1978, 7.1974, 7.1972, 7.1981, 7.1978, 7.1974, 7.1982, 7.2001, 7.1999, 7.1996, 7.1992, 7.1988, 7.1996, 7.2005, 7.2001, 7.1997, 7.1994, 7.1991, 7.1987, 7.1996, 7.1993, 7.2001, 7.1998, 7.1994, 7.199, 7.1998, 7.1994, 7.199, 7.1986, 7.1994, 7.2003, 7.202, 7.2018, 7.2014, 7.201, 7.2018, 7.2015, 7.2012, 7.2047, 7.2046, 7.2042, 7.2052, 7.2061, 7.2046, 7.2042, 7.2044, 7.2052, 7.2067, 7.2064, 7.206, 7.2057, 7.2053, 7.2049, 7.2057, 7.2056, 7.2052, 7.206, 7.2068, 7.2077, 7.2073, 7.207, 7.2078, 7.2075, 7.2072, 7.2069, 7.2065, 7.2061, 7.2057, 7.2053, 7.2049, 7.2049, 7.2049, 7.2046, 7.2042, 7.2038, 7.2046, 7.2042, 7.2038, 7.2035, 7.2031, 7.2027, 7.2023, 7.2019, 7.2015, 7.2013, 7.2011, 7.2007, 7.2004, 7.2, 7.1997, 7.1995, 7.1981, 7.1977, 7.1975, 7.2, 7.1997, 7.202, 7.2017, 7.2013, 7.2021, 7.2018, 7.2014, 7.201, 7.2006, 7.2014, 7.2011, 7.2009, 7.2005, 7.1994, 7.1992, 7.2002, 7.2023, 7.2009, 7.2008, 7.2005, 7.2014, 7.2011, 7.2008, 7.2016, 7.2024, 7.2032, 7.2028, 7.2024, 7.2032, 7.2029, 7.2026, 7.2035, 7.2031, 7.2027, 7.2024, 7.2021, 7.2007, 7.2014, 7.2022, 7.202, 7.2016, 7.2012, 7.202, 7.2016, 7.2024, 7.2021, 7.2018, 7.2015, 7.2024, 7.202, 7.2016, 7.2012, 7.2011, 7.2009, 7.2005, 7.2001, 7.1998, 7.1996, 7.2004, 7.2001, 7.1999, 7.1995, 7.1991, 7.1987, 7.1995, 7.2003, 7.2003, 7.2, 7.1997, 7.1995, 7.1991, 7.1989, 7.1988, 7.1984, 7.1992, 7.1989, 7.1985, 7.2008, 7.2004, 7.2012, 7.202, 7.2018, 7.2025, 7.2021, 7.2029, 7.2025, 7.2021, 7.2029, 7.2036, 7.2033, 7.2053, 7.2066, 7.2062, 7.2058, 7.2056, 7.2053, 7.2049, 7.2045, 7.2041, 7.2062, 7.2069, 7.2067, 7.2117, 7.2113, 7.211, 7.2097, 7.2093, 7.2093, 7.2102, 7.211, 7.2096, 7.2093, 7.2091, 7.2099, 7.2096, 7.2093, 7.2102, 7.2113, 7.211, 7.2106, 7.2114, 7.2112, 7.2121, 7.212, 7.2116, 7.2114, 7.211, 7.2107, 7.2105, 7.2124, 7.2121, 7.213, 7.2126, 7.2133, 7.2129, 7.2126, 7.2133, 7.2137, 7.2135, 7.2166, 7.2162, 7.2148, 7.2156, 7.2152, 7.2138, 7.2134, 7.213, 7.2185, 7.2193, 7.2189, 7.2197, 7.2216, 7.2214, 7.2212, 7.222, 7.2216, 7.2212, 7.2209, 7.2206, 7.2202, 7.2209, 7.2205, 7.2201, 7.2199, 7.2196, 7.2204, 7.2213, 7.2209, 7.2206, 7.2213, 7.221, 7.2207, 7.2204, 7.2201, 7.2197, 7.2194, 7.219, 7.2186, 7.219600000000001, 7.220600000000001, 7.2203, 7.22, 7.2208, 7.2216, 7.2224, 7.2221, 7.2217, 7.2214, 7.221, 7.2206, 7.2203, 7.2211, 7.2207, 7.2206, 7.2202, 7.2199, 7.2195, 7.2191, 7.2187, 7.2184, 7.218, 7.2179, 7.2188, 7.2184, 7.218, 7.2187, 7.2189, 7.2185, 7.2193, 7.219, 7.219, 7.2198, 7.2206, 7.2203, 7.2199, 7.2199, 7.2206, 7.2203, 7.22, 7.2197, 7.2193, 7.219, 7.2197, 7.2193, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.2182, 7.2179, 7.2165, 7.2162, 7.216, 7.2156, 7.2154, 7.2151, 7.2147, 7.2155, 7.2162, 7.2159, 7.2157, 7.2155, 7.2151, 7.2159, 7.2155, 7.2152, 7.2148, 7.2144, 7.2141, 7.2137, 7.2134, 7.2142, 7.2134, 7.2132, 7.2128, 7.2125, 7.2121, 7.2117, 7.212700000000001, 7.2123, 7.2121, 7.2131, 7.2138, 7.2134, 7.2131, 7.2139, 7.2146, 7.2142, 7.2141, 7.2128, 7.2124, 7.2122, 7.2119, 7.2116, 7.2115, 7.2114, 7.2122, 7.2118, 7.2114, 7.2121, 7.2128, 7.2125, 7.2133, 7.213, 7.2128, 7.2135, 7.2143, 7.2141, 7.2141, 7.2137, 7.2144, 7.2142, 7.214, 7.2149, 7.2145, 7.2142, 7.2142, 7.2141, 7.2137, 7.2157, 7.2155, 7.2162, 7.217, 7.2167, 7.2175, 7.2173, 7.2184, 7.218, 7.2178, 7.2174, 7.2177, 7.2193, 7.2201, 7.2198, 7.2204, 7.2206, 7.2204, 7.2203, 7.221, 7.2207, 7.2211, 7.2207, 7.2204, 7.22, 7.2208, 7.2204, 7.2201, 7.2198, 7.2194, 7.219, 7.2211, 7.2208, 7.2216, 7.2224, 7.2223, 7.2233, 7.2233, 7.223, 7.2237, 7.2235, 7.2242, 7.2239, 7.2235, 7.2232, 7.2228, 7.2227, 7.2224, 7.2224, 7.2237, 7.2234, 7.2243, 7.224, 7.2236, 7.2233, 7.2229, 7.2225, 7.2233, 7.2241, 7.2249, 7.2246, 7.2243, 7.2251, 7.2249, 7.2257, 7.2249, 7.2247, 7.2243, 7.2241, 7.2238, 7.2246, 7.2304, 7.2311, 7.2308, 7.2305, 7.2301, 7.23, 7.2297, 7.2305, 7.2301, 7.2309, 7.2305, 7.2313, 7.231, 7.2307, 7.2304, 7.2312, 7.2308, 7.2305, 7.2312, 7.231, 7.2306, 7.2302, 7.2298, 7.2294, 7.229, 7.2297, 7.2295, 7.2302, 7.2299, 7.2295, 7.2293, 7.229, 7.2286, 7.2304, 7.23, 7.2287, 7.2284, 7.2292, 7.2289, 7.2296, 7.2292, 7.23, 7.2296, 7.2303, 7.2299, 7.2306, 7.2302, 7.2298, 7.2294, 7.2303, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2286, 7.2284, 7.2281, 7.2268, 7.2264, 7.2261, 7.2258, 7.2265, 7.2262, 7.2259, 7.2257, 7.2255, 7.2253, 7.225, 7.2247, 7.2246, 7.2242, 7.2229, 7.2241, 7.2261, 7.2269, 7.2268, 7.2265, 7.2262, 7.2258, 7.2254, 7.225, 7.2258, 7.2256, 7.2252, 7.2248, 7.2244, 7.224, 7.2237, 7.2266, 7.2264, 7.2262, 7.2258, 7.2256, 7.2253, 7.225, 7.2257, 7.2254, 7.2252, 7.2259, 7.2266, 7.2264, 7.2271, 7.2269, 7.2276, 7.2263, 7.2259, 7.2257, 7.2254, 7.2251, 7.2251, 7.2278, 7.2275, 7.2285, 7.2281, 7.2278, 7.2286, 7.2305, 7.2301, 7.2313, 7.231, 7.2318, 7.2326, 7.2333, 7.234, 7.2336, 7.2332, 7.2339, 7.2346, 7.2342, 7.2338, 7.2338, 7.2334, 7.2331, 7.2328, 7.2325, 7.2323, 7.2319, 7.2327, 7.2324, 7.2322, 7.2318, 7.2324, 7.2322, 7.2318, 7.2314, 7.2311, 7.2307, 7.2304, 7.2301, 7.2311000000000005, 7.2308, 7.2305, 7.2302, 7.2299, 7.2297, 7.2296, 7.2323, 7.231, 7.2307, 7.2304, 7.2302, 7.2309, 7.2307, 7.2305, 7.2312, 7.232, 7.2317, 7.2307, 7.2304, 7.2302, 7.2299, 7.2307, 7.2304, 7.23, 7.2297, 7.2295, 7.2313, 7.2309, 7.2318, 7.2315, 7.2312, 7.231, 7.2307, 7.2316, 7.2313, 7.231, 7.2307, 7.2294, 7.2291, 7.2299, 7.2295, 7.2304, 7.2301, 7.2308, 7.2305, 7.2301, 7.2297, 7.2295, 7.2292, 7.2289, 7.2287, 7.2284, 7.2282, 7.229, 7.2286, 7.2295, 7.2293, 7.2291, 7.2299, 7.2295, 7.2292, 7.2299, 7.2306, 7.2304, 7.2305, 7.2312, 7.2308, 7.2304, 7.2301, 7.2297, 7.2294, 7.2301, 7.2308, 7.2306, 7.2304, 7.23, 7.2297, 7.2295, 7.2301, 7.2297, 7.2295, 7.2292, 7.2302, 7.231, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2327, 7.2324, 7.2321, 7.2318, 7.234, 7.2337, 7.2334, 7.233, 7.2327, 7.2324, 7.2322, 7.2329, 7.2325, 7.2333, 7.2329, 7.2326, 7.2323, 7.232, 7.2317, 7.2324, 7.232, 7.2316, 7.2312, 7.2308, 7.2304, 7.2311, 7.2308, 7.2315, 7.2311, 7.2312, 7.231, 7.2307, 7.2303, 7.23, 7.2298, 7.2295, 7.2292, 7.2279, 7.2286, 7.2293, 7.2291, 7.2288, 7.2276, 7.2273, 7.228, 7.2276, 7.2275, 7.2271, 7.2268, 7.2265, 7.2262, 7.2271, 7.2268, 7.2276, 7.2272, 7.2279, 7.2277, 7.2274, 7.2271, 7.2269, 7.2265, 7.2262, 7.2259, 7.2246, 7.2233, 7.224, 7.2237, 7.2234, 7.2231, 7.2227, 7.2238, 7.2226, 7.2222, 7.2219, 7.2215, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2216, 7.2213, 7.221, 7.2207, 7.2197, 7.2194, 7.2201, 7.2208, 7.2204, 7.2201, 7.22, 7.2197, 7.2214, 7.2203, 7.2199, 7.2186, 7.2182, 7.22, 7.2198, 7.2216, 7.2223, 7.222, 7.2216, 7.2213, 7.221, 7.2208, 7.2225, 7.2223, 7.2221, 7.2248, 7.2255, 7.2252, 7.225, 7.2247, 7.2244, 7.2251, 7.2258, 7.2265, 7.2264, 7.2271, 7.2267, 7.2274, 7.227, 7.2315, 7.2341, 7.2337, 7.2336, 7.2336, 7.2334, 7.2332, 7.2329, 7.2325, 7.2336, 7.2334, 7.2333, 7.233, 7.2336, 7.2334, 7.2331, 7.2338, 7.2344, 7.2341, 7.2348, 7.2364, 7.2361, 7.2358, 7.2367, 7.2364, 7.2361, 7.2357, 7.2374, 7.2371, 7.2369, 7.2368, 7.2366, 7.2372, 7.2368, 7.2364, 7.237, 7.2367, 7.2374, 7.2371, 7.2377, 7.2383, 7.238, 7.2388, 7.2384, 7.2391, 7.2398, 7.2405, 7.2402, 7.2409, 7.2407, 7.2404, 7.24, 7.2397, 7.2403, 7.2421, 7.2428, 7.2416, 7.2413, 7.241, 7.2407, 7.2404, 7.2411, 7.2418, 7.2424, 7.242, 7.2427, 7.2424, 7.243, 7.2436, 7.2442, 7.244, 7.2437, 7.2433, 7.243, 7.2427, 7.2424, 7.2421, 7.2428, 7.2445, 7.2441, 7.2438, 7.2435, 7.2432, 7.2429, 7.2427, 7.2437, 7.2434, 7.2431, 7.2437, 7.2445, 7.2442, 7.2439, 7.2436, 7.2446, 7.2443, 7.2439, 7.2436, 7.2432, 7.2429, 7.2436, 7.2432, 7.2449], '192.168.122.120': [8.0388, 6.694, 6.3781, 6.3054, 7.2142, 7.0815, 6.1872, 6.1121, 5.5454, 5.5245, 5.5086, 5.6229, 5.5926, 5.589, 5.5738, 7.1955, 7.0895, 6.9976, 6.9587, 6.8847, 6.8159, 7.8499, 7.9814, 7.8916, 7.8402, 7.7616, 7.7233, 7.8511, 7.7724, 7.871, 7.9638, 7.8814, 7.8164, 7.7423, 7.7387, 7.6841, 7.6183, 7.6968, 7.6626, 7.6101, 7.6734, 7.6205, 7.5804, 7.5255, 7.5992, 7.5609, 7.5171, 7.4904, 7.4482, 7.5096, 7.4846, 7.4538, 7.592, 7.5511, 7.5133, 7.4742, 7.4537, 7.4187, 7.3934, 7.3748, 7.3416, 7.3968, 7.3777, 7.3468, 7.415, 7.481, 7.5809, 7.5547, 7.5253, 7.5153, 7.4915, 7.4607, 7.4334, 7.4115, 7.3827, 7.3642, 7.3595, 7.2734, 7.2512, 7.2322, 7.2128, 7.2582, 7.2368, 7.237, 7.2136, 7.1917, 7.1712, 7.1494, 7.194, 7.2343, 7.2803, 7.2602, 7.3015, 7.3433, 7.328, 7.3109, 7.2936, 7.3362, 7.3227, 7.3028, 7.2841, 7.2642, 7.1987, 7.1826, 7.167, 7.1587, 7.1495, 7.0877, 7.0723, 7.0595, 7.098, 7.085, 7.2189, 7.2548, 7.4265, 7.4109, 7.4024, 7.5253, 7.5549, 7.5418, 7.5708, 7.5544, 7.5395, 7.5904, 7.5471, 7.5763, 7.5612, 7.5452, 7.575, 7.5599, 7.5423, 7.5285, 7.5161, 7.5063, 7.5331, 7.5169, 7.549, 7.5326, 7.5267, 7.5123, 7.498, 7.5253, 7.5116, 7.4964, 7.5413, 7.5651, 7.5544, 7.5414, 7.5402, 7.5278, 7.5143, 7.6544, 7.6397, 7.6257, 7.6792, 7.7398, 7.7282, 7.7169, 7.703, 7.6903, 7.6765, 7.6625, 7.6516, 7.672, 7.6891, 7.6766, 7.6652, 7.6842, 7.703, 7.6903, 7.6799, 7.6673, 7.6571, 7.6465, 7.6351, 7.6235, 7.6117, 7.6303, 7.6216, 7.64, 7.6304, 7.6219, 7.6102, 7.6011, 7.5883, 7.578, 7.5704, 7.5884, 7.5835, 7.6006, 7.59, 7.578, 7.5701, 7.5588, 7.5464, 7.5349, 7.5504, 7.541, 7.5372, 7.5538, 7.5426, 7.5344, 7.5259, 7.5158, 7.5059, 7.5207, 7.5117, 7.5042, 7.5009, 7.4955, 7.485, 7.4772, 7.493, 7.4832, 7.4768, 7.4833, 7.4738, 7.4874, 7.5028, 7.4946, 7.4846, 7.4762, 7.4926, 7.5214, 7.5136, 7.5056, 7.6185, 7.6124, 7.6032, 7.5928, 7.606, 7.5988, 7.5895, 7.6102, 7.624, 7.6163, 7.609, 7.606, 7.5989, 7.6117, 7.6022, 7.5943, 7.5886, 7.5605, 7.5526, 7.5679, 7.56, 7.5982, 7.5895, 7.602, 7.5945, 7.5863, 7.5776, 7.5904, 7.603, 7.5948, 7.5878, 7.6006, 7.6125, 7.6463, 7.6421, 7.653, 7.7142, 7.7074, 7.6983, 7.693, 7.6884, 7.6993, 7.6984, 7.6897, 7.683, 7.6791, 7.6733, 7.7463, 7.7395, 7.7308, 7.7222, 7.7141, 7.7119, 7.7048, 7.7168, 7.7102, 7.7014, 7.6932, 7.6875, 7.6636, 7.6557, 7.6665, 7.662, 7.6541, 7.6705, 7.6638, 7.6409, 7.6332, 7.6256, 7.6174, 7.6356, 7.6274, 7.6377, 7.652, 7.6626, 7.6546, 7.6472, 7.6408, 7.6354, 7.6291, 7.6401, 7.6325, 7.627, 7.6376, 7.6478, 7.657, 7.707, 7.7039, 7.6977, 7.691, 7.6838, 7.6817, 7.6745, 7.6676, 7.6608, 7.6549, 7.6478, 7.6409, 7.6361, 7.6302, 7.6263, 7.6198, 7.615, 7.6113, 7.6052, 7.6031, 7.6021, 7.6145, 7.609, 7.6167, 7.6101, 7.6045, 7.5995, 7.5941, 7.5876, 7.5968, 7.5922, 7.5867, 7.5832, 7.577, 7.5709, 7.5646, 7.5735, 7.5695, 7.5632, 7.5572, 7.5675, 7.561, 7.5603, 7.5554, 7.549, 7.5428, 7.5381, 7.5336, 7.5145, 7.5096, 7.5204, 7.5146, 7.5092, 7.506, 7.5136, 7.5233, 7.5173, 7.5113, 7.5089, 7.5038, 7.4997, 7.4947, 7.4896, 7.5059, 7.5144, 7.5084, 7.5038, 7.5121, 7.5064, 7.5023, 7.5225, 7.5176, 7.526, 7.5236, 7.5324, 7.5311, 7.5259, 7.5224, 7.531, 7.5263, 7.5356, 7.5314, 7.5782, 7.5867, 7.5824, 7.5906, 7.5741, 7.5696, 7.5638, 7.5581, 7.5527, 7.5535, 7.5487, 7.5318, 7.5273, 7.5233, 7.5181, 7.515, 7.5484, 7.583, 7.5786, 7.574, 7.5685, 7.5646, 7.5605, 7.5575, 7.554, 7.549, 7.5656, 7.5733, 7.5862, 7.6094, 7.6172, 7.6121, 7.6065, 7.601, 7.5958, 7.5909, 7.5988, 7.5944, 7.589, 7.585, 7.5801, 7.5751, 7.5714, 7.5684, 7.5686, 7.5646, 7.5644, 7.561, 7.5597, 7.556, 7.5749, 7.5713, 7.5666, 7.5614, 7.5702, 7.5666, 7.5629, 7.5599, 7.5672, 7.5633, 7.5585, 7.5543, 7.5388, 7.5339, 7.5292, 7.5355, 7.5306, 7.527, 7.5261, 7.5335, 7.5309, 7.5271, 7.5225, 7.5078, 7.5045, 7.5118, 7.5267, 7.5235, 7.5309, 7.5279, 7.5231, 7.5185, 7.5141, 7.5206, 7.5161, 7.5231, 7.5301, 7.5262, 7.5233, 7.52, 7.5155, 7.5118, 7.5078, 7.5155, 7.5116, 7.5194, 7.5156, 7.5115, 7.5308, 7.5368, 7.5462, 7.5424, 7.5403, 7.5369, 7.534, 7.5405, 7.5466, 7.5433, 7.5398, 7.5355, 7.5313, 7.5321, 7.5301, 7.5259, 7.5217, 7.5187, 7.5158, 7.5126, 7.5102, 7.5062, 7.5035, 7.4998, 7.497, 7.5034, 7.5005, 7.4967, 7.4946, 7.4909, 7.4875, 7.4845, 7.4814, 7.4781, 7.4742, 7.4717, 7.4681, 7.4642, 7.4612, 7.4574, 7.4542, 7.4509, 7.4477, 7.4439, 7.4403, 7.438, 7.4442, 7.4404, 7.4364, 7.4342, 7.4314, 7.4276, 7.424, 7.4203, 7.4165, 7.4135, 7.4108, 7.4179, 7.4144, 7.4605, 7.4581, 7.455, 7.4513, 7.4491, 7.4466, 7.4712, 7.4689, 7.466, 7.4625, 7.4591, 7.4554, 7.4519, 7.4496, 7.4457, 7.4435, 7.4398, 7.4377, 7.4342, 7.4406, 7.4382, 7.4358, 7.4327, 7.4388, 7.4462, 7.452, 7.4486, 7.4561, 7.4621, 7.468, 7.4644, 7.4613, 7.4579, 7.4633, 7.4606, 7.4587, 7.4576, 7.4572, 7.4535, 7.4584, 7.4564, 7.4534, 7.4524, 7.4494, 7.4461, 7.4521, 7.4488, 7.4525, 7.4489, 7.4548, 7.4605, 7.4799, 7.4763, 7.4729, 7.4693, 7.476, 7.4731, 7.4701, 7.4666, 7.464, 7.4608, 7.4664, 7.4632, 7.46, 7.4574, 7.4541, 7.4514, 7.448, 7.4454, 7.451, 7.44, 7.4368, 7.4423, 7.4425, 7.4481, 7.4698, 7.4759, 7.473, 7.4778, 7.4743, 7.4709, 7.4673, 7.4721, 7.4686, 7.4658, 7.4709, 7.4698, 7.4676, 7.4648, 7.4623, 7.4516, 7.4577, 7.4628, 7.4681, 7.4737, 7.471, 7.4688, 7.4661, 7.4632, 7.4605, 7.4656, 7.47, 7.4667, 7.4646, 7.4621, 7.4593, 7.4566, 7.4461, 7.4434, 7.433, 7.4308, 7.4363, 7.4351, 7.4325, 7.4315, 7.4374, 7.4427, 7.4479, 7.4454, 7.4461, 7.4919, 7.4979, 7.4964, 7.4951, 7.4927, 7.4894, 7.4944, 7.4922, 7.4903, 7.4958, 7.4932, 7.4902, 7.487, 7.4841, 7.4818, 7.4788, 7.4838, 7.4884, 7.4867, 7.4841, 7.4829, 7.4876, 7.4845, 7.4814, 7.48, 7.4781, 7.4827, 7.4798, 7.4846, 7.489, 7.4937, 7.4904, 7.4878, 7.4849, 7.4885, 7.4857, 7.4826, 7.4809, 7.4861, 7.4831, 7.48, 7.4776, 7.476, 7.4741, 7.4722, 7.4712, 7.4686, 7.4658, 7.4631, 7.4603, 7.4652, 7.4622, 7.4596, 7.4569, 7.4553, 7.4528, 7.4499, 7.4547, 7.4525, 7.45, 7.4473, 7.4449, 7.4421, 7.4394, 7.4367, 7.4341, 7.4326, 7.4299, 7.4295, 7.4341, 7.4315, 7.4295, 7.4269, 7.4242, 7.422, 7.4201, 7.4172, 7.4151, 7.4209, 7.4182, 7.4159, 7.421, 7.4186, 7.4229, 7.4203, 7.4176, 7.4153, 7.4128, 7.4107, 7.4086, 7.4129, 7.418, 7.4228, 7.421, 7.4198, 7.417, 7.418, 7.4226, 7.4203, 7.4249, 7.4235, 7.4219, 7.4267, 7.433, 7.4339, 7.4364, 7.4406, 7.4398, 7.4442, 7.4425, 7.4399, 7.4373, 7.4416, 7.4394, 7.4368, 7.4342, 7.4383, 7.4355, 7.4332, 7.4307, 7.4374, 7.435, 7.4323, 7.4308, 7.4284, 7.4256, 7.4233, 7.4209, 7.4196, 7.4241, 7.4608, 7.453, 7.4504, 7.4479, 7.4517, 7.449, 7.4477, 7.4516, 7.4554, 7.4592, 7.4578, 7.4778, 7.4758, 7.4748, 7.4722, 7.4697, 7.4672, 7.4651, 7.4626, 7.4666, 7.4644, 7.4619, 7.466, 7.4641, 7.4614, 7.4721, 7.4694, 7.4612, 7.4528, 7.4502, 7.4477, 7.4462, 7.4704, 7.4742, 7.472, 7.4699, 7.4678, 7.4659, 7.4638, 7.4613, 7.4588, 7.4638, 7.4616, 7.459, 7.4571, 7.4679, 7.4658, 7.4699, 7.4675, 7.4651, 7.4626, 7.4612, 7.4597, 7.4594, 7.4513, 7.4495, 7.447, 7.4446, 7.4483, 7.4402, 7.4438, 7.4418, 7.4405, 7.4382, 7.4421, 7.4458, 7.4497, 7.4472, 7.451, 7.4548, 7.4525, 7.4604, 7.464, 7.4616, 7.4597, 7.4573, 7.4613, 7.46, 7.4579, 7.4557, 7.4605, 7.4583, 7.4593, 7.4569, 7.4552, 7.4591, 7.458, 7.4618, 7.4661, 7.4707, 7.4684, 7.4667, 7.4647, 7.463, 7.4667, 7.4594, 7.4577, 7.4562, 7.454, 7.4517, 7.4494, 7.4483, 7.4474, 7.4532, 7.4511, 7.4488, 7.447, 7.445, 7.4426, 7.4526, 7.4508, 7.4544, 7.4528, 7.4687, 7.4665, 7.4701, 7.468, 7.4662, 7.4645, 7.4623, 7.4601, 7.4596, 7.4576, 7.4619, 7.4596, 7.4573, 7.4551, 7.4585, 7.4568, 7.4609, 7.4586, 7.457, 7.455, 7.4615, 7.4557, 7.4593, 7.457, 7.4718, 7.4696, 7.4682, 7.4667, 7.4649, 7.4631, 7.4565, 7.4599, 7.4584, 7.4561, 7.4594, 7.4523, 7.4519, 7.4555, 7.4591, 7.4648, 7.4627, 7.4605, 7.4587, 7.4566, 7.4545, 7.4592, 7.4629, 7.4664, 7.4765, 7.4751, 7.4679, 7.4663, 7.4641, 7.4672, 7.4654, 7.4643, 7.4675, 7.4707, 7.4685, 7.472, 7.4702, 7.4681, 7.4661, 7.4639, 7.4616, 7.4595, 7.4626, 7.4613, 7.4697, 7.4685, 7.4715, 7.47, 7.4737, 7.483, 7.4817, 7.4799, 7.4777, 7.4767, 7.476, 7.4739, 7.4915, 7.4899, 7.4879, 7.4864, 7.4847, 7.486, 7.4845, 7.4836, 7.4819, 7.4838, 7.482, 7.48, 7.4785, 7.4825, 7.4768, 7.4753, 7.4741, 7.4774, 7.4754, 7.4811, 7.4791, 7.4772, 7.4751, 7.4736, 7.4717, 7.4697, 7.4676, 7.4667, 7.4652, 7.4631, 7.4662, 7.4651, 7.4636, 7.457, 7.4604, 7.4584, 7.4565, 7.4545, 7.4526, 7.4513, 7.4545, 7.4527, 7.4557, 7.4535, 7.4514, 7.4507, 7.4487, 7.4522, 7.4504, 7.4484, 7.447, 7.4501, 7.4532, 7.4516, 7.4502, 7.4487, 7.4521, 7.451, 7.4495, 7.4491, 7.4525, 7.4558, 7.4587, 7.4621, 7.4602, 7.4586, 7.4565, 7.4551, 7.4584, 7.4572, 7.4557, 7.4543, 7.4525, 7.4556, 7.4539, 7.452, 7.4507, 7.4535, 7.4563, 7.4546, 7.4528, 7.4511, 7.4502, 7.449, 7.4521, 7.4507, 7.4488, 7.4474, 7.4462, 7.4603, 7.4583, 7.4619, 7.4606, 7.4646, 7.4632, 7.462, 7.4609, 7.4599, 7.4538, 7.4521, 7.4517, 7.4514, 7.4501, 7.4487, 7.4473, 7.4459, 7.4488, 7.4476, 7.4457, 7.4443, 7.4431, 7.4411, 7.4391, 7.4375, 7.4412, 7.4395, 7.4395, 7.438, 7.4405, 7.4417, 7.4451, 7.4435, 7.4416, 7.4446, 7.4526, 7.4508, 7.4543, 7.4577, 7.4559, 7.4543, 7.4529, 7.451, 7.4492, 7.4474, 7.4459, 7.4443, 7.4426, 7.4461, 7.4444, 7.4475, 7.4457, 7.4442, 7.4471, 7.4458, 7.4399, 7.4384, 7.4373, 7.436, 7.436, 7.4559, 7.4548, 7.4529, 7.4514, 7.4459, 7.4446, 7.4473, 7.4458, 7.4443, 7.4436, 7.442, 7.4402, 7.4383, 7.4364, 7.4394, 7.4376, 7.4358, 7.4341, 7.4338, 7.432, 7.4308, 7.429, 7.4272, 7.4214, 7.4195, 7.4224, 7.4219, 7.4201, 7.4183, 7.4166, 7.4156, 7.4141, 7.4141, 7.4133, 7.416, 7.4102, 7.4131, 7.4114, 7.4103, 7.4093, 7.4081, 7.4068, 7.4097, 7.408, 7.4023, 7.4013, 7.4001, 7.4027, 7.4013, 7.3995, 7.3985, 7.3969, 7.3996, 7.4024, 7.4017, 7.3999, 7.3982, 7.397, 7.396, 7.3943, 7.3926, 7.3912, 7.3944, 7.3971, 7.3956, 7.3941, 7.3971, 7.3956, 7.3947, 7.3932, 7.3917, 7.3949, 7.3943, 7.3931, 7.3914, 7.3901, 7.3929, 7.3913, 7.3898, 7.3881, 7.3864, 7.3853, 7.3836, 7.3782, 7.377, 7.3759, 7.3787, 7.3816, 7.3805, 7.3801, 7.3786, 7.3771, 7.3801, 7.3787, 7.3818, 7.382, 7.3852, 7.3838, 7.3827, 7.3809, 7.3793, 7.3781, 7.3769, 7.38, 7.3748, 7.3737, 7.3727, 7.3713, 7.3738, 7.3728, 7.3716, 7.3699, 7.3685, 7.3712, 7.3696, 7.3688, 7.3676, 7.3661, 7.3688, 7.3676, 7.3702, 7.3647, 7.3633, 7.3659, 7.3611, 7.36, 7.3585, 7.3571, 7.3555, 7.3544, 7.3597, 7.3599, 7.3585, 7.3572, 7.3557, 7.3546, 7.353, 7.3518, 7.3507, 7.3491, 7.3484, 7.3481, 7.3468, 7.3493, 7.3484, 7.3474, 7.346, 7.3486, 7.347, 7.3456, 7.3482, 7.3472, 7.3499, 7.3569, 7.3558, 7.3545, 7.353, 7.3515, 7.353, 7.3557, 7.3544, 7.3492, 7.3478, 7.3462, 7.3489, 7.3474, 7.3459, 7.3454, 7.3439, 7.3438, 7.3423, 7.3417, 7.3405, 7.341, 7.3407, 7.342, 7.3407, 7.3396, 7.3388, 7.3471, 7.346, 7.3446, 7.3408, 7.3369, 7.3355, 7.3341, 7.3351, 7.3337, 7.3323, 7.3307, 7.3334, 7.3326, 7.3313, 7.3298, 7.3293, 7.3286, 7.3394, 7.3344, 7.333, 7.332, 7.3314, 7.3299, 7.3292, 7.3278, 7.3268, 7.3258, 7.3243, 7.3287, 7.3272, 7.3258, 7.3289, 7.332, 7.3347, 7.3334, 7.3324, 7.3276, 7.3373, 7.3358, 7.3343, 7.3328, 7.3318, 7.3306, 7.3296, 7.3384, 7.3376, 7.3367, 7.3319, 7.3317, 7.3308, 7.3294, 7.3287, 7.3278, 7.3309, 7.3297, 7.3282, 7.3268, 7.3258, 7.3244, 7.3315, 7.3366, 7.3393, 7.3382, 7.3389, 7.3455, 7.3445, 7.3433, 7.3426, 7.3412, 7.3403, 7.3401, 7.3387, 7.3384, 7.3372, 7.336, 7.3353, 7.3346, 7.3333, 7.3319, 7.3313, 7.33, 7.329, 7.3316, 7.3306, 7.3292, 7.332, 7.3348, 7.3335, 7.3324, 7.331, 7.3311, 7.3297, 7.3284, 7.3274, 7.3261, 7.3283, 7.3271, 7.326, 7.3287, 7.3429, 7.3456, 7.3444, 7.3474, 7.3464, 7.3469, 7.3459, 7.3493, 7.3482, 7.3469, 7.3456, 7.3448, 7.3443, 7.3432, 7.3419, 7.3448, 7.3435, 7.342, 7.3444, 7.3435, 7.3466, 7.3456, 7.3444, 7.3434, 7.3455, 7.3448, 7.3441, 7.3431, 7.3453, 7.3478, 7.3466, 7.3459, 7.3448, 7.3441, 7.3426, 7.3427, 7.345, 7.3438, 7.3424, 7.341, 7.3432, 7.342, 7.3409, 7.3396, 7.3417, 7.3406, 7.3396, 7.3387, 7.3412, 7.3439, 7.3427, 7.3418, 7.3405, 7.3469, 7.3462, 7.345, 7.3438, 7.3461, 7.3448, 7.3436, 7.3425, 7.3411, 7.3436, 7.3428, 7.3452, 7.3476, 7.3488, 7.3482, 7.347, 7.3496, 7.3483, 7.347, 7.3457, 7.3458, 7.3448, 7.3435, 7.3465, 7.3451, 7.3438, 7.3439, 7.3464, 7.3456, 7.3447, 7.3441, 7.3428, 7.3452, 7.3451, 7.3439, 7.3431, 7.3418, 7.3405, 7.3393, 7.3417, 7.3444, 7.3437, 7.3426, 7.3416, 7.3406, 7.3396, 7.3394, 7.3416, 7.3404, 7.3397, 7.3389, 7.3377, 7.3371, 7.3366, 7.3357, 7.3379, 7.3437, 7.3463, 7.3453, 7.348, 7.3468, 7.346, 7.3483, 7.3471, 7.3494, 7.3484, 7.3475, 7.35, 7.3487, 7.3473, 7.3465, 7.3452, 7.3438, 7.3428, 7.3418, 7.3405, 7.3427, 7.3449, 7.3474, 7.3463, 7.3455, 7.3444, 7.3435, 7.3423, 7.3414, 7.3437, 7.3424, 7.3421, 7.3408, 7.3399, 7.3422, 7.3411, 7.3404, 7.3424, 7.3412, 7.3401, 7.3394, 7.3403, 7.3395, 7.3418, 7.3439, 7.3427, 7.3427, 7.3443, 7.343, 7.3452, 7.3473, 7.3477, 7.3464, 7.3489, 7.3512, 7.3536, 7.3526, 7.3618, 7.3605, 7.3591, 7.3614, 7.3602, 7.3593, 7.358, 7.3568, 7.3589, 7.358, 7.3574, 7.3563, 7.3587, 7.3581, 7.3568, 7.3555, 7.3546, 7.3568, 7.3563, 7.3587, 7.3607, 7.3609, 7.3629, 7.3588, 7.3581, 7.3569, 7.3558, 7.3517, 7.3544, 7.3566, 7.3555, 7.3545, 7.3535, 7.3523, 7.3539, 7.3527, 7.3515, 7.3503, 7.3491, 7.3481, 7.3469, 7.3456, 7.3445, 7.344, 7.3428, 7.3417, 7.3406, 7.3427, 7.3414, 7.3411, 7.3399, 7.3394, 7.3382, 7.3372, 7.3363, 7.3353, 7.3341, 7.3336, 7.336, 7.3349, 7.3342, 7.3331, 7.332, 7.3323, 7.3314, 7.3336, 7.3325, 7.3346, 7.3335, 7.3327, 7.3316, 7.3276, 7.3265, 7.3253, 7.3241, 7.3234, 7.3222, 7.3214, 7.3208, 7.3203, 7.3191, 7.318, 7.3172, 7.3185, 7.3177, 7.317, 7.3189, 7.318, 7.3172, 7.3162, 7.3152, 7.3143, 7.3131, 7.3119, 7.3107, 7.3095, 7.3086, 7.3074, 7.3062, 7.3087, 7.3108, 7.3108, 7.3099, 7.3087, 7.3077, 7.3073, 7.3065, 7.3054, 7.3052, 7.3053, 7.3042, 7.303, 7.3019, 7.3008, 7.304, 7.3038, 7.3091, 7.3082, 7.307, 7.3062, 7.3078, 7.3066, 7.3057, 7.312, 7.3195, 7.3183, 7.3202, 7.3192, 7.3185, 7.3174, 7.3165, 7.3217, 7.3206, 7.3195, 7.3254, 7.3243, 7.3263, 7.3285, 7.3277, 7.3265, 7.3257, 7.3279, 7.3269, 7.3258, 7.3246, 7.3351, 7.334, 7.3331, 7.3325, 7.3346, 7.3337, 7.3328, 7.3372, 7.3361, 7.3381, 7.337, 7.3433, 7.3422, 7.3414, 7.3402, 7.3432, 7.3452, 7.344, 7.3464, 7.3455, 7.3481, 7.3475, 7.3464, 7.3487, 7.3476, 7.3468, 7.3465, 7.3456, 7.3447, 7.3439, 7.3429, 7.3454, 7.3444, 7.3434, 7.3423, 7.3387, 7.3376, 7.3368, 7.336, 7.3349, 7.3337, 7.3333, 7.3327, 7.3316, 7.3434, 7.3422, 7.3414, 7.341, 7.3399, 7.3392, 7.338, 7.337, 7.3358, 7.3349, 7.3338, 7.334, 7.3334, 7.3384, 7.3376, 7.3365, 7.3354, 7.3344, 7.3334, 7.3329, 7.332, 7.3331, 7.3351, 7.334, 7.333, 7.3326, 7.3317, 7.3308, 7.3299, 7.3288, 7.3279, 7.3268, 7.326, 7.3256, 7.3307, 7.3302, 7.3292, 7.3317, 7.3307, 7.33, 7.3295, 7.3289, 7.3278, 7.347, 7.349, 7.3485, 7.3475, 7.3463, 7.3482, 7.3473, 7.3462, 7.3453, 7.3444, 7.3476, 7.347, 7.3459, 7.3448, 7.3439, 7.3428, 7.3416, 7.3434, 7.3427, 7.3415, 7.3406, 7.3395, 7.3412, 7.3414, 7.3441, 7.3432, 7.3422, 7.3411, 7.3401, 7.3394, 7.3386, 7.3375, 7.3394, 7.3411, 7.3404, 7.3378, 7.3376, 7.3369, 7.3522, 7.3512, 7.3509, 7.3502, 7.3521, 7.354, 7.3529, 7.352, 7.3539, 7.3557, 7.3549, 7.3515, 7.3709, 7.3734, 7.3727, 7.3717, 7.3737, 7.3755, 7.3748, 7.3745, 7.3763, 7.3786, 7.378, 7.3799, 7.3788, 7.3782, 7.3775, 7.3793, 7.3782, 7.3776, 7.377, 7.3801, 7.3794, 7.3785, 7.3777, 7.3769, 7.3758, 7.3751, 7.3742, 7.3731, 7.3724, 7.3716, 7.3705, 7.3746, 7.3767, 7.3757, 7.3777, 7.3797, 7.379, 7.3837, 7.3854, 7.3845, 7.3839, 7.3829, 7.3818, 7.3808, 7.3798, 7.3817, 7.3807, 7.3797, 7.3786, 7.3815, 7.3833, 7.3852, 7.3842, 7.3832, 7.3823, 7.3845, 7.3834, 7.38, 7.3793, 7.3827, 7.3849, 7.3867, 7.3863, 7.3881, 7.3873, 7.3865, 7.3865, 7.3857, 7.3847, 7.3837, 7.3827, 7.3818, 7.3824, 7.3791, 7.3811, 7.3829, 7.3821, 7.3811, 7.3803, 7.3792, 7.3782, 7.3772, 7.3761, 7.3751, 7.3746, 7.3738, 7.3754, 7.3751, 7.3741, 7.373, 7.3722, 7.3767, 7.377, 7.3765, 7.3784, 7.3787, 7.383, 7.3848, 7.384, 7.383, 7.3846, 7.3837, 7.3828, 7.3829, 7.3819, 7.3837, 7.3853, 7.3855, 7.3873, 7.3942, 7.3932, 7.3921, 7.391, 7.3902, 7.3893, 7.3885, 7.3959, 7.3924, 7.3942, 7.3932, 7.3948, 7.3964, 7.3984, 7.4002, 7.3992, 7.3958, 7.3976, 7.3994, 7.3987, 7.4004, 7.4048, 7.4071, 7.4087, 7.4104, 7.4093, 7.4083, 7.4104, 7.4121, 7.4112, 7.4127, 7.4142, 7.4132, 7.4148, 7.419, 7.4182, 7.4198, 7.419, 7.4182, 7.4198, 7.4216, 7.4208, 7.4198, 7.4188, 7.418, 7.417, 7.4162, 7.4152, 7.4145, 7.4166, 7.4156, 7.4146, 7.4162, 7.4206, 7.4209, 7.4205, 7.4194, 7.4203, 7.4237, 7.4241, 7.4235, 7.4225, 7.4242, 7.4232, 7.4223, 7.4216, 7.4206, 7.4201, 7.4191, 7.4184, 7.4177, 7.4172, 7.4167, 7.4186, 7.418, 7.4171, 7.4164, 7.416, 7.4152, 7.417, 7.4185, 7.4175, 7.4192, 7.4207, 7.42, 7.4216, 7.4206, 7.4196, 7.4186, 7.4203, 7.4195, 7.419, 7.4187, 7.4216, 7.4206, 7.4197, 7.4189, 7.4184, 7.4177, 7.4167, 7.4158, 7.4148, 7.4138, 7.4161, 7.4155, 7.4172, 7.4164, 7.4156, 7.4173, 7.419, 7.4207, 7.4223, 7.4214, 7.4203, 7.421, 7.4202, 7.4194, 7.4186, 7.4202, 7.4192, 7.4182, 7.4173, 7.4192, 7.4194, 7.4186, 7.4178, 7.4196, 7.4188, 7.4181, 7.4214, 7.4245, 7.4261, 7.4277, 7.4246, 7.4214, 7.421, 7.4225, 7.424, 7.423, 7.4221, 7.4212, 7.4202, 7.4222, 7.424, 7.423, 7.4246, 7.424, 7.4256, 7.4248, 7.4241, 7.4233, 7.4223, 7.4216, 7.4209, 7.4201, 7.4234, 7.4227, 7.4281, 7.4308, 7.4301, 7.4302, 7.4276, 7.4268, 7.4288, 7.4357, 7.4349, 7.434, 7.4356, 7.4371, 7.4409, 7.4401, 7.4416, 7.4409, 7.4434, 7.4429, 7.442, 7.4458, 7.4451, 7.4492, 7.4483, 7.4452, 7.4444, 7.4435, 7.445, 7.4466, 7.4482, 7.4475, 7.4492, 7.4483, 7.4473, 7.4466, 7.4459, 7.4473, 7.4488, 7.4479, 7.4469, 7.4485, 7.4476, 7.4466, 7.446, 7.4451, 7.4442, 7.4432, 7.4424, 7.4414, 7.4408, 7.4399, 7.4392, 7.4382, 7.4372, 7.4388, 7.4404, 7.4421, 7.4411, 7.4429, 7.4421, 7.4414, 7.4432, 7.4425, 7.4422, 7.4416, 7.4406, 7.4397, 7.4388, 7.4379, 7.437, 7.4386, 7.4404, 7.442, 7.441, 7.4404, 7.4394, 7.4385, 7.4376, 7.4367, 7.4382, 7.4397, 7.439, 7.436, 7.4354, 7.4354, 7.4363, 7.4378, 7.4372, 7.4365, 7.4383, 7.4374, 7.4373, 7.4366, 7.438, 7.4372, 7.4364, 7.4357, 7.4391, 7.4382, 7.4378, 7.4385, 7.4401, 7.4392, 7.4406, 7.4401, 7.4416, 7.4407, 7.4402, 7.4372, 7.4364, 7.4354, 7.4345, 7.436, 7.4352, 7.4367, 7.4357, 7.4351, 7.4366, 7.4356, 7.437, 7.434, 7.4354, 7.4348, 7.4342, 7.4359, 7.4351, 7.4343, 7.434, 7.4337, 7.433, 7.4324, 7.4337, 7.4331, 7.4326, 7.4318, 7.431, 7.4325, 7.4316, 7.4306, 7.4299, 7.4292, 7.4286, 7.4278, 7.4269, 7.4302, 7.4293, 7.4286, 7.4301, 7.4315, 7.4307, 7.4298, 7.4314, 7.433, 7.4302, 7.4317, 7.4308, 7.4302, 7.4317, 7.4309, 7.4304, 7.4296, 7.4287, 7.4279, 7.4271, 7.4262, 7.4254, 7.4247, 7.426, 7.4252, 7.4244, 7.4238, 7.4233, 7.4224, 7.4242, 7.4257, 7.4249, 7.4241, 7.4256, 7.4248, 7.4241, 7.4232, 7.4225, 7.424, 7.4232, 7.4249, 7.4265, 7.4257, 7.4249, 7.4263, 7.4256, 7.4248, 7.424, 7.4234, 7.4228, 7.4222, 7.4216, 7.4208, 7.4202, 7.4172, 7.4169, 7.416, 7.4152, 7.4144, 7.4137, 7.4161, 7.4153, 7.4145, 7.4139, 7.4156, 7.4163, 7.4154, 7.4145, 7.4162, 7.4155, 7.4146, 7.4161, 7.4175, 7.4168, 7.4183, 7.4195, 7.421, 7.4202, 7.4194, 7.4211, 7.4225, 7.4218, 7.4234, 7.4235, 7.4228, 7.4242, 7.4256, 7.427, 7.4261, 7.4255, 7.4273, 7.4288, 7.4302, 7.4293, 7.4287, 7.4323, 7.4315, 7.4307, 7.4342, 7.4334, 7.4348, 7.434, 7.4331, 7.4323, 7.4315, 7.431, 7.4303, 7.4296, 7.4287, 7.4302, 7.4317, 7.4309, 7.43, 7.4272, 7.4264, 7.4277, 7.4269, 7.4282, 7.4274, 7.4268, 7.4262, 7.4276, 7.429, 7.4281, 7.4272, 7.4287, 7.4282, 7.4295, 7.4307, 7.4347, 7.4349, 7.4363, 7.4357, 7.4349, 7.434, 7.4334, 7.4326, 7.4321, 7.4314, 7.4307, 7.4321, 7.4314, 7.4309, 7.4324, 7.4317, 7.4309, 7.4329, 7.4321, 7.4312, 7.4306, 7.4427, 7.4419, 7.441, 7.4402, 7.4416, 7.441, 7.4402, 7.4396, 7.4393, 7.4404, 7.4398, 7.4389, 7.4381, 7.4373, 7.4366, 7.4358, 7.438, 7.4374, 7.4367, 7.4358, 7.4372, 7.4384, 7.4379, 7.4372, 7.4367, 7.436, 7.4355, 7.4397, 7.439, 7.4382, 7.4374, 7.4346, 7.4337, 7.4354, 7.4372, 7.4364, 7.4356, 7.4352, 7.4347, 7.4343, 7.4358, 7.4372, 7.4365, 7.4358, 7.4349, 7.4342, 7.4336, 7.4328, 7.4323, 7.4314, 7.4309, 7.4302, 7.4295, 7.4286, 7.43, 7.43, 7.4272, 7.4264, 7.4256, 7.425, 7.427, 7.4285, 7.4276, 7.4268, 7.4314, 7.4344, 7.4336, 7.4328, 7.432, 7.4357, 7.4349, 7.4341, 7.4352, 7.4396, 7.441, 7.4425, 7.4418, 7.441, 7.4404, 7.4395, 7.4419, 7.4414, 7.4427, 7.4431, 7.4446, 7.4463, 7.4477, 7.4469, 7.446, 7.4482, 7.4513, 7.4485, 7.4478, 7.4495, 7.4488, 7.4481, 7.4473, 7.4467, 7.4459, 7.4451, 7.447, 7.4462, 7.4455, 7.4448, 7.4443, 7.4436, 7.4428, 7.442, 7.4432, 7.4426, 7.4419, 7.4417, 7.4416, 7.441, 7.4402, 7.4395, 7.4407, 7.4444, 7.444, 7.4432, 7.4424, 7.442, 7.4411, 7.4427, 7.4423, 7.4438, 7.4432, 7.4425, 7.4419, 7.4411, 7.4424, 7.4418, 7.4484, 7.4498, 7.4511, 7.4503, 7.45, 7.4493, 7.4485, 7.4499, 7.4491, 7.4504, 7.4495, 7.4489, 7.4481, 7.4494, 7.4488, 7.4481, 7.4473, 7.4466, 7.4458, 7.445, 7.4424, 7.4438, 7.4433, 7.4427, 7.442, 7.4433, 7.4427, 7.4423, 7.4416, 7.4409, 7.4403, 7.4395, 7.4389, 7.4381, 7.4373, 7.4388, 7.4381, 7.4376, 7.437, 7.4362, 7.4355, 7.4347, 7.4339, 7.4332, 7.4324, 7.4302, 7.4294, 7.4307, 7.4321, 7.4314, 7.4311, 7.4327, 7.432, 7.4334, 7.4327, 7.4325, 7.4339, 7.4333, 7.4326, 7.4319, 7.4333, 7.4346, 7.4339, 7.4333, 7.4327, 7.4326, 7.4319, 7.4312, 7.4286, 7.428, 7.4273, 7.4269, 7.4261, 7.4274, 7.4266, 7.4258, 7.425, 7.4243, 7.4235, 7.4228, 7.4221, 7.4215, 7.4207, 7.4199, 7.4193, 7.4205, 7.4216, 7.4208, 7.4201, 7.4214, 7.4208, 7.4222, 7.4216, 7.4211, 7.4204, 7.4196, 7.4189, 7.4186, 7.4181, 7.4176, 7.4168, 7.4165, 7.4158, 7.415, 7.4162, 7.4154, 7.4148, 7.414, 7.4132, 7.4144, 7.4157, 7.4169, 7.4163, 7.4176, 7.4188, 7.4183, 7.4177, 7.4169, 7.4163, 7.4156, 7.4149, 7.416, 7.4153, 7.4166, 7.416, 7.4136, 7.4129, 7.4142, 7.4155, 7.4154, 7.4147, 7.4139, 7.4152, 7.4144, 7.4136, 7.4131, 7.4124, 7.4117, 7.4131, 7.4124, 7.4136, 7.4139, 7.4131, 7.4125, 7.4118, 7.4131, 7.4142, 7.4136, 7.4132, 7.4143, 7.4141, 7.4135, 7.413, 7.4144, 7.4165, 7.418, 7.4172, 7.4168, 7.4169, 7.4171, 7.4164, 7.4158, 7.4169, 7.4161, 7.4161, 7.4175, 7.4168, 7.4183, 7.4177, 7.417, 7.4183, 7.4178, 7.417, 7.4181, 7.4174, 7.4169, 7.4163, 7.4156, 7.415, 7.4163, 7.4176, 7.4169, 7.4162, 7.4158, 7.428, 7.4273, 7.4286, 7.428, 7.4293, 7.4286, 7.4282, 7.4274, 7.4266, 7.4261, 7.4253, 7.4277, 7.4269, 7.4263, 7.4255, 7.4331, 7.4325, 7.4319, 7.4312, 7.4306, 7.4282, 7.4295, 7.4289, 7.4283, 7.4276, 7.4268, 7.4279, 7.4293, 7.4286, 7.4278, 7.429, 7.4302, 7.4295, 7.4288, 7.4303, 7.4297, 7.4289, 7.4282, 7.4278, 7.4272, 7.4269, 7.4264, 7.4324, 7.4352, 7.4387, 7.444, 7.4417, 7.4411, 7.4425, 7.4417, 7.4413, 7.4406, 7.4401, 7.4394, 7.4406, 7.4399, 7.4412, 7.4424, 7.442, 7.4418, 7.4421, 7.4413, 7.441, 7.4405, 7.4417, 7.4451, 7.4445, 7.444, 7.448, 7.4491, 7.4485, 7.4479, 7.4473, 7.4487, 7.4485, 7.4481, 7.4482, 7.4478, 7.4472, 7.4465, 7.4488, 7.449, 7.4483, 7.448, 7.4472, 7.4465, 7.4504, 7.4555, 7.4548, 7.4541, 7.4553, 7.4546, 7.454, 7.4618, 7.4631, 7.4625, 7.4617, 7.461, 7.4607, 7.46, 7.4614, 7.4608, 7.4605, 7.4581, 7.4574, 7.4568, 7.4561, 7.4556, 7.455, 7.4545, 7.454, 7.4533, 7.4546, 7.4557, 7.4551, 7.4588, 7.4582, 7.4577, 7.4572, 7.4564, 7.4559, 7.4571, 7.4566, 7.4578, 7.4571, 7.4564, 7.4576, 7.4569, 7.4573, 7.4566, 7.456, 7.4572, 7.4584, 7.4577, 7.4589, 7.4582, 7.4574, 7.4567, 7.4599, 7.4619, 7.4612, 7.4607, 7.46, 7.4612, 7.4607, 7.4585, 7.4578, 7.4574, 7.4567, 7.456, 7.4573, 7.4569, 7.4563, 7.4566, 7.4558, 7.457, 7.4582, 7.4579, 7.4573, 7.4567, 7.4562, 7.4577, 7.457, 7.4564, 7.4557, 7.455, 7.4543, 7.4538, 7.4533, 7.4526, 7.4541, 7.4534, 7.4528, 7.452, 7.4518, 7.4513, 7.4507, 7.45, 7.4493, 7.4486, 7.4482, 7.4477, 7.4488, 7.4481, 7.4478, 7.4474, 7.4485, 7.4497, 7.449, 7.4485, 7.4479, 7.449, 7.4485, 7.4478, 7.449, 7.4484, 7.4532, 7.4543, 7.452, 7.4532, 7.4527, 7.452, 7.455, 7.4543, 7.4538, 7.4557, 7.4551, 7.4562, 7.4555, 7.455, 7.4544, 7.4542, 7.4559, 7.4553, 7.4547, 7.4561, 7.4574, 7.4577, 7.4573, 7.4567, 7.4561, 7.4574, 7.4568, 7.4562, 7.4558, 7.4552, 7.4563, 7.4556, 7.4569, 7.4592, 7.4604, 7.4613, 7.4625, 7.4618, 7.4623, 7.4618, 7.4613, 7.4638, 7.4633, 7.4626, 7.4619, 7.4614, 7.4607, 7.4587, 7.4669, 7.468, 7.4692, 7.4703, 7.4696, 7.469, 7.4685, 7.468, 7.4692, 7.4688, 7.4681, 7.4679, 7.4674, 7.4688, 7.4698, 7.4777, 7.4787, 7.478, 7.4775, 7.4791, 7.4784, 7.4778, 7.4789, 7.4782, 7.4777, 7.479, 7.4783, 7.4776, 7.477, 7.4764, 7.4757, 7.4779, 7.478, 7.4774, 7.4767, 7.4764, 7.4742, 7.4735, 7.4728, 7.4721, 7.4714, 7.4709, 7.4703, 7.4697, 7.469, 7.4683, 7.4678, 7.4673, 7.468, 7.469, 7.4683, 7.4696, 7.4691, 7.4701, 7.4711, 7.4707, 7.4703, 7.4698, 7.4694, 7.4688, 7.4681, 7.4674, 7.4667, 7.4662, 7.4657, 7.4669, 7.4663, 7.4658, 7.4651, 7.4647, 7.4641, 7.4634, 7.4627, 7.462, 7.4613, 7.4606, 7.4599, 7.4626, 7.4604, 7.4601, 7.4596, 7.4591, 7.4584, 7.4577, 7.4572, 7.4589, 7.4582, 7.4585, 7.4578, 7.4589, 7.46, 7.4594, 7.4587, 7.458, 7.4573, 7.4584, 7.4579, 7.4572, 7.4565, 7.4559, 7.4564, 7.4557, 7.4552, 7.4545, 7.4538, 7.4551, 7.455, 7.4544, 7.4556, 7.455, 7.456, 7.4555, 7.4552, 7.4564, 7.4557, 7.4552, 7.4547, 7.4615, 7.461, 7.4622, 7.4686, 7.4697, 7.4692, 7.4771, 7.4766, 7.4761, 7.477, 7.4763, 7.4756, 7.4767, 7.4761, 7.4757, 7.4751, 7.475, 7.4746, 7.474, 7.4751, 7.4751, 7.4744, 7.4738, 7.4748, 7.4751, 7.4748, 7.4742, 7.4737, 7.4719, 7.4699, 7.4696, 7.4691, 7.4674, 7.4688, 7.4682, 7.4676, 7.4659, 7.4654, 7.4683, 7.4677, 7.4672, 7.4668, 7.4662, 7.4673, 7.4666, 7.466, 7.4654, 7.4649, 7.4644, 7.4655, 7.4665, 7.4661, 7.4655, 7.4649, 7.4643, 7.4673, 7.4682, 7.4693, 7.4687, 7.4682, 7.4675, 7.467, 7.4663, 7.4668, 7.4678, 7.4674, 7.4685, 7.4681, 7.4676, 7.4675, 7.4693, 7.4693, 7.4706, 7.4702, 7.4712, 7.4793, 7.4787, 7.4781, 7.4797, 7.4855, 7.4833, 7.4826, 7.4836, 7.4886, 7.488, 7.4883, 7.4878, 7.4874, 7.4893, 7.4887, 7.4897, 7.4908, 7.4919, 7.4912, 7.4922, 7.4922, 7.4916, 7.4912, 7.4909, 7.4905, 7.49, 7.4894, 7.4905, 7.4899, 7.4894, 7.4906, 7.4934, 7.4928, 7.4924, 7.4935, 7.4929, 7.4922, 7.4918, 7.4931, 7.4926, 7.4936, 7.493, 7.4924, 7.4937, 7.4931, 7.4925, 7.492, 7.4914, 7.491, 7.4904, 7.4899, 7.4878, 7.4874, 7.4869, 7.4868, 7.4877, 7.487, 7.4881, 7.4892, 7.4901, 7.4895, 7.489, 7.4885, 7.4864, 7.4858, 7.4852, 7.4845, 7.4855, 7.486, 7.4855, 7.4852, 7.4864, 7.4875, 7.4884, 7.4878, 7.4911, 7.492, 7.4913, 7.4924, 7.4934, 7.4927, 7.492, 7.4913, 7.493, 7.4924, 7.4917, 7.491, 7.4905, 7.4898, 7.4908, 7.4968, 7.4979, 7.4984, 7.4978, 7.4987, 7.4998, 7.5009, 7.5004, 7.4998, 7.4992, 7.4986, 7.4979, 7.4972, 7.4965, 7.496, 7.4954, 7.4948, 7.4942, 7.4935, 7.4944, 7.4938, 7.4949, 7.4944, 7.4943, 7.4937, 7.4931, 7.4925, 7.4928, 7.4921, 7.4914, 7.4908, 7.4919, 7.4913, 7.4908, 7.4918, 7.4912, 7.4921, 7.4914, 7.4909, 7.4921, 7.4915, 7.491, 7.4903, 7.4896, 7.489, 7.4884, 7.4877, 7.487, 7.4864, 7.4859, 7.4854, 7.4862, 7.4857, 7.4869, 7.4862, 7.4856, 7.4862, 7.4872, 7.4866, 7.4876, 7.487, 7.4864, 7.4859, 7.4855, 7.4865, 7.4859, 7.4838, 7.4847, 7.4843, 7.4837, 7.4831, 7.4843, 7.4837, 7.4848, 7.4857, 7.4851, 7.4852, 7.4852, 7.4847, 7.4879, 7.4873, 7.4883, 7.4883, 7.4894, 7.4888, 7.4885, 7.4889, 7.4882, 7.4875, 7.4871, 7.4865, 7.4859, 7.4853, 7.4849, 7.4859, 7.4853, 7.4847, 7.4857, 7.4868, 7.4878, 7.4871, 7.4865, 7.4858, 7.4853, 7.4848, 7.4858, 7.4853, 7.4863, 7.4871, 7.4865, 7.486, 7.4856, 7.485, 7.486, 7.487, 7.4865, 7.4861, 7.4855, 7.4849, 7.4843, 7.484, 7.4834, 7.4828, 7.4822, 7.4821, 7.4818, 7.4813, 7.4808, 7.482, 7.4831, 7.4825, 7.482, 7.4821, 7.4818, 7.4815, 7.4812, 7.4806, 7.48, 7.4797, 7.4796, 7.4789, 7.4786, 7.478, 7.4775, 7.4768, 7.4811, 7.4805, 7.4805, 7.48, 7.4825, 7.4834, 7.4829, 7.4825, 7.4805, 7.4815, 7.4809, 7.4819, 7.4813, 7.4807, 7.4802, 7.4796, 7.479, 7.48, 7.4794, 7.4804, 7.48, 7.4795, 7.4836, 7.483, 7.4862, 7.4858, 7.4868, 7.4863, 7.4859, 7.4854, 7.4849, 7.4846, 7.484, 7.4834, 7.4828, 7.4823, 7.4803, 7.4797, 7.4793, 7.4803, 7.4797, 7.4795, 7.4819, 7.4814, 7.4808, 7.4818, 7.4812, 7.4808, 7.4818, 7.4813, 7.4824, 7.482, 7.4837, 7.4822, 7.4816, 7.4825, 7.4819, 7.4813, 7.4807, 7.4801, 7.4809, 7.4818, 7.4814, 7.4823, 7.4803, 7.4798, 7.4795, 7.4792, 7.4773, 7.4787, 7.4796, 7.4791, 7.4785, 7.4782, 7.4776, 7.4772, 7.4766, 7.476, 7.4754, 7.475, 7.4745, 7.474, 7.4734, 7.4728, 7.4723, 7.4724, 7.4734, 7.4729, 7.474, 7.4734, 7.4805, 7.4799, 7.4793, 7.4789, 7.4785, 7.478, 7.4774, 7.4785, 7.4781, 7.4777, 7.4771, 7.4766, 7.478, 7.4798, 7.4792, 7.4787, 7.4782, 7.478, 7.4793, 7.4787, 7.4781, 7.4775, 7.4769, 7.4791, 7.4811, 7.4808, 7.4802, 7.4796, 7.4799, 7.4795, 7.4831, 7.4825, 7.4819, 7.4814, 7.4811, 7.4806, 7.48, 7.4809, 7.4818, 7.4827, 7.4823, 7.4817, 7.4814, 7.4811, 7.482, 7.4814, 7.4811, 7.4806, 7.48, 7.4794, 7.4788, 7.4782, 7.4777, 7.4773, 7.4767, 7.4761, 7.4755, 7.4764, 7.476, 7.4754, 7.4749, 7.4758, 7.4768, 7.4764, 7.4773, 7.4767, 7.4775, 7.477, 7.4764, 7.476, 7.4755, 7.4749, 7.4743, 7.4737, 7.4742, 7.4737, 7.4733, 7.4727, 7.4721, 7.4731, 7.474, 7.4734, 7.4758, 7.4768, 7.4778, 7.4772, 7.4783, 7.4779, 7.4788, 7.4782, 7.4791, 7.4785, 7.478, 7.4774, 7.4768, 7.4762, 7.4758, 7.4753, 7.4749, 7.4759, 7.4754, 7.4766, 7.4777, 7.4772, 7.4793, 7.4803, 7.4812, 7.4807, 7.4803, 7.4802, 7.4797, 7.4822, 7.4833, 7.4814, 7.4809, 7.4805, 7.48, 7.4781, 7.4793, 7.4809, 7.4806, 7.4801, 7.4795, 7.4812, 7.4807, 7.4817, 7.4813, 7.4816, 7.481, 7.4819, 7.4813, 7.4809, 7.4803, 7.4799, 7.4794, 7.4775, 7.4769, 7.4754, 7.4752, 7.476, 7.4754, 7.4748, 7.4757, 7.4751, 7.476, 7.4756, 7.475, 7.4744, 7.4747, 7.4741, 7.475, 7.4744, 7.4726, 7.4708, 7.4705, 7.47, 7.4696, 7.4705, 7.4699, 7.4693, 7.4687, 7.4671, 7.4666, 7.466, 7.467, 7.4664, 7.4658, 7.4653, 7.4662, 7.4656, 7.4654, 7.4652, 7.4661, 7.4665, 7.4674, 7.4668, 7.4663, 7.4659, 7.4654, 7.4663, 7.4658, 7.4654, 7.4648, 7.4642, 7.4637, 7.4634, 7.4628, 7.4623, 7.4617, 7.4612, 7.461, 7.461, 7.4605, 7.4599, 7.4601, 7.4596, 7.4594, 7.4588, 7.4588, 7.4582, 7.4576, 7.4572, 7.4569, 7.4566, 7.456, 7.4571, 7.458, 7.4577, 7.4573, 7.4569, 7.4565, 7.4563, 7.4576, 7.4587, 7.4583, 7.4579, 7.4575, 7.4571, 7.4567, 7.4565, 7.4577, 7.4589, 7.4585, 7.4579, 7.4575, 7.4572, 7.4581, 7.4578, 7.4576, 7.4571, 7.4565, 7.4561, 7.4557, 7.4554, 7.4551, 7.4548, 7.4545, 7.4554, 7.455, 7.4548, 7.4544, 7.4541, 7.455, 7.4559, 7.4555, 7.4565, 7.4575, 7.4585, 7.4582, 7.4577, 7.4572, 7.4572, 7.4633, 7.4627, 7.4635, 7.463, 7.4628, 7.4622, 7.4616, 7.4624, 7.4619, 7.4613, 7.4608, 7.4603, 7.4681, 7.4676, 7.4685, 7.468, 7.4675, 7.4671, 7.4666, 7.4662, 7.4658, 7.4675, 7.467, 7.4665, 7.4662, 7.4657, 7.4655, 7.4651, 7.4647, 7.4642, 7.4638, 7.4634, 7.4629, 7.4624, 7.4628, 7.4623, 7.4618, 7.4614, 7.461, 7.4606, 7.46, 7.4595, 7.4604, 7.4601, 7.461, 7.4619, 7.4615, 7.4612, 7.4606, 7.4601, 7.4595, 7.4604, 7.4615, 7.4616, 7.4625, 7.4662, 7.467, 7.4665, 7.4661, 7.4643, 7.4638, 7.4662, 7.4657, 7.4652, 7.4675, 7.4672, 7.4669, 7.4678, 7.4688, 7.4688, 7.4696, 7.4692, 7.4686, 7.4681, 7.469, 7.4686, 7.4684, 7.4678, 7.4672, 7.4668, 7.4664, 7.4661, 7.4658, 7.4667, 7.4649, 7.4643, 7.4652, 7.4647, 7.4642, 7.464, 7.4635, 7.4631, 7.464, 7.4636, 7.4633, 7.4629, 7.4637, 7.4632, 7.464, 7.4649, 7.4645, 7.4654, 7.4638, 7.4662, 7.4671, 7.4666, 7.4674, 7.467, 7.4665, 7.4661, 7.467, 7.4665, 7.466, 7.4645, 7.4641, 7.4651, 7.4646, 7.4642, 7.4641, 7.4636, 7.4645, 7.464, 7.4635, 7.4632, 7.4626, 7.4635, 7.463, 7.4625, 7.462, 7.4631, 7.4627, 7.4622, 7.4618, 7.46, 7.4596, 7.4591, 7.4587, 7.4582, 7.4565, 7.4574, 7.457, 7.4579, 7.4587, 7.4599, 7.4595, 7.459, 7.4599, 7.4611, 7.4606, 7.4602, 7.4597, 7.4593, 7.4601, 7.4596, 7.4592, 7.46, 7.4609, 7.4625, 7.4622, 7.4619, 7.4628, 7.4637, 7.4633, 7.463, 7.4625, 7.4621, 7.4617, 7.4613, 7.4609, 7.4604, 7.4614, 7.4611, 7.4606, 7.4617, 7.4604, 7.4599, 7.4594, 7.4589, 7.4584, 7.4578, 7.4574, 7.4569, 7.4564, 7.4559, 7.4569, 7.457, 7.4595, 7.4591, 7.4586, 7.4582, 7.4633, 7.4628, 7.4623, 7.4619, 7.4614, 7.4622, 7.4631, 7.4632, 7.4627, 7.4622, 7.4619, 7.4614, 7.4609, 7.4612, 7.4611, 7.4606, 7.46, 7.4597, 7.4592, 7.4588, 7.4584, 7.4581, 7.4576, 7.4571, 7.4579, 7.4576, 7.4573, 7.4581, 7.4576, 7.4571, 7.458, 7.4576, 7.4571, 7.4566, 7.4561, 7.4565, 7.456, 7.4558, 7.4566, 7.4589, 7.4584, 7.4579, 7.4574, 7.4584, 7.4567, 7.4575, 7.4571, 7.4566, 7.4562, 7.456, 7.4556, 7.4552, 7.4548, 7.4556, 7.4551, 7.4546, 7.4554, 7.4537, 7.4533, 7.4529, 7.4529, 7.4537, 7.4547, 7.4542, 7.4549, 7.4545, 7.454, 7.4535, 7.4531, 7.454, 7.4535, 7.4532, 7.4526, 7.4523, 7.4519, 7.4514, 7.4523, 7.4533, 7.4529, 7.4524, 7.4519, 7.4516, 7.4531, 7.454, 7.4536, 7.4531, 7.454, 7.4536, 7.4546, 7.4544, 7.4539, 7.4534, 7.4532, 7.453, 7.4525, 7.452, 7.4516, 7.4512, 7.4562, 7.4559, 7.4554, 7.455, 7.4546, 7.4529, 7.4537, 7.4534, 7.4531, 7.4527, 7.4537, 7.4545, 7.454, 7.4535, 7.4518, 7.4514, 7.4522, 7.4517, 7.4525, 7.4521, 7.4531, 7.4527, 7.4523, 7.4519, 7.4515, 7.451, 7.4507, 7.4503, 7.45, 7.4496, 7.4505, 7.45, 7.4495, 7.4492, 7.4487, 7.4483, 7.448, 7.4475, 7.447, 7.4472, 7.4468, 7.4463, 7.4458, 7.4454, 7.4462, 7.4446, 7.4441, 7.4437, 7.4432, 7.4441, 7.4424, 7.4421, 7.442, 7.4419, 7.4414, 7.4435, 7.443, 7.4426, 7.4435, 7.4444, 7.4439, 7.4434, 7.4429, 7.4427, 7.4424, 7.4419, 7.4415, 7.4418, 7.4427, 7.4423, 7.4421, 7.4416, 7.4414, 7.4409, 7.4407, 7.4402, 7.4399, 7.4394, 7.4389, 7.4397, 7.4392, 7.4401, 7.4398, 7.4394, 7.439, 7.4398, 7.4395, 7.439, 7.4387, 7.4383, 7.4367, 7.4362, 7.4364, 7.4359, 7.4354, 7.4349, 7.4345, 7.4341, 7.4337, 7.4344, 7.434, 7.4336, 7.4332, 7.4327, 7.4323, 7.4331, 7.4366, 7.4362, 7.4358, 7.4358, 7.4354, 7.435, 7.4362, 7.4358, 7.4354, 7.4349, 7.4345, 7.4342, 7.434, 7.4337, 7.4332, 7.4328, 7.4323, 7.433, 7.4327, 7.4322, 7.433, 7.4317, 7.4312, 7.4321, 7.4316, 7.4311, 7.4319, 7.4314, 7.4309, 7.4304, 7.43, 7.4318, 7.4326, 7.4361, 7.4357, 7.4364, 7.4374, 7.4369, 7.4365, 7.436, 7.4412, 7.4395, 7.4379, 7.4386, 7.4381, 7.4376, 7.4371, 7.4366, 7.4364, 7.4361, 7.4356, 7.4364, 7.4386, 7.4382, 7.4379, 7.4376, 7.4372, 7.4368, 7.4379, 7.4374, 7.437, 7.4377, 7.4403, 7.4398, 7.4424, 7.4419, 7.4416, 7.4411, 7.4419, 7.4414, 7.441, 7.4407, 7.4404, 7.4411, 7.4433, 7.4429, 7.4426, 7.4433, 7.443, 7.4426, 7.4423, 7.4418, 7.4427, 7.4424, 7.442, 7.4416, 7.4411, 7.4407, 7.4404, 7.44, 7.4409, 7.4404, 7.4407, 7.4402, 7.44, 7.4396, 7.4392, 7.4401, 7.4397, 7.4392, 7.4387, 7.4422, 7.4419, 7.4416, 7.4425, 7.4421, 7.4416, 7.4429, 7.4437, 7.4424, 7.4419, 7.4415, 7.44, 7.4396, 7.4392, 7.4388, 7.4383, 7.441, 7.4418, 7.4414, 7.4409, 7.4416, 7.4426, 7.4428, 7.444, 7.4448, 7.4444, 7.4439, 7.4434, 7.443, 7.4425, 7.442, 7.4428, 7.4436, 7.4433, 7.4428, 7.4423, 7.4418, 7.4413, 7.4409, 7.4405, 7.4401, 7.4397, 7.4394, 7.4393, 7.44, 7.4395, 7.439, 7.4387, 7.4384, 7.4381, 7.439, 7.4398, 7.4398, 7.4395, 7.4401, 7.4397, 7.4405, 7.441, 7.4405, 7.44, 7.4397, 7.4392, 7.4388, 7.4384, 7.4392, 7.4388, 7.4383, 7.4379, 7.4374, 7.4369, 7.4365, 7.436, 7.4355, 7.4363, 7.4371, 7.4366, 7.4373, 7.4368, 7.4366, 7.4365, 7.436, 7.4369, 7.4367, 7.4363, 7.436, 7.4367, 7.4363, 7.4362, 7.437, 7.4365, 7.4373, 7.4369, 7.4377, 7.4372, 7.4367, 7.4366, 7.4361, 7.4371, 7.4379, 7.4387, 7.4383, 7.4368, 7.4363, 7.4358, 7.4353, 7.4364, 7.4348, 7.4345, 7.4342, 7.4337, 7.4339, 7.4334, 7.4342, 7.4337, 7.4332, 7.4328, 7.4324, 7.4319, 7.4326, 7.4322, 7.433, 7.4338, 7.4334, 7.4368, 7.4376, 7.4372, 7.4367, 7.4363, 7.4359, 7.4367, 7.4375, 7.437, 7.4378, 7.4373, 7.4368, 7.4365, 7.4361, 7.4369, 7.4365, 7.4361, 7.437, 7.4366, 7.4363, 7.4373, 7.4376, 7.4388, 7.4398, 7.4406, 7.4401, 7.4409, 7.4405, 7.44, 7.4407, 7.4403, 7.4399, 7.4395, 7.4397, 7.4393, 7.4389, 7.4396, 7.4394, 7.439, 7.439, 7.4385, 7.438, 7.4375, 7.4395, 7.4393, 7.44, 7.4408, 7.4404, 7.4402, 7.4412, 7.4417, 7.4414, 7.4428, 7.4416, 7.4412, 7.442, 7.4415, 7.441, 7.4406, 7.4414, 7.4421, 7.4483, 7.4479, 7.4464, 7.446, 7.4468, 7.4466, 7.4463, 7.4461, 7.4456, 7.4488, 7.454, 7.4536, 7.4543, 7.4528, 7.4525, 7.4509, 7.4504, 7.45, 7.4496, 7.4491, 7.4486, 7.4483, 7.4481, 7.4466, 7.4463, 7.4469, 7.4477, 7.4485, 7.4481, 7.4477, 7.4484, 7.4481, 7.4476, 7.4471, 7.4466, 7.4463, 7.4471, 7.4468, 7.4463, 7.4459, 7.4455, 7.4453, 7.4451, 7.4436, 7.445, 7.4447, 7.4456, 7.4452, 7.4451, 7.4448, 7.4469, 7.4477, 7.4472, 7.4467, 7.4462, 7.4457, 7.4453, 7.445, 7.4446, 7.4453, 7.445, 7.4445, 7.4432, 7.4429, 7.4426, 7.4472, 7.4468, 7.4465, 7.4461, 7.4457, 7.4464, 7.4462, 7.4458, 7.4454, 7.4452, 7.4447, 7.4443, 7.4439, 7.4434, 7.4441, 7.4448, 7.4456, 7.4452, 7.4449, 7.4445, 7.4441, 7.4438, 7.4435, 7.4432, 7.4427, 7.4435, 7.4502, 7.4497, 7.4504, 7.4557, 7.4552, 7.455, 7.4547, 7.4543, 7.4551, 7.4547, 7.4544, 7.454, 7.4548, 7.4544, 7.4552, 7.4547, 7.4543, 7.4539, 7.4559, 7.4555, 7.4562, 7.4558, 7.4553, 7.4549, 7.4556, 7.4563, 7.4559, 7.4556, 7.4552, 7.4547, 7.4543, 7.454, 7.4546, 7.4542, 7.454, 7.4536, 7.4531, 7.4527, 7.4524, 7.452, 7.4515, 7.4523, 7.4519, 7.4526, 7.4523, 7.4518, 7.4514, 7.451, 7.4517, 7.4513, 7.452, 7.4517, 7.4514, 7.4522, 7.4519, 7.4516, 7.4511, 7.4496, 7.4492, 7.4487, 7.4483, 7.4479, 7.4487, 7.4495, 7.4491, 7.4488, 7.4484, 7.4479, 7.4487, 7.4488, 7.4474, 7.4472, 7.4468, 7.4465, 7.4461, 7.4446, 7.4454, 7.4451, 7.4471, 7.4467, 7.4463, 7.4477, 7.4476, 7.4472, 7.446, 7.4456, 7.4467, 7.4464, 7.4466, 7.4463, 7.4517, 7.4513, 7.4522, 7.4529, 7.4536, 7.4554, 7.4549, 7.4556, 7.4564, 7.456, 7.4555, 7.455, 7.4546, 7.4541, 7.4541, 7.4537, 7.4533, 7.4531, 7.4526, 7.4523, 7.4521, 7.4516, 7.4512, 7.4519, 7.4526, 7.4536, 7.4532, 7.4527, 7.4525, 7.4532, 7.4528, 7.4532, 7.4528, 7.4524, 7.4531, 7.4538, 7.4545, 7.4552, 7.4548, 7.4544, 7.454, 7.4536, 7.4531, 7.4541, 7.4548, 7.4544, 7.4542, 7.4538, 7.4534, 7.4542, 7.4537, 7.4545, 7.4541, 7.4537, 7.4544, 7.454, 7.4541, 7.4538, 7.4545, 7.4551, 7.4547, 7.4543, 7.4562, 7.458, 7.4575, 7.4582, 7.4581, 7.4577, 7.4573, 7.458, 7.4576, 7.4572, 7.4568, 7.4563, 7.4562, 7.4558, 7.4555, 7.4552, 7.4549, 7.4544, 7.454, 7.4536, 7.4534, 7.453, 7.4526, 7.4523, 7.4523, 7.452, 7.4519, 7.4525, 7.4521, 7.4518, 7.4514, 7.4509, 7.4517, 7.4513, 7.4509, 7.4557, 7.4553, 7.4548, 7.4548, 7.4544, 7.454, 7.4547, 7.4544, 7.4542, 7.4549, 7.4549, 7.4546, 7.4542, 7.4539, 7.4546, 7.4544, 7.454, 7.4536, 7.4532, 7.4529, 7.4525, 7.4522, 7.4519, 7.4526, 7.4522, 7.4532, 7.4528, 7.4551, 7.4546, 7.4542, 7.456, 7.4557, 7.4569, 7.4567, 7.4563, 7.457, 7.4566, 7.4573, 7.4579, 7.4586, 7.4582, 7.4589, 7.4586, 7.4593, 7.46, 7.4596, 7.4592, 7.4589, 7.4597, 7.4604, 7.46, 7.4596, 7.4592, 7.4589, 7.4585, 7.4581, 7.4576, 7.4583, 7.4579, 7.4575, 7.4571, 7.4566, 7.4563, 7.4551, 7.4558, 7.4554, 7.4561, 7.4557, 7.4564, 7.456, 7.4556, 7.4552, 7.4549, 7.4547, 7.4543, 7.4539, 7.4536, 7.4532, 7.4528, 7.4525, 7.4521, 7.4517, 7.4524, 7.4533, 7.4534, 7.453, 7.4526, 7.4522, 7.4519, 7.4516, 7.4514, 7.4521, 7.4517, 7.4513, 7.4512, 7.4508, 7.4504, 7.45, 7.4508, 7.4507, 7.4503, 7.4499, 7.4496, 7.4494, 7.449, 7.4538, 7.4534, 7.453, 7.4527, 7.4525, 7.4522, 7.4527, 7.4522, 7.4518, 7.4517, 7.4513, 7.451, 7.4506, 7.4513, 7.452, 7.4517, 7.4514, 7.4512, 7.4508, 7.4505, 7.4501, 7.4528, 7.4535, 7.4532, 7.4539, 7.4546, 7.4556, 7.4554, 7.4561, 7.4557, 7.4567, 7.4574, 7.4578, 7.4585, 7.4593, 7.4589, 7.4585, 7.4582, 7.4578, 7.4585, 7.4581, 7.4577, 7.4573, 7.4569, 7.4566, 7.4563, 7.457, 7.4568, 7.4565, 7.4572, 7.458, 7.4576, 7.4582, 7.4589, 7.4585, 7.4584, 7.458, 7.4576, 7.4573, 7.4569, 7.4565, 7.4561, 7.4557, 7.4564, 7.4571, 7.4568, 7.4564, 7.4563, 7.457, 7.4566, 7.4564, 7.456, 7.4556, 7.4552, 7.4559, 7.4566, 7.4562, 7.4559, 7.4558, 7.457, 7.4568, 7.4564, 7.456, 7.4561, 7.4564, 7.456, 7.4568, 7.4564, 7.457, 7.4567, 7.4553, 7.4549, 7.4547, 7.4542, 7.454, 7.4549, 7.4546, 7.4543, 7.4539, 7.454, 7.4537, 7.4546, 7.4543, 7.4539, 7.4535, 7.4532, 7.4527, 7.4523, 7.4519, 7.4515, 7.4511, 7.4498, 7.4516, 7.4513, 7.4509, 7.4506, 7.4502, 7.4498, 7.4494, 7.4491, 7.4497, 7.4495, 7.4501, 7.4499, 7.4496, 7.4493, 7.4491, 7.4487, 7.4484, 7.448, 7.4476, 7.4472, 7.4479, 7.4477, 7.4473, 7.447, 7.4466, 7.4467, 7.4463, 7.447, 7.4467, 7.4463, 7.4459, 7.4455, 7.4451, 7.4447, 7.4443, 7.444, 7.4447, 7.4451, 7.4475, 7.4472, 7.4468, 7.4464, 7.4471, 7.4468, 7.4466, 7.4474, 7.447, 7.4466, 7.4462, 7.447, 7.4466, 7.4463, 7.447, 7.4465, 7.4461, 7.4468, 7.4497, 7.4493, 7.45, 7.4507, 7.4503, 7.4509, 7.4507, 7.4514, 7.4521, 7.4528, 7.4534, 7.4541, 7.4538, 7.4534, 7.4542, 7.4539, 7.4535, 7.4544, 7.455, 7.4547, 7.4544, 7.454, 7.4537, 7.4544, 7.454, 7.4536, 7.4533, 7.4529, 7.4525, 7.4533, 7.453, 7.4541, 7.4537, 7.4534, 7.4535, 7.4533, 7.4529, 7.4527, 7.4544, 7.4542, 7.455, 7.4548, 7.4544, 7.454, 7.4536, 7.4532, 7.4527, 7.4513, 7.4515, 7.4511, 7.4507, 7.4504, 7.4512, 7.4509, 7.4506, 7.4504, 7.4516, 7.4523, 7.4519, 7.4514, 7.4511, 7.4507, 7.4504, 7.4502, 7.4499, 7.4495, 7.4491, 7.4501, 7.4498, 7.4495, 7.4495, 7.4491, 7.4489, 7.4475, 7.4472, 7.4468, 7.4466, 7.4472, 7.447, 7.4467, 7.4465, 7.4461, 7.4457, 7.4453, 7.4449, 7.4445, 7.4441, 7.4437, 7.4433, 7.443, 7.4427, 7.4423, 7.442, 7.4428, 7.4425, 7.4422, 7.4429, 7.4425, 7.4421, 7.4417, 7.4415, 7.4412, 7.4408, 7.4405, 7.4402, 7.4408, 7.4406, 7.4403, 7.4399, 7.4386, 7.4392, 7.4389, 7.439, 7.4397, 7.4394, 7.439, 7.4397, 7.4394, 7.439, 7.4387, 7.4384, 7.4381, 7.4399, 7.4396, 7.4392, 7.4399, 7.4396, 7.4403, 7.4399, 7.4406, 7.4403, 7.4399, 7.4397, 7.4393, 7.44, 7.4397, 7.4394, 7.4404, 7.4402, 7.4401, 7.44, 7.4396, 7.4403, 7.441, 7.4406, 7.4402, 7.4409, 7.4406, 7.4402, 7.4388, 7.4394, 7.439, 7.4397, 7.4403, 7.439, 7.4387, 7.4384, 7.438, 7.4376, 7.4373, 7.438, 7.4377, 7.4384, 7.4391, 7.4397, 7.4393, 7.4389, 7.4396, 7.4392, 7.4389, 7.4385, 7.4404, 7.4419, 7.4415, 7.4412, 7.4399, 7.4385, 7.4392, 7.4388, 7.4415, 7.4412, 7.4409, 7.4399, 7.4396, 7.4392, 7.4389, 7.439, 7.4401, 7.4414, 7.4421, 7.4427, 7.4423, 7.4429, 7.4435, 7.4432, 7.4439, 7.4435, 7.4462, 7.4479, 7.4486, 7.4482, 7.4478, 7.4478, 7.4474, 7.4471, 7.4482, 7.4479, 7.4475, 7.4476, 7.4479, 7.4477, 7.4491, 7.4487, 7.4474, 7.4512, 7.4509, 7.4527, 7.4524, 7.4522, 7.4559, 7.4565, 7.4561, 7.4558, 7.4576, 7.4574, 7.4575, 7.4572, 7.4579, 7.4576, 7.4572, 7.4569, 7.4565, 7.4571, 7.4579, 7.4585, 7.4581, 7.4577, 7.4574, 7.458, 7.4576, 7.4563, 7.4569, 7.4596, 7.4586, 7.4598, 7.4598, 7.4595, 7.4592, 7.4599, 7.4596, 7.4602, 7.4608, 7.4604, 7.46, 7.4596, 7.4606, 7.4612, 7.4618, 7.4625, 7.4621, 7.4617, 7.4623, 7.462, 7.4616, 7.4622, 7.4629, 7.4627, 7.4623, 7.4619, 7.4625, 7.4621, 7.4627, 7.4633, 7.4639, 7.4646, 7.4643, 7.4639, 7.4646, 7.4643, 7.465, 7.4647, 7.4643, 7.4639, 7.4636, 7.4632, 7.465, 7.4658, 7.4655, 7.4662, 7.4658, 7.4655, 7.4661, 7.4657, 7.4654, 7.467, 7.4676, 7.4694, 7.4683, 7.4679, 7.4675, 7.4672, 7.4668, 7.4675, 7.4671, 7.4668, 7.4674, 7.468, 7.4686, 7.4692, 7.4698, 7.4695, 7.4691, 7.4697, 7.4693, 7.4691, 7.4688, 7.4685, 7.4682, 7.4678, 7.4674, 7.467, 7.4666, 7.4662, 7.4668, 7.4675, 7.4682, 7.4689, 7.4695, 7.4692, 7.4689, 7.4706, 7.4702, 7.4698, 7.4704, 7.471, 7.4706, 7.4713, 7.47, 7.4696, 7.4693, 7.4709, 7.4705, 7.4701, 7.4698, 7.4694, 7.4691, 7.4688, 7.4694, 7.4702, 7.4708, 7.4704, 7.4701, 7.4698, 7.4696, 7.4695, 7.4693, 7.47, 7.469, 7.4694, 7.4684, 7.468, 7.4676, 7.4683, 7.4689, 7.4685, 7.4685, 7.4683, 7.468, 7.4678, 7.4685, 7.4692, 7.4699, 7.4705, 7.4712, 7.4708, 7.4705, 7.4704, 7.4701, 7.4707, 7.4706, 7.4714, 7.471, 7.4719, 7.4715, 7.4712, 7.4709, 7.4707, 7.4714, 7.4711, 7.471, 7.4716, 7.4715, 7.4715, 7.4714, 7.4721, 7.472, 7.4717, 7.4716, 7.4712, 7.4711, 7.4699, 7.4706, 7.4703, 7.47, 7.4699, 7.4699], '192.168.122.118': [5.4498, 5.43, 6.3577, 6.0905, 6.1591, 6.0216, 7.2374, 7.013, 7.4726, 7.3706, 7.2471, 7.0966, 7.1346, 7.0128, 6.9101, 7.1657, 7.4116, 7.3226, 7.4349, 7.3382, 7.3024, 7.2419, 7.3982, 7.3099, 7.2297, 7.1783, 7.5206, 7.4567, 7.8891, 7.6979, 7.6329, 7.5662, 7.7655, 7.8697, 7.7013, 7.726, 7.97, 7.922, 8.0194, 7.9533, 7.9023, 7.8523, 7.8022, 7.9223, 7.8666, 7.9328, 7.9166, 7.8689, 7.8306, 7.8895, 7.8403, 7.7923, 7.7568, 7.7202, 7.6829, 7.6455, 7.608, 7.5861, 7.5572, 7.5351, 7.4996, 7.4665, 7.449, 7.4261, 7.3956, 7.4493, 7.5028, 7.4726, 7.5227, 7.4909, 7.4612, 7.4372, 7.4072, 7.4579, 7.4383, 7.4184, 7.3943, 7.3701, 7.3458, 7.3858, 7.4279, 7.4068, 7.5165, 7.5854, 7.5604, 7.6104, 7.6437, 7.7865, 7.7623, 7.7349, 7.7097, 7.6858, 7.7194, 7.693, 7.7267, 7.7103, 7.6906, 7.7207, 7.702, 7.6818, 7.6128, 7.5918, 7.5741, 7.6033, 7.5868, 7.5659, 7.5547, 7.5541, 7.5395, 7.53, 7.5614, 7.5939, 7.5736, 7.6018, 7.5846, 7.5714, 7.6009, 7.5838, 7.5647, 7.5614, 7.507, 7.4882, 7.4785, 7.4691, 7.4139, 7.4077, 7.3979, 7.3834, 7.3732, 7.3571, 7.3894, 7.3776, 7.3631, 7.4972, 7.485, 7.4772, 7.4666, 7.4511, 7.4763, 7.5023, 7.527, 7.5128, 7.4983, 7.525, 7.5484, 7.5712, 7.557, 7.5424, 7.5278, 7.5129, 7.5083, 7.4974, 7.4854, 7.4726, 7.4592, 7.4808, 7.5028, 7.5243, 7.513, 7.503, 7.5237, 7.5116, 7.5004, 7.4896, 7.4843, 7.4721, 7.4794, 7.4705, 7.4588, 7.4484, 7.4679, 7.4552, 7.4437, 7.4411, 7.4287, 7.4169, 7.4059, 7.395, 7.3832, 7.4021, 7.3914, 7.3853, 7.4085, 7.4545, 7.4992, 7.517, 7.5351, 7.5562, 7.5721, 7.5645, 7.5599, 7.5777, 7.5671, 7.5847, 7.6019, 7.6233, 7.6702, 7.6855, 7.6788, 7.6698, 7.6587, 7.6468, 7.6368, 7.6281, 7.647, 7.6387, 7.6383, 7.6291, 7.6205, 7.6146, 7.6056, 7.5959, 7.6102, 7.6051, 7.5947, 7.5882, 7.5807, 7.5949, 7.588, 7.5803, 7.5713, 7.5658, 7.5575, 7.5498, 7.5403, 7.537, 7.5299, 7.5234, 7.4951, 7.5084, 7.5263, 7.5189, 7.5348, 7.5528, 7.5243, 7.5586, 7.6159, 7.5871, 7.5818, 7.5948, 7.5863, 7.5788, 7.5736, 7.5645, 7.5566, 7.5489, 7.5627, 7.5539, 7.545, 7.5373, 7.5401, 7.5528, 7.5465, 7.5735, 7.5744, 7.5871, 7.5781, 7.5708, 7.5842, 7.5958, 7.5866, 7.5786, 7.5711, 7.5637, 7.5573, 7.5542, 7.546, 7.539, 7.5499, 7.5416, 7.5355, 7.5274, 7.5584, 7.5503, 7.5606, 7.5544, 7.546, 7.5379, 7.5299, 7.5218, 7.5343, 7.5447, 7.5371, 7.532, 7.5433, 7.5545, 7.5683, 7.5609, 7.5377, 7.5307, 7.5235, 7.5175, 7.5118, 7.5227, 7.5158, 7.4928, 7.4883, 7.4854, 7.4785, 7.4563, 7.4676, 7.4632, 7.4747, 7.4676, 7.4609, 7.4561, 7.4495, 7.4427, 7.4485, 7.4596, 7.4707, 7.4643, 7.4744, 7.4674, 7.4604, 7.4538, 7.4469, 7.4578, 7.4511, 7.4616, 7.4722, 7.4827, 7.4802, 7.4905, 7.4697, 7.4491, 7.459, 7.4531, 7.4487, 7.442, 7.4207, 7.4143, 7.4093, 7.4211, 7.4155, 7.4093, 7.4195, 7.4133, 7.4071, 7.4019, 7.396, 7.406, 7.4168, 7.4129, 7.4069, 7.4017, 7.3959, 7.392, 7.3868, 7.3842, 7.3952, 7.4134, 7.408, 7.4022, 7.398, 7.3786, 7.3881, 7.3852, 7.3674, 7.3617, 7.3593, 7.3566, 7.3384, 7.3333, 7.3282, 7.3245, 7.3212, 7.3171, 7.3981, 7.4076, 7.389, 7.399, 7.3935, 7.3891, 7.3847, 7.3793, 7.3881, 7.3827, 7.3786, 7.3756, 7.3832, 7.4056, 7.4007, 7.3832, 7.3778, 7.3733, 7.3681, 7.3776, 7.3743, 7.3694, 7.3647, 7.3598, 7.3545, 7.3632, 7.3582, 7.3547, 7.3629, 7.3591, 7.3677, 7.3655, 7.3619, 7.3576, 7.3528, 7.3362, 7.3452, 7.354, 7.3372, 7.3339, 7.3432, 7.3269, 7.3225, 7.321, 7.3184, 7.3269, 7.323, 7.3073, 7.3026, 7.2977, 7.2945, 7.2898, 7.3383, 7.3338, 7.3311, 7.3267, 7.3217, 7.3301, 7.3315, 7.3348, 7.3302, 7.3272, 7.338, 7.3457, 7.3413, 7.337, 7.333, 7.3412, 7.3466, 7.3436, 7.3391, 7.3416, 7.343, 7.3383, 7.3335, 7.3991, 7.396, 7.3928, 7.3906, 7.3864, 7.394, 7.3892, 7.3876, 7.3947, 7.39, 7.3856, 7.393, 7.4002, 7.3965, 7.4038, 7.411, 7.4077, 7.4147, 7.4103, 7.3955, 7.3911, 7.3869, 7.3824, 7.3789, 7.3746, 7.3705, 7.367, 7.3625, 7.369, 7.3764, 7.3724, 7.3795, 7.3755, 7.3717, 7.3686, 7.3665, 7.3631, 7.3592, 7.3667, 7.3623, 7.3602, 7.375, 7.3717, 7.3699, 7.3766, 7.3732, 7.3692, 7.377, 7.3834, 7.3822, 7.3802, 7.3763, 7.3734, 7.3691, 7.3693, 7.3676, 7.3637, 7.3598, 7.3579, 7.3649, 7.3637, 7.3719, 7.368, 7.3756, 7.3726, 7.3686, 7.3648, 7.3611, 7.358, 7.3555, 7.3625, 7.3587, 7.3548, 7.352, 7.3578, 7.355, 7.3518, 7.3486, 7.3483, 7.3448, 7.3411, 7.3479, 7.3453, 7.3424, 7.3396, 7.3358, 7.3321, 7.3298, 7.3295, 7.3311, 7.3301, 7.3281, 7.3249, 7.3221, 7.3185, 7.3095, 7.3067, 7.2949, 7.3016, 7.2998, 7.2972, 7.3032, 7.2998, 7.2965, 7.2929, 7.2892, 7.2861, 7.2825, 7.2707, 7.2676, 7.264, 7.2624, 7.2687, 7.2653, 7.2619, 7.2685, 7.2673, 7.2657, 7.2626, 7.2591, 7.2561, 7.2538, 7.2534, 7.2508, 7.2482, 7.2449, 7.2416, 7.2383, 7.2447, 7.2431, 7.24, 7.246, 7.2435, 7.2415, 7.2394, 7.2374, 7.2432, 7.2399, 7.2368, 7.2334, 7.2309, 7.2286, 7.2278, 7.2335, 7.2328, 7.2217, 7.2185, 7.2256, 7.2229, 7.2288, 7.2275, 7.2244, 7.2222, 7.2113, 7.2098, 7.2077, 7.2058, 7.2028, 7.2377, 7.2432, 7.2406, 7.2376, 7.2347, 7.2407, 7.2382, 7.2354, 7.2245, 7.2214, 7.2193, 7.2171, 7.2232, 7.221, 7.2264, 7.2318, 7.2286, 7.2261, 7.2229, 7.2201, 7.2173, 7.2233, 7.2298, 7.23, 7.2273, 7.2248, 7.2224, 7.2279, 7.2249, 7.2218, 7.2188, 7.217, 7.2138, 7.2108, 7.2093, 7.2063, 7.2041, 7.2015, 7.1991, 7.1961, 7.1936, 7.1912, 7.1969, 7.1944, 7.2002, 7.1976, 7.1955, 7.1941, 7.1912, 7.1981, 7.1967, 7.1937, 7.191, 7.1897, 7.1869, 7.1772, 7.1746, 7.1722, 7.1704, 7.1754, 7.1741, 7.1802, 7.1784, 7.1836, 7.1892, 7.1864, 7.1846, 7.1827, 7.1802, 7.1865, 7.1837, 7.181, 7.1872, 7.1845, 7.183, 7.1883, 7.1931, 7.1913, 7.1885, 7.1859, 7.1919, 7.1896, 7.1951, 7.1931, 7.1931, 7.1981, 7.1957, 7.2009, 7.2061, 7.211, 7.2113, 7.2091, 7.2065, 7.2039, 7.2014, 7.1991, 7.2043, 7.2017, 7.2074, 7.2131, 7.2119, 7.2144, 7.212, 7.2175, 7.2241, 7.2216, 7.2271, 7.2328, 7.2304, 7.228, 7.226, 7.2337, 7.2326, 7.2561, 7.2537, 7.2511, 7.2484, 7.2595, 7.2571, 7.2548, 7.2678, 7.2661, 7.264, 7.2621, 7.2601, 7.2707, 7.2681, 7.2661, 7.2641, 7.2616, 7.2591, 7.2629, 7.2539, 7.2529, 7.2573, 7.2554, 7.2555, 7.2532, 7.252, 7.2501, 7.2556, 7.2532, 7.2509, 7.2496, 7.2472, 7.2446, 7.2421, 7.2397, 7.2372, 7.2347, 7.2368, 7.2418, 7.2345, 7.2324, 7.2376, 7.2363, 7.2275, 7.2403, 7.2385, 7.2435, 7.2438, 7.2482, 7.247, 7.2451, 7.2501, 7.2483, 7.246, 7.2442, 7.2425, 7.2466, 7.2444, 7.2418, 7.2409, 7.2383, 7.2363, 7.2351, 7.2407, 7.2395, 7.2372, 7.2354, 7.2337, 7.2318, 7.2293, 7.2268, 7.2318, 7.2363, 7.2415, 7.2398, 7.2374, 7.2421, 7.2404, 7.2457, 7.2504, 7.2488, 7.2535, 7.2521, 7.2612, 7.2587, 7.2567, 7.2609, 7.2655, 7.2697, 7.2675, 7.2654, 7.2633, 7.2702, 7.2678, 7.2688, 7.2679, 7.2718, 7.2758, 7.2734, 7.2775, 7.2816, 7.2797, 7.2774, 7.2751, 7.2727, 7.2703, 7.2746, 7.2729, 7.2714, 7.2689, 7.2858, 7.2903, 7.2822, 7.2798, 7.2784, 7.2828, 7.2807, 7.2788, 7.2769, 7.2852, 7.2895, 7.2932, 7.2974, 7.2956, 7.2934, 7.2912, 7.2888, 7.2869, 7.2851, 7.2828, 7.2828, 7.294, 7.3229, 7.3207, 7.3187, 7.3108, 7.3091, 7.307, 7.3049, 7.3028, 7.307, 7.3056, 7.3162, 7.3141, 7.3066, 7.3043, 7.3023, 7.2965, 7.3004, 7.2982, 7.296, 7.2937, 7.2914, 7.2903, 7.2882, 7.2921, 7.2961, 7.2938, 7.2862, 7.2851, 7.2837, 7.2822, 7.2925, 7.2931, 7.2914, 7.2898, 7.2936, 7.2914, 7.2908, 7.2948, 7.2927, 7.291, 7.2889, 7.3026, 7.301, 7.3222, 7.32, 7.3184, 7.3176, 7.3215, 7.3199, 7.3184, 7.3174, 7.3158, 7.3142, 7.3132, 7.311, 7.3102, 7.3087, 7.3077, 7.3056, 7.3038, 7.3074, 7.3052, 7.303, 7.3066, 7.3049, 7.3028, 7.3068, 7.3053, 7.304, 7.308, 7.3059, 7.3042, 7.302, 7.3059, 7.3098, 7.3076, 7.3115, 7.3161, 7.3232, 7.3211, 7.319, 7.3176, 7.3212, 7.3258, 7.3247, 7.3231, 7.321, 7.3191, 7.3231, 7.3214, 7.3252, 7.3289, 7.3267, 7.3246, 7.3229, 7.3224, 7.3212, 7.32, 7.3236, 7.326, 7.3241, 7.3179, 7.3164, 7.3202, 7.3133, 7.3121, 7.31, 7.3086, 7.3069, 7.3053, 7.3035, 7.3018, 7.2957, 7.2891, 7.2871, 7.287, 7.2849, 7.2828, 7.2811, 7.2796, 7.2777, 7.2764, 7.2745, 7.2736, 7.2715, 7.2705, 7.2747, 7.2733, 7.2669, 7.2707, 7.2687, 7.2619, 7.2601, 7.2637, 7.2637, 7.267, 7.2658, 7.2639, 7.2621, 7.2607, 7.2588, 7.2629, 7.2613, 7.2594, 7.2632, 7.2627, 7.2608, 7.2597, 7.2531, 7.2516, 7.2448, 7.2435, 7.2579, 7.2562, 7.2557, 7.2623, 7.2603, 7.2589, 7.2577, 7.2559, 7.2541, 7.2524, 7.2509, 7.249, 7.2566, 7.2551, 7.2484, 7.2467, 7.2448, 7.2481, 7.2463, 7.245, 7.2432, 7.2465, 7.2455, 7.2438, 7.2373, 7.2354, 7.2343, 7.2377, 7.2358, 7.2392, 7.2388, 7.237, 7.2353, 7.2335, 7.2324, 7.2312, 7.2359, 7.2353, 7.2343, 7.2335, 7.2334, 7.2371, 7.2359, 7.234, 7.2327, 7.2308, 7.229, 7.2272, 7.2259, 7.2247, 7.2233, 7.2215, 7.225, 7.2239, 7.2273, 7.2265, 7.2252, 7.2236, 7.227, 7.2256, 7.2241, 7.2229, 7.2265, 7.2248, 7.2233, 7.2216, 7.2249, 7.2281, 7.2268, 7.2398, 7.2384, 7.2372, 7.2404, 7.2393, 7.2379, 7.237, 7.2358, 7.2341, 7.2324, 7.2316, 7.2299, 7.2391, 7.2572, 7.2555, 7.2547, 7.258, 7.2613, 7.2597, 7.259, 7.2572, 7.2619, 7.2653, 7.2639, 7.2672, 7.2654, 7.2686, 7.2669, 7.2673, 7.2656, 7.264, 7.2625, 7.2621, 7.2626, 7.2683, 7.2622, 7.2669, 7.2654, 7.2738, 7.2819, 7.281, 7.2792, 7.2875, 7.2857, 7.2843, 7.2827, 7.2908, 7.2899, 7.2893, 7.2879, 7.2914, 7.2901, 7.2933, 7.2919, 7.291, 7.2925, 7.2914, 7.2899, 7.2884, 7.2869, 7.2852, 7.2884, 7.2874, 7.2857, 7.2841, 7.2881, 7.2865, 7.2809, 7.2794, 7.2828, 7.2861, 7.2891, 7.2833, 7.282, 7.2805, 7.279, 7.279, 7.2787, 7.277, 7.2762, 7.2747, 7.2777, 7.2761, 7.2752, 7.2738, 7.2728, 7.2716, 7.2699, 7.2739, 7.2768, 7.2751, 7.274, 7.2723, 7.2707, 7.2734, 7.2722, 7.2707, 7.2692, 7.2676, 7.2663, 7.2605, 7.2634, 7.2619, 7.2649, 7.2633, 7.2661, 7.2645, 7.2634, 7.2723, 7.2798, 7.2783, 7.2775, 7.276, 7.2743, 7.2728, 7.2758, 7.2749, 7.2734, 7.2735, 7.2728, 7.2711, 7.2704, 7.2687, 7.2677, 7.2624, 7.2611, 7.2595, 7.2583, 7.2572, 7.2647, 7.2639, 7.2624, 7.2611, 7.2597, 7.2586, 7.2616, 7.2602, 7.2595, 7.2579, 7.2566, 7.2593, 7.2584, 7.2572, 7.2559, 7.255, 7.2537, 7.2572, 7.2599, 7.2586, 7.2571, 7.2604, 7.259, 7.2574, 7.256, 7.2545, 7.2575, 7.2559, 7.2544, 7.2536, 7.2522, 7.2512, 7.2498, 7.2484, 7.2482, 7.2469, 7.2453, 7.2441, 7.2471, 7.2503, 7.2489, 7.2519, 7.2505, 7.2497, 7.2483, 7.2469, 7.2455, 7.2445, 7.2435, 7.2432, 7.2464, 7.2451, 7.2438, 7.2429, 7.2416, 7.2441, 7.2433, 7.2421, 7.2413, 7.24, 7.2395, 7.2381, 7.2373, 7.2359, 7.2308, 7.2346, 7.2337, 7.2354, 7.2347, 7.2339, 7.2327, 7.2323, 7.231, 7.2339, 7.2368, 7.2375, 7.2361, 7.2321, 7.2308, 7.2294, 7.2282, 7.2268, 7.2297, 7.2287, 7.2276, 7.231, 7.2299, 7.2287, 7.2273, 7.2262, 7.2255, 7.2247, 7.2237, 7.2223, 7.2215, 7.2247, 7.2239, 7.2228, 7.2256, 7.2246, 7.2276, 7.2264, 7.233, 7.2318, 7.2302, 7.2293, 7.2323, 7.2351, 7.2338, 7.2323, 7.2353, 7.2343, 7.234, 7.2367, 7.2353, 7.2338, 7.237, 7.236, 7.2347, 7.2367, 7.2395, 7.2382, 7.2369, 7.2356, 7.2348, 7.2374, 7.2404, 7.2391, 7.2391, 7.239, 7.2376, 7.2366, 7.2362, 7.2349, 7.2337, 7.2297, 7.2284, 7.2279, 7.2305, 7.2309, 7.2318, 7.2306, 7.2298, 7.2289, 7.2278, 7.2235, 7.2197, 7.2184, 7.2282, 7.2268, 7.2255, 7.2218, 7.2205, 7.2233, 7.2223, 7.221, 7.2202, 7.2188, 7.2174, 7.2166, 7.216, 7.2147, 7.2133, 7.2134, 7.2121, 7.2112, 7.2112, 7.2138, 7.2129, 7.2081, 7.207, 7.2096, 7.2083, 7.2069, 7.2055, 7.2043, 7.207, 7.2061, 7.2051, 7.2038, 7.2024, 7.2015, 7.2002, 7.1989, 7.1977, 7.1966, 7.1992, 7.1983, 7.197, 7.1957, 7.1945, 7.1969, 7.1996, 7.2027, 7.2014, 7.2166, 7.2152, 7.2142, 7.2131, 7.2125, 7.2113, 7.2104, 7.2092, 7.2084, 7.207, 7.2097, 7.2085, 7.2074, 7.2062, 7.2049, 7.2036, 7.2063, 7.2051, 7.2043, 7.2038, 7.2047, 7.2034, 7.2024, 7.1977, 7.2003, 7.203, 7.2056, 7.2046, 7.2075, 7.2077, 7.2103, 7.2094, 7.2126, 7.2156, 7.2109, 7.2113, 7.2158, 7.2222, 7.2213, 7.2235, 7.2225, 7.2302, 7.233, 7.2321, 7.2307, 7.2296, 7.2283, 7.2309, 7.2356, 7.2381, 7.2368, 7.2355, 7.2353, 7.2344, 7.2368, 7.2357, 7.2459, 7.2449, 7.2436, 7.2423, 7.2415, 7.2439, 7.2428, 7.2449, 7.2474, 7.2503, 7.2492, 7.2483, 7.2473, 7.2474, 7.2464, 7.2488, 7.2478, 7.2432, 7.2426, 7.2414, 7.24, 7.239, 7.238, 7.2369, 7.2357, 7.2372, 7.2361, 7.235, 7.2342, 7.233, 7.2358, 7.2345, 7.2376, 7.2398, 7.2405, 7.2392, 7.2381, 7.2377, 7.2366, 7.2356, 7.2348, 7.2335, 7.2325, 7.232, 7.2312, 7.2313, 7.2302, 7.229, 7.2279, 7.2278, 7.2276, 7.2265, 7.2252, 7.2242, 7.2263, 7.2284, 7.2272, 7.2264, 7.2253, 7.224, 7.2236, 7.2224, 7.2212, 7.22, 7.2224, 7.2247, 7.2255, 7.2245, 7.2232, 7.2224, 7.2216, 7.221, 7.2205, 7.2194, 7.2218, 7.221, 7.2167, 7.2161, 7.2155, 7.2143, 7.2137, 7.2128, 7.2221, 7.2213, 7.22, 7.2157, 7.2146, 7.2145, 7.2133, 7.214, 7.2128, 7.2152, 7.2141, 7.2128, 7.2128, 7.2117, 7.2107, 7.213, 7.2119, 7.2113, 7.2105, 7.2128, 7.2119, 7.2108, 7.2095, 7.2089, 7.2078, 7.2168, 7.2189, 7.2178, 7.2171, 7.2262, 7.2252, 7.2244, 7.2305, 7.2293, 7.2316, 7.2339, 7.2331, 7.232, 7.231, 7.2299, 7.2287, 7.2276, 7.2297, 7.2285, 7.2272, 7.2263, 7.2343, 7.2366, 7.2356, 7.2348, 7.237, 7.2362, 7.235, 7.234, 7.2366, 7.2375, 7.2415, 7.2408, 7.2398, 7.2388, 7.2384, 7.2372, 7.2366, 7.2354, 7.2348, 7.2337, 7.2325, 7.2314, 7.2302, 7.2297, 7.2299, 7.2333, 7.2323, 7.2333, 7.2322, 7.231, 7.2333, 7.2321, 7.2309, 7.2297, 7.2289, 7.2277, 7.227, 7.2333, 7.2336, 7.2341, 7.2344, 7.2336, 7.2324, 7.2314, 7.2308, 7.2328, 7.2316, 7.2304, 7.2298, 7.2316, 7.2338, 7.2329, 7.2318, 7.2316, 7.2305, 7.2294, 7.2255, 7.2244, 7.2235, 7.2223, 7.2244, 7.2235, 7.2227, 7.2217, 7.2206, 7.2195, 7.2188, 7.221, 7.2199, 7.2188, 7.2183, 7.2204, 7.2225, 7.2279, 7.2268, 7.229, 7.2281, 7.2274, 7.2263, 7.2252, 7.2246, 7.2243, 7.2232, 7.2221, 7.2213, 7.2205, 7.2194, 7.2199, 7.2187, 7.2179, 7.217, 7.2171, 7.2195, 7.2183, 7.2204, 7.2224, 7.2217, 7.2207, 7.2199, 7.2193, 7.2181, 7.2204, 7.2194, 7.2188, 7.2212, 7.2206, 7.2194, 7.219, 7.2213, 7.2289, 7.2278, 7.227, 7.229, 7.2279, 7.227, 7.2262, 7.2281, 7.2244, 7.2235, 7.2255, 7.2247, 7.2236, 7.2257, 7.2249, 7.2242, 7.2233, 7.2222, 7.2215, 7.2209, 7.2202, 7.2195, 7.2186, 7.2177, 7.2166, 7.2156, 7.2147, 7.2136, 7.2129, 7.2151, 7.2175, 7.2168, 7.219, 7.2179, 7.217, 7.219, 7.2182, 7.2179, 7.2167, 7.2156, 7.2145, 7.2136, 7.2126, 7.2089, 7.2082, 7.2103, 7.2124, 7.2116, 7.211, 7.2195, 7.2157, 7.215, 7.2143, 7.2134, 7.2153, 7.2148, 7.2167, 7.2188, 7.2178, 7.2167, 7.2156, 7.2152, 7.2148, 7.2142, 7.2163, 7.2184, 7.2174, 7.2167, 7.2158, 7.218, 7.217, 7.2173, 7.2165, 7.2158, 7.2179, 7.2168, 7.2187, 7.2179, 7.2201, 7.2225, 7.2218, 7.2215, 7.2204, 7.2193, 7.2187, 7.2176, 7.2168, 7.2159, 7.2177, 7.214, 7.2159, 7.215, 7.217, 7.224, 7.2212, 7.2219, 7.2281, 7.2273, 7.2264, 7.2364, 7.2386, 7.2386, 7.2378, 7.2398, 7.2387, 7.2376, 7.2366, 7.233, 7.2319, 7.2309, 7.2272, 7.2261, 7.225, 7.2248, 7.2269, 7.2287, 7.2308, 7.2298, 7.2296, 7.2288, 7.2282, 7.2272, 7.2332, 7.2325, 7.2314, 7.2305, 7.2294, 7.2287, 7.2305, 7.2295, 7.2286, 7.2304, 7.2295, 7.229, 7.2356, 7.232, 7.2314, 7.2307, 7.2299, 7.232, 7.2342, 7.2337, 7.2327, 7.2319, 7.2309, 7.2329, 7.2349, 7.2344, 7.2369, 7.2389, 7.2378, 7.2368, 7.2374, 7.2391, 7.2381, 7.2417, 7.2438, 7.2411, 7.2374, 7.2347, 7.2399, 7.2417, 7.2408, 7.2398, 7.239, 7.2409, 7.2403, 7.2395, 7.2385, 7.2375, 7.2393, 7.2413, 7.2403, 7.2393, 7.2386, 7.2376, 7.2369, 7.236, 7.235, 7.2472, 7.2492, 7.2482, 7.2476, 7.2466, 7.2485, 7.2518, 7.2509, 7.256, 7.255, 7.2572, 7.2545, 7.2551, 7.2544, 7.2515, 7.2515, 7.2548, 7.2538, 7.253, 7.2532, 7.2523, 7.2577, 7.2595, 7.2587, 7.2583, 7.2574, 7.2624, 7.2668, 7.2663, 7.268, 7.267, 7.2668, 7.2635, 7.2625, 7.2618, 7.2636, 7.2655, 7.2673, 7.2663, 7.2652, 7.267, 7.2689, 7.2679, 7.2675, 7.2698, 7.2689, 7.2679, 7.2699, 7.269, 7.272, 7.2755, 7.2746, 7.2737, 7.2757, 7.2774, 7.2767, 7.2757, 7.2777, 7.2775, 7.2794, 7.2784, 7.2776, 7.2769, 7.2793, 7.2812, 7.2802, 7.2792, 7.2787, 7.2779, 7.2743, 7.2716, 7.2681, 7.2676, 7.2696, 7.2702, 7.2695, 7.2697, 7.269, 7.2709, 7.2703, 7.2693, 7.2683, 7.2676, 7.2681, 7.2685, 7.2677, 7.2669, 7.2691, 7.2683, 7.2673, 7.2641, 7.2635, 7.2714, 7.2705, 7.2722, 7.2715, 7.2708, 7.2698, 7.2688, 7.2732, 7.2722, 7.272, 7.2714, 7.273, 7.2721, 7.2714, 7.2732, 7.2723, 7.2714, 7.2704, 7.2723, 7.2739, 7.2818, 7.2808, 7.2798, 7.2817, 7.2835, 7.283, 7.2822, 7.2834, 7.286, 7.2879, 7.2871, 7.2889, 7.2879, 7.287, 7.2861, 7.2828, 7.282, 7.2814, 7.2805, 7.2796, 7.2788, 7.278, 7.2796, 7.2789, 7.2782, 7.2774, 7.2768, 7.276, 7.2778, 7.2796, 7.2797, 7.2764, 7.2755, 7.2746, 7.2764, 7.276, 7.2756, 7.2774, 7.2765, 7.2756, 7.2748, 7.2764, 7.2757, 7.275, 7.2743, 7.2734, 7.2754, 7.2769, 7.2759, 7.2775, 7.277, 7.2761, 7.2751, 7.2768, 7.2758, 7.2726, 7.2716, 7.2721, 7.2762, 7.2754, 7.2771, 7.2761, 7.2757, 7.2775, 7.2743, 7.2739, 7.2733, 7.2729, 7.2823, 7.2814, 7.2834, 7.2825, 7.2827, 7.2826, 7.2819, 7.2815, 7.2806, 7.2798, 7.2791, 7.2785, 7.2805, 7.2821, 7.2812, 7.2804, 7.2796, 7.2788, 7.2778, 7.2789, 7.2781, 7.2771, 7.2763, 7.2754, 7.2745, 7.2739, 7.2762, 7.2783, 7.28, 7.2818, 7.2811, 7.2829, 7.282, 7.2813, 7.2803, 7.2795, 7.2812, 7.2803, 7.282, 7.2811, 7.2802, 7.2821, 7.2814, 7.2804, 7.2816, 7.2808, 7.2799, 7.2816, 7.2834, 7.2825, 7.2816, 7.2857, 7.2847, 7.2838, 7.2855, 7.2846, 7.2837, 7.2831, 7.2825, 7.2818, 7.2809, 7.2826, 7.284, 7.2831, 7.2826, 7.2819, 7.2787, 7.2804, 7.2823, 7.284, 7.2831, 7.2822, 7.2814, 7.2806, 7.2797, 7.2788, 7.2779, 7.277, 7.2787, 7.2781, 7.2796, 7.2794, 7.2811, 7.2802, 7.2818, 7.2836, 7.2831, 7.2849, 7.2841, 7.2837, 7.2828, 7.282, 7.2813, 7.2805, 7.2796, 7.2786, 7.2807, 7.2825, 7.2818, 7.2817, 7.281, 7.2805, 7.2804, 7.2795, 7.2787, 7.278, 7.2773, 7.2793, 7.2811, 7.2808, 7.28, 7.2808, 7.2801, 7.2771, 7.2762, 7.2753, 7.2747, 7.2762, 7.2755, 7.275, 7.2766, 7.2759, 7.275, 7.2765, 7.2757, 7.2753, 7.2748, 7.2741, 7.2736, 7.2727, 7.2719, 7.2736, 7.2728, 7.2744, 7.2735, 7.275, 7.2747, 7.2739, 7.2732, 7.277, 7.2761, 7.2755, 7.2749, 7.2743, 7.2735, 7.2727, 7.2718, 7.2713, 7.2709, 7.276, 7.2777, 7.2769, 7.2761, 7.2761, 7.2762, 7.2759, 7.2777, 7.277, 7.2767, 7.2758, 7.2752, 7.2746, 7.2738, 7.2731, 7.2743, 7.2737, 7.2736, 7.2752, 7.2743, 7.276, 7.2759, 7.2753, 7.2724, 7.274, 7.2732, 7.275, 7.2743, 7.2734, 7.2727, 7.2746, 7.2738, 7.2731, 7.2723, 7.2715, 7.2708, 7.2733, 7.2725, 7.2718, 7.2714, 7.2709, 7.2724, 7.274, 7.2739, 7.273, 7.2727, 7.2719, 7.2712, 7.2707, 7.2698, 7.269, 7.269, 7.2685, 7.2685, 7.2679, 7.273, 7.2721, 7.2736, 7.2751, 7.2743, 7.2761, 7.2812, 7.2805, 7.2835, 7.2852, 7.2868, 7.2883, 7.2876, 7.2869, 7.2869, 7.2861, 7.2853, 7.2846, 7.2863, 7.2856, 7.2847, 7.284, 7.2831, 7.2829, 7.2823, 7.2815, 7.2807, 7.2799, 7.2793, 7.2785, 7.2779, 7.2775, 7.2793, 7.2785, 7.2777, 7.2792, 7.2786, 7.2802, 7.2793, 7.279, 7.2786, 7.2778, 7.2808, 7.2821, 7.2813, 7.2807, 7.2822, 7.2813, 7.2809, 7.2801, 7.2794, 7.2789, 7.278, 7.2794, 7.2785, 7.2782, 7.2797, 7.279, 7.2783, 7.2778, 7.2775, 7.2771, 7.2788, 7.2781, 7.2778, 7.2773, 7.2749, 7.2741, 7.2735, 7.275, 7.2751, 7.2767, 7.276, 7.2783, 7.2775, 7.2767, 7.276, 7.2752, 7.2769, 7.2762, 7.2755, 7.2748, 7.2742, 7.2734, 7.2726, 7.272, 7.2737, 7.2729, 7.2737, 7.2734, 7.2729, 7.2744, 7.2759, 7.2751, 7.2747, 7.2738, 7.2733, 7.2748, 7.2742, 7.2757, 7.2729, 7.2742, 7.2734, 7.2725, 7.2742, 7.2736, 7.2751, 7.2723, 7.2738, 7.273, 7.2744, 7.2738, 7.2732, 7.2748, 7.2742, 7.2734, 7.2729, 7.2721, 7.2715, 7.273, 7.2722, 7.2736, 7.2732, 7.2726, 7.2718, 7.2711, 7.2703, 7.2695, 7.269, 7.2738, 7.2732, 7.2724, 7.2716, 7.2708, 7.2701, 7.2693, 7.2709, 7.2703, 7.2677, 7.2692, 7.2686, 7.2701, 7.2721, 7.2714, 7.2706, 7.2721, 7.2714, 7.2713, 7.2707, 7.2705, 7.2698, 7.2691, 7.2686, 7.2678, 7.2692, 7.2684, 7.2679, 7.2684, 7.2698, 7.2695, 7.271, 7.2707, 7.2733, 7.2747, 7.274, 7.2734, 7.2729, 7.2722, 7.2715, 7.2709, 7.2703, 7.2697, 7.2712, 7.2727, 7.2719, 7.2734, 7.2729, 7.2721, 7.2714, 7.2708, 7.2722, 7.2714, 7.2728, 7.2722, 7.2736, 7.2729, 7.2721, 7.2736, 7.2729, 7.2791, 7.2783, 7.2776, 7.2791, 7.2783, 7.2777, 7.2772, 7.2765, 7.276, 7.2754, 7.2747, 7.2804, 7.2811, 7.2805, 7.2778, 7.2772, 7.2765, 7.2757, 7.2749, 7.2741, 7.2734, 7.2727, 7.2721, 7.2717, 7.2711, 7.2746, 7.2761, 7.2756, 7.2769, 7.2784, 7.2779, 7.2771, 7.2763, 7.2755, 7.2748, 7.2741, 7.2734, 7.2726, 7.2719, 7.2716, 7.273, 7.2726, 7.275, 7.2746, 7.2738, 7.2752, 7.2749, 7.2764, 7.2756, 7.2749, 7.2742, 7.2739, 7.2739, 7.2753, 7.2752, 7.2745, 7.2763, 7.2758, 7.2774, 7.2769, 7.2761, 7.2753, 7.2745, 7.274, 7.2734, 7.2748, 7.2741, 7.2737, 7.273, 7.2726, 7.2718, 7.271, 7.2703, 7.2695, 7.2689, 7.2703, 7.2695, 7.2687, 7.2662, 7.2659, 7.2652, 7.2645, 7.2637, 7.2623, 7.2618, 7.2613, 7.2607, 7.2624, 7.262, 7.266, 7.2676, 7.2669, 7.2662, 7.2657, 7.2651, 7.2645, 7.2661, 7.2658, 7.2653, 7.2646, 7.2639, 7.2652, 7.2646, 7.2659, 7.2652, 7.2644, 7.2637, 7.2633, 7.2731, 7.2725, 7.2739, 7.2732, 7.2729, 7.2725, 7.2739, 7.2736, 7.2729, 7.2743, 7.2737, 7.2732, 7.2725, 7.2717, 7.2709, 7.2701, 7.2715, 7.2731, 7.2725, 7.2718, 7.2711, 7.2705, 7.2719, 7.2712, 7.2707, 7.2699, 7.2691, 7.2683, 7.2679, 7.2672, 7.2666, 7.266, 7.2653, 7.2648, 7.2662, 7.2676, 7.2671, 7.2664, 7.27, 7.2695, 7.2688, 7.2663, 7.2656, 7.2651, 7.2644, 7.2637, 7.2744, 7.2761, 7.2754, 7.2766, 7.2762, 7.2775, 7.2767, 7.2762, 7.2754, 7.2746, 7.274, 7.2734, 7.2746, 7.2739, 7.2752, 7.2745, 7.2719, 7.2713, 7.2705, 7.2719, 7.2734, 7.2728, 7.2724, 7.2717, 7.2691, 7.2683, 7.2676, 7.2669, 7.2662, 7.2658, 7.2672, 7.2726, 7.2719, 7.2714, 7.2708, 7.2716, 7.2712, 7.2706, 7.2722, 7.2715, 7.2711, 7.2725, 7.2719, 7.2713, 7.2707, 7.27, 7.2714, 7.2708, 7.2701, 7.2694, 7.2706, 7.2719, 7.2711, 7.2716, 7.2709, 7.2702, 7.2715, 7.2707, 7.2701, 7.2694, 7.2686, 7.2699, 7.2692, 7.2686, 7.2698, 7.2695, 7.2689, 7.2681, 7.2695, 7.2689, 7.2683, 7.2676, 7.2671, 7.2686, 7.2679, 7.2672, 7.2666, 7.266, 7.2654, 7.2649, 7.2663, 7.2655, 7.2672, 7.2686, 7.27, 7.2715, 7.2728, 7.2721, 7.2723, 7.2718, 7.2731, 7.2745, 7.274, 7.2747, 7.274, 7.2721, 7.2754, 7.2747, 7.2763, 7.2758, 7.2773, 7.2767, 7.2761, 7.2779, 7.2788, 7.2801, 7.2797, 7.2792, 7.2796, 7.2809, 7.2803, 7.2798, 7.2811, 7.2807, 7.2801, 7.2794, 7.279, 7.2783, 7.2777, 7.277, 7.2764, 7.2759, 7.2752, 7.2766, 7.2759, 7.2753, 7.2769, 7.2784, 7.2778, 7.2771, 7.2768, 7.2762, 7.2776, 7.2769, 7.2763, 7.2775, 7.277, 7.2766, 7.2759, 7.2752, 7.2765, 7.2758, 7.2755, 7.275, 7.2743, 7.2736, 7.2732, 7.2744, 7.2757, 7.2753, 7.2746, 7.2741, 7.2737, 7.2712, 7.2725, 7.272, 7.2733, 7.2732, 7.2725, 7.2718, 7.2711, 7.2723, 7.2741, 7.2735, 7.2729, 7.2722, 7.2717, 7.2711, 7.2709, 7.2702, 7.2695, 7.2698, 7.2694, 7.2687, 7.268, 7.2693, 7.2669, 7.2683, 7.2697, 7.2691, 7.2702, 7.2703, 7.2696, 7.269, 7.274, 7.2735, 7.2728, 7.2721, 7.2717, 7.2731, 7.2724, 7.2717, 7.2729, 7.2743, 7.2736, 7.2729, 7.2722, 7.2715, 7.2728, 7.2778, 7.2773, 7.2766, 7.2759, 7.2773, 7.2788, 7.2781, 7.2774, 7.2768, 7.2761, 7.2756, 7.2751, 7.2765, 7.2796, 7.2812, 7.2805, 7.28, 7.2793, 7.2805, 7.2798, 7.2791, 7.2803, 7.28, 7.2806, 7.2802, 7.2804, 7.2819, 7.2812, 7.2807, 7.2802, 7.2815, 7.2829, 7.2842, 7.2854, 7.2868, 7.2864, 7.2858, 7.2851, 7.2845, 7.2838, 7.2833, 7.2827, 7.2821, 7.2816, 7.2829, 7.2825, 7.2841, 7.2838, 7.2871, 7.2864, 7.2858, 7.2873, 7.2866, 7.2879, 7.2888, 7.2894, 7.2889, 7.2883, 7.2876, 7.2869, 7.2846, 7.2859, 7.2857, 7.285, 7.2863, 7.2857, 7.2851, 7.2844, 7.284, 7.2817, 7.281, 7.2823, 7.2816, 7.2829, 7.2827, 7.284, 7.2836, 7.2843, 7.2844, 7.2839, 7.2832, 7.2826, 7.2824, 7.2887, 7.2883, 7.2894, 7.2889, 7.29, 7.2905, 7.2917, 7.2911, 7.2906, 7.2902, 7.2896, 7.289, 7.2883, 7.2879, 7.2872, 7.2865, 7.2861, 7.2854, 7.2847, 7.2841, 7.2834, 7.2828, 7.2823, 7.2818, 7.2794, 7.2787, 7.278, 7.2775, 7.2769, 7.2762, 7.2756, 7.275, 7.2745, 7.274, 7.2735, 7.2712, 7.2708, 7.2721, 7.2714, 7.271, 7.2703, 7.2697, 7.2692, 7.2686, 7.2679, 7.2673, 7.2667, 7.266, 7.2655, 7.2649, 7.2645, 7.2641, 7.2635, 7.2632, 7.2644, 7.2655, 7.265, 7.2667, 7.2679, 7.2673, 7.2667, 7.2699, 7.273, 7.2725, 7.2738, 7.2733, 7.2745, 7.2758, 7.2808, 7.2813, 7.2826, 7.282, 7.2814, 7.2811, 7.2808, 7.2802, 7.2796, 7.2792, 7.2805, 7.2799, 7.2794, 7.279, 7.2785, 7.2785, 7.2797, 7.2808, 7.2803, 7.28, 7.2811, 7.2823, 7.2817, 7.2813, 7.2808, 7.2786, 7.2781, 7.2776, 7.2771, 7.2766, 7.2762, 7.2774, 7.2771, 7.2764, 7.2776, 7.2771, 7.2768, 7.2762, 7.2773, 7.2766, 7.276, 7.2754, 7.2748, 7.2742, 7.2738, 7.2751, 7.2729, 7.2723, 7.2721, 7.2716, 7.2711, 7.2706, 7.27, 7.2694, 7.2725, 7.2719, 7.2729, 7.2724, 7.2719, 7.2715, 7.2711, 7.2722, 7.2733, 7.2729, 7.2723, 7.2718, 7.2712, 7.2709, 7.2705, 7.2699, 7.2711, 7.2705, 7.2717, 7.2729, 7.2723, 7.2718, 7.273, 7.2742, 7.272, 7.2714, 7.2726, 7.2725, 7.2719, 7.2723, 7.2701, 7.2695, 7.2708, 7.2702, 7.2714, 7.2708, 7.272, 7.2731, 7.2725, 7.2747, 7.2759, 7.2758, 7.2752, 7.2763, 7.2761, 7.2756, 7.275, 7.2761, 7.2772, 7.2766, 7.2762, 7.2773, 7.2769, 7.278, 7.2774, 7.277, 7.2765, 7.2758, 7.2772, 7.2783, 7.2778, 7.2771, 7.2766, 7.2759, 7.2753, 7.2764, 7.2774, 7.2769, 7.2763, 7.2773, 7.2786, 7.2779, 7.2772, 7.2767, 7.276, 7.2753, 7.2747, 7.2741, 7.2752, 7.2746, 7.2741, 7.2737, 7.2731, 7.2725, 7.2739, 7.2736, 7.2731, 7.2725, 7.272, 7.2715, 7.2726, 7.2731, 7.2725, 7.2705, 7.2699, 7.2695, 7.2707, 7.272, 7.2714, 7.2726, 7.2721, 7.2718, 7.2714, 7.2726, 7.2722, 7.2717, 7.2711, 7.2705, 7.2705, 7.27, 7.2695, 7.2691, 7.2726, 7.272, 7.2714, 7.2726, 7.272, 7.2733, 7.2745, 7.274, 7.2737, 7.2731, 7.2728, 7.2723, 7.2718, 7.2712, 7.2708, 7.2703, 7.2698, 7.2711, 7.2707, 7.2718, 7.2713, 7.2724, 7.2738, 7.2734, 7.2728, 7.2723, 7.2717, 7.2729, 7.2723, 7.2719, 7.273, 7.2725, 7.2722, 7.2716, 7.2727, 7.2722, 7.2733, 7.2713, 7.2721, 7.2715, 7.271, 7.2706, 7.27, 7.2694, 7.2688, 7.2683, 7.2677, 7.2672, 7.2667, 7.2663, 7.2658, 7.2652, 7.2664, 7.2658, 7.2653, 7.2648, 7.2644, 7.2639, 7.264, 7.2636, 7.2635, 7.263, 7.2624, 7.2619, 7.2639, 7.2652, 7.2677, 7.2739, 7.2753, 7.2747, 7.2758, 7.2752, 7.2748, 7.2742, 7.2789, 7.2785, 7.2779, 7.2808, 7.2802, 7.2802, 7.2796, 7.2808, 7.2802, 7.2814, 7.2808, 7.2803, 7.2797, 7.2804, 7.2816, 7.288, 7.2874, 7.287, 7.2864, 7.2858, 7.2852, 7.2853, 7.2847, 7.2842, 7.2838, 7.2836, 7.283, 7.2824, 7.2818, 7.2814, 7.2826, 7.2822, 7.2818, 7.2814, 7.2826, 7.2837, 7.2831, 7.2829, 7.2824, 7.2819, 7.2814, 7.2811, 7.2808, 7.2787, 7.2784, 7.2778, 7.2776, 7.2789, 7.2783, 7.2777, 7.2773, 7.2767, 7.2778, 7.2772, 7.2767, 7.2763, 7.2758, 7.2737, 7.2734, 7.2729, 7.2725, 7.272, 7.2732, 7.2716, 7.2726, 7.2721, 7.2717, 7.2727, 7.2741, 7.2752, 7.2746, 7.2742, 7.2744, 7.2748, 7.2746, 7.274, 7.2737, 7.2734, 7.2745, 7.2755, 7.2751, 7.273, 7.2724, 7.2719, 7.273, 7.2726, 7.2721, 7.2715, 7.271, 7.2705, 7.2701, 7.2695, 7.2692, 7.269, 7.2685, 7.2696, 7.269, 7.2685, 7.2696, 7.2707, 7.2704, 7.27, 7.2694, 7.2688, 7.2682, 7.2677, 7.2672, 7.2667, 7.2662, 7.2673, 7.2668, 7.2666, 7.266, 7.2655, 7.2652, 7.2667, 7.2661, 7.2676, 7.2671, 7.2681, 7.2693, 7.2706, 7.2716, 7.2711, 7.2707, 7.2701, 7.2697, 7.2693, 7.2704, 7.2716, 7.2711, 7.2705, 7.2701, 7.2697, 7.2693, 7.2688, 7.2692, 7.2687, 7.2682, 7.2677, 7.2687, 7.2667, 7.2663, 7.2674, 7.2668, 7.2664, 7.2658, 7.2671, 7.2666, 7.2662, 7.2661, 7.2674, 7.2685, 7.268, 7.2674, 7.2688, 7.2706, 7.2704, 7.2715, 7.2709, 7.272, 7.2714, 7.2712, 7.2708, 7.2703, 7.2697, 7.2691, 7.2704, 7.2714, 7.2708, 7.2702, 7.2697, 7.2694, 7.2705, 7.27, 7.2698, 7.2692, 7.2687, 7.2683, 7.2678, 7.2688, 7.2684, 7.2678, 7.2689, 7.2701, 7.2698, 7.2709, 7.2716, 7.2727, 7.2723, 7.2736, 7.2733, 7.2744, 7.2739, 7.2733, 7.2745, 7.2742, 7.2738, 7.2733, 7.2744, 7.2754, 7.2752, 7.2747, 7.2741, 7.2736, 7.2747, 7.2743, 7.274, 7.2735, 7.2731, 7.2741, 7.2737, 7.2732, 7.2727, 7.2726, 7.272, 7.2714, 7.271, 7.2704, 7.2701, 7.2713, 7.2708, 7.2704, 7.2714, 7.2711, 7.2707, 7.2702, 7.2683, 7.2677, 7.2672, 7.2671, 7.2667, 7.2661, 7.2644, 7.2639, 7.2649, 7.2661, 7.2658, 7.2653, 7.2647, 7.2643, 7.2639, 7.2636, 7.2646, 7.2631, 7.2626, 7.2639, 7.265, 7.2646, 7.2642, 7.2623, 7.2618, 7.2614, 7.2626, 7.2621, 7.2616, 7.2613, 7.261, 7.2621, 7.2615, 7.2625, 7.262, 7.2631, 7.2629, 7.2624, 7.2626, 7.2622, 7.2617, 7.2615, 7.2612, 7.2609, 7.2605, 7.2599, 7.2595, 7.2622, 7.2652, 7.2649, 7.2646, 7.264, 7.2635, 7.2631, 7.2627, 7.2623, 7.265, 7.2645, 7.2631, 7.2628, 7.2624, 7.2621, 7.2619, 7.2615, 7.2613, 7.2609, 7.2619, 7.2615, 7.261, 7.2607, 7.2602, 7.2598, 7.2593, 7.2606, 7.2601, 7.2595, 7.2605, 7.2616, 7.2612, 7.2626, 7.2627, 7.2623, 7.2633, 7.2629, 7.2626, 7.2621, 7.2615, 7.2626, 7.2622, 7.2631, 7.2626, 7.2622, 7.2634, 7.263, 7.2642, 7.2651, 7.2661, 7.2659, 7.2671, 7.2666, 7.2661, 7.2671, 7.2682, 7.2678, 7.2673, 7.2668, 7.268, 7.2675, 7.267, 7.2681, 7.2676, 7.2671, 7.2666, 7.2661, 7.2656, 7.2668, 7.2663, 7.2658, 7.2668, 7.2666, 7.2661, 7.2656, 7.2666, 7.2661, 7.2656, 7.2652, 7.2647, 7.2641, 7.2622, 7.2616, 7.2611, 7.2605, 7.2599, 7.2593, 7.2589, 7.2584, 7.2579, 7.2575, 7.2586, 7.2596, 7.2591, 7.2589, 7.2602, 7.2598, 7.2595, 7.2592, 7.2587, 7.2584, 7.2593, 7.2588, 7.2594, 7.2591, 7.2588, 7.2585, 7.2579, 7.2579, 7.2576, 7.2571, 7.2567, 7.2562, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2549, 7.2546, 7.2543, 7.2538, 7.2548, 7.2559, 7.2555, 7.2551, 7.2548, 7.2559, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2545, 7.2555, 7.2564, 7.2574, 7.257, 7.2582, 7.2577, 7.2573, 7.2569, 7.2582, 7.2577, 7.2559, 7.2554, 7.2551, 7.2562, 7.2558, 7.257, 7.2564, 7.2561, 7.2557, 7.2615, 7.2615, 7.261, 7.2635, 7.263, 7.2624, 7.2634, 7.2629, 7.2624, 7.2606, 7.2602, 7.2597, 7.2592, 7.2588, 7.2583, 7.2578, 7.2559, 7.2555, 7.2552, 7.2562, 7.2559, 7.2558, 7.2567, 7.2577, 7.2587, 7.2583, 7.2578, 7.2573, 7.2568, 7.2578, 7.2574, 7.2569, 7.2582, 7.2578, 7.2573, 7.2583, 7.2593, 7.2587, 7.2582, 7.2577, 7.2559, 7.2554, 7.2563, 7.2558, 7.2568, 7.2566, 7.2562, 7.2558, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2561, 7.2556, 7.2551, 7.2547, 7.2529, 7.2524, 7.252, 7.2529, 7.2524, 7.2536, 7.2531, 7.2526, 7.2535, 7.2541, 7.2536, 7.2547, 7.2552, 7.2548, 7.2545, 7.2544, 7.2544, 7.2539, 7.2534, 7.2544, 7.2541, 7.2537, 7.2535, 7.2531, 7.2527, 7.2522, 7.2533, 7.2528, 7.2523, 7.2518, 7.2528, 7.2537, 7.2532, 7.2529, 7.2537, 7.2532, 7.2542, 7.2539, 7.2535, 7.2532, 7.253, 7.2525, 7.2539, 7.2534, 7.2543, 7.2552, 7.2549, 7.2544, 7.2539, 7.2549, 7.256, 7.2556, 7.2567, 7.2569, 7.2564, 7.2575, 7.2571, 7.2568, 7.2564, 7.256, 7.2557, 7.2567, 7.2562, 7.2558, 7.2554, 7.2551, 7.2546, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2534, 7.253, 7.2529, 7.2524, 7.2539, 7.2555, 7.2557, 7.2553, 7.2563, 7.2573, 7.2569, 7.2565, 7.2562, 7.2557, 7.2553, 7.2549, 7.2553, 7.2549, 7.2545, 7.2541, 7.2538, 7.2541, 7.2536, 7.2531, 7.2563, 7.2571, 7.2569, 7.2564, 7.2573, 7.2568, 7.2564, 7.2561, 7.2562, 7.2572, 7.2591, 7.2595, 7.2612, 7.2607, 7.2602, 7.2597, 7.2595, 7.2591, 7.2587, 7.2574, 7.2585, 7.2582, 7.2577, 7.2586, 7.2595, 7.2594, 7.2589, 7.2586, 7.2584, 7.2593, 7.2589, 7.2586, 7.2584, 7.258, 7.2593, 7.2589, 7.2584, 7.2584, 7.2593, 7.2588, 7.2584, 7.2594, 7.2576, 7.2586, 7.2582, 7.2577, 7.2588, 7.2584, 7.2581, 7.262, 7.2615, 7.2611, 7.261, 7.2611, 7.2612, 7.2594, 7.2603, 7.2612, 7.2607, 7.2617, 7.2612, 7.2608, 7.2604, 7.2651, 7.2647, 7.2656, 7.2693, 7.2689, 7.2686, 7.2681, 7.2677, 7.2672, 7.2702, 7.2711, 7.2735, 7.2731, 7.2754, 7.2751, 7.2747, 7.2757, 7.278, 7.2776, 7.2784, 7.2779, 7.2774, 7.2771, 7.2795, 7.2793, 7.2788, 7.2798, 7.2797, 7.2792, 7.279, 7.2788, 7.2798, 7.2795, 7.2792, 7.28, 7.2837, 7.2833, 7.2828, 7.283, 7.2813, 7.2808, 7.2817, 7.2813, 7.2808, 7.2805, 7.2802, 7.2798, 7.2787, 7.2784, 7.2779, 7.2776, 7.2785, 7.2794, 7.279, 7.2813, 7.2822, 7.2817, 7.2813, 7.281, 7.2807, 7.2805, 7.2803, 7.2799, 7.2808, 7.2803, 7.2813, 7.2809, 7.2804, 7.28, 7.2783, 7.2778, 7.2773, 7.2768, 7.2766, 7.2761, 7.2758, 7.2753, 7.2748, 7.2746, 7.2741, 7.2737, 7.2733, 7.273, 7.2725, 7.2723, 7.2718, 7.2713, 7.271, 7.2705, 7.2701, 7.2696, 7.2693, 7.2688, 7.2684, 7.268, 7.2689, 7.2672, 7.2667, 7.2665, 7.2673, 7.2668, 7.2663, 7.266, 7.2669, 7.2666, 7.2675, 7.267, 7.2668, 7.2663, 7.2658, 7.2653, 7.2662, 7.2658, 7.2654, 7.2656, 7.2653, 7.2649, 7.2645, 7.2641, 7.2636, 7.2645, 7.264, 7.2623, 7.2631, 7.2639, 7.2636, 7.2631, 7.2626, 7.2634, 7.2629, 7.2625, 7.2621, 7.2617, 7.2613, 7.2609, 7.2604, 7.26, 7.2596, 7.2593, 7.2588, 7.2583, 7.2578, 7.2573, 7.2582, 7.2592, 7.259, 7.2598, 7.2593, 7.2589, 7.2584, 7.258, 7.2578, 7.2575, 7.257, 7.2566, 7.2561, 7.2556, 7.2552, 7.2561, 7.2557, 7.256, 7.2556, 7.2552, 7.255, 7.2547, 7.2543, 7.2539, 7.2549, 7.2559, 7.2555, 7.2551, 7.2548, 7.2543, 7.2539, 7.2537, 7.2533, 7.2529, 7.2524, 7.2519, 7.2528, 7.2525, 7.251, 7.2505, 7.25, 7.2497, 7.2493, 7.2488, 7.2486, 7.2495, 7.2493, 7.2502, 7.2499, 7.2496, 7.2505, 7.2503, 7.25, 7.2496, 7.2495, 7.2491, 7.25, 7.2496, 7.2506, 7.2502, 7.2498, 7.2493, 7.2502, 7.2497, 7.2492, 7.25, 7.251, 7.2507, 7.2517, 7.2513, 7.2528, 7.2524, 7.2519, 7.2516, 7.2513, 7.251, 7.2507, 7.2504, 7.25, 7.2497, 7.2494, 7.2489, 7.2498, 7.2507, 7.2516, 7.2525, 7.2521, 7.2516, 7.2524, 7.2522, 7.2518, 7.2513, 7.2521, 7.2531, 7.2527, 7.2522, 7.2519, 7.2515, 7.2511, 7.2507, 7.2524, 7.2519, 7.2528, 7.2524, 7.252, 7.2516, 7.2527, 7.2522, 7.2519, 7.2517, 7.2526, 7.2521, 7.2518, 7.2516, 7.2512, 7.251, 7.2508, 7.2505, 7.2523, 7.2519, 7.2515, 7.2512, 7.2508, 7.2504, 7.2502, 7.2512, 7.2508, 7.2504, 7.2501, 7.2502, 7.2498, 7.2493, 7.2489, 7.2498, 7.2495, 7.2491, 7.2486, 7.2482, 7.2478, 7.2474, 7.2471, 7.2469, 7.2467, 7.2465, 7.2461, 7.247, 7.2479, 7.2503, 7.2499, 7.2494, 7.249, 7.2486, 7.2482, 7.2491, 7.2487, 7.2483, 7.2479, 7.2475, 7.2472, 7.2468, 7.2464, 7.2461, 7.2457, 7.2452, 7.2448, 7.2445, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2446, 7.2442, 7.2438, 7.2447, 7.2443, 7.2439, 7.2437, 7.2432, 7.244, 7.2453, 7.2448, 7.2443, 7.2438, 7.2434, 7.2443, 7.2441, 7.2437, 7.2446, 7.2454, 7.245, 7.2448, 7.2447, 7.2445, 7.244, 7.2462, 7.2458, 7.2453, 7.245, 7.2448, 7.2444, 7.244, 7.2463, 7.2448, 7.2457, 7.2454, 7.245, 7.2446, 7.243, 7.2427, 7.2449, 7.2457, 7.2453, 7.2461, 7.2457, 7.2466, 7.2475, 7.2471, 7.2473, 7.2469, 7.2477, 7.2474, 7.2496, 7.2491, 7.2512, 7.251, 7.2506, 7.249, 7.2485, 7.2481, 7.2479, 7.2488, 7.2484, 7.2493, 7.2492, 7.2489, 7.2498, 7.2494, 7.2504, 7.2501, 7.2497, 7.2494, 7.2522, 7.2532, 7.2541, 7.2527, 7.2525, 7.2521, 7.2549, 7.2545, 7.2554, 7.255, 7.2558, 7.2566, 7.2563, 7.2559, 7.2555, 7.2551, 7.255, 7.2546, 7.2549, 7.2546, 7.2544, 7.2562, 7.2572, 7.2568, 7.2564, 7.2561, 7.2557, 7.2554, 7.255, 7.2546, 7.2543, 7.2551, 7.2548, 7.2556, 7.2565, 7.2563, 7.2559, 7.256, 7.2555, 7.2551, 7.2547, 7.2555, 7.2551, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.2529, 7.2539, 7.2535, 7.2531, 7.2527, 7.2527, 7.2526, 7.2534, 7.253, 7.2538, 7.2534, 7.2543, 7.2539, 7.2536, 7.2545, 7.2541, 7.2525, 7.2521, 7.2542, 7.2538, 7.2534, 7.2537, 7.2536, 7.2532, 7.253, 7.2527, 7.2525, 7.2521, 7.2518, 7.2518, 7.2514, 7.251, 7.2506, 7.2514, 7.251, 7.2506, 7.2514, 7.2525, 7.2533, 7.2529, 7.2525, 7.2522, 7.253, 7.2525, 7.2521, 7.2541, 7.2539, 7.2536, 7.2533, 7.2528, 7.2535, 7.2531, 7.2528, 7.2549, 7.2559, 7.2554, 7.255, 7.2547, 7.2532, 7.2528, 7.2524, 7.252, 7.2518, 7.2526, 7.2522, 7.252, 7.2528, 7.2524, 7.252, 7.2529, 7.2525, 7.252, 7.2516, 7.2512, 7.2497, 7.2493, 7.2488, 7.2485, 7.2481, 7.2477, 7.2474, 7.247, 7.2466, 7.2462, 7.2457, 7.2443, 7.2451, 7.2447, 7.2443, 7.2438, 7.2446, 7.2456, 7.2465, 7.246, 7.2456, 7.2452, 7.2449, 7.2445, 7.2441, 7.2437, 7.2444, 7.244, 7.2436, 7.2431, 7.2428, 7.2425, 7.2422, 7.2418, 7.2444, 7.2444, 7.244, 7.2438, 7.2434, 7.2443, 7.244, 7.2436, 7.2432, 7.2435, 7.2444, 7.244, 7.2439, 7.2424, 7.2419, 7.2415, 7.2423, 7.2431, 7.244, 7.2437, 7.2446, 7.2442, 7.245, 7.2447, 7.2444, 7.2466, 7.2474, 7.2473, 7.2482, 7.2489, 7.2485, 7.2481, 7.2476, 7.2472, 7.2469, 7.2477, 7.2473, 7.2471, 7.2467, 7.2464, 7.2508, 7.2553, 7.2549, 7.2546, 7.2555, 7.2551, 7.2547, 7.2532, 7.253, 7.2527, 7.2526, 7.2522, 7.2517, 7.2525, 7.2522, 7.253, 7.2526, 7.2535, 7.2544, 7.2541, 7.2548, 7.2545, 7.2542, 7.2537, 7.2545, 7.2554, 7.2562, 7.2571, 7.2578, 7.2587, 7.2595, 7.259, 7.2586, 7.2594, 7.2592, 7.2601, 7.2588, 7.2597, 7.2604, 7.2605, 7.2601, 7.2609, 7.2618, 7.2616, 7.2612, 7.261, 7.2606, 7.2603, 7.2611, 7.2608, 7.2629, 7.2626, 7.2622, 7.2631, 7.2629, 7.2645, 7.2641, 7.2637, 7.2633, 7.2629, 7.2627, 7.2624, 7.2632, 7.2627, 7.2623, 7.2619, 7.2615, 7.2611, 7.2619, 7.2604, 7.26, 7.2596, 7.2593, 7.2589, 7.2603, 7.2599, 7.2584, 7.258, 7.2576, 7.2572, 7.257, 7.2566, 7.2551, 7.2547, 7.2543, 7.2543, 7.2541, 7.2537, 7.2533, 7.253, 7.2526, 7.2534, 7.2531, 7.2527, 7.2531, 7.253, 7.2527, 7.2523, 7.2532, 7.2541, 7.2537, 7.2534, 7.2533, 7.2529, 7.2537, 7.2546, 7.2542, 7.255, 7.2537, 7.2533, 7.2533, 7.2531, 7.2527, 7.2523, 7.2531, 7.2528, 7.2524, 7.2531, 7.2535, 7.2531, 7.2538, 7.2545, 7.2553, 7.2552, 7.2548, 7.2545, 7.2541, 7.2538, 7.2535, 7.2556, 7.2553, 7.2551, 7.2559, 7.2555, 7.2552, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2565, 7.2572, 7.2568, 7.2564, 7.256, 7.2557, 7.2553, 7.2561, 7.2558, 7.2565, 7.2561, 7.2558, 7.2555, 7.2553, 7.255, 7.2548, 7.2544, 7.2551, 7.2559, 7.2558, 7.2566, 7.2576, 7.2573, 7.257, 7.2578, 7.262, 7.2617, 7.2613, 7.2613, 7.2609, 7.2605, 7.2602, 7.2609, 7.2605, 7.2613, 7.2609, 7.2676, 7.2673, 7.2669, 7.2665, 7.2661, 7.2668, 7.2664, 7.266, 7.2656, 7.2652, 7.2648, 7.2645, 7.2642, 7.2638, 7.2635, 7.2632, 7.265, 7.2646, 7.2643, 7.2651, 7.2647, 7.2645, 7.2642, 7.2638, 7.2634, 7.2631, 7.2628, 7.2625, 7.2622, 7.262, 7.2617, 7.2614, 7.261, 7.2606, 7.2602, 7.2598, 7.2597, 7.2593, 7.2589, 7.259, 7.2597, 7.2593, 7.2589, 7.2587, 7.2586, 7.2594, 7.2593, 7.2592, 7.26, 7.2596, 7.2592, 7.2588, 7.259, 7.2586, 7.2594, 7.259, 7.2586, 7.2584, 7.2592, 7.26, 7.2597, 7.2605, 7.2601, 7.2598, 7.2605, 7.263, 7.2638, 7.2645, 7.2642, 7.265, 7.265, 7.2646, 7.2642, 7.2638, 7.2636, 7.2632, 7.2661, 7.2669, 7.2665, 7.2661, 7.267, 7.2677, 7.2685, 7.2693, 7.2689, 7.2685, 7.2694, 7.2691, 7.2699, 7.2695, 7.2712, 7.2708, 7.2705, 7.2701, 7.2699, 7.2706, 7.2703, 7.2722, 7.2718, 7.2716, 7.2712, 7.2708, 7.2704, 7.27, 7.2696, 7.2693, 7.2701, 7.2697, 7.2693, 7.2689, 7.2685, 7.2682, 7.2679, 7.2676, 7.2683, 7.269, 7.2697, 7.2684, 7.268, 7.2678, 7.2688, 7.2686, 7.2684, 7.268, 7.2677, 7.2673, 7.2669, 7.2666, 7.2673, 7.2671, 7.2668, 7.2664, 7.2717, 7.2714, 7.271, 7.2707, 7.2703, 7.2689, 7.2685, 7.2692, 7.2688, 7.2696, 7.2693, 7.269, 7.2686, 7.2684, 7.2691, 7.2699, 7.2697, 7.2705, 7.2701, 7.2697, 7.2693, 7.269, 7.2698, 7.2694, 7.2691, 7.2689, 7.2685, 7.2681, 7.2677, 7.2676, 7.2674, 7.267, 7.2668, 7.2664, 7.266, 7.2657, 7.2654, 7.265, 7.2648, 7.2655, 7.2668, 7.2664, 7.2672, 7.2669, 7.2678, 7.2674, 7.2671, 7.2667, 7.2664, 7.2665, 7.2661, 7.2657, 7.2655, 7.2651, 7.2718, 7.2717, 7.2704, 7.27, 7.2697, 7.2723, 7.2719, 7.2716, 7.2747, 7.2744, 7.2742, 7.2738, 7.2736, 7.2732, 7.2728, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.2709, 7.2706, 7.2715, 7.2712, 7.2709, 7.2706, 7.2702, 7.2709, 7.2716, 7.2771, 7.2779, 7.2783, 7.278, 7.2777, 7.2774, 7.2772, 7.2769, 7.2767, 7.2764, 7.2761, 7.2757, 7.2753, 7.2749, 7.2747, 7.2754, 7.2762, 7.2748, 7.2744, 7.2742, 7.2739, 7.2735, 7.2732, 7.2728, 7.2732, 7.2729, 7.2725, 7.2722, 7.2718, 7.2736, 7.2733, 7.2731, 7.2727, 7.2724, 7.2731, 7.2728, 7.2737, 7.2733, 7.2729, 7.2725, 7.2723, 7.2721, 7.2718, 7.2715, 7.2712, 7.2709, 7.2715, 7.2712, 7.2709, 7.2705, 7.2717, 7.2714, 7.2722, 7.2725, 7.2721, 7.2718, 7.2726, 7.2733, 7.2731, 7.2727, 7.2723, 7.2731, 7.2727, 7.2723, 7.2731, 7.2728, 7.2726, 7.2722, 7.2718, 7.2718, 7.2716, 7.2703, 7.27, 7.2697, 7.2693, 7.269, 7.2686, 7.2682, 7.2679, 7.2675, 7.2673, 7.267, 7.2677, 7.2685, 7.2682, 7.274, 7.2747, 7.2745, 7.2741, 7.2737, 7.2734, 7.2731, 7.2718, 7.2704, 7.2701, 7.2697, 7.2693, 7.269, 7.2688, 7.2687, 7.2683, 7.2679, 7.2687, 7.2683, 7.2679, 7.2675, 7.2671, 7.2668, 7.2664, 7.2676, 7.2673, 7.267, 7.2666, 7.2664, 7.2671, 7.2667, 7.2664, 7.2661, 7.2658, 7.2668, 7.2655, 7.2652, 7.2661, 7.2657, 7.2654, 7.2652, 7.2659, 7.2649, 7.2646, 7.2653, 7.2649, 7.2647, 7.2645, 7.2641, 7.2648, 7.2644, 7.2641, 7.2637, 7.2633, 7.2629, 7.2625, 7.2621, 7.2628, 7.2625, 7.2622, 7.2618, 7.2614, 7.2611, 7.261, 7.2606, 7.2603, 7.26, 7.2605, 7.2609, 7.2605, 7.2604, 7.26, 7.2596, 7.2592, 7.259, 7.2581, 7.2579, 7.2586, 7.2593, 7.259, 7.2588, 7.2597, 7.2593, 7.26, 7.2607, 7.2604, 7.26, 7.2607, 7.2603, 7.2599, 7.2606, 7.2603, 7.2602, 7.2609, 7.2616, 7.2613, 7.2621, 7.2619, 7.2616, 7.2618, 7.2625, 7.2622, 7.2618, 7.2618, 7.2632, 7.2629, 7.2626, 7.2622, 7.2626, 7.2623, 7.262, 7.2621, 7.2618, 7.2614, 7.2622, 7.263, 7.2626, 7.2623, 7.2625, 7.2621, 7.2617, 7.2624, 7.2621, 7.2628, 7.2625, 7.2628, 7.2627, 7.2624, 7.2632, 7.263, 7.2639, 7.2637, 7.2634, 7.2641, 7.2638, 7.2635, 7.2642, 7.2649, 7.2646, 7.2644, 7.2642, 7.2641, 7.2638, 7.2637, 7.2624, 7.2621, 7.2618, 7.2616, 7.2623, 7.2621, 7.2617, 7.2614, 7.2623, 7.263, 7.2638, 7.2624, 7.2632, 7.2639, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.2663, 7.267, 7.2677, 7.2675, 7.2733, 7.273, 7.2726, 7.2732, 7.2728, 7.2725, 7.2732, 7.273, 7.2726, 7.2733, 7.273, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.271, 7.2706, 7.2703, 7.2707, 7.2703, 7.271, 7.2707, 7.2706, 7.2713, 7.27, 7.2708, 7.2705, 7.2712, 7.2709, 7.2717, 7.2704, 7.2702, 7.2699, 7.2696, 7.2694, 7.269, 7.2687, 7.2683, 7.268, 7.2677, 7.2691, 7.2688, 7.2696, 7.2692, 7.2699, 7.2696, 7.2704, 7.2701, 7.2698, 7.2694, 7.2701, 7.2698, 7.2695, 7.2691, 7.2689, 7.2687, 7.2691, 7.2692, 7.2699, 7.2696, 7.2695, 7.2692, 7.269, 7.2693, 7.2689, 7.2686, 7.2693, 7.2689, 7.2686, 7.2682, 7.269, 7.2692, 7.2688, 7.2684, 7.2681, 7.2688, 7.2684, 7.268, 7.2678, 7.2674, 7.2671, 7.2667, 7.2663, 7.267, 7.2657, 7.2654, 7.2651, 7.2648, 7.2646, 7.2643, 7.2639, 7.2637, 7.2635, 7.2632, 7.264, 7.2637, 7.2634, 7.2632, 7.2628, 7.2635, 7.2641, 7.2648, 7.2645, 7.2642, 7.2639, 7.2645, 7.2642, 7.2639, 7.2646, 7.2633, 7.263, 7.2641, 7.2649, 7.2648, 7.2645, 7.2641, 7.2638, 7.2635, 7.2632, 7.2628, 7.2626, 7.2623, 7.2622, 7.2629, 7.2627, 7.2623, 7.263, 7.2637, 7.2634, 7.2641, 7.2638, 7.2636, 7.2633, 7.2631, 7.2627, 7.2625, 7.2632, 7.2628, 7.2625, 7.2623, 7.262, 7.2626, 7.2624, 7.2621, 7.2618, 7.2625, 7.2632, 7.263, 7.2627, 7.2633, 7.263, 7.2627, 7.2624, 7.2621, 7.2618, 7.2615, 7.2622, 7.263, 7.2637, 7.2635, 7.2631, 7.2628, 7.2625, 7.2633, 7.264, 7.2637, 7.2634, 7.263, 7.2626, 7.2622, 7.2618, 7.2615, 7.2613, 7.2609, 7.2605, 7.2612, 7.2609, 7.2606, 7.2603, 7.26, 7.2596, 7.2592, 7.2588, 7.2586, 7.2593, 7.26, 7.2625, 7.2621, 7.2618, 7.2624, 7.2622, 7.2629, 7.2626, 7.2622, 7.2628, 7.2635, 7.2641, 7.2639, 7.2636, 7.2643, 7.265, 7.2646, 7.2642, 7.2649, 7.2645, 7.2642, 7.2639, 7.2646, 7.2643, 7.265, 7.2647, 7.2675, 7.2681, 7.2678, 7.2675, 7.2681, 7.2678, 7.2675, 7.2671, 7.2668, 7.2665, 7.2661, 7.2658, 7.2655, 7.2662, 7.2658, 7.2656, 7.2653, 7.2659, 7.2656, 7.2653, 7.2649, 7.2646, 7.2653, 7.2649, 7.2655, 7.2662, 7.2668, 7.2665, 7.2661, 7.2657, 7.2653, 7.265, 7.265, 7.2648, 7.2645, 7.2642, 7.2639, 7.2636, 7.2633, 7.263, 7.2627, 7.2634, 7.2641, 7.2653, 7.2651, 7.2654, 7.2662, 7.2658, 7.2668, 7.2665, 7.2673, 7.267, 7.2668, 7.2666, 7.2663, 7.2651, 7.2648, 7.2645, 7.2642, 7.2639, 7.2646, 7.266, 7.2656, 7.2653, 7.264, 7.2637, 7.2644, 7.2642, 7.2638, 7.2635, 7.2633, 7.265, 7.2657, 7.2664, 7.2661, 7.2659, 7.2666, 7.2673, 7.267, 7.2668, 7.2665, 7.2672, 7.2669, 7.2666, 7.2675, 7.2683, 7.2693], '192.168.122.119': [11.1458, 9.3222, 8.0368, 7.4878, 6.1125, 6.2764, 6.1505, 6.1014, 6.6108, 6.5736, 6.9628, 6.9601, 6.8781, 7.1709, 7.0542, 7.0211, 6.9493, 6.8548, 6.8132, 6.7333, 6.6898, 6.6908, 6.6342, 6.5946, 6.5736, 6.5474, 6.5153, 6.5013, 6.5635, 6.5391, 6.5211, 6.7801, 6.9324, 7.0575, 7.0751, 7.0441, 7.0037, 7.0082, 6.9776, 6.9642, 6.9255, 6.8895, 6.8577, 6.8354, 6.9274, 6.9028, 7.0044, 6.9797, 6.9472, 7.0244, 6.9959, 6.9969, 6.977, 6.9814, 7.0511, 7.0214, 6.9932, 6.966, 6.9439, 6.9178, 6.9024, 6.9649, 7.0274, 7.087, 7.1499, 7.2059, 7.2607, 7.2408, 7.2142, 7.1943, 7.1925, 7.1764, 7.2305, 7.2813, 7.2543, 7.2327, 7.2264, 7.269, 7.3148, 7.3374, 7.3255, 7.3011, 7.276, 7.2617, 7.2397, 7.2176, 7.1982, 7.1785, 7.1643, 7.2035, 7.2039, 7.1901, 7.2261, 7.2129, 7.1931, 7.1799, 7.174, 7.1547, 7.1912, 7.182, 7.1643, 7.2002, 7.1826, 7.1739, 7.2573, 7.2529, 7.2374, 7.2753, 7.2613, 7.2429, 7.2774, 7.2619, 7.2473, 7.2336, 7.2168, 7.3011, 7.3425, 7.3793, 7.3628, 7.3468, 7.3293, 7.3148, 7.3243, 7.3125, 7.344, 7.3295, 7.3999, 7.3846, 7.3727, 7.3606, 7.3491, 7.3335, 7.3191, 7.3049, 7.2903, 7.276, 7.2262, 7.253, 7.2862, 7.2754, 7.2627, 7.2511, 7.2389, 7.2277, 7.2519, 7.2477, 7.2385, 7.2268, 7.2512, 7.2416, 7.2376, 7.2279, 7.251, 7.2394, 7.2278, 7.2518, 7.2727, 7.2644, 7.2528, 7.2424, 7.2348, 7.2282, 7.2513, 7.2396, 7.2308, 7.2211, 7.2123, 7.2017, 7.1939, 7.184, 7.174, 7.1635, 7.1841, 7.2107, 7.203, 7.1969, 7.1888, 7.1847, 7.1755, 7.1676, 7.1867, 7.1775, 7.1696, 7.19, 7.1805, 7.1738, 7.2338, 7.2526, 7.2448, 7.2351, 7.2259, 7.2463, 7.4137, 7.4195, 7.409, 7.3996, 7.4126, 7.4034, 7.3924, 7.3822, 7.3728, 7.3633, 7.3548, 7.3648, 7.3733, 7.3632, 7.3586, 7.3514, 7.3441, 7.3382, 7.3081, 7.3251, 7.3189, 7.3098, 7.302, 7.2924, 7.2869, 7.3014, 7.2919, 7.2845, 7.3033, 7.2941, 7.2877, 7.2813, 7.2733, 7.2673, 7.2808, 7.2752, 7.2701, 7.2417, 7.236, 7.2276, 7.2196, 7.2342, 7.2255, 7.2276, 7.2003, 7.1929, 7.187, 7.182, 7.1754, 7.172, 7.1687, 7.1616, 7.1539, 7.1464, 7.1415, 7.1365, 7.1298, 7.1229, 7.1174, 7.1143, 7.1094, 7.1237, 7.1371, 7.1328, 7.126, 7.1197, 7.1132, 7.1062, 7.0997, 7.0929, 7.1071, 7.1006, 7.0958, 7.0915, 7.0881, 7.0823, 7.0776, 7.0727, 7.0666, 7.0801, 7.0734, 7.0868, 7.0799, 7.0745, 7.068, 7.063, 7.0789, 7.0736, 7.0671, 7.0612, 7.0556, 7.052, 7.0293, 7.0414, 7.036, 7.0306, 7.0253, 7.0197, 7.014, 7.008, 7.0088, 7.0041, 7.0165, 7.0118, 7.0421, 7.0527, 7.0477, 7.0429, 7.0376, 7.0322, 7.0451, 7.0396, 7.0864, 7.0809, 7.0756, 7.088, 7.0828, 7.0952, 7.0899, 7.0998, 7.1115, 7.1076, 7.1023, 7.097, 7.1086, 7.1056, 7.0998, 7.0942, 7.0909, 7.0944, 7.1053, 7.1009, 7.0974, 7.0935, 7.0887, 7.089, 7.0837, 7.0789, 7.09, 7.1017, 7.0819, 7.0916, 7.0715, 7.0723, 7.0838, 7.0968, 7.0939, 7.0909, 7.0855, 7.0805, 7.0796, 7.0746, 7.0698, 7.0804, 7.0763, 7.0714, 7.0667, 7.0622, 7.0587, 7.0537, 7.0497, 7.0466, 7.0429, 7.0417, 7.0529, 7.0529, 7.0356, 7.031, 7.0276, 7.0247, 7.026, 7.0232, 7.0195, 7.0321, 7.0292, 7.0264, 7.0281, 7.0248, 7.0216, 7.0203, 7.0169, 7.0125, 7.0092, 7.0214, 7.0216, 7.0179, 7.005, 7.0007, 6.999, 6.9954, 6.9914, 6.9872, 7.0048, 7.0022, 6.9994, 6.9952, 6.9914, 6.9902, 7.0024, 6.9997, 6.9957, 7.0056, 7.0139, 7.023, 7.024, 7.025, 7.0207, 7.0166, 7.0132, 7.0104, 7.02, 7.0161, 7.0117, 7.0207, 7.0296, 7.0268, 7.0233, 7.0334, 7.0295, 7.026, 7.0247, 7.0211, 7.0293, 7.0263, 7.0362, 7.0328, 7.0422, 7.0381, 7.0348, 7.037, 7.0331, 7.0423, 7.0396, 7.0363, 7.0337, 7.0299, 7.0263, 7.0225, 7.0244, 7.0205, 7.0171, 7.0255, 7.0235, 7.0323, 7.0287, 7.0366, 7.033, 7.03, 7.0649, 7.0623, 7.0615, 7.0596, 7.0578, 7.0541, 7.0867, 7.1074, 7.1049, 7.1186, 7.1165, 7.1125, 7.1093, 7.1053, 7.1014, 7.0989, 7.1086, 7.1048, 7.1143, 7.1113, 7.108, 7.1045, 7.1138, 7.1264, 7.1229, 7.1214, 7.1199, 7.128, 7.1148, 7.1226, 7.1304, 7.1381, 7.1468, 7.155, 7.1526, 7.1496, 7.1467, 7.1435, 7.1396, 7.1357, 7.1436, 7.1412, 7.1491, 7.1469, 7.1449, 7.1417, 7.1495, 7.1473, 7.1443, 7.1411, 7.1376, 7.1336, 7.13, 7.1275, 7.1241, 7.1204, 7.1178, 7.1143, 7.1109, 7.1073, 7.1043, 7.101, 7.0979, 7.1279, 7.1241, 7.1209, 7.1276, 7.1251, 7.1324, 7.1292, 7.1366, 7.1336, 7.1211, 7.1183, 7.1267, 7.1231, 7.1217, 7.1189, 7.1153, 7.1125, 7.1189, 7.1161, 7.1134, 7.1197, 7.117, 7.114, 7.1109, 7.1084, 7.1155, 7.1129, 7.1191, 7.1211, 7.1194, 7.1263, 7.133, 7.13, 7.1268, 7.1242, 7.1218, 7.1199, 7.1166, 7.123, 7.1297, 7.1276, 7.1246, 7.1216, 7.1189, 7.1176, 7.1252, 7.1222, 7.1193, 7.1167, 7.1055, 7.1028, 7.1101, 7.1076, 7.1054, 7.1122, 7.1094, 7.1065, 7.1034, 7.1098, 7.1085, 7.1061, 7.103, 7.1103, 7.0991, 7.0968, 7.1034, 7.1004, 7.0974, 7.1036, 7.1102, 7.1088, 7.1059, 7.1031, 7.1003, 7.0974, 7.0945, 7.101, 7.0979, 7.1051, 7.1119, 7.1099, 7.1168, 7.1141, 7.1112, 7.1091, 7.1185, 7.1159, 7.1132, 7.1112, 7.1471, 7.145, 7.1425, 7.1396, 7.1553, 7.1545, 7.1515, 7.1574, 7.1547, 7.153, 7.1517, 7.1491, 7.1641, 7.1612, 7.1581, 7.1569, 7.163, 7.1634, 7.1603, 7.1577, 7.1551, 7.1524, 7.1507, 7.1478, 7.1453, 7.1425, 7.1318, 7.1291, 7.1267, 7.1351, 7.1324, 7.1384, 7.1372, 7.1341, 7.1316, 7.1308, 7.1278, 7.1264, 7.1239, 7.121, 7.119, 7.1241, 7.1219, 7.1198, 7.1176, 7.1146, 7.1295, 7.1265, 7.1322, 7.1296, 7.1272, 7.1251, 7.1236, 7.1207, 7.1178, 7.1155, 7.1214, 7.1264, 7.1333, 7.1303, 7.1274, 7.1247, 7.1219, 7.1192, 7.1093, 7.1067, 7.1042, 7.1025, 7.1084, 7.109, 7.1073, 7.1049, 7.1024, 7.0999, 7.1054, 7.1037, 7.1009, 7.1153, 7.1128, 7.1103, 7.1079, 7.1057, 7.1032, 7.1086, 7.1061, 7.1041, 7.1014, 7.099, 7.0962, 7.1016, 7.0999, 7.0973, 7.1025, 7.1012, 7.0986, 7.096, 7.0933, 7.0924, 7.0899, 7.0954, 7.0858, 7.0912, 7.0964, 7.094, 7.0997, 7.1222, 7.1275, 7.1251, 7.1228, 7.1218, 7.1191, 7.1254, 7.1227, 7.1202, 7.1177, 7.1153, 7.114, 7.1119, 7.1032, 7.1014, 7.1065, 7.1045, 7.1175, 7.1153, 7.1215, 7.1271, 7.1414, 7.1391, 7.1368, 7.1349, 7.1404, 7.1388, 7.1751, 7.1726, 7.1703, 7.1742, 7.1716, 7.1693, 7.1667, 7.165, 7.1624, 7.1612, 7.1587, 7.1565, 7.1547, 7.1525, 7.1585, 7.156, 7.1537, 7.1514, 7.1565, 7.1542, 7.1576, 7.1649, 7.1625, 7.1601, 7.1589, 7.1639, 7.1627, 7.1611, 7.1656, 7.1712, 7.169, 7.1843, 7.1893, 7.1877, 7.1927, 7.197, 7.1952, 7.1942, 7.1928, 7.1908, 7.1885, 7.1863, 7.185, 7.1829, 7.2062, 7.2133, 7.2109, 7.2085, 7.2076, 7.2059, 7.2045, 7.2023, 7.1999, 7.1991, 7.204, 7.2016, 7.1998, 7.1986, 7.1971, 7.1946, 7.193, 7.198, 7.1958, 7.2006, 7.1982, 7.1959, 7.1937, 7.1983, 7.1962, 7.2006, 7.2053, 7.21, 7.2084, 7.2133, 7.2176, 7.2162, 7.2257, 7.2304, 7.2285, 7.2261, 7.2243, 7.2219, 7.2217, 7.2193, 7.2168, 7.2233, 7.2217, 7.2194, 7.2171, 7.2159, 7.2222, 7.2204, 7.2207, 7.2191, 7.2173, 7.2151, 7.2159, 7.2204, 7.2245, 7.2226, 7.2212, 7.2197, 7.2176, 7.2224, 7.2207, 7.2186, 7.2167, 7.2211, 7.2197, 7.2185, 7.2173, 7.215, 7.2148, 7.2129, 7.2118, 7.2097, 7.222, 7.2196, 7.2207, 7.2192, 7.2518, 7.2495, 7.2504, 7.2428, 7.2501, 7.2482, 7.2465, 7.2442, 7.2362, 7.2351, 7.2339, 7.2318, 7.2298, 7.2289, 7.2268, 7.2248, 7.2235, 7.2213, 7.2201, 7.2125, 7.2163, 7.2089, 7.2137, 7.2114, 7.21, 7.2078, 7.2118, 7.2098, 7.2139, 7.218, 7.2163, 7.2143, 7.2123, 7.2108, 7.2088, 7.207, 7.2048, 7.2042, 7.2082, 7.2062, 7.2055, 7.2035, 7.2018, 7.1998, 7.2, 7.1979, 7.1966, 7.2008, 7.1987, 7.1968, 7.1947, 7.1932, 7.1973, 7.1953, 7.1939, 7.1925, 7.1904, 7.1891, 7.1876, 7.1857, 7.1837, 7.1819, 7.1858, 7.1838, 7.1819, 7.1803, 7.1784, 7.1765, 7.1765, 7.1746, 7.1726, 7.1707, 7.1686, 7.1676, 7.1663, 7.1699, 7.1679, 7.1609, 7.1591, 7.1575, 7.156, 7.1541, 7.1579, 7.1559, 7.154, 7.152, 7.1557, 7.1558, 7.154, 7.1521, 7.1562, 7.1603, 7.1585, 7.1625, 7.1613, 7.1653, 7.1633, 7.1615, 7.179, 7.1887, 7.187, 7.1855, 7.1895, 7.1882, 7.1864, 7.1846, 7.1828, 7.1815, 7.1804, 7.1787, 7.1771, 7.1753, 7.1787, 7.1826, 7.1809, 7.1795, 7.1835, 7.1878, 7.1865, 7.1909, 7.1945, 7.1876, 7.1914, 7.1953, 7.1938, 7.1975, 7.1968, 7.1957, 7.1939, 7.1978, 7.1962, 7.1961, 7.1942, 7.1929, 7.191, 7.1947, 7.1927, 7.1912, 7.1943, 7.1927, 7.1913, 7.1897, 7.1879, 7.1864, 7.2008, 7.221, 7.225, 7.2234, 7.2225, 7.2209, 7.2194, 7.2179, 7.2215, 7.2251, 7.2232, 7.2215, 7.225, 7.2232, 7.2266, 7.2247, 7.2288, 7.2289, 7.228, 7.2263, 7.2245, 7.2235, 7.222, 7.2203, 7.224, 7.2222, 7.2258, 7.2239, 7.2226, 7.2207, 7.2196, 7.219, 7.2225, 7.2208, 7.2241, 7.2223, 7.2206, 7.22, 7.2183, 7.2165, 7.2197, 7.2184, 7.2167, 7.2152, 7.2088, 7.2078, 7.206, 7.2043, 7.2078, 7.2062, 7.2045, 7.2081, 7.2062, 7.2099, 7.2093, 7.2087, 7.2069, 7.2064, 7.2062, 7.2053, 7.2034, 7.2022, 7.2009, 7.2089, 7.2127, 7.2163, 7.2197, 7.2193, 7.2178, 7.2209, 7.2241, 7.2224, 7.2162, 7.2145, 7.2129, 7.212, 7.2104, 7.2098, 7.2089, 7.2071, 7.2054, 7.2036, 7.2018, 7.2051, 7.2036, 7.2019, 7.2057, 7.2095, 7.213, 7.2117, 7.2101, 7.2271, 7.226, 7.2244, 7.2301, 7.2284, 7.2317, 7.2299, 7.2284, 7.2269, 7.2256, 7.2361, 7.2344, 7.2345, 7.2331, 7.2322, 7.2304, 7.2297, 7.2279, 7.2271, 7.226, 7.2308, 7.2344, 7.2326, 7.2317, 7.2309, 7.2297, 7.2304, 7.234, 7.2326, 7.231, 7.2293, 7.2276, 7.2325, 7.2307, 7.2344, 7.233, 7.2359, 7.2397, 7.2383, 7.2371, 7.2357, 7.234, 7.2325, 7.2317, 7.2452, 7.2446, 7.243, 7.2656, 7.2643, 7.2631, 7.2663, 7.2649, 7.2645, 7.2635, 7.2666, 7.2651, 7.2633, 7.2632, 7.2621, 7.2607, 7.2639, 7.2628, 7.2746, 7.273, 7.2673, 7.2656, 7.2639, 7.267, 7.2653, 7.2595, 7.2629, 7.2616, 7.2605, 7.2588, 7.2579, 7.2608, 7.2635, 7.2622, 7.2608, 7.2613, 7.2595, 7.2624, 7.2606, 7.2591, 7.2577, 7.2568, 7.2557, 7.254, 7.2534, 7.2521, 7.2551, 7.2534, 7.2519, 7.2503, 7.2447, 7.2431, 7.246, 7.2445, 7.2504, 7.2493, 7.2489, 7.2472, 7.2461, 7.2445, 7.2431, 7.2418, 7.2405, 7.2397, 7.2428, 7.2416, 7.24, 7.2431, 7.2461, 7.2406, 7.2351, 7.2294, 7.2279, 7.2268, 7.2298, 7.2286, 7.2278, 7.2263, 7.2247, 7.2232, 7.222, 7.2206, 7.2194, 7.2222, 7.2214, 7.2207, 7.224, 7.2224, 7.2257, 7.2244, 7.2233, 7.222, 7.2211, 7.2203, 7.219, 7.2223, 7.2255, 7.2283, 7.2316, 7.2302, 7.2288, 7.2272, 7.2301, 7.2287, 7.2318, 7.2302, 7.2333, 7.2324, 7.2309, 7.2338, 7.2285, 7.2273, 7.2304, 7.2335, 7.2332, 7.2318, 7.2303, 7.2331, 7.2361, 7.2349, 7.2335, 7.2322, 7.2307, 7.2293, 7.232, 7.2351, 7.2337, 7.2368, 7.2355, 7.2384, 7.237, 7.2355, 7.2346, 7.2331, 7.2321, 7.2305, 7.2335, 7.2364, 7.2405, 7.239, 7.2375, 7.2361, 7.2346, 7.2332, 7.2318, 7.2303, 7.2262, 7.2254, 7.2283, 7.2313, 7.2264, 7.2248, 7.2246, 7.2232, 7.2218, 7.222, 7.2209, 7.2197, 7.2222, 7.2212, 7.2209, 7.2234, 7.222, 7.2212, 7.2205, 7.2197, 7.2226, 7.2215, 7.2245, 7.2231, 7.2218, 7.2205, 7.2233, 7.222, 7.2252, 7.224, 7.2228, 7.2215, 7.2201, 7.2151, 7.21, 7.2085, 7.2073, 7.206, 7.2052, 7.2041, 7.2027, 7.2013, 7.1964, 7.195, 7.1942, 7.1936, 7.196, 7.1976, 7.2004, 7.1995, 7.1983, 7.1971, 7.1957, 7.1943, 7.1933, 7.1995, 7.1988, 7.1978, 7.1966, 7.1952, 7.1943, 7.193, 7.1965, 7.1957, 7.1945, 7.1938, 7.1926, 7.1918, 7.1911, 7.1902, 7.1888, 7.1917, 7.191, 7.1896, 7.1882, 7.1909, 7.1895, 7.1921, 7.1954, 7.1955, 7.1942, 7.1934, 7.1928, 7.1914, 7.1941, 7.1968, 7.1996, 7.1983, 7.1969, 7.1995, 7.1982, 7.2009, 7.1998, 7.1992, 7.1985, 7.1978, 7.1964, 7.1915, 7.1871, 7.1932, 7.1939, 7.1931, 7.1922, 7.1911, 7.1904, 7.1891, 7.1883, 7.191, 7.1925, 7.1918, 7.1944, 7.1932, 7.196, 7.1948, 7.1943, 7.1937, 7.1988, 7.2016, 7.2046, 7.2073, 7.2027, 7.202, 7.2052, 7.2114, 7.21, 7.2093, 7.2087, 7.2077, 7.2049, 7.2075, 7.2067, 7.2029, 7.2021, 7.2012, 7.2038, 7.2025, 7.2127, 7.2118, 7.2109, 7.2098, 7.2162, 7.215, 7.2184, 7.2174, 7.2161, 7.2187, 7.2223, 7.2214, 7.2239, 7.2225, 7.2213, 7.2214, 7.2204, 7.2191, 7.2177, 7.2163, 7.2151, 7.2139, 7.2127, 7.2114, 7.2103, 7.2094, 7.2158, 7.2149, 7.2137, 7.2162, 7.2153, 7.214, 7.2127, 7.2115, 7.2103, 7.2091, 7.2117, 7.2143, 7.2131, 7.2157, 7.218, 7.2171, 7.2195, 7.2184, 7.2171, 7.2196, 7.2222, 7.2212, 7.2202, 7.2188, 7.2175, 7.2172, 7.2159, 7.2148, 7.2139, 7.2127, 7.2117, 7.2104, 7.2102, 7.2125, 7.2148, 7.2138, 7.2127, 7.2121, 7.2118, 7.2127, 7.2117, 7.2108, 7.2125, 7.2122, 7.2145, 7.2139, 7.2257, 7.225, 7.2241, 7.2266, 7.231, 7.2298, 7.2288, 7.2276, 7.2266, 7.2261, 7.2249, 7.2272, 7.2259, 7.225, 7.2206, 7.2196, 7.2184, 7.2173, 7.216, 7.2148, 7.2136, 7.2169, 7.2159, 7.2148, 7.2135, 7.2128, 7.2116, 7.2104, 7.2096, 7.2121, 7.2113, 7.2101, 7.2091, 7.208, 7.2072, 7.2062, 7.2071, 7.2058, 7.2079, 7.2072, 7.2059, 7.2047, 7.2073, 7.2096, 7.2118, 7.2113, 7.2101, 7.2091, 7.2079, 7.2093, 7.2081, 7.2075, 7.2064, 7.2054, 7.2047, 7.2043, 7.2032, 7.2056, 7.208, 7.208, 7.2067, 7.2055, 7.2045, 7.2036, 7.2025, 7.2014, 7.2001, 7.2027, 7.2048, 7.2038, 7.2037, 7.2025, 7.2013, 7.2036, 7.2023, 7.2015, 7.2006, 7.1995, 7.1957, 7.1946, 7.1939, 7.194, 7.1965, 7.1957, 7.1984, 7.2006, 7.2029, 7.2017, 7.2006, 7.1994, 7.1982, 7.1974, 7.1964, 7.1987, 7.1976, 7.1966, 7.1987, 7.1975, 7.1963, 7.1951, 7.194, 7.1964, 7.1952, 7.1942, 7.193, 7.1919, 7.1907, 7.1866, 7.1858, 7.1848, 7.184, 7.1857, 7.1881, 7.1869, 7.1859, 7.1848, 7.1869, 7.186, 7.1854, 7.1846, 7.1835, 7.1824, 7.1818, 7.1813, 7.1807, 7.1796, 7.1816, 7.1839, 7.1852, 7.1842, 7.183, 7.1821, 7.1812, 7.1804, 7.1834, 7.1825, 7.1846, 7.1838, 7.183, 7.1819, 7.1807, 7.1829, 7.1822, 7.1812, 7.1803, 7.1791, 7.1783, 7.1806, 7.1795, 7.1789, 7.1781, 7.1778, 7.177, 7.1759, 7.1752, 7.1741, 7.173, 7.1721, 7.1709, 7.1698, 7.1719, 7.1708, 7.1735, 7.1727, 7.1718, 7.1756, 7.1717, 7.1708, 7.1709, 7.1707, 7.1701, 7.1691, 7.1714, 7.1702, 7.1695, 7.1693, 7.1732, 7.1753, 7.1799, 7.1788, 7.1776, 7.1765, 7.1754, 7.1743, 7.1765, 7.176, 7.1781, 7.1772, 7.1765, 7.1756, 7.1745, 7.1767, 7.1758, 7.1747, 7.171, 7.1705, 7.1727, 7.1719, 7.1709, 7.1698, 7.1687, 7.1708, 7.1669, 7.1664, 7.1656, 7.1647, 7.1667, 7.166, 7.1652, 7.1643, 7.1632, 7.1655, 7.1645, 7.1634, 7.1626, 7.1615, 7.1605, 7.1597, 7.1618, 7.1608, 7.1597, 7.1621, 7.161, 7.16, 7.1621, 7.161, 7.1602, 7.1623, 7.1612, 7.1634, 7.1674, 7.1664, 7.1688, 7.1711, 7.1703, 7.179, 7.1817, 7.1811, 7.18, 7.1796, 7.1786, 7.1808, 7.18, 7.1794, 7.1785, 7.1778, 7.1825, 7.1818, 7.1808, 7.1801, 7.183, 7.182, 7.1814, 7.1804, 7.1795, 7.1786, 7.1805, 7.1766, 7.176, 7.176, 7.1754, 7.1751, 7.174, 7.1762, 7.1762, 7.1782, 7.1801, 7.182, 7.1841, 7.1832, 7.1822, 7.1785, 7.1775, 7.1799, 7.1791, 7.1811, 7.1804, 7.1828, 7.182, 7.1809, 7.1801, 7.1794, 7.1786, 7.1775, 7.1765, 7.1789, 7.1818, 7.1811, 7.18, 7.1798, 7.183, 7.1853, 7.1844, 7.1808, 7.1802, 7.1796, 7.1791, 7.1782, 7.1774, 7.1795, 7.1784, 7.1805, 7.1799, 7.1791, 7.1784, 7.1872, 7.1864, 7.1882, 7.1894, 7.1884, 7.1873, 7.1864, 7.1856, 7.1877, 7.1869, 7.1864, 7.1853, 7.1844, 7.1834, 7.1825, 7.1814, 7.181, 7.1802, 7.1792, 7.1788, 7.1777, 7.1776, 7.1766, 7.1756, 7.1749, 7.1739, 7.1748, 7.1746, 7.1736, 7.1726, 7.1717, 7.1709, 7.1729, 7.1722, 7.1713, 7.1723, 7.1714, 7.1677, 7.1668, 7.1661, 7.1682, 7.1672, 7.1663, 7.1653, 7.1643, 7.1664, 7.1654, 7.1649, 7.1642, 7.1634, 7.1654, 7.1644, 7.1638, 7.1664, 7.1636, 7.1629, 7.1739, 7.1875, 7.1866, 7.1859, 7.1851, 7.1841, 7.1861, 7.1853, 7.1845, 7.1864, 7.1871, 7.1861, 7.1881, 7.1871, 7.1863, 7.1857, 7.1847, 7.1838, 7.1829, 7.1819, 7.181, 7.18, 7.1791, 7.1785, 7.1777, 7.1787, 7.178, 7.1799, 7.182, 7.1969, 7.2008, 7.2004, 7.1997, 7.1987, 7.1987, 7.198, 7.1973, 7.1985, 7.1976, 7.1967, 7.1957, 7.1951, 7.1941, 7.1936, 7.1956, 7.1947, 7.1938, 7.193, 7.195, 7.2, 7.1995, 7.1989, 7.198, 7.1947, 7.197, 7.1961, 7.1951, 7.1969, 7.1964, 7.1983, 7.1977, 7.1968, 7.1989, 7.201, 7.203, 7.2081, 7.2075, 7.2065, 7.2057, 7.2078, 7.2068, 7.2062, 7.2052, 7.207, 7.209, 7.2081, 7.2074, 7.2094, 7.2066, 7.2058, 7.2068, 7.2059, 7.2052, 7.205, 7.207, 7.2062, 7.2053, 7.2044, 7.2034, 7.2054, 7.2044, 7.2035, 7.2055, 7.2075, 7.2095, 7.2086, 7.2105, 7.2107, 7.2097, 7.2107, 7.2099, 7.2144, 7.2136, 7.2131, 7.2127, 7.2123, 7.2129, 7.2122, 7.2115, 7.2107, 7.2099, 7.2092, 7.2086, 7.2076, 7.2072, 7.2062, 7.2053, 7.206300000000001, 7.206, 7.2055, 7.2047, 7.2042, 7.2033, 7.203, 7.2022, 7.2016, 7.2009, 7.2028, 7.2047, 7.2038, 7.2029, 7.202, 7.2013, 7.2117, 7.2107, 7.2097, 7.2088, 7.2112, 7.2105, 7.2123, 7.2114, 7.2109, 7.2103, 7.2094, 7.2084, 7.209, 7.2085, 7.2052, 7.2043, 7.2036, 7.2031, 7.2023, 7.2016, 7.2007, 7.1998, 7.202, 7.2039, 7.2037, 7.2028, 7.2047, 7.2043, 7.2063, 7.2057, 7.2051, 7.2022, 7.2014, 7.2033, 7.2024, 7.2018, 7.2034, 7.2054, 7.2021, 7.2038, 7.2061, 7.2028, 7.2074, 7.2092, 7.2103, 7.2102, 7.2093, 7.2088, 7.2079, 7.2071, 7.2064, 7.2094, 7.2097, 7.2093, 7.2084, 7.2077, 7.207, 7.2061, 7.2078, 7.2075, 7.2118, 7.2113, 7.2108, 7.2099, 7.2089, 7.2106, 7.2097, 7.209, 7.2084, 7.2102, 7.2096, 7.2087, 7.2104, 7.2094, 7.2089, 7.2081, 7.2081, 7.2073, 7.2091, 7.2085, 7.208, 7.2076, 7.2093, 7.2109, 7.2104, 7.2097, 7.2089, 7.2081, 7.2124, 7.2116, 7.2164, 7.2156, 7.215, 7.2144, 7.2173, 7.2167, 7.2164, 7.2188, 7.2181, 7.2202, 7.2195, 7.2187, 7.2207, 7.2223, 7.2218, 7.2209, 7.2204, 7.2195, 7.2187, 7.2178, 7.217, 7.2162, 7.2159, 7.2176, 7.2169, 7.2141, 7.2135, 7.2153, 7.2145, 7.2168, 7.2186, 7.2177, 7.2194, 7.2185, 7.2203, 7.2219, 7.2237, 7.2232, 7.2224, 7.2243, 7.2234, 7.2229, 7.2247, 7.2241, 7.2258, 7.225, 7.2242, 7.2236, 7.2229, 7.2197, 7.219, 7.2182, 7.2176, 7.2168, 7.2164, 7.2157, 7.2193, 7.2186, 7.2178, 7.2195, 7.2186, 7.2178, 7.2247, 7.2264, 7.2281, 7.2274, 7.2292, 7.2263, 7.2255, 7.2248, 7.2242, 7.2259, 7.2324, 7.2318, 7.2311, 7.2307, 7.2301, 7.2293, 7.2285, 7.2277, 7.227, 7.2264, 7.2256, 7.2312, 7.2306, 7.2301, 7.2356, 7.235, 7.2367, 7.2389, 7.2407, 7.2402, 7.2399, 7.239, 7.2412, 7.2414, 7.241, 7.2436, 7.2429, 7.2421, 7.2412, 7.2403, 7.2398, 7.239, 7.2382, 7.2373, 7.2391, 7.2387, 7.238, 7.2371, 7.2364, 7.2356, 7.2373, 7.2373, 7.2367, 7.2359, 7.2354, 7.2345, 7.2339, 7.2331, 7.2326, 7.2317, 7.2312, 7.2304, 7.2296, 7.2314, 7.2307, 7.2298, 7.2291, 7.231, 7.2301, 7.2295, 7.2286, 7.2278, 7.2293, 7.2284, 7.2276, 7.2292, 7.2302, 7.232, 7.2313, 7.2307, 7.2302, 7.2319, 7.2311, 7.2328, 7.2345, 7.2338, 7.2333, 7.2325, 7.2327, 7.2322, 7.2313, 7.231, 7.2302, 7.2294, 7.2287, 7.228, 7.2274, 7.2268, 7.2259, 7.225, 7.2243, 7.2235, 7.2227, 7.222, 7.2212, 7.2189, 7.2183, 7.2175, 7.2191, 7.2184, 7.2201, 7.2197, 7.2192, 7.2208, 7.2202, 7.2244, 7.2264, 7.228, 7.2299, 7.2317, 7.2309, 7.2302, 7.2297, 7.2295, 7.2362, 7.238, 7.2418, 7.2483, 7.2475, 7.2466, 7.246, 7.2452, 7.2445, 7.2436, 7.2428, 7.2423, 7.2415, 7.2407, 7.2401, 7.2393, 7.2385, 7.2378, 7.2369, 7.2362, 7.2356, 7.2358, 7.2356, 7.2371, 7.2368, 7.2363, 7.238, 7.2374, 7.2365, 7.2361, 7.2381, 7.2397, 7.2413, 7.2429, 7.2401, 7.2392, 7.2386, 7.2378, 7.2396, 7.241, 7.2402, 7.2395, 7.2387, 7.2379, 7.2394, 7.2385, 7.238, 7.2374, 7.2366, 7.2359, 7.2351, 7.2368, 7.2384, 7.2385, 7.24, 7.2416, 7.241, 7.2402, 7.2394, 7.2388, 7.2385, 7.2401, 7.2395, 7.2413, 7.2391, 7.2396, 7.2388, 7.2418, 7.241, 7.2402, 7.2396, 7.2424, 7.2416, 7.2408, 7.24, 7.2394, 7.2397, 7.2391, 7.2386, 7.2401, 7.2415, 7.2408, 7.2401, 7.2396, 7.2388, 7.236, 7.2355, 7.238, 7.2373, 7.2416, 7.2433, 7.2426, 7.2421, 7.2437, 7.2435, 7.2427, 7.2419, 7.2414, 7.243, 7.2425, 7.2442, 7.2434, 7.245, 7.2465, 7.2438, 7.2435, 7.245, 7.2442, 7.2434, 7.2426, 7.2442, 7.2481, 7.2473, 7.2489, 7.2481, 7.2495, 7.2491, 7.2483, 7.2476, 7.2468, 7.2462, 7.2493, 7.2521, 7.2515, 7.2577, 7.257, 7.2565, 7.2559, 7.2552, 7.2544, 7.2544, 7.2537, 7.2529, 7.2529, 7.2521, 7.2516, 7.2531, 7.2546, 7.254, 7.2554, 7.2548, 7.254, 7.2532, 7.2525, 7.2546, 7.2563, 7.2558, 7.255, 7.2564, 7.2556, 7.2548, 7.2544, 7.2536, 7.2574, 7.2566, 7.2558, 7.2573, 7.2567, 7.2559, 7.2532, 7.2525, 7.2518, 7.2519, 7.2512, 7.2508, 7.25, 7.2493, 7.2486, 7.2478, 7.2473, 7.249, 7.2482, 7.2476, 7.2471, 7.2466, 7.246, 7.2459, 7.2454, 7.2446, 7.2461, 7.2476, 7.2468, 7.2461, 7.2456, 7.2493, 7.2554, 7.2547, 7.2542, 7.2536, 7.2529, 7.2525, 7.2542, 7.2537, 7.2534, 7.2578, 7.2571, 7.2584, 7.2582, 7.2574, 7.2568, 7.2563, 7.2584, 7.2576, 7.2569, 7.2562, 7.2653, 7.2649, 7.2644, 7.2638, 7.2634, 7.2626, 7.2618, 7.2612, 7.2627, 7.2642, 7.2634, 7.2626, 7.2641, 7.2633, 7.2626, 7.2644, 7.266, 7.2654, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2619, 7.2612, 7.2607, 7.2626, 7.2618, 7.2633, 7.2648, 7.2643, 7.2658, 7.2651, 7.2663, 7.2671, 7.2664, 7.2657, 7.265, 7.2667, 7.2662, 7.2655, 7.2651, 7.2646, 7.2659, 7.2651, 7.2643, 7.2656, 7.2649, 7.2642, 7.2636, 7.2651, 7.2624, 7.2617, 7.2611, 7.2603, 7.2597, 7.259, 7.2583, 7.2575, 7.2568, 7.2572, 7.2565, 7.2558, 7.2558, 7.2572, 7.2586, 7.2579, 7.2574, 7.2566, 7.2559, 7.2556, 7.2638, 7.263, 7.2624, 7.2636, 7.263, 7.2628, 7.262, 7.2594, 7.2572, 7.2565, 7.254, 7.2534, 7.2547, 7.2541, 7.2539, 7.2567, 7.2592, 7.2625, 7.2642, 7.2637, 7.2632, 7.2627, 7.2622, 7.2636, 7.2633, 7.2631, 7.2625, 7.2639, 7.2665, 7.2681, 7.2674, 7.2667, 7.2671, 7.2707, 7.2746, 7.2759, 7.2766, 7.276, 7.2753, 7.2767, 7.2761, 7.2754, 7.2769, 7.2786, 7.2779, 7.2773, 7.2766, 7.278, 7.2773, 7.2767, 7.276, 7.2773, 7.2787, 7.2803, 7.2817, 7.2862, 7.2856, 7.2906, 7.2898, 7.2891, 7.2883, 7.2896, 7.2891, 7.2888, 7.288, 7.2876, 7.2871, 7.2885, 7.2879, 7.2871, 7.2866, 7.286, 7.2852, 7.2845, 7.2859, 7.2861, 7.2875, 7.2888, 7.2882, 7.2874, 7.2848, 7.2862, 7.2956, 7.2951, 7.2945, 7.2959, 7.2951, 7.2943, 7.2955, 7.2955, 7.2968, 7.2981, 7.2974, 7.2987, 7.3009, 7.3005, 7.3001, 7.2994, 7.2989, 7.2981, 7.2976, 7.2969, 7.2983, 7.2997, 7.299, 7.2982, 7.2975, 7.297, 7.2945, 7.2995, 7.303, 7.3024, 7.3024, 7.3017, 7.301, 7.3003, 7.3018, 7.2993, 7.2986, 7.3001, 7.2995, 7.3008, 7.3032, 7.3025, 7.3019, 7.3011, 7.3004, 7.3016, 7.3009, 7.3023, 7.3037, 7.3031, 7.3024, 7.3073, 7.3068, 7.306, 7.3073, 7.3087, 7.31, 7.3114, 7.3108, 7.3121, 7.3135, 7.3138, 7.3133, 7.3126, 7.3122, 7.3131, 7.3125, 7.3119, 7.3114, 7.3107, 7.3101, 7.3094, 7.311, 7.3091, 7.3087, 7.3079, 7.3078, 7.3073, 7.3068, 7.3064, 7.3058, 7.3053, 7.3046, 7.3042, 7.3035, 7.3028, 7.3022, 7.3015, 7.301, 7.3006, 7.3002, 7.2995, 7.2988, 7.2981, 7.2976, 7.2969, 7.2964, 7.2957, 7.297, 7.2965, 7.2962, 7.2955, 7.2988, 7.3093, 7.3088, 7.3101, 7.3094, 7.3087, 7.31, 7.3113, 7.311, 7.3103, 7.3115, 7.3128, 7.3141, 7.3134, 7.3127, 7.3124, 7.3119, 7.312, 7.3114, 7.3107, 7.3101, 7.3103, 7.31, 7.3173, 7.3168, 7.3163, 7.3156, 7.3152, 7.3146, 7.3158, 7.3154, 7.3148, 7.3144, 7.3138, 7.3131, 7.3128, 7.3122, 7.3117, 7.3155, 7.3152, 7.3147, 7.3139, 7.3152, 7.3165, 7.316, 7.3154, 7.3167, 7.316, 7.3153, 7.3166, 7.318, 7.3175, 7.3188, 7.3184, 7.3197, 7.3191, 7.3167, 7.3163, 7.3177, 7.319, 7.3188, 7.32, 7.3193, 7.3189, 7.3188, 7.3181, 7.3174, 7.3168, 7.3201, 7.3214, 7.3226, 7.322, 7.3213, 7.3225, 7.3219, 7.3196, 7.319, 7.3189, 7.3183, 7.3181, 7.3195, 7.3189, 7.3204, 7.3199, 7.3191, 7.3186, 7.3199, 7.3223, 7.3217, 7.3211, 7.3204, 7.3197, 7.319, 7.3183, 7.3178, 7.3172, 7.3185, 7.3178, 7.3178, 7.321, 7.3208, 7.3201, 7.3194, 7.3206, 7.3218, 7.323, 7.3226, 7.3289, 7.3301, 7.3314, 7.3307, 7.33, 7.3296, 7.3307, 7.3303, 7.3316, 7.3316, 7.3311, 7.3308, 7.3306, 7.33, 7.3293, 7.329, 7.3284, 7.3298, 7.3292, 7.3285, 7.3281, 7.3285, 7.3279, 7.3293, 7.3289, 7.3285, 7.3278, 7.3273, 7.3267, 7.33, 7.3294, 7.3288, 7.3319, 7.3333, 7.3347, 7.3341, 7.3354, 7.3367, 7.336, 7.3373, 7.3366, 7.336, 7.3356, 7.3351, 7.3366, 7.3377, 7.3371, 7.3367, 7.336, 7.3353, 7.3424, 7.3418, 7.3411, 7.3405, 7.3399, 7.3393, 7.3387, 7.3381, 7.3378, 7.3371, 7.3382, 7.3377, 7.339, 7.3367, 7.3344, 7.3337, 7.3349, 7.3366, 7.336, 7.3353, 7.333, 7.3324, 7.3336, 7.3347, 7.3341, 7.3336, 7.3332, 7.3325, 7.3336, 7.3331, 7.3327, 7.3322, 7.3318, 7.333, 7.3324, 7.3337, 7.3331, 7.3325, 7.332, 7.3314, 7.331, 7.3321, 7.3315, 7.3311, 7.3322, 7.3315, 7.3328, 7.3324, 7.3335, 7.3328, 7.3321, 7.3333, 7.3352, 7.3345, 7.3339, 7.3333, 7.3329, 7.3324, 7.3319, 7.3313, 7.3317, 7.331, 7.3304, 7.3317, 7.3311, 7.3324, 7.3319, 7.3313, 7.3307, 7.3302, 7.3295, 7.329, 7.3301, 7.3294, 7.3287, 7.3281, 7.3276, 7.3272, 7.3284, 7.3278, 7.3272, 7.3267, 7.3262, 7.3273, 7.3285, 7.3298, 7.3291, 7.3284, 7.328, 7.3279, 7.3291, 7.3286, 7.3279, 7.3272, 7.3267, 7.3262, 7.3256, 7.3251, 7.3246, 7.324, 7.3261, 7.3291, 7.3286, 7.3282, 7.3275, 7.3286, 7.328, 7.3275, 7.3272, 7.3265, 7.326, 7.3253, 7.3251, 7.3246, 7.3257, 7.3251, 7.3245, 7.3238, 7.3268, 7.3251, 7.3247, 7.3242, 7.3237, 7.3248, 7.3241, 7.3236, 7.3249, 7.3245, 7.3257, 7.3251, 7.3262, 7.3274, 7.3284, 7.3278, 7.3271, 7.3265, 7.3264, 7.326, 7.3255, 7.3258, 7.3252, 7.3246, 7.3241, 7.3234, 7.3228, 7.3223, 7.3216, 7.3228, 7.3222, 7.32, 7.3194, 7.3206, 7.322, 7.3231, 7.3226, 7.322, 7.3214, 7.3208, 7.3221, 7.3214, 7.3214, 7.3226, 7.3223, 7.3217, 7.3211, 7.3204, 7.3198, 7.3195, 7.3207, 7.3217, 7.3212, 7.3209, 7.3206, 7.3205, 7.3203, 7.3181, 7.3176, 7.3172, 7.3166, 7.3161, 7.3155, 7.3149, 7.3143, 7.3156, 7.3149, 7.3147, 7.3141, 7.316, 7.3172, 7.3167, 7.3162, 7.3157, 7.3151, 7.3148, 7.3141, 7.3134, 7.3148, 7.3141, 7.3155, 7.3151, 7.3145, 7.3156, 7.3149, 7.3144, 7.3139, 7.3134, 7.3129, 7.3125, 7.3124, 7.3118, 7.3113, 7.3108, 7.3101, 7.3112, 7.3105, 7.31, 7.3094, 7.3088, 7.3083, 7.3094, 7.3088, 7.3083, 7.3077, 7.3072, 7.3101, 7.3095, 7.3093, 7.3086, 7.308, 7.3074, 7.3122, 7.3132, 7.3125, 7.3103, 7.3114, 7.3109, 7.3106, 7.312, 7.3113, 7.3116, 7.311, 7.3104, 7.3101, 7.3096, 7.3092, 7.3087, 7.308, 7.3077, 7.3071, 7.3081, 7.3082, 7.3077, 7.3071, 7.3065, 7.3097, 7.3093, 7.3088, 7.3084, 7.3077, 7.3088, 7.3082, 7.3111, 7.3092, 7.3086, 7.3081, 7.3075, 7.307, 7.3065, 7.3059, 7.3054, 7.305, 7.3045, 7.3043, 7.3038, 7.3031, 7.3025, 7.3021, 7.3018, 7.3014, 7.3008, 7.3004, 7.3, 7.3011, 7.3005, 7.3, 7.2994, 7.3006, 7.3017, 7.3011, 7.3008, 7.3006, 7.3001, 7.2995, 7.2989, 7.2984, 7.2981, 7.2982, 7.2976, 7.297, 7.2964, 7.2958, 7.2955, 7.2949, 7.2945, 7.2956, 7.2968, 7.2962, 7.2959, 7.2955, 7.2966, 7.299, 7.2993, 7.2987, 7.2981, 7.2975, 7.297, 7.2964, 7.2958, 7.2968, 7.2996, 7.299, 7.2987, 7.2981, 7.2993, 7.2988, 7.2998, 7.3014, 7.301, 7.3005, 7.2999, 7.2997, 7.3008, 7.3019, 7.3017, 7.3011, 7.3005, 7.2999, 7.2993, 7.299, 7.3001, 7.2995, 7.2989, 7.2983, 7.2977, 7.2987, 7.2998, 7.2994, 7.2988, 7.2996, 7.299, 7.2985, 7.298, 7.2975, 7.297, 7.2965, 7.2964, 7.2959, 7.2954, 7.2948, 7.2945, 7.294, 7.2935, 7.2929, 7.2924, 7.292, 7.2914, 7.2911, 7.2925, 7.2919, 7.2914, 7.2908, 7.2903, 7.2916, 7.2913, 7.2925, 7.2919, 7.2916, 7.2917, 7.2913, 7.2909, 7.2903, 7.2899, 7.2893, 7.2887, 7.2881, 7.2891, 7.2886, 7.2892, 7.2886, 7.2882, 7.2877, 7.2856, 7.285, 7.2846, 7.2841, 7.2837, 7.2833, 7.2827, 7.2876, 7.2874, 7.2869, 7.2879, 7.2876, 7.2874, 7.2872, 7.2867, 7.2883, 7.2884, 7.2864, 7.2878, 7.2872, 7.2866, 7.286, 7.2856, 7.2851, 7.2862, 7.2856, 7.2851, 7.2863, 7.287, 7.2865, 7.2875, 7.2869, 7.2879, 7.2873, 7.2867, 7.2861, 7.2858, 7.2853, 7.2848, 7.2842, 7.2836, 7.283, 7.2841, 7.2835, 7.283, 7.2841, 7.2852, 7.2846, 7.2841, 7.2837, 7.2834, 7.2828, 7.2822, 7.2832, 7.2826, 7.2821, 7.2861, 7.2856, 7.2868, 7.288, 7.2874, 7.2868, 7.2864, 7.2875, 7.2871, 7.2865, 7.2859, 7.2855, 7.2856, 7.2854, 7.2854, 7.285, 7.2844, 7.2838, 7.2833, 7.2828, 7.2825, 7.2949, 7.2943, 7.2938, 7.2933, 7.2944, 7.2954, 7.2965, 7.2961, 7.2956, 7.2952, 7.295, 7.2973, 7.2969, 7.2971, 7.2982, 7.2977, 7.2988, 7.2985, 7.2981, 7.2976, 7.297, 7.2965, 7.2975, 7.2985, 7.2979, 7.2973, 7.2968, 7.2963, 7.2957, 7.2952, 7.2948, 7.2992, 7.2987, 7.2983, 7.298, 7.2974, 7.297, 7.2966, 7.2962, 7.2957, 7.2951, 7.2947, 7.2945, 7.2939, 7.2952, 7.2946, 7.2942, 7.2937, 7.2933, 7.2945, 7.2956, 7.2952, 7.2946, 7.294, 7.2936, 7.2933, 7.2944, 7.2938, 7.2932, 7.2926, 7.292, 7.2916, 7.2911, 7.2906, 7.2901, 7.2896, 7.2906, 7.2902, 7.2897, 7.2908, 7.2903, 7.2897, 7.2892, 7.2903, 7.2898, 7.2892, 7.2887, 7.2883, 7.288, 7.2876, 7.2871, 7.2867, 7.2861, 7.286, 7.2857, 7.2851, 7.2845, 7.2846, 7.2862, 7.2857, 7.2867, 7.2862, 7.2857, 7.2854, 7.285, 7.2844, 7.284, 7.2836, 7.2833, 7.2845, 7.2839, 7.2849, 7.2846, 7.2841, 7.285, 7.283, 7.2825, 7.2806, 7.28, 7.2794, 7.2791, 7.2786, 7.2781, 7.2791, 7.2786, 7.2781, 7.2792, 7.2788, 7.2784, 7.2779, 7.2774, 7.2769, 7.2764, 7.2758, 7.2752, 7.2747, 7.2742, 7.2753, 7.2748, 7.2743, 7.274, 7.2735, 7.273, 7.274, 7.2735, 7.273, 7.2726, 7.2737, 7.2735, 7.2749, 7.2799, 7.2825, 7.2819, 7.2815, 7.2826, 7.2835, 7.2831, 7.2827, 7.2821, 7.2815, 7.281, 7.2843, 7.2839, 7.2835, 7.2846, 7.2841, 7.2855, 7.2865, 7.2896, 7.2892, 7.2901, 7.2912, 7.2906, 7.2903, 7.2903, 7.29, 7.2895, 7.2892, 7.2902, 7.2897, 7.2896, 7.2891, 7.2909, 7.2905, 7.2901, 7.2899, 7.2894, 7.2889, 7.289, 7.29, 7.291, 7.2923, 7.2919, 7.2938, 7.2949, 7.2962, 7.2958, 7.2953, 7.2964, 7.2961, 7.2958, 7.2957, 7.2953, 7.2948, 7.2943, 7.294, 7.295, 7.2945, 7.294, 7.2935, 7.293, 7.2925, 7.292, 7.2933, 7.2929, 7.2924, 7.292, 7.2916, 7.2911, 7.2912, 7.2909, 7.2904, 7.2899, 7.2894, 7.2889, 7.2884, 7.2879, 7.2873, 7.2867, 7.2861, 7.287, 7.2866, 7.2863, 7.2857, 7.2852, 7.2848, 7.2843, 7.2838, 7.2833, 7.2814, 7.2812, 7.2809, 7.2804, 7.2814, 7.281, 7.2805, 7.2799, 7.2794, 7.2788, 7.2783, 7.2778, 7.2773, 7.2768, 7.2821, 7.2857, 7.2867, 7.2898, 7.2931, 7.2942, 7.2937, 7.2932, 7.2928, 7.2923, 7.2919, 7.2914, 7.291, 7.2905, 7.29, 7.2895, 7.289, 7.2899, 7.2895, 7.2905, 7.2901, 7.2895, 7.2905, 7.2899, 7.2884, 7.2895, 7.2891, 7.2886, 7.2917, 7.2958, 7.2968, 7.2966, 7.2962, 7.2957, 7.2953, 7.2951, 7.2946, 7.2941, 7.2938, 7.2934, 7.2918, 7.2914, 7.2896, 7.2905, 7.29, 7.2899, 7.2927, 7.298, 7.2975, 7.2956, 7.2966, 7.2961, 7.2956, 7.2951, 7.2961, 7.2956, 7.2953, 7.2948, 7.2943, 7.2938, 7.2933, 7.2929, 7.2912, 7.2908, 7.2904, 7.2899, 7.2909, 7.2905, 7.2915, 7.291, 7.2921, 7.2931, 7.2927, 7.2921, 7.2932, 7.2927, 7.2923, 7.2933, 7.2928, 7.2923, 7.2917, 7.2912, 7.2907, 7.2901, 7.2895, 7.2893, 7.289, 7.2871, 7.288, 7.2875, 7.2871, 7.2872, 7.2885, 7.288, 7.2889, 7.2871, 7.287, 7.2865, 7.286, 7.2857, 7.2852, 7.2849, 7.2844, 7.2845, 7.2827, 7.2822, 7.2819, 7.2814, 7.2809, 7.2806, 7.2803, 7.2799, 7.2796, 7.2794, 7.2789, 7.2799, 7.2796, 7.2792, 7.2787, 7.2797, 7.2793, 7.2789, 7.2784, 7.278, 7.279, 7.2784, 7.2781, 7.2776, 7.2772, 7.2767, 7.279, 7.2791, 7.2789, 7.2784, 7.2793, 7.2789, 7.2785, 7.2797, 7.2806, 7.2803, 7.2824, 7.2834, 7.2829, 7.2839, 7.2834, 7.2829, 7.2824, 7.282, 7.2829, 7.2811, 7.2821, 7.2843, 7.2852, 7.2862, 7.2875, 7.2885, 7.2867, 7.2863, 7.2875, 7.287, 7.2866, 7.2876, 7.2872, 7.2882, 7.2878, 7.2888, 7.2898, 7.2893, 7.2906, 7.2917, 7.2913, 7.2923, 7.2919, 7.2915, 7.2912, 7.292, 7.2929, 7.2925, 7.2921, 7.2917, 7.2912, 7.291, 7.2919, 7.2915, 7.2911, 7.2906, 7.2902, 7.2897, 7.2892, 7.2888, 7.2885, 7.2881, 7.2891, 7.2886, 7.2869, 7.2879, 7.2874, 7.287, 7.2864, 7.2861, 7.2858, 7.2868, 7.2863, 7.2858, 7.2853, 7.2862, 7.2858, 7.2853, 7.2851, 7.29, 7.2897, 7.2893, 7.289, 7.2901, 7.2897, 7.288, 7.2876, 7.2885, 7.2882, 7.2893, 7.2889, 7.2884, 7.2892, 7.2887, 7.2883, 7.288, 7.2875, 7.2872, 7.2867, 7.2863, 7.2861, 7.2897, 7.2914, 7.2923, 7.292, 7.2916, 7.2926, 7.2921, 7.2918, 7.2915, 7.291, 7.2906, 7.2906, 7.2903, 7.2898, 7.2881, 7.2894, 7.2904, 7.2916, 7.2916, 7.2911, 7.2907, 7.2902, 7.2898, 7.2914, 7.291, 7.292, 7.2916, 7.2911, 7.2908, 7.2905, 7.2902, 7.2898, 7.2893, 7.2893, 7.29, 7.2895, 7.289, 7.2885, 7.2884, 7.2879, 7.2875, 7.2872, 7.2868, 7.2877, 7.2874, 7.2869, 7.2878, 7.2887, 7.2918, 7.2913, 7.2908, 7.2903, 7.2887, 7.2882, 7.288, 7.2875, 7.2873, 7.287, 7.2865, 7.2874, 7.2869, 7.2878, 7.2887, 7.2888, 7.2883, 7.2892, 7.29, 7.2897, 7.2908, 7.2906, 7.2915, 7.2924, 7.2922, 7.2918, 7.2913, 7.2922, 7.2931, 7.2927, 7.2936, 7.2931, 7.2943, 7.2942, 7.2937, 7.2946, 7.2941, 7.294, 7.2949, 7.2945, 7.294, 7.2936, 7.2936, 7.2931, 7.2926, 7.2936, 7.2936, 7.2932, 7.2929, 7.2916, 7.2914, 7.291, 7.2907, 7.2915, 7.291, 7.2905, 7.29, 7.2895, 7.2904, 7.2899, 7.2907, 7.2916, 7.2912, 7.2907, 7.2902, 7.2899, 7.2896, 7.2891, 7.2886, 7.2884, 7.288, 7.2875, 7.2882, 7.2879, 7.2876, 7.2871, 7.291, 7.292, 7.2942, 7.295, 7.295, 7.2945, 7.294, 7.2937, 7.2933, 7.2928, 7.2965, 7.296, 7.2969, 7.2965, 7.2975, 7.2977, 7.2985, 7.2981, 7.2976, 7.2971, 7.2966, 7.2962, 7.2957, 7.2953, 7.2949, 7.2959, 7.2958, 7.2969, 7.2978, 7.2974, 7.3016, 7.3011, 7.3006, 7.3003, 7.2998, 7.2994, 7.2989, 7.2985, 7.298, 7.2975, 7.297, 7.3008, 7.3003, 7.3006, 7.3002, 7.2997, 7.3006, 7.3018, 7.3029, 7.3026, 7.3022, 7.3018, 7.3026, 7.3023, 7.3018, 7.3026, 7.3021, 7.303, 7.3039, 7.3036, 7.3045, 7.3041, 7.3036, 7.3031, 7.3027, 7.3036, 7.3032, 7.3042, 7.3037, 7.3032, 7.3041, 7.3037, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3011, 7.3008, 7.3017, 7.3027, 7.3036, 7.3031, 7.303, 7.3028, 7.3023, 7.3032, 7.3043, 7.3052, 7.3049, 7.3058, 7.3055, 7.3064, 7.3073, 7.3082, 7.3127, 7.3131, 7.3126, 7.3121, 7.3116, 7.3111, 7.3122, 7.3117, 7.3114, 7.311, 7.3106, 7.3102, 7.3098, 7.3098, 7.3107, 7.3115, 7.3112, 7.3121, 7.3116, 7.3111, 7.3119, 7.3115, 7.3123, 7.3118, 7.3128, 7.3123, 7.3133, 7.313, 7.3125, 7.312, 7.3116, 7.3111, 7.3106, 7.3114, 7.311, 7.3108, 7.3117, 7.3112, 7.3109, 7.3106, 7.3101, 7.3104, 7.3099, 7.3107, 7.3102, 7.3097, 7.3118, 7.3113, 7.3108, 7.3103, 7.3098, 7.3095, 7.3093, 7.3093, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3105, 7.31, 7.3108, 7.3117, 7.3113, 7.311, 7.3105, 7.3104, 7.31, 7.3095, 7.3093, 7.3089, 7.3085, 7.3082, 7.3079, 7.3075, 7.307, 7.3066, 7.3061, 7.3056, 7.3052, 7.3047, 7.3056, 7.3052, 7.3047, 7.3043, 7.3041, 7.3037, 7.3044, 7.3039, 7.3048, 7.3044, 7.304, 7.3049, 7.3045, 7.3053, 7.3048, 7.3044, 7.304, 7.3036, 7.3032, 7.3029, 7.3038, 7.3035, 7.3032, 7.3043, 7.3052, 7.3048, 7.3033, 7.3029, 7.3026, 7.3022, 7.3023, 7.3018, 7.3014, 7.3012, 7.3007, 7.3002, 7.2998, 7.3007, 7.3016, 7.3024, 7.302, 7.303, 7.3027, 7.3023, 7.302, 7.3017, 7.3026, 7.3023, 7.3031, 7.3039, 7.3036, 7.3031, 7.3032, 7.3041, 7.3049, 7.3046, 7.3058, 7.3054, 7.3051, 7.3047, 7.3044, 7.3079, 7.3077, 7.3074, 7.307, 7.3054, 7.3059, 7.3055, 7.3065, 7.3062, 7.3071, 7.3068, 7.3071, 7.3067, 7.3062, 7.3071, 7.3067, 7.3062, 7.306, 7.3056, 7.3052, 7.3048, 7.3049, 7.3045, 7.3044, 7.3068, 7.3063, 7.3059, 7.3056, 7.3052, 7.3047, 7.3055, 7.3064, 7.306, 7.3069, 7.3064, 7.3059, 7.3055, 7.305, 7.3045, 7.3054, 7.3063, 7.3066, 7.3061, 7.3057, 7.3055, 7.305, 7.3046, 7.3043, 7.304, 7.3035, 7.3031, 7.3027, 7.3025, 7.3021, 7.3018, 7.3026, 7.307, 7.3066, 7.3104, 7.3099, 7.3095, 7.3093, 7.31, 7.3108, 7.3103, 7.3099, 7.3095, 7.3092, 7.3089, 7.3101, 7.3098, 7.3097, 7.3106, 7.3107, 7.3115, 7.3115, 7.311, 7.3108, 7.3104, 7.3112, 7.3109, 7.3108, 7.3117, 7.3125, 7.3134, 7.313, 7.3129, 7.3124, 7.3109, 7.3119, 7.3114, 7.3109, 7.3105, 7.3101, 7.3096, 7.3104, 7.3113, 7.3109, 7.3105, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3092, 7.3088, 7.3083, 7.308, 7.3077, 7.3072, 7.306, 7.3057, 7.3053, 7.3049, 7.3047, 7.305, 7.3046, 7.3059, 7.3054, 7.3042, 7.3038, 7.3049, 7.307, 7.3078, 7.3073, 7.3071, 7.3066, 7.3063, 7.3058, 7.3054, 7.3052, 7.3049, 7.3059, 7.3056, 7.3093, 7.309, 7.3091, 7.311, 7.3106, 7.3104, 7.3125, 7.3121, 7.3118, 7.3113, 7.3111, 7.3108, 7.3116, 7.3112, 7.3108, 7.3105, 7.3116, 7.3114, 7.311, 7.3107, 7.3105, 7.3103, 7.3098, 7.3095, 7.3091, 7.3087, 7.3084, 7.3081, 7.3077, 7.3085, 7.3093, 7.3088, 7.3098, 7.3095, 7.3104, 7.3113, 7.3114, 7.3116, 7.3113, 7.3109, 7.3108, 7.3105, 7.3104, 7.3111, 7.3119, 7.3128, 7.3124, 7.3132, 7.3129, 7.3133, 7.3129, 7.3137, 7.3133, 7.3129, 7.3137, 7.3145, 7.3141, 7.3149, 7.3165, 7.3173, 7.3169, 7.3167, 7.3162, 7.3159, 7.3154, 7.3162, 7.3158, 7.3154, 7.3163, 7.3151, 7.3164, 7.3172, 7.3179, 7.3177, 7.3172, 7.318, 7.3188, 7.3184, 7.3193, 7.3196, 7.3204, 7.3201, 7.3209, 7.3206, 7.3212, 7.3208, 7.3204, 7.3212, 7.3208, 7.3204, 7.3214, 7.3211, 7.3207, 7.3204, 7.3212, 7.3211, 7.3196, 7.3194, 7.3191, 7.3199, 7.3195, 7.3192, 7.3188, 7.3196, 7.3192, 7.3187, 7.3182, 7.3178, 7.3176, 7.3184, 7.318, 7.3191, 7.3211, 7.3207, 7.3203, 7.3211, 7.3198, 7.3194, 7.3202, 7.3199, 7.3198, 7.3194, 7.319, 7.3192, 7.32, 7.3196, 7.3192, 7.3188, 7.3184, 7.318, 7.3176, 7.3175, 7.3171, 7.3168, 7.3164, 7.3149, 7.315, 7.3147, 7.3143, 7.3141, 7.3137, 7.3133, 7.3129, 7.3138, 7.3135, 7.3132, 7.314, 7.3136, 7.3132, 7.3128, 7.3124, 7.3121, 7.3118, 7.3104, 7.31, 7.3109, 7.3105, 7.3101, 7.3111, 7.3107, 7.3102, 7.3099, 7.3096, 7.3097, 7.3111, 7.3121, 7.3119, 7.3118, 7.3114, 7.311, 7.3106, 7.3113, 7.3133, 7.3141, 7.3138, 7.3134, 7.3142, 7.3138, 7.3136, 7.3132, 7.3129, 7.3125, 7.3124, 7.3121, 7.3117, 7.3113, 7.3108, 7.3104, 7.3101, 7.3097, 7.3105, 7.3091, 7.3099, 7.3099, 7.3095, 7.3091, 7.3098, 7.3095, 7.3093, 7.309, 7.3088, 7.3087, 7.3083, 7.3078, 7.3085, 7.3082, 7.3079, 7.3075, 7.3074, 7.307, 7.3067, 7.3063, 7.3071, 7.3069, 7.3069, 7.3066, 7.3065, 7.305, 7.3046, 7.3044, 7.304, 7.3038, 7.3024, 7.3022, 7.3018, 7.3014, 7.301, 7.3006, 7.3004, 7.3012, 7.3009, 7.3005, 7.3004, 7.3012, 7.3009, 7.3006, 7.3005, 7.3003, 7.301, 7.3007, 7.3004, 7.3, 7.3008, 7.3006, 7.3002, 7.301, 7.3007, 7.3003, 7.3002, 7.3011, 7.3007, 7.3016, 7.3023, 7.3031, 7.3027, 7.3022, 7.303, 7.3026, 7.3022, 7.3019, 7.3016, 7.3024, 7.3032, 7.3028, 7.3036, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3014, 7.301, 7.3006, 7.3004, 7.3001, 7.2999, 7.2995, 7.2991, 7.2987, 7.299, 7.2987, 7.2994, 7.3025, 7.3022, 7.3019, 7.3036, 7.3032, 7.3052, 7.3048, 7.3046, 7.3043, 7.3043, 7.3073, 7.3069, 7.3088, 7.3085, 7.3081, 7.3078, 7.3086, 7.3083, 7.3081, 7.3093, 7.3101, 7.3097, 7.3093, 7.309, 7.3087, 7.3085, 7.3083, 7.3079, 7.3076, 7.3073, 7.3069, 7.3065, 7.3062, 7.3058, 7.3055, 7.3051, 7.3059, 7.3055, 7.3051, 7.3049, 7.3057, 7.3065, 7.3061, 7.3069, 7.3078, 7.3082, 7.309, 7.3087, 7.3084, 7.307, 7.3078, 7.3076, 7.3072, 7.3069, 7.3066, 7.3062, 7.307, 7.3066, 7.3062, 7.3048, 7.3044, 7.304, 7.3036, 7.3033, 7.3031, 7.304, 7.3037, 7.3037, 7.3033, 7.3019, 7.3033, 7.3029, 7.3026, 7.3024, 7.302, 7.3038, 7.3034, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3032, 7.3028, 7.3024, 7.3032, 7.3028, 7.3034, 7.3031, 7.3038, 7.3037, 7.3045, 7.3041, 7.3038, 7.3035, 7.306, 7.3068, 7.3064, 7.306, 7.3056, 7.3066, 7.3062, 7.3058, 7.3054, 7.305, 7.3058, 7.3054, 7.305, 7.3047, 7.3043, 7.3039, 7.3035, 7.3043, 7.3039, 7.3046, 7.3043, 7.3039, 7.3036, 7.3033, 7.3029, 7.3025, 7.3021, 7.3028, 7.3024, 7.3023, 7.3019, 7.3015, 7.3011, 7.3008, 7.302, 7.3016, 7.3013, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.2998, 7.2994, 7.2991, 7.2987, 7.2983, 7.2979, 7.2976, 7.2973, 7.2969, 7.2966, 7.2962, 7.2958, 7.2955, 7.2952, 7.2959, 7.2967, 7.2975, 7.2972, 7.2968, 7.2967, 7.2963, 7.2961, 7.2947, 7.2943, 7.294, 7.2947, 7.2944, 7.2943, 7.295, 7.2958, 7.2956, 7.2952, 7.2948, 7.2946, 7.2942, 7.2941, 7.2937, 7.2933, 7.2941, 7.2937, 7.2933, 7.2929, 7.2926, 7.2922, 7.2918, 7.2914, 7.2921, 7.2929, 7.2925, 7.2931, 7.2929, 7.2937, 7.2933, 7.295, 7.2968, 7.2975, 7.2982, 7.2989, 7.2988, 7.2985, 7.2983, 7.2979, 7.2976, 7.2984, 7.2981, 7.2979, 7.2976, 7.2973, 7.2969, 7.2976, 7.2975, 7.2983, 7.2991, 7.2987, 7.2994, 7.2991, 7.3, 7.3009, 7.3006, 7.3014, 7.3011, 7.3008, 7.3006, 7.3013, 7.301, 7.3007, 7.3003, 7.2999, 7.2996, 7.2997, 7.2984, 7.2991, 7.2987, 7.2994, 7.2991, 7.2987, 7.2983, 7.298, 7.2976, 7.2973, 7.2969, 7.2965, 7.2962, 7.2971, 7.2968, 7.2976, 7.2974, 7.297, 7.2977, 7.2974, 7.2971, 7.2968, 7.2964, 7.2971, 7.2967, 7.2963, 7.2959, 7.2956, 7.2952, 7.2948, 7.2966, 7.2963, 7.2959, 7.2955, 7.2952, 7.2951, 7.2949, 7.2945, 7.2942, 7.2938, 7.294, 7.2937, 7.2936, 7.2932, 7.2928, 7.2914, 7.2921, 7.2917, 7.2914, 7.291, 7.2919, 7.2926, 7.2923, 7.2919, 7.2916, 7.2913, 7.2921, 7.2928, 7.2924, 7.292, 7.2916, 7.2923, 7.2919, 7.2916, 7.2924, 7.2932, 7.2928, 7.2935, 7.2931, 7.2928, 7.2924, 7.2921, 7.2918, 7.2925, 7.2921, 7.2917, 7.2913, 7.2909, 7.2905, 7.2902, 7.2899, 7.2896, 7.2894, 7.2914, 7.2913, 7.292, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.2899, 7.2895, 7.2902, 7.2907, 7.2903, 7.2899, 7.2897, 7.2893, 7.29, 7.2898, 7.2894, 7.2901, 7.2899, 7.2912, 7.2928, 7.2928, 7.2925, 7.2922, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2914, 7.291, 7.2907, 7.2913, 7.2909, 7.2907, 7.2915, 7.2922, 7.2919, 7.2915, 7.2922, 7.2918, 7.2925, 7.2924, 7.2922, 7.2919, 7.2916, 7.2923, 7.2919, 7.2917, 7.2915, 7.2911, 7.2907, 7.2903, 7.29, 7.2897, 7.2904, 7.2901, 7.2899, 7.2896, 7.2886, 7.2895, 7.2924, 7.292, 7.2922, 7.2929, 7.294, 7.2947, 7.2944, 7.2944, 7.294, 7.2937, 7.2944, 7.294, 7.2937, 7.2933, 7.2929, 7.2937, 7.2934, 7.2931, 7.2927, 7.2923, 7.292, 7.2916, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2949, 7.2945, 7.2952, 7.2949, 7.2957, 7.2953, 7.2951, 7.2947, 7.2954, 7.295, 7.2948, 7.2955, 7.2951, 7.2947, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2927, 7.2933, 7.2931, 7.2937, 7.2944, 7.2951, 7.2947, 7.2954, 7.2951, 7.2958, 7.2954, 7.2951, 7.2949, 7.2946, 7.2965, 7.2961, 7.2957, 7.2954, 7.295, 7.2949, 7.2946, 7.2942, 7.2949, 7.2946, 7.2944, 7.2941, 7.2938, 7.2935, 7.2942, 7.2949, 7.2957, 7.2979, 7.2978, 7.2975, 7.2974, 7.2971, 7.2969, 7.2966, 7.2963, 7.296, 7.2957, 7.2944, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2944, 7.2941, 7.2947, 7.2944, 7.295, 7.2948, 7.2945, 7.2941, 7.2937, 7.2943, 7.2939, 7.2946, 7.2942, 7.2938, 7.2956, 7.2963, 7.296, 7.2956, 7.2957, 7.2964, 7.2961, 7.2959, 7.2955, 7.2953, 7.295, 7.295, 7.2947, 7.2944, 7.2941, 7.2948, 7.2954, 7.2961, 7.2959, 7.2981, 7.2988, 7.2987, 7.2984, 7.2981, 7.2988, 7.2985, 7.2991, 7.2999, 7.2996, 7.2993, 7.299, 7.306, 7.3057, 7.3063, 7.306, 7.3056, 7.3063, 7.3059, 7.3057, 7.3071, 7.3078, 7.3085, 7.3082, 7.3081, 7.309, 7.3088, 7.3086, 7.3084, 7.3083, 7.308, 7.3077, 7.3064, 7.3081, 7.3078, 7.3075, 7.3072, 7.3079, 7.3075, 7.3071, 7.3067, 7.3063, 7.307, 7.3066, 7.3063, 7.3071, 7.3067, 7.3063, 7.306, 7.3057, 7.3054, 7.305, 7.3046, 7.3042, 7.3038, 7.3045, 7.3052, 7.3059, 7.3057, 7.3054, 7.3051, 7.3059, 7.3057, 7.3054, 7.3053, 7.3051, 7.3048, 7.3045, 7.3053, 7.3052, 7.3049, 7.3056, 7.3052, 7.3049, 7.3056, 7.3053, 7.305, 7.3047, 7.3045, 7.3042, 7.3039, 7.3036, 7.3033, 7.303, 7.3037, 7.3033, 7.3038, 7.3035, 7.3031, 7.306, 7.3076, 7.3063, 7.307, 7.3074, 7.3092, 7.3088, 7.3085, 7.3082, 7.3093, 7.3102, 7.31, 7.3097, 7.3104, 7.31, 7.3111, 7.3109, 7.312, 7.3117, 7.3114, 7.3115, 7.3122, 7.3118, 7.3125, 7.3121, 7.3128, 7.3135, 7.3122, 7.3129, 7.3116, 7.3112, 7.3108, 7.3104, 7.3111, 7.3108, 7.3105, 7.3113, 7.312, 7.3117, 7.3124, 7.3131, 7.3139, 7.3136, 7.3133, 7.3139, 7.3135, 7.3162, 7.3158, 7.3155, 7.3152, 7.3169, 7.3177, 7.3164, 7.3162, 7.3169, 7.3177, 7.3199, 7.3196, 7.3203, 7.32, 7.3209, 7.3217, 7.3213, 7.3231, 7.3231, 7.3238, 7.3234, 7.3235, 7.3231, 7.3241, 7.3238, 7.3234, 7.3231, 7.3238, 7.3235, 7.3232, 7.3229, 7.3226, 7.3225, 7.3222, 7.3229, 7.3226, 7.3229, 7.3239, 7.3248, 7.3268, 7.3265, 7.3276, 7.3299, 7.3306, 7.3302, 7.3298, 7.3294, 7.3291, 7.3306, 7.3302, 7.33, 7.3297, 7.3293, 7.3291, 7.3298, 7.3295, 7.3294, 7.3302, 7.3298, 7.3315, 7.3315, 7.3321, 7.3317, 7.3314, 7.3321, 7.3319, 7.3318, 7.3306, 7.3322, 7.334, 7.3357, 7.3353, 7.3351, 7.3348, 7.3354, 7.3352, 7.3359, 7.3355, 7.3362, 7.3418, 7.3415, 7.3412, 7.3418, 7.3425, 7.3421, 7.3418, 7.3414, 7.3411, 7.3408, 7.3405, 7.3402, 7.3408, 7.3405, 7.3412, 7.3419, 7.3415, 7.3411, 7.3407, 7.3414, 7.343, 7.3437, 7.3444, 7.344, 7.3436, 7.3443, 7.3449, 7.3458, 7.3485, 7.3491, 7.3487, 7.3484, 7.3491, 7.3488, 7.3486, 7.3496, 7.3493, 7.349, 7.3487, 7.3491, 7.3489, 7.3485, 7.3481, 7.3478, 7.3474, 7.3472, 7.3469, 7.3466, 7.3462, 7.346, 7.3456, 7.3453, 7.3459, 7.3455, 7.3451, 7.3447, 7.3444, 7.345, 7.3457, 7.3453, 7.346, 7.3469, 7.3468, 7.3465, 7.3472, 7.347, 7.3467, 7.3466, 7.3473, 7.3471, 7.3471, 7.3479, 7.3476, 7.3473, 7.3472, 7.3469, 7.3477, 7.3484, 7.3481, 7.3489, 7.3485, 7.3485, 7.3492, 7.3489, 7.3485, 7.3482, 7.3479, 7.3476, 7.3474, 7.3471, 7.3478, 7.3475, 7.3474, 7.3473, 7.347, 7.3467, 7.3464]}
rtt1_10_10 = {'192.168.122.110': [5.4743, 5.3494, 6.1264, 5.6801, 5.6803, 5.3401, 5.5432, 5.4164, 6.2985, 6.6202, 5.5289, 14.8401, 5.5702, 5.594, 11.6262, 10.8125, 10.9787, 5.5699, 12.6357, 5.3196, 5.4703, 5.3272, 10.9894, 5.5265, 11.3788, 10.9804, 5.4898, 10.4806, 23.1249, 5.6422, 5.4572, 5.3451, 11.3616, 5.2958, 5.9364, 5.4667, 5.4507, 5.441, 6.0833, 10.7987, 11.8411, 5.3022, 11.9996, 10.7069, 5.4467, 11.6322, 6.592, 6.022, 10.7489, 5.2631, 5.5406, 5.5821, 5.2407, 11.6687, 5.9304, 10.9615, 5.8081, 33.3328, 6.1343, 6.3047, 21.8408, 5.4445, 6.2957, 6.2585, 5.8463, 5.3413, 6.4957, 6.7782, 21.9529, 16.515, 5.4755, 0.9091, 0.4644, 6.5014, 5.9791, 5.6658, 5.5196, 5.7685, 5.2876, 5.2054, 17.5219, 5.3947, 16.3548, 0.7474, 10.7291, 5.2938, 6.4175, 6.8312, 6.2172, 6.3863, 21.137, 5.4495, 5.4929, 5.4345, 10.6258, 5.6434, 5.3189, 5.6965, 11.7466, 6.9067, 10.9591, 5.5227, 6.5694, 22.2669, 5.7185, 5.5363, 6.5701, 5.455, 10.9699, 6.2227, 6.3012, 6.516, 5.4939, 5.4932, 5.8544, 5.6686, 6.0461, 27.2543, 5.5583, 5.3248, 5.5125, 5.5528, 6.2103, 5.6121, 5.4743, 6.1758, 5.3842, 6.3469, 5.3337, 10.8922, 5.5189, 5.6913, 5.4085, 5.6396, 11.106, 6.7394, 5.296, 10.7758, 5.656, 11.0726, 5.3959, 10.8948, 5.2907, 6.511, 5.569, 5.9936, 5.7356, 14.2839, 5.8472, 10.8278, 6.3822, 5.4469, 10.6931, 10.8459, 6.4785, 10.8137, 5.5666, 5.5635, 12.5484, 5.6248, 6.427, 6.3379, 5.4667, 5.4395, 5.2822, 5.4109, 5.5265, 5.8708, 5.8453, 6.2609, 5.7456, 11.7643, 5.3473, 5.476, 5.6963, 6.3882, 10.4949, 6.3829, 6.8102, 5.2857, 5.7788, 11.0006, 5.3694, 5.7604, 23.735, 5.3227, 5.5065, 6.1221, 5.1913, 11.152, 5.9829, 16.3114, 6.7067, 5.6107, 8.0097, 6.3746, 5.2645, 6.9292, 5.2867, 5.5764, 5.5425, 6.4383, 5.7833, 11.4999, 6.3012, 6.2726, 5.445, 5.2209, 11.9107, 11.3051, 5.9257, 6.5377, 5.2853, 5.3957, 5.4581, 10.7422, 6.3646, 6.6261, 5.7766, 5.4898, 5.6274, 10.8774, 11.0016, 5.7914, 11.2855, 5.3668, 6.546, 6.3241, 5.3051, 11.2097, 5.5707, 11.1802, 11.1029, 6.1684, 5.4333, 15.8582, 10.6881, 5.4381, 5.7445, 8.7867, 5.2938, 5.6846, 5.5652, 10.9668, 5.3103, 5.4123, 5.698, 0.8152, 10.8788, 10.9882, 6.3384, 6.8235, 7.5333, 5.6643, 6.3145, 0.6075, 5.8537, 6.4731, 5.5528, 20.8216], '192.168.122.119': [5.4898, 5.919, 6.7711, 5.2445, 5.2905, 5.3098, 5.8281, 10.7565, 5.4014, 13.5603, 5.7003, 5.8727, 11.0471, 5.5137, 10.8557, 5.8224, 6.4499, 24.4725, 11.3716, 5.4255, 10.9782, 10.4616, 6.2904, 5.4467, 10.8597, 10.9363, 5.6229, 16.7565, 5.877, 10.4945, 5.3318, 5.542, 5.6205, 16.8185, 10.9622, 5.3828, 6.4118, 5.3456, 5.4064, 5.3928, 5.4896, 5.8503, 5.6958, 5.3024, 5.475, 5.6107, 6.0146, 16.7425, 10.8192, 5.2273, 16.3898, 10.8778, 11.4644, 6.0124, 5.7871, 5.3637, 5.5304, 11.7137, 11.1263, 5.3613, 10.4384, 5.3878, 10.8862, 10.9916, 10.9594, 5.3585, 5.4331, 7.3013, 10.8259, 5.9388, 5.5115, 0.5364, 0.5891, 5.4049, 5.9817, 5.4824, 7.1023, 16.5668, 5.4951, 5.4069, 11.6518, 10.9286, 10.8345, 5.8467, 5.4271, 5.9061, 13.2456, 5.2836, 11.1167, 11.148, 10.7279, 10.9055, 5.4636, 5.9381, 22.9683, 5.6794, 10.7844, 5.8198, 17.4716, 5.4989, 10.993, 11.0393, 6.3081, 6.1691, 6.0198, 5.945, 6.3927, 5.4533, 5.4841, 5.8484, 6.0582, 5.5015, 5.625, 5.5456, 10.9801, 5.2819, 10.5765, 5.4252, 19.6426, 5.3465, 5.5754, 11.1749, 5.3058, 5.6498, 5.9011, 0.644, 11.2929, 15.9781, 11.4264, 5.2335, 5.7051, 5.5268, 5.2688, 10.7658, 10.7017, 12.5816, 5.2266, 5.3725, 10.7448, 6.0303, 11.0171, 5.9261, 5.3606, 5.2724, 5.2636, 26.511, 5.9009, 21.9893, 5.4874, 10.9386, 10.7448, 5.5079, 6.3021, 17.1671, 5.3065, 5.4631, 6.0165, 9.0578, 11.044, 5.518, 5.4498, 10.9499, 5.4224, 5.542, 5.302, 5.82, 5.7111, 11.3692, 11.0817, 5.929, 5.3217, 5.7762, 5.4481, 16.5856, 5.4946, 10.6585, 11.1673, 6.9637, 5.6748, 5.5888, 6.3992, 10.8473, 10.7732, 16.6087, 5.4793, 5.975, 5.4915, 10.9563, 5.271, 5.827, 12.2826, 6.0644, 5.7049, 11.3771, 5.6684, 5.6212, 5.2674, 11.1482, 5.7185, 5.6334, 5.4281, 10.838, 5.5118, 10.8888, 5.713, 11.1566, 5.24, 10.7176, 12.8064, 5.3928, 5.5861, 5.3971, 5.6679, 5.5494, 16.968, 6.0961, 10.9053, 5.6844, 5.4803, 5.527, 5.599, 5.6212, 5.7688, 5.7414, 5.6877, 5.8517, 5.4612, 10.6704, 5.9419, 6.2554, 5.5091, 6.0782, 5.8572, 5.7411, 11.004, 10.6072, 10.7634, 5.4922, 5.7762, 5.6558, 5.1851, 10.9708, 11.4434, 5.4357, 5.4388, 11.147, 6.2675, 0.906, 5.3129, 5.384, 10.9529, 5.3039, 5.1785, 5.7895, 10.8387, 33.2687, 5.6701, 5.6181, 10.9911, 5.2526], '192.168.122.118': [5.4932, 6.741, 13.7329, 5.3694, 10.7343, 10.6883, 5.9149, 10.8676, 5.3399, 12.2643, 11.2214, 11.4198, 5.5759, 6.5, 5.7254, 9.3093, 6.3152, 5.2717, 10.9355, 10.4573, 5.317, 18.4543, 10.8523, 11.1532, 5.6581, 10.9608, 5.3105, 5.6059, 11.3153, 5.7623, 5.6119, 5.6672, 5.295, 5.5254, 11.6978, 10.9184, 5.6467, 5.3701, 5.4529, 5.7921, 5.342, 5.8913, 11.4024, 5.3494, 6.0501, 5.8522, 10.7019, 6.4688, 5.4855, 16.0036, 10.9708, 10.9138, 1.1065, 6.3324, 5.4116, 5.5566, 5.8243, 5.4085, 10.5448, 5.7404, 5.2216, 10.8778, 10.8514, 16.7749, 5.5711, 10.5197, 5.6846, 6.6671, 10.6506, 5.5289, 6.0191, 5.8439, 0.6707, 18.2981, 6.3095, 5.7864, 6.7644, 11.2553, 9.9149, 5.2567, 5.3689, 5.2924, 10.9742, 10.9212, 11.8072, 10.5462, 5.3427, 5.9855, 5.4314, 6.1338, 33.2661, 10.9398, 5.4159, 5.945, 11.2257, 11.3034, 5.444, 15.9364, 5.8615, 6.2366, 5.4998, 6.0277, 5.4309, 10.7667, 5.5897, 11.256, 13.4068, 6.6998, 6.2673, 6.0463, 18.5568, 5.4524, 5.6093, 5.718, 5.4567, 10.6497, 5.8208, 5.4152, 11.0762, 6.402, 5.5737, 5.3294, 5.8362, 5.4877, 5.7259, 0.5834, 6.1448, 1.235, 5.5261, 5.2149, 5.5528, 6.305, 6.3164, 10.7191, 11.214, 5.4088, 10.8089, 10.8423, 11.6351, 11.338, 5.5766, 5.8722, 5.4781, 5.2941, 5.2369, 5.6975, 5.4667, 5.4674, 5.5254, 11.2319, 10.6394, 11.1907, 16.5973, 10.9992, 11.0497, 10.9663, 5.8746, 16.9024, 5.5325, 10.4542, 17.0829, 10.6478, 5.3453, 5.3427, 5.3196, 5.491, 5.2917, 5.2354, 11.0457, 5.3377, 10.7319, 5.564, 5.4886, 11.5385, 5.6047, 17.4575, 6.2525, 5.9233, 5.3422, 5.2617, 5.476, 10.9489, 10.8767, 21.8668, 5.4626, 5.419, 5.6264, 22.4032, 11.4903, 16.3026, 5.6336, 5.2965, 5.6417, 5.4524, 5.6951, 6.3744, 5.2326, 5.4822, 10.7915, 0.5202, 6.0656, 5.8703, 5.6894, 11.6401, 10.8273, 6.31, 5.4677, 5.77, 10.875, 10.8922, 16.6881, 5.8985, 5.4235, 5.4407, 10.9117, 5.5206, 5.4283, 6.2072, 5.2171, 12.5566, 10.7315, 5.7945, 5.2872, 5.6174, 5.9257, 5.9726, 5.6581, 5.4617, 5.3074, 5.4202, 5.6307, 10.7894, 5.5704, 5.6839, 16.4981, 5.2588, 5.3735, 5.2896, 11.3013, 5.3105, 11.2157, 10.9639, 7.324, 10.8273, 5.9409, 5.8274, 5.6567, 0.6344, 5.6224, 5.4834, 11.5101, 6.2382, 5.5153, 5.9047, 6.0086, 11.2641, 6.6147, 5.8818, 5.7783, 6.1812], '192.168.122.120': [6.1116, 5.3353, 11.3487, 5.7242, 11.0874, 5.2655, 16.2282, 5.7423, 5.3267, 9.0251, 17.2536, 11.6396, 5.5244, 5.2896, 5.6782, 5.8973, 6.1352, 5.5456, 11.0059, 5.2879, 5.4467, 5.5439, 5.2941, 5.3864, 5.6331, 5.5242, 21.9083, 5.374, 5.3971, 11.0123, 10.8097, 5.5568, 5.5971, 5.4128, 5.9462, 5.4154, 10.7737, 10.989, 5.6798, 5.3849, 9.45, 5.3978, 5.4963, 5.2812, 11.0216, 5.8119, 5.897, 23.1369, 10.9291, 0.6161, 5.996, 5.8377, 1.2133, 10.8404, 5.7027, 11.7779, 21.5104, 5.5432, 5.7654, 17.3147, 5.4817, 5.3341, 5.4538, 5.4812, 5.4722, 27.8423, 5.6798, 6.7728, 5.5637, 5.8413, 5.4357, 5.2822, 0.7839, 5.3542, 5.872, 11.3769, 11.0967, 6.0384, 5.6841, 10.8836, 5.2645, 5.4138, 10.9012, 5.4274, 5.3608, 5.4324, 6.2892, 5.662, 5.8053, 5.8661, 5.3248, 5.4049, 5.3363, 5.9381, 5.4018, 5.6789, 11.2402, 5.5196, 5.6753, 6.4056, 10.9348, 6.0232, 5.8949, 5.7404, 5.4679, 6.8021, 5.9726, 5.2412, 5.4071, 16.4297, 5.4803, 6.0315, 11.3254, 5.5494, 5.2872, 5.2793, 10.9229, 5.6581, 5.46, 5.9896, 6.0754, 6.202, 5.306, 6.3028, 11.0803, 6.0639, 16.9163, 10.5557, 10.8595, 10.859, 16.8014, 5.3117, 10.9107, 5.3797, 11.1239, 11.1036, 5.4419, 5.4796, 11.1086, 16.5401, 5.9202, 10.8593, 10.7396, 5.4264, 5.399, 11.2166, 5.6903, 11.492, 10.8945, 10.9515, 6.2115, 5.4445, 6.2311, 17.3712, 5.8904, 5.7096, 5.4774, 5.6701, 5.578, 11.27, 5.3258, 5.4817, 6.3667, 6.3579, 10.4315, 5.9371, 11.0972, 5.4696, 16.6979, 11.034, 11.1206, 5.8451, 5.2516, 5.4555, 10.7384, 5.8475, 5.6763, 5.8441, 5.6963, 5.2702, 10.4153, 5.2941, 5.4379, 5.363, 5.4901, 5.5587, 10.7656, 7.0906, 6.1953, 5.6214, 5.4896, 10.9825, 5.7275, 6.6645, 5.615, 22.2278, 5.2676, 10.8421, 5.3174, 5.3921, 0.4516, 22.5308, 5.6882, 5.5971, 5.4665, 5.4622, 5.4295, 6.314, 29.145, 11.4627, 5.6052, 5.4595, 10.5324, 5.4398, 5.9075, 23.3541, 5.9478, 5.5094, 5.543, 5.3835, 5.4955, 5.538, 10.6397, 10.8085, 6.299, 10.4804, 5.5323, 5.482, 10.664, 5.8954, 5.307, 11.0261, 6.0391, 6.2001, 10.8628, 5.6567, 10.7234, 5.5945, 5.6965, 5.4617, 10.848, 5.4936, 10.7398, 10.9916, 10.7853, 6.5479, 10.9878, 0.7052, 10.3955, 10.9072, 11.0652, 5.7919, 11.4145, 5.7149, 11.2021, 29.7606, 5.8854, 6.5169, 11.0128, 10.6828], '192.168.122.115': [6.4092, 5.2743, 10.5462, 11.2517, 10.5469, 10.4134, 10.7787, 6.3963, 5.4398, 7.642, 11.4563, 10.8757, 5.4893, 5.5177, 5.5668, 5.2845, 5.8093, 5.3689, 10.8707, 10.5224, 11.2782, 5.5268, 6.4454, 10.8976, 5.2173, 10.7906, 10.9456, 6.027, 5.414, 10.7725, 10.6978, 5.5809, 5.4982, 11.0278, 5.9888, 5.8873, 10.4814, 5.527, 5.9075, 5.4083, 0.8283, 5.4393, 5.383, 11.3084, 5.4314, 10.0775, 10.7772, 10.8137, 5.4505, 0.5379, 11.0035, 5.6696, 0.6967, 10.8101, 5.3711, 10.9048, 11.2934, 5.9323, 0.5519, 16.3589, 5.5869, 0.845, 15.9073, 5.6098, 10.6206, 10.8857, 5.2145, 6.6352, 6.0742, 5.6589, 16.1438, 0.4218, 6.1021, 5.2688, 6.0766, 6.0387, 6.0267, 12.8775, 5.2907, 22.0454, 11.57, 16.4146, 5.4913, 5.3639, 5.3577, 10.8924, 10.6194, 5.5974, 5.2309, 5.7628, 10.7965, 11.3766, 5.46, 5.9638, 5.404, 11.2782, 10.8795, 11.2734, 0.4916, 5.3756, 5.4097, 5.4514, 5.8763, 5.9769, 6.1285, 5.2953, 5.2507, 5.3458, 5.9936, 10.9627, 5.3921, 5.4505, 22.1748, 10.9146, 16.4201, 5.3327, 5.2617, 11.2472, 5.3711, 5.3549, 12.7895, 5.9507, 5.2822, 10.9668, 10.9756, 19.1066, 5.9116, 6.2358, 6.0821, 5.1992, 5.4114, 5.7127, 5.5518, 5.3551, 11.2429, 5.439, 5.5153, 6.639, 5.332, 22.4376, 10.9677, 5.2578, 5.2166, 10.8654, 10.5264, 10.5777, 10.9954, 11.2135, 10.9448, 10.9818, 5.4164, 6.1154, 6.057, 5.9032, 6.7356, 5.4333, 6.4015, 10.6466, 6.0294, 5.4765, 10.8759, 10.9653, 11.0776, 5.486, 5.3647, 16.5496, 5.5263, 5.7211, 6.0699, 5.3418, 5.4054, 0.6342, 5.4326, 5.3573, 10.9713, 17.205, 16.2618, 7.9532, 5.2166, 5.2159, 11.0917, 10.8378, 5.4493, 10.8902, 5.1906, 5.482, 5.5535, 5.6505, 5.2464, 5.6517, 11.2219, 5.9144, 6.4373, 6.413, 5.6467, 5.5647, 5.3053, 15.9931, 5.4026, 5.893, 6.175, 5.6071, 5.6586, 5.7728, 10.988, 5.8949, 10.8426, 10.9715, 11.4114, 5.7051, 5.619, 10.7677, 5.4753, 5.4083, 11.06, 16.7642, 10.973, 5.9323, 11.4679, 27.7224, 6.0279, 5.5704, 5.2576, 5.5757, 5.3599, 5.682, 10.8745, 10.7558, 10.5917, 10.9646, 10.5798, 6.1214, 11.8647, 10.3481, 5.9297, 10.6416, 5.2614, 21.9574, 6.1765, 5.5361, 5.4634, 5.4507, 6.9408, 11.095, 10.7272, 20.4568, 11.0469, 0.8869, 5.2862, 5.4502, 11.3778, 6.1541, 10.4156, 5.4941, 5.6946, 11.4553, 6.6714, 10.9401, 5.7302, 5.7421], '192.168.122.116': [6.7875, 11.6584, 6.2265, 21.3084, 5.7273, 5.7075, 5.2814, 5.3003, 5.2848, 33.3142, 5.6007, 5.619, 5.7132, 5.441, 6.3224, 5.5742, 5.5151, 6.0394, 10.865, 10.4423, 22.7954, 5.4924, 31.1017, 10.8721, 10.7422, 10.9107, 5.5661, 5.8532, 5.8703, 5.6324, 10.9894, 5.5606, 5.5971, 16.2289, 10.8826, 5.5258, 10.8917, 5.3835, 6.0017, 5.4014, 5.6338, 10.9382, 5.43, 16.6547, 6.238, 5.2712, 5.7361, 10.7784, 5.3558, 0.4265, 5.5065, 6.007, 0.4406, 10.9715, 0.6127, 5.6813, 11.066, 32.939, 0.3369, 21.7905, 27.2505, 0.8023, 21.9402, 5.5294, 16.1669, 16.5114, 11.6334, 5.4858, 10.7136, 10.6645, 5.7068, 0.5829, 11.1232, 6.1817, 6.7155, 10.6843, 11.3978, 5.9545, 15.6221, 5.4252, 5.1899, 5.4803, 10.5314, 10.8042, 5.3566, 10.54, 5.3601, 6.5236, 5.5034, 5.7023, 5.8224, 6.5405, 10.9193, 5.455, 5.2702, 5.7447, 6.3379, 10.7427, 6.0863, 5.4331, 5.466, 10.8538, 17.0724, 10.371, 5.4791, 5.3787, 5.8527, 5.9435, 5.9016, 10.8213, 10.8294, 5.4231, 10.9987, 5.8115, 5.774, 5.321, 10.8502, 5.4202, 5.4595, 6.0201, 5.2886, 10.4327, 5.4259, 11.2205, 10.9937, 11.0195, 5.9218, 6.2857, 5.4624, 5.3728, 5.2505, 10.6316, 5.3823, 10.7536, 6.0892, 10.9868, 10.8294, 6.3384, 5.5368, 11.0741, 5.8143, 16.5162, 22.0973, 5.4021, 5.9607, 10.7958, 5.7189, 10.8459, 10.8404, 5.4824, 5.8155, 12.4726, 10.8562, 10.8721, 5.9071, 5.5385, 10.9143, 5.5242, 10.778, 5.9063, 5.4216, 10.9925, 5.8801, 11.0478, 33.6385, 10.6065, 27.6418, 5.5621, 10.7079, 5.276, 6.1831, 1.08, 22.1651, 5.4264, 5.919, 5.326, 5.2049, 0.5455, 5.3849, 5.3413, 27.5276, 10.7827, 16.3877, 6.0539, 5.564, 5.4095, 5.9707, 5.4028, 16.6113, 11.3237, 5.6691, 5.7933, 5.486, 11.3735, 5.6953, 5.7182, 16.6574, 10.5402, 5.4827, 5.4111, 5.6713, 11.4784, 6.758, 10.9766, 10.8054, 5.9066, 10.9401, 11.5054, 5.6641, 11.2276, 5.5952, 5.2099, 5.8053, 5.4963, 6.0668, 10.9842, 5.5146, 5.7471, 16.609, 21.6875, 11.137, 5.5573, 5.3959, 5.6658, 11.57, 5.8498, 11.6727, 5.326, 6.6059, 5.4481, 10.9422, 16.324, 5.8007, 5.4462, 5.6865, 10.6394, 10.8354, 10.793, 5.8041, 5.2636, 5.3835, 6.1176, 5.4736, 5.6126, 5.4402, 5.2309, 5.7783, 0.55, 10.8476, 16.4533, 5.6126, 5.626, 5.5385, 5.7442, 5.6117, 5.6069, 5.4462, 11.179, 27.307, 10.8814], '192.168.122.114': [6.6602, 21.8852, 10.5515, 10.7384, 5.3139, 5.2032, 10.8378, 5.3453, 5.4469, 11.3225, 5.7368, 0.5617, 6.1603, 6.4385, 5.2454, 21.4033, 9.8453, 0.5288, 6.2032, 10.8514, 10.9289, 6.386, 5.4474, 5.8727, 10.9434, 10.7694, 5.816, 5.5585, 11.3146, 10.4733, 5.4173, 11.1101, 5.7256, 5.4514, 5.5656, 5.9841, 5.5256, 12.8391, 5.3346, 5.3873, 5.2829, 10.6404, 5.2984, 10.735, 11.3688, 5.2152, 11.6599, 5.4834, 5.2633, 0.7706, 5.9247, 11.297, 0.6936, 10.814, 0.6723, 5.8286, 21.5101, 5.6531, 16.9098, 5.9524, 5.6846, 1.9381, 5.7724, 5.2226, 16.7112, 10.9046, 28.079, 6.5997, 5.4221, 5.3272, 5.2323, 0.6273, 5.3895, 0.8469, 10.8831, 5.3515, 10.9792, 5.6858, 10.6702, 5.4193, 10.6556, 10.8099, 10.7358, 16.3391, 10.8671, 5.5833, 5.3592, 5.6574, 5.4653, 0.8097, 10.8008, 10.9386, 5.4307, 5.481, 5.2984, 5.8599, 10.946, 11.0021, 10.8867, 5.3613, 5.3978, 5.3871, 10.9761, 5.5594, 5.224, 5.3334, 10.7236, 5.9152, 5.5037, 10.8681, 5.8761, 11.0388, 10.8972, 10.9205, 5.6214, 5.2702, 5.4736, 5.9876, 5.487, 5.8632, 5.671, 5.5416, 5.7781, 10.6444, 11.0345, 5.3198, 5.2545, 6.8128, 5.3844, 0.7143, 5.2736, 10.8373, 10.6473, 6.4766, 5.4076, 5.429, 5.6283, 11.054, 5.2774, 16.6681, 6.4287, 10.8495, 5.5344, 11.0664, 5.8348, 11.538, 5.5003, 5.7039, 5.3973, 5.8177, 10.7541, 11.601, 5.4624, 5.4364, 5.8844, 5.4607, 10.9727, 5.7366, 5.6095, 5.4739, 5.4507, 6.1328, 22.465, 5.7323, 5.5311, 6.263, 5.4953, 5.4088, 10.946, 5.6095, 10.9441, 0.9241, 13.8288, 10.8461, 6.3396, 5.9497, 5.8663, 5.8923, 5.4107, 10.5145, 27.3979, 5.8808, 6.2306, 11.0424, 5.4908, 5.5108, 6.0928, 7.2417, 5.2519, 11.4858, 28.2805, 5.6825, 5.61, 5.6183, 11.3459, 10.9723, 5.2614, 5.3639, 5.4107, 10.9742, 5.7142, 5.4798, 5.8181, 5.6889, 5.3797, 11.7629, 5.2879, 6.227, 5.3415, 5.2862, 11.1279, 10.7405, 5.4114, 5.3906, 10.9589, 5.3573, 10.8845, 21.9774, 10.8154, 10.8302, 5.5079, 5.5127, 5.3568, 5.7037, 26.2206, 5.8692, 5.446, 10.8614, 5.9435, 10.8948, 5.6939, 11.6425, 5.7316, 10.802, 30.3447, 10.4902, 11.0106, 11.0421, 6.2957, 5.7051, 5.4638, 11.0457, 10.6692, 6.2907, 5.9161, 6.4955, 5.4996, 0.7539, 11.1368, 5.8808, 11.5318, 10.7872, 5.5764, 5.4448, 5.6229, 5.7142, 5.4033, 6.5389, 10.3779, 10.5212], '192.168.122.113': [6.1097, 10.6566, 10.5853, 5.9462, 5.2862, 5.3642, 5.4536, 6.1572, 5.5923, 5.3971, 5.5206, 0.6919, 5.2652, 6.1638, 27.5834, 5.9998, 15.9521, 5.9268, 11.0595, 11.0445, 5.4104, 5.3883, 10.8278, 5.5466, 22.8617, 5.3542, 5.4598, 10.5743, 14.2767, 10.9401, 10.9687, 5.4798, 11.121, 5.4076, 5.4812, 6.4089, 0.6022, 20.9394, 5.336, 5.2462, 10.6268, 5.3275, 10.9079, 5.3456, 5.2767, 11.3921, 5.5587, 5.4827, 10.9241, 0.5558, 5.5449, 5.4462, 0.3741, 5.3287, 0.7129, 7.2215, 5.6663, 6.3317, 10.8392, 10.8936, 5.8303, 0.7582, 5.4543, 5.4324, 10.8788, 5.2931, 11.5926, 10.9506, 10.8185, 5.4824, 10.9649, 0.6731, 5.4259, 0.6688, 5.2674, 10.7324, 6.2621, 6.0894, 5.347, 5.3053, 10.6015, 5.4255, 9.4392, 5.4367, 5.4882, 5.6818, 10.9305, 11.426, 5.4784, 5.7657, 5.2328, 5.3585, 10.8802, 5.5373, 10.7126, 5.8601, 5.4152, 10.855, 11.8136, 10.7396, 5.8227, 5.4305, 10.9522, 5.8999, 6.0475, 6.012, 6.1071, 10.7541, 5.3461, 10.9253, 5.6303, 5.7094, 10.9172, 11.3692, 10.7694, 5.3012, 5.415, 5.3394, 5.3108, 11.1151, 5.4915, 20.6103, 5.8262, 11.1272, 5.4579, 23.2859, 10.6652, 11.3075, 5.4064, 6.2075, 10.4077, 10.2885, 5.672, 10.7863, 17.2386, 6.2072, 16.341, 10.9558, 5.5611, 6.0778, 10.9425, 10.8809, 5.5501, 5.5799, 11.1926, 6.1927, 6.0468, 5.3177, 10.803, 11.6098, 10.653, 6.3229, 6.8505, 10.89, 10.844, 10.6709, 5.465, 11.1008, 5.9712, 5.82, 10.7651, 6.3798, 5.4872, 16.1545, 5.6274, 6.2208, 5.3468, 5.3067, 5.6455, 32.4721, 5.3725, 0.6196, 5.3515, 6.1443, 5.3289, 5.8408, 10.5515, 5.8451, 5.2075, 5.2493, 6.038, 0.8898, 0.479, 5.4631, 10.9499, 5.5001, 5.6102, 5.4748, 5.7282, 6.1636, 6.8934, 10.7191, 11.6618, 5.8141, 11.0447, 5.6381, 5.3296, 10.7074, 11.4055, 10.963, 5.3792, 5.4297, 16.5396, 11.4932, 5.9912, 16.398, 10.8953, 21.0927, 10.9653, 5.4317, 5.4765, 10.6459, 10.3998, 5.4512, 11.0452, 16.9373, 5.3306, 5.4457, 10.7601, 10.7872, 5.486, 5.5089, 5.8868, 5.6283, 5.7862, 5.3961, 5.4438, 10.8128, 10.6032, 5.3902, 6.258, 5.4159, 11.1475, 5.2845, 5.4643, 10.6311, 5.3408, 5.8224, 5.7006, 5.595, 10.8099, 11.0126, 10.896, 12.9991, 10.89, 9.4335, 5.6505, 0.8337, 6.0415, 18.8353, 5.62, 5.5707, 17.1678, 5.7042, 11.3492, 7.1552, 8.1553, 5.4774, 5.6338, 10.798], '192.168.122.112': [6.6125, 5.5645, 10.5946, 11.8713, 15.9001, 11.2586, 10.8254, 16.2265, 10.9048, 6.3736, 5.605, 0.6585, 5.3959, 5.825, 11.2498, 5.2698, 5.7843, 5.2419, 5.8157, 10.6268, 5.3747, 6.341, 10.8926, 5.4038, 11.3842, 5.3983, 5.5132, 5.2459, 10.7982, 5.7573, 5.2838, 5.5094, 5.5149, 5.2421, 5.3141, 6.1073, 0.7484, 5.4691, 5.6562, 5.4846, 5.4369, 11.2696, 16.4752, 5.4097, 5.4548, 10.4196, 5.4026, 5.2888, 10.7374, 0.4601, 5.4896, 22.3451, 0.4125, 5.4975, 0.5937, 5.7178, 10.2999, 5.7499, 10.6742, 5.3937, 5.645, 0.5991, 5.4739, 10.69, 5.4615, 16.9995, 5.4548, 5.8846, 10.7071, 5.9607, 10.8147, 0.6783, 5.4412, 0.7348, 5.43, 5.3463, 5.6548, 5.3339, 10.7553, 5.4016, 5.5573, 5.3976, 21.6773, 5.5156, 11.0281, 10.3321, 5.2509, 5.8064, 5.7478, 11.3142, 10.581, 5.4367, 10.8495, 5.7001, 5.5792, 6.1207, 10.6704, 5.6777, 6.0284, 10.8283, 10.9849, 5.4097, 10.5689, 10.7875, 10.6878, 5.6207, 5.3773, 5.6381, 6.0358, 10.823, 10.9692, 5.2927, 10.9136, 7.3903, 5.2962, 5.4252, 5.8789, 5.4719, 16.3779, 22.0606, 16.4299, 10.8323, 21.1756, 5.7018, 11.0683, 5.7487, 5.3816, 5.645, 10.9463, 5.2621, 10.3791, 5.7228, 16.4721, 5.8875, 5.8603, 5.2803, 6.0284, 5.4231, 5.2381, 10.5226, 5.3709, 5.3816, 5.4293, 11.0567, 6.2199, 11.3499, 16.7074, 5.5611, 11.121, 11.5423, 10.4482, 5.5156, 21.7669, 10.92, 10.8056, 6.2876, 10.9017, 5.6219, 10.8156, 5.3685, 5.8391, 6.1989, 5.5017, 5.5075, 10.6542, 5.8732, 11.1272, 5.4305, 10.7915, 10.9906, 5.512, 3.5157, 5.3892, 10.5278, 5.4975, 5.4121, 5.3742, 5.8405, 5.9125, 5.2276, 5.6586, 6.9728, 0.7064, 5.3751, 6.356, 6.4003, 5.6314, 5.7282, 21.2114, 5.6839, 5.4758, 5.7142, 5.8277, 5.496, 11.5471, 5.5695, 10.926, 6.2068, 6.1648, 10.993, 5.5561, 5.6152, 10.8273, 5.867, 21.6129, 6.0785, 11.2967, 5.2211, 10.4733, 5.3942, 11.0958, 5.9552, 6.0847, 5.4493, 11.1403, 5.3926, 10.9742, 5.4233, 5.5892, 5.4414, 5.6138, 6.4259, 5.348, 0.622, 6.2153, 5.47, 10.9148, 5.4493, 5.8701, 10.7257, 6.2494, 5.9736, 0.9689, 11.4861, 5.4505, 5.1975, 5.1951, 11.0641, 11.4124, 5.9161, 5.4262, 11.0803, 28.1923, 5.5428, 11.0164, 6.4774, 10.9408, 0.5114, 16.1619, 26.4544, 5.758, 5.9094, 5.533, 5.3537, 11.272, 10.9181, 10.9501, 29.7203, 10.3443, 10.9313]}
cpu1_10_10 = [10.4, 57.2, 2.3, 3.6, 1.4, 0.3, 0.4, 0.5, 0.3, 0.3, 0.0, 0.6, 0.3, 1.3, 0.8, 0.1, 0.5, 0.2, 0.8, 1.2, 0.0, 0.8, 0.5, 0.1, 0.6, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.1, 0.3, 0.2, 0.0, 0.1, 1.7, 2.2, 0.4, 0.5, 0.5, 0.1, 0.2, 0.2, 0.1, 0.3, 0.7, 0.9, 0.8, 0.2, 0.0, 0.4, 0.6, 1.0, 0.7, 2.4, 2.1, 0.1, 0.0, 0.0, 0.2, 0.2, 0.5, 0.9, 0.4, 0.2, 0.2, 0.5, 0.5, 0.2, 0.3, 0.7, 0.6, 0.1, 0.3, 1.2, 1.5, 1.8, 0.8, 0.8, 0.2, 0.2, 0.0, 0.4, 1.2, 0.7, 0.5, 1.6, 1.3, 0.1, 0.0, 0.4, 0.5, 0.1, 0.4, 0.0, 0.3, 0.5, 0.9, 1.1, 0.5, 2.1, 1.7, 0.7, 0.4, 0.3, 1.4, 1.2, 0.5, 0.2, 1.2, 0.4, 0.6, 0.9, 0.0, 0.7, 0.4, 0.0, 0.9, 1.0, 0.7, 0.1, 1.2, 0.9, 0.4, 0.7, 0.3, 1.1, 0.9, 0.1, 0.3, 0.6, 0.2, 0.4, 0.2, 0.5, 0.9, 0.3, 0.3, 0.5, 0.1, 0.7, 0.0, 0.7, 0.1, 0.8, 1.1, 0.8, 2.0, 3.2, 2.6, 0.2, 0.2, 0.4, 0.1, 0.3, 0.5, 1.3, 1.2, 0.3, 0.1, 0.5, 0.3, 1.1, 5.5, 4.8, 0.2, 0.4, 0.4, 1.4, 0.7, 0.2, 0.0, 0.4, 1.1, 0.6, 0.3, 0.1, 0.2, 0.4, 0.7, 0.4, 1.7, 1.8, 0.2, 0.5, 0.8, 0.5, 0.2, 0.2, 0.4, 0.1, 0.2, 0.5, 1.2, 0.4, 0.0, 0.5, 0.3, 0.1, 0.2, 0.1, 0.3, 0.4, 0.1, 0.3, 0.1, 0.1, 0.2, 0.2, 0.2, 1.3, 1.2, 5.0, 5.5, 0.4, 1.0, 0.9, 0.1, 0.3, 0.4, 0.2, 0.5, 0.5, 0.0, 0.8, 0.9, 0.1, 0.5, 3.2, 2.6, 3.5, 3.5, 2.2, 2.3, 0.6, 0.2, 0.6, 0.1, 3.2, 3.4, 0.2, 0.4, 0.8, 0.0, 0.7, 0.4, 0.0, 0.3, 0.1, 0.2, 0.8, 0.2, 1.0, 0.7, 2.1, 1.1, 0.7, 0.7, 0.4]
off_mec1_10_10 = 54
off_cloud1_10_10 = 114
inward_mec1_10_10 = 31
loc1_10_10 = 706
deadlock1_10_10 = [4]
memory1_10_10 = [0.2187, 0.2188, 0.2189, 0.2191, 0.2192, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2198, 0.2198, 0.2198, 0.2199, 0.2199, 0.22, 0.2202, 0.2204, 0.2204, 0.2205, 0.2205, 0.2206, 0.2206, 0.2206, 0.2207, 0.2207, 0.2208, 0.2209, 0.2209, 0.2209, 0.2211, 0.2211, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2214, 0.2215, 0.2216, 0.2216, 0.2217, 0.2219, 0.222, 0.2221, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2224, 0.2225, 0.2226, 0.2226, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2229, 0.223, 0.223, 0.2232, 0.2233, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2237, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2241, 0.2241, 0.2242, 0.2244, 0.2244, 0.2245, 0.2245, 0.2245, 0.2245, 0.2246, 0.2247, 0.2248, 0.2248, 0.225, 0.225, 0.2251, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2256, 0.2256, 0.2257, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.226, 0.226, 0.226, 0.2261, 0.2261, 0.2262, 0.2262, 0.2262, 0.2264, 0.2264, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2267, 0.2267, 0.2268, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.227, 0.227, 0.2271, 0.2271, 0.2271, 0.2273, 0.2273, 0.2273, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2276, 0.2276, 0.2276, 0.2276, 0.2282, 0.2282, 0.2282, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2285, 0.2285, 0.2285, 0.2286, 0.2286, 0.2286, 0.2287, 0.2287, 0.2287, 0.2287, 0.2288, 0.2288, 0.2288, 0.2288, 0.2291, 0.2291, 0.2296, 0.2296, 0.2297, 0.2297, 0.2297, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2299, 0.2299, 0.2299, 0.23, 0.23, 0.23, 0.23, 0.23, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2303, 0.2304, 0.2304, 0.2304, 0.2304, 0.2305, 0.231, 0.231, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312]
task_received1_10_10 = 874
sent_t1_10_10 = {'124': 267, '125': 236, '126': 371}
cooperate1_10_10 = {'mec': 54, 'cloud': 114}
task_record1_10_10 = {}
outward_mec1_10_10 = 32
offload_check1_10_10 = [30, 2] | wt1_10_10 = {'192.168.122.110': [5.5754, 5.5952, 9.2422, 8.5338, 9.0058, 8.4025, 8.7557, 8.4405, 8.1397, 8.1318, 8.0657, 7.8501, 8.1701, 8.0757, 7.8899, 7.7329, 7.6153, 7.9967, 7.9363, 7.838, 8.7936, 8.6351, 8.5151, 8.6381, 8.7262, 8.816, 8.8984, 8.7799, 8.8584, 8.9543, 8.8833, 8.794, 8.6935, 8.735, 8.635, 8.5429, 8.6163, 8.5476, 8.6108, 8.5577, 8.4882, 8.4211, 8.3623, 8.3054, 8.2413, 8.4337, 8.4888, 8.5373, 8.4713, 8.5225, 8.4593, 8.4011, 8.3452, 8.3259, 8.2905, 8.2449, 8.1937, 8.1445, 8.116, 8.1567, 8.1104, 8.0715, 8.115, 8.0737, 8.0345, 8.0136, 8.0019, 8.0049, 8.1192, 8.0796, 8.0452, 8.006, 7.981, 7.9482, 7.9175, 7.8876, 7.8733, 7.9073, 7.8801, 7.9114, 7.8796, 7.8656, 7.8337, 7.8213, 7.792, 7.8309, 7.8041, 7.8059, 7.7952, 7.7718, 7.8096, 7.7388, 7.7266, 7.7471, 7.7399, 7.7186, 7.7135, 7.6918, 7.7212, 7.7565, 7.7335, 7.711, 7.6962, 7.6741, 7.6596, 7.6417, 7.6303, 7.6106, 7.5902, 7.6216, 7.6199, 7.6491, 7.6785, 7.6596, 7.6464, 7.6277, 7.6561, 7.6506, 7.6396, 7.6222, 7.7245, 7.7135, 7.6971, 7.6861, 7.7189, 7.7939, 7.7734, 7.7552, 7.7516, 7.7743, 7.7593, 7.7427, 7.7249, 7.708, 7.6916, 7.6809, 7.703, 7.6865, 7.6734, 7.6572, 7.6484, 7.6386, 7.6612, 7.6835, 7.6686, 7.6592, 7.681, 7.6753, 7.7021, 7.6891, 7.6742, 7.665, 7.6538, 7.6739, 7.7405, 7.7304, 7.7693, 7.759, 7.7492, 7.7403, 7.7253, 7.7102, 7.6962, 7.7249, 7.7124, 7.7071, 7.7291, 7.7147, 7.7307, 7.717, 7.7031, 7.7357, 7.7238, 7.7431, 7.7364, 7.7563, 7.7441, 7.7358, 7.7272, 7.7473, 7.7372, 7.7443, 7.8068, 7.7982, 7.7906, 7.805, 7.7939, 7.7818, 7.8014, 7.7899, 7.7779, 7.7671, 7.7545, 7.9091, 7.8963, 7.8913, 7.8823, 7.8953, 7.9115, 7.9017, 7.9166, 7.9316, 7.9229, 7.9104, 7.9033, 7.8949, 7.8879, 7.9028, 7.8904, 7.8854, 7.8754, 7.8648, 7.8551, 7.8433, 7.8322, 7.8214, 7.8104, 7.8007, 7.7927, 7.7815, 7.7701, 7.783, 7.7734, 7.8037, 7.795, 7.7885, 7.7826, 7.7774, 7.7719, 7.7622, 7.7544, 7.7451, 7.7379, 7.7314, 7.7236, 7.7175, 7.7073, 7.7213, 7.7111, 7.7026, 7.6996, 7.6898, 7.7013, 7.6954, 7.7105, 7.7015, 7.692, 7.708, 7.7, 7.7133, 7.7291, 7.7193, 7.7098, 7.7936, 7.8109, 7.801, 7.7922, 7.8248, 7.8174, 7.809, 7.8018, 7.7969, 7.7876, 7.779, 7.7741, 7.7861, 7.7831, 7.8363, 7.8107, 7.807, 7.7985, 7.796, 7.7884, 7.7791, 7.7699, 7.7609, 7.7524, 7.7279, 7.7216, 7.7341, 7.7316, 7.727, 7.7204, 7.7139, 7.7255, 7.7206, 7.712, 7.7082, 7.7032, 7.6948, 7.7055, 7.6996, 7.6913, 7.6832, 7.6771, 7.6771, 7.687, 7.6898, 7.6686, 7.6639, 7.6614, 7.6572, 7.6555, 7.6487, 7.6588, 7.655, 7.6524, 7.6467, 7.6392, 7.6322, 7.6254, 7.618, 7.6111, 7.6039, 7.5989, 7.6084, 7.6017, 7.5977, 7.5922, 7.585, 7.5781, 7.5713, 7.5656, 7.5759, 7.5726, 7.5822, 7.5757, 7.5783, 7.5718, 7.5816, 7.5745, 7.5838, 7.5775, 7.5755, 7.5815, 7.5755, 7.5693, 7.564, 7.5588, 7.5405, 7.5338, 7.529, 7.5223, 7.5167, 7.526, 7.5195, 7.5056, 7.501, 7.4947, 7.504, 7.5005, 7.4983, 7.4962, 7.5053, 7.5001, 7.4945, 7.4886, 7.4852, 7.495, 7.4917, 7.4858, 7.4924, 7.5016, 7.4958, 7.4925, 7.5451, 7.5396, 7.5365, 7.5315, 7.5263, 7.5266, 7.5212, 7.5177, 7.5142, 7.5084, 7.5043, 7.4986, 7.526, 7.5214, 7.5294, 7.5234, 7.5207, 7.5166, 7.5125, 7.508, 7.5297, 7.5238, 7.521, 7.5162, 7.5259, 7.5214, 7.5166, 7.5263, 7.5209, 7.5181, 7.5129, 7.5073, 7.5034, 7.5056, 7.5024, 7.4975, 7.5072, 7.5537, 7.5498, 7.559, 7.5539, 7.5503, 7.5465, 7.5411, 7.5382, 7.5329, 7.5277, 7.5244, 7.519, 7.5167, 7.5244, 7.5335, 7.5661, 7.5608, 7.5701, 7.565, 7.5598, 7.5548, 7.5499, 7.5468, 7.5543, 7.5405, 7.5418, 7.5497, 7.5588, 7.556, 7.5408, 7.5372, 7.533, 7.5289, 7.5272, 7.522, 7.5192, 7.5044, 7.5113, 7.4982, 7.4835, 7.4797, 7.4871, 7.4821, 7.4794, 7.4755, 7.4705, 7.4669, 7.4621, 7.4572, 7.4548, 7.4508, 7.4483, 7.4561, 7.4521, 7.4605, 7.4562, 7.4529, 7.4485, 7.4487, 7.462, 7.4628, 7.4586, 7.4564, 7.4629, 7.4597, 7.4565, 7.4523, 7.4479, 7.4455, 7.4527, 7.4598, 7.4591, 7.4577, 7.4545, 7.451, 7.458, 7.4552, 7.4535, 7.4606, 7.4913, 7.4891, 7.4851, 7.4821, 7.4889, 7.5473, 7.5482, 7.5979, 7.5935, 7.5905, 7.5882, 7.5835, 7.5811, 7.5777, 7.5754, 7.5711, 7.5779, 7.5838, 7.5814, 7.5772, 7.5731, 7.5696, 7.5674, 7.5641, 7.5596, 7.5574, 7.5533, 7.5505, 7.5472, 7.5427, 7.5405, 7.5468, 7.5435, 7.5505, 7.5479, 7.544, 7.5502, 7.5533, 7.558, 7.5644, 7.5614, 7.5584, 7.554, 7.5503, 7.5566, 7.5522, 7.5501, 7.5458, 7.5515, 7.5473, 7.5444, 7.5401, 7.537, 7.5422, 7.5382, 7.5341, 7.5302, 7.5306, 7.5265, 7.5223, 7.5209, 7.5374, 7.5334, 7.5292, 7.5268, 7.5325, 7.5228, 7.5287, 7.5246, 7.5208, 7.5169, 7.5134, 7.5113, 7.5176, 7.5136, 7.5205, 7.5185, 7.5167, 7.5129, 7.5096, 7.5057, 7.504, 7.5019, 7.4985, 7.4949, 7.4931, 7.4834, 7.4902, 7.4881, 7.4949, 7.4917, 7.4974, 7.5012, 7.4979, 7.4945, 7.4926, 7.4808, 7.478, 7.4742, 7.4717, 7.4778, 7.4752, 7.4803, 7.4766, 7.4732, 7.4806, 7.4769, 7.4733, 7.4697, 7.4677, 7.4731, 7.4789, 7.4795, 7.4773, 7.4748, 7.4711, 7.469, 7.4654, 7.4619, 7.4598, 7.4669, 7.4649, 7.4616, 7.4674, 7.4646, 7.4538, 7.4595, 7.4562, 7.4531, 7.4497, 7.4469, 7.4458, 7.4422, 7.4468, 7.4358, 7.4337, 7.4307, 7.4285, 7.4342, 7.4322, 7.4385, 7.4351, 7.4326, 7.4306, 7.4361, 7.4338, 7.4316, 7.4289, 7.4377, 7.4343, 7.4398, 7.4445, 7.4422, 7.4388, 7.4356, 7.4339, 7.4322, 7.429, 7.4272, 7.4241, 7.4209, 7.418, 7.4157, 7.4124, 7.4091, 7.4062, 7.4031, 7.4009, 7.3981, 7.3986, 7.3959, 7.401, 7.3979, 7.4033, 7.401, 7.3993, 7.4053, 7.3954, 7.3923, 7.3936, 7.3909, 7.4051, 7.4033, 7.4003, 7.3978, 7.3946, 7.3947, 7.3914, 7.3918, 7.3989, 7.4042, 7.4026, 7.4002, 7.3994, 7.398, 7.4041, 7.4025, 7.4041, 7.4012, 7.4002, 7.3972, 7.3941, 7.394, 7.3913, 7.3895, 7.3872, 7.3859, 7.3829, 7.3913, 7.3886, 7.3942, 7.3922, 7.3979, 7.4103, 7.4074, 7.4246, 7.4325, 7.4312, 7.4356, 7.4328, 7.4309, 7.4281, 7.4285, 7.4257, 7.4232, 7.4207, 7.4277, 7.4269, 7.4315, 7.4285, 7.4259, 7.4247, 7.4239, 7.4211, 7.426, 7.4236, 7.421, 7.4259, 7.438, 7.4426, 7.4419, 7.4602, 7.4584, 7.456, 7.4532, 7.458, 7.4628, 7.467, 7.471, 7.4695, 7.4748, 7.4725, 7.4702, 7.4673, 7.4647, 7.4692, 7.4663, 7.4634, 7.4681, 7.4657, 7.4704, 7.4729, 7.4699, 7.468, 7.4589, 7.4562, 7.4537, 7.4522, 7.4575, 7.4548, 7.46, 7.4667, 7.4724, 7.4768, 7.474, 7.4717, 7.469, 7.4674, 7.4721, 7.4713, 7.4753, 7.4737, 7.4778, 7.4765, 7.4752, 7.4725, 7.4697, 7.4671, 7.4658, 7.4632, 7.4648, 7.4622, 7.4535, 7.451, 7.4494, 7.4534, 7.4579, 7.4574, 7.4548, 7.453, 7.4572, 7.4618, 7.4662, 7.4701, 7.4675, 7.4792, 7.4776, 7.4772, 7.4809, 7.4784, 7.4841, 7.4815, 7.4795, 7.4834, 7.4816, 7.4799, 7.4777, 7.4768, 7.4743, 7.4782, 7.4754, 7.4795, 7.4906, 7.4899, 7.491, 7.495, 7.4991, 7.5047, 7.5021, 7.4994, 7.5043, 7.5036, 7.5017, 7.4992, 7.4968, 7.4944, 7.4921, 7.4913, 7.4894, 7.4877, 7.4858, 7.4904, 7.4894, 7.487, 7.4845, 7.4819, 7.4805, 7.4812, 7.4788, 7.4768, 7.4753, 7.4727, 7.4704, 7.4681, 7.4655, 7.463, 7.461, 7.4586, 7.458, 7.4559, 7.4534, 7.4521, 7.4635, 7.4609, 7.4585, 7.4622, 7.4601, 7.4641, 7.4616, 7.4592, 7.4566, 7.4543, 7.4529, 7.4506, 7.4481, 7.4459, 7.4438, 7.4415, 7.4406, 7.4382, 7.4365, 7.435, 7.439, 7.437, 7.4409, 7.4639, 7.4678, 7.4735, 7.4713, 7.4701, 7.4739, 7.4715, 7.4691, 7.4675, 7.4715, 7.4696, 7.4735, 7.4711, 7.475, 7.474, 7.4664, 7.4761, 7.4799, 7.4837, 7.4814, 7.479, 7.4829, 7.4812, 7.4789, 7.4826, 7.4819, 7.4802, 7.4782, 7.476, 7.4794, 7.4772, 7.4811, 7.4911, 7.4888, 7.4867, 7.4847, 7.4773, 7.4763, 7.4743, 7.4723, 7.4706, 7.474, 7.4668, 7.4657, 7.4712, 7.469, 7.4727, 7.4714, 7.4697, 7.4743, 7.4764, 7.4742, 7.4727, 7.4765, 7.4751, 7.4729, 7.4766, 7.4831, 7.4811, 7.4794, 7.4781, 7.4757, 7.4737, 7.4714, 7.4693, 7.467, 7.4647, 7.4681, 7.4667, 7.4643, 7.462, 7.4607, 7.4641, 7.4678, 7.4656, 7.4639, 7.4674, 7.4709, 7.4744, 7.4722, 7.4702, 7.4679, 7.4751, 7.4748, 7.4734, 7.4816, 7.4794, 7.4771, 7.4772, 7.4808, 7.479, 7.4776, 7.4754, 7.4741, 7.4776, 7.4753, 7.4732, 7.4727, 7.4723, 7.47, 7.4682, 7.4672, 7.471, 7.4696, 7.4679, 7.4711, 7.472, 7.4752, 7.473, 7.472, 7.4699, 7.4753, 7.4732, 7.4769, 7.4747, 7.4736, 7.4772, 7.4825, 7.4803, 7.4791, 7.477, 7.4751, 7.473, 7.4715, 7.475, 7.4729, 7.4662, 7.4744, 7.4777, 7.4809, 7.4818, 7.4807, 7.4741, 7.4775, 7.4757, 7.4748, 7.4736, 7.4669, 7.4654, 7.4588, 7.4622, 7.4655, 7.4648, 7.4636, 7.4616, 7.4635, 7.4634, 7.4613, 7.4552, 7.4535, 7.4616, 7.4594, 7.4576, 7.4558, 7.4669, 7.4655, 7.464, 7.4707, 7.4687, 7.4667, 7.4703, 7.4693, 7.4684, 7.4695, 7.468, 7.4672, 7.4662, 7.4652, 7.4648, 7.4657, 7.4688, 7.4722, 7.4703, 7.4739, 7.473, 7.4711, 7.4987, 7.5019, 7.5051, 7.5034, 7.5014, 7.5046, 7.5041, 7.5073, 7.5061, 7.5041, 7.5099, 7.5078, 7.5057, 7.5088, 7.5086, 7.5077, 7.5057, 7.5191, 7.5178, 7.5157, 7.5147, 7.5126, 7.5109, 7.5089, 7.5072, 7.5053, 7.5046, 7.5037, 7.5017, 7.5003, 7.4983, 7.4962, 7.4942, 7.4972, 7.4961, 7.4991, 7.497, 7.5007, 7.4994, 7.4974, 7.5008, 7.5038, 7.5026, 7.5007, 7.5042, 7.5032, 7.5018, 7.4999, 7.4983, 7.4965, 7.4947, 7.4932, 7.4963, 7.495, 7.4946, 7.4977, 7.4958, 7.4938, 7.4931, 7.4981, 7.5012, 7.4993, 7.4989, 7.497, 7.4911, 7.4893, 7.5069, 7.5049, 7.5034, 7.5015, 7.5043, 7.5023, 7.5003, 7.4996, 7.4991, 7.4972, 7.4964, 7.5141, 7.517, 7.5156, 7.514, 7.5121, 7.5111, 7.5093, 7.5074, 7.5055, 7.5037, 7.5022, 7.5004, 7.4996, 7.5046, 7.503, 7.5012, 7.5056, 7.5044, 7.5026, 7.501, 7.4991, 7.4993, 7.4976, 7.492, 7.4902, 7.4889, 7.4871, 7.4857, 7.4802, 7.4805, 7.4787, 7.477, 7.4754, 7.4753, 7.4784, 7.4776, 7.4759, 7.4702, 7.4694, 7.4725, 7.4717, 7.4706, 7.4698, 7.469, 7.4673, 7.4616, 7.4603, 7.4585, 7.4568, 7.4556, 7.4538, 7.4521, 7.4503, 7.4485, 7.452, 7.4502, 7.4532, 7.4518, 7.4504, 7.4532, 7.4517, 7.4546, 7.4711, 7.4739, 7.4765, 7.4747, 7.469, 7.4718, 7.4702, 7.4684, 7.4666, 7.4695, 7.4678, 7.4711, 7.4738, 7.472, 7.4709, 7.469, 7.4693, 7.4676, 7.4667, 7.4651, 7.464, 7.4624, 7.4607, 7.4603, 7.4593, 7.4574, 7.4566, 7.4557, 7.4585, 7.4613, 7.4602, 7.455, 7.4533, 7.452, 7.4511, 7.4493, 7.4478, 7.4462, 7.4453, 7.4449, 7.4433, 7.4427, 7.4412, 7.4408, 7.4396, 7.4385, 7.4414, 7.4445, 7.4432, 7.4421, 7.4407, 7.4431, 7.4459, 7.4444, 7.4471, 7.4468, 7.4495, 7.4485, 7.4474, 7.4466, 7.447, 7.4462, 7.4447, 7.4434, 7.4423, 7.4424, 7.4407, 7.4356, 7.4339, 7.4327, 7.431, 7.4297, 7.4281, 7.4269, 7.4253, 7.4241, 7.4229, 7.4212, 7.4208, 7.4235, 7.4222, 7.4206, 7.4489, 7.4516, 7.4542, 7.4572, 7.4557, 7.4563, 7.4587, 7.4571, 7.4561, 7.455, 7.4543, 7.4572, 7.4597, 7.4582, 7.4568, 7.4596, 7.4622, 7.4608, 7.4592, 7.4621, 7.4569, 7.4561, 7.4546, 7.4532, 7.4559, 7.4543, 7.4538, 7.4573, 7.456, 7.4509, 7.4459, 7.4443, 7.4427, 7.4411, 7.4476, 7.4504, 7.4489, 7.4479, 7.4466, 7.449, 7.4441, 7.447, 7.4453, 7.4443, 7.4428, 7.4429, 7.4412, 7.44, 7.439, 7.4415, 7.4424, 7.4414, 7.4404, 7.4388, 7.4375, 7.4404, 7.4353, 7.4302, 7.4288, 7.4275, 7.4259, 7.4243, 7.4235, 7.4219, 7.4203, 7.4195, 7.418, 7.4169, 7.4157, 7.4141, 7.4126, 7.4111, 7.4101, 7.4086, 7.4071, 7.4056, 7.4042, 7.4068, 7.4052, 7.4037, 7.4064, 7.4088, 7.4079, 7.4065, 7.4049, 7.4001, 7.3987, 7.4005, 7.3991, 7.4059, 7.4046, 7.4032, 7.402, 7.4009, 7.3971, 7.3956, 7.3951, 7.394, 7.3926, 7.3952, 7.3941, 7.3927, 7.3914, 7.3979, 7.3966, 7.3954, 7.3942, 7.3929, 7.3925, 7.392, 7.3916, 7.3944, 7.3971, 7.3958, 7.3945, 7.393, 7.3925, 7.3912, 7.3903, 7.3926, 7.3914, 7.3905, 7.3946, 7.3933, 7.3959, 7.3946, 7.3932, 7.3921, 7.3907, 7.3901, 7.3895, 7.3885, 7.3872, 7.3859, 7.3844, 7.3835, 7.3822, 7.3921, 7.3946, 7.3943, 7.3929, 7.3954, 7.3979, 7.3973, 7.3999, 7.3987, 7.4005, 7.4018, 7.3986, 7.3973, 7.4002, 7.3997, 7.402, 7.401, 7.4004, 7.399, 7.3991, 7.3976, 7.3969, 7.3955, 7.3949, 7.3936, 7.3933, 7.3918, 7.3905, 7.3891, 7.385, 7.3806, 7.3791, 7.378, 7.3792, 7.3777, 7.3765, 7.375, 7.3775, 7.3761, 7.3787, 7.3779, 7.3775, 7.38, 7.3795, 7.3817, 7.3802, 7.3792, 7.3799, 7.3784, 7.381, 7.3798, 7.3789, 7.3777, 7.3765, 7.3786, 7.3778, 7.3763, 7.3748, 7.3733, 7.3742, 7.3765, 7.3752, 7.3738, 7.3724, 7.3749, 7.375, 7.3776, 7.38, 7.3759, 7.3746, 7.3908, 7.3896, 7.3892, 7.3883, 7.3907, 7.3897, 7.3885, 7.3875, 7.3869, 7.3892, 7.3879, 7.3932, 7.3955, 7.3977, 7.3963, 7.3949, 7.3948, 7.3935, 7.3923, 7.3947, 7.3942, 7.3965, 7.3985, 7.3974, 7.3995, 7.4022, 7.401, 7.4005, 7.3995, 7.3983, 7.3978, 7.3935, 7.3957, 7.3948, 7.3935, 7.3923, 7.391, 7.3897, 7.3888, 7.3876, 7.3863, 7.385, 7.3843, 7.383, 7.3816, 7.3839, 7.3826, 7.3817, 7.3805, 7.3762, 7.3752, 7.3738, 7.3724, 7.3716, 7.3703, 7.3689, 7.3676, 7.37, 7.3721, 7.3677, 7.3665, 7.3653, 7.3648, 7.3635, 7.3629, 7.3836, 7.3859, 7.3846, 7.3868, 7.3859, 7.3852, 7.3841, 7.3798, 7.3789, 7.3776, 7.3763, 7.3749, 7.3742, 7.3734, 7.3728, 7.3721, 7.3742, 7.3729, 7.375, 7.3741, 7.3729, 7.3726, 7.3725, 7.3729, 7.3765, 7.376, 7.3721, 7.3708, 7.3766, 7.3786, 7.3921, 7.3909, 7.3919, 7.3906, 7.3893, 7.3881, 7.3921, 7.3913, 7.39, 7.3887, 7.391, 7.3933, 7.3963, 7.3983, 7.3976, 7.3963, 7.3986, 7.3974, 7.3969, 7.3978, 7.397, 7.3998, 7.3992, 7.4014, 7.4035, 7.3994, 7.3982, 7.3976, 7.3963, 7.3987, 7.398, 7.4005, 7.3999, 7.3994, 7.3981, 7.399, 7.3979, 7.3969, 7.3963, 7.3985, 7.4013, 7.4, 7.4017, 7.4005, 7.4027, 7.4016, 7.4046, 7.4034, 7.4022, 7.4112, 7.4104, 7.4096, 7.4083, 7.4075, 7.4062, 7.4054, 7.4041, 7.4063, 7.4052, 7.4045, 7.4032, 7.4021, 7.404, 7.403, 7.4018, 7.4011, 7.4002, 7.3989, 7.3986, 7.4038, 7.4057, 7.4045, 7.4009, 7.3997, 7.4, 7.3994, 7.3991, 7.3982, 7.3979, 7.3945, 7.3938, 7.3927, 7.3921, 7.3915, 7.3906, 7.3906, 7.3902, 7.3897, 7.3952, 7.3973, 7.4041, 7.4062, 7.405, 7.4072, 7.4061, 7.4052, 7.4046, 7.4065, 7.4052, 7.4039, 7.4028, 7.4016, 7.4005, 7.3993, 7.4014, 7.4006, 7.4027, 7.4014, 7.4008, 7.3995, 7.3983, 7.3973, 7.3963, 7.3951, 7.3949, 7.3939, 7.3958, 7.3945, 7.3965, 7.3957, 7.3949, 7.3969, 7.3933, 7.3955, 7.3974, 7.3969, 7.3957, 7.3979, 7.3977, 7.3965, 7.3928, 7.3917, 7.4023, 7.4015, 7.4008, 7.4027, 7.4021, 7.4015, 7.4008, 7.3999, 7.3988, 7.3977, 7.3997, 7.399, 7.3979, 7.3973, 7.3971, 7.396, 7.3977, 7.3965, 7.3987, 7.3976, 7.3965, 7.3953, 7.3946, 7.3938, 7.3957, 7.3949, 7.3943, 7.3931, 7.392, 7.3908, 7.3896, 7.3891, 7.3881, 7.3869, 7.3865, 7.3827, 7.382, 7.3827, 7.3847, 7.3841, 7.3956, 7.3945, 7.3943, 7.3963, 7.3952, 7.394, 7.3928, 7.3916, 7.3906, 7.3896, 7.3889, 7.3877, 7.3895, 7.3884, 7.3905, 7.3894, 7.3883, 7.3872, 7.3891, 7.388, 7.39, 7.3893, 7.3886, 7.3907, 7.3896, 7.3885, 7.3874, 7.3868, 7.3887, 7.3878, 7.3866, 7.3853, 7.3844, 7.3808, 7.3797, 7.3788, 7.378, 7.3769, 7.3823, 7.3815, 7.3807, 7.38, 7.3789, 7.3781, 7.38, 7.3797, 7.3791, 7.378, 7.3808, 7.3797, 7.379, 7.3784, 7.3773, 7.3744, 7.3764, 7.3758, 7.3753, 7.3786, 7.3776, 7.3764, 7.3785, 7.3775, 7.3795, 7.3785, 7.3806, 7.3796, 7.3787, 7.3777, 7.3769, 7.3794, 7.3813, 7.3804, 7.3792, 7.3781, 7.3779, 7.3775, 7.3765, 7.3755, 7.3748, 7.3743, 7.3732, 7.3721, 7.3715, 7.3704, 7.3693, 7.3682, 7.3671, 7.3665, 7.3683, 7.3672, 7.3661, 7.3681, 7.367, 7.3689, 7.3678, 7.3667, 7.3685, 7.3679, 7.3671, 7.3659, 7.3801, 7.3791, 7.3784, 7.3773, 7.3791, 7.387, 7.3865, 7.3861, 7.3855, 7.3874, 7.3892, 7.3881, 7.3871, 7.389, 7.388, 7.387, 7.3889, 7.3883, 7.3877, 7.3872, 7.3905, 7.3927, 7.3916, 7.3909, 7.3898, 7.3889, 7.3881, 7.3873, 7.3897, 7.3888, 7.3882, 7.3877, 7.3871, 7.389, 7.3879, 7.3897, 7.3892, 7.3883, 7.3877, 7.3866, 7.3885, 7.3875, 7.3864, 7.3856, 7.3847, 7.3837, 7.3862, 7.3879, 7.387, 7.3858, 7.385, 7.3839, 7.3828, 7.3817, 7.3806, 7.3798, 7.379, 7.3782, 7.3771, 7.376, 7.3749, 7.3738, 7.3732, 7.3724, 7.3727, 7.3722, 7.3711, 7.3701, 7.369, 7.3708, 7.3703, 7.3723, 7.3713, 7.3702, 7.3691, 7.368, 7.3679, 7.3676, 7.3693, 7.3683, 7.3674, 7.3668, 7.3678, 7.3673, 7.369, 7.3679, 7.3673, 7.3663, 7.3652, 7.3646, 7.3636, 7.3633, 7.3629, 7.3619, 7.3612, 7.3602, 7.3592, 7.3587, 7.3608, 7.3599, 7.3589, 7.3579, 7.36, 7.3653, 7.3649, 7.364, 7.3629, 7.362, 7.3614, 7.3604, 7.3622, 7.3615, 7.3607, 7.36, 7.359, 7.3583, 7.3574, 7.3569, 7.3559, 7.3549, 7.3566, 7.3556, 7.3546, 7.3536, 7.3502, 7.3492, 7.3496, 7.3494, 7.3493, 7.3483, 7.35, 7.3489, 7.3488, 7.3479, 7.3474, 7.3467, 7.3485, 7.3474, 7.3464, 7.3457, 7.345, 7.3483, 7.3474, 7.3491, 7.3493, 7.3483, 7.3508, 7.3504, 7.3499, 7.3516, 7.3506, 7.3496, 7.3551, 7.3546, 7.3536, 7.3526, 7.352, 7.3513, 7.3506, 7.3535, 7.3526, 7.3569, 7.3828, 7.3821, 7.3812, 7.3805, 7.3797, 7.3813, 7.378, 7.3769, 7.3759, 7.3748, 7.3738, 7.373, 7.3723, 7.3714, 7.371, 7.3714, 7.3731, 7.3748, 7.3766, 7.3756, 7.3746, 7.3762, 7.3779, 7.3771, 7.3761, 7.3752, 7.3849, 7.384, 7.383, 7.382, 7.3811, 7.3828, 7.3817, 7.3807, 7.3805, 7.3799, 7.3819, 7.3834, 7.3824, 7.3927, 7.3917, 7.3914, 7.3932, 7.3923, 7.3941, 7.3932, 7.3928, 7.392, 7.3919, 7.3914, 7.3904, 7.3894, 7.3884, 7.3875, 7.3921, 7.3919, 7.3909, 7.3899, 7.3922, 7.3915, 7.3938, 7.393, 7.3925, 7.3915, 7.3932, 7.3949, 7.395, 7.3939, 7.3956, 7.395, 7.395, 7.3941, 7.3939, 7.3946, 7.3935, 7.3956, 7.3949, 7.3949, 7.394, 7.3932, 7.3925, 7.3917, 7.391, 7.3902, 7.3892, 7.389, 7.3907, 7.3899, 7.3998, 7.399, 7.3983, 7.3973, 7.3964, 7.3955, 7.3955, 7.3949, 7.3939, 7.393, 7.3928, 7.3921, 7.3938, 7.3929, 7.3945, 7.3942, 7.3944, 7.3961, 7.3952, 7.3974, 7.3993, 7.3989, 7.398, 7.397, 7.3986, 7.3977, 7.3947, 7.3942, 7.3932, 7.3922, 7.3915, 7.3905, 7.3926, 7.3923, 7.3917, 7.3908, 7.3923, 7.3917, 7.3909, 7.3902, 7.3895, 7.3889, 7.3879, 7.3869, 7.3863, 7.3853, 7.3843, 7.3835, 7.3828, 7.3827, 7.382, 7.3813, 7.3829, 7.3826, 7.3819, 7.3809, 7.3802, 7.3793, 7.3789, 7.3781, 7.3772, 7.3762, 7.3756, 7.3775, 7.3766, 7.3757, 7.3776, 7.3746, 7.3762, 7.3754, 7.3749, 7.3741, 7.3736, 7.3728, 7.3745, 7.3736, 7.3731, 7.3765, 7.3783, 7.3804, 7.3825, 7.3818, 7.3834, 7.3827, 7.3819, 7.3811, 7.3803, 7.3793, 7.3785, 7.3775, 7.3766, 7.376, 7.3751, 7.3767, 7.3785, 7.3777, 7.3769, 7.3785, 7.3777, 7.3769, 7.376, 7.3751, 7.3768, 7.3799, 7.379, 7.3806, 7.3797, 7.3791, 7.3787, 7.3779, 7.377, 7.3761, 7.3751, 7.3742, 7.3733, 7.3772, 7.3788, 7.3779, 7.3797, 7.3795, 7.3786, 7.3801, 7.3792, 7.3783, 7.3799, 7.3793, 7.3785, 7.3778, 7.3748, 7.3744, 7.3736, 7.3727, 7.3719, 7.3712, 7.3705, 7.3695, 7.3709, 7.3729, 7.3724, 7.3741, 7.3737, 7.3732, 7.3757, 7.3747, 7.3741, 7.3732, 7.3723, 7.3715, 7.3731, 7.3722, 7.3718, 7.371, 7.3701, 7.3767, 7.3788, 7.3782, 7.3779, 7.3775, 7.3766, 7.3762, 7.3763, 7.3758, 7.3749, 7.374, 7.3732, 7.3779, 7.3794, 7.3809, 7.38, 7.3794, 7.3789, 7.3783, 7.3778, 7.3775, 7.3789, 7.378, 7.3774, 7.3765, 7.3756, 7.3755, 7.375, 7.3765, 7.3759, 7.3774, 7.3767, 7.3758, 7.3735, 7.3726, 7.374, 7.3747, 7.3764, 7.3767, 7.3758, 7.375, 7.3771, 7.3787, 7.3827, 7.3821, 7.3814, 7.3806, 7.38, 7.3791, 7.3783, 7.382, 7.3816, 7.3807, 7.3799, 7.3792, 7.3783, 7.3774, 7.3789, 7.3803, 7.3817, 7.3813, 7.3827, 7.3818, 7.3814, 7.3805, 7.3797, 7.3811, 7.3802, 7.3793, 7.3789, 7.3806, 7.3798, 7.3815, 7.3829, 7.3822, 7.3817, 7.3861, 7.3852, 7.3843, 7.3837, 7.3837, 7.383, 7.3826, 7.3817, 7.383, 7.3824, 7.3848, 7.384, 7.3835, 7.3827, 7.3819, 7.3838, 7.3833, 7.3895, 7.391, 7.3909, 7.3924, 7.3917, 7.393, 7.3924, 7.3941, 7.3933, 7.3931, 7.3946, 7.3937, 7.3929, 7.3924, 7.3919, 7.3913, 7.3904, 7.3895, 7.3891, 7.3882, 7.3873, 7.3865, 7.3856, 7.3849, 7.3871, 7.3866, 7.3857, 7.3849, 7.3841, 7.3855, 7.3852, 7.3846, 7.3845, 7.385, 7.3845, 7.3843, 7.3834, 7.383, 7.3824, 7.3837, 7.3829, 7.383, 7.3821, 7.3813, 7.3805, 7.3796, 7.3824, 7.3839, 7.3832, 7.3823, 7.3815, 7.3833, 7.3824, 7.382, 7.3816, 7.383, 7.3823, 7.3824, 7.3921, 7.3937, 7.3955, 7.395, 7.3944, 7.3938, 7.393, 7.3936, 7.3927, 7.394, 7.3954, 7.3972, 7.3968, 7.3961, 7.3953, 7.3948, 7.3944, 7.3944, 7.3941, 7.3955, 7.3971, 7.3962, 7.3957, 7.3949, 7.3945, 7.394, 7.3955, 7.3948, 7.3962, 7.3954, 7.3946, 7.3938, 7.393, 7.3927, 7.3919, 7.3911, 7.3902, 7.3899, 7.3914, 7.3908, 7.3902, 7.3897, 7.3888, 7.3884, 7.3882, 7.3875, 7.3867, 7.3859, 7.3873, 7.3865, 7.3857, 7.3872, 7.3888, 7.3885, 7.3881, 7.3896, 7.3891, 7.3883, 7.3882, 7.3917, 7.3954, 7.3946, 7.3938, 7.393, 7.3924, 7.392, 7.3912, 7.3925, 7.3954, 7.3969, 7.3965, 7.398, 7.3993, 7.4031, 7.4047, 7.4041, 7.4039, 7.4035, 7.4035, 7.4049, 7.4111, 7.4125, 7.412, 7.4112, 7.4104, 7.41, 7.4115, 7.4111, 7.4103, 7.4097, 7.409, 7.4082, 7.4098, 7.409, 7.4063, 7.4083, 7.4077, 7.4072, 7.4064, 7.4056, 7.407, 7.4082, 7.4074, 7.4099, 7.409, 7.4085, 7.4077, 7.4069, 7.4107, 7.41, 7.4092, 7.4106, 7.4101, 7.4117, 7.4109, 7.4103, 7.4101, 7.4093, 7.409, 7.4083, 7.408, 7.4074, 7.407, 7.4061, 7.4053, 7.4069, 7.4082, 7.4078, 7.407, 7.4063, 7.4056, 7.4071, 7.4064, 7.4058, 7.4053, 7.4045, 7.402, 7.4015, 7.4028, 7.4021, 7.4014, 7.4031, 7.403, 7.4023, 7.4016, 7.4008, 7.4001, 7.3996, 7.4002, 7.4015, 7.4008, 7.4022, 7.4016, 7.4008, 7.4021, 7.4013, 7.4006, 7.4019, 7.4032, 7.4025, 7.4017, 7.4009, 7.4001, 7.3999, 7.3991, 7.3983, 7.3978, 7.397, 7.3982, 7.3989, 7.4007, 7.4003, 7.3996, 7.3988, 7.3981, 7.3995, 7.4008, 7.4004, 7.4003, 7.3996, 7.399, 7.3983, 7.3977, 7.3969, 7.3965, 7.3958, 7.395, 7.3948, 7.3962, 7.3962, 7.3956, 7.3951, 7.3964, 7.3961, 7.3966, 7.3981, 7.3976, 7.397, 7.3963, 7.3965, 7.3959, 7.3951, 7.3944, 7.396, 7.3961, 7.3955, 7.395, 7.3948, 7.394, 7.3954, 7.3949, 7.3941, 7.3956, 7.3952, 7.3966, 7.3962, 7.3975, 7.397, 7.3985, 7.3978, 7.3953, 7.3948, 7.394, 7.3932, 7.3947, 7.3943, 7.3957, 7.399, 7.3983, 7.3976, 7.3972, 7.3986, 7.3979, 7.3977, 7.3953, 7.3946, 7.3938, 7.3952, 7.3944, 7.3936, 7.3932, 7.3955, 7.3948, 7.3941, 7.3966, 7.4019, 7.4048, 7.4041, 7.4042, 7.4038, 7.4051, 7.4046, 7.404, 7.4035, 7.4054, 7.4046, 7.4042, 7.4034, 7.4047, 7.4044, 7.4057, 7.407, 7.4084, 7.4079, 7.4074, 7.4085, 7.41, 7.4096, 7.4111, 7.4103, 7.4095, 7.4091, 7.4125, 7.4119, 7.4118, 7.411, 7.4102, 7.4114, 7.4106, 7.4098, 7.4097, 7.4091, 7.4083, 7.4137, 7.4131, 7.4153, 7.4145, 7.4199, 7.4193, 7.4189, 7.4181, 7.4156, 7.4149, 7.4141, 7.4118, 7.4172, 7.4186, 7.4199, 7.4193, 7.4186, 7.4181, 7.4179, 7.4172, 7.4168, 7.4161, 7.4173, 7.4186, 7.4179, 7.416, 7.4162, 7.4155, 7.4148, 7.4143, 7.4155, 7.4148, 7.416, 7.4152, 7.4144, 7.4137, 7.4133, 7.413, 7.4143, 7.4137, 7.413, 7.4143, 7.4136, 7.4148, 7.4142, 7.4134, 7.4146, 7.4141, 7.4135, 7.4148, 7.4143, 7.4139, 7.4154, 7.4177, 7.4173, 7.4168, 7.4164, 7.4229, 7.4206, 7.4202, 7.4195, 7.4212, 7.4208, 7.4204, 7.42, 7.4194, 7.4207, 7.4201, 7.4197, 7.4192, 7.4185, 7.4166, 7.4162, 7.4157, 7.4151, 7.4146, 7.4219, 7.4222, 7.4235, 7.4248, 7.4241, 7.4234, 7.4226, 7.4222, 7.4216, 7.4268, 7.4264, 7.4262, 7.427, 7.4284, 7.4296, 7.4289, 7.4283, 7.4279, 7.4271, 7.4264, 7.4256, 7.4252, 7.4248, 7.427, 7.4263, 7.4275, 7.4268, 7.4261, 7.4269, 7.4282, 7.4279, 7.4272, 7.4285, 7.4278, 7.4271, 7.4266, 7.4279, 7.4272, 7.4307, 7.43, 7.4292, 7.4284, 7.4277, 7.4293, 7.4286, 7.4278, 7.4277, 7.4253, 7.4256, 7.4249, 7.4244, 7.4241, 7.4239, 7.4215, 7.4214, 7.4207, 7.4219, 7.4231, 7.4224, 7.4221, 7.4217, 7.421, 7.4205, 7.4199, 7.4211, 7.4206, 7.4217, 7.421, 7.4203, 7.4218, 7.4232, 7.4228, 7.424, 7.4253, 7.4259, 7.4252, 7.4245, 7.4239, 7.4238, 7.425, 7.4242, 7.4235, 7.4258, 7.4251, 7.4248, 7.4226, 7.4203, 7.4197, 7.4209, 7.4202, 7.4195, 7.4187, 7.4165, 7.4159, 7.4155, 7.415, 7.4145, 7.4139, 7.4135, 7.4128, 7.4141, 7.4155, 7.415, 7.4147, 7.4149, 7.4142, 7.4136, 7.4149, 7.4142, 7.4138, 7.415, 7.4143, 7.4136, 7.4129, 7.4128, 7.4123, 7.4117, 7.412, 7.4149, 7.4161, 7.4155, 7.4147, 7.414, 7.4135, 7.4148, 7.4161, 7.4173, 7.4167, 7.416, 7.4155, 7.4149, 7.4142, 7.4134, 7.4129, 7.4125, 7.4118, 7.4113, 7.4109, 7.4105, 7.41, 7.4093, 7.4086, 7.4098, 7.4093, 7.4105, 7.41, 7.4111, 7.4105, 7.41, 7.4104, 7.4097, 7.4094, 7.4089, 7.41, 7.4097, 7.4097, 7.4139, 7.4151, 7.4208, 7.4202, 7.423, 7.4241, 7.4253, 7.4248, 7.4248, 7.4244, 7.4256, 7.4267, 7.4263, 7.4258, 7.4254, 7.4264, 7.4262, 7.4274, 7.4267, 7.4279, 7.4274, 7.4268, 7.4262, 7.4277, 7.4274, 7.4268, 7.4261, 7.4273, 7.4285, 7.428, 7.4294, 7.4306, 7.4318, 7.433, 7.4326, 7.4319, 7.4314, 7.4324, 7.4319, 7.4313, 7.4308, 7.4301, 7.4312, 7.4305, 7.4299, 7.4293, 7.4287, 7.4282, 7.4275, 7.4269, 7.4262, 7.424, 7.4238, 7.4261, 7.4255, 7.4248, 7.4242, 7.4235, 7.4229, 7.4225, 7.4218, 7.4212, 7.4208, 7.4201, 7.4198, 7.4191, 7.4184, 7.4182, 7.4178, 7.4173, 7.4167, 7.418, 7.4228, 7.4221, 7.4218, 7.4216, 7.4233, 7.4227, 7.4238, 7.425, 7.4247, 7.4241, 7.4235, 7.4229, 7.4222, 7.4215, 7.4208, 7.4201, 7.4195, 7.4189, 7.4186, 7.4198, 7.4191, 7.4185, 7.4181, 7.4192, 7.4222, 7.4215, 7.4208, 7.4208, 7.4201, 7.4213, 7.4206, 7.4217, 7.421, 7.4203, 7.4197, 7.4193, 7.4186, 7.418, 7.4173, 7.4188, 7.4181, 7.4175, 7.4172, 7.4165, 7.4158, 7.4152, 7.4163, 7.4163, 7.4156, 7.415, 7.4145, 7.4138, 7.4148, 7.416, 7.4156, 7.4152, 7.4164, 7.4159, 7.4153, 7.4153, 7.415, 7.4144, 7.4139, 7.4136, 7.4133, 7.4127, 7.412, 7.4113, 7.4107, 7.4101, 7.4095, 7.4091, 7.4085, 7.409, 7.4103, 7.4097, 7.4093, 7.4086, 7.4098, 7.411, 7.4107, 7.41, 7.4093, 7.409, 7.4102, 7.4096, 7.4107, 7.4101, 7.4094, 7.409, 7.4088, 7.4084, 7.4081, 7.4101, 7.4112, 7.4106, 7.4102, 7.4095, 7.4106, 7.4099, 7.4095, 7.4088, 7.41, 7.4093, 7.4094, 7.4114, 7.4108, 7.4104, 7.4097, 7.411, 7.4104, 7.4097, 7.4108, 7.4101, 7.4094, 7.4087, 7.408, 7.4092, 7.4092, 7.4102, 7.414, 7.4155, 7.4193, 7.4186, 7.4179, 7.4179, 7.4174, 7.4167, 7.4161, 7.4141, 7.4152, 7.4146, 7.4142, 7.4136, 7.4132, 7.4142, 7.4157, 7.4168, 7.4185, 7.4179, 7.4172, 7.4168, 7.4165, 7.416, 7.4153, 7.4146, 7.414, 7.4137, 7.413, 7.414, 7.4136, 7.413, 7.4123, 7.4117, 7.411, 7.4104, 7.4102, 7.4096, 7.409, 7.4086, 7.4097, 7.409, 7.4084, 7.4078, 7.4075, 7.4086, 7.408, 7.409, 7.4085, 7.4081, 7.4074, 7.407, 7.414, 7.4158, 7.42, 7.4197, 7.4208, 7.4201, 7.4195, 7.419, 7.42, 7.4196, 7.4189, 7.4182, 7.4195, 7.4191, 7.4185, 7.4179, 7.4175, 7.4171, 7.4182, 7.4176, 7.4171, 7.4166, 7.4162, 7.4155, 7.4166, 7.4162, 7.4159, 7.4153, 7.4177, 7.4178, 7.4178, 7.4173, 7.4183, 7.4195, 7.4189, 7.4183, 7.4193, 7.4205, 7.4199, 7.4193, 7.4189, 7.4186, 7.4171, 7.4164, 7.4175, 7.4186, 7.4181, 7.4177, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4145, 7.4157, 7.4168, 7.4165, 7.4159, 7.4161, 7.4161, 7.4162, 7.4173, 7.417, 7.415, 7.4145, 7.4141, 7.4138, 7.4135, 7.4146, 7.4139, 7.4151, 7.4153, 7.4148, 7.4144, 7.4141, 7.4135, 7.4129, 7.4128, 7.4122, 7.4115, 7.4108, 7.4102, 7.4116, 7.4126, 7.4122, 7.4122, 7.4117, 7.4128, 7.4122, 7.4132, 7.4128, 7.4139, 7.4149, 7.4142, 7.4146, 7.414, 7.4136, 7.413, 7.4125, 7.4118, 7.4115, 7.411, 7.4104, 7.4098, 7.4094, 7.4087, 7.4084, 7.4093, 7.4103, 7.4105, 7.4102, 7.4097, 7.4107, 7.4102, 7.4097, 7.4098, 7.4095, 7.4089, 7.4083, 7.4077, 7.4075, 7.4069, 7.4063, 7.4057, 7.4067, 7.4118, 7.4113, 7.4125, 7.4119, 7.4113, 7.4124, 7.4156, 7.4178, 7.4173, 7.417, 7.4167, 7.4161, 7.4172, 7.4168, 7.4181, 7.4175, 7.4186, 7.418, 7.4174, 7.4175, 7.4186, 7.4183, 7.4186, 7.4183, 7.4177, 7.4173, 7.4168, 7.4165, 7.4176, 7.4174, 7.4168, 7.4178, 7.4172, 7.4183, 7.4193, 7.4203, 7.42, 7.4206, 7.4216, 7.421, 7.4204, 7.4214, 7.4208, 7.4207, 7.4201, 7.4199, 7.4195, 7.4205, 7.42, 7.421, 7.4194, 7.4188, 7.4182, 7.4181, 7.4175, 7.4172, 7.4153, 7.4147, 7.4141, 7.4155, 7.4149, 7.416, 7.4155, 7.415, 7.4144, 7.414, 7.415, 7.4157, 7.4168, 7.4162, 7.4156, 7.4153, 7.4147, 7.4141, 7.4152, 7.4145, 7.414, 7.4136, 7.4137, 7.4134, 7.4128, 7.4138, 7.4135, 7.4132, 7.4128, 7.4123, 7.4135, 7.413, 7.4124, 7.4118, 7.4114, 7.4111, 7.4121, 7.4131, 7.4157, 7.4151, 7.416, 7.4155, 7.415, 7.4152, 7.4146, 7.4156, 7.4152, 7.4146, 7.4143, 7.4139, 7.4133, 7.4145, 7.4141, 7.4135, 7.4162, 7.4156, 7.4152, 7.4146, 7.4149, 7.4143, 7.4156, 7.415, 7.416, 7.4155, 7.4149, 7.4143, 7.4137, 7.4131, 7.4157, 7.4151, 7.4145, 7.4139, 7.4137, 7.4133, 7.4127, 7.4138, 7.4132, 7.4126, 7.4121, 7.4115, 7.4129, 7.4128, 7.4139, 7.4134, 7.4146, 7.414, 7.4134, 7.413, 7.4124, 7.4118, 7.4114, 7.4153, 7.415, 7.4144, 7.4142, 7.4152, 7.415, 7.4143, 7.4138, 7.4132, 7.4141, 7.4138, 7.4147, 7.4141, 7.4152, 7.4158, 7.4152, 7.4139, 7.4133, 7.4134, 7.413, 7.4124, 7.4123, 7.4118, 7.416, 7.414, 7.4149, 7.4146, 7.4141, 7.4136, 7.4145, 7.414, 7.4158, 7.4155, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4146, 7.414, 7.4135, 7.4129, 7.4123, 7.4118, 7.4112, 7.4122, 7.4131, 7.4142, 7.4136, 7.413, 7.4127, 7.4108, 7.4105, 7.4101, 7.4095, 7.409, 7.41, 7.4174, 7.4171, 7.4167, 7.4178, 7.4175, 7.4172, 7.4168, 7.4164, 7.4158, 7.4153, 7.4153, 7.4182, 7.4192, 7.4189, 7.4199, 7.4194, 7.4193, 7.4205, 7.4199, 7.421, 7.4204, 7.4198, 7.4198, 7.4193, 7.419, 7.4201, 7.4198, 7.4194, 7.4188, 7.4182, 7.4182, 7.4178, 7.4173, 7.4168, 7.4165, 7.4177, 7.4172, 7.4167, 7.4167, 7.4163, 7.4157, 7.4154, 7.415, 7.4147, 7.4156, 7.4153, 7.415, 7.4145, 7.4139, 7.4136, 7.4133, 7.4127, 7.4122, 7.4116, 7.4113, 7.411, 7.4104, 7.4098, 7.4093, 7.4087, 7.4097, 7.4107, 7.4101, 7.4095, 7.4106, 7.4102, 7.4096, 7.4106, 7.41, 7.4097, 7.4093, 7.4089, 7.4085, 7.408, 7.4075, 7.4086, 7.4085, 7.409, 7.4084, 7.4081, 7.4091, 7.4086, 7.4097, 7.4092, 7.4102, 7.4099, 7.4094, 7.4106, 7.4118, 7.4127, 7.4124, 7.412, 7.4114, 7.4124, 7.4121, 7.4116, 7.4111, 7.4105, 7.4102, 7.4083, 7.4078, 7.4076, 7.4073, 7.4083, 7.4077, 7.4087, 7.4082, 7.4079, 7.4075, 7.4069, 7.4065, 7.406, 7.4055, 7.4049, 7.4043, 7.4026, 7.4034, 7.4029, 7.4024, 7.4018, 7.4014, 7.4009, 7.4003, 7.4012, 7.4006, 7.4003, 7.4, 7.3999, 7.4019, 7.4043, 7.4053, 7.4062, 7.4071, 7.4103, 7.4099, 7.4094, 7.409, 7.4085, 7.408, 7.4075, 7.4085, 7.4081, 7.4076, 7.4071, 7.4066, 7.4064, 7.4073, 7.4068, 7.4078, 7.4073, 7.4155, 7.4166, 7.4168, 7.4165, 7.4159, 7.4153, 7.415, 7.4145, 7.4139, 7.4135, 7.4133, 7.4128, 7.4123, 7.4118, 7.4113, 7.4107, 7.4131, 7.4125, 7.412, 7.4118, 7.4114, 7.411, 7.4105, 7.4101, 7.4104, 7.41, 7.4095, 7.4107, 7.4102, 7.4099, 7.4094, 7.409, 7.4086, 7.4083, 7.408, 7.4088, 7.4097, 7.4094, 7.4089, 7.4084, 7.4079, 7.4073, 7.4069, 7.4065, 7.406, 7.4043, 7.4052, 7.4049, 7.4043, 7.4038, 7.4032, 7.4041, 7.4038, 7.4033, 7.403, 7.4027, 7.4034, 7.4031, 7.4041, 7.4041, 7.4056, 7.4053, 7.4052, 7.4048, 7.4044, 7.404, 7.4037, 7.4034, 7.403, 7.4039, 7.4036, 7.4044, 7.4039, 7.4034, 7.403, 7.4026, 7.4021, 7.4015, 7.4027, 7.4022, 7.4018, 7.4029, 7.4029, 7.4024, 7.402, 7.4029, 7.4025, 7.402, 7.4014, 7.4009, 7.4004, 7.4018, 7.4013, 7.4007, 7.4002, 7.4, 7.3995, 7.399, 7.399, 7.3985, 7.398, 7.3976, 7.3992, 7.3987, 7.3983, 7.3978, 7.3994, 7.3989, 7.3984, 7.4003, 7.3998, 7.4001, 7.3997, 7.3992, 7.3987, 7.3997, 7.3993, 7.3988, 7.4012, 7.4006, 7.4, 7.3995, 7.3992, 7.3987, 7.3981, 7.3976, 7.3973, 7.3968, 7.3965, 7.3974, 7.3969, 7.3964, 7.3947, 7.3943, 7.3952, 7.401, 7.4019, 7.4016, 7.4012, 7.4007, 7.4003, 7.4, 7.4014, 7.4011, 7.4025, 7.4021, 7.4019, 7.4017, 7.4012, 7.401, 7.402, 7.4015, 7.401, 7.4006, 7.4003, 7.3998, 7.3993, 7.3989, 7.3984, 7.3979, 7.3974, 7.3971, 7.3971, 7.3965, 7.3962, 7.3964, 7.3962, 7.3957, 7.397, 7.3969, 7.3977, 7.3972, 7.3967, 7.3962, 7.3958, 7.3968, 7.3979, 7.3973, 7.3982, 7.3986, 7.3981, 7.3979, 7.3975, 7.397, 7.3964, 7.3963, 7.396, 7.3957, 7.3981, 7.3976, 7.3971, 7.3967, 7.3977, 7.3973, 7.397, 7.3967, 7.3977, 7.3972, 7.3968, 7.3965, 7.3961, 7.3956, 7.395, 7.3945, 7.394, 7.3935, 7.393, 7.394, 7.3935, 7.3929, 7.3926, 7.3955, 7.3983, 7.3993, 7.3988, 7.3985, 7.3968, 7.3995, 7.3993, 7.3988, 7.3987, 7.3996, 7.4005, 7.4, 7.3995, 7.399, 7.3999, 7.3994, 7.4002, 7.4011, 7.4006, 7.4005, 7.4001, 7.3996, 7.4006, 7.4002, 7.3999, 7.3995, 7.3992, 7.3987, 7.399, 7.3986, 7.3992, 7.4002, 7.3997, 7.3993, 7.3988, 7.3983, 7.3978, 7.3975, 7.4026, 7.4023, 7.4018, 7.4018, 7.4012, 7.4023, 7.4019, 7.4014, 7.4019, 7.4024, 7.4018, 7.4013, 7.4026, 7.4024, 7.404, 7.4038, 7.4033, 7.4028, 7.4023, 7.4032, 7.403, 7.4026, 7.4022, 7.4031, 7.4026, 7.4036, 7.4031, 7.4039, 7.4048, 7.4043, 7.4038, 7.4032, 7.4027, 7.4065, 7.4063, 7.406, 7.4056, 7.4054, 7.4051, 7.405, 7.4058, 7.4066, 7.4074, 7.407, 7.4066, 7.4067, 7.4064, 7.4061, 7.4074, 7.4071, 7.4066, 7.4063, 7.4059, 7.4056, 7.4052, 7.4103, 7.4099, 7.4094, 7.4091, 7.4089, 7.4084, 7.4081, 7.4086, 7.4081, 7.411, 7.4105, 7.4101, 7.411, 7.4106, 7.4102, 7.4097, 7.4106, 7.411, 7.4105, 7.41, 7.4083, 7.408, 7.4075, 7.407, 7.4066, 7.4075, 7.4083, 7.408, 7.4075, 7.407, 7.4065, 7.406, 7.4055, 7.405, 7.4072, 7.4069, 7.4065, 7.4073, 7.4068, 7.4067, 7.4063, 7.4059, 7.4054, 7.4063, 7.4058, 7.4065, 7.4087, 7.4083, 7.4078, 7.4088, 7.4085, 7.4095, 7.4092, 7.41, 7.4095, 7.409, 7.4104, 7.4113, 7.4108, 7.4117, 7.4112, 7.4108, 7.4103, 7.4098, 7.4094, 7.4092, 7.4183, 7.4178, 7.4178, 7.4161, 7.4156, 7.4151, 7.4187, 7.4182, 7.4191, 7.4174, 7.4171, 7.418, 7.4175, 7.4171, 7.418, 7.4175, 7.4183, 7.4192, 7.4202, 7.4211, 7.4206, 7.419, 7.4191, 7.4186, 7.4183, 7.4179, 7.4174, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4152, 7.4149, 7.4138, 7.4134, 7.4133, 7.415, 7.4147, 7.4156, 7.4151, 7.4148, 7.4143, 7.4138, 7.4134, 7.4129, 7.4126, 7.4123, 7.4138, 7.4133, 7.4141, 7.4137, 7.4134, 7.4129, 7.4124, 7.4121, 7.4118, 7.4113, 7.4121, 7.4116, 7.4112, 7.4109, 7.4104, 7.41, 7.4096, 7.4091, 7.4086, 7.4082, 7.409, 7.4085, 7.4086, 7.4083, 7.4078, 7.4073, 7.4068, 7.4076, 7.4073, 7.4081, 7.4068, 7.4067, 7.4064, 7.4077, 7.4072, 7.4067, 7.4062, 7.4069, 7.4064, 7.4074, 7.4075, 7.406, 7.4056, 7.4053, 7.4049, 7.4046, 7.4045, 7.404, 7.4035, 7.4031, 7.4026, 7.4034, 7.403, 7.4014, 7.4009, 7.4007, 7.4002, 7.3997, 7.4034, 7.4029, 7.404, 7.4052, 7.4047, 7.4042, 7.405, 7.4098, 7.4105, 7.41, 7.4108, 7.4103, 7.41, 7.4095, 7.4104, 7.41, 7.4095, 7.4103, 7.4101, 7.4096, 7.4105, 7.4103, 7.4098, 7.4096, 7.4091, 7.4088, 7.4089, 7.4086, 7.4084, 7.4083, 7.4107, 7.4115, 7.4113, 7.4098, 7.4099, 7.4109, 7.4104, 7.4113, 7.4109, 7.4104, 7.4113, 7.4108, 7.4104, 7.4102, 7.4098, 7.4093, 7.4089, 7.4085, 7.4081, 7.4077, 7.4074, 7.4082, 7.4077, 7.4073, 7.4068, 7.4066, 7.4062, 7.4059, 7.4069, 7.4064, 7.4075, 7.4072, 7.4067, 7.4072, 7.4069, 7.4066, 7.4063, 7.406, 7.4065, 7.4061, 7.406, 7.4056, 7.4053, 7.4051, 7.4035, 7.4032, 7.4042, 7.4041, 7.405, 7.4059, 7.4056, 7.4055, 7.4053, 7.4064, 7.4063, 7.407, 7.4066, 7.4064, 7.4059, 7.406, 7.4068, 7.4066, 7.4067, 7.4062, 7.4057, 7.4054, 7.4049, 7.4045, 7.4043, 7.404, 7.4052, 7.4047, 7.4043, 7.4066, 7.4077, 7.4089, 7.4084, 7.4091, 7.4086, 7.4083, 7.408, 7.4076, 7.4073, 7.4068, 7.4063, 7.4065, 7.4061, 7.4058, 7.4055, 7.4068, 7.414, 7.4137, 7.4134, 7.4131, 7.4129, 7.4126, 7.4134, 7.413, 7.4125, 7.4133, 7.4129, 7.4127, 7.4122, 7.4128, 7.4123, 7.4118, 7.4115, 7.4111, 7.4119, 7.4117, 7.4112, 7.4107, 7.4102, 7.4097, 7.4095, 7.4103, 7.411, 7.4108, 7.4105, 7.4103, 7.4098, 7.4106, 7.4103, 7.4099, 7.4085, 7.408, 7.4082, 7.408, 7.4075, 7.4074, 7.4069, 7.4077, 7.4072, 7.408, 7.4088, 7.4086, 7.4082, 7.4078, 7.4074, 7.4083, 7.408, 7.4066, 7.4062, 7.4095, 7.409, 7.4102, 7.4097, 7.4096, 7.4106, 7.4147, 7.4168, 7.4165, 7.4163, 7.4171, 7.4216, 7.4211, 7.4208, 7.4206, 7.4204, 7.42, 7.4196, 7.4193, 7.4202, 7.4199, 7.4194, 7.4189, 7.4187, 7.4219, 7.4216, 7.4225, 7.4224, 7.4232, 7.423, 7.4238, 7.4236, 7.4242, 7.4237, 7.4253, 7.4279, 7.4274, 7.4272, 7.4267, 7.4262, 7.4246, 7.4248, 7.4243, 7.4239, 7.4247, 7.4244, 7.424, 7.4248, 7.4245, 7.424, 7.4251, 7.4248, 7.4269, 7.4267, 7.4275, 7.427, 7.4278, 7.4286, 7.4281, 7.4289, 7.4284, 7.428, 7.4277, 7.4272, 7.4267, 7.4265, 7.4273, 7.427, 7.4266, 7.4262, 7.4258, 7.4253, 7.425, 7.4292, 7.4287, 7.4285, 7.4282, 7.4277, 7.4272, 7.428, 7.4276, 7.4283, 7.4278, 7.4277, 7.4272, 7.4304, 7.43, 7.4297, 7.4295, 7.4291, 7.4299, 7.4296, 7.4299, 7.4295, 7.4303, 7.4311, 7.4308, 7.4308, 7.4308, 7.4303, 7.4311, 7.4307, 7.4315, 7.431, 7.4305, 7.4313, 7.431, 7.4296, 7.4303, 7.431, 7.4306, 7.4304, 7.43, 7.4296, 7.4293, 7.4289, 7.4285, 7.4281, 7.4277, 7.4303, 7.4312, 7.4308, 7.4304, 7.43, 7.43, 7.4296, 7.4304, 7.4334, 7.4329, 7.4324, 7.432, 7.4317, 7.4313, 7.4322, 7.4329, 7.4326, 7.4334, 7.4329, 7.4338, 7.4335, 7.433, 7.4337, 7.4332, 7.4339, 7.4337, 7.4332, 7.434, 7.4347, 7.4344, 7.434, 7.4336, 7.4331, 7.433, 7.4327, 7.4323, 7.4322, 7.4317, 7.4316, 7.4312, 7.4297, 7.4294, 7.4289, 7.4287, 7.4283, 7.428, 7.4276, 7.4276, 7.4272, 7.4269, 7.4264, 7.4272, 7.4274, 7.4272, 7.4257, 7.4253, 7.425, 7.4259, 7.4255, 7.4252, 7.4249, 7.4244, 7.423, 7.4245, 7.4242, 7.4238, 7.4246, 7.4232, 7.424, 7.4235, 7.4232, 7.4229, 7.4226, 7.4226, 7.4224, 7.422, 7.4217, 7.4213, 7.4208, 7.4217, 7.4214, 7.4209, 7.4206, 7.4206, 7.4203, 7.4199, 7.4196, 7.4191, 7.422, 7.4218, 7.4213, 7.4211, 7.4207, 7.4202, 7.4198, 7.4256, 7.4265, 7.4261, 7.4269, 7.4267, 7.4263, 7.426, 7.4257, 7.4253, 7.4261, 7.4257, 7.4253, 7.4249, 7.4245, 7.4243, 7.4243, 7.4239, 7.4235, 7.423, 7.4229, 7.4224, 7.4221, 7.4217, 7.4213, 7.4221, 7.4229, 7.4226, 7.4224, 7.422, 7.4216, 7.4212, 7.4208, 7.4236, 7.4232, 7.4228, 7.4236, 7.4237, 7.4233, 7.4228, 7.4224, 7.4221, 7.4227, 7.4223, 7.4225, 7.4222, 7.4219, 7.4216, 7.4212, 7.4219, 7.4226, 7.4221, 7.4229, 7.4236, 7.4231, 7.4238, 7.4235, 7.4242, 7.4238, 7.4236, 7.4244, 7.424, 7.4238, 7.4236, 7.4245, 7.4244, 7.4243, 7.4239, 7.4239, 7.4235, 7.4237, 7.4234, 7.4264, 7.4261, 7.4257, 7.4253, 7.4249, 7.4246, 7.4242, 7.425, 7.4248, 7.4257, 7.4266, 7.4251, 7.4249, 7.4245, 7.4243, 7.4251, 7.4258, 7.4253, 7.4258, 7.4267, 7.4252, 7.4248, 7.4245, 7.4241, 7.4237, 7.4234, 7.4242, 7.4238, 7.4234, 7.423, 7.4226, 7.4224, 7.422, 7.4216, 7.4213, 7.422, 7.4216, 7.4224, 7.4223, 7.422, 7.4218, 7.4214, 7.4211, 7.4219, 7.4228, 7.4225, 7.4222, 7.4223, 7.4211, 7.4218, 7.4214, 7.4211, 7.421, 7.4229, 7.4228, 7.4214, 7.4212, 7.4219, 7.4217, 7.4212, 7.4209, 7.4204, 7.4225, 7.4222, 7.4219, 7.4217, 7.4225, 7.4234, 7.4244, 7.425, 7.4259, 7.4256, 7.4254, 7.425, 7.4247, 7.4245, 7.4241, 7.425, 7.4246, 7.4243, 7.4239, 7.4235, 7.4242, 7.425, 7.4248, 7.4244, 7.424, 7.4237, 7.4233, 7.423, 7.4226, 7.4223, 7.4209, 7.4208, 7.4206, 7.4203, 7.4211, 7.4208, 7.4204, 7.4201, 7.4197, 7.4194, 7.4194, 7.419, 7.4186, 7.4182, 7.4178, 7.4174, 7.417, 7.4166, 7.4162, 7.4169, 7.4165, 7.4178, 7.4174, 7.4169, 7.4165, 7.4178, 7.4176, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4153, 7.4161, 7.4192, 7.4188, 7.4186, 7.4182, 7.4179, 7.4175, 7.4182, 7.4178, 7.4185, 7.4193, 7.4189, 7.4186, 7.4182, 7.4184, 7.418, 7.4177, 7.4173, 7.4187, 7.4183, 7.4179, 7.4186, 7.4182, 7.4178, 7.4175, 7.4171, 7.4172, 7.4167, 7.4164, 7.4162, 7.4158, 7.4157, 7.4153, 7.4151, 7.4148, 7.4134, 7.4141, 7.4137, 7.4134, 7.4145, 7.4141, 7.415, 7.4146, 7.4142, 7.4147, 7.4145, 7.414, 7.4136, 7.4132, 7.413, 7.4138, 7.4135, 7.4151, 7.4147, 7.4154, 7.4161, 7.4157, 7.4153, 7.415, 7.4146, 7.4155, 7.4161, 7.4161, 7.4159, 7.4159, 7.4159, 7.4155, 7.4153, 7.4149, 7.4146, 7.4142, 7.4139, 7.4193, 7.419, 7.4185, 7.4187, 7.4184, 7.4184, 7.4192, 7.4199, 7.4206, 7.4213, 7.4211, 7.4209, 7.4207, 7.4214, 7.421, 7.4206, 7.4202, 7.4198, 7.4207, 7.4225, 7.4234, 7.4287, 7.4283, 7.4291, 7.4299, 7.4297, 7.4293, 7.429, 7.4297, 7.4293, 7.4289, 7.4296, 7.4292, 7.4299, 7.4295, 7.4291, 7.4299, 7.4296, 7.4294, 7.429, 7.4286, 7.4282, 7.428, 7.4276, 7.4272, 7.4269, 7.4265, 7.4261, 7.4257, 7.4255, 7.4262, 7.4257, 7.4253, 7.4249, 7.4276, 7.4272, 7.427, 7.4268, 7.4264, 7.4262, 7.4272, 7.4279, 7.4275, 7.4281, 7.4289, 7.4285, 7.428, 7.4277, 7.4284, 7.428, 7.4287, 7.4283, 7.4281, 7.4278, 7.4285, 7.4282, 7.428, 7.4287, 7.4283, 7.4283, 7.4279, 7.4275, 7.4271, 7.4267, 7.4275, 7.4282, 7.4285, 7.4282, 7.428, 7.4276, 7.4272, 7.427, 7.4269, 7.4276, 7.4273, 7.4269, 7.4265, 7.4263, 7.4259, 7.4268, 7.4266, 7.4261, 7.4259, 7.4255, 7.4253, 7.426, 7.4256, 7.4253, 7.4249, 7.4245, 7.4242, 7.4238, 7.4234, 7.423, 7.4227, 7.4224, 7.422, 7.4216, 7.4213, 7.4237, 7.4235, 7.4232, 7.4228, 7.4224, 7.4231, 7.4229, 7.4225, 7.4226, 7.4223, 7.4219, 7.4215, 7.4217, 7.4213, 7.422, 7.4216, 7.4223, 7.4219, 7.4215, 7.4222, 7.4227, 7.4223, 7.422, 7.4216, 7.4202, 7.4199, 7.4206, 7.4202, 7.4199, 7.4196, 7.4214, 7.421, 7.4206, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4188, 7.4186, 7.4194, 7.419, 7.4187, 7.4183, 7.418, 7.4187, 7.4193, 7.4195, 7.4191, 7.4191, 7.419, 7.4186, 7.4172, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4183, 7.419, 7.4186, 7.4182, 7.4195, 7.4193, 7.4189, 7.4196, 7.4214, 7.4212, 7.421, 7.4229, 7.4237, 7.4236, 7.4232, 7.4229, 7.4227, 7.4224, 7.4231, 7.4239, 7.4235, 7.4243, 7.423, 7.4216, 7.4213, 7.421, 7.4208, 7.4225, 7.4225, 7.4211, 7.4217, 7.4213, 7.4211, 7.4208, 7.4205, 7.4195, 7.4192, 7.4201, 7.4208, 7.4204, 7.42, 7.4208, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4187, 7.4174, 7.4172, 7.417, 7.4177, 7.4173, 7.4171, 7.4178, 7.4185, 7.4181, 7.4177, 7.4174, 7.4171, 7.4169, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4167, 7.4167, 7.4163, 7.4159, 7.4156, 7.4152, 7.4148, 7.4155, 7.4153, 7.4149, 7.4166, 7.4163, 7.4161, 7.4158, 7.4165, 7.4162, 7.4163, 7.416, 7.4173, 7.4222, 7.4218, 7.4214, 7.422, 7.4228, 7.4226, 7.4222, 7.424, 7.4237, 7.4235, 7.4243, 7.425, 7.4246, 7.4242, 7.4239, 7.4256, 7.4252, 7.4239, 7.4235, 7.4231, 7.4229, 7.4225, 7.4221, 7.4227, 7.4223, 7.422, 7.4216, 7.4212, 7.4199, 7.4195, 7.4203, 7.4199, 7.4197, 7.4203, 7.4201, 7.4197, 7.4204, 7.421, 7.4207, 7.4203, 7.4199, 7.4195, 7.4191, 7.4203, 7.4199, 7.4195, 7.4202, 7.4198, 7.4207, 7.4203, 7.42, 7.4198, 7.4201, 7.4208, 7.4205, 7.4202, 7.4189, 7.4196, 7.4193, 7.4198, 7.4195, 7.4196, 7.4192, 7.4188, 7.4184, 7.418, 7.4176, 7.4183, 7.4189, 7.4185, 7.4181, 7.4177, 7.4183, 7.418, 7.4176, 7.4173, 7.4171, 7.4167, 7.4165, 7.4172, 7.4168, 7.4165, 7.4228, 7.4224, 7.4231, 7.4227, 7.4223, 7.422, 7.4216, 7.4214, 7.421, 7.4207, 7.4208, 7.4214, 7.4221, 7.4219, 7.4225, 7.4222, 7.4218, 7.4216, 7.4212, 7.4228, 7.4225, 7.4222, 7.4228, 7.4224, 7.422, 7.4231, 7.4227, 7.4234, 7.424, 7.4247, 7.4254, 7.4261, 7.4261, 7.4258, 7.4265, 7.4263, 7.4259, 7.4266, 7.4273, 7.4269, 7.4265, 7.4263, 7.426, 7.4256, 7.4253, 7.4243, 7.4241, 7.424, 7.4237, 7.4235, 7.4231, 7.4233, 7.4229, 7.4236, 7.4242, 7.4249, 7.4245, 7.4241, 7.4237, 7.4233, 7.4229, 7.4235, 7.4231, 7.4229, 7.4247, 7.4251, 7.4258, 7.4258, 7.4271, 7.4267, 7.4263, 7.431, 7.4306, 7.4302, 7.4298, 7.4295, 7.4282, 7.4278, 7.4276, 7.4283, 7.4279, 7.4285, 7.4281, 7.4279, 7.4275, 7.4271, 7.4284, 7.4319, 7.4326, 7.4322, 7.4318, 7.4314, 7.431, 7.4306, 7.4302, 7.43, 7.4308, 7.4304, 7.4301, 7.4297, 7.4293, 7.4289, 7.4291, 7.4317, 7.4314, 7.431, 7.4307, 7.4303, 7.43, 7.4287, 7.4294, 7.429, 7.4296, 7.4292, 7.4299, 7.4296, 7.4292, 7.4296, 7.4292, 7.4288, 7.4284, 7.428, 7.4287, 7.4294, 7.429, 7.4286, 7.4282, 7.4278, 7.4275, 7.4271, 7.4273, 7.4272, 7.4279, 7.4276, 7.4275, 7.4282, 7.4289, 7.4285, 7.4291, 7.429, 7.4288, 7.4285, 7.4292, 7.4299, 7.4295, 7.4291, 7.4298, 7.4296, 7.4295, 7.4293, 7.4289, 7.4296, 7.4294, 7.429, 7.429, 7.4278, 7.4285, 7.4281, 7.4268, 7.4268, 7.4278, 7.4265, 7.4261, 7.4268, 7.4266, 7.4263, 7.4259, 7.4255, 7.4252, 7.4248, 7.4245, 7.4241, 7.4238, 7.4244, 7.4248, 7.4254, 7.425, 7.4248, 7.4254, 7.4251, 7.4248, 7.4255, 7.4264, 7.4266, 7.4263, 7.4261, 7.4289, 7.4285, 7.4282, 7.4286, 7.4292, 7.4289, 7.4285, 7.4291, 7.4287, 7.4283, 7.4279, 7.4275, 7.4273, 7.4286, 7.4282, 7.428, 7.4277, 7.4274, 7.4274, 7.428, 7.4268, 7.4265, 7.4262, 7.427, 7.4266, 7.4262, 7.4268, 7.4266, 7.4272, 7.4268, 7.4264, 7.4271, 7.4267, 7.4263, 7.4262, 7.4259, 7.4257, 7.4255, 7.4252, 7.4249, 7.4275, 7.4282, 7.428, 7.4287, 7.4284, 7.428, 7.4276, 7.4273, 7.428, 7.4278, 7.4274, 7.4271, 7.4278, 7.4276, 7.4282, 7.4278, 7.4274, 7.4282, 7.4278, 7.4307, 7.4314, 7.431, 7.4316, 7.4312, 7.4309, 7.4334, 7.434, 7.4347, 7.4354, 7.4351, 7.4358, 7.4354, 7.4352, 7.4358, 7.4364, 7.436, 7.4358, 7.4369, 7.4375, 7.4371, 7.4377, 7.4374, 7.4371, 7.4377, 7.4374, 7.437, 7.4367, 7.4363, 7.4369, 7.4375, 7.4381, 7.438, 7.4386, 7.4382, 7.4388, 7.4384, 7.439, 7.4396, 7.4397, 7.4394, 7.4393, 7.4389, 7.4387, 7.4384, 7.4383, 7.4389, 7.4395, 7.4392, 7.4389, 7.4385, 7.4383, 7.438, 7.4378, 7.4377, 7.4374, 7.437, 7.4367, 7.4365, 7.4371, 7.4368, 7.4376, 7.4382, 7.4379, 7.4377, 7.4375, 7.4382, 7.4388, 7.4386, 7.4382, 7.4379, 7.4377, 7.4374, 7.437, 7.4366, 7.4362, 7.4368, 7.4366, 7.4405, 7.4411, 7.4418, 7.4414, 7.441, 7.4409, 7.4407, 7.441, 7.4407, 7.4404, 7.44, 7.4397, 7.4393, 7.4389, 7.4385, 7.4392, 7.4388, 7.4384, 7.442, 7.4417, 7.4413, 7.441, 7.4398, 7.4397, 7.4396, 7.4392, 7.4399, 7.4398, 7.4405, 7.4401, 7.4399, 7.4396, 7.4393, 7.4389, 7.4396, 7.4403, 7.4401, 7.4426, 7.4422, 7.4419, 7.4416, 7.4413, 7.4419, 7.4415, 7.4414, 7.4411, 7.4399, 7.4395, 7.4392, 7.4392, 7.439, 7.4396, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4375, 7.4372, 7.4368, 7.4364, 7.436, 7.4358, 7.4356, 7.4357, 7.4367, 7.4363, 7.436, 7.4356, 7.4362, 7.4358, 7.4346, 7.4358, 7.4354, 7.435, 7.4348, 7.4345, 7.4342, 7.4348, 7.4354, 7.4351, 7.435, 7.4346, 7.4343, 7.4341, 7.4337, 7.4333, 7.4331, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4339, 7.4345, 7.4342, 7.4338, 7.4334, 7.4341, 7.4337, 7.4343, 7.4339, 7.4336, 7.4337, 7.4335, 7.4341, 7.4337, 7.434, 7.4338, 7.4346, 7.4344, 7.4341, 7.434, 7.4347, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4347, 7.4346, 7.4343, 7.435, 7.435, 7.4349, 7.4345, 7.4351, 7.4349, 7.4347, 7.4343, 7.4341, 7.4338, 7.4335, 7.4332, 7.4329, 7.4328, 7.4332, 7.4339, 7.4338, 7.4345, 7.4343, 7.4341, 7.4339, 7.4336, 7.4335, 7.4341, 7.4338, 7.4336, 7.4335, 7.4342, 7.4339, 7.4335, 7.4333, 7.433, 7.4327, 7.4323, 7.433, 7.4336, 7.4342, 7.434, 7.4338, 7.4335, 7.4333, 7.4339, 7.4346, 7.4352, 7.4348, 7.4346, 7.4351, 7.4357, 7.4363, 7.437, 7.4367, 7.4363, 7.4362, 7.4374, 7.438, 7.4378, 7.4366, 7.4364, 7.4361, 7.4359, 7.4355, 7.4352, 7.4349, 7.4355, 7.4351, 7.4357, 7.4363, 7.4369, 7.4375, 7.4372, 7.4369, 7.4365, 7.4361, 7.4367, 7.4365, 7.4363, 7.4383, 7.4379, 7.4375, 7.4373, 7.4379, 7.4376, 7.4372, 7.4369, 7.4367, 7.4374, 7.4362, 7.4369, 7.4366, 7.4365, 7.4362, 7.4369, 7.4366, 7.4354, 7.436, 7.4357, 7.4362, 7.4368, 7.4375, 7.4373, 7.4371, 7.4367, 7.4363, 7.4359, 7.4355, 7.4388, 7.4386, 7.4384, 7.439, 7.4386, 7.4401, 7.4408, 7.4414, 7.442, 7.4418, 7.4419, 7.4415, 7.4411, 7.44, 7.4398, 7.4399, 7.4395, 7.4392, 7.4398, 7.4394, 7.4385, 7.4381, 7.4377, 7.4374, 7.438, 7.4387, 7.4394, 7.439, 7.4387, 7.4385, 7.4383, 7.438, 7.4369, 7.4375, 7.4372, 7.4368, 7.4365, 7.4362, 7.4368, 7.4365, 7.4364, 7.437, 7.4376, 7.4373, 7.437, 7.4368, 7.4364, 7.4361, 7.4358, 7.4386, 7.4383, 7.4379, 7.4385, 7.4381, 7.4377, 7.4383, 7.4383, 7.4379, 7.4385, 7.4382, 7.4378, 7.4375, 7.4378, 7.4367, 7.4364, 7.4361, 7.4359, 7.4365, 7.4371, 7.4368, 7.4365, 7.4363, 7.4361, 7.4358, 7.4354, 7.436, 7.4357, 7.4354, 7.4352, 7.4349, 7.4357, 7.4354, 7.4351, 7.4348, 7.4346, 7.4344, 7.435, 7.4346, 7.4345, 7.4352, 7.4349, 7.4347, 7.4363, 7.4362, 7.4412, 7.4418, 7.4416, 7.4413, 7.4419, 7.4425, 7.4431, 7.4427, 7.4443, 7.4439, 7.4428, 7.4425, 7.4431, 7.4436, 7.4432, 7.4429, 7.4425, 7.4422, 7.4418, 7.4424, 7.442, 7.4423, 7.4419, 7.4416, 7.4413, 7.4409, 7.4398, 7.4395, 7.4391, 7.4389, 7.4395, 7.4391, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4372, 7.4369, 7.4375, 7.4381, 7.4387, 7.4403, 7.4418, 7.4417, 7.4414, 7.4411, 7.4408, 7.4406, 7.4403, 7.44, 7.4396, 7.4405, 7.4403, 7.44, 7.4398, 7.4395, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4387, 7.4394, 7.439, 7.4387, 7.4393, 7.4399, 7.4405, 7.4401, 7.4399, 7.4395, 7.4391, 7.4393, 7.4407, 7.4403, 7.4402, 7.44, 7.4397, 7.4396, 7.4401, 7.44, 7.4406, 7.4402, 7.4399, 7.4399, 7.4409, 7.4405, 7.4401, 7.4399, 7.4395, 7.4426, 7.4422, 7.4424, 7.4423, 7.4429, 7.4426, 7.4431, 7.4435, 7.4433, 7.4429, 7.4426, 7.4422, 7.4418, 7.4415, 7.4412, 7.441, 7.4415, 7.4412, 7.441, 7.4409, 7.4408, 7.4414, 7.442, 7.4416, 7.4413, 7.4409, 7.4407, 7.4404, 7.4401, 7.4398, 7.4395, 7.4392, 7.4407, 7.4406, 7.4412, 7.4418, 7.4416, 7.4414, 7.4411, 7.4416, 7.4413, 7.441, 7.4407, 7.4404, 7.4401, 7.44, 7.4397, 7.4394, 7.44, 7.4397, 7.4397, 7.4405, 7.4402, 7.4399, 7.4405, 7.4402, 7.44, 7.4406, 7.4403, 7.44, 7.4405, 7.4402, 7.4408, 7.4414, 7.4413, 7.441, 7.4408, 7.4414, 7.4411, 7.4416, 7.4412, 7.4409, 7.4406, 7.4404, 7.441, 7.441, 7.4416, 7.4452, 7.4448, 7.4454, 7.4452, 7.4449, 7.4446, 7.4465, 7.4462, 7.4459, 7.4465, 7.4471, 7.4468, 7.4465, 7.4462, 7.446, 7.4457, 7.4463, 7.447, 7.4474, 7.4473, 7.447, 7.4466, 7.4462, 7.4459, 7.4457, 7.4453, 7.4453, 7.445, 7.4448, 7.4454, 7.4451, 7.4448, 7.4444, 7.4441, 7.4439, 7.4445, 7.4442, 7.4441, 7.4438, 7.4444, 7.4442, 7.444, 7.4437, 7.4444, 7.4443, 7.4441, 7.4457, 7.4457, 7.4463, 7.4469, 7.4471, 7.4471, 7.447, 7.447, 7.4469, 7.4468, 7.4465, 7.4462, 7.4468, 7.4467, 7.4464, 7.4463, 7.4469, 7.4476, 7.4473, 7.4471, 7.4469, 7.4467, 7.4466, 7.4465, 7.4464, 7.4461, 7.4461, 7.4468, 7.4468, 7.4468, 7.4475, 7.4475, 7.4481, 7.4478, 7.4478, 7.4475, 7.4475, 7.4476, 7.4476, 7.4473, 7.447, 7.4467, 7.4466, 7.4463, 7.4461, 7.4462, 7.4478, 7.4477, 7.4474, 7.4471, 7.4478, 7.4476, 7.4483, 7.4472, 7.4472, 7.4469, 7.4475, 7.4472, 7.4478, 7.4475], '192.168.122.112': [5.4374, 5.6017, 5.5869, 5.5019, 5.5944, 5.6154, 5.7422, 5.7489, 6.3936, 6.3733, 6.3329, 6.3161, 6.3314, 6.2822, 6.2252, 6.2252, 6.237, 6.2496, 6.4751, 6.4505, 6.6715, 6.6209, 6.5924, 6.5475, 6.7619, 6.761, 6.717, 6.8626, 6.83, 6.7829, 6.7566, 6.891, 6.8432, 6.8105, 6.7956, 6.9084, 6.8882, 6.8519, 6.8153, 6.7788, 7.1727, 7.4555, 7.4147, 7.3723, 7.3271, 7.4084, 7.482, 7.4378, 7.3971, 7.3547, 7.3158, 7.2956, 7.2586, 7.2379, 7.3075, 7.2785, 7.3428, 7.4198, 7.4766, 7.4463, 7.4149, 7.3906, 7.3612, 7.4171, 7.3868, 7.3541, 7.3246, 7.2286, 7.2002, 7.1848, 7.169, 7.2183, 7.1931, 7.1804, 7.0927, 7.0706, 7.3733, 7.3644, 7.3458, 7.3866, 7.3607, 7.3378, 7.3149, 7.2914, 7.3396, 7.3199, 7.2985, 7.3379, 7.3217, 7.3615, 7.3411, 7.3315, 7.314, 7.2936, 7.2283, 7.2083, 7.189, 7.1706, 7.157, 7.1395, 7.1212, 7.1602, 7.1437, 7.1314, 7.1183, 7.1527, 7.1882, 7.1784, 7.1622, 7.1491, 7.1806, 7.1693, 7.1549, 7.1424, 7.1309, 7.1277, 7.1132, 7.0982, 7.0849, 7.0761, 7.0657, 7.0588, 7.0495, 7.0424, 6.9899, 6.9785, 6.9694, 6.9579, 6.9475, 6.9425, 6.975, 6.99, 6.9825, 6.9699, 7.0021, 6.991, 6.9816, 6.9705, 6.9618, 6.9886, 6.9799, 6.9684, 6.9654, 6.9562, 6.984, 6.9782, 6.9758, 6.9673, 6.9563, 6.9573, 6.9515, 6.9547, 6.9463, 7.0111, 7.033, 7.0239, 7.0819, 7.0705, 7.0593, 7.0824, 7.0745, 7.0636, 7.0535, 7.0468, 7.0378, 7.027, 7.0494, 7.0728, 7.0636, 7.0874, 7.0801, 7.1035, 7.1255, 7.1154, 7.1052, 7.1266, 7.1209, 7.145, 7.1356, 7.1286, 7.1195, 7.1103, 7.1014, 7.0958, 7.0859, 7.0796, 7.073, 7.0661, 7.0892, 7.0822, 7.1041, 7.0981, 7.0966, 7.0872, 7.0833, 7.1043, 7.2041, 7.1965, 7.1868, 7.1785, 7.1707, 7.1608, 7.1563, 7.1816, 7.1744, 7.1686, 7.1605, 7.1536, 7.1465, 7.141, 7.1583, 7.176, 7.1719, 7.166, 7.1603, 7.1515, 7.1434, 7.1362, 7.1428, 7.1597, 7.2515, 7.3986, 7.3893, 7.3832, 7.4478, 7.4632, 7.454, 7.4464, 7.4377, 7.4314, 7.4262, 7.4444, 7.4359, 7.4273, 7.4189, 7.4139, 7.428, 7.4192, 7.4119, 7.4288, 7.4232, 7.4175, 7.41, 7.4026, 7.3968, 7.3908, 7.3842, 7.3975, 7.4097, 7.4034, 7.4576, 7.4716, 7.4857, 7.4996, 7.5967, 7.6107, 7.6022, 7.6155, 7.6092, 7.6008, 7.613, 7.6059, 7.5992, 7.5723, 7.5644, 7.5575, 7.5722, 7.5655, 7.5798, 7.5726, 7.5847, 7.5985, 7.6123, 7.6072, 7.6013, 7.5929, 7.5846, 7.5784, 7.5703, 7.5626, 7.5742, 7.5855, 7.5798, 7.5724, 7.6023, 7.5995, 7.5935, 7.5879, 7.5995, 7.5923, 7.5849, 7.5962, 7.5912, 7.5848, 7.577, 7.5714, 7.5654, 7.5836, 7.5774, 7.5703, 7.5656, 7.5604, 7.5531, 7.5492, 7.544, 7.5544, 7.5649, 7.5593, 7.5692, 7.5787, 7.5718, 7.565, 7.5582, 7.5528, 7.5457, 7.5388, 7.5521, 7.5335, 7.5441, 7.5373, 7.5348, 7.5298, 7.5243, 7.5186, 7.4971, 7.4904, 7.484, 7.4935, 7.4873, 7.4811, 7.4759, 7.471, 7.4816, 7.4756, 7.47, 7.4664, 7.4609, 7.4563, 7.4512, 7.4447, 7.4403, 7.4359, 7.4302, 7.4271, 7.4212, 7.4307, 7.4256, 7.4212, 7.4175, 7.4136, 7.4078, 7.403, 7.3989, 7.4786, 7.4882, 7.4829, 7.4926, 7.5129, 7.5066, 7.5004, 7.494, 7.4893, 7.4847, 7.4804, 7.4804, 7.4892, 7.498, 7.4921, 7.4864, 7.4804, 7.4802, 7.4896, 7.4983, 7.4932, 7.4898, 7.4989, 7.4934, 7.492, 7.4881, 7.4855, 7.5247, 7.5206, 7.5028, 7.5119, 7.5242, 7.52, 7.5155, 7.5111, 7.493, 7.4887, 7.4844, 7.48, 7.4767, 7.4715, 7.468, 7.4637, 7.4471, 7.4646, 7.4726, 7.4822, 7.4768, 7.4714, 7.48, 7.4745, 7.4707, 7.4669, 7.4748, 7.4718, 7.4678, 7.4627, 7.4579, 7.4526, 7.4483, 7.4431, 7.4519, 7.4469, 7.4437, 7.452, 7.4529, 7.4482, 7.4446, 7.4425, 7.4465, 7.4427, 7.4386, 7.4465, 7.4421, 7.4392, 7.4345, 7.4302, 7.4267, 7.4239, 7.4212, 7.4169, 7.4259, 7.4345, 7.4391, 7.4475, 7.4426, 7.4281, 7.4253, 7.4224, 7.4179, 7.4376, 7.4331, 7.4407, 7.4365, 7.4734, 7.4689, 7.4655, 7.4634, 7.4597, 7.4558, 7.4626, 7.4592, 7.4473, 7.4426, 7.4389, 7.4358, 7.4316, 7.427, 7.4223, 7.4189, 7.4258, 7.4212, 7.4396, 7.436, 7.4541, 7.4529, 7.4978, 7.4986, 7.4949, 7.4908, 7.4874, 7.4838, 7.4806, 7.4667, 7.4739, 7.4707, 7.4719, 7.4794, 7.4755, 7.4724, 7.469, 7.4574, 7.4547, 7.451, 7.4467, 7.4423, 7.4487, 7.4445, 7.4424, 7.4412, 7.4378, 7.4338, 7.4295, 7.4255, 7.4219, 7.4342, 7.4412, 7.4642, 7.4731, 7.4794, 7.4755, 7.4712, 7.4679, 7.4748, 7.4879, 7.4843, 7.4808, 7.4765, 7.4737, 7.4701, 7.4676, 7.4738, 7.4708, 7.4668, 7.4744, 7.4708, 7.4715, 7.4684, 7.4645, 7.4609, 7.4676, 7.4685, 7.4758, 7.473, 7.4703, 7.483, 7.4878, 7.4949, 7.493, 7.4897, 7.4857, 7.4834, 7.4796, 7.4672, 7.4832, 7.4791, 7.4757, 7.4839, 7.4825, 7.4785, 7.4761, 7.4728, 7.4797, 7.4764, 7.473, 7.4693, 7.4654, 7.4715, 7.4683, 7.4643, 7.463, 7.4592, 7.4557, 7.461, 7.4573, 7.4547, 7.463, 7.4595, 7.4576, 7.454, 7.4503, 7.4558, 7.4531, 7.4502, 7.4466, 7.4464, 7.4429, 7.4399, 7.446, 7.4521, 7.4483, 7.4537, 7.4506, 7.4473, 7.4435, 7.4406, 7.4291, 7.4352, 7.441, 7.4383, 7.4347, 7.4325, 7.4298, 7.4307, 7.437, 7.4335, 7.438, 7.4352, 7.4323, 7.4291, 7.4353, 7.4411, 7.4392, 7.4592, 7.4741, 7.4625, 7.4769, 7.4735, 7.4705, 7.4769, 7.4737, 7.4706, 7.5045, 7.5109, 7.5301, 7.5273, 7.5251, 7.5232, 7.5196, 7.51, 7.5169, 7.5138, 7.5109, 7.5085, 7.5067, 7.5037, 7.5004, 7.4983, 7.4962, 7.4932, 7.49, 7.4864, 7.4929, 7.4902, 7.5047, 7.5021, 7.5002, 7.4972, 7.4961, 7.4927, 7.498, 7.5036, 7.5007, 7.4974, 7.4957, 7.4928, 7.49, 7.4867, 7.4918, 7.5202, 7.5172, 7.5141, 7.5148, 7.5248, 7.5215, 7.5268, 7.5232, 7.5278, 7.5244, 7.5213, 7.5179, 7.5145, 7.5113, 7.516, 7.5127, 7.5342, 7.534, 7.54, 7.5378, 7.5345, 7.5322, 7.5311, 7.5287, 7.5288, 7.5261, 7.5336, 7.5312, 7.529, 7.5263, 7.5321, 7.5288, 7.5269, 7.5235, 7.5206, 7.5176, 7.5145, 7.5121, 7.5166, 7.5213, 7.5218, 7.5269, 7.5237, 7.5288, 7.5259, 7.523, 7.5202, 7.5172, 7.5217, 7.5186, 7.5231, 7.5259, 7.5307, 7.5279, 7.5262, 7.5233, 7.5201, 7.5184, 7.5155, 7.5125, 7.5098, 7.507, 7.5054, 7.5106, 7.5076, 7.5052, 7.5096, 7.4997, 7.4972, 7.4949, 7.4919, 7.4901, 7.4871, 7.4854, 7.4829, 7.4918, 7.4966, 7.4935, 7.4908, 7.4878, 7.4853, 7.4833, 7.4807, 7.478, 7.4754, 7.4733, 7.4703, 7.4673, 7.465, 7.4634, 7.4606, 7.4576, 7.4561, 7.4567, 7.4648, 7.4718, 7.4765, 7.4814, 7.4788, 7.4762, 7.4811, 7.4796, 7.4769, 7.4752, 7.4729, 7.5075, 7.5191, 7.5263, 7.5251, 7.5221, 7.5193, 7.5163, 7.5149, 7.5124, 7.5034, 7.5006, 7.4978, 7.495, 7.4928, 7.4899, 7.4869, 7.4845, 7.4893, 7.4937, 7.4946, 7.4917, 7.4964, 7.494, 7.4914, 7.4899, 7.487, 7.485, 7.4821, 7.4794, 7.4774, 7.4756, 7.4794, 7.4768, 7.4742, 7.4745, 7.4718, 7.469, 7.4667, 7.4641, 7.4624, 7.4601, 7.4643, 7.475, 7.4724, 7.4826, 7.4801, 7.4775, 7.475, 7.4737, 7.4783, 7.4756, 7.4801, 7.4776, 7.4755, 7.473, 7.4707, 7.4818, 7.4927, 7.5235, 7.5221, 7.5212, 7.5191, 7.5168, 7.5208, 7.5249, 7.5241, 7.5223, 7.5264, 7.5249, 7.5233, 7.5208, 7.5183, 7.516, 7.5137, 7.5115, 7.5087, 7.5068, 7.5045, 7.5026, 7.501, 7.4989, 7.4978, 7.4951, 7.4928, 7.4906, 7.4906, 7.4914, 7.4891, 7.4929, 7.4969, 7.5007, 7.5045, 7.5019, 7.4998, 7.4988, 7.4962, 7.4939, 7.4915, 7.4964, 7.4944, 7.4919, 7.4964, 7.4999, 7.4972, 7.4946, 7.4928, 7.4906, 7.4893, 7.4935, 7.4913, 7.4831, 7.4806, 7.4783, 7.4762, 7.4742, 7.4716, 7.469, 7.4672, 7.4649, 7.4631, 7.4606, 7.4603, 7.4589, 7.4567, 7.4625, 7.4602, 7.4578, 7.456, 7.4543, 7.4467, 7.4447, 7.4423, 7.4463, 7.4454, 7.4501, 7.4427, 7.4403, 7.4387, 7.4369, 7.4358, 7.4334, 7.4311, 7.4236, 7.4225, 7.4208, 7.4196, 7.4238, 7.4224, 7.4202, 7.418, 7.4157, 7.4134, 7.4174, 7.4154, 7.4136, 7.4117, 7.4106, 7.4087, 7.4076, 7.4052, 7.403, 7.4007, 7.3989, 7.3973, 7.4011, 7.3998, 7.3974, 7.4013, 7.3995, 7.3978, 7.3957, 7.3885, 7.3865, 7.3843, 7.383, 7.3807, 7.3791, 7.377, 7.3755, 7.3792, 7.378, 7.3761, 7.3777, 7.3757, 7.3736, 7.3747, 7.3781, 7.3769, 7.3748, 7.3726, 7.3707, 7.3697, 7.3676, 7.3658, 7.3638, 7.3772, 7.392, 7.39, 7.3934, 7.3913, 7.3955, 7.3935, 7.3931, 7.3871, 7.3909, 7.3888, 7.3868, 7.3847, 7.3838, 7.3818, 7.3799, 7.384, 7.3826, 7.3812, 7.3802, 7.39, 7.388, 7.3862, 7.384, 7.3822, 7.3805, 7.3795, 7.3773, 7.3754, 7.3905, 7.389, 7.3872, 7.3855, 7.3951, 7.396, 7.3906, 7.4011, 7.4104, 7.4114, 7.4096, 7.4089, 7.4074, 7.4117, 7.4153, 7.4133, 7.4079, 7.4149, 7.4186, 7.4171, 7.4217, 7.4203, 7.4244, 7.4278, 7.4257, 7.424, 7.4221, 7.42, 7.4189, 7.4171, 7.4339, 7.4319, 7.435, 7.4329, 7.4317, 7.4297, 7.4283, 7.4316, 7.4349, 7.4332, 7.4316, 7.4296, 7.4276, 7.4255, 7.4237, 7.422, 7.4211, 7.419, 7.417, 7.4153, 7.4138, 7.4119, 7.4153, 7.4133, 7.4114, 7.4096, 7.4079, 7.4111, 7.4094, 7.4032, 7.3964, 7.3952, 7.3933, 7.3912, 7.3895, 7.3881, 7.3865, 7.3898, 7.3931, 7.3917, 7.3897, 7.3879, 7.3859, 7.3894, 7.3875, 7.3861, 7.3797, 7.3779, 7.3814, 7.3795, 7.3776, 7.3756, 7.3742, 7.3795, 7.3777, 7.376, 7.379, 7.382, 7.38, 7.378, 7.376, 7.3747, 7.3729, 7.3667, 7.369, 7.3763, 7.3745, 7.3726, 7.3716, 7.3746, 7.3729, 7.3716, 7.3749, 7.373, 7.3713, 7.3693, 7.3674, 7.3657, 7.3642, 7.3585, 7.357, 7.3602, 7.3633, 7.362, 7.3607, 7.36, 7.3585, 7.3617, 7.3605, 7.3586, 7.3567, 7.3562, 7.3543, 7.3525, 7.3507, 7.3498, 7.348, 7.3462, 7.3446, 7.3433, 7.3421, 7.3404, 7.3393, 7.3422, 7.3406, 7.3439, 7.3385, 7.3368, 7.3309, 7.3296, 7.3295, 7.328, 7.3263, 7.3254, 7.3237, 7.3221, 7.3207, 7.3285, 7.3275, 7.3462, 7.3448, 7.3387, 7.3369, 7.3398, 7.3386, 7.3374, 7.3403, 7.3385, 7.3419, 7.3407, 7.3396, 7.3381, 7.3413, 7.34, 7.3389, 7.3377, 7.3405, 7.339, 7.3372, 7.3353, 7.3337, 7.337, 7.336, 7.3342, 7.3328, 7.341, 7.3393, 7.3377, 7.3363, 7.3365, 7.335, 7.3334, 7.3319, 7.3311, 7.33, 7.3241, 7.3225, 7.3211, 7.3194, 7.3178, 7.3161, 7.3103, 7.3098, 7.3085, 7.3069, 7.3052, 7.3086, 7.3073, 7.3057, 7.3042, 7.3032, 7.3016, 7.3044, 7.3074, 7.3057, 7.3084, 7.3069, 7.3064, 7.3092, 7.3168, 7.315, 7.3133, 7.3122, 7.3106, 7.3134, 7.3123, 7.3152, 7.3181, 7.3168, 7.3164, 7.3152, 7.314, 7.3124, 7.3109, 7.3136, 7.312, 7.315, 7.3209, 7.3193, 7.3175, 7.3159, 7.3146, 7.3131, 7.3075, 7.306, 7.3051, 7.3039, 7.3025, 7.297, 7.2993, 7.2986, 7.2969, 7.2914, 7.2903, 7.2928, 7.2913, 7.2898, 7.2925, 7.2909, 7.2939, 7.2922, 7.2941, 7.2938, 7.2924, 7.291, 7.2898, 7.2884, 7.2879, 7.2829, 7.282, 7.2851, 7.2835, 7.2819, 7.2826, 7.2813, 7.2798, 7.2787, 7.2772, 7.2759, 7.2755, 7.275, 7.2736, 7.2723, 7.271, 7.2699, 7.2685, 7.2673, 7.2702, 7.273, 7.2766, 7.2753, 7.2738, 7.2769, 7.2795, 7.2782, 7.2768, 7.2752, 7.2738, 7.2726, 7.2712, 7.2699, 7.2685, 7.267, 7.2655, 7.2737, 7.2764, 7.2752, 7.2782, 7.2768, 7.2798, 7.2787, 7.2773, 7.2763, 7.2751, 7.2738, 7.2724, 7.2708, 7.2692, 7.2678, 7.2671, 7.2657, 7.2648, 7.2645, 7.2791, 7.2775, 7.2761, 7.2788, 7.2774, 7.2728, 7.2714, 7.2699, 7.2686, 7.2671, 7.262, 7.2608, 7.2594, 7.2581, 7.2567, 7.2557, 7.2541, 7.2526, 7.2515, 7.2504, 7.2529, 7.2522, 7.2546, 7.2547, 7.2536, 7.2528, 7.2557, 7.2584, 7.2629, 7.2655, 7.2642, 7.263, 7.266, 7.265, 7.268, 7.2676, 7.2694, 7.2684, 7.2672, 7.2659, 7.2646, 7.2633, 7.2619, 7.2646, 7.263, 7.2618, 7.2643, 7.2629, 7.2615, 7.2606, 7.2649, 7.2674, 7.2721, 7.2707, 7.2694, 7.2684, 7.2692, 7.272, 7.2758, 7.2743, 7.2734, 7.272, 7.2713, 7.2779, 7.2802, 7.2956, 7.3023, 7.3052, 7.304, 7.3065, 7.3057, 7.3083, 7.3035, 7.3021, 7.3049, 7.3035, 7.3105, 7.31, 7.3093, 7.3122, 7.3147, 7.3133, 7.3121, 7.3125, 7.3111, 7.3136, 7.3163, 7.3149, 7.314, 7.3173, 7.3158, 7.3144, 7.3131, 7.3124, 7.3109, 7.3098, 7.3123, 7.3108, 7.3096, 7.3083, 7.3072, 7.3059, 7.3051, 7.3037, 7.306, 7.3051, 7.3036, 7.3023, 7.3009, 7.3, 7.2989, 7.2979, 7.2966, 7.2957, 7.2947, 7.2938, 7.2932, 7.2924, 7.2913, 7.2899, 7.2889, 7.2879, 7.2865, 7.2853, 7.2841, 7.283, 7.2817, 7.2803, 7.283, 7.2818, 7.2811, 7.2799, 7.2787, 7.2809, 7.2796, 7.2782, 7.2769, 7.2796, 7.2783, 7.2774, 7.2765, 7.2797, 7.2832, 7.2818, 7.2847, 7.2837, 7.2827, 7.2817, 7.2841, 7.2832, 7.2818, 7.2845, 7.2833, 7.2821, 7.2822, 7.2808, 7.2854, 7.2842, 7.2833, 7.2833, 7.2825, 7.2811, 7.2799, 7.2787, 7.2789, 7.2777, 7.2764, 7.2754, 7.2741, 7.2732, 7.2759, 7.2746, 7.2769, 7.2794, 7.2797, 7.2788, 7.2809, 7.2797, 7.2822, 7.281, 7.2798, 7.2786, 7.2778, 7.2767, 7.2758, 7.2749, 7.2739, 7.2763, 7.2752, 7.2747, 7.2736, 7.276, 7.2748, 7.2771, 7.2763, 7.275, 7.2736, 7.2751, 7.2748, 7.2738, 7.2729, 7.2754, 7.2743, 7.2733, 7.2726, 7.2766, 7.2753, 7.2744, 7.2807, 7.2793, 7.2821, 7.2858, 7.2855, 7.2844, 7.287, 7.2864, 7.2855, 7.2844, 7.2836, 7.2824, 7.2842, 7.2798, 7.279, 7.2782, 7.277, 7.2757, 7.2744, 7.2768, 7.2792, 7.278, 7.2775, 7.2763, 7.2793, 7.2818, 7.2806, 7.283, 7.2818, 7.2809, 7.2799, 7.2786, 7.281, 7.2834, 7.2861, 7.285, 7.2838, 7.2826, 7.2817, 7.2804, 7.2798, 7.2791, 7.2815, 7.2802, 7.2826, 7.2849, 7.2837, 7.2824, 7.2815, 7.2805, 7.2865, 7.2853, 7.2843, 7.2867, 7.2889, 7.2877, 7.2867, 7.2857, 7.2879, 7.2867, 7.2866, 7.2858, 7.2847, 7.2869, 7.286, 7.2905, 7.2974, 7.2968, 7.299, 7.3013, 7.3037, 7.3024, 7.3012, 7.3005, 7.2993, 7.2987, 7.2981, 7.3004, 7.2992, 7.298, 7.2973, 7.2996, 7.299, 7.2948, 7.2972, 7.299, 7.2981, 7.2968, 7.299, 7.2978, 7.3002, 7.2991, 7.3086, 7.3074, 7.3084, 7.3109, 7.3098, 7.3091, 7.308, 7.3102, 7.3111, 7.3098, 7.3086, 7.3109, 7.3098, 7.3121, 7.314, 7.316, 7.3147, 7.3135, 7.3094, 7.3103, 7.3091, 7.3081, 7.3069, 7.3091, 7.3115, 7.3108, 7.313, 7.3121, 7.311, 7.31, 7.3088, 7.3077, 7.3067, 7.3055, 7.3044, 7.3055, 7.3076, 7.3133, 7.3155, 7.3179, 7.3167, 7.3158, 7.318, 7.3239, 7.3227, 7.3248, 7.3293, 7.3292, 7.3313, 7.3301, 7.3295, 7.3285, 7.3276, 7.3266, 7.3288, 7.3308, 7.3328, 7.3318, 7.3309, 7.3299, 7.329, 7.328, 7.3269, 7.3259, 7.3249, 7.3279, 7.3267, 7.33, 7.3292, 7.3293, 7.3282, 7.3276, 7.3297, 7.3316, 7.3337, 7.3359, 7.3352, 7.3341, 7.3361, 7.3349, 7.3341, 7.333, 7.332, 7.331, 7.3304, 7.3296, 7.3284, 7.3274, 7.3295, 7.3284, 7.3306, 7.3296, 7.3286, 7.3275, 7.3263, 7.3255, 7.3278, 7.3268, 7.3258, 7.3252, 7.324, 7.3234, 7.3224, 7.3213, 7.3204, 7.3197, 7.3192, 7.3183, 7.3173, 7.3162, 7.3153, 7.3176, 7.3168, 7.3156, 7.3149, 7.3137, 7.3129, 7.3149, 7.3137, 7.3129, 7.3119, 7.314, 7.3129, 7.3125, 7.3115, 7.3108, 7.31, 7.3091, 7.3079, 7.3043, 7.3065, 7.3068, 7.3056, 7.305, 7.3039, 7.3034, 7.3025, 7.3016, 7.3008, 7.2969, 7.2958, 7.295, 7.2944, 7.294, 7.2932, 7.2952, 7.2948, 7.2938, 7.2932, 7.292, 7.2931, 7.2985, 7.3007, 7.3001, 7.2989, 7.2981, 7.3, 7.2991, 7.3012, 7.3001, 7.2989, 7.2984, 7.2975, 7.2966, 7.2955, 7.2948, 7.2937, 7.2929, 7.2926, 7.2918, 7.2909, 7.2901, 7.29, 7.2891, 7.2911, 7.2901, 7.289, 7.2884, 7.288, 7.2869, 7.2858, 7.2847, 7.2849, 7.2868, 7.2859, 7.2848, 7.2838, 7.2831, 7.282, 7.2818, 7.2807, 7.2816, 7.2807, 7.28, 7.2789, 7.2781, 7.28, 7.2789, 7.2781, 7.2773, 7.2792, 7.2785, 7.2782, 7.2773, 7.2768, 7.2786, 7.2784, 7.2804, 7.2794, 7.2784, 7.2785, 7.2781, 7.2801, 7.2794, 7.2784, 7.2821, 7.2841, 7.2833, 7.2852, 7.2851, 7.2869, 7.2918, 7.2882, 7.2873, 7.2891, 7.2883, 7.3015, 7.3004, 7.3022, 7.3015, 7.3005, 7.3023, 7.3018, 7.3014, 7.3006, 7.3003, 7.2992, 7.2985, 7.2975, 7.3014, 7.3005, 7.2995, 7.2987, 7.3006, 7.2995, 7.2991, 7.2981, 7.3009, 7.2999, 7.3019, 7.3012, 7.3005, 7.2996, 7.3036, 7.3027, 7.3018, 7.301, 7.3005, 7.2998, 7.2988, 7.3007, 7.2996, 7.2999, 7.3019, 7.3011, 7.3003, 7.2997, 7.3016, 7.3011, 7.3005, 7.2995, 7.2984, 7.3004, 7.2993, 7.2987, 7.2977, 7.2996, 7.3014, 7.3003, 7.2994, 7.2986, 7.2976, 7.2995, 7.3017, 7.2989, 7.2963, 7.2982, 7.3042, 7.3061, 7.3109, 7.3099, 7.3113, 7.3103, 7.3095, 7.3061, 7.3051, 7.3041, 7.3035, 7.3053, 7.3071, 7.3063, 7.3054, 7.3045, 7.3124, 7.3113, 7.3103, 7.3122, 7.3115, 7.3108, 7.3187, 7.3265, 7.323, 7.3247, 7.3239, 7.3258, 7.3248, 7.3266, 7.3284, 7.3274, 7.3264, 7.3258, 7.3276, 7.3305, 7.3296, 7.3316, 7.3347, 7.3338, 7.3328, 7.3322, 7.3316, 7.3339, 7.3305, 7.3351, 7.3343, 7.3333, 7.3358, 7.335, 7.3366, 7.3356, 7.3346, 7.3336, 7.3327, 7.332, 7.331, 7.3304, 7.3301, 7.3295, 7.3314, 7.3333, 7.3323, 7.334, 7.3335, 7.3329, 7.3346, 7.3365, 7.3384, 7.3403, 7.3395, 7.3413, 7.3403, 7.3393, 7.3383, 7.3378, 7.337, 7.3364, 7.3355, 7.3349, 7.3342, 7.3337, 7.3327, 7.3347, 7.334, 7.3331, 7.3347, 7.3337, 7.3329, 7.3352, 7.3343, 7.3339, 7.3335, 7.333, 7.3347, 7.3338, 7.3328, 7.3345, 7.3335, 7.3351, 7.3342, 7.3335, 7.3327, 7.3318, 7.3334, 7.3324, 7.3315, 7.3332, 7.3323, 7.3342, 7.3332, 7.3299, 7.3292, 7.331, 7.331, 7.3303, 7.3296, 7.3314, 7.3305, 7.3295, 7.3368, 7.3414, 7.3404, 7.3394, 7.3386, 7.3404, 7.342, 7.341, 7.34, 7.3417, 7.3409, 7.338, 7.3399, 7.3414, 7.3406, 7.3398, 7.3393, 7.3411, 7.3403, 7.3394, 7.3411, 7.3402, 7.3369, 7.3415, 7.3381, 7.3468, 7.3462, 7.3452, 7.347, 7.346, 7.3477, 7.3444, 7.3461, 7.3454, 7.3499, 7.3489, 7.3506, 7.3523, 7.3513, 7.3504, 7.3494, 7.3489, 7.3479, 7.3495, 7.3485, 7.3476, 7.3482, 7.3474, 7.3465, 7.3459, 7.3475, 7.3521, 7.3515, 7.3488, 7.3479, 7.3469, 7.3513, 7.3508, 7.3655, 7.3645, 7.366, 7.3657, 7.3649, 7.3644, 7.3636, 7.3666, 7.3668, 7.3725, 7.3725, 7.3716, 7.3707, 7.3699, 7.3718, 7.3709, 7.3738, 7.3733, 7.375, 7.374, 7.3732, 7.3724, 7.3714, 7.3705, 7.3722, 7.3739, 7.3734, 7.3734, 7.3751, 7.3772, 7.3769, 7.3762, 7.3754, 7.375, 7.3759, 7.3758, 7.3753, 7.3745, 7.3737, 7.3729, 7.3719, 7.3709, 7.3735, 7.3702, 7.3693, 7.371, 7.3727, 7.3741, 7.376, 7.3751, 7.3741, 7.3709, 7.37, 7.3691, 7.3684, 7.3701, 7.3691, 7.3708, 7.3698, 7.3739, 7.373, 7.3721, 7.3715, 7.3707, 7.37, 7.3708, 7.3725, 7.3719, 7.371, 7.3706, 7.3696, 7.3688, 7.3681, 7.3675, 7.3667, 7.366, 7.3651, 7.3668, 7.3659, 7.3652, 7.3642, 7.3638, 7.3607, 7.3606, 7.3622, 7.3613, 7.3606, 7.3623, 7.364, 7.3656, 7.3672, 7.3663, 7.3679, 7.3669, 7.3661, 7.3654, 7.3671, 7.3662, 7.3654, 7.3644, 7.3637, 7.3628, 7.362, 7.3638, 7.3628, 7.3669, 7.3758, 7.3752, 7.3769, 7.378, 7.3775, 7.377, 7.3763, 7.378, 7.3774, 7.3767, 7.3762, 7.3752, 7.3745, 7.3736, 7.3726, 7.3718, 7.371, 7.3702, 7.3717, 7.371, 7.3726, 7.3745, 7.3761, 7.3754, 7.3773, 7.3789, 7.3781, 7.3751, 7.3743, 7.3735, 7.3728, 7.3721, 7.3712, 7.3702, 7.3699, 7.3692, 7.3711, 7.3726, 7.3717, 7.3708, 7.3724, 7.374, 7.3708, 7.37, 7.3691, 7.3766, 7.376, 7.3751, 7.3766, 7.3758, 7.375, 7.3747, 7.3741, 7.3738, 7.3732, 7.3725, 7.3741, 7.3733, 7.3725, 7.3718, 7.3711, 7.3702, 7.3692, 7.3683, 7.3675, 7.3676, 7.3667, 7.3686, 7.3705, 7.368, 7.3684, 7.3678, 7.3673, 7.37, 7.3693, 7.3684, 7.3675, 7.369, 7.368, 7.3674, 7.3729, 7.372, 7.3736, 7.373, 7.3745, 7.3752, 7.3744, 7.3735, 7.3728, 7.3722, 7.3714, 7.3707, 7.3698, 7.3691, 7.3684, 7.3675, 7.369, 7.3684, 7.3676, 7.3668, 7.3661, 7.3652, 7.3666, 7.3657, 7.3652, 7.3729, 7.3719, 7.371, 7.3701, 7.3694, 7.3685, 7.3676, 7.3668, 7.3664, 7.3657, 7.3672, 7.3666, 7.368, 7.3671, 7.3663, 7.3654, 7.3646, 7.3638, 7.3629, 7.3622, 7.3614, 7.3629, 7.36, 7.3592, 7.3584, 7.3608, 7.3637, 7.365, 7.3641, 7.3633, 7.3648, 7.3643, 7.3661, 7.3676, 7.3667, 7.3663, 7.3656, 7.3648, 7.3639, 7.3632, 7.3623, 7.3616, 7.3615, 7.3607, 7.3598, 7.3591, 7.3606, 7.3599, 7.3593, 7.359, 7.3583, 7.3581, 7.3596, 7.3615, 7.3613, 7.3606, 7.3702, 7.377, 7.3768, 7.376, 7.3752, 7.3747, 7.3738, 7.3732, 7.3723, 7.3715, 7.3708, 7.3724, 7.3719, 7.3734, 7.3727, 7.372, 7.3713, 7.3727, 7.3719, 7.3714, 7.3709, 7.3704, 7.3721, 7.3714, 7.3732, 7.3725, 7.3718, 7.3712, 7.3726, 7.372, 7.3717, 7.3709, 7.3701, 7.372, 7.3735, 7.3727, 7.3722, 7.3715, 7.3707, 7.3679, 7.3672, 7.3666, 7.3667, 7.3661, 7.366, 7.3655, 7.3647, 7.3756, 7.3748, 7.3742, 7.3758, 7.375, 7.3741, 7.3733, 7.3748, 7.3764, 7.3768, 7.376, 7.3815, 7.3829, 7.3841, 7.3848, 7.384, 7.3878, 7.3879, 7.3872, 7.3866, 7.386, 7.3878, 7.3872, 7.3849, 7.3843, 7.3835, 7.3837, 7.3852, 7.3844, 7.3839, 7.384, 7.3841, 7.3843, 7.3834, 7.3852, 7.386, 7.3853, 7.3867, 7.3881, 7.3875, 7.3889, 7.3881, 7.3878, 7.387, 7.3863, 7.3863, 7.3879, 7.3872, 7.3863, 7.3864, 7.3857, 7.3835, 7.3855, 7.3848, 7.3841, 7.3834, 7.385, 7.3953, 7.3945, 7.3974, 7.3966, 7.3983, 7.4022, 7.4016, 7.4008, 7.4001, 7.4002, 7.4008, 7.4, 7.3996, 7.3988, 7.398, 7.4006, 7.3997, 7.3989, 7.3984, 7.3975, 7.3967, 7.3959, 7.3931, 7.3925, 7.3919, 7.3933, 7.3946, 7.3942, 7.3936, 7.3931, 7.3927, 7.3948, 7.394, 7.3933, 7.3926, 7.397, 7.3963, 7.3968, 7.4051, 7.4046, 7.4038, 7.403, 7.4025, 7.4092, 7.4085, 7.4077, 7.4071, 7.4064, 7.4044, 7.4027, 7.4019, 7.4047, 7.4041, 7.4032, 7.4027, 7.4021, 7.4035, 7.4042, 7.4063, 7.4079, 7.4071, 7.4069, 7.4063, 7.4065, 7.4058, 7.4053, 7.4055, 7.4047, 7.402, 7.4013, 7.4027, 7.4029, 7.4052, 7.4048, 7.4084, 7.4077, 7.4111, 7.4126, 7.4119, 7.4093, 7.4085, 7.408, 7.4072, 7.4064, 7.4056, 7.4051, 7.4043, 7.4057, 7.4049, 7.4065, 7.4079, 7.4093, 7.4087, 7.4079, 7.4074, 7.4066, 7.408, 7.4074, 7.4066, 7.4058, 7.4162, 7.4176, 7.4173, 7.4187, 7.4178, 7.4172, 7.4167, 7.4159, 7.4174, 7.423, 7.4222, 7.4217, 7.4264, 7.4263, 7.4275, 7.4267, 7.4271, 7.4264, 7.4297, 7.4292, 7.4284, 7.4299, 7.4313, 7.433, 7.4321, 7.4315, 7.4307, 7.4298, 7.4312, 7.4325, 7.4337, 7.4372, 7.4348, 7.4341, 7.4314, 7.4306, 7.4318, 7.4309, 7.4305, 7.4298, 7.4291, 7.4287, 7.428, 7.4274, 7.4293, 7.4286, 7.4299, 7.4294, 7.4286, 7.428, 7.4274, 7.4266, 7.4288, 7.428, 7.4255, 7.4247, 7.426, 7.4251, 7.4264, 7.4276, 7.4288, 7.4284, 7.4301, 7.4306, 7.43, 7.4293, 7.4288, 7.4281, 7.4273, 7.4269, 7.426, 7.4252, 7.4265, 7.4278, 7.4254, 7.4268, 7.4281, 7.4275, 7.4267, 7.4264, 7.4258, 7.4273, 7.4266, 7.4279, 7.4275, 7.4267, 7.426, 7.4256, 7.4248, 7.424, 7.4232, 7.4245, 7.4242, 7.4256, 7.4248, 7.4261, 7.4257, 7.4252, 7.4227, 7.4222, 7.4196, 7.4204, 7.4196, 7.4188, 7.4181, 7.4155, 7.4148, 7.4143, 7.4139, 7.4132, 7.4125, 7.4118, 7.4112, 7.4124, 7.4118, 7.413, 7.4122, 7.4136, 7.4129, 7.4121, 7.4135, 7.4127, 7.4121, 7.4115, 7.4108, 7.4103, 7.4097, 7.4089, 7.4063, 7.4058, 7.4071, 7.4045, 7.4042, 7.4036, 7.4028, 7.4023, 7.4015, 7.4009, 7.4023, 7.4035, 7.4028, 7.4042, 7.4037, 7.4052, 7.4066, 7.4078, 7.4071, 7.4064, 7.4079, 7.4072, 7.4064, 7.4039, 7.4014, 7.4007, 7.3999, 7.3992, 7.3984, 7.3996, 7.399, 7.3982, 7.4002, 7.3995, 7.4006, 7.4018, 7.403, 7.4024, 7.4037, 7.403, 7.4022, 7.4014, 7.4008, 7.4001, 7.4014, 7.4028, 7.4041, 7.4054, 7.4046, 7.4039, 7.4034, 7.4031, 7.4035, 7.403, 7.4042, 7.4037, 7.4049, 7.4041, 7.4055, 7.4068, 7.4082, 7.4078, 7.4071, 7.4063, 7.4096, 7.4089, 7.4081, 7.4074, 7.4086, 7.4079, 7.4055, 7.4048, 7.4042, 7.4035, 7.4027, 7.4053, 7.4047, 7.404, 7.4052, 7.4044, 7.4039, 7.4037, 7.4032, 7.4045, 7.4058, 7.406, 7.4055, 7.4048, 7.4061, 7.4036, 7.4028, 7.4023, 7.4018, 7.4013, 7.4025, 7.4019, 7.4041, 7.4049, 7.4044, 7.4038, 7.4051, 7.4045, 7.4037, 7.4051, 7.4047, 7.4041, 7.4016, 7.4008, 7.4002, 7.4015, 7.401, 7.4003, 7.3996, 7.3992, 7.3985, 7.3979, 7.3973, 7.3967, 7.3943, 7.3941, 7.3934, 7.3929, 7.3925, 7.3918, 7.3931, 7.3923, 7.3916, 7.3929, 7.3922, 7.3919, 7.3913, 7.3905, 7.3918, 7.3911, 7.3904, 7.3917, 7.391, 7.3906, 7.3905, 7.3899, 7.3892, 7.3889, 7.3871, 7.3885, 7.3878, 7.3874, 7.3867, 7.386, 7.3854, 7.3848, 7.3843, 7.3819, 7.3813, 7.3825, 7.3818, 7.3811, 7.3824, 7.3821, 7.3834, 7.3829, 7.3824, 7.3821, 7.3814, 7.3809, 7.3837, 7.383, 7.3825, 7.3897, 7.389, 7.3883, 7.3876, 7.3873, 7.3866, 7.3859, 7.3851, 7.3846, 7.3839, 7.3873, 7.3868, 7.3861, 7.3873, 7.3865, 7.388, 7.3893, 7.3886, 7.388, 7.3873, 7.3887, 7.3879, 7.3891, 7.3955, 7.3948, 7.396, 7.3954, 7.3948, 7.3961, 7.3953, 7.3946, 7.3938, 7.3931, 7.3925, 7.3919, 7.3932, 7.3926, 7.3937, 7.3937, 7.395, 7.3944, 7.3958, 7.3972, 7.3986, 7.398, 7.3974, 7.3968, 7.398, 7.3993, 7.3991, 7.3987, 7.398, 7.3974, 7.3967, 7.397, 7.3963, 7.3957, 7.3953, 7.3947, 7.3942, 7.3954, 7.3948, 7.3941, 7.3934, 7.3946, 7.3958, 7.3952, 7.3928, 7.3923, 7.3916, 7.3911, 7.3904, 7.3917, 7.3912, 7.3907, 7.39, 7.3893, 7.3906, 7.3918, 7.393, 7.3923, 7.3917, 7.391, 7.3922, 7.3917, 7.3911, 7.3905, 7.3898, 7.3893, 7.3886, 7.3879, 7.3856, 7.3871, 7.3864, 7.3859, 7.3837, 7.3835, 7.383, 7.3807, 7.3804, 7.3798, 7.3791, 7.3768, 7.3761, 7.3775, 7.3769, 7.3763, 7.3774, 7.3769, 7.3762, 7.3757, 7.375, 7.3761, 7.3772, 7.3766, 7.3759, 7.3752, 7.3764, 7.376, 7.3771, 7.3749, 7.376, 7.3771, 7.3782, 7.3781, 7.3776, 7.3775, 7.3787, 7.3889, 7.3882, 7.3876, 7.3887, 7.3882, 7.3893, 7.3889, 7.3883, 7.3877, 7.3889, 7.3886, 7.3898, 7.3895, 7.3889, 7.389, 7.3901, 7.3894, 7.3887, 7.388, 7.389, 7.3884, 7.3879, 7.3872, 7.3884, 7.388, 7.3878, 7.3873, 7.3912, 7.3905, 7.3913, 7.3933, 7.3953, 7.3946, 7.3947, 7.3943, 7.3955, 7.395, 7.3944, 7.3937, 7.3933, 7.393, 7.3923, 7.3916, 7.391, 7.3905, 7.3899, 7.3892, 7.3886, 7.3898, 7.3892, 7.3888, 7.3866, 7.3861, 7.3857, 7.3851, 7.3844, 7.3837, 7.3848, 7.3842, 7.3836, 7.3834, 7.3831, 7.3824, 7.3835, 7.3846, 7.3828, 7.384, 7.3835, 7.3828, 7.384, 7.3834, 7.3827, 7.3823, 7.3817, 7.3813, 7.3808, 7.382, 7.3814, 7.3823, 7.3817, 7.3811, 7.3827, 7.3821, 7.3814, 7.3826, 7.382, 7.3813, 7.3809, 7.3806, 7.3817, 7.3795, 7.3807, 7.3821, 7.3835, 7.3828, 7.3866, 7.3859, 7.3852, 7.3849, 7.3861, 7.3856, 7.3866, 7.386, 7.3853, 7.3846, 7.3858, 7.3888, 7.3899, 7.3893, 7.3887, 7.3897, 7.389, 7.3885, 7.391, 7.3904, 7.39, 7.3895, 7.389, 7.3885, 7.3878, 7.3928, 7.3922, 7.3916, 7.3909, 7.3906, 7.39, 7.3894, 7.3888, 7.3881, 7.3875, 7.3871, 7.3864, 7.3857, 7.3855, 7.3853, 7.3846, 7.3843, 7.3839, 7.3851, 7.3844, 7.3838, 7.3831, 7.3824, 7.3834, 7.383, 7.3842, 7.3852, 7.3847, 7.3826, 7.3837, 7.3831, 7.3826, 7.3836, 7.3846, 7.384, 7.3839, 7.3834, 7.3829, 7.3807, 7.3803, 7.3797, 7.3808, 7.3819, 7.383, 7.3824, 7.3818, 7.3812, 7.381, 7.3808, 7.3819, 7.3813, 7.3809, 7.3804, 7.3816, 7.381, 7.3804, 7.3783, 7.3777, 7.3756, 7.3751, 7.376, 7.3755, 7.3749, 7.3742, 7.3739, 7.3733, 7.3745, 7.3739, 7.3733, 7.3717, 7.3713, 7.373, 7.373, 7.3734, 7.3727, 7.3739, 7.3733, 7.373, 7.3725, 7.3738, 7.3732, 7.3726, 7.374, 7.3735, 7.3729, 7.3707, 7.37, 7.3694, 7.3691, 7.3685, 7.3679, 7.3673, 7.3667, 7.366, 7.3657, 7.365, 7.3679, 7.3673, 7.3668, 7.3661, 7.3656, 7.3651, 7.3646, 7.3624, 7.3635, 7.3631, 7.363, 7.3625, 7.3635, 7.363, 7.3641, 7.3636, 7.363, 7.3624, 7.3634, 7.3645, 7.364, 7.3634, 7.3628, 7.3622, 7.3617, 7.3613, 7.3607, 7.3601, 7.3644, 7.3655, 7.3649, 7.3643, 7.3637, 7.3631, 7.3643, 7.3638, 7.3649, 7.3643, 7.3643, 7.3654, 7.365, 7.3712, 7.3724, 7.3719, 7.376, 7.3753, 7.3764, 7.3776, 7.377, 7.3783, 7.3837, 7.3837, 7.3832, 7.3829, 7.3845, 7.3873, 7.3868, 7.3864, 7.3858, 7.3837, 7.3849, 7.3846, 7.3857, 7.3868, 7.3861, 7.3858, 7.3852, 7.3845, 7.3842, 7.3821, 7.38, 7.3812, 7.381, 7.3804, 7.38, 7.3811, 7.3824, 7.3819, 7.3814, 7.3825, 7.382, 7.3815, 7.3809, 7.3848, 7.3851, 7.3849, 7.3844, 7.3856, 7.3868, 7.3864, 7.3859, 7.387, 7.3916, 7.391, 7.3906, 7.3905, 7.3916, 7.3911, 7.3905, 7.3902, 7.3897, 7.3908, 7.3903, 7.3883, 7.3878, 7.3873, 7.3883, 7.3877, 7.3871, 7.3864, 7.3858, 7.3854, 7.3848, 7.3845, 7.384, 7.3835, 7.386, 7.3854, 7.3834, 7.3847, 7.3841, 7.3852, 7.3862, 7.3858, 7.3868, 7.3862, 7.3856, 7.385, 7.3843, 7.384, 7.3836, 7.3836, 7.383, 7.3826, 7.3837, 7.3847, 7.3843, 7.3853, 7.385, 7.3844, 7.3854, 7.3848, 7.3842, 7.3852, 7.3863, 7.3873, 7.3884, 7.3894, 7.3888, 7.3898, 7.3896, 7.3891, 7.3885, 7.3879, 7.3873, 7.3867, 7.3861, 7.3873, 7.3868, 7.3862, 7.3856, 7.3866, 7.386, 7.3855, 7.385, 7.3861, 7.3855, 7.3849, 7.3844, 7.3838, 7.3849, 7.3843, 7.3853, 7.3847, 7.3843, 7.3839, 7.3835, 7.3845, 7.384, 7.3851, 7.3845, 7.3854, 7.3848, 7.3857, 7.3857, 7.3868, 7.3863, 7.3874, 7.3868, 7.3866, 7.3862, 7.3874, 7.3868, 7.3864, 7.3859, 7.3853, 7.3848, 7.3859, 7.3871, 7.3881, 7.389, 7.3884, 7.388, 7.3874, 7.3868, 7.3878, 7.3888, 7.3885, 7.3896, 7.389, 7.39, 7.3894, 7.3873, 7.3868, 7.3862, 7.3872, 7.3866, 7.3846, 7.3842, 7.3851, 7.3847, 7.3859, 7.3853, 7.3847, 7.3841, 7.3836, 7.3862, 7.3857, 7.3867, 7.3862, 7.3859, 7.3855, 7.3865, 7.3876, 7.3871, 7.3867, 7.3861, 7.3855, 7.3851, 7.3845, 7.384, 7.3835, 7.3839, 7.3849, 7.3843, 7.3853, 7.3847, 7.3841, 7.3836, 7.3831, 7.3825, 7.382, 7.3818, 7.3812, 7.3807, 7.3805, 7.3799, 7.3809, 7.379, 7.3786, 7.3798, 7.3792, 7.3786, 7.3797, 7.3791, 7.3785, 7.3779, 7.3773, 7.3801, 7.3795, 7.3789, 7.3784, 7.3779, 7.3774, 7.3768, 7.3778, 7.3772, 7.3767, 7.3762, 7.3756, 7.3751, 7.376, 7.3754, 7.3765, 7.3782, 7.3781, 7.3775, 7.3769, 7.3764, 7.3759, 7.3757, 7.3751, 7.3745, 7.3755, 7.3753, 7.375, 7.3732, 7.3726, 7.372, 7.3739, 7.3734, 7.3745, 7.3739, 7.3733, 7.3743, 7.3724, 7.3719, 7.3715, 7.3696, 7.3691, 7.3691, 7.3687, 7.3684, 7.3708, 7.3703, 7.3714, 7.3709, 7.3704, 7.3715, 7.3726, 7.3721, 7.373, 7.3725, 7.372, 7.3715, 7.371, 7.3705, 7.3715, 7.3709, 7.3722, 7.3718, 7.3743, 7.3753, 7.3749, 7.3744, 7.3753, 7.3747, 7.3742, 7.3752, 7.3747, 7.3742, 7.3737, 7.3742, 7.3738, 7.3777, 7.3771, 7.3779, 7.3774, 7.377, 7.3765, 7.3775, 7.3785, 7.3779, 7.3774, 7.3775, 7.3771, 7.3781, 7.3779, 7.3773, 7.3784, 7.3778, 7.3773, 7.3784, 7.3794, 7.3803, 7.3813, 7.381, 7.382, 7.3814, 7.3808, 7.3818, 7.3812, 7.3806, 7.3802, 7.3805, 7.3826, 7.3821, 7.3822, 7.3818, 7.3803, 7.383, 7.3826, 7.3851, 7.3847, 7.3842, 7.3838, 7.3849, 7.386, 7.3855, 7.3849, 7.3844, 7.3839, 7.3834, 7.3828, 7.3822, 7.3817, 7.3826, 7.3821, 7.3815, 7.3812, 7.3808, 7.3803, 7.3797, 7.3808, 7.3803, 7.3798, 7.3793, 7.3789, 7.3784, 7.378, 7.3775, 7.3772, 7.3796, 7.3778, 7.3774, 7.383, 7.3824, 7.3819, 7.3816, 7.3812, 7.3806, 7.38, 7.3794, 7.379, 7.3786, 7.378, 7.3775, 7.377, 7.378, 7.3776, 7.3771, 7.378, 7.3776, 7.3786, 7.3796, 7.3792, 7.3802, 7.3811, 7.3807, 7.3802, 7.3812, 7.3807, 7.3815, 7.3809, 7.379, 7.3785, 7.3787, 7.3784, 7.3778, 7.3788, 7.3798, 7.3807, 7.3789, 7.377, 7.3765, 7.376, 7.3755, 7.3749, 7.3759, 7.3741, 7.3737, 7.3732, 7.3727, 7.3722, 7.3731, 7.3727, 7.3723, 7.3718, 7.3716, 7.3726, 7.372, 7.3715, 7.371, 7.3707, 7.3717, 7.3727, 7.3725, 7.3722, 7.3717, 7.3712, 7.3706, 7.3701, 7.3698, 7.3693, 7.3688, 7.3683, 7.3694, 7.369, 7.3685, 7.3696, 7.3706, 7.3702, 7.3687, 7.3696, 7.3706, 7.3703, 7.3712, 7.3731, 7.3727, 7.3722, 7.3717, 7.3717, 7.3712, 7.3707, 7.3702, 7.3699, 7.3694, 7.3689, 7.3684, 7.3693, 7.3702, 7.3699, 7.3703, 7.3699, 7.3695, 7.369, 7.3684, 7.375, 7.3745, 7.3741, 7.3736, 7.3731, 7.3744, 7.3742, 7.3736, 7.373, 7.3725, 7.3719, 7.3716, 7.3715, 7.3709, 7.3703, 7.3697, 7.3706, 7.37, 7.3696, 7.3692, 7.3686, 7.368, 7.3675, 7.3672, 7.3669, 7.3664, 7.3658, 7.3654, 7.3664, 7.3673, 7.3668, 7.3662, 7.3657, 7.3652, 7.3646, 7.3641, 7.3638, 7.3648, 7.3645, 7.364, 7.3634, 7.3629, 7.3625, 7.362, 7.3617, 7.3612, 7.3606, 7.3603, 7.3626, 7.362, 7.3629, 7.3625, 7.3621, 7.3603, 7.3599, 7.3594, 7.3589, 7.3584, 7.3579, 7.3574, 7.3583, 7.358, 7.3576, 7.3572, 7.3582, 7.3577, 7.3572, 7.3581, 7.3575, 7.3569, 7.3565, 7.3561, 7.3587, 7.3573, 7.3585, 7.3584, 7.358, 7.3576, 7.3588, 7.3585, 7.3595, 7.3614, 7.3624, 7.3623, 7.3618, 7.3615, 7.3612, 7.3607, 7.3603, 7.3599, 7.3615, 7.3626, 7.3621, 7.3645, 7.364, 7.3635, 7.3617, 7.3613, 7.3608, 7.3603, 7.3599, 7.3594, 7.3589, 7.3585, 7.3583, 7.3585, 7.358, 7.3575, 7.357, 7.3565, 7.356, 7.3569, 7.3578, 7.3573, 7.357, 7.3564, 7.3559, 7.3555, 7.3564, 7.3559, 7.3553, 7.3551, 7.356, 7.3557, 7.3566, 7.3561, 7.3557, 7.3553, 7.3563, 7.3585, 7.3582, 7.3578, 7.3574, 7.3569, 7.3567, 7.3564, 7.3573, 7.357, 7.3565, 7.3574, 7.3571, 7.358, 7.3589, 7.3583, 7.3578, 7.3588, 7.3583, 7.3578, 7.3586, 7.3595, 7.3591, 7.3586, 7.3595, 7.3584, 7.3607, 7.3617, 7.3613, 7.3614, 7.3642, 7.3639, 7.3635, 7.363, 7.3627, 7.3636, 7.3633, 7.363, 7.3626, 7.3621, 7.3645, 7.3641, 7.3636, 7.3631, 7.3626, 7.364, 7.3692, 7.3703, 7.3701, 7.3724, 7.3719, 7.3714, 7.3709, 7.3704, 7.3699, 7.3682, 7.3679, 7.3675, 7.3669, 7.3678, 7.37, 7.3697, 7.3706, 7.3734, 7.3743, 7.3737, 7.3745, 7.3767, 7.3762, 7.3757, 7.3754, 7.3766, 7.3777, 7.3786, 7.3781, 7.379, 7.38, 7.3796, 7.3791, 7.3788, 7.3784, 7.3778, 7.3775, 7.377, 7.378, 7.3775, 7.377, 7.3766, 7.3763, 7.3813, 7.3808, 7.3803, 7.3799, 7.3807, 7.3816, 7.3811, 7.3806, 7.3801, 7.3796, 7.3806, 7.3806, 7.3801, 7.3796, 7.3792, 7.3788, 7.3783, 7.3778, 7.3778, 7.3773, 7.3768, 7.3765, 7.3775, 7.3771, 7.3769, 7.3778, 7.3773, 7.3756, 7.3752, 7.3747, 7.3743, 7.3738, 7.3735, 7.377, 7.3766, 7.3761, 7.3756, 7.3742, 7.3739, 7.3776, 7.3773, 7.3797, 7.3807, 7.3816, 7.3824, 7.3819, 7.3814, 7.3837, 7.3832, 7.3827, 7.3823, 7.3818, 7.3813, 7.381, 7.3805, 7.3813, 7.3808, 7.3803, 7.3819, 7.3827, 7.3822, 7.3832, 7.3828, 7.3813, 7.3809, 7.3818, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.382, 7.3829, 7.3837, 7.3834, 7.3842, 7.3837, 7.3833, 7.3841, 7.3824, 7.382, 7.3816, 7.3826, 7.3822, 7.3832, 7.3827, 7.3835, 7.3832, 7.384, 7.3835, 7.3856, 7.3855, 7.385, 7.3847, 7.3842, 7.3837, 7.3833, 7.3842, 7.3851, 7.3862, 7.3858, 7.3853, 7.386, 7.3858, 7.3857, 7.3856, 7.3851, 7.3846, 7.3845, 7.3855, 7.385, 7.3845, 7.3846, 7.3829, 7.3825, 7.3834, 7.3823, 7.3818, 7.3813, 7.3822, 7.3817, 7.3812, 7.3821, 7.3828, 7.3826, 7.3822, 7.3818, 7.3815, 7.3811, 7.3819, 7.3826, 7.3821, 7.3817, 7.3812, 7.3821, 7.3817, 7.3813, 7.381, 7.3807, 7.3802, 7.3799, 7.3795, 7.3791, 7.3802, 7.3797, 7.3792, 7.3788, 7.3771, 7.378, 7.3775, 7.3784, 7.378, 7.3776, 7.3773, 7.3769, 7.3767, 7.3762, 7.3757, 7.3752, 7.3749, 7.3744, 7.3753, 7.3748, 7.3745, 7.3742, 7.3738, 7.3735, 7.3731, 7.3727, 7.3722, 7.3717, 7.3713, 7.3713, 7.3708, 7.3704, 7.37, 7.3708, 7.3717, 7.3712, 7.3695, 7.3692, 7.3701, 7.3696, 7.3692, 7.3689, 7.3685, 7.368, 7.3676, 7.3671, 7.3666, 7.3662, 7.3671, 7.3668, 7.3677, 7.3683, 7.3679, 7.3674, 7.3669, 7.3665, 7.3682, 7.368, 7.3677, 7.3682, 7.369, 7.3685, 7.368, 7.3678, 7.3675, 7.3684, 7.368, 7.3689, 7.3685, 7.3692, 7.3687, 7.3683, 7.3681, 7.3689, 7.3684, 7.3684, 7.3679, 7.3674, 7.3669, 7.3664, 7.3661, 7.3657, 7.3653, 7.3648, 7.3644, 7.364, 7.3635, 7.3643, 7.3638, 7.3646, 7.3642, 7.3639, 7.3634, 7.363, 7.3626, 7.3622, 7.3617, 7.3612, 7.3621, 7.3617, 7.3614, 7.3611, 7.362, 7.3616, 7.3612, 7.3621, 7.3631, 7.3639, 7.3634, 7.3631, 7.3628, 7.3625, 7.3632, 7.3627, 7.3625, 7.3622, 7.3617, 7.3614, 7.3612, 7.362, 7.3618, 7.3616, 7.3613, 7.3608, 7.3604, 7.36, 7.3592, 7.3601, 7.3596, 7.3604, 7.3612, 7.3608, 7.3604, 7.36, 7.3599, 7.3621, 7.3629, 7.3677, 7.3672, 7.3668, 7.3676, 7.3684, 7.3681, 7.3679, 7.3674, 7.3682, 7.3678, 7.3673, 7.3657, 7.3666, 7.3666, 7.3662, 7.3658, 7.3656, 7.3652, 7.3649, 7.3645, 7.3642, 7.3642, 7.3637, 7.3627, 7.3623, 7.3619, 7.3614, 7.361, 7.3607, 7.3604, 7.36, 7.3623, 7.3633, 7.364, 7.3635, 7.363, 7.363, 7.3639, 7.366, 7.3656, 7.3652, 7.3675, 7.3683, 7.3679, 7.3675, 7.3674, 7.372, 7.3719, 7.3715, 7.3711, 7.3706, 7.3702, 7.3697, 7.372, 7.3727, 7.3722, 7.3719, 7.3714, 7.3709, 7.3708, 7.3704, 7.3706, 7.3703, 7.3711, 7.3708, 7.3704, 7.37, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3691, 7.3701, 7.3703, 7.3699, 7.3695, 7.3691, 7.3698, 7.3693, 7.3689, 7.3685, 7.3681, 7.3679, 7.3687, 7.3684, 7.3679, 7.3675, 7.3671, 7.3668, 7.3652, 7.365, 7.3659, 7.3655, 7.3653, 7.365, 7.3649, 7.3645, 7.3643, 7.364, 7.3637, 7.3645, 7.3642, 7.3653, 7.366, 7.3644, 7.3641, 7.3636, 7.3632, 7.3628, 7.3637, 7.3633, 7.3628, 7.3625, 7.363, 7.3638, 7.3622, 7.3618, 7.3623, 7.3653, 7.3662, 7.3658, 7.3653, 7.3648, 7.3645, 7.3653, 7.3661, 7.3678, 7.3662, 7.3658, 7.3655, 7.37, 7.3696, 7.3684, 7.3681, 7.3719, 7.3715, 7.3715, 7.3736, 7.3738, 7.3734, 7.3734, 7.373, 7.3739, 7.3762, 7.3759, 7.3754, 7.3751, 7.3746, 7.3747, 7.3743, 7.374, 7.3736, 7.3732, 7.3728, 7.375, 7.3748, 7.3757, 7.3754, 7.3813, 7.3811, 7.3827, 7.3829, 7.3837, 7.3846, 7.385, 7.3847, 7.3846, 7.3868, 7.3864, 7.3861, 7.3869, 7.3864, 7.386, 7.3856, 7.3852, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.3839, 7.3835, 7.3843, 7.3839, 7.3835, 7.383, 7.3827, 7.3822, 7.3831, 7.3828, 7.3855, 7.3853, 7.3851, 7.3859, 7.3843, 7.3852, 7.3848, 7.3869, 7.3882, 7.3878, 7.3888, 7.39, 7.391, 7.3906, 7.3901, 7.3896, 7.3891, 7.3888, 7.3884, 7.388, 7.3878, 7.3874, 7.3896, 7.3892, 7.3887, 7.389, 7.3885, 7.3893, 7.3889, 7.3884, 7.388, 7.3875, 7.3871, 7.3866, 7.3861, 7.3859, 7.3855, 7.3853, 7.3848, 7.3847, 7.3842, 7.3838, 7.3862, 7.386, 7.3856, 7.3851, 7.3859, 7.3855, 7.3851, 7.3851, 7.3848, 7.3847, 7.3842, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3812, 7.3808, 7.3807, 7.3804, 7.3802, 7.3798, 7.3806, 7.3802, 7.3798, 7.3811, 7.3806, 7.3802, 7.3811, 7.3818, 7.3813, 7.3809, 7.3804, 7.3805, 7.3803, 7.3807, 7.3804, 7.3801, 7.381, 7.3806, 7.3802, 7.3797, 7.3793, 7.379, 7.3786, 7.3794, 7.3793, 7.379, 7.3786, 7.3783, 7.3779, 7.3775, 7.377, 7.3768, 7.3764, 7.376, 7.3757, 7.3752, 7.375, 7.3745, 7.3741, 7.3751, 7.3747, 7.376, 7.3756, 7.3763, 7.376, 7.3756, 7.3752, 7.375, 7.3747, 7.3742, 7.3756, 7.3753, 7.375, 7.3745, 7.3741, 7.3737, 7.3736, 7.3735, 7.3731, 7.3726, 7.3721, 7.3728, 7.3736, 7.3744, 7.3739, 7.3747, 7.3743, 7.3738, 7.3737, 7.3734, 7.3742, 7.3738, 7.3741, 7.3736, 7.3732, 7.3728, 7.3726, 7.3733, 7.3729, 7.3714, 7.371, 7.3718, 7.3728, 7.3724, 7.3722, 7.3729, 7.3724, 7.3722, 7.3718, 7.3726, 7.3724, 7.3745, 7.3741, 7.3727, 7.3724, 7.372, 7.3716, 7.3713, 7.372, 7.3717, 7.3713, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.369, 7.3715, 7.3736, 7.3734, 7.3731, 7.3727, 7.3771, 7.3767, 7.3774, 7.377, 7.3767, 7.3763, 7.3771, 7.378, 7.3787, 7.3773, 7.3781, 7.3779, 7.3774, 7.377, 7.3767, 7.3753, 7.3761, 7.3757, 7.3753, 7.3753, 7.3749, 7.3745, 7.3741, 7.3737, 7.3732, 7.3739, 7.3735, 7.3731, 7.3727, 7.3722, 7.3721, 7.3718, 7.3714, 7.3721, 7.3718, 7.3704, 7.37, 7.3715, 7.3712, 7.3708, 7.3704, 7.37, 7.3696, 7.3716, 7.3739, 7.3736, 7.3736, 7.3732, 7.3728, 7.3724, 7.3732, 7.374, 7.3737, 7.3733, 7.374, 7.3736, 7.3733, 7.3729, 7.3725, 7.3721, 7.3728, 7.3724, 7.372, 7.3716, 7.3724, 7.372, 7.3728, 7.3736, 7.3731, 7.3727, 7.3723, 7.3719, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3725, 7.372, 7.3717, 7.3713, 7.371, 7.3707, 7.3725, 7.3722, 7.3718, 7.3714, 7.371, 7.3718, 7.3713, 7.3721, 7.3716, 7.3712, 7.3724, 7.3719, 7.3716, 7.3712, 7.372, 7.3717, 7.3713, 7.3721, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3726, 7.3728, 7.3747, 7.3743, 7.374, 7.3737, 7.3733, 7.3743, 7.374, 7.3748, 7.3743, 7.3739, 7.3753, 7.3749, 7.3749, 7.3756, 7.3752, 7.3748, 7.3744, 7.3741, 7.3737, 7.3761, 7.3769, 7.3765, 7.3772, 7.3802, 7.3798, 7.3801, 7.3798, 7.3789, 7.38, 7.38, 7.3789, 7.3785, 7.3782, 7.3778, 7.3774, 7.3759, 7.3766, 7.3762, 7.3758, 7.3756, 7.3752, 7.3748, 7.3745, 7.3752, 7.3766, 7.3763, 7.3759, 7.3767, 7.3781, 7.3777, 7.3787, 7.3783, 7.38, 7.3808, 7.3843, 7.3842, 7.3838, 7.3833, 7.3869, 7.3864, 7.386, 7.3867, 7.3876, 7.3883, 7.3881, 7.3877, 7.3884, 7.388, 7.3878, 7.3873, 7.387, 7.3877, 7.3874, 7.3871, 7.3884, 7.3891, 7.3902, 7.3898, 7.3894, 7.3891, 7.3892, 7.3888, 7.3874, 7.387, 7.3878, 7.3875, 7.3884, 7.3881, 7.3877, 7.3873, 7.388, 7.3876, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3865, 7.3861, 7.389, 7.3886, 7.3882, 7.388, 7.3876, 7.3872, 7.3868, 7.3866, 7.3873, 7.387, 7.3866, 7.3852, 7.3848, 7.3844, 7.384, 7.3837, 7.3846, 7.3842, 7.384, 7.3837, 7.3835, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3823, 7.3819, 7.3843, 7.3839, 7.3847, 7.3854, 7.3877, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3854, 7.385, 7.3857, 7.3854, 7.3861, 7.3858, 7.3854, 7.3862, 7.3861, 7.3857, 7.3856, 7.3854, 7.385, 7.3846, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3813, 7.3811, 7.3849, 7.3845, 7.3844, 7.384, 7.3837, 7.3834, 7.383, 7.384, 7.3838, 7.3834, 7.3821, 7.3817, 7.3815, 7.3812, 7.3819, 7.3816, 7.3824, 7.383, 7.3828, 7.3824, 7.381, 7.3806, 7.3803, 7.3799, 7.3795, 7.3791, 7.3798, 7.3806, 7.3813, 7.381, 7.3807, 7.3805, 7.3801, 7.3798, 7.3795, 7.3791, 7.3787, 7.3794, 7.379, 7.3797, 7.3804, 7.3803, 7.381, 7.3817, 7.3813, 7.3809, 7.3806, 7.3803, 7.3799, 7.3796, 7.3796, 7.3792, 7.3811, 7.3809, 7.3805, 7.3801, 7.3797, 7.3793, 7.3791, 7.3787, 7.3794, 7.3791, 7.3798, 7.3797, 7.3793, 7.3789, 7.3796, 7.3808, 7.3805, 7.3802, 7.3809, 7.3805, 7.3803, 7.3799, 7.3797, 7.3796, 7.3793, 7.379, 7.3786, 7.3782, 7.3778, 7.3776, 7.3783, 7.3789, 7.3785, 7.3815, 7.3811, 7.381, 7.3807, 7.3814, 7.381, 7.3806, 7.3813, 7.3819, 7.3826, 7.3833, 7.3829, 7.3836, 7.3843, 7.385, 7.3846, 7.3842, 7.3838, 7.3834, 7.3831, 7.3829, 7.3825, 7.3832, 7.3868, 7.3864, 7.3863, 7.3859, 7.3855, 7.3851, 7.3848, 7.3835, 7.3851, 7.3847, 7.3843, 7.385, 7.3836, 7.3832, 7.3828, 7.3824, 7.382, 7.3827, 7.3824, 7.382, 7.3827, 7.3823, 7.3819, 7.3827, 7.3827, 7.3823, 7.383, 7.3827, 7.3833, 7.3836, 7.3834, 7.3832, 7.3839, 7.3836, 7.3836, 7.3832, 7.3832, 7.3829, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.3817, 7.3814, 7.3812, 7.3818, 7.3815, 7.3832, 7.383, 7.3827, 7.3823, 7.3819, 7.3817, 7.3814, 7.3821, 7.3823, 7.3821, 7.3818, 7.3814, 7.381, 7.3806, 7.3813, 7.381, 7.3817, 7.3813, 7.3809, 7.3807, 7.3804, 7.38, 7.3796, 7.3802, 7.3804, 7.3813, 7.382, 7.3821, 7.3817, 7.3824, 7.383, 7.3816, 7.3813, 7.3809, 7.3805, 7.3814, 7.3811, 7.381, 7.3817, 7.3813, 7.3809, 7.3805, 7.3803, 7.38, 7.3829, 7.3869, 7.3878, 7.3875, 7.3875, 7.3882, 7.3878, 7.3874, 7.387, 7.3858, 7.3854, 7.385, 7.3852, 7.385, 7.3846, 7.3853, 7.3849, 7.3845, 7.3842, 7.3838, 7.3844, 7.3832, 7.3828, 7.3846, 7.3843, 7.3849, 7.3845, 7.3841, 7.3848, 7.3844, 7.3841, 7.3837, 7.3833, 7.3832, 7.3828, 7.3839, 7.3835, 7.3831, 7.3827, 7.3825, 7.3832, 7.3829, 7.3827, 7.385, 7.3863, 7.3859, 7.3865, 7.3871, 7.3867, 7.3863, 7.3872, 7.3868, 7.3866, 7.3885, 7.3872, 7.3869, 7.3865, 7.3872, 7.3869, 7.3898, 7.3906, 7.3903, 7.39, 7.3896, 7.3904, 7.3901, 7.3897, 7.3893, 7.3899, 7.3905, 7.3913, 7.3909, 7.3905, 7.3902, 7.3898, 7.3904, 7.39, 7.3898, 7.3957, 7.3953, 7.394, 7.3947, 7.3975, 7.3982, 7.3978, 7.3987, 7.3984, 7.3981, 7.3998, 7.4006, 7.4024, 7.4021, 7.4018, 7.4014, 7.4012, 7.4009, 7.4006, 7.4002, 7.4004, 7.4, 7.4007, 7.4015, 7.4012, 7.4008, 7.4007, 7.4013, 7.402, 7.4017, 7.4015, 7.4012, 7.4019, 7.4015, 7.4012, 7.4009, 7.4006, 7.4003, 7.401, 7.4016, 7.4022, 7.4018, 7.4014, 7.4011, 7.4007, 7.4004, 7.4001, 7.3998, 7.3995, 7.4002, 7.3999, 7.3997, 7.3994, 7.3991, 7.3987, 7.3984, 7.3981, 7.3979, 7.3986, 7.3984, 7.3982, 7.3979, 7.3996, 7.3992, 7.3989, 7.3986, 7.3993, 7.3989, 7.3986, 7.3982, 7.3978, 7.3975, 7.3971, 7.3967, 7.3963, 7.3971, 7.3978, 7.3974, 7.397, 7.3966, 7.3963, 7.396, 7.3966, 7.3962, 7.3958, 7.3954, 7.395, 7.3957, 7.3963, 7.3969, 7.3966, 7.3963, 7.397, 7.3966, 7.3963, 7.3961, 7.3967, 7.3974, 7.3982, 7.3978, 7.3974, 7.3971, 7.3967, 7.3966, 7.3962, 7.3969, 7.3965, 7.3963, 7.3969, 7.3977, 7.3988, 7.3995, 7.4002, 7.401, 7.4017, 7.4014, 7.4014, 7.4011, 7.4007, 7.4014, 7.4021, 7.4018, 7.4015, 7.4047, 7.4045, 7.4041, 7.4047, 7.4054, 7.406, 7.4057, 7.4064, 7.406, 7.4067, 7.4063, 7.407, 7.4069, 7.4066, 7.4064, 7.4061, 7.4057, 7.407, 7.4067, 7.4074, 7.4071, 7.4089, 7.4086, 7.4093, 7.409, 7.4101, 7.4097, 7.4094, 7.411, 7.4117, 7.4107, 7.4104, 7.4091, 7.4088, 7.4085, 7.4082, 7.4129, 7.4136, 7.4132, 7.4139, 7.4146, 7.4153, 7.415, 7.4146, 7.4142, 7.4139, 7.416, 7.4166, 7.4172, 7.4168, 7.4164, 7.417, 7.4168, 7.4175, 7.4171, 7.4167, 7.4173, 7.4171, 7.4177, 7.4173, 7.418, 7.4186, 7.4182, 7.4179, 7.4175, 7.4175, 7.4171, 7.4168, 7.4164, 7.4171, 7.4177, 7.4174, 7.4171, 7.4189, 7.4186, 7.4182, 7.4179, 7.4176, 7.4173, 7.4169, 7.4165, 7.4171, 7.4167, 7.4174, 7.418, 7.4186, 7.4192, 7.4189, 7.4179, 7.421, 7.4218, 7.4216, 7.4223, 7.422, 7.4217, 7.4224, 7.423, 7.4237, 7.4244, 7.424, 7.4236, 7.4242, 7.4239, 7.4236, 7.4232, 7.4238, 7.4244, 7.4251, 7.4258, 7.4254, 7.425, 7.4246, 7.4243, 7.4242, 7.4254, 7.4251, 7.425, 7.4259, 7.4259, 7.4256, 7.4247, 7.4244, 7.4241, 7.4238, 7.4244, 7.425, 7.4246, 7.4253, 7.4249, 7.4246, 7.4252, 7.4259, 7.4255, 7.4262, 7.4269, 7.4276, 7.4283, 7.4291, 7.4298, 7.4295, 7.4292, 7.4299, 7.4295], '192.168.122.113': [10.9024, 8.1601, 7.208, 6.8129, 6.6064, 6.4637, 6.4441, 6.4141, 6.2927, 6.2657, 6.209, 6.2029, 6.1718, 6.2001, 6.1376, 5.7958, 6.0899, 6.3522, 6.3098, 6.2653, 6.2386, 6.4406, 6.4073, 6.3661, 6.5319, 6.5282, 6.4957, 6.4948, 6.4635, 6.4318, 6.933, 7.0558, 7.0084, 6.9785, 6.9424, 6.9036, 7.1504, 7.1154, 7.0698, 7.1662, 7.1418, 7.1303, 6.9857, 6.947, 6.923, 6.8968, 6.8623, 6.8461, 6.824, 6.8033, 6.8758, 7.0579, 7.0411, 7.2128, 7.1765, 7.1528, 7.2253, 7.2043, 7.2593, 7.2253, 7.2802, 7.2483, 7.2173, 7.1963, 7.1785, 7.1777, 7.1604, 7.2144, 7.1857, 7.1723, 7.083, 7.0612, 7.0377, 7.0892, 7.0657, 7.048, 7.2915, 7.3357, 7.3171, 7.3073, 7.3589, 7.3331, 7.3091, 7.2862, 7.2625, 7.2407, 7.2196, 7.2166, 7.1978, 7.1889, 7.1719, 7.2114, 7.2554, 7.3003, 7.2838, 7.2718, 7.2622, 7.2559, 7.3613, 7.3944, 7.3793, 7.3601, 7.3464, 7.3279, 7.309, 7.2957, 7.2875, 7.3211, 7.3541, 7.3348, 7.364, 7.3601, 7.3464, 7.3282, 7.3606, 7.3929, 7.421, 7.4094, 7.3951, 7.3418, 7.3287, 7.362, 7.3493, 7.3777, 7.3701, 7.3957, 7.3879, 7.3787, 7.3739, 7.3635, 7.347, 7.3378, 7.3252, 7.3127, 7.2981, 7.2899, 7.2836, 7.2697, 7.2562, 7.2472, 7.2353, 7.2602, 7.252, 7.2385, 7.2597, 7.2505, 7.2743, 7.2611, 7.2918, 7.3184, 7.3057, 7.3283, 7.3156, 7.3058, 7.2959, 7.2837, 7.2782, 7.2667, 7.2553, 7.2427, 7.2306, 7.22, 7.212, 7.2013, 7.1993, 7.1973, 7.2199, 7.242, 7.2347, 7.2566, 7.2453, 7.2695, 7.2608, 7.2523, 7.2437, 7.2354, 7.2292, 7.2197, 7.1824, 7.1742, 7.1661, 7.16, 7.1501, 7.1678, 7.1881, 7.2053, 7.1967, 7.3323, 7.3216, 7.3966, 7.3854, 7.3783, 7.3726, 7.3912, 7.4113, 7.4294, 7.4185, 7.4074, 7.403, 7.3697, 7.362, 7.3794, 7.3691, 7.3647, 7.3552, 7.3505, 7.3678, 7.3847, 7.3754, 7.3653, 7.3552, 7.395, 7.3896, 7.3597, 7.352, 7.4208, 7.4369, 7.4278, 7.4315, 7.4465, 7.4383, 7.4294, 7.4225, 7.4176, 7.4109, 7.4043, 7.4195, 7.4133, 7.4041, 7.3956, 7.3906, 7.382, 7.3731, 7.3664, 7.3815, 7.3754, 7.3684, 7.4081, 7.4013, 7.3971, 7.3909, 7.3845, 7.3767, 7.37, 7.3647, 7.366, 7.3644, 7.3584, 7.3523, 7.3647, 7.3807, 7.3547, 7.3478, 7.3404, 7.3353, 7.33, 7.3241, 7.3392, 7.3528, 7.3492, 7.3412, 7.3335, 7.3465, 7.3386, 7.3504, 7.3432, 7.3567, 7.3693, 7.3621, 7.3553, 7.3489, 7.3418, 7.3548, 7.3491, 7.361, 7.3541, 7.4057, 7.3987, 7.3931, 7.3879, 7.3842, 7.3773, 7.3754, 7.3881, 7.388, 7.388, 7.3825, 7.3955, 7.3917, 7.3844, 7.3776, 7.3751, 7.3784, 7.3748, 7.3702, 7.4149, 7.4079, 7.4069, 7.4025, 7.4041, 7.3862, 7.3718, 7.4014, 7.3942, 7.4017, 7.3965, 7.4063, 7.4101, 7.4066, 7.4004, 7.3959, 7.3906, 7.3841, 7.3805, 7.3745, 7.3701, 7.3655, 7.3607, 7.3564, 7.3519, 7.3955, 7.3893, 7.3826, 7.393, 7.3886, 7.3825, 7.3812, 7.3751, 7.3691, 7.3796, 7.3732, 7.3695, 7.3639, 7.3579, 7.3528, 7.3474, 7.3582, 7.3526, 7.3489, 7.36, 7.3546, 7.3491, 7.345, 7.3407, 7.3357, 7.3616, 7.3569, 7.3509, 7.3452, 7.3544, 7.3495, 7.3442, 7.3398, 7.3369, 7.3311, 7.3274, 7.3218, 7.319, 7.3164, 7.3111, 7.3059, 7.3003, 7.2956, 7.2906, 7.2861, 7.2864, 7.301, 7.2966, 7.2784, 7.2747, 7.286, 7.2835, 7.2802, 7.2749, 7.2708, 7.253, 7.2516, 7.25, 7.2447, 7.2399, 7.2376, 7.233, 7.2292, 7.2126, 7.2092, 7.2042, 7.203, 7.2128, 7.208, 7.2172, 7.2291, 7.2408, 7.2442, 7.2399, 7.2361, 7.2462, 7.2557, 7.2518, 7.2755, 7.2921, 7.2887, 7.2845, 7.28, 7.3019, 7.2974, 7.3094, 7.2933, 7.2888, 7.2842, 7.2933, 7.2776, 7.274, 7.2702, 7.2658, 7.261, 7.2578, 7.2537, 7.2626, 7.2586, 7.2541, 7.2511, 7.2466, 7.2422, 7.2519, 7.26, 7.2689, 7.2656, 7.2504, 7.2457, 7.2544, 7.2523, 7.2492, 7.2566, 7.2651, 7.2727, 7.2815, 7.2786, 7.2761, 7.2718, 7.2708, 7.2674, 7.2639, 7.2603, 7.2564, 7.2542, 7.2551, 7.2511, 7.2474, 7.2558, 7.2528, 7.2512, 7.2584, 7.2554, 7.2539, 7.2501, 7.2458, 7.242, 7.2405, 7.2486, 7.2562, 7.254, 7.263, 7.2602, 7.256, 7.2532, 7.2391, 7.2351, 7.2426, 7.2393, 7.2466, 7.2423, 7.2608, 7.2681, 7.2655, 7.2613, 7.2594, 7.2574, 7.2541, 7.2503, 7.2468, 7.2427, 7.2506, 7.2477, 7.2448, 7.241, 7.2371, 7.2333, 7.2408, 7.2381, 7.234, 7.2315, 7.2459, 7.2421, 7.2404, 7.2471, 7.2439, 7.2407, 7.2373, 7.2545, 7.2633, 7.262, 7.2599, 7.2577, 7.2543, 7.2618, 7.2689, 7.2777, 7.2749, 7.271, 7.2783, 7.2745, 7.2815, 7.2885, 7.2847, 7.2811, 7.288, 7.2848, 7.3027, 7.2993, 7.306, 7.304, 7.3009, 7.308, 7.3041, 7.311, 7.3089, 7.3128, 7.3556, 7.3524, 7.3495, 7.3461, 7.3432, 7.3499, 7.3573, 7.3679, 7.3648, 7.3612, 7.3682, 7.3657, 7.3722, 7.3701, 7.3662, 7.3627, 7.3588, 7.3649, 7.3614, 7.3578, 7.3691, 7.3663, 7.3626, 7.3592, 7.3478, 7.3442, 7.3407, 7.3383, 7.3365, 7.333, 7.3315, 7.3281, 7.3245, 7.3221, 7.3208, 7.3173, 7.3057, 7.3025, 7.3012, 7.2979, 7.3043, 7.3018, 7.2985, 7.3045, 7.3017, 7.2995, 7.2971, 7.2938, 7.2999, 7.2966, 7.2943, 7.2912, 7.2887, 7.2854, 7.2838, 7.2806, 7.2802, 7.2803, 7.2862, 7.2844, 7.2989, 7.3051, 7.3033, 7.3008, 7.2984, 7.3038, 7.3014, 7.308, 7.3061, 7.313, 7.3112, 7.3084, 7.3144, 7.3114, 7.318, 7.315, 7.3119, 7.3176, 7.317, 7.315, 7.321, 7.318, 7.3148, 7.3116, 7.3162, 7.3134, 7.3101, 7.307, 7.3041, 7.3012, 7.3069, 7.3129, 7.3105, 7.3165, 7.3223, 7.3207, 7.3264, 7.3313, 7.3279, 7.3288, 7.3258, 7.3315, 7.3294, 7.3264, 7.3235, 7.3233, 7.329, 7.3345, 7.3312, 7.3294, 7.3284, 7.3264, 7.3231, 7.3282, 7.325, 7.3217, 7.312, 7.3177, 7.3161, 7.3056, 7.3111, 7.3167, 7.3137, 7.3111, 7.3086, 7.3216, 7.3187, 7.3243, 7.3137, 7.3192, 7.3189, 7.3165, 7.3143, 7.3146, 7.3117, 7.3166, 7.3223, 7.3227, 7.32, 7.3173, 7.3228, 7.3279, 7.3278, 7.3252, 7.3224, 7.3196, 7.3188, 7.3163, 7.3219, 7.319, 7.3161, 7.3131, 7.3103, 7.3243, 7.3214, 7.3199, 7.3171, 7.3219, 7.3192, 7.3164, 7.3143, 7.3115, 7.3086, 7.3066, 7.3114, 7.318, 7.3162, 7.3134, 7.3106, 7.3111, 7.3089, 7.3061, 7.3109, 7.3161, 7.3134, 7.3106, 7.3164, 7.3221, 7.3199, 7.3173, 7.3168, 7.314, 7.3194, 7.3248, 7.3221, 7.3279, 7.3252, 7.3299, 7.3283, 7.3263, 7.3237, 7.3213, 7.3193, 7.3169, 7.3144, 7.3055, 7.303, 7.3015, 7.3015, 7.3007, 7.298, 7.2962, 7.3118, 7.3095, 7.3076, 7.3051, 7.3027, 7.3077, 7.3051, 7.3023, 7.3014, 7.2989, 7.2962, 7.2937, 7.2925, 7.29, 7.2886, 7.2931, 7.2905, 7.2881, 7.2856, 7.2838, 7.2884, 7.2857, 7.2839, 7.2885, 7.2866, 7.2919, 7.2892, 7.2866, 7.2843, 7.2822, 7.2868, 7.291, 7.2921, 7.3001, 7.2975, 7.304, 7.3028, 7.3074, 7.306, 7.3106, 7.3082, 7.3129, 7.3174, 7.3156, 7.3071, 7.3052, 7.3027, 7.3011, 7.3055, 7.2989, 7.3067, 7.3387, 7.3367, 7.342, 7.3404, 7.3384, 7.3364, 7.3406, 7.3391, 7.3372, 7.3289, 7.327, 7.3313, 7.3289, 7.3334, 7.3316, 7.3293, 7.3398, 7.3377, 7.3409, 7.3384, 7.3365, 7.3342, 7.3316, 7.3298, 7.3275, 7.3294, 7.3269, 7.3244, 7.3218, 7.3258, 7.3237, 7.3211, 7.3186, 7.3165, 7.315, 7.3124, 7.3106, 7.3147, 7.3121, 7.3096, 7.3074, 7.3066, 7.3046, 7.3022, 7.2998, 7.2974, 7.2956, 7.2942, 7.292, 7.291, 7.2894, 7.2937, 7.2923, 7.29, 7.2886, 7.288, 7.2856, 7.284, 7.2822, 7.2804, 7.2785, 7.2761, 7.274, 7.2719, 7.2704, 7.2746, 7.2725, 7.2711, 7.2688, 7.2704, 7.2681, 7.2725, 7.2701, 7.2746, 7.2686, 7.2677, 7.2681, 7.2661, 7.2699, 7.2675, 7.2653, 7.2578, 7.2561, 7.2664, 7.2642, 7.2627, 7.2556, 7.2654, 7.2632, 7.2611, 7.2592, 7.2633, 7.2675, 7.2716, 7.2693, 7.2671, 7.2777, 7.2827, 7.2809, 7.2788, 7.2785, 7.282, 7.2863, 7.2839, 7.2827, 7.2808, 7.2845, 7.3067, 7.3045, 7.3085, 7.3147, 7.3124, 7.3102, 7.3142, 7.3181, 7.316, 7.3139, 7.3117, 7.3096, 7.309, 7.3089, 7.3071, 7.3053, 7.3043, 7.3021, 7.3001, 7.2985, 7.2913, 7.2893, 7.2873, 7.291, 7.2892, 7.3075, 7.3115, 7.3096, 7.3085, 7.3132, 7.3112, 7.3091, 7.313, 7.317, 7.3209, 7.3194, 7.3171, 7.315, 7.3413, 7.34, 7.3378, 7.3363, 7.3342, 7.332, 7.336, 7.334, 7.3381, 7.3362, 7.3342, 7.3331, 7.3373, 7.336, 7.3341, 7.3385, 7.3422, 7.3482, 7.3467, 7.3446, 7.3424, 7.3464, 7.3444, 7.3482, 7.341, 7.3389, 7.3432, 7.3468, 7.3503, 7.3553, 7.3532, 7.3575, 7.3563, 7.3552, 7.3536, 7.3521, 7.3506, 7.3485, 7.3417, 7.3449, 7.3432, 7.3418, 7.3398, 7.3384, 7.3369, 7.3353, 7.3336, 7.3315, 7.3296, 7.3331, 7.3315, 7.3298, 7.3334, 7.337, 7.3402, 7.3394, 7.3383, 7.3367, 7.3464, 7.3456, 7.344, 7.3428, 7.3412, 7.3391, 7.3381, 7.3362, 7.3377, 7.3364, 7.3343, 7.3323, 7.3303, 7.3287, 7.3324, 7.3312, 7.3293, 7.3383, 7.3368, 7.3368, 7.3348, 7.333, 7.3313, 7.3294, 7.3276, 7.3256, 7.324, 7.3273, 7.3255, 7.3242, 7.3229, 7.321, 7.3247, 7.3282, 7.3266, 7.3253, 7.3235, 7.3268, 7.3248, 7.3229, 7.3271, 7.3306, 7.329, 7.3321, 7.3307, 7.3289, 7.3274, 7.3208, 7.319, 7.3224, 7.3214, 7.3202, 7.3197, 7.318, 7.3165, 7.3155, 7.3141, 7.3171, 7.316, 7.3143, 7.3134, 7.3069, 7.3167, 7.3203, 7.3201, 7.3212, 7.3204, 7.3263, 7.3257, 7.3241, 7.3228, 7.322, 7.3307, 7.3293, 7.3279, 7.3269, 7.3407, 7.355, 7.3534, 7.3523, 7.353, 7.3588, 7.3577, 7.3563, 7.3544, 7.3529, 7.3466, 7.3448, 7.3429, 7.3467, 7.3448, 7.3436, 7.3417, 7.3409, 7.3443, 7.3473, 7.346, 7.349, 7.3473, 7.3506, 7.3493, 7.3524, 7.3465, 7.3455, 7.3492, 7.3525, 7.3518, 7.3505, 7.3492, 7.3527, 7.3512, 7.3498, 7.3484, 7.3465, 7.3452, 7.3487, 7.3473, 7.3501, 7.3482, 7.3488, 7.3534, 7.3515, 7.3508, 7.3445, 7.3525, 7.3508, 7.3495, 7.348, 7.3463, 7.3463, 7.3453, 7.3438, 7.3473, 7.3456, 7.3441, 7.3426, 7.341, 7.3394, 7.3384, 7.3368, 7.3352, 7.3389, 7.3374, 7.3358, 7.3511, 7.3494, 7.3519, 7.3554, 7.3692, 7.3675, 7.3704, 7.3686, 7.3668, 7.3651, 7.3637, 7.3627, 7.361, 7.3591, 7.3579, 7.361, 7.3601, 7.3627, 7.3618, 7.3605, 7.3633, 7.3661, 7.3643, 7.363, 7.3664, 7.3651, 7.3683, 7.3625, 7.3607, 7.3596, 7.3624, 7.3669, 7.3651, 7.3634, 7.3622, 7.3613, 7.3606, 7.3642, 7.3626, 7.3657, 7.3643, 7.3634, 7.3621, 7.3564, 7.3547, 7.3532, 7.3523, 7.3551, 7.3534, 7.3517, 7.3504, 7.3492, 7.3479, 7.3471, 7.3454, 7.3441, 7.3426, 7.3439, 7.3467, 7.3451, 7.3483, 7.3467, 7.345, 7.3394, 7.334, 7.3284, 7.327, 7.3256, 7.324, 7.3274, 7.3262, 7.3291, 7.3275, 7.3261, 7.3252, 7.3238, 7.3226, 7.3209, 7.3197, 7.3229, 7.3259, 7.3292, 7.3275, 7.3307, 7.3293, 7.3281, 7.3272, 7.3255, 7.3241, 7.3273, 7.3273, 7.3305, 7.3291, 7.3279, 7.3264, 7.3209, 7.3245, 7.3272, 7.3307, 7.3302, 7.3293, 7.3278, 7.3273, 7.3303, 7.3286, 7.3288, 7.3274, 7.3262, 7.3249, 7.3233, 7.3218, 7.3203, 7.3194, 7.314, 7.3178, 7.3166, 7.3149, 7.315, 7.316, 7.3119, 7.3111, 7.3097, 7.3084, 7.3031, 7.3018, 7.301, 7.3039, 7.3026, 7.3012, 7.3006, 7.2999, 7.2987, 7.2972, 7.2965, 7.2953, 7.2938, 7.2923, 7.2994, 7.3069, 7.3096, 7.3097, 7.3046, 7.3071, 7.3057, 7.3083, 7.3067, 7.3055, 7.3046, 7.3034, 7.302, 7.3045, 7.3036, 7.3024, 7.301, 7.3, 7.3025, 7.305, 7.3039, 7.3024, 7.3011, 7.2999, 7.3039, 7.2988, 7.2975, 7.2962, 7.2953, 7.2937, 7.2921, 7.2948, 7.2934, 7.2924, 7.2916, 7.2942, 7.3004, 7.2993, 7.2942, 7.2946, 7.2972, 7.3041, 7.3028, 7.3018, 7.3004, 7.3033, 7.302, 7.3011, 7.2996, 7.3047, 7.3034, 7.3019, 7.3048, 7.3037, 7.3062, 7.3053, 7.3042, 7.3029, 7.3019, 7.2967, 7.2994, 7.2984, 7.2978, 7.2965, 7.2954, 7.2942, 7.2928, 7.2914, 7.2901, 7.2928, 7.2955, 7.298, 7.2968, 7.296, 7.3109, 7.3094, 7.3082, 7.3108, 7.3092, 7.308, 7.3066, 7.3061, 7.305, 7.3036, 7.303, 7.3015, 7.3016, 7.3002, 7.2987, 7.2972, 7.2975, 7.3012, 7.3007, 7.3033, 7.302, 7.3006, 7.2999, 7.2949, 7.3082, 7.3068, 7.3055, 7.3043, 7.3042, 7.3032, 7.3019, 7.3004, 7.3023, 7.3011, 7.3037, 7.3064, 7.3056, 7.3041, 7.3027, 7.305, 7.3041, 7.3108, 7.3097, 7.3088, 7.3077, 7.3066, 7.3052, 7.304, 7.3027, 7.3023, 7.3014, 7.3012, 7.2999, 7.2985, 7.298, 7.2991, 7.3015, 7.304, 7.3028, 7.3217, 7.3244, 7.3276, 7.3231, 7.3217, 7.321, 7.3197, 7.3192, 7.3178, 7.3131, 7.3116, 7.3107, 7.3092, 7.3084, 7.311, 7.3097, 7.3084, 7.307, 7.3056, 7.3042, 7.303, 7.3016, 7.2971, 7.3005, 7.2996, 7.2951, 7.298, 7.2969, 7.2959, 7.2947, 7.2932, 7.2958, 7.2982, 7.3008, 7.2995, 7.2988, 7.298, 7.2974, 7.2964, 7.2951, 7.2939, 7.2925, 7.2913, 7.2904, 7.2891, 7.2879, 7.2869, 7.2859, 7.2851, 7.284, 7.2829, 7.2818, 7.281, 7.2802, 7.2788, 7.2777, 7.2767, 7.2754, 7.2781, 7.2806, 7.2792, 7.2779, 7.277, 7.2776, 7.2781, 7.2767, 7.2762, 7.2803, 7.2802, 7.2792, 7.2782, 7.2768, 7.2757, 7.2747, 7.2733, 7.276, 7.2749, 7.2775, 7.2763, 7.2751, 7.2747, 7.2736, 7.2725, 7.275, 7.2737, 7.2725, 7.2715, 7.2701, 7.2727, 7.2716, 7.2706, 7.2693, 7.2685, 7.2677, 7.267, 7.2657, 7.2647, 7.2671, 7.2659, 7.2649, 7.2652, 7.2639, 7.2627, 7.2614, 7.2635, 7.2622, 7.261, 7.2597, 7.2586, 7.261, 7.2599, 7.2586, 7.2574, 7.2746, 7.2735, 7.276, 7.2748, 7.2743, 7.2738, 7.2725, 7.2713, 7.2704, 7.2696, 7.2684, 7.268, 7.2637, 7.2629, 7.2654, 7.2641, 7.2631, 7.2619, 7.2611, 7.2598, 7.262, 7.2577, 7.2571, 7.264, 7.2628, 7.2616, 7.2606, 7.2629, 7.2652, 7.2639, 7.2628, 7.2651, 7.2639, 7.2642, 7.263, 7.262, 7.2611, 7.26, 7.2589, 7.2546, 7.2534, 7.2527, 7.2518, 7.2509, 7.2504, 7.2494, 7.249, 7.2478, 7.2465, 7.2455, 7.2445, 7.247, 7.2493, 7.2515, 7.2538, 7.2534, 7.2523, 7.2511, 7.2507, 7.2555, 7.2547, 7.2541, 7.2531, 7.252, 7.251, 7.2499, 7.2494, 7.2482, 7.247, 7.2462, 7.2485, 7.2479, 7.2467, 7.2492, 7.2483, 7.2476, 7.2464, 7.246, 7.2448, 7.2439, 7.2427, 7.2441, 7.2435, 7.2426, 7.2414, 7.2437, 7.2427, 7.242, 7.2414, 7.2406, 7.2401, 7.2421, 7.241, 7.24, 7.2426, 7.2423, 7.2413, 7.2406, 7.2402, 7.2394, 7.2382, 7.237, 7.236, 7.2348, 7.2338, 7.2296, 7.2286, 7.2278, 7.2266, 7.2235, 7.2227, 7.2217, 7.2208, 7.22, 7.22, 7.2189, 7.2184, 7.2173, 7.2162, 7.2151, 7.2141, 7.2131, 7.2119, 7.214, 7.2131, 7.2119, 7.2143, 7.2137, 7.2128, 7.2116, 7.2137, 7.2126, 7.2116, 7.2104, 7.2093, 7.2082, 7.2073, 7.2062, 7.2052, 7.2047, 7.2037, 7.2027, 7.2017, 7.201, 7.204, 7.2063, 7.2051, 7.2043, 7.2035, 7.2056, 7.2096, 7.2118, 7.2112, 7.2103, 7.2094, 7.2084, 7.2074, 7.2041, 7.2061, 7.2049, 7.2071, 7.2093, 7.2081, 7.2073, 7.2063, 7.2057, 7.2051, 7.2047, 7.2068, 7.2092, 7.2083, 7.213, 7.215, 7.2177, 7.2165, 7.2186, 7.2175, 7.2197, 7.2158, 7.2215, 7.2204, 7.2225, 7.2214, 7.2226, 7.2215, 7.2236, 7.2263, 7.2256, 7.2244, 7.2253, 7.2242, 7.2235, 7.2228, 7.2224, 7.2214, 7.2205, 7.2195, 7.2186, 7.2185, 7.2178, 7.2173, 7.2196, 7.2184, 7.2172, 7.2163, 7.2183, 7.2175, 7.2166, 7.2156, 7.2177, 7.2184, 7.2205, 7.2221, 7.2212, 7.2205, 7.2198, 7.2187, 7.2179, 7.2201, 7.2192, 7.2182, 7.2202, 7.2196, 7.2186, 7.2175, 7.2164, 7.2155, 7.2149, 7.2172, 7.2191, 7.2185, 7.2178, 7.2174, 7.2166, 7.2156, 7.2145, 7.2138, 7.21, 7.2089, 7.2082, 7.2076, 7.2067, 7.2061, 7.2057, 7.2049, 7.207, 7.2082, 7.2077, 7.2096, 7.2096, 7.209, 7.2123, 7.2144, 7.2165, 7.2187, 7.2178, 7.2201, 7.219, 7.2179, 7.22, 7.2192, 7.22, 7.2221, 7.2289, 7.2282, 7.2272, 7.2293, 7.2282, 7.2304, 7.2332, 7.2357, 7.235, 7.2371, 7.2363, 7.2355, 7.2347, 7.2339, 7.2329, 7.2348, 7.2338, 7.2333, 7.2354, 7.2345, 7.2358, 7.2349, 7.234, 7.2329, 7.2339, 7.2329, 7.2349, 7.2339, 7.2331, 7.2322, 7.2313, 7.2414, 7.2404, 7.2426, 7.242, 7.2412, 7.2433, 7.2423, 7.2413, 7.2433, 7.2434, 7.2455, 7.2446, 7.2468, 7.2488, 7.2479, 7.25, 7.2493, 7.2484, 7.2473, 7.2465, 7.2454, 7.2447, 7.2436, 7.2428, 7.2446, 7.2439, 7.2429, 7.2419, 7.2409, 7.2399, 7.2394, 7.2386, 7.2411, 7.2403, 7.2424, 7.2441, 7.2459, 7.2449, 7.244, 7.2431, 7.245, 7.2442, 7.2433, 7.2425, 7.2442, 7.2432, 7.2422, 7.2416, 7.2405, 7.2421, 7.241, 7.2401, 7.2393, 7.2383, 7.2376, 7.2344, 7.2364, 7.2359, 7.2381, 7.2372, 7.2362, 7.24, 7.2424, 7.2419, 7.2409, 7.2401, 7.2393, 7.2414, 7.2407, 7.2397, 7.2393, 7.241, 7.2405, 7.2395, 7.2385, 7.2395, 7.2415, 7.2406, 7.2396, 7.2387, 7.2382, 7.2374, 7.2367, 7.2359, 7.2355, 7.2346, 7.2339, 7.236, 7.2353, 7.2343, 7.2333, 7.2334, 7.2325, 7.2316, 7.2342, 7.2336, 7.2331, 7.2324, 7.2321, 7.2311, 7.2304, 7.2294, 7.2314, 7.2306, 7.2296, 7.2287, 7.2278, 7.2269, 7.2259, 7.2278, 7.2273, 7.2264, 7.2259, 7.2258, 7.2249, 7.2243, 7.2263, 7.2257, 7.2248, 7.2276, 7.2267, 7.2285, 7.2282, 7.2275, 7.2288, 7.2279, 7.2269, 7.2288, 7.2309, 7.233, 7.2324, 7.2322, 7.2343, 7.2336, 7.2327, 7.2331, 7.2337, 7.2361, 7.2354, 7.2348, 7.234, 7.2332, 7.2324, 7.2343, 7.2335, 7.2326, 7.2319, 7.2337, 7.2327, 7.2318, 7.2325, 7.2315, 7.2311, 7.2328, 7.2324, 7.2322, 7.243, 7.2448, 7.2464, 7.2586, 7.2604, 7.2621, 7.264, 7.2659, 7.2653, 7.2644, 7.2663, 7.2679, 7.2669, 7.2688, 7.2686, 7.2676, 7.2666, 7.2657, 7.2733, 7.27, 7.2691, 7.2687, 7.2707, 7.2673, 7.2696, 7.269, 7.2708, 7.2702, 7.2694, 7.2685, 7.2741, 7.2763, 7.2758, 7.2749, 7.2766, 7.2761, 7.2766, 7.2733, 7.2725, 7.2716, 7.2706, 7.2702, 7.2718, 7.2709, 7.27, 7.2691, 7.2683, 7.2699, 7.2689, 7.271, 7.2701, 7.2695, 7.2685, 7.2675, 7.2665, 7.2657, 7.2654, 7.2644, 7.2635, 7.2626, 7.2643, 7.2659, 7.2653, 7.2671, 7.2689, 7.2657, 7.2648, 7.2666, 7.2661, 7.2678, 7.2675, 7.2757, 7.2774, 7.2791, 7.2784, 7.2792, 7.2759, 7.275, 7.2767, 7.2785, 7.2803, 7.2794, 7.2785, 7.2776, 7.2767, 7.2763, 7.2754, 7.2798, 7.2819, 7.2812, 7.2813, 7.2834, 7.2827, 7.2817, 7.2832, 7.2824, 7.2843, 7.2835, 7.2828, 7.2848, 7.2842, 7.2855, 7.2846, 7.2838, 7.2831, 7.2823, 7.2816, 7.2809, 7.28, 7.2791, 7.2782, 7.2759, 7.2777, 7.2773, 7.2792, 7.2785, 7.2802, 7.2793, 7.2783, 7.2774, 7.2844, 7.286, 7.2857, 7.2874, 7.2865, 7.2855, 7.2851, 7.2842, 7.2833, 7.2825, 7.2816, 7.2808, 7.2799, 7.2792, 7.2808, 7.2825, 7.2854, 7.2844, 7.2861, 7.2852, 7.2843, 7.2862, 7.2879, 7.2896, 7.2886, 7.2903, 7.2894, 7.2915, 7.2933, 7.2924, 7.2915, 7.2906, 7.2897, 7.2888, 7.2882, 7.2911, 7.2928, 7.2918, 7.2909, 7.2901, 7.2892, 7.2884, 7.29, 7.2891, 7.2907, 7.29, 7.2896, 7.289, 7.288, 7.2896, 7.2864, 7.2856, 7.2877, 7.2873, 7.2865, 7.2856, 7.288, 7.2895, 7.2924, 7.2943, 7.2946, 7.3013, 7.3005, 7.3046, 7.3063, 7.3195, 7.321, 7.3227, 7.3248, 7.3241, 7.3234, 7.3227, 7.3219, 7.3236, 7.3241, 7.3272, 7.3269, 7.3262, 7.3253, 7.3244, 7.326, 7.3251, 7.3242, 7.3258, 7.325, 7.3241, 7.3232, 7.3238, 7.3229, 7.3245, 7.3238, 7.3254, 7.3269, 7.3287, 7.3302, 7.3319, 7.3313, 7.3304, 7.3296, 7.3287, 7.3304, 7.332, 7.3336, 7.3328, 7.3322, 7.3313, 7.3308, 7.3335, 7.3331, 7.3323, 7.3372, 7.3369, 7.336, 7.335, 7.3384, 7.3376, 7.3392, 7.3385, 7.3376, 7.3368, 7.336, 7.3376, 7.3368, 7.3359, 7.3356, 7.335, 7.3342, 7.3349, 7.3366, 7.3357, 7.3372, 7.3364, 7.3355, 7.3347, 7.3339, 7.3332, 7.3349, 7.3341, 7.3357, 7.3349, 7.3354, 7.3347, 7.3361, 7.3353, 7.3349, 7.3339, 7.333, 7.3321, 7.3312, 7.3303, 7.3301, 7.3295, 7.3287, 7.3279, 7.3294, 7.3286, 7.3277, 7.3291, 7.3283, 7.3274, 7.3316, 7.3311, 7.3304, 7.3297, 7.3312, 7.3328, 7.3343, 7.3314, 7.3306, 7.3297, 7.3312, 7.3304, 7.3299, 7.3305, 7.3296, 7.3314, 7.3309, 7.3302, 7.3318, 7.3345, 7.3371, 7.3365, 7.3358, 7.3351, 7.3366, 7.3357, 7.3351, 7.3344, 7.3336, 7.3329, 7.3322, 7.3338, 7.3355, 7.3348, 7.334, 7.3332, 7.3325, 7.3316, 7.3309, 7.3301, 7.3293, 7.3284, 7.3276, 7.3268, 7.3262, 7.3278, 7.3273, 7.3265, 7.3281, 7.3275, 7.327, 7.3261, 7.3253, 7.325, 7.3241, 7.3233, 7.3225, 7.3216, 7.3207, 7.3222, 7.3215, 7.3207, 7.3202, 7.3203, 7.3197, 7.3211, 7.3203, 7.3196, 7.3189, 7.3183, 7.3176, 7.3169, 7.3164, 7.3157, 7.3149, 7.3142, 7.3141, 7.3134, 7.3126, 7.3117, 7.3109, 7.3111, 7.3104, 7.3098, 7.3095, 7.3111, 7.3082, 7.3097, 7.309, 7.3062, 7.3055, 7.3048, 7.3042, 7.3037, 7.3029, 7.3023, 7.3014, 7.303, 7.3026, 7.302, 7.3012, 7.3015, 7.3011, 7.3002, 7.2997, 7.3176, 7.3169, 7.3185, 7.3176, 7.3192, 7.3187, 7.3179, 7.3194, 7.3219, 7.3246, 7.3266, 7.3258, 7.3272, 7.3266, 7.3259, 7.3253, 7.3246, 7.3218, 7.3233, 7.3247, 7.3238, 7.3231, 7.3228, 7.3226, 7.3274, 7.3272, 7.3287, 7.3303, 7.3298, 7.3293, 7.3288, 7.328, 7.3272, 7.3264, 7.3259, 7.3251, 7.3243, 7.3216, 7.3211, 7.3224, 7.3224, 7.3239, 7.3254, 7.3247, 7.3261, 7.3326, 7.3317, 7.3309, 7.3302, 7.3295, 7.3295, 7.3288, 7.3305, 7.3296, 7.3311, 7.3304, 7.3297, 7.329, 7.3282, 7.3275, 7.3269, 7.3261, 7.3254, 7.3246, 7.324, 7.3233, 7.3229, 7.3244, 7.3238, 7.3233, 7.3248, 7.3267, 7.3262, 7.3275, 7.327, 7.3286, 7.3301, 7.3292, 7.3292, 7.3309, 7.3304, 7.3295, 7.3288, 7.3282, 7.3297, 7.3288, 7.3285, 7.33, 7.3294, 7.3287, 7.328, 7.3295, 7.3363, 7.3382, 7.3396, 7.3411, 7.3403, 7.3375, 7.3367, 7.336, 7.3354, 7.3369, 7.3383, 7.3377, 7.339, 7.3434, 7.3428, 7.3422, 7.3416, 7.3408, 7.3402, 7.3396, 7.3389, 7.3408, 7.34, 7.3396, 7.3408, 7.3403, 7.3395, 7.3387, 7.3382, 7.3355, 7.3349, 7.3343, 7.3336, 7.3351, 7.3344, 7.336, 7.3353, 7.3344, 7.3356, 7.3348, 7.3341, 7.3336, 7.3331, 7.3344, 7.336, 7.3355, 7.3348, 7.3341, 7.3357, 7.3349, 7.3343, 7.3357, 7.3349, 7.3363, 7.339, 7.3363, 7.3356, 7.3348, 7.3361, 7.3375, 7.3367, 7.3361, 7.3375, 7.3369, 7.3363, 7.3376, 7.3371, 7.3366, 7.3402, 7.3395, 7.3388, 7.3382, 7.3395, 7.3388, 7.3382, 7.3376, 7.3368, 7.3398, 7.3412, 7.3405, 7.342, 7.3433, 7.3447, 7.344, 7.3454, 7.3453, 7.3427, 7.34, 7.35, 7.3494, 7.3467, 7.3465, 7.3463, 7.3457, 7.3451, 7.3447, 7.3441, 7.3457, 7.3474, 7.3468, 7.3482, 7.3474, 7.3469, 7.3472, 7.3465, 7.346, 7.3477, 7.3474, 7.3467, 7.3459, 7.3451, 7.3443, 7.3437, 7.3442, 7.3435, 7.3429, 7.3439, 7.3432, 7.3424, 7.3459, 7.3453, 7.3447, 7.3441, 7.3416, 7.341, 7.3431, 7.3445, 7.3438, 7.3434, 7.3427, 7.3421, 7.3436, 7.3428, 7.3422, 7.3417, 7.3411, 7.3403, 7.3412, 7.3405, 7.3418, 7.3431, 7.3423, 7.3415, 7.3408, 7.3401, 7.3396, 7.341, 7.3424, 7.3436, 7.3428, 7.344, 7.3433, 7.3426, 7.3419, 7.3412, 7.3412, 7.3405, 7.3404, 7.3378, 7.3386, 7.3381, 7.3397, 7.3413, 7.3407, 7.3402, 7.3398, 7.339, 7.3402, 7.3394, 7.3386, 7.3398, 7.3394, 7.3407, 7.3442, 7.3455, 7.3448, 7.3459, 7.3472, 7.3468, 7.3481, 7.3494, 7.3487, 7.348, 7.3472, 7.3467, 7.3441, 7.3455, 7.3447, 7.3442, 7.3434, 7.3448, 7.3441, 7.3434, 7.3469, 7.3483, 7.3475, 7.3468, 7.3463, 7.3458, 7.3452, 7.3463, 7.3476, 7.3469, 7.3486, 7.3461, 7.3435, 7.3448, 7.3447, 7.344, 7.3433, 7.3425, 7.3466, 7.3463, 7.3461, 7.3453, 7.3445, 7.3439, 7.3453, 7.3445, 7.3439, 7.3452, 7.3465, 7.3461, 7.3473, 7.3485, 7.3477, 7.3492, 7.3486, 7.3478, 7.3473, 7.3467, 7.346, 7.3453, 7.3466, 7.3459, 7.3453, 7.3447, 7.344, 7.3432, 7.3445, 7.3441, 7.3434, 7.3427, 7.3421, 7.3434, 7.3455, 7.345, 7.3449, 7.3441, 7.3455, 7.3469, 7.3466, 7.3459, 7.3453, 7.3446, 7.3458, 7.3451, 7.3448, 7.3441, 7.3448, 7.344, 7.3453, 7.3445, 7.3458, 7.348, 7.3473, 7.3486, 7.3479, 7.3473, 7.3467, 7.346, 7.3452, 7.3447, 7.346, 7.3453, 7.3446, 7.3439, 7.344, 7.3433, 7.3428, 7.3439, 7.3435, 7.3434, 7.3427, 7.3422, 7.3415, 7.3408, 7.3429, 7.3435, 7.3431, 7.3426, 7.3421, 7.3415, 7.3408, 7.3445, 7.344, 7.3433, 7.3429, 7.3424, 7.3418, 7.341, 7.3423, 7.3437, 7.3457, 7.347, 7.3465, 7.346, 7.3453, 7.3448, 7.3447, 7.3442, 7.3436, 7.3431, 7.3424, 7.342, 7.3413, 7.3408, 7.342, 7.3433, 7.3427, 7.3422, 7.3415, 7.3408, 7.3406, 7.3419, 7.3433, 7.3428, 7.3423, 7.3435, 7.3411, 7.3443, 7.3439, 7.3431, 7.3444, 7.3438, 7.3433, 7.3426, 7.3423, 7.3435, 7.3429, 7.3426, 7.3452, 7.3447, 7.344, 7.346, 7.3475, 7.3468, 7.346, 7.3455, 7.345, 7.3443, 7.3436, 7.3429, 7.3424, 7.3417, 7.341, 7.3407, 7.3401, 7.3394, 7.3406, 7.3399, 7.3411, 7.3404, 7.3397, 7.341, 7.3422, 7.3415, 7.3427, 7.3439, 7.3432, 7.3425, 7.3438, 7.3451, 7.3444, 7.3421, 7.3416, 7.3409, 7.3402, 7.3395, 7.339, 7.3385, 7.3381, 7.3374, 7.337, 7.3364, 7.3357, 7.3352, 7.3351, 7.3363, 7.3359, 7.3372, 7.3386, 7.3379, 7.3373, 7.3367, 7.3361, 7.3354, 7.3348, 7.3345, 7.3358, 7.3352, 7.3345, 7.3357, 7.335, 7.3344, 7.3337, 7.3332, 7.3345, 7.3361, 7.3341, 7.3336, 7.333, 7.3325, 7.3321, 7.3315, 7.3311, 7.3304, 7.3298, 7.3293, 7.3288, 7.3282, 7.3294, 7.3289, 7.3283, 7.326, 7.3254, 7.3248, 7.3243, 7.3236, 7.3229, 7.3225, 7.3219, 7.3214, 7.3208, 7.3202, 7.3195, 7.3207, 7.3201, 7.3197, 7.3209, 7.3203, 7.3216, 7.3229, 7.3241, 7.3235, 7.3246, 7.324, 7.3235, 7.3229, 7.3223, 7.3236, 7.3247, 7.3241, 7.3254, 7.3249, 7.3243, 7.3239, 7.3232, 7.3229, 7.3242, 7.3254, 7.3248, 7.3242, 7.3239, 7.3232, 7.3225, 7.3237, 7.3253, 7.323, 7.3242, 7.3236, 7.323, 7.3259, 7.3252, 7.3264, 7.3258, 7.3252, 7.3247, 7.324, 7.3236, 7.323, 7.3242, 7.3235, 7.3213, 7.319, 7.3187, 7.3181, 7.3174, 7.3167, 7.316, 7.3155, 7.3166, 7.3161, 7.3154, 7.3148, 7.3141, 7.3136, 7.3148, 7.3143, 7.3143, 7.3139, 7.3151, 7.315, 7.3162, 7.3159, 7.3153, 7.3146, 7.3141, 7.3153, 7.3147, 7.3144, 7.3156, 7.3153, 7.3168, 7.3179, 7.3172, 7.3191, 7.3185, 7.3185, 7.3179, 7.3172, 7.3166, 7.3161, 7.3156, 7.3153, 7.3148, 7.3142, 7.3137, 7.3132, 7.3146, 7.316, 7.3171, 7.3183, 7.3176, 7.3155, 7.3166, 7.316, 7.3137, 7.3132, 7.3143, 7.3138, 7.3135, 7.3131, 7.3124, 7.3119, 7.3112, 7.3123, 7.3116, 7.313, 7.3124, 7.3136, 7.3131, 7.3143, 7.3138, 7.3132, 7.3126, 7.3138, 7.3132, 7.3144, 7.3138, 7.3133, 7.3128, 7.3129, 7.3123, 7.3137, 7.3131, 7.3114, 7.3108, 7.3103, 7.3098, 7.3096, 7.3089, 7.3083, 7.3094, 7.309, 7.3083, 7.3078, 7.3074, 7.3069, 7.3063, 7.3075, 7.3069, 7.3049, 7.3043, 7.3036, 7.3032, 7.3082, 7.3076, 7.3054, 7.3048, 7.3042, 7.3055, 7.3103, 7.3081, 7.3093, 7.311, 7.3104, 7.3117, 7.3112, 7.3106, 7.3103, 7.311, 7.3104, 7.3116, 7.3115, 7.3127, 7.3145, 7.314, 7.3138, 7.3144, 7.3141, 7.3136, 7.3146, 7.3161, 7.3155, 7.3155, 7.3172, 7.3183, 7.3194, 7.3191, 7.3186, 7.318, 7.3173, 7.3167, 7.316, 7.3156, 7.3167, 7.3179, 7.3172, 7.3167, 7.3162, 7.3155, 7.3148, 7.3143, 7.3136, 7.3148, 7.3159, 7.3153, 7.3165, 7.3161, 7.3155, 7.3168, 7.3164, 7.3158, 7.3153, 7.3147, 7.3159, 7.3153, 7.3166, 7.3162, 7.3156, 7.3153, 7.3131, 7.3142, 7.3137, 7.3117, 7.3112, 7.3106, 7.3102, 7.3098, 7.3096, 7.309, 7.3101, 7.3131, 7.3127, 7.3123, 7.3101, 7.3095, 7.3089, 7.3084, 7.3079, 7.309, 7.3086, 7.3082, 7.3079, 7.3074, 7.3085, 7.3095, 7.3108, 7.3103, 7.3097, 7.3092, 7.3087, 7.3081, 7.3077, 7.307, 7.3099, 7.3093, 7.3089, 7.3085, 7.3096, 7.3091, 7.3084, 7.3095, 7.309, 7.3087, 7.3087, 7.3065, 7.3044, 7.3039, 7.3035, 7.3046, 7.3057, 7.3054, 7.3049, 7.3043, 7.3053, 7.3064, 7.3059, 7.3055, 7.3066, 7.3076, 7.3087, 7.3082, 7.3078, 7.3072, 7.3068, 7.3062, 7.3056, 7.3034, 7.3028, 7.3022, 7.3033, 7.3029, 7.3042, 7.3053, 7.3066, 7.3112, 7.3106, 7.3102, 7.3096, 7.309, 7.3085, 7.3079, 7.309, 7.312, 7.3114, 7.3161, 7.3168, 7.3163, 7.3175, 7.317, 7.3165, 7.3162, 7.3157, 7.3152, 7.3147, 7.3157, 7.3168, 7.3162, 7.3172, 7.3166, 7.3162, 7.3156, 7.3168, 7.3162, 7.3156, 7.3151, 7.3146, 7.314, 7.3137, 7.3131, 7.313, 7.3127, 7.3138, 7.3149, 7.3144, 7.3155, 7.3166, 7.3178, 7.3172, 7.3166, 7.3161, 7.3163, 7.3212, 7.3207, 7.3202, 7.3196, 7.3193, 7.3187, 7.3198, 7.3193, 7.3189, 7.3234, 7.3228, 7.3225, 7.3221, 7.3216, 7.321, 7.3208, 7.3253, 7.3248, 7.3242, 7.325, 7.3263, 7.3276, 7.3272, 7.3266, 7.3276, 7.3287, 7.3281, 7.3275, 7.3269, 7.3266, 7.326, 7.3254, 7.3265, 7.3261, 7.3273, 7.3253, 7.3247, 7.3241, 7.3235, 7.3247, 7.3248, 7.3243, 7.3237, 7.3232, 7.3226, 7.322, 7.3232, 7.3242, 7.3237, 7.3233, 7.3229, 7.3224, 7.3223, 7.3217, 7.3227, 7.3221, 7.3215, 7.3211, 7.3222, 7.3216, 7.3243, 7.3238, 7.3232, 7.3226, 7.322, 7.3215, 7.3232, 7.3229, 7.3241, 7.3257, 7.3251, 7.3245, 7.3239, 7.3233, 7.3244, 7.3238, 7.3234, 7.3215, 7.3226, 7.3221, 7.3216, 7.3213, 7.3208, 7.3202, 7.328, 7.3275, 7.3269, 7.3283, 7.3277, 7.3272, 7.3282, 7.3292, 7.3286, 7.3298, 7.3294, 7.3288, 7.3282, 7.3276, 7.3276, 7.3272, 7.3284, 7.328, 7.3292, 7.3286, 7.3281, 7.3277, 7.3276, 7.3273, 7.3268, 7.3296, 7.3306, 7.3317, 7.3327, 7.3339, 7.3336, 7.3333, 7.3327, 7.3322, 7.3318, 7.3328, 7.3324, 7.3334, 7.3329, 7.3324, 7.3335, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3348, 7.3343, 7.3337, 7.3332, 7.3342, 7.3337, 7.3348, 7.3342, 7.3336, 7.3333, 7.3327, 7.3323, 7.3318, 7.3329, 7.3324, 7.3318, 7.3328, 7.3338, 7.3332, 7.3358, 7.3358, 7.3353, 7.3348, 7.3358, 7.336, 7.337, 7.3366, 7.336, 7.3361, 7.3355, 7.335, 7.3346, 7.334, 7.3334, 7.333, 7.3329, 7.3325, 7.3321, 7.3331, 7.3326, 7.332, 7.333, 7.3327, 7.3338, 7.3333, 7.3328, 7.3324, 7.3319, 7.3314, 7.3325, 7.332, 7.3315, 7.3309, 7.3306, 7.33, 7.3296, 7.329, 7.3301, 7.3295, 7.3289, 7.3299, 7.3294, 7.3289, 7.3285, 7.3292, 7.3306, 7.3303, 7.3299, 7.3294, 7.3291, 7.3286, 7.3281, 7.3276, 7.327, 7.3265, 7.3259, 7.3254, 7.3248, 7.3242, 7.3254, 7.3248, 7.3229, 7.3238, 7.3232, 7.3242, 7.3238, 7.3258, 7.3275, 7.3271, 7.3283, 7.3279, 7.3273, 7.3268, 7.3279, 7.3289, 7.3286, 7.3282, 7.3263, 7.326, 7.3255, 7.3264, 7.3259, 7.3285, 7.328, 7.3277, 7.3287, 7.3283, 7.3289, 7.3299, 7.3295, 7.329, 7.33, 7.3295, 7.3292, 7.3286, 7.328, 7.3276, 7.327, 7.3264, 7.3261, 7.3255, 7.3251, 7.3246, 7.3241, 7.3235, 7.3232, 7.3226, 7.3315, 7.3325, 7.3335, 7.3331, 7.3327, 7.3308, 7.3335, 7.336, 7.3388, 7.3409, 7.3432, 7.3426, 7.3423, 7.3434, 7.3444, 7.3457, 7.3467, 7.3481, 7.3478, 7.3487, 7.3498, 7.3493, 7.3497, 7.3507, 7.3503, 7.3504, 7.3499, 7.3493, 7.3489, 7.3485, 7.3481, 7.3477, 7.3471, 7.3481, 7.3492, 7.3496, 7.3506, 7.3514, 7.351, 7.3507, 7.3501, 7.35, 7.3502, 7.3499, 7.3493, 7.3487, 7.3499, 7.3493, 7.3521, 7.3518, 7.3513, 7.351, 7.3506, 7.35, 7.3497, 7.3508, 7.3503, 7.3498, 7.3515, 7.351, 7.3506, 7.3501, 7.3495, 7.3505, 7.3501, 7.3495, 7.3492, 7.3488, 7.3484, 7.3494, 7.3493, 7.3487, 7.3481, 7.3477, 7.3486, 7.348, 7.348, 7.3477, 7.348, 7.3475, 7.347, 7.3465, 7.3462, 7.3459, 7.3453, 7.3449, 7.3443, 7.344, 7.3435, 7.343, 7.3424, 7.3418, 7.3412, 7.3408, 7.3403, 7.3412, 7.3408, 7.3403, 7.3398, 7.3393, 7.3402, 7.3384, 7.338, 7.3378, 7.3373, 7.3367, 7.3361, 7.3355, 7.3369, 7.338, 7.3376, 7.337, 7.3365, 7.336, 7.3355, 7.3365, 7.3366, 7.3347, 7.3344, 7.3341, 7.334, 7.3353, 7.3348, 7.3354, 7.3348, 7.3343, 7.3338, 7.3332, 7.3341, 7.3336, 7.3332, 7.3328, 7.3323, 7.3317, 7.3323, 7.3333, 7.3327, 7.3337, 7.3349, 7.3345, 7.334, 7.3322, 7.3334, 7.3331, 7.3328, 7.334, 7.3334, 7.3341, 7.3336, 7.3331, 7.3326, 7.3322, 7.3319, 7.3329, 7.3324, 7.3319, 7.333, 7.3325, 7.332, 7.3315, 7.3351, 7.336, 7.3355, 7.3352, 7.3352, 7.3364, 7.336, 7.3357, 7.3351, 7.3348, 7.3358, 7.3368, 7.3369, 7.3366, 7.3362, 7.3357, 7.3354, 7.3364, 7.3372, 7.3367, 7.3362, 7.3357, 7.3367, 7.3363, 7.3373, 7.3367, 7.3377, 7.3372, 7.3368, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3363, 7.3346, 7.3355, 7.3363, 7.3346, 7.3397, 7.3392, 7.3389, 7.3384, 7.3379, 7.3389, 7.3383, 7.3378, 7.3373, 7.3368, 7.3364, 7.3359, 7.3363, 7.3366, 7.3362, 7.3359, 7.3363, 7.3359, 7.3357, 7.3366, 7.3374, 7.3389, 7.3387, 7.3383, 7.338, 7.3375, 7.3384, 7.3379, 7.3373, 7.3368, 7.335, 7.336, 7.3356, 7.3353, 7.3378, 7.3373, 7.3382, 7.3378, 7.3388, 7.3383, 7.3379, 7.3374, 7.3383, 7.3379, 7.3375, 7.337, 7.3366, 7.336, 7.3355, 7.3353, 7.3362, 7.3358, 7.3368, 7.3363, 7.3359, 7.3355, 7.3352, 7.3349, 7.3348, 7.338, 7.3388, 7.3384, 7.338, 7.3376, 7.3372, 7.3366, 7.3362, 7.3374, 7.337, 7.3365, 7.3363, 7.3372, 7.3369, 7.3353, 7.3349, 7.3361, 7.3358, 7.3368, 7.3376, 7.3371, 7.3394, 7.3391, 7.34, 7.3396, 7.3392, 7.34, 7.3396, 7.3391, 7.34, 7.3398, 7.3408, 7.3417, 7.3426, 7.342, 7.3415, 7.341, 7.3404, 7.3399, 7.3393, 7.3391, 7.3399, 7.3408, 7.3417, 7.3414, 7.3409, 7.3404, 7.3414, 7.341, 7.3406, 7.3404, 7.3399, 7.3395, 7.339, 7.3385, 7.3411, 7.3393, 7.3388, 7.3397, 7.3393, 7.3403, 7.3458, 7.3453, 7.3463, 7.3462, 7.3457, 7.3454, 7.3449, 7.3449, 7.3444, 7.3439, 7.3434, 7.3432, 7.3428, 7.3423, 7.3419, 7.3415, 7.3424, 7.3419, 7.3415, 7.341, 7.341, 7.3408, 7.3403, 7.3412, 7.3408, 7.3405, 7.3407, 7.3403, 7.3418, 7.3416, 7.3423, 7.3418, 7.3413, 7.3408, 7.3403, 7.3398, 7.3393, 7.339, 7.3391, 7.34, 7.3397, 7.3392, 7.3391, 7.3393, 7.3402, 7.341, 7.3419, 7.3428, 7.3435, 7.3444, 7.3452, 7.3475, 7.3498, 7.3494, 7.3489, 7.3485, 7.348, 7.3516, 7.3527, 7.3538, 7.3536, 7.3533, 7.3528, 7.3524, 7.352, 7.3516, 7.3525, 7.352, 7.3515, 7.3511, 7.3509, 7.3504, 7.3499, 7.3494, 7.3491, 7.3486, 7.3481, 7.3476, 7.3473, 7.3469, 7.3465, 7.346, 7.3469, 7.3464, 7.3462, 7.3457, 7.3457, 7.3453, 7.3449, 7.3444, 7.3439, 7.3436, 7.3432, 7.3427, 7.3424, 7.342, 7.3415, 7.3411, 7.3408, 7.3403, 7.3399, 7.3397, 7.3392, 7.3388, 7.3397, 7.3394, 7.3389, 7.3384, 7.338, 7.339, 7.3399, 7.3395, 7.3392, 7.3387, 7.3384, 7.3379, 7.3375, 7.337, 7.3365, 7.3375, 7.3371, 7.3366, 7.3362, 7.3357, 7.3379, 7.3374, 7.3383, 7.3378, 7.3374, 7.339, 7.3387, 7.3434, 7.343, 7.3427, 7.3436, 7.3432, 7.3427, 7.3435, 7.3432, 7.3427, 7.3422, 7.3417, 7.3413, 7.3412, 7.3407, 7.3402, 7.34, 7.3402, 7.3399, 7.3396, 7.3394, 7.3391, 7.3387, 7.3383, 7.3379, 7.3375, 7.3371, 7.3367, 7.3363, 7.3357, 7.3366, 7.3363, 7.3358, 7.3356, 7.3352, 7.3378, 7.3386, 7.3381, 7.3377, 7.3372, 7.3367, 7.3375, 7.337, 7.3379, 7.3406, 7.3402, 7.3399, 7.3409, 7.3405, 7.3408, 7.3403, 7.3399, 7.3402, 7.3411, 7.3407, 7.339, 7.3432, 7.3429, 7.3426, 7.3422, 7.3435, 7.3443, 7.3438, 7.3434, 7.343, 7.3426, 7.3452, 7.3448, 7.3444, 7.3439, 7.3453, 7.345, 7.3459, 7.3454, 7.347, 7.3467, 7.3463, 7.3477, 7.3485, 7.3482, 7.3477, 7.3473, 7.3481, 7.3476, 7.3485, 7.3481, 7.3484, 7.3482, 7.3478, 7.3473, 7.3457, 7.3453, 7.3451, 7.3448, 7.346, 7.3456, 7.3439, 7.3434, 7.3432, 7.3443, 7.3451, 7.346, 7.3457, 7.3466, 7.3461, 7.3456, 7.3466, 7.3474, 7.3469, 7.3464, 7.3473, 7.347, 7.3479, 7.3475, 7.3472, 7.3482, 7.348, 7.3475, 7.349, 7.3499, 7.3498, 7.3506, 7.3517, 7.3512, 7.3508, 7.3504, 7.3514, 7.351, 7.3505, 7.3501, 7.3496, 7.3492, 7.3501, 7.3497, 7.3494, 7.349, 7.3499, 7.3508, 7.3504, 7.35, 7.3495, 7.3504, 7.3501, 7.3509, 7.3517, 7.3512, 7.3507, 7.3502, 7.3497, 7.3505, 7.35, 7.3495, 7.3491, 7.3486, 7.3494, 7.3489, 7.3484, 7.3479, 7.3487, 7.3482, 7.348, 7.3476, 7.3472, 7.348, 7.3476, 7.3473, 7.3481, 7.3476, 7.3471, 7.3468, 7.3476, 7.3471, 7.3467, 7.3475, 7.3472, 7.3467, 7.3463, 7.3458, 7.3454, 7.345, 7.3459, 7.3457, 7.3453, 7.3448, 7.3443, 7.3438, 7.3447, 7.3442, 7.3464, 7.346, 7.3456, 7.3452, 7.3448, 7.3457, 7.3466, 7.3461, 7.3469, 7.3465, 7.3461, 7.3444, 7.3458, 7.3458, 7.3453, 7.345, 7.3472, 7.3501, 7.3498, 7.3506, 7.3502, 7.3514, 7.351, 7.3506, 7.3502, 7.3498, 7.3494, 7.3489, 7.3497, 7.3495, 7.349, 7.3485, 7.3482, 7.3477, 7.3474, 7.3469, 7.3464, 7.3459, 7.3464, 7.3459, 7.3455, 7.3451, 7.346, 7.3455, 7.3452, 7.3453, 7.3449, 7.3445, 7.344, 7.3435, 7.3445, 7.3441, 7.3437, 7.3433, 7.3429, 7.3425, 7.3435, 7.343, 7.3429, 7.3425, 7.343, 7.3458, 7.3455, 7.3451, 7.3447, 7.3442, 7.3437, 7.3434, 7.343, 7.3429, 7.3439, 7.3436, 7.342, 7.3418, 7.3414, 7.3423, 7.3419, 7.3427, 7.3422, 7.3418, 7.3414, 7.3409, 7.3405, 7.34, 7.3409, 7.3405, 7.3402, 7.3399, 7.344, 7.3448, 7.3456, 7.3464, 7.3461, 7.3457, 7.3452, 7.3436, 7.3445, 7.3443, 7.3438, 7.3435, 7.343, 7.3426, 7.3435, 7.3431, 7.3454, 7.3449, 7.3458, 7.3453, 7.345, 7.3445, 7.3443, 7.3451, 7.3449, 7.3446, 7.3467, 7.3465, 7.346, 7.3456, 7.3504, 7.3503, 7.3513, 7.3509, 7.3517, 7.3512, 7.3508, 7.3505, 7.3501, 7.3498, 7.3495, 7.3491, 7.3487, 7.3487, 7.3483, 7.348, 7.3476, 7.3472, 7.3468, 7.3484, 7.348, 7.3477, 7.3476, 7.3472, 7.3467, 7.3475, 7.3472, 7.3481, 7.3477, 7.3473, 7.3481, 7.3477, 7.3477, 7.3474, 7.347, 7.3465, 7.3463, 7.347, 7.3465, 7.346, 7.3456, 7.3452, 7.3459, 7.3467, 7.3463, 7.346, 7.3456, 7.3453, 7.345, 7.3447, 7.3443, 7.3439, 7.3434, 7.3429, 7.3479, 7.3475, 7.3471, 7.3468, 7.3476, 7.3491, 7.3488, 7.3508, 7.3503, 7.3498, 7.3483, 7.3479, 7.3475, 7.347, 7.3466, 7.3462, 7.3457, 7.3454, 7.3449, 7.3445, 7.3454, 7.345, 7.3447, 7.3459, 7.3468, 7.3477, 7.3486, 7.3495, 7.3491, 7.351, 7.3505, 7.35, 7.35, 7.3496, 7.3491, 7.3487, 7.3483, 7.3491, 7.3505, 7.35, 7.3495, 7.3492, 7.35, 7.3508, 7.3503, 7.3511, 7.3507, 7.3504, 7.3502, 7.351, 7.3518, 7.3513, 7.351, 7.3516, 7.3511, 7.3507, 7.3503, 7.3512, 7.3507, 7.3515, 7.3513, 7.3521, 7.3516, 7.3524, 7.3519, 7.3515, 7.3523, 7.3518, 7.3527, 7.3535, 7.3543, 7.3539, 7.3547, 7.3555, 7.3551, 7.355, 7.3546, 7.3544, 7.354, 7.3536, 7.3531, 7.3528, 7.3539, 7.3547, 7.3555, 7.3551, 7.3546, 7.3542, 7.3538, 7.3533, 7.3542, 7.3537, 7.3545, 7.3576, 7.3573, 7.3581, 7.3577, 7.3574, 7.3581, 7.3592, 7.3588, 7.3586, 7.3583, 7.3579, 7.3587, 7.3595, 7.359, 7.3598, 7.3594, 7.3602, 7.3597, 7.3605, 7.3613, 7.3609, 7.3605, 7.3601, 7.3609, 7.3618, 7.3613, 7.362, 7.3616, 7.3612, 7.3609, 7.3605, 7.3637, 7.3633, 7.3629, 7.3624, 7.3619, 7.3615, 7.363, 7.3656, 7.3663, 7.3658, 7.3653, 7.3649, 7.3645, 7.3642, 7.3638, 7.3634, 7.3664, 7.3662, 7.3658, 7.366, 7.3672, 7.3668, 7.3664, 7.3659, 7.3667, 7.3663, 7.366, 7.3667, 7.3669, 7.3664, 7.366, 7.3656, 7.3665, 7.3661, 7.3656, 7.3652, 7.3648, 7.3645, 7.3653, 7.3649, 7.3647, 7.3644, 7.3642, 7.365, 7.3646, 7.3642, 7.3662, 7.367, 7.3678, 7.3675, 7.371, 7.3705, 7.3701, 7.3708, 7.374, 7.3748, 7.3743, 7.3757, 7.3753, 7.375, 7.3758, 7.3758, 7.3754, 7.3739, 7.3734, 7.3729, 7.3738, 7.3736, 7.3731, 7.3716, 7.3723, 7.3731, 7.3727, 7.3735, 7.3731, 7.3728, 7.3735, 7.3755, 7.3751, 7.3748, 7.3744, 7.374, 7.3748, 7.3744, 7.3739, 7.3745, 7.3742, 7.374, 7.3737, 7.3733, 7.3743, 7.3739, 7.3734, 7.3742, 7.3738, 7.3734, 7.3743, 7.3739, 7.3736, 7.3733, 7.3729, 7.3736, 7.3732, 7.3742, 7.3738, 7.3734, 7.3742, 7.3739, 7.3743, 7.3767, 7.3765, 7.3761, 7.3758, 7.3754, 7.375, 7.3806, 7.3815, 7.3811, 7.3808, 7.3805, 7.3813, 7.3822, 7.3819, 7.3828, 7.3824, 7.3819, 7.3815, 7.3811, 7.3809, 7.3817, 7.3816, 7.3823, 7.382, 7.3816, 7.3813, 7.3821, 7.3829, 7.3837, 7.3835, 7.3833, 7.3832, 7.3828, 7.3837, 7.3834, 7.3829, 7.3825, 7.3821, 7.3816, 7.3824, 7.382, 7.3818, 7.3815, 7.3823, 7.3819, 7.3815, 7.381, 7.3818, 7.3814, 7.3822, 7.3819, 7.3827, 7.3823, 7.382, 7.3815, 7.3811, 7.3819, 7.3816, 7.3812, 7.3813, 7.382, 7.3816, 7.3816, 7.3813, 7.3809, 7.3807, 7.3803, 7.3799, 7.3795, 7.3804, 7.3812, 7.3821, 7.3817, 7.3814, 7.382, 7.3816, 7.3812, 7.3807, 7.3804, 7.3812, 7.3807, 7.3804, 7.38, 7.3796, 7.3803, 7.381, 7.3814, 7.3811, 7.3807, 7.3827, 7.3823, 7.382, 7.3852, 7.3848, 7.3845, 7.3853, 7.3849, 7.3846, 7.3843, 7.384, 7.3837, 7.3845, 7.3853, 7.3848, 7.3846, 7.3843, 7.3838, 7.3834, 7.3832, 7.3828, 7.3835, 7.3832, 7.3831, 7.3838, 7.3847, 7.3843, 7.3839, 7.3835, 7.3831, 7.3838, 7.3833, 7.3829, 7.3826, 7.3832, 7.3829, 7.3825, 7.3833, 7.3841, 7.3838, 7.3845, 7.383, 7.3827, 7.3823, 7.3819, 7.3826, 7.3833, 7.383, 7.3828, 7.3825, 7.3822, 7.3818, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3829, 7.3824, 7.3821, 7.3831, 7.3816, 7.3813, 7.381, 7.3806, 7.3813, 7.381, 7.3818, 7.3814, 7.3821, 7.3854, 7.3861, 7.3902, 7.391, 7.3908, 7.3905, 7.3901, 7.3898, 7.3894, 7.389, 7.3897, 7.3892, 7.3888, 7.3884, 7.3891, 7.3887, 7.3883, 7.3879, 7.3876, 7.3874, 7.3881, 7.3877, 7.3885, 7.3893, 7.389, 7.3886, 7.3884, 7.3881, 7.3888, 7.3918, 7.3914, 7.3915, 7.3916, 7.3922, 7.3919, 7.3924, 7.392, 7.3917, 7.3913, 7.3909, 7.3905, 7.3902, 7.3899, 7.3919, 7.3915, 7.3911, 7.3908, 7.3905, 7.3901, 7.391, 7.3906, 7.3903, 7.3899, 7.3896, 7.3902, 7.3899, 7.3906, 7.3913, 7.392, 7.3917, 7.3925, 7.3921, 7.3918, 7.3915, 7.3911, 7.3907, 7.3903, 7.391, 7.3906, 7.3902, 7.3898, 7.3939, 7.3935, 7.3942, 7.3939, 7.3946, 7.3943, 7.394, 7.3937, 7.3933, 7.3929, 7.3924, 7.392, 7.3916, 7.3912, 7.3919, 7.3926, 7.3934, 7.393, 7.3926, 7.3912, 7.3909, 7.3927, 7.3934, 7.3941, 7.3948, 7.3945, 7.3942, 7.394, 7.3936, 7.3934, 7.3952, 7.3951, 7.3948, 7.3945, 7.4008, 7.4004, 7.4, 7.3986, 7.3981, 7.3977, 7.3973, 7.397, 7.3966, 7.3962, 7.3959, 7.3955, 7.3951, 7.3947, 7.3943, 7.3951, 7.3946, 7.3955, 7.3952, 7.3949, 7.3945, 7.3959, 7.3956, 7.3999, 7.4008, 7.4026, 7.4025, 7.4032, 7.4029, 7.4036, 7.4034, 7.4033, 7.4037, 7.4045, 7.4041, 7.4038, 7.4036, 7.4032, 7.4039, 7.4036, 7.4044, 7.4041, 7.4038, 7.4045, 7.4044, 7.404, 7.4036, 7.4034, 7.403, 7.4037, 7.4044, 7.4041, 7.4038, 7.4024, 7.4032, 7.4039, 7.4046, 7.4043, 7.4051, 7.4058, 7.406, 7.4057, 7.4053, 7.4049, 7.4056, 7.4063, 7.4051, 7.4047, 7.4043, 7.4041, 7.4027, 7.4023, 7.4019, 7.4019, 7.4016, 7.4033, 7.4036, 7.4032, 7.4029, 7.4025, 7.4021, 7.4018, 7.4024, 7.402, 7.4017, 7.4024, 7.402, 7.4016, 7.4002, 7.3998, 7.3996, 7.4004, 7.4001, 7.3999, 7.3997, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3988, 7.3985, 7.3982, 7.3978, 7.3974, 7.3972, 7.3969, 7.3966, 7.3973, 7.397, 7.3967, 7.3963, 7.3965, 7.3962, 7.3969, 7.3976, 7.3973, 7.3969, 7.3965, 7.3972, 7.3968, 7.3965, 7.3961, 7.3957, 7.3954, 7.3951, 7.3958, 7.3954, 7.395, 7.3947, 7.3933, 7.394, 7.3937, 7.3933, 7.3929, 7.3926, 7.3922, 7.3919, 7.3926, 7.3923, 7.3909, 7.3906, 7.3902, 7.3909, 7.3916, 7.3913, 7.3909, 7.3916, 7.3923, 7.3919, 7.3915, 7.3912, 7.3908, 7.3904, 7.3911, 7.3908, 7.3905, 7.3901, 7.3898, 7.3895, 7.3892, 7.3888, 7.3884, 7.388, 7.3887, 7.3894, 7.3902, 7.3898, 7.3894, 7.389, 7.3888, 7.3884, 7.3882, 7.3889, 7.3885, 7.3882, 7.3889, 7.3885, 7.3892, 7.3913, 7.3919, 7.3915, 7.3912, 7.3909, 7.3907, 7.3903, 7.3901, 7.3898, 7.3895, 7.3902, 7.3899, 7.3895, 7.3891, 7.3887, 7.3894, 7.3901, 7.3907, 7.3914, 7.3932, 7.3949, 7.3945, 7.3941, 7.3948, 7.3944, 7.3942, 7.3938, 7.3934, 7.3932, 7.3928, 7.3957, 7.3944, 7.3962, 7.3959, 7.3977, 7.3974, 7.3972, 7.397, 7.3967, 7.3972, 7.3979, 7.3975, 7.3971, 7.3968, 7.3965, 7.3971, 7.3968, 7.3974, 7.3971, 7.3968, 7.3964, 7.396, 7.3957, 7.3954, 7.3951, 7.3958, 7.3955, 7.3954, 7.3952, 7.3948, 7.3947, 7.3943, 7.3939, 7.3935, 7.3931, 7.3928, 7.3935, 7.3932, 7.3919, 7.3917, 7.3914, 7.3911, 7.3908, 7.3904, 7.39, 7.3907, 7.3903, 7.3899, 7.3897, 7.3905, 7.3903, 7.39, 7.3907, 7.3915, 7.3912, 7.391, 7.3906, 7.3903, 7.3901, 7.3897, 7.3903, 7.39, 7.3896, 7.3893, 7.3889, 7.3886, 7.3894, 7.3893, 7.3893, 7.3889, 7.3886, 7.3884, 7.3892, 7.3899, 7.3897, 7.3927, 7.3924, 7.3921, 7.3929, 7.3925, 7.3926, 7.3922, 7.3919, 7.3905, 7.3902, 7.3899, 7.3896, 7.3887, 7.3883, 7.3881, 7.3877, 7.3873, 7.3871, 7.3867, 7.3875, 7.3874, 7.3881, 7.388, 7.3887, 7.3884, 7.388, 7.3876, 7.3873, 7.3871, 7.3879, 7.3876, 7.3874, 7.3871, 7.3878, 7.3875, 7.3872, 7.3868, 7.3875, 7.3882, 7.3869, 7.3866, 7.3864, 7.3861, 7.3858, 7.3854, 7.3851, 7.3848, 7.3845, 7.3854, 7.3851, 7.3847, 7.3853, 7.385, 7.3837, 7.3825, 7.3822, 7.3829, 7.3826, 7.3833, 7.383, 7.3826, 7.3824, 7.3821, 7.3818, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3798, 7.3795, 7.3792, 7.3799, 7.3796, 7.3813, 7.382, 7.3816, 7.3813, 7.3821, 7.382, 7.3826, 7.3833, 7.3829, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3841, 7.3837, 7.3833, 7.384, 7.3847, 7.3845, 7.3842, 7.3844, 7.384, 7.3838, 7.3834, 7.3841, 7.3838, 7.3834, 7.384, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.385, 7.3846, 7.3845, 7.3841, 7.3839, 7.3836, 7.3834, 7.3831, 7.3828, 7.3827, 7.3824, 7.3822, 7.3818, 7.3815, 7.3811, 7.3809, 7.3813, 7.3809, 7.3805, 7.3801, 7.3797, 7.3805, 7.3802, 7.3799, 7.3795, 7.3802, 7.3798, 7.3795, 7.3792, 7.3791, 7.3788, 7.3784, 7.3782, 7.377, 7.3768, 7.3775, 7.3771, 7.3768, 7.3766, 7.3773, 7.3769, 7.3776, 7.3772, 7.3769, 7.3766, 7.3764, 7.376, 7.3757, 7.3755, 7.3754, 7.375, 7.3748, 7.3755, 7.3762, 7.3758, 7.3755, 7.3752, 7.3748, 7.3735, 7.3734, 7.3732, 7.3739, 7.3736, 7.3733, 7.3732, 7.3729, 7.3737, 7.3743, 7.374, 7.3737, 7.3733, 7.373, 7.3728, 7.3724, 7.3721, 7.3717, 7.3716, 7.3712, 7.3708, 7.3706, 7.3702, 7.3709, 7.3696, 7.3702, 7.3708, 7.3704, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3728, 7.3734, 7.3731, 7.3728, 7.3725, 7.3722, 7.3719, 7.3719, 7.3715, 7.3721, 7.3717, 7.3724, 7.3721, 7.3727, 7.3723, 7.374, 7.3737, 7.3734, 7.373, 7.3737, 7.3765, 7.3762, 7.3769, 7.3765, 7.3771, 7.3767, 7.3773, 7.3779, 7.3786, 7.3782, 7.3779, 7.3776, 7.3783, 7.3789, 7.3785, 7.3802, 7.38, 7.3796, 7.3803, 7.382, 7.3816, 7.3833, 7.383, 7.3826, 7.3822, 7.3828, 7.3824, 7.382, 7.3826, 7.3833, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3833, 7.384, 7.3838, 7.3835, 7.3841, 7.3847, 7.3843, 7.3849, 7.3855, 7.3861, 7.3858, 7.3855, 7.3851, 7.3848, 7.3855, 7.3862, 7.3858, 7.3854, 7.385, 7.3847, 7.3843, 7.3839, 7.3837, 7.3834, 7.383, 7.3827, 7.3824, 7.382, 7.3817, 7.3823, 7.3819, 7.3826, 7.3822, 7.3828, 7.3825, 7.3821, 7.3817, 7.3813, 7.3809, 7.3816, 7.3813, 7.3821, 7.3819, 7.3827, 7.3834, 7.3831, 7.3828, 7.3825, 7.3821, 7.3827, 7.3824, 7.3823, 7.383, 7.3827, 7.3824, 7.3821, 7.3817, 7.3823], '192.168.122.114': [10.659, 7.9768, 7.2521, 6.8601, 6.6943, 6.5908, 6.4914, 6.3863, 6.2582, 6.1833, 6.5629, 6.8982, 6.8205, 7.1645, 7.0342, 7.2808, 7.8222, 7.7088, 7.5989, 7.8443, 7.5187, 7.2045, 7.2171, 7.1415, 7.3198, 7.2736, 7.2028, 7.1439, 7.094, 7.048, 6.9936, 7.4576, 7.4126, 7.422, 7.5326, 7.5139, 7.475, 7.4167, 7.3863, 7.3442, 7.3047, 7.2591, 7.2351, 7.2003, 7.1796, 7.1567, 7.2283, 7.2985, 7.3786, 7.3456, 7.3048, 7.3748, 7.3439, 7.5064, 7.572, 7.6308, 7.6894, 7.6592, 7.6341, 7.602, 7.5729, 7.535, 7.5892, 7.5537, 7.538, 7.5043, 7.4733, 7.6966, 7.7399, 7.8084, 7.7749, 7.7456, 7.7324, 7.702, 7.6719, 7.6408, 7.6823, 7.7227, 7.6321, 7.6032, 7.6414, 7.6147, 7.5893, 7.6085, 7.582, 7.5583, 7.5576, 7.5339, 7.5105, 7.4872, 7.4661, 7.453, 7.4427, 7.4797, 7.4631, 7.441, 7.4204, 7.4048, 7.385, 7.3652, 7.3476, 7.3284, 7.3595, 7.3921, 7.3796, 7.361, 7.3959, 7.3913, 7.3864, 7.3749, 7.3559, 7.3439, 7.3332, 7.2745, 7.305, 7.2887, 7.2786, 7.2628, 7.2516, 7.2381, 7.2291, 7.2957, 7.3279, 7.3596, 7.3427, 7.3351, 7.3231, 7.3166, 7.3033, 7.2896, 7.2747, 7.3478, 7.3436, 7.331, 7.3185, 7.3101, 7.2956, 7.2962, 7.2886, 7.2779, 7.266, 7.2571, 7.2488, 7.2372, 7.2258, 7.213, 7.1996, 7.1906, 7.1842, 7.1718, 7.1634, 7.1526, 7.1417, 7.1368, 7.125, 7.1203, 7.1507, 7.1461, 7.1346, 7.1268, 7.1222, 7.1442, 7.137, 7.1263, 7.116, 7.1051, 7.0947, 7.085, 7.0752, 7.0649, 7.0868, 7.0808, 7.0745, 7.0648, 7.0579, 7.052, 7.0887, 7.0816, 7.0796, 7.0712, 7.0608, 7.053, 7.0462, 7.049, 7.0409, 7.0356, 7.0286, 7.0218, 7.0568, 7.0522, 7.0757, 7.0702, 7.0908, 7.0811, 7.074, 7.0464, 7.0382, 7.0355, 7.0277, 7.0193, 7.020300000000001, 7.0148, 7.0094, 7.0021, 6.9951, 6.989, 6.9864, 6.9861, 7.0048, 6.9992, 6.9976, 7.0183, 7.034, 7.0258, 7.0179, 7.036, 7.0277, 7.0466, 7.0639, 7.0816, 7.0744, 7.0929, 7.0939000000000005, 7.0907, 7.0835, 7.1006, 7.0931, 7.0864, 7.0796, 7.0835, 7.0795, 7.0745, 7.0717, 7.0729, 7.0877, 7.0828, 7.0767, 7.0732, 7.0665, 7.0609, 7.065, 7.061, 7.0589, 7.0425, 7.0415, 7.0387, 7.0316, 7.0249, 7.0206, 7.0163, 7.0101, 7.0095, 7.0667, 7.0817, 7.0761, 7.0569, 7.05, 7.0542, 7.055, 7.057, 7.0544, 7.0493, 7.0467, 7.0628, 7.0563, 7.0515, 7.0465, 7.0405, 7.0346, 7.0444, 7.0398, 7.0349, 7.031, 7.0079, 7.0022, 6.9989, 7.0116, 7.0101, 7.0122, 7.0062, 7.0005, 6.9961, 6.9912, 6.9871, 6.9825, 6.9963, 6.994, 6.991, 6.9881, 6.9823, 6.9769, 6.9759, 6.9704, 6.9832, 6.98, 6.9747, 6.9692, 6.9636, 6.9585, 6.9534, 6.9501, 6.9626, 6.9751, 6.9872, 6.9997, 6.9943, 6.9895, 7.0028, 6.9972, 7.0085, 7.0214, 7.0348, 7.0297, 7.0292, 7.0238, 7.0183, 7.0299, 7.042, 7.0424, 7.0371, 7.033, 7.0299, 7.0248, 7.0195, 7.0148, 7.0095, 7.0046, 6.9997, 6.9948, 6.9902, 6.9851, 6.9967, 7.0084, 7.0054, 7.0008, 7.0121, 7.0092, 7.0206, 7.0167, 7.0118, 7.0248, 7.0059, 7.0164, 7.0275, 7.0224, 7.0326, 7.0292, 7.0103, 7.0065, 7.089, 7.1072, 7.1284, 7.1498, 7.1445, 7.142, 7.1385, 7.1483, 7.1447, 7.1401, 7.1379, 7.1347, 7.145, 7.1409, 7.1429, 7.1289, 7.1391, 7.1367, 7.1324, 7.1302, 7.1395, 7.1485, 7.1444, 7.1398, 7.1365, 7.119, 7.1158, 7.1264, 7.1386, 7.1355, 7.1488, 7.1439, 7.1541, 7.1502, 7.1463, 7.1428, 7.1524, 7.1495, 7.1456, 7.1424, 7.1445, 7.1396, 7.1483, 7.1437, 7.1398, 7.1433, 7.1389, 7.1504, 7.1463, 7.1436, 7.1537, 7.1492, 7.1474, 7.1457, 7.1422, 7.1385, 7.1347, 7.1445, 7.1406, 7.1387, 7.1345, 7.1427, 7.1416, 7.1407, 7.1389, 7.1481, 7.1563, 7.1528, 7.1502, 7.1461, 7.1546, 7.1507, 7.1597, 7.1559, 7.1539, 7.1542, 7.1498, 7.1717, 7.1679, 7.1635, 7.1595, 7.1446, 7.1528, 7.1612, 7.1571, 7.1535, 7.1512, 7.159, 7.1442, 7.1402, 7.136, 7.1325, 7.1399, 7.1366, 7.1444, 7.1418, 7.1381, 7.1342, 7.1302, 7.1264, 7.1224, 7.1199, 7.1163, 7.1021, 7.1096, 7.1179, 7.1154, 7.1118, 7.1194, 7.1159, 7.1272, 7.1353, 7.1313, 7.1173, 7.1133, 7.115, 7.125, 7.1219, 7.1301, 7.1263, 7.1337, 7.13, 7.1261, 7.1224, 7.1188, 7.1151, 7.1112, 7.1076, 7.1162, 7.1125, 7.1097, 7.1071, 7.1046, 7.1025, 7.0997, 7.0962, 7.0942, 7.0911, 7.0989, 7.0955, 7.0943, 7.0907, 7.0879, 7.085, 7.0816, 7.0789, 7.0866, 7.0838, 7.0915, 7.088, 7.0862, 7.0835, 7.0901, 7.0867, 7.084, 7.0805, 7.0883, 7.0851, 7.0861, 7.094, 7.0906, 7.0973, 7.1039, 7.1037, 7.1005, 7.0974, 7.0943, 7.0907, 7.0875, 7.0941, 7.0912, 7.088, 7.095, 7.0919, 7.0887, 7.0958, 7.1026, 7.0909, 7.0981, 7.0949, 7.0923, 7.0896, 7.0969, 7.0949, 7.0968, 7.0938, 7.0906, 7.0873, 7.0855, 7.0891, 7.0859, 7.1143, 7.1117, 7.1084, 7.1056, 7.1066, 7.1036, 7.1102, 7.108, 7.1148, 7.1127, 7.1108, 7.1075, 7.1052, 7.102, 7.1089, 7.1156, 7.1127, 7.1094, 7.1077, 7.1048, 7.1036, 7.1103, 7.1168, 7.1136, 7.1121, 7.1104, 7.1075, 7.1142, 7.1125, 7.1054, 7.1024, 7.1094, 7.1064, 7.1047, 7.1112, 7.1173, 7.1142, 7.111, 7.1082, 7.1056, 7.1036, 7.1042, 7.0956, 7.0932, 7.0902, 7.1079, 7.1235, 7.1204, 7.1174, 7.1153, 7.1127, 7.1282, 7.1253, 7.1415, 7.1328, 7.1301, 7.1273, 7.1352, 7.1325, 7.1394, 7.1405, 7.139, 7.146, 7.143, 7.1409, 7.1385, 7.1369, 7.1354, 7.141, 7.139, 7.1453, 7.1452, 7.1457, 7.1428, 7.1401, 7.1407, 7.139, 7.1374, 7.1348, 7.1318, 7.1379, 7.1554, 7.1628, 7.1621, 7.1987, 7.1963, 7.2005, 7.1981, 7.2039, 7.2099, 7.2076, 7.2135, 7.2115, 7.2092, 7.208, 7.2063, 7.2036, 7.2081, 7.2052, 7.204, 7.2094, 7.2078, 7.2075, 7.2135, 7.2186, 7.217, 7.214, 7.2125, 7.2105, 7.2076, 7.2047, 7.1952, 7.1923, 7.1895, 7.1866, 7.184, 7.1903, 7.1973, 7.2036, 7.2211, 7.2203, 7.2257, 7.2235, 7.2284, 7.2187, 7.2164, 7.2141, 7.2114, 7.2162, 7.2133, 7.2113, 7.2162, 7.2133, 7.2036, 7.2094, 7.2067, 7.2116, 7.2092, 7.2072, 7.2049, 7.1956, 7.1929, 7.1903, 7.1959, 7.2011, 7.2033, 7.2028, 7.2002, 7.198, 7.2033, 7.2007, 7.1979, 7.2034, 7.2008, 7.1985, 7.196, 7.1934, 7.203, 7.2018, 7.1991, 7.1974, 7.2055, 7.2111, 7.216, 7.2205, 7.2192, 7.2186, 7.2172, 7.2145, 7.2134, 7.2107, 7.2153, 7.2204, 7.2178, 7.2157, 7.2205, 7.2186, 7.2162, 7.2134, 7.2108, 7.2085, 7.2066, 7.2041, 7.2022, 7.2001, 7.1978, 7.1954, 7.1927, 7.1912, 7.1891, 7.1869, 7.1922, 7.1976, 7.2029, 7.2006, 7.1916, 7.19, 7.1886, 7.1869, 7.1926, 7.1903, 7.1881, 7.1929, 7.1917, 7.1991, 7.2334, 7.2315, 7.2298, 7.2303, 7.2349, 7.2325, 7.2372, 7.2347, 7.2327, 7.2307, 7.2361, 7.2336, 7.2385, 7.236, 7.2343, 7.2329, 7.2264, 7.2382, 7.2366, 7.2357, 7.2567, 7.257, 7.2546, 7.2599, 7.2675, 7.2653, 7.2629, 7.2608, 7.2654, 7.2699, 7.2811, 7.2857, 7.2831, 7.2818, 7.2806, 7.2789, 7.2836, 7.2811, 7.2855, 7.2832, 7.2817, 7.28, 7.2846, 7.289, 7.2867, 7.2844, 7.276, 7.2803, 7.2781, 7.2758, 7.2736, 7.2782, 7.2772, 7.2752, 7.2793, 7.2776, 7.2755, 7.2734, 7.2712, 7.2689, 7.2665, 7.2647, 7.2733, 7.2778, 7.2761, 7.2744, 7.2724, 7.2885, 7.3025, 7.3002, 7.3045, 7.3021, 7.2998, 7.3008, 7.2987, 7.2968, 7.2955, 7.2933, 7.2908, 7.2884, 7.286, 7.2842, 7.2942, 7.2918, 7.2895, 7.2871, 7.2857, 7.2964, 7.2941, 7.2919, 7.2975, 7.2954, 7.2995, 7.3047, 7.309, 7.313, 7.3177, 7.316, 7.3137, 7.3182, 7.3166, 7.3169, 7.3148, 7.3135, 7.3111, 7.3089, 7.3066, 7.3054, 7.3041, 7.3025, 7.2947, 7.2925, 7.2908, 7.2955, 7.2933, 7.2911, 7.2895, 7.2875, 7.2851, 7.2838, 7.2881, 7.2857, 7.2836, 7.2815, 7.2738, 7.2761, 7.2739, 7.2663, 7.2703, 7.2688, 7.2673, 7.2656, 7.2641, 7.2619, 7.2597, 7.2575, 7.256, 7.2549, 7.2548, 7.2533, 7.2512, 7.2548, 7.253, 7.2513, 7.2492, 7.2474, 7.2453, 7.2434, 7.2419, 7.2411, 7.2393, 7.2455, 7.2435, 7.2508, 7.2588, 7.253, 7.2514, 7.2498, 7.2441, 7.2419, 7.2405, 7.246, 7.245, 7.2429, 7.2428, 7.2467, 7.2455, 7.2437, 7.243, 7.2423, 7.2654, 7.2635, 7.2621, 7.2601, 7.259, 7.2572, 7.255, 7.255, 7.2568, 7.2555, 7.2535, 7.2574, 7.2554, 7.2539, 7.2527, 7.2508, 7.2488, 7.2473, 7.2458, 7.2438, 7.2418, 7.2406, 7.2387, 7.2367, 7.2354, 7.234, 7.2319, 7.2299, 7.2286, 7.2274, 7.2255, 7.2185, 7.2224, 7.2215, 7.2196, 7.219, 7.2179, 7.2164, 7.2145, 7.2131, 7.2112, 7.2116, 7.2096, 7.2134, 7.2116, 7.2104, 7.2085, 7.2068, 7.2053, 7.2148, 7.2133, 7.2162, 7.2148, 7.2129, 7.2196, 7.2182, 7.2219, 7.22, 7.2182, 7.2164, 7.2146, 7.2129, 7.212, 7.2161, 7.2214, 7.2195, 7.2195, 7.2177, 7.2166, 7.2223, 7.2227, 7.2225, 7.2207, 7.2196, 7.2384, 7.2377, 7.2435, 7.2472, 7.2457, 7.2493, 7.2473, 7.2453, 7.2442, 7.2475, 7.2458, 7.2441, 7.2422, 7.2456, 7.2437, 7.2418, 7.2353, 7.2387, 7.2367, 7.235, 7.2282, 7.2278, 7.231, 7.2293, 7.2275, 7.2258, 7.224, 7.2221, 7.2209, 7.2245, 7.2235, 7.2218, 7.2204, 7.2205, 7.2157, 7.2153, 7.2141, 7.2177, 7.2208, 7.2192, 7.2192, 7.2228, 7.2209, 7.2192, 7.2227, 7.2208, 7.2189, 7.2173, 7.2429, 7.2477, 7.2462, 7.2444, 7.2427, 7.2411, 7.2453, 7.2389, 7.2372, 7.2358, 7.234, 7.2322, 7.2305, 7.2342, 7.2377, 7.2363, 7.2345, 7.2339, 7.232, 7.2305, 7.2292, 7.228, 7.2262, 7.2244, 7.2293, 7.2335, 7.2321, 7.2301, 7.2293, 7.2386, 7.2374, 7.2362, 7.2349, 7.2384, 7.2365, 7.2349, 7.2331, 7.2317, 7.2301, 7.2283, 7.2315, 7.2302, 7.2295, 7.2305, 7.2297, 7.2284, 7.2267, 7.2251, 7.2237, 7.2227, 7.2259, 7.2292, 7.2275, 7.2261, 7.2294, 7.2327, 7.231, 7.2301, 7.229, 7.2277, 7.2263, 7.2255, 7.2263, 7.2251, 7.2241, 7.2223, 7.2207, 7.2191, 7.2183, 7.2172, 7.216, 7.2154, 7.2137, 7.2129, 7.2162, 7.2151, 7.2143, 7.2128, 7.2163, 7.2151, 7.214, 7.2131, 7.2074, 7.2064, 7.2054, 7.2038, 7.2068, 7.2066, 7.2055, 7.2091, 7.2076, 7.2112, 7.21, 7.2084, 7.207, 7.2053, 7.2037, 7.2026, 7.2057, 7.2043, 7.2032, 7.2067, 7.2102, 7.2087, 7.2073, 7.2103, 7.2092, 7.2081, 7.2068, 7.2053, 7.2039, 7.2027, 7.2013, 7.2007, 7.207, 7.2056, 7.2108, 7.2096, 7.208, 7.2065, 7.2099, 7.2093, 7.2078, 7.2062, 7.2098, 7.2082, 7.207, 7.2053, 7.2042, 7.2072, 7.2055, 7.2038, 7.2021, 7.2049, 7.2044, 7.2051, 7.2035, 7.2063, 7.2047, 7.203, 7.2013, 7.2042, 7.1992, 7.2022, 7.2008, 7.1992, 7.1976, 7.1963, 7.1993, 7.2023, 7.2006, 7.2036, 7.1983, 7.1974, 7.1959, 7.1988, 7.198, 7.201, 7.2038, 7.2022, 7.2006, 7.1991, 7.2066, 7.2052, 7.2082, 7.2067, 7.2054, 7.204, 7.1985, 7.1968, 7.1998, 7.2027, 7.1972, 7.1962, 7.1946, 7.1936, 7.1926, 7.191, 7.1896, 7.1886, 7.183, 7.1863, 7.1899, 7.1887, 7.1874, 7.1862, 7.1846, 7.1838, 7.1829, 7.1816, 7.1808, 7.1799, 7.1794, 7.1787, 7.1783, 7.1776, 7.176, 7.1747, 7.178, 7.1772, 7.1763, 7.1752, 7.1737, 7.1769, 7.1758, 7.1749, 7.1737, 7.1723, 7.1708, 7.1735, 7.1683, 7.1669, 7.1655, 7.1645, 7.1636, 7.1622, 7.1612, 7.1597, 7.1582, 7.1568, 7.1596, 7.1624, 7.1611, 7.16, 7.1591, 7.1579, 7.1565, 7.1556, 7.1544, 7.1543, 7.1543, 7.1493, 7.1485, 7.1503, 7.1496, 7.1492, 7.1477, 7.1466, 7.147600000000001, 7.1466, 7.1453, 7.144, 7.1437, 7.1428, 7.1455, 7.1443, 7.1434, 7.1419, 7.1404, 7.1393, 7.1382, 7.1449, 7.1434, 7.1423, 7.1409, 7.1366, 7.1352, 7.1338, 7.1328, 7.1316, 7.1303, 7.1289, 7.1318, 7.1328000000000005, 7.133800000000001, 7.1368, 7.1414, 7.1374, 7.1403, 7.1393, 7.1382, 7.1372, 7.1367, 7.1357, 7.1346, 7.1386, 7.1435, 7.1425, 7.1416, 7.1443, 7.1452, 7.1482, 7.151, 7.1501, 7.149, 7.1565, 7.1595, 7.1583, 7.1574, 7.156, 7.1554, 7.1582, 7.1592, 7.1579, 7.1546, 7.1573, 7.1597, 7.1624, 7.1611, 7.1599, 7.1585, 7.1575, 7.1561, 7.1548, 7.155, 7.158, 7.1604, 7.163, 7.1623, 7.1613, 7.161, 7.1602, 7.1596, 7.1583, 7.1569, 7.1599, 7.1585, 7.161, 7.1603, 7.159, 7.1578, 7.1567, 7.157, 7.1559, 7.1546, 7.1539, 7.1532, 7.1521, 7.1512, 7.15, 7.1527, 7.153700000000001, 7.1524, 7.1513, 7.15, 7.1452, 7.1479, 7.1474, 7.1462, 7.1682, 7.1669, 7.1656, 7.1644, 7.1637, 7.1645, 7.1676, 7.1663, 7.1689, 7.1676, 7.1672, 7.1658, 7.1645, 7.1633, 7.1625, 7.1621, 7.1612, 7.1605, 7.1631, 7.1618, 7.1609, 7.1598, 7.1591, 7.1543, 7.1531, 7.1519, 7.1515, 7.154, 7.1538, 7.1532, 7.1559, 7.1548, 7.1539, 7.1526, 7.1514, 7.1538, 7.1491, 7.1479, 7.1467, 7.1461, 7.1449, 7.1442, 7.1433, 7.1456, 7.1483, 7.147, 7.1458, 7.1449, 7.1437, 7.1426, 7.1413, 7.1405, 7.136, 7.1347, 7.137, 7.1357, 7.1356, 7.1349, 7.1347, 7.1345, 7.1371, 7.1364, 7.1353, 7.1365, 7.1353, 7.1341, 7.1335, 7.1359, 7.1351, 7.138, 7.1369, 7.1361, 7.1317, 7.1343, 7.1333, 7.1324, 7.1318, 7.1315, 7.1325, 7.1314, 7.134, 7.1366, 7.1392, 7.1452, 7.144, 7.143, 7.1435, 7.1448, 7.1436, 7.1428, 7.1417, 7.1406, 7.1399, 7.1389, 7.1379, 7.1344, 7.1373, 7.1337, 7.1329, 7.1325, 7.1316, 7.1342, 7.1367, 7.1323, 7.1316, 7.1307, 7.1333, 7.1325, 7.1313, 7.1309, 7.1406, 7.1393, 7.1422, 7.1409, 7.1432, 7.1431, 7.1422, 7.1413, 7.1404, 7.1393, 7.1384, 7.1374, 7.1364, 7.1353, 7.1344, 7.1337, 7.1324, 7.1315, 7.1307, 7.1332, 7.1325, 7.135, 7.1339, 7.1329, 7.1321, 7.1344, 7.1369, 7.1357, 7.1346, 7.134, 7.1365, 7.136, 7.1385, 7.141, 7.1399, 7.1356, 7.1369, 7.1358, 7.1348, 7.1377, 7.1365, 7.1371, 7.1328, 7.1352, 7.1377, 7.1473, 7.1498, 7.1561, 7.1591, 7.1582, 7.1573, 7.1562, 7.155, 7.1541, 7.1541, 7.1609, 7.1598, 7.1658, 7.172, 7.1745, 7.1734, 7.1725, 7.1717, 7.1712, 7.1703, 7.1799, 7.1787, 7.1778, 7.1766, 7.1756, 7.1749, 7.1773, 7.1796, 7.1785, 7.1848, 7.1837, 7.1826, 7.1815, 7.1837, 7.1829, 7.1827, 7.1817, 7.1805, 7.1795, 7.1783, 7.1771, 7.1765, 7.1788, 7.1781, 7.1772, 7.176, 7.1749, 7.1778, 7.1804, 7.1793, 7.1787, 7.1812, 7.181, 7.1799, 7.1767, 7.179, 7.1813, 7.1805, 7.1793, 7.1815, 7.1837, 7.1863, 7.1904, 7.1925, 7.1913, 7.1903, 7.1894, 7.1897, 7.1886, 7.1878, 7.1911, 7.1899, 7.1907, 7.1896, 7.1885, 7.1882, 7.1871, 7.1871, 7.186, 7.185, 7.184, 7.1832, 7.1821, 7.1816, 7.1775, 7.1785000000000005, 7.1777, 7.18, 7.1791, 7.1813, 7.1803, 7.1799, 7.179, 7.1846, 7.1836, 7.1826, 7.1848, 7.1843, 7.1833, 7.1841, 7.1834, 7.1838, 7.1841, 7.1839, 7.1828, 7.1819, 7.1839, 7.186, 7.1853, 7.1813, 7.1804, 7.1799, 7.1823, 7.1818, 7.1844, 7.1865, 7.1854, 7.1845, 7.1867, 7.1959, 7.196, 7.1982, 7.1972, 7.1962, 7.1987, 7.1982, 7.2003, 7.1991, 7.1982, 7.2002, 7.1991, 7.199, 7.2012, 7.2005, 7.1998, 7.199, 7.1979, 7.1976, 7.1968, 7.1957, 7.1949, 7.194, 7.193, 7.1985, 7.1975, 7.1972, 7.1963, 7.1954, 7.1982, 7.2004, 7.2025, 7.2015, 7.2036, 7.2058, 7.2046, 7.2006, 7.1995, 7.2015, 7.2004, 7.1993, 7.1952, 7.1973, 7.201, 7.2031, 7.2052, 7.2059, 7.2049, 7.2043, 7.2065, 7.2089, 7.2083, 7.2104, 7.2093, 7.2134, 7.2158, 7.2149, 7.2142, 7.2135, 7.2126, 7.2114, 7.2109, 7.2139, 7.2127, 7.2121, 7.214, 7.2161, 7.215, 7.214, 7.2161, 7.215, 7.2139, 7.2128, 7.2117, 7.2109, 7.2099, 7.2093, 7.2084, 7.2105, 7.2125, 7.2114, 7.2108, 7.21, 7.2089, 7.2082, 7.2102, 7.2092, 7.2083, 7.2077, 7.2069, 7.2062, 7.2054, 7.2073, 7.2067, 7.2085, 7.2074, 7.2095, 7.2088, 7.2078, 7.2068, 7.2062, 7.2083, 7.2073, 7.2093, 7.2113, 7.2104, 7.2094, 7.2084, 7.2105, 7.2098, 7.2086, 7.2075, 7.2079, 7.2069, 7.206, 7.2079, 7.2102, 7.2092, 7.2081, 7.207, 7.2061, 7.2057, 7.2051, 7.2046, 7.2036, 7.2026, 7.2015, 7.201, 7.2007, 7.1997, 7.1989, 7.1979, 7.1971, 7.196, 7.1978, 7.1998, 7.2019, 7.2045, 7.2037, 7.2059, 7.2052, 7.2043, 7.2033, 7.2055, 7.2074, 7.2064, 7.2083, 7.2102, 7.2122, 7.2116, 7.2106, 7.2126, 7.2118, 7.2109, 7.2099, 7.2095, 7.2084, 7.2076, 7.2067, 7.2057, 7.2162, 7.2152, 7.2141, 7.2157, 7.2175, 7.2166, 7.2159, 7.2149, 7.2168, 7.2162, 7.2155, 7.2148, 7.2145, 7.2164, 7.2156, 7.2174, 7.2167, 7.2187, 7.2177, 7.2168, 7.216, 7.218, 7.2199, 7.2224, 7.2214, 7.2207, 7.2201, 7.2221, 7.224, 7.2232, 7.2253, 7.2244, 7.2237, 7.2258, 7.2249, 7.2242, 7.2236, 7.2241, 7.2233, 7.2224, 7.2259, 7.2249, 7.2239, 7.2232, 7.2252, 7.2242, 7.2234, 7.2224, 7.2216, 7.2205, 7.2198, 7.219, 7.2208, 7.2201, 7.2193, 7.2188, 7.2193, 7.2212, 7.2201, 7.2191, 7.2223, 7.2217, 7.2211, 7.2205, 7.2198, 7.2189, 7.218, 7.2172, 7.217, 7.2161, 7.2172, 7.2191, 7.2211, 7.2231, 7.2222, 7.2213, 7.2188, 7.2178, 7.2144, 7.2136, 7.2128, 7.2118, 7.2118, 7.2108, 7.2216, 7.2208, 7.2198, 7.2192, 7.2182, 7.2173, 7.2166, 7.2161, 7.2183, 7.2176, 7.2166, 7.2158, 7.2209, 7.2199, 7.2194, 7.219, 7.218, 7.2201, 7.2326, 7.2319, 7.2339, 7.2331, 7.2324, 7.2315, 7.2305, 7.2307, 7.23, 7.2295, 7.229, 7.2284, 7.2276, 7.2266, 7.226, 7.225, 7.2268, 7.2262, 7.2253, 7.2247, 7.2237, 7.2227, 7.2223, 7.2216, 7.2209, 7.2175, 7.2165, 7.2158, 7.2149, 7.214, 7.2137, 7.2128, 7.2135, 7.213, 7.2123, 7.2139, 7.213, 7.2154, 7.2152, 7.2143, 7.2162, 7.2156, 7.2175, 7.2166, 7.2158, 7.2176, 7.2166, 7.2158, 7.215, 7.2169, 7.2163, 7.218, 7.2177, 7.217, 7.2163, 7.2155, 7.2173, 7.2196, 7.2215, 7.2233, 7.2226, 7.2216, 7.2209, 7.2229, 7.2221, 7.2213, 7.2206, 7.2225, 7.2242, 7.2233, 7.2251, 7.2244, 7.2263, 7.2253, 7.2244, 7.2235, 7.2226, 7.2244, 7.2234, 7.2225, 7.2216, 7.2206, 7.2224, 7.2216, 7.2209, 7.2208, 7.2202, 7.2194, 7.2189, 7.2184, 7.218, 7.217, 7.2188, 7.2182, 7.2173, 7.2163, 7.2129, 7.2124, 7.2145, 7.214, 7.2132, 7.2124, 7.2133, 7.2128, 7.2119, 7.2228, 7.2218, 7.2213, 7.2203, 7.2193, 7.2212, 7.2207, 7.2227, 7.2245, 7.2238, 7.2256, 7.2247, 7.2242, 7.226, 7.2252, 7.2245, 7.2263, 7.2253, 7.2247, 7.224, 7.2231, 7.2248, 7.2265, 7.2233, 7.2226, 7.2238, 7.223, 7.2224, 7.222, 7.221, 7.2202, 7.2195, 7.2186, 7.2177, 7.2171, 7.2163, 7.2154, 7.2145, 7.2162, 7.2158, 7.2149, 7.2139, 7.2134, 7.2126, 7.2117, 7.2112, 7.2102, 7.2094, 7.2088, 7.2106, 7.21, 7.2094, 7.2086, 7.208, 7.2072, 7.2077, 7.2068, 7.206, 7.2051, 7.2042, 7.2059, 7.2054, 7.2048, 7.2039, 7.2034, 7.2027, 7.2018, 7.2038, 7.201, 7.202, 7.2012, 7.2031, 7.2025, 7.2044, 7.2044, 7.2035, 7.2051, 7.2072, 7.2066, 7.2058, 7.2052, 7.2043, 7.2041, 7.2059, 7.2051, 7.2041, 7.2032, 7.2031, 7.2027, 7.202, 7.2011, 7.2004, 7.2, 7.1992, 7.1997, 7.1992, 7.2012, 7.2004, 7.1995, 7.2029, 7.202, 7.2011, 7.2003, 7.1995, 7.1989, 7.1987, 7.1981, 7.1972, 7.1964, 7.1955, 7.1947, 7.1939, 7.193, 7.1947, 7.194, 7.1957, 7.2001, 7.2076, 7.2093, 7.2084, 7.2101, 7.2097, 7.2088, 7.2079, 7.2052, 7.2048, 7.2065, 7.2057, 7.2075, 7.2081, 7.2076, 7.2045, 7.2036, 7.2029, 7.2046, 7.2063, 7.2082, 7.2075, 7.2109, 7.21, 7.2092, 7.2084, 7.2079, 7.2074, 7.2066, 7.2061, 7.2055, 7.2072, 7.2065, 7.2064, 7.2058, 7.2051, 7.2088, 7.2081, 7.21, 7.2093, 7.2087, 7.213, 7.2147, 7.2141, 7.2158, 7.2175, 7.2168, 7.2161, 7.2154, 7.2172, 7.2165, 7.2161, 7.2153, 7.2147, 7.2162, 7.2301, 7.2309, 7.2325, 7.2318, 7.2311, 7.2305, 7.2335, 7.2305, 7.232, 7.2314, 7.2306, 7.2297, 7.2291, 7.2308, 7.2325, 7.2318, 7.2334, 7.2306, 7.2297, 7.2289, 7.2281, 7.2296, 7.2291, 7.2284, 7.2301, 7.2293, 7.2316, 7.233, 7.2322, 7.2315, 7.2307, 7.2301, 7.2293, 7.2307, 7.2326, 7.2318, 7.2313, 7.2306, 7.23, 7.2315, 7.2334, 7.2326, 7.2318, 7.2315, 7.2311, 7.2304, 7.2299, 7.2294, 7.2286, 7.2279, 7.2272, 7.2264, 7.2261, 7.2285, 7.2277, 7.227, 7.2247, 7.2264, 7.2256, 7.2248, 7.2241, 7.2257, 7.2249, 7.2241, 7.2234, 7.2226, 7.2218, 7.2234, 7.2226, 7.222, 7.2215, 7.2207, 7.2246, 7.224, 7.2256, 7.2248, 7.2263, 7.2257, 7.2271, 7.2263, 7.2255, 7.2271, 7.2266, 7.2259, 7.2251, 7.2267, 7.2261, 7.2252, 7.2244, 7.2239, 7.2233, 7.2206, 7.2197, 7.2189, 7.2182, 7.2202, 7.2217, 7.2232, 7.2232, 7.2225, 7.222, 7.2214, 7.2208, 7.2201, 7.2194, 7.2189, 7.2198, 7.2193, 7.2188, 7.2182, 7.2176, 7.2169, 7.2164, 7.2156, 7.215, 7.2145, 7.2137, 7.2134, 7.2131, 7.2123, 7.2115, 7.2109, 7.2101, 7.2095, 7.2091, 7.2083, 7.2075, 7.2067, 7.2125, 7.2125, 7.2141, 7.2135, 7.2128, 7.2122, 7.2114, 7.2106, 7.2098, 7.2115, 7.211, 7.2102, 7.2094, 7.2086, 7.2082, 7.2073, 7.2066, 7.2059, 7.2053, 7.2047, 7.2062, 7.2059, 7.2051, 7.2045, 7.2063, 7.2055, 7.2049, 7.2043, 7.2037, 7.2052, 7.2046, 7.2064, 7.2059, 7.2052, 7.2067, 7.2062, 7.2057, 7.205, 7.2045, 7.2037, 7.2053, 7.2045, 7.2062, 7.2057, 7.205, 7.2043, 7.2037, 7.2029, 7.2022, 7.2017, 7.201, 7.2034, 7.2027, 7.2022, 7.2015, 7.2013, 7.201, 7.2008, 7.2003, 7.1999, 7.2015, 7.2007, 7.2071, 7.2064, 7.2056, 7.2052, 7.2055, 7.2048, 7.2042, 7.2041, 7.2062, 7.2059, 7.2075, 7.2068, 7.2084, 7.2094000000000005, 7.2089, 7.2104, 7.2097, 7.2089, 7.2182, 7.2174, 7.2189, 7.2237, 7.223, 7.2225, 7.2219, 7.2212, 7.2206, 7.2216, 7.2231, 7.2223, 7.2219, 7.2212, 7.2225, 7.222, 7.2215, 7.2209, 7.2203, 7.2219, 7.2213, 7.2228, 7.2242, 7.2234, 7.2234, 7.2229, 7.2243, 7.2235, 7.2227, 7.2224, 7.2217, 7.221, 7.2204, 7.2197, 7.2212, 7.2205, 7.2198, 7.2191, 7.2185, 7.2177, 7.2173, 7.2188, 7.2162, 7.2161, 7.2134, 7.2133, 7.2147, 7.2163, 7.2155, 7.2148, 7.214, 7.2156, 7.217, 7.2162, 7.2158, 7.2152, 7.2149, 7.2144, 7.2139, 7.2135, 7.213, 7.2177, 7.2191, 7.2186, 7.2181, 7.2173, 7.2258, 7.2256, 7.2229, 7.2254, 7.2417, 7.243, 7.2424, 7.2418, 7.245, 7.2443, 7.2438, 7.2431, 7.2423, 7.2443, 7.2463, 7.2458, 7.2453, 7.2449, 7.2442, 7.2458, 7.245, 7.2442, 7.2435, 7.2432, 7.2445, 7.2459, 7.2476, 7.247, 7.2464, 7.2456, 7.245, 7.2464, 7.2456, 7.2449, 7.2464, 7.248, 7.2472, 7.2464, 7.2457, 7.2472, 7.2465, 7.2458, 7.245, 7.2448, 7.2421, 7.2436, 7.2429, 7.2422, 7.2415, 7.2409, 7.2423, 7.2415, 7.2431, 7.2445, 7.2437, 7.2434, 7.2431, 7.2424, 7.2416, 7.2411, 7.2384, 7.2378, 7.2393, 7.2386, 7.238, 7.2404, 7.2396, 7.239, 7.2405, 7.2401, 7.2415, 7.2408, 7.2403, 7.2396, 7.2392, 7.2385, 7.2379, 7.2372, 7.2366, 7.2359, 7.2355, 7.2348, 7.2362, 7.2355, 7.2349, 7.2346, 7.2339, 7.2332, 7.2325, 7.2303, 7.2301, 7.2275, 7.2272, 7.2267, 7.226, 7.2274, 7.2247, 7.2243, 7.2237, 7.2235, 7.2252, 7.2268, 7.2269, 7.2285, 7.2278, 7.2291, 7.2285, 7.2278, 7.2273, 7.2267, 7.226, 7.2312, 7.2305, 7.23, 7.2295, 7.2308, 7.2305, 7.2298, 7.2291, 7.2286, 7.2279, 7.2255, 7.2249, 7.2242, 7.2265, 7.2277, 7.227, 7.2263, 7.2312, 7.2306, 7.2303, 7.2317, 7.2312, 7.2307, 7.2321, 7.2314, 7.2311, 7.2307, 7.23, 7.2314, 7.2308, 7.2301, 7.2297, 7.2313, 7.2306, 7.2299, 7.2292, 7.2285, 7.2283, 7.2275, 7.2268, 7.2265, 7.2258, 7.2271, 7.2267, 7.226, 7.2268, 7.2302, 7.2316, 7.231, 7.2303, 7.2284, 7.2279, 7.2254, 7.231, 7.2325, 7.2339, 7.2335, 7.2327, 7.2322, 7.2347, 7.2352, 7.2349, 7.2353, 7.2349, 7.2342, 7.2339, 7.2339, 7.2334, 7.2327, 7.232, 7.2313, 7.2309, 7.2303, 7.2299, 7.2292, 7.2286, 7.23, 7.2295, 7.227, 7.2263, 7.2258, 7.2253, 7.2228, 7.2226, 7.2204, 7.2197, 7.219, 7.2206, 7.22, 7.2214, 7.2231, 7.2224, 7.2218, 7.2212, 7.2227, 7.224, 7.2234, 7.2228, 7.2242, 7.2235, 7.2249, 7.2242, 7.2235, 7.2228, 7.2234, 7.223, 7.2243, 7.2238, 7.2231, 7.2224, 7.2219, 7.2216, 7.2209, 7.2206, 7.2199, 7.2213, 7.2208, 7.2201, 7.2194, 7.2187, 7.22, 7.2193, 7.2187, 7.22, 7.2195, 7.2189, 7.2221, 7.2215, 7.2259, 7.2271, 7.2309, 7.2332, 7.2337, 7.2332, 7.2325, 7.2318, 7.2311, 7.2304, 7.2318, 7.2312, 7.2308, 7.2304, 7.2318, 7.2312, 7.2326, 7.232, 7.2316, 7.231, 7.2316, 7.2309, 7.2302, 7.2297, 7.2312, 7.2306, 7.23, 7.2294, 7.2317, 7.2312, 7.2308, 7.234, 7.2353, 7.2347, 7.2342, 7.2335, 7.233, 7.2344, 7.2337, 7.235, 7.2364, 7.2358, 7.2355, 7.2349, 7.2342, 7.2336, 7.2351, 7.2345, 7.2357, 7.2352, 7.2345, 7.2356, 7.2369, 7.2362, 7.2358, 7.2352, 7.2349, 7.2345, 7.2338, 7.2333, 7.2328, 7.2322, 7.232, 7.2316, 7.2309, 7.2325, 7.2348, 7.2342, 7.2356, 7.2351, 7.2346, 7.2342, 7.2377, 7.2389, 7.2401, 7.2394, 7.2404, 7.241, 7.2405, 7.2398, 7.2391, 7.2404, 7.2418, 7.2433, 7.2429, 7.2426, 7.2419, 7.2415, 7.241, 7.2405, 7.2401, 7.2435, 7.2496, 7.251, 7.2523, 7.2516, 7.2509, 7.2521, 7.2516, 7.251, 7.2506, 7.2482, 7.2486, 7.25, 7.2514, 7.2507, 7.2514, 7.2495, 7.2489, 7.2505, 7.2502, 7.2496, 7.249, 7.2503, 7.2496, 7.2489, 7.2484, 7.2501, 7.2513, 7.2508, 7.2502, 7.2498, 7.2513, 7.2506, 7.25, 7.2512, 7.2524, 7.2517, 7.2532, 7.2526, 7.2522, 7.2551, 7.2568, 7.2564, 7.259, 7.2604, 7.26, 7.2597, 7.2591, 7.2588, 7.2582, 7.2575, 7.2568, 7.2561, 7.2574, 7.2568, 7.2561, 7.2556, 7.255, 7.2545, 7.2539, 7.2573, 7.2588, 7.2601, 7.2614, 7.2608, 7.2603, 7.2597, 7.2593, 7.2586, 7.258, 7.2575, 7.2571, 7.2569, 7.2563, 7.2558, 7.2551, 7.2564, 7.2558, 7.2551, 7.2546, 7.2539, 7.2533, 7.2528, 7.2523, 7.2521, 7.2517, 7.2512, 7.2506, 7.2501, 7.2496, 7.249, 7.2484, 7.2461, 7.2455, 7.2448, 7.2442, 7.2436, 7.2432, 7.2426, 7.2423, 7.242, 7.2418, 7.2414, 7.2407, 7.2401, 7.24, 7.2396, 7.2391, 7.2415, 7.2445, 7.2457, 7.2452, 7.2449, 7.2444, 7.2438, 7.2432, 7.2429, 7.2425, 7.2421, 7.2434, 7.2429, 7.2424, 7.242, 7.2415, 7.2412, 7.2409, 7.2403, 7.2398, 7.2395, 7.2392, 7.2389, 7.2382, 7.2376, 7.2373, 7.2366, 7.2359, 7.2371, 7.2365, 7.238, 7.2375, 7.2373, 7.2367, 7.2379, 7.2391, 7.2395, 7.2389, 7.2383, 7.238, 7.2374, 7.2368, 7.238, 7.2401, 7.2395, 7.2389, 7.2403, 7.2401, 7.2409, 7.2403, 7.2396, 7.2426, 7.2419, 7.2413, 7.2425, 7.2419, 7.2416, 7.2411, 7.241, 7.2407, 7.2401, 7.2378, 7.2373, 7.2368, 7.2361, 7.2355, 7.235, 7.2344, 7.2338, 7.2351, 7.2347, 7.2341, 7.2335, 7.2328, 7.234, 7.2333, 7.2341, 7.2335, 7.2347, 7.2359, 7.2353, 7.2348, 7.2342, 7.2336, 7.2349, 7.2343, 7.2336, 7.2331, 7.2326, 7.2322, 7.2317, 7.2316, 7.2331, 7.2325, 7.232, 7.2315, 7.2328, 7.2323, 7.2318, 7.2311, 7.2307, 7.2285, 7.228, 7.2293, 7.2287, 7.2282, 7.2295, 7.229, 7.2287, 7.2264, 7.226, 7.2256, 7.2252, 7.2264, 7.2275, 7.2269, 7.2281, 7.2275, 7.2287, 7.2298, 7.2292, 7.2286, 7.2298, 7.231, 7.2305, 7.2318, 7.2315, 7.2309, 7.2321, 7.2387, 7.2399, 7.2394, 7.2388, 7.2384, 7.238, 7.2395, 7.239, 7.2386, 7.238, 7.238, 7.2374, 7.2386, 7.2399, 7.2393, 7.2387, 7.2381, 7.2375, 7.237, 7.2364, 7.2358, 7.2352, 7.2347, 7.2325, 7.2337, 7.2331, 7.2326, 7.2321, 7.2333, 7.2327, 7.2338, 7.2335, 7.2332, 7.2326, 7.2322, 7.2334, 7.2332, 7.2327, 7.2323, 7.2316, 7.2312, 7.2306, 7.2304, 7.2334, 7.2329, 7.2323, 7.2318, 7.2314, 7.2326, 7.2337, 7.2348, 7.2345, 7.234, 7.2335, 7.233, 7.2326, 7.232, 7.2332, 7.2326, 7.2338, 7.2333, 7.2327, 7.232, 7.2333, 7.2344, 7.2338, 7.2334, 7.2329, 7.2325, 7.2323, 7.2321, 7.2315, 7.2327, 7.2321, 7.2314, 7.2309, 7.2302, 7.2297, 7.2308, 7.2302, 7.2325, 7.2319, 7.2315, 7.2312, 7.2308, 7.2302, 7.2313, 7.2307, 7.2372, 7.2385, 7.2381, 7.2376, 7.2372, 7.2366, 7.236, 7.2354, 7.2348, 7.2326, 7.232, 7.2314, 7.2312, 7.2308, 7.2302, 7.2296, 7.2291, 7.2289, 7.2284, 7.2296, 7.2291, 7.2286, 7.2282, 7.2278, 7.2292, 7.2304, 7.23, 7.2311, 7.231, 7.2307, 7.2302, 7.2312, 7.2309, 7.2321, 7.2316, 7.231, 7.233, 7.2325, 7.2336, 7.2349, 7.2351, 7.2346, 7.2364, 7.2362, 7.2356, 7.2351, 7.2346, 7.2357, 7.2351, 7.2346, 7.234, 7.2334, 7.2328, 7.2324, 7.2335, 7.2329, 7.234, 7.2337, 7.2331, 7.2329, 7.2323, 7.2345, 7.2358, 7.2418, 7.2423, 7.2419, 7.2416, 7.2411, 7.2412, 7.2407, 7.2402, 7.2416, 7.2433, 7.2428, 7.2438, 7.2467, 7.2462, 7.2456, 7.2468, 7.2462, 7.2457, 7.2451, 7.2445, 7.2439, 7.2433, 7.2427, 7.2421, 7.2427, 7.2422, 7.2405, 7.2418, 7.2431, 7.2443, 7.2448, 7.2442, 7.2437, 7.2448, 7.2442, 7.2436, 7.243, 7.2442, 7.2436, 7.2432, 7.2427, 7.2425, 7.2436, 7.2447, 7.2442, 7.2439, 7.2434, 7.2428, 7.2439, 7.2434, 7.2433, 7.2427, 7.2422, 7.2424, 7.2419, 7.2452, 7.2486, 7.2501, 7.2503, 7.2498, 7.2493, 7.2488, 7.2473, 7.247, 7.2467, 7.2461, 7.2472, 7.2483, 7.2479, 7.2504, 7.2592, 7.2605, 7.2609, 7.2603, 7.26, 7.2596, 7.2591, 7.2587, 7.26, 7.2595, 7.2591, 7.2587, 7.2582, 7.2598, 7.2592, 7.2587, 7.2584, 7.2578, 7.2572, 7.2566, 7.256, 7.2556, 7.2551, 7.2546, 7.2557, 7.2585, 7.2579, 7.2574, 7.2571, 7.2581, 7.2577, 7.2571, 7.2567, 7.2561, 7.2572, 7.2566, 7.256, 7.2571, 7.2601, 7.2596, 7.2606, 7.26, 7.2598, 7.2628, 7.2623, 7.2618, 7.2615, 7.2611, 7.2623, 7.2617, 7.2629, 7.2625, 7.2605, 7.2608, 7.262, 7.2615, 7.2609, 7.262, 7.2617, 7.265, 7.2645, 7.2641, 7.2652, 7.265, 7.2661, 7.2657, 7.2656, 7.265, 7.2663, 7.2658, 7.2653, 7.2647, 7.2644, 7.2638, 7.2633, 7.2629, 7.2626, 7.2637, 7.265, 7.2644, 7.2638, 7.2633, 7.267, 7.2664, 7.2658, 7.2654, 7.265, 7.2646, 7.264, 7.2637, 7.2646, 7.264, 7.2634, 7.2628, 7.2624, 7.2636, 7.2631, 7.2642, 7.2652, 7.2648, 7.2643, 7.2654, 7.2651, 7.2648, 7.2643, 7.2674, 7.2673, 7.2682, 7.2678, 7.2689, 7.2687, 7.2696, 7.2692, 7.2702, 7.2696, 7.2701, 7.2711, 7.2707, 7.2701, 7.2695, 7.2706, 7.2702, 7.2713, 7.2708, 7.2719, 7.2714, 7.2747, 7.2758, 7.2772, 7.277, 7.2766, 7.2762, 7.2774, 7.2768, 7.2762, 7.2761, 7.2774, 7.2775, 7.277, 7.278, 7.2775, 7.2772, 7.2767, 7.2763, 7.2757, 7.2753, 7.2748, 7.2744, 7.2739, 7.2733, 7.273, 7.2742, 7.2744, 7.2739, 7.2737, 7.2746, 7.2741, 7.2753, 7.275, 7.2744, 7.274, 7.2741, 7.2738, 7.2757, 7.276, 7.2755, 7.2749, 7.2775, 7.277, 7.2779, 7.2774, 7.279, 7.2807, 7.2802, 7.2799, 7.2794, 7.2788, 7.2784, 7.2765, 7.2759, 7.2769, 7.2764, 7.276, 7.2755, 7.2749, 7.276, 7.2756, 7.2751, 7.2747, 7.2743, 7.2737, 7.2733, 7.2732, 7.2728, 7.2739, 7.2719, 7.2713, 7.273, 7.2758, 7.2752, 7.2748, 7.2745, 7.274, 7.2734, 7.2728, 7.2722, 7.2727, 7.2722, 7.2725, 7.272, 7.2716, 7.2711, 7.2705, 7.27, 7.2697, 7.2692, 7.2687, 7.2683, 7.2709, 7.2704, 7.2701, 7.2698, 7.2693, 7.2704, 7.2699, 7.2697, 7.2691, 7.2687, 7.2682, 7.2678, 7.2659, 7.2655, 7.2665, 7.266, 7.2657, 7.2654, 7.2649, 7.2647, 7.2643, 7.2638, 7.2634, 7.2641, 7.2652, 7.2662, 7.2656, 7.2651, 7.2647, 7.2642, 7.2636, 7.263, 7.2641, 7.2638, 7.2619, 7.263, 7.2626, 7.2684, 7.2678, 7.269, 7.27, 7.2696, 7.2694, 7.2689, 7.2683, 7.2677, 7.2672, 7.2667, 7.2677, 7.2704, 7.2699, 7.2681, 7.2676, 7.2679, 7.2676, 7.2672, 7.2666, 7.2676, 7.2671, 7.2682, 7.2695, 7.2693, 7.2687, 7.2683, 7.2679, 7.2676, 7.267, 7.2679, 7.2673, 7.2669, 7.2665, 7.266, 7.2656, 7.2665, 7.2675, 7.2669, 7.2679, 7.2675, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2661, 7.2656, 7.2654, 7.2649, 7.2659, 7.267, 7.2665, 7.2659, 7.2654, 7.2636, 7.2631, 7.2626, 7.2623, 7.2622, 7.262, 7.2615, 7.261, 7.2605, 7.26, 7.2597, 7.2592, 7.2587, 7.2582, 7.2591, 7.2586, 7.258, 7.2589, 7.2584, 7.2579, 7.2576, 7.2573, 7.2567, 7.2562, 7.2557, 7.2553, 7.255, 7.256, 7.2555, 7.2551, 7.2546, 7.2561, 7.2557, 7.2552, 7.2561, 7.2558, 7.2553, 7.2563, 7.2558, 7.2555, 7.255, 7.2545, 7.2543, 7.2539, 7.2537, 7.2547, 7.2542, 7.2536, 7.2531, 7.2526, 7.2536, 7.2531, 7.2527, 7.2528, 7.2533, 7.2551, 7.2565, 7.2568, 7.2563, 7.2559, 7.2554, 7.255, 7.2546, 7.2547, 7.2543, 7.2553, 7.2551, 7.2547, 7.2544, 7.2554, 7.2579, 7.2575, 7.2572, 7.2568, 7.2564, 7.2575, 7.2571, 7.2581, 7.2578, 7.2574, 7.2574, 7.2569, 7.2567, 7.2577, 7.2572, 7.2644, 7.2639, 7.2649, 7.2674, 7.2684, 7.268, 7.2676, 7.2672, 7.2711, 7.2707, 7.2732, 7.2761, 7.2757, 7.2754, 7.2752, 7.2762, 7.2757, 7.2757, 7.2752, 7.2747, 7.2742, 7.2737, 7.2734, 7.273, 7.2725, 7.272, 7.2702, 7.2698, 7.2696, 7.2707, 7.2716, 7.271, 7.2705, 7.2701, 7.2696, 7.2706, 7.2701, 7.2686, 7.2695, 7.2694, 7.2689, 7.2672, 7.2667, 7.2676, 7.2671, 7.2653, 7.2648, 7.2659, 7.2667, 7.2663, 7.2679, 7.2674, 7.2685, 7.268, 7.2689, 7.2698, 7.2693, 7.2703, 7.2699, 7.273, 7.2725, 7.272, 7.2729, 7.2732, 7.2742, 7.2737, 7.2747, 7.2743, 7.2753, 7.2763, 7.2773, 7.2768, 7.2787, 7.2783, 7.2778, 7.2789, 7.2784, 7.2781, 7.2776, 7.2801, 7.2796, 7.2792, 7.2787, 7.2795, 7.2777, 7.2773, 7.2784, 7.2781, 7.2763, 7.2758, 7.2767, 7.2764, 7.2759, 7.2769, 7.2764, 7.2759, 7.2754, 7.2749, 7.2746, 7.2741, 7.2752, 7.2761, 7.2758, 7.2755, 7.2754, 7.2752, 7.2749, 7.2746, 7.2742, 7.2738, 7.2735, 7.2733, 7.2728, 7.2724, 7.2736, 7.2733, 7.273, 7.2726, 7.2722, 7.2718, 7.2714, 7.2711, 7.2706, 7.2703, 7.2713, 7.2708, 7.2704, 7.2701, 7.2697, 7.2693, 7.2703, 7.2698, 7.2694, 7.2705, 7.27, 7.2697, 7.2693, 7.269, 7.2696, 7.2705, 7.27, 7.2712, 7.2708, 7.2703, 7.2698, 7.2707, 7.2702, 7.2697, 7.2708, 7.2704, 7.2699, 7.2694, 7.269, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2675, 7.2672, 7.2667, 7.2663, 7.2661, 7.2656, 7.2671, 7.2666, 7.2676, 7.2672, 7.2667, 7.2676, 7.2671, 7.2681, 7.2677, 7.268, 7.2689, 7.2687, 7.2682, 7.268, 7.2663, 7.2673, 7.2669, 7.2651, 7.266, 7.2669, 7.275, 7.2745, 7.2743, 7.2766, 7.2762, 7.2771, 7.2767, 7.2777, 7.2786, 7.2797, 7.2807, 7.2789, 7.2799, 7.2782, 7.2777, 7.2786, 7.2798, 7.2794, 7.279, 7.2807, 7.2808, 7.2803, 7.2813, 7.2809, 7.2806, 7.2793, 7.2802, 7.2797, 7.2792, 7.2787, 7.2796, 7.2818, 7.2814, 7.2809, 7.2805, 7.2813, 7.2822, 7.2818, 7.2823, 7.2818, 7.2813, 7.2809, 7.2806, 7.2815, 7.2812, 7.282, 7.286, 7.2855, 7.285, 7.2845, 7.284, 7.2836, 7.2848, 7.286, 7.2877, 7.2872, 7.289, 7.2893, 7.291, 7.2905, 7.2901, 7.2896, 7.2905, 7.2914, 7.2933, 7.2928, 7.2965, 7.2962, 7.3008, 7.3004, 7.3001, 7.2996, 7.2992, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2987, 7.3024, 7.302, 7.3016, 7.3025, 7.3033, 7.303, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3034, 7.3029, 7.3025, 7.3022, 7.3019, 7.3016, 7.3011, 7.302, 7.3029, 7.3026, 7.3022, 7.3017, 7.3015, 7.301, 7.3007, 7.3003, 7.2998, 7.2994, 7.299, 7.2999, 7.2995, 7.2992, 7.299, 7.2986, 7.2984, 7.2979, 7.2977, 7.2972, 7.2967, 7.2976, 7.2985, 7.2982, 7.2978, 7.2988, 7.2984, 7.298, 7.2992, 7.2987, 7.2983, 7.2979, 7.2974, 7.2996, 7.2992, 7.2987, 7.2984, 7.2979, 7.2976, 7.2986, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2973, 7.2969, 7.2964, 7.2959, 7.2955, 7.2951, 7.2948, 7.2958, 7.2945, 7.2954, 7.2949, 7.2946, 7.2959, 7.2954, 7.295, 7.2947, 7.2944, 7.2952, 7.2948, 7.2984, 7.2991, 7.2987, 7.2983, 7.2984, 7.2981, 7.2978, 7.2987, 7.2983, 7.2979, 7.2976, 7.2979, 7.2975, 7.2976, 7.2989, 7.2984, 7.2981, 7.299, 7.2986, 7.2982, 7.2978, 7.2975, 7.2971, 7.2969, 7.2964, 7.2962, 7.3039, 7.3036, 7.3046, 7.303, 7.3027, 7.3024, 7.3033, 7.3029, 7.3025, 7.3021, 7.3016, 7.3025, 7.3034, 7.3031, 7.3027, 7.3023, 7.3019, 7.3014, 7.3009, 7.3006, 7.3002, 7.2998, 7.2995, 7.2991, 7.2988, 7.2987, 7.2983, 7.2978, 7.2974, 7.2971, 7.2967, 7.2964, 7.2962, 7.2959, 7.2954, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2912, 7.2909, 7.2918, 7.2916, 7.2911, 7.2908, 7.2945, 7.2942, 7.295, 7.2947, 7.2943, 7.2939, 7.2934, 7.2931, 7.2927, 7.2924, 7.292, 7.2915, 7.2912, 7.2911, 7.292, 7.2929, 7.2925, 7.292, 7.2917, 7.2912, 7.2908, 7.2905, 7.29, 7.2897, 7.2903, 7.2899, 7.2895, 7.2891, 7.2878, 7.2875, 7.2929, 7.2926, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2953, 7.2976, 7.2972, 7.2968, 7.2965, 7.2973, 7.2968, 7.2963, 7.2958, 7.2966, 7.2963, 7.2959, 7.2943, 7.2939, 7.2934, 7.2944, 7.2941, 7.2937, 7.2934, 7.2932, 7.2928, 7.2925, 7.292, 7.2929, 7.2927, 7.2923, 7.2919, 7.2916, 7.2923, 7.2932, 7.294, 7.2939, 7.2935, 7.2932, 7.2917, 7.2913, 7.2909, 7.2904, 7.2902, 7.2897, 7.2906, 7.2915, 7.291, 7.2918, 7.2914, 7.291, 7.2907, 7.2917, 7.2902, 7.2898, 7.2894, 7.2889, 7.2885, 7.2882, 7.289, 7.2886, 7.2881, 7.2877, 7.2873, 7.2869, 7.2865, 7.2863, 7.2868, 7.2876, 7.286, 7.2856, 7.2851, 7.2847, 7.2843, 7.2838, 7.2834, 7.2829, 7.283, 7.2827, 7.2822, 7.2818, 7.2814, 7.281, 7.2823, 7.2821, 7.2816, 7.2829, 7.2826, 7.2822, 7.2823, 7.2819, 7.2815, 7.281, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.279, 7.2786, 7.2796, 7.2794, 7.2815, 7.2825, 7.2821, 7.2819, 7.2817, 7.2814, 7.2825, 7.2821, 7.2819, 7.2815, 7.2824, 7.2821, 7.2817, 7.2814, 7.2809, 7.2818, 7.2814, 7.2836, 7.2858, 7.2856, 7.2852, 7.2848, 7.2845, 7.2841, 7.2836, 7.2831, 7.2826, 7.2823, 7.2819, 7.2815, 7.2811, 7.2819, 7.2828, 7.2824, 7.2808, 7.2804, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2808, 7.2804, 7.2799, 7.2796, 7.2805, 7.2801, 7.2797, 7.2804, 7.28, 7.2797, 7.2807, 7.2804, 7.2814, 7.281, 7.2806, 7.2815, 7.2812, 7.2816, 7.2813, 7.2834, 7.2831, 7.2827, 7.2824, 7.2847, 7.2843, 7.2839, 7.2835, 7.2833, 7.2836, 7.2832, 7.2841, 7.2838, 7.2835, 7.2845, 7.2842, 7.2837, 7.2833, 7.283, 7.2826, 7.2822, 7.2818, 7.2814, 7.281, 7.2807, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2794, 7.279, 7.2786, 7.2783, 7.278, 7.2789, 7.2785, 7.2781, 7.2789, 7.2805, 7.2801, 7.2809, 7.2808, 7.2804, 7.28, 7.2796, 7.2804, 7.28, 7.2798, 7.2795, 7.2803, 7.2802, 7.2799, 7.2797, 7.2806, 7.2803, 7.2812, 7.2821, 7.2825, 7.282, 7.283, 7.2827, 7.2823, 7.2833, 7.2842, 7.2851, 7.2847, 7.2855, 7.2864, 7.286, 7.2856, 7.2852, 7.2849, 7.2846, 7.2832, 7.2828, 7.2824, 7.282, 7.2819, 7.2841, 7.2849, 7.2845, 7.2841, 7.2837, 7.2833, 7.2841, 7.2837, 7.2833, 7.2829, 7.2826, 7.2825, 7.2821, 7.2816, 7.2812, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.2802, 7.2797, 7.2794, 7.279, 7.2786, 7.2772, 7.2768, 7.2765, 7.2784, 7.2792, 7.2777, 7.2773, 7.2784, 7.2792, 7.2788, 7.2784, 7.2779, 7.2775, 7.2772, 7.2781, 7.2778, 7.2775, 7.2783, 7.2779, 7.2775, 7.2783, 7.278, 7.2775, 7.2773, 7.2785, 7.278, 7.2777, 7.2773, 7.278, 7.2788, 7.2796, 7.2808, 7.2804, 7.2811, 7.2807, 7.2804, 7.28, 7.2797, 7.2793, 7.279, 7.2788, 7.2796, 7.2795, 7.2804, 7.28, 7.2796, 7.2792, 7.28, 7.2799, 7.2797, 7.2793, 7.2802, 7.281, 7.2812, 7.2819, 7.2815, 7.2823, 7.282, 7.2805, 7.2801, 7.2786, 7.2771, 7.2767, 7.2763, 7.2771, 7.2767, 7.2764, 7.276, 7.2756, 7.2754, 7.2763, 7.276, 7.2756, 7.2751, 7.2737, 7.2733, 7.2729, 7.2716, 7.2711, 7.272, 7.2716, 7.2711, 7.2722, 7.2718, 7.2715, 7.2712, 7.272, 7.2718, 7.2716, 7.2747, 7.2746, 7.2742, 7.2739, 7.2745, 7.2742, 7.2738, 7.2734, 7.2731, 7.2728, 7.2724, 7.272, 7.2716, 7.2705, 7.2705, 7.2713, 7.2712, 7.2744, 7.2752, 7.2748, 7.2746, 7.2755, 7.2766, 7.2799, 7.2795, 7.281, 7.2806, 7.2815, 7.2824, 7.282, 7.2816, 7.2801, 7.2808, 7.2828, 7.2824, 7.2836, 7.2833, 7.283, 7.2827, 7.2835, 7.2831, 7.2827, 7.2823, 7.2831, 7.282, 7.2816, 7.2812, 7.2812, 7.2815, 7.2826, 7.2825, 7.2822, 7.2818, 7.2867, 7.2865, 7.2861, 7.2859, 7.2856, 7.2864, 7.286, 7.2856, 7.2865, 7.2861, 7.2857, 7.2854, 7.285, 7.2846, 7.2844, 7.2841, 7.285, 7.2848, 7.2857, 7.2855, 7.2852, 7.2848, 7.2845, 7.2841, 7.2837, 7.2833, 7.2831, 7.2851, 7.2859, 7.2869, 7.2878, 7.2891, 7.2899, 7.2895, 7.2891, 7.2888, 7.2895, 7.2892, 7.2899, 7.2908, 7.2904, 7.2899, 7.2895, 7.2891, 7.2888, 7.2896, 7.2892, 7.2889, 7.2897, 7.2893, 7.2891, 7.2887, 7.2884, 7.2892, 7.2889, 7.2887, 7.2883, 7.2881, 7.2877, 7.2873, 7.2917, 7.2913, 7.291, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.291, 7.2918, 7.2914, 7.2912, 7.2897, 7.2893, 7.2889, 7.2897, 7.2893, 7.289, 7.2886, 7.2883, 7.2879, 7.2875, 7.2872, 7.2879, 7.2882, 7.2878, 7.2874, 7.2871, 7.2869, 7.2864, 7.286, 7.2858, 7.2854, 7.2851, 7.2847, 7.2843, 7.2839, 7.2846, 7.2853, 7.285, 7.2846, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2836, 7.2833, 7.2829, 7.2826, 7.2823, 7.2831, 7.2827, 7.2823, 7.2823, 7.2819, 7.2816, 7.2824, 7.282, 7.2816, 7.2824, 7.282, 7.2818, 7.2816, 7.2812, 7.282, 7.2816, 7.2823, 7.2819, 7.2828, 7.2826, 7.2834, 7.283, 7.2826, 7.2824, 7.282, 7.2828, 7.2824, 7.2821, 7.2817, 7.2825, 7.2833, 7.2829, 7.2837, 7.2845, 7.2844, 7.2841, 7.2837, 7.2845, 7.2843, 7.2839, 7.2837, 7.2836, 7.2845, 7.2841, 7.2837, 7.2833, 7.2829, 7.2825, 7.2823, 7.2819, 7.2817, 7.2813, 7.2809, 7.2838, 7.2846, 7.2855, 7.2863, 7.2871, 7.2882, 7.289, 7.2886, 7.2872, 7.2879, 7.2875, 7.2872, 7.3009, 7.3005, 7.3001, 7.2998, 7.3006, 7.3004, 7.3002, 7.2999, 7.3008, 7.3006, 7.3008, 7.3016, 7.3012, 7.3008, 7.3029, 7.3027, 7.3027, 7.3024, 7.302, 7.3016, 7.3012, 7.3009, 7.3005, 7.3006, 7.3014, 7.301, 7.3018, 7.3015, 7.3013, 7.301, 7.3007, 7.3003, 7.301, 7.3018, 7.3015, 7.3011, 7.3007, 7.3004, 7.3, 7.2996, 7.2992, 7.2989, 7.2987, 7.2984, 7.298, 7.2977, 7.3033, 7.3029, 7.3026, 7.3032, 7.3028, 7.3026, 7.3024, 7.3025, 7.3033, 7.303, 7.3028, 7.3025, 7.3033, 7.3044, 7.3052, 7.3048, 7.3046, 7.3042, 7.305, 7.3057, 7.3053, 7.305, 7.3047, 7.3046, 7.3054, 7.305, 7.3046, 7.3053, 7.3059, 7.3055, 7.304, 7.3037, 7.3033, 7.3031, 7.3027, 7.3026, 7.3022, 7.3018, 7.3025, 7.3022, 7.3022, 7.302, 7.3007, 7.3004, 7.3, 7.2997, 7.2993, 7.299, 7.2986, 7.2982, 7.2982, 7.3003, 7.3, 7.2996, 7.3004, 7.3011, 7.3018, 7.3025, 7.3021, 7.3017, 7.3014, 7.301, 7.3006, 7.3013, 7.3009, 7.3007, 7.3014, 7.3011, 7.3007, 7.3003, 7.2999, 7.2995, 7.2991, 7.2979, 7.2975, 7.2972, 7.2968, 7.2964, 7.2971, 7.2967, 7.2964, 7.2973, 7.298, 7.2989, 7.2986, 7.2982, 7.2989, 7.2986, 7.2982, 7.2979, 7.2976, 7.2976, 7.2974, 7.2973, 7.2973, 7.2969, 7.2956, 7.2954, 7.2962, 7.2959, 7.2956, 7.2953, 7.2949, 7.2945, 7.2943, 7.295, 7.2947, 7.2943, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2935, 7.2942, 7.2949, 7.2946, 7.2942, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2932, 7.2928, 7.2924, 7.2931, 7.2927, 7.2924, 7.2924, 7.292, 7.2916, 7.2913, 7.291, 7.2908, 7.2906, 7.2913, 7.292, 7.2916, 7.2914, 7.2911, 7.2907, 7.2903, 7.2902, 7.2898, 7.2895, 7.2893, 7.2893, 7.289, 7.2888, 7.2909, 7.2917, 7.2915, 7.2912, 7.2909, 7.2916, 7.2912, 7.292, 7.2916, 7.2913, 7.2911, 7.2918, 7.2916, 7.2923, 7.2919, 7.2916, 7.2912, 7.2914, 7.291, 7.2906, 7.2913, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2899, 7.2897, 7.2895, 7.2891, 7.2888, 7.2884, 7.289, 7.2903, 7.2899, 7.2906, 7.2903, 7.29, 7.2898, 7.2894, 7.2901, 7.2909, 7.2905, 7.2901, 7.2908, 7.2905, 7.2912, 7.2912, 7.2908, 7.2906, 7.2903, 7.2899, 7.2895, 7.2892, 7.2888, 7.2886, 7.2882, 7.2878, 7.2875, 7.2872, 7.2868, 7.2869, 7.2867, 7.2864, 7.2868, 7.2877, 7.2874, 7.2871, 7.2878, 7.294, 7.2937, 7.2933, 7.293, 7.2927, 7.2934, 7.2931, 7.2939, 7.2936, 7.2933, 7.293, 7.2934, 7.2931, 7.2927, 7.2933, 7.293, 7.2927, 7.2924, 7.292, 7.2928, 7.2924, 7.292, 7.2917, 7.2914, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2898, 7.2894, 7.2891, 7.2891, 7.2888, 7.2884, 7.288, 7.2878, 7.2874, 7.2872, 7.2868, 7.2864, 7.286, 7.2867, 7.2907, 7.2903, 7.2901, 7.2897, 7.29, 7.2907, 7.2914, 7.2911, 7.2918, 7.2965, 7.2961, 7.2957, 7.2964, 7.2971, 7.2968, 7.2974, 7.297, 7.2967, 7.2974, 7.2982, 7.2979, 7.2976, 7.2972, 7.2979, 7.2975, 7.2981, 7.2977, 7.2974, 7.2981, 7.2978, 7.2975, 7.2972, 7.297, 7.2966, 7.2962, 7.298, 7.2987, 7.2984, 7.2982, 7.2978, 7.2974, 7.297, 7.2977, 7.2973, 7.2971, 7.2968, 7.2967, 7.2963, 7.2962, 7.297, 7.2967, 7.2975, 7.2971, 7.2968, 7.2964, 7.2961, 7.296, 7.2956, 7.2952, 7.295, 7.2946, 7.2942, 7.2949, 7.2945, 7.2952, 7.2948, 7.2956, 7.2953, 7.2961, 7.2958, 7.2968, 7.2976, 7.2973, 7.2971, 7.2968, 7.2967, 7.2965, 7.2968, 7.2976, 7.2972, 7.2969, 7.2966, 7.2988, 7.2995, 7.2993, 7.299, 7.2987, 7.2993, 7.2989, 7.2986, 7.2983, 7.298, 7.2987, 7.2984, 7.298, 7.2976, 7.2973, 7.2969, 7.2969, 7.2965, 7.2963, 7.2959, 7.2966, 7.2962, 7.2969, 7.2966, 7.2973, 7.2969, 7.2967, 7.2964, 7.2952, 7.296, 7.2956, 7.2953, 7.2951, 7.2958, 7.2956, 7.2952, 7.2949, 7.2946, 7.2943, 7.294, 7.2937, 7.2935, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2912, 7.2909, 7.2942, 7.2938, 7.2945, 7.2942, 7.2949, 7.2955, 7.2953, 7.296, 7.2956, 7.2953, 7.2949, 7.2946, 7.2943, 7.295, 7.2947, 7.2954, 7.2961, 7.296, 7.2958, 7.2956, 7.2962, 7.2959, 7.2966, 7.2963, 7.2959, 7.2966, 7.2972, 7.2969, 7.2966, 7.2973, 7.297, 7.2966, 7.2963, 7.2962, 7.2969, 7.2965, 7.2961, 7.2968, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2947, 7.2943, 7.2949, 7.2946, 7.2934, 7.2932, 7.2931, 7.2928, 7.293, 7.2926, 7.2924, 7.2931, 7.2928, 7.2934, 7.2931, 7.2938, 7.2935, 7.2942, 7.294, 7.2937, 7.2935, 7.2944, 7.294, 7.2947, 7.2945, 7.2941, 7.2938, 7.2935, 7.2932, 7.294, 7.2937, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2916, 7.2915, 7.2912, 7.2909, 7.2906, 7.2904, 7.292, 7.2916, 7.2913, 7.291, 7.2906, 7.2903, 7.2899, 7.2906, 7.2902, 7.2917, 7.2914, 7.291, 7.2898, 7.2908, 7.2905, 7.2933, 7.2949, 7.2946, 7.2943, 7.2961, 7.2957, 7.2963, 7.298, 7.2987, 7.2983, 7.298, 7.2986, 7.3003, 7.301, 7.3007, 7.3003, 7.3001, 7.2998, 7.2995, 7.3002, 7.3025, 7.3022, 7.3034, 7.3038, 7.3046, 7.3044, 7.304, 7.3036, 7.3065, 7.3072, 7.307, 7.3067, 7.3071, 7.3069, 7.3066, 7.3064, 7.3071, 7.3069, 7.3065, 7.3061, 7.3068, 7.3066, 7.3063, 7.307, 7.3077, 7.3077, 7.3074, 7.3081, 7.3077, 7.3073, 7.308, 7.3077, 7.3076, 7.3083, 7.308, 7.3078, 7.3075, 7.3073, 7.307, 7.3069, 7.3067, 7.3074, 7.3082, 7.3089, 7.3096, 7.3093, 7.3091, 7.3087, 7.3092, 7.3099, 7.3097, 7.3096, 7.3103, 7.3099, 7.3096, 7.3103, 7.3101, 7.3099, 7.3096, 7.3092, 7.309, 7.3097, 7.3103, 7.311, 7.3108, 7.3115, 7.3114, 7.3122, 7.3119, 7.3116, 7.3123, 7.3122, 7.3121, 7.3119, 7.3117, 7.3114, 7.3111, 7.3111, 7.3109, 7.3106, 7.3103, 7.31, 7.3098, 7.3129, 7.3128, 7.3134, 7.313, 7.3129, 7.3119, 7.3116, 7.3112, 7.311, 7.3098, 7.3095, 7.3094, 7.309, 7.3097, 7.3094, 7.309, 7.3087, 7.3084, 7.3082, 7.3078, 7.3075, 7.3072, 7.3068, 7.3064, 7.3087, 7.3084, 7.3081, 7.3081, 7.3078, 7.3075, 7.3066, 7.3085, 7.3102, 7.3098, 7.3094, 7.3091, 7.3089, 7.3087, 7.3084, 7.3081, 7.3078, 7.3084, 7.3087, 7.3074, 7.308, 7.3077, 7.3075, 7.3067, 7.3064, 7.3071, 7.3064, 7.3061, 7.3069, 7.3067, 7.3065, 7.3062, 7.3061, 7.3059, 7.3059, 7.3067, 7.3067, 7.3063, 7.3061, 7.3068, 7.3068, 7.3066, 7.3064, 7.3061, 7.3061, 7.3069, 7.3077, 7.3074, 7.3073, 7.3072, 7.3072, 7.308, 7.3079, 7.3078, 7.3075, 7.3075, 7.3072, 7.308, 7.3079, 7.3087, 7.3076, 7.3076, 7.3076, 7.3076, 7.3073], '192.168.122.116': [10.8111, 10.8828, 9.1753, 8.3186, 7.9092, 7.6551, 7.4737, 7.1981, 7.029, 7.4404, 7.2458, 7.129, 7.0411, 6.9245, 6.9201, 6.8585, 6.7923, 7.064, 6.7169, 7.1985, 7.1304, 7.1376, 7.0845, 7.297, 7.081, 7.0172, 7.0267, 7.5454, 7.4673, 7.4348, 7.3962, 7.3295, 7.4259, 7.3906, 7.3321, 7.2881, 7.2688, 7.2326, 7.3389, 7.419, 7.497, 7.4442, 7.4121, 7.3764, 7.3418, 7.4378, 7.4115, 7.3763, 7.3389, 7.3081, 7.2719, 7.2424, 7.4651, 7.4295, 7.3932, 7.3561, 7.319, 7.2837, 7.2559, 7.2215, 7.5617, 7.5397, 7.5042, 7.4772, 7.4734, 7.458, 7.4286, 7.4166, 7.3879, 7.4388, 7.4115, 7.3842, 7.357, 7.3805, 7.3649, 7.3513, 7.3309, 7.3149, 7.2974, 7.3401, 7.3155, 7.3594, 7.3368, 7.3218, 7.3059, 7.3478, 7.3229, 7.3084, 7.3526, 7.3403, 7.3252, 7.3455, 7.3251, 7.3041, 7.2955, 7.3329, 7.3152, 7.3, 7.3002, 7.2798, 7.5208, 7.4998, 7.4345, 7.4199, 7.4533, 7.4842, 7.5139, 7.4939, 7.4789, 7.4753, 7.4618, 7.4531, 7.3924, 7.4285, 7.4139, 7.4474, 7.4327, 7.4668, 7.4521, 7.4398, 7.428, 7.4268, 7.4119, 7.3977, 7.4285, 7.4594, 7.4469, 7.4305, 7.4157, 7.4038, 7.3903, 7.3768, 7.4039, 7.475, 7.4651, 7.495, 7.4839, 7.4708, 7.4546, 7.4406, 7.4988, 7.4884, 7.4799, 7.5034, 7.4948, 7.482, 7.4768, 7.4649, 7.4512, 7.5702, 7.5556, 7.6097, 7.5978, 7.5851, 7.5422, 7.5284, 7.5163, 7.5032, 7.4937, 7.4849, 7.4741, 7.462, 7.4506, 7.437, 7.4251, 7.4234, 7.3841, 7.372, 7.3612, 7.3495, 7.3434, 7.3345, 7.3869, 7.3774, 7.3692, 7.3595, 7.3564, 7.3448, 7.3348, 7.3286, 7.3179, 7.3359, 7.4373, 7.4283, 7.4186, 7.4094, 7.3987, 7.3918, 7.3858, 7.3749, 7.366, 7.357, 7.353, 7.3716, 7.3902, 7.3795, 7.3702, 7.3608, 7.3547, 7.3481, 7.3382, 7.3288, 7.3216, 7.337, 7.3302, 7.3211, 7.3386, 7.3308, 7.322, 7.318, 7.3096, 7.3002, 7.3469, 7.3407, 7.3305, 7.3478, 7.3428, 7.3337, 7.3305, 7.3478, 7.3402, 7.3564, 7.3499, 7.3287, 7.3195, 7.3137, 7.3075, 7.3013, 7.3199, 7.3388, 7.3571, 7.3723, 7.3682, 7.3647, 7.3586, 7.3354, 7.3266, 7.3186, 7.3143, 7.3293, 7.3224, 7.3198, 7.3113, 7.2868, 7.2946, 7.2893, 7.2831, 7.2766, 7.2691, 7.2834, 7.2867, 7.2807, 7.2777, 7.2915, 7.2842, 7.277, 7.2689, 7.2638, 7.2586, 7.2727, 7.2671, 7.2597, 7.2523, 7.2452, 7.2398, 7.233, 7.2462, 7.2391, 7.2529, 7.2664, 7.2614, 7.2572, 7.2519, 7.2453, 7.24, 7.2342, 7.2288, 7.2411, 7.2361, 7.2292, 7.2242, 7.2176, 7.2112, 7.2234, 7.2236, 7.2189, 7.2123, 7.2076, 7.2201, 7.2137, 7.2324, 7.2291, 7.2417, 7.2355, 7.2293, 7.2415, 7.2538, 7.2473, 7.2593, 7.2708, 7.2874, 7.2811, 7.2774, 7.2881, 7.336, 7.3328, 7.3259, 7.3213, 7.3152, 7.3092, 7.3032, 7.3133, 7.3068, 7.301, 7.3124, 7.3058, 7.3003, 7.337, 7.3305, 7.3268, 7.338, 7.3326, 7.3333, 7.3274, 7.3245, 7.3356, 7.3297, 7.3236, 7.3219, 7.3183, 7.3129, 7.3077, 7.3048, 7.3029, 7.2979, 7.2921, 7.2888, 7.2839, 7.2965, 7.3243, 7.3338, 7.33, 7.3405, 7.3351, 7.3317, 7.3322, 7.3312, 7.3271, 7.3223, 7.3225, 7.3197, 7.3624, 7.3601, 7.3855, 7.3799, 7.3738, 7.3843, 7.3653, 7.3778, 7.3586, 7.3708, 7.3821, 7.3638, 7.3678, 7.363, 7.3585, 7.3399, 7.3343, 7.3428, 7.3513, 7.3461, 7.3406, 7.3363, 7.3336, 7.3164, 7.3259, 7.3211, 7.3167, 7.3125, 7.3085, 7.3048, 7.2994, 7.295, 7.2907, 7.299, 7.2944, 7.2916, 7.2875, 7.2833, 7.2827, 7.2797, 7.2759, 7.2862, 7.2829, 7.2798, 7.2747, 7.2704, 7.2656, 7.2756, 7.2856, 7.2938, 7.2902, 7.2853, 7.2825, 7.2801, 7.2777, 7.2868, 7.2718, 7.268, 7.2665, 7.2755, 7.2726, 7.2564, 7.2677, 7.2644, 7.2483, 7.2601, 7.2443, 7.2464, 7.2417, 7.2421, 7.2383, 7.2405, 7.2364, 7.2319, 7.2406, 7.2406, 7.2491, 7.246, 7.2416, 7.2502, 7.2461, 7.2539, 7.2495, 7.2453, 7.2424, 7.238, 7.2348, 7.2322, 7.2284, 7.2262, 7.2403, 7.238, 7.2383, 7.2464, 7.2526, 7.2493, 7.2458, 7.2428, 7.2389, 7.2463, 7.2533, 7.2487, 7.2705, 7.2778, 7.2734, 7.2695, 7.2661, 7.2732, 7.2719, 7.2797, 7.2763, 7.287, 7.2834, 7.2909, 7.2866, 7.2825, 7.2826, 7.2906, 7.2863, 7.2824, 7.2906, 7.2908, 7.2867, 7.2839, 7.2805, 7.2785, 7.2792, 7.2755, 7.2745, 7.2718, 7.2792, 7.2769, 7.2846, 7.281, 7.2899, 7.2966, 7.2981, 7.2982, 7.3062, 7.3021, 7.2982, 7.2946, 7.2956, 7.3028, 7.3108, 7.3068, 7.3138, 7.3209, 7.3256, 7.3216, 7.3193, 7.3161, 7.3127, 7.3107, 7.3067, 7.3047, 7.3135, 7.3104, 7.3076, 7.3052, 7.3012, 7.2974, 7.2939, 7.2905, 7.2964, 7.2931, 7.2999, 7.2967, 7.2932, 7.2912, 7.2887, 7.2956, 7.2917, 7.2881, 7.2844, 7.2812, 7.2781, 7.2743, 7.2719, 7.2796, 7.2768, 7.2733, 7.2694, 7.2667, 7.2646, 7.2638, 7.2611, 7.2575, 7.2642, 7.2606, 7.2572, 7.2534, 7.253, 7.2413, 7.2482, 7.2545, 7.2521, 7.2492, 7.2464, 7.2432, 7.24, 7.2389, 7.2447, 7.2531, 7.2411, 7.2379, 7.2512, 7.2669, 7.2645, 7.2617, 7.2586, 7.2569, 7.2647, 7.2707, 7.2772, 7.2753, 7.2719, 7.2687, 7.2755, 7.272, 7.2699, 7.2683, 7.2666, 7.2644, 7.2624, 7.2609, 7.2584, 7.2644, 7.2612, 7.2684, 7.2672, 7.2749, 7.2804, 7.277, 7.2735, 7.2716, 7.2693, 7.2659, 7.2641, 7.2614, 7.2597, 7.257, 7.2557, 7.2524, 7.2496, 7.2466, 7.2528, 7.2497, 7.2578, 7.2545, 7.2563, 7.2618, 7.259, 7.2557, 7.2609, 7.2584, 7.2555, 7.2521, 7.2578, 7.2569, 7.2536, 7.2508, 7.2477, 7.2552, 7.2532, 7.2511, 7.248, 7.2448, 7.2457, 7.2444, 7.2423, 7.2398, 7.2371, 7.2362, 7.2329, 7.2305, 7.2287, 7.2255, 7.2308, 7.2289, 7.2258, 7.2227, 7.2195, 7.225, 7.2221, 7.2195, 7.2165, 7.2229, 7.2292, 7.2271, 7.2328, 7.2385, 7.3009, 7.3057, 7.3037, 7.301, 7.2978, 7.2954, 7.2935, 7.2992, 7.2977, 7.3033, 7.305, 7.3216, 7.3186, 7.3155, 7.321, 7.319, 7.3162, 7.3139, 7.3107, 7.308, 7.3074, 7.3046, 7.3024, 7.2993, 7.3046, 7.3026, 7.2998, 7.2973, 7.2955, 7.2939, 7.299, 7.3038, 7.3007, 7.2979, 7.2957, 7.293, 7.2901, 7.2873, 7.2853, 7.2826, 7.2801, 7.2774, 7.2745, 7.2809, 7.2783, 7.2756, 7.273, 7.2781, 7.2757, 7.2805, 7.2853, 7.2825, 7.28, 7.2784, 7.276, 7.2812, 7.2863, 7.2914, 7.2888, 7.2943, 7.2914, 7.2885, 7.2869, 7.2845, 7.2819, 7.2875, 7.2856, 7.2829, 7.2803, 7.2782, 7.2836, 7.2823, 7.28, 7.2774, 7.2747, 7.2736, 7.2737, 7.2711, 7.264, 7.2616, 7.2681, 7.2656, 7.2629, 7.2601, 7.2575, 7.2548, 7.2525, 7.25, 7.2475, 7.2462, 7.2437, 7.2421, 7.2335, 7.231, 7.2363, 7.2345, 7.2399, 7.2375, 7.2352, 7.2333, 7.2308, 7.2284, 7.233, 7.2305, 7.2281, 7.2268, 7.2317, 7.2294, 7.2276, 7.2253, 7.2232, 7.228, 7.2263, 7.2239, 7.2284, 7.2272, 7.2341, 7.2317, 7.2292, 7.2341, 7.2318, 7.2299, 7.2275, 7.2394, 7.2458, 7.2435, 7.2495, 7.2544, 7.2601, 7.2642, 7.2689, 7.2665, 7.2641, 7.2641, 7.2689, 7.2671, 7.2646, 7.2626, 7.2601, 7.2587, 7.2567, 7.2545, 7.2521, 7.2574, 7.2549, 7.2491, 7.2568, 7.2558, 7.2548, 7.2594, 7.2571, 7.2617, 7.2797, 7.2774, 7.2781, 7.283, 7.2888, 7.287, 7.2863, 7.2839, 7.2814, 7.2793, 7.2786, 7.2827, 7.2812, 7.2853, 7.2844, 7.2823, 7.2801, 7.2788, 7.2791, 7.2768, 7.2748, 7.2734, 7.271, 7.2701, 7.2687, 7.2732, 7.2777, 7.2754, 7.2797, 7.278, 7.2756, 7.2739, 7.2778, 7.2773, 7.2752, 7.279, 7.2831, 7.2812, 7.279, 7.2766, 7.2747, 7.2725, 7.2732, 7.2955, 7.2931, 7.2973, 7.3073, 7.305, 7.3025, 7.3005, 7.299, 7.2967, 7.3011, 7.2988, 7.2972, 7.2895, 7.2876, 7.2988, 7.2975, 7.2958, 7.2879, 7.2866, 7.2982, 7.3235, 7.3218, 7.3254, 7.3295, 7.3527, 7.351, 7.3492, 7.3472, 7.3544, 7.3525, 7.3565, 7.3605, 7.3589, 7.3528, 7.3511, 7.3488, 7.3525, 7.3506, 7.3489, 7.3468, 7.3705, 7.3683, 7.3664, 7.3702, 7.3688, 7.3669, 7.3646, 7.3627, 7.3667, 7.365, 7.3635, 7.3711, 7.3812, 7.3791, 7.3779, 7.3762, 7.3744, 7.3722, 7.37, 7.3678, 7.3655, 7.3693, 7.3673, 7.3674, 7.3709, 7.369, 7.373, 7.3768, 7.3757, 7.3741, 7.378, 7.3818, 7.3859, 7.3968, 7.3944, 7.3926, 7.3903, 7.3882, 7.3918, 7.3898, 7.3876, 7.3864, 7.3848, 7.3837, 7.3824, 7.3809, 7.389, 7.3926, 7.391, 7.3895, 7.3876, 7.3912, 7.3893, 7.3873, 7.3852, 7.383, 7.3808, 7.3785, 7.3823, 7.3811, 7.3792, 7.378, 7.3758, 7.3797, 7.3798, 7.3831, 7.3813, 7.3791, 7.3775, 7.3704, 7.3741, 7.3779, 7.3758, 7.3736, 7.3716, 7.3752, 7.3788, 7.3718, 7.3699, 7.3678, 7.3714, 7.3693, 7.3675, 7.366, 7.3648, 7.3629, 7.361, 7.3595, 7.3576, 7.3556, 7.3537, 7.3517, 7.3553, 7.3542, 7.3683, 7.3745, 7.3732, 7.3721, 7.371, 7.375, 7.3785, 7.3774, 7.3754, 7.3733, 7.377, 7.3764, 7.383, 7.3809, 7.3842, 7.3876, 7.3808, 7.3798, 7.3835, 7.382, 7.3751, 7.3787, 7.3766, 7.375, 7.3728, 7.3675, 7.3655, 7.3635, 7.3669, 7.3659, 7.3639, 7.362, 7.361, 7.3596, 7.3576, 7.3558, 7.3545, 7.3526, 7.346, 7.3495, 7.353, 7.3522, 7.3503, 7.3537, 7.3525, 7.3557, 7.3551, 7.3541, 7.3476, 7.3463, 7.345, 7.3443, 7.3482, 7.3467, 7.3401, 7.3402, 7.3391, 7.3379, 7.3367, 7.3349, 7.3345, 7.338, 7.336, 7.334, 7.332, 7.3367, 7.335, 7.333, 7.3321, 7.3352, 7.3335, 7.332, 7.3301, 7.3281, 7.3265, 7.3248, 7.3231, 7.3211, 7.3201, 7.314, 7.3121, 7.3104, 7.3138, 7.3119, 7.3157, 7.314, 7.3127, 7.3161, 7.3148, 7.3128, 7.311, 7.3093, 7.3128, 7.3117, 7.3153, 7.3143, 7.3128, 7.3122, 7.3106, 7.3166, 7.3152, 7.3257, 7.3293, 7.3276, 7.3271, 7.3254, 7.3241, 7.3228, 7.3211, 7.3194, 7.3175, 7.3161, 7.3193, 7.3176, 7.3159, 7.3142, 7.3132, 7.3115, 7.3096, 7.3082, 7.3063, 7.3056, 7.3048, 7.3083, 7.3111, 7.3099, 7.3082, 7.3022, 7.301, 7.2997, 7.2982, 7.3016, 7.3007, 7.3043, 7.3025, 7.3009, 7.2994, 7.303, 7.3061, 7.3147, 7.3135, 7.3121, 7.3106, 7.3091, 7.3076, 7.306, 7.3048, 7.3032, 7.3021, 7.3074, 7.3059, 7.3044, 7.3034, 7.3064, 7.3049, 7.3003, 7.3013, 7.2969, 7.3008, 7.2992, 7.2979, 7.2968, 7.2951, 7.2933, 7.2915, 7.2945, 7.2963, 7.2947, 7.2934, 7.2917, 7.2947, 7.2977, 7.3009, 7.2996, 7.2978, 7.3006, 7.3035, 7.3018, 7.3004, 7.2994, 7.2936, 7.2964, 7.2992, 7.302, 7.3048, 7.3036, 7.3023, 7.3051, 7.3042, 7.3076, 7.306, 7.3043, 7.3026, 7.3009, 7.2993, 7.2977, 7.2921, 7.2906, 7.289, 7.2875, 7.2905, 7.2898, 7.2927, 7.2954, 7.2939, 7.2969, 7.2998, 7.3026, 7.3057, 7.3041, 7.2986, 7.2971, 7.2957, 7.294, 7.2929, 7.2925, 7.2868, 7.2858, 7.2849, 7.2833, 7.2863, 7.2901, 7.2932, 7.2934, 7.2922, 7.2906, 7.2891, 7.2875, 7.2905, 7.2933, 7.2926, 7.2959, 7.2945, 7.2938, 7.2926, 7.2919, 7.2902, 7.289, 7.2923, 7.2908, 7.3073, 7.3137, 7.3163, 7.315, 7.3139, 7.3125, 7.3108, 7.3096, 7.3083, 7.3114, 7.3102, 7.3129, 7.3113, 7.3142, 7.3171, 7.3155, 7.3141, 7.3128, 7.3161, 7.3147, 7.3131, 7.3117, 7.3144, 7.3131, 7.3116, 7.3146, 7.3137, 7.3124, 7.3107, 7.31, 7.3091, 7.3084, 7.3114, 7.3111, 7.3139, 7.3123, 7.3112, 7.3096, 7.3082, 7.311, 7.3098, 7.3088, 7.3121, 7.3113, 7.314, 7.3124, 7.3109, 7.3097, 7.3087, 7.3072, 7.3057, 7.3043, 7.3029, 7.3014, 7.2967, 7.2922, 7.2906, 7.2933, 7.2917, 7.2905, 7.2889, 7.2873, 7.2902, 7.2931, 7.2916, 7.29, 7.2893, 7.2882, 7.291, 7.2895, 7.2921, 7.2924, 7.2917, 7.2944, 7.2931, 7.2957, 7.2946, 7.2937, 7.2926, 7.2911, 7.2895, 7.2921, 7.2907, 7.2896, 7.2881, 7.2867, 7.2863, 7.2814, 7.2798, 7.2786, 7.2771, 7.2796, 7.2782, 7.2767, 7.2792, 7.2788, 7.2778, 7.2767, 7.2753, 7.2739, 7.2726, 7.2719, 7.2704, 7.269, 7.2719, 7.2748, 7.274, 7.2729, 7.2756, 7.2784, 7.2769, 7.2764, 7.2754, 7.2793, 7.2784, 7.2773, 7.2764, 7.2752, 7.2739, 7.2768, 7.2756, 7.2781, 7.2732, 7.272, 7.2706, 7.2733, 7.2723, 7.2708, 7.2694, 7.268, 7.2672, 7.2665, 7.2652, 7.2637, 7.2628, 7.2655, 7.2682, 7.2669, 7.2654, 7.2681, 7.281, 7.2796, 7.2782, 7.2808, 7.2794, 7.278, 7.2766, 7.2761, 7.2714, 7.27, 7.2687, 7.2675, 7.2719, 7.2709, 7.2695, 7.2682, 7.2668, 7.2654, 7.2605, 7.2571, 7.2565, 7.2517, 7.2504, 7.254, 7.2533, 7.252, 7.2547, 7.2574, 7.2561, 7.2546, 7.2609, 7.2596, 7.2586, 7.2571, 7.2558, 7.2545, 7.2573, 7.2597, 7.2688, 7.2681, 7.2667, 7.2621, 7.2608, 7.2596, 7.2584, 7.2571, 7.2557, 7.2511, 7.2505, 7.2531, 7.2518, 7.2506, 7.2493, 7.2479, 7.2433, 7.2461, 7.2486, 7.2475, 7.2462, 7.2456, 7.2485, 7.2471, 7.2457, 7.2444, 7.2435, 7.2429, 7.2425, 7.2416, 7.2405, 7.2432, 7.2386, 7.2375, 7.2401, 7.2391, 7.2383, 7.2376, 7.2402, 7.2427, 7.2454, 7.2442, 7.2434, 7.2421, 7.2412, 7.2398, 7.2428, 7.2425, 7.2414, 7.2447, 7.2438, 7.2464, 7.2451, 7.2439, 7.2464, 7.2453, 7.2444, 7.2465, 7.2455, 7.2445, 7.24, 7.2361, 7.2364, 7.2394, 7.242, 7.2409, 7.24, 7.2386, 7.238, 7.2405, 7.2433, 7.242, 7.2376, 7.2399, 7.2425, 7.2412, 7.2402, 7.2392, 7.2383, 7.2373, 7.2362, 7.2352, 7.234, 7.2329, 7.2318, 7.2309, 7.2295, 7.2293, 7.2287, 7.2274, 7.2264, 7.2253, 7.2241, 7.2232, 7.2258, 7.2247, 7.2234, 7.2224, 7.2212, 7.2236, 7.223, 7.2218, 7.221, 7.2276, 7.2265, 7.229, 7.2281, 7.2268, 7.2262, 7.2252, 7.2244, 7.2266, 7.226, 7.2248, 7.2242, 7.223, 7.2251, 7.234, 7.2328, 7.2319, 7.2306, 7.2299, 7.2286, 7.2273, 7.2269, 7.2257, 7.2249, 7.2241, 7.2233, 7.2221, 7.2211, 7.2204, 7.2197, 7.2185, 7.2174, 7.2166, 7.2154, 7.2142, 7.2133, 7.2125, 7.2113, 7.2077, 7.2101, 7.2093, 7.2091, 7.2084, 7.2076, 7.2067, 7.2056, 7.2051, 7.2076, 7.2068, 7.2057, 7.2044, 7.2033, 7.2021, 7.2009, 7.2058, 7.205, 7.2038, 7.2038, 7.2026, 7.202, 7.2013, 7.2006, 7.1995, 7.201, 7.2, 7.1994, 7.2042, 7.203, 7.2062, 7.205, 7.2042, 7.203, 7.2022, 7.2011, 7.2001, 7.1989, 7.2034, 7.2025, 7.2013, 7.2067, 7.2066, 7.2057, 7.2046, 7.2035, 7.2025, 7.2015, 7.1975, 7.1967, 7.1956, 7.1979, 7.1969, 7.1963, 7.1956, 7.1947, 7.1944, 7.1968, 7.196, 7.1981, 7.197, 7.1965, 7.1958, 7.1951, 7.1942, 7.1931, 7.1925, 7.1919, 7.1908, 7.1899, 7.1923, 7.1913, 7.1937, 7.1931, 7.1953, 7.1941, 7.1933, 7.1893, 7.1882, 7.1963, 7.1955, 7.1943, 7.1956, 7.1948, 7.1939, 7.1929, 7.1924, 7.1913, 7.1904, 7.1892, 7.1882, 7.1872, 7.1898, 7.1887, 7.1947, 7.1971, 7.1962, 7.1955, 7.1944, 7.1933, 7.1932, 7.1924, 7.1913, 7.1901, 7.1925, 7.1917, 7.1908, 7.1897, 7.1928, 7.1923, 7.1912, 7.1939, 7.1966, 7.1963, 7.1956, 7.1953, 7.1977, 7.1965, 7.211, 7.2104, 7.2128, 7.2195, 7.2193, 7.2153, 7.2145, 7.2137, 7.2132, 7.2122, 7.2111, 7.2133, 7.2123, 7.2114, 7.2105, 7.2098, 7.209, 7.208, 7.2069, 7.2061, 7.2055, 7.2015, 7.2036, 7.2025, 7.2047, 7.2038, 7.2028, 7.2017, 7.2015, 7.2006, 7.1996, 7.1989, 7.1982, 7.1972, 7.1963, 7.1955, 7.1982, 7.1976, 7.1972, 7.1961, 7.1952, 7.1943, 7.1981, 7.2001, 7.199, 7.1981, 7.2002, 7.1991, 7.1981, 7.1971, 7.1995, 7.1984, 7.1976, 7.1968, 7.196, 7.1953, 7.1947, 7.1969, 7.1961, 7.195, 7.1969, 7.196, 7.1954, 7.1943, 7.1932, 7.1921, 7.1909, 7.1899, 7.1889, 7.1878, 7.1873, 7.1869, 7.1859, 7.1852, 7.1842, 7.1863, 7.1853, 7.1844, 7.1834, 7.1824, 7.1846, 7.1835, 7.1863, 7.1887, 7.1999, 7.1989, 7.1951, 7.194, 7.1961, 7.1925, 7.1916, 7.1907, 7.19, 7.1901, 7.1863, 7.1882, 7.1903, 7.1866, 7.1857, 7.1853, 7.1876, 7.1865, 7.1854, 7.1874, 7.1867, 7.1861, 7.1855, 7.1846, 7.184, 7.1861, 7.1854, 7.1849, 7.1876, 7.1841, 7.1834, 7.183, 7.1819, 7.1838, 7.1827, 7.1821, 7.184, 7.1863, 7.1883, 7.1873, 7.1863, 7.1884, 7.1905, 7.1895, 7.1885, 7.1875, 7.1867, 7.1888, 7.1877, 7.1868, 7.1858, 7.1847, 7.1836, 7.1825, 7.1875, 7.1866, 7.186, 7.185, 7.1842, 7.1861, 7.1881, 7.1871, 7.1865, 7.1854, 7.1871, 7.1891, 7.1881, 7.1871, 7.189, 7.1881, 7.1871, 7.1864, 7.1884, 7.1874, 7.1864, 7.1855, 7.1847, 7.1867, 7.1858, 7.1878, 7.1868, 7.1916, 7.1908, 7.1899, 7.1891, 7.1912, 7.1902, 7.1896, 7.1886, 7.1875, 7.1865, 7.1885, 7.1879, 7.1898, 7.189, 7.1883, 7.1877, 7.187, 7.1889, 7.188, 7.19, 7.189, 7.188, 7.1871, 7.1861, 7.1853, 7.1846, 7.1838, 7.183, 7.1819, 7.1809, 7.1801, 7.1823, 7.1815, 7.181, 7.1803, 7.1825, 7.1791, 7.1781, 7.1801, 7.179, 7.1783, 7.1778, 7.1769, 7.1759, 7.1778, 7.1773, 7.1764, 7.1755, 7.1744, 7.1735, 7.1893, 7.1896, 7.1889, 7.188, 7.1938, 7.1929, 7.192, 7.1911, 7.1967, 7.1963, 7.1953, 7.1922, 7.1941, 7.1932, 7.1953, 7.1973, 7.1966, 7.1986, 7.198, 7.197, 7.1964, 7.1955, 7.1976, 7.197, 7.1964, 7.1982, 7.2006, 7.2028, 7.2018, 7.2009, 7.2, 7.2046, 7.2012, 7.2061, 7.2056, 7.2079, 7.2158, 7.2152, 7.2368, 7.2359, 7.2349, 7.2342, 7.2345, 7.2366, 7.2358, 7.2379, 7.2372, 7.2344, 7.2336, 7.2328, 7.2322, 7.2322, 7.2313, 7.2307, 7.2331, 7.2321, 7.2337, 7.2355, 7.2372, 7.2395, 7.2387, 7.2378, 7.2426, 7.2418, 7.239, 7.2381, 7.2374, 7.2365, 7.2357, 7.2351, 7.2372, 7.2366, 7.2387, 7.2413, 7.2404, 7.2428, 7.2418, 7.2441, 7.2432, 7.2426, 7.2421, 7.2413, 7.2407, 7.2428, 7.2418, 7.2411, 7.2401, 7.2392, 7.2416, 7.241, 7.2448, 7.2466, 7.2457, 7.2476, 7.2472, 7.2492, 7.249, 7.2509, 7.2499, 7.249, 7.248, 7.2472, 7.2518, 7.2623, 7.267, 7.272, 7.2711, 7.2772, 7.2765, 7.2788, 7.2755, 7.2747, 7.2737, 7.2755, 7.2773, 7.2763, 7.2782, 7.2827, 7.2822, 7.2813, 7.286, 7.291, 7.2908, 7.2982, 7.3055, 7.3056, 7.3054, 7.3044, 7.3035, 7.3003, 7.3028, 7.3048, 7.3039, 7.3031, 7.3021, 7.3039, 7.3029, 7.302, 7.3011, 7.3001, 7.2995, 7.299, 7.2981, 7.2971, 7.2964, 7.2955, 7.2948, 7.2944, 7.2935, 7.2926, 7.2949, 7.2941, 7.2931, 7.2921, 7.2911, 7.2927, 7.2921, 7.2915, 7.2906, 7.2922, 7.2913, 7.2904, 7.2897, 7.2893, 7.2883, 7.2876, 7.2867, 7.2861, 7.2852, 7.2869, 7.2861, 7.2856, 7.2874, 7.2865, 7.2857, 7.2847, 7.2843, 7.2859, 7.2853, 7.2844, 7.2835, 7.2852, 7.282, 7.2813, 7.2805, 7.2822, 7.2818, 7.2814, 7.2834, 7.2828, 7.282, 7.2815, 7.2805, 7.2797, 7.2787, 7.2782, 7.2774, 7.2769, 7.2785, 7.2802, 7.2798, 7.2789, 7.2806, 7.2803, 7.2821, 7.2815, 7.2832, 7.2822, 7.2853, 7.2845, 7.2815, 7.2808, 7.28, 7.2793, 7.2811, 7.2802, 7.2797, 7.2789, 7.278, 7.2771, 7.281, 7.2801, 7.2794, 7.2789, 7.278, 7.2771, 7.2765, 7.2783, 7.2774, 7.2771, 7.2765, 7.276, 7.2751, 7.2742, 7.2738, 7.273, 7.2747, 7.2754, 7.2751, 7.2751, 7.2742, 7.2733, 7.2729, 7.2747, 7.2738, 7.2729, 7.2722, 7.2741, 7.2733, 7.2748, 7.2739, 7.2731, 7.2724, 7.272, 7.2712, 7.2708, 7.2702, 7.2694, 7.2685, 7.2726, 7.2719, 7.2712, 7.2756, 7.2748, 7.2844, 7.2843, 7.2837, 7.2828, 7.287, 7.2914, 7.2906, 7.2927, 7.2929, 7.2926, 7.2925, 7.2923, 7.2919, 7.2935, 7.2929, 7.292, 7.2938, 7.2934, 7.2927, 7.292, 7.2936, 7.2953, 7.2948, 7.2941, 7.3009, 7.3004, 7.2995, 7.2989, 7.2982, 7.2976, 7.2969, 7.296, 7.2976, 7.2993, 7.2984, 7.2976, 7.2993, 7.2984, 7.2975, 7.2983, 7.2999, 7.2968, 7.2962, 7.2953, 7.2972, 7.2967, 7.2963, 7.2955, 7.2949, 7.2965, 7.2957, 7.2974, 7.2966, 7.2958, 7.2974, 7.2968, 7.2985, 7.2977, 7.2994, 7.2986, 7.2978, 7.297, 7.2962, 7.2956, 7.2947, 7.2942, 7.2934, 7.293, 7.2923, 7.2918, 7.2934, 7.2925, 7.2919, 7.2911, 7.2902, 7.292, 7.2937, 7.3051, 7.3068, 7.3084, 7.3077, 7.3071, 7.3063, 7.3079, 7.3071, 7.3064, 7.3056, 7.306, 7.3051, 7.3067, 7.3058, 7.308, 7.3074, 7.3065, 7.3058, 7.3049, 7.3043, 7.3038, 7.3054, 7.3024, 7.3016, 7.3013, 7.3006, 7.2997, 7.2988, 7.298, 7.2976, 7.299, 7.2982, 7.2973, 7.2966, 7.2957, 7.2948, 7.294, 7.2958, 7.2974, 7.2965, 7.2957, 7.2948, 7.2944, 7.2935, 7.2926, 7.2921, 7.2918, 7.2913, 7.2908, 7.29, 7.2893, 7.2885, 7.2878, 7.2873, 7.2868, 7.286, 7.2878, 7.2896, 7.2891, 7.2884, 7.2876, 7.2871, 7.2865, 7.2857, 7.2875, 7.2867, 7.2859, 7.2851, 7.2867, 7.286, 7.2852, 7.2845, 7.2836, 7.2851, 7.2846, 7.2838, 7.2851, 7.2842, 7.2857, 7.2848, 7.284, 7.2857, 7.2873, 7.2865, 7.2857, 7.285, 7.2864, 7.2857, 7.2849, 7.2844, 7.2836, 7.285, 7.2841, 7.2855, 7.2853, 7.2846, 7.2837, 7.2829, 7.2823, 7.2816, 7.281, 7.2803, 7.2797, 7.279, 7.2783, 7.2775, 7.279, 7.2786, 7.2803, 7.2797, 7.2791, 7.2786, 7.2779, 7.2773, 7.2768, 7.2765, 7.2758, 7.2756, 7.2748, 7.2739, 7.2738, 7.2733, 7.2726, 7.2742, 7.2735, 7.2738, 7.2736, 7.2728, 7.2722, 7.2714, 7.271, 7.2726, 7.2719, 7.2713, 7.2707, 7.2699, 7.2709, 7.2701, 7.2733, 7.275, 7.2742, 7.2734, 7.2731, 7.2724, 7.2717, 7.271, 7.2706, 7.2698, 7.2692, 7.2688, 7.2682, 7.2675, 7.267, 7.2664, 7.2643, 7.2662, 7.2656, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2682, 7.2676, 7.2667, 7.2639, 7.2633, 7.2646, 7.2639, 7.2631, 7.2646, 7.264, 7.2655, 7.2648, 7.2662, 7.2657, 7.2649, 7.2646, 7.2638, 7.263, 7.2707, 7.2699, 7.2692, 7.2685, 7.27, 7.2692, 7.2686, 7.2702, 7.2696, 7.2691, 7.2692, 7.2705, 7.272, 7.2714, 7.273, 7.2723, 7.2718, 7.271, 7.2702, 7.2717, 7.2711, 7.2703, 7.2695, 7.271, 7.2702, 7.2696, 7.2692, 7.2665, 7.268, 7.2674, 7.2653, 7.2654, 7.2626, 7.2625, 7.262, 7.2614, 7.2611, 7.2604, 7.2597, 7.259, 7.2614, 7.2646, 7.2619, 7.2633, 7.2626, 7.262, 7.2635, 7.2628, 7.263, 7.2631, 7.2666, 7.2665, 7.2684, 7.2679, 7.2673, 7.2666, 7.2681, 7.2678, 7.2678, 7.2671, 7.2665, 7.2657, 7.2672, 7.2666, 7.266, 7.2687, 7.2679, 7.2671, 7.2666, 7.2659, 7.2653, 7.2632, 7.2649, 7.2659, 7.2652, 7.2624, 7.2617, 7.2631, 7.2657, 7.2649, 7.2641, 7.2634, 7.2667, 7.2664, 7.266, 7.2656, 7.265, 7.2643, 7.2636, 7.2628, 7.2621, 7.2614, 7.2606, 7.26, 7.2613, 7.2628, 7.2623, 7.2617, 7.261, 7.2605, 7.2598, 7.259, 7.2582, 7.2616, 7.2615, 7.2611, 7.2584, 7.2579, 7.2574, 7.2567, 7.254, 7.2555, 7.2548, 7.254, 7.2533, 7.2506, 7.2531, 7.2524, 7.2536, 7.2529, 7.2523, 7.2539, 7.2533, 7.2526, 7.2518, 7.2512, 7.2507, 7.25, 7.2514, 7.2507, 7.25, 7.2514, 7.2508, 7.25, 7.2494, 7.2486, 7.2503, 7.2497, 7.2492, 7.2488, 7.2482, 7.2475, 7.2491, 7.2484, 7.2478, 7.247, 7.2484, 7.2476, 7.2491, 7.2485, 7.2478, 7.2493, 7.2486, 7.2479, 7.2496, 7.2501, 7.2514, 7.2511, 7.2524, 7.2537, 7.2533, 7.2527, 7.2542, 7.2556, 7.255, 7.2562, 7.2555, 7.255, 7.2565, 7.2558, 7.2552, 7.2545, 7.2519, 7.2534, 7.2548, 7.2542, 7.2556, 7.2552, 7.2545, 7.2537, 7.2532, 7.2525, 7.2542, 7.2535, 7.2529, 7.2522, 7.2515, 7.2508, 7.2525, 7.2523, 7.2516, 7.2531, 7.2526, 7.254, 7.2533, 7.2526, 7.2541, 7.2535, 7.2532, 7.2528, 7.2526, 7.2519, 7.2532, 7.2525, 7.2577, 7.2574, 7.2593, 7.2586, 7.2598, 7.2593, 7.2585, 7.2577, 7.2571, 7.2563, 7.2556, 7.2548, 7.254, 7.2554, 7.255, 7.2543, 7.2556, 7.256, 7.2553, 7.2546, 7.254, 7.2535, 7.255, 7.2544, 7.2538, 7.2532, 7.2527, 7.2507, 7.2482, 7.2479, 7.2473, 7.2488, 7.251, 7.2511, 7.2506, 7.2521, 7.2516, 7.2508, 7.2522, 7.2515, 7.2551, 7.2544, 7.2537, 7.253, 7.2507, 7.2521, 7.2535, 7.2528, 7.2526, 7.2519, 7.2534, 7.2527, 7.2541, 7.2556, 7.255, 7.2544, 7.2539, 7.2532, 7.2527, 7.252, 7.2515, 7.251, 7.2502, 7.2516, 7.2509, 7.2503, 7.2517, 7.2533, 7.257, 7.2585, 7.2587, 7.2582, 7.2577, 7.2552, 7.2546, 7.2542, 7.2536, 7.2529, 7.2523, 7.2516, 7.2512, 7.2509, 7.2488, 7.2502, 7.2495, 7.2528, 7.2526, 7.2507, 7.25, 7.2493, 7.2491, 7.2505, 7.2498, 7.2497, 7.2511, 7.251, 7.2523, 7.2516, 7.2529, 7.2524, 7.2519, 7.2515, 7.2509, 7.2503, 7.2498, 7.2512, 7.2507, 7.2501, 7.2513, 7.2507, 7.2502, 7.2495, 7.2492, 7.2486, 7.2481, 7.2477, 7.247, 7.2484, 7.2496, 7.2489, 7.2482, 7.2477, 7.2471, 7.2464, 7.2457, 7.245, 7.2443, 7.2436, 7.2435, 7.2429, 7.2423, 7.2417, 7.2421, 7.2417, 7.243, 7.2423, 7.2417, 7.243, 7.2424, 7.2437, 7.243, 7.2424, 7.2418, 7.2394, 7.239, 7.239, 7.2384, 7.2398, 7.2398, 7.2391, 7.2388, 7.2383, 7.2376, 7.237, 7.2365, 7.236, 7.2373, 7.2366, 7.2359, 7.2352, 7.2365, 7.236, 7.2353, 7.2366, 7.2359, 7.2374, 7.2367, 7.2379, 7.2372, 7.2365, 7.2379, 7.2372, 7.2368, 7.2363, 7.2376, 7.237, 7.2346, 7.236, 7.2354, 7.2347, 7.2341, 7.2336, 7.2349, 7.2342, 7.2338, 7.2341, 7.2334, 7.2327, 7.2321, 7.2318, 7.2313, 7.2309, 7.2302, 7.2296, 7.2289, 7.2302, 7.2297, 7.2291, 7.2286, 7.228, 7.2283, 7.2296, 7.2291, 7.2287, 7.2282, 7.2295, 7.2289, 7.2301, 7.2294, 7.2308, 7.2303, 7.2362, 7.2357, 7.2351, 7.2345, 7.2342, 7.2339, 7.2335, 7.2331, 7.2308, 7.2302, 7.2295, 7.229, 7.2284, 7.2289, 7.2283, 7.2281, 7.2275, 7.227, 7.2271, 7.2289, 7.2323, 7.2339, 7.2377, 7.2378, 7.2372, 7.2385, 7.2399, 7.2393, 7.2388, 7.24, 7.2414, 7.2408, 7.2402, 7.2432, 7.2426, 7.2422, 7.2435, 7.2428, 7.2424, 7.2418, 7.2415, 7.2429, 7.2423, 7.2417, 7.2411, 7.2406, 7.242, 7.2414, 7.2408, 7.2387, 7.2383, 7.238, 7.2393, 7.2386, 7.2381, 7.2387, 7.24, 7.2394, 7.2389, 7.2383, 7.2376, 7.2371, 7.2365, 7.2359, 7.2336, 7.233, 7.2323, 7.2344, 7.2339, 7.2374, 7.2367, 7.236, 7.2449, 7.2445, 7.2439, 7.2434, 7.2433, 7.2427, 7.2421, 7.2416, 7.2413, 7.2425, 7.2421, 7.2415, 7.2409, 7.2422, 7.2418, 7.2412, 7.2407, 7.242, 7.2432, 7.2427, 7.2423, 7.2416, 7.2428, 7.2422, 7.2417, 7.2411, 7.2423, 7.2435, 7.243, 7.2425, 7.242, 7.2415, 7.2409, 7.2404, 7.2426, 7.2422, 7.2416, 7.2413, 7.2425, 7.2439, 7.244, 7.2453, 7.2465, 7.246, 7.2457, 7.2469, 7.2465, 7.2478, 7.2474, 7.2469, 7.2466, 7.246, 7.246, 7.2473, 7.247, 7.2464, 7.246, 7.2454, 7.2448, 7.2442, 7.2435, 7.2432, 7.2426, 7.242, 7.2433, 7.2426, 7.2457, 7.2452, 7.2449, 7.2461, 7.246, 7.2455, 7.2452, 7.2469, 7.2463, 7.2457, 7.2455, 7.2451, 7.2447, 7.244, 7.2433, 7.2445, 7.2441, 7.2436, 7.2448, 7.2442, 7.2456, 7.2451, 7.2444, 7.244, 7.2436, 7.2429, 7.2442, 7.2436, 7.2413, 7.2408, 7.2386, 7.2402, 7.2398, 7.2391, 7.2385, 7.2381, 7.2396, 7.2392, 7.2404, 7.2399, 7.2392, 7.2386, 7.2397, 7.239, 7.2387, 7.2384, 7.2378, 7.2375, 7.2369, 7.2382, 7.2375, 7.2369, 7.2346, 7.2339, 7.2333, 7.2345, 7.234, 7.2334, 7.2345, 7.234, 7.2335, 7.2346, 7.2358, 7.2353, 7.2348, 7.2349, 7.2344, 7.234, 7.2336, 7.233, 7.2327, 7.2321, 7.2315, 7.2347, 7.2368, 7.2363, 7.2358, 7.237, 7.2364, 7.2358, 7.2352, 7.2364, 7.2363, 7.2357, 7.2352, 7.2347, 7.2344, 7.2346, 7.2358, 7.2352, 7.2348, 7.236, 7.2355, 7.2349, 7.2399, 7.2394, 7.2406, 7.2401, 7.2395, 7.2389, 7.2386, 7.238, 7.2375, 7.237, 7.2365, 7.2377, 7.2371, 7.2365, 7.2361, 7.2372, 7.2367, 7.2378, 7.2372, 7.2366, 7.2365, 7.236, 7.2357, 7.2351, 7.2346, 7.234, 7.2335, 7.2332, 7.2315, 7.2309, 7.2303, 7.2315, 7.2309, 7.2321, 7.2332, 7.2329, 7.2327, 7.2328, 7.2322, 7.2334, 7.2347, 7.2341, 7.2353, 7.2347, 7.2359, 7.2353, 7.235, 7.2344, 7.2338, 7.2333, 7.2327, 7.2339, 7.2333, 7.2345, 7.2342, 7.2335, 7.235, 7.2344, 7.2338, 7.235, 7.2345, 7.2345, 7.2342, 7.2353, 7.2347, 7.2342, 7.2336, 7.2348, 7.2342, 7.2338, 7.2334, 7.2329, 7.2325, 7.2337, 7.2333, 7.2328, 7.2322, 7.2334, 7.233, 7.2326, 7.2325, 7.2326, 7.2323, 7.2319, 7.2316, 7.233, 7.2324, 7.2319, 7.2332, 7.2326, 7.2321, 7.2316, 7.233, 7.2326, 7.2325, 7.232, 7.2334, 7.2329, 7.2307, 7.2302, 7.2296, 7.229, 7.2287, 7.2284, 7.2281, 7.2275, 7.2269, 7.2269, 7.2263, 7.2258, 7.227, 7.2264, 7.2263, 7.2257, 7.2254, 7.2248, 7.2243, 7.2237, 7.2232, 7.2229, 7.2209, 7.2209, 7.2205, 7.2203, 7.2197, 7.2192, 7.2192, 7.2204, 7.2199, 7.2194, 7.219, 7.2185, 7.2179, 7.2174, 7.2169, 7.2164, 7.216, 7.2158, 7.2154, 7.2198, 7.2192, 7.2189, 7.2183, 7.2177, 7.2173, 7.2184, 7.2181, 7.2179, 7.221, 7.2206, 7.2201, 7.2213, 7.2208, 7.2203, 7.2202, 7.2196, 7.219, 7.22, 7.2194, 7.2189, 7.2184, 7.2186, 7.2199, 7.221, 7.2207, 7.2201, 7.2197, 7.2192, 7.2186, 7.2181, 7.2187, 7.2183, 7.2177, 7.2173, 7.217, 7.2167, 7.2178, 7.2175, 7.2189, 7.2184, 7.2181, 7.2176, 7.2173, 7.2171, 7.2168, 7.2181, 7.2177, 7.2172, 7.2167, 7.2182, 7.2212, 7.2206, 7.2201, 7.2196, 7.2191, 7.2185, 7.2179, 7.2175, 7.217, 7.2164, 7.2158, 7.2153, 7.215, 7.2144, 7.2154, 7.2148, 7.2142, 7.2141, 7.2135, 7.2146, 7.214, 7.215, 7.2144, 7.2138, 7.2135, 7.2115, 7.211, 7.2105, 7.2102, 7.2098, 7.2117, 7.2111, 7.2105, 7.2101, 7.2096, 7.213, 7.2141, 7.2136, 7.213, 7.2131, 7.2126, 7.2137, 7.2148, 7.2159, 7.217, 7.215, 7.2144, 7.2138, 7.2149, 7.2176, 7.2173, 7.2184, 7.2195, 7.2192, 7.2186, 7.2201, 7.2195, 7.2206, 7.22, 7.2195, 7.2189, 7.2184, 7.2179, 7.2174, 7.2169, 7.2165, 7.2175, 7.2172, 7.2173, 7.2186, 7.2197, 7.2215, 7.2209, 7.2205, 7.2213, 7.2223, 7.2233, 7.2249, 7.2244, 7.2255, 7.2249, 7.2244, 7.2243, 7.2238, 7.2235, 7.2229, 7.2223, 7.2234, 7.2248, 7.2244, 7.2239, 7.2233, 7.2248, 7.2244, 7.2239, 7.2234, 7.2228, 7.2223, 7.2218, 7.223, 7.2226, 7.2237, 7.2247, 7.2243, 7.2254, 7.2249, 7.226, 7.2256, 7.2252, 7.2248, 7.2243, 7.2238, 7.2234, 7.2244, 7.2238, 7.2235, 7.2231, 7.2226, 7.2223, 7.2217, 7.2227, 7.2224, 7.2237, 7.2231, 7.2228, 7.2225, 7.222, 7.22, 7.2194, 7.2211, 7.2206, 7.2201, 7.2202, 7.2196, 7.2193, 7.2187, 7.2181, 7.2176, 7.2173, 7.2168, 7.2163, 7.2173, 7.2167, 7.2148, 7.2144, 7.2139, 7.2151, 7.2148, 7.2158, 7.2153, 7.2149, 7.2159, 7.2154, 7.2151, 7.2146, 7.2141, 7.2136, 7.2139, 7.215, 7.2171, 7.2182, 7.2192, 7.2187, 7.2182, 7.2191, 7.2186, 7.2181, 7.2181, 7.2176, 7.2172, 7.2167, 7.2148, 7.2143, 7.2139, 7.2133, 7.213, 7.2125, 7.2136, 7.213, 7.2126, 7.2127, 7.2125, 7.2121, 7.2137, 7.2131, 7.2126, 7.2123, 7.2119, 7.2114, 7.2108, 7.2102, 7.2097, 7.2134, 7.2129, 7.2125, 7.2122, 7.2133, 7.2128, 7.2123, 7.2118, 7.2114, 7.2112, 7.2107, 7.2117, 7.2114, 7.2109, 7.2108, 7.2103, 7.2098, 7.2093, 7.2087, 7.2145, 7.2126, 7.2137, 7.2149, 7.2149, 7.2143, 7.2155, 7.2149, 7.2144, 7.214, 7.2135, 7.2116, 7.2111, 7.2122, 7.2116, 7.2112, 7.2122, 7.2133, 7.2128, 7.2127, 7.214, 7.2122, 7.2116, 7.2113, 7.2108, 7.2103, 7.2099, 7.2094, 7.2104, 7.21, 7.2095, 7.2105, 7.21, 7.2095, 7.2169, 7.2166, 7.216, 7.2154, 7.2149, 7.2145, 7.2141, 7.2137, 7.2146, 7.2144, 7.217, 7.2165, 7.2162, 7.2157, 7.2166, 7.2162, 7.2159, 7.2154, 7.2153, 7.2135, 7.2133, 7.213, 7.214, 7.2136, 7.2133, 7.213, 7.2126, 7.2123, 7.2137, 7.2134, 7.213, 7.2135, 7.2129, 7.2124, 7.2121, 7.2117, 7.2115, 7.2125, 7.2125, 7.212, 7.2137, 7.2163, 7.2159, 7.217, 7.2165, 7.2162, 7.2157, 7.2152, 7.2156, 7.2153, 7.2151, 7.2149, 7.2145, 7.2141, 7.2136, 7.2118, 7.2144, 7.2139, 7.215, 7.2145, 7.214, 7.2135, 7.2129, 7.2138, 7.2134, 7.2131, 7.2142, 7.2137, 7.2132, 7.2128, 7.2124, 7.212, 7.2117, 7.2112, 7.2107, 7.2118, 7.2114, 7.2125, 7.2119, 7.2114, 7.2111, 7.2106, 7.2115, 7.2112, 7.2106, 7.2102, 7.2098, 7.2103, 7.2104, 7.21, 7.211, 7.2109, 7.2107, 7.2106, 7.2118, 7.2115, 7.2096, 7.2105, 7.2124, 7.2122, 7.2131, 7.2126, 7.2122, 7.2118, 7.2113, 7.211, 7.2119, 7.2114, 7.211, 7.2105, 7.2131, 7.2127, 7.2123, 7.2121, 7.2146, 7.2141, 7.2138, 7.2139, 7.2125, 7.2135, 7.213, 7.2125, 7.2138, 7.2133, 7.2129, 7.2139, 7.2135, 7.2146, 7.2155, 7.2151, 7.2148, 7.2144, 7.214, 7.2154, 7.2155, 7.2151, 7.2147, 7.2142, 7.2137, 7.2131, 7.2129, 7.2139, 7.2149, 7.2144, 7.2139, 7.2136, 7.2132, 7.2127, 7.2124, 7.2119, 7.2114, 7.2124, 7.2122, 7.2104, 7.21, 7.2097, 7.2093, 7.2088, 7.2086, 7.2081, 7.2076, 7.2071, 7.2081, 7.2076, 7.2071, 7.2083, 7.2078, 7.2076, 7.2073, 7.2055, 7.205, 7.2045, 7.204, 7.2051, 7.2061, 7.2074, 7.2084, 7.2079, 7.2073, 7.2083, 7.2081, 7.2076, 7.2085, 7.208, 7.2075, 7.2075, 7.2071, 7.2066, 7.2063, 7.2074, 7.2072, 7.2068, 7.2078, 7.2073, 7.2068, 7.2073, 7.2069, 7.2065, 7.2075, 7.2084, 7.2079, 7.2074, 7.2071, 7.2066, 7.2076, 7.2071, 7.2081, 7.2091, 7.2101, 7.2096, 7.2091, 7.2087, 7.2083, 7.2078, 7.2073, 7.2101, 7.2097, 7.2157, 7.2167, 7.2166, 7.2164, 7.2174, 7.217, 7.2165, 7.2162, 7.2159, 7.2156, 7.2152, 7.2164, 7.2159, 7.2155, 7.2165, 7.2162, 7.2159, 7.217, 7.2165, 7.2147, 7.2157, 7.2182, 7.2196, 7.2192, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.217, 7.2167, 7.2165, 7.2163, 7.216, 7.2156, 7.2168, 7.2164, 7.2169, 7.2179, 7.2175, 7.217, 7.2182, 7.2178, 7.2175, 7.2188, 7.2184, 7.2179, 7.2188, 7.2183, 7.2194, 7.219, 7.22, 7.2212, 7.2207, 7.2204, 7.2214, 7.2209, 7.2219, 7.2214, 7.2224, 7.2219, 7.2216, 7.2225, 7.222, 7.2216, 7.2211, 7.2208, 7.2204, 7.2199, 7.2194, 7.2189, 7.2184, 7.218, 7.2191, 7.2187, 7.2183, 7.2179, 7.2189, 7.2184, 7.2179, 7.2177, 7.2172, 7.2169, 7.2165, 7.2161, 7.2156, 7.2151, 7.2147, 7.2142, 7.2172, 7.2167, 7.2165, 7.216, 7.2155, 7.2151, 7.2146, 7.2144, 7.214, 7.2137, 7.2134, 7.2131, 7.2127, 7.2139, 7.2137, 7.2133, 7.2143, 7.2138, 7.2133, 7.2128, 7.2123, 7.2119, 7.2114, 7.211, 7.2119, 7.2129, 7.2124, 7.2134, 7.2131, 7.2141, 7.2151, 7.2163, 7.216, 7.2155, 7.2154, 7.2152, 7.2149, 7.2146, 7.2142, 7.2138, 7.2133, 7.2129, 7.2125, 7.2121, 7.2119, 7.2114, 7.2109, 7.2105, 7.2103, 7.2155, 7.2156, 7.2166, 7.2163, 7.2173, 7.2169, 7.2164, 7.2159, 7.2154, 7.2164, 7.2162, 7.2178, 7.2179, 7.2175, 7.2172, 7.2169, 7.2165, 7.2148, 7.2143, 7.2154, 7.215, 7.2147, 7.2143, 7.2138, 7.2133, 7.2129, 7.2124, 7.2142, 7.215, 7.2159, 7.2154, 7.215, 7.2146, 7.2162, 7.2158, 7.2168, 7.2165, 7.2173, 7.2168, 7.2163, 7.2172, 7.2168, 7.2163, 7.2158, 7.2153, 7.2163, 7.2159, 7.2156, 7.2166, 7.2161, 7.2158, 7.2167, 7.2162, 7.2157, 7.2154, 7.2137, 7.2151, 7.2148, 7.2145, 7.2141, 7.2137, 7.2121, 7.2119, 7.2115, 7.211, 7.2106, 7.2115, 7.2124, 7.212, 7.2117, 7.2112, 7.2127, 7.2137, 7.2133, 7.213, 7.2125, 7.2135, 7.2131, 7.214, 7.215, 7.2147, 7.2144, 7.2139, 7.2134, 7.2144, 7.214, 7.2141, 7.2144, 7.2143, 7.2139, 7.2135, 7.2118, 7.2114, 7.211, 7.2105, 7.21, 7.2108, 7.2104, 7.21, 7.2109, 7.2106, 7.2103, 7.2111, 7.2106, 7.2102, 7.2097, 7.2094, 7.2103, 7.2086, 7.2081, 7.2089, 7.2085, 7.208, 7.2078, 7.2088, 7.2086, 7.2081, 7.209, 7.2085, 7.208, 7.2078, 7.2076, 7.2071, 7.2081, 7.2077, 7.2074, 7.2084, 7.2081, 7.2078, 7.2101, 7.2099, 7.2164, 7.216, 7.2157, 7.2152, 7.2139, 7.2134, 7.2156, 7.2153, 7.2149, 7.2145, 7.2141, 7.215, 7.2161, 7.2162, 7.2157, 7.2154, 7.2164, 7.2187, 7.2183, 7.2194, 7.219, 7.2187, 7.2182, 7.2193, 7.2206, 7.2202, 7.2198, 7.2207, 7.2204, 7.2204, 7.2202, 7.2198, 7.2196, 7.2205, 7.2214, 7.221, 7.2206, 7.2204, 7.22, 7.2196, 7.2205, 7.2202, 7.2197, 7.2193, 7.2189, 7.2184, 7.2194, 7.2203, 7.2212, 7.2208, 7.2217, 7.2215, 7.2211, 7.222, 7.2229, 7.2224, 7.2221, 7.2217, 7.2214, 7.2217, 7.2214, 7.2223, 7.2219, 7.2216, 7.2226, 7.2224, 7.2224, 7.2223, 7.2243, 7.224, 7.2235, 7.2231, 7.2227, 7.2223, 7.2233, 7.223, 7.2226, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2201, 7.2197, 7.2192, 7.219, 7.2186, 7.2238, 7.2233, 7.2229, 7.2224, 7.2221, 7.2216, 7.2225, 7.222, 7.2215, 7.2239, 7.2234, 7.2243, 7.2238, 7.2234, 7.2229, 7.2224, 7.222, 7.2217, 7.2214, 7.2209, 7.2207, 7.2207, 7.2202, 7.2197, 7.2194, 7.2191, 7.2186, 7.2181, 7.2177, 7.2172, 7.2169, 7.2177, 7.2185, 7.2223, 7.222, 7.2216, 7.2212, 7.2209, 7.2205, 7.2214, 7.221, 7.2207, 7.2216, 7.2225, 7.2221, 7.223, 7.2227, 7.2237, 7.2245, 7.2241, 7.2239, 7.2234, 7.223, 7.2227, 7.2282, 7.2281, 7.2278, 7.2274, 7.227, 7.2267, 7.2263, 7.2258, 7.2281, 7.2278, 7.2275, 7.227, 7.227, 7.2266, 7.2276, 7.2273, 7.2272, 7.2282, 7.228, 7.2275, 7.2272, 7.2275, 7.2272, 7.2269, 7.2265, 7.2261, 7.2265, 7.2261, 7.2257, 7.2254, 7.2251, 7.226, 7.2271, 7.2272, 7.2269, 7.2253, 7.225, 7.2248, 7.2246, 7.2243, 7.2238, 7.2236, 7.2237, 7.2247, 7.2289, 7.2284, 7.2289, 7.2286, 7.2283, 7.2291, 7.2288, 7.2284, 7.228, 7.2295, 7.2304, 7.23, 7.2309, 7.2317, 7.2341, 7.2336, 7.2332, 7.2329, 7.2325, 7.2323, 7.2331, 7.2327, 7.2326, 7.2323, 7.2319, 7.2341, 7.2326, 7.2334, 7.233, 7.2339, 7.2335, 7.2343, 7.2339, 7.2348, 7.2344, 7.2353, 7.2349, 7.2344, 7.234, 7.2336, 7.2332, 7.2336, 7.2347, 7.2356, 7.2365, 7.2361, 7.2357, 7.2353, 7.2351, 7.2348, 7.2357, 7.2355, 7.2353, 7.2351, 7.2336, 7.2344, 7.234, 7.2348, 7.2359, 7.2343, 7.2352, 7.2348, 7.2345, 7.2341, 7.2342, 7.2338, 7.2323, 7.2328, 7.2368, 7.2382, 7.2382, 7.2377, 7.2377, 7.2372, 7.2381, 7.2377, 7.239, 7.2386, 7.2395, 7.2391, 7.2399, 7.242, 7.2416, 7.2412, 7.2464, 7.246, 7.2456, 7.2453, 7.2461, 7.2457, 7.2453, 7.2453, 7.2449, 7.2458, 7.2479, 7.2477, 7.2477, 7.2462, 7.2459, 7.2455, 7.245, 7.2446, 7.2443, 7.2451, 7.2447, 7.2443, 7.2452, 7.2437, 7.2445, 7.2441, 7.2449, 7.2446, 7.2442, 7.2451, 7.2448, 7.2444, 7.244, 7.244, 7.2437, 7.2445, 7.2441, 7.2437, 7.2475, 7.2472, 7.2468, 7.2465, 7.2461, 7.2457, 7.2477, 7.2473, 7.2481, 7.2477, 7.2473, 7.247, 7.2476, 7.2474, 7.2499, 7.2495, 7.2503, 7.2499, 7.2509, 7.2518, 7.2515, 7.2511, 7.2519, 7.2516, 7.2534, 7.2533, 7.2518, 7.2514, 7.2513, 7.2522, 7.2531, 7.2528, 7.2525, 7.2522, 7.2531, 7.2529, 7.2525, 7.2521, 7.2519, 7.2515, 7.2526, 7.2521, 7.2527, 7.2525, 7.2523, 7.252, 7.2516, 7.2513, 7.2511, 7.2506, 7.2514, 7.2511, 7.2506, 7.2515, 7.251, 7.2506, 7.2514, 7.2523, 7.252, 7.2516, 7.2512, 7.2508, 7.2492, 7.2488, 7.2484, 7.2481, 7.2477, 7.2476, 7.2484, 7.248, 7.2476, 7.2475, 7.2471, 7.2468, 7.2465, 7.2461, 7.2457, 7.2463, 7.2459, 7.2467, 7.2475, 7.2482, 7.2478, 7.2475, 7.2482, 7.2479, 7.2475, 7.2471, 7.2492, 7.2487, 7.2492, 7.2488, 7.2485, 7.248, 7.2477, 7.2473, 7.2469, 7.2477, 7.2473, 7.2469, 7.2465, 7.2464, 7.246, 7.2457, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2445, 7.2453, 7.2461, 7.2457, 7.2468, 7.2476, 7.2492, 7.2488, 7.2496, 7.2493, 7.2494, 7.2502, 7.25, 7.2496, 7.2493, 7.2491, 7.2499, 7.252, 7.2505, 7.2502, 7.2498, 7.2509, 7.2518, 7.2561, 7.2557, 7.2555, 7.2541, 7.2537, 7.2546, 7.2554, 7.2553, 7.255, 7.2546, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.254, 7.2536, 7.2532, 7.2528, 7.2524, 7.2521, 7.2517, 7.2514, 7.2512, 7.2508, 7.2517, 7.2513, 7.2521, 7.2529, 7.2538, 7.2545, 7.2541, 7.2537, 7.2534, 7.2532, 7.2528, 7.2526, 7.2621, 7.2618, 7.2656, 7.2665, 7.2661, 7.2668, 7.2676, 7.2684, 7.2682, 7.2691, 7.2676, 7.2684, 7.2692, 7.2688, 7.2696, 7.2703, 7.2699, 7.2697, 7.2705, 7.2714, 7.2718, 7.2714, 7.2722, 7.2718, 7.2715, 7.2711, 7.2708, 7.2704, 7.2705, 7.2702, 7.2698, 7.2694, 7.2704, 7.2712, 7.2708, 7.2694, 7.2702, 7.271, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2718, 7.2738, 7.2735, 7.2731, 7.2727, 7.2728, 7.2736, 7.2744, 7.2741, 7.2737, 7.2734, 7.273, 7.2726, 7.2734, 7.2743, 7.2739, 7.2734, 7.273, 7.2729, 7.2725, 7.2721, 7.273, 7.2739, 7.2748, 7.2744, 7.2753, 7.2749, 7.2746, 7.2743, 7.2738, 7.2734, 7.2731, 7.2727, 7.2723, 7.2719, 7.2741, 7.2738, 7.2734, 7.273, 7.2727, 7.2724, 7.2732, 7.2745, 7.2742, 7.2738, 7.2735, 7.2733, 7.2729, 7.2725, 7.2722, 7.2718, 7.2716, 7.2712, 7.2711, 7.2719, 7.2717, 7.2702, 7.2698, 7.2696, 7.2692, 7.2701, 7.2697, 7.2694, 7.269, 7.2685, 7.2681, 7.2677, 7.2686, 7.2682, 7.2678, 7.2664, 7.2672, 7.268, 7.2676, 7.2673, 7.2681, 7.2677, 7.2673, 7.2681, 7.2678, 7.2674, 7.2671, 7.2669, 7.2665, 7.2681, 7.2677, 7.2674, 7.2681, 7.2678, 7.2697, 7.2695, 7.2691, 7.2688, 7.2685, 7.2692, 7.27, 7.2697, 7.2693, 7.2691, 7.2699, 7.2695, 7.2692, 7.2689, 7.2685, 7.2693, 7.2701, 7.2697, 7.2705, 7.269, 7.2698, 7.2706, 7.2703, 7.271, 7.2708, 7.2705, 7.2701, 7.2698, 7.2696, 7.2695, 7.2714, 7.271, 7.278, 7.2776, 7.2774, 7.2782, 7.2778, 7.2774, 7.2771, 7.278, 7.2787, 7.2784, 7.278, 7.2776, 7.2774, 7.2771, 7.2768, 7.2764, 7.2762, 7.2759, 7.2755, 7.2742, 7.2749, 7.2748, 7.2744, 7.274, 7.2737, 7.2733, 7.273, 7.2727, 7.2724, 7.2723, 7.2727, 7.2725, 7.2745, 7.2741, 7.2761, 7.2748, 7.2798, 7.2795, 7.2791, 7.2776, 7.2783, 7.2813, 7.2798, 7.2794, 7.2791, 7.2805, 7.2801, 7.2798, 7.2819, 7.2815, 7.2811, 7.2807, 7.2826, 7.2824, 7.282, 7.2816, 7.2814, 7.2845, 7.2882, 7.2882, 7.2878, 7.2886, 7.2882, 7.2878, 7.2876, 7.2872, 7.287, 7.2867, 7.2874, 7.2905, 7.2901, 7.2905, 7.2901, 7.2898, 7.2906, 7.2914, 7.2922, 7.2919, 7.2927, 7.2936, 7.2932, 7.294, 7.2948, 7.2945, 7.2941, 7.2938, 7.2934, 7.293, 7.2934, 7.2997, 7.3004, 7.3012, 7.302, 7.3017, 7.3013, 7.301, 7.3006, 7.3003, 7.2999, 7.2997, 7.2995, 7.2991, 7.2987, 7.2995, 7.2991, 7.2999, 7.2995, 7.2993, 7.299, 7.2988, 7.2984, 7.298, 7.2977, 7.2974, 7.2981, 7.2979, 7.2975, 7.2972, 7.2979, 7.2976, 7.2972, 7.2972, 7.2968, 7.2982, 7.2978, 7.2974, 7.296, 7.2968, 7.2975, 7.2976, 7.2974, 7.297, 7.2966, 7.2962, 7.2959, 7.2956, 7.2952, 7.2948, 7.295, 7.2948, 7.2957, 7.2943, 7.295, 7.2958, 7.2956, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2954, 7.295, 7.2946, 7.2943, 7.295, 7.2957, 7.2953, 7.2952, 7.296, 7.2956, 7.2953, 7.2961, 7.2958, 7.2955, 7.2951, 7.2947, 7.2943, 7.2939, 7.2991, 7.3, 7.3, 7.2998, 7.2997, 7.3005, 7.3003, 7.299, 7.2997, 7.3005, 7.3013, 7.3032, 7.3031, 7.3027, 7.3046, 7.3055, 7.3076, 7.3073, 7.307, 7.3068, 7.3066, 7.3062, 7.3069, 7.3067, 7.307, 7.3081, 7.308, 7.3089, 7.3087, 7.3084, 7.3081, 7.3077, 7.3074, 7.3105, 7.3107, 7.3096, 7.3094, 7.3093, 7.3089, 7.3085, 7.3118, 7.3117, 7.3113, 7.3109, 7.3126, 7.3122, 7.3129, 7.3126, 7.3122, 7.3118, 7.3115, 7.3112, 7.3119, 7.3125, 7.3121, 7.3128, 7.3126, 7.3122, 7.3119, 7.3116, 7.3112, 7.3108, 7.3104, 7.31, 7.3097, 7.3093, 7.309, 7.3087, 7.3119, 7.3115, 7.3112, 7.3109, 7.3108, 7.3115, 7.3115, 7.3123, 7.3119, 7.3116, 7.3113, 7.3111, 7.3108, 7.3106, 7.3102, 7.309, 7.3097, 7.3093, 7.31, 7.3099, 7.3106, 7.3102, 7.3098, 7.3105, 7.3102, 7.311, 7.3107, 7.3103, 7.3101, 7.3108, 7.3115, 7.3122, 7.3119, 7.3126, 7.3122, 7.3129, 7.3138, 7.3146, 7.3144, 7.314, 7.3136, 7.3132, 7.3129, 7.3125, 7.3132, 7.3129, 7.3126, 7.3122, 7.3185, 7.3181, 7.3168, 7.3164, 7.3161, 7.3159, 7.3155, 7.3154, 7.3162, 7.3158, 7.3165, 7.3161, 7.3157, 7.3155, 7.3151, 7.3147, 7.3143, 7.3139, 7.3146, 7.3143, 7.3151, 7.3148, 7.3147, 7.3145, 7.3154, 7.3151, 7.3157, 7.3165, 7.3162, 7.3159, 7.3158, 7.3165, 7.3161, 7.3158, 7.3155, 7.3152, 7.3154, 7.3161, 7.3213, 7.3209, 7.3206, 7.3202, 7.3198, 7.3195, 7.3203, 7.3201, 7.3199, 7.3195, 7.3192, 7.3198, 7.3196, 7.3201, 7.3197, 7.3204, 7.3201, 7.3208, 7.3204, 7.32, 7.3198, 7.3194, 7.319, 7.3176, 7.3172, 7.3169, 7.3165, 7.3172, 7.3169, 7.3167, 7.3163, 7.3159, 7.3155, 7.3152, 7.3148, 7.3144, 7.314, 7.3137, 7.3135, 7.3142, 7.3128, 7.3125, 7.3121, 7.3119, 7.3116, 7.3112, 7.3109, 7.3105, 7.3112, 7.3108, 7.3104, 7.3101, 7.3097, 7.3093, 7.3094, 7.309, 7.3087, 7.3083, 7.3079, 7.3075, 7.31, 7.3103, 7.3099, 7.3106, 7.3102, 7.3098, 7.3094, 7.3101, 7.3097, 7.3093, 7.3089, 7.3096, 7.3092, 7.3088, 7.3096, 7.3093, 7.309, 7.3087, 7.3085, 7.3105, 7.3101, 7.3109, 7.3105, 7.3112, 7.3108, 7.3105, 7.3102, 7.3099, 7.3096, 7.3094, 7.3113, 7.31, 7.3106, 7.3114, 7.3121, 7.3128, 7.3125, 7.3122, 7.3119, 7.3137, 7.3139, 7.3136, 7.3144, 7.314, 7.3137, 7.3133, 7.3129, 7.3125, 7.3112, 7.3108, 7.3105, 7.3112, 7.311, 7.3108, 7.3116, 7.3114, 7.3111, 7.3118, 7.3105, 7.3102, 7.3098, 7.3095, 7.3091, 7.3088, 7.3084, 7.3091, 7.3109, 7.3106, 7.3113, 7.3109, 7.3118, 7.3125, 7.3125, 7.3125, 7.3121, 7.3117, 7.3107, 7.3104, 7.3101, 7.3107, 7.3113, 7.3111, 7.3107, 7.3104, 7.3111, 7.3118, 7.3125, 7.3121, 7.3117, 7.3114, 7.312, 7.3116, 7.3113, 7.312, 7.3128, 7.3125, 7.3121, 7.3118, 7.3115, 7.3134, 7.3131, 7.3127, 7.3145, 7.3141, 7.3138, 7.3135, 7.3133, 7.3141, 7.3159, 7.3167, 7.3165, 7.3162, 7.3159, 7.3156, 7.3157, 7.3154, 7.3166, 7.3163, 7.3161, 7.3157, 7.3165, 7.3167, 7.3174, 7.3171, 7.3168, 7.3165, 7.3162, 7.3159, 7.3156, 7.3154, 7.3141, 7.3138, 7.3135, 7.3142, 7.3139, 7.3146, 7.3153, 7.316, 7.3157, 7.3153, 7.3149, 7.3145, 7.3152, 7.3159, 7.3157, 7.3164, 7.3171, 7.3167, 7.3174, 7.317, 7.3166, 7.3173, 7.3169, 7.3165, 7.3172, 7.3179, 7.3175, 7.3171, 7.3173, 7.3169, 7.3177, 7.3173, 7.3171, 7.3168, 7.3165, 7.3163, 7.3171, 7.3178, 7.3175, 7.3182, 7.3178, 7.3175, 7.3171, 7.3167, 7.3174, 7.3171, 7.3168, 7.3164, 7.3207, 7.3214, 7.3211, 7.3219, 7.3216, 7.3212, 7.3209, 7.3206, 7.3203, 7.3199, 7.3196, 7.3193, 7.32, 7.3197, 7.3204, 7.3202, 7.3199, 7.3216, 7.3215, 7.3211, 7.3233, 7.3255, 7.3245, 7.3251, 7.3247, 7.3258, 7.3254, 7.3261, 7.3248, 7.3255, 7.3252, 7.3248, 7.3254, 7.325, 7.3247, 7.3244, 7.3262, 7.3249, 7.3256, 7.3244, 7.3241, 7.3238, 7.3234, 7.3231, 7.3228, 7.3225, 7.3222, 7.3229, 7.3237, 7.3234, 7.3231, 7.3239, 7.3255, 7.3251, 7.3249, 7.3246, 7.3246, 7.3252, 7.3249, 7.3247, 7.3254], '192.168.122.115': [10.5276, 8.3502, 7.5139, 7.1993, 7.8743, 7.4328, 7.3273, 7.7374, 7.4819, 7.2691, 7.0982, 6.9504, 6.9125, 6.8052, 6.7264, 6.9861, 6.6075, 6.8479, 6.8006, 6.7602, 6.7243, 6.9063, 6.8384, 6.7833, 6.7498, 6.9079, 6.8861, 6.9515, 7.2796, 7.2167, 7.183, 7.1287, 7.0735, 7.0523, 7.0126, 7.126, 7.1076, 7.196, 7.157, 7.1339, 7.2292, 7.2251, 7.1878, 7.2852, 7.2539, 7.2358, 7.193, 7.168, 7.1383, 7.1182, 7.0838, 7.147, 7.1165, 7.0845, 7.064, 7.1315, 7.099, 7.0826, 7.0539, 7.0359, 7.098, 7.1895, 7.161, 7.1332, 7.1146, 7.102, 7.1577, 7.1446, 7.1179, 7.0951, 7.0847, 7.061, 7.0418, 7.0276, 7.0079, 7.0655, 7.0444, 7.0957, 7.0764, 7.1206, 7.1704, 7.1503, 7.1488, 7.1272, 7.1703, 7.1549, 7.1359, 7.1779, 7.1636, 7.1547, 7.1962, 7.1741, 7.1578, 7.2462, 7.2286, 7.2652, 7.2464, 7.2287, 7.2156, 7.2009, 7.2366, 7.2223, 7.2583, 7.2428, 7.225, 7.2128, 7.2022, 7.1853, 7.168, 7.1997, 7.1855, 7.1283, 7.1603, 7.1468, 7.1342, 7.1226, 7.1145, 7.1013, 7.0991, 7.0863, 7.1208, 7.1543, 7.1873, 7.1801, 7.1708, 7.1572, 7.1485, 7.1356, 7.1255, 7.0748, 7.0654, 7.0941, 7.083, 7.0726, 7.0662, 7.056, 7.0448, 7.036, 7.0233, 7.0922, 7.1163, 7.1036, 7.0944, 7.0832, 7.0944, 7.0831, 7.206, 7.1939, 7.191, 7.1868, 7.1811, 7.3066, 7.296, 7.2853, 7.2776, 7.2655, 7.2534, 7.2423, 7.231, 7.2199, 7.2103, 7.265, 7.2574, 7.2194, 7.2422, 7.2314, 7.2223, 7.2138, 7.2047, 7.2639, 7.2911, 7.3118, 7.3608, 7.3519, 7.3426, 7.3661, 7.3565, 7.3764, 7.366, 7.3557, 7.35, 7.3431, 7.3398, 7.3591, 7.3818, 7.3722, 7.3899, 7.3796, 7.3708, 7.5029, 7.494, 7.4856, 7.4738, 7.4649, 7.4558, 7.4468, 7.4368, 7.4278, 7.4191, 7.4124, 7.455, 7.4716, 7.461, 7.4549, 7.4219, 7.4157, 7.4056, 7.4235, 7.416, 7.4373, 7.4529, 7.4517, 7.4702, 7.4861, 7.4764, 7.5534, 7.5429, 7.5581, 7.5488, 7.5409, 7.5809, 7.5943, 7.5862, 7.5904, 7.5842, 7.5759, 7.5663, 7.5586, 7.5487, 7.5419, 7.5598, 7.5522, 7.5446, 7.5373, 7.5304, 7.525, 7.5179, 7.5112, 7.504, 7.4947, 7.5078, 7.502, 7.5174, 7.5087, 7.4993, 7.4909, 7.5122, 7.5041, 7.5166, 7.5095, 7.5028, 7.495, 7.4903, 7.4827, 7.4761, 7.4895, 7.4817, 7.4781, 7.4705, 7.4648, 7.4578, 7.4511, 7.4462, 7.4402, 7.4339, 7.4268, 7.4392, 7.4515, 7.4538, 7.4464, 7.4388, 7.4344, 7.427, 7.419, 7.4153, 7.4084, 7.403, 7.3974, 7.3905, 7.3829, 7.3776, 7.3705, 7.363, 7.359, 7.3522, 7.3451, 7.3587, 7.3703, 7.3646, 7.3583, 7.3521, 7.3467, 7.3424, 7.3373, 7.3312, 7.3249, 7.3186, 7.3154, 7.3288, 7.3437, 7.3373, 7.3154, 7.3088, 7.3051, 7.2996, 7.2957, 7.2766, 7.2711, 7.2655, 7.2905, 7.3016, 7.2957, 7.3073, 7.3021, 7.2961, 7.2924, 7.3036, 7.2973, 7.2954, 7.3097, 7.3043, 7.2986, 7.2933, 7.2871, 7.2981, 7.2924, 7.2894, 7.3003, 7.2941, 7.2909, 7.2852, 7.2675, 7.2779, 7.29, 7.2852, 7.265, 7.2618, 7.2728, 7.2679, 7.2634, 7.279, 7.2737, 7.2682, 7.2649, 7.275, 7.2693, 7.264, 7.2595, 7.2557, 7.2526, 7.2627, 7.2729, 7.2689, 7.2637, 7.261, 7.2557, 7.2502, 7.2455, 7.2429, 7.2381, 7.2352, 7.2324, 7.2285, 7.2239, 7.2223, 7.2349, 7.2815, 7.2646, 7.2606, 7.2435, 7.2396, 7.2379, 7.2329, 7.2425, 7.2512, 7.2492, 7.244, 7.2431, 7.2381, 7.2334, 7.2302, 7.2259, 7.2214, 7.2172, 7.215, 7.2125, 7.2215, 7.2186, 7.2146, 7.1972, 7.1934, 7.1903, 7.1874, 7.1827, 7.1787, 7.175, 7.1745, 7.1701, 7.1665, 7.1625, 7.1596, 7.1569, 7.1543, 7.1498, 7.1456, 7.1423, 7.1378, 7.1337, 7.1296, 7.1266, 7.1224, 7.1208, 7.1179, 7.1139, 7.11, 7.1063, 7.1164, 7.1143, 7.1237, 7.1212, 7.1199, 7.1195, 7.1169, 7.1129, 7.1103, 7.1071, 7.1033, 7.1123, 7.1664, 7.1513, 7.1524, 7.1502, 7.1598, 7.1555, 7.1593, 7.1638, 7.1611, 7.1703, 7.1661, 7.1619, 7.1581, 7.1545, 7.1512, 7.1504, 7.1466, 7.1321, 7.129, 7.1809, 7.1791, 7.1753, 7.1726, 7.1691, 7.1792, 7.175, 7.173, 7.1906, 7.1894, 7.1851, 7.1831, 7.179, 7.1866, 7.1941, 7.1917, 7.1889, 7.1889, 7.1866, 7.1829, 7.1807, 7.1767, 7.1748, 7.1796, 7.1764, 7.184, 7.1799, 7.1764, 7.1849, 7.1812, 7.1837, 7.1929, 7.1908, 7.1879, 7.1859, 7.1848, 7.1816, 7.1782, 7.1777, 7.1757, 7.1725, 7.1684, 7.165, 7.1615, 7.1588, 7.1552, 7.1514, 7.1476, 7.1468, 7.1449, 7.1417, 7.1383, 7.1349, 7.1429, 7.1405, 7.148, 7.1555, 7.1519, 7.1726, 7.1705, 7.1674, 7.1647, 7.161, 7.1681, 7.1643, 7.1652, 7.162, 7.1592, 7.1576, 7.1557, 7.1522, 7.1497, 7.1471, 7.1553, 7.1529, 7.1428, 7.1403, 7.1374, 7.1355, 7.132, 7.1289, 7.1265, 7.124, 7.1311, 7.1287, 7.1268, 7.1236, 7.1229, 7.1206, 7.1176, 7.1164, 7.1132, 7.1202, 7.1178, 7.117, 7.1138, 7.1131, 7.1099, 7.1077, 7.108700000000001, 7.1154, 7.1124, 7.1193, 7.1161, 7.1138, 7.105, 7.102, 7.0991, 7.0962, 7.0934, 7.0904, 7.0875, 7.086, 7.0839, 7.0732, 7.0701, 7.0686, 7.0755, 7.0725, 7.0793, 7.0868, 7.085, 7.0917, 7.094, 7.0912, 7.0889, 7.0958, 7.0926, 7.0897, 7.0869, 7.0843, 7.0827, 7.0826, 7.0887, 7.0855, 7.0829, 7.0799, 7.0779, 7.076, 7.073, 7.0721, 7.0694, 7.0671, 7.0659, 7.0635, 7.0608, 7.0583, 7.058, 7.0647, 7.0706, 7.0679, 7.0663, 7.0637, 7.0607, 7.0589, 7.0572, 7.0543, 7.0709, 7.0774, 7.0746, 7.072, 7.0706, 7.0766, 7.0745, 7.0718, 7.0783, 7.0755, 7.0818, 7.0792, 7.0854, 7.0828, 7.0884, 7.0936, 7.0917, 7.0909, 7.0969, 7.103, 7.1082, 7.1068, 7.1039, 7.1008, 7.1066, 7.1121, 7.1092, 7.1064, 7.1036, 7.1094, 7.099, 7.0962, 7.0935, 7.0923, 7.0902, 7.0875, 7.0857, 7.0932, 7.1002, 7.09, 7.0878, 7.0932, 7.0992, 7.0979, 7.0951, 7.0937, 7.0916, 7.0939, 7.0917, 7.0891, 7.0874, 7.0846, 7.0916, 7.09, 7.0874, 7.0849, 7.0832, 7.0893, 7.0901, 7.0955, 7.0941, 7.0999, 7.1219, 7.1196, 7.1169, 7.1144, 7.1119, 7.1094, 7.1075, 7.1051, 7.1027, 7.1082, 7.1064, 7.1046, 7.1107, 7.1081, 7.1056, 7.1029, 7.1016, 7.1077, 7.1051, 7.1025, 7.1003, 7.099, 7.0966, 7.1012, 7.0988, 7.1039, 7.1015, 7.0993, 7.0973, 7.0962, 7.0954, 7.1094, 7.1075, 7.105, 7.1028, 7.1077, 7.106, 7.1106, 7.1086, 7.1065, 7.1117, 7.1191, 7.1166, 7.1226, 7.1203, 7.1181, 7.1157, 7.1131, 7.1145, 7.12, 7.1178, 7.1164, 7.1145, 7.1125, 7.1103, 7.1155, 7.1139, 7.1114, 7.1098, 7.1075, 7.1127, 7.1104, 7.108, 7.1057, 7.1032, 7.1009, 7.0988, 7.0966, 7.0887, 7.0871, 7.0848, 7.0898, 7.0929, 7.0911, 7.0889, 7.0875, 7.0853, 7.0833, 7.081, 7.0788, 7.0764, 7.0815, 7.0792, 7.0769, 7.0753, 7.0737, 7.0727, 7.089, 7.0802, 7.0782, 7.0763, 7.0743, 7.0722, 7.0782, 7.0783, 7.083, 7.084, 7.0824, 7.0855, 7.0846, 7.0832, 7.0878, 7.0855, 7.0908, 7.0885, 7.0864, 7.0909, 7.0892, 7.0883, 7.0865, 7.0917, 7.0895, 7.0881, 7.093, 7.0973, 7.1022, 7.1003, 7.1013, 7.0989, 7.1, 7.0994, 7.0981, 7.1036, 7.1021, 7.1209, 7.119, 7.1204, 7.1208, 7.1185, 7.1163, 7.1211, 7.1252, 7.1231, 7.1213, 7.1255, 7.1298, 7.1275, 7.1291, 7.1269, 7.1253, 7.1232, 7.121, 7.1198, 7.1245, 7.1228, 7.1273, 7.1257, 7.1235, 7.1222, 7.1247, 7.1238, 7.1283, 7.1341, 7.1384, 7.1362, 7.1345, 7.139, 7.1435, 7.1482, 7.146, 7.1502, 7.1543, 7.1523, 7.1568, 7.1551, 7.1533, 7.1722, 7.1701, 7.1745, 7.1724, 7.1769, 7.1815, 7.1792, 7.1774, 7.1759, 7.1748, 7.1739, 7.1724, 7.1701, 7.1624, 7.1604, 7.1587, 7.1565, 7.1543, 7.1591, 7.1633, 7.1675, 7.1726, 7.172, 7.1761, 7.1802, 7.1782, 7.1784, 7.1767, 7.1747, 7.1789, 7.177, 7.1749, 7.1734, 7.1718, 7.176, 7.1739, 7.1719, 7.1706, 7.1747, 7.1734, 7.1712, 7.1693, 7.1678, 7.1717, 7.1706, 7.1744, 7.1786, 7.1932, 7.1976, 7.1955, 7.1934, 7.1919, 7.1905, 7.1957, 7.202, 7.2009, 7.1998, 7.2038, 7.2016, 7.2003, 7.1986, 7.1971, 7.1962, 7.1943, 7.1929, 7.1913, 7.1905, 7.1835, 7.1816, 7.1797, 7.1778, 7.1763, 7.1756, 7.1796, 7.1836, 7.1822, 7.183, 7.1811, 7.1794, 7.1799, 7.1846, 7.1826, 7.1812, 7.1917, 7.1904, 7.189, 7.1936, 7.1977, 7.1957, 7.1935, 7.1919, 7.1942, 7.1922, 7.1912, 7.1899, 7.1886, 7.1873, 7.1852, 7.184, 7.1822, 7.1804, 7.1795, 7.1851, 7.1833, 7.1878, 7.1859, 7.1852, 7.1839, 7.182, 7.1871, 7.1852, 7.1842, 7.1822, 7.1813, 7.193, 7.1922, 7.1903, 7.1884, 7.1864, 7.1846, 7.1826, 7.1822, 7.1803, 7.184, 7.182, 7.1752, 7.1745, 7.1736, 7.1729, 7.1767, 7.1749, 7.1788, 7.1771, 7.1762, 7.1754, 7.174, 7.1728, 7.1717, 7.1755, 7.1762, 7.1801, 7.1791, 7.1774, 7.1761, 7.1746, 7.1727, 7.1717, 7.1706, 7.1687, 7.1674, 7.1709, 7.1743, 7.1724, 7.1705, 7.1689, 7.1676, 7.1686000000000005, 7.169600000000001, 7.1678, 7.1669, 7.1705, 7.1693, 7.1687, 7.1724, 7.1707, 7.1689, 7.167, 7.1651, 7.1661, 7.1656, 7.1703, 7.1686, 7.167, 7.1661, 7.1644, 7.1627, 7.1619, 7.1602, 7.1586, 7.1524, 7.1521, 7.1503, 7.1485, 7.1468, 7.1457, 7.145, 7.1433, 7.1417, 7.1353, 7.1337, 7.1321, 7.1313, 7.1296, 7.1285, 7.1335, 7.137, 7.141, 7.1396, 7.1385, 7.1374, 7.1358, 7.134, 7.1328, 7.1309, 7.131, 7.1302, 7.1296, 7.1278, 7.1269, 7.1252, 7.124, 7.1227, 7.1209, 7.1193, 7.1177, 7.1214, 7.1251, 7.1261, 7.1357, 7.1367, 7.1307, 7.1293, 7.1289, 7.1325, 7.1309, 7.1292, 7.1324, 7.1308, 7.1293, 7.1284, 7.1269, 7.1253, 7.1289, 7.1279, 7.1264, 7.1246, 7.1229, 7.1218, 7.1201, 7.1185, 7.118, 7.1163, 7.1157, 7.1146, 7.1129, 7.1167, 7.1207, 7.1193, 7.1185, 7.1189, 7.1172, 7.1209, 7.1194, 7.1179, 7.1202, 7.1188, 7.119800000000001, 7.1181, 7.117, 7.1153, 7.1137, 7.1125, 7.1108, 7.1143, 7.1128, 7.1164, 7.115, 7.1135, 7.1084, 7.1128, 7.1218, 7.1216, 7.1247, 7.1236, 7.1224, 7.1255, 7.1242, 7.123, 7.1217, 7.1232, 7.1238, 7.1224, 7.1215, 7.1202, 7.124, 7.1273, 7.1261, 7.1294, 7.1283, 7.1269, 7.1306, 7.1299, 7.1242, 7.1229, 7.1216, 7.1202, 7.1186, 7.1174, 7.1162, 7.1331, 7.1335, 7.1321, 7.131, 7.1346, 7.1334, 7.132, 7.1304, 7.1289, 7.1234, 7.1364, 7.1349, 7.1337, 7.1327, 7.1313, 7.1297, 7.1341, 7.1328, 7.1357, 7.1341, 7.1331, 7.1325, 7.131, 7.1341, 7.1375, 7.137, 7.1513, 7.1505, 7.149, 7.1523, 7.1507, 7.1499, 7.1492, 7.1522, 7.151, 7.1499, 7.1483, 7.1468, 7.1517, 7.1642, 7.1673, 7.1657, 7.1653, 7.1642, 7.163, 7.1614, 7.1599, 7.1588, 7.1574, 7.1559, 7.1503, 7.1488, 7.1473, 7.1465, 7.1511, 7.1506, 7.1495, 7.1499, 7.1494, 7.1524, 7.1513, 7.1544, 7.1533, 7.1565, 7.1598, 7.1544, 7.1538, 7.1528, 7.1513, 7.1671, 7.1661, 7.1652, 7.1642, 7.1682, 7.1674, 7.1669, 7.1658, 7.1647, 7.1671, 7.1655, 7.1642, 7.1634, 7.1667, 7.1655, 7.1685, 7.1673, 7.166, 7.1647, 7.168, 7.1673, 7.1661, 7.1653, 7.1639, 7.163, 7.1578, 7.1564, 7.1549, 7.1539, 7.1531, 7.1518, 7.1504, 7.1494, 7.148, 7.1465, 7.1451, 7.1436, 7.1425, 7.1416, 7.1425, 7.142, 7.1406, 7.1393, 7.1379, 7.1463, 7.1451, 7.1437, 7.1424, 7.1414, 7.1451, 7.144, 7.1433, 7.1526, 7.1488, 7.1474, 7.1434, 7.1525, 7.1515, 7.1502, 7.1493, 7.1496, 7.1488, 7.1475, 7.1543, 7.1531, 7.1517, 7.1466, 7.146, 7.1519, 7.1505, 7.1495, 7.1569, 7.1619, 7.1607, 7.1594, 7.1583, 7.1833, 7.1822, 7.1811, 7.1841, 7.183, 7.1823, 7.1809, 7.1798, 7.1825, 7.1855, 7.1849, 7.184, 7.1868, 7.1899, 7.1927, 7.1955, 7.1982, 7.201, 7.1998, 7.1982, 7.1971, 7.1965, 7.195, 7.1977, 7.1963, 7.1953, 7.1981, 7.1969, 7.1956, 7.1941, 7.1934, 7.1921, 7.1908, 7.1896, 7.1965, 7.1994, 7.1982, 7.1972, 7.2007, 7.1993, 7.2017, 7.2003, 7.2034, 7.2059, 7.2047, 7.2032, 7.2021, 7.2012, 7.2, 7.2032, 7.2019, 7.2008, 7.1996, 7.1986, 7.1975, 7.1976, 7.1968, 7.1961, 7.1991, 7.198, 7.1967, 7.1954, 7.1904, 7.189, 7.192, 7.1951, 7.1938, 7.193, 7.1917, 7.1945, 7.1931, 7.1958, 7.1949, 7.1939, 7.1926, 7.1912, 7.1899, 7.1892, 7.1885, 7.2002, 7.1988, 7.1976, 7.1967, 7.1956, 7.1955, 7.1941, 7.1927, 7.1914, 7.1903, 7.189, 7.1878, 7.1871, 7.1897, 7.1884, 7.1877, 7.1867, 7.1853, 7.1843, 7.1831, 7.1785, 7.1773, 7.1783, 7.1774, 7.1761, 7.1747, 7.1734, 7.1725, 7.1711, 7.1699, 7.1815, 7.1814, 7.1842, 7.1831, 7.1824, 7.1812, 7.1837, 7.1827, 7.1815, 7.1802, 7.179, 7.1777, 7.1804, 7.1831, 7.1818, 7.1847, 7.1836, 7.1823, 7.1885, 7.1872, 7.186, 7.1909, 7.1935, 7.1923, 7.1911, 7.1907, 7.1894, 7.1886, 7.1877, 7.1864, 7.1857, 7.1843, 7.183, 7.1819, 7.1808, 7.1799, 7.1795, 7.1782, 7.1774, 7.1764, 7.1751, 7.1743, 7.1739, 7.1731, 7.1756, 7.1784, 7.1811, 7.181, 7.1836, 7.1828, 7.189, 7.1918, 7.1909, 7.1896, 7.1923, 7.1949, 7.1982, 7.2006, 7.1997, 7.2019, 7.2007, 7.1995, 7.2017, 7.2043, 7.2033, 7.2024, 7.2011, 7.2001, 7.2024, 7.2049, 7.2037, 7.2024, 7.2011, 7.1998, 7.1955, 7.1942, 7.1966, 7.1958, 7.1947, 7.1936, 7.1965, 7.203, 7.2022, 7.205, 7.204, 7.203, 7.202, 7.2011, 7.2008, 7.1997, 7.2023, 7.2016, 7.2007, 7.1996, 7.1984, 7.1981, 7.2043, 7.2105, 7.2093, 7.2081, 7.2069, 7.2077, 7.2065, 7.2053, 7.2041, 7.2031, 7.2057, 7.2048, 7.2043, 7.2032, 7.202, 7.2014, 7.2002, 7.1989, 7.198, 7.2219, 7.2208, 7.2243, 7.2231, 7.2256, 7.2244, 7.2232, 7.222, 7.2208, 7.2233, 7.2225, 7.225, 7.224, 7.2228, 7.2256, 7.2258, 7.225, 7.2276, 7.2265, 7.2253, 7.2242, 7.2271, 7.2267, 7.2289, 7.2285, 7.2285, 7.2273, 7.2262, 7.2258, 7.2315, 7.2307, 7.2331, 7.232, 7.2312, 7.23, 7.2289, 7.2277, 7.2268, 7.2255, 7.2248, 7.2236, 7.2225, 7.2213, 7.2201, 7.2189, 7.2184, 7.2186, 7.2178, 7.2135, 7.2126, 7.2147, 7.2172, 7.216, 7.2186, 7.2185, 7.2203, 7.226, 7.2255, 7.2247, 7.2305, 7.2293, 7.2282, 7.2272, 7.2259, 7.2247, 7.2235, 7.2223, 7.2246, 7.2272, 7.2259, 7.225, 7.2248, 7.2204, 7.2193, 7.2183, 7.2172, 7.2195, 7.2182, 7.217, 7.2159, 7.2151, 7.2174, 7.2135, 7.2128, 7.2123, 7.2118, 7.2107, 7.2095, 7.2118, 7.2111, 7.2133, 7.2154, 7.2177, 7.217, 7.2159, 7.218, 7.2203, 7.2202, 7.219, 7.2178, 7.2169, 7.2159, 7.2147, 7.2139, 7.2133, 7.2122, 7.2113, 7.2134, 7.2164, 7.2186, 7.2174, 7.2163, 7.2152, 7.2176, 7.2164, 7.2159, 7.2147, 7.2135, 7.2226, 7.2216, 7.2205, 7.2193, 7.2217, 7.2209, 7.2198, 7.2192, 7.218, 7.217, 7.2192, 7.2184, 7.2181, 7.217, 7.2167, 7.2188, 7.2181, 7.2169, 7.2158, 7.2179, 7.2168, 7.2157, 7.2146, 7.2139, 7.2129, 7.2149, 7.2172, 7.2161, 7.2152, 7.2173, 7.2163, 7.2153, 7.2144, 7.2168, 7.2216, 7.2205, 7.2194, 7.2203, 7.2164, 7.2153, 7.2146, 7.2167, 7.2156, 7.2146, 7.2168, 7.2158, 7.2148, 7.2137, 7.2126, 7.2118, 7.2138, 7.2159, 7.2153, 7.2255, 7.2246, 7.2238, 7.2228, 7.2253, 7.2242, 7.2236, 7.2226, 7.2218, 7.2207, 7.2198, 7.2187, 7.2175, 7.2167, 7.2187, 7.2179, 7.2168, 7.2191, 7.218, 7.2169, 7.2165, 7.2154, 7.2143, 7.2132, 7.2124, 7.2113, 7.2104, 7.2094, 7.2119, 7.211, 7.213, 7.2118, 7.2138, 7.2126, 7.2117, 7.2109, 7.2102, 7.2122, 7.2114, 7.2104, 7.2102, 7.2092, 7.2091, 7.2112, 7.2102, 7.2091, 7.2087, 7.2077, 7.2097, 7.2086, 7.2106, 7.2097, 7.2086, 7.2079, 7.2041, 7.203, 7.202, 7.201, 7.2086, 7.2117, 7.2112, 7.2101, 7.2094, 7.2093, 7.2086, 7.2079, 7.2069, 7.2058, 7.2049, 7.2039, 7.206, 7.205, 7.2044, 7.2034, 7.2023, 7.2015, 7.2005, 7.1995, 7.2054, 7.2048, 7.2167, 7.2157, 7.2177, 7.2171, 7.2161, 7.2155, 7.2144, 7.2133, 7.213, 7.2121, 7.211, 7.2102, 7.2094, 7.2084, 7.2074, 7.2038, 7.2076, 7.2096, 7.209, 7.2081, 7.2102, 7.2091, 7.2084, 7.2074, 7.2066, 7.2057, 7.2077, 7.2071, 7.2066, 7.2058, 7.2047, 7.2066, 7.2085, 7.2079, 7.207, 7.2064, 7.2054, 7.2043, 7.2035, 7.2024, 7.2043, 7.2063, 7.2106, 7.2124, 7.2113, 7.2102, 7.2092, 7.2085, 7.2112, 7.2107, 7.2097, 7.2089, 7.2081, 7.2076, 7.2068, 7.2089, 7.2108, 7.2099, 7.2095, 7.2089, 7.2081, 7.2101, 7.2092, 7.2057, 7.2049, 7.2039, 7.2031, 7.2023, 7.2015, 7.2006, 7.2001, 7.1994, 7.2014, 7.2035, 7.2025, 7.2046, 7.2036, 7.2027, 7.2017, 7.2008, 7.2037, 7.2064, 7.2112, 7.2104, 7.2094, 7.2088, 7.208, 7.207, 7.2066, 7.2056, 7.2048, 7.2038, 7.2058, 7.205, 7.2041, 7.2031, 7.2051, 7.2043, 7.2013, 7.2005, 7.2026, 7.2018, 7.2008, 7.2112, 7.2103, 7.2093, 7.209, 7.2081, 7.2071, 7.207, 7.2062, 7.208, 7.207, 7.2061, 7.2055, 7.2075, 7.2095, 7.2093, 7.2113, 7.2104, 7.2123, 7.2115, 7.2105, 7.2099, 7.2094, 7.2115, 7.2135, 7.2131, 7.2124, 7.2148, 7.214, 7.2133, 7.2125, 7.2123, 7.212, 7.2111, 7.2105, 7.2095, 7.2068, 7.206, 7.2051, 7.2129, 7.212, 7.2112, 7.2102, 7.2092, 7.2082, 7.2076, 7.2125, 7.2146, 7.214, 7.2135, 7.2129, 7.2148, 7.2142, 7.2134, 7.2124, 7.2114, 7.2104, 7.2095, 7.2086, 7.2088, 7.2107, 7.2181, 7.2171, 7.2166, 7.2207, 7.2232, 7.2223, 7.2215, 7.2237, 7.227, 7.2262, 7.2253, 7.2243, 7.2239, 7.2231, 7.2196, 7.2268, 7.229, 7.2284, 7.2304, 7.2324, 7.229, 7.2286, 7.2254, 7.2282, 7.2272, 7.229, 7.2307, 7.2297, 7.2287, 7.2361, 7.2353, 7.2347, 7.2368, 7.2394, 7.2386, 7.2386, 7.2381, 7.2372, 7.2365, 7.2384, 7.2402, 7.2392, 7.2383, 7.2376, 7.2369, 7.2387, 7.238, 7.2374, 7.2365, 7.2355, 7.2374, 7.2392, 7.2384, 7.2375, 7.2365, 7.2355, 7.2323, 7.2289, 7.2281, 7.2278, 7.2272, 7.2265, 7.2286, 7.232, 7.2337, 7.2329, 7.2326, 7.2345, 7.2337, 7.2328, 7.2347, 7.2337, 7.233, 7.2297, 7.2294, 7.2285, 7.2282, 7.2301, 7.2268, 7.2259, 7.2252, 7.2243, 7.2247, 7.2268, 7.226, 7.2306, 7.2325, 7.2315, 7.2305, 7.2295, 7.2314, 7.2334, 7.2342, 7.236, 7.2352, 7.2351, 7.2344, 7.2336, 7.2329, 7.2345, 7.2335, 7.2326, 7.2343, 7.2361, 7.2379, 7.2371, 7.2363, 7.236, 7.2407, 7.24, 7.239, 7.2381, 7.2371, 7.2362, 7.2357, 7.2374, 7.2368, 7.2385, 7.2376, 7.2367, 7.2358, 7.2349, 7.2341, 7.2335, 7.2328, 7.2318, 7.2339, 7.233, 7.2321, 7.2342, 7.2359, 7.2352, 7.2402, 7.2393, 7.2384, 7.2404, 7.2396, 7.2388, 7.2381, 7.2374, 7.2389, 7.2407, 7.2402, 7.2394, 7.241, 7.2401, 7.2418, 7.241, 7.2407, 7.2422, 7.242, 7.2411, 7.2402, 7.2401, 7.2391, 7.2382, 7.2374, 7.2392, 7.2383, 7.2374, 7.2365, 7.2356, 7.2373, 7.2367, 7.2358, 7.2375, 7.2392, 7.2382, 7.2402, 7.2399, 7.239, 7.2407, 7.2401, 7.2395, 7.2386, 7.2404, 7.2395, 7.2405, 7.24, 7.2393, 7.2368, 7.2359, 7.2351, 7.2343, 7.2335, 7.2353, 7.2344, 7.2338, 7.2336, 7.2351, 7.2342, 7.2359, 7.235, 7.2341, 7.2332, 7.2323, 7.2314, 7.2307, 7.2298, 7.229, 7.2287, 7.2279, 7.227, 7.2239, 7.2231, 7.2228, 7.2246, 7.2238, 7.2254, 7.2246, 7.2292, 7.2289, 7.228, 7.2272, 7.2263, 7.2257, 7.2251, 7.2246, 7.2243, 7.2233, 7.2227, 7.2218, 7.2213, 7.2206, 7.2211, 7.2204, 7.2223, 7.2222, 7.2215, 7.2233, 7.2224, 7.2217, 7.2223, 7.2216, 7.2234, 7.2227, 7.2227, 7.2218, 7.2214, 7.2213, 7.2204, 7.2195, 7.2188, 7.218, 7.2177, 7.2173, 7.2167, 7.2159, 7.2152, 7.2147, 7.2144, 7.2135, 7.2129, 7.2113, 7.2109, 7.2104, 7.2096, 7.2066, 7.2057, 7.2049, 7.2041, 7.2032, 7.2029, 7.2021, 7.2015, 7.2032, 7.2049, 7.204, 7.2032, 7.2048, 7.2043, 7.2037, 7.2038, 7.2035, 7.2029, 7.2021, 7.2014, 7.2005, 7.2023, 7.2017, 7.2036, 7.2027, 7.2069, 7.2088, 7.2082, 7.2073, 7.2094, 7.2094, 7.2088, 7.2116, 7.2132, 7.2168, 7.2162, 7.2178, 7.2171, 7.2165, 7.2183, 7.2178, 7.2155, 7.216, 7.2161, 7.2177, 7.2173, 7.2166, 7.2161, 7.2154, 7.2146, 7.2144, 7.2147, 7.2143, 7.2159, 7.2153, 7.217, 7.2166, 7.2161, 7.2153, 7.2146, 7.2138, 7.213, 7.2133, 7.2126, 7.2118, 7.2134, 7.2126, 7.2142, 7.2136, 7.213, 7.2167, 7.2158, 7.2149, 7.2141, 7.2139, 7.2133, 7.2148, 7.214, 7.2156, 7.2173, 7.2188, 7.2181, 7.2173, 7.2165, 7.2161, 7.2177, 7.2198, 7.2189, 7.2205, 7.2177, 7.217, 7.2162, 7.2157, 7.215, 7.2144, 7.216, 7.2153, 7.2148, 7.2144, 7.2168, 7.216, 7.2152, 7.2149, 7.2141, 7.2133, 7.2125, 7.2121, 7.2138, 7.2131, 7.2126, 7.2118, 7.211, 7.2102, 7.2118, 7.2112, 7.2128, 7.21, 7.2093, 7.2085, 7.2101, 7.2096, 7.209, 7.2106, 7.2099, 7.2095, 7.2103, 7.2119, 7.2112, 7.2104, 7.2101, 7.2095, 7.2088, 7.2081, 7.2099, 7.2092, 7.2084, 7.2102, 7.2098, 7.2093, 7.209, 7.2083, 7.2098, 7.2093, 7.2086, 7.208, 7.2096, 7.2092, 7.2087, 7.2104, 7.2121, 7.2116, 7.2109, 7.2101, 7.2096, 7.2089, 7.2082, 7.2075, 7.2068, 7.2062, 7.2054, 7.2046, 7.2042, 7.2034, 7.2029, 7.2044, 7.206, 7.2052, 7.2045, 7.2038, 7.2032, 7.205, 7.2043, 7.2036, 7.2031, 7.2078, 7.2102, 7.2095, 7.2158, 7.2174, 7.2168, 7.2161, 7.2157, 7.2172, 7.2187, 7.218, 7.2174, 7.219, 7.2183, 7.2156, 7.217, 7.2165, 7.2182, 7.2176, 7.2191, 7.2222, 7.2214, 7.2229, 7.2221, 7.2213, 7.2205, 7.2197, 7.2191, 7.2206, 7.2199, 7.2198, 7.2213, 7.2251, 7.2243, 7.2236, 7.2229, 7.2224, 7.2218, 7.2193, 7.219, 7.2182, 7.2177, 7.2171, 7.2165, 7.2162, 7.2154, 7.215, 7.2232, 7.2206, 7.22, 7.2193, 7.2186, 7.2178, 7.2171, 7.2164, 7.2158, 7.2151, 7.2143, 7.2143, 7.2135, 7.2127, 7.2142, 7.2165, 7.2164, 7.2156, 7.2148, 7.214, 7.2133, 7.2129, 7.2124, 7.212, 7.2114, 7.2108, 7.2125, 7.2137, 7.2132, 7.2147, 7.214, 7.2133, 7.2143, 7.2167, 7.2161, 7.2153, 7.2167, 7.2159, 7.2199, 7.2214, 7.2207, 7.2202, 7.2175, 7.219, 7.2184, 7.2178, 7.2171, 7.2164, 7.2162, 7.2178, 7.2171, 7.2165, 7.2157, 7.2172, 7.2164, 7.2156, 7.215, 7.2155, 7.2151, 7.2167, 7.2164, 7.2163, 7.2155, 7.2147, 7.2141, 7.2134, 7.2149, 7.2143, 7.2136, 7.2129, 7.2122, 7.2117, 7.211, 7.2103, 7.2096, 7.2111, 7.2104, 7.2119, 7.2112, 7.2106, 7.2124, 7.2119, 7.2114, 7.2134, 7.2108, 7.2103, 7.2116, 7.2113, 7.2107, 7.2121, 7.2114, 7.2129, 7.2123, 7.2137, 7.2151, 7.2146, 7.2143, 7.2136, 7.2129, 7.2126, 7.2119, 7.2115, 7.2107, 7.21, 7.2093, 7.2086, 7.2082, 7.2076, 7.2092, 7.2106, 7.2102, 7.2096, 7.2095, 7.2088, 7.208, 7.2073, 7.2074, 7.2112, 7.2107, 7.21, 7.2095, 7.211, 7.2104, 7.2119, 7.2112, 7.2127, 7.2119, 7.2114, 7.2107, 7.213, 7.2123, 7.2117, 7.2113, 7.2108, 7.2121, 7.2115, 7.2113, 7.2107, 7.2099, 7.2092, 7.2087, 7.2081, 7.2074, 7.2067, 7.2073, 7.2078, 7.2074, 7.2069, 7.2063, 7.2056, 7.2073, 7.2067, 7.206, 7.2074, 7.2067, 7.206, 7.2075, 7.2068, 7.2061, 7.2054, 7.2047, 7.204, 7.2015, 7.2009, 7.2001, 7.2015, 7.2009, 7.2006, 7.2001, 7.1993, 7.1986, 7.1983, 7.1977, 7.1973, 7.1979, 7.1973, 7.1987, 7.1982, 7.1996, 7.1991, 7.1987, 7.198, 7.1973, 7.1967, 7.196, 7.1955, 7.1969, 7.1943, 7.1937, 7.1931, 7.1924, 7.1981, 7.1976, 7.1997, 7.1992, 7.1972, 7.1988, 7.1981, 7.1977, 7.1952, 7.196, 7.1979, 7.1972, 7.1986, 7.1978, 7.1974, 7.1982, 7.1994, 7.2007, 7.1999, 7.1993, 7.1986, 7.1999, 7.1993, 7.1988, 7.1981, 7.1977, 7.1972, 7.1965, 7.1957, 7.1972, 7.1965, 7.1963, 7.1978, 7.1973, 7.1967, 7.1982, 7.1996, 7.1991, 7.1984, 7.1977, 7.1972, 7.1968, 7.1982, 7.1976, 7.1976, 7.1969, 7.1962, 7.1976, 7.1971, 7.1968, 7.1966, 7.196, 7.1954, 7.1947, 7.1941, 7.1938, 7.1932, 7.1926, 7.1919, 7.1913, 7.1906, 7.1904, 7.1897, 7.189, 7.1883, 7.1878, 7.1872, 7.1868, 7.1863, 7.1858, 7.1851, 7.1844, 7.1857, 7.1851, 7.1846, 7.184, 7.1833, 7.185, 7.1847, 7.1842, 7.1835, 7.1828, 7.1822, 7.1817, 7.1832, 7.1849, 7.1843, 7.184, 7.1833, 7.1828, 7.1821, 7.1828, 7.1821, 7.1797, 7.179, 7.1783, 7.1798, 7.1792, 7.1788, 7.1802, 7.1798, 7.1793, 7.1786, 7.178, 7.1793, 7.1786, 7.1783, 7.1776, 7.1773, 7.1771, 7.1767, 7.1764, 7.1757, 7.1752, 7.1746, 7.176, 7.1755, 7.1752, 7.1747, 7.1761, 7.176, 7.1759, 7.1755, 7.1749, 7.1746, 7.1741, 7.1753, 7.1748, 7.1743, 7.1741, 7.1755, 7.1748, 7.1746, 7.1741, 7.1753, 7.1746, 7.1742, 7.1736, 7.1731, 7.1745, 7.1761, 7.1738, 7.1753, 7.1767, 7.1761, 7.1757, 7.1754, 7.175, 7.1763, 7.1777, 7.177, 7.1763, 7.1798, 7.181, 7.1805, 7.181500000000001, 7.1809, 7.1804, 7.1806, 7.1801, 7.1795, 7.1791, 7.1784, 7.1778, 7.1772, 7.1766, 7.1761, 7.1758, 7.1772, 7.1768, 7.1763, 7.18, 7.1813, 7.1807, 7.1806, 7.1801, 7.1794, 7.1809, 7.1824, 7.1818, 7.1814, 7.1847, 7.1864, 7.1877, 7.1875, 7.187, 7.1863, 7.1859, 7.1853, 7.1887, 7.1883, 7.1877, 7.1876, 7.1872, 7.1866, 7.1882, 7.1875, 7.1888, 7.1902, 7.1903, 7.1898, 7.1891, 7.1884, 7.1881, 7.1874, 7.1867, 7.1881, 7.1875, 7.1887, 7.1903, 7.1898, 7.192, 7.1933, 7.1945, 7.1939, 7.1934, 7.1931, 7.1946, 7.1939, 7.1933, 7.1945, 7.1941, 7.1954, 7.1994, 7.1987, 7.198, 7.1974, 7.1969, 7.1965, 7.1977, 7.1991, 7.1984, 7.1979, 7.1993, 7.1989, 7.1982, 7.1978, 7.1976, 7.1972, 7.1966, 7.1962, 7.1958, 7.1953, 7.1948, 7.1944, 7.1958, 7.1952, 7.1946, 7.1961, 7.1977, 7.1972, 7.1966, 7.198, 7.1992, 7.2005, 7.1999, 7.2012, 7.2005, 7.1999, 7.1993, 7.1987, 7.1999, 7.1993, 7.1989, 7.2002, 7.1996, 7.1993, 7.1988, 7.1982, 7.1983, 7.1979, 7.1973, 7.1967, 7.1962, 7.1956, 7.195, 7.1943, 7.1955, 7.1967, 7.196, 7.1957, 7.1997, 7.2009, 7.2017, 7.2011, 7.1988, 7.1982, 7.1977, 7.1971, 7.1964, 7.1941, 7.1937, 7.1932, 7.1926, 7.192, 7.1914, 7.1927, 7.1941, 7.1935, 7.1929, 7.1923, 7.1917, 7.1911, 7.1905, 7.1903, 7.19, 7.1895, 7.1889, 7.19, 7.1893, 7.1905, 7.1917, 7.1929, 7.1926, 7.192, 7.1914, 7.1907, 7.1919, 7.1932, 7.1929, 7.1923, 7.192, 7.1915, 7.1927, 7.1921, 7.1917, 7.1936, 7.1929, 7.1923, 7.1937, 7.1931, 7.1927, 7.1939, 7.1934, 7.193, 7.1924, 7.1918, 7.1912, 7.1907, 7.19, 7.1894, 7.1889, 7.1891, 7.1903, 7.1898, 7.1892, 7.1888, 7.1899, 7.1895, 7.1889, 7.1883, 7.1878, 7.1891, 7.1903, 7.1896, 7.1891, 7.1903, 7.19, 7.1912, 7.1924, 7.1937, 7.195, 7.1944, 7.1957, 7.1952, 7.1965, 7.1977, 7.1971, 7.1965, 7.1976, 7.1973, 7.1971, 7.1964, 7.1958, 7.1953, 7.1946, 7.1941, 7.1936, 7.1931, 7.1926, 7.192, 7.1933, 7.1928, 7.1939, 7.1932, 7.1926, 7.192, 7.1915, 7.191, 7.1921, 7.1916, 7.191, 7.1921, 7.1917, 7.1911, 7.1906, 7.1901, 7.1895, 7.1907, 7.1903, 7.1914, 7.1912, 7.1918, 7.1912, 7.1906, 7.1901, 7.1895, 7.1892, 7.1886, 7.1898, 7.1897, 7.1895, 7.1892, 7.1936, 7.1931, 7.1944, 7.1954, 7.195, 7.1962, 7.1957, 7.1951, 7.1946, 7.1941, 7.1936, 7.1931, 7.1925, 7.1919, 7.1932, 7.1929, 7.1941, 7.1953, 7.1947, 7.1942, 7.1936, 7.1932, 7.1929, 7.1924, 7.1922, 7.1934, 7.1946, 7.194, 7.1951, 7.1945, 7.1939, 7.1951, 7.1945, 7.194, 7.1934, 7.1933, 7.1927, 7.1922, 7.1916, 7.1931, 7.1926, 7.1923, 7.1917, 7.1932, 7.1945, 7.1957, 7.1952, 7.1963, 7.1961, 7.1958, 7.1953, 7.1964, 7.1958, 7.1955, 7.1952, 7.1946, 7.1961, 7.1955, 7.195, 7.1963, 7.1958, 7.1955, 7.1967, 7.1962, 7.1959, 7.1972, 7.1984, 7.1978, 7.1957, 7.1936, 7.1948, 7.1942, 7.1939, 7.1933, 7.1928, 7.1922, 7.1916, 7.1911, 7.1907, 7.1901, 7.1895, 7.1891, 7.1886, 7.188, 7.1893, 7.1887, 7.1898, 7.1899, 7.1896, 7.1891, 7.1901, 7.1896, 7.1892, 7.1904, 7.1898, 7.1902, 7.1898, 7.1904, 7.1887, 7.1881, 7.1877, 7.189, 7.1884, 7.1896, 7.191, 7.1905, 7.1902, 7.1914, 7.1911, 7.1909, 7.1905, 7.19, 7.1898, 7.1894, 7.1889, 7.1885, 7.1899, 7.1894, 7.1891, 7.1887, 7.1899, 7.1893, 7.1889, 7.19, 7.1912, 7.1909, 7.1906, 7.1917, 7.1928, 7.1922, 7.1917, 7.193, 7.1927, 7.1926, 7.194, 7.1935, 7.193, 7.1927, 7.1922, 7.1924, 7.1919, 7.1914, 7.1908, 7.1902, 7.1897, 7.1892, 7.1889, 7.1884, 7.1899, 7.1903, 7.19, 7.1898, 7.1895, 7.1891, 7.1888, 7.1899, 7.1895, 7.189, 7.1885, 7.188, 7.1879, 7.1892, 7.1889, 7.1883, 7.1879, 7.1875, 7.1869, 7.1865, 7.1878, 7.1873, 7.1852, 7.1849, 7.1844, 7.1856, 7.1851, 7.1845, 7.1841, 7.1838, 7.1835, 7.1831, 7.1826, 7.184, 7.1834, 7.1828, 7.1823, 7.1837, 7.1834, 7.1847, 7.1841, 7.1841, 7.1859, 7.1853, 7.1848, 7.1843, 7.1855, 7.185, 7.1846, 7.184, 7.1834, 7.1828, 7.1807, 7.1802, 7.1813, 7.1808, 7.1802, 7.1802, 7.1797, 7.1793, 7.1804, 7.1815, 7.1828, 7.1822, 7.1819, 7.1813, 7.1807, 7.1788, 7.1816, 7.181, 7.1805, 7.1834, 7.185, 7.1844, 7.1839, 7.1836, 7.1831, 7.1841, 7.1869, 7.1863, 7.1857, 7.1854, 7.1866, 7.1862, 7.1874, 7.1869, 7.1864, 7.1858, 7.1868, 7.1864, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1852, 7.1848, 7.1842, 7.1836, 7.1831, 7.183, 7.1825, 7.1823, 7.1819, 7.1814, 7.1808, 7.182, 7.1814, 7.1808, 7.1802, 7.1797, 7.1797, 7.1792, 7.1787, 7.1783, 7.178, 7.1792, 7.1787, 7.1783, 7.178, 7.179, 7.1784, 7.1796, 7.1791, 7.1835, 7.1832, 7.1829, 7.1842, 7.1836, 7.1832, 7.1827, 7.1835, 7.183, 7.1841, 7.1822, 7.1819, 7.1814, 7.181, 7.1805, 7.18, 7.1795, 7.179, 7.1802, 7.1797, 7.1808, 7.1792, 7.1787, 7.1821, 7.1806, 7.1801, 7.1797, 7.181, 7.1838, 7.1832, 7.1849, 7.1829, 7.1824, 7.1821, 7.1831, 7.1811, 7.1807, 7.1821, 7.1872, 7.187, 7.1866, 7.1864, 7.1876, 7.1876, 7.1873, 7.1868, 7.1863, 7.1858, 7.187, 7.1865, 7.186, 7.1873, 7.1871, 7.1904, 7.1915, 7.1896, 7.1891, 7.1887, 7.1882, 7.1884, 7.1907, 7.192, 7.1915, 7.191, 7.1906, 7.1902, 7.1912, 7.1908, 7.1903, 7.1914, 7.1909, 7.1903, 7.1898, 7.1893, 7.1887, 7.1882, 7.1877, 7.1884, 7.188, 7.1876, 7.1888, 7.1903, 7.1899, 7.191, 7.1921, 7.1931, 7.1927, 7.1922, 7.1918, 7.1914, 7.1908, 7.1903, 7.1913, 7.1907, 7.1902, 7.1899, 7.1912, 7.1908, 7.1928, 7.1923, 7.1934, 7.1945, 7.194, 7.1935, 7.1946, 7.1941, 7.1936, 7.1931, 7.1928, 7.1923, 7.1934, 7.1931, 7.1925, 7.1936, 7.1931, 7.1927, 7.1924, 7.192, 7.1915, 7.191, 7.1904, 7.1914, 7.1895, 7.1891, 7.1919, 7.1914, 7.1914, 7.1924, 7.1919, 7.1914, 7.191, 7.192, 7.1915, 7.1911, 7.1909, 7.1906, 7.1903, 7.1899, 7.1894, 7.1875, 7.1871, 7.1866, 7.1861, 7.1889, 7.1884, 7.188, 7.1877, 7.1874, 7.1872, 7.1867, 7.1862, 7.1873, 7.1868, 7.1865, 7.1876, 7.1871, 7.187, 7.1865, 7.1883, 7.1878, 7.1881, 7.1892, 7.1933, 7.193, 7.1925, 7.1922, 7.1917, 7.1913, 7.1909, 7.192, 7.1915, 7.1909, 7.1904, 7.1899, 7.1894, 7.189, 7.1884, 7.1879, 7.1889, 7.1885, 7.188, 7.1878, 7.1873, 7.1884, 7.1879, 7.1876, 7.1882, 7.1877, 7.1871, 7.1868, 7.1881, 7.1891, 7.1902, 7.1913, 7.1924, 7.1918, 7.1899, 7.191, 7.1905, 7.19, 7.1899, 7.1909, 7.1906, 7.1902, 7.1897, 7.1907, 7.1901, 7.1911, 7.1925, 7.192, 7.1901, 7.1911, 7.1909, 7.1919, 7.1921, 7.1917, 7.1952, 7.1955, 7.1981, 7.1976, 7.1974, 7.1969, 7.1964, 7.1958, 7.1953, 7.1948, 7.1942, 7.1937, 7.1932, 7.1927, 7.1924, 7.1921, 7.1916, 7.1911, 7.1906, 7.1904, 7.1914, 7.1911, 7.1906, 7.19, 7.1896, 7.1892, 7.1889, 7.189, 7.1889, 7.1884, 7.1896, 7.1906, 7.1903, 7.1898, 7.1895, 7.1906, 7.1918, 7.1913, 7.1909, 7.1904, 7.1905, 7.19, 7.1895, 7.1905, 7.19, 7.1897, 7.1893, 7.1888, 7.1883, 7.1878, 7.1873, 7.1871, 7.1868, 7.1863, 7.186, 7.1858, 7.1853, 7.1848, 7.1844, 7.184, 7.1837, 7.1832, 7.1827, 7.1838, 7.1833, 7.1842, 7.1851, 7.1846, 7.1856, 7.1851, 7.1847, 7.1842, 7.1839, 7.1834, 7.1833, 7.1829, 7.1825, 7.1836, 7.183, 7.184, 7.1851, 7.1846, 7.1841, 7.1836, 7.1834, 7.1831, 7.1826, 7.1821, 7.1817, 7.1812, 7.1807, 7.1802, 7.1812, 7.1807, 7.1804, 7.1799, 7.1794, 7.1791, 7.1787, 7.1782, 7.1777, 7.1759, 7.177, 7.1765, 7.1777, 7.1772, 7.1782, 7.1779, 7.1776, 7.1771, 7.1766, 7.1776, 7.1773, 7.1768, 7.1771, 7.1768, 7.1763, 7.1769, 7.1779, 7.1774, 7.1771, 7.178100000000001, 7.1792, 7.1787, 7.1783, 7.178, 7.1776, 7.1792, 7.1788, 7.1784, 7.1795, 7.179, 7.1788, 7.1785, 7.1783, 7.1793, 7.1789, 7.1784, 7.1782, 7.1825, 7.182, 7.1822, 7.1832, 7.1865, 7.1872, 7.1854, 7.1856, 7.1852, 7.1848, 7.1909, 7.1912, 7.1895, 7.189, 7.1887, 7.1897, 7.191, 7.1906, 7.1903, 7.1898, 7.1893, 7.1888, 7.1884, 7.1879, 7.1874, 7.1869, 7.1878, 7.1888, 7.1898, 7.1894, 7.19, 7.1895, 7.1892, 7.1901, 7.1899, 7.1895, 7.1893, 7.1903, 7.1899, 7.1894, 7.189, 7.1886, 7.1912, 7.1922, 7.1917, 7.19, 7.1883, 7.1893, 7.1888, 7.1883, 7.1893, 7.189, 7.19, 7.1897, 7.1892, 7.1887, 7.1882, 7.1879, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1841, 7.1836, 7.1833, 7.1816, 7.1811, 7.1821, 7.1831, 7.184, 7.1835, 7.183, 7.1825, 7.1831, 7.1826, 7.1843, 7.184, 7.1837, 7.1847, 7.1842, 7.1837, 7.1833, 7.1829, 7.1839, 7.185, 7.1846, 7.1842, 7.1851, 7.1861, 7.1871, 7.1866, 7.1861, 7.1871, 7.1881, 7.1877, 7.1872, 7.1868, 7.1864, 7.186, 7.1857, 7.1854, 7.1864, 7.1874, 7.1888, 7.1885, 7.1898, 7.1895, 7.1905, 7.1902, 7.1898, 7.1894, 7.1891, 7.1889, 7.1874, 7.1871, 7.1867, 7.1864, 7.1859, 7.1855, 7.1854, 7.1851, 7.186, 7.1856, 7.1867, 7.1865, 7.1862, 7.1859, 7.1856, 7.1866, 7.1875, 7.187, 7.1881, 7.1876, 7.1886, 7.1882, 7.1877, 7.1873, 7.1869, 7.1864, 7.186, 7.1855, 7.185, 7.1849, 7.1845, 7.184, 7.1836, 7.186, 7.1855, 7.1851, 7.1848, 7.1845, 7.1854, 7.1851, 7.1846, 7.1856, 7.1852, 7.1861, 7.187, 7.1865, 7.1861, 7.1856, 7.1851, 7.1846, 7.1842, 7.1837, 7.1832, 7.1828, 7.1824, 7.1821, 7.1818, 7.1813, 7.181, 7.1806, 7.1815, 7.1811, 7.1807, 7.1803, 7.18, 7.1796, 7.1792, 7.1774, 7.177, 7.1766, 7.1776, 7.1787, 7.1783, 7.1792, 7.1788, 7.1784, 7.178, 7.1775, 7.1784, 7.1767, 7.1753, 7.1791, 7.1788, 7.1784, 7.1793, 7.1789, 7.1812, 7.1822, 7.1805, 7.18, 7.1813, 7.1824, 7.182, 7.1829, 7.183, 7.184, 7.1836, 7.1861, 7.187, 7.1909, 7.1919, 7.1915, 7.1898, 7.1895, 7.1904, 7.1913, 7.199, 7.1986, 7.1983, 7.1967, 7.1963, 7.1952, 7.1968, 7.1956, 7.1967, 7.1963, 7.1973, 7.1968, 7.1963, 7.1972, 7.1967, 7.1989, 7.2008, 7.2005, 7.2, 7.1996, 7.1992, 7.2002, 7.1985, 7.1995, 7.2005, 7.2001, 7.1996, 7.1991, 7.2, 7.1995, 7.1978, 7.1974, 7.1984, 7.1993, 7.1989, 7.1987, 7.1984, 7.1982, 7.1978, 7.1961, 7.1956, 7.1952, 7.1962, 7.1957, 7.1953, 7.1953, 7.195, 7.1959, 7.1956, 7.1952, 7.1949, 7.1944, 7.194, 7.1936, 7.1933, 7.193, 7.1926, 7.1922, 7.1917, 7.1913, 7.1911, 7.1908, 7.1904, 7.19, 7.1896, 7.1907, 7.1903, 7.1912, 7.1921, 7.1916, 7.1914, 7.1924, 7.1936, 7.1932, 7.1942, 7.1938, 7.1947, 7.1945, 7.1942, 7.1952, 7.1948, 7.1945, 7.1942, 7.1937, 7.1933, 7.193, 7.1927, 7.1937, 7.1933, 7.2008, 7.2004, 7.2013, 7.2009, 7.2018, 7.2003, 7.1998, 7.1994, 7.199, 7.1986, 7.1998, 7.2019, 7.2015, 7.2011, 7.1995, 7.1991, 7.1988, 7.1971, 7.1967, 7.1977, 7.1986, 7.1983, 7.1978, 7.1973, 7.1971, 7.1968, 7.1965, 7.196, 7.1957, 7.1953, 7.1949, 7.1945, 7.1954, 7.1964, 7.1962, 7.1958, 7.1954, 7.1949, 7.1959, 7.1957, 7.1952, 7.1949, 7.1946, 7.1944, 7.194, 7.1936, 7.1932, 7.1928, 7.1923, 7.1932, 7.1928, 7.1937, 7.1933, 7.1943, 7.1953, 7.195, 7.1946, 7.1944, 7.1942, 7.1938, 7.1957, 7.1956, 7.1951, 7.1949, 7.1945, 7.1955, 7.1951, 7.1947, 7.1942, 7.1937, 7.1932, 7.1941, 7.195, 7.1946, 7.1942, 7.1938, 7.1952, 7.195, 7.196, 7.1956, 7.1953, 7.1949, 7.196, 7.1956, 7.1952, 7.1949, 7.1958, 7.1954, 7.1951, 7.195, 7.1958, 7.1954, 7.195, 7.1947, 7.1944, 7.1939, 7.1935, 7.1931, 7.1927, 7.1936, 7.1932, 7.1928, 7.1925, 7.1926, 7.1922, 7.1918, 7.1914, 7.1923, 7.1932, 7.1928, 7.1924, 7.1922, 7.1932, 7.1928, 7.1936, 7.1933, 7.1942, 7.1939, 7.1947, 7.1944, 7.1952, 7.195, 7.1946, 7.1943, 7.194, 7.1938, 7.1947, 7.1943, 7.1939, 7.1935, 7.193, 7.1926, 7.1925, 7.1921, 7.1918, 7.1927, 7.1923, 7.1934, 7.1943, 7.1952, 7.196, 7.1955, 7.1951, 7.1948, 7.1943, 7.194, 7.1936, 7.1944, 7.1953, 7.1974, 7.197, 7.1965, 7.1962, 7.1957, 7.1953, 7.1948, 7.1944, 7.1941, 7.1948, 7.1958, 7.1954, 7.1951, 7.1947, 7.1942, 7.1938, 7.1933, 7.193, 7.1942, 7.1937, 7.1934, 7.1929, 7.1925, 7.1934, 7.1931, 7.1927, 7.1935, 7.1931, 7.1939, 7.1935, 7.1945, 7.1941, 7.1936, 7.1944, 7.194, 7.1949, 7.1945, 7.1955, 7.1977, 7.1973, 7.1982, 7.1978, 7.1974, 7.197, 7.1965, 7.1974, 7.1969, 7.1953, 7.1949, 7.1946, 7.1943, 7.1953, 7.1949, 7.1984, 7.199400000000001, 7.199, 7.1999, 7.1998, 7.1994, 7.1991, 7.2, 7.2009, 7.2007, 7.2026, 7.2023, 7.2032, 7.2029, 7.2037, 7.2047, 7.2043, 7.204, 7.2049, 7.2065, 7.2074, 7.2076, 7.2075, 7.2071, 7.2066, 7.2062, 7.2058, 7.2053, 7.2049, 7.2046, 7.2042, 7.2051, 7.2048, 7.2047, 7.2042, 7.204, 7.2037, 7.2035, 7.2034, 7.2031, 7.204, 7.2036, 7.2046, 7.2054, 7.2051, 7.2046, 7.2042, 7.2037, 7.2033, 7.2031, 7.2028, 7.2024, 7.2021, 7.2018, 7.202, 7.2016, 7.2012, 7.201, 7.2005, 7.2006, 7.2014, 7.2011, 7.201, 7.2007, 7.2004, 7.2, 7.2009, 7.2006, 7.2002, 7.1998, 7.1994, 7.1991, 7.1987, 7.1985, 7.1981, 7.1977, 7.1962, 7.197, 7.1967, 7.1963, 7.1972, 7.1968, 7.1968, 7.1964, 7.1991, 7.1987, 7.1996, 7.1994, 7.2004, 7.2, 7.1996, 7.2003, 7.1999, 7.1994, 7.199, 7.1987, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1965, 7.1962, 7.1969, 7.1965, 7.1961, 7.1958, 7.1954, 7.195, 7.1935, 7.1945, 7.1929, 7.1927, 7.1925, 7.1934, 7.193, 7.1926, 7.1922, 7.1917, 7.1925, 7.1933, 7.1928, 7.1925, 7.1933, 7.1934, 7.1931, 7.1927, 7.1923, 7.1931, 7.1927, 7.1937, 7.1921, 7.192, 7.1928, 7.1936, 7.1932, 7.194, 7.1937, 7.1942, 7.1939, 7.1937, 7.1934, 7.1931, 7.1927, 7.1923, 7.1932, 7.1956, 7.1952, 7.196, 7.1959, 7.1955, 7.1951, 7.1937, 7.1934, 7.193, 7.1927, 7.1929, 7.1925, 7.1934, 7.1932, 7.1934, 7.1932, 7.1928, 7.1936, 7.1935, 7.1932, 7.1928, 7.193, 7.1926, 7.1924, 7.1921, 7.1917, 7.1915, 7.1911, 7.1908, 7.1904, 7.1901, 7.1886, 7.1883, 7.1881, 7.1877, 7.1876, 7.1872, 7.187, 7.1879, 7.1889, 7.1897, 7.1905, 7.1903, 7.1901, 7.19, 7.1896, 7.191, 7.1907, 7.1923, 7.1919, 7.1917, 7.1914, 7.1923, 7.1918, 7.1914, 7.1911, 7.1907, 7.1903, 7.1888, 7.1884, 7.1882, 7.1879, 7.1875, 7.1871, 7.1867, 7.1865, 7.1861, 7.1859, 7.1855, 7.1851, 7.1847, 7.1845, 7.1843, 7.1851, 7.1847, 7.1844, 7.184, 7.1837, 7.1834, 7.1831, 7.1827, 7.1823, 7.1832, 7.1841, 7.1837, 7.1834, 7.183, 7.1827, 7.1835, 7.1832, 7.1841, 7.1837, 7.1835, 7.1831, 7.1839, 7.1837, 7.1835, 7.1832, 7.1828, 7.1824, 7.1834, 7.1854, 7.185, 7.1846, 7.1845, 7.1843, 7.1852, 7.1849, 7.1846, 7.1854, 7.1851, 7.1861, 7.1857, 7.1903, 7.1912, 7.1909, 7.193, 7.1927, 7.1924, 7.1948, 7.1957, 7.1967, 7.1964, 7.1973, 7.197, 7.1966, 7.1976, 7.198600000000001, 7.199600000000001, 7.1992, 7.1988, 7.1984, 7.1992, 7.1988, 7.1984, 7.1981, 7.199, 7.1988, 7.1986, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1964, 7.1961, 7.1958, 7.1955, 7.1963, 7.1959, 7.1967, 7.1964, 7.1973, 7.1969, 7.1977, 7.1973, 7.197, 7.1978, 7.1974, 7.1972, 7.1981, 7.1978, 7.1974, 7.1982, 7.2001, 7.1999, 7.1996, 7.1992, 7.1988, 7.1996, 7.2005, 7.2001, 7.1997, 7.1994, 7.1991, 7.1987, 7.1996, 7.1993, 7.2001, 7.1998, 7.1994, 7.199, 7.1998, 7.1994, 7.199, 7.1986, 7.1994, 7.2003, 7.202, 7.2018, 7.2014, 7.201, 7.2018, 7.2015, 7.2012, 7.2047, 7.2046, 7.2042, 7.2052, 7.2061, 7.2046, 7.2042, 7.2044, 7.2052, 7.2067, 7.2064, 7.206, 7.2057, 7.2053, 7.2049, 7.2057, 7.2056, 7.2052, 7.206, 7.2068, 7.2077, 7.2073, 7.207, 7.2078, 7.2075, 7.2072, 7.2069, 7.2065, 7.2061, 7.2057, 7.2053, 7.2049, 7.2049, 7.2049, 7.2046, 7.2042, 7.2038, 7.2046, 7.2042, 7.2038, 7.2035, 7.2031, 7.2027, 7.2023, 7.2019, 7.2015, 7.2013, 7.2011, 7.2007, 7.2004, 7.2, 7.1997, 7.1995, 7.1981, 7.1977, 7.1975, 7.2, 7.1997, 7.202, 7.2017, 7.2013, 7.2021, 7.2018, 7.2014, 7.201, 7.2006, 7.2014, 7.2011, 7.2009, 7.2005, 7.1994, 7.1992, 7.2002, 7.2023, 7.2009, 7.2008, 7.2005, 7.2014, 7.2011, 7.2008, 7.2016, 7.2024, 7.2032, 7.2028, 7.2024, 7.2032, 7.2029, 7.2026, 7.2035, 7.2031, 7.2027, 7.2024, 7.2021, 7.2007, 7.2014, 7.2022, 7.202, 7.2016, 7.2012, 7.202, 7.2016, 7.2024, 7.2021, 7.2018, 7.2015, 7.2024, 7.202, 7.2016, 7.2012, 7.2011, 7.2009, 7.2005, 7.2001, 7.1998, 7.1996, 7.2004, 7.2001, 7.1999, 7.1995, 7.1991, 7.1987, 7.1995, 7.2003, 7.2003, 7.2, 7.1997, 7.1995, 7.1991, 7.1989, 7.1988, 7.1984, 7.1992, 7.1989, 7.1985, 7.2008, 7.2004, 7.2012, 7.202, 7.2018, 7.2025, 7.2021, 7.2029, 7.2025, 7.2021, 7.2029, 7.2036, 7.2033, 7.2053, 7.2066, 7.2062, 7.2058, 7.2056, 7.2053, 7.2049, 7.2045, 7.2041, 7.2062, 7.2069, 7.2067, 7.2117, 7.2113, 7.211, 7.2097, 7.2093, 7.2093, 7.2102, 7.211, 7.2096, 7.2093, 7.2091, 7.2099, 7.2096, 7.2093, 7.2102, 7.2113, 7.211, 7.2106, 7.2114, 7.2112, 7.2121, 7.212, 7.2116, 7.2114, 7.211, 7.2107, 7.2105, 7.2124, 7.2121, 7.213, 7.2126, 7.2133, 7.2129, 7.2126, 7.2133, 7.2137, 7.2135, 7.2166, 7.2162, 7.2148, 7.2156, 7.2152, 7.2138, 7.2134, 7.213, 7.2185, 7.2193, 7.2189, 7.2197, 7.2216, 7.2214, 7.2212, 7.222, 7.2216, 7.2212, 7.2209, 7.2206, 7.2202, 7.2209, 7.2205, 7.2201, 7.2199, 7.2196, 7.2204, 7.2213, 7.2209, 7.2206, 7.2213, 7.221, 7.2207, 7.2204, 7.2201, 7.2197, 7.2194, 7.219, 7.2186, 7.219600000000001, 7.220600000000001, 7.2203, 7.22, 7.2208, 7.2216, 7.2224, 7.2221, 7.2217, 7.2214, 7.221, 7.2206, 7.2203, 7.2211, 7.2207, 7.2206, 7.2202, 7.2199, 7.2195, 7.2191, 7.2187, 7.2184, 7.218, 7.2179, 7.2188, 7.2184, 7.218, 7.2187, 7.2189, 7.2185, 7.2193, 7.219, 7.219, 7.2198, 7.2206, 7.2203, 7.2199, 7.2199, 7.2206, 7.2203, 7.22, 7.2197, 7.2193, 7.219, 7.2197, 7.2193, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.2182, 7.2179, 7.2165, 7.2162, 7.216, 7.2156, 7.2154, 7.2151, 7.2147, 7.2155, 7.2162, 7.2159, 7.2157, 7.2155, 7.2151, 7.2159, 7.2155, 7.2152, 7.2148, 7.2144, 7.2141, 7.2137, 7.2134, 7.2142, 7.2134, 7.2132, 7.2128, 7.2125, 7.2121, 7.2117, 7.212700000000001, 7.2123, 7.2121, 7.2131, 7.2138, 7.2134, 7.2131, 7.2139, 7.2146, 7.2142, 7.2141, 7.2128, 7.2124, 7.2122, 7.2119, 7.2116, 7.2115, 7.2114, 7.2122, 7.2118, 7.2114, 7.2121, 7.2128, 7.2125, 7.2133, 7.213, 7.2128, 7.2135, 7.2143, 7.2141, 7.2141, 7.2137, 7.2144, 7.2142, 7.214, 7.2149, 7.2145, 7.2142, 7.2142, 7.2141, 7.2137, 7.2157, 7.2155, 7.2162, 7.217, 7.2167, 7.2175, 7.2173, 7.2184, 7.218, 7.2178, 7.2174, 7.2177, 7.2193, 7.2201, 7.2198, 7.2204, 7.2206, 7.2204, 7.2203, 7.221, 7.2207, 7.2211, 7.2207, 7.2204, 7.22, 7.2208, 7.2204, 7.2201, 7.2198, 7.2194, 7.219, 7.2211, 7.2208, 7.2216, 7.2224, 7.2223, 7.2233, 7.2233, 7.223, 7.2237, 7.2235, 7.2242, 7.2239, 7.2235, 7.2232, 7.2228, 7.2227, 7.2224, 7.2224, 7.2237, 7.2234, 7.2243, 7.224, 7.2236, 7.2233, 7.2229, 7.2225, 7.2233, 7.2241, 7.2249, 7.2246, 7.2243, 7.2251, 7.2249, 7.2257, 7.2249, 7.2247, 7.2243, 7.2241, 7.2238, 7.2246, 7.2304, 7.2311, 7.2308, 7.2305, 7.2301, 7.23, 7.2297, 7.2305, 7.2301, 7.2309, 7.2305, 7.2313, 7.231, 7.2307, 7.2304, 7.2312, 7.2308, 7.2305, 7.2312, 7.231, 7.2306, 7.2302, 7.2298, 7.2294, 7.229, 7.2297, 7.2295, 7.2302, 7.2299, 7.2295, 7.2293, 7.229, 7.2286, 7.2304, 7.23, 7.2287, 7.2284, 7.2292, 7.2289, 7.2296, 7.2292, 7.23, 7.2296, 7.2303, 7.2299, 7.2306, 7.2302, 7.2298, 7.2294, 7.2303, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2286, 7.2284, 7.2281, 7.2268, 7.2264, 7.2261, 7.2258, 7.2265, 7.2262, 7.2259, 7.2257, 7.2255, 7.2253, 7.225, 7.2247, 7.2246, 7.2242, 7.2229, 7.2241, 7.2261, 7.2269, 7.2268, 7.2265, 7.2262, 7.2258, 7.2254, 7.225, 7.2258, 7.2256, 7.2252, 7.2248, 7.2244, 7.224, 7.2237, 7.2266, 7.2264, 7.2262, 7.2258, 7.2256, 7.2253, 7.225, 7.2257, 7.2254, 7.2252, 7.2259, 7.2266, 7.2264, 7.2271, 7.2269, 7.2276, 7.2263, 7.2259, 7.2257, 7.2254, 7.2251, 7.2251, 7.2278, 7.2275, 7.2285, 7.2281, 7.2278, 7.2286, 7.2305, 7.2301, 7.2313, 7.231, 7.2318, 7.2326, 7.2333, 7.234, 7.2336, 7.2332, 7.2339, 7.2346, 7.2342, 7.2338, 7.2338, 7.2334, 7.2331, 7.2328, 7.2325, 7.2323, 7.2319, 7.2327, 7.2324, 7.2322, 7.2318, 7.2324, 7.2322, 7.2318, 7.2314, 7.2311, 7.2307, 7.2304, 7.2301, 7.2311000000000005, 7.2308, 7.2305, 7.2302, 7.2299, 7.2297, 7.2296, 7.2323, 7.231, 7.2307, 7.2304, 7.2302, 7.2309, 7.2307, 7.2305, 7.2312, 7.232, 7.2317, 7.2307, 7.2304, 7.2302, 7.2299, 7.2307, 7.2304, 7.23, 7.2297, 7.2295, 7.2313, 7.2309, 7.2318, 7.2315, 7.2312, 7.231, 7.2307, 7.2316, 7.2313, 7.231, 7.2307, 7.2294, 7.2291, 7.2299, 7.2295, 7.2304, 7.2301, 7.2308, 7.2305, 7.2301, 7.2297, 7.2295, 7.2292, 7.2289, 7.2287, 7.2284, 7.2282, 7.229, 7.2286, 7.2295, 7.2293, 7.2291, 7.2299, 7.2295, 7.2292, 7.2299, 7.2306, 7.2304, 7.2305, 7.2312, 7.2308, 7.2304, 7.2301, 7.2297, 7.2294, 7.2301, 7.2308, 7.2306, 7.2304, 7.23, 7.2297, 7.2295, 7.2301, 7.2297, 7.2295, 7.2292, 7.2302, 7.231, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2327, 7.2324, 7.2321, 7.2318, 7.234, 7.2337, 7.2334, 7.233, 7.2327, 7.2324, 7.2322, 7.2329, 7.2325, 7.2333, 7.2329, 7.2326, 7.2323, 7.232, 7.2317, 7.2324, 7.232, 7.2316, 7.2312, 7.2308, 7.2304, 7.2311, 7.2308, 7.2315, 7.2311, 7.2312, 7.231, 7.2307, 7.2303, 7.23, 7.2298, 7.2295, 7.2292, 7.2279, 7.2286, 7.2293, 7.2291, 7.2288, 7.2276, 7.2273, 7.228, 7.2276, 7.2275, 7.2271, 7.2268, 7.2265, 7.2262, 7.2271, 7.2268, 7.2276, 7.2272, 7.2279, 7.2277, 7.2274, 7.2271, 7.2269, 7.2265, 7.2262, 7.2259, 7.2246, 7.2233, 7.224, 7.2237, 7.2234, 7.2231, 7.2227, 7.2238, 7.2226, 7.2222, 7.2219, 7.2215, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2216, 7.2213, 7.221, 7.2207, 7.2197, 7.2194, 7.2201, 7.2208, 7.2204, 7.2201, 7.22, 7.2197, 7.2214, 7.2203, 7.2199, 7.2186, 7.2182, 7.22, 7.2198, 7.2216, 7.2223, 7.222, 7.2216, 7.2213, 7.221, 7.2208, 7.2225, 7.2223, 7.2221, 7.2248, 7.2255, 7.2252, 7.225, 7.2247, 7.2244, 7.2251, 7.2258, 7.2265, 7.2264, 7.2271, 7.2267, 7.2274, 7.227, 7.2315, 7.2341, 7.2337, 7.2336, 7.2336, 7.2334, 7.2332, 7.2329, 7.2325, 7.2336, 7.2334, 7.2333, 7.233, 7.2336, 7.2334, 7.2331, 7.2338, 7.2344, 7.2341, 7.2348, 7.2364, 7.2361, 7.2358, 7.2367, 7.2364, 7.2361, 7.2357, 7.2374, 7.2371, 7.2369, 7.2368, 7.2366, 7.2372, 7.2368, 7.2364, 7.237, 7.2367, 7.2374, 7.2371, 7.2377, 7.2383, 7.238, 7.2388, 7.2384, 7.2391, 7.2398, 7.2405, 7.2402, 7.2409, 7.2407, 7.2404, 7.24, 7.2397, 7.2403, 7.2421, 7.2428, 7.2416, 7.2413, 7.241, 7.2407, 7.2404, 7.2411, 7.2418, 7.2424, 7.242, 7.2427, 7.2424, 7.243, 7.2436, 7.2442, 7.244, 7.2437, 7.2433, 7.243, 7.2427, 7.2424, 7.2421, 7.2428, 7.2445, 7.2441, 7.2438, 7.2435, 7.2432, 7.2429, 7.2427, 7.2437, 7.2434, 7.2431, 7.2437, 7.2445, 7.2442, 7.2439, 7.2436, 7.2446, 7.2443, 7.2439, 7.2436, 7.2432, 7.2429, 7.2436, 7.2432, 7.2449], '192.168.122.120': [8.0388, 6.694, 6.3781, 6.3054, 7.2142, 7.0815, 6.1872, 6.1121, 5.5454, 5.5245, 5.5086, 5.6229, 5.5926, 5.589, 5.5738, 7.1955, 7.0895, 6.9976, 6.9587, 6.8847, 6.8159, 7.8499, 7.9814, 7.8916, 7.8402, 7.7616, 7.7233, 7.8511, 7.7724, 7.871, 7.9638, 7.8814, 7.8164, 7.7423, 7.7387, 7.6841, 7.6183, 7.6968, 7.6626, 7.6101, 7.6734, 7.6205, 7.5804, 7.5255, 7.5992, 7.5609, 7.5171, 7.4904, 7.4482, 7.5096, 7.4846, 7.4538, 7.592, 7.5511, 7.5133, 7.4742, 7.4537, 7.4187, 7.3934, 7.3748, 7.3416, 7.3968, 7.3777, 7.3468, 7.415, 7.481, 7.5809, 7.5547, 7.5253, 7.5153, 7.4915, 7.4607, 7.4334, 7.4115, 7.3827, 7.3642, 7.3595, 7.2734, 7.2512, 7.2322, 7.2128, 7.2582, 7.2368, 7.237, 7.2136, 7.1917, 7.1712, 7.1494, 7.194, 7.2343, 7.2803, 7.2602, 7.3015, 7.3433, 7.328, 7.3109, 7.2936, 7.3362, 7.3227, 7.3028, 7.2841, 7.2642, 7.1987, 7.1826, 7.167, 7.1587, 7.1495, 7.0877, 7.0723, 7.0595, 7.098, 7.085, 7.2189, 7.2548, 7.4265, 7.4109, 7.4024, 7.5253, 7.5549, 7.5418, 7.5708, 7.5544, 7.5395, 7.5904, 7.5471, 7.5763, 7.5612, 7.5452, 7.575, 7.5599, 7.5423, 7.5285, 7.5161, 7.5063, 7.5331, 7.5169, 7.549, 7.5326, 7.5267, 7.5123, 7.498, 7.5253, 7.5116, 7.4964, 7.5413, 7.5651, 7.5544, 7.5414, 7.5402, 7.5278, 7.5143, 7.6544, 7.6397, 7.6257, 7.6792, 7.7398, 7.7282, 7.7169, 7.703, 7.6903, 7.6765, 7.6625, 7.6516, 7.672, 7.6891, 7.6766, 7.6652, 7.6842, 7.703, 7.6903, 7.6799, 7.6673, 7.6571, 7.6465, 7.6351, 7.6235, 7.6117, 7.6303, 7.6216, 7.64, 7.6304, 7.6219, 7.6102, 7.6011, 7.5883, 7.578, 7.5704, 7.5884, 7.5835, 7.6006, 7.59, 7.578, 7.5701, 7.5588, 7.5464, 7.5349, 7.5504, 7.541, 7.5372, 7.5538, 7.5426, 7.5344, 7.5259, 7.5158, 7.5059, 7.5207, 7.5117, 7.5042, 7.5009, 7.4955, 7.485, 7.4772, 7.493, 7.4832, 7.4768, 7.4833, 7.4738, 7.4874, 7.5028, 7.4946, 7.4846, 7.4762, 7.4926, 7.5214, 7.5136, 7.5056, 7.6185, 7.6124, 7.6032, 7.5928, 7.606, 7.5988, 7.5895, 7.6102, 7.624, 7.6163, 7.609, 7.606, 7.5989, 7.6117, 7.6022, 7.5943, 7.5886, 7.5605, 7.5526, 7.5679, 7.56, 7.5982, 7.5895, 7.602, 7.5945, 7.5863, 7.5776, 7.5904, 7.603, 7.5948, 7.5878, 7.6006, 7.6125, 7.6463, 7.6421, 7.653, 7.7142, 7.7074, 7.6983, 7.693, 7.6884, 7.6993, 7.6984, 7.6897, 7.683, 7.6791, 7.6733, 7.7463, 7.7395, 7.7308, 7.7222, 7.7141, 7.7119, 7.7048, 7.7168, 7.7102, 7.7014, 7.6932, 7.6875, 7.6636, 7.6557, 7.6665, 7.662, 7.6541, 7.6705, 7.6638, 7.6409, 7.6332, 7.6256, 7.6174, 7.6356, 7.6274, 7.6377, 7.652, 7.6626, 7.6546, 7.6472, 7.6408, 7.6354, 7.6291, 7.6401, 7.6325, 7.627, 7.6376, 7.6478, 7.657, 7.707, 7.7039, 7.6977, 7.691, 7.6838, 7.6817, 7.6745, 7.6676, 7.6608, 7.6549, 7.6478, 7.6409, 7.6361, 7.6302, 7.6263, 7.6198, 7.615, 7.6113, 7.6052, 7.6031, 7.6021, 7.6145, 7.609, 7.6167, 7.6101, 7.6045, 7.5995, 7.5941, 7.5876, 7.5968, 7.5922, 7.5867, 7.5832, 7.577, 7.5709, 7.5646, 7.5735, 7.5695, 7.5632, 7.5572, 7.5675, 7.561, 7.5603, 7.5554, 7.549, 7.5428, 7.5381, 7.5336, 7.5145, 7.5096, 7.5204, 7.5146, 7.5092, 7.506, 7.5136, 7.5233, 7.5173, 7.5113, 7.5089, 7.5038, 7.4997, 7.4947, 7.4896, 7.5059, 7.5144, 7.5084, 7.5038, 7.5121, 7.5064, 7.5023, 7.5225, 7.5176, 7.526, 7.5236, 7.5324, 7.5311, 7.5259, 7.5224, 7.531, 7.5263, 7.5356, 7.5314, 7.5782, 7.5867, 7.5824, 7.5906, 7.5741, 7.5696, 7.5638, 7.5581, 7.5527, 7.5535, 7.5487, 7.5318, 7.5273, 7.5233, 7.5181, 7.515, 7.5484, 7.583, 7.5786, 7.574, 7.5685, 7.5646, 7.5605, 7.5575, 7.554, 7.549, 7.5656, 7.5733, 7.5862, 7.6094, 7.6172, 7.6121, 7.6065, 7.601, 7.5958, 7.5909, 7.5988, 7.5944, 7.589, 7.585, 7.5801, 7.5751, 7.5714, 7.5684, 7.5686, 7.5646, 7.5644, 7.561, 7.5597, 7.556, 7.5749, 7.5713, 7.5666, 7.5614, 7.5702, 7.5666, 7.5629, 7.5599, 7.5672, 7.5633, 7.5585, 7.5543, 7.5388, 7.5339, 7.5292, 7.5355, 7.5306, 7.527, 7.5261, 7.5335, 7.5309, 7.5271, 7.5225, 7.5078, 7.5045, 7.5118, 7.5267, 7.5235, 7.5309, 7.5279, 7.5231, 7.5185, 7.5141, 7.5206, 7.5161, 7.5231, 7.5301, 7.5262, 7.5233, 7.52, 7.5155, 7.5118, 7.5078, 7.5155, 7.5116, 7.5194, 7.5156, 7.5115, 7.5308, 7.5368, 7.5462, 7.5424, 7.5403, 7.5369, 7.534, 7.5405, 7.5466, 7.5433, 7.5398, 7.5355, 7.5313, 7.5321, 7.5301, 7.5259, 7.5217, 7.5187, 7.5158, 7.5126, 7.5102, 7.5062, 7.5035, 7.4998, 7.497, 7.5034, 7.5005, 7.4967, 7.4946, 7.4909, 7.4875, 7.4845, 7.4814, 7.4781, 7.4742, 7.4717, 7.4681, 7.4642, 7.4612, 7.4574, 7.4542, 7.4509, 7.4477, 7.4439, 7.4403, 7.438, 7.4442, 7.4404, 7.4364, 7.4342, 7.4314, 7.4276, 7.424, 7.4203, 7.4165, 7.4135, 7.4108, 7.4179, 7.4144, 7.4605, 7.4581, 7.455, 7.4513, 7.4491, 7.4466, 7.4712, 7.4689, 7.466, 7.4625, 7.4591, 7.4554, 7.4519, 7.4496, 7.4457, 7.4435, 7.4398, 7.4377, 7.4342, 7.4406, 7.4382, 7.4358, 7.4327, 7.4388, 7.4462, 7.452, 7.4486, 7.4561, 7.4621, 7.468, 7.4644, 7.4613, 7.4579, 7.4633, 7.4606, 7.4587, 7.4576, 7.4572, 7.4535, 7.4584, 7.4564, 7.4534, 7.4524, 7.4494, 7.4461, 7.4521, 7.4488, 7.4525, 7.4489, 7.4548, 7.4605, 7.4799, 7.4763, 7.4729, 7.4693, 7.476, 7.4731, 7.4701, 7.4666, 7.464, 7.4608, 7.4664, 7.4632, 7.46, 7.4574, 7.4541, 7.4514, 7.448, 7.4454, 7.451, 7.44, 7.4368, 7.4423, 7.4425, 7.4481, 7.4698, 7.4759, 7.473, 7.4778, 7.4743, 7.4709, 7.4673, 7.4721, 7.4686, 7.4658, 7.4709, 7.4698, 7.4676, 7.4648, 7.4623, 7.4516, 7.4577, 7.4628, 7.4681, 7.4737, 7.471, 7.4688, 7.4661, 7.4632, 7.4605, 7.4656, 7.47, 7.4667, 7.4646, 7.4621, 7.4593, 7.4566, 7.4461, 7.4434, 7.433, 7.4308, 7.4363, 7.4351, 7.4325, 7.4315, 7.4374, 7.4427, 7.4479, 7.4454, 7.4461, 7.4919, 7.4979, 7.4964, 7.4951, 7.4927, 7.4894, 7.4944, 7.4922, 7.4903, 7.4958, 7.4932, 7.4902, 7.487, 7.4841, 7.4818, 7.4788, 7.4838, 7.4884, 7.4867, 7.4841, 7.4829, 7.4876, 7.4845, 7.4814, 7.48, 7.4781, 7.4827, 7.4798, 7.4846, 7.489, 7.4937, 7.4904, 7.4878, 7.4849, 7.4885, 7.4857, 7.4826, 7.4809, 7.4861, 7.4831, 7.48, 7.4776, 7.476, 7.4741, 7.4722, 7.4712, 7.4686, 7.4658, 7.4631, 7.4603, 7.4652, 7.4622, 7.4596, 7.4569, 7.4553, 7.4528, 7.4499, 7.4547, 7.4525, 7.45, 7.4473, 7.4449, 7.4421, 7.4394, 7.4367, 7.4341, 7.4326, 7.4299, 7.4295, 7.4341, 7.4315, 7.4295, 7.4269, 7.4242, 7.422, 7.4201, 7.4172, 7.4151, 7.4209, 7.4182, 7.4159, 7.421, 7.4186, 7.4229, 7.4203, 7.4176, 7.4153, 7.4128, 7.4107, 7.4086, 7.4129, 7.418, 7.4228, 7.421, 7.4198, 7.417, 7.418, 7.4226, 7.4203, 7.4249, 7.4235, 7.4219, 7.4267, 7.433, 7.4339, 7.4364, 7.4406, 7.4398, 7.4442, 7.4425, 7.4399, 7.4373, 7.4416, 7.4394, 7.4368, 7.4342, 7.4383, 7.4355, 7.4332, 7.4307, 7.4374, 7.435, 7.4323, 7.4308, 7.4284, 7.4256, 7.4233, 7.4209, 7.4196, 7.4241, 7.4608, 7.453, 7.4504, 7.4479, 7.4517, 7.449, 7.4477, 7.4516, 7.4554, 7.4592, 7.4578, 7.4778, 7.4758, 7.4748, 7.4722, 7.4697, 7.4672, 7.4651, 7.4626, 7.4666, 7.4644, 7.4619, 7.466, 7.4641, 7.4614, 7.4721, 7.4694, 7.4612, 7.4528, 7.4502, 7.4477, 7.4462, 7.4704, 7.4742, 7.472, 7.4699, 7.4678, 7.4659, 7.4638, 7.4613, 7.4588, 7.4638, 7.4616, 7.459, 7.4571, 7.4679, 7.4658, 7.4699, 7.4675, 7.4651, 7.4626, 7.4612, 7.4597, 7.4594, 7.4513, 7.4495, 7.447, 7.4446, 7.4483, 7.4402, 7.4438, 7.4418, 7.4405, 7.4382, 7.4421, 7.4458, 7.4497, 7.4472, 7.451, 7.4548, 7.4525, 7.4604, 7.464, 7.4616, 7.4597, 7.4573, 7.4613, 7.46, 7.4579, 7.4557, 7.4605, 7.4583, 7.4593, 7.4569, 7.4552, 7.4591, 7.458, 7.4618, 7.4661, 7.4707, 7.4684, 7.4667, 7.4647, 7.463, 7.4667, 7.4594, 7.4577, 7.4562, 7.454, 7.4517, 7.4494, 7.4483, 7.4474, 7.4532, 7.4511, 7.4488, 7.447, 7.445, 7.4426, 7.4526, 7.4508, 7.4544, 7.4528, 7.4687, 7.4665, 7.4701, 7.468, 7.4662, 7.4645, 7.4623, 7.4601, 7.4596, 7.4576, 7.4619, 7.4596, 7.4573, 7.4551, 7.4585, 7.4568, 7.4609, 7.4586, 7.457, 7.455, 7.4615, 7.4557, 7.4593, 7.457, 7.4718, 7.4696, 7.4682, 7.4667, 7.4649, 7.4631, 7.4565, 7.4599, 7.4584, 7.4561, 7.4594, 7.4523, 7.4519, 7.4555, 7.4591, 7.4648, 7.4627, 7.4605, 7.4587, 7.4566, 7.4545, 7.4592, 7.4629, 7.4664, 7.4765, 7.4751, 7.4679, 7.4663, 7.4641, 7.4672, 7.4654, 7.4643, 7.4675, 7.4707, 7.4685, 7.472, 7.4702, 7.4681, 7.4661, 7.4639, 7.4616, 7.4595, 7.4626, 7.4613, 7.4697, 7.4685, 7.4715, 7.47, 7.4737, 7.483, 7.4817, 7.4799, 7.4777, 7.4767, 7.476, 7.4739, 7.4915, 7.4899, 7.4879, 7.4864, 7.4847, 7.486, 7.4845, 7.4836, 7.4819, 7.4838, 7.482, 7.48, 7.4785, 7.4825, 7.4768, 7.4753, 7.4741, 7.4774, 7.4754, 7.4811, 7.4791, 7.4772, 7.4751, 7.4736, 7.4717, 7.4697, 7.4676, 7.4667, 7.4652, 7.4631, 7.4662, 7.4651, 7.4636, 7.457, 7.4604, 7.4584, 7.4565, 7.4545, 7.4526, 7.4513, 7.4545, 7.4527, 7.4557, 7.4535, 7.4514, 7.4507, 7.4487, 7.4522, 7.4504, 7.4484, 7.447, 7.4501, 7.4532, 7.4516, 7.4502, 7.4487, 7.4521, 7.451, 7.4495, 7.4491, 7.4525, 7.4558, 7.4587, 7.4621, 7.4602, 7.4586, 7.4565, 7.4551, 7.4584, 7.4572, 7.4557, 7.4543, 7.4525, 7.4556, 7.4539, 7.452, 7.4507, 7.4535, 7.4563, 7.4546, 7.4528, 7.4511, 7.4502, 7.449, 7.4521, 7.4507, 7.4488, 7.4474, 7.4462, 7.4603, 7.4583, 7.4619, 7.4606, 7.4646, 7.4632, 7.462, 7.4609, 7.4599, 7.4538, 7.4521, 7.4517, 7.4514, 7.4501, 7.4487, 7.4473, 7.4459, 7.4488, 7.4476, 7.4457, 7.4443, 7.4431, 7.4411, 7.4391, 7.4375, 7.4412, 7.4395, 7.4395, 7.438, 7.4405, 7.4417, 7.4451, 7.4435, 7.4416, 7.4446, 7.4526, 7.4508, 7.4543, 7.4577, 7.4559, 7.4543, 7.4529, 7.451, 7.4492, 7.4474, 7.4459, 7.4443, 7.4426, 7.4461, 7.4444, 7.4475, 7.4457, 7.4442, 7.4471, 7.4458, 7.4399, 7.4384, 7.4373, 7.436, 7.436, 7.4559, 7.4548, 7.4529, 7.4514, 7.4459, 7.4446, 7.4473, 7.4458, 7.4443, 7.4436, 7.442, 7.4402, 7.4383, 7.4364, 7.4394, 7.4376, 7.4358, 7.4341, 7.4338, 7.432, 7.4308, 7.429, 7.4272, 7.4214, 7.4195, 7.4224, 7.4219, 7.4201, 7.4183, 7.4166, 7.4156, 7.4141, 7.4141, 7.4133, 7.416, 7.4102, 7.4131, 7.4114, 7.4103, 7.4093, 7.4081, 7.4068, 7.4097, 7.408, 7.4023, 7.4013, 7.4001, 7.4027, 7.4013, 7.3995, 7.3985, 7.3969, 7.3996, 7.4024, 7.4017, 7.3999, 7.3982, 7.397, 7.396, 7.3943, 7.3926, 7.3912, 7.3944, 7.3971, 7.3956, 7.3941, 7.3971, 7.3956, 7.3947, 7.3932, 7.3917, 7.3949, 7.3943, 7.3931, 7.3914, 7.3901, 7.3929, 7.3913, 7.3898, 7.3881, 7.3864, 7.3853, 7.3836, 7.3782, 7.377, 7.3759, 7.3787, 7.3816, 7.3805, 7.3801, 7.3786, 7.3771, 7.3801, 7.3787, 7.3818, 7.382, 7.3852, 7.3838, 7.3827, 7.3809, 7.3793, 7.3781, 7.3769, 7.38, 7.3748, 7.3737, 7.3727, 7.3713, 7.3738, 7.3728, 7.3716, 7.3699, 7.3685, 7.3712, 7.3696, 7.3688, 7.3676, 7.3661, 7.3688, 7.3676, 7.3702, 7.3647, 7.3633, 7.3659, 7.3611, 7.36, 7.3585, 7.3571, 7.3555, 7.3544, 7.3597, 7.3599, 7.3585, 7.3572, 7.3557, 7.3546, 7.353, 7.3518, 7.3507, 7.3491, 7.3484, 7.3481, 7.3468, 7.3493, 7.3484, 7.3474, 7.346, 7.3486, 7.347, 7.3456, 7.3482, 7.3472, 7.3499, 7.3569, 7.3558, 7.3545, 7.353, 7.3515, 7.353, 7.3557, 7.3544, 7.3492, 7.3478, 7.3462, 7.3489, 7.3474, 7.3459, 7.3454, 7.3439, 7.3438, 7.3423, 7.3417, 7.3405, 7.341, 7.3407, 7.342, 7.3407, 7.3396, 7.3388, 7.3471, 7.346, 7.3446, 7.3408, 7.3369, 7.3355, 7.3341, 7.3351, 7.3337, 7.3323, 7.3307, 7.3334, 7.3326, 7.3313, 7.3298, 7.3293, 7.3286, 7.3394, 7.3344, 7.333, 7.332, 7.3314, 7.3299, 7.3292, 7.3278, 7.3268, 7.3258, 7.3243, 7.3287, 7.3272, 7.3258, 7.3289, 7.332, 7.3347, 7.3334, 7.3324, 7.3276, 7.3373, 7.3358, 7.3343, 7.3328, 7.3318, 7.3306, 7.3296, 7.3384, 7.3376, 7.3367, 7.3319, 7.3317, 7.3308, 7.3294, 7.3287, 7.3278, 7.3309, 7.3297, 7.3282, 7.3268, 7.3258, 7.3244, 7.3315, 7.3366, 7.3393, 7.3382, 7.3389, 7.3455, 7.3445, 7.3433, 7.3426, 7.3412, 7.3403, 7.3401, 7.3387, 7.3384, 7.3372, 7.336, 7.3353, 7.3346, 7.3333, 7.3319, 7.3313, 7.33, 7.329, 7.3316, 7.3306, 7.3292, 7.332, 7.3348, 7.3335, 7.3324, 7.331, 7.3311, 7.3297, 7.3284, 7.3274, 7.3261, 7.3283, 7.3271, 7.326, 7.3287, 7.3429, 7.3456, 7.3444, 7.3474, 7.3464, 7.3469, 7.3459, 7.3493, 7.3482, 7.3469, 7.3456, 7.3448, 7.3443, 7.3432, 7.3419, 7.3448, 7.3435, 7.342, 7.3444, 7.3435, 7.3466, 7.3456, 7.3444, 7.3434, 7.3455, 7.3448, 7.3441, 7.3431, 7.3453, 7.3478, 7.3466, 7.3459, 7.3448, 7.3441, 7.3426, 7.3427, 7.345, 7.3438, 7.3424, 7.341, 7.3432, 7.342, 7.3409, 7.3396, 7.3417, 7.3406, 7.3396, 7.3387, 7.3412, 7.3439, 7.3427, 7.3418, 7.3405, 7.3469, 7.3462, 7.345, 7.3438, 7.3461, 7.3448, 7.3436, 7.3425, 7.3411, 7.3436, 7.3428, 7.3452, 7.3476, 7.3488, 7.3482, 7.347, 7.3496, 7.3483, 7.347, 7.3457, 7.3458, 7.3448, 7.3435, 7.3465, 7.3451, 7.3438, 7.3439, 7.3464, 7.3456, 7.3447, 7.3441, 7.3428, 7.3452, 7.3451, 7.3439, 7.3431, 7.3418, 7.3405, 7.3393, 7.3417, 7.3444, 7.3437, 7.3426, 7.3416, 7.3406, 7.3396, 7.3394, 7.3416, 7.3404, 7.3397, 7.3389, 7.3377, 7.3371, 7.3366, 7.3357, 7.3379, 7.3437, 7.3463, 7.3453, 7.348, 7.3468, 7.346, 7.3483, 7.3471, 7.3494, 7.3484, 7.3475, 7.35, 7.3487, 7.3473, 7.3465, 7.3452, 7.3438, 7.3428, 7.3418, 7.3405, 7.3427, 7.3449, 7.3474, 7.3463, 7.3455, 7.3444, 7.3435, 7.3423, 7.3414, 7.3437, 7.3424, 7.3421, 7.3408, 7.3399, 7.3422, 7.3411, 7.3404, 7.3424, 7.3412, 7.3401, 7.3394, 7.3403, 7.3395, 7.3418, 7.3439, 7.3427, 7.3427, 7.3443, 7.343, 7.3452, 7.3473, 7.3477, 7.3464, 7.3489, 7.3512, 7.3536, 7.3526, 7.3618, 7.3605, 7.3591, 7.3614, 7.3602, 7.3593, 7.358, 7.3568, 7.3589, 7.358, 7.3574, 7.3563, 7.3587, 7.3581, 7.3568, 7.3555, 7.3546, 7.3568, 7.3563, 7.3587, 7.3607, 7.3609, 7.3629, 7.3588, 7.3581, 7.3569, 7.3558, 7.3517, 7.3544, 7.3566, 7.3555, 7.3545, 7.3535, 7.3523, 7.3539, 7.3527, 7.3515, 7.3503, 7.3491, 7.3481, 7.3469, 7.3456, 7.3445, 7.344, 7.3428, 7.3417, 7.3406, 7.3427, 7.3414, 7.3411, 7.3399, 7.3394, 7.3382, 7.3372, 7.3363, 7.3353, 7.3341, 7.3336, 7.336, 7.3349, 7.3342, 7.3331, 7.332, 7.3323, 7.3314, 7.3336, 7.3325, 7.3346, 7.3335, 7.3327, 7.3316, 7.3276, 7.3265, 7.3253, 7.3241, 7.3234, 7.3222, 7.3214, 7.3208, 7.3203, 7.3191, 7.318, 7.3172, 7.3185, 7.3177, 7.317, 7.3189, 7.318, 7.3172, 7.3162, 7.3152, 7.3143, 7.3131, 7.3119, 7.3107, 7.3095, 7.3086, 7.3074, 7.3062, 7.3087, 7.3108, 7.3108, 7.3099, 7.3087, 7.3077, 7.3073, 7.3065, 7.3054, 7.3052, 7.3053, 7.3042, 7.303, 7.3019, 7.3008, 7.304, 7.3038, 7.3091, 7.3082, 7.307, 7.3062, 7.3078, 7.3066, 7.3057, 7.312, 7.3195, 7.3183, 7.3202, 7.3192, 7.3185, 7.3174, 7.3165, 7.3217, 7.3206, 7.3195, 7.3254, 7.3243, 7.3263, 7.3285, 7.3277, 7.3265, 7.3257, 7.3279, 7.3269, 7.3258, 7.3246, 7.3351, 7.334, 7.3331, 7.3325, 7.3346, 7.3337, 7.3328, 7.3372, 7.3361, 7.3381, 7.337, 7.3433, 7.3422, 7.3414, 7.3402, 7.3432, 7.3452, 7.344, 7.3464, 7.3455, 7.3481, 7.3475, 7.3464, 7.3487, 7.3476, 7.3468, 7.3465, 7.3456, 7.3447, 7.3439, 7.3429, 7.3454, 7.3444, 7.3434, 7.3423, 7.3387, 7.3376, 7.3368, 7.336, 7.3349, 7.3337, 7.3333, 7.3327, 7.3316, 7.3434, 7.3422, 7.3414, 7.341, 7.3399, 7.3392, 7.338, 7.337, 7.3358, 7.3349, 7.3338, 7.334, 7.3334, 7.3384, 7.3376, 7.3365, 7.3354, 7.3344, 7.3334, 7.3329, 7.332, 7.3331, 7.3351, 7.334, 7.333, 7.3326, 7.3317, 7.3308, 7.3299, 7.3288, 7.3279, 7.3268, 7.326, 7.3256, 7.3307, 7.3302, 7.3292, 7.3317, 7.3307, 7.33, 7.3295, 7.3289, 7.3278, 7.347, 7.349, 7.3485, 7.3475, 7.3463, 7.3482, 7.3473, 7.3462, 7.3453, 7.3444, 7.3476, 7.347, 7.3459, 7.3448, 7.3439, 7.3428, 7.3416, 7.3434, 7.3427, 7.3415, 7.3406, 7.3395, 7.3412, 7.3414, 7.3441, 7.3432, 7.3422, 7.3411, 7.3401, 7.3394, 7.3386, 7.3375, 7.3394, 7.3411, 7.3404, 7.3378, 7.3376, 7.3369, 7.3522, 7.3512, 7.3509, 7.3502, 7.3521, 7.354, 7.3529, 7.352, 7.3539, 7.3557, 7.3549, 7.3515, 7.3709, 7.3734, 7.3727, 7.3717, 7.3737, 7.3755, 7.3748, 7.3745, 7.3763, 7.3786, 7.378, 7.3799, 7.3788, 7.3782, 7.3775, 7.3793, 7.3782, 7.3776, 7.377, 7.3801, 7.3794, 7.3785, 7.3777, 7.3769, 7.3758, 7.3751, 7.3742, 7.3731, 7.3724, 7.3716, 7.3705, 7.3746, 7.3767, 7.3757, 7.3777, 7.3797, 7.379, 7.3837, 7.3854, 7.3845, 7.3839, 7.3829, 7.3818, 7.3808, 7.3798, 7.3817, 7.3807, 7.3797, 7.3786, 7.3815, 7.3833, 7.3852, 7.3842, 7.3832, 7.3823, 7.3845, 7.3834, 7.38, 7.3793, 7.3827, 7.3849, 7.3867, 7.3863, 7.3881, 7.3873, 7.3865, 7.3865, 7.3857, 7.3847, 7.3837, 7.3827, 7.3818, 7.3824, 7.3791, 7.3811, 7.3829, 7.3821, 7.3811, 7.3803, 7.3792, 7.3782, 7.3772, 7.3761, 7.3751, 7.3746, 7.3738, 7.3754, 7.3751, 7.3741, 7.373, 7.3722, 7.3767, 7.377, 7.3765, 7.3784, 7.3787, 7.383, 7.3848, 7.384, 7.383, 7.3846, 7.3837, 7.3828, 7.3829, 7.3819, 7.3837, 7.3853, 7.3855, 7.3873, 7.3942, 7.3932, 7.3921, 7.391, 7.3902, 7.3893, 7.3885, 7.3959, 7.3924, 7.3942, 7.3932, 7.3948, 7.3964, 7.3984, 7.4002, 7.3992, 7.3958, 7.3976, 7.3994, 7.3987, 7.4004, 7.4048, 7.4071, 7.4087, 7.4104, 7.4093, 7.4083, 7.4104, 7.4121, 7.4112, 7.4127, 7.4142, 7.4132, 7.4148, 7.419, 7.4182, 7.4198, 7.419, 7.4182, 7.4198, 7.4216, 7.4208, 7.4198, 7.4188, 7.418, 7.417, 7.4162, 7.4152, 7.4145, 7.4166, 7.4156, 7.4146, 7.4162, 7.4206, 7.4209, 7.4205, 7.4194, 7.4203, 7.4237, 7.4241, 7.4235, 7.4225, 7.4242, 7.4232, 7.4223, 7.4216, 7.4206, 7.4201, 7.4191, 7.4184, 7.4177, 7.4172, 7.4167, 7.4186, 7.418, 7.4171, 7.4164, 7.416, 7.4152, 7.417, 7.4185, 7.4175, 7.4192, 7.4207, 7.42, 7.4216, 7.4206, 7.4196, 7.4186, 7.4203, 7.4195, 7.419, 7.4187, 7.4216, 7.4206, 7.4197, 7.4189, 7.4184, 7.4177, 7.4167, 7.4158, 7.4148, 7.4138, 7.4161, 7.4155, 7.4172, 7.4164, 7.4156, 7.4173, 7.419, 7.4207, 7.4223, 7.4214, 7.4203, 7.421, 7.4202, 7.4194, 7.4186, 7.4202, 7.4192, 7.4182, 7.4173, 7.4192, 7.4194, 7.4186, 7.4178, 7.4196, 7.4188, 7.4181, 7.4214, 7.4245, 7.4261, 7.4277, 7.4246, 7.4214, 7.421, 7.4225, 7.424, 7.423, 7.4221, 7.4212, 7.4202, 7.4222, 7.424, 7.423, 7.4246, 7.424, 7.4256, 7.4248, 7.4241, 7.4233, 7.4223, 7.4216, 7.4209, 7.4201, 7.4234, 7.4227, 7.4281, 7.4308, 7.4301, 7.4302, 7.4276, 7.4268, 7.4288, 7.4357, 7.4349, 7.434, 7.4356, 7.4371, 7.4409, 7.4401, 7.4416, 7.4409, 7.4434, 7.4429, 7.442, 7.4458, 7.4451, 7.4492, 7.4483, 7.4452, 7.4444, 7.4435, 7.445, 7.4466, 7.4482, 7.4475, 7.4492, 7.4483, 7.4473, 7.4466, 7.4459, 7.4473, 7.4488, 7.4479, 7.4469, 7.4485, 7.4476, 7.4466, 7.446, 7.4451, 7.4442, 7.4432, 7.4424, 7.4414, 7.4408, 7.4399, 7.4392, 7.4382, 7.4372, 7.4388, 7.4404, 7.4421, 7.4411, 7.4429, 7.4421, 7.4414, 7.4432, 7.4425, 7.4422, 7.4416, 7.4406, 7.4397, 7.4388, 7.4379, 7.437, 7.4386, 7.4404, 7.442, 7.441, 7.4404, 7.4394, 7.4385, 7.4376, 7.4367, 7.4382, 7.4397, 7.439, 7.436, 7.4354, 7.4354, 7.4363, 7.4378, 7.4372, 7.4365, 7.4383, 7.4374, 7.4373, 7.4366, 7.438, 7.4372, 7.4364, 7.4357, 7.4391, 7.4382, 7.4378, 7.4385, 7.4401, 7.4392, 7.4406, 7.4401, 7.4416, 7.4407, 7.4402, 7.4372, 7.4364, 7.4354, 7.4345, 7.436, 7.4352, 7.4367, 7.4357, 7.4351, 7.4366, 7.4356, 7.437, 7.434, 7.4354, 7.4348, 7.4342, 7.4359, 7.4351, 7.4343, 7.434, 7.4337, 7.433, 7.4324, 7.4337, 7.4331, 7.4326, 7.4318, 7.431, 7.4325, 7.4316, 7.4306, 7.4299, 7.4292, 7.4286, 7.4278, 7.4269, 7.4302, 7.4293, 7.4286, 7.4301, 7.4315, 7.4307, 7.4298, 7.4314, 7.433, 7.4302, 7.4317, 7.4308, 7.4302, 7.4317, 7.4309, 7.4304, 7.4296, 7.4287, 7.4279, 7.4271, 7.4262, 7.4254, 7.4247, 7.426, 7.4252, 7.4244, 7.4238, 7.4233, 7.4224, 7.4242, 7.4257, 7.4249, 7.4241, 7.4256, 7.4248, 7.4241, 7.4232, 7.4225, 7.424, 7.4232, 7.4249, 7.4265, 7.4257, 7.4249, 7.4263, 7.4256, 7.4248, 7.424, 7.4234, 7.4228, 7.4222, 7.4216, 7.4208, 7.4202, 7.4172, 7.4169, 7.416, 7.4152, 7.4144, 7.4137, 7.4161, 7.4153, 7.4145, 7.4139, 7.4156, 7.4163, 7.4154, 7.4145, 7.4162, 7.4155, 7.4146, 7.4161, 7.4175, 7.4168, 7.4183, 7.4195, 7.421, 7.4202, 7.4194, 7.4211, 7.4225, 7.4218, 7.4234, 7.4235, 7.4228, 7.4242, 7.4256, 7.427, 7.4261, 7.4255, 7.4273, 7.4288, 7.4302, 7.4293, 7.4287, 7.4323, 7.4315, 7.4307, 7.4342, 7.4334, 7.4348, 7.434, 7.4331, 7.4323, 7.4315, 7.431, 7.4303, 7.4296, 7.4287, 7.4302, 7.4317, 7.4309, 7.43, 7.4272, 7.4264, 7.4277, 7.4269, 7.4282, 7.4274, 7.4268, 7.4262, 7.4276, 7.429, 7.4281, 7.4272, 7.4287, 7.4282, 7.4295, 7.4307, 7.4347, 7.4349, 7.4363, 7.4357, 7.4349, 7.434, 7.4334, 7.4326, 7.4321, 7.4314, 7.4307, 7.4321, 7.4314, 7.4309, 7.4324, 7.4317, 7.4309, 7.4329, 7.4321, 7.4312, 7.4306, 7.4427, 7.4419, 7.441, 7.4402, 7.4416, 7.441, 7.4402, 7.4396, 7.4393, 7.4404, 7.4398, 7.4389, 7.4381, 7.4373, 7.4366, 7.4358, 7.438, 7.4374, 7.4367, 7.4358, 7.4372, 7.4384, 7.4379, 7.4372, 7.4367, 7.436, 7.4355, 7.4397, 7.439, 7.4382, 7.4374, 7.4346, 7.4337, 7.4354, 7.4372, 7.4364, 7.4356, 7.4352, 7.4347, 7.4343, 7.4358, 7.4372, 7.4365, 7.4358, 7.4349, 7.4342, 7.4336, 7.4328, 7.4323, 7.4314, 7.4309, 7.4302, 7.4295, 7.4286, 7.43, 7.43, 7.4272, 7.4264, 7.4256, 7.425, 7.427, 7.4285, 7.4276, 7.4268, 7.4314, 7.4344, 7.4336, 7.4328, 7.432, 7.4357, 7.4349, 7.4341, 7.4352, 7.4396, 7.441, 7.4425, 7.4418, 7.441, 7.4404, 7.4395, 7.4419, 7.4414, 7.4427, 7.4431, 7.4446, 7.4463, 7.4477, 7.4469, 7.446, 7.4482, 7.4513, 7.4485, 7.4478, 7.4495, 7.4488, 7.4481, 7.4473, 7.4467, 7.4459, 7.4451, 7.447, 7.4462, 7.4455, 7.4448, 7.4443, 7.4436, 7.4428, 7.442, 7.4432, 7.4426, 7.4419, 7.4417, 7.4416, 7.441, 7.4402, 7.4395, 7.4407, 7.4444, 7.444, 7.4432, 7.4424, 7.442, 7.4411, 7.4427, 7.4423, 7.4438, 7.4432, 7.4425, 7.4419, 7.4411, 7.4424, 7.4418, 7.4484, 7.4498, 7.4511, 7.4503, 7.45, 7.4493, 7.4485, 7.4499, 7.4491, 7.4504, 7.4495, 7.4489, 7.4481, 7.4494, 7.4488, 7.4481, 7.4473, 7.4466, 7.4458, 7.445, 7.4424, 7.4438, 7.4433, 7.4427, 7.442, 7.4433, 7.4427, 7.4423, 7.4416, 7.4409, 7.4403, 7.4395, 7.4389, 7.4381, 7.4373, 7.4388, 7.4381, 7.4376, 7.437, 7.4362, 7.4355, 7.4347, 7.4339, 7.4332, 7.4324, 7.4302, 7.4294, 7.4307, 7.4321, 7.4314, 7.4311, 7.4327, 7.432, 7.4334, 7.4327, 7.4325, 7.4339, 7.4333, 7.4326, 7.4319, 7.4333, 7.4346, 7.4339, 7.4333, 7.4327, 7.4326, 7.4319, 7.4312, 7.4286, 7.428, 7.4273, 7.4269, 7.4261, 7.4274, 7.4266, 7.4258, 7.425, 7.4243, 7.4235, 7.4228, 7.4221, 7.4215, 7.4207, 7.4199, 7.4193, 7.4205, 7.4216, 7.4208, 7.4201, 7.4214, 7.4208, 7.4222, 7.4216, 7.4211, 7.4204, 7.4196, 7.4189, 7.4186, 7.4181, 7.4176, 7.4168, 7.4165, 7.4158, 7.415, 7.4162, 7.4154, 7.4148, 7.414, 7.4132, 7.4144, 7.4157, 7.4169, 7.4163, 7.4176, 7.4188, 7.4183, 7.4177, 7.4169, 7.4163, 7.4156, 7.4149, 7.416, 7.4153, 7.4166, 7.416, 7.4136, 7.4129, 7.4142, 7.4155, 7.4154, 7.4147, 7.4139, 7.4152, 7.4144, 7.4136, 7.4131, 7.4124, 7.4117, 7.4131, 7.4124, 7.4136, 7.4139, 7.4131, 7.4125, 7.4118, 7.4131, 7.4142, 7.4136, 7.4132, 7.4143, 7.4141, 7.4135, 7.413, 7.4144, 7.4165, 7.418, 7.4172, 7.4168, 7.4169, 7.4171, 7.4164, 7.4158, 7.4169, 7.4161, 7.4161, 7.4175, 7.4168, 7.4183, 7.4177, 7.417, 7.4183, 7.4178, 7.417, 7.4181, 7.4174, 7.4169, 7.4163, 7.4156, 7.415, 7.4163, 7.4176, 7.4169, 7.4162, 7.4158, 7.428, 7.4273, 7.4286, 7.428, 7.4293, 7.4286, 7.4282, 7.4274, 7.4266, 7.4261, 7.4253, 7.4277, 7.4269, 7.4263, 7.4255, 7.4331, 7.4325, 7.4319, 7.4312, 7.4306, 7.4282, 7.4295, 7.4289, 7.4283, 7.4276, 7.4268, 7.4279, 7.4293, 7.4286, 7.4278, 7.429, 7.4302, 7.4295, 7.4288, 7.4303, 7.4297, 7.4289, 7.4282, 7.4278, 7.4272, 7.4269, 7.4264, 7.4324, 7.4352, 7.4387, 7.444, 7.4417, 7.4411, 7.4425, 7.4417, 7.4413, 7.4406, 7.4401, 7.4394, 7.4406, 7.4399, 7.4412, 7.4424, 7.442, 7.4418, 7.4421, 7.4413, 7.441, 7.4405, 7.4417, 7.4451, 7.4445, 7.444, 7.448, 7.4491, 7.4485, 7.4479, 7.4473, 7.4487, 7.4485, 7.4481, 7.4482, 7.4478, 7.4472, 7.4465, 7.4488, 7.449, 7.4483, 7.448, 7.4472, 7.4465, 7.4504, 7.4555, 7.4548, 7.4541, 7.4553, 7.4546, 7.454, 7.4618, 7.4631, 7.4625, 7.4617, 7.461, 7.4607, 7.46, 7.4614, 7.4608, 7.4605, 7.4581, 7.4574, 7.4568, 7.4561, 7.4556, 7.455, 7.4545, 7.454, 7.4533, 7.4546, 7.4557, 7.4551, 7.4588, 7.4582, 7.4577, 7.4572, 7.4564, 7.4559, 7.4571, 7.4566, 7.4578, 7.4571, 7.4564, 7.4576, 7.4569, 7.4573, 7.4566, 7.456, 7.4572, 7.4584, 7.4577, 7.4589, 7.4582, 7.4574, 7.4567, 7.4599, 7.4619, 7.4612, 7.4607, 7.46, 7.4612, 7.4607, 7.4585, 7.4578, 7.4574, 7.4567, 7.456, 7.4573, 7.4569, 7.4563, 7.4566, 7.4558, 7.457, 7.4582, 7.4579, 7.4573, 7.4567, 7.4562, 7.4577, 7.457, 7.4564, 7.4557, 7.455, 7.4543, 7.4538, 7.4533, 7.4526, 7.4541, 7.4534, 7.4528, 7.452, 7.4518, 7.4513, 7.4507, 7.45, 7.4493, 7.4486, 7.4482, 7.4477, 7.4488, 7.4481, 7.4478, 7.4474, 7.4485, 7.4497, 7.449, 7.4485, 7.4479, 7.449, 7.4485, 7.4478, 7.449, 7.4484, 7.4532, 7.4543, 7.452, 7.4532, 7.4527, 7.452, 7.455, 7.4543, 7.4538, 7.4557, 7.4551, 7.4562, 7.4555, 7.455, 7.4544, 7.4542, 7.4559, 7.4553, 7.4547, 7.4561, 7.4574, 7.4577, 7.4573, 7.4567, 7.4561, 7.4574, 7.4568, 7.4562, 7.4558, 7.4552, 7.4563, 7.4556, 7.4569, 7.4592, 7.4604, 7.4613, 7.4625, 7.4618, 7.4623, 7.4618, 7.4613, 7.4638, 7.4633, 7.4626, 7.4619, 7.4614, 7.4607, 7.4587, 7.4669, 7.468, 7.4692, 7.4703, 7.4696, 7.469, 7.4685, 7.468, 7.4692, 7.4688, 7.4681, 7.4679, 7.4674, 7.4688, 7.4698, 7.4777, 7.4787, 7.478, 7.4775, 7.4791, 7.4784, 7.4778, 7.4789, 7.4782, 7.4777, 7.479, 7.4783, 7.4776, 7.477, 7.4764, 7.4757, 7.4779, 7.478, 7.4774, 7.4767, 7.4764, 7.4742, 7.4735, 7.4728, 7.4721, 7.4714, 7.4709, 7.4703, 7.4697, 7.469, 7.4683, 7.4678, 7.4673, 7.468, 7.469, 7.4683, 7.4696, 7.4691, 7.4701, 7.4711, 7.4707, 7.4703, 7.4698, 7.4694, 7.4688, 7.4681, 7.4674, 7.4667, 7.4662, 7.4657, 7.4669, 7.4663, 7.4658, 7.4651, 7.4647, 7.4641, 7.4634, 7.4627, 7.462, 7.4613, 7.4606, 7.4599, 7.4626, 7.4604, 7.4601, 7.4596, 7.4591, 7.4584, 7.4577, 7.4572, 7.4589, 7.4582, 7.4585, 7.4578, 7.4589, 7.46, 7.4594, 7.4587, 7.458, 7.4573, 7.4584, 7.4579, 7.4572, 7.4565, 7.4559, 7.4564, 7.4557, 7.4552, 7.4545, 7.4538, 7.4551, 7.455, 7.4544, 7.4556, 7.455, 7.456, 7.4555, 7.4552, 7.4564, 7.4557, 7.4552, 7.4547, 7.4615, 7.461, 7.4622, 7.4686, 7.4697, 7.4692, 7.4771, 7.4766, 7.4761, 7.477, 7.4763, 7.4756, 7.4767, 7.4761, 7.4757, 7.4751, 7.475, 7.4746, 7.474, 7.4751, 7.4751, 7.4744, 7.4738, 7.4748, 7.4751, 7.4748, 7.4742, 7.4737, 7.4719, 7.4699, 7.4696, 7.4691, 7.4674, 7.4688, 7.4682, 7.4676, 7.4659, 7.4654, 7.4683, 7.4677, 7.4672, 7.4668, 7.4662, 7.4673, 7.4666, 7.466, 7.4654, 7.4649, 7.4644, 7.4655, 7.4665, 7.4661, 7.4655, 7.4649, 7.4643, 7.4673, 7.4682, 7.4693, 7.4687, 7.4682, 7.4675, 7.467, 7.4663, 7.4668, 7.4678, 7.4674, 7.4685, 7.4681, 7.4676, 7.4675, 7.4693, 7.4693, 7.4706, 7.4702, 7.4712, 7.4793, 7.4787, 7.4781, 7.4797, 7.4855, 7.4833, 7.4826, 7.4836, 7.4886, 7.488, 7.4883, 7.4878, 7.4874, 7.4893, 7.4887, 7.4897, 7.4908, 7.4919, 7.4912, 7.4922, 7.4922, 7.4916, 7.4912, 7.4909, 7.4905, 7.49, 7.4894, 7.4905, 7.4899, 7.4894, 7.4906, 7.4934, 7.4928, 7.4924, 7.4935, 7.4929, 7.4922, 7.4918, 7.4931, 7.4926, 7.4936, 7.493, 7.4924, 7.4937, 7.4931, 7.4925, 7.492, 7.4914, 7.491, 7.4904, 7.4899, 7.4878, 7.4874, 7.4869, 7.4868, 7.4877, 7.487, 7.4881, 7.4892, 7.4901, 7.4895, 7.489, 7.4885, 7.4864, 7.4858, 7.4852, 7.4845, 7.4855, 7.486, 7.4855, 7.4852, 7.4864, 7.4875, 7.4884, 7.4878, 7.4911, 7.492, 7.4913, 7.4924, 7.4934, 7.4927, 7.492, 7.4913, 7.493, 7.4924, 7.4917, 7.491, 7.4905, 7.4898, 7.4908, 7.4968, 7.4979, 7.4984, 7.4978, 7.4987, 7.4998, 7.5009, 7.5004, 7.4998, 7.4992, 7.4986, 7.4979, 7.4972, 7.4965, 7.496, 7.4954, 7.4948, 7.4942, 7.4935, 7.4944, 7.4938, 7.4949, 7.4944, 7.4943, 7.4937, 7.4931, 7.4925, 7.4928, 7.4921, 7.4914, 7.4908, 7.4919, 7.4913, 7.4908, 7.4918, 7.4912, 7.4921, 7.4914, 7.4909, 7.4921, 7.4915, 7.491, 7.4903, 7.4896, 7.489, 7.4884, 7.4877, 7.487, 7.4864, 7.4859, 7.4854, 7.4862, 7.4857, 7.4869, 7.4862, 7.4856, 7.4862, 7.4872, 7.4866, 7.4876, 7.487, 7.4864, 7.4859, 7.4855, 7.4865, 7.4859, 7.4838, 7.4847, 7.4843, 7.4837, 7.4831, 7.4843, 7.4837, 7.4848, 7.4857, 7.4851, 7.4852, 7.4852, 7.4847, 7.4879, 7.4873, 7.4883, 7.4883, 7.4894, 7.4888, 7.4885, 7.4889, 7.4882, 7.4875, 7.4871, 7.4865, 7.4859, 7.4853, 7.4849, 7.4859, 7.4853, 7.4847, 7.4857, 7.4868, 7.4878, 7.4871, 7.4865, 7.4858, 7.4853, 7.4848, 7.4858, 7.4853, 7.4863, 7.4871, 7.4865, 7.486, 7.4856, 7.485, 7.486, 7.487, 7.4865, 7.4861, 7.4855, 7.4849, 7.4843, 7.484, 7.4834, 7.4828, 7.4822, 7.4821, 7.4818, 7.4813, 7.4808, 7.482, 7.4831, 7.4825, 7.482, 7.4821, 7.4818, 7.4815, 7.4812, 7.4806, 7.48, 7.4797, 7.4796, 7.4789, 7.4786, 7.478, 7.4775, 7.4768, 7.4811, 7.4805, 7.4805, 7.48, 7.4825, 7.4834, 7.4829, 7.4825, 7.4805, 7.4815, 7.4809, 7.4819, 7.4813, 7.4807, 7.4802, 7.4796, 7.479, 7.48, 7.4794, 7.4804, 7.48, 7.4795, 7.4836, 7.483, 7.4862, 7.4858, 7.4868, 7.4863, 7.4859, 7.4854, 7.4849, 7.4846, 7.484, 7.4834, 7.4828, 7.4823, 7.4803, 7.4797, 7.4793, 7.4803, 7.4797, 7.4795, 7.4819, 7.4814, 7.4808, 7.4818, 7.4812, 7.4808, 7.4818, 7.4813, 7.4824, 7.482, 7.4837, 7.4822, 7.4816, 7.4825, 7.4819, 7.4813, 7.4807, 7.4801, 7.4809, 7.4818, 7.4814, 7.4823, 7.4803, 7.4798, 7.4795, 7.4792, 7.4773, 7.4787, 7.4796, 7.4791, 7.4785, 7.4782, 7.4776, 7.4772, 7.4766, 7.476, 7.4754, 7.475, 7.4745, 7.474, 7.4734, 7.4728, 7.4723, 7.4724, 7.4734, 7.4729, 7.474, 7.4734, 7.4805, 7.4799, 7.4793, 7.4789, 7.4785, 7.478, 7.4774, 7.4785, 7.4781, 7.4777, 7.4771, 7.4766, 7.478, 7.4798, 7.4792, 7.4787, 7.4782, 7.478, 7.4793, 7.4787, 7.4781, 7.4775, 7.4769, 7.4791, 7.4811, 7.4808, 7.4802, 7.4796, 7.4799, 7.4795, 7.4831, 7.4825, 7.4819, 7.4814, 7.4811, 7.4806, 7.48, 7.4809, 7.4818, 7.4827, 7.4823, 7.4817, 7.4814, 7.4811, 7.482, 7.4814, 7.4811, 7.4806, 7.48, 7.4794, 7.4788, 7.4782, 7.4777, 7.4773, 7.4767, 7.4761, 7.4755, 7.4764, 7.476, 7.4754, 7.4749, 7.4758, 7.4768, 7.4764, 7.4773, 7.4767, 7.4775, 7.477, 7.4764, 7.476, 7.4755, 7.4749, 7.4743, 7.4737, 7.4742, 7.4737, 7.4733, 7.4727, 7.4721, 7.4731, 7.474, 7.4734, 7.4758, 7.4768, 7.4778, 7.4772, 7.4783, 7.4779, 7.4788, 7.4782, 7.4791, 7.4785, 7.478, 7.4774, 7.4768, 7.4762, 7.4758, 7.4753, 7.4749, 7.4759, 7.4754, 7.4766, 7.4777, 7.4772, 7.4793, 7.4803, 7.4812, 7.4807, 7.4803, 7.4802, 7.4797, 7.4822, 7.4833, 7.4814, 7.4809, 7.4805, 7.48, 7.4781, 7.4793, 7.4809, 7.4806, 7.4801, 7.4795, 7.4812, 7.4807, 7.4817, 7.4813, 7.4816, 7.481, 7.4819, 7.4813, 7.4809, 7.4803, 7.4799, 7.4794, 7.4775, 7.4769, 7.4754, 7.4752, 7.476, 7.4754, 7.4748, 7.4757, 7.4751, 7.476, 7.4756, 7.475, 7.4744, 7.4747, 7.4741, 7.475, 7.4744, 7.4726, 7.4708, 7.4705, 7.47, 7.4696, 7.4705, 7.4699, 7.4693, 7.4687, 7.4671, 7.4666, 7.466, 7.467, 7.4664, 7.4658, 7.4653, 7.4662, 7.4656, 7.4654, 7.4652, 7.4661, 7.4665, 7.4674, 7.4668, 7.4663, 7.4659, 7.4654, 7.4663, 7.4658, 7.4654, 7.4648, 7.4642, 7.4637, 7.4634, 7.4628, 7.4623, 7.4617, 7.4612, 7.461, 7.461, 7.4605, 7.4599, 7.4601, 7.4596, 7.4594, 7.4588, 7.4588, 7.4582, 7.4576, 7.4572, 7.4569, 7.4566, 7.456, 7.4571, 7.458, 7.4577, 7.4573, 7.4569, 7.4565, 7.4563, 7.4576, 7.4587, 7.4583, 7.4579, 7.4575, 7.4571, 7.4567, 7.4565, 7.4577, 7.4589, 7.4585, 7.4579, 7.4575, 7.4572, 7.4581, 7.4578, 7.4576, 7.4571, 7.4565, 7.4561, 7.4557, 7.4554, 7.4551, 7.4548, 7.4545, 7.4554, 7.455, 7.4548, 7.4544, 7.4541, 7.455, 7.4559, 7.4555, 7.4565, 7.4575, 7.4585, 7.4582, 7.4577, 7.4572, 7.4572, 7.4633, 7.4627, 7.4635, 7.463, 7.4628, 7.4622, 7.4616, 7.4624, 7.4619, 7.4613, 7.4608, 7.4603, 7.4681, 7.4676, 7.4685, 7.468, 7.4675, 7.4671, 7.4666, 7.4662, 7.4658, 7.4675, 7.467, 7.4665, 7.4662, 7.4657, 7.4655, 7.4651, 7.4647, 7.4642, 7.4638, 7.4634, 7.4629, 7.4624, 7.4628, 7.4623, 7.4618, 7.4614, 7.461, 7.4606, 7.46, 7.4595, 7.4604, 7.4601, 7.461, 7.4619, 7.4615, 7.4612, 7.4606, 7.4601, 7.4595, 7.4604, 7.4615, 7.4616, 7.4625, 7.4662, 7.467, 7.4665, 7.4661, 7.4643, 7.4638, 7.4662, 7.4657, 7.4652, 7.4675, 7.4672, 7.4669, 7.4678, 7.4688, 7.4688, 7.4696, 7.4692, 7.4686, 7.4681, 7.469, 7.4686, 7.4684, 7.4678, 7.4672, 7.4668, 7.4664, 7.4661, 7.4658, 7.4667, 7.4649, 7.4643, 7.4652, 7.4647, 7.4642, 7.464, 7.4635, 7.4631, 7.464, 7.4636, 7.4633, 7.4629, 7.4637, 7.4632, 7.464, 7.4649, 7.4645, 7.4654, 7.4638, 7.4662, 7.4671, 7.4666, 7.4674, 7.467, 7.4665, 7.4661, 7.467, 7.4665, 7.466, 7.4645, 7.4641, 7.4651, 7.4646, 7.4642, 7.4641, 7.4636, 7.4645, 7.464, 7.4635, 7.4632, 7.4626, 7.4635, 7.463, 7.4625, 7.462, 7.4631, 7.4627, 7.4622, 7.4618, 7.46, 7.4596, 7.4591, 7.4587, 7.4582, 7.4565, 7.4574, 7.457, 7.4579, 7.4587, 7.4599, 7.4595, 7.459, 7.4599, 7.4611, 7.4606, 7.4602, 7.4597, 7.4593, 7.4601, 7.4596, 7.4592, 7.46, 7.4609, 7.4625, 7.4622, 7.4619, 7.4628, 7.4637, 7.4633, 7.463, 7.4625, 7.4621, 7.4617, 7.4613, 7.4609, 7.4604, 7.4614, 7.4611, 7.4606, 7.4617, 7.4604, 7.4599, 7.4594, 7.4589, 7.4584, 7.4578, 7.4574, 7.4569, 7.4564, 7.4559, 7.4569, 7.457, 7.4595, 7.4591, 7.4586, 7.4582, 7.4633, 7.4628, 7.4623, 7.4619, 7.4614, 7.4622, 7.4631, 7.4632, 7.4627, 7.4622, 7.4619, 7.4614, 7.4609, 7.4612, 7.4611, 7.4606, 7.46, 7.4597, 7.4592, 7.4588, 7.4584, 7.4581, 7.4576, 7.4571, 7.4579, 7.4576, 7.4573, 7.4581, 7.4576, 7.4571, 7.458, 7.4576, 7.4571, 7.4566, 7.4561, 7.4565, 7.456, 7.4558, 7.4566, 7.4589, 7.4584, 7.4579, 7.4574, 7.4584, 7.4567, 7.4575, 7.4571, 7.4566, 7.4562, 7.456, 7.4556, 7.4552, 7.4548, 7.4556, 7.4551, 7.4546, 7.4554, 7.4537, 7.4533, 7.4529, 7.4529, 7.4537, 7.4547, 7.4542, 7.4549, 7.4545, 7.454, 7.4535, 7.4531, 7.454, 7.4535, 7.4532, 7.4526, 7.4523, 7.4519, 7.4514, 7.4523, 7.4533, 7.4529, 7.4524, 7.4519, 7.4516, 7.4531, 7.454, 7.4536, 7.4531, 7.454, 7.4536, 7.4546, 7.4544, 7.4539, 7.4534, 7.4532, 7.453, 7.4525, 7.452, 7.4516, 7.4512, 7.4562, 7.4559, 7.4554, 7.455, 7.4546, 7.4529, 7.4537, 7.4534, 7.4531, 7.4527, 7.4537, 7.4545, 7.454, 7.4535, 7.4518, 7.4514, 7.4522, 7.4517, 7.4525, 7.4521, 7.4531, 7.4527, 7.4523, 7.4519, 7.4515, 7.451, 7.4507, 7.4503, 7.45, 7.4496, 7.4505, 7.45, 7.4495, 7.4492, 7.4487, 7.4483, 7.448, 7.4475, 7.447, 7.4472, 7.4468, 7.4463, 7.4458, 7.4454, 7.4462, 7.4446, 7.4441, 7.4437, 7.4432, 7.4441, 7.4424, 7.4421, 7.442, 7.4419, 7.4414, 7.4435, 7.443, 7.4426, 7.4435, 7.4444, 7.4439, 7.4434, 7.4429, 7.4427, 7.4424, 7.4419, 7.4415, 7.4418, 7.4427, 7.4423, 7.4421, 7.4416, 7.4414, 7.4409, 7.4407, 7.4402, 7.4399, 7.4394, 7.4389, 7.4397, 7.4392, 7.4401, 7.4398, 7.4394, 7.439, 7.4398, 7.4395, 7.439, 7.4387, 7.4383, 7.4367, 7.4362, 7.4364, 7.4359, 7.4354, 7.4349, 7.4345, 7.4341, 7.4337, 7.4344, 7.434, 7.4336, 7.4332, 7.4327, 7.4323, 7.4331, 7.4366, 7.4362, 7.4358, 7.4358, 7.4354, 7.435, 7.4362, 7.4358, 7.4354, 7.4349, 7.4345, 7.4342, 7.434, 7.4337, 7.4332, 7.4328, 7.4323, 7.433, 7.4327, 7.4322, 7.433, 7.4317, 7.4312, 7.4321, 7.4316, 7.4311, 7.4319, 7.4314, 7.4309, 7.4304, 7.43, 7.4318, 7.4326, 7.4361, 7.4357, 7.4364, 7.4374, 7.4369, 7.4365, 7.436, 7.4412, 7.4395, 7.4379, 7.4386, 7.4381, 7.4376, 7.4371, 7.4366, 7.4364, 7.4361, 7.4356, 7.4364, 7.4386, 7.4382, 7.4379, 7.4376, 7.4372, 7.4368, 7.4379, 7.4374, 7.437, 7.4377, 7.4403, 7.4398, 7.4424, 7.4419, 7.4416, 7.4411, 7.4419, 7.4414, 7.441, 7.4407, 7.4404, 7.4411, 7.4433, 7.4429, 7.4426, 7.4433, 7.443, 7.4426, 7.4423, 7.4418, 7.4427, 7.4424, 7.442, 7.4416, 7.4411, 7.4407, 7.4404, 7.44, 7.4409, 7.4404, 7.4407, 7.4402, 7.44, 7.4396, 7.4392, 7.4401, 7.4397, 7.4392, 7.4387, 7.4422, 7.4419, 7.4416, 7.4425, 7.4421, 7.4416, 7.4429, 7.4437, 7.4424, 7.4419, 7.4415, 7.44, 7.4396, 7.4392, 7.4388, 7.4383, 7.441, 7.4418, 7.4414, 7.4409, 7.4416, 7.4426, 7.4428, 7.444, 7.4448, 7.4444, 7.4439, 7.4434, 7.443, 7.4425, 7.442, 7.4428, 7.4436, 7.4433, 7.4428, 7.4423, 7.4418, 7.4413, 7.4409, 7.4405, 7.4401, 7.4397, 7.4394, 7.4393, 7.44, 7.4395, 7.439, 7.4387, 7.4384, 7.4381, 7.439, 7.4398, 7.4398, 7.4395, 7.4401, 7.4397, 7.4405, 7.441, 7.4405, 7.44, 7.4397, 7.4392, 7.4388, 7.4384, 7.4392, 7.4388, 7.4383, 7.4379, 7.4374, 7.4369, 7.4365, 7.436, 7.4355, 7.4363, 7.4371, 7.4366, 7.4373, 7.4368, 7.4366, 7.4365, 7.436, 7.4369, 7.4367, 7.4363, 7.436, 7.4367, 7.4363, 7.4362, 7.437, 7.4365, 7.4373, 7.4369, 7.4377, 7.4372, 7.4367, 7.4366, 7.4361, 7.4371, 7.4379, 7.4387, 7.4383, 7.4368, 7.4363, 7.4358, 7.4353, 7.4364, 7.4348, 7.4345, 7.4342, 7.4337, 7.4339, 7.4334, 7.4342, 7.4337, 7.4332, 7.4328, 7.4324, 7.4319, 7.4326, 7.4322, 7.433, 7.4338, 7.4334, 7.4368, 7.4376, 7.4372, 7.4367, 7.4363, 7.4359, 7.4367, 7.4375, 7.437, 7.4378, 7.4373, 7.4368, 7.4365, 7.4361, 7.4369, 7.4365, 7.4361, 7.437, 7.4366, 7.4363, 7.4373, 7.4376, 7.4388, 7.4398, 7.4406, 7.4401, 7.4409, 7.4405, 7.44, 7.4407, 7.4403, 7.4399, 7.4395, 7.4397, 7.4393, 7.4389, 7.4396, 7.4394, 7.439, 7.439, 7.4385, 7.438, 7.4375, 7.4395, 7.4393, 7.44, 7.4408, 7.4404, 7.4402, 7.4412, 7.4417, 7.4414, 7.4428, 7.4416, 7.4412, 7.442, 7.4415, 7.441, 7.4406, 7.4414, 7.4421, 7.4483, 7.4479, 7.4464, 7.446, 7.4468, 7.4466, 7.4463, 7.4461, 7.4456, 7.4488, 7.454, 7.4536, 7.4543, 7.4528, 7.4525, 7.4509, 7.4504, 7.45, 7.4496, 7.4491, 7.4486, 7.4483, 7.4481, 7.4466, 7.4463, 7.4469, 7.4477, 7.4485, 7.4481, 7.4477, 7.4484, 7.4481, 7.4476, 7.4471, 7.4466, 7.4463, 7.4471, 7.4468, 7.4463, 7.4459, 7.4455, 7.4453, 7.4451, 7.4436, 7.445, 7.4447, 7.4456, 7.4452, 7.4451, 7.4448, 7.4469, 7.4477, 7.4472, 7.4467, 7.4462, 7.4457, 7.4453, 7.445, 7.4446, 7.4453, 7.445, 7.4445, 7.4432, 7.4429, 7.4426, 7.4472, 7.4468, 7.4465, 7.4461, 7.4457, 7.4464, 7.4462, 7.4458, 7.4454, 7.4452, 7.4447, 7.4443, 7.4439, 7.4434, 7.4441, 7.4448, 7.4456, 7.4452, 7.4449, 7.4445, 7.4441, 7.4438, 7.4435, 7.4432, 7.4427, 7.4435, 7.4502, 7.4497, 7.4504, 7.4557, 7.4552, 7.455, 7.4547, 7.4543, 7.4551, 7.4547, 7.4544, 7.454, 7.4548, 7.4544, 7.4552, 7.4547, 7.4543, 7.4539, 7.4559, 7.4555, 7.4562, 7.4558, 7.4553, 7.4549, 7.4556, 7.4563, 7.4559, 7.4556, 7.4552, 7.4547, 7.4543, 7.454, 7.4546, 7.4542, 7.454, 7.4536, 7.4531, 7.4527, 7.4524, 7.452, 7.4515, 7.4523, 7.4519, 7.4526, 7.4523, 7.4518, 7.4514, 7.451, 7.4517, 7.4513, 7.452, 7.4517, 7.4514, 7.4522, 7.4519, 7.4516, 7.4511, 7.4496, 7.4492, 7.4487, 7.4483, 7.4479, 7.4487, 7.4495, 7.4491, 7.4488, 7.4484, 7.4479, 7.4487, 7.4488, 7.4474, 7.4472, 7.4468, 7.4465, 7.4461, 7.4446, 7.4454, 7.4451, 7.4471, 7.4467, 7.4463, 7.4477, 7.4476, 7.4472, 7.446, 7.4456, 7.4467, 7.4464, 7.4466, 7.4463, 7.4517, 7.4513, 7.4522, 7.4529, 7.4536, 7.4554, 7.4549, 7.4556, 7.4564, 7.456, 7.4555, 7.455, 7.4546, 7.4541, 7.4541, 7.4537, 7.4533, 7.4531, 7.4526, 7.4523, 7.4521, 7.4516, 7.4512, 7.4519, 7.4526, 7.4536, 7.4532, 7.4527, 7.4525, 7.4532, 7.4528, 7.4532, 7.4528, 7.4524, 7.4531, 7.4538, 7.4545, 7.4552, 7.4548, 7.4544, 7.454, 7.4536, 7.4531, 7.4541, 7.4548, 7.4544, 7.4542, 7.4538, 7.4534, 7.4542, 7.4537, 7.4545, 7.4541, 7.4537, 7.4544, 7.454, 7.4541, 7.4538, 7.4545, 7.4551, 7.4547, 7.4543, 7.4562, 7.458, 7.4575, 7.4582, 7.4581, 7.4577, 7.4573, 7.458, 7.4576, 7.4572, 7.4568, 7.4563, 7.4562, 7.4558, 7.4555, 7.4552, 7.4549, 7.4544, 7.454, 7.4536, 7.4534, 7.453, 7.4526, 7.4523, 7.4523, 7.452, 7.4519, 7.4525, 7.4521, 7.4518, 7.4514, 7.4509, 7.4517, 7.4513, 7.4509, 7.4557, 7.4553, 7.4548, 7.4548, 7.4544, 7.454, 7.4547, 7.4544, 7.4542, 7.4549, 7.4549, 7.4546, 7.4542, 7.4539, 7.4546, 7.4544, 7.454, 7.4536, 7.4532, 7.4529, 7.4525, 7.4522, 7.4519, 7.4526, 7.4522, 7.4532, 7.4528, 7.4551, 7.4546, 7.4542, 7.456, 7.4557, 7.4569, 7.4567, 7.4563, 7.457, 7.4566, 7.4573, 7.4579, 7.4586, 7.4582, 7.4589, 7.4586, 7.4593, 7.46, 7.4596, 7.4592, 7.4589, 7.4597, 7.4604, 7.46, 7.4596, 7.4592, 7.4589, 7.4585, 7.4581, 7.4576, 7.4583, 7.4579, 7.4575, 7.4571, 7.4566, 7.4563, 7.4551, 7.4558, 7.4554, 7.4561, 7.4557, 7.4564, 7.456, 7.4556, 7.4552, 7.4549, 7.4547, 7.4543, 7.4539, 7.4536, 7.4532, 7.4528, 7.4525, 7.4521, 7.4517, 7.4524, 7.4533, 7.4534, 7.453, 7.4526, 7.4522, 7.4519, 7.4516, 7.4514, 7.4521, 7.4517, 7.4513, 7.4512, 7.4508, 7.4504, 7.45, 7.4508, 7.4507, 7.4503, 7.4499, 7.4496, 7.4494, 7.449, 7.4538, 7.4534, 7.453, 7.4527, 7.4525, 7.4522, 7.4527, 7.4522, 7.4518, 7.4517, 7.4513, 7.451, 7.4506, 7.4513, 7.452, 7.4517, 7.4514, 7.4512, 7.4508, 7.4505, 7.4501, 7.4528, 7.4535, 7.4532, 7.4539, 7.4546, 7.4556, 7.4554, 7.4561, 7.4557, 7.4567, 7.4574, 7.4578, 7.4585, 7.4593, 7.4589, 7.4585, 7.4582, 7.4578, 7.4585, 7.4581, 7.4577, 7.4573, 7.4569, 7.4566, 7.4563, 7.457, 7.4568, 7.4565, 7.4572, 7.458, 7.4576, 7.4582, 7.4589, 7.4585, 7.4584, 7.458, 7.4576, 7.4573, 7.4569, 7.4565, 7.4561, 7.4557, 7.4564, 7.4571, 7.4568, 7.4564, 7.4563, 7.457, 7.4566, 7.4564, 7.456, 7.4556, 7.4552, 7.4559, 7.4566, 7.4562, 7.4559, 7.4558, 7.457, 7.4568, 7.4564, 7.456, 7.4561, 7.4564, 7.456, 7.4568, 7.4564, 7.457, 7.4567, 7.4553, 7.4549, 7.4547, 7.4542, 7.454, 7.4549, 7.4546, 7.4543, 7.4539, 7.454, 7.4537, 7.4546, 7.4543, 7.4539, 7.4535, 7.4532, 7.4527, 7.4523, 7.4519, 7.4515, 7.4511, 7.4498, 7.4516, 7.4513, 7.4509, 7.4506, 7.4502, 7.4498, 7.4494, 7.4491, 7.4497, 7.4495, 7.4501, 7.4499, 7.4496, 7.4493, 7.4491, 7.4487, 7.4484, 7.448, 7.4476, 7.4472, 7.4479, 7.4477, 7.4473, 7.447, 7.4466, 7.4467, 7.4463, 7.447, 7.4467, 7.4463, 7.4459, 7.4455, 7.4451, 7.4447, 7.4443, 7.444, 7.4447, 7.4451, 7.4475, 7.4472, 7.4468, 7.4464, 7.4471, 7.4468, 7.4466, 7.4474, 7.447, 7.4466, 7.4462, 7.447, 7.4466, 7.4463, 7.447, 7.4465, 7.4461, 7.4468, 7.4497, 7.4493, 7.45, 7.4507, 7.4503, 7.4509, 7.4507, 7.4514, 7.4521, 7.4528, 7.4534, 7.4541, 7.4538, 7.4534, 7.4542, 7.4539, 7.4535, 7.4544, 7.455, 7.4547, 7.4544, 7.454, 7.4537, 7.4544, 7.454, 7.4536, 7.4533, 7.4529, 7.4525, 7.4533, 7.453, 7.4541, 7.4537, 7.4534, 7.4535, 7.4533, 7.4529, 7.4527, 7.4544, 7.4542, 7.455, 7.4548, 7.4544, 7.454, 7.4536, 7.4532, 7.4527, 7.4513, 7.4515, 7.4511, 7.4507, 7.4504, 7.4512, 7.4509, 7.4506, 7.4504, 7.4516, 7.4523, 7.4519, 7.4514, 7.4511, 7.4507, 7.4504, 7.4502, 7.4499, 7.4495, 7.4491, 7.4501, 7.4498, 7.4495, 7.4495, 7.4491, 7.4489, 7.4475, 7.4472, 7.4468, 7.4466, 7.4472, 7.447, 7.4467, 7.4465, 7.4461, 7.4457, 7.4453, 7.4449, 7.4445, 7.4441, 7.4437, 7.4433, 7.443, 7.4427, 7.4423, 7.442, 7.4428, 7.4425, 7.4422, 7.4429, 7.4425, 7.4421, 7.4417, 7.4415, 7.4412, 7.4408, 7.4405, 7.4402, 7.4408, 7.4406, 7.4403, 7.4399, 7.4386, 7.4392, 7.4389, 7.439, 7.4397, 7.4394, 7.439, 7.4397, 7.4394, 7.439, 7.4387, 7.4384, 7.4381, 7.4399, 7.4396, 7.4392, 7.4399, 7.4396, 7.4403, 7.4399, 7.4406, 7.4403, 7.4399, 7.4397, 7.4393, 7.44, 7.4397, 7.4394, 7.4404, 7.4402, 7.4401, 7.44, 7.4396, 7.4403, 7.441, 7.4406, 7.4402, 7.4409, 7.4406, 7.4402, 7.4388, 7.4394, 7.439, 7.4397, 7.4403, 7.439, 7.4387, 7.4384, 7.438, 7.4376, 7.4373, 7.438, 7.4377, 7.4384, 7.4391, 7.4397, 7.4393, 7.4389, 7.4396, 7.4392, 7.4389, 7.4385, 7.4404, 7.4419, 7.4415, 7.4412, 7.4399, 7.4385, 7.4392, 7.4388, 7.4415, 7.4412, 7.4409, 7.4399, 7.4396, 7.4392, 7.4389, 7.439, 7.4401, 7.4414, 7.4421, 7.4427, 7.4423, 7.4429, 7.4435, 7.4432, 7.4439, 7.4435, 7.4462, 7.4479, 7.4486, 7.4482, 7.4478, 7.4478, 7.4474, 7.4471, 7.4482, 7.4479, 7.4475, 7.4476, 7.4479, 7.4477, 7.4491, 7.4487, 7.4474, 7.4512, 7.4509, 7.4527, 7.4524, 7.4522, 7.4559, 7.4565, 7.4561, 7.4558, 7.4576, 7.4574, 7.4575, 7.4572, 7.4579, 7.4576, 7.4572, 7.4569, 7.4565, 7.4571, 7.4579, 7.4585, 7.4581, 7.4577, 7.4574, 7.458, 7.4576, 7.4563, 7.4569, 7.4596, 7.4586, 7.4598, 7.4598, 7.4595, 7.4592, 7.4599, 7.4596, 7.4602, 7.4608, 7.4604, 7.46, 7.4596, 7.4606, 7.4612, 7.4618, 7.4625, 7.4621, 7.4617, 7.4623, 7.462, 7.4616, 7.4622, 7.4629, 7.4627, 7.4623, 7.4619, 7.4625, 7.4621, 7.4627, 7.4633, 7.4639, 7.4646, 7.4643, 7.4639, 7.4646, 7.4643, 7.465, 7.4647, 7.4643, 7.4639, 7.4636, 7.4632, 7.465, 7.4658, 7.4655, 7.4662, 7.4658, 7.4655, 7.4661, 7.4657, 7.4654, 7.467, 7.4676, 7.4694, 7.4683, 7.4679, 7.4675, 7.4672, 7.4668, 7.4675, 7.4671, 7.4668, 7.4674, 7.468, 7.4686, 7.4692, 7.4698, 7.4695, 7.4691, 7.4697, 7.4693, 7.4691, 7.4688, 7.4685, 7.4682, 7.4678, 7.4674, 7.467, 7.4666, 7.4662, 7.4668, 7.4675, 7.4682, 7.4689, 7.4695, 7.4692, 7.4689, 7.4706, 7.4702, 7.4698, 7.4704, 7.471, 7.4706, 7.4713, 7.47, 7.4696, 7.4693, 7.4709, 7.4705, 7.4701, 7.4698, 7.4694, 7.4691, 7.4688, 7.4694, 7.4702, 7.4708, 7.4704, 7.4701, 7.4698, 7.4696, 7.4695, 7.4693, 7.47, 7.469, 7.4694, 7.4684, 7.468, 7.4676, 7.4683, 7.4689, 7.4685, 7.4685, 7.4683, 7.468, 7.4678, 7.4685, 7.4692, 7.4699, 7.4705, 7.4712, 7.4708, 7.4705, 7.4704, 7.4701, 7.4707, 7.4706, 7.4714, 7.471, 7.4719, 7.4715, 7.4712, 7.4709, 7.4707, 7.4714, 7.4711, 7.471, 7.4716, 7.4715, 7.4715, 7.4714, 7.4721, 7.472, 7.4717, 7.4716, 7.4712, 7.4711, 7.4699, 7.4706, 7.4703, 7.47, 7.4699, 7.4699], '192.168.122.118': [5.4498, 5.43, 6.3577, 6.0905, 6.1591, 6.0216, 7.2374, 7.013, 7.4726, 7.3706, 7.2471, 7.0966, 7.1346, 7.0128, 6.9101, 7.1657, 7.4116, 7.3226, 7.4349, 7.3382, 7.3024, 7.2419, 7.3982, 7.3099, 7.2297, 7.1783, 7.5206, 7.4567, 7.8891, 7.6979, 7.6329, 7.5662, 7.7655, 7.8697, 7.7013, 7.726, 7.97, 7.922, 8.0194, 7.9533, 7.9023, 7.8523, 7.8022, 7.9223, 7.8666, 7.9328, 7.9166, 7.8689, 7.8306, 7.8895, 7.8403, 7.7923, 7.7568, 7.7202, 7.6829, 7.6455, 7.608, 7.5861, 7.5572, 7.5351, 7.4996, 7.4665, 7.449, 7.4261, 7.3956, 7.4493, 7.5028, 7.4726, 7.5227, 7.4909, 7.4612, 7.4372, 7.4072, 7.4579, 7.4383, 7.4184, 7.3943, 7.3701, 7.3458, 7.3858, 7.4279, 7.4068, 7.5165, 7.5854, 7.5604, 7.6104, 7.6437, 7.7865, 7.7623, 7.7349, 7.7097, 7.6858, 7.7194, 7.693, 7.7267, 7.7103, 7.6906, 7.7207, 7.702, 7.6818, 7.6128, 7.5918, 7.5741, 7.6033, 7.5868, 7.5659, 7.5547, 7.5541, 7.5395, 7.53, 7.5614, 7.5939, 7.5736, 7.6018, 7.5846, 7.5714, 7.6009, 7.5838, 7.5647, 7.5614, 7.507, 7.4882, 7.4785, 7.4691, 7.4139, 7.4077, 7.3979, 7.3834, 7.3732, 7.3571, 7.3894, 7.3776, 7.3631, 7.4972, 7.485, 7.4772, 7.4666, 7.4511, 7.4763, 7.5023, 7.527, 7.5128, 7.4983, 7.525, 7.5484, 7.5712, 7.557, 7.5424, 7.5278, 7.5129, 7.5083, 7.4974, 7.4854, 7.4726, 7.4592, 7.4808, 7.5028, 7.5243, 7.513, 7.503, 7.5237, 7.5116, 7.5004, 7.4896, 7.4843, 7.4721, 7.4794, 7.4705, 7.4588, 7.4484, 7.4679, 7.4552, 7.4437, 7.4411, 7.4287, 7.4169, 7.4059, 7.395, 7.3832, 7.4021, 7.3914, 7.3853, 7.4085, 7.4545, 7.4992, 7.517, 7.5351, 7.5562, 7.5721, 7.5645, 7.5599, 7.5777, 7.5671, 7.5847, 7.6019, 7.6233, 7.6702, 7.6855, 7.6788, 7.6698, 7.6587, 7.6468, 7.6368, 7.6281, 7.647, 7.6387, 7.6383, 7.6291, 7.6205, 7.6146, 7.6056, 7.5959, 7.6102, 7.6051, 7.5947, 7.5882, 7.5807, 7.5949, 7.588, 7.5803, 7.5713, 7.5658, 7.5575, 7.5498, 7.5403, 7.537, 7.5299, 7.5234, 7.4951, 7.5084, 7.5263, 7.5189, 7.5348, 7.5528, 7.5243, 7.5586, 7.6159, 7.5871, 7.5818, 7.5948, 7.5863, 7.5788, 7.5736, 7.5645, 7.5566, 7.5489, 7.5627, 7.5539, 7.545, 7.5373, 7.5401, 7.5528, 7.5465, 7.5735, 7.5744, 7.5871, 7.5781, 7.5708, 7.5842, 7.5958, 7.5866, 7.5786, 7.5711, 7.5637, 7.5573, 7.5542, 7.546, 7.539, 7.5499, 7.5416, 7.5355, 7.5274, 7.5584, 7.5503, 7.5606, 7.5544, 7.546, 7.5379, 7.5299, 7.5218, 7.5343, 7.5447, 7.5371, 7.532, 7.5433, 7.5545, 7.5683, 7.5609, 7.5377, 7.5307, 7.5235, 7.5175, 7.5118, 7.5227, 7.5158, 7.4928, 7.4883, 7.4854, 7.4785, 7.4563, 7.4676, 7.4632, 7.4747, 7.4676, 7.4609, 7.4561, 7.4495, 7.4427, 7.4485, 7.4596, 7.4707, 7.4643, 7.4744, 7.4674, 7.4604, 7.4538, 7.4469, 7.4578, 7.4511, 7.4616, 7.4722, 7.4827, 7.4802, 7.4905, 7.4697, 7.4491, 7.459, 7.4531, 7.4487, 7.442, 7.4207, 7.4143, 7.4093, 7.4211, 7.4155, 7.4093, 7.4195, 7.4133, 7.4071, 7.4019, 7.396, 7.406, 7.4168, 7.4129, 7.4069, 7.4017, 7.3959, 7.392, 7.3868, 7.3842, 7.3952, 7.4134, 7.408, 7.4022, 7.398, 7.3786, 7.3881, 7.3852, 7.3674, 7.3617, 7.3593, 7.3566, 7.3384, 7.3333, 7.3282, 7.3245, 7.3212, 7.3171, 7.3981, 7.4076, 7.389, 7.399, 7.3935, 7.3891, 7.3847, 7.3793, 7.3881, 7.3827, 7.3786, 7.3756, 7.3832, 7.4056, 7.4007, 7.3832, 7.3778, 7.3733, 7.3681, 7.3776, 7.3743, 7.3694, 7.3647, 7.3598, 7.3545, 7.3632, 7.3582, 7.3547, 7.3629, 7.3591, 7.3677, 7.3655, 7.3619, 7.3576, 7.3528, 7.3362, 7.3452, 7.354, 7.3372, 7.3339, 7.3432, 7.3269, 7.3225, 7.321, 7.3184, 7.3269, 7.323, 7.3073, 7.3026, 7.2977, 7.2945, 7.2898, 7.3383, 7.3338, 7.3311, 7.3267, 7.3217, 7.3301, 7.3315, 7.3348, 7.3302, 7.3272, 7.338, 7.3457, 7.3413, 7.337, 7.333, 7.3412, 7.3466, 7.3436, 7.3391, 7.3416, 7.343, 7.3383, 7.3335, 7.3991, 7.396, 7.3928, 7.3906, 7.3864, 7.394, 7.3892, 7.3876, 7.3947, 7.39, 7.3856, 7.393, 7.4002, 7.3965, 7.4038, 7.411, 7.4077, 7.4147, 7.4103, 7.3955, 7.3911, 7.3869, 7.3824, 7.3789, 7.3746, 7.3705, 7.367, 7.3625, 7.369, 7.3764, 7.3724, 7.3795, 7.3755, 7.3717, 7.3686, 7.3665, 7.3631, 7.3592, 7.3667, 7.3623, 7.3602, 7.375, 7.3717, 7.3699, 7.3766, 7.3732, 7.3692, 7.377, 7.3834, 7.3822, 7.3802, 7.3763, 7.3734, 7.3691, 7.3693, 7.3676, 7.3637, 7.3598, 7.3579, 7.3649, 7.3637, 7.3719, 7.368, 7.3756, 7.3726, 7.3686, 7.3648, 7.3611, 7.358, 7.3555, 7.3625, 7.3587, 7.3548, 7.352, 7.3578, 7.355, 7.3518, 7.3486, 7.3483, 7.3448, 7.3411, 7.3479, 7.3453, 7.3424, 7.3396, 7.3358, 7.3321, 7.3298, 7.3295, 7.3311, 7.3301, 7.3281, 7.3249, 7.3221, 7.3185, 7.3095, 7.3067, 7.2949, 7.3016, 7.2998, 7.2972, 7.3032, 7.2998, 7.2965, 7.2929, 7.2892, 7.2861, 7.2825, 7.2707, 7.2676, 7.264, 7.2624, 7.2687, 7.2653, 7.2619, 7.2685, 7.2673, 7.2657, 7.2626, 7.2591, 7.2561, 7.2538, 7.2534, 7.2508, 7.2482, 7.2449, 7.2416, 7.2383, 7.2447, 7.2431, 7.24, 7.246, 7.2435, 7.2415, 7.2394, 7.2374, 7.2432, 7.2399, 7.2368, 7.2334, 7.2309, 7.2286, 7.2278, 7.2335, 7.2328, 7.2217, 7.2185, 7.2256, 7.2229, 7.2288, 7.2275, 7.2244, 7.2222, 7.2113, 7.2098, 7.2077, 7.2058, 7.2028, 7.2377, 7.2432, 7.2406, 7.2376, 7.2347, 7.2407, 7.2382, 7.2354, 7.2245, 7.2214, 7.2193, 7.2171, 7.2232, 7.221, 7.2264, 7.2318, 7.2286, 7.2261, 7.2229, 7.2201, 7.2173, 7.2233, 7.2298, 7.23, 7.2273, 7.2248, 7.2224, 7.2279, 7.2249, 7.2218, 7.2188, 7.217, 7.2138, 7.2108, 7.2093, 7.2063, 7.2041, 7.2015, 7.1991, 7.1961, 7.1936, 7.1912, 7.1969, 7.1944, 7.2002, 7.1976, 7.1955, 7.1941, 7.1912, 7.1981, 7.1967, 7.1937, 7.191, 7.1897, 7.1869, 7.1772, 7.1746, 7.1722, 7.1704, 7.1754, 7.1741, 7.1802, 7.1784, 7.1836, 7.1892, 7.1864, 7.1846, 7.1827, 7.1802, 7.1865, 7.1837, 7.181, 7.1872, 7.1845, 7.183, 7.1883, 7.1931, 7.1913, 7.1885, 7.1859, 7.1919, 7.1896, 7.1951, 7.1931, 7.1931, 7.1981, 7.1957, 7.2009, 7.2061, 7.211, 7.2113, 7.2091, 7.2065, 7.2039, 7.2014, 7.1991, 7.2043, 7.2017, 7.2074, 7.2131, 7.2119, 7.2144, 7.212, 7.2175, 7.2241, 7.2216, 7.2271, 7.2328, 7.2304, 7.228, 7.226, 7.2337, 7.2326, 7.2561, 7.2537, 7.2511, 7.2484, 7.2595, 7.2571, 7.2548, 7.2678, 7.2661, 7.264, 7.2621, 7.2601, 7.2707, 7.2681, 7.2661, 7.2641, 7.2616, 7.2591, 7.2629, 7.2539, 7.2529, 7.2573, 7.2554, 7.2555, 7.2532, 7.252, 7.2501, 7.2556, 7.2532, 7.2509, 7.2496, 7.2472, 7.2446, 7.2421, 7.2397, 7.2372, 7.2347, 7.2368, 7.2418, 7.2345, 7.2324, 7.2376, 7.2363, 7.2275, 7.2403, 7.2385, 7.2435, 7.2438, 7.2482, 7.247, 7.2451, 7.2501, 7.2483, 7.246, 7.2442, 7.2425, 7.2466, 7.2444, 7.2418, 7.2409, 7.2383, 7.2363, 7.2351, 7.2407, 7.2395, 7.2372, 7.2354, 7.2337, 7.2318, 7.2293, 7.2268, 7.2318, 7.2363, 7.2415, 7.2398, 7.2374, 7.2421, 7.2404, 7.2457, 7.2504, 7.2488, 7.2535, 7.2521, 7.2612, 7.2587, 7.2567, 7.2609, 7.2655, 7.2697, 7.2675, 7.2654, 7.2633, 7.2702, 7.2678, 7.2688, 7.2679, 7.2718, 7.2758, 7.2734, 7.2775, 7.2816, 7.2797, 7.2774, 7.2751, 7.2727, 7.2703, 7.2746, 7.2729, 7.2714, 7.2689, 7.2858, 7.2903, 7.2822, 7.2798, 7.2784, 7.2828, 7.2807, 7.2788, 7.2769, 7.2852, 7.2895, 7.2932, 7.2974, 7.2956, 7.2934, 7.2912, 7.2888, 7.2869, 7.2851, 7.2828, 7.2828, 7.294, 7.3229, 7.3207, 7.3187, 7.3108, 7.3091, 7.307, 7.3049, 7.3028, 7.307, 7.3056, 7.3162, 7.3141, 7.3066, 7.3043, 7.3023, 7.2965, 7.3004, 7.2982, 7.296, 7.2937, 7.2914, 7.2903, 7.2882, 7.2921, 7.2961, 7.2938, 7.2862, 7.2851, 7.2837, 7.2822, 7.2925, 7.2931, 7.2914, 7.2898, 7.2936, 7.2914, 7.2908, 7.2948, 7.2927, 7.291, 7.2889, 7.3026, 7.301, 7.3222, 7.32, 7.3184, 7.3176, 7.3215, 7.3199, 7.3184, 7.3174, 7.3158, 7.3142, 7.3132, 7.311, 7.3102, 7.3087, 7.3077, 7.3056, 7.3038, 7.3074, 7.3052, 7.303, 7.3066, 7.3049, 7.3028, 7.3068, 7.3053, 7.304, 7.308, 7.3059, 7.3042, 7.302, 7.3059, 7.3098, 7.3076, 7.3115, 7.3161, 7.3232, 7.3211, 7.319, 7.3176, 7.3212, 7.3258, 7.3247, 7.3231, 7.321, 7.3191, 7.3231, 7.3214, 7.3252, 7.3289, 7.3267, 7.3246, 7.3229, 7.3224, 7.3212, 7.32, 7.3236, 7.326, 7.3241, 7.3179, 7.3164, 7.3202, 7.3133, 7.3121, 7.31, 7.3086, 7.3069, 7.3053, 7.3035, 7.3018, 7.2957, 7.2891, 7.2871, 7.287, 7.2849, 7.2828, 7.2811, 7.2796, 7.2777, 7.2764, 7.2745, 7.2736, 7.2715, 7.2705, 7.2747, 7.2733, 7.2669, 7.2707, 7.2687, 7.2619, 7.2601, 7.2637, 7.2637, 7.267, 7.2658, 7.2639, 7.2621, 7.2607, 7.2588, 7.2629, 7.2613, 7.2594, 7.2632, 7.2627, 7.2608, 7.2597, 7.2531, 7.2516, 7.2448, 7.2435, 7.2579, 7.2562, 7.2557, 7.2623, 7.2603, 7.2589, 7.2577, 7.2559, 7.2541, 7.2524, 7.2509, 7.249, 7.2566, 7.2551, 7.2484, 7.2467, 7.2448, 7.2481, 7.2463, 7.245, 7.2432, 7.2465, 7.2455, 7.2438, 7.2373, 7.2354, 7.2343, 7.2377, 7.2358, 7.2392, 7.2388, 7.237, 7.2353, 7.2335, 7.2324, 7.2312, 7.2359, 7.2353, 7.2343, 7.2335, 7.2334, 7.2371, 7.2359, 7.234, 7.2327, 7.2308, 7.229, 7.2272, 7.2259, 7.2247, 7.2233, 7.2215, 7.225, 7.2239, 7.2273, 7.2265, 7.2252, 7.2236, 7.227, 7.2256, 7.2241, 7.2229, 7.2265, 7.2248, 7.2233, 7.2216, 7.2249, 7.2281, 7.2268, 7.2398, 7.2384, 7.2372, 7.2404, 7.2393, 7.2379, 7.237, 7.2358, 7.2341, 7.2324, 7.2316, 7.2299, 7.2391, 7.2572, 7.2555, 7.2547, 7.258, 7.2613, 7.2597, 7.259, 7.2572, 7.2619, 7.2653, 7.2639, 7.2672, 7.2654, 7.2686, 7.2669, 7.2673, 7.2656, 7.264, 7.2625, 7.2621, 7.2626, 7.2683, 7.2622, 7.2669, 7.2654, 7.2738, 7.2819, 7.281, 7.2792, 7.2875, 7.2857, 7.2843, 7.2827, 7.2908, 7.2899, 7.2893, 7.2879, 7.2914, 7.2901, 7.2933, 7.2919, 7.291, 7.2925, 7.2914, 7.2899, 7.2884, 7.2869, 7.2852, 7.2884, 7.2874, 7.2857, 7.2841, 7.2881, 7.2865, 7.2809, 7.2794, 7.2828, 7.2861, 7.2891, 7.2833, 7.282, 7.2805, 7.279, 7.279, 7.2787, 7.277, 7.2762, 7.2747, 7.2777, 7.2761, 7.2752, 7.2738, 7.2728, 7.2716, 7.2699, 7.2739, 7.2768, 7.2751, 7.274, 7.2723, 7.2707, 7.2734, 7.2722, 7.2707, 7.2692, 7.2676, 7.2663, 7.2605, 7.2634, 7.2619, 7.2649, 7.2633, 7.2661, 7.2645, 7.2634, 7.2723, 7.2798, 7.2783, 7.2775, 7.276, 7.2743, 7.2728, 7.2758, 7.2749, 7.2734, 7.2735, 7.2728, 7.2711, 7.2704, 7.2687, 7.2677, 7.2624, 7.2611, 7.2595, 7.2583, 7.2572, 7.2647, 7.2639, 7.2624, 7.2611, 7.2597, 7.2586, 7.2616, 7.2602, 7.2595, 7.2579, 7.2566, 7.2593, 7.2584, 7.2572, 7.2559, 7.255, 7.2537, 7.2572, 7.2599, 7.2586, 7.2571, 7.2604, 7.259, 7.2574, 7.256, 7.2545, 7.2575, 7.2559, 7.2544, 7.2536, 7.2522, 7.2512, 7.2498, 7.2484, 7.2482, 7.2469, 7.2453, 7.2441, 7.2471, 7.2503, 7.2489, 7.2519, 7.2505, 7.2497, 7.2483, 7.2469, 7.2455, 7.2445, 7.2435, 7.2432, 7.2464, 7.2451, 7.2438, 7.2429, 7.2416, 7.2441, 7.2433, 7.2421, 7.2413, 7.24, 7.2395, 7.2381, 7.2373, 7.2359, 7.2308, 7.2346, 7.2337, 7.2354, 7.2347, 7.2339, 7.2327, 7.2323, 7.231, 7.2339, 7.2368, 7.2375, 7.2361, 7.2321, 7.2308, 7.2294, 7.2282, 7.2268, 7.2297, 7.2287, 7.2276, 7.231, 7.2299, 7.2287, 7.2273, 7.2262, 7.2255, 7.2247, 7.2237, 7.2223, 7.2215, 7.2247, 7.2239, 7.2228, 7.2256, 7.2246, 7.2276, 7.2264, 7.233, 7.2318, 7.2302, 7.2293, 7.2323, 7.2351, 7.2338, 7.2323, 7.2353, 7.2343, 7.234, 7.2367, 7.2353, 7.2338, 7.237, 7.236, 7.2347, 7.2367, 7.2395, 7.2382, 7.2369, 7.2356, 7.2348, 7.2374, 7.2404, 7.2391, 7.2391, 7.239, 7.2376, 7.2366, 7.2362, 7.2349, 7.2337, 7.2297, 7.2284, 7.2279, 7.2305, 7.2309, 7.2318, 7.2306, 7.2298, 7.2289, 7.2278, 7.2235, 7.2197, 7.2184, 7.2282, 7.2268, 7.2255, 7.2218, 7.2205, 7.2233, 7.2223, 7.221, 7.2202, 7.2188, 7.2174, 7.2166, 7.216, 7.2147, 7.2133, 7.2134, 7.2121, 7.2112, 7.2112, 7.2138, 7.2129, 7.2081, 7.207, 7.2096, 7.2083, 7.2069, 7.2055, 7.2043, 7.207, 7.2061, 7.2051, 7.2038, 7.2024, 7.2015, 7.2002, 7.1989, 7.1977, 7.1966, 7.1992, 7.1983, 7.197, 7.1957, 7.1945, 7.1969, 7.1996, 7.2027, 7.2014, 7.2166, 7.2152, 7.2142, 7.2131, 7.2125, 7.2113, 7.2104, 7.2092, 7.2084, 7.207, 7.2097, 7.2085, 7.2074, 7.2062, 7.2049, 7.2036, 7.2063, 7.2051, 7.2043, 7.2038, 7.2047, 7.2034, 7.2024, 7.1977, 7.2003, 7.203, 7.2056, 7.2046, 7.2075, 7.2077, 7.2103, 7.2094, 7.2126, 7.2156, 7.2109, 7.2113, 7.2158, 7.2222, 7.2213, 7.2235, 7.2225, 7.2302, 7.233, 7.2321, 7.2307, 7.2296, 7.2283, 7.2309, 7.2356, 7.2381, 7.2368, 7.2355, 7.2353, 7.2344, 7.2368, 7.2357, 7.2459, 7.2449, 7.2436, 7.2423, 7.2415, 7.2439, 7.2428, 7.2449, 7.2474, 7.2503, 7.2492, 7.2483, 7.2473, 7.2474, 7.2464, 7.2488, 7.2478, 7.2432, 7.2426, 7.2414, 7.24, 7.239, 7.238, 7.2369, 7.2357, 7.2372, 7.2361, 7.235, 7.2342, 7.233, 7.2358, 7.2345, 7.2376, 7.2398, 7.2405, 7.2392, 7.2381, 7.2377, 7.2366, 7.2356, 7.2348, 7.2335, 7.2325, 7.232, 7.2312, 7.2313, 7.2302, 7.229, 7.2279, 7.2278, 7.2276, 7.2265, 7.2252, 7.2242, 7.2263, 7.2284, 7.2272, 7.2264, 7.2253, 7.224, 7.2236, 7.2224, 7.2212, 7.22, 7.2224, 7.2247, 7.2255, 7.2245, 7.2232, 7.2224, 7.2216, 7.221, 7.2205, 7.2194, 7.2218, 7.221, 7.2167, 7.2161, 7.2155, 7.2143, 7.2137, 7.2128, 7.2221, 7.2213, 7.22, 7.2157, 7.2146, 7.2145, 7.2133, 7.214, 7.2128, 7.2152, 7.2141, 7.2128, 7.2128, 7.2117, 7.2107, 7.213, 7.2119, 7.2113, 7.2105, 7.2128, 7.2119, 7.2108, 7.2095, 7.2089, 7.2078, 7.2168, 7.2189, 7.2178, 7.2171, 7.2262, 7.2252, 7.2244, 7.2305, 7.2293, 7.2316, 7.2339, 7.2331, 7.232, 7.231, 7.2299, 7.2287, 7.2276, 7.2297, 7.2285, 7.2272, 7.2263, 7.2343, 7.2366, 7.2356, 7.2348, 7.237, 7.2362, 7.235, 7.234, 7.2366, 7.2375, 7.2415, 7.2408, 7.2398, 7.2388, 7.2384, 7.2372, 7.2366, 7.2354, 7.2348, 7.2337, 7.2325, 7.2314, 7.2302, 7.2297, 7.2299, 7.2333, 7.2323, 7.2333, 7.2322, 7.231, 7.2333, 7.2321, 7.2309, 7.2297, 7.2289, 7.2277, 7.227, 7.2333, 7.2336, 7.2341, 7.2344, 7.2336, 7.2324, 7.2314, 7.2308, 7.2328, 7.2316, 7.2304, 7.2298, 7.2316, 7.2338, 7.2329, 7.2318, 7.2316, 7.2305, 7.2294, 7.2255, 7.2244, 7.2235, 7.2223, 7.2244, 7.2235, 7.2227, 7.2217, 7.2206, 7.2195, 7.2188, 7.221, 7.2199, 7.2188, 7.2183, 7.2204, 7.2225, 7.2279, 7.2268, 7.229, 7.2281, 7.2274, 7.2263, 7.2252, 7.2246, 7.2243, 7.2232, 7.2221, 7.2213, 7.2205, 7.2194, 7.2199, 7.2187, 7.2179, 7.217, 7.2171, 7.2195, 7.2183, 7.2204, 7.2224, 7.2217, 7.2207, 7.2199, 7.2193, 7.2181, 7.2204, 7.2194, 7.2188, 7.2212, 7.2206, 7.2194, 7.219, 7.2213, 7.2289, 7.2278, 7.227, 7.229, 7.2279, 7.227, 7.2262, 7.2281, 7.2244, 7.2235, 7.2255, 7.2247, 7.2236, 7.2257, 7.2249, 7.2242, 7.2233, 7.2222, 7.2215, 7.2209, 7.2202, 7.2195, 7.2186, 7.2177, 7.2166, 7.2156, 7.2147, 7.2136, 7.2129, 7.2151, 7.2175, 7.2168, 7.219, 7.2179, 7.217, 7.219, 7.2182, 7.2179, 7.2167, 7.2156, 7.2145, 7.2136, 7.2126, 7.2089, 7.2082, 7.2103, 7.2124, 7.2116, 7.211, 7.2195, 7.2157, 7.215, 7.2143, 7.2134, 7.2153, 7.2148, 7.2167, 7.2188, 7.2178, 7.2167, 7.2156, 7.2152, 7.2148, 7.2142, 7.2163, 7.2184, 7.2174, 7.2167, 7.2158, 7.218, 7.217, 7.2173, 7.2165, 7.2158, 7.2179, 7.2168, 7.2187, 7.2179, 7.2201, 7.2225, 7.2218, 7.2215, 7.2204, 7.2193, 7.2187, 7.2176, 7.2168, 7.2159, 7.2177, 7.214, 7.2159, 7.215, 7.217, 7.224, 7.2212, 7.2219, 7.2281, 7.2273, 7.2264, 7.2364, 7.2386, 7.2386, 7.2378, 7.2398, 7.2387, 7.2376, 7.2366, 7.233, 7.2319, 7.2309, 7.2272, 7.2261, 7.225, 7.2248, 7.2269, 7.2287, 7.2308, 7.2298, 7.2296, 7.2288, 7.2282, 7.2272, 7.2332, 7.2325, 7.2314, 7.2305, 7.2294, 7.2287, 7.2305, 7.2295, 7.2286, 7.2304, 7.2295, 7.229, 7.2356, 7.232, 7.2314, 7.2307, 7.2299, 7.232, 7.2342, 7.2337, 7.2327, 7.2319, 7.2309, 7.2329, 7.2349, 7.2344, 7.2369, 7.2389, 7.2378, 7.2368, 7.2374, 7.2391, 7.2381, 7.2417, 7.2438, 7.2411, 7.2374, 7.2347, 7.2399, 7.2417, 7.2408, 7.2398, 7.239, 7.2409, 7.2403, 7.2395, 7.2385, 7.2375, 7.2393, 7.2413, 7.2403, 7.2393, 7.2386, 7.2376, 7.2369, 7.236, 7.235, 7.2472, 7.2492, 7.2482, 7.2476, 7.2466, 7.2485, 7.2518, 7.2509, 7.256, 7.255, 7.2572, 7.2545, 7.2551, 7.2544, 7.2515, 7.2515, 7.2548, 7.2538, 7.253, 7.2532, 7.2523, 7.2577, 7.2595, 7.2587, 7.2583, 7.2574, 7.2624, 7.2668, 7.2663, 7.268, 7.267, 7.2668, 7.2635, 7.2625, 7.2618, 7.2636, 7.2655, 7.2673, 7.2663, 7.2652, 7.267, 7.2689, 7.2679, 7.2675, 7.2698, 7.2689, 7.2679, 7.2699, 7.269, 7.272, 7.2755, 7.2746, 7.2737, 7.2757, 7.2774, 7.2767, 7.2757, 7.2777, 7.2775, 7.2794, 7.2784, 7.2776, 7.2769, 7.2793, 7.2812, 7.2802, 7.2792, 7.2787, 7.2779, 7.2743, 7.2716, 7.2681, 7.2676, 7.2696, 7.2702, 7.2695, 7.2697, 7.269, 7.2709, 7.2703, 7.2693, 7.2683, 7.2676, 7.2681, 7.2685, 7.2677, 7.2669, 7.2691, 7.2683, 7.2673, 7.2641, 7.2635, 7.2714, 7.2705, 7.2722, 7.2715, 7.2708, 7.2698, 7.2688, 7.2732, 7.2722, 7.272, 7.2714, 7.273, 7.2721, 7.2714, 7.2732, 7.2723, 7.2714, 7.2704, 7.2723, 7.2739, 7.2818, 7.2808, 7.2798, 7.2817, 7.2835, 7.283, 7.2822, 7.2834, 7.286, 7.2879, 7.2871, 7.2889, 7.2879, 7.287, 7.2861, 7.2828, 7.282, 7.2814, 7.2805, 7.2796, 7.2788, 7.278, 7.2796, 7.2789, 7.2782, 7.2774, 7.2768, 7.276, 7.2778, 7.2796, 7.2797, 7.2764, 7.2755, 7.2746, 7.2764, 7.276, 7.2756, 7.2774, 7.2765, 7.2756, 7.2748, 7.2764, 7.2757, 7.275, 7.2743, 7.2734, 7.2754, 7.2769, 7.2759, 7.2775, 7.277, 7.2761, 7.2751, 7.2768, 7.2758, 7.2726, 7.2716, 7.2721, 7.2762, 7.2754, 7.2771, 7.2761, 7.2757, 7.2775, 7.2743, 7.2739, 7.2733, 7.2729, 7.2823, 7.2814, 7.2834, 7.2825, 7.2827, 7.2826, 7.2819, 7.2815, 7.2806, 7.2798, 7.2791, 7.2785, 7.2805, 7.2821, 7.2812, 7.2804, 7.2796, 7.2788, 7.2778, 7.2789, 7.2781, 7.2771, 7.2763, 7.2754, 7.2745, 7.2739, 7.2762, 7.2783, 7.28, 7.2818, 7.2811, 7.2829, 7.282, 7.2813, 7.2803, 7.2795, 7.2812, 7.2803, 7.282, 7.2811, 7.2802, 7.2821, 7.2814, 7.2804, 7.2816, 7.2808, 7.2799, 7.2816, 7.2834, 7.2825, 7.2816, 7.2857, 7.2847, 7.2838, 7.2855, 7.2846, 7.2837, 7.2831, 7.2825, 7.2818, 7.2809, 7.2826, 7.284, 7.2831, 7.2826, 7.2819, 7.2787, 7.2804, 7.2823, 7.284, 7.2831, 7.2822, 7.2814, 7.2806, 7.2797, 7.2788, 7.2779, 7.277, 7.2787, 7.2781, 7.2796, 7.2794, 7.2811, 7.2802, 7.2818, 7.2836, 7.2831, 7.2849, 7.2841, 7.2837, 7.2828, 7.282, 7.2813, 7.2805, 7.2796, 7.2786, 7.2807, 7.2825, 7.2818, 7.2817, 7.281, 7.2805, 7.2804, 7.2795, 7.2787, 7.278, 7.2773, 7.2793, 7.2811, 7.2808, 7.28, 7.2808, 7.2801, 7.2771, 7.2762, 7.2753, 7.2747, 7.2762, 7.2755, 7.275, 7.2766, 7.2759, 7.275, 7.2765, 7.2757, 7.2753, 7.2748, 7.2741, 7.2736, 7.2727, 7.2719, 7.2736, 7.2728, 7.2744, 7.2735, 7.275, 7.2747, 7.2739, 7.2732, 7.277, 7.2761, 7.2755, 7.2749, 7.2743, 7.2735, 7.2727, 7.2718, 7.2713, 7.2709, 7.276, 7.2777, 7.2769, 7.2761, 7.2761, 7.2762, 7.2759, 7.2777, 7.277, 7.2767, 7.2758, 7.2752, 7.2746, 7.2738, 7.2731, 7.2743, 7.2737, 7.2736, 7.2752, 7.2743, 7.276, 7.2759, 7.2753, 7.2724, 7.274, 7.2732, 7.275, 7.2743, 7.2734, 7.2727, 7.2746, 7.2738, 7.2731, 7.2723, 7.2715, 7.2708, 7.2733, 7.2725, 7.2718, 7.2714, 7.2709, 7.2724, 7.274, 7.2739, 7.273, 7.2727, 7.2719, 7.2712, 7.2707, 7.2698, 7.269, 7.269, 7.2685, 7.2685, 7.2679, 7.273, 7.2721, 7.2736, 7.2751, 7.2743, 7.2761, 7.2812, 7.2805, 7.2835, 7.2852, 7.2868, 7.2883, 7.2876, 7.2869, 7.2869, 7.2861, 7.2853, 7.2846, 7.2863, 7.2856, 7.2847, 7.284, 7.2831, 7.2829, 7.2823, 7.2815, 7.2807, 7.2799, 7.2793, 7.2785, 7.2779, 7.2775, 7.2793, 7.2785, 7.2777, 7.2792, 7.2786, 7.2802, 7.2793, 7.279, 7.2786, 7.2778, 7.2808, 7.2821, 7.2813, 7.2807, 7.2822, 7.2813, 7.2809, 7.2801, 7.2794, 7.2789, 7.278, 7.2794, 7.2785, 7.2782, 7.2797, 7.279, 7.2783, 7.2778, 7.2775, 7.2771, 7.2788, 7.2781, 7.2778, 7.2773, 7.2749, 7.2741, 7.2735, 7.275, 7.2751, 7.2767, 7.276, 7.2783, 7.2775, 7.2767, 7.276, 7.2752, 7.2769, 7.2762, 7.2755, 7.2748, 7.2742, 7.2734, 7.2726, 7.272, 7.2737, 7.2729, 7.2737, 7.2734, 7.2729, 7.2744, 7.2759, 7.2751, 7.2747, 7.2738, 7.2733, 7.2748, 7.2742, 7.2757, 7.2729, 7.2742, 7.2734, 7.2725, 7.2742, 7.2736, 7.2751, 7.2723, 7.2738, 7.273, 7.2744, 7.2738, 7.2732, 7.2748, 7.2742, 7.2734, 7.2729, 7.2721, 7.2715, 7.273, 7.2722, 7.2736, 7.2732, 7.2726, 7.2718, 7.2711, 7.2703, 7.2695, 7.269, 7.2738, 7.2732, 7.2724, 7.2716, 7.2708, 7.2701, 7.2693, 7.2709, 7.2703, 7.2677, 7.2692, 7.2686, 7.2701, 7.2721, 7.2714, 7.2706, 7.2721, 7.2714, 7.2713, 7.2707, 7.2705, 7.2698, 7.2691, 7.2686, 7.2678, 7.2692, 7.2684, 7.2679, 7.2684, 7.2698, 7.2695, 7.271, 7.2707, 7.2733, 7.2747, 7.274, 7.2734, 7.2729, 7.2722, 7.2715, 7.2709, 7.2703, 7.2697, 7.2712, 7.2727, 7.2719, 7.2734, 7.2729, 7.2721, 7.2714, 7.2708, 7.2722, 7.2714, 7.2728, 7.2722, 7.2736, 7.2729, 7.2721, 7.2736, 7.2729, 7.2791, 7.2783, 7.2776, 7.2791, 7.2783, 7.2777, 7.2772, 7.2765, 7.276, 7.2754, 7.2747, 7.2804, 7.2811, 7.2805, 7.2778, 7.2772, 7.2765, 7.2757, 7.2749, 7.2741, 7.2734, 7.2727, 7.2721, 7.2717, 7.2711, 7.2746, 7.2761, 7.2756, 7.2769, 7.2784, 7.2779, 7.2771, 7.2763, 7.2755, 7.2748, 7.2741, 7.2734, 7.2726, 7.2719, 7.2716, 7.273, 7.2726, 7.275, 7.2746, 7.2738, 7.2752, 7.2749, 7.2764, 7.2756, 7.2749, 7.2742, 7.2739, 7.2739, 7.2753, 7.2752, 7.2745, 7.2763, 7.2758, 7.2774, 7.2769, 7.2761, 7.2753, 7.2745, 7.274, 7.2734, 7.2748, 7.2741, 7.2737, 7.273, 7.2726, 7.2718, 7.271, 7.2703, 7.2695, 7.2689, 7.2703, 7.2695, 7.2687, 7.2662, 7.2659, 7.2652, 7.2645, 7.2637, 7.2623, 7.2618, 7.2613, 7.2607, 7.2624, 7.262, 7.266, 7.2676, 7.2669, 7.2662, 7.2657, 7.2651, 7.2645, 7.2661, 7.2658, 7.2653, 7.2646, 7.2639, 7.2652, 7.2646, 7.2659, 7.2652, 7.2644, 7.2637, 7.2633, 7.2731, 7.2725, 7.2739, 7.2732, 7.2729, 7.2725, 7.2739, 7.2736, 7.2729, 7.2743, 7.2737, 7.2732, 7.2725, 7.2717, 7.2709, 7.2701, 7.2715, 7.2731, 7.2725, 7.2718, 7.2711, 7.2705, 7.2719, 7.2712, 7.2707, 7.2699, 7.2691, 7.2683, 7.2679, 7.2672, 7.2666, 7.266, 7.2653, 7.2648, 7.2662, 7.2676, 7.2671, 7.2664, 7.27, 7.2695, 7.2688, 7.2663, 7.2656, 7.2651, 7.2644, 7.2637, 7.2744, 7.2761, 7.2754, 7.2766, 7.2762, 7.2775, 7.2767, 7.2762, 7.2754, 7.2746, 7.274, 7.2734, 7.2746, 7.2739, 7.2752, 7.2745, 7.2719, 7.2713, 7.2705, 7.2719, 7.2734, 7.2728, 7.2724, 7.2717, 7.2691, 7.2683, 7.2676, 7.2669, 7.2662, 7.2658, 7.2672, 7.2726, 7.2719, 7.2714, 7.2708, 7.2716, 7.2712, 7.2706, 7.2722, 7.2715, 7.2711, 7.2725, 7.2719, 7.2713, 7.2707, 7.27, 7.2714, 7.2708, 7.2701, 7.2694, 7.2706, 7.2719, 7.2711, 7.2716, 7.2709, 7.2702, 7.2715, 7.2707, 7.2701, 7.2694, 7.2686, 7.2699, 7.2692, 7.2686, 7.2698, 7.2695, 7.2689, 7.2681, 7.2695, 7.2689, 7.2683, 7.2676, 7.2671, 7.2686, 7.2679, 7.2672, 7.2666, 7.266, 7.2654, 7.2649, 7.2663, 7.2655, 7.2672, 7.2686, 7.27, 7.2715, 7.2728, 7.2721, 7.2723, 7.2718, 7.2731, 7.2745, 7.274, 7.2747, 7.274, 7.2721, 7.2754, 7.2747, 7.2763, 7.2758, 7.2773, 7.2767, 7.2761, 7.2779, 7.2788, 7.2801, 7.2797, 7.2792, 7.2796, 7.2809, 7.2803, 7.2798, 7.2811, 7.2807, 7.2801, 7.2794, 7.279, 7.2783, 7.2777, 7.277, 7.2764, 7.2759, 7.2752, 7.2766, 7.2759, 7.2753, 7.2769, 7.2784, 7.2778, 7.2771, 7.2768, 7.2762, 7.2776, 7.2769, 7.2763, 7.2775, 7.277, 7.2766, 7.2759, 7.2752, 7.2765, 7.2758, 7.2755, 7.275, 7.2743, 7.2736, 7.2732, 7.2744, 7.2757, 7.2753, 7.2746, 7.2741, 7.2737, 7.2712, 7.2725, 7.272, 7.2733, 7.2732, 7.2725, 7.2718, 7.2711, 7.2723, 7.2741, 7.2735, 7.2729, 7.2722, 7.2717, 7.2711, 7.2709, 7.2702, 7.2695, 7.2698, 7.2694, 7.2687, 7.268, 7.2693, 7.2669, 7.2683, 7.2697, 7.2691, 7.2702, 7.2703, 7.2696, 7.269, 7.274, 7.2735, 7.2728, 7.2721, 7.2717, 7.2731, 7.2724, 7.2717, 7.2729, 7.2743, 7.2736, 7.2729, 7.2722, 7.2715, 7.2728, 7.2778, 7.2773, 7.2766, 7.2759, 7.2773, 7.2788, 7.2781, 7.2774, 7.2768, 7.2761, 7.2756, 7.2751, 7.2765, 7.2796, 7.2812, 7.2805, 7.28, 7.2793, 7.2805, 7.2798, 7.2791, 7.2803, 7.28, 7.2806, 7.2802, 7.2804, 7.2819, 7.2812, 7.2807, 7.2802, 7.2815, 7.2829, 7.2842, 7.2854, 7.2868, 7.2864, 7.2858, 7.2851, 7.2845, 7.2838, 7.2833, 7.2827, 7.2821, 7.2816, 7.2829, 7.2825, 7.2841, 7.2838, 7.2871, 7.2864, 7.2858, 7.2873, 7.2866, 7.2879, 7.2888, 7.2894, 7.2889, 7.2883, 7.2876, 7.2869, 7.2846, 7.2859, 7.2857, 7.285, 7.2863, 7.2857, 7.2851, 7.2844, 7.284, 7.2817, 7.281, 7.2823, 7.2816, 7.2829, 7.2827, 7.284, 7.2836, 7.2843, 7.2844, 7.2839, 7.2832, 7.2826, 7.2824, 7.2887, 7.2883, 7.2894, 7.2889, 7.29, 7.2905, 7.2917, 7.2911, 7.2906, 7.2902, 7.2896, 7.289, 7.2883, 7.2879, 7.2872, 7.2865, 7.2861, 7.2854, 7.2847, 7.2841, 7.2834, 7.2828, 7.2823, 7.2818, 7.2794, 7.2787, 7.278, 7.2775, 7.2769, 7.2762, 7.2756, 7.275, 7.2745, 7.274, 7.2735, 7.2712, 7.2708, 7.2721, 7.2714, 7.271, 7.2703, 7.2697, 7.2692, 7.2686, 7.2679, 7.2673, 7.2667, 7.266, 7.2655, 7.2649, 7.2645, 7.2641, 7.2635, 7.2632, 7.2644, 7.2655, 7.265, 7.2667, 7.2679, 7.2673, 7.2667, 7.2699, 7.273, 7.2725, 7.2738, 7.2733, 7.2745, 7.2758, 7.2808, 7.2813, 7.2826, 7.282, 7.2814, 7.2811, 7.2808, 7.2802, 7.2796, 7.2792, 7.2805, 7.2799, 7.2794, 7.279, 7.2785, 7.2785, 7.2797, 7.2808, 7.2803, 7.28, 7.2811, 7.2823, 7.2817, 7.2813, 7.2808, 7.2786, 7.2781, 7.2776, 7.2771, 7.2766, 7.2762, 7.2774, 7.2771, 7.2764, 7.2776, 7.2771, 7.2768, 7.2762, 7.2773, 7.2766, 7.276, 7.2754, 7.2748, 7.2742, 7.2738, 7.2751, 7.2729, 7.2723, 7.2721, 7.2716, 7.2711, 7.2706, 7.27, 7.2694, 7.2725, 7.2719, 7.2729, 7.2724, 7.2719, 7.2715, 7.2711, 7.2722, 7.2733, 7.2729, 7.2723, 7.2718, 7.2712, 7.2709, 7.2705, 7.2699, 7.2711, 7.2705, 7.2717, 7.2729, 7.2723, 7.2718, 7.273, 7.2742, 7.272, 7.2714, 7.2726, 7.2725, 7.2719, 7.2723, 7.2701, 7.2695, 7.2708, 7.2702, 7.2714, 7.2708, 7.272, 7.2731, 7.2725, 7.2747, 7.2759, 7.2758, 7.2752, 7.2763, 7.2761, 7.2756, 7.275, 7.2761, 7.2772, 7.2766, 7.2762, 7.2773, 7.2769, 7.278, 7.2774, 7.277, 7.2765, 7.2758, 7.2772, 7.2783, 7.2778, 7.2771, 7.2766, 7.2759, 7.2753, 7.2764, 7.2774, 7.2769, 7.2763, 7.2773, 7.2786, 7.2779, 7.2772, 7.2767, 7.276, 7.2753, 7.2747, 7.2741, 7.2752, 7.2746, 7.2741, 7.2737, 7.2731, 7.2725, 7.2739, 7.2736, 7.2731, 7.2725, 7.272, 7.2715, 7.2726, 7.2731, 7.2725, 7.2705, 7.2699, 7.2695, 7.2707, 7.272, 7.2714, 7.2726, 7.2721, 7.2718, 7.2714, 7.2726, 7.2722, 7.2717, 7.2711, 7.2705, 7.2705, 7.27, 7.2695, 7.2691, 7.2726, 7.272, 7.2714, 7.2726, 7.272, 7.2733, 7.2745, 7.274, 7.2737, 7.2731, 7.2728, 7.2723, 7.2718, 7.2712, 7.2708, 7.2703, 7.2698, 7.2711, 7.2707, 7.2718, 7.2713, 7.2724, 7.2738, 7.2734, 7.2728, 7.2723, 7.2717, 7.2729, 7.2723, 7.2719, 7.273, 7.2725, 7.2722, 7.2716, 7.2727, 7.2722, 7.2733, 7.2713, 7.2721, 7.2715, 7.271, 7.2706, 7.27, 7.2694, 7.2688, 7.2683, 7.2677, 7.2672, 7.2667, 7.2663, 7.2658, 7.2652, 7.2664, 7.2658, 7.2653, 7.2648, 7.2644, 7.2639, 7.264, 7.2636, 7.2635, 7.263, 7.2624, 7.2619, 7.2639, 7.2652, 7.2677, 7.2739, 7.2753, 7.2747, 7.2758, 7.2752, 7.2748, 7.2742, 7.2789, 7.2785, 7.2779, 7.2808, 7.2802, 7.2802, 7.2796, 7.2808, 7.2802, 7.2814, 7.2808, 7.2803, 7.2797, 7.2804, 7.2816, 7.288, 7.2874, 7.287, 7.2864, 7.2858, 7.2852, 7.2853, 7.2847, 7.2842, 7.2838, 7.2836, 7.283, 7.2824, 7.2818, 7.2814, 7.2826, 7.2822, 7.2818, 7.2814, 7.2826, 7.2837, 7.2831, 7.2829, 7.2824, 7.2819, 7.2814, 7.2811, 7.2808, 7.2787, 7.2784, 7.2778, 7.2776, 7.2789, 7.2783, 7.2777, 7.2773, 7.2767, 7.2778, 7.2772, 7.2767, 7.2763, 7.2758, 7.2737, 7.2734, 7.2729, 7.2725, 7.272, 7.2732, 7.2716, 7.2726, 7.2721, 7.2717, 7.2727, 7.2741, 7.2752, 7.2746, 7.2742, 7.2744, 7.2748, 7.2746, 7.274, 7.2737, 7.2734, 7.2745, 7.2755, 7.2751, 7.273, 7.2724, 7.2719, 7.273, 7.2726, 7.2721, 7.2715, 7.271, 7.2705, 7.2701, 7.2695, 7.2692, 7.269, 7.2685, 7.2696, 7.269, 7.2685, 7.2696, 7.2707, 7.2704, 7.27, 7.2694, 7.2688, 7.2682, 7.2677, 7.2672, 7.2667, 7.2662, 7.2673, 7.2668, 7.2666, 7.266, 7.2655, 7.2652, 7.2667, 7.2661, 7.2676, 7.2671, 7.2681, 7.2693, 7.2706, 7.2716, 7.2711, 7.2707, 7.2701, 7.2697, 7.2693, 7.2704, 7.2716, 7.2711, 7.2705, 7.2701, 7.2697, 7.2693, 7.2688, 7.2692, 7.2687, 7.2682, 7.2677, 7.2687, 7.2667, 7.2663, 7.2674, 7.2668, 7.2664, 7.2658, 7.2671, 7.2666, 7.2662, 7.2661, 7.2674, 7.2685, 7.268, 7.2674, 7.2688, 7.2706, 7.2704, 7.2715, 7.2709, 7.272, 7.2714, 7.2712, 7.2708, 7.2703, 7.2697, 7.2691, 7.2704, 7.2714, 7.2708, 7.2702, 7.2697, 7.2694, 7.2705, 7.27, 7.2698, 7.2692, 7.2687, 7.2683, 7.2678, 7.2688, 7.2684, 7.2678, 7.2689, 7.2701, 7.2698, 7.2709, 7.2716, 7.2727, 7.2723, 7.2736, 7.2733, 7.2744, 7.2739, 7.2733, 7.2745, 7.2742, 7.2738, 7.2733, 7.2744, 7.2754, 7.2752, 7.2747, 7.2741, 7.2736, 7.2747, 7.2743, 7.274, 7.2735, 7.2731, 7.2741, 7.2737, 7.2732, 7.2727, 7.2726, 7.272, 7.2714, 7.271, 7.2704, 7.2701, 7.2713, 7.2708, 7.2704, 7.2714, 7.2711, 7.2707, 7.2702, 7.2683, 7.2677, 7.2672, 7.2671, 7.2667, 7.2661, 7.2644, 7.2639, 7.2649, 7.2661, 7.2658, 7.2653, 7.2647, 7.2643, 7.2639, 7.2636, 7.2646, 7.2631, 7.2626, 7.2639, 7.265, 7.2646, 7.2642, 7.2623, 7.2618, 7.2614, 7.2626, 7.2621, 7.2616, 7.2613, 7.261, 7.2621, 7.2615, 7.2625, 7.262, 7.2631, 7.2629, 7.2624, 7.2626, 7.2622, 7.2617, 7.2615, 7.2612, 7.2609, 7.2605, 7.2599, 7.2595, 7.2622, 7.2652, 7.2649, 7.2646, 7.264, 7.2635, 7.2631, 7.2627, 7.2623, 7.265, 7.2645, 7.2631, 7.2628, 7.2624, 7.2621, 7.2619, 7.2615, 7.2613, 7.2609, 7.2619, 7.2615, 7.261, 7.2607, 7.2602, 7.2598, 7.2593, 7.2606, 7.2601, 7.2595, 7.2605, 7.2616, 7.2612, 7.2626, 7.2627, 7.2623, 7.2633, 7.2629, 7.2626, 7.2621, 7.2615, 7.2626, 7.2622, 7.2631, 7.2626, 7.2622, 7.2634, 7.263, 7.2642, 7.2651, 7.2661, 7.2659, 7.2671, 7.2666, 7.2661, 7.2671, 7.2682, 7.2678, 7.2673, 7.2668, 7.268, 7.2675, 7.267, 7.2681, 7.2676, 7.2671, 7.2666, 7.2661, 7.2656, 7.2668, 7.2663, 7.2658, 7.2668, 7.2666, 7.2661, 7.2656, 7.2666, 7.2661, 7.2656, 7.2652, 7.2647, 7.2641, 7.2622, 7.2616, 7.2611, 7.2605, 7.2599, 7.2593, 7.2589, 7.2584, 7.2579, 7.2575, 7.2586, 7.2596, 7.2591, 7.2589, 7.2602, 7.2598, 7.2595, 7.2592, 7.2587, 7.2584, 7.2593, 7.2588, 7.2594, 7.2591, 7.2588, 7.2585, 7.2579, 7.2579, 7.2576, 7.2571, 7.2567, 7.2562, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2549, 7.2546, 7.2543, 7.2538, 7.2548, 7.2559, 7.2555, 7.2551, 7.2548, 7.2559, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2545, 7.2555, 7.2564, 7.2574, 7.257, 7.2582, 7.2577, 7.2573, 7.2569, 7.2582, 7.2577, 7.2559, 7.2554, 7.2551, 7.2562, 7.2558, 7.257, 7.2564, 7.2561, 7.2557, 7.2615, 7.2615, 7.261, 7.2635, 7.263, 7.2624, 7.2634, 7.2629, 7.2624, 7.2606, 7.2602, 7.2597, 7.2592, 7.2588, 7.2583, 7.2578, 7.2559, 7.2555, 7.2552, 7.2562, 7.2559, 7.2558, 7.2567, 7.2577, 7.2587, 7.2583, 7.2578, 7.2573, 7.2568, 7.2578, 7.2574, 7.2569, 7.2582, 7.2578, 7.2573, 7.2583, 7.2593, 7.2587, 7.2582, 7.2577, 7.2559, 7.2554, 7.2563, 7.2558, 7.2568, 7.2566, 7.2562, 7.2558, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2561, 7.2556, 7.2551, 7.2547, 7.2529, 7.2524, 7.252, 7.2529, 7.2524, 7.2536, 7.2531, 7.2526, 7.2535, 7.2541, 7.2536, 7.2547, 7.2552, 7.2548, 7.2545, 7.2544, 7.2544, 7.2539, 7.2534, 7.2544, 7.2541, 7.2537, 7.2535, 7.2531, 7.2527, 7.2522, 7.2533, 7.2528, 7.2523, 7.2518, 7.2528, 7.2537, 7.2532, 7.2529, 7.2537, 7.2532, 7.2542, 7.2539, 7.2535, 7.2532, 7.253, 7.2525, 7.2539, 7.2534, 7.2543, 7.2552, 7.2549, 7.2544, 7.2539, 7.2549, 7.256, 7.2556, 7.2567, 7.2569, 7.2564, 7.2575, 7.2571, 7.2568, 7.2564, 7.256, 7.2557, 7.2567, 7.2562, 7.2558, 7.2554, 7.2551, 7.2546, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2534, 7.253, 7.2529, 7.2524, 7.2539, 7.2555, 7.2557, 7.2553, 7.2563, 7.2573, 7.2569, 7.2565, 7.2562, 7.2557, 7.2553, 7.2549, 7.2553, 7.2549, 7.2545, 7.2541, 7.2538, 7.2541, 7.2536, 7.2531, 7.2563, 7.2571, 7.2569, 7.2564, 7.2573, 7.2568, 7.2564, 7.2561, 7.2562, 7.2572, 7.2591, 7.2595, 7.2612, 7.2607, 7.2602, 7.2597, 7.2595, 7.2591, 7.2587, 7.2574, 7.2585, 7.2582, 7.2577, 7.2586, 7.2595, 7.2594, 7.2589, 7.2586, 7.2584, 7.2593, 7.2589, 7.2586, 7.2584, 7.258, 7.2593, 7.2589, 7.2584, 7.2584, 7.2593, 7.2588, 7.2584, 7.2594, 7.2576, 7.2586, 7.2582, 7.2577, 7.2588, 7.2584, 7.2581, 7.262, 7.2615, 7.2611, 7.261, 7.2611, 7.2612, 7.2594, 7.2603, 7.2612, 7.2607, 7.2617, 7.2612, 7.2608, 7.2604, 7.2651, 7.2647, 7.2656, 7.2693, 7.2689, 7.2686, 7.2681, 7.2677, 7.2672, 7.2702, 7.2711, 7.2735, 7.2731, 7.2754, 7.2751, 7.2747, 7.2757, 7.278, 7.2776, 7.2784, 7.2779, 7.2774, 7.2771, 7.2795, 7.2793, 7.2788, 7.2798, 7.2797, 7.2792, 7.279, 7.2788, 7.2798, 7.2795, 7.2792, 7.28, 7.2837, 7.2833, 7.2828, 7.283, 7.2813, 7.2808, 7.2817, 7.2813, 7.2808, 7.2805, 7.2802, 7.2798, 7.2787, 7.2784, 7.2779, 7.2776, 7.2785, 7.2794, 7.279, 7.2813, 7.2822, 7.2817, 7.2813, 7.281, 7.2807, 7.2805, 7.2803, 7.2799, 7.2808, 7.2803, 7.2813, 7.2809, 7.2804, 7.28, 7.2783, 7.2778, 7.2773, 7.2768, 7.2766, 7.2761, 7.2758, 7.2753, 7.2748, 7.2746, 7.2741, 7.2737, 7.2733, 7.273, 7.2725, 7.2723, 7.2718, 7.2713, 7.271, 7.2705, 7.2701, 7.2696, 7.2693, 7.2688, 7.2684, 7.268, 7.2689, 7.2672, 7.2667, 7.2665, 7.2673, 7.2668, 7.2663, 7.266, 7.2669, 7.2666, 7.2675, 7.267, 7.2668, 7.2663, 7.2658, 7.2653, 7.2662, 7.2658, 7.2654, 7.2656, 7.2653, 7.2649, 7.2645, 7.2641, 7.2636, 7.2645, 7.264, 7.2623, 7.2631, 7.2639, 7.2636, 7.2631, 7.2626, 7.2634, 7.2629, 7.2625, 7.2621, 7.2617, 7.2613, 7.2609, 7.2604, 7.26, 7.2596, 7.2593, 7.2588, 7.2583, 7.2578, 7.2573, 7.2582, 7.2592, 7.259, 7.2598, 7.2593, 7.2589, 7.2584, 7.258, 7.2578, 7.2575, 7.257, 7.2566, 7.2561, 7.2556, 7.2552, 7.2561, 7.2557, 7.256, 7.2556, 7.2552, 7.255, 7.2547, 7.2543, 7.2539, 7.2549, 7.2559, 7.2555, 7.2551, 7.2548, 7.2543, 7.2539, 7.2537, 7.2533, 7.2529, 7.2524, 7.2519, 7.2528, 7.2525, 7.251, 7.2505, 7.25, 7.2497, 7.2493, 7.2488, 7.2486, 7.2495, 7.2493, 7.2502, 7.2499, 7.2496, 7.2505, 7.2503, 7.25, 7.2496, 7.2495, 7.2491, 7.25, 7.2496, 7.2506, 7.2502, 7.2498, 7.2493, 7.2502, 7.2497, 7.2492, 7.25, 7.251, 7.2507, 7.2517, 7.2513, 7.2528, 7.2524, 7.2519, 7.2516, 7.2513, 7.251, 7.2507, 7.2504, 7.25, 7.2497, 7.2494, 7.2489, 7.2498, 7.2507, 7.2516, 7.2525, 7.2521, 7.2516, 7.2524, 7.2522, 7.2518, 7.2513, 7.2521, 7.2531, 7.2527, 7.2522, 7.2519, 7.2515, 7.2511, 7.2507, 7.2524, 7.2519, 7.2528, 7.2524, 7.252, 7.2516, 7.2527, 7.2522, 7.2519, 7.2517, 7.2526, 7.2521, 7.2518, 7.2516, 7.2512, 7.251, 7.2508, 7.2505, 7.2523, 7.2519, 7.2515, 7.2512, 7.2508, 7.2504, 7.2502, 7.2512, 7.2508, 7.2504, 7.2501, 7.2502, 7.2498, 7.2493, 7.2489, 7.2498, 7.2495, 7.2491, 7.2486, 7.2482, 7.2478, 7.2474, 7.2471, 7.2469, 7.2467, 7.2465, 7.2461, 7.247, 7.2479, 7.2503, 7.2499, 7.2494, 7.249, 7.2486, 7.2482, 7.2491, 7.2487, 7.2483, 7.2479, 7.2475, 7.2472, 7.2468, 7.2464, 7.2461, 7.2457, 7.2452, 7.2448, 7.2445, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2446, 7.2442, 7.2438, 7.2447, 7.2443, 7.2439, 7.2437, 7.2432, 7.244, 7.2453, 7.2448, 7.2443, 7.2438, 7.2434, 7.2443, 7.2441, 7.2437, 7.2446, 7.2454, 7.245, 7.2448, 7.2447, 7.2445, 7.244, 7.2462, 7.2458, 7.2453, 7.245, 7.2448, 7.2444, 7.244, 7.2463, 7.2448, 7.2457, 7.2454, 7.245, 7.2446, 7.243, 7.2427, 7.2449, 7.2457, 7.2453, 7.2461, 7.2457, 7.2466, 7.2475, 7.2471, 7.2473, 7.2469, 7.2477, 7.2474, 7.2496, 7.2491, 7.2512, 7.251, 7.2506, 7.249, 7.2485, 7.2481, 7.2479, 7.2488, 7.2484, 7.2493, 7.2492, 7.2489, 7.2498, 7.2494, 7.2504, 7.2501, 7.2497, 7.2494, 7.2522, 7.2532, 7.2541, 7.2527, 7.2525, 7.2521, 7.2549, 7.2545, 7.2554, 7.255, 7.2558, 7.2566, 7.2563, 7.2559, 7.2555, 7.2551, 7.255, 7.2546, 7.2549, 7.2546, 7.2544, 7.2562, 7.2572, 7.2568, 7.2564, 7.2561, 7.2557, 7.2554, 7.255, 7.2546, 7.2543, 7.2551, 7.2548, 7.2556, 7.2565, 7.2563, 7.2559, 7.256, 7.2555, 7.2551, 7.2547, 7.2555, 7.2551, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.2529, 7.2539, 7.2535, 7.2531, 7.2527, 7.2527, 7.2526, 7.2534, 7.253, 7.2538, 7.2534, 7.2543, 7.2539, 7.2536, 7.2545, 7.2541, 7.2525, 7.2521, 7.2542, 7.2538, 7.2534, 7.2537, 7.2536, 7.2532, 7.253, 7.2527, 7.2525, 7.2521, 7.2518, 7.2518, 7.2514, 7.251, 7.2506, 7.2514, 7.251, 7.2506, 7.2514, 7.2525, 7.2533, 7.2529, 7.2525, 7.2522, 7.253, 7.2525, 7.2521, 7.2541, 7.2539, 7.2536, 7.2533, 7.2528, 7.2535, 7.2531, 7.2528, 7.2549, 7.2559, 7.2554, 7.255, 7.2547, 7.2532, 7.2528, 7.2524, 7.252, 7.2518, 7.2526, 7.2522, 7.252, 7.2528, 7.2524, 7.252, 7.2529, 7.2525, 7.252, 7.2516, 7.2512, 7.2497, 7.2493, 7.2488, 7.2485, 7.2481, 7.2477, 7.2474, 7.247, 7.2466, 7.2462, 7.2457, 7.2443, 7.2451, 7.2447, 7.2443, 7.2438, 7.2446, 7.2456, 7.2465, 7.246, 7.2456, 7.2452, 7.2449, 7.2445, 7.2441, 7.2437, 7.2444, 7.244, 7.2436, 7.2431, 7.2428, 7.2425, 7.2422, 7.2418, 7.2444, 7.2444, 7.244, 7.2438, 7.2434, 7.2443, 7.244, 7.2436, 7.2432, 7.2435, 7.2444, 7.244, 7.2439, 7.2424, 7.2419, 7.2415, 7.2423, 7.2431, 7.244, 7.2437, 7.2446, 7.2442, 7.245, 7.2447, 7.2444, 7.2466, 7.2474, 7.2473, 7.2482, 7.2489, 7.2485, 7.2481, 7.2476, 7.2472, 7.2469, 7.2477, 7.2473, 7.2471, 7.2467, 7.2464, 7.2508, 7.2553, 7.2549, 7.2546, 7.2555, 7.2551, 7.2547, 7.2532, 7.253, 7.2527, 7.2526, 7.2522, 7.2517, 7.2525, 7.2522, 7.253, 7.2526, 7.2535, 7.2544, 7.2541, 7.2548, 7.2545, 7.2542, 7.2537, 7.2545, 7.2554, 7.2562, 7.2571, 7.2578, 7.2587, 7.2595, 7.259, 7.2586, 7.2594, 7.2592, 7.2601, 7.2588, 7.2597, 7.2604, 7.2605, 7.2601, 7.2609, 7.2618, 7.2616, 7.2612, 7.261, 7.2606, 7.2603, 7.2611, 7.2608, 7.2629, 7.2626, 7.2622, 7.2631, 7.2629, 7.2645, 7.2641, 7.2637, 7.2633, 7.2629, 7.2627, 7.2624, 7.2632, 7.2627, 7.2623, 7.2619, 7.2615, 7.2611, 7.2619, 7.2604, 7.26, 7.2596, 7.2593, 7.2589, 7.2603, 7.2599, 7.2584, 7.258, 7.2576, 7.2572, 7.257, 7.2566, 7.2551, 7.2547, 7.2543, 7.2543, 7.2541, 7.2537, 7.2533, 7.253, 7.2526, 7.2534, 7.2531, 7.2527, 7.2531, 7.253, 7.2527, 7.2523, 7.2532, 7.2541, 7.2537, 7.2534, 7.2533, 7.2529, 7.2537, 7.2546, 7.2542, 7.255, 7.2537, 7.2533, 7.2533, 7.2531, 7.2527, 7.2523, 7.2531, 7.2528, 7.2524, 7.2531, 7.2535, 7.2531, 7.2538, 7.2545, 7.2553, 7.2552, 7.2548, 7.2545, 7.2541, 7.2538, 7.2535, 7.2556, 7.2553, 7.2551, 7.2559, 7.2555, 7.2552, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2565, 7.2572, 7.2568, 7.2564, 7.256, 7.2557, 7.2553, 7.2561, 7.2558, 7.2565, 7.2561, 7.2558, 7.2555, 7.2553, 7.255, 7.2548, 7.2544, 7.2551, 7.2559, 7.2558, 7.2566, 7.2576, 7.2573, 7.257, 7.2578, 7.262, 7.2617, 7.2613, 7.2613, 7.2609, 7.2605, 7.2602, 7.2609, 7.2605, 7.2613, 7.2609, 7.2676, 7.2673, 7.2669, 7.2665, 7.2661, 7.2668, 7.2664, 7.266, 7.2656, 7.2652, 7.2648, 7.2645, 7.2642, 7.2638, 7.2635, 7.2632, 7.265, 7.2646, 7.2643, 7.2651, 7.2647, 7.2645, 7.2642, 7.2638, 7.2634, 7.2631, 7.2628, 7.2625, 7.2622, 7.262, 7.2617, 7.2614, 7.261, 7.2606, 7.2602, 7.2598, 7.2597, 7.2593, 7.2589, 7.259, 7.2597, 7.2593, 7.2589, 7.2587, 7.2586, 7.2594, 7.2593, 7.2592, 7.26, 7.2596, 7.2592, 7.2588, 7.259, 7.2586, 7.2594, 7.259, 7.2586, 7.2584, 7.2592, 7.26, 7.2597, 7.2605, 7.2601, 7.2598, 7.2605, 7.263, 7.2638, 7.2645, 7.2642, 7.265, 7.265, 7.2646, 7.2642, 7.2638, 7.2636, 7.2632, 7.2661, 7.2669, 7.2665, 7.2661, 7.267, 7.2677, 7.2685, 7.2693, 7.2689, 7.2685, 7.2694, 7.2691, 7.2699, 7.2695, 7.2712, 7.2708, 7.2705, 7.2701, 7.2699, 7.2706, 7.2703, 7.2722, 7.2718, 7.2716, 7.2712, 7.2708, 7.2704, 7.27, 7.2696, 7.2693, 7.2701, 7.2697, 7.2693, 7.2689, 7.2685, 7.2682, 7.2679, 7.2676, 7.2683, 7.269, 7.2697, 7.2684, 7.268, 7.2678, 7.2688, 7.2686, 7.2684, 7.268, 7.2677, 7.2673, 7.2669, 7.2666, 7.2673, 7.2671, 7.2668, 7.2664, 7.2717, 7.2714, 7.271, 7.2707, 7.2703, 7.2689, 7.2685, 7.2692, 7.2688, 7.2696, 7.2693, 7.269, 7.2686, 7.2684, 7.2691, 7.2699, 7.2697, 7.2705, 7.2701, 7.2697, 7.2693, 7.269, 7.2698, 7.2694, 7.2691, 7.2689, 7.2685, 7.2681, 7.2677, 7.2676, 7.2674, 7.267, 7.2668, 7.2664, 7.266, 7.2657, 7.2654, 7.265, 7.2648, 7.2655, 7.2668, 7.2664, 7.2672, 7.2669, 7.2678, 7.2674, 7.2671, 7.2667, 7.2664, 7.2665, 7.2661, 7.2657, 7.2655, 7.2651, 7.2718, 7.2717, 7.2704, 7.27, 7.2697, 7.2723, 7.2719, 7.2716, 7.2747, 7.2744, 7.2742, 7.2738, 7.2736, 7.2732, 7.2728, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.2709, 7.2706, 7.2715, 7.2712, 7.2709, 7.2706, 7.2702, 7.2709, 7.2716, 7.2771, 7.2779, 7.2783, 7.278, 7.2777, 7.2774, 7.2772, 7.2769, 7.2767, 7.2764, 7.2761, 7.2757, 7.2753, 7.2749, 7.2747, 7.2754, 7.2762, 7.2748, 7.2744, 7.2742, 7.2739, 7.2735, 7.2732, 7.2728, 7.2732, 7.2729, 7.2725, 7.2722, 7.2718, 7.2736, 7.2733, 7.2731, 7.2727, 7.2724, 7.2731, 7.2728, 7.2737, 7.2733, 7.2729, 7.2725, 7.2723, 7.2721, 7.2718, 7.2715, 7.2712, 7.2709, 7.2715, 7.2712, 7.2709, 7.2705, 7.2717, 7.2714, 7.2722, 7.2725, 7.2721, 7.2718, 7.2726, 7.2733, 7.2731, 7.2727, 7.2723, 7.2731, 7.2727, 7.2723, 7.2731, 7.2728, 7.2726, 7.2722, 7.2718, 7.2718, 7.2716, 7.2703, 7.27, 7.2697, 7.2693, 7.269, 7.2686, 7.2682, 7.2679, 7.2675, 7.2673, 7.267, 7.2677, 7.2685, 7.2682, 7.274, 7.2747, 7.2745, 7.2741, 7.2737, 7.2734, 7.2731, 7.2718, 7.2704, 7.2701, 7.2697, 7.2693, 7.269, 7.2688, 7.2687, 7.2683, 7.2679, 7.2687, 7.2683, 7.2679, 7.2675, 7.2671, 7.2668, 7.2664, 7.2676, 7.2673, 7.267, 7.2666, 7.2664, 7.2671, 7.2667, 7.2664, 7.2661, 7.2658, 7.2668, 7.2655, 7.2652, 7.2661, 7.2657, 7.2654, 7.2652, 7.2659, 7.2649, 7.2646, 7.2653, 7.2649, 7.2647, 7.2645, 7.2641, 7.2648, 7.2644, 7.2641, 7.2637, 7.2633, 7.2629, 7.2625, 7.2621, 7.2628, 7.2625, 7.2622, 7.2618, 7.2614, 7.2611, 7.261, 7.2606, 7.2603, 7.26, 7.2605, 7.2609, 7.2605, 7.2604, 7.26, 7.2596, 7.2592, 7.259, 7.2581, 7.2579, 7.2586, 7.2593, 7.259, 7.2588, 7.2597, 7.2593, 7.26, 7.2607, 7.2604, 7.26, 7.2607, 7.2603, 7.2599, 7.2606, 7.2603, 7.2602, 7.2609, 7.2616, 7.2613, 7.2621, 7.2619, 7.2616, 7.2618, 7.2625, 7.2622, 7.2618, 7.2618, 7.2632, 7.2629, 7.2626, 7.2622, 7.2626, 7.2623, 7.262, 7.2621, 7.2618, 7.2614, 7.2622, 7.263, 7.2626, 7.2623, 7.2625, 7.2621, 7.2617, 7.2624, 7.2621, 7.2628, 7.2625, 7.2628, 7.2627, 7.2624, 7.2632, 7.263, 7.2639, 7.2637, 7.2634, 7.2641, 7.2638, 7.2635, 7.2642, 7.2649, 7.2646, 7.2644, 7.2642, 7.2641, 7.2638, 7.2637, 7.2624, 7.2621, 7.2618, 7.2616, 7.2623, 7.2621, 7.2617, 7.2614, 7.2623, 7.263, 7.2638, 7.2624, 7.2632, 7.2639, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.2663, 7.267, 7.2677, 7.2675, 7.2733, 7.273, 7.2726, 7.2732, 7.2728, 7.2725, 7.2732, 7.273, 7.2726, 7.2733, 7.273, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.271, 7.2706, 7.2703, 7.2707, 7.2703, 7.271, 7.2707, 7.2706, 7.2713, 7.27, 7.2708, 7.2705, 7.2712, 7.2709, 7.2717, 7.2704, 7.2702, 7.2699, 7.2696, 7.2694, 7.269, 7.2687, 7.2683, 7.268, 7.2677, 7.2691, 7.2688, 7.2696, 7.2692, 7.2699, 7.2696, 7.2704, 7.2701, 7.2698, 7.2694, 7.2701, 7.2698, 7.2695, 7.2691, 7.2689, 7.2687, 7.2691, 7.2692, 7.2699, 7.2696, 7.2695, 7.2692, 7.269, 7.2693, 7.2689, 7.2686, 7.2693, 7.2689, 7.2686, 7.2682, 7.269, 7.2692, 7.2688, 7.2684, 7.2681, 7.2688, 7.2684, 7.268, 7.2678, 7.2674, 7.2671, 7.2667, 7.2663, 7.267, 7.2657, 7.2654, 7.2651, 7.2648, 7.2646, 7.2643, 7.2639, 7.2637, 7.2635, 7.2632, 7.264, 7.2637, 7.2634, 7.2632, 7.2628, 7.2635, 7.2641, 7.2648, 7.2645, 7.2642, 7.2639, 7.2645, 7.2642, 7.2639, 7.2646, 7.2633, 7.263, 7.2641, 7.2649, 7.2648, 7.2645, 7.2641, 7.2638, 7.2635, 7.2632, 7.2628, 7.2626, 7.2623, 7.2622, 7.2629, 7.2627, 7.2623, 7.263, 7.2637, 7.2634, 7.2641, 7.2638, 7.2636, 7.2633, 7.2631, 7.2627, 7.2625, 7.2632, 7.2628, 7.2625, 7.2623, 7.262, 7.2626, 7.2624, 7.2621, 7.2618, 7.2625, 7.2632, 7.263, 7.2627, 7.2633, 7.263, 7.2627, 7.2624, 7.2621, 7.2618, 7.2615, 7.2622, 7.263, 7.2637, 7.2635, 7.2631, 7.2628, 7.2625, 7.2633, 7.264, 7.2637, 7.2634, 7.263, 7.2626, 7.2622, 7.2618, 7.2615, 7.2613, 7.2609, 7.2605, 7.2612, 7.2609, 7.2606, 7.2603, 7.26, 7.2596, 7.2592, 7.2588, 7.2586, 7.2593, 7.26, 7.2625, 7.2621, 7.2618, 7.2624, 7.2622, 7.2629, 7.2626, 7.2622, 7.2628, 7.2635, 7.2641, 7.2639, 7.2636, 7.2643, 7.265, 7.2646, 7.2642, 7.2649, 7.2645, 7.2642, 7.2639, 7.2646, 7.2643, 7.265, 7.2647, 7.2675, 7.2681, 7.2678, 7.2675, 7.2681, 7.2678, 7.2675, 7.2671, 7.2668, 7.2665, 7.2661, 7.2658, 7.2655, 7.2662, 7.2658, 7.2656, 7.2653, 7.2659, 7.2656, 7.2653, 7.2649, 7.2646, 7.2653, 7.2649, 7.2655, 7.2662, 7.2668, 7.2665, 7.2661, 7.2657, 7.2653, 7.265, 7.265, 7.2648, 7.2645, 7.2642, 7.2639, 7.2636, 7.2633, 7.263, 7.2627, 7.2634, 7.2641, 7.2653, 7.2651, 7.2654, 7.2662, 7.2658, 7.2668, 7.2665, 7.2673, 7.267, 7.2668, 7.2666, 7.2663, 7.2651, 7.2648, 7.2645, 7.2642, 7.2639, 7.2646, 7.266, 7.2656, 7.2653, 7.264, 7.2637, 7.2644, 7.2642, 7.2638, 7.2635, 7.2633, 7.265, 7.2657, 7.2664, 7.2661, 7.2659, 7.2666, 7.2673, 7.267, 7.2668, 7.2665, 7.2672, 7.2669, 7.2666, 7.2675, 7.2683, 7.2693], '192.168.122.119': [11.1458, 9.3222, 8.0368, 7.4878, 6.1125, 6.2764, 6.1505, 6.1014, 6.6108, 6.5736, 6.9628, 6.9601, 6.8781, 7.1709, 7.0542, 7.0211, 6.9493, 6.8548, 6.8132, 6.7333, 6.6898, 6.6908, 6.6342, 6.5946, 6.5736, 6.5474, 6.5153, 6.5013, 6.5635, 6.5391, 6.5211, 6.7801, 6.9324, 7.0575, 7.0751, 7.0441, 7.0037, 7.0082, 6.9776, 6.9642, 6.9255, 6.8895, 6.8577, 6.8354, 6.9274, 6.9028, 7.0044, 6.9797, 6.9472, 7.0244, 6.9959, 6.9969, 6.977, 6.9814, 7.0511, 7.0214, 6.9932, 6.966, 6.9439, 6.9178, 6.9024, 6.9649, 7.0274, 7.087, 7.1499, 7.2059, 7.2607, 7.2408, 7.2142, 7.1943, 7.1925, 7.1764, 7.2305, 7.2813, 7.2543, 7.2327, 7.2264, 7.269, 7.3148, 7.3374, 7.3255, 7.3011, 7.276, 7.2617, 7.2397, 7.2176, 7.1982, 7.1785, 7.1643, 7.2035, 7.2039, 7.1901, 7.2261, 7.2129, 7.1931, 7.1799, 7.174, 7.1547, 7.1912, 7.182, 7.1643, 7.2002, 7.1826, 7.1739, 7.2573, 7.2529, 7.2374, 7.2753, 7.2613, 7.2429, 7.2774, 7.2619, 7.2473, 7.2336, 7.2168, 7.3011, 7.3425, 7.3793, 7.3628, 7.3468, 7.3293, 7.3148, 7.3243, 7.3125, 7.344, 7.3295, 7.3999, 7.3846, 7.3727, 7.3606, 7.3491, 7.3335, 7.3191, 7.3049, 7.2903, 7.276, 7.2262, 7.253, 7.2862, 7.2754, 7.2627, 7.2511, 7.2389, 7.2277, 7.2519, 7.2477, 7.2385, 7.2268, 7.2512, 7.2416, 7.2376, 7.2279, 7.251, 7.2394, 7.2278, 7.2518, 7.2727, 7.2644, 7.2528, 7.2424, 7.2348, 7.2282, 7.2513, 7.2396, 7.2308, 7.2211, 7.2123, 7.2017, 7.1939, 7.184, 7.174, 7.1635, 7.1841, 7.2107, 7.203, 7.1969, 7.1888, 7.1847, 7.1755, 7.1676, 7.1867, 7.1775, 7.1696, 7.19, 7.1805, 7.1738, 7.2338, 7.2526, 7.2448, 7.2351, 7.2259, 7.2463, 7.4137, 7.4195, 7.409, 7.3996, 7.4126, 7.4034, 7.3924, 7.3822, 7.3728, 7.3633, 7.3548, 7.3648, 7.3733, 7.3632, 7.3586, 7.3514, 7.3441, 7.3382, 7.3081, 7.3251, 7.3189, 7.3098, 7.302, 7.2924, 7.2869, 7.3014, 7.2919, 7.2845, 7.3033, 7.2941, 7.2877, 7.2813, 7.2733, 7.2673, 7.2808, 7.2752, 7.2701, 7.2417, 7.236, 7.2276, 7.2196, 7.2342, 7.2255, 7.2276, 7.2003, 7.1929, 7.187, 7.182, 7.1754, 7.172, 7.1687, 7.1616, 7.1539, 7.1464, 7.1415, 7.1365, 7.1298, 7.1229, 7.1174, 7.1143, 7.1094, 7.1237, 7.1371, 7.1328, 7.126, 7.1197, 7.1132, 7.1062, 7.0997, 7.0929, 7.1071, 7.1006, 7.0958, 7.0915, 7.0881, 7.0823, 7.0776, 7.0727, 7.0666, 7.0801, 7.0734, 7.0868, 7.0799, 7.0745, 7.068, 7.063, 7.0789, 7.0736, 7.0671, 7.0612, 7.0556, 7.052, 7.0293, 7.0414, 7.036, 7.0306, 7.0253, 7.0197, 7.014, 7.008, 7.0088, 7.0041, 7.0165, 7.0118, 7.0421, 7.0527, 7.0477, 7.0429, 7.0376, 7.0322, 7.0451, 7.0396, 7.0864, 7.0809, 7.0756, 7.088, 7.0828, 7.0952, 7.0899, 7.0998, 7.1115, 7.1076, 7.1023, 7.097, 7.1086, 7.1056, 7.0998, 7.0942, 7.0909, 7.0944, 7.1053, 7.1009, 7.0974, 7.0935, 7.0887, 7.089, 7.0837, 7.0789, 7.09, 7.1017, 7.0819, 7.0916, 7.0715, 7.0723, 7.0838, 7.0968, 7.0939, 7.0909, 7.0855, 7.0805, 7.0796, 7.0746, 7.0698, 7.0804, 7.0763, 7.0714, 7.0667, 7.0622, 7.0587, 7.0537, 7.0497, 7.0466, 7.0429, 7.0417, 7.0529, 7.0529, 7.0356, 7.031, 7.0276, 7.0247, 7.026, 7.0232, 7.0195, 7.0321, 7.0292, 7.0264, 7.0281, 7.0248, 7.0216, 7.0203, 7.0169, 7.0125, 7.0092, 7.0214, 7.0216, 7.0179, 7.005, 7.0007, 6.999, 6.9954, 6.9914, 6.9872, 7.0048, 7.0022, 6.9994, 6.9952, 6.9914, 6.9902, 7.0024, 6.9997, 6.9957, 7.0056, 7.0139, 7.023, 7.024, 7.025, 7.0207, 7.0166, 7.0132, 7.0104, 7.02, 7.0161, 7.0117, 7.0207, 7.0296, 7.0268, 7.0233, 7.0334, 7.0295, 7.026, 7.0247, 7.0211, 7.0293, 7.0263, 7.0362, 7.0328, 7.0422, 7.0381, 7.0348, 7.037, 7.0331, 7.0423, 7.0396, 7.0363, 7.0337, 7.0299, 7.0263, 7.0225, 7.0244, 7.0205, 7.0171, 7.0255, 7.0235, 7.0323, 7.0287, 7.0366, 7.033, 7.03, 7.0649, 7.0623, 7.0615, 7.0596, 7.0578, 7.0541, 7.0867, 7.1074, 7.1049, 7.1186, 7.1165, 7.1125, 7.1093, 7.1053, 7.1014, 7.0989, 7.1086, 7.1048, 7.1143, 7.1113, 7.108, 7.1045, 7.1138, 7.1264, 7.1229, 7.1214, 7.1199, 7.128, 7.1148, 7.1226, 7.1304, 7.1381, 7.1468, 7.155, 7.1526, 7.1496, 7.1467, 7.1435, 7.1396, 7.1357, 7.1436, 7.1412, 7.1491, 7.1469, 7.1449, 7.1417, 7.1495, 7.1473, 7.1443, 7.1411, 7.1376, 7.1336, 7.13, 7.1275, 7.1241, 7.1204, 7.1178, 7.1143, 7.1109, 7.1073, 7.1043, 7.101, 7.0979, 7.1279, 7.1241, 7.1209, 7.1276, 7.1251, 7.1324, 7.1292, 7.1366, 7.1336, 7.1211, 7.1183, 7.1267, 7.1231, 7.1217, 7.1189, 7.1153, 7.1125, 7.1189, 7.1161, 7.1134, 7.1197, 7.117, 7.114, 7.1109, 7.1084, 7.1155, 7.1129, 7.1191, 7.1211, 7.1194, 7.1263, 7.133, 7.13, 7.1268, 7.1242, 7.1218, 7.1199, 7.1166, 7.123, 7.1297, 7.1276, 7.1246, 7.1216, 7.1189, 7.1176, 7.1252, 7.1222, 7.1193, 7.1167, 7.1055, 7.1028, 7.1101, 7.1076, 7.1054, 7.1122, 7.1094, 7.1065, 7.1034, 7.1098, 7.1085, 7.1061, 7.103, 7.1103, 7.0991, 7.0968, 7.1034, 7.1004, 7.0974, 7.1036, 7.1102, 7.1088, 7.1059, 7.1031, 7.1003, 7.0974, 7.0945, 7.101, 7.0979, 7.1051, 7.1119, 7.1099, 7.1168, 7.1141, 7.1112, 7.1091, 7.1185, 7.1159, 7.1132, 7.1112, 7.1471, 7.145, 7.1425, 7.1396, 7.1553, 7.1545, 7.1515, 7.1574, 7.1547, 7.153, 7.1517, 7.1491, 7.1641, 7.1612, 7.1581, 7.1569, 7.163, 7.1634, 7.1603, 7.1577, 7.1551, 7.1524, 7.1507, 7.1478, 7.1453, 7.1425, 7.1318, 7.1291, 7.1267, 7.1351, 7.1324, 7.1384, 7.1372, 7.1341, 7.1316, 7.1308, 7.1278, 7.1264, 7.1239, 7.121, 7.119, 7.1241, 7.1219, 7.1198, 7.1176, 7.1146, 7.1295, 7.1265, 7.1322, 7.1296, 7.1272, 7.1251, 7.1236, 7.1207, 7.1178, 7.1155, 7.1214, 7.1264, 7.1333, 7.1303, 7.1274, 7.1247, 7.1219, 7.1192, 7.1093, 7.1067, 7.1042, 7.1025, 7.1084, 7.109, 7.1073, 7.1049, 7.1024, 7.0999, 7.1054, 7.1037, 7.1009, 7.1153, 7.1128, 7.1103, 7.1079, 7.1057, 7.1032, 7.1086, 7.1061, 7.1041, 7.1014, 7.099, 7.0962, 7.1016, 7.0999, 7.0973, 7.1025, 7.1012, 7.0986, 7.096, 7.0933, 7.0924, 7.0899, 7.0954, 7.0858, 7.0912, 7.0964, 7.094, 7.0997, 7.1222, 7.1275, 7.1251, 7.1228, 7.1218, 7.1191, 7.1254, 7.1227, 7.1202, 7.1177, 7.1153, 7.114, 7.1119, 7.1032, 7.1014, 7.1065, 7.1045, 7.1175, 7.1153, 7.1215, 7.1271, 7.1414, 7.1391, 7.1368, 7.1349, 7.1404, 7.1388, 7.1751, 7.1726, 7.1703, 7.1742, 7.1716, 7.1693, 7.1667, 7.165, 7.1624, 7.1612, 7.1587, 7.1565, 7.1547, 7.1525, 7.1585, 7.156, 7.1537, 7.1514, 7.1565, 7.1542, 7.1576, 7.1649, 7.1625, 7.1601, 7.1589, 7.1639, 7.1627, 7.1611, 7.1656, 7.1712, 7.169, 7.1843, 7.1893, 7.1877, 7.1927, 7.197, 7.1952, 7.1942, 7.1928, 7.1908, 7.1885, 7.1863, 7.185, 7.1829, 7.2062, 7.2133, 7.2109, 7.2085, 7.2076, 7.2059, 7.2045, 7.2023, 7.1999, 7.1991, 7.204, 7.2016, 7.1998, 7.1986, 7.1971, 7.1946, 7.193, 7.198, 7.1958, 7.2006, 7.1982, 7.1959, 7.1937, 7.1983, 7.1962, 7.2006, 7.2053, 7.21, 7.2084, 7.2133, 7.2176, 7.2162, 7.2257, 7.2304, 7.2285, 7.2261, 7.2243, 7.2219, 7.2217, 7.2193, 7.2168, 7.2233, 7.2217, 7.2194, 7.2171, 7.2159, 7.2222, 7.2204, 7.2207, 7.2191, 7.2173, 7.2151, 7.2159, 7.2204, 7.2245, 7.2226, 7.2212, 7.2197, 7.2176, 7.2224, 7.2207, 7.2186, 7.2167, 7.2211, 7.2197, 7.2185, 7.2173, 7.215, 7.2148, 7.2129, 7.2118, 7.2097, 7.222, 7.2196, 7.2207, 7.2192, 7.2518, 7.2495, 7.2504, 7.2428, 7.2501, 7.2482, 7.2465, 7.2442, 7.2362, 7.2351, 7.2339, 7.2318, 7.2298, 7.2289, 7.2268, 7.2248, 7.2235, 7.2213, 7.2201, 7.2125, 7.2163, 7.2089, 7.2137, 7.2114, 7.21, 7.2078, 7.2118, 7.2098, 7.2139, 7.218, 7.2163, 7.2143, 7.2123, 7.2108, 7.2088, 7.207, 7.2048, 7.2042, 7.2082, 7.2062, 7.2055, 7.2035, 7.2018, 7.1998, 7.2, 7.1979, 7.1966, 7.2008, 7.1987, 7.1968, 7.1947, 7.1932, 7.1973, 7.1953, 7.1939, 7.1925, 7.1904, 7.1891, 7.1876, 7.1857, 7.1837, 7.1819, 7.1858, 7.1838, 7.1819, 7.1803, 7.1784, 7.1765, 7.1765, 7.1746, 7.1726, 7.1707, 7.1686, 7.1676, 7.1663, 7.1699, 7.1679, 7.1609, 7.1591, 7.1575, 7.156, 7.1541, 7.1579, 7.1559, 7.154, 7.152, 7.1557, 7.1558, 7.154, 7.1521, 7.1562, 7.1603, 7.1585, 7.1625, 7.1613, 7.1653, 7.1633, 7.1615, 7.179, 7.1887, 7.187, 7.1855, 7.1895, 7.1882, 7.1864, 7.1846, 7.1828, 7.1815, 7.1804, 7.1787, 7.1771, 7.1753, 7.1787, 7.1826, 7.1809, 7.1795, 7.1835, 7.1878, 7.1865, 7.1909, 7.1945, 7.1876, 7.1914, 7.1953, 7.1938, 7.1975, 7.1968, 7.1957, 7.1939, 7.1978, 7.1962, 7.1961, 7.1942, 7.1929, 7.191, 7.1947, 7.1927, 7.1912, 7.1943, 7.1927, 7.1913, 7.1897, 7.1879, 7.1864, 7.2008, 7.221, 7.225, 7.2234, 7.2225, 7.2209, 7.2194, 7.2179, 7.2215, 7.2251, 7.2232, 7.2215, 7.225, 7.2232, 7.2266, 7.2247, 7.2288, 7.2289, 7.228, 7.2263, 7.2245, 7.2235, 7.222, 7.2203, 7.224, 7.2222, 7.2258, 7.2239, 7.2226, 7.2207, 7.2196, 7.219, 7.2225, 7.2208, 7.2241, 7.2223, 7.2206, 7.22, 7.2183, 7.2165, 7.2197, 7.2184, 7.2167, 7.2152, 7.2088, 7.2078, 7.206, 7.2043, 7.2078, 7.2062, 7.2045, 7.2081, 7.2062, 7.2099, 7.2093, 7.2087, 7.2069, 7.2064, 7.2062, 7.2053, 7.2034, 7.2022, 7.2009, 7.2089, 7.2127, 7.2163, 7.2197, 7.2193, 7.2178, 7.2209, 7.2241, 7.2224, 7.2162, 7.2145, 7.2129, 7.212, 7.2104, 7.2098, 7.2089, 7.2071, 7.2054, 7.2036, 7.2018, 7.2051, 7.2036, 7.2019, 7.2057, 7.2095, 7.213, 7.2117, 7.2101, 7.2271, 7.226, 7.2244, 7.2301, 7.2284, 7.2317, 7.2299, 7.2284, 7.2269, 7.2256, 7.2361, 7.2344, 7.2345, 7.2331, 7.2322, 7.2304, 7.2297, 7.2279, 7.2271, 7.226, 7.2308, 7.2344, 7.2326, 7.2317, 7.2309, 7.2297, 7.2304, 7.234, 7.2326, 7.231, 7.2293, 7.2276, 7.2325, 7.2307, 7.2344, 7.233, 7.2359, 7.2397, 7.2383, 7.2371, 7.2357, 7.234, 7.2325, 7.2317, 7.2452, 7.2446, 7.243, 7.2656, 7.2643, 7.2631, 7.2663, 7.2649, 7.2645, 7.2635, 7.2666, 7.2651, 7.2633, 7.2632, 7.2621, 7.2607, 7.2639, 7.2628, 7.2746, 7.273, 7.2673, 7.2656, 7.2639, 7.267, 7.2653, 7.2595, 7.2629, 7.2616, 7.2605, 7.2588, 7.2579, 7.2608, 7.2635, 7.2622, 7.2608, 7.2613, 7.2595, 7.2624, 7.2606, 7.2591, 7.2577, 7.2568, 7.2557, 7.254, 7.2534, 7.2521, 7.2551, 7.2534, 7.2519, 7.2503, 7.2447, 7.2431, 7.246, 7.2445, 7.2504, 7.2493, 7.2489, 7.2472, 7.2461, 7.2445, 7.2431, 7.2418, 7.2405, 7.2397, 7.2428, 7.2416, 7.24, 7.2431, 7.2461, 7.2406, 7.2351, 7.2294, 7.2279, 7.2268, 7.2298, 7.2286, 7.2278, 7.2263, 7.2247, 7.2232, 7.222, 7.2206, 7.2194, 7.2222, 7.2214, 7.2207, 7.224, 7.2224, 7.2257, 7.2244, 7.2233, 7.222, 7.2211, 7.2203, 7.219, 7.2223, 7.2255, 7.2283, 7.2316, 7.2302, 7.2288, 7.2272, 7.2301, 7.2287, 7.2318, 7.2302, 7.2333, 7.2324, 7.2309, 7.2338, 7.2285, 7.2273, 7.2304, 7.2335, 7.2332, 7.2318, 7.2303, 7.2331, 7.2361, 7.2349, 7.2335, 7.2322, 7.2307, 7.2293, 7.232, 7.2351, 7.2337, 7.2368, 7.2355, 7.2384, 7.237, 7.2355, 7.2346, 7.2331, 7.2321, 7.2305, 7.2335, 7.2364, 7.2405, 7.239, 7.2375, 7.2361, 7.2346, 7.2332, 7.2318, 7.2303, 7.2262, 7.2254, 7.2283, 7.2313, 7.2264, 7.2248, 7.2246, 7.2232, 7.2218, 7.222, 7.2209, 7.2197, 7.2222, 7.2212, 7.2209, 7.2234, 7.222, 7.2212, 7.2205, 7.2197, 7.2226, 7.2215, 7.2245, 7.2231, 7.2218, 7.2205, 7.2233, 7.222, 7.2252, 7.224, 7.2228, 7.2215, 7.2201, 7.2151, 7.21, 7.2085, 7.2073, 7.206, 7.2052, 7.2041, 7.2027, 7.2013, 7.1964, 7.195, 7.1942, 7.1936, 7.196, 7.1976, 7.2004, 7.1995, 7.1983, 7.1971, 7.1957, 7.1943, 7.1933, 7.1995, 7.1988, 7.1978, 7.1966, 7.1952, 7.1943, 7.193, 7.1965, 7.1957, 7.1945, 7.1938, 7.1926, 7.1918, 7.1911, 7.1902, 7.1888, 7.1917, 7.191, 7.1896, 7.1882, 7.1909, 7.1895, 7.1921, 7.1954, 7.1955, 7.1942, 7.1934, 7.1928, 7.1914, 7.1941, 7.1968, 7.1996, 7.1983, 7.1969, 7.1995, 7.1982, 7.2009, 7.1998, 7.1992, 7.1985, 7.1978, 7.1964, 7.1915, 7.1871, 7.1932, 7.1939, 7.1931, 7.1922, 7.1911, 7.1904, 7.1891, 7.1883, 7.191, 7.1925, 7.1918, 7.1944, 7.1932, 7.196, 7.1948, 7.1943, 7.1937, 7.1988, 7.2016, 7.2046, 7.2073, 7.2027, 7.202, 7.2052, 7.2114, 7.21, 7.2093, 7.2087, 7.2077, 7.2049, 7.2075, 7.2067, 7.2029, 7.2021, 7.2012, 7.2038, 7.2025, 7.2127, 7.2118, 7.2109, 7.2098, 7.2162, 7.215, 7.2184, 7.2174, 7.2161, 7.2187, 7.2223, 7.2214, 7.2239, 7.2225, 7.2213, 7.2214, 7.2204, 7.2191, 7.2177, 7.2163, 7.2151, 7.2139, 7.2127, 7.2114, 7.2103, 7.2094, 7.2158, 7.2149, 7.2137, 7.2162, 7.2153, 7.214, 7.2127, 7.2115, 7.2103, 7.2091, 7.2117, 7.2143, 7.2131, 7.2157, 7.218, 7.2171, 7.2195, 7.2184, 7.2171, 7.2196, 7.2222, 7.2212, 7.2202, 7.2188, 7.2175, 7.2172, 7.2159, 7.2148, 7.2139, 7.2127, 7.2117, 7.2104, 7.2102, 7.2125, 7.2148, 7.2138, 7.2127, 7.2121, 7.2118, 7.2127, 7.2117, 7.2108, 7.2125, 7.2122, 7.2145, 7.2139, 7.2257, 7.225, 7.2241, 7.2266, 7.231, 7.2298, 7.2288, 7.2276, 7.2266, 7.2261, 7.2249, 7.2272, 7.2259, 7.225, 7.2206, 7.2196, 7.2184, 7.2173, 7.216, 7.2148, 7.2136, 7.2169, 7.2159, 7.2148, 7.2135, 7.2128, 7.2116, 7.2104, 7.2096, 7.2121, 7.2113, 7.2101, 7.2091, 7.208, 7.2072, 7.2062, 7.2071, 7.2058, 7.2079, 7.2072, 7.2059, 7.2047, 7.2073, 7.2096, 7.2118, 7.2113, 7.2101, 7.2091, 7.2079, 7.2093, 7.2081, 7.2075, 7.2064, 7.2054, 7.2047, 7.2043, 7.2032, 7.2056, 7.208, 7.208, 7.2067, 7.2055, 7.2045, 7.2036, 7.2025, 7.2014, 7.2001, 7.2027, 7.2048, 7.2038, 7.2037, 7.2025, 7.2013, 7.2036, 7.2023, 7.2015, 7.2006, 7.1995, 7.1957, 7.1946, 7.1939, 7.194, 7.1965, 7.1957, 7.1984, 7.2006, 7.2029, 7.2017, 7.2006, 7.1994, 7.1982, 7.1974, 7.1964, 7.1987, 7.1976, 7.1966, 7.1987, 7.1975, 7.1963, 7.1951, 7.194, 7.1964, 7.1952, 7.1942, 7.193, 7.1919, 7.1907, 7.1866, 7.1858, 7.1848, 7.184, 7.1857, 7.1881, 7.1869, 7.1859, 7.1848, 7.1869, 7.186, 7.1854, 7.1846, 7.1835, 7.1824, 7.1818, 7.1813, 7.1807, 7.1796, 7.1816, 7.1839, 7.1852, 7.1842, 7.183, 7.1821, 7.1812, 7.1804, 7.1834, 7.1825, 7.1846, 7.1838, 7.183, 7.1819, 7.1807, 7.1829, 7.1822, 7.1812, 7.1803, 7.1791, 7.1783, 7.1806, 7.1795, 7.1789, 7.1781, 7.1778, 7.177, 7.1759, 7.1752, 7.1741, 7.173, 7.1721, 7.1709, 7.1698, 7.1719, 7.1708, 7.1735, 7.1727, 7.1718, 7.1756, 7.1717, 7.1708, 7.1709, 7.1707, 7.1701, 7.1691, 7.1714, 7.1702, 7.1695, 7.1693, 7.1732, 7.1753, 7.1799, 7.1788, 7.1776, 7.1765, 7.1754, 7.1743, 7.1765, 7.176, 7.1781, 7.1772, 7.1765, 7.1756, 7.1745, 7.1767, 7.1758, 7.1747, 7.171, 7.1705, 7.1727, 7.1719, 7.1709, 7.1698, 7.1687, 7.1708, 7.1669, 7.1664, 7.1656, 7.1647, 7.1667, 7.166, 7.1652, 7.1643, 7.1632, 7.1655, 7.1645, 7.1634, 7.1626, 7.1615, 7.1605, 7.1597, 7.1618, 7.1608, 7.1597, 7.1621, 7.161, 7.16, 7.1621, 7.161, 7.1602, 7.1623, 7.1612, 7.1634, 7.1674, 7.1664, 7.1688, 7.1711, 7.1703, 7.179, 7.1817, 7.1811, 7.18, 7.1796, 7.1786, 7.1808, 7.18, 7.1794, 7.1785, 7.1778, 7.1825, 7.1818, 7.1808, 7.1801, 7.183, 7.182, 7.1814, 7.1804, 7.1795, 7.1786, 7.1805, 7.1766, 7.176, 7.176, 7.1754, 7.1751, 7.174, 7.1762, 7.1762, 7.1782, 7.1801, 7.182, 7.1841, 7.1832, 7.1822, 7.1785, 7.1775, 7.1799, 7.1791, 7.1811, 7.1804, 7.1828, 7.182, 7.1809, 7.1801, 7.1794, 7.1786, 7.1775, 7.1765, 7.1789, 7.1818, 7.1811, 7.18, 7.1798, 7.183, 7.1853, 7.1844, 7.1808, 7.1802, 7.1796, 7.1791, 7.1782, 7.1774, 7.1795, 7.1784, 7.1805, 7.1799, 7.1791, 7.1784, 7.1872, 7.1864, 7.1882, 7.1894, 7.1884, 7.1873, 7.1864, 7.1856, 7.1877, 7.1869, 7.1864, 7.1853, 7.1844, 7.1834, 7.1825, 7.1814, 7.181, 7.1802, 7.1792, 7.1788, 7.1777, 7.1776, 7.1766, 7.1756, 7.1749, 7.1739, 7.1748, 7.1746, 7.1736, 7.1726, 7.1717, 7.1709, 7.1729, 7.1722, 7.1713, 7.1723, 7.1714, 7.1677, 7.1668, 7.1661, 7.1682, 7.1672, 7.1663, 7.1653, 7.1643, 7.1664, 7.1654, 7.1649, 7.1642, 7.1634, 7.1654, 7.1644, 7.1638, 7.1664, 7.1636, 7.1629, 7.1739, 7.1875, 7.1866, 7.1859, 7.1851, 7.1841, 7.1861, 7.1853, 7.1845, 7.1864, 7.1871, 7.1861, 7.1881, 7.1871, 7.1863, 7.1857, 7.1847, 7.1838, 7.1829, 7.1819, 7.181, 7.18, 7.1791, 7.1785, 7.1777, 7.1787, 7.178, 7.1799, 7.182, 7.1969, 7.2008, 7.2004, 7.1997, 7.1987, 7.1987, 7.198, 7.1973, 7.1985, 7.1976, 7.1967, 7.1957, 7.1951, 7.1941, 7.1936, 7.1956, 7.1947, 7.1938, 7.193, 7.195, 7.2, 7.1995, 7.1989, 7.198, 7.1947, 7.197, 7.1961, 7.1951, 7.1969, 7.1964, 7.1983, 7.1977, 7.1968, 7.1989, 7.201, 7.203, 7.2081, 7.2075, 7.2065, 7.2057, 7.2078, 7.2068, 7.2062, 7.2052, 7.207, 7.209, 7.2081, 7.2074, 7.2094, 7.2066, 7.2058, 7.2068, 7.2059, 7.2052, 7.205, 7.207, 7.2062, 7.2053, 7.2044, 7.2034, 7.2054, 7.2044, 7.2035, 7.2055, 7.2075, 7.2095, 7.2086, 7.2105, 7.2107, 7.2097, 7.2107, 7.2099, 7.2144, 7.2136, 7.2131, 7.2127, 7.2123, 7.2129, 7.2122, 7.2115, 7.2107, 7.2099, 7.2092, 7.2086, 7.2076, 7.2072, 7.2062, 7.2053, 7.206300000000001, 7.206, 7.2055, 7.2047, 7.2042, 7.2033, 7.203, 7.2022, 7.2016, 7.2009, 7.2028, 7.2047, 7.2038, 7.2029, 7.202, 7.2013, 7.2117, 7.2107, 7.2097, 7.2088, 7.2112, 7.2105, 7.2123, 7.2114, 7.2109, 7.2103, 7.2094, 7.2084, 7.209, 7.2085, 7.2052, 7.2043, 7.2036, 7.2031, 7.2023, 7.2016, 7.2007, 7.1998, 7.202, 7.2039, 7.2037, 7.2028, 7.2047, 7.2043, 7.2063, 7.2057, 7.2051, 7.2022, 7.2014, 7.2033, 7.2024, 7.2018, 7.2034, 7.2054, 7.2021, 7.2038, 7.2061, 7.2028, 7.2074, 7.2092, 7.2103, 7.2102, 7.2093, 7.2088, 7.2079, 7.2071, 7.2064, 7.2094, 7.2097, 7.2093, 7.2084, 7.2077, 7.207, 7.2061, 7.2078, 7.2075, 7.2118, 7.2113, 7.2108, 7.2099, 7.2089, 7.2106, 7.2097, 7.209, 7.2084, 7.2102, 7.2096, 7.2087, 7.2104, 7.2094, 7.2089, 7.2081, 7.2081, 7.2073, 7.2091, 7.2085, 7.208, 7.2076, 7.2093, 7.2109, 7.2104, 7.2097, 7.2089, 7.2081, 7.2124, 7.2116, 7.2164, 7.2156, 7.215, 7.2144, 7.2173, 7.2167, 7.2164, 7.2188, 7.2181, 7.2202, 7.2195, 7.2187, 7.2207, 7.2223, 7.2218, 7.2209, 7.2204, 7.2195, 7.2187, 7.2178, 7.217, 7.2162, 7.2159, 7.2176, 7.2169, 7.2141, 7.2135, 7.2153, 7.2145, 7.2168, 7.2186, 7.2177, 7.2194, 7.2185, 7.2203, 7.2219, 7.2237, 7.2232, 7.2224, 7.2243, 7.2234, 7.2229, 7.2247, 7.2241, 7.2258, 7.225, 7.2242, 7.2236, 7.2229, 7.2197, 7.219, 7.2182, 7.2176, 7.2168, 7.2164, 7.2157, 7.2193, 7.2186, 7.2178, 7.2195, 7.2186, 7.2178, 7.2247, 7.2264, 7.2281, 7.2274, 7.2292, 7.2263, 7.2255, 7.2248, 7.2242, 7.2259, 7.2324, 7.2318, 7.2311, 7.2307, 7.2301, 7.2293, 7.2285, 7.2277, 7.227, 7.2264, 7.2256, 7.2312, 7.2306, 7.2301, 7.2356, 7.235, 7.2367, 7.2389, 7.2407, 7.2402, 7.2399, 7.239, 7.2412, 7.2414, 7.241, 7.2436, 7.2429, 7.2421, 7.2412, 7.2403, 7.2398, 7.239, 7.2382, 7.2373, 7.2391, 7.2387, 7.238, 7.2371, 7.2364, 7.2356, 7.2373, 7.2373, 7.2367, 7.2359, 7.2354, 7.2345, 7.2339, 7.2331, 7.2326, 7.2317, 7.2312, 7.2304, 7.2296, 7.2314, 7.2307, 7.2298, 7.2291, 7.231, 7.2301, 7.2295, 7.2286, 7.2278, 7.2293, 7.2284, 7.2276, 7.2292, 7.2302, 7.232, 7.2313, 7.2307, 7.2302, 7.2319, 7.2311, 7.2328, 7.2345, 7.2338, 7.2333, 7.2325, 7.2327, 7.2322, 7.2313, 7.231, 7.2302, 7.2294, 7.2287, 7.228, 7.2274, 7.2268, 7.2259, 7.225, 7.2243, 7.2235, 7.2227, 7.222, 7.2212, 7.2189, 7.2183, 7.2175, 7.2191, 7.2184, 7.2201, 7.2197, 7.2192, 7.2208, 7.2202, 7.2244, 7.2264, 7.228, 7.2299, 7.2317, 7.2309, 7.2302, 7.2297, 7.2295, 7.2362, 7.238, 7.2418, 7.2483, 7.2475, 7.2466, 7.246, 7.2452, 7.2445, 7.2436, 7.2428, 7.2423, 7.2415, 7.2407, 7.2401, 7.2393, 7.2385, 7.2378, 7.2369, 7.2362, 7.2356, 7.2358, 7.2356, 7.2371, 7.2368, 7.2363, 7.238, 7.2374, 7.2365, 7.2361, 7.2381, 7.2397, 7.2413, 7.2429, 7.2401, 7.2392, 7.2386, 7.2378, 7.2396, 7.241, 7.2402, 7.2395, 7.2387, 7.2379, 7.2394, 7.2385, 7.238, 7.2374, 7.2366, 7.2359, 7.2351, 7.2368, 7.2384, 7.2385, 7.24, 7.2416, 7.241, 7.2402, 7.2394, 7.2388, 7.2385, 7.2401, 7.2395, 7.2413, 7.2391, 7.2396, 7.2388, 7.2418, 7.241, 7.2402, 7.2396, 7.2424, 7.2416, 7.2408, 7.24, 7.2394, 7.2397, 7.2391, 7.2386, 7.2401, 7.2415, 7.2408, 7.2401, 7.2396, 7.2388, 7.236, 7.2355, 7.238, 7.2373, 7.2416, 7.2433, 7.2426, 7.2421, 7.2437, 7.2435, 7.2427, 7.2419, 7.2414, 7.243, 7.2425, 7.2442, 7.2434, 7.245, 7.2465, 7.2438, 7.2435, 7.245, 7.2442, 7.2434, 7.2426, 7.2442, 7.2481, 7.2473, 7.2489, 7.2481, 7.2495, 7.2491, 7.2483, 7.2476, 7.2468, 7.2462, 7.2493, 7.2521, 7.2515, 7.2577, 7.257, 7.2565, 7.2559, 7.2552, 7.2544, 7.2544, 7.2537, 7.2529, 7.2529, 7.2521, 7.2516, 7.2531, 7.2546, 7.254, 7.2554, 7.2548, 7.254, 7.2532, 7.2525, 7.2546, 7.2563, 7.2558, 7.255, 7.2564, 7.2556, 7.2548, 7.2544, 7.2536, 7.2574, 7.2566, 7.2558, 7.2573, 7.2567, 7.2559, 7.2532, 7.2525, 7.2518, 7.2519, 7.2512, 7.2508, 7.25, 7.2493, 7.2486, 7.2478, 7.2473, 7.249, 7.2482, 7.2476, 7.2471, 7.2466, 7.246, 7.2459, 7.2454, 7.2446, 7.2461, 7.2476, 7.2468, 7.2461, 7.2456, 7.2493, 7.2554, 7.2547, 7.2542, 7.2536, 7.2529, 7.2525, 7.2542, 7.2537, 7.2534, 7.2578, 7.2571, 7.2584, 7.2582, 7.2574, 7.2568, 7.2563, 7.2584, 7.2576, 7.2569, 7.2562, 7.2653, 7.2649, 7.2644, 7.2638, 7.2634, 7.2626, 7.2618, 7.2612, 7.2627, 7.2642, 7.2634, 7.2626, 7.2641, 7.2633, 7.2626, 7.2644, 7.266, 7.2654, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2619, 7.2612, 7.2607, 7.2626, 7.2618, 7.2633, 7.2648, 7.2643, 7.2658, 7.2651, 7.2663, 7.2671, 7.2664, 7.2657, 7.265, 7.2667, 7.2662, 7.2655, 7.2651, 7.2646, 7.2659, 7.2651, 7.2643, 7.2656, 7.2649, 7.2642, 7.2636, 7.2651, 7.2624, 7.2617, 7.2611, 7.2603, 7.2597, 7.259, 7.2583, 7.2575, 7.2568, 7.2572, 7.2565, 7.2558, 7.2558, 7.2572, 7.2586, 7.2579, 7.2574, 7.2566, 7.2559, 7.2556, 7.2638, 7.263, 7.2624, 7.2636, 7.263, 7.2628, 7.262, 7.2594, 7.2572, 7.2565, 7.254, 7.2534, 7.2547, 7.2541, 7.2539, 7.2567, 7.2592, 7.2625, 7.2642, 7.2637, 7.2632, 7.2627, 7.2622, 7.2636, 7.2633, 7.2631, 7.2625, 7.2639, 7.2665, 7.2681, 7.2674, 7.2667, 7.2671, 7.2707, 7.2746, 7.2759, 7.2766, 7.276, 7.2753, 7.2767, 7.2761, 7.2754, 7.2769, 7.2786, 7.2779, 7.2773, 7.2766, 7.278, 7.2773, 7.2767, 7.276, 7.2773, 7.2787, 7.2803, 7.2817, 7.2862, 7.2856, 7.2906, 7.2898, 7.2891, 7.2883, 7.2896, 7.2891, 7.2888, 7.288, 7.2876, 7.2871, 7.2885, 7.2879, 7.2871, 7.2866, 7.286, 7.2852, 7.2845, 7.2859, 7.2861, 7.2875, 7.2888, 7.2882, 7.2874, 7.2848, 7.2862, 7.2956, 7.2951, 7.2945, 7.2959, 7.2951, 7.2943, 7.2955, 7.2955, 7.2968, 7.2981, 7.2974, 7.2987, 7.3009, 7.3005, 7.3001, 7.2994, 7.2989, 7.2981, 7.2976, 7.2969, 7.2983, 7.2997, 7.299, 7.2982, 7.2975, 7.297, 7.2945, 7.2995, 7.303, 7.3024, 7.3024, 7.3017, 7.301, 7.3003, 7.3018, 7.2993, 7.2986, 7.3001, 7.2995, 7.3008, 7.3032, 7.3025, 7.3019, 7.3011, 7.3004, 7.3016, 7.3009, 7.3023, 7.3037, 7.3031, 7.3024, 7.3073, 7.3068, 7.306, 7.3073, 7.3087, 7.31, 7.3114, 7.3108, 7.3121, 7.3135, 7.3138, 7.3133, 7.3126, 7.3122, 7.3131, 7.3125, 7.3119, 7.3114, 7.3107, 7.3101, 7.3094, 7.311, 7.3091, 7.3087, 7.3079, 7.3078, 7.3073, 7.3068, 7.3064, 7.3058, 7.3053, 7.3046, 7.3042, 7.3035, 7.3028, 7.3022, 7.3015, 7.301, 7.3006, 7.3002, 7.2995, 7.2988, 7.2981, 7.2976, 7.2969, 7.2964, 7.2957, 7.297, 7.2965, 7.2962, 7.2955, 7.2988, 7.3093, 7.3088, 7.3101, 7.3094, 7.3087, 7.31, 7.3113, 7.311, 7.3103, 7.3115, 7.3128, 7.3141, 7.3134, 7.3127, 7.3124, 7.3119, 7.312, 7.3114, 7.3107, 7.3101, 7.3103, 7.31, 7.3173, 7.3168, 7.3163, 7.3156, 7.3152, 7.3146, 7.3158, 7.3154, 7.3148, 7.3144, 7.3138, 7.3131, 7.3128, 7.3122, 7.3117, 7.3155, 7.3152, 7.3147, 7.3139, 7.3152, 7.3165, 7.316, 7.3154, 7.3167, 7.316, 7.3153, 7.3166, 7.318, 7.3175, 7.3188, 7.3184, 7.3197, 7.3191, 7.3167, 7.3163, 7.3177, 7.319, 7.3188, 7.32, 7.3193, 7.3189, 7.3188, 7.3181, 7.3174, 7.3168, 7.3201, 7.3214, 7.3226, 7.322, 7.3213, 7.3225, 7.3219, 7.3196, 7.319, 7.3189, 7.3183, 7.3181, 7.3195, 7.3189, 7.3204, 7.3199, 7.3191, 7.3186, 7.3199, 7.3223, 7.3217, 7.3211, 7.3204, 7.3197, 7.319, 7.3183, 7.3178, 7.3172, 7.3185, 7.3178, 7.3178, 7.321, 7.3208, 7.3201, 7.3194, 7.3206, 7.3218, 7.323, 7.3226, 7.3289, 7.3301, 7.3314, 7.3307, 7.33, 7.3296, 7.3307, 7.3303, 7.3316, 7.3316, 7.3311, 7.3308, 7.3306, 7.33, 7.3293, 7.329, 7.3284, 7.3298, 7.3292, 7.3285, 7.3281, 7.3285, 7.3279, 7.3293, 7.3289, 7.3285, 7.3278, 7.3273, 7.3267, 7.33, 7.3294, 7.3288, 7.3319, 7.3333, 7.3347, 7.3341, 7.3354, 7.3367, 7.336, 7.3373, 7.3366, 7.336, 7.3356, 7.3351, 7.3366, 7.3377, 7.3371, 7.3367, 7.336, 7.3353, 7.3424, 7.3418, 7.3411, 7.3405, 7.3399, 7.3393, 7.3387, 7.3381, 7.3378, 7.3371, 7.3382, 7.3377, 7.339, 7.3367, 7.3344, 7.3337, 7.3349, 7.3366, 7.336, 7.3353, 7.333, 7.3324, 7.3336, 7.3347, 7.3341, 7.3336, 7.3332, 7.3325, 7.3336, 7.3331, 7.3327, 7.3322, 7.3318, 7.333, 7.3324, 7.3337, 7.3331, 7.3325, 7.332, 7.3314, 7.331, 7.3321, 7.3315, 7.3311, 7.3322, 7.3315, 7.3328, 7.3324, 7.3335, 7.3328, 7.3321, 7.3333, 7.3352, 7.3345, 7.3339, 7.3333, 7.3329, 7.3324, 7.3319, 7.3313, 7.3317, 7.331, 7.3304, 7.3317, 7.3311, 7.3324, 7.3319, 7.3313, 7.3307, 7.3302, 7.3295, 7.329, 7.3301, 7.3294, 7.3287, 7.3281, 7.3276, 7.3272, 7.3284, 7.3278, 7.3272, 7.3267, 7.3262, 7.3273, 7.3285, 7.3298, 7.3291, 7.3284, 7.328, 7.3279, 7.3291, 7.3286, 7.3279, 7.3272, 7.3267, 7.3262, 7.3256, 7.3251, 7.3246, 7.324, 7.3261, 7.3291, 7.3286, 7.3282, 7.3275, 7.3286, 7.328, 7.3275, 7.3272, 7.3265, 7.326, 7.3253, 7.3251, 7.3246, 7.3257, 7.3251, 7.3245, 7.3238, 7.3268, 7.3251, 7.3247, 7.3242, 7.3237, 7.3248, 7.3241, 7.3236, 7.3249, 7.3245, 7.3257, 7.3251, 7.3262, 7.3274, 7.3284, 7.3278, 7.3271, 7.3265, 7.3264, 7.326, 7.3255, 7.3258, 7.3252, 7.3246, 7.3241, 7.3234, 7.3228, 7.3223, 7.3216, 7.3228, 7.3222, 7.32, 7.3194, 7.3206, 7.322, 7.3231, 7.3226, 7.322, 7.3214, 7.3208, 7.3221, 7.3214, 7.3214, 7.3226, 7.3223, 7.3217, 7.3211, 7.3204, 7.3198, 7.3195, 7.3207, 7.3217, 7.3212, 7.3209, 7.3206, 7.3205, 7.3203, 7.3181, 7.3176, 7.3172, 7.3166, 7.3161, 7.3155, 7.3149, 7.3143, 7.3156, 7.3149, 7.3147, 7.3141, 7.316, 7.3172, 7.3167, 7.3162, 7.3157, 7.3151, 7.3148, 7.3141, 7.3134, 7.3148, 7.3141, 7.3155, 7.3151, 7.3145, 7.3156, 7.3149, 7.3144, 7.3139, 7.3134, 7.3129, 7.3125, 7.3124, 7.3118, 7.3113, 7.3108, 7.3101, 7.3112, 7.3105, 7.31, 7.3094, 7.3088, 7.3083, 7.3094, 7.3088, 7.3083, 7.3077, 7.3072, 7.3101, 7.3095, 7.3093, 7.3086, 7.308, 7.3074, 7.3122, 7.3132, 7.3125, 7.3103, 7.3114, 7.3109, 7.3106, 7.312, 7.3113, 7.3116, 7.311, 7.3104, 7.3101, 7.3096, 7.3092, 7.3087, 7.308, 7.3077, 7.3071, 7.3081, 7.3082, 7.3077, 7.3071, 7.3065, 7.3097, 7.3093, 7.3088, 7.3084, 7.3077, 7.3088, 7.3082, 7.3111, 7.3092, 7.3086, 7.3081, 7.3075, 7.307, 7.3065, 7.3059, 7.3054, 7.305, 7.3045, 7.3043, 7.3038, 7.3031, 7.3025, 7.3021, 7.3018, 7.3014, 7.3008, 7.3004, 7.3, 7.3011, 7.3005, 7.3, 7.2994, 7.3006, 7.3017, 7.3011, 7.3008, 7.3006, 7.3001, 7.2995, 7.2989, 7.2984, 7.2981, 7.2982, 7.2976, 7.297, 7.2964, 7.2958, 7.2955, 7.2949, 7.2945, 7.2956, 7.2968, 7.2962, 7.2959, 7.2955, 7.2966, 7.299, 7.2993, 7.2987, 7.2981, 7.2975, 7.297, 7.2964, 7.2958, 7.2968, 7.2996, 7.299, 7.2987, 7.2981, 7.2993, 7.2988, 7.2998, 7.3014, 7.301, 7.3005, 7.2999, 7.2997, 7.3008, 7.3019, 7.3017, 7.3011, 7.3005, 7.2999, 7.2993, 7.299, 7.3001, 7.2995, 7.2989, 7.2983, 7.2977, 7.2987, 7.2998, 7.2994, 7.2988, 7.2996, 7.299, 7.2985, 7.298, 7.2975, 7.297, 7.2965, 7.2964, 7.2959, 7.2954, 7.2948, 7.2945, 7.294, 7.2935, 7.2929, 7.2924, 7.292, 7.2914, 7.2911, 7.2925, 7.2919, 7.2914, 7.2908, 7.2903, 7.2916, 7.2913, 7.2925, 7.2919, 7.2916, 7.2917, 7.2913, 7.2909, 7.2903, 7.2899, 7.2893, 7.2887, 7.2881, 7.2891, 7.2886, 7.2892, 7.2886, 7.2882, 7.2877, 7.2856, 7.285, 7.2846, 7.2841, 7.2837, 7.2833, 7.2827, 7.2876, 7.2874, 7.2869, 7.2879, 7.2876, 7.2874, 7.2872, 7.2867, 7.2883, 7.2884, 7.2864, 7.2878, 7.2872, 7.2866, 7.286, 7.2856, 7.2851, 7.2862, 7.2856, 7.2851, 7.2863, 7.287, 7.2865, 7.2875, 7.2869, 7.2879, 7.2873, 7.2867, 7.2861, 7.2858, 7.2853, 7.2848, 7.2842, 7.2836, 7.283, 7.2841, 7.2835, 7.283, 7.2841, 7.2852, 7.2846, 7.2841, 7.2837, 7.2834, 7.2828, 7.2822, 7.2832, 7.2826, 7.2821, 7.2861, 7.2856, 7.2868, 7.288, 7.2874, 7.2868, 7.2864, 7.2875, 7.2871, 7.2865, 7.2859, 7.2855, 7.2856, 7.2854, 7.2854, 7.285, 7.2844, 7.2838, 7.2833, 7.2828, 7.2825, 7.2949, 7.2943, 7.2938, 7.2933, 7.2944, 7.2954, 7.2965, 7.2961, 7.2956, 7.2952, 7.295, 7.2973, 7.2969, 7.2971, 7.2982, 7.2977, 7.2988, 7.2985, 7.2981, 7.2976, 7.297, 7.2965, 7.2975, 7.2985, 7.2979, 7.2973, 7.2968, 7.2963, 7.2957, 7.2952, 7.2948, 7.2992, 7.2987, 7.2983, 7.298, 7.2974, 7.297, 7.2966, 7.2962, 7.2957, 7.2951, 7.2947, 7.2945, 7.2939, 7.2952, 7.2946, 7.2942, 7.2937, 7.2933, 7.2945, 7.2956, 7.2952, 7.2946, 7.294, 7.2936, 7.2933, 7.2944, 7.2938, 7.2932, 7.2926, 7.292, 7.2916, 7.2911, 7.2906, 7.2901, 7.2896, 7.2906, 7.2902, 7.2897, 7.2908, 7.2903, 7.2897, 7.2892, 7.2903, 7.2898, 7.2892, 7.2887, 7.2883, 7.288, 7.2876, 7.2871, 7.2867, 7.2861, 7.286, 7.2857, 7.2851, 7.2845, 7.2846, 7.2862, 7.2857, 7.2867, 7.2862, 7.2857, 7.2854, 7.285, 7.2844, 7.284, 7.2836, 7.2833, 7.2845, 7.2839, 7.2849, 7.2846, 7.2841, 7.285, 7.283, 7.2825, 7.2806, 7.28, 7.2794, 7.2791, 7.2786, 7.2781, 7.2791, 7.2786, 7.2781, 7.2792, 7.2788, 7.2784, 7.2779, 7.2774, 7.2769, 7.2764, 7.2758, 7.2752, 7.2747, 7.2742, 7.2753, 7.2748, 7.2743, 7.274, 7.2735, 7.273, 7.274, 7.2735, 7.273, 7.2726, 7.2737, 7.2735, 7.2749, 7.2799, 7.2825, 7.2819, 7.2815, 7.2826, 7.2835, 7.2831, 7.2827, 7.2821, 7.2815, 7.281, 7.2843, 7.2839, 7.2835, 7.2846, 7.2841, 7.2855, 7.2865, 7.2896, 7.2892, 7.2901, 7.2912, 7.2906, 7.2903, 7.2903, 7.29, 7.2895, 7.2892, 7.2902, 7.2897, 7.2896, 7.2891, 7.2909, 7.2905, 7.2901, 7.2899, 7.2894, 7.2889, 7.289, 7.29, 7.291, 7.2923, 7.2919, 7.2938, 7.2949, 7.2962, 7.2958, 7.2953, 7.2964, 7.2961, 7.2958, 7.2957, 7.2953, 7.2948, 7.2943, 7.294, 7.295, 7.2945, 7.294, 7.2935, 7.293, 7.2925, 7.292, 7.2933, 7.2929, 7.2924, 7.292, 7.2916, 7.2911, 7.2912, 7.2909, 7.2904, 7.2899, 7.2894, 7.2889, 7.2884, 7.2879, 7.2873, 7.2867, 7.2861, 7.287, 7.2866, 7.2863, 7.2857, 7.2852, 7.2848, 7.2843, 7.2838, 7.2833, 7.2814, 7.2812, 7.2809, 7.2804, 7.2814, 7.281, 7.2805, 7.2799, 7.2794, 7.2788, 7.2783, 7.2778, 7.2773, 7.2768, 7.2821, 7.2857, 7.2867, 7.2898, 7.2931, 7.2942, 7.2937, 7.2932, 7.2928, 7.2923, 7.2919, 7.2914, 7.291, 7.2905, 7.29, 7.2895, 7.289, 7.2899, 7.2895, 7.2905, 7.2901, 7.2895, 7.2905, 7.2899, 7.2884, 7.2895, 7.2891, 7.2886, 7.2917, 7.2958, 7.2968, 7.2966, 7.2962, 7.2957, 7.2953, 7.2951, 7.2946, 7.2941, 7.2938, 7.2934, 7.2918, 7.2914, 7.2896, 7.2905, 7.29, 7.2899, 7.2927, 7.298, 7.2975, 7.2956, 7.2966, 7.2961, 7.2956, 7.2951, 7.2961, 7.2956, 7.2953, 7.2948, 7.2943, 7.2938, 7.2933, 7.2929, 7.2912, 7.2908, 7.2904, 7.2899, 7.2909, 7.2905, 7.2915, 7.291, 7.2921, 7.2931, 7.2927, 7.2921, 7.2932, 7.2927, 7.2923, 7.2933, 7.2928, 7.2923, 7.2917, 7.2912, 7.2907, 7.2901, 7.2895, 7.2893, 7.289, 7.2871, 7.288, 7.2875, 7.2871, 7.2872, 7.2885, 7.288, 7.2889, 7.2871, 7.287, 7.2865, 7.286, 7.2857, 7.2852, 7.2849, 7.2844, 7.2845, 7.2827, 7.2822, 7.2819, 7.2814, 7.2809, 7.2806, 7.2803, 7.2799, 7.2796, 7.2794, 7.2789, 7.2799, 7.2796, 7.2792, 7.2787, 7.2797, 7.2793, 7.2789, 7.2784, 7.278, 7.279, 7.2784, 7.2781, 7.2776, 7.2772, 7.2767, 7.279, 7.2791, 7.2789, 7.2784, 7.2793, 7.2789, 7.2785, 7.2797, 7.2806, 7.2803, 7.2824, 7.2834, 7.2829, 7.2839, 7.2834, 7.2829, 7.2824, 7.282, 7.2829, 7.2811, 7.2821, 7.2843, 7.2852, 7.2862, 7.2875, 7.2885, 7.2867, 7.2863, 7.2875, 7.287, 7.2866, 7.2876, 7.2872, 7.2882, 7.2878, 7.2888, 7.2898, 7.2893, 7.2906, 7.2917, 7.2913, 7.2923, 7.2919, 7.2915, 7.2912, 7.292, 7.2929, 7.2925, 7.2921, 7.2917, 7.2912, 7.291, 7.2919, 7.2915, 7.2911, 7.2906, 7.2902, 7.2897, 7.2892, 7.2888, 7.2885, 7.2881, 7.2891, 7.2886, 7.2869, 7.2879, 7.2874, 7.287, 7.2864, 7.2861, 7.2858, 7.2868, 7.2863, 7.2858, 7.2853, 7.2862, 7.2858, 7.2853, 7.2851, 7.29, 7.2897, 7.2893, 7.289, 7.2901, 7.2897, 7.288, 7.2876, 7.2885, 7.2882, 7.2893, 7.2889, 7.2884, 7.2892, 7.2887, 7.2883, 7.288, 7.2875, 7.2872, 7.2867, 7.2863, 7.2861, 7.2897, 7.2914, 7.2923, 7.292, 7.2916, 7.2926, 7.2921, 7.2918, 7.2915, 7.291, 7.2906, 7.2906, 7.2903, 7.2898, 7.2881, 7.2894, 7.2904, 7.2916, 7.2916, 7.2911, 7.2907, 7.2902, 7.2898, 7.2914, 7.291, 7.292, 7.2916, 7.2911, 7.2908, 7.2905, 7.2902, 7.2898, 7.2893, 7.2893, 7.29, 7.2895, 7.289, 7.2885, 7.2884, 7.2879, 7.2875, 7.2872, 7.2868, 7.2877, 7.2874, 7.2869, 7.2878, 7.2887, 7.2918, 7.2913, 7.2908, 7.2903, 7.2887, 7.2882, 7.288, 7.2875, 7.2873, 7.287, 7.2865, 7.2874, 7.2869, 7.2878, 7.2887, 7.2888, 7.2883, 7.2892, 7.29, 7.2897, 7.2908, 7.2906, 7.2915, 7.2924, 7.2922, 7.2918, 7.2913, 7.2922, 7.2931, 7.2927, 7.2936, 7.2931, 7.2943, 7.2942, 7.2937, 7.2946, 7.2941, 7.294, 7.2949, 7.2945, 7.294, 7.2936, 7.2936, 7.2931, 7.2926, 7.2936, 7.2936, 7.2932, 7.2929, 7.2916, 7.2914, 7.291, 7.2907, 7.2915, 7.291, 7.2905, 7.29, 7.2895, 7.2904, 7.2899, 7.2907, 7.2916, 7.2912, 7.2907, 7.2902, 7.2899, 7.2896, 7.2891, 7.2886, 7.2884, 7.288, 7.2875, 7.2882, 7.2879, 7.2876, 7.2871, 7.291, 7.292, 7.2942, 7.295, 7.295, 7.2945, 7.294, 7.2937, 7.2933, 7.2928, 7.2965, 7.296, 7.2969, 7.2965, 7.2975, 7.2977, 7.2985, 7.2981, 7.2976, 7.2971, 7.2966, 7.2962, 7.2957, 7.2953, 7.2949, 7.2959, 7.2958, 7.2969, 7.2978, 7.2974, 7.3016, 7.3011, 7.3006, 7.3003, 7.2998, 7.2994, 7.2989, 7.2985, 7.298, 7.2975, 7.297, 7.3008, 7.3003, 7.3006, 7.3002, 7.2997, 7.3006, 7.3018, 7.3029, 7.3026, 7.3022, 7.3018, 7.3026, 7.3023, 7.3018, 7.3026, 7.3021, 7.303, 7.3039, 7.3036, 7.3045, 7.3041, 7.3036, 7.3031, 7.3027, 7.3036, 7.3032, 7.3042, 7.3037, 7.3032, 7.3041, 7.3037, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3011, 7.3008, 7.3017, 7.3027, 7.3036, 7.3031, 7.303, 7.3028, 7.3023, 7.3032, 7.3043, 7.3052, 7.3049, 7.3058, 7.3055, 7.3064, 7.3073, 7.3082, 7.3127, 7.3131, 7.3126, 7.3121, 7.3116, 7.3111, 7.3122, 7.3117, 7.3114, 7.311, 7.3106, 7.3102, 7.3098, 7.3098, 7.3107, 7.3115, 7.3112, 7.3121, 7.3116, 7.3111, 7.3119, 7.3115, 7.3123, 7.3118, 7.3128, 7.3123, 7.3133, 7.313, 7.3125, 7.312, 7.3116, 7.3111, 7.3106, 7.3114, 7.311, 7.3108, 7.3117, 7.3112, 7.3109, 7.3106, 7.3101, 7.3104, 7.3099, 7.3107, 7.3102, 7.3097, 7.3118, 7.3113, 7.3108, 7.3103, 7.3098, 7.3095, 7.3093, 7.3093, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3105, 7.31, 7.3108, 7.3117, 7.3113, 7.311, 7.3105, 7.3104, 7.31, 7.3095, 7.3093, 7.3089, 7.3085, 7.3082, 7.3079, 7.3075, 7.307, 7.3066, 7.3061, 7.3056, 7.3052, 7.3047, 7.3056, 7.3052, 7.3047, 7.3043, 7.3041, 7.3037, 7.3044, 7.3039, 7.3048, 7.3044, 7.304, 7.3049, 7.3045, 7.3053, 7.3048, 7.3044, 7.304, 7.3036, 7.3032, 7.3029, 7.3038, 7.3035, 7.3032, 7.3043, 7.3052, 7.3048, 7.3033, 7.3029, 7.3026, 7.3022, 7.3023, 7.3018, 7.3014, 7.3012, 7.3007, 7.3002, 7.2998, 7.3007, 7.3016, 7.3024, 7.302, 7.303, 7.3027, 7.3023, 7.302, 7.3017, 7.3026, 7.3023, 7.3031, 7.3039, 7.3036, 7.3031, 7.3032, 7.3041, 7.3049, 7.3046, 7.3058, 7.3054, 7.3051, 7.3047, 7.3044, 7.3079, 7.3077, 7.3074, 7.307, 7.3054, 7.3059, 7.3055, 7.3065, 7.3062, 7.3071, 7.3068, 7.3071, 7.3067, 7.3062, 7.3071, 7.3067, 7.3062, 7.306, 7.3056, 7.3052, 7.3048, 7.3049, 7.3045, 7.3044, 7.3068, 7.3063, 7.3059, 7.3056, 7.3052, 7.3047, 7.3055, 7.3064, 7.306, 7.3069, 7.3064, 7.3059, 7.3055, 7.305, 7.3045, 7.3054, 7.3063, 7.3066, 7.3061, 7.3057, 7.3055, 7.305, 7.3046, 7.3043, 7.304, 7.3035, 7.3031, 7.3027, 7.3025, 7.3021, 7.3018, 7.3026, 7.307, 7.3066, 7.3104, 7.3099, 7.3095, 7.3093, 7.31, 7.3108, 7.3103, 7.3099, 7.3095, 7.3092, 7.3089, 7.3101, 7.3098, 7.3097, 7.3106, 7.3107, 7.3115, 7.3115, 7.311, 7.3108, 7.3104, 7.3112, 7.3109, 7.3108, 7.3117, 7.3125, 7.3134, 7.313, 7.3129, 7.3124, 7.3109, 7.3119, 7.3114, 7.3109, 7.3105, 7.3101, 7.3096, 7.3104, 7.3113, 7.3109, 7.3105, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3092, 7.3088, 7.3083, 7.308, 7.3077, 7.3072, 7.306, 7.3057, 7.3053, 7.3049, 7.3047, 7.305, 7.3046, 7.3059, 7.3054, 7.3042, 7.3038, 7.3049, 7.307, 7.3078, 7.3073, 7.3071, 7.3066, 7.3063, 7.3058, 7.3054, 7.3052, 7.3049, 7.3059, 7.3056, 7.3093, 7.309, 7.3091, 7.311, 7.3106, 7.3104, 7.3125, 7.3121, 7.3118, 7.3113, 7.3111, 7.3108, 7.3116, 7.3112, 7.3108, 7.3105, 7.3116, 7.3114, 7.311, 7.3107, 7.3105, 7.3103, 7.3098, 7.3095, 7.3091, 7.3087, 7.3084, 7.3081, 7.3077, 7.3085, 7.3093, 7.3088, 7.3098, 7.3095, 7.3104, 7.3113, 7.3114, 7.3116, 7.3113, 7.3109, 7.3108, 7.3105, 7.3104, 7.3111, 7.3119, 7.3128, 7.3124, 7.3132, 7.3129, 7.3133, 7.3129, 7.3137, 7.3133, 7.3129, 7.3137, 7.3145, 7.3141, 7.3149, 7.3165, 7.3173, 7.3169, 7.3167, 7.3162, 7.3159, 7.3154, 7.3162, 7.3158, 7.3154, 7.3163, 7.3151, 7.3164, 7.3172, 7.3179, 7.3177, 7.3172, 7.318, 7.3188, 7.3184, 7.3193, 7.3196, 7.3204, 7.3201, 7.3209, 7.3206, 7.3212, 7.3208, 7.3204, 7.3212, 7.3208, 7.3204, 7.3214, 7.3211, 7.3207, 7.3204, 7.3212, 7.3211, 7.3196, 7.3194, 7.3191, 7.3199, 7.3195, 7.3192, 7.3188, 7.3196, 7.3192, 7.3187, 7.3182, 7.3178, 7.3176, 7.3184, 7.318, 7.3191, 7.3211, 7.3207, 7.3203, 7.3211, 7.3198, 7.3194, 7.3202, 7.3199, 7.3198, 7.3194, 7.319, 7.3192, 7.32, 7.3196, 7.3192, 7.3188, 7.3184, 7.318, 7.3176, 7.3175, 7.3171, 7.3168, 7.3164, 7.3149, 7.315, 7.3147, 7.3143, 7.3141, 7.3137, 7.3133, 7.3129, 7.3138, 7.3135, 7.3132, 7.314, 7.3136, 7.3132, 7.3128, 7.3124, 7.3121, 7.3118, 7.3104, 7.31, 7.3109, 7.3105, 7.3101, 7.3111, 7.3107, 7.3102, 7.3099, 7.3096, 7.3097, 7.3111, 7.3121, 7.3119, 7.3118, 7.3114, 7.311, 7.3106, 7.3113, 7.3133, 7.3141, 7.3138, 7.3134, 7.3142, 7.3138, 7.3136, 7.3132, 7.3129, 7.3125, 7.3124, 7.3121, 7.3117, 7.3113, 7.3108, 7.3104, 7.3101, 7.3097, 7.3105, 7.3091, 7.3099, 7.3099, 7.3095, 7.3091, 7.3098, 7.3095, 7.3093, 7.309, 7.3088, 7.3087, 7.3083, 7.3078, 7.3085, 7.3082, 7.3079, 7.3075, 7.3074, 7.307, 7.3067, 7.3063, 7.3071, 7.3069, 7.3069, 7.3066, 7.3065, 7.305, 7.3046, 7.3044, 7.304, 7.3038, 7.3024, 7.3022, 7.3018, 7.3014, 7.301, 7.3006, 7.3004, 7.3012, 7.3009, 7.3005, 7.3004, 7.3012, 7.3009, 7.3006, 7.3005, 7.3003, 7.301, 7.3007, 7.3004, 7.3, 7.3008, 7.3006, 7.3002, 7.301, 7.3007, 7.3003, 7.3002, 7.3011, 7.3007, 7.3016, 7.3023, 7.3031, 7.3027, 7.3022, 7.303, 7.3026, 7.3022, 7.3019, 7.3016, 7.3024, 7.3032, 7.3028, 7.3036, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3014, 7.301, 7.3006, 7.3004, 7.3001, 7.2999, 7.2995, 7.2991, 7.2987, 7.299, 7.2987, 7.2994, 7.3025, 7.3022, 7.3019, 7.3036, 7.3032, 7.3052, 7.3048, 7.3046, 7.3043, 7.3043, 7.3073, 7.3069, 7.3088, 7.3085, 7.3081, 7.3078, 7.3086, 7.3083, 7.3081, 7.3093, 7.3101, 7.3097, 7.3093, 7.309, 7.3087, 7.3085, 7.3083, 7.3079, 7.3076, 7.3073, 7.3069, 7.3065, 7.3062, 7.3058, 7.3055, 7.3051, 7.3059, 7.3055, 7.3051, 7.3049, 7.3057, 7.3065, 7.3061, 7.3069, 7.3078, 7.3082, 7.309, 7.3087, 7.3084, 7.307, 7.3078, 7.3076, 7.3072, 7.3069, 7.3066, 7.3062, 7.307, 7.3066, 7.3062, 7.3048, 7.3044, 7.304, 7.3036, 7.3033, 7.3031, 7.304, 7.3037, 7.3037, 7.3033, 7.3019, 7.3033, 7.3029, 7.3026, 7.3024, 7.302, 7.3038, 7.3034, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3032, 7.3028, 7.3024, 7.3032, 7.3028, 7.3034, 7.3031, 7.3038, 7.3037, 7.3045, 7.3041, 7.3038, 7.3035, 7.306, 7.3068, 7.3064, 7.306, 7.3056, 7.3066, 7.3062, 7.3058, 7.3054, 7.305, 7.3058, 7.3054, 7.305, 7.3047, 7.3043, 7.3039, 7.3035, 7.3043, 7.3039, 7.3046, 7.3043, 7.3039, 7.3036, 7.3033, 7.3029, 7.3025, 7.3021, 7.3028, 7.3024, 7.3023, 7.3019, 7.3015, 7.3011, 7.3008, 7.302, 7.3016, 7.3013, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.2998, 7.2994, 7.2991, 7.2987, 7.2983, 7.2979, 7.2976, 7.2973, 7.2969, 7.2966, 7.2962, 7.2958, 7.2955, 7.2952, 7.2959, 7.2967, 7.2975, 7.2972, 7.2968, 7.2967, 7.2963, 7.2961, 7.2947, 7.2943, 7.294, 7.2947, 7.2944, 7.2943, 7.295, 7.2958, 7.2956, 7.2952, 7.2948, 7.2946, 7.2942, 7.2941, 7.2937, 7.2933, 7.2941, 7.2937, 7.2933, 7.2929, 7.2926, 7.2922, 7.2918, 7.2914, 7.2921, 7.2929, 7.2925, 7.2931, 7.2929, 7.2937, 7.2933, 7.295, 7.2968, 7.2975, 7.2982, 7.2989, 7.2988, 7.2985, 7.2983, 7.2979, 7.2976, 7.2984, 7.2981, 7.2979, 7.2976, 7.2973, 7.2969, 7.2976, 7.2975, 7.2983, 7.2991, 7.2987, 7.2994, 7.2991, 7.3, 7.3009, 7.3006, 7.3014, 7.3011, 7.3008, 7.3006, 7.3013, 7.301, 7.3007, 7.3003, 7.2999, 7.2996, 7.2997, 7.2984, 7.2991, 7.2987, 7.2994, 7.2991, 7.2987, 7.2983, 7.298, 7.2976, 7.2973, 7.2969, 7.2965, 7.2962, 7.2971, 7.2968, 7.2976, 7.2974, 7.297, 7.2977, 7.2974, 7.2971, 7.2968, 7.2964, 7.2971, 7.2967, 7.2963, 7.2959, 7.2956, 7.2952, 7.2948, 7.2966, 7.2963, 7.2959, 7.2955, 7.2952, 7.2951, 7.2949, 7.2945, 7.2942, 7.2938, 7.294, 7.2937, 7.2936, 7.2932, 7.2928, 7.2914, 7.2921, 7.2917, 7.2914, 7.291, 7.2919, 7.2926, 7.2923, 7.2919, 7.2916, 7.2913, 7.2921, 7.2928, 7.2924, 7.292, 7.2916, 7.2923, 7.2919, 7.2916, 7.2924, 7.2932, 7.2928, 7.2935, 7.2931, 7.2928, 7.2924, 7.2921, 7.2918, 7.2925, 7.2921, 7.2917, 7.2913, 7.2909, 7.2905, 7.2902, 7.2899, 7.2896, 7.2894, 7.2914, 7.2913, 7.292, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.2899, 7.2895, 7.2902, 7.2907, 7.2903, 7.2899, 7.2897, 7.2893, 7.29, 7.2898, 7.2894, 7.2901, 7.2899, 7.2912, 7.2928, 7.2928, 7.2925, 7.2922, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2914, 7.291, 7.2907, 7.2913, 7.2909, 7.2907, 7.2915, 7.2922, 7.2919, 7.2915, 7.2922, 7.2918, 7.2925, 7.2924, 7.2922, 7.2919, 7.2916, 7.2923, 7.2919, 7.2917, 7.2915, 7.2911, 7.2907, 7.2903, 7.29, 7.2897, 7.2904, 7.2901, 7.2899, 7.2896, 7.2886, 7.2895, 7.2924, 7.292, 7.2922, 7.2929, 7.294, 7.2947, 7.2944, 7.2944, 7.294, 7.2937, 7.2944, 7.294, 7.2937, 7.2933, 7.2929, 7.2937, 7.2934, 7.2931, 7.2927, 7.2923, 7.292, 7.2916, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2949, 7.2945, 7.2952, 7.2949, 7.2957, 7.2953, 7.2951, 7.2947, 7.2954, 7.295, 7.2948, 7.2955, 7.2951, 7.2947, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2927, 7.2933, 7.2931, 7.2937, 7.2944, 7.2951, 7.2947, 7.2954, 7.2951, 7.2958, 7.2954, 7.2951, 7.2949, 7.2946, 7.2965, 7.2961, 7.2957, 7.2954, 7.295, 7.2949, 7.2946, 7.2942, 7.2949, 7.2946, 7.2944, 7.2941, 7.2938, 7.2935, 7.2942, 7.2949, 7.2957, 7.2979, 7.2978, 7.2975, 7.2974, 7.2971, 7.2969, 7.2966, 7.2963, 7.296, 7.2957, 7.2944, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2944, 7.2941, 7.2947, 7.2944, 7.295, 7.2948, 7.2945, 7.2941, 7.2937, 7.2943, 7.2939, 7.2946, 7.2942, 7.2938, 7.2956, 7.2963, 7.296, 7.2956, 7.2957, 7.2964, 7.2961, 7.2959, 7.2955, 7.2953, 7.295, 7.295, 7.2947, 7.2944, 7.2941, 7.2948, 7.2954, 7.2961, 7.2959, 7.2981, 7.2988, 7.2987, 7.2984, 7.2981, 7.2988, 7.2985, 7.2991, 7.2999, 7.2996, 7.2993, 7.299, 7.306, 7.3057, 7.3063, 7.306, 7.3056, 7.3063, 7.3059, 7.3057, 7.3071, 7.3078, 7.3085, 7.3082, 7.3081, 7.309, 7.3088, 7.3086, 7.3084, 7.3083, 7.308, 7.3077, 7.3064, 7.3081, 7.3078, 7.3075, 7.3072, 7.3079, 7.3075, 7.3071, 7.3067, 7.3063, 7.307, 7.3066, 7.3063, 7.3071, 7.3067, 7.3063, 7.306, 7.3057, 7.3054, 7.305, 7.3046, 7.3042, 7.3038, 7.3045, 7.3052, 7.3059, 7.3057, 7.3054, 7.3051, 7.3059, 7.3057, 7.3054, 7.3053, 7.3051, 7.3048, 7.3045, 7.3053, 7.3052, 7.3049, 7.3056, 7.3052, 7.3049, 7.3056, 7.3053, 7.305, 7.3047, 7.3045, 7.3042, 7.3039, 7.3036, 7.3033, 7.303, 7.3037, 7.3033, 7.3038, 7.3035, 7.3031, 7.306, 7.3076, 7.3063, 7.307, 7.3074, 7.3092, 7.3088, 7.3085, 7.3082, 7.3093, 7.3102, 7.31, 7.3097, 7.3104, 7.31, 7.3111, 7.3109, 7.312, 7.3117, 7.3114, 7.3115, 7.3122, 7.3118, 7.3125, 7.3121, 7.3128, 7.3135, 7.3122, 7.3129, 7.3116, 7.3112, 7.3108, 7.3104, 7.3111, 7.3108, 7.3105, 7.3113, 7.312, 7.3117, 7.3124, 7.3131, 7.3139, 7.3136, 7.3133, 7.3139, 7.3135, 7.3162, 7.3158, 7.3155, 7.3152, 7.3169, 7.3177, 7.3164, 7.3162, 7.3169, 7.3177, 7.3199, 7.3196, 7.3203, 7.32, 7.3209, 7.3217, 7.3213, 7.3231, 7.3231, 7.3238, 7.3234, 7.3235, 7.3231, 7.3241, 7.3238, 7.3234, 7.3231, 7.3238, 7.3235, 7.3232, 7.3229, 7.3226, 7.3225, 7.3222, 7.3229, 7.3226, 7.3229, 7.3239, 7.3248, 7.3268, 7.3265, 7.3276, 7.3299, 7.3306, 7.3302, 7.3298, 7.3294, 7.3291, 7.3306, 7.3302, 7.33, 7.3297, 7.3293, 7.3291, 7.3298, 7.3295, 7.3294, 7.3302, 7.3298, 7.3315, 7.3315, 7.3321, 7.3317, 7.3314, 7.3321, 7.3319, 7.3318, 7.3306, 7.3322, 7.334, 7.3357, 7.3353, 7.3351, 7.3348, 7.3354, 7.3352, 7.3359, 7.3355, 7.3362, 7.3418, 7.3415, 7.3412, 7.3418, 7.3425, 7.3421, 7.3418, 7.3414, 7.3411, 7.3408, 7.3405, 7.3402, 7.3408, 7.3405, 7.3412, 7.3419, 7.3415, 7.3411, 7.3407, 7.3414, 7.343, 7.3437, 7.3444, 7.344, 7.3436, 7.3443, 7.3449, 7.3458, 7.3485, 7.3491, 7.3487, 7.3484, 7.3491, 7.3488, 7.3486, 7.3496, 7.3493, 7.349, 7.3487, 7.3491, 7.3489, 7.3485, 7.3481, 7.3478, 7.3474, 7.3472, 7.3469, 7.3466, 7.3462, 7.346, 7.3456, 7.3453, 7.3459, 7.3455, 7.3451, 7.3447, 7.3444, 7.345, 7.3457, 7.3453, 7.346, 7.3469, 7.3468, 7.3465, 7.3472, 7.347, 7.3467, 7.3466, 7.3473, 7.3471, 7.3471, 7.3479, 7.3476, 7.3473, 7.3472, 7.3469, 7.3477, 7.3484, 7.3481, 7.3489, 7.3485, 7.3485, 7.3492, 7.3489, 7.3485, 7.3482, 7.3479, 7.3476, 7.3474, 7.3471, 7.3478, 7.3475, 7.3474, 7.3473, 7.347, 7.3467, 7.3464]}
rtt1_10_10 = {'192.168.122.110': [5.4743, 5.3494, 6.1264, 5.6801, 5.6803, 5.3401, 5.5432, 5.4164, 6.2985, 6.6202, 5.5289, 14.8401, 5.5702, 5.594, 11.6262, 10.8125, 10.9787, 5.5699, 12.6357, 5.3196, 5.4703, 5.3272, 10.9894, 5.5265, 11.3788, 10.9804, 5.4898, 10.4806, 23.1249, 5.6422, 5.4572, 5.3451, 11.3616, 5.2958, 5.9364, 5.4667, 5.4507, 5.441, 6.0833, 10.7987, 11.8411, 5.3022, 11.9996, 10.7069, 5.4467, 11.6322, 6.592, 6.022, 10.7489, 5.2631, 5.5406, 5.5821, 5.2407, 11.6687, 5.9304, 10.9615, 5.8081, 33.3328, 6.1343, 6.3047, 21.8408, 5.4445, 6.2957, 6.2585, 5.8463, 5.3413, 6.4957, 6.7782, 21.9529, 16.515, 5.4755, 0.9091, 0.4644, 6.5014, 5.9791, 5.6658, 5.5196, 5.7685, 5.2876, 5.2054, 17.5219, 5.3947, 16.3548, 0.7474, 10.7291, 5.2938, 6.4175, 6.8312, 6.2172, 6.3863, 21.137, 5.4495, 5.4929, 5.4345, 10.6258, 5.6434, 5.3189, 5.6965, 11.7466, 6.9067, 10.9591, 5.5227, 6.5694, 22.2669, 5.7185, 5.5363, 6.5701, 5.455, 10.9699, 6.2227, 6.3012, 6.516, 5.4939, 5.4932, 5.8544, 5.6686, 6.0461, 27.2543, 5.5583, 5.3248, 5.5125, 5.5528, 6.2103, 5.6121, 5.4743, 6.1758, 5.3842, 6.3469, 5.3337, 10.8922, 5.5189, 5.6913, 5.4085, 5.6396, 11.106, 6.7394, 5.296, 10.7758, 5.656, 11.0726, 5.3959, 10.8948, 5.2907, 6.511, 5.569, 5.9936, 5.7356, 14.2839, 5.8472, 10.8278, 6.3822, 5.4469, 10.6931, 10.8459, 6.4785, 10.8137, 5.5666, 5.5635, 12.5484, 5.6248, 6.427, 6.3379, 5.4667, 5.4395, 5.2822, 5.4109, 5.5265, 5.8708, 5.8453, 6.2609, 5.7456, 11.7643, 5.3473, 5.476, 5.6963, 6.3882, 10.4949, 6.3829, 6.8102, 5.2857, 5.7788, 11.0006, 5.3694, 5.7604, 23.735, 5.3227, 5.5065, 6.1221, 5.1913, 11.152, 5.9829, 16.3114, 6.7067, 5.6107, 8.0097, 6.3746, 5.2645, 6.9292, 5.2867, 5.5764, 5.5425, 6.4383, 5.7833, 11.4999, 6.3012, 6.2726, 5.445, 5.2209, 11.9107, 11.3051, 5.9257, 6.5377, 5.2853, 5.3957, 5.4581, 10.7422, 6.3646, 6.6261, 5.7766, 5.4898, 5.6274, 10.8774, 11.0016, 5.7914, 11.2855, 5.3668, 6.546, 6.3241, 5.3051, 11.2097, 5.5707, 11.1802, 11.1029, 6.1684, 5.4333, 15.8582, 10.6881, 5.4381, 5.7445, 8.7867, 5.2938, 5.6846, 5.5652, 10.9668, 5.3103, 5.4123, 5.698, 0.8152, 10.8788, 10.9882, 6.3384, 6.8235, 7.5333, 5.6643, 6.3145, 0.6075, 5.8537, 6.4731, 5.5528, 20.8216], '192.168.122.119': [5.4898, 5.919, 6.7711, 5.2445, 5.2905, 5.3098, 5.8281, 10.7565, 5.4014, 13.5603, 5.7003, 5.8727, 11.0471, 5.5137, 10.8557, 5.8224, 6.4499, 24.4725, 11.3716, 5.4255, 10.9782, 10.4616, 6.2904, 5.4467, 10.8597, 10.9363, 5.6229, 16.7565, 5.877, 10.4945, 5.3318, 5.542, 5.6205, 16.8185, 10.9622, 5.3828, 6.4118, 5.3456, 5.4064, 5.3928, 5.4896, 5.8503, 5.6958, 5.3024, 5.475, 5.6107, 6.0146, 16.7425, 10.8192, 5.2273, 16.3898, 10.8778, 11.4644, 6.0124, 5.7871, 5.3637, 5.5304, 11.7137, 11.1263, 5.3613, 10.4384, 5.3878, 10.8862, 10.9916, 10.9594, 5.3585, 5.4331, 7.3013, 10.8259, 5.9388, 5.5115, 0.5364, 0.5891, 5.4049, 5.9817, 5.4824, 7.1023, 16.5668, 5.4951, 5.4069, 11.6518, 10.9286, 10.8345, 5.8467, 5.4271, 5.9061, 13.2456, 5.2836, 11.1167, 11.148, 10.7279, 10.9055, 5.4636, 5.9381, 22.9683, 5.6794, 10.7844, 5.8198, 17.4716, 5.4989, 10.993, 11.0393, 6.3081, 6.1691, 6.0198, 5.945, 6.3927, 5.4533, 5.4841, 5.8484, 6.0582, 5.5015, 5.625, 5.5456, 10.9801, 5.2819, 10.5765, 5.4252, 19.6426, 5.3465, 5.5754, 11.1749, 5.3058, 5.6498, 5.9011, 0.644, 11.2929, 15.9781, 11.4264, 5.2335, 5.7051, 5.5268, 5.2688, 10.7658, 10.7017, 12.5816, 5.2266, 5.3725, 10.7448, 6.0303, 11.0171, 5.9261, 5.3606, 5.2724, 5.2636, 26.511, 5.9009, 21.9893, 5.4874, 10.9386, 10.7448, 5.5079, 6.3021, 17.1671, 5.3065, 5.4631, 6.0165, 9.0578, 11.044, 5.518, 5.4498, 10.9499, 5.4224, 5.542, 5.302, 5.82, 5.7111, 11.3692, 11.0817, 5.929, 5.3217, 5.7762, 5.4481, 16.5856, 5.4946, 10.6585, 11.1673, 6.9637, 5.6748, 5.5888, 6.3992, 10.8473, 10.7732, 16.6087, 5.4793, 5.975, 5.4915, 10.9563, 5.271, 5.827, 12.2826, 6.0644, 5.7049, 11.3771, 5.6684, 5.6212, 5.2674, 11.1482, 5.7185, 5.6334, 5.4281, 10.838, 5.5118, 10.8888, 5.713, 11.1566, 5.24, 10.7176, 12.8064, 5.3928, 5.5861, 5.3971, 5.6679, 5.5494, 16.968, 6.0961, 10.9053, 5.6844, 5.4803, 5.527, 5.599, 5.6212, 5.7688, 5.7414, 5.6877, 5.8517, 5.4612, 10.6704, 5.9419, 6.2554, 5.5091, 6.0782, 5.8572, 5.7411, 11.004, 10.6072, 10.7634, 5.4922, 5.7762, 5.6558, 5.1851, 10.9708, 11.4434, 5.4357, 5.4388, 11.147, 6.2675, 0.906, 5.3129, 5.384, 10.9529, 5.3039, 5.1785, 5.7895, 10.8387, 33.2687, 5.6701, 5.6181, 10.9911, 5.2526], '192.168.122.118': [5.4932, 6.741, 13.7329, 5.3694, 10.7343, 10.6883, 5.9149, 10.8676, 5.3399, 12.2643, 11.2214, 11.4198, 5.5759, 6.5, 5.7254, 9.3093, 6.3152, 5.2717, 10.9355, 10.4573, 5.317, 18.4543, 10.8523, 11.1532, 5.6581, 10.9608, 5.3105, 5.6059, 11.3153, 5.7623, 5.6119, 5.6672, 5.295, 5.5254, 11.6978, 10.9184, 5.6467, 5.3701, 5.4529, 5.7921, 5.342, 5.8913, 11.4024, 5.3494, 6.0501, 5.8522, 10.7019, 6.4688, 5.4855, 16.0036, 10.9708, 10.9138, 1.1065, 6.3324, 5.4116, 5.5566, 5.8243, 5.4085, 10.5448, 5.7404, 5.2216, 10.8778, 10.8514, 16.7749, 5.5711, 10.5197, 5.6846, 6.6671, 10.6506, 5.5289, 6.0191, 5.8439, 0.6707, 18.2981, 6.3095, 5.7864, 6.7644, 11.2553, 9.9149, 5.2567, 5.3689, 5.2924, 10.9742, 10.9212, 11.8072, 10.5462, 5.3427, 5.9855, 5.4314, 6.1338, 33.2661, 10.9398, 5.4159, 5.945, 11.2257, 11.3034, 5.444, 15.9364, 5.8615, 6.2366, 5.4998, 6.0277, 5.4309, 10.7667, 5.5897, 11.256, 13.4068, 6.6998, 6.2673, 6.0463, 18.5568, 5.4524, 5.6093, 5.718, 5.4567, 10.6497, 5.8208, 5.4152, 11.0762, 6.402, 5.5737, 5.3294, 5.8362, 5.4877, 5.7259, 0.5834, 6.1448, 1.235, 5.5261, 5.2149, 5.5528, 6.305, 6.3164, 10.7191, 11.214, 5.4088, 10.8089, 10.8423, 11.6351, 11.338, 5.5766, 5.8722, 5.4781, 5.2941, 5.2369, 5.6975, 5.4667, 5.4674, 5.5254, 11.2319, 10.6394, 11.1907, 16.5973, 10.9992, 11.0497, 10.9663, 5.8746, 16.9024, 5.5325, 10.4542, 17.0829, 10.6478, 5.3453, 5.3427, 5.3196, 5.491, 5.2917, 5.2354, 11.0457, 5.3377, 10.7319, 5.564, 5.4886, 11.5385, 5.6047, 17.4575, 6.2525, 5.9233, 5.3422, 5.2617, 5.476, 10.9489, 10.8767, 21.8668, 5.4626, 5.419, 5.6264, 22.4032, 11.4903, 16.3026, 5.6336, 5.2965, 5.6417, 5.4524, 5.6951, 6.3744, 5.2326, 5.4822, 10.7915, 0.5202, 6.0656, 5.8703, 5.6894, 11.6401, 10.8273, 6.31, 5.4677, 5.77, 10.875, 10.8922, 16.6881, 5.8985, 5.4235, 5.4407, 10.9117, 5.5206, 5.4283, 6.2072, 5.2171, 12.5566, 10.7315, 5.7945, 5.2872, 5.6174, 5.9257, 5.9726, 5.6581, 5.4617, 5.3074, 5.4202, 5.6307, 10.7894, 5.5704, 5.6839, 16.4981, 5.2588, 5.3735, 5.2896, 11.3013, 5.3105, 11.2157, 10.9639, 7.324, 10.8273, 5.9409, 5.8274, 5.6567, 0.6344, 5.6224, 5.4834, 11.5101, 6.2382, 5.5153, 5.9047, 6.0086, 11.2641, 6.6147, 5.8818, 5.7783, 6.1812], '192.168.122.120': [6.1116, 5.3353, 11.3487, 5.7242, 11.0874, 5.2655, 16.2282, 5.7423, 5.3267, 9.0251, 17.2536, 11.6396, 5.5244, 5.2896, 5.6782, 5.8973, 6.1352, 5.5456, 11.0059, 5.2879, 5.4467, 5.5439, 5.2941, 5.3864, 5.6331, 5.5242, 21.9083, 5.374, 5.3971, 11.0123, 10.8097, 5.5568, 5.5971, 5.4128, 5.9462, 5.4154, 10.7737, 10.989, 5.6798, 5.3849, 9.45, 5.3978, 5.4963, 5.2812, 11.0216, 5.8119, 5.897, 23.1369, 10.9291, 0.6161, 5.996, 5.8377, 1.2133, 10.8404, 5.7027, 11.7779, 21.5104, 5.5432, 5.7654, 17.3147, 5.4817, 5.3341, 5.4538, 5.4812, 5.4722, 27.8423, 5.6798, 6.7728, 5.5637, 5.8413, 5.4357, 5.2822, 0.7839, 5.3542, 5.872, 11.3769, 11.0967, 6.0384, 5.6841, 10.8836, 5.2645, 5.4138, 10.9012, 5.4274, 5.3608, 5.4324, 6.2892, 5.662, 5.8053, 5.8661, 5.3248, 5.4049, 5.3363, 5.9381, 5.4018, 5.6789, 11.2402, 5.5196, 5.6753, 6.4056, 10.9348, 6.0232, 5.8949, 5.7404, 5.4679, 6.8021, 5.9726, 5.2412, 5.4071, 16.4297, 5.4803, 6.0315, 11.3254, 5.5494, 5.2872, 5.2793, 10.9229, 5.6581, 5.46, 5.9896, 6.0754, 6.202, 5.306, 6.3028, 11.0803, 6.0639, 16.9163, 10.5557, 10.8595, 10.859, 16.8014, 5.3117, 10.9107, 5.3797, 11.1239, 11.1036, 5.4419, 5.4796, 11.1086, 16.5401, 5.9202, 10.8593, 10.7396, 5.4264, 5.399, 11.2166, 5.6903, 11.492, 10.8945, 10.9515, 6.2115, 5.4445, 6.2311, 17.3712, 5.8904, 5.7096, 5.4774, 5.6701, 5.578, 11.27, 5.3258, 5.4817, 6.3667, 6.3579, 10.4315, 5.9371, 11.0972, 5.4696, 16.6979, 11.034, 11.1206, 5.8451, 5.2516, 5.4555, 10.7384, 5.8475, 5.6763, 5.8441, 5.6963, 5.2702, 10.4153, 5.2941, 5.4379, 5.363, 5.4901, 5.5587, 10.7656, 7.0906, 6.1953, 5.6214, 5.4896, 10.9825, 5.7275, 6.6645, 5.615, 22.2278, 5.2676, 10.8421, 5.3174, 5.3921, 0.4516, 22.5308, 5.6882, 5.5971, 5.4665, 5.4622, 5.4295, 6.314, 29.145, 11.4627, 5.6052, 5.4595, 10.5324, 5.4398, 5.9075, 23.3541, 5.9478, 5.5094, 5.543, 5.3835, 5.4955, 5.538, 10.6397, 10.8085, 6.299, 10.4804, 5.5323, 5.482, 10.664, 5.8954, 5.307, 11.0261, 6.0391, 6.2001, 10.8628, 5.6567, 10.7234, 5.5945, 5.6965, 5.4617, 10.848, 5.4936, 10.7398, 10.9916, 10.7853, 6.5479, 10.9878, 0.7052, 10.3955, 10.9072, 11.0652, 5.7919, 11.4145, 5.7149, 11.2021, 29.7606, 5.8854, 6.5169, 11.0128, 10.6828], '192.168.122.115': [6.4092, 5.2743, 10.5462, 11.2517, 10.5469, 10.4134, 10.7787, 6.3963, 5.4398, 7.642, 11.4563, 10.8757, 5.4893, 5.5177, 5.5668, 5.2845, 5.8093, 5.3689, 10.8707, 10.5224, 11.2782, 5.5268, 6.4454, 10.8976, 5.2173, 10.7906, 10.9456, 6.027, 5.414, 10.7725, 10.6978, 5.5809, 5.4982, 11.0278, 5.9888, 5.8873, 10.4814, 5.527, 5.9075, 5.4083, 0.8283, 5.4393, 5.383, 11.3084, 5.4314, 10.0775, 10.7772, 10.8137, 5.4505, 0.5379, 11.0035, 5.6696, 0.6967, 10.8101, 5.3711, 10.9048, 11.2934, 5.9323, 0.5519, 16.3589, 5.5869, 0.845, 15.9073, 5.6098, 10.6206, 10.8857, 5.2145, 6.6352, 6.0742, 5.6589, 16.1438, 0.4218, 6.1021, 5.2688, 6.0766, 6.0387, 6.0267, 12.8775, 5.2907, 22.0454, 11.57, 16.4146, 5.4913, 5.3639, 5.3577, 10.8924, 10.6194, 5.5974, 5.2309, 5.7628, 10.7965, 11.3766, 5.46, 5.9638, 5.404, 11.2782, 10.8795, 11.2734, 0.4916, 5.3756, 5.4097, 5.4514, 5.8763, 5.9769, 6.1285, 5.2953, 5.2507, 5.3458, 5.9936, 10.9627, 5.3921, 5.4505, 22.1748, 10.9146, 16.4201, 5.3327, 5.2617, 11.2472, 5.3711, 5.3549, 12.7895, 5.9507, 5.2822, 10.9668, 10.9756, 19.1066, 5.9116, 6.2358, 6.0821, 5.1992, 5.4114, 5.7127, 5.5518, 5.3551, 11.2429, 5.439, 5.5153, 6.639, 5.332, 22.4376, 10.9677, 5.2578, 5.2166, 10.8654, 10.5264, 10.5777, 10.9954, 11.2135, 10.9448, 10.9818, 5.4164, 6.1154, 6.057, 5.9032, 6.7356, 5.4333, 6.4015, 10.6466, 6.0294, 5.4765, 10.8759, 10.9653, 11.0776, 5.486, 5.3647, 16.5496, 5.5263, 5.7211, 6.0699, 5.3418, 5.4054, 0.6342, 5.4326, 5.3573, 10.9713, 17.205, 16.2618, 7.9532, 5.2166, 5.2159, 11.0917, 10.8378, 5.4493, 10.8902, 5.1906, 5.482, 5.5535, 5.6505, 5.2464, 5.6517, 11.2219, 5.9144, 6.4373, 6.413, 5.6467, 5.5647, 5.3053, 15.9931, 5.4026, 5.893, 6.175, 5.6071, 5.6586, 5.7728, 10.988, 5.8949, 10.8426, 10.9715, 11.4114, 5.7051, 5.619, 10.7677, 5.4753, 5.4083, 11.06, 16.7642, 10.973, 5.9323, 11.4679, 27.7224, 6.0279, 5.5704, 5.2576, 5.5757, 5.3599, 5.682, 10.8745, 10.7558, 10.5917, 10.9646, 10.5798, 6.1214, 11.8647, 10.3481, 5.9297, 10.6416, 5.2614, 21.9574, 6.1765, 5.5361, 5.4634, 5.4507, 6.9408, 11.095, 10.7272, 20.4568, 11.0469, 0.8869, 5.2862, 5.4502, 11.3778, 6.1541, 10.4156, 5.4941, 5.6946, 11.4553, 6.6714, 10.9401, 5.7302, 5.7421], '192.168.122.116': [6.7875, 11.6584, 6.2265, 21.3084, 5.7273, 5.7075, 5.2814, 5.3003, 5.2848, 33.3142, 5.6007, 5.619, 5.7132, 5.441, 6.3224, 5.5742, 5.5151, 6.0394, 10.865, 10.4423, 22.7954, 5.4924, 31.1017, 10.8721, 10.7422, 10.9107, 5.5661, 5.8532, 5.8703, 5.6324, 10.9894, 5.5606, 5.5971, 16.2289, 10.8826, 5.5258, 10.8917, 5.3835, 6.0017, 5.4014, 5.6338, 10.9382, 5.43, 16.6547, 6.238, 5.2712, 5.7361, 10.7784, 5.3558, 0.4265, 5.5065, 6.007, 0.4406, 10.9715, 0.6127, 5.6813, 11.066, 32.939, 0.3369, 21.7905, 27.2505, 0.8023, 21.9402, 5.5294, 16.1669, 16.5114, 11.6334, 5.4858, 10.7136, 10.6645, 5.7068, 0.5829, 11.1232, 6.1817, 6.7155, 10.6843, 11.3978, 5.9545, 15.6221, 5.4252, 5.1899, 5.4803, 10.5314, 10.8042, 5.3566, 10.54, 5.3601, 6.5236, 5.5034, 5.7023, 5.8224, 6.5405, 10.9193, 5.455, 5.2702, 5.7447, 6.3379, 10.7427, 6.0863, 5.4331, 5.466, 10.8538, 17.0724, 10.371, 5.4791, 5.3787, 5.8527, 5.9435, 5.9016, 10.8213, 10.8294, 5.4231, 10.9987, 5.8115, 5.774, 5.321, 10.8502, 5.4202, 5.4595, 6.0201, 5.2886, 10.4327, 5.4259, 11.2205, 10.9937, 11.0195, 5.9218, 6.2857, 5.4624, 5.3728, 5.2505, 10.6316, 5.3823, 10.7536, 6.0892, 10.9868, 10.8294, 6.3384, 5.5368, 11.0741, 5.8143, 16.5162, 22.0973, 5.4021, 5.9607, 10.7958, 5.7189, 10.8459, 10.8404, 5.4824, 5.8155, 12.4726, 10.8562, 10.8721, 5.9071, 5.5385, 10.9143, 5.5242, 10.778, 5.9063, 5.4216, 10.9925, 5.8801, 11.0478, 33.6385, 10.6065, 27.6418, 5.5621, 10.7079, 5.276, 6.1831, 1.08, 22.1651, 5.4264, 5.919, 5.326, 5.2049, 0.5455, 5.3849, 5.3413, 27.5276, 10.7827, 16.3877, 6.0539, 5.564, 5.4095, 5.9707, 5.4028, 16.6113, 11.3237, 5.6691, 5.7933, 5.486, 11.3735, 5.6953, 5.7182, 16.6574, 10.5402, 5.4827, 5.4111, 5.6713, 11.4784, 6.758, 10.9766, 10.8054, 5.9066, 10.9401, 11.5054, 5.6641, 11.2276, 5.5952, 5.2099, 5.8053, 5.4963, 6.0668, 10.9842, 5.5146, 5.7471, 16.609, 21.6875, 11.137, 5.5573, 5.3959, 5.6658, 11.57, 5.8498, 11.6727, 5.326, 6.6059, 5.4481, 10.9422, 16.324, 5.8007, 5.4462, 5.6865, 10.6394, 10.8354, 10.793, 5.8041, 5.2636, 5.3835, 6.1176, 5.4736, 5.6126, 5.4402, 5.2309, 5.7783, 0.55, 10.8476, 16.4533, 5.6126, 5.626, 5.5385, 5.7442, 5.6117, 5.6069, 5.4462, 11.179, 27.307, 10.8814], '192.168.122.114': [6.6602, 21.8852, 10.5515, 10.7384, 5.3139, 5.2032, 10.8378, 5.3453, 5.4469, 11.3225, 5.7368, 0.5617, 6.1603, 6.4385, 5.2454, 21.4033, 9.8453, 0.5288, 6.2032, 10.8514, 10.9289, 6.386, 5.4474, 5.8727, 10.9434, 10.7694, 5.816, 5.5585, 11.3146, 10.4733, 5.4173, 11.1101, 5.7256, 5.4514, 5.5656, 5.9841, 5.5256, 12.8391, 5.3346, 5.3873, 5.2829, 10.6404, 5.2984, 10.735, 11.3688, 5.2152, 11.6599, 5.4834, 5.2633, 0.7706, 5.9247, 11.297, 0.6936, 10.814, 0.6723, 5.8286, 21.5101, 5.6531, 16.9098, 5.9524, 5.6846, 1.9381, 5.7724, 5.2226, 16.7112, 10.9046, 28.079, 6.5997, 5.4221, 5.3272, 5.2323, 0.6273, 5.3895, 0.8469, 10.8831, 5.3515, 10.9792, 5.6858, 10.6702, 5.4193, 10.6556, 10.8099, 10.7358, 16.3391, 10.8671, 5.5833, 5.3592, 5.6574, 5.4653, 0.8097, 10.8008, 10.9386, 5.4307, 5.481, 5.2984, 5.8599, 10.946, 11.0021, 10.8867, 5.3613, 5.3978, 5.3871, 10.9761, 5.5594, 5.224, 5.3334, 10.7236, 5.9152, 5.5037, 10.8681, 5.8761, 11.0388, 10.8972, 10.9205, 5.6214, 5.2702, 5.4736, 5.9876, 5.487, 5.8632, 5.671, 5.5416, 5.7781, 10.6444, 11.0345, 5.3198, 5.2545, 6.8128, 5.3844, 0.7143, 5.2736, 10.8373, 10.6473, 6.4766, 5.4076, 5.429, 5.6283, 11.054, 5.2774, 16.6681, 6.4287, 10.8495, 5.5344, 11.0664, 5.8348, 11.538, 5.5003, 5.7039, 5.3973, 5.8177, 10.7541, 11.601, 5.4624, 5.4364, 5.8844, 5.4607, 10.9727, 5.7366, 5.6095, 5.4739, 5.4507, 6.1328, 22.465, 5.7323, 5.5311, 6.263, 5.4953, 5.4088, 10.946, 5.6095, 10.9441, 0.9241, 13.8288, 10.8461, 6.3396, 5.9497, 5.8663, 5.8923, 5.4107, 10.5145, 27.3979, 5.8808, 6.2306, 11.0424, 5.4908, 5.5108, 6.0928, 7.2417, 5.2519, 11.4858, 28.2805, 5.6825, 5.61, 5.6183, 11.3459, 10.9723, 5.2614, 5.3639, 5.4107, 10.9742, 5.7142, 5.4798, 5.8181, 5.6889, 5.3797, 11.7629, 5.2879, 6.227, 5.3415, 5.2862, 11.1279, 10.7405, 5.4114, 5.3906, 10.9589, 5.3573, 10.8845, 21.9774, 10.8154, 10.8302, 5.5079, 5.5127, 5.3568, 5.7037, 26.2206, 5.8692, 5.446, 10.8614, 5.9435, 10.8948, 5.6939, 11.6425, 5.7316, 10.802, 30.3447, 10.4902, 11.0106, 11.0421, 6.2957, 5.7051, 5.4638, 11.0457, 10.6692, 6.2907, 5.9161, 6.4955, 5.4996, 0.7539, 11.1368, 5.8808, 11.5318, 10.7872, 5.5764, 5.4448, 5.6229, 5.7142, 5.4033, 6.5389, 10.3779, 10.5212], '192.168.122.113': [6.1097, 10.6566, 10.5853, 5.9462, 5.2862, 5.3642, 5.4536, 6.1572, 5.5923, 5.3971, 5.5206, 0.6919, 5.2652, 6.1638, 27.5834, 5.9998, 15.9521, 5.9268, 11.0595, 11.0445, 5.4104, 5.3883, 10.8278, 5.5466, 22.8617, 5.3542, 5.4598, 10.5743, 14.2767, 10.9401, 10.9687, 5.4798, 11.121, 5.4076, 5.4812, 6.4089, 0.6022, 20.9394, 5.336, 5.2462, 10.6268, 5.3275, 10.9079, 5.3456, 5.2767, 11.3921, 5.5587, 5.4827, 10.9241, 0.5558, 5.5449, 5.4462, 0.3741, 5.3287, 0.7129, 7.2215, 5.6663, 6.3317, 10.8392, 10.8936, 5.8303, 0.7582, 5.4543, 5.4324, 10.8788, 5.2931, 11.5926, 10.9506, 10.8185, 5.4824, 10.9649, 0.6731, 5.4259, 0.6688, 5.2674, 10.7324, 6.2621, 6.0894, 5.347, 5.3053, 10.6015, 5.4255, 9.4392, 5.4367, 5.4882, 5.6818, 10.9305, 11.426, 5.4784, 5.7657, 5.2328, 5.3585, 10.8802, 5.5373, 10.7126, 5.8601, 5.4152, 10.855, 11.8136, 10.7396, 5.8227, 5.4305, 10.9522, 5.8999, 6.0475, 6.012, 6.1071, 10.7541, 5.3461, 10.9253, 5.6303, 5.7094, 10.9172, 11.3692, 10.7694, 5.3012, 5.415, 5.3394, 5.3108, 11.1151, 5.4915, 20.6103, 5.8262, 11.1272, 5.4579, 23.2859, 10.6652, 11.3075, 5.4064, 6.2075, 10.4077, 10.2885, 5.672, 10.7863, 17.2386, 6.2072, 16.341, 10.9558, 5.5611, 6.0778, 10.9425, 10.8809, 5.5501, 5.5799, 11.1926, 6.1927, 6.0468, 5.3177, 10.803, 11.6098, 10.653, 6.3229, 6.8505, 10.89, 10.844, 10.6709, 5.465, 11.1008, 5.9712, 5.82, 10.7651, 6.3798, 5.4872, 16.1545, 5.6274, 6.2208, 5.3468, 5.3067, 5.6455, 32.4721, 5.3725, 0.6196, 5.3515, 6.1443, 5.3289, 5.8408, 10.5515, 5.8451, 5.2075, 5.2493, 6.038, 0.8898, 0.479, 5.4631, 10.9499, 5.5001, 5.6102, 5.4748, 5.7282, 6.1636, 6.8934, 10.7191, 11.6618, 5.8141, 11.0447, 5.6381, 5.3296, 10.7074, 11.4055, 10.963, 5.3792, 5.4297, 16.5396, 11.4932, 5.9912, 16.398, 10.8953, 21.0927, 10.9653, 5.4317, 5.4765, 10.6459, 10.3998, 5.4512, 11.0452, 16.9373, 5.3306, 5.4457, 10.7601, 10.7872, 5.486, 5.5089, 5.8868, 5.6283, 5.7862, 5.3961, 5.4438, 10.8128, 10.6032, 5.3902, 6.258, 5.4159, 11.1475, 5.2845, 5.4643, 10.6311, 5.3408, 5.8224, 5.7006, 5.595, 10.8099, 11.0126, 10.896, 12.9991, 10.89, 9.4335, 5.6505, 0.8337, 6.0415, 18.8353, 5.62, 5.5707, 17.1678, 5.7042, 11.3492, 7.1552, 8.1553, 5.4774, 5.6338, 10.798], '192.168.122.112': [6.6125, 5.5645, 10.5946, 11.8713, 15.9001, 11.2586, 10.8254, 16.2265, 10.9048, 6.3736, 5.605, 0.6585, 5.3959, 5.825, 11.2498, 5.2698, 5.7843, 5.2419, 5.8157, 10.6268, 5.3747, 6.341, 10.8926, 5.4038, 11.3842, 5.3983, 5.5132, 5.2459, 10.7982, 5.7573, 5.2838, 5.5094, 5.5149, 5.2421, 5.3141, 6.1073, 0.7484, 5.4691, 5.6562, 5.4846, 5.4369, 11.2696, 16.4752, 5.4097, 5.4548, 10.4196, 5.4026, 5.2888, 10.7374, 0.4601, 5.4896, 22.3451, 0.4125, 5.4975, 0.5937, 5.7178, 10.2999, 5.7499, 10.6742, 5.3937, 5.645, 0.5991, 5.4739, 10.69, 5.4615, 16.9995, 5.4548, 5.8846, 10.7071, 5.9607, 10.8147, 0.6783, 5.4412, 0.7348, 5.43, 5.3463, 5.6548, 5.3339, 10.7553, 5.4016, 5.5573, 5.3976, 21.6773, 5.5156, 11.0281, 10.3321, 5.2509, 5.8064, 5.7478, 11.3142, 10.581, 5.4367, 10.8495, 5.7001, 5.5792, 6.1207, 10.6704, 5.6777, 6.0284, 10.8283, 10.9849, 5.4097, 10.5689, 10.7875, 10.6878, 5.6207, 5.3773, 5.6381, 6.0358, 10.823, 10.9692, 5.2927, 10.9136, 7.3903, 5.2962, 5.4252, 5.8789, 5.4719, 16.3779, 22.0606, 16.4299, 10.8323, 21.1756, 5.7018, 11.0683, 5.7487, 5.3816, 5.645, 10.9463, 5.2621, 10.3791, 5.7228, 16.4721, 5.8875, 5.8603, 5.2803, 6.0284, 5.4231, 5.2381, 10.5226, 5.3709, 5.3816, 5.4293, 11.0567, 6.2199, 11.3499, 16.7074, 5.5611, 11.121, 11.5423, 10.4482, 5.5156, 21.7669, 10.92, 10.8056, 6.2876, 10.9017, 5.6219, 10.8156, 5.3685, 5.8391, 6.1989, 5.5017, 5.5075, 10.6542, 5.8732, 11.1272, 5.4305, 10.7915, 10.9906, 5.512, 3.5157, 5.3892, 10.5278, 5.4975, 5.4121, 5.3742, 5.8405, 5.9125, 5.2276, 5.6586, 6.9728, 0.7064, 5.3751, 6.356, 6.4003, 5.6314, 5.7282, 21.2114, 5.6839, 5.4758, 5.7142, 5.8277, 5.496, 11.5471, 5.5695, 10.926, 6.2068, 6.1648, 10.993, 5.5561, 5.6152, 10.8273, 5.867, 21.6129, 6.0785, 11.2967, 5.2211, 10.4733, 5.3942, 11.0958, 5.9552, 6.0847, 5.4493, 11.1403, 5.3926, 10.9742, 5.4233, 5.5892, 5.4414, 5.6138, 6.4259, 5.348, 0.622, 6.2153, 5.47, 10.9148, 5.4493, 5.8701, 10.7257, 6.2494, 5.9736, 0.9689, 11.4861, 5.4505, 5.1975, 5.1951, 11.0641, 11.4124, 5.9161, 5.4262, 11.0803, 28.1923, 5.5428, 11.0164, 6.4774, 10.9408, 0.5114, 16.1619, 26.4544, 5.758, 5.9094, 5.533, 5.3537, 11.272, 10.9181, 10.9501, 29.7203, 10.3443, 10.9313]}
cpu1_10_10 = [10.4, 57.2, 2.3, 3.6, 1.4, 0.3, 0.4, 0.5, 0.3, 0.3, 0.0, 0.6, 0.3, 1.3, 0.8, 0.1, 0.5, 0.2, 0.8, 1.2, 0.0, 0.8, 0.5, 0.1, 0.6, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.1, 0.3, 0.2, 0.0, 0.1, 1.7, 2.2, 0.4, 0.5, 0.5, 0.1, 0.2, 0.2, 0.1, 0.3, 0.7, 0.9, 0.8, 0.2, 0.0, 0.4, 0.6, 1.0, 0.7, 2.4, 2.1, 0.1, 0.0, 0.0, 0.2, 0.2, 0.5, 0.9, 0.4, 0.2, 0.2, 0.5, 0.5, 0.2, 0.3, 0.7, 0.6, 0.1, 0.3, 1.2, 1.5, 1.8, 0.8, 0.8, 0.2, 0.2, 0.0, 0.4, 1.2, 0.7, 0.5, 1.6, 1.3, 0.1, 0.0, 0.4, 0.5, 0.1, 0.4, 0.0, 0.3, 0.5, 0.9, 1.1, 0.5, 2.1, 1.7, 0.7, 0.4, 0.3, 1.4, 1.2, 0.5, 0.2, 1.2, 0.4, 0.6, 0.9, 0.0, 0.7, 0.4, 0.0, 0.9, 1.0, 0.7, 0.1, 1.2, 0.9, 0.4, 0.7, 0.3, 1.1, 0.9, 0.1, 0.3, 0.6, 0.2, 0.4, 0.2, 0.5, 0.9, 0.3, 0.3, 0.5, 0.1, 0.7, 0.0, 0.7, 0.1, 0.8, 1.1, 0.8, 2.0, 3.2, 2.6, 0.2, 0.2, 0.4, 0.1, 0.3, 0.5, 1.3, 1.2, 0.3, 0.1, 0.5, 0.3, 1.1, 5.5, 4.8, 0.2, 0.4, 0.4, 1.4, 0.7, 0.2, 0.0, 0.4, 1.1, 0.6, 0.3, 0.1, 0.2, 0.4, 0.7, 0.4, 1.7, 1.8, 0.2, 0.5, 0.8, 0.5, 0.2, 0.2, 0.4, 0.1, 0.2, 0.5, 1.2, 0.4, 0.0, 0.5, 0.3, 0.1, 0.2, 0.1, 0.3, 0.4, 0.1, 0.3, 0.1, 0.1, 0.2, 0.2, 0.2, 1.3, 1.2, 5.0, 5.5, 0.4, 1.0, 0.9, 0.1, 0.3, 0.4, 0.2, 0.5, 0.5, 0.0, 0.8, 0.9, 0.1, 0.5, 3.2, 2.6, 3.5, 3.5, 2.2, 2.3, 0.6, 0.2, 0.6, 0.1, 3.2, 3.4, 0.2, 0.4, 0.8, 0.0, 0.7, 0.4, 0.0, 0.3, 0.1, 0.2, 0.8, 0.2, 1.0, 0.7, 2.1, 1.1, 0.7, 0.7, 0.4]
off_mec1_10_10 = 54
off_cloud1_10_10 = 114
inward_mec1_10_10 = 31
loc1_10_10 = 706
deadlock1_10_10 = [4]
memory1_10_10 = [0.2187, 0.2188, 0.2189, 0.2191, 0.2192, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2198, 0.2198, 0.2198, 0.2199, 0.2199, 0.22, 0.2202, 0.2204, 0.2204, 0.2205, 0.2205, 0.2206, 0.2206, 0.2206, 0.2207, 0.2207, 0.2208, 0.2209, 0.2209, 0.2209, 0.2211, 0.2211, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2214, 0.2215, 0.2216, 0.2216, 0.2217, 0.2219, 0.222, 0.2221, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2224, 0.2225, 0.2226, 0.2226, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2229, 0.223, 0.223, 0.2232, 0.2233, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2237, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2241, 0.2241, 0.2242, 0.2244, 0.2244, 0.2245, 0.2245, 0.2245, 0.2245, 0.2246, 0.2247, 0.2248, 0.2248, 0.225, 0.225, 0.2251, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2256, 0.2256, 0.2257, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.226, 0.226, 0.226, 0.2261, 0.2261, 0.2262, 0.2262, 0.2262, 0.2264, 0.2264, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2267, 0.2267, 0.2268, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.227, 0.227, 0.2271, 0.2271, 0.2271, 0.2273, 0.2273, 0.2273, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2276, 0.2276, 0.2276, 0.2276, 0.2282, 0.2282, 0.2282, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2285, 0.2285, 0.2285, 0.2286, 0.2286, 0.2286, 0.2287, 0.2287, 0.2287, 0.2287, 0.2288, 0.2288, 0.2288, 0.2288, 0.2291, 0.2291, 0.2296, 0.2296, 0.2297, 0.2297, 0.2297, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2299, 0.2299, 0.2299, 0.23, 0.23, 0.23, 0.23, 0.23, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2303, 0.2304, 0.2304, 0.2304, 0.2304, 0.2305, 0.231, 0.231, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312]
task_received1_10_10 = 874
sent_t1_10_10 = {'124': 267, '125': 236, '126': 371}
cooperate1_10_10 = {'mec': 54, 'cloud': 114}
task_record1_10_10 = {}
outward_mec1_10_10 = 32
offload_check1_10_10 = [30, 2] |
"""
How to find only the duplicates
"""
some_list = ['a', 'b', 'c', 'b', 'd', 'm', 'n', 'n']
duplicates = [] # o noua lista unde adaugam duplicatele
for value in some_list:
if some_list.count(value) > 1: # cand in lista numaram fiecare valoarea si se gaseste mai mult de o data
if value not in duplicates: # apoi cand acea valoare nu se gaseste deja in duplicates, o adaugam
duplicates.append(value)
print(duplicates)
some_list = ['a', 'b', 'c', 'b', 'd', 'm', 'n', 'n']
duplicates = list(set([x for x in some_list if some_list.count(x) > 1]))
print(duplicates)
# list = transformam in lista cum cere
# set = sa apara fara duplicate
# for x in some_list sa mearga prin lista, if = numai cand count(x) din lista some_list se gaseste mai mult de o data
| """
How to find only the duplicates
"""
some_list = ['a', 'b', 'c', 'b', 'd', 'm', 'n', 'n']
duplicates = []
for value in some_list:
if some_list.count(value) > 1:
if value not in duplicates:
duplicates.append(value)
print(duplicates)
some_list = ['a', 'b', 'c', 'b', 'd', 'm', 'n', 'n']
duplicates = list(set([x for x in some_list if some_list.count(x) > 1]))
print(duplicates) |
"""
flopz.
Low Level Assembler and Firmware Instrumentation Toolkit
"""
__version__ = "0.2.0"
__author__ = "Noelscher Consulting GmbH"
| """
flopz.
Low Level Assembler and Firmware Instrumentation Toolkit
"""
__version__ = '0.2.0'
__author__ = 'Noelscher Consulting GmbH' |
'''
Created on 18.03.2020
@author: LK
'''
class TMC_EvalShield(object):
"""
Arguments:
connection:
Type: connection interface
The connection interface used for this module.
shield:
Type: class
The EvalShield class used for every axis on this module.
For every axis connected, an instance of this class will be created,
which can be used later.
"""
def __init__(self, connection, shield, moduleID=1):
self.GPs = _GPs
self.shields = []
while(not(connection.globalParameter(self.GPs.attachedAxes, 0, moduleID))):
pass
attachedAxes = connection.globalParameter(self.GPs.attachedAxes, 0, moduleID)
for i in range(attachedAxes):
self.shields.append(shield(connection, i, moduleID))
class _GPs():
attachedAxes = 6
| """
Created on 18.03.2020
@author: LK
"""
class Tmc_Evalshield(object):
"""
Arguments:
connection:
Type: connection interface
The connection interface used for this module.
shield:
Type: class
The EvalShield class used for every axis on this module.
For every axis connected, an instance of this class will be created,
which can be used later.
"""
def __init__(self, connection, shield, moduleID=1):
self.GPs = _GPs
self.shields = []
while not connection.globalParameter(self.GPs.attachedAxes, 0, moduleID):
pass
attached_axes = connection.globalParameter(self.GPs.attachedAxes, 0, moduleID)
for i in range(attachedAxes):
self.shields.append(shield(connection, i, moduleID))
class _Gps:
attached_axes = 6 |
RRNN_SEMIRING = """
extern "C" {
__global__ void rrnn_semiring_fwd(
const float * __restrict__ u,
const float * __restrict__ eps,
const float * __restrict__ c1_init,
const float * __restrict__ c2_init,
const int len,
const int batch,
const int dim,
const int k,
float * __restrict__ c1,
float * __restrict__ c2,
int semiring_type) {
assert (k == K);
int ncols = batch*dim;
int col = blockIdx.x * blockDim.x + threadIdx.x;
if (col >= ncols) return;
int ncols_u = ncols*k;
const float *up = u + (col*k);
float *c1p = c1 + col;
float *c2p = c2 + col;
float cur_c1 = *(c1_init + col);
float cur_c2 = *(c2_init + col);
const float eps_val = *(eps + (col%dim));
for (int row = 0; row < len; ++row) {
float u1 = *(up);
float u2 = *(up+1);
float forget1 = *(up+2);
float forget2 = *(up+3);
float prev_c1 = cur_c1;
float op1 = times_forward(semiring_type, cur_c1, forget1);
cur_c1 = plus_forward(semiring_type, op1, u1);
float op2 = times_forward(semiring_type, cur_c2, forget2);
float op3_ = plus_forward(semiring_type, eps_val, prev_c1);
float op3 = times_forward(semiring_type, op3_, u2);
cur_c2 = plus_forward(semiring_type, op2, op3);
*c1p = cur_c1;
*c2p = cur_c2;
up += ncols_u;
c1p += ncols;
c2p += ncols;
}
}
__global__ void rrnn_semiring_bwd(
const float * __restrict__ u,
const float * __restrict__ eps,
const float * __restrict__ c1_init,
const float * __restrict__ c2_init,
const float * __restrict__ c1,
const float * __restrict__ c2,
const float * __restrict__ grad_c1,
const float * __restrict__ grad_c2,
const float * __restrict__ grad_last_c1,
const float * __restrict__ grad_last_c2,
const int len,
const int batch,
const int dim,
const int k,
float * __restrict__ grad_u,
float * __restrict__ grad_eps,
float * __restrict__ grad_c1_init,
float * __restrict__ grad_c2_init,
int semiring_type) {
assert (k == K);
int ncols = batch*dim;
int col = blockIdx.x * blockDim.x + threadIdx.x;
if (col >= ncols) return;
int ncols_u = ncols*k;
float cur_c1 = *(grad_last_c1 + col);
float cur_c2 = *(grad_last_c2 + col);
const float eps_val = *(eps + (col%dim));
const float *up = u + (col*k) + (len-1)*ncols_u;
const float *c1p = c1 + col + (len-1)*ncols;
const float *c2p = c2 + col + (len-1)*ncols;
const float *gc1p = grad_c1 + col + (len-1)*ncols;
const float *gc2p = grad_c2 + col + (len-1)*ncols;
float *gup = grad_u + (col*k) + (len-1)*ncols_u;
float geps = 0.f;
for (int row = len-1; row >= 0; --row) {
float u1 = *(up);
float u2 = *(up+1);
float forget1 = *(up+2);
float forget2 = *(up+3);
const float c1_val = *c1p;
const float c2_val = *c2p;
const float prev_c1 = (row>0) ? (*(c1p-ncols)) : (*(c1_init+col));
const float prev_c2 = (row>0) ? (*(c2p-ncols)) : (*(c2_init+col));
const float gc1 = *(gc1p) + cur_c1;
const float gc2 = *(gc2p) + cur_c2;
cur_c1 = cur_c2 = 0.f;
float op1 = times_forward(semiring_type, prev_c1, forget1);
float gop1 = 0.f, gu1 = 0.f;
plus_backward(semiring_type, op1, u1, gc1, gop1, gu1);
float gprev_c1 = 0.f, gprev_c2 = 0.f, gforget1=0.f;
times_backward(semiring_type, prev_c1, forget1, gop1, gprev_c1, gforget1);
*(gup) = gu1;
*(gup+2) = gforget1;
cur_c1 += gprev_c1;
float op2 = times_forward(semiring_type, prev_c2, forget2);
float op3_ = plus_forward(semiring_type, eps_val, prev_c1);
float op3 = times_forward(semiring_type, op3_, u2);
float gop2 = 0.f, gop3 = 0.f;
plus_backward(semiring_type, op2, op3, gc2, gop2, gop3);
float gop3_ = 0.f, gu2 = 0.f, gforget2 = 0.f, cur_geps=0.f;
times_backward(semiring_type, prev_c2, forget2, gop2, gprev_c2, gforget2);
times_backward(semiring_type, op3_, u2, gop3, gop3_, gu2);
plus_backward(semiring_type, eps_val, prev_c1, gop3_, cur_geps, gprev_c1);
*(gup+1) = gu2;
*(gup+3) = gforget2;
geps += cur_geps;
cur_c1 += gprev_c1;
cur_c2 += gprev_c2;
up -= ncols_u;
c1p -= ncols;
c2p -= ncols;
gup -= ncols_u;
gc1p -= ncols;
gc2p -= ncols;
}
*(grad_c1_init + col) = cur_c1;
*(grad_c2_init + col) = cur_c2;
*(grad_eps + col%dim) = geps;
}
}
"""
| rrnn_semiring = '\n\nextern "C" {\n __global__ void rrnn_semiring_fwd(\n const float * __restrict__ u, \n const float * __restrict__ eps, \n const float * __restrict__ c1_init,\n const float * __restrict__ c2_init,\n const int len, \n const int batch, \n const int dim, \n const int k,\n float * __restrict__ c1,\n float * __restrict__ c2,\n int semiring_type) {\n assert (k == K);\n int ncols = batch*dim;\n int col = blockIdx.x * blockDim.x + threadIdx.x;\n if (col >= ncols) return;\n int ncols_u = ncols*k;\n\n const float *up = u + (col*k);\n float *c1p = c1 + col;\n float *c2p = c2 + col;\n float cur_c1 = *(c1_init + col);\n float cur_c2 = *(c2_init + col);\n const float eps_val = *(eps + (col%dim));\n\n for (int row = 0; row < len; ++row) {\n float u1 = *(up);\n float u2 = *(up+1);\n float forget1 = *(up+2);\n float forget2 = *(up+3);\n \n float prev_c1 = cur_c1;\n float op1 = times_forward(semiring_type, cur_c1, forget1);\n cur_c1 = plus_forward(semiring_type, op1, u1);\n\n float op2 = times_forward(semiring_type, cur_c2, forget2);\n float op3_ = plus_forward(semiring_type, eps_val, prev_c1);\n float op3 = times_forward(semiring_type, op3_, u2);\n cur_c2 = plus_forward(semiring_type, op2, op3);\n\n *c1p = cur_c1;\n *c2p = cur_c2;\n\n up += ncols_u;\n c1p += ncols;\n c2p += ncols;\n }\n }\n\n __global__ void rrnn_semiring_bwd(\n const float * __restrict__ u, \n const float * __restrict__ eps, \n const float * __restrict__ c1_init,\n const float * __restrict__ c2_init,\n const float * __restrict__ c1,\n const float * __restrict__ c2,\n const float * __restrict__ grad_c1, \n const float * __restrict__ grad_c2, \n const float * __restrict__ grad_last_c1,\n const float * __restrict__ grad_last_c2,\n const int len, \n const int batch, \n const int dim, \n const int k,\n float * __restrict__ grad_u, \n float * __restrict__ grad_eps, \n float * __restrict__ grad_c1_init,\n float * __restrict__ grad_c2_init,\n int semiring_type) {\n assert (k == K);\n int ncols = batch*dim;\n int col = blockIdx.x * blockDim.x + threadIdx.x;\n if (col >= ncols) return;\n\n int ncols_u = ncols*k;\n\n float cur_c1 = *(grad_last_c1 + col);\n float cur_c2 = *(grad_last_c2 + col);\n const float eps_val = *(eps + (col%dim));\n\n const float *up = u + (col*k) + (len-1)*ncols_u;\n const float *c1p = c1 + col + (len-1)*ncols;\n const float *c2p = c2 + col + (len-1)*ncols;\n\n const float *gc1p = grad_c1 + col + (len-1)*ncols;\n const float *gc2p = grad_c2 + col + (len-1)*ncols;\n float *gup = grad_u + (col*k) + (len-1)*ncols_u;\n float geps = 0.f;\n\n for (int row = len-1; row >= 0; --row) {\n float u1 = *(up);\n float u2 = *(up+1);\n float forget1 = *(up+2);\n float forget2 = *(up+3);\n\n const float c1_val = *c1p;\n const float c2_val = *c2p;\n\n const float prev_c1 = (row>0) ? (*(c1p-ncols)) : (*(c1_init+col));\n const float prev_c2 = (row>0) ? (*(c2p-ncols)) : (*(c2_init+col));\n\n const float gc1 = *(gc1p) + cur_c1;\n const float gc2 = *(gc2p) + cur_c2;\n cur_c1 = cur_c2 = 0.f;\n \n float op1 = times_forward(semiring_type, prev_c1, forget1);\n float gop1 = 0.f, gu1 = 0.f;\n plus_backward(semiring_type, op1, u1, gc1, gop1, gu1);\n float gprev_c1 = 0.f, gprev_c2 = 0.f, gforget1=0.f;\n times_backward(semiring_type, prev_c1, forget1, gop1, gprev_c1, gforget1);\n *(gup) = gu1;\n *(gup+2) = gforget1;\n cur_c1 += gprev_c1; \n \n float op2 = times_forward(semiring_type, prev_c2, forget2);\n float op3_ = plus_forward(semiring_type, eps_val, prev_c1);\n float op3 = times_forward(semiring_type, op3_, u2);\n float gop2 = 0.f, gop3 = 0.f;\n plus_backward(semiring_type, op2, op3, gc2, gop2, gop3);\n\n float gop3_ = 0.f, gu2 = 0.f, gforget2 = 0.f, cur_geps=0.f;\n times_backward(semiring_type, prev_c2, forget2, gop2, gprev_c2, gforget2);\n times_backward(semiring_type, op3_, u2, gop3, gop3_, gu2);\n plus_backward(semiring_type, eps_val, prev_c1, gop3_, cur_geps, gprev_c1);\n *(gup+1) = gu2;\n *(gup+3) = gforget2;\n geps += cur_geps;\n cur_c1 += gprev_c1;\n cur_c2 += gprev_c2;\n\n up -= ncols_u; \n c1p -= ncols;\n c2p -= ncols;\n gup -= ncols_u;\n gc1p -= ncols;\n gc2p -= ncols;\n }\n\n *(grad_c1_init + col) = cur_c1;\n *(grad_c2_init + col) = cur_c2;\n *(grad_eps + col%dim) = geps;\n }\n}\n' |
"""Provide meta-models for Asset Administration Shell information model."""
__version__ = "2021.11.20a2"
__author__ = (
"Nico Braunisch, Marko Ristin, Robert Lehmann, Marcin Sadurski, Manuel Sauer"
)
__license__ = "License :: OSI Approved :: MIT License"
__status__ = "Alpha"
| """Provide meta-models for Asset Administration Shell information model."""
__version__ = '2021.11.20a2'
__author__ = 'Nico Braunisch, Marko Ristin, Robert Lehmann, Marcin Sadurski, Manuel Sauer'
__license__ = 'License :: OSI Approved :: MIT License'
__status__ = 'Alpha' |
#!/usr/bin/env python3
def simulate(reg_0, find_non_loop):
seen = set()
c = 0
last_unique_c = -1
while True:
a = c | 65536
c = reg_0
while True:
c = (((c + (a & 255)) & 16777215) * 65899) & 16777215
if a < 256:
if find_non_loop:
return c
else:
if c not in seen:
seen.add(c)
last_unique_c = c
break
else:
return last_unique_c
else:
a //= 256
print(simulate(7041048, True))
print(simulate(7041048, False))
| def simulate(reg_0, find_non_loop):
seen = set()
c = 0
last_unique_c = -1
while True:
a = c | 65536
c = reg_0
while True:
c = (c + (a & 255) & 16777215) * 65899 & 16777215
if a < 256:
if find_non_loop:
return c
elif c not in seen:
seen.add(c)
last_unique_c = c
break
else:
return last_unique_c
else:
a //= 256
print(simulate(7041048, True))
print(simulate(7041048, False)) |
# Directions
UP = 'UP'
DOWN = 'DOWN'
LEFT = 'LEFT'
RIGHT = 'RIGHT'
# Colors
RED = (255, 0, 0)
BLACK = (0, 0, 0)
GREEN = (0, 255, 0)
WHITE = (255, 255, 255)
| up = 'UP'
down = 'DOWN'
left = 'LEFT'
right = 'RIGHT'
red = (255, 0, 0)
black = (0, 0, 0)
green = (0, 255, 0)
white = (255, 255, 255) |
#!/usr/bin/env python3
flags = ['QCTF{2a5576bc51a5c3feb82c96fe80d3a520}', 'QCTF{eb2ddbf0e318812ede843e8ecec6144f}', 'QCTF{5cdf65c6069a6b815352c3f1b4d09a56}', 'QCTF{69d7b7deb23746b8bd18b22f3eb92b50}', 'QCTF{44e37938c0bc05393b5b33a70c5a70db}', 'QCTF{3b37a953391e38ce0b8e168e9eaa6ec5}', 'QCTF{ee2848cb73236007d36cb5ae75c4d2bf}', 'QCTF{8dceee7e583b81a844a58ae72bf0671f}', 'QCTF{1e3dbf7253eaa1454ba21806dd1fc14c}', 'QCTF{da8f9cc7d7f1b1481f87f6390fa25e0c}', 'QCTF{ef7e72c36017f57e3f6b940b25bcd3b8}', 'QCTF{41342b5fdd954b2ff55773096c335f52}', 'QCTF{35fa8fbb26685d098fc776e0a36f49aa}', 'QCTF{168ab402de637d3d309d32d5290e1e31}', 'QCTF{f184a2e0373a244ed3a1b84a9bdb3a23}', 'QCTF{f586fdb5119afc82250ed69fe9bdc7dd}', 'QCTF{1f13c89d8c9eb5573c15ecd50d2f9e50}', 'QCTF{11dfd6714cf59973c28b29c27b3f84df}', 'QCTF{210050152f6adf890bc663580cbca181}', 'QCTF{8200b5ef385ca392651e186a436e0609}', 'QCTF{552eb20e1897c751adf2e320f47d9179}', 'QCTF{cb6efd12b769ea8f1c38c98f1977d5ce}', 'QCTF{004072519dd358254b1de59133ba8386}', 'QCTF{9c4b21c7c3a0fcc3f391695968b7c7e9}', 'QCTF{5a940d17a3b9afa668381947469dd9f7}', 'QCTF{7a3891890abaf4921b8fb2e4a940eb2d}', 'QCTF{3527635e90dc57fe164d5f8d88dbcb38}', 'QCTF{3c5c5abd09bdcfdf09e65eba1eb80b24}', 'QCTF{6f46a5846a40d68d6a035a2ad60a2622}', 'QCTF{794223155a79df0d44a13687b1ed2003}', 'QCTF{43d4cb8f632f779975d6060b5193153f}', 'QCTF{775427be397d5bf852a046e65884d7f9}', 'QCTF{f9fd2dff056c2d47d14bdb9a417d99d5}', 'QCTF{300e2128e66389b5d3c3e057c1ade37f}', 'QCTF{25ee8ba64e6f578a14065aef15fb0028}', 'QCTF{7b0a45a53a059e55dcccf3b7e975ff2e}', 'QCTF{ebff50288af7c8a2a7bd8b1e11a8a612}', 'QCTF{b9a51b35b496056c4fbce56d3c6368e5}', 'QCTF{e1c9872464c4a27cbab39abcd86203b9}', 'QCTF{249589aeb27f9215b209dd933b6dccd8}', 'QCTF{55edfaf50d7e83ade9a98655fca33b31}', 'QCTF{597ab70595c974e07e31a3fa1277bf11}', 'QCTF{7c5023239ef7f22c41aa606ce9aaba5b}', 'QCTF{72257f0fb4a980bcbd9a6f41f52a370b}', 'QCTF{fc09caef8f7c55cd878344568f47a382}', 'QCTF{1dc7595bdbd4c4c60ceda6e21709e6f2}', 'QCTF{d19d9769e8c4262f3a66c95f63fe7f34}', 'QCTF{dec3d0c80f0df0e5af9a97d665dbdc37}', 'QCTF{02bafaf609aaa269bd8abf417208bb54}', 'QCTF{67507d62a48f4e06275f3363b7876d3c}', 'QCTF{8a5a2752374ef22803d1e600177b1bb4}', 'QCTF{a353e9e2be2070249cd297715ea6b10a}', 'QCTF{80225cecfb252b774fa338313e9430b7}', 'QCTF{fa584956ef689e8b341e1d734c734719}', 'QCTF{63015e092eb29efb121f3253cd21c379}', 'QCTF{d62443dfd293d1e412afe00676e437d5}', 'QCTF{59e40e54a8c5a04526e545bbee435249}', 'QCTF{30702aa0f1f56f7c6b8f738602e498e0}', 'QCTF{efec73d04226055571e8f18c96ee3c96}', 'QCTF{9d1dc2ea33d36391531c5555bf39e433}', 'QCTF{d367af673f3c9cf0fdb2893b00689b7c}', 'QCTF{1e24ece8acce5ad1902f412338b01e53}', 'QCTF{88293463e852a19b1c5009bbb1d6ed5f}', 'QCTF{319a0909fd0df476109c9bab65b5202a}', 'QCTF{59f28c649809dd3e4287c72f617428a4}', 'QCTF{ce7df959f53a8dea0ce1e3aa0c2eb8f8}', 'QCTF{5386d6256232979494c48252ee1dd640}', 'QCTF{5ad8efd6bb44d0604cba3800600b1d0e}', 'QCTF{087ca88149d4323d1f00be02a882a79b}', 'QCTF{ce4abbce715a72951061f7adcf15ea1b}', 'QCTF{301e2306bc2849fb53fff0595afc3ed1}', 'QCTF{206d3753e0070c66561a16abfa9c845b}', 'QCTF{05e734b3544679475050326e11441d6e}', 'QCTF{f45249ac1b299ac8a9f430a791e20ceb}', 'QCTF{3433fc22bbc389ba386c1d21f532ed3b}', 'QCTF{15edbf8aaa728eb81ba6f555997f4815}', 'QCTF{580fe8c58bf434bc5f2eef7420649673}', 'QCTF{e41bfb2090daf3773fa230eee97c2d90}', 'QCTF{654380c696844545896584334e208184}', 'QCTF{3946d70c84bf4810cf7e9a31e0b12cff}', 'QCTF{97b67f280a1b2bf58f8bd54ad8ceff66}', 'QCTF{3278f990d9dd5f5dd67c2d4b9d230753}', 'QCTF{f966c22475a0964eaa834830bfe338bd}', 'QCTF{3f913b97b23c854fcdf6fddc41743c62}', 'QCTF{e5dc135b13c2c5b5371d9c24b7715a90}', 'QCTF{70cfc6a3e2f98e98f3488d5180fd3d1c}', 'QCTF{1dfea28b554380e772736d0b3e2e060d}', 'QCTF{4cf742197c83c13a76ffd38fcd9394c7}', 'QCTF{0389931bc1415676698558259dd33911}', 'QCTF{2c6a7d2d0cb06b7050164c593b6eff88}', 'QCTF{43bd14ac279307f5370ae6ec6e50404e}', 'QCTF{9dc8266201ea1ba7072d3a717099bab1}', 'QCTF{f35148de32676d50e1d7b2482f800a2c}', 'QCTF{70c01985b0e31b6915a4e42936dedf25}', 'QCTF{231cdcc8bbf386a10e93530cb4595991}', 'QCTF{543a9e949ff8f72b7388b39d44288b55}', 'QCTF{2bb32c8b3e2468bc6f3f1140e02e1e33}', 'QCTF{b5f4dd820207d40769649252979ce450}', 'QCTF{1432aeb99dc6560626d075c9666973e2}', 'QCTF{7520b882081e987b73e728409c38bb55}', 'QCTF{8748557fa294f0c49ef93016ce1ca4ab}', 'QCTF{51e68ed7cbeae5ef716ff98a95ea783a}', 'QCTF{6a2643309f4ffd5856aeb90e6c68267e}', 'QCTF{9eb6102744e6c0e9994d7886ed125f8e}', 'QCTF{0731061397ccd2de5b324ce6c13dc611}', 'QCTF{3b106d379fa05638d90ed9a5a1dfdcbe}', 'QCTF{e539d324465979cb4c54773139ba833f}', 'QCTF{ac0e2a0b56508dfa6b253823697e842d}', 'QCTF{6b020c80f9b62510caec2ec17a07b640}', 'QCTF{00a1c7c11aedc76428ded7dd254adc31}', 'QCTF{2be348ddb0c9d391c114b5878ac1a3ae}', 'QCTF{5875aa9d30aca2e4590534016342aba7}', 'QCTF{07c01bde7f54d222d59e1f45781e8acc}', 'QCTF{1e3f24b6cd7066ac673048656d7d2fc9}', 'QCTF{0a75b22e9f94f3dfc19ab4b934b2961d}', 'QCTF{6a6564ca624d02b152987d5a595cf7bc}', 'QCTF{52463184224982ccf2f9346438f92268}', 'QCTF{ab014a22c6ea08979323fd8a467f1f4a}', 'QCTF{4a3e06c87bb6c0580195db33b39776f7}', 'QCTF{395eb9a839f59f933e135b02d9543c3b}', 'QCTF{c4fd0005bf0d339ff0f7e1860baa5f36}', 'QCTF{aa15b27e2f0485ca04ae787530c1ed18}', 'QCTF{10e844c23ec931932ea6bd4e3e728004}', 'QCTF{b8b86c195cb7dcb041e9dfb3d6b94573}', 'QCTF{932ff0cf891fe181b78a8763eb82a6c4}', 'QCTF{d6f4a756a5206321737afb1e0a183844}', 'QCTF{8c93d71184c17684c92e409e39cb7c00}', 'QCTF{dc4e8fb58fa2ed616d123a73b1a81467}', 'QCTF{8ee320c8dea80ef18d04534ff798caba}', 'QCTF{6a11a92d100293a4835f54dde05cbe34}', 'QCTF{9a79fff31abe7e4718070fa517e64fc0}', 'QCTF{ef93a88f1454894b3940fd2aa93e048d}', 'QCTF{0bed196ea7b09a5db9f31ef3c7f6848d}', 'QCTF{cee84fc49b89ffa988f52d0797baa73d}', 'QCTF{9e80c3d1bba93faa3b45eda0b912a02c}', 'QCTF{cac025aa9e5f4394744f12db0f3e5f71}', 'QCTF{5ee478bf634afe72ae0d3b9e95faf021}', 'QCTF{a5903dad242c4413fa99381d340226d1}', 'QCTF{abcd7d765c23353e38dc09a616bd9bde}', 'QCTF{c13ed258f4775efa54d5b166dd3240ed}', 'QCTF{e08e0a83b3a96cbf379380139b65cc7e}', 'QCTF{7b3803fdb94ff47cf63b7526ac388bc1}', 'QCTF{352ca5de54ffbe8515635118c787b8af}', 'QCTF{50da9ea0ae8ad773bde9a1577ceee9ff}', 'QCTF{7564194acd79f1eb36e46b33143361eb}', 'QCTF{05e594d4643b5b256084d33e51789029}', 'QCTF{36ba558d89ae53394cbd7eaf497601e3}', 'QCTF{33c50dc466f2cfaf68d173a7af16377a}', 'QCTF{903fa3b7125aa29dd2edcb1f2c5da381}', 'QCTF{4bc7246bfdd22e310bbfa25046b20d2c}', 'QCTF{baf8274e1ad81a53c9ca3a1c4762d718}', 'QCTF{9066fe52443e5978e9b82fe2b0801b03}', 'QCTF{39acd1bd34c6a258f3f7167dc21c7a85}', 'QCTF{deca3ebff2319c1e1df6fe96ffb2ff7b}', 'QCTF{0324d544b5e46489943574b02061ebed}', 'QCTF{d08bde8d29c4de77c3439eed7eeb677a}', 'QCTF{16337906f4fa89ee4dd04e6ad1fec14f}', 'QCTF{44de9c99a06af160110e707b93c3dd79}', 'QCTF{87a3543161d6d0ac1497ef1e43de70ec}', 'QCTF{41460476cb83e4544c1b0018c4b20980}', 'QCTF{c0242fbcf990f3a62e6be743a65d07f8}', 'QCTF{a865da86e6d2a17ab3b848f47f997704}', 'QCTF{51ac3d05e0fd1cdc6c9a31c47d2a3a88}', 'QCTF{943ca3ce0cc488be0589ca207806738d}', 'QCTF{f24460a3ce62c641236671b66f193054}', 'QCTF{87980f7c165f4d392c6d377ef6706027}', 'QCTF{2b3ef8a0e956b8d1b9c0373e5686147e}', 'QCTF{97fc9edc359c3ac1f368ea9d6f707ee2}', 'QCTF{f39d636b8d20fdb174bf627c94af8308}', 'QCTF{3eb03e255dacfff2f34afd34f0791f06}', 'QCTF{b819ac459aa4570528e102929befec96}', 'QCTF{7cbf5260678a762738a45a9a08a0d049}', 'QCTF{c58971009a765417bf73916323eb68e1}', 'QCTF{77444071adcf5221c83ad35ebc6c4cdb}', 'QCTF{53a01ebed36320ab8a71084c94ba585f}', 'QCTF{c89f06767a21bdd15a463a92897b0cae}', 'QCTF{6a4cf33cc6fcea2fab3e9612a57994fd}', 'QCTF{0bb8a72a683c35fa835226f7c5ebe3a9}', 'QCTF{206b39742a866fed482a03ce5b6dbd1c}', 'QCTF{4f027a70b064eac7ff2e9ca3d2e03b1d}', 'QCTF{4c39da37e2580f8deb5eba08ed7d5a57}', 'QCTF{f99cfb8878971c21b243f818e505b61e}', 'QCTF{e7daf2f64180b615c1c4ebbecadd0518}', 'QCTF{3304f198c3435e0d49a67f1672a08209}', 'QCTF{e720953183625b8a69a2f8e3e8a8d93a}', 'QCTF{350655c7d8bbaa6495d9ebfa1c0d76a7}', 'QCTF{d74759b2ad78fa941ef19257976392d4}', 'QCTF{146730e07ca858bbf709c2f5bee0a41e}', 'QCTF{db1962db2dc72006c551f14912f3a81a}', 'QCTF{0273d4d040f7de7daa2cea88b86f8f62}', 'QCTF{56ff70053c7a1dba014711c73f3f0486}', 'QCTF{90548bc64e69a21ace8d622e0c21d485}', 'QCTF{052d0c62d05b258b6e4d0fbb64d2c837}', 'QCTF{9fbf42a0d9c53b2b78dc9abef52dd368}', 'QCTF{cf50c6918c393ab19066d688fee7f3d1}', 'QCTF{c7a5a9ca5a29f3bdcd13bc38b4960506}', 'QCTF{c92b7a3db35070eda9793a250a8b8373}', 'QCTF{04d0261d7237329eeabe658967e752ca}', 'QCTF{f52a7914bb09c7cfea77ac0cc91c68b1}', 'QCTF{cc2c170948663de9d7dd25e4e6ce8834}']
def check(attempt, context):
if attempt.answer == flags[attempt.participant.id % len(flags)]:
return Checked(True)
if attempt.answer in flags:
return CheckedPlagiarist(False, flags.index(attempt.answer))
return Checked(False)
| flags = ['QCTF{2a5576bc51a5c3feb82c96fe80d3a520}', 'QCTF{eb2ddbf0e318812ede843e8ecec6144f}', 'QCTF{5cdf65c6069a6b815352c3f1b4d09a56}', 'QCTF{69d7b7deb23746b8bd18b22f3eb92b50}', 'QCTF{44e37938c0bc05393b5b33a70c5a70db}', 'QCTF{3b37a953391e38ce0b8e168e9eaa6ec5}', 'QCTF{ee2848cb73236007d36cb5ae75c4d2bf}', 'QCTF{8dceee7e583b81a844a58ae72bf0671f}', 'QCTF{1e3dbf7253eaa1454ba21806dd1fc14c}', 'QCTF{da8f9cc7d7f1b1481f87f6390fa25e0c}', 'QCTF{ef7e72c36017f57e3f6b940b25bcd3b8}', 'QCTF{41342b5fdd954b2ff55773096c335f52}', 'QCTF{35fa8fbb26685d098fc776e0a36f49aa}', 'QCTF{168ab402de637d3d309d32d5290e1e31}', 'QCTF{f184a2e0373a244ed3a1b84a9bdb3a23}', 'QCTF{f586fdb5119afc82250ed69fe9bdc7dd}', 'QCTF{1f13c89d8c9eb5573c15ecd50d2f9e50}', 'QCTF{11dfd6714cf59973c28b29c27b3f84df}', 'QCTF{210050152f6adf890bc663580cbca181}', 'QCTF{8200b5ef385ca392651e186a436e0609}', 'QCTF{552eb20e1897c751adf2e320f47d9179}', 'QCTF{cb6efd12b769ea8f1c38c98f1977d5ce}', 'QCTF{004072519dd358254b1de59133ba8386}', 'QCTF{9c4b21c7c3a0fcc3f391695968b7c7e9}', 'QCTF{5a940d17a3b9afa668381947469dd9f7}', 'QCTF{7a3891890abaf4921b8fb2e4a940eb2d}', 'QCTF{3527635e90dc57fe164d5f8d88dbcb38}', 'QCTF{3c5c5abd09bdcfdf09e65eba1eb80b24}', 'QCTF{6f46a5846a40d68d6a035a2ad60a2622}', 'QCTF{794223155a79df0d44a13687b1ed2003}', 'QCTF{43d4cb8f632f779975d6060b5193153f}', 'QCTF{775427be397d5bf852a046e65884d7f9}', 'QCTF{f9fd2dff056c2d47d14bdb9a417d99d5}', 'QCTF{300e2128e66389b5d3c3e057c1ade37f}', 'QCTF{25ee8ba64e6f578a14065aef15fb0028}', 'QCTF{7b0a45a53a059e55dcccf3b7e975ff2e}', 'QCTF{ebff50288af7c8a2a7bd8b1e11a8a612}', 'QCTF{b9a51b35b496056c4fbce56d3c6368e5}', 'QCTF{e1c9872464c4a27cbab39abcd86203b9}', 'QCTF{249589aeb27f9215b209dd933b6dccd8}', 'QCTF{55edfaf50d7e83ade9a98655fca33b31}', 'QCTF{597ab70595c974e07e31a3fa1277bf11}', 'QCTF{7c5023239ef7f22c41aa606ce9aaba5b}', 'QCTF{72257f0fb4a980bcbd9a6f41f52a370b}', 'QCTF{fc09caef8f7c55cd878344568f47a382}', 'QCTF{1dc7595bdbd4c4c60ceda6e21709e6f2}', 'QCTF{d19d9769e8c4262f3a66c95f63fe7f34}', 'QCTF{dec3d0c80f0df0e5af9a97d665dbdc37}', 'QCTF{02bafaf609aaa269bd8abf417208bb54}', 'QCTF{67507d62a48f4e06275f3363b7876d3c}', 'QCTF{8a5a2752374ef22803d1e600177b1bb4}', 'QCTF{a353e9e2be2070249cd297715ea6b10a}', 'QCTF{80225cecfb252b774fa338313e9430b7}', 'QCTF{fa584956ef689e8b341e1d734c734719}', 'QCTF{63015e092eb29efb121f3253cd21c379}', 'QCTF{d62443dfd293d1e412afe00676e437d5}', 'QCTF{59e40e54a8c5a04526e545bbee435249}', 'QCTF{30702aa0f1f56f7c6b8f738602e498e0}', 'QCTF{efec73d04226055571e8f18c96ee3c96}', 'QCTF{9d1dc2ea33d36391531c5555bf39e433}', 'QCTF{d367af673f3c9cf0fdb2893b00689b7c}', 'QCTF{1e24ece8acce5ad1902f412338b01e53}', 'QCTF{88293463e852a19b1c5009bbb1d6ed5f}', 'QCTF{319a0909fd0df476109c9bab65b5202a}', 'QCTF{59f28c649809dd3e4287c72f617428a4}', 'QCTF{ce7df959f53a8dea0ce1e3aa0c2eb8f8}', 'QCTF{5386d6256232979494c48252ee1dd640}', 'QCTF{5ad8efd6bb44d0604cba3800600b1d0e}', 'QCTF{087ca88149d4323d1f00be02a882a79b}', 'QCTF{ce4abbce715a72951061f7adcf15ea1b}', 'QCTF{301e2306bc2849fb53fff0595afc3ed1}', 'QCTF{206d3753e0070c66561a16abfa9c845b}', 'QCTF{05e734b3544679475050326e11441d6e}', 'QCTF{f45249ac1b299ac8a9f430a791e20ceb}', 'QCTF{3433fc22bbc389ba386c1d21f532ed3b}', 'QCTF{15edbf8aaa728eb81ba6f555997f4815}', 'QCTF{580fe8c58bf434bc5f2eef7420649673}', 'QCTF{e41bfb2090daf3773fa230eee97c2d90}', 'QCTF{654380c696844545896584334e208184}', 'QCTF{3946d70c84bf4810cf7e9a31e0b12cff}', 'QCTF{97b67f280a1b2bf58f8bd54ad8ceff66}', 'QCTF{3278f990d9dd5f5dd67c2d4b9d230753}', 'QCTF{f966c22475a0964eaa834830bfe338bd}', 'QCTF{3f913b97b23c854fcdf6fddc41743c62}', 'QCTF{e5dc135b13c2c5b5371d9c24b7715a90}', 'QCTF{70cfc6a3e2f98e98f3488d5180fd3d1c}', 'QCTF{1dfea28b554380e772736d0b3e2e060d}', 'QCTF{4cf742197c83c13a76ffd38fcd9394c7}', 'QCTF{0389931bc1415676698558259dd33911}', 'QCTF{2c6a7d2d0cb06b7050164c593b6eff88}', 'QCTF{43bd14ac279307f5370ae6ec6e50404e}', 'QCTF{9dc8266201ea1ba7072d3a717099bab1}', 'QCTF{f35148de32676d50e1d7b2482f800a2c}', 'QCTF{70c01985b0e31b6915a4e42936dedf25}', 'QCTF{231cdcc8bbf386a10e93530cb4595991}', 'QCTF{543a9e949ff8f72b7388b39d44288b55}', 'QCTF{2bb32c8b3e2468bc6f3f1140e02e1e33}', 'QCTF{b5f4dd820207d40769649252979ce450}', 'QCTF{1432aeb99dc6560626d075c9666973e2}', 'QCTF{7520b882081e987b73e728409c38bb55}', 'QCTF{8748557fa294f0c49ef93016ce1ca4ab}', 'QCTF{51e68ed7cbeae5ef716ff98a95ea783a}', 'QCTF{6a2643309f4ffd5856aeb90e6c68267e}', 'QCTF{9eb6102744e6c0e9994d7886ed125f8e}', 'QCTF{0731061397ccd2de5b324ce6c13dc611}', 'QCTF{3b106d379fa05638d90ed9a5a1dfdcbe}', 'QCTF{e539d324465979cb4c54773139ba833f}', 'QCTF{ac0e2a0b56508dfa6b253823697e842d}', 'QCTF{6b020c80f9b62510caec2ec17a07b640}', 'QCTF{00a1c7c11aedc76428ded7dd254adc31}', 'QCTF{2be348ddb0c9d391c114b5878ac1a3ae}', 'QCTF{5875aa9d30aca2e4590534016342aba7}', 'QCTF{07c01bde7f54d222d59e1f45781e8acc}', 'QCTF{1e3f24b6cd7066ac673048656d7d2fc9}', 'QCTF{0a75b22e9f94f3dfc19ab4b934b2961d}', 'QCTF{6a6564ca624d02b152987d5a595cf7bc}', 'QCTF{52463184224982ccf2f9346438f92268}', 'QCTF{ab014a22c6ea08979323fd8a467f1f4a}', 'QCTF{4a3e06c87bb6c0580195db33b39776f7}', 'QCTF{395eb9a839f59f933e135b02d9543c3b}', 'QCTF{c4fd0005bf0d339ff0f7e1860baa5f36}', 'QCTF{aa15b27e2f0485ca04ae787530c1ed18}', 'QCTF{10e844c23ec931932ea6bd4e3e728004}', 'QCTF{b8b86c195cb7dcb041e9dfb3d6b94573}', 'QCTF{932ff0cf891fe181b78a8763eb82a6c4}', 'QCTF{d6f4a756a5206321737afb1e0a183844}', 'QCTF{8c93d71184c17684c92e409e39cb7c00}', 'QCTF{dc4e8fb58fa2ed616d123a73b1a81467}', 'QCTF{8ee320c8dea80ef18d04534ff798caba}', 'QCTF{6a11a92d100293a4835f54dde05cbe34}', 'QCTF{9a79fff31abe7e4718070fa517e64fc0}', 'QCTF{ef93a88f1454894b3940fd2aa93e048d}', 'QCTF{0bed196ea7b09a5db9f31ef3c7f6848d}', 'QCTF{cee84fc49b89ffa988f52d0797baa73d}', 'QCTF{9e80c3d1bba93faa3b45eda0b912a02c}', 'QCTF{cac025aa9e5f4394744f12db0f3e5f71}', 'QCTF{5ee478bf634afe72ae0d3b9e95faf021}', 'QCTF{a5903dad242c4413fa99381d340226d1}', 'QCTF{abcd7d765c23353e38dc09a616bd9bde}', 'QCTF{c13ed258f4775efa54d5b166dd3240ed}', 'QCTF{e08e0a83b3a96cbf379380139b65cc7e}', 'QCTF{7b3803fdb94ff47cf63b7526ac388bc1}', 'QCTF{352ca5de54ffbe8515635118c787b8af}', 'QCTF{50da9ea0ae8ad773bde9a1577ceee9ff}', 'QCTF{7564194acd79f1eb36e46b33143361eb}', 'QCTF{05e594d4643b5b256084d33e51789029}', 'QCTF{36ba558d89ae53394cbd7eaf497601e3}', 'QCTF{33c50dc466f2cfaf68d173a7af16377a}', 'QCTF{903fa3b7125aa29dd2edcb1f2c5da381}', 'QCTF{4bc7246bfdd22e310bbfa25046b20d2c}', 'QCTF{baf8274e1ad81a53c9ca3a1c4762d718}', 'QCTF{9066fe52443e5978e9b82fe2b0801b03}', 'QCTF{39acd1bd34c6a258f3f7167dc21c7a85}', 'QCTF{deca3ebff2319c1e1df6fe96ffb2ff7b}', 'QCTF{0324d544b5e46489943574b02061ebed}', 'QCTF{d08bde8d29c4de77c3439eed7eeb677a}', 'QCTF{16337906f4fa89ee4dd04e6ad1fec14f}', 'QCTF{44de9c99a06af160110e707b93c3dd79}', 'QCTF{87a3543161d6d0ac1497ef1e43de70ec}', 'QCTF{41460476cb83e4544c1b0018c4b20980}', 'QCTF{c0242fbcf990f3a62e6be743a65d07f8}', 'QCTF{a865da86e6d2a17ab3b848f47f997704}', 'QCTF{51ac3d05e0fd1cdc6c9a31c47d2a3a88}', 'QCTF{943ca3ce0cc488be0589ca207806738d}', 'QCTF{f24460a3ce62c641236671b66f193054}', 'QCTF{87980f7c165f4d392c6d377ef6706027}', 'QCTF{2b3ef8a0e956b8d1b9c0373e5686147e}', 'QCTF{97fc9edc359c3ac1f368ea9d6f707ee2}', 'QCTF{f39d636b8d20fdb174bf627c94af8308}', 'QCTF{3eb03e255dacfff2f34afd34f0791f06}', 'QCTF{b819ac459aa4570528e102929befec96}', 'QCTF{7cbf5260678a762738a45a9a08a0d049}', 'QCTF{c58971009a765417bf73916323eb68e1}', 'QCTF{77444071adcf5221c83ad35ebc6c4cdb}', 'QCTF{53a01ebed36320ab8a71084c94ba585f}', 'QCTF{c89f06767a21bdd15a463a92897b0cae}', 'QCTF{6a4cf33cc6fcea2fab3e9612a57994fd}', 'QCTF{0bb8a72a683c35fa835226f7c5ebe3a9}', 'QCTF{206b39742a866fed482a03ce5b6dbd1c}', 'QCTF{4f027a70b064eac7ff2e9ca3d2e03b1d}', 'QCTF{4c39da37e2580f8deb5eba08ed7d5a57}', 'QCTF{f99cfb8878971c21b243f818e505b61e}', 'QCTF{e7daf2f64180b615c1c4ebbecadd0518}', 'QCTF{3304f198c3435e0d49a67f1672a08209}', 'QCTF{e720953183625b8a69a2f8e3e8a8d93a}', 'QCTF{350655c7d8bbaa6495d9ebfa1c0d76a7}', 'QCTF{d74759b2ad78fa941ef19257976392d4}', 'QCTF{146730e07ca858bbf709c2f5bee0a41e}', 'QCTF{db1962db2dc72006c551f14912f3a81a}', 'QCTF{0273d4d040f7de7daa2cea88b86f8f62}', 'QCTF{56ff70053c7a1dba014711c73f3f0486}', 'QCTF{90548bc64e69a21ace8d622e0c21d485}', 'QCTF{052d0c62d05b258b6e4d0fbb64d2c837}', 'QCTF{9fbf42a0d9c53b2b78dc9abef52dd368}', 'QCTF{cf50c6918c393ab19066d688fee7f3d1}', 'QCTF{c7a5a9ca5a29f3bdcd13bc38b4960506}', 'QCTF{c92b7a3db35070eda9793a250a8b8373}', 'QCTF{04d0261d7237329eeabe658967e752ca}', 'QCTF{f52a7914bb09c7cfea77ac0cc91c68b1}', 'QCTF{cc2c170948663de9d7dd25e4e6ce8834}']
def check(attempt, context):
if attempt.answer == flags[attempt.participant.id % len(flags)]:
return checked(True)
if attempt.answer in flags:
return checked_plagiarist(False, flags.index(attempt.answer))
return checked(False) |
def transaccion(retiro, saldo):
if retiro % 5 != 0:
return(saldo)
elif (saldo - retiro) < 0:
return(saldo)
elif saldo == retiro:
return(saldo)
else:
return(saldo - retiro - 0.5)
def main():
entrada = open("input.txt","r")
salida = open("output.txt","w")
T = int(entrada.readline())
for i in range(T):
tran = entrada.readline().split(' ')
M = float(tran[0])
S = float(tran[1])
res = transaccion(M, S)
salida.write("Caso #{}: {} \n".format(i + 1, res))
entrada.close()
salida.close()
main()
#15 min | def transaccion(retiro, saldo):
if retiro % 5 != 0:
return saldo
elif saldo - retiro < 0:
return saldo
elif saldo == retiro:
return saldo
else:
return saldo - retiro - 0.5
def main():
entrada = open('input.txt', 'r')
salida = open('output.txt', 'w')
t = int(entrada.readline())
for i in range(T):
tran = entrada.readline().split(' ')
m = float(tran[0])
s = float(tran[1])
res = transaccion(M, S)
salida.write('Caso #{}: {} \n'.format(i + 1, res))
entrada.close()
salida.close()
main() |
_base_config_ = ["base.py"]
generator = dict(
input_cse=True,
use_cse=True
)
discriminator=dict(
pred_only_cse=False,
pred_only_semantic=True
)
loss = dict(
gan_criterion=dict(type="segmentation", seg_weight=.1)
)
| _base_config_ = ['base.py']
generator = dict(input_cse=True, use_cse=True)
discriminator = dict(pred_only_cse=False, pred_only_semantic=True)
loss = dict(gan_criterion=dict(type='segmentation', seg_weight=0.1)) |
"""
Function
def function_name(arg1, arg2, ...) :
<op 1>
<op 2>
...
Function with undefined amount of input
def fn_name(*args) --> args' elements make tuple.
kwargs = Keyword Parameter
>>> def print_kwargs(**kwargs):
... print(kwargs)
...
>>> print_kwargs(a=1)
{'a':1}
>>> print_kwargs(name='foo', age=3)
{'age':3, 'name':'foo'}
**args_name = make args_name as a dictionary
clearing & assignment : element should be added in the last part of args
Lambda : another method to make fn
lambda arg1, arg2, .. : operation_of_fn
>>> add = lambda a,b : a+b
>>> result = add(3,4)
>>> print(result)
7
lambda can return result with out expression 'return'
Contents Source : https://wikidocs.net/24
""" | """
Function
def function_name(arg1, arg2, ...) :
<op 1>
<op 2>
...
Function with undefined amount of input
def fn_name(*args) --> args' elements make tuple.
kwargs = Keyword Parameter
>>> def print_kwargs(**kwargs):
... print(kwargs)
...
>>> print_kwargs(a=1)
{'a':1}
>>> print_kwargs(name='foo', age=3)
{'age':3, 'name':'foo'}
**args_name = make args_name as a dictionary
clearing & assignment : element should be added in the last part of args
Lambda : another method to make fn
lambda arg1, arg2, .. : operation_of_fn
>>> add = lambda a,b : a+b
>>> result = add(3,4)
>>> print(result)
7
lambda can return result with out expression 'return'
Contents Source : https://wikidocs.net/24
""" |
# Python - 3.4.3
Test.it('Basic Tests')
Test.assert_equals(invert([1, 2, 3, 4, 5]), [-1, -2, -3, -4, -5])
Test.assert_equals(invert([1, -2, 3, -4, 5]), [-1, 2, -3, 4, -5])
Test.assert_equals(invert([]), [])
| Test.it('Basic Tests')
Test.assert_equals(invert([1, 2, 3, 4, 5]), [-1, -2, -3, -4, -5])
Test.assert_equals(invert([1, -2, 3, -4, 5]), [-1, 2, -3, 4, -5])
Test.assert_equals(invert([]), []) |
__title__ = 'logxs'
__description__ = 'Replacing with build-in `print` with nice formatting.'
__url__ = 'https://github.com/minlaxz/logxs'
__version__ = '0.3.2'
__author__ = 'Min Latt'
__author_email__ = 'minminlaxz@gmail.com'
__license__ = 'MIT' | __title__ = 'logxs'
__description__ = 'Replacing with build-in `print` with nice formatting.'
__url__ = 'https://github.com/minlaxz/logxs'
__version__ = '0.3.2'
__author__ = 'Min Latt'
__author_email__ = 'minminlaxz@gmail.com'
__license__ = 'MIT' |
num = input()
lucky = 0
for i in num:
if i == '4' or i == '7':
lucky += 1
counter = 0
for c in str(lucky):
if c == '4' or c == '7':
counter += 1
if counter == len(str(lucky)):
print("YES")
else:
print("NO")
| num = input()
lucky = 0
for i in num:
if i == '4' or i == '7':
lucky += 1
counter = 0
for c in str(lucky):
if c == '4' or c == '7':
counter += 1
if counter == len(str(lucky)):
print('YES')
else:
print('NO') |
"""
*
* Author: Juarez Paulino(coderemite)
* Email: juarez.paulino@gmail.com
*
"""
I=lambda:map(int,input().split())
f=abs
n,_,a,b,k=I()
while k:
p,q,u,v=I()
P=[a,b]
if a<=q<=b:P+=[q]
if a<=v<=b:P+=[v]
print([min(f(q-x)+f(v-x)for x in P)+f(p-u),f(q-v)][p==u])
k-=1 | """
*
* Author: Juarez Paulino(coderemite)
* Email: juarez.paulino@gmail.com
*
"""
i = lambda : map(int, input().split())
f = abs
(n, _, a, b, k) = i()
while k:
(p, q, u, v) = i()
p = [a, b]
if a <= q <= b:
p += [q]
if a <= v <= b:
p += [v]
print([min((f(q - x) + f(v - x) for x in P)) + f(p - u), f(q - v)][p == u])
k -= 1 |
s=str(input())
a=[]
for i in range(len(s)):
si=s[i]
a.append(si)
b=[]
n=str(input())
for j in range(len(n)):
sj=n[j]
b.append(sj)
p={}
for pi in range(len(s)):
key=s[pi]
p[key]=0
j1=0
for i in range(0,len(a)):
key=a[i]
while j1<len(b):
bj=b[0]
if key in p:
p[key]=bj
b.remove(bj)
break
c=[]
si=str(input())
for si1 in range(0,len(si)):
ci=si[si1]
c.append(ci)
co=[]
for ci in range(0,len(c)):
if c[ci] in p:
cco=c[ci]
pco=p[cco]
co.append(pco)
d=[]
di=str(input())
for sj1 in range(0,len(di)):
dj=di[sj1]
d.append(dj)
do=[]
for di in range(0,len(d)):
for key in p:
pkey=key
if p.get(key) == d[di]:
ddo=pkey
do.append(ddo)
for i in range (0,len(co)):
print(co[i],end='')
print()
for j in range (0,len(do)):
print(do[j],end='') | s = str(input())
a = []
for i in range(len(s)):
si = s[i]
a.append(si)
b = []
n = str(input())
for j in range(len(n)):
sj = n[j]
b.append(sj)
p = {}
for pi in range(len(s)):
key = s[pi]
p[key] = 0
j1 = 0
for i in range(0, len(a)):
key = a[i]
while j1 < len(b):
bj = b[0]
if key in p:
p[key] = bj
b.remove(bj)
break
c = []
si = str(input())
for si1 in range(0, len(si)):
ci = si[si1]
c.append(ci)
co = []
for ci in range(0, len(c)):
if c[ci] in p:
cco = c[ci]
pco = p[cco]
co.append(pco)
d = []
di = str(input())
for sj1 in range(0, len(di)):
dj = di[sj1]
d.append(dj)
do = []
for di in range(0, len(d)):
for key in p:
pkey = key
if p.get(key) == d[di]:
ddo = pkey
do.append(ddo)
for i in range(0, len(co)):
print(co[i], end='')
print()
for j in range(0, len(do)):
print(do[j], end='') |
"""This module implements backtracking algorithm to solve sudoku."""
class Board:
"""
Class for sudoku board representation.
"""
NUMBERS = [1, 2, 3, 4, 5, 6, 7, 8, 9]
def __init__(self, board):
"""
Create a new board.
"""
self.board = board
def __str__(self) -> str:
"""
Return string reprentation of a board.
"""
result = ''
for line in self.board:
result += str(line) + '\n'
return result.strip()
@staticmethod
def check_rows(board) -> bool:
"""
Check if rows are filled correctly and don't have empty cells.
"""
for row in board:
numbers = list(range(1,10))
for cell in row:
if cell in numbers:
numbers.remove(cell)
else:
return False
return True
def check_colums(self) -> bool:
"""
Check if colums are filled correctly and don't have empty cells.
"""
board_1 = [[self.board[i][j] for i in range(9)] for j in range(9)]
return self.check_rows(board_1)
def check_subgrids(self) -> bool:
"""
Check if subgrids are filled correctly and don't have empty cells.
"""
board_2 = [[self.board[i][j], self.board[i][j+1], self.board[i][j+2],
self.board[i+1][j], self.board[i+1][j+1], self.board[i+1][j+2],
self.board[i+2][j], self.board[i+2][j+1], self.board[i+2][j+2]] \
for i in range(0, 9, 3) for j in range(0, 9, 3)]
return self.check_rows(board_2)
def check_board(self) -> bool:
"""
Check if board if filled correctly and doesn't have empty words.
"""
return self.check_rows(self.board) and self.check_colums() and self.check_subgrids()
def get_cell(self) -> tuple or None:
"""
Return coordinates of a first empty cell.
"""
for row in range(9):
for column in range(9):
if self.board[row][column] == 0:
return row, column
@staticmethod
def filter_values(values, used) -> set:
"""
Return set of valid numbers from values that do not appear in used
"""
return set([number for number in values if number not in used])
def filter_row(self, row) -> set:
"""
Return set of numbers that can be placed into a certain row.
"""
in_row = [number for number in self.board[row] if number != 0]
options = self.filter_values(self.NUMBERS, in_row)
return options
def filter_column(self, column) -> set:
"""
Return set of numbers that can be placed into a certain column.
"""
in_column = [self.board[i][column] for i in range(9)]
options = self.filter_values(self.NUMBERS, in_column)
return options
def filter_subgrid(self, row: int, column: int) -> set:
"""
Return set of numbers that can be placed into a certain subgrid.
"""
row_start = int(row / 3) * 3
column_start = int(column / 3) * 3
in_subgrid = []
for i in range(3):
for j in range(3):
in_subgrid.append(self.board[row_start+i][column_start+j])
options = self.filter_values(self.NUMBERS, in_subgrid)
return options
def available_options(self, row: int, column: int) -> list:
"""
Return a list of possible numbers that can be placed into a cell.
"""
for_row = self.filter_row(row)
for_column = self.filter_column(column)
for_subgrid = self.filter_subgrid(row, column)
result = for_row.intersection(for_column, for_subgrid)
return list(result)
def backtracking(self) -> list or None:
"""
Main function that implements backtracking algorithm to solve sudoku.
"""
if self.check_board():
return self.board
# get first empty cell
row, column = self.get_cell()
# get viable options
options = self.available_options(row, column)
for option in options:
self.board[row][column] = option # try viable option
# recursively fill in the board
if self.backtracking():
return self.board # return board if success
self.board[row][column] = 0 # otherwise backtracks
| """This module implements backtracking algorithm to solve sudoku."""
class Board:
"""
Class for sudoku board representation.
"""
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9]
def __init__(self, board):
"""
Create a new board.
"""
self.board = board
def __str__(self) -> str:
"""
Return string reprentation of a board.
"""
result = ''
for line in self.board:
result += str(line) + '\n'
return result.strip()
@staticmethod
def check_rows(board) -> bool:
"""
Check if rows are filled correctly and don't have empty cells.
"""
for row in board:
numbers = list(range(1, 10))
for cell in row:
if cell in numbers:
numbers.remove(cell)
else:
return False
return True
def check_colums(self) -> bool:
"""
Check if colums are filled correctly and don't have empty cells.
"""
board_1 = [[self.board[i][j] for i in range(9)] for j in range(9)]
return self.check_rows(board_1)
def check_subgrids(self) -> bool:
"""
Check if subgrids are filled correctly and don't have empty cells.
"""
board_2 = [[self.board[i][j], self.board[i][j + 1], self.board[i][j + 2], self.board[i + 1][j], self.board[i + 1][j + 1], self.board[i + 1][j + 2], self.board[i + 2][j], self.board[i + 2][j + 1], self.board[i + 2][j + 2]] for i in range(0, 9, 3) for j in range(0, 9, 3)]
return self.check_rows(board_2)
def check_board(self) -> bool:
"""
Check if board if filled correctly and doesn't have empty words.
"""
return self.check_rows(self.board) and self.check_colums() and self.check_subgrids()
def get_cell(self) -> tuple or None:
"""
Return coordinates of a first empty cell.
"""
for row in range(9):
for column in range(9):
if self.board[row][column] == 0:
return (row, column)
@staticmethod
def filter_values(values, used) -> set:
"""
Return set of valid numbers from values that do not appear in used
"""
return set([number for number in values if number not in used])
def filter_row(self, row) -> set:
"""
Return set of numbers that can be placed into a certain row.
"""
in_row = [number for number in self.board[row] if number != 0]
options = self.filter_values(self.NUMBERS, in_row)
return options
def filter_column(self, column) -> set:
"""
Return set of numbers that can be placed into a certain column.
"""
in_column = [self.board[i][column] for i in range(9)]
options = self.filter_values(self.NUMBERS, in_column)
return options
def filter_subgrid(self, row: int, column: int) -> set:
"""
Return set of numbers that can be placed into a certain subgrid.
"""
row_start = int(row / 3) * 3
column_start = int(column / 3) * 3
in_subgrid = []
for i in range(3):
for j in range(3):
in_subgrid.append(self.board[row_start + i][column_start + j])
options = self.filter_values(self.NUMBERS, in_subgrid)
return options
def available_options(self, row: int, column: int) -> list:
"""
Return a list of possible numbers that can be placed into a cell.
"""
for_row = self.filter_row(row)
for_column = self.filter_column(column)
for_subgrid = self.filter_subgrid(row, column)
result = for_row.intersection(for_column, for_subgrid)
return list(result)
def backtracking(self) -> list or None:
"""
Main function that implements backtracking algorithm to solve sudoku.
"""
if self.check_board():
return self.board
(row, column) = self.get_cell()
options = self.available_options(row, column)
for option in options:
self.board[row][column] = option
if self.backtracking():
return self.board
self.board[row][column] = 0 |
N, *A = map(int, open(0).read().split())
A.sort()
for i in range(N):
if i == A[i] - 1:
continue
print('No')
break
else:
print('Yes')
| (n, *a) = map(int, open(0).read().split())
A.sort()
for i in range(N):
if i == A[i] - 1:
continue
print('No')
break
else:
print('Yes') |
class status(Exception):
def __init__(self, code=200, response=None):
super().__init__("season.core.CLASS.RESPONSE.STATUS")
self.code = code
self.response = response
def get_response(self):
return self.response, self.code | class Status(Exception):
def __init__(self, code=200, response=None):
super().__init__('season.core.CLASS.RESPONSE.STATUS')
self.code = code
self.response = response
def get_response(self):
return (self.response, self.code) |
#!/usr/bin/env python3
def calculate():
ans = sum(1
for i in range(1, 10000000)
if get_terminal(i) == 89)
return str(ans)
TERMINALS = (1, 89)
def get_terminal(n):
while n not in TERMINALS:
n = square_digit_sum(n)
return n
def square_digit_sum(n):
result = 0
while n > 0:
result += sq_sum[n % 1000]
n //= 1000
return result
sq_sum = [sum(int(c)**2 for c in str(i)) for i in range(1000)]
if __name__ == "__main__":
print(calculate())
| def calculate():
ans = sum((1 for i in range(1, 10000000) if get_terminal(i) == 89))
return str(ans)
terminals = (1, 89)
def get_terminal(n):
while n not in TERMINALS:
n = square_digit_sum(n)
return n
def square_digit_sum(n):
result = 0
while n > 0:
result += sq_sum[n % 1000]
n //= 1000
return result
sq_sum = [sum((int(c) ** 2 for c in str(i))) for i in range(1000)]
if __name__ == '__main__':
print(calculate()) |
def gen_doc_html(version, api_list):
doc_html = f'''
<!DOCTYPE html>
<html>
<head><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body{{margin:40px auto;
max-width:650px; line-height:1.6;
font-size:18px; color:#444;
padding:0 10px}}
h1,h2,h3{{line-height:1.2}}
pre{{background-color: beige;
border-radius: 5px;
padding: 15px;
border: 1px solid black;
}}
</style></head>
<body>
<h1>API Docs V{version}</h1>
<p>The documentation is live and autogenerated.</p>
<hr>
<div id='docs'>
</div>
<script>
var api_list = {str(api_list)};'''
doc_html += '''
for(var i=0; i < api_list.length; ++i){
var url = api_list[i];
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("OPTIONS", url, false);
xmlhttp.onreadystatechange = function(){
if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
var doc = document.createElement('pre');
doc.innerHTML = xmlhttp.responseText;
document.getElementById('docs').appendChild(doc);
}
}
xmlhttp.send();
}
</script>
</body>
</html>
'''
return doc_html
| def gen_doc_html(version, api_list):
doc_html = f"""\n <!DOCTYPE html>\n <html>\n <head><meta charset="utf-8">\n <meta name="viewport" content="width=device-width, initial-scale=1">\n <style type="text/css">\n body{{margin:40px auto;\n max-width:650px; line-height:1.6;\n font-size:18px; color:#444;\n padding:0 10px}}\n h1,h2,h3{{line-height:1.2}}\n pre{{background-color: beige;\n border-radius: 5px;\n padding: 15px;\n border: 1px solid black;\n }}\n </style></head>\n <body>\n <h1>API Docs V{version}</h1>\n <p>The documentation is live and autogenerated.</p>\n <hr>\n <div id='docs'>\n </div>\n <script>\n var api_list = {str(api_list)};"""
doc_html += '\n for(var i=0; i < api_list.length; ++i){\n var url = api_list[i];\n var xmlhttp = new XMLHttpRequest();\n xmlhttp.open("OPTIONS", url, false);\n xmlhttp.onreadystatechange = function(){\n if (xmlhttp.readyState == 4 && xmlhttp.status == 200){\n var doc = document.createElement(\'pre\');\n doc.innerHTML = xmlhttp.responseText;\n document.getElementById(\'docs\').appendChild(doc);\n }\n }\n xmlhttp.send();\n }\n </script>\n </body>\n </html>\n '
return doc_html |
countries = {'Russia' : 'Europe', 'Germany' : 'Europe', 'Australia' : 'Australia'}
sqrs = {}
sqrs[1] = 1
sqrs[2] = 4
sqrs[10] = 100
print(sqrs)
myDict = dict([['key1', 'value1'], ('key2', 'value2')])
print(myDict)
phones = {'police' : 102, 'ambulance' : 103, 'firefighters' : 101}
print(phones['police'])
phones = {'police' : 102, 'ambulance' : 103, 'firefighters' : 101}
del phones['police']
print(phones)
phones = {'police' : 102, 'ambulance' : 103, 'firefighters' : 101}
for service in phones:
print(service, phones[service])
phones = {'police' : 102, 'ambulance' : 103, 'firefighters' : 101}
for service, phone in phones.items():
print(service, phone)
seq = map(int, input().split())
countDict = {}
for elem in seq:
countDict[elem] = countDict.get(elem, 0) + 1
for key in sorted(countDict):
print(key, countDict[key], sep=' : ')
n = int(input())
latinEnglish = {}
for i in range(n):
line = input()
english = line[:line.find('-')].strip()
latinsStr = line[line.find('-') + 1:].strip()
latins = map(lambda s : s.strip(), latinsStr.split(','))
for latin in latins:
if latin not in latinEnglish:
latinEnglish[latin] = []
latinEnglish[latin].append(english)
print(len(latinEnglish))
for latin in sorted(latinEnglish):
print(latin, '-', ', '.join(sorted(latinEnglish[latin]))) | countries = {'Russia': 'Europe', 'Germany': 'Europe', 'Australia': 'Australia'}
sqrs = {}
sqrs[1] = 1
sqrs[2] = 4
sqrs[10] = 100
print(sqrs)
my_dict = dict([['key1', 'value1'], ('key2', 'value2')])
print(myDict)
phones = {'police': 102, 'ambulance': 103, 'firefighters': 101}
print(phones['police'])
phones = {'police': 102, 'ambulance': 103, 'firefighters': 101}
del phones['police']
print(phones)
phones = {'police': 102, 'ambulance': 103, 'firefighters': 101}
for service in phones:
print(service, phones[service])
phones = {'police': 102, 'ambulance': 103, 'firefighters': 101}
for (service, phone) in phones.items():
print(service, phone)
seq = map(int, input().split())
count_dict = {}
for elem in seq:
countDict[elem] = countDict.get(elem, 0) + 1
for key in sorted(countDict):
print(key, countDict[key], sep=' : ')
n = int(input())
latin_english = {}
for i in range(n):
line = input()
english = line[:line.find('-')].strip()
latins_str = line[line.find('-') + 1:].strip()
latins = map(lambda s: s.strip(), latinsStr.split(','))
for latin in latins:
if latin not in latinEnglish:
latinEnglish[latin] = []
latinEnglish[latin].append(english)
print(len(latinEnglish))
for latin in sorted(latinEnglish):
print(latin, '-', ', '.join(sorted(latinEnglish[latin]))) |
def f(x):
'''Does nothing.
:type x: a.C
'''
pass
| def f(x):
"""Does nothing.
:type x: a.C
"""
pass |
# this should accept a command as a string, and raturn a string detailing the issue
# if <command> is not a valid vanilla minecraft command. None otherwise.
def check(command):
return None
| def check(command):
return None |
print("One")
print("Two")
print("Three")
| print('One')
print('Two')
print('Three') |
# encoding: utf-8
# module Autodesk.Revit.UI.Plumbing calls itself Plumbing
# from RevitAPIUI,Version=17.0.0.0,Culture=neutral,PublicKeyToken=null
# by generator 1.145
# no doc
# no imports
# no functions
# classes
class IPipeFittingAndAccessoryPressureDropUIServer(IExternalServer):
""" Interface for external servers providing optional UI for pipe fitting and pipe accessory coefficient calculation. """
def GetDBServerId(self):
"""
GetDBServerId(self: IPipeFittingAndAccessoryPressureDropUIServer) -> Guid
Returns the Id of the corresponding DB server for which this server provides an
optional UI.
Returns: The Id of the DB server.
"""
pass
def ShowSettings(self,data):
"""
ShowSettings(self: IPipeFittingAndAccessoryPressureDropUIServer,data: PipeFittingAndAccessoryPressureDropUIData) -> bool
Shows the settings UI.
data: The input data of the calculation.
Returns: True if the user makes any changes in the UI,false otherwise.
"""
pass
def __init__(self,*args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
class PipeFittingAndAccessoryPressureDropUIData(object,IDisposable):
""" The input and output data used by external UI servers for storing UI settings. """
def Dispose(self):
""" Dispose(self: PipeFittingAndAccessoryPressureDropUIData) """
pass
def GetUIDataItems(self):
"""
GetUIDataItems(self: PipeFittingAndAccessoryPressureDropUIData) -> IList[PipeFittingAndAccessoryPressureDropUIDataItem]
Gets all UI data items stored in the UI data.
Returns: An array of UI data items.
"""
pass
def GetUnits(self):
"""
GetUnits(self: PipeFittingAndAccessoryPressureDropUIData) -> Units
Gets units.
Returns: The Units object.
"""
pass
def ReleaseUnmanagedResources(self,*args):
""" ReleaseUnmanagedResources(self: PipeFittingAndAccessoryPressureDropUIData,disposing: bool) """
pass
def __enter__(self,*args):
""" __enter__(self: IDisposable) -> object """
pass
def __exit__(self,*args):
""" __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """
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 __repr__(self,*args):
""" __repr__(self: object) -> str """
pass
IsValidObject=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Specifies whether the .NET object represents a valid Revit entity.
Get: IsValidObject(self: PipeFittingAndAccessoryPressureDropUIData) -> bool
"""
class PipeFittingAndAccessoryPressureDropUIDataItem(object,IDisposable):
""" The input and output data used by external UI servers for initializing and storing the UI settings. """
def Dispose(self):
""" Dispose(self: PipeFittingAndAccessoryPressureDropUIDataItem) """
pass
def GetEntity(self):
"""
GetEntity(self: PipeFittingAndAccessoryPressureDropUIDataItem) -> Entity
Returns the entity set by UI server.
or an invalid entity otherwise.
Returns: The returned Entity.
"""
pass
def GetPipeFittingAndAccessoryData(self):
"""
GetPipeFittingAndAccessoryData(self: PipeFittingAndAccessoryPressureDropUIDataItem) -> PipeFittingAndAccessoryData
Gets the fitting data stored in the UI data item.
Returns: The fitting data stored in the UI data item.
"""
pass
def ReleaseUnmanagedResources(self,*args):
""" ReleaseUnmanagedResources(self: PipeFittingAndAccessoryPressureDropUIDataItem,disposing: bool) """
pass
def SetEntity(self,entity):
"""
SetEntity(self: PipeFittingAndAccessoryPressureDropUIDataItem,entity: Entity)
Stores the entity in the UI data item.
entity: The Entity to be stored.
"""
pass
def __enter__(self,*args):
""" __enter__(self: IDisposable) -> object """
pass
def __exit__(self,*args):
""" __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """
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 __repr__(self,*args):
""" __repr__(self: object) -> str """
pass
IsValidObject=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Specifies whether the .NET object represents a valid Revit entity.
Get: IsValidObject(self: PipeFittingAndAccessoryPressureDropUIDataItem) -> bool
"""
| class Ipipefittingandaccessorypressuredropuiserver(IExternalServer):
""" Interface for external servers providing optional UI for pipe fitting and pipe accessory coefficient calculation. """
def get_db_server_id(self):
"""
GetDBServerId(self: IPipeFittingAndAccessoryPressureDropUIServer) -> Guid
Returns the Id of the corresponding DB server for which this server provides an
optional UI.
Returns: The Id of the DB server.
"""
pass
def show_settings(self, data):
"""
ShowSettings(self: IPipeFittingAndAccessoryPressureDropUIServer,data: PipeFittingAndAccessoryPressureDropUIData) -> bool
Shows the settings UI.
data: The input data of the calculation.
Returns: True if the user makes any changes in the UI,false otherwise.
"""
pass
def __init__(self, *args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
class Pipefittingandaccessorypressuredropuidata(object, IDisposable):
""" The input and output data used by external UI servers for storing UI settings. """
def dispose(self):
""" Dispose(self: PipeFittingAndAccessoryPressureDropUIData) """
pass
def get_ui_data_items(self):
"""
GetUIDataItems(self: PipeFittingAndAccessoryPressureDropUIData) -> IList[PipeFittingAndAccessoryPressureDropUIDataItem]
Gets all UI data items stored in the UI data.
Returns: An array of UI data items.
"""
pass
def get_units(self):
"""
GetUnits(self: PipeFittingAndAccessoryPressureDropUIData) -> Units
Gets units.
Returns: The Units object.
"""
pass
def release_unmanaged_resources(self, *args):
""" ReleaseUnmanagedResources(self: PipeFittingAndAccessoryPressureDropUIData,disposing: bool) """
pass
def __enter__(self, *args):
""" __enter__(self: IDisposable) -> object """
pass
def __exit__(self, *args):
""" __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """
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 __repr__(self, *args):
""" __repr__(self: object) -> str """
pass
is_valid_object = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Specifies whether the .NET object represents a valid Revit entity.\n\n\n\nGet: IsValidObject(self: PipeFittingAndAccessoryPressureDropUIData) -> bool\n\n\n\n'
class Pipefittingandaccessorypressuredropuidataitem(object, IDisposable):
""" The input and output data used by external UI servers for initializing and storing the UI settings. """
def dispose(self):
""" Dispose(self: PipeFittingAndAccessoryPressureDropUIDataItem) """
pass
def get_entity(self):
"""
GetEntity(self: PipeFittingAndAccessoryPressureDropUIDataItem) -> Entity
Returns the entity set by UI server.
or an invalid entity otherwise.
Returns: The returned Entity.
"""
pass
def get_pipe_fitting_and_accessory_data(self):
"""
GetPipeFittingAndAccessoryData(self: PipeFittingAndAccessoryPressureDropUIDataItem) -> PipeFittingAndAccessoryData
Gets the fitting data stored in the UI data item.
Returns: The fitting data stored in the UI data item.
"""
pass
def release_unmanaged_resources(self, *args):
""" ReleaseUnmanagedResources(self: PipeFittingAndAccessoryPressureDropUIDataItem,disposing: bool) """
pass
def set_entity(self, entity):
"""
SetEntity(self: PipeFittingAndAccessoryPressureDropUIDataItem,entity: Entity)
Stores the entity in the UI data item.
entity: The Entity to be stored.
"""
pass
def __enter__(self, *args):
""" __enter__(self: IDisposable) -> object """
pass
def __exit__(self, *args):
""" __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """
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 __repr__(self, *args):
""" __repr__(self: object) -> str """
pass
is_valid_object = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Specifies whether the .NET object represents a valid Revit entity.\n\n\n\nGet: IsValidObject(self: PipeFittingAndAccessoryPressureDropUIDataItem) -> bool\n\n\n\n' |
'''
Created on Jul 19, 2012
@author: Chris
'''
class Command(object):
def validate(self, game):
pass
def execute(self, game):
pass | """
Created on Jul 19, 2012
@author: Chris
"""
class Command(object):
def validate(self, game):
pass
def execute(self, game):
pass |
# menu_text.py
#
# simple python menu
# https://stackoverflow.com/questions/19964603/creating-a-menu-in-python
#
city_menu = { '1': 'Chicago',
'2': 'New York',
'3': 'Washington',
'x': 'Exit'}
month_menu = {'0': 'All',
'1': 'January',
'2': 'February',
'3': 'March',
'4': 'April',
'5': 'May',
'6': 'June',
'x': 'Exit'}
weekday_menu = {'0': 'All',
'1': 'Monday',
'2': 'Tuesday',
'3': 'Wednesday',
'4': 'Thursday',
'5': 'Friday',
'6': 'Saturday',
'7': 'Sunday',
'x': 'Exit'}
def get_menu_item(menu):
while True:
print('------------')
print('Menu Options')
print('------------')
options = list(menu.keys())
options.sort()
for entry in options:
print( entry, menu[entry] )
selection = input("Please Select: ")
# in case X entered for exit
if selection.isupper():
selection = selection.lower()
if selection in options:
#print(menu[selection])
break
else:
print( "Unknown Option Selected!" )
return selection
def main():
city_selected = get_menu_item(city_menu)
print('\n Selected Selected City: ', city_menu[city_selected])
month_selected = get_menu_item(month_menu)
print('\n Selected Month: ', month_menu[month_selected])
print("month", month_selected)
day_selected = get_menu_item(weekday_menu)
print('\n Selected Weekday: ', weekday_menu[day_selected])
if __name__ == "__main__":
main()
| city_menu = {'1': 'Chicago', '2': 'New York', '3': 'Washington', 'x': 'Exit'}
month_menu = {'0': 'All', '1': 'January', '2': 'February', '3': 'March', '4': 'April', '5': 'May', '6': 'June', 'x': 'Exit'}
weekday_menu = {'0': 'All', '1': 'Monday', '2': 'Tuesday', '3': 'Wednesday', '4': 'Thursday', '5': 'Friday', '6': 'Saturday', '7': 'Sunday', 'x': 'Exit'}
def get_menu_item(menu):
while True:
print('------------')
print('Menu Options')
print('------------')
options = list(menu.keys())
options.sort()
for entry in options:
print(entry, menu[entry])
selection = input('Please Select: ')
if selection.isupper():
selection = selection.lower()
if selection in options:
break
else:
print('Unknown Option Selected!')
return selection
def main():
city_selected = get_menu_item(city_menu)
print('\n Selected Selected City: ', city_menu[city_selected])
month_selected = get_menu_item(month_menu)
print('\n Selected Month: ', month_menu[month_selected])
print('month', month_selected)
day_selected = get_menu_item(weekday_menu)
print('\n Selected Weekday: ', weekday_menu[day_selected])
if __name__ == '__main__':
main() |
"""
Log multiple instances to same file.
"""
def log(msg):
f = open('error.log', 'a')
f.write(msg+'\n')
f.close()
def clear():
f = open('error.log', 'w')
f.write('')
f.close()
| """
Log multiple instances to same file.
"""
def log(msg):
f = open('error.log', 'a')
f.write(msg + '\n')
f.close()
def clear():
f = open('error.log', 'w')
f.write('')
f.close() |
hex_strings = [
"FF 81 BD A5 A5 BD 81 FF",
"AA 55 AA 55 AA 55 AA 55",
"3E 7F FC F8 F8 FC 7F 3E",
"93 93 93 F3 F3 93 93 93",
]
def hex_data_to_image(hex_data):
for hex_pair in hex_data:
for divisor in reversed(range(len(hex_data))):
print("X" if (int(hex_pair, 16) >> divisor & 1) == 1 else " ", end="")
print()
if __name__ == "__main__":
for x in range(len(hex_strings)):
hex_data = hex_strings[x].split(' ')
hex_data_to_image(hex_data)
| hex_strings = ['FF 81 BD A5 A5 BD 81 FF', 'AA 55 AA 55 AA 55 AA 55', '3E 7F FC F8 F8 FC 7F 3E', '93 93 93 F3 F3 93 93 93']
def hex_data_to_image(hex_data):
for hex_pair in hex_data:
for divisor in reversed(range(len(hex_data))):
print('X' if int(hex_pair, 16) >> divisor & 1 == 1 else ' ', end='')
print()
if __name__ == '__main__':
for x in range(len(hex_strings)):
hex_data = hex_strings[x].split(' ')
hex_data_to_image(hex_data) |
# -*- coding: utf-8 -*-
# Copy this file and renamed it settings.py and change the values for your own project
# The csv file containing the information about the member.
# There is three columns: The name, the email and the member type: 0 regular, 1 life time
CSV_FILE = "path to csv file"
# The svg file for regular member. {name} and {email} are going to be replaced with the corresponding values from the
# csv file
SVG_FILE_REGULAR = "path to svg regular member file"
# Same as SVG_FILE_REGULAR but for life time member
SVG_FILE_LIFE_TIME = "path to svg life time member file"
# Destination folder where the member cards will be generated. If the folder does not exist yet it will be created.
DEST_GENERATED_FOLDER = "path to folder that will contain the generated files"
# The message file used as the text body for the email message. UTF-8.
MSG_FILE = "/Users/pierre/Documents/LPA/CA/carte_membre_msg"
# SMTP configuration
SMPT_HOST = "myserver.com"
SMPT_PORT = 587
SMTP_USER = "user_name"
SMTP_PASSWORD = "password"
# Email configuration
EMAIL_FROM = "some_email@something.com"
EMAIL_SUBJECT = "subject"
EMAIL_PDF = "name of attachment file.pdf"
| csv_file = 'path to csv file'
svg_file_regular = 'path to svg regular member file'
svg_file_life_time = 'path to svg life time member file'
dest_generated_folder = 'path to folder that will contain the generated files'
msg_file = '/Users/pierre/Documents/LPA/CA/carte_membre_msg'
smpt_host = 'myserver.com'
smpt_port = 587
smtp_user = 'user_name'
smtp_password = 'password'
email_from = 'some_email@something.com'
email_subject = 'subject'
email_pdf = 'name of attachment file.pdf' |
i = 0
while (i<119):
print(i)
i+=10
| i = 0
while i < 119:
print(i)
i += 10 |
# The shape of the numbers for the dice
dice = { 1: [[None, None, None], [None, "", None], [None, None, None]],
2: [["", None, None], [None, None, None], [None, None, ""]],
3: [["", None, None], [None, "", None], [None, None, ""]],
4: [["", None, ""], [None, None, None], ["", None, ""]],
5: [["", None, ""], [None, "", None], ["", None, ""]],
6: [["", None, ""], ["", None, ""], ["", None, ""]]}
dice_cnt = 3
def setup():
# Variable initialization
global dice_no, score, count, debug
dice_no = []
score = 0
count = 0
debug = True
size(130 * dice_cnt, 155)
def draw():
global dice_no, score, count
textAlign(TOP, LEFT)
textSize(12)
# Clear the previous draws on the screen
clear()
fill(255)
rect(0, 0, width, height)
if dice_no == []:
pushMatrix()
fill(0)
textAlign(CENTER, CENTER)
textSize(8*dice_cnt)
text("Click anywhere to roll the dice!", width/2, height/2)
popMatrix()
basex = 35 + width/2 - (dice_cnt * 130) / 2
if debug:
basey = 60
else:
basey = 30
for i in range(len(dice_no)):
bx = (basex+i*130)
# Fill the whole field with color x
fill(232, 227, 218)
# Draw a rect, this will be the dice
rect(bx-30, basey-30, 120, 120, 12, 12, 12, 12)
if dice_no != []:
for y in range(len(dice[dice_no[i]])):
for x in range(len(dice[dice_no[i]][y])):
if dice[dice_no[i]][y][x] != None:
# Draw the eye's of the dice, in the desired color
fill(0)
ellipse(bx + (x * 30), basey + (y * 30), 20, 20)
if debug and dice_no != []:
text("score: " + str(score) + " - Count: " + str(count) + " - Dice_No: " + str(dice_no), 0, 20)
def mousePressed():
global dice_no, score, count
if mouseButton == LEFT:
score = 0
count = 0
# Get a random value for the dice
dice_no = [int(random(1,7)) for x in range(dice_cnt)]
score = sum(dice_no)
| dice = {1: [[None, None, None], [None, '', None], [None, None, None]], 2: [['', None, None], [None, None, None], [None, None, '']], 3: [['', None, None], [None, '', None], [None, None, '']], 4: [['', None, ''], [None, None, None], ['', None, '']], 5: [['', None, ''], [None, '', None], ['', None, '']], 6: [['', None, ''], ['', None, ''], ['', None, '']]}
dice_cnt = 3
def setup():
global dice_no, score, count, debug
dice_no = []
score = 0
count = 0
debug = True
size(130 * dice_cnt, 155)
def draw():
global dice_no, score, count
text_align(TOP, LEFT)
text_size(12)
clear()
fill(255)
rect(0, 0, width, height)
if dice_no == []:
push_matrix()
fill(0)
text_align(CENTER, CENTER)
text_size(8 * dice_cnt)
text('Click anywhere to roll the dice!', width / 2, height / 2)
pop_matrix()
basex = 35 + width / 2 - dice_cnt * 130 / 2
if debug:
basey = 60
else:
basey = 30
for i in range(len(dice_no)):
bx = basex + i * 130
fill(232, 227, 218)
rect(bx - 30, basey - 30, 120, 120, 12, 12, 12, 12)
if dice_no != []:
for y in range(len(dice[dice_no[i]])):
for x in range(len(dice[dice_no[i]][y])):
if dice[dice_no[i]][y][x] != None:
fill(0)
ellipse(bx + x * 30, basey + y * 30, 20, 20)
if debug and dice_no != []:
text('score: ' + str(score) + ' - Count: ' + str(count) + ' - Dice_No: ' + str(dice_no), 0, 20)
def mouse_pressed():
global dice_no, score, count
if mouseButton == LEFT:
score = 0
count = 0
dice_no = [int(random(1, 7)) for x in range(dice_cnt)]
score = sum(dice_no) |
# __init__.py
# Copyright 2017 Roger Marsh
# Licence: See LICENCE (BSD licence)
"""Miscellaneous modules for applications available at solentware.co.uk.
These do not belong in the solentware_base or solentware_grid packages,
siblings of solentware_misc.
"""
| """Miscellaneous modules for applications available at solentware.co.uk.
These do not belong in the solentware_base or solentware_grid packages,
siblings of solentware_misc.
""" |
__author__ = "Music"
# MNIST For ML Beginners
# https://www.tensorflow.org/versions/r0.9/tutorials/mnist/beginners/index.html
| __author__ = 'Music' |
# -*- coding: utf-8 -*-
"""
1556. Thousand Separator
Given an integer n, add a dot (".") as the thousands separator and return it in string format.
Constraints:
0 <= n < 2^31
"""
class Solution:
def thousandSeparator(self, n: int) -> str:
res = ""
str_n = str(n)
count = 0
ind = len(str_n) - 1
while ind >= 0:
count += 1
if count == 4:
res = "." + res
count = 1
res = str_n[ind] + res
ind -= 1
return res
| """
1556. Thousand Separator
Given an integer n, add a dot (".") as the thousands separator and return it in string format.
Constraints:
0 <= n < 2^31
"""
class Solution:
def thousand_separator(self, n: int) -> str:
res = ''
str_n = str(n)
count = 0
ind = len(str_n) - 1
while ind >= 0:
count += 1
if count == 4:
res = '.' + res
count = 1
res = str_n[ind] + res
ind -= 1
return res |
# -*- coding: utf-8 -*-
CHECKLIST_MAPPING = {
'checklist_retrieve': {
'resource': '/checklists/{id}',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsid'
),
'methods': ['GET'],
},
'checklist_field_retrieve': {
'resource': '/checklists/{id}/{field}',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsidfield'
),
'methods': ['GET'],
},
'checklist_board_retrieve': {
'resource': '/checklists/{id}/board',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsidboard'
),
'methods': ['GET'],
},
'checklist_card_retrieve': {
'resource': '/checklists/{id}/cards',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsidcards'
),
'methods': ['GET'],
},
'checklist_item_list': {
'resource': '/checklists/{id}/checkItems',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsidcardscheckitems'
),
'methods': ['GET'],
},
'checklist_item_retrieve': {
'resource': '/checklists/{id}/checkItems/{idCheckItem}',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsidcardscheckitemscheckitemid'
),
'methods': ['GET'],
},
'checklist_update': {
'resource': '/checklists/{id}',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsid-1'
),
'methods': ['PUT'],
},
'checklist_item_update': {
'resource': '/checklists/{id}/checkItems/{idCheckItem}',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsidcheckitemsidcheckitem'
),
'methods': ['PUT'],
},
'checklist_name_update': {
'resource': '/checklists/{id}/name',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsidname'
),
'methods': ['PUT'],
},
'checklist_create': {
'resource': '/checklists',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklists'
),
'methods': ['POST'],
},
'checklist_item_create': {
'resource': '/checklists/{id}/checkItems',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsidcheckitems'
),
'methods': ['POST'],
},
'checklist_delete': {
'resource': '/checklists/{id}',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsid-2'
),
'methods': ['DELETE'],
},
'checklist_item_delete': {
'resource': '/checklists/{id}/checkItems/{idCheckItem}',
'docs': (
'https://developers.trello.com/v1.0/reference'
'#checklistsidcheckitemsid'
),
'methods': ['DELETE'],
},
}
| checklist_mapping = {'checklist_retrieve': {'resource': '/checklists/{id}', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsid', 'methods': ['GET']}, 'checklist_field_retrieve': {'resource': '/checklists/{id}/{field}', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsidfield', 'methods': ['GET']}, 'checklist_board_retrieve': {'resource': '/checklists/{id}/board', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsidboard', 'methods': ['GET']}, 'checklist_card_retrieve': {'resource': '/checklists/{id}/cards', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsidcards', 'methods': ['GET']}, 'checklist_item_list': {'resource': '/checklists/{id}/checkItems', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsidcardscheckitems', 'methods': ['GET']}, 'checklist_item_retrieve': {'resource': '/checklists/{id}/checkItems/{idCheckItem}', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsidcardscheckitemscheckitemid', 'methods': ['GET']}, 'checklist_update': {'resource': '/checklists/{id}', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsid-1', 'methods': ['PUT']}, 'checklist_item_update': {'resource': '/checklists/{id}/checkItems/{idCheckItem}', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsidcheckitemsidcheckitem', 'methods': ['PUT']}, 'checklist_name_update': {'resource': '/checklists/{id}/name', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsidname', 'methods': ['PUT']}, 'checklist_create': {'resource': '/checklists', 'docs': 'https://developers.trello.com/v1.0/reference#checklists', 'methods': ['POST']}, 'checklist_item_create': {'resource': '/checklists/{id}/checkItems', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsidcheckitems', 'methods': ['POST']}, 'checklist_delete': {'resource': '/checklists/{id}', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsid-2', 'methods': ['DELETE']}, 'checklist_item_delete': {'resource': '/checklists/{id}/checkItems/{idCheckItem}', 'docs': 'https://developers.trello.com/v1.0/reference#checklistsidcheckitemsid', 'methods': ['DELETE']}} |
days = int(input())
sladkar = int(input())
cake = int(input())
gofreta = int(input())
pancake = int(input())
cake_price = cake*45
gofreta_price = gofreta*5.8
pancake_price = pancake*3.2
day_price = (cake_price + gofreta_price + pancake_price)*sladkar
total_price = days*day_price
campaign = total_price - (total_price/8)
print(campaign) | days = int(input())
sladkar = int(input())
cake = int(input())
gofreta = int(input())
pancake = int(input())
cake_price = cake * 45
gofreta_price = gofreta * 5.8
pancake_price = pancake * 3.2
day_price = (cake_price + gofreta_price + pancake_price) * sladkar
total_price = days * day_price
campaign = total_price - total_price / 8
print(campaign) |
n = int(input())
lst = list(map(int, input().split()))
def sort1(arr):
l = len(arr)
for i in range(1, n):
cur = arr[i]
pos = i
check = False
while pos > 0:
if arr[pos - 1] > cur:
check = True
arr[pos] = arr[pos - 1]
else:
break
pos -= 1
arr[pos] = cur
if check:
for j in range(len(arr)):
print(arr[j], end=' ')
print('')
sort1(lst)
| n = int(input())
lst = list(map(int, input().split()))
def sort1(arr):
l = len(arr)
for i in range(1, n):
cur = arr[i]
pos = i
check = False
while pos > 0:
if arr[pos - 1] > cur:
check = True
arr[pos] = arr[pos - 1]
else:
break
pos -= 1
arr[pos] = cur
if check:
for j in range(len(arr)):
print(arr[j], end=' ')
print('')
sort1(lst) |
radiobutton_style = '''
QRadioButton:disabled {
background: transparent;
}
QRadioButton::indicator {
background: palette(dark);
width: 8px;
height: 8px;
border: 3px solid palette(dark);
border-radius: 7px;
}
QRadioButton::indicator:checked {
background: palette(highlight);
}
QRadioButton::indicator:checked:disabled {
background: palette(midlight);
}
''' | radiobutton_style = '\nQRadioButton:disabled {\n background: transparent;\n}\n\nQRadioButton::indicator {\n background: palette(dark);\n width: 8px;\n height: 8px;\n border: 3px solid palette(dark);\n border-radius: 7px;\n}\n\nQRadioButton::indicator:checked {\n background: palette(highlight);\n}\n\nQRadioButton::indicator:checked:disabled {\n background: palette(midlight);\n}\n' |
#
# PySNMP MIB module ERI-DNX-STS1-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ERI-DNX-STS1-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:51:50 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ValueRangeConstraint, SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection")
DecisionType, LinkCmdStatus, PortStatus, LinkPortAddress, FunctionSwitch, devices, trapSequence = mibBuilder.importSymbols("ERI-DNX-SMC-MIB", "DecisionType", "LinkCmdStatus", "PortStatus", "LinkPortAddress", "FunctionSwitch", "devices", "trapSequence")
eriMibs, = mibBuilder.importSymbols("ERI-ROOT-SMI", "eriMibs")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, Integer32, Gauge32, IpAddress, Counter64, ObjectIdentity, iso, Unsigned32, MibIdentifier, Counter32, Bits, TimeTicks, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "Integer32", "Gauge32", "IpAddress", "Counter64", "ObjectIdentity", "iso", "Unsigned32", "MibIdentifier", "Counter32", "Bits", "TimeTicks", "ModuleIdentity")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
eriDNXSts1MIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 644, 3, 4))
if mibBuilder.loadTexts: eriDNXSts1MIB.setLastUpdated('200204080000Z')
if mibBuilder.loadTexts: eriDNXSts1MIB.setOrganization('Eastern Research, Inc.')
dnxSTS1 = MibIdentifier((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3))
sts1Config = MibIdentifier((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1))
sts1Diag = MibIdentifier((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2))
class VtGroupType(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1))
namedValues = NamedValues(("vt2-0-e1", 0), ("vt1-5-ds1", 1))
sts1MapperConfigTable = MibTable((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1), )
if mibBuilder.loadTexts: sts1MapperConfigTable.setStatus('current')
sts1MapperConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1), ).setIndexNames((0, "ERI-DNX-STS1-MIB", "sts1MapperAddr"))
if mibBuilder.loadTexts: sts1MapperConfigEntry.setStatus('current')
sts1MapperAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 1), LinkPortAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperAddr.setStatus('current')
sts1MapperResource = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperResource.setStatus('current')
sts1VtGroup1 = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 3), VtGroupType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1VtGroup1.setStatus('current')
sts1VtGroup2 = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 4), VtGroupType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1VtGroup2.setStatus('current')
sts1VtGroup3 = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 5), VtGroupType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1VtGroup3.setStatus('current')
sts1VtGroup4 = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 6), VtGroupType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1VtGroup4.setStatus('current')
sts1VtGroup5 = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 7), VtGroupType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1VtGroup5.setStatus('current')
sts1VtGroup6 = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 8), VtGroupType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1VtGroup6.setStatus('current')
sts1VtGroup7 = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 9), VtGroupType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1VtGroup7.setStatus('current')
sts1VtMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("standardVT", 0), ("sequencialFrm", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1VtMapping.setStatus('current')
sts1Timing = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("internal", 0), ("ec1-Line", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1Timing.setStatus('current')
sts1ShortCable = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 12), FunctionSwitch()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1ShortCable.setStatus('current')
sts1MaprCmdStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 13), LinkCmdStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1MaprCmdStatus.setStatus('current')
sts1T1E1LinkConfigTable = MibTable((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2), )
if mibBuilder.loadTexts: sts1T1E1LinkConfigTable.setStatus('current')
sts1T1E1LinkConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1), ).setIndexNames((0, "ERI-DNX-STS1-MIB", "sts1T1E1CfgLinkAddr"))
if mibBuilder.loadTexts: sts1T1E1LinkConfigEntry.setStatus('current')
sts1T1E1CfgLinkAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 1), LinkPortAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1T1E1CfgLinkAddr.setStatus('current')
sts1T1E1CfgResource = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1T1E1CfgResource.setStatus('current')
sts1T1E1CfgLinkName = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1CfgLinkName.setStatus('current')
sts1T1E1Status = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 4), PortStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1Status.setStatus('current')
sts1T1E1Clear = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("disabled", 0), ("framed", 1), ("unframed", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1Clear.setStatus('current')
sts1T1E1Framing = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(5, 6, 7))).clone(namedValues=NamedValues(("t1Esf", 5), ("t1D4", 6), ("t1Unframed", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1Framing.setStatus('current')
sts1T1E1NetLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 7), FunctionSwitch()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1NetLoop.setStatus('current')
sts1T1E1YelAlrm = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 8), DecisionType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1YelAlrm.setStatus('current')
sts1T1E1RecoverTime = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 10, 15))).clone(namedValues=NamedValues(("timeout-3-secs", 3), ("timeout-10-secs", 10), ("timeout-15-secs", 15)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1RecoverTime.setStatus('current')
sts1T1E1EsfFormat = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("att-54016", 0), ("ansi-t1-403", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1EsfFormat.setStatus('current')
sts1T1E1IdleCode = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("busy", 0), ("idle", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1IdleCode.setStatus('current')
sts1T1E1CfgCmdStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 12), LinkCmdStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1T1E1CfgCmdStatus.setStatus('current')
sts1T1E1Gr303Facility = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 13), DecisionType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1T1E1Gr303Facility.setStatus('obsolete')
sts1MapperStatusTable = MibTable((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1), )
if mibBuilder.loadTexts: sts1MapperStatusTable.setStatus('current')
sts1MapperStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1), ).setIndexNames((0, "ERI-DNX-STS1-MIB", "sts1MapperStatusAddr"))
if mibBuilder.loadTexts: sts1MapperStatusEntry.setStatus('current')
sts1MapperStatusAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 1), LinkPortAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusAddr.setStatus('current')
sts1MapperStatusResource = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusResource.setStatus('current')
sts1MapperStatusState = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 32, 256, 512, 1024, 8192, 131072, 2147483647))).clone(namedValues=NamedValues(("ok", 0), ("lof", 32), ("lop", 256), ("oof", 512), ("ais", 1024), ("los", 8192), ("lomf", 131072), ("errors", 2147483647)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusState.setStatus('current')
sts1MapperStatusLOSErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusLOSErrs.setStatus('current')
sts1MapperStatusOOFErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusOOFErrs.setStatus('current')
sts1MapperStatusLOFErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusLOFErrs.setStatus('current')
sts1MapperStatusLOPtrErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusLOPtrErrs.setStatus('current')
sts1MapperStatusAISErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusAISErrs.setStatus('current')
sts1MapperStatusMultiFErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusMultiFErrs.setStatus('current')
sts1MapperStatusRxTraceErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusRxTraceErrs.setStatus('current')
sts1MapperStatusTotErrSecs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1MapperStatusTotErrSecs.setStatus('current')
sts1MapperStatusCmdStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 14, 101, 114, 200, 206, 500, 501, 502))).clone(namedValues=NamedValues(("ready-for-command", 0), ("update", 1), ("clearErrors", 14), ("update-successful", 101), ("clear-successful", 114), ("err-general-test-error", 200), ("err-field-cannot-be-set", 206), ("err-snmp-parse-failed", 500), ("err-invalid-snmp-type", 501), ("err-invalid-snmp-var-size", 502)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1MapperStatusCmdStatus.setStatus('current')
sts1LIUTable = MibTable((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2), )
if mibBuilder.loadTexts: sts1LIUTable.setStatus('current')
sts1LIUEntry = MibTableRow((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1), ).setIndexNames((0, "ERI-DNX-STS1-MIB", "sts1LIUAddr"))
if mibBuilder.loadTexts: sts1LIUEntry.setStatus('current')
sts1LIUAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 1), LinkPortAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1LIUAddr.setStatus('current')
sts1LIUResource = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1LIUResource.setStatus('current')
sts1LIUBertState = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(45, 44))).clone(namedValues=NamedValues(("off", 45), ("liu-bert", 44)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1LIUBertState.setStatus('current')
sts1LIUBertErrSecs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1LIUBertErrSecs.setStatus('current')
sts1LIUBertDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1LIUBertDuration.setStatus('current')
sts1LIULoopType = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 39))).clone(namedValues=NamedValues(("off", 0), ("mapper", 1), ("liu", 39)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1LIULoopType.setStatus('current')
sts1LIUDigitalErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1LIUDigitalErrs.setStatus('current')
sts1LIUAnalogErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1LIUAnalogErrs.setStatus('current')
sts1LIUExcessZeros = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1LIUExcessZeros.setStatus('current')
sts1LIUCodingViolationErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1LIUCodingViolationErrs.setStatus('current')
sts1LIUPRBSErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sts1LIUPRBSErrs.setStatus('current')
sts1LIUCmdStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 14, 101, 114, 200, 202, 203, 205, 206, 500, 501, 502))).clone(namedValues=NamedValues(("ready-for-command", 0), ("update", 1), ("clearErrors", 14), ("update-successful", 101), ("clear-successful", 114), ("err-general-test-error", 200), ("err-invalid-loop-type", 202), ("err-invalid-bert-type", 203), ("err-test-in-progress", 205), ("err-field-cannot-be-set", 206), ("err-snmp-parse-failed", 500), ("err-invalid-snmp-type", 501), ("err-invalid-snmp-var-size", 502)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sts1LIUCmdStatus.setStatus('current')
dnxSTS1Enterprise = ObjectIdentity((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 0))
if mibBuilder.loadTexts: dnxSTS1Enterprise.setStatus('current')
sts1MapperConfigTrap = NotificationType((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 0, 1)).setObjects(("ERI-DNX-SMC-MIB", "trapSequence"), ("ERI-DNX-STS1-MIB", "sts1MapperAddr"), ("ERI-DNX-STS1-MIB", "sts1MaprCmdStatus"))
if mibBuilder.loadTexts: sts1MapperConfigTrap.setStatus('current')
sts1T1E1ConfigTrap = NotificationType((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 0, 2)).setObjects(("ERI-DNX-SMC-MIB", "trapSequence"), ("ERI-DNX-STS1-MIB", "sts1T1E1CfgLinkAddr"), ("ERI-DNX-STS1-MIB", "sts1T1E1CfgCmdStatus"))
if mibBuilder.loadTexts: sts1T1E1ConfigTrap.setStatus('current')
mibBuilder.exportSymbols("ERI-DNX-STS1-MIB", sts1MapperStatusCmdStatus=sts1MapperStatusCmdStatus, sts1MapperStatusTotErrSecs=sts1MapperStatusTotErrSecs, sts1MapperStatusEntry=sts1MapperStatusEntry, PYSNMP_MODULE_ID=eriDNXSts1MIB, sts1T1E1YelAlrm=sts1T1E1YelAlrm, sts1Config=sts1Config, sts1VtGroup5=sts1VtGroup5, sts1MapperStatusState=sts1MapperStatusState, sts1LIUDigitalErrs=sts1LIUDigitalErrs, sts1Diag=sts1Diag, sts1LIUBertDuration=sts1LIUBertDuration, sts1T1E1NetLoop=sts1T1E1NetLoop, sts1MapperResource=sts1MapperResource, sts1ShortCable=sts1ShortCable, sts1MapperStatusAISErrs=sts1MapperStatusAISErrs, sts1LIUCodingViolationErrs=sts1LIUCodingViolationErrs, sts1VtGroup1=sts1VtGroup1, sts1MapperAddr=sts1MapperAddr, sts1LIUResource=sts1LIUResource, sts1LIUBertState=sts1LIUBertState, dnxSTS1=dnxSTS1, sts1T1E1CfgLinkName=sts1T1E1CfgLinkName, sts1LIULoopType=sts1LIULoopType, sts1T1E1ConfigTrap=sts1T1E1ConfigTrap, sts1T1E1CfgResource=sts1T1E1CfgResource, sts1LIUAnalogErrs=sts1LIUAnalogErrs, sts1MapperStatusLOPtrErrs=sts1MapperStatusLOPtrErrs, sts1LIUAddr=sts1LIUAddr, sts1VtGroup6=sts1VtGroup6, sts1T1E1Status=sts1T1E1Status, sts1VtMapping=sts1VtMapping, VtGroupType=VtGroupType, sts1VtGroup3=sts1VtGroup3, sts1T1E1IdleCode=sts1T1E1IdleCode, sts1LIUBertErrSecs=sts1LIUBertErrSecs, sts1VtGroup4=sts1VtGroup4, sts1MapperConfigTable=sts1MapperConfigTable, sts1MapperStatusAddr=sts1MapperStatusAddr, sts1T1E1Gr303Facility=sts1T1E1Gr303Facility, sts1Timing=sts1Timing, sts1MapperStatusOOFErrs=sts1MapperStatusOOFErrs, sts1MapperStatusResource=sts1MapperStatusResource, sts1VtGroup2=sts1VtGroup2, eriDNXSts1MIB=eriDNXSts1MIB, sts1T1E1Framing=sts1T1E1Framing, sts1MapperStatusLOFErrs=sts1MapperStatusLOFErrs, sts1LIUTable=sts1LIUTable, sts1T1E1LinkConfigTable=sts1T1E1LinkConfigTable, sts1MapperStatusMultiFErrs=sts1MapperStatusMultiFErrs, sts1LIUExcessZeros=sts1LIUExcessZeros, sts1VtGroup7=sts1VtGroup7, sts1MapperStatusLOSErrs=sts1MapperStatusLOSErrs, sts1T1E1CfgLinkAddr=sts1T1E1CfgLinkAddr, sts1T1E1RecoverTime=sts1T1E1RecoverTime, dnxSTS1Enterprise=dnxSTS1Enterprise, sts1MaprCmdStatus=sts1MaprCmdStatus, sts1T1E1EsfFormat=sts1T1E1EsfFormat, sts1MapperStatusRxTraceErrs=sts1MapperStatusRxTraceErrs, sts1MapperConfigEntry=sts1MapperConfigEntry, sts1T1E1LinkConfigEntry=sts1T1E1LinkConfigEntry, sts1LIUCmdStatus=sts1LIUCmdStatus, sts1MapperConfigTrap=sts1MapperConfigTrap, sts1LIUEntry=sts1LIUEntry, sts1LIUPRBSErrs=sts1LIUPRBSErrs, sts1T1E1CfgCmdStatus=sts1T1E1CfgCmdStatus, sts1MapperStatusTable=sts1MapperStatusTable, sts1T1E1Clear=sts1T1E1Clear)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, value_range_constraint, single_value_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection')
(decision_type, link_cmd_status, port_status, link_port_address, function_switch, devices, trap_sequence) = mibBuilder.importSymbols('ERI-DNX-SMC-MIB', 'DecisionType', 'LinkCmdStatus', 'PortStatus', 'LinkPortAddress', 'FunctionSwitch', 'devices', 'trapSequence')
(eri_mibs,) = mibBuilder.importSymbols('ERI-ROOT-SMI', 'eriMibs')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, integer32, gauge32, ip_address, counter64, object_identity, iso, unsigned32, mib_identifier, counter32, bits, time_ticks, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'Integer32', 'Gauge32', 'IpAddress', 'Counter64', 'ObjectIdentity', 'iso', 'Unsigned32', 'MibIdentifier', 'Counter32', 'Bits', 'TimeTicks', 'ModuleIdentity')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
eri_dnx_sts1_mib = module_identity((1, 3, 6, 1, 4, 1, 644, 3, 4))
if mibBuilder.loadTexts:
eriDNXSts1MIB.setLastUpdated('200204080000Z')
if mibBuilder.loadTexts:
eriDNXSts1MIB.setOrganization('Eastern Research, Inc.')
dnx_sts1 = mib_identifier((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3))
sts1_config = mib_identifier((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1))
sts1_diag = mib_identifier((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2))
class Vtgrouptype(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1))
named_values = named_values(('vt2-0-e1', 0), ('vt1-5-ds1', 1))
sts1_mapper_config_table = mib_table((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1))
if mibBuilder.loadTexts:
sts1MapperConfigTable.setStatus('current')
sts1_mapper_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1)).setIndexNames((0, 'ERI-DNX-STS1-MIB', 'sts1MapperAddr'))
if mibBuilder.loadTexts:
sts1MapperConfigEntry.setStatus('current')
sts1_mapper_addr = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 1), link_port_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperAddr.setStatus('current')
sts1_mapper_resource = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperResource.setStatus('current')
sts1_vt_group1 = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 3), vt_group_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1VtGroup1.setStatus('current')
sts1_vt_group2 = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 4), vt_group_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1VtGroup2.setStatus('current')
sts1_vt_group3 = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 5), vt_group_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1VtGroup3.setStatus('current')
sts1_vt_group4 = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 6), vt_group_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1VtGroup4.setStatus('current')
sts1_vt_group5 = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 7), vt_group_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1VtGroup5.setStatus('current')
sts1_vt_group6 = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 8), vt_group_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1VtGroup6.setStatus('current')
sts1_vt_group7 = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 9), vt_group_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1VtGroup7.setStatus('current')
sts1_vt_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('standardVT', 0), ('sequencialFrm', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1VtMapping.setStatus('current')
sts1_timing = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('internal', 0), ('ec1-Line', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1Timing.setStatus('current')
sts1_short_cable = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 12), function_switch()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1ShortCable.setStatus('current')
sts1_mapr_cmd_status = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 1, 1, 13), link_cmd_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1MaprCmdStatus.setStatus('current')
sts1_t1_e1_link_config_table = mib_table((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2))
if mibBuilder.loadTexts:
sts1T1E1LinkConfigTable.setStatus('current')
sts1_t1_e1_link_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1)).setIndexNames((0, 'ERI-DNX-STS1-MIB', 'sts1T1E1CfgLinkAddr'))
if mibBuilder.loadTexts:
sts1T1E1LinkConfigEntry.setStatus('current')
sts1_t1_e1_cfg_link_addr = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 1), link_port_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1T1E1CfgLinkAddr.setStatus('current')
sts1_t1_e1_cfg_resource = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1T1E1CfgResource.setStatus('current')
sts1_t1_e1_cfg_link_name = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1CfgLinkName.setStatus('current')
sts1_t1_e1_status = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 4), port_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1Status.setStatus('current')
sts1_t1_e1_clear = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('disabled', 0), ('framed', 1), ('unframed', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1Clear.setStatus('current')
sts1_t1_e1_framing = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(5, 6, 7))).clone(namedValues=named_values(('t1Esf', 5), ('t1D4', 6), ('t1Unframed', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1Framing.setStatus('current')
sts1_t1_e1_net_loop = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 7), function_switch()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1NetLoop.setStatus('current')
sts1_t1_e1_yel_alrm = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 8), decision_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1YelAlrm.setStatus('current')
sts1_t1_e1_recover_time = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 10, 15))).clone(namedValues=named_values(('timeout-3-secs', 3), ('timeout-10-secs', 10), ('timeout-15-secs', 15)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1RecoverTime.setStatus('current')
sts1_t1_e1_esf_format = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('att-54016', 0), ('ansi-t1-403', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1EsfFormat.setStatus('current')
sts1_t1_e1_idle_code = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('busy', 0), ('idle', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1IdleCode.setStatus('current')
sts1_t1_e1_cfg_cmd_status = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 12), link_cmd_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1T1E1CfgCmdStatus.setStatus('current')
sts1_t1_e1_gr303_facility = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 1, 2, 1, 13), decision_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1T1E1Gr303Facility.setStatus('obsolete')
sts1_mapper_status_table = mib_table((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1))
if mibBuilder.loadTexts:
sts1MapperStatusTable.setStatus('current')
sts1_mapper_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1)).setIndexNames((0, 'ERI-DNX-STS1-MIB', 'sts1MapperStatusAddr'))
if mibBuilder.loadTexts:
sts1MapperStatusEntry.setStatus('current')
sts1_mapper_status_addr = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 1), link_port_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusAddr.setStatus('current')
sts1_mapper_status_resource = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusResource.setStatus('current')
sts1_mapper_status_state = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 32, 256, 512, 1024, 8192, 131072, 2147483647))).clone(namedValues=named_values(('ok', 0), ('lof', 32), ('lop', 256), ('oof', 512), ('ais', 1024), ('los', 8192), ('lomf', 131072), ('errors', 2147483647)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusState.setStatus('current')
sts1_mapper_status_los_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusLOSErrs.setStatus('current')
sts1_mapper_status_oof_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusOOFErrs.setStatus('current')
sts1_mapper_status_lof_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusLOFErrs.setStatus('current')
sts1_mapper_status_lo_ptr_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusLOPtrErrs.setStatus('current')
sts1_mapper_status_ais_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusAISErrs.setStatus('current')
sts1_mapper_status_multi_f_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusMultiFErrs.setStatus('current')
sts1_mapper_status_rx_trace_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusRxTraceErrs.setStatus('current')
sts1_mapper_status_tot_err_secs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1MapperStatusTotErrSecs.setStatus('current')
sts1_mapper_status_cmd_status = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 14, 101, 114, 200, 206, 500, 501, 502))).clone(namedValues=named_values(('ready-for-command', 0), ('update', 1), ('clearErrors', 14), ('update-successful', 101), ('clear-successful', 114), ('err-general-test-error', 200), ('err-field-cannot-be-set', 206), ('err-snmp-parse-failed', 500), ('err-invalid-snmp-type', 501), ('err-invalid-snmp-var-size', 502)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1MapperStatusCmdStatus.setStatus('current')
sts1_liu_table = mib_table((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2))
if mibBuilder.loadTexts:
sts1LIUTable.setStatus('current')
sts1_liu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1)).setIndexNames((0, 'ERI-DNX-STS1-MIB', 'sts1LIUAddr'))
if mibBuilder.loadTexts:
sts1LIUEntry.setStatus('current')
sts1_liu_addr = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 1), link_port_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1LIUAddr.setStatus('current')
sts1_liu_resource = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1LIUResource.setStatus('current')
sts1_liu_bert_state = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(45, 44))).clone(namedValues=named_values(('off', 45), ('liu-bert', 44)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1LIUBertState.setStatus('current')
sts1_liu_bert_err_secs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1LIUBertErrSecs.setStatus('current')
sts1_liu_bert_duration = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1LIUBertDuration.setStatus('current')
sts1_liu_loop_type = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 39))).clone(namedValues=named_values(('off', 0), ('mapper', 1), ('liu', 39)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1LIULoopType.setStatus('current')
sts1_liu_digital_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1LIUDigitalErrs.setStatus('current')
sts1_liu_analog_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1LIUAnalogErrs.setStatus('current')
sts1_liu_excess_zeros = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1LIUExcessZeros.setStatus('current')
sts1_liu_coding_violation_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1LIUCodingViolationErrs.setStatus('current')
sts1_liuprbs_errs = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sts1LIUPRBSErrs.setStatus('current')
sts1_liu_cmd_status = mib_table_column((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 2, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 14, 101, 114, 200, 202, 203, 205, 206, 500, 501, 502))).clone(namedValues=named_values(('ready-for-command', 0), ('update', 1), ('clearErrors', 14), ('update-successful', 101), ('clear-successful', 114), ('err-general-test-error', 200), ('err-invalid-loop-type', 202), ('err-invalid-bert-type', 203), ('err-test-in-progress', 205), ('err-field-cannot-be-set', 206), ('err-snmp-parse-failed', 500), ('err-invalid-snmp-type', 501), ('err-invalid-snmp-var-size', 502)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sts1LIUCmdStatus.setStatus('current')
dnx_sts1_enterprise = object_identity((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 0))
if mibBuilder.loadTexts:
dnxSTS1Enterprise.setStatus('current')
sts1_mapper_config_trap = notification_type((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 0, 1)).setObjects(('ERI-DNX-SMC-MIB', 'trapSequence'), ('ERI-DNX-STS1-MIB', 'sts1MapperAddr'), ('ERI-DNX-STS1-MIB', 'sts1MaprCmdStatus'))
if mibBuilder.loadTexts:
sts1MapperConfigTrap.setStatus('current')
sts1_t1_e1_config_trap = notification_type((1, 3, 6, 1, 4, 1, 644, 2, 4, 2, 3, 0, 2)).setObjects(('ERI-DNX-SMC-MIB', 'trapSequence'), ('ERI-DNX-STS1-MIB', 'sts1T1E1CfgLinkAddr'), ('ERI-DNX-STS1-MIB', 'sts1T1E1CfgCmdStatus'))
if mibBuilder.loadTexts:
sts1T1E1ConfigTrap.setStatus('current')
mibBuilder.exportSymbols('ERI-DNX-STS1-MIB', sts1MapperStatusCmdStatus=sts1MapperStatusCmdStatus, sts1MapperStatusTotErrSecs=sts1MapperStatusTotErrSecs, sts1MapperStatusEntry=sts1MapperStatusEntry, PYSNMP_MODULE_ID=eriDNXSts1MIB, sts1T1E1YelAlrm=sts1T1E1YelAlrm, sts1Config=sts1Config, sts1VtGroup5=sts1VtGroup5, sts1MapperStatusState=sts1MapperStatusState, sts1LIUDigitalErrs=sts1LIUDigitalErrs, sts1Diag=sts1Diag, sts1LIUBertDuration=sts1LIUBertDuration, sts1T1E1NetLoop=sts1T1E1NetLoop, sts1MapperResource=sts1MapperResource, sts1ShortCable=sts1ShortCable, sts1MapperStatusAISErrs=sts1MapperStatusAISErrs, sts1LIUCodingViolationErrs=sts1LIUCodingViolationErrs, sts1VtGroup1=sts1VtGroup1, sts1MapperAddr=sts1MapperAddr, sts1LIUResource=sts1LIUResource, sts1LIUBertState=sts1LIUBertState, dnxSTS1=dnxSTS1, sts1T1E1CfgLinkName=sts1T1E1CfgLinkName, sts1LIULoopType=sts1LIULoopType, sts1T1E1ConfigTrap=sts1T1E1ConfigTrap, sts1T1E1CfgResource=sts1T1E1CfgResource, sts1LIUAnalogErrs=sts1LIUAnalogErrs, sts1MapperStatusLOPtrErrs=sts1MapperStatusLOPtrErrs, sts1LIUAddr=sts1LIUAddr, sts1VtGroup6=sts1VtGroup6, sts1T1E1Status=sts1T1E1Status, sts1VtMapping=sts1VtMapping, VtGroupType=VtGroupType, sts1VtGroup3=sts1VtGroup3, sts1T1E1IdleCode=sts1T1E1IdleCode, sts1LIUBertErrSecs=sts1LIUBertErrSecs, sts1VtGroup4=sts1VtGroup4, sts1MapperConfigTable=sts1MapperConfigTable, sts1MapperStatusAddr=sts1MapperStatusAddr, sts1T1E1Gr303Facility=sts1T1E1Gr303Facility, sts1Timing=sts1Timing, sts1MapperStatusOOFErrs=sts1MapperStatusOOFErrs, sts1MapperStatusResource=sts1MapperStatusResource, sts1VtGroup2=sts1VtGroup2, eriDNXSts1MIB=eriDNXSts1MIB, sts1T1E1Framing=sts1T1E1Framing, sts1MapperStatusLOFErrs=sts1MapperStatusLOFErrs, sts1LIUTable=sts1LIUTable, sts1T1E1LinkConfigTable=sts1T1E1LinkConfigTable, sts1MapperStatusMultiFErrs=sts1MapperStatusMultiFErrs, sts1LIUExcessZeros=sts1LIUExcessZeros, sts1VtGroup7=sts1VtGroup7, sts1MapperStatusLOSErrs=sts1MapperStatusLOSErrs, sts1T1E1CfgLinkAddr=sts1T1E1CfgLinkAddr, sts1T1E1RecoverTime=sts1T1E1RecoverTime, dnxSTS1Enterprise=dnxSTS1Enterprise, sts1MaprCmdStatus=sts1MaprCmdStatus, sts1T1E1EsfFormat=sts1T1E1EsfFormat, sts1MapperStatusRxTraceErrs=sts1MapperStatusRxTraceErrs, sts1MapperConfigEntry=sts1MapperConfigEntry, sts1T1E1LinkConfigEntry=sts1T1E1LinkConfigEntry, sts1LIUCmdStatus=sts1LIUCmdStatus, sts1MapperConfigTrap=sts1MapperConfigTrap, sts1LIUEntry=sts1LIUEntry, sts1LIUPRBSErrs=sts1LIUPRBSErrs, sts1T1E1CfgCmdStatus=sts1T1E1CfgCmdStatus, sts1MapperStatusTable=sts1MapperStatusTable, sts1T1E1Clear=sts1T1E1Clear) |
expected_output = {
"location": {
"R0 R1": {
"auto_abort_timer": "inactive",
"pkg_state": {
1: {
"filename_version": "17.08.01.0.149429",
"state": "U",
"type": "IMG",
}
},
}
}
} | expected_output = {'location': {'R0 R1': {'auto_abort_timer': 'inactive', 'pkg_state': {1: {'filename_version': '17.08.01.0.149429', 'state': 'U', 'type': 'IMG'}}}}} |
def selection_sort(my_list):
for i in range(len(my_list)):
min_index=i
for j in range(i+1 , len(my_list)):
if my_list[min_index]>my_list[j]:
min_index= j
my_list[i],my_list[min_index]= my_list[min_index] ,my_list[i]
print(my_list)
cus_list=[8,4,23,42,16,15]
selection_sort(cus_list)
| def selection_sort(my_list):
for i in range(len(my_list)):
min_index = i
for j in range(i + 1, len(my_list)):
if my_list[min_index] > my_list[j]:
min_index = j
(my_list[i], my_list[min_index]) = (my_list[min_index], my_list[i])
print(my_list)
cus_list = [8, 4, 23, 42, 16, 15]
selection_sort(cus_list) |
class Person:
number_of_people = 0
def __init__(self, name):
print("__init__ initiated")
self.name = name
print("calling add_person()")
Person.add_person()
@classmethod
def num_of_people(cls):
print("initiating num_of_person()")
return cls.number_of_people
@classmethod
def add_person(cls):
print("add_person(cls)")
cls.number_of_people += 1
# create an object of person
p1 = Person("KvT")
# creating another instance
p2 = Person("Shin")
# accessing the class method directly
print(Person.num_of_people())
| class Person:
number_of_people = 0
def __init__(self, name):
print('__init__ initiated')
self.name = name
print('calling add_person()')
Person.add_person()
@classmethod
def num_of_people(cls):
print('initiating num_of_person()')
return cls.number_of_people
@classmethod
def add_person(cls):
print('add_person(cls)')
cls.number_of_people += 1
p1 = person('KvT')
p2 = person('Shin')
print(Person.num_of_people()) |
SEPARATOR: list = [':', ',', '*', ';', '#', '|', '+', '%', '>', '?', '&', '=', '!']
def word_splitter(string: str) -> list:
for i in string:
if i in SEPARATOR:
string = string.replace(i, ' ')
return string.split()
| separator: list = [':', ',', '*', ';', '#', '|', '+', '%', '>', '?', '&', '=', '!']
def word_splitter(string: str) -> list:
for i in string:
if i in SEPARATOR:
string = string.replace(i, ' ')
return string.split() |
# POKEMING - GON'NA CATCH 'EM ALL
# -- A simple hack 'n slash game in console
# -- This class is handles all utility related things
class Utility:
# This allows to see important message of the game
def pause(message):
print(message)
input('Press any key to continue.') | class Utility:
def pause(message):
print(message)
input('Press any key to continue.') |
str1 = "Python"
str2 = "Python"
print("\nMemory location of str1 =", hex(id(str1)))
print("Memory location of str2 =", hex(id(str2)))
print() | str1 = 'Python'
str2 = 'Python'
print('\nMemory location of str1 =', hex(id(str1)))
print('Memory location of str2 =', hex(id(str2)))
print() |
config = dict()
config['fixed_cpu_frequency'] = "@ 3700 MHz"
config['frequency'] = 3.7e9
config['maxflops_sisd'] = 2
config['maxflops_sisd_fma'] = 4
config['maxflops_simd'] = 16
config['maxflops_simd_fma'] = 32
config['roofline_beta'] = 64 # According to WikiChip (Skylake)
config['figure_size'] = (20,9)
config['save_folder'] = '../all_plots/' | config = dict()
config['fixed_cpu_frequency'] = '@ 3700 MHz'
config['frequency'] = 3700000000.0
config['maxflops_sisd'] = 2
config['maxflops_sisd_fma'] = 4
config['maxflops_simd'] = 16
config['maxflops_simd_fma'] = 32
config['roofline_beta'] = 64
config['figure_size'] = (20, 9)
config['save_folder'] = '../all_plots/' |
class Location:
def __init__(self, location_id, borough, zone, lat, lng):
self.location_id = location_id
self.borough = borough
self.zone = zone
self.lat = lat
self.lng = lng
@property
def json(self):
return {
"location_id": self.location_id,
"borough": self.borough,
"zone": self.zone,
"lat": self.lat,
"lng": self.lng
}
Locations = [
Location(1, "EWR", "Newark Airport", 40.6895314, -74.1744624),
Location(2, "Queens", "Jamaica Bay", 40.6056632, -73.8713099),
Location(3, "Bronx", "Allerton/Pelham Gardens", 40.8627726, -73.84343919999999),
Location(4, "Manhattan", "Alphabet City", 40.7258428, -73.9774916),
Location(5, "Staten Island", "Arden Heights", 40.556413, -74.1735044),
Location(6, "Staten Island", "Arrochar/Fort Wadsworth", 40.6012117, -74.0579185),
Location(7, "Queens", "Astoria", 40.7643574, -73.92346189999999),
Location(8, "Queens", "Astoria Park", 40.7785364, -73.92283359999999),
Location(9, "Queens", "Auburndale", 40.7577672, -73.78339609999999),
Location(10, "Queens", "Baisley Park", 40.6737751, -73.786025),
Location(11, "Brooklyn", "Bath Beach", 40.6038852, -74.0062078),
Location(12, "Manhattan", "Battery Park", 40.703141, -74.0159996),
Location(13, "Manhattan", "Battery Park City", 40.7115786, -74.0158441),
Location(14, "Brooklyn", "Bay Ridge", 40.6263732, -74.0298767),
Location(15, "Queens", "Bay Terrace/Fort Totten", 40.7920899, -73.7760996),
Location(16, "Queens", "Bayside", 40.7585569, -73.7654367),
Location(17, "Brooklyn", "Bedford", 40.6872176, -73.9417735),
Location(18, "Bronx", "Bedford Park", 40.8700999, -73.8856912),
Location(19, "Queens", "Bellerose", 40.7361769, -73.7137365),
Location(20, "Bronx", "Belmont", 40.8534507, -73.88936819999999),
Location(21, "Brooklyn", "Bensonhurst East", 40.6139307, -73.9921833),
Location(22, "Brooklyn", "Bensonhurst West", 40.6139307, -73.9921833),
Location(23, "Staten Island", "Bloomfield/Emerson Hill", 40.6074525, -74.0963115),
Location(24, "Manhattan", "Bloomingdale", 40.7988958, -73.9697795),
Location(25, "Brooklyn", "Boerum Hill", 40.6848689, -73.9844722),
Location(26, "Brooklyn", "Borough Park", 40.6350319, -73.9921028),
Location(27, "Queens", "Breezy Point/Fort Tilden/Riis Beach", 40.5597687, -73.88761509999999),
Location(28, "Queens", "Briarwood/Jamaica Hills", 40.7109315, -73.81356099999999),
Location(29, "Brooklyn", "Brighton Beach", 40.5780706, -73.9596565),
Location(30, "Queens", "Broad Channel", 40.6158335, -73.8213213),
Location(31, "Bronx", "Bronx Park", 40.8608544, -73.8706278),
Location(32, "Bronx", "Bronxdale", 40.8474697, -73.8599132),
Location(33, "Brooklyn", "Brooklyn Heights", 40.6959294, -73.9955523),
Location(34, "Brooklyn", "Brooklyn Navy Yard", 40.7025634, -73.9697795),
Location(35, "Brooklyn", "Brownsville", 40.665214, -73.9125304),
Location(36, "Brooklyn", "Bushwick North", 40.6957755, -73.9170604),
Location(37, "Brooklyn", "Bushwick South", 40.7043655, -73.9383476),
Location(38, "Queens", "Cambria Heights", 40.692158, -73.7330753),
Location(39, "Brooklyn", "Canarsie", 40.6402325, -73.9060579),
Location(40, "Brooklyn", "Carroll Gardens", 40.6795331, -73.9991637),
Location(41, "Manhattan", "Central Harlem", 40.8089419, -73.9482305),
Location(42, "Manhattan", "Central Harlem North", 40.8142585, -73.9426617),
Location(43, "Manhattan", "Central Park", 40.7812199, -73.9665138),
Location(44, "Staten Island", "Charleston/Tottenville", 40.5083408, -74.23554039999999),
Location(45, "Manhattan", "Chinatown", 40.7157509, -73.9970307),
Location(46, "Bronx", "City Island", 40.8468202, -73.7874983),
Location(47, "Bronx", "Claremont/Bathgate", 40.84128339999999, -73.9001573),
Location(48, "Manhattan", "Clinton East", 40.7637581, -73.9918181),
Location(49, "Brooklyn", "Clinton Hill", 40.6896834, -73.9661144),
Location(50, "Manhattan", "Clinton West", 40.7628785, -73.9940134),
Location(51, "Bronx", "Co-Op City", 40.8738889, -73.82944440000001),
Location(52, "Brooklyn", "Cobble Hill", 40.686536, -73.9962255),
Location(53, "Queens", "College Point", 40.786395, -73.8389657),
Location(54, "Brooklyn", "Columbia Street", 40.6775239, -74.00634409999999),
Location(55, "Brooklyn", "Coney Island", 40.5755438, -73.9707016),
Location(56, "Queens", "Corona", 40.7449859, -73.8642613),
Location(57, "Queens", "Corona", 40.7449859, -73.8642613),
Location(58, "Bronx", "Country Club", 40.8391667, -73.8197222),
Location(59, "Bronx", "Crotona Park", 40.8400367, -73.8953489),
Location(60, "Bronx", "Crotona Park East", 40.8365344, -73.8933509),
Location(61, "Brooklyn", "Crown Heights North", 40.6694022, -73.9422324),
Location(62, "Brooklyn", "Crown Heights South", 40.6694022, -73.9422324),
Location(63, "Brooklyn", "Cypress Hills", 40.6836873, -73.87963309999999),
Location(64, "Queens", "Douglaston", 40.76401509999999, -73.7433727),
Location(65, "Brooklyn", "Downtown Brooklyn/MetroTech", 40.6930987, -73.98566339999999),
Location(66, "Brooklyn", "DUMBO/Vinegar Hill", 40.70371859999999, -73.98226830000002),
Location(67, "Brooklyn", "Dyker Heights", 40.6214932, -74.00958399999999),
Location(68, "Manhattan", "East Chelsea", 40.7465004, -74.00137370000002),
Location(69, "Bronx", "East Concourse/Concourse Village", 40.8255863, -73.9184388),
Location(70, "Queens", "East Elmhurst", 40.7737505, -73.8713099),
Location(71, "Brooklyn", "East Flatbush/Farragut", 40.63751329999999, -73.9280797),
Location(72, "Brooklyn", "East Flatbush/Remsen Village", 40.6511399, -73.9181602),
Location(73, "Queens", "East Flushing", 40.7540534, -73.8086418),
Location(74, "Manhattan", "East Harlem North", 40.7957399, -73.93892129999999),
Location(75, "Manhattan", "East Harlem South", 40.7957399, -73.93892129999999),
Location(76, "Brooklyn", "East New York", 40.6590529, -73.8759245),
Location(77, "Brooklyn", "East New York/Pennsylvania Avenue", 40.65845729999999, -73.8904498),
Location(78, "Bronx", "East Tremont", 40.8453781, -73.8909693),
Location(79, "Manhattan", "East Village", 40.7264773, -73.98153370000001),
Location(80, "Brooklyn", "East Williamsburg", 40.7141953, -73.9316461),
Location(81, "Bronx", "Eastchester", 40.8859837, -73.82794710000002),
Location(82, "Queens", "Elmhurst", 40.737975, -73.8801301),
Location(83, "Queens", "Elmhurst/Maspeth", 40.7294018, -73.9065883),
Location(84, "Staten Island", "Eltingville/Annadale/Prince's Bay", 40.52899439999999, -74.197644),
Location(85, "Brooklyn", "Erasmus", 40.649649, -73.95287379999999),
Location(86, "Queens", "Far Rockaway", 40.5998931, -73.74484369999999),
Location(87, "Manhattan", "Financial District North", 40.7077143, -74.00827869999999),
Location(88, "Manhattan", "Financial District South", 40.705123, -74.0049259),
Location(89, "Brooklyn", "Flatbush/Ditmas Park", 40.6414876, -73.9593998),
Location(90, "Manhattan", "Flatiron", 40.740083, -73.9903489),
Location(91, "Brooklyn", "Flatlands", 40.6232714, -73.9321664),
Location(92, "Queens", "Flushing", 40.7674987, -73.833079),
Location(93, "Queens", "Flushing Meadows-Corona Park", 40.7400275, -73.8406953),
Location(94, "Bronx", "Fordham South", 40.8592667, -73.8984694),
Location(95, "Queens", "Forest Hills", 40.718106, -73.8448469),
Location(96, "Queens", "Forest Park/Highland Park", 40.6960418, -73.8663024),
Location(97, "Brooklyn", "Fort Greene", 40.6920638, -73.97418739999999),
Location(98, "Queens", "Fresh Meadows", 40.7335179, -73.7801447),
Location(99, "Staten Island", "Freshkills Park", 40.5772365, -74.1858183),
Location(100, "Manhattan", "Garment District", 40.7547072, -73.9916342),
Location(101, "Queens", "Glen Oaks", 40.7471504, -73.7118223),
Location(102, "Queens", "Glendale", 40.7016662, -73.8842219),
Location(103, "Manhattan", "Governor's Island/Ellis Island/Liberty Island", 40.6892494, -74.04450039999999),
Location(104, "Manhattan", "Governor's Island/Ellis Island/Liberty Island", 40.6892494, -74.04450039999999),
Location(105, "Manhattan", "Governor's Island/Ellis Island/Liberty Island", 40.6892494, -74.04450039999999),
Location(106, "Brooklyn", "Gowanus", 40.6751161, -73.9879753),
Location(107, "Manhattan", "Gramercy", 40.7367783, -73.9844722),
Location(108, "Brooklyn", "Gravesend", 40.5918636, -73.9768653),
Location(109, "Staten Island", "Great Kills", 40.5543273, -74.156292),
Location(110, "Staten Island", "Great Kills Park", 40.5492367, -74.1238486),
Location(111, "Brooklyn", "Green-Wood Cemetery", 40.6579777, -73.9940634),
Location(112, "Brooklyn", "Greenpoint", 40.7304701, -73.95150319999999),
Location(113, "Manhattan", "Greenwich Village North", 40.7335719, -74.0027418),
Location(114, "Manhattan", "Greenwich Village South", 40.7335719, -74.0027418),
Location(115, "Staten Island", "Grymes Hill/Clifton", 40.6189726, -74.0784785),
Location(116, "Manhattan", "Hamilton Heights", 40.8252793, -73.94761390000001),
Location(117, "Queens", "Hammels/Arverne", 40.5880813, -73.81199289999999),
Location(118, "Staten Island", "Heartland Village/Todt Hill", 40.5975007, -74.10189749999999),
Location(119, "Bronx", "Highbridge", 40.836916, -73.9271294),
Location(120, "Manhattan", "Highbridge Park", 40.8537599, -73.9257492),
Location(121, "Queens", "Hillcrest/Pomonok", 40.732341, -73.81077239999999),
Location(122, "Queens", "Hollis", 40.7112203, -73.762495),
Location(123, "Brooklyn", "Homecrest", 40.6004787, -73.9565551),
Location(124, "Queens", "Howard Beach", 40.6571222, -73.8429989),
Location(125, "Manhattan", "Hudson Sq", 40.7265834, -74.0074731),
Location(126, "Bronx", "Hunts Point", 40.8094385, -73.8803315),
Location(127, "Manhattan", "Inwood", 40.8677145, -73.9212019),
Location(128, "Manhattan", "Inwood Hill Park", 40.8722007, -73.9255549),
Location(129, "Queens", "Jackson Heights", 40.7556818, -73.8830701),
Location(130, "Queens", "Jamaica", 40.702677, -73.7889689),
Location(131, "Queens", "Jamaica Estates", 40.7179512, -73.783822),
Location(132, "Queens", "JFK Airport", 40.6413111, -73.77813909999999),
Location(133, "Brooklyn", "Kensington", 40.63852019999999, -73.97318729999999),
Location(134, "Queens", "Kew Gardens", 40.705695, -73.8272029),
Location(135, "Queens", "Kew Gardens Hills", 40.724707, -73.8207618),
Location(136, "Bronx", "Kingsbridge Heights", 40.8711235, -73.8976328),
Location(137, "Manhattan", "Kips Bay", 40.74232920000001, -73.9800645),
Location(138, "Queens", "LaGuardia Airport", 40.7769271, -73.8739659),
Location(139, "Queens", "Laurelton", 40.67764, -73.7447853),
Location(140, "Manhattan", "Lenox Hill East", 40.7662315, -73.9602312),
Location(141, "Manhattan", "Lenox Hill West", 40.7662315, -73.9602312),
Location(142, "Manhattan", "Lincoln Square East", 40.7741769, -73.98491179999999),
Location(143, "Manhattan", "Lincoln Square West", 40.7741769, -73.98491179999999),
Location(144, "Manhattan", "Little Italy/NoLiTa", 40.7230413, -73.99486069999999),
Location(145, "Queens", "Long Island City/Hunters Point", 40.7485587, -73.94964639999999),
Location(146, "Queens", "Long Island City/Queens Plaza", 40.7509846, -73.9402762),
Location(147, "Bronx", "Longwood", 40.8248438, -73.8915875),
Location(148, "Manhattan", "Lower East Side", 40.715033, -73.9842724),
Location(149, "Brooklyn", "Madison", 40.60688529999999, -73.947958),
Location(150, "Brooklyn", "Manhattan Beach", 40.57815799999999, -73.93892129999999),
Location(151, "Manhattan", "Manhattan Valley", 40.7966989, -73.9684247),
Location(152, "Manhattan", "Manhattanville", 40.8169443, -73.9558333),
Location(153, "Manhattan", "Marble Hill", 40.8761173, -73.9102628),
Location(154, "Brooklyn", "Marine Park/Floyd Bennett Field", 40.58816030000001, -73.8969745),
Location(155, "Brooklyn", "Marine Park/Mill Basin", 40.6055157, -73.9348698),
Location(156, "Staten Island", "Mariners Harbor", 40.63677010000001, -74.1587547),
Location(157, "Queens", "Maspeth", 40.7294018, -73.9065883),
Location(158, "Manhattan", "Meatpacking/West Village West", 40.7342331, -74.0100622),
Location(159, "Bronx", "Melrose South", 40.824545, -73.9104143),
Location(160, "Queens", "Middle Village", 40.717372, -73.87425),
Location(161, "Manhattan", "Midtown Center", 40.7314658, -73.9970956),
Location(162, "Manhattan", "Midtown East", 40.7571432, -73.9718815),
Location(163, "Manhattan", "Midtown North", 40.7649516, -73.9851039),
Location(164, "Manhattan", "Midtown South", 40.7521795, -73.9875438),
Location(165, "Brooklyn", "Midwood", 40.6204388, -73.95997779999999),
Location(166, "Manhattan", "Morningside Heights", 40.8105443, -73.9620581),
Location(167, "Bronx", "Morrisania/Melrose", 40.824545, -73.9104143),
Location(168, "Bronx", "Mott Haven/Port Morris", 40.8022025, -73.9166051),
Location(169, "Bronx", "Mount Hope", 40.8488863, -73.9051185),
Location(170, "Manhattan", "Murray Hill", 40.7478792, -73.9756567),
Location(171, "Queens", "Murray Hill-Queens", 40.7634996, -73.8073261),
Location(172, "Staten Island", "New Dorp/Midland Beach", 40.5739937, -74.1159755),
Location(173, "Queens", "North Corona", 40.7543725, -73.8669188),
Location(174, "Bronx", "Norwood", 40.8810341, -73.878486),
Location(175, "Queens", "Oakland Gardens", 40.7408584, -73.758241),
Location(176, "Staten Island", "Oakwood", 40.563994, -74.1159754),
Location(177, "Brooklyn", "Ocean Hill", 40.6782737, -73.9108212),
Location(178, "Brooklyn", "Ocean Parkway South", 40.61287799999999, -73.96838620000001),
Location(179, "Queens", "Old Astoria", 40.7643574, -73.92346189999999),
Location(180, "Queens", "Ozone Park", 40.6794072, -73.8507279),
Location(181, "Brooklyn", "Park Slope", 40.6710672, -73.98142279999999),
Location(182, "Bronx", "Parkchester", 40.8382522, -73.8566087),
Location(183, "Bronx", "Pelham Bay", 40.8505556, -73.83333329999999),
Location(184, "Bronx", "Pelham Bay Park", 40.8670144, -73.81006339999999),
Location(185, "Bronx", "Pelham Parkway", 40.8553279, -73.8639594),
Location(186, "Manhattan", "Penn Station/Madison Sq West", 40.7505045, -73.9934387),
Location(187, "Staten Island", "Port Richmond", 40.63549140000001, -74.1254641),
Location(188, "Brooklyn", "Prospect-Lefferts Gardens", 40.6592355, -73.9533895),
Location(189, "Brooklyn", "Prospect Heights", 40.6774196, -73.9668408),
Location(190, "Brooklyn", "Prospect Park", 40.6602037, -73.9689558),
Location(191, "Queens", "Queens Village", 40.7156628, -73.7419017),
Location(192, "Queens", "Queensboro Hill", 40.7429383, -73.8251741),
Location(193, "Queens", "Queensbridge/Ravenswood", 40.7556711, -73.9456723),
Location(194, "Manhattan", "Randalls Island", 40.7932271, -73.92128579999999),
Location(195, "Brooklyn", "Red Hook", 40.6733676, -74.00831889999999),
Location(196, "Queens", "Rego Park", 40.72557219999999, -73.8624893),
Location(197, "Queens", "Richmond Hill", 40.6958108, -73.8272029),
Location(198, "Queens", "Ridgewood", 40.7043986, -73.9018292),
Location(199, "Bronx", "Rikers Island", 40.79312770000001, -73.88601),
Location(200, "Bronx", "Riverdale/North Riverdale/Fieldston", 40.89961830000001, -73.9088276),
Location(201, "Queens", "Rockaway Park", 40.57978629999999, -73.8372237),
Location(202, "Manhattan", "Roosevelt Island", 40.76050310000001, -73.9509934),
Location(203, "Queens", "Rosedale", 40.6584068, -73.7389596),
Location(204, "Staten Island", "Rossville/Woodrow", 40.5434385, -74.19764409999999),
Location(205, "Queens", "Saint Albans", 40.6895283, -73.76436880000001),
Location(206, "Staten Island", "Saint George/New Brighton", 40.6404369, -74.090226),
Location(207, "Queens", "Saint Michaels Cemetery/Woodside", 40.7646761, -73.89850419999999),
Location(208, "Bronx", "Schuylerville/Edgewater Park", 40.8235967, -73.81029269999999),
Location(209, "Manhattan", "Seaport", 40.70722629999999, -74.0027431),
Location(210, "Brooklyn", "Sheepshead Bay", 40.5953955, -73.94575379999999),
Location(211, "Manhattan", "SoHo", 40.723301, -74.0029883),
Location(212, "Bronx", "Soundview/Bruckner", 40.8247566, -73.8710929),
Location(213, "Bronx", "Soundview/Castle Hill", 40.8176831, -73.8507279),
Location(214, "Staten Island", "South Beach/Dongan Hills", 40.5903824, -74.06680759999999),
Location(215, "Queens", "South Jamaica", 40.6808594, -73.7919103),
Location(216, "Queens", "South Ozone Park", 40.6764003, -73.8124984),
Location(217, "Brooklyn", "South Williamsburg", 40.7043921, -73.9565551),
Location(218, "Queens", "Springfield Gardens North", 40.6715916, -73.779798),
Location(219, "Queens", "Springfield Gardens South", 40.6715916, -73.779798),
Location(220, "Bronx", "Spuyten Duyvil/Kingsbridge", 40.8833912, -73.9051185),
Location(221, "Staten Island", "Stapleton", 40.6264929, -74.07764139999999),
Location(222, "Brooklyn", "Starrett City", 40.6484272, -73.88236119999999),
Location(223, "Queens", "Steinway", 40.7745459, -73.9037477),
Location(224, "Manhattan", "Stuy Town/Peter Cooper Village", 40.7316903, -73.9778494),
Location(225, "Brooklyn", "Stuyvesant Heights", 40.6824166, -73.9319933),
Location(226, "Queens", "Sunnyside", 40.7432759, -73.9196324),
Location(227, "Brooklyn", "Sunset Park East", 40.65272, -74.00933479999999),
Location(228, "Brooklyn", "Sunset Park West", 40.65272, -74.00933479999999),
Location(229, "Manhattan", "Sutton Place/Turtle Bay North", 40.7576281, -73.961698),
Location(230, "Manhattan", "Times Sq/Theatre District", 40.759011, -73.9844722),
Location(231, "Manhattan", "TriBeCa/Civic Center", 40.71625299999999, -74.0122396),
Location(232, "Manhattan", "Two Bridges/Seward Park", 40.7149056, -73.98924699999999),
Location(233, "Manhattan", "UN/Turtle Bay South", 40.7571432, -73.9718815),
Location(234, "Manhattan", "Union Sq", 40.7358633, -73.9910835),
Location(235, "Bronx", "University Heights/Morris Heights", 40.8540855, -73.9198498),
Location(236, "Manhattan", "Upper East Side North", 40.7600931, -73.9598414),
Location(237, "Manhattan", "Upper East Side South", 40.7735649, -73.9565551),
Location(238, "Manhattan", "Upper West Side North", 40.7870106, -73.9753676),
Location(239, "Manhattan", "Upper West Side South", 40.7870106, -73.9753676),
Location(240, "Bronx", "Van Cortlandt Park", 40.8972233, -73.8860668),
Location(241, "Bronx", "Van Cortlandt Village", 40.8837203, -73.89313899999999),
Location(242, "Bronx", "Van Nest/Morris Park", 40.8459682, -73.8625946),
Location(243, "Manhattan", "Washington Heights North", 40.852476, -73.9342996),
Location(244, "Manhattan", "Washington Heights South", 40.8417082, -73.9393554),
Location(245, "Staten Island", "West Brighton", 40.6270298, -74.10931409999999),
Location(246, "Manhattan", "West Chelsea/Hudson Yards", 40.7542535, -74.0023331),
Location(247, "Bronx", "West Concourse", 40.8316761, -73.9227554),
Location(248, "Bronx", "West Farms/Bronx River", 40.8430609, -73.8816001),
Location(249, "Manhattan", "West Village", 40.73468, -74.0047554),
Location(250, "Bronx", "Westchester Village/Unionport", 40.8340447, -73.8531349),
Location(251, "Staten Island", "Westerleigh", 40.616296, -74.1386767),
Location(252, "Queens", "Whitestone", 40.7920449, -73.8095574),
Location(253, "Queens", "Willets Point", 40.7606911, -73.840436),
Location(254, "Bronx", "Williamsbridge/Olinville", 40.8787602, -73.85283559999999),
Location(255, "Brooklyn", "Williamsburg (North Side)", 40.71492, -73.9528472),
Location(256, "Brooklyn", "Williamsburg (South Side)", 40.70824229999999, -73.9571487),
Location(257, "Brooklyn", "Windsor Terrace", 40.6539346, -73.9756567),
Location(258, "Queens", "Woodhaven", 40.6901366, -73.8566087),
Location(259, "Bronx", "Woodlawn/Wakefield", 40.8955885, -73.8627133),
Location(260, "Queens", "Woodside", 40.7532952, -73.9068973),
Location(261, "Manhattan", "World Trade Center", 40.7118011, -74.0131196),
Location(262, "Manhattan", "Yorkville East", 40.7762231, -73.94920789999999),
Location(263, "Manhattan", "Yorkville West", 40.7762231, -73.94920789999999)
]
| class Location:
def __init__(self, location_id, borough, zone, lat, lng):
self.location_id = location_id
self.borough = borough
self.zone = zone
self.lat = lat
self.lng = lng
@property
def json(self):
return {'location_id': self.location_id, 'borough': self.borough, 'zone': self.zone, 'lat': self.lat, 'lng': self.lng}
locations = [location(1, 'EWR', 'Newark Airport', 40.6895314, -74.1744624), location(2, 'Queens', 'Jamaica Bay', 40.6056632, -73.8713099), location(3, 'Bronx', 'Allerton/Pelham Gardens', 40.8627726, -73.84343919999999), location(4, 'Manhattan', 'Alphabet City', 40.7258428, -73.9774916), location(5, 'Staten Island', 'Arden Heights', 40.556413, -74.1735044), location(6, 'Staten Island', 'Arrochar/Fort Wadsworth', 40.6012117, -74.0579185), location(7, 'Queens', 'Astoria', 40.7643574, -73.92346189999999), location(8, 'Queens', 'Astoria Park', 40.7785364, -73.92283359999999), location(9, 'Queens', 'Auburndale', 40.7577672, -73.78339609999999), location(10, 'Queens', 'Baisley Park', 40.6737751, -73.786025), location(11, 'Brooklyn', 'Bath Beach', 40.6038852, -74.0062078), location(12, 'Manhattan', 'Battery Park', 40.703141, -74.0159996), location(13, 'Manhattan', 'Battery Park City', 40.7115786, -74.0158441), location(14, 'Brooklyn', 'Bay Ridge', 40.6263732, -74.0298767), location(15, 'Queens', 'Bay Terrace/Fort Totten', 40.7920899, -73.7760996), location(16, 'Queens', 'Bayside', 40.7585569, -73.7654367), location(17, 'Brooklyn', 'Bedford', 40.6872176, -73.9417735), location(18, 'Bronx', 'Bedford Park', 40.8700999, -73.8856912), location(19, 'Queens', 'Bellerose', 40.7361769, -73.7137365), location(20, 'Bronx', 'Belmont', 40.8534507, -73.88936819999999), location(21, 'Brooklyn', 'Bensonhurst East', 40.6139307, -73.9921833), location(22, 'Brooklyn', 'Bensonhurst West', 40.6139307, -73.9921833), location(23, 'Staten Island', 'Bloomfield/Emerson Hill', 40.6074525, -74.0963115), location(24, 'Manhattan', 'Bloomingdale', 40.7988958, -73.9697795), location(25, 'Brooklyn', 'Boerum Hill', 40.6848689, -73.9844722), location(26, 'Brooklyn', 'Borough Park', 40.6350319, -73.9921028), location(27, 'Queens', 'Breezy Point/Fort Tilden/Riis Beach', 40.5597687, -73.88761509999999), location(28, 'Queens', 'Briarwood/Jamaica Hills', 40.7109315, -73.81356099999999), location(29, 'Brooklyn', 'Brighton Beach', 40.5780706, -73.9596565), location(30, 'Queens', 'Broad Channel', 40.6158335, -73.8213213), location(31, 'Bronx', 'Bronx Park', 40.8608544, -73.8706278), location(32, 'Bronx', 'Bronxdale', 40.8474697, -73.8599132), location(33, 'Brooklyn', 'Brooklyn Heights', 40.6959294, -73.9955523), location(34, 'Brooklyn', 'Brooklyn Navy Yard', 40.7025634, -73.9697795), location(35, 'Brooklyn', 'Brownsville', 40.665214, -73.9125304), location(36, 'Brooklyn', 'Bushwick North', 40.6957755, -73.9170604), location(37, 'Brooklyn', 'Bushwick South', 40.7043655, -73.9383476), location(38, 'Queens', 'Cambria Heights', 40.692158, -73.7330753), location(39, 'Brooklyn', 'Canarsie', 40.6402325, -73.9060579), location(40, 'Brooklyn', 'Carroll Gardens', 40.6795331, -73.9991637), location(41, 'Manhattan', 'Central Harlem', 40.8089419, -73.9482305), location(42, 'Manhattan', 'Central Harlem North', 40.8142585, -73.9426617), location(43, 'Manhattan', 'Central Park', 40.7812199, -73.9665138), location(44, 'Staten Island', 'Charleston/Tottenville', 40.5083408, -74.23554039999999), location(45, 'Manhattan', 'Chinatown', 40.7157509, -73.9970307), location(46, 'Bronx', 'City Island', 40.8468202, -73.7874983), location(47, 'Bronx', 'Claremont/Bathgate', 40.84128339999999, -73.9001573), location(48, 'Manhattan', 'Clinton East', 40.7637581, -73.9918181), location(49, 'Brooklyn', 'Clinton Hill', 40.6896834, -73.9661144), location(50, 'Manhattan', 'Clinton West', 40.7628785, -73.9940134), location(51, 'Bronx', 'Co-Op City', 40.8738889, -73.82944440000001), location(52, 'Brooklyn', 'Cobble Hill', 40.686536, -73.9962255), location(53, 'Queens', 'College Point', 40.786395, -73.8389657), location(54, 'Brooklyn', 'Columbia Street', 40.6775239, -74.00634409999999), location(55, 'Brooklyn', 'Coney Island', 40.5755438, -73.9707016), location(56, 'Queens', 'Corona', 40.7449859, -73.8642613), location(57, 'Queens', 'Corona', 40.7449859, -73.8642613), location(58, 'Bronx', 'Country Club', 40.8391667, -73.8197222), location(59, 'Bronx', 'Crotona Park', 40.8400367, -73.8953489), location(60, 'Bronx', 'Crotona Park East', 40.8365344, -73.8933509), location(61, 'Brooklyn', 'Crown Heights North', 40.6694022, -73.9422324), location(62, 'Brooklyn', 'Crown Heights South', 40.6694022, -73.9422324), location(63, 'Brooklyn', 'Cypress Hills', 40.6836873, -73.87963309999999), location(64, 'Queens', 'Douglaston', 40.76401509999999, -73.7433727), location(65, 'Brooklyn', 'Downtown Brooklyn/MetroTech', 40.6930987, -73.98566339999999), location(66, 'Brooklyn', 'DUMBO/Vinegar Hill', 40.70371859999999, -73.98226830000002), location(67, 'Brooklyn', 'Dyker Heights', 40.6214932, -74.00958399999999), location(68, 'Manhattan', 'East Chelsea', 40.7465004, -74.00137370000002), location(69, 'Bronx', 'East Concourse/Concourse Village', 40.8255863, -73.9184388), location(70, 'Queens', 'East Elmhurst', 40.7737505, -73.8713099), location(71, 'Brooklyn', 'East Flatbush/Farragut', 40.63751329999999, -73.9280797), location(72, 'Brooklyn', 'East Flatbush/Remsen Village', 40.6511399, -73.9181602), location(73, 'Queens', 'East Flushing', 40.7540534, -73.8086418), location(74, 'Manhattan', 'East Harlem North', 40.7957399, -73.93892129999999), location(75, 'Manhattan', 'East Harlem South', 40.7957399, -73.93892129999999), location(76, 'Brooklyn', 'East New York', 40.6590529, -73.8759245), location(77, 'Brooklyn', 'East New York/Pennsylvania Avenue', 40.65845729999999, -73.8904498), location(78, 'Bronx', 'East Tremont', 40.8453781, -73.8909693), location(79, 'Manhattan', 'East Village', 40.7264773, -73.98153370000001), location(80, 'Brooklyn', 'East Williamsburg', 40.7141953, -73.9316461), location(81, 'Bronx', 'Eastchester', 40.8859837, -73.82794710000002), location(82, 'Queens', 'Elmhurst', 40.737975, -73.8801301), location(83, 'Queens', 'Elmhurst/Maspeth', 40.7294018, -73.9065883), location(84, 'Staten Island', "Eltingville/Annadale/Prince's Bay", 40.52899439999999, -74.197644), location(85, 'Brooklyn', 'Erasmus', 40.649649, -73.95287379999999), location(86, 'Queens', 'Far Rockaway', 40.5998931, -73.74484369999999), location(87, 'Manhattan', 'Financial District North', 40.7077143, -74.00827869999999), location(88, 'Manhattan', 'Financial District South', 40.705123, -74.0049259), location(89, 'Brooklyn', 'Flatbush/Ditmas Park', 40.6414876, -73.9593998), location(90, 'Manhattan', 'Flatiron', 40.740083, -73.9903489), location(91, 'Brooklyn', 'Flatlands', 40.6232714, -73.9321664), location(92, 'Queens', 'Flushing', 40.7674987, -73.833079), location(93, 'Queens', 'Flushing Meadows-Corona Park', 40.7400275, -73.8406953), location(94, 'Bronx', 'Fordham South', 40.8592667, -73.8984694), location(95, 'Queens', 'Forest Hills', 40.718106, -73.8448469), location(96, 'Queens', 'Forest Park/Highland Park', 40.6960418, -73.8663024), location(97, 'Brooklyn', 'Fort Greene', 40.6920638, -73.97418739999999), location(98, 'Queens', 'Fresh Meadows', 40.7335179, -73.7801447), location(99, 'Staten Island', 'Freshkills Park', 40.5772365, -74.1858183), location(100, 'Manhattan', 'Garment District', 40.7547072, -73.9916342), location(101, 'Queens', 'Glen Oaks', 40.7471504, -73.7118223), location(102, 'Queens', 'Glendale', 40.7016662, -73.8842219), location(103, 'Manhattan', "Governor's Island/Ellis Island/Liberty Island", 40.6892494, -74.04450039999999), location(104, 'Manhattan', "Governor's Island/Ellis Island/Liberty Island", 40.6892494, -74.04450039999999), location(105, 'Manhattan', "Governor's Island/Ellis Island/Liberty Island", 40.6892494, -74.04450039999999), location(106, 'Brooklyn', 'Gowanus', 40.6751161, -73.9879753), location(107, 'Manhattan', 'Gramercy', 40.7367783, -73.9844722), location(108, 'Brooklyn', 'Gravesend', 40.5918636, -73.9768653), location(109, 'Staten Island', 'Great Kills', 40.5543273, -74.156292), location(110, 'Staten Island', 'Great Kills Park', 40.5492367, -74.1238486), location(111, 'Brooklyn', 'Green-Wood Cemetery', 40.6579777, -73.9940634), location(112, 'Brooklyn', 'Greenpoint', 40.7304701, -73.95150319999999), location(113, 'Manhattan', 'Greenwich Village North', 40.7335719, -74.0027418), location(114, 'Manhattan', 'Greenwich Village South', 40.7335719, -74.0027418), location(115, 'Staten Island', 'Grymes Hill/Clifton', 40.6189726, -74.0784785), location(116, 'Manhattan', 'Hamilton Heights', 40.8252793, -73.94761390000001), location(117, 'Queens', 'Hammels/Arverne', 40.5880813, -73.81199289999999), location(118, 'Staten Island', 'Heartland Village/Todt Hill', 40.5975007, -74.10189749999999), location(119, 'Bronx', 'Highbridge', 40.836916, -73.9271294), location(120, 'Manhattan', 'Highbridge Park', 40.8537599, -73.9257492), location(121, 'Queens', 'Hillcrest/Pomonok', 40.732341, -73.81077239999999), location(122, 'Queens', 'Hollis', 40.7112203, -73.762495), location(123, 'Brooklyn', 'Homecrest', 40.6004787, -73.9565551), location(124, 'Queens', 'Howard Beach', 40.6571222, -73.8429989), location(125, 'Manhattan', 'Hudson Sq', 40.7265834, -74.0074731), location(126, 'Bronx', 'Hunts Point', 40.8094385, -73.8803315), location(127, 'Manhattan', 'Inwood', 40.8677145, -73.9212019), location(128, 'Manhattan', 'Inwood Hill Park', 40.8722007, -73.9255549), location(129, 'Queens', 'Jackson Heights', 40.7556818, -73.8830701), location(130, 'Queens', 'Jamaica', 40.702677, -73.7889689), location(131, 'Queens', 'Jamaica Estates', 40.7179512, -73.783822), location(132, 'Queens', 'JFK Airport', 40.6413111, -73.77813909999999), location(133, 'Brooklyn', 'Kensington', 40.63852019999999, -73.97318729999999), location(134, 'Queens', 'Kew Gardens', 40.705695, -73.8272029), location(135, 'Queens', 'Kew Gardens Hills', 40.724707, -73.8207618), location(136, 'Bronx', 'Kingsbridge Heights', 40.8711235, -73.8976328), location(137, 'Manhattan', 'Kips Bay', 40.74232920000001, -73.9800645), location(138, 'Queens', 'LaGuardia Airport', 40.7769271, -73.8739659), location(139, 'Queens', 'Laurelton', 40.67764, -73.7447853), location(140, 'Manhattan', 'Lenox Hill East', 40.7662315, -73.9602312), location(141, 'Manhattan', 'Lenox Hill West', 40.7662315, -73.9602312), location(142, 'Manhattan', 'Lincoln Square East', 40.7741769, -73.98491179999999), location(143, 'Manhattan', 'Lincoln Square West', 40.7741769, -73.98491179999999), location(144, 'Manhattan', 'Little Italy/NoLiTa', 40.7230413, -73.99486069999999), location(145, 'Queens', 'Long Island City/Hunters Point', 40.7485587, -73.94964639999999), location(146, 'Queens', 'Long Island City/Queens Plaza', 40.7509846, -73.9402762), location(147, 'Bronx', 'Longwood', 40.8248438, -73.8915875), location(148, 'Manhattan', 'Lower East Side', 40.715033, -73.9842724), location(149, 'Brooklyn', 'Madison', 40.60688529999999, -73.947958), location(150, 'Brooklyn', 'Manhattan Beach', 40.57815799999999, -73.93892129999999), location(151, 'Manhattan', 'Manhattan Valley', 40.7966989, -73.9684247), location(152, 'Manhattan', 'Manhattanville', 40.8169443, -73.9558333), location(153, 'Manhattan', 'Marble Hill', 40.8761173, -73.9102628), location(154, 'Brooklyn', 'Marine Park/Floyd Bennett Field', 40.58816030000001, -73.8969745), location(155, 'Brooklyn', 'Marine Park/Mill Basin', 40.6055157, -73.9348698), location(156, 'Staten Island', 'Mariners Harbor', 40.63677010000001, -74.1587547), location(157, 'Queens', 'Maspeth', 40.7294018, -73.9065883), location(158, 'Manhattan', 'Meatpacking/West Village West', 40.7342331, -74.0100622), location(159, 'Bronx', 'Melrose South', 40.824545, -73.9104143), location(160, 'Queens', 'Middle Village', 40.717372, -73.87425), location(161, 'Manhattan', 'Midtown Center', 40.7314658, -73.9970956), location(162, 'Manhattan', 'Midtown East', 40.7571432, -73.9718815), location(163, 'Manhattan', 'Midtown North', 40.7649516, -73.9851039), location(164, 'Manhattan', 'Midtown South', 40.7521795, -73.9875438), location(165, 'Brooklyn', 'Midwood', 40.6204388, -73.95997779999999), location(166, 'Manhattan', 'Morningside Heights', 40.8105443, -73.9620581), location(167, 'Bronx', 'Morrisania/Melrose', 40.824545, -73.9104143), location(168, 'Bronx', 'Mott Haven/Port Morris', 40.8022025, -73.9166051), location(169, 'Bronx', 'Mount Hope', 40.8488863, -73.9051185), location(170, 'Manhattan', 'Murray Hill', 40.7478792, -73.9756567), location(171, 'Queens', 'Murray Hill-Queens', 40.7634996, -73.8073261), location(172, 'Staten Island', 'New Dorp/Midland Beach', 40.5739937, -74.1159755), location(173, 'Queens', 'North Corona', 40.7543725, -73.8669188), location(174, 'Bronx', 'Norwood', 40.8810341, -73.878486), location(175, 'Queens', 'Oakland Gardens', 40.7408584, -73.758241), location(176, 'Staten Island', 'Oakwood', 40.563994, -74.1159754), location(177, 'Brooklyn', 'Ocean Hill', 40.6782737, -73.9108212), location(178, 'Brooklyn', 'Ocean Parkway South', 40.61287799999999, -73.96838620000001), location(179, 'Queens', 'Old Astoria', 40.7643574, -73.92346189999999), location(180, 'Queens', 'Ozone Park', 40.6794072, -73.8507279), location(181, 'Brooklyn', 'Park Slope', 40.6710672, -73.98142279999999), location(182, 'Bronx', 'Parkchester', 40.8382522, -73.8566087), location(183, 'Bronx', 'Pelham Bay', 40.8505556, -73.83333329999999), location(184, 'Bronx', 'Pelham Bay Park', 40.8670144, -73.81006339999999), location(185, 'Bronx', 'Pelham Parkway', 40.8553279, -73.8639594), location(186, 'Manhattan', 'Penn Station/Madison Sq West', 40.7505045, -73.9934387), location(187, 'Staten Island', 'Port Richmond', 40.63549140000001, -74.1254641), location(188, 'Brooklyn', 'Prospect-Lefferts Gardens', 40.6592355, -73.9533895), location(189, 'Brooklyn', 'Prospect Heights', 40.6774196, -73.9668408), location(190, 'Brooklyn', 'Prospect Park', 40.6602037, -73.9689558), location(191, 'Queens', 'Queens Village', 40.7156628, -73.7419017), location(192, 'Queens', 'Queensboro Hill', 40.7429383, -73.8251741), location(193, 'Queens', 'Queensbridge/Ravenswood', 40.7556711, -73.9456723), location(194, 'Manhattan', 'Randalls Island', 40.7932271, -73.92128579999999), location(195, 'Brooklyn', 'Red Hook', 40.6733676, -74.00831889999999), location(196, 'Queens', 'Rego Park', 40.72557219999999, -73.8624893), location(197, 'Queens', 'Richmond Hill', 40.6958108, -73.8272029), location(198, 'Queens', 'Ridgewood', 40.7043986, -73.9018292), location(199, 'Bronx', 'Rikers Island', 40.79312770000001, -73.88601), location(200, 'Bronx', 'Riverdale/North Riverdale/Fieldston', 40.89961830000001, -73.9088276), location(201, 'Queens', 'Rockaway Park', 40.57978629999999, -73.8372237), location(202, 'Manhattan', 'Roosevelt Island', 40.76050310000001, -73.9509934), location(203, 'Queens', 'Rosedale', 40.6584068, -73.7389596), location(204, 'Staten Island', 'Rossville/Woodrow', 40.5434385, -74.19764409999999), location(205, 'Queens', 'Saint Albans', 40.6895283, -73.76436880000001), location(206, 'Staten Island', 'Saint George/New Brighton', 40.6404369, -74.090226), location(207, 'Queens', 'Saint Michaels Cemetery/Woodside', 40.7646761, -73.89850419999999), location(208, 'Bronx', 'Schuylerville/Edgewater Park', 40.8235967, -73.81029269999999), location(209, 'Manhattan', 'Seaport', 40.70722629999999, -74.0027431), location(210, 'Brooklyn', 'Sheepshead Bay', 40.5953955, -73.94575379999999), location(211, 'Manhattan', 'SoHo', 40.723301, -74.0029883), location(212, 'Bronx', 'Soundview/Bruckner', 40.8247566, -73.8710929), location(213, 'Bronx', 'Soundview/Castle Hill', 40.8176831, -73.8507279), location(214, 'Staten Island', 'South Beach/Dongan Hills', 40.5903824, -74.06680759999999), location(215, 'Queens', 'South Jamaica', 40.6808594, -73.7919103), location(216, 'Queens', 'South Ozone Park', 40.6764003, -73.8124984), location(217, 'Brooklyn', 'South Williamsburg', 40.7043921, -73.9565551), location(218, 'Queens', 'Springfield Gardens North', 40.6715916, -73.779798), location(219, 'Queens', 'Springfield Gardens South', 40.6715916, -73.779798), location(220, 'Bronx', 'Spuyten Duyvil/Kingsbridge', 40.8833912, -73.9051185), location(221, 'Staten Island', 'Stapleton', 40.6264929, -74.07764139999999), location(222, 'Brooklyn', 'Starrett City', 40.6484272, -73.88236119999999), location(223, 'Queens', 'Steinway', 40.7745459, -73.9037477), location(224, 'Manhattan', 'Stuy Town/Peter Cooper Village', 40.7316903, -73.9778494), location(225, 'Brooklyn', 'Stuyvesant Heights', 40.6824166, -73.9319933), location(226, 'Queens', 'Sunnyside', 40.7432759, -73.9196324), location(227, 'Brooklyn', 'Sunset Park East', 40.65272, -74.00933479999999), location(228, 'Brooklyn', 'Sunset Park West', 40.65272, -74.00933479999999), location(229, 'Manhattan', 'Sutton Place/Turtle Bay North', 40.7576281, -73.961698), location(230, 'Manhattan', 'Times Sq/Theatre District', 40.759011, -73.9844722), location(231, 'Manhattan', 'TriBeCa/Civic Center', 40.71625299999999, -74.0122396), location(232, 'Manhattan', 'Two Bridges/Seward Park', 40.7149056, -73.98924699999999), location(233, 'Manhattan', 'UN/Turtle Bay South', 40.7571432, -73.9718815), location(234, 'Manhattan', 'Union Sq', 40.7358633, -73.9910835), location(235, 'Bronx', 'University Heights/Morris Heights', 40.8540855, -73.9198498), location(236, 'Manhattan', 'Upper East Side North', 40.7600931, -73.9598414), location(237, 'Manhattan', 'Upper East Side South', 40.7735649, -73.9565551), location(238, 'Manhattan', 'Upper West Side North', 40.7870106, -73.9753676), location(239, 'Manhattan', 'Upper West Side South', 40.7870106, -73.9753676), location(240, 'Bronx', 'Van Cortlandt Park', 40.8972233, -73.8860668), location(241, 'Bronx', 'Van Cortlandt Village', 40.8837203, -73.89313899999999), location(242, 'Bronx', 'Van Nest/Morris Park', 40.8459682, -73.8625946), location(243, 'Manhattan', 'Washington Heights North', 40.852476, -73.9342996), location(244, 'Manhattan', 'Washington Heights South', 40.8417082, -73.9393554), location(245, 'Staten Island', 'West Brighton', 40.6270298, -74.10931409999999), location(246, 'Manhattan', 'West Chelsea/Hudson Yards', 40.7542535, -74.0023331), location(247, 'Bronx', 'West Concourse', 40.8316761, -73.9227554), location(248, 'Bronx', 'West Farms/Bronx River', 40.8430609, -73.8816001), location(249, 'Manhattan', 'West Village', 40.73468, -74.0047554), location(250, 'Bronx', 'Westchester Village/Unionport', 40.8340447, -73.8531349), location(251, 'Staten Island', 'Westerleigh', 40.616296, -74.1386767), location(252, 'Queens', 'Whitestone', 40.7920449, -73.8095574), location(253, 'Queens', 'Willets Point', 40.7606911, -73.840436), location(254, 'Bronx', 'Williamsbridge/Olinville', 40.8787602, -73.85283559999999), location(255, 'Brooklyn', 'Williamsburg (North Side)', 40.71492, -73.9528472), location(256, 'Brooklyn', 'Williamsburg (South Side)', 40.70824229999999, -73.9571487), location(257, 'Brooklyn', 'Windsor Terrace', 40.6539346, -73.9756567), location(258, 'Queens', 'Woodhaven', 40.6901366, -73.8566087), location(259, 'Bronx', 'Woodlawn/Wakefield', 40.8955885, -73.8627133), location(260, 'Queens', 'Woodside', 40.7532952, -73.9068973), location(261, 'Manhattan', 'World Trade Center', 40.7118011, -74.0131196), location(262, 'Manhattan', 'Yorkville East', 40.7762231, -73.94920789999999), location(263, 'Manhattan', 'Yorkville West', 40.7762231, -73.94920789999999)] |
# By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.
#
# What is the 10 001st prime number?
primes = []
for i in range(2, 100):
if len(primes) == 10001:
break
x = list(map(lambda y: i % y == 0, range(2,i)))
if sum(x) == False:
primes.append(i)
print(i)
print(primes[-1] , "Len: ", len(primes))
# x = list(map(lambda y: i % y == 0, range(2,i)))
| primes = []
for i in range(2, 100):
if len(primes) == 10001:
break
x = list(map(lambda y: i % y == 0, range(2, i)))
if sum(x) == False:
primes.append(i)
print(i)
print(primes[-1], 'Len: ', len(primes)) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.