content
stringlengths 7
1.05M
|
---|
"""
Module for KeywordsADT, a custom ADT in this project. You can read more about it
in the Wiki page on our GitHub profile.
"""
class KeywordsADT:
"""
This class represents all Keywords in list
"""
def _check(self, word):
"""
Check if somebody already uses this word.
:param word: str
:return: bool
"""
raise NotImplementedError("_check Function Error")
def add(self, word):
"""
Add word end db and class
:param word: str
:return: None
"""
raise NotImplementedError("add Function Error")
def __getitem__(self, item):
"""
Get word from keylist
:param item: str
:return: word
"""
raise NotImplementedError("__getitem__ Function Error")
def add_new_link(self, text, link):
"""
Add new link end all words
:param text: str
:param link: str
:return: None
"""
raise NotImplementedError("add_new_link Function Error")
def __str__(self):
"""
String representation of keywords.
:return: str
"""
raise NotImplementedError("__str__ Function Error")
def push_changes(self):
raise NotImplementedError("push_changes Function Error")
def clean_changes(self):
raise NotImplementedError("clean_changes Function Error")
|
def add(x, y):
total = x + y
return total
print(add(5, 10))
def add(x, y=3):
total = x + y
return total
print(add(5))
print(add(5, 7))
print(add(x=2))
print(add(x=8, y=4))
print(1, 2, 3, 4, 5)
print(1, 2, 3, 4, 5, sep=' - ')
# The default value is stored at the definition of the function
# as shown in the following example
default_y = 3
def add(x, y=default_y):
total = x + y
print(total)
add(6)
# When the value of the variable is changed, the output is the same
default_y = 25
add(6)
|
matrix = [[0, 0, 0], [0, 0, 0], [0, 0, 0]]
spar = mai = scol = 0
for l in range(0, 3):
for c in range(0, 3):
matrix[l][c] = int(input(f'Digite um valor para [{l}, {c}]: '))
print('-=' * 15)
for l in range(0, 3):
for c in range(0, 3):
print(f'[{matrix[l][c]:^5}] ', end='')
if matrix[l][c] % 2 == 0:
spar += matrix[l][c]
print()
print('-=' * 15)
print(f'A soma dos valores pares é {spar}.')
for l in range(0, 3):
scol += matrix[l][2]
print(f'A soma dos valores da terceira coluna é {scol}.')
for c in range(0, 3):
if c == 0:
mai = matrix[1][c]
elif matrix[1][c] > mai:
mai = matrix[1][c]
print(f'O maior valor da segunda linha é {mai}.')
|
a=int(input("Enter the first term of the GP: "))
r=int(input("Enter the common ratio: "))
n=int(input("Enter the number of terms: "))
sum=0
product=1
for i in range(n):
term=a*pow(r,i)
sum=sum+term
product=product*term
print("Sum of",n,"terms=",sum)
print("Product of",n,"terms=",product)
|
"""Various utils dealing with classes."""
def overrides_method(method_name, obj, base):
"""
Return True if the named base class method is overridden by obj.
Parameters
----------
method_name : str
Name of the method to search for.
obj : object
An object that is assumed to inherit from base.
base : class
The base class that contains the base version of the named
method.
Returns
-------
bool
True if the named base clas is overridden by the given obj, otherwise
False.
"""
for klass in obj.__class__.__mro__:
if method_name in klass.__dict__:
return klass is not base
return False
|
def get_starting_params():
num_players = int(input("Enter Number of Players : ")) # it takes user input
deck_size = 48
if num_players == 2:
hand_size = 10
points_threshold = 5
number_starting_common_cards = 8
elif num_players == 3:
hand_size = 8
points_threshold = 3
number_starting_common_cards = 6
elif num_players == 4:
hand_size = 5
points_threshold = 3
number_starting_common_cards = 8
else:
print("Unacceptable number of players")
get_starting_params()
|
class Benchmark:
@classmethod
def get_train_tasks(cls, sample_all=False):
return cls(env_type='train', sample_all=sample_all)
@classmethod
def get_test_tasks(cls, sample_all=False):
return cls(env_type='test', sample_all=sample_all)
|
def includeme(config):
# settings = config.registry.settings
config.add_route('processes', '/processes')
config.add_route('processes_list', '/processes/list')
config.add_route('processes_execute', '/processes/execute')
config.include('phoenix.processes.views.actions')
|
class ColumnStyle(TableLayoutStyle):
"""
Represents the look and feel of a column in a table layout.
ColumnStyle(sizeType: SizeType,width: Single)
ColumnStyle()
ColumnStyle(sizeType: SizeType)
"""
@staticmethod
def __new__(self,sizeType=None,width=None):
"""
__new__(cls: type)
__new__(cls: type,sizeType: SizeType)
__new__(cls: type,sizeType: SizeType,width: Single)
"""
pass
Width=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Gets or sets the width value for a column.
Get: Width(self: ColumnStyle) -> Single
Set: Width(self: ColumnStyle)=value
"""
|
special_sum = 0
n_minus_1 = n_minus_2 = 1
fib_n = 0
while fib_n < 1000000:
fib_n, n_minus_1, n_minus_2 = n_minus_1, n_minus_2, n_minus_1 + n_minus_2
if fib_n % 2 == 0: special_sum += fib_n
print(special_sum)
|
test = { 'name': 'q0_1',
'points': 1,
'suites': [ { 'cases': [ {'code': ">>> flavor_count.labels == ('Flavor', 'count')\nTrue", 'hidden': False, 'locked': False},
{'code': '>>> flavor_count.take(0).column("count").item(0) == 4\nTrue', 'hidden': False, 'locked': False},
{'code': '>>> flavor_count.take(1).column("count").item(0) == flavor_count.take(2).column("count").item(0)\nTrue', 'hidden': False, 'locked': False}],
'scored': True,
'setup': '',
'teardown': '',
'type': 'doctest'}]}
|
EXPECTED_TOKEN = "eyJhbGciOiJSUzI1NiIsImtpZCI6Ijk0OTRhZDc1LTNmNTQtNDE1NS04NGZhLWMxYTE3ZGEyMmIzNSIsInR5cCI6IkpXVCJ9.eyJhbGxvdyI6eyIqIjoiKiJ9LCJkZW55Ijp7fX0.nDqCxO2Q1iXpxzbH7syxuyqw7kCY0sDfi9RX-VSUMTRN5aWTLt1bcPw4oN_jx89-YHBzDwnwBc07RsMgpFuo4zz2LU9PF0ciYxMNX-atTNsaIn05NkXT08au2AYb0DRCDS76MZ4QNi-4mRpLrj1SD4mSCwGtc2WNw9f0J0Vm4ZCYPVW6BqpcHcaFXzcFZ6EIoooaK6GvdTOjy498lWsAXjAen2U6Jles_BwFjqW1lW_ky4WV4J9NnK3v5wWKgR1Pg4R4LpnhIXe0dU_l64JHoJA3YcYxl-qilHfoBduc3La4kRKk7FAQDIqbOv4uN03BIoDXLH5t2uJ1Sm79Pe0ngGd5pSBmfUDKOGsHtx_3_9ZKfp-E2IVS0C7r36p4Ue0gKQzn0pXxa591bxm_puJAQ399SdbmlOJsM2cVFYAtlUQvWgErc57WcUJ0Qe4jEycury7hagNbP2fLn-7Gg4gZHiZ_Ul7L6GukbDfCHnhxSS4P3t3cVtWuslZi16hDhNbOTKD95y7PXvHePvI57ALV2v0RecQ5Blwurt1OuDRSjCYXyO6U4Y9MBHcd1wMtDoVW0jjvjXvqkEhuB52Zajh_yTNnJo0OAHpuK5wldVpECGFVx1rkW1ypKqlukGIgD--m6ElKnl6jw5VWSbdh2TJsZHnzjovbQUeqZOeMxwX6SE8"
SAMPLE_PRIVATE_KEY = {
"p": "5Cwk4zIvta07E37iZVlnzqeQX2jV1GaHKSUFtUVeaMVY_FBQ5Yr5ux7bxTKrikSs22QI8z1x6GVuEH3MGeh3qjOyUTfJJyOcS_RVmQxdYwjkxOsN953SWMvPRhkLd-svB8LI4Ylwo1NrlSBJOQqM2xvtoQ7KkEAJquvX_UHkTuMuSCcpuDyp-qUkvgfbSUgvCacmwNf-bXh2kKVM14YKt3el4vYITetyy96jzSLKf6V36AX8PFbSOS7oZbeO3dgfGp0MDcpF0flu8McaSipBXoHbrjtxx0MOJjpU3Fhpy6Q7o7TX3-OC7fKplseHol4dxkRCsiDoyCxjhUzPHShy8Q",
"kty": "RSA",
"q": "1PdEoZDjRNefrOxin6a4HEMnooopdLLbNrTmFcd3k3vIiKKK"
"--8eg0zMQMYNe5QXDsiDuly3GTZkptDC93CxWQfjRftmC9gaz_pmdMhOPncgMfGfJAt0Ic57d023rmoZzBQecGKr_3lFxV29cs8bB1ppGxdIlweCXfvvbTubcU3CUyZrAjZqfXqxj4B78PQ96BIbFBTgtCpvSW0YhaswMMFpRnb8grMDQzkB0pXnq-GiBGc3wWKrWWrQjW5sLklwZUsQJz0GdZbLkHiq2nSM_wera6FgshyHvJFHSa9gpREq5rZdMsERp1C2Dd5h8W2cwohpuWqjQQVYGqSXgbN30Q",
"d": "eYbYTGZ5uklUa2c2LUvbWyRLe8fL3fjFVG87xV76AwxkJZXmn_Mzv0c2F3rbiFjAL"
"-BAWRwK2hrojzWMAztN0u3o13rQh4LasNrz9nPA"
"-jCzIu1JnmBwwNBfY6x2LOOQPlrXI9SBbe94gB4xQUkb8yhzIlWk7jpPzbcKxi19r0SG06UVOEpB6z06cPGOEFrpKpgEaOulYx0H2G1s4vBADQaEFvamN94-sE_PhNjve-HjS3Lz3lhnm0ajFjpLsUqE0dIpeLWmEM3jMU7Zz6c9mI3V2aBUiuNYi9MeUvs9usmbX5krvijfJxDJsxmt1OK3EJSW_kju00hQYRi3jvmKqKnId7bHQSEaXa3FX5FTaardaaCUZSoEl6_WiypxyYg4PHp37HbXnZClBKWZot5lPWHn-Uf-2E2TXdqvysZRfc8NiBVrvVOzQDAkndR-wU3QgL5Efi6vrAFGkb5Ra7WvZ5fjkbQvb5VjKj0kKjJS3__CzLfAp_mQymy6U2wJE_YRxwwavFfaa53YhUdhiYM5P83Tj1UNG48ilVEFIzXWjgjfBMyNsgGF70mINJcc47GUXXh49GeWsHB9DqUMqyEbcVlEr_7tgkVHI7Dko8QlFjlLZRRa-JZApYlcRhaQGni0oUOMELP9ZRtArP3ib8hfdqqcBratNM_BB0bczBAJRQE",
"e": "AQAB",
"kid": "9494ad75-3f54-4155-84fa-c1a17da22b35",
"qi": "znwFS129727wjq6Whq6wfD1cxkLs9hnS7"
"-cEbZ8k_p7gE2vXucaK_AN1hIeU6HAGHgoP1RH7rUMN8"
"-YzxfAsj8X0g0u8Qte7evf7jaj4YqPDGy7dTTA2ALLcWAD"
"-djrDAU40ZJXnzM6hIIPbn_uMXAB5W0q_icV5xoIwxJog4ReUle0qMRS0iQCNocPBHydWt0zP"
"-Cqz9MIPd0ctNEf8E55Go90_yAWibQlo4PgLF48UI5BG0NhmPa1nI9Kpt36TwAoyKwscGysSgPGNxgzj4t2PxatXO7Xm47dfNi_yhBSHq9TNcw2laMs9e77G9gluTAOPqYC06zRC7Rr3m9lXOA",
"dp": "Z_3KjhW4ctfR_e"
"-tZT2bNy9deG6CTjywS0tJT7We8qdHCC_evs9ZRDQrO7P9RJZKJe9wuNN_T8iyoieDVyeBKnxHQAbp0cHEIUXpoUhmY5WRFkJ-6iTu0nOJM0yE0pHIrIPVJB2MzZNei-fcF3g8fDw9UFM6dQYKofC9TvqyAFZAKLhYplRXsBmGJmnUQpD4hzC8U9Xdaq0ldIUyAWRhC_8nBsrVPBYcCtic1QiPPCABByl7LVDwnQlI99rx7R_sBSggb0SKD8ncCzbjP3wEsPsEUWNcVtGz6C5bsNVG2n4uhE0OukapzKL1MfgcVB8K-Orxbtfa4CiC7yTznDlsMQ",
"dq": "Pl5f-hUNiea_"
"-4uK4oiX2KcOH3ro4yVSL7ZQv8YXzdhthR5dJ6UCwZ8nHj0iS7O2AP1WHqjycm7MkVIIFyEovxMhSyhx3TwfthL2GHNk_sQyaI4DdjHog9INtIXNKkYmYe7ubylmh74DYeavCcV_e-rNZ0KtXpWzZ0TV_J59SnRkWaehpRc8npzlDUqqgYl169YJmhr3J6xZxR4vFU5qIY0zAJDuKHS2muRCFWMTYvIEWdfEq1zzI4-1ngXdpryZLwEJrQQhNSTBXwEHwExr0nBzkmTDhcX3NpExWHIFErJxZvm3V5rVSbPIbU1YT7UzOIFsvQFu6Cbhg4P6XuCpUQ",
"n": "vdDyT3d33_NmNKBsF4OjIjtOsyOMrH8xhL9C8Jx6yvPcHNWkBHorIEyp7CcKp2gCo7jch6TlkH483cEwhw1GyyfrMPKh4P1uwNHpFI2eEDPqw_wyORVIIT8FPb_QhDxV5GFiWWecr_0DWNf9murqa_T7p5YUK3XVIhewFPDf0iHsV87OJLB8AoIsUfOCym5tvskTuxsMaIpYJZETe7upE_Xg-nVhyXhpFAJEw7RlYebrSEtoFpN6TwYuxutocZ4jNLn1x5t-YHWnyLYUIxN5_fuuzVGIAleY9T3WJXurYGnCUwQjgT7OvqM2K_xej0vFOp_P5C2YSxBX0SZG2322gDQiEqz7G2BCZ7I3PA4XVWV0KENwhxgz5GS7zjuZPIWm4oKwBRlYluTdWpc7A9w7LRs3tCJl6t_ReTlblnT9Dq7l5Na36IBOpesY77apE4BFlFdJZvhF_qrkHEQwo4ckOGrFlG8M3iV8UclHvVzBOPTi-sZoOOiytuSKbn5HikB2CV7k0GIfAJS6Q-RUHSYVFEH7IfmbvE0YkwglDggJWIfwtZG8IVuOFZunmWrYaKdMAvIJQjjv7oAwqrRD6HlXAPGHiTb_BRVaYqOD8ugjZ9ZO2tags12QyMOJq8XQ1mjegp0F-MNKlp_zff5xJbKETu2VUDFQmBqU6gLw_2r23cE",
}
SAMPLE_PUBLIC_KEY = {
"kty": "RSA",
"e": "AQAB",
"kid": "9494ad75-3f54-4155-84fa-c1a17da22b35",
"n": "vdDyT3d33_NmNKBsF4OjIjtOsyOMrH8xhL9C8Jx6yvPcHNWkBHorIEyp7CcKp2gCo7jch6TlkH483cEwhw1GyyfrMPKh4P1uwNHpFI2eEDPqw_wyORVIIT8FPb_QhDxV5GFiWWecr_0DWNf9murqa_T7p5YUK3XVIhewFPDf0iHsV87OJLB8AoIsUfOCym5tvskTuxsMaIpYJZETe7upE_Xg-nVhyXhpFAJEw7RlYebrSEtoFpN6TwYuxutocZ4jNLn1x5t-YHWnyLYUIxN5_fuuzVGIAleY9T3WJXurYGnCUwQjgT7OvqM2K_xej0vFOp_P5C2YSxBX0SZG2322gDQiEqz7G2BCZ7I3PA4XVWV0KENwhxgz5GS7zjuZPIWm4oKwBRlYluTdWpc7A9w7LRs3tCJl6t_ReTlblnT9Dq7l5Na36IBOpesY77apE4BFlFdJZvhF_qrkHEQwo4ckOGrFlG8M3iV8UclHvVzBOPTi-sZoOOiytuSKbn5HikB2CV7k0GIfAJS6Q-RUHSYVFEH7IfmbvE0YkwglDggJWIfwtZG8IVuOFZunmWrYaKdMAvIJQjjv7oAwqrRD6HlXAPGHiTb_BRVaYqOD8ugjZ9ZO2tags12QyMOJq8XQ1mjegp0F-MNKlp_zff5xJbKETu2VUDFQmBqU6gLw_2r23cE",
}
|
# Copyright 2020 The Maritime Whale Authors. All rights reserved.
# Use of this source code is governed by an MIT-style license that can be
# found in the LICENSE.txt file.
#
# Handles log writing.
def log(filename, msg):
"""Append message to specified logfile."""
f = open(filename, "a")
f.write(msg + "\n")
f.close()
|
# Floyed Loop
# Double linked List definition
class DListNode(object):
def __init__(self):
# self.value = x
self.next = None
self.prev = None
class Floyed(object):
def __init__(self):
self.head = None
# super(Floyed, self).__init__()
self.slow = DListNode()
self.fast = DListNode()
self.slow = self.head
self.fast = self.head
def isLoop( self):
loopExist = False
# fast node is 2 steps ahead
while self.slow.next and self.fast.next.next:
self.slow = self.slow.next
self.fast = self.fast.next.next
if self.low == self.fast:
loopExist = True
break
if self.fast.next == self.head:
break
return loopExist
def findLoopHead(self):
if self.isLoop():
self.slow = self.head
while self.slow != self.fast:
self.slow = self.slow.next
self.fast = self.fast.next
# return Loop head
return self.slow
else:
return print('No loop exists!')
|
#!/usr/bin/env python
"""
__init__
Module containing methods for daemonizing
applications.
"""
|
def parse_app_id(app_id, method):
if app_id is not None and "/" in app_id:
# This is the normal case - narrative methods
app_id_parts = app_id.split("/")
app_type = "narrative"
elif method is not None:
# Here we use the method for non-narrative methods.
app_id_parts = method.split(".")
app_type = "other"
else:
return None
if len(app_id_parts) != 2:
# Strange but true.
if len(app_id_parts) == 3:
if len(app_id_parts[2]) == 0:
# Some have a / at the end
module_name, function_name, xtra = app_id_parts
id = "/".join([module_name, function_name])
app = {
"id": id,
"module_name": module_name,
"function_name": function_name,
"type": app_type,
}
else:
app = None
else:
app = None
else:
# normal case
module_name, function_name = app_id_parts
app = {
"id": "/".join(app_id_parts),
"module_name": module_name,
"function_name": function_name,
"type": app_type,
}
return app
|
filename = 'test.txt'
filehandle = open('test.txt')
row = 1
filelist = list()
for item in filehandle:
print(item)
if item.startswith('4'):
item = item.strip()
item = int(item)
if item == row:
filelist.append(item)
row = row + 1
else:
print(filelist)
break
|
a = 0
b = 67 # 1
c = b # 2
d = 0
e = 0
f = 0
g = 0
h = 0
# count the number of mul
# smoke test for asm translation correctness
count = 0
# jumps > 0: if-else
# jumps < 0: do-while
if a != 0: # 2, 5
b *= 100 # 5
b += 100000 # 6
c = b # 7
c += 17000 # 8
while True: # 32
f = 1 # 9 - flag register
d = 2 # 10
outer_g = True
while outer_g: # 15, 20
e = 2 # 11
#print("outer")
inner_g = True
while inner_g:
#print("inner")
g = d # 12
g *= e # 13
count += 1
g -= b # 14
if g == 0: # 15
f = 0 # 16
e += 1 # 17
g = e # 18
g -= b # 19
if g == 0: # 20
# The while loop reduces to testing
# if b == e * d
inner_g = False
d += 1 # 21
g = d # 22
g -= b # 23
if g == 0: # 24
outer_g = False
if f == 0: # 25
h += 1 # 26
g = b # 27
g -= c # 28
if g == 0: # 29
break # 30 - jump out
b -= 17 # 31
## part 1
print(count)
## part 2
## same complexiy to of the original asm
c = 123700
h = 0
for b in range(106700, c+1, 17):
f = 1
for d in range(2, b+1):
for e in range(2, b+1):
if b == e * d:
f = 0
if f == 0:
h += 1
print(h)
|
#Create a histogram from a given list of integers
def histogram( items ):
for n in items:
output = ''
times = n
while( times > 0 ):
output += ' @ '
times = times - 1
print(output)
histogram([2, 3, 6, 5])
|
# coding=utf-8
#
# for using a COCO model to finetuning with DIVA data.
targetClass1to1 = {
"Vehicle":"car",
"Person":"person",
"Parking_Meter":"parking meter",
"Tree":"potted plant",
"Other":None,
"Trees":"potted plant",
"Construction_Barrier":None,
"Door":None,
"Dumpster":None,
"Push_Pulled_Object":"suitcase", # should be a dolly
"Construction_Vehicle":"truck",
"Prop":"handbag",
"Bike":'bicycle',
"Animal":'dog',
"Articulated_Infrastructure":None,
}
""" # the number of bbox in DIVA training set
Vehicle:3618465
Person:809684
Tree:686551
Other:303851
Trees:227180
Construction_Barrier:146712
Parking_Meter:103627
Door:81362
Dumpster:68441
Push_Pulled_Object:44788
Construction_Vehicle:16981
Prop:14441
Bike:13031
Animal:4055
"""
targetClass2id = {
"BG":0,
"Vehicle":1,
"Person":2,
"Parking_Meter":3,
"Tree":4,
"Other":5,
"Trees":6,
"Construction_Barrier":7,
"Door":8,
"Dumpster":9,
"Push_Pulled_Object":10,
"Construction_Vehicle":11,
"Prop":12,
"Bike":13,
"Animal":14,
"Articulated_Infrastructure":15,
}
targetClass2id_new = {
"BG":0,
"Vehicle":1,
"Person":2,
"Parking_Meter":3,
"Tree":4,
"Skateboard":5,
"Prop_Overshoulder":6,
"Construction_Barrier":7,
"Door":8,
"Dumpster":9,
"Push_Pulled_Object":10,
"Construction_Vehicle":11,
"Prop":12,
"Bike":13,
"Animal":14,
# person-object classes
"Bike_Person":15,
"Prop_Person": 16,
"Skateboard_Person": 17,
'Prop_Overshoulder_Person': 18
}
targetClass2id_new_nopo = {
"BG":0,
"Vehicle":1,
"Person":2,
"Parking_Meter":3,
"Tree":4,
"Skateboard":5,
"Prop_Overshoulder":6,
"Construction_Barrier":7,
"Door":8,
"Dumpster":9,
"Push_Pulled_Object":10,
"Construction_Vehicle":11,
"Prop":12,
"Bike":13,
"Animal":14,
}
targetClass2id_mergeProp = {
"BG":0,
"Vehicle":1,
"Person":2,
"Parking_Meter":3,
"Tree":4,
"Other":5,
"Trees":6,
"Construction_Barrier":7,
"Door":8,
"Dumpster":9,
"Push_Pulled_Object":10,
"Construction_Vehicle":11,
"Prop":12,
"Bike":13,
"Animal":14,
"Articulated_Infrastructure":15,
"Prop_plus_Push_Pulled_Object":16,
}
# original ratio [h/w] (0.5,1.0,2.0)
# tall: (1.0,2.0,3.0,4.0)
targetClass2id_tall = {
"BG":0,
"Person":1,
"Parking_Meter":2,
"Tree":3,
"Other":4,
"Trees":5,
"Door":6,
}
# wide: (0.3,0.6,1.0,1.5)
targetClass2id_wide = {
"BG":0,
"Vehicle":1,
"Prop":2,
"Push_Pulled_Object":3,
"Bike":4,
"Construction_Barrier":5,
"Dumpster":6,
"Construction_Vehicle":7,
"Animal":8,
}
# wide: (0.3,0.6,1.0,1.5)
targetClass2id_wide_v2 = {
"BG":0,
"Prop":1,
"Push_Pulled_Object":2,
"Bike":3,
"Construction_Barrier":4,
"Dumpster":5,
"Construction_Vehicle":6,
"Animal":7,
}
targetAct2id = {
"BG":0,
"activity_walking": 1,
"vehicle_moving": 2,
"activity_standing": 3,
"vehicle_stopping": 4,
"activity_carrying": 5,
"vehicle_starting": 6,
"vehicle_turning_right": 7,
"vehicle_turning_left": 8,
"activity_gesturing": 9,
"Closing": 10,
"Opening": 11,
"Interacts": 12,
"Exiting": 13,
"Entering": 14, # 3, 0.014
"Talking": 15, # (4, '0.045'), (3, '0.224')
"Transport_HeavyCarry": 16, # (3, '0.156')
"Unloading": 17, # (4, '0.250'), (2, '0.273'), (3, '0.477')
"Pull": 18,
"Loading": 19, # (4, '0.132'), (2, '0.342'), (3, '0.526')
"Open_Trunk": 20, # (3, '0.114')
"Closing_Trunk": 21, # (3, '0.194')
"Riding": 22,
"specialized_texting_phone": 23,
"Person_Person_Interaction": 24,
"specialized_talking_phone": 25,
"activity_running": 26,
#"specialized_miscellaneous": 0,
"vehicle_u_turn": 27,
"PickUp": 28, # [(3, '0.364'), (2, '0.636')]
"specialized_using_tool": 29,
#"SetDown": 2, # [(4, '0.100'), (3, '0.400'), (2, '0.500')]
"activity_crouching": 30,
"activity_sitting": 31,
"Object_Transfer": 32, #[(2, '0.375'), (3, '0.625')]
"Push": 33,
"PickUp_Person_Vehicle": 34,
#"Misc": 0,
"DropOff_Person_Vehicle": 35,
#"Drop": 0,
#"specialized_umbrella":0,
}
targetAct2id_wide = {
"BG":0,
#"vehicle_moving": 2,
#"vehicle_stopping": 4,
#"vehicle_starting": 6,
"vehicle_turning_right": 1,
"vehicle_turning_left": 2,
"Closing": 3,
"Opening": 4,
"Interacts": 5,
"Exiting": 6,
"Entering": 7, # 3, 0.014
"Talking": 8, # (4, '0.045'), (3, '0.224')
"Unloading": 9, # (4, '0.250'), (2, '0.273'), (3, '0.477')
"Pull": 10,
"Loading": 11, # (4, '0.132'), (2, '0.342'), (3, '0.526')
"Open_Trunk": 12, # (3, '0.114')
"Closing_Trunk": 13, # (3, '0.194')
"Person_Person_Interaction": 14,
"vehicle_u_turn": 15,
"specialized_using_tool": 16,
"activity_crouching": 17,
"activity_sitting": 18,
"Object_Transfer": 19, #[(2, '0.375'), (3, '0.625')]
"Push": 20,
"PickUp_Person_Vehicle": 21,
"DropOff_Person_Vehicle": 22,
}
targetAct2id_tall = {
"BG":0,
"activity_walking": 1,
#"activity_standing": 3,
"activity_carrying": 2,
"activity_gesturing": 3,
"Transport_HeavyCarry": 4, # (3, '0.156')
"Riding": 5,
"specialized_texting_phone": 6,
"specialized_talking_phone": 7,
"activity_running": 8,
"PickUp": 9, # [(3, '0.364'), (2, '0.636')]
}
# for single box act, here we use all
targetSingleAct2id = {
"BG":0,
"activity_walking": 1,
"vehicle_moving": 2,
"activity_standing": 3,
"vehicle_stopping": 4,
"activity_carrying": 5,
"vehicle_starting": 6,
"vehicle_turning_right": 7,
"vehicle_turning_left": 8,
"activity_gesturing": 9,
"Closing": 10,
"Opening": 11,
"Interacts": 12,
"Exiting": 13,
"Entering": 14, # 3, 0.014
"Talking": 15, # (4, '0.045'), (3, '0.224')
"Transport_HeavyCarry": 16, # (3, '0.156')
"Unloading": 17, # (4, '0.250'), (2, '0.273'), (3, '0.477')
"Pull": 18,
"Loading": 19, # (4, '0.132'), (2, '0.342'), (3, '0.526')
"Open_Trunk": 20, # (3, '0.114')
"Closing_Trunk": 21, # (3, '0.194')
"Riding": 22,
"specialized_texting_phone": 23,
"Person_Person_Interaction": 24,
"specialized_talking_phone": 25,
"activity_running": 26,
#"specialized_miscellaneous": 0,
"vehicle_u_turn": 27,
"PickUp": 28, # [(3, '0.364'), (2, '0.636')]
"specialized_using_tool": 29,
#"SetDown": 2, # [(4, '0.100'), (3, '0.400'), (2, '0.500')]
"activity_crouching": 30,
"activity_sitting": 31,
"Object_Transfer": 32, #[(2, '0.375'), (3, '0.625')]
"Push": 33,
"PickUp_Person_Vehicle": 34,
#"Misc": 0,
"DropOff_Person_Vehicle": 35,
#"Drop": 0,
#"specialized_umbrella":0,
}
targetPairAct2id = {
"BG":0,
"Closing": 1,
"Opening": 2,
"Interacts": 3,
"Exiting": 4,
"Entering": 5, # 3, 0.014
"Talking": 6, # (4, '0.045'), (3, '0.224')
"Transport_HeavyCarry": 7, # (3, '0.156')
"Unloading": 8, # (4, '0.250'), (2, '0.273'), (3, '0.477')
"Pull": 9,
"Loading": 10, # (4, '0.132'), (2, '0.342'), (3, '0.526')
"Open_Trunk": 11, # (3, '0.114')
"Closing_Trunk": 12, # (3, '0.194')
"Riding": 13,
"Person_Person_Interaction": 14,
"PickUp": 15, # [(3, '0.364'), (2, '0.636')]
"SetDown": 16, # [(4, '0.100'), (3, '0.400'), (2, '0.500')]
"Object_Transfer": 17, #[(2, '0.375'), (3, '0.625')]
"Push": 18,
"PickUp_Person_Vehicle": 19,
"DropOff_Person_Vehicle": 20,
}
targetAct2id_19 = {
"BG":0,
"activity_carrying": 1,
"vehicle_turning_right": 2,
"vehicle_turning_left": 3,
"Closing": 4,
"Opening": 5,
"Interacts": 6,
"Exiting": 7,
"Entering": 8, # 3, 0.014
"Talking": 9, # (4, '0.045'), (3, '0.224')
"Transport_HeavyCarry": 10, # (3, '0.156')
"Unloading": 11, # (4, '0.250'), (2, '0.273'), (3, '0.477')
"Pull": 12,
"Loading": 13, # (4, '0.132'), (2, '0.342'), (3, '0.526')
"Open_Trunk": 14, # (3, '0.114')
"Closing_Trunk": 15, # (3, '0.194')
"Riding": 16,
"specialized_texting_phone": 17,
"specialized_talking_phone": 18,
"vehicle_u_turn": 19,
}
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Oct 5 22:50:19 2020
@author: xg7
"""
def convert_to_Roman_numeral(A):
# can be improved
rome_dict = {(2**(num//2))*(5**(num//2 + num%2)): lett for num, lett in enumerate('IVXLCDMGH')}
res = ''
for num, ln in enumerate(map(int, str(A)), 1):
div = 10**(len(str(A)) - num)
k = ln//5
ln %= 5
if ln <= 3:
res += (rome_dict[div*5]*k + rome_dict[div] * ln)
else:
res += (rome_dict[div] + rome_dict[div*5*(k+1)])
return res
##test
if __name__ == "__main__":
n = 1800
print(convert_to_Roman_numeral(n))
|
# Write a short Python function, is even(k), that takes an integer value and
# returns True if k is even, and False otherwise. However, your function
# cannot use the multiplication, modulo, or division operators
def is_even(k):
even_nums = [0, 2, 4, 6, 8]
string_k = str(k)
string_list = [c for c in string_k]
last_number = string_list[-1] if len(string_list) > 1 else string_list[0]
print(k)
try:
even_nums.index(int(last_number))
return True
except ValueError:
return False
print(is_even(4))
print(is_even(1))
print(is_even(2))
print(is_even(12190032890))
print(is_even(10000))
print(is_even(54759))
print(is_even(98))
print(is_even(66))
print(is_even(-29579482))
print(is_even(-222266))
|
'''
Faça um programa que tenha uma função chamada “escreva()”,
que recebe um texto qualquer como parâmetro e mostre uma mensagem com tamanho variável.
'''
def escreva(palavra):
print('~' * n)
print(f' {palavra}')
print('~' * n)
palavra = str(input('Digite algo: '))
n = len(palavra) + 4
escreva(palavra)
|
"""Crie um programa que tenha uma tupla única com nomes de produtos e seus respectivos preços, na sequencia.
No final, mostre uma listagem de preços, organizando os dados m forma tabular."""
produtos = ('Acucar', '8,60', 'Feijão', '10,20', 'Arroz', '19,00', 'Macarrão', '6,50', 'Nescal', '11,90',
'Detergente', '3,40', 'Molho de tomate', '1,99')
print('*' * 40)
print('{:-^40}'.format('LISTA DE PREÇO'))
print('*' * 40)
for pos in range(0, len(produtos)):
if pos % 2 == 0:
print(f'{produtos[pos]:.<30}', end='R$ ')
elif pos % 2 == 1:
print(f'{produtos[pos]:30}')
print('*' * 40)
|
#Exercício Python 022: Crie um programa que leia o nome completo de uma pessoa e mostre:
#– O nome com todas as letras maiúsculas e minúsculas;
#– Quantas letras ao todo (sem considerar espaços);
#– Quantas letras tem o primeiro nome.
n = str(input('Digite seu nome! ')).strip()
frase = n
div = frase.split()
#div2 = div[0]
print('Seu nome com todas as letras maiusculas {}'.format(frase.upper()))
print('Seu nome com todas as letras minusculas {}'.format(frase.lower()))
print('Total de letras sem espaço é: ', (len(frase) - frase.count(' ')))
print('O total de letras no primeiro nome é: ', (len(div[0])))
|
numb1 = int(input('Digite um valor: '))
numb2 = int(input("Digite outro valor: "))
tot = numb1 + numb2
print('A soma entre {} e {} é igual a {}'.format(numb1, numb2, tot))
print('''
A soma entre {} e {} é igual a: {}.
'''.format(numb1, numb2, tot))
|
# Sample Test passing with nose and pytest
def test_pass():
assert True, "Sample test"
|
class Solution:
def pathSum(self, root: TreeNode, sum: int) -> List[List[int]]:
ans = []
def dfs(root: TreeNode, sum: int, path: List[int]) -> None:
if root is None:
return
if root.val == sum and root.left is None and root.right is None:
ans.append(path + [root.val])
return
dfs(root.left, sum - root.val, path + [root.val])
dfs(root.right, sum - root.val, path + [root.val])
dfs(root, sum, [])
return ans
|
"""API endpoints."""
API_BASE = "https://osu.ppy.sh/api"
USER = API_BASE + "/get_user"
USER_BEST = API_BASE + "/get_user_best"
USER_RECENT = API_BASE + "/get_user_recent"
SCORES = API_BASE + "/get_scores"
BEATMAPS = API_BASE + "/get_beatmaps"
MATCH = API_BASE + "/get_match"
|
class Address:
def __init__(self, street, city, pincode) -> None:
self.street = street
self.city = city
self.pincode = pincode
class Student:
def __init__(self,name, email, street, city, pincode) -> None:
self.name = name
self.email = email
self.address = Address(street,city, pincode)
class Faculty:
def __init__(self,name, email, street, city, pincode) -> None:
self.name = name
self.email = email
self.address = Address(street,city, pincode)
|
h , m = map(int, input().split())
if m < 45 :
if h==0:
h = 23
else:
h-=1
m += 15
else:
m -= 45
print(h,m)
|
text = """
//------------------------------------------------------------------------------
// Explict instantiation.
//------------------------------------------------------------------------------
#include "SolidSPHHydroBase.cc"
#include "SolidSPHEvaluateDerivatives.cc"
#include "Geometry/Dimension.hh"
namespace Spheral {
template class SolidSPHHydroBase< Dim< %(ndim)s > >;
}
"""
|
"""
1. Clarification
2. Possible solutions
- Bit Manipulation, Maths
3. Coding
4. Tests
"""
# T=O(1), S=O(1)
class Solution:
def getSum(self, a: int, b: int) -> int:
mask = 0xffffffff
while b & mask != 0:
carry = (a & b) << 1
a = a ^ b
b = carry
return a & mask if b > mask else a
|
# pyfc4
# version info
__version_info__ = ('0', '1')
__version__ = '.'.join(__version_info__)
|
CONTRACT_RECEIVE_FUNCTION_SOURCE = '''
pragma solidity ^0.6.0;
contract Receive {
string text;
fallback() external payable {
text = 'fallback';
}
receive() external payable {
text = 'receive';
}
function getText() public view returns (string memory) {
return text;
}
function setText(string memory new_text) public returns (string memory) {
return text = new_text;
}
}
'''
CONTRACT_RECEIVE_FUNCTION_ABI = '''
[
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [],
"name": "getText",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "new_text",
"type": "string"
}
],
"name": "setText",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
]
'''
CONTRACT_RECEIVE_FUNCTION_CODE = "608060405234801561001057600080fd5b506103da806100206000396000f3fe60806040526004361061002d5760003560e01c80635d3a1f9d14610092578063e00fe2eb146101ba57610063565b3661006357604080518082019091526007808252667265636569766560c81b60209092019182526100609160009161030c565b50005b6040805180820190915260088082526766616c6c6261636b60c01b60209092019182526100609160009161030c565b34801561009e57600080fd5b50610145600480360360208110156100b557600080fd5b8101906020810181356401000000008111156100d057600080fd5b8201836020820111156100e257600080fd5b8035906020019184600183028401116401000000008311171561010457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506101cf945050505050565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017f578181015183820152602001610167565b50505050905090810190601f1680156101ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c657600080fd5b50610145610275565b80516060906101e590600090602085019061030c565b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102695780601f1061023e57610100808354040283529160200191610269565b820191906000526020600020905b81548152906001019060200180831161024c57829003601f168201915b50505050509050919050565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b505050505090505b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061034d57805160ff191683800117855561037a565b8280016001018555821561037a579182015b8281111561037a57825182559160200191906001019061035f565b5061038692915061038a565b5090565b61030991905b80821115610386576000815560010161039056fea2646970667358221220b93632f6dd6614e84675a1453e32b49de37a5d658a6e73173705c5a7dffc0bdd64736f6c63430006010033" # noqa: E501
CONTRACT_RECEIVE_FUNCTION_RUNTIME = "60806040526004361061002d5760003560e01c80635d3a1f9d14610092578063e00fe2eb146101ba57610063565b3661006357604080518082019091526007808252667265636569766560c81b60209092019182526100609160009161030c565b50005b6040805180820190915260088082526766616c6c6261636b60c01b60209092019182526100609160009161030c565b34801561009e57600080fd5b50610145600480360360208110156100b557600080fd5b8101906020810181356401000000008111156100d057600080fd5b8201836020820111156100e257600080fd5b8035906020019184600183028401116401000000008311171561010457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506101cf945050505050565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017f578181015183820152602001610167565b50505050905090810190601f1680156101ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c657600080fd5b50610145610275565b80516060906101e590600090602085019061030c565b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102695780601f1061023e57610100808354040283529160200191610269565b820191906000526020600020905b81548152906001019060200180831161024c57829003601f168201915b50505050509050919050565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b505050505090505b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061034d57805160ff191683800117855561037a565b8280016001018555821561037a579182015b8281111561037a57825182559160200191906001019061035f565b5061038692915061038a565b5090565b61030991905b80821115610386576000815560010161039056fea2646970667358221220b93632f6dd6614e84675a1453e32b49de37a5d658a6e73173705c5a7dffc0bdd64736f6c63430006010033" # noqa: E501
|
# Define a function that takes in two non-negative integers a and b and returns the last decimal digit of a^b.
# Note that a and b may be very large!
# For example, the last decimal digit of 9^7 is 9, since 9^7=4782969.
# The last decimal digit of (2^200)^2300, which has over 10^92 decimal digits, is 6.
# Also, please take 0^0 = 1
#
# You may assume that the input will always be valid.
# Examples
#
# last_digit(4, 1) # returns 4
# last_digit(4, 2) # returns 6
# last_digit(9, 7) # returns 9
# last_digit(10, 10 ** 10) # returns 0
# last_digit(2 ** 200, 2 ** 300) # returns 6
def last_digit(a, b):
return pow(a, b, 10)
|
num = int(input("Input: "))
count = 0
squareLength = 3
while squareLength * squareLength < num:
squareLength += 2
squareLength -= 2
cornerValue = squareLength * squareLength
diff = num - cornerValue
midPoint = (squareLength + 1) / 2
# # Walk right one
# diff += 1
# # Walk north
# if squareLength > diff:
# diff = diff - midPoint
# else:
# diff -= squareLength
# # Walk west
# if squareLength + 1 > diff:
# diff = diff - midPoint
# else:
# diff -= squareLength + 1
# # Walk South
# if squareLength + 1 > diff:
# diff = diff - midPoint
# else:
# diff -= squareLength + 1
# # Walk East
# if squareLength + 1 > diff:
# diff = diff - midPoint
print(squareLength)
print(cornerValue)
print(diff)
print(midPoint)
|
# 음양 더하기
def solution(absolutes, signs):
return sum([x if y else -x for x, y in zip(absolutes, signs)])
'''
테스트 1 〉 통과 (0.11ms, 10.2MB)
테스트 2 〉 통과 (0.12ms, 10.2MB)
테스트 3 〉 통과 (0.11ms, 10.2MB)
테스트 4 〉 통과 (0.11ms, 10.3MB)
테스트 5 〉 통과 (0.12ms, 10.3MB)
테스트 6 〉 통과 (0.11ms, 10.2MB)
테스트 7 〉 통과 (0.10ms, 10.2MB)
테스트 8 〉 통과 (0.12ms, 10.3MB)
테스트 9 〉 통과 (0.12ms, 10.2MB)
'''
|
#Python program to Find ASCII value of character
def main():
x=input("Enter a character")
print("The ASCII value of",x,"is",ord(x))
if __name__=='__main__':
main()
|
class BinarySearch:
def __init__(self, data, item) -> None:
self.data = data
self.item = item
def binary_search(self):
"""_summary_"""
low = 0
high = len(self.data) - 1
while low <= high:
middle_number_index = (low + high) // 2
guess = self.data[middle_number_index]
if guess == self.item:
return middle_number_index
if guess > self.item:
high = middle_number_index - 1
else:
low = middle_number_index + 1
return None
|
class ViewFamily(Enum,IComparable,IFormattable,IConvertible):
"""
An enumerated type that corresponds to the type of a Revit view.
enum ViewFamily,values: AreaPlan (110),CeilingPlan (111),CostReport (106),Detail (113),Drafting (108),Elevation (114),FloorPlan (109),GraphicalColumnSchedule (119),ImageView (104),Invalid (101),Legend (117),LoadsReport (115),PanelSchedule (118),PressureLossReport (116),Schedule (105),Section (112),Sheet (107),StructuralPlan (120),ThreeDimensional (102),Walkthrough (103)
"""
def __eq__(self,*args):
""" x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """
pass
def __format__(self,*args):
""" __format__(formattable: IFormattable,format: str) -> str """
pass
def __ge__(self,*args):
pass
def __gt__(self,*args):
pass
def __init__(self,*args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
def __le__(self,*args):
pass
def __lt__(self,*args):
pass
def __ne__(self,*args):
pass
def __reduce_ex__(self,*args):
pass
def __str__(self,*args):
pass
AreaPlan=None
CeilingPlan=None
CostReport=None
Detail=None
Drafting=None
Elevation=None
FloorPlan=None
GraphicalColumnSchedule=None
ImageView=None
Invalid=None
Legend=None
LoadsReport=None
PanelSchedule=None
PressureLossReport=None
Schedule=None
Section=None
Sheet=None
StructuralPlan=None
ThreeDimensional=None
value__=None
Walkthrough=None
|
{
"cells": [
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The max value = 5\n",
"The min value = -3\n",
"The max squared value = 25\n",
"The length of the list = 7\n",
"The total of all positive numbers in the list = 15\n",
"The Negative numbers count in the list = 2\n",
"The even numbers in the list = [-2, 4, 2]\n",
"The total of all the numbers in the list = 10\n"
]
}
],
"source": [
"class NewClass:\n",
" def __init__(self, ls = [1,3,5,-3,-2,4,2]):\n",
" self.ls = ls\n",
" \n",
" # Return the Maximum value in the list\n",
" def return_max(list):\n",
" max = list[0]\n",
" for a in list:\n",
" if a > max:\n",
" max = a\n",
" return max\n",
"\n",
" print('The max value =',return_max(ls))\n",
" \n",
" # Return the minimum value in the list\n",
" def return_min(list):\n",
" min = list[0]\n",
" for a in list:\n",
" if a < min:\n",
" min = a\n",
" return min\n",
"\n",
" print('The min value =',return_min(ls))\n",
" \n",
" # Return the max value squared\n",
" def return_max_squared(list):\n",
" max = list[0]\n",
" for a in list:\n",
" if a > max:\n",
" max = a\n",
" return max**2\n",
"\n",
" print('The max squared value =', return_max_squared(ls))\n",
" \n",
" # Return length of the list:\n",
" def return_length(list):\n",
" testList = ls\n",
" return len\n",
" print('The length of the list =', len(ls))\n",
"\n",
" # Return the sum of all positive numbers only\n",
" def return_positive_sum(list):\n",
" positive = 0 \n",
" for x in list:\n",
" if x > 0:\n",
" positive = positive + x\n",
" return positive\n",
" print('The total of all positive numbers in the list =', return_positive_sum(ls))\n",
" \n",
" \n",
" # Return the count of all negative numbers (How many negative numbers are in the list)\n",
" def return_negative_count(list):\n",
" pos_count = 0 \n",
" neg_count = 0\n",
" for num in list:\n",
" if num >= 0:\n",
" pos_count += 1\n",
" else:\n",
" neg_count += 1\n",
" return neg_count \n",
" print(\"The Negative numbers count in the list = \", return_negative_count(ls))\n",
"\n",
" # Return the list of all even numbers in the list\n",
" def even_num(list):\n",
" even = []\n",
" for n in list:\n",
" if n % 2 == 0:\n",
" even.append(n)\n",
" return even\n",
" print(\"The even numbers in the list = \", even_num(ls))\n",
" \n",
" # Return the sum of all numbers in the list\n",
" def sum_all_number(ls):\n",
" total = 0\n",
" for x in ls:\n",
" total += x\n",
" return total\n",
" print(\"The total of all the numbers in the list =\", sum_all_number(ls)) \n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
|
"""
A module with a function to show off positional for-loops.
This function has been fully implemented, and is correct.
Author: Walker M. White
Date: April 15, 2019
"""
def partition(s):
"""Returns: a list splitting s in two parts
The 1st element of the list consists of all characters in even
positions (starting at 0), while the 2nd element is the odd
positions.
Examples:
partition('abcde') is ['ace','bd']
partition('aabb') is ['ab', 'ab']
Parameter s: the string to partition
Precondition: s is a string
"""
first = ''
second = ''
for pos in range(len(s)):
if pos % 2 == 0:
first = first + s[pos]
else:
second = second + s[pos]
return [first,second]
|
class TestClass(object):
def test_eken(self):
eken = 'diq'
assert eken == 'diq'
def test_gman(self):
gman_is_g = True
assert gman_is_g is True
def test_t(self):
tys_biceps_circumference = 5*1000
assert tys_biceps_circumference > 1000
|
load("//:plugin.bzl", "ProtoPluginInfo")
load(
"//internal:common.bzl",
"ProtoCompileInfo",
"copy_file",
"descriptor_proto_path",
"get_int_attr",
"get_output_filename",
"strip_path_prefix",
)
ProtoLibraryAspectNodeInfo = provider(
fields = {
"output_files": "The files generated by this aspect and its transitive dependencies, as a dict indexed by the root directory",
"output_dirs": "The directories generated by this aspect and its transitive dependencies, as a string list",
},
)
proto_compile_attrs = {
"verbose": attr.int(
doc = "The verbosity level. Supported values and results are 1: *show command*, 2: *show command and sandbox after running protoc*, 3: *show command and sandbox before and after running protoc*, 4. *show env, command, expected outputs and sandbox before and after running protoc*",
),
"verbose_string": attr.string(
doc = "String version of the verbose string, used for aspect",
default = "0",
),
"prefix_path": attr.string(
doc = "Path to prefix to the generated files in the output directory. Cannot be set when merge_directories == False",
),
"merge_directories": attr.bool(
doc = "If true, all generated files are merged into a single directory with the name of current label and these new files returned as the outputs. If false, the original generated files are returned across multiple roots",
default = True,
),
}
proto_compile_aspect_attrs = {
"verbose_string": attr.string(
doc = "String version of the verbose string, used for aspect",
values = ["", "None", "0", "1", "2", "3", "4"],
default = "0",
),
}
def proto_compile_impl(ctx):
# Aggregate output files and dirs created by the aspect as it has walked the deps
output_files = [dep[ProtoLibraryAspectNodeInfo].output_files for dep in ctx.attr.deps]
output_dirs = [d for dirs in [dep[ProtoLibraryAspectNodeInfo].output_dirs for dep in ctx.attr.deps] for d in dirs]
# Check merge_directories and prefix_path
if not ctx.attr.merge_directories and ctx.attr.prefix_path:
fail("Attribute prefix_path cannot be set when merge_directories is false")
# Build outputs
final_output_files = {}
final_output_dirs = []
prefix_path = ctx.attr.prefix_path
if not ctx.attr.merge_directories:
# Pass on outputs directly when not merging
for output_files_dict in output_files:
final_output_files.update(**output_files_dict)
final_output_dirs = output_dirs
elif output_dirs:
# If we have any output dirs specified, we declare a single output
# directory and merge all files in one go. This is necessary to prevent
# path prefix conflicts
# Declare single output directory
dir_name = ctx.label.name
if prefix_path:
dir_name = dir_name + "/" + prefix_path
new_dir = ctx.actions.declare_directory(dir_name)
final_output_dirs.append(new_dir)
# Build copy command for directory outputs
# Use cp {}/. rather than {}/* to allow for empty output directories from a plugin (e.g when no service exists,
# so no files generated)
command_parts = ["cp -r {} '{}'".format(
" ".join(["'" + d.path + "/.'" for d in output_dirs]),
new_dir.path,
)]
# Extend copy command with file outputs
command_input_files = []
for output_files_dict in output_files:
for root, files in output_files_dict.items():
for file in files:
# Strip root from file path
path = strip_path_prefix(file.path, root)
# Prefix path is contained in new_dir.path created above and
# used below
# Add command to copy file to output
command_input_files.append(file)
command_parts.append("cp '{}' '{}'".format(
file.path,
"{}/{}".format(new_dir.path, path),
))
# Add debug options
if ctx.attr.verbose > 1:
command_parts = command_parts + ["echo '\n##### SANDBOX AFTER MERGING DIRECTORIES'", "find . -type l"]
if ctx.attr.verbose > 2:
command_parts = ["echo '\n##### SANDBOX BEFORE MERGING DIRECTORIES'", "find . -type l"] + command_parts
if ctx.attr.verbose > 0:
print("Directory merge command: {}".format(" && ".join(command_parts)))
# Copy directories and files to shared output directory in one action
ctx.actions.run_shell(
mnemonic = "CopyDirs",
inputs = output_dirs + command_input_files,
outputs = [new_dir],
command = " && ".join(command_parts),
progress_message = "copying directories and files to {}".format(new_dir.path),
)
else:
# Otherwise, if we only have output files, build the output tree by
# aggregating files created by aspect into one directory
output_root = ctx.bin_dir.path + "/"
if ctx.label.workspace_root:
output_root += ctx.label.workspace_root + "/"
if ctx.label.package:
output_root += ctx.label.package + "/"
output_root += ctx.label.name
final_output_files[output_root] = []
for output_files_dict in output_files:
for root, files in output_files_dict.items():
for file in files:
# Strip root from file path
path = strip_path_prefix(file.path, root)
# Prepend prefix path if given
if prefix_path:
path = prefix_path + "/" + path
# Copy file to output
final_output_files[output_root].append(copy_file(
ctx,
file,
"{}/{}".format(ctx.label.name, path),
))
# Create default and proto compile providers
all_outputs = [f for files in final_output_files.values() for f in files] + final_output_dirs
return [
ProtoCompileInfo(
label = ctx.label,
output_files = final_output_files,
output_dirs = final_output_dirs,
),
DefaultInfo(
files = depset(all_outputs),
data_runfiles = ctx.runfiles(files = all_outputs),
),
]
def proto_compile_aspect_impl(target, ctx):
###
### Part 1: setup variables used in scope
###
# <int> verbose level
# verbose = ctx.attr.verbose
verbose = get_int_attr(ctx.attr, "verbose_string")
# <struct> The resolved protoc toolchain
protoc_toolchain_info = ctx.toolchains[str(Label("//protobuf:toolchain_type"))]
# <Target> The resolved protoc compiler from the protoc toolchain
protoc = protoc_toolchain_info.protoc_executable
# <ProtoInfo> The ProtoInfo of the current node
proto_info = target[ProtoInfo]
# <string> The directory where the outputs will be generated, relative to
# the package. This contains the aspect _prefix attr to disambiguate
# different aspects that may share the same plugins and would otherwise try
# to touch the same file. The same is true for the verbose_string attr.
rel_outdir = "{}/{}_verb{}".format(ctx.label.name, ctx.attr._prefix, verbose)
# <string> The full path to the directory where the outputs will be generated
full_outdir = ctx.bin_dir.path + "/"
if ctx.label.workspace_root:
full_outdir += ctx.label.workspace_root + "/"
if ctx.label.package:
full_outdir += ctx.label.package + "/"
full_outdir += rel_outdir
# <list<PluginInfo>> A list of PluginInfo providers for the requested
# plugins
plugins = [plugin[ProtoPluginInfo] for plugin in ctx.attr._plugins]
# <list<File>> The list of generated artifacts like 'foo_pb2.py' that we
# expect to be produced.
output_files = []
# <list<File>> The list of generated artifacts directories that we
# expect to be produced.
output_dirs = []
###
### Part 2: iterate over plugins
###
# Each plugin is isolated to its own execution of protoc, as plugins may
# have differing exclusions that cannot be expressed in a single protoc
# execution for all plugins
for plugin in plugins:
###
### Part 2.1: fetch plugin tool and runfiles
###
# <list<File>> Files required for running the plugins
plugin_runfiles = []
# <list<opaque>> Plugin input manifests
plugin_input_manifests = None
# Get plugin name
plugin_name = plugin.name
if plugin.protoc_plugin_name:
plugin_name = plugin.protoc_plugin_name
# Add plugin executable if not a built-in plugin
plugin_tool = None
if plugin.tool_executable:
plugin_tool = plugin.tool_executable
# Add plugin runfiles if plugin has a tool
if plugin.tool:
plugin_runfiles, plugin_input_manifests = ctx.resolve_tools(tools = [plugin.tool])
plugin_runfiles = plugin_runfiles.to_list()
# Add extra plugin data files
plugin_runfiles += plugin.data
# Check plugin outputs
if plugin.output_directory and (plugin.out or plugin.outputs):
fail("Proto plugin {} cannot use output_directory in conjunction with outputs or out".format(plugin.name))
###
### Part 2.2: gather proto files and filter by exclusions
###
# <list<File>> The filtered set of .proto files to compile
protos = []
for proto in proto_info.direct_sources:
# Check for exclusion
if any([
proto.dirname.endswith(exclusion) or proto.path.endswith(exclusion)
for exclusion in plugin.exclusions
]) or proto in protos: # TODO: When using import_prefix, the ProtoInfo.direct_sources list appears to contain duplicate records, this line removes these. https://github.com/bazelbuild/bazel/issues/9127
continue
# Proto not excluded
protos.append(proto)
# Skip plugin if all proto files have now been excluded
if len(protos) == 0:
if verbose > 2:
print('Skipping plugin "{}" for "{}" as all proto files have been excluded'.format(plugin.name, ctx.label))
continue
###
### Part 2.3: declare per-proto generated outputs from plugin
###
# <list<File>> The list of generated artifacts like 'foo_pb2.py' that we
# expect to be produced by this plugin only
plugin_outputs = []
for proto in protos:
for pattern in plugin.outputs:
plugin_outputs.append(ctx.actions.declare_file("{}/{}".format(
rel_outdir,
get_output_filename(proto, pattern, proto_info),
)))
# Append current plugin outputs to global outputs before looking at
# per-plugin outputs; these are manually added globally as there may
# be srcjar outputs.
output_files.extend(plugin_outputs)
###
### Part 2.4: declare per-plugin artifacts
###
# Some protoc plugins generate a set of output files (like python) while
# others generate a single 'archive' file that contains the individual
# outputs (like java). Jar outputs are gathered as a special case as we need to
# post-process them to have a 'srcjar' extension (java_library rules don't
# accept source jars with a 'jar' extension)
out_file = None
if plugin.out:
# Define out file
out_file = ctx.actions.declare_file("{}/{}".format(
rel_outdir,
plugin.out.replace("{name}", ctx.label.name),
))
plugin_outputs.append(out_file)
if not out_file.path.endswith(".jar"):
# Add output direct to global outputs
output_files.append(out_file)
else:
# Create .srcjar from .jar for global outputs
output_files.append(copy_file(
ctx,
out_file,
"{}.srcjar".format(out_file.basename.rpartition(".")[0]),
sibling = out_file,
))
###
### Part 2.5: declare plugin output directory
###
# Some plugins outputs a structure that cannot be predicted from the
# input file paths alone. For these plugins, we simply declare the
# directory.
if plugin.output_directory:
out_file = ctx.actions.declare_directory(rel_outdir + "/" + "_plugin_" + plugin.name)
plugin_outputs.append(out_file)
output_dirs.append(out_file)
###
### Part 2.6: build command
###
# <Args> argument list for protoc execution
args = ctx.actions.args()
# Add descriptors
pathsep = ctx.configuration.host_path_separator
args.add("--descriptor_set_in={}".format(pathsep.join(
[f.path for f in proto_info.transitive_descriptor_sets.to_list()],
)))
# Add plugin if not built-in
if plugin_tool:
# If Windows, mangle the path. It's done a bit awkwardly with
# `host_path_seprator` as there is no simple way to figure out what's
# the current OS.
plugin_tool_path = None
if ctx.configuration.host_path_separator == ";":
plugin_tool_path = plugin_tool.path.replace("/", "\\")
else:
plugin_tool_path = plugin_tool.path
args.add("--plugin=protoc-gen-{}={}".format(plugin_name, plugin_tool_path))
# Add plugin out arg
out_arg = out_file.path if out_file else full_outdir
if plugin.options:
out_arg = "{}:{}".format(",".join(
[option.replace("{name}", ctx.label.name) for option in plugin.options],
), out_arg)
args.add("--{}_out={}".format(plugin_name, out_arg))
args.add("--experimental_allow_proto3_optional")
# Add source proto files as descriptor paths
for proto in protos:
args.add(descriptor_proto_path(proto, proto_info))
###
### Part 2.7: run command
###
mnemonic = "ProtoCompile"
command = ("mkdir -p '{}' && ".format(full_outdir)) + protoc.path + " $@" # $@ is replaced with args list
inputs = proto_info.transitive_descriptor_sets.to_list() + plugin_runfiles # Proto files are not inputs, as they come via the descriptor sets
tools = [protoc] + ([plugin_tool] if plugin_tool else [])
# Amend command with debug options
if verbose > 0:
print("{}:".format(mnemonic), protoc.path, args)
if verbose > 1:
command += " && echo '\n##### SANDBOX AFTER RUNNING PROTOC' && find . -type f "
if verbose > 2:
command = "echo '\n##### SANDBOX BEFORE RUNNING PROTOC' && find . -type l && " + command
if verbose > 3:
command = "env && " + command
for f in inputs:
print("INPUT:", f.path)
for f in protos:
print("TARGET PROTO:", f.path)
for f in tools:
print("TOOL:", f.path)
for f in plugin_outputs:
print("EXPECTED OUTPUT:", f.path)
# Run protoc
ctx.actions.run_shell(
mnemonic = mnemonic,
command = command,
arguments = [args],
inputs = inputs,
tools = tools,
outputs = plugin_outputs,
use_default_shell_env = plugin.use_built_in_shell_environment,
input_manifests = plugin_input_manifests if plugin_input_manifests else [],
progress_message = "Compiling protoc outputs for {} plugin".format(plugin.name),
)
###
### Step 3: generate providers
###
# Gather transitive info
transitive_infos = [dep[ProtoLibraryAspectNodeInfo] for dep in ctx.rule.attr.deps]
output_files_dict = {}
if output_files:
output_files_dict[full_outdir] = output_files
for transitive_info in transitive_infos:
output_files_dict.update(**transitive_info.output_files)
output_dirs += transitive_info.output_dirs
return [
ProtoLibraryAspectNodeInfo(
output_files = output_files_dict,
output_dirs = output_dirs,
),
]
|
# def foo (arg1, arg2, arg3):
# print (arg1,arg2,arg3)
# foo(
# arg2 = 'second',
# arg3 = 'third',
# arg1 = ['name1','name2']
# )
# string1 = ('{} part'.format('first'))
# string2 = 'second part'
# print (string1+string2)
def create_table(name,columns,datatype,key): #columns is a list containing column names
dd = {'str':'varchar(255)','float':'FLOAT(63,4)'}
query = ("CREATE TABLE {} ( \n".format(name))
query_seg = ("")
for i, col_name in enumerate(columns):
query_seg = ('{} {} NOT NULL,\n'.format(col_name,dd[datatype[i]]))
query += query_seg
query_seg = ('PRIMARY KEY ({}));'.format(key))
query += query_seg
print (query)
create_table(
name = 'table_1',
columns = ['first_col','second_col'],
datatype = ['str','float'],
key = 'first_col'
)
|
chave_certa = 2002
while True:
senha = int(input())
if senha == chave_certa:
print("Acesso Permitido")
break
print("Senha Invalida")
|
#!/usr/bin/python3
def max_integer(my_list=[]):
my_list.sort()
if my_list:
return my_list[len(my_list) - 1]
else:
return None
|
"""
Assignment operators are used to assign values to variables
Documentation - https://www.w3schools.com/python/python_operators.asp
"""
x = 3
y = 5
x = y # Means the value of x is equal to y (Assignment, 5)
x += y # Means the value of x is x + y (Addition Assignment, 8)
x -= y # Means the value of x is x - y (Subtraction Assignment, -2)
x *= y # Means the value of x is x * y (Multiplication Assignment, 15)
x /= y # Means the value of x is x / y (Division Assignment, 0.6)
x %= y # Means the value of x is the remainder of x divided by y (Modulus Assignment, 3)
x //= y # Means the value of x is the largest integer less than or equal to the normal division result of x divided by y (Floor Division Assignment, 0)
x **= y # Means the value of x is the value of x raised by the power of y (Exponentiation Assignment, 243)
x &= y # Performs Bitwise AND on operands and assigns the value to x
x |= y # Performs Bitwise OR on operands and assigns the value to x
x ^= y # Performs Bitwise xOR on operands and assigns the value to x
x >>= y # Performs Bitwise right shift on operands and assigns the value to x
x <<= y # Performs Bitwise left shift on operands and assigns the value to x
|
class Jogador():
def __init__(self):
self.cartas = []
self.soma = 0
self.turnos = 0
|
"""
Contain Edge class for use in a graph
"""
class Edge():
"""
Edge class
"""
def __init__(self, src, dest, **options):
self.src = src
self.dest = dest
self.options = options
def __repr__(self):
options = "\n".join(
[f' {key}="{value}"' for key, value in self.options.items()]
)
repr_ = "{src} -> {dest} [\n{options}\n];".format(
src=self.src,
dest=self.dest,
options=options,
)
return repr_
def __eq__(self, other):
return other == (self.src, self.dest)
def __contains__(self, other):
return other in (self.src, self.dest)
if __name__ == "__main__":
l = [
Edge("1", "2", label="ko"),
Edge("2", "1", label="haj", style="fixed"),
Edge("3", "1"),
]
# print("1" in l)
print("\n".join([str(k) for k in l]))
|
# -*- coding: utf-8 -*-
"""
Stub ui to allow debug on PC
"""
AUTOCAPITALIZE_NONE = 0
def measure_string(*args, **kwargs):
return 12.0
def in_background(func):
return func
def get_screen_size():
return 100, 100
class View(object):
def __init__(self, *args, **kwargs):
self.on_screen = True
self.width = 100
self.height = 100
self.content_size = (100, 100)
self.content_offset = (0, 0)
self.superview = None
self.subviews = []
self.delegate = None
def add_subview(self, v):
self.subviews.append(v)
v.superview = self
def remove_subview(self, v):
self.subviews.remove(v)
def present(self, style='popover'):
pass
def wait_modal(self):
pass
def size_to_fit(self):
pass
def send_to_back(self):
pass
def bring_to_front(self):
pass
class TextField(View):
def __init__(self, *args, **kwargs):
super(TextField, self).__init__(*args, **kwargs)
self.text = ''
class TextView(View):
def __init__(self, *args, **kwargs):
super(TextView, self).__init__(*args, **kwargs)
self.text = ''
self.selected_range = (0, 0)
def replace_range(self, rng, s):
self.text = self.text[:rng[0]] + s + self.text[rng[1]:]
tot_len = len(self.text)
self.selected_range = (tot_len, tot_len)
def begin_editing(self):
pass
def end_editing(self):
pass
class ScrollView(View):
pass
class Button(View):
def __init__(self, *args, **kwargs):
super(Button, self).__init__(*args, **kwargs)
class TableView(View):
def __init__(self, *args, **kwargs):
super(TableView, self).__init__(*args, **kwargs)
class ListDataSource(object):
def __init__(self, lst):
pass
|
load("@bazel_skylib//lib:unittest.bzl", "asserts", "unittest")
load(":include_tools.bzl", "CommandLineToTemplateString", "ProccessResponse")
def _proccess_response_test_impl(ctx):
response = """clang version 6.0.0-1ubuntu2 (tags/RELEASE_600/final)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
Found candidate GCC installation: /usr/bin/../lib/gcc/i686-linux-gnu/8
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/8
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/8
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.4.0
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8
Selected GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0
Candidate multilib: .;@m64
Selected multilib: .;@m64
"/usr/lib/llvm-6.0/bin/clang" -cc1 -triple x86_64-pc-linux-gnu -E -disable-free -disable-llvm-verifier -discard-value-names -main-file-name - -mrelocation-model static -mthread-model posix -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -v -resource-dir /usr/lib/llvm-6.0/lib/clang/6.0.0 -internal-isystem /usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0/../../../../include/c++/7.4.0 -internal-isystem /usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0/../../../../include/x86_64-linux-gnu/c++/7.4.0 -internal-isystem /usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0/../../../../include/x86_64-linux-gnu/c++/7.4.0 -internal-isystem /usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0/../../../../include/c++/7.4.0/backward -internal-isystem /usr/include/clang/6.0.0/include/ -internal-isystem /usr/local/include -internal-isystem /usr/lib/llvm-6.0/lib/clang/6.0.0/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdeprecated-macro -fdebug-compilation-dir /home/nathaniel/Downloads/clang+llvm-9.0.0-x86_64-pc-linux-gnu -ferror-limit 19 -fmessage-length 122 -fobjc-runtime=gcc -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -o - -x c++ -
clang -cc1 version 6.0.0 based upon LLVM 6.0.0 default target x86_64-pc-linux-gnu
ignoring nonexistent directory "/include"
ignoring duplicate directory "/usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0/../../../../include/x86_64-linux-gnu/c++/7.4.0"
ignoring duplicate directory "/usr/include/clang/6.0.0/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0/../../../../include/c++/7.4.0
/usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0/../../../../include/x86_64-linux-gnu/c++/7.4.0
/usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0/../../../../include/c++/7.4.0/backward
/usr/include/clang/6.0.0/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
# 1 "<stdin>"
# 1 "<built-in>" 1
# 1 "<built-in>" 3
# 389 "<built-in>" 3
# 1 "<command line>" 1
# 1 "<built-in>" 2
# 1 "<stdin>" 2
"""
expect = [
"/usr/include/c++/7.4.0",
"/usr/include/x86_64-linux-gnu/c++/7.4.0",
"/usr/include/c++/7.4.0/backward",
"/usr/include/clang/6.0.0/include",
"/usr/local/include",
"/usr/include/x86_64-linux-gnu",
"/usr/include",
]
env = unittest.begin(ctx)
asserts.equals(env, expect, ProccessResponse(response))
return unittest.end(env)
proccess_response_test = unittest.make(_proccess_response_test_impl)
def _convert_command_line_to_string_test_impl(ctx):
input = ["-Ia", "-Ib"]
expect = """["-Ia", "-Ib"]"""
env = unittest.begin(ctx)
asserts.equals(env, expect, CommandLineToTemplateString(input))
return unittest.end(env)
convert_command_line_to_string_test = unittest.make(_convert_command_line_to_string_test_impl)
def include_tools_test_suite(name):
unittest.suite(
name,
proccess_response_test,
convert_command_line_to_string_test,
)
|
feature_dict = {
'VMAF_feature': ['vif_scale0', 'vif_scale1', 'vif_scale2', 'vif_scale3', 'adm2', 'motion', ],
}
model_type = "LIBSVMNUSVR"
model_param_dict = {
# ==== preprocess: normalize each feature ==== #
# 'norm_type': 'none', # default: do nothing
'norm_type': 'clip_0to1', # rescale to within [0, 1]
# 'norm_type': 'clip_minus1to1', # rescale to within [-1, 1]
# 'norm_type': 'normalize', # rescale to mean zero and std one
# ==== postprocess: clip final quality score ==== #
# 'score_clip': None, # default: do nothing
'score_clip': [0.0, 100.0], # clip to within [0, 100]
# ==== libsvmnusvr parameters ==== #
# 'gamma': 0.0, # default
'gamma': 0.05, # vmafv3
# 'C': 1.0, # default
'C': 4.0, # vmafv3
# 'nu': 0.5, # default
'nu': 0.9, # vmafv3
}
|
class NumberParsingError(Exception):
pass
def handle_even_number(number_str):
try:
number = int(number_str)
except ValueError:
raise NumberParsingError("Przekazany argument nie jest poprawną liczbą")
if number % 2 != 0:
raise NumberParsingError("To nie jest liczba parzysta!")
print(f"Dzięki! Wprowadzona liczba podzielona przez 2 to: {number / 2}")
def run_example():
number_str = input("Podaj liczbę parzystą: ")
# try:
# handle_even_number(number_str)
# except:
# print("Łapiemy absolutnie wszystko...")
# try:
# handle_even_number(number_str)
# except Exception:
# print("Łapiemy wszystko...")
try:
handle_even_number(number_str)
except Exception as error:
print(f"Tutaj też łapiemy wszystko ale przynajmniej coś z tym robimy: {error}")
if __name__ == '__main__':
run_example()
|
class Operation(dict):
def __init__(self, operationType=None, operationName=None, listOfInputMessages=None, listOfOutputMessages=None):
dict.__init__(self, operationType=operationType, operationName=operationName
, listOfInputMessages=listOfInputMessages, listOfOutputMessages=listOfOutputMessages)
|
'''(Partitioning Arrays: Dutch Flag [M]): Dutch National Flag Problem:
Given an array of integers A and a pivot, rearrange A in the following order:
[Elements less than pivot, elements equal to pivot, elements greater than pivot]
For example, if A = [5,2,4,4,6,4,4,3] and pivot = 4 -> result = [3,2,4,4,4,4,6,5]'''
def swap(arr, i, j):
arr[i], arr[j] = arr[j], arr[i]
def dutch_flag(arr, pivot):
low_bound = 0
high_bound = len(arr) - 1
i = 0
while i <= high_bound:
if arr[i] < pivot:
swap(arr, i, low_bound)
low_bound += 1
i += 1
elif arr[i] > pivot:
swap(arr, i, high_bound)
# don't increment i here bc high is sorted
high_bound -= 1
else:
i += 1
return arr
print(dutch_flag([5,2,4,4,6,4,4,3], 4))
# Output: [3, 2, 4, 4, 4, 4, 6, 5]
# Time: O(n) Space: O(1)
|
"""
Copyright 2019, SICK AG, Waldkirch
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http ://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
load("@com_nvidia_isaac_engine//bzl:deps.bzl", "isaac_http_archive")
def clean_dep(dep):
return str(Label(dep))
def sick_sensor_workspace():
isaac_http_archive(
name = "com_google_absl",
sha256 = "c8ba586a9ab12bc4a67bb419fc0d2146200942b072bac95f50490f977b7fb04f",
strip_prefix = "abseil-cpp-5441bbe1db5d0f2ca24b5b60166367b0966790af",
urls = ["https://github.com/abseil/abseil-cpp/archive/5441bbe1db5d0f2ca24b5b60166367b0966790af.tar.gz"],
licenses = ["@com_google_absl//:COPYRIGHT"],
)
isaac_http_archive(
name = "com_sickag_ssbl",
sha256 = "9fd9a59f3c211d044d2ef83362dc7d18bfc632ebc89dd31e32d83d1fedcec556",
strip_prefix = "sick_scan_base-0.0.3/src/Library",
urls = ["https://github.com/SickScan/sick_scan_base/archive/V0.0.3.tar.gz"],
build_file = "@//:ssbl.BUILD",
licenses = ["@com_sickag_ssbl//:COPYRIGHT"],
)
|
# copying a large dictionary
a = {i: 2 * i for i in range(1000)}
b = a.copy()
for i in range(1000):
print(i, b[i])
print(len(b))
|
class Parser():
def __init__(self, file):
content = [line.strip() for line in file.readlines()]
content = [line.split('//')[0].strip() for line in content if not line.startswith('//') and line is not '']
self.source_code: list = content
self.current_command: int = 0
def _command(self):
return self.source_code[self.current_command]
def has_more_commands(self):
if self.current_command < len(self.source_code):
return True
return False
def advance(self):
if self.has_more_commands():
self.current_command += 1
def command_type(self):
if self._command().startswith('@'):
return 'A_COMMAND'
if self._command().startswith('('):
return 'L_COMMAND'
return 'C_COMMAND'
def symbol(self):
command = self._command()
if command.startswith('@'):
return command.split('@')[1]
return command[command.find('(') + 1: command.find(')')]
def dest(self):
command = self._command()
if command.find('=') is -1:
return ''
return command[0:command.find('=')]
def comp(self):
command = self._command()
if command.find('=') is -1 and command.find(';') is -1:
return command
if command.find('=') is -1 and command.find(';') is not -1:
return command[:command.find(';')]
if command.find('=') is not -1 and command.find(';') is -1:
return command[command.find('=') + 1:]
return command[command.find('=') + 1:command.find(';')]
def jump(self):
command = self._command()
if command.find(';') is -1:
return ''
return command[command.find(';') + 1:]
|
pkgname = "ninja"
pkgver = "1.10.2"
pkgrel = 0
hostmakedepends = ["python"]
pkgdesc = "Small build system with a focus on speed"
maintainer = "q66 <[email protected]>"
license = "Apache-2.0"
url = "https://ninja-build.org"
sources = [f"https://github.com/ninja-build/ninja/archive/v{pkgver}.tar.gz"]
sha256 = ["ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed"]
options = ["!check"]
def do_configure(self):
self.do("python", ["configure.py", "--bootstrap"])
def do_build(self):
self.do("python", ["configure.py"])
# FIXME: docs, completions
def do_install(self):
self.install_bin("ninja")
|
fonts = AllFonts()
for font in fonts:
min = 0
max = 0
for glyph in font:
if glyph.bounds != None:
if glyph.bounds[1] < min:
min = glyph.bounds[1]
if glyph.bounds[3] > max:
max = glyph.bounds[3]
print(min,max)
capSpace = max - font['H'][3]
if capSpace > min:
min = -capSpace
else:
max = font['H'][3] + abs(min)
font.info.openTypeOS2TypoAscender = max
font.info.openTypeOS2TypoDescender = min
font.info.openTypeOS2TypoLineGap = 0
font.info.openTypeOS2WinAscent = max
font.info.openTypeOS2WinDescent = abs(min)
font.info.openTypeHheaAscender = max
font.info.openTypeHheaDescender = min
font.info.openTypeHheaLineGap = 0
|
def palindrome():
largest = 0
for a in range(999, 99, -1):
for b in range(999, 99, -1):
# use an awesome extended slice to reverse string
# https://docs.python.org/2/whatsnew/2.3.html#extended-slices
# print(a, b, a*b, str(a*b)[::-1])
if a*b == int(str(a*b)[::-1]) and a*b > largest:
largest = a*b
return largest
print(palindrome())
|
'''
Probem Task : Create a function that, given a number, returns the corresponding Fibonacci number.
Problem Link : https://edabit.com/challenge/8Ko5tPg8Ch5SRCAhA
Examples:
fibonacci(3) ➞ 3
fibonacci(7) ➞ 21
fibonacci(12) ➞ 233
'''
def fibonacci(num):
if num < 2:
return 1
else:
return fibonacci(num - 1) + fibonacci(num - 2)
print(fibonacci(5))
|
class MaxHeap:
def __init__(self):
self.data = []
def root_node(self):
return self.data[0]
def last_node(self):
return self.data[-1]
def left_child_index(self, index):
return 2 * index + 1
def right_child_index(self, index):
return 2 * index + 2
def parent_index(self, index):
return (index - 1) // 2
def insert(self, value):
self.data.append(value)
ci = len(self.data) - 1
pi = self.parent_index(ci)
while pi >= 0 and self.data[pi] < self.data[ci]:
self.data[pi], self.data[ci] = self.data[ci], self.data[pi]
ci = pi
pi = self.parent_index(ci)
def delete(self):
last = self.data.pop()
self.data[0] = last
ci = 0
while self.has_larger_child(ci):
gi = self.calculate_larger_child_index(ci)
self.data[gi], self.data[ci] = self.data[ci], self.data[gi]
ci = gi
def has_larger_child(self, index):
li = self.left_child_index(index)
ri = self.right_child_index(index)
if li < len(self.data) and self.data[li] > self.data[index]:
return True
if ri < len(self.data) and self.data[ri] > self.data[index]:
return True
return False
def calculate_larger_child_index(self, index):
li = self.left_child_index(index)
ri = self.right_child_index(index)
if ri >= len(self.data):
return li
if self.data[li] > self.data[ri]:
return li
return ri
def test_heap_insert():
heap = MaxHeap()
heap.insert(5)
assert 5 == heap.root_node()
heap.insert(8)
assert 8 == heap.root_node()
heap.insert(7)
assert 8 == heap.root_node()
heap.insert(1)
assert 8 == heap.root_node()
heap.insert(9)
assert 9 == heap.root_node()
heap.insert(7)
assert 9 == heap.root_node()
def test_heap_delete():
heap = MaxHeap()
heap.insert(5)
heap.insert(8)
heap.delete()
assert 5 == heap.root_node()
heap.insert(1)
heap.insert(9)
heap.insert(6)
heap.insert(5)
heap.insert(8)
heap.delete()
assert 8 == heap.root_node()
heap.delete()
assert 6 == heap.root_node()
heap.delete()
assert 5 == heap.root_node()
heap.delete()
assert 5 == heap.root_node()
heap.delete()
assert 1 == heap.root_node()
|
#!/usr/bin/python3
# round(x)返回浮点数x的四舍五入的值(实际是五舍六入)
# round(2.5)会返回2,round(2.6)会返回3
round(3.1415926) # 默认取整
#>> 3
round(3.1415926, 1) # 保留1位浮点数
#>> 3.1
round(3.1415926, 4) # 保留4位浮点数
#>> 3.1416
|
"""
============
proyecto IER
============
Para el proyecto de IER
"""
|
wt9_2_10 = {'192.168.122.110': [5.7108, 8.5399, 6.3325, 4.9405, 4.3064, 5.4196, 4.7852, 4.852, 5.5112, 6.0472, 5.987, 5.9324, 5.9693, 5.9885, 5.9521, 5.9517, 5.9214, 5.8912, 6.1639, 6.1483, 6.1269, 6.1008, 6.0684, 6.0465, 6.0183, 5.9975, 6.094, 6.0673, 6.0838, 6.2445, 6.2204, 6.1954, 6.1722, 6.1532, 6.1334, 6.1211, 6.1237, 6.1116, 6.089, 6.0722, 6.1883, 6.1715, 6.1594, 6.2701, 6.2608, 6.2431, 6.2471, 6.3542, 6.3474, 6.3423, 6.4234, 6.5076, 6.4964, 6.4836, 6.4668, 6.4684, 6.5545, 6.6879, 6.6635, 6.7345, 6.7334, 6.8101, 6.8736, 6.8514, 6.9151, 6.8898, 7.0235, 7.0072, 7.0612, 7.0408, 7.024, 7.1535, 7.207, 7.1855, 7.1631, 7.1386, 7.1175, 7.1025, 7.0921, 7.076, 7.0667, 7.0588, 7.0598, 7.1343, 7.2554, 7.238, 7.2262, 7.2233, 7.2029, 7.1868, 7.1653, 7.1531, 7.1412, 7.1319, 7.1164, 7.1124, 7.0971, 7.1373, 7.1258, 7.1092, 7.0918, 7.0811, 7.0797, 7.153, 7.1363, 7.1418, 7.131, 7.1157, 7.0995, 7.0877, 7.0733, 7.0578, 7.1001, 7.0886, 7.0744, 7.1076, 7.1431, 7.1283, 7.1208, 7.1518, 7.181, 7.1692, 7.1575, 7.2381, 7.2246, 7.2552, 7.3301, 7.3176, 7.308, 7.2967, 7.3259, 7.3114, 7.3161, 7.3003, 7.2891, 7.2828, 7.2713, 7.2995, 7.3269, 7.3127, 7.3377, 7.3315, 7.3881, 7.3784, 7.3641, 7.3503, 7.3376, 7.326, 7.3181, 7.3395, 7.3256, 7.3123, 7.3013, 7.2952, 7.2846, 7.2793, 7.3028, 7.2957, 7.2836, 7.2735, 7.2869, 7.2785, 7.269, 7.2312, 7.2189, 7.2098, 7.2061, 7.2274, 7.2491, 7.2392, 7.3586, 7.3542, 7.344, 7.3732, 7.3629, 7.3538, 7.3431, 7.336, 7.3275, 7.3466, 7.3407, 7.3326, 7.3212, 7.3204, 7.3107, 7.3319, 7.321, 7.311, 7.3122, 7.3297, 7.3213, 7.3406, 7.3589, 7.3524, 7.3455, 7.3401, 7.3633, 7.4128, 7.4055, 7.4011, 7.3916, 7.3913, 7.3812, 7.3983, 7.3989, 7.3893, 7.4161, 7.4678, 7.4581, 7.4535, 7.4558, 7.4252, 7.3932, 7.4092, 7.4035, 7.4209, 7.4113, 7.4022, 7.3926, 7.384, 7.3758, 7.3703, 7.3673, 7.3602, 7.3517, 7.3472, 7.3387, 7.33, 7.3452, 7.3381, 7.3324, 7.306, 7.3019, 7.3166, 7.3101, 7.3046, 7.3185, 7.3147, 7.3059, 7.2979, 7.2897, 7.2842, 7.2804, 7.2727, 7.287, 7.3022, 7.296, 7.3099, 7.3239, 7.3163, 7.3302, 7.3247, 7.3166, 7.33, 7.3217, 7.3143, 7.328, 7.3225, 7.3402, 7.3329, 7.3319, 7.3249, 7.3181, 7.3153, 7.2902, 7.3066, 7.3015, 7.2956, 7.2714, 7.3347, 7.3476, 7.3424, 7.3347, 7.3273, 7.3398, 7.3339, 7.3265, 7.3223, 7.3169, 7.3122, 7.3089, 7.3216, 7.3342, 7.3275, 7.328, 7.3605, 7.3569, 7.3526, 7.3461, 7.3715, 7.372, 7.3652, 7.3589, 7.3552, 7.3789, 7.3723, 7.3654, 7.3594, 7.3715, 7.3834, 7.3607, 7.3557, 7.3527, 7.3656, 7.3599, 7.3558, 7.3503, 7.3609, 7.3544, 7.3513, 7.3481, 7.3418, 7.335, 7.3286, 7.3243, 7.3346, 7.3448, 7.3568, 7.3506, 7.3485, 7.348, 7.3582, 7.3518, 7.3617, 7.3587, 7.3692, 7.3627, 7.372, 7.3657, 7.3617, 7.3574, 7.3687, 7.3629, 7.374, 7.3711, 7.3646, 7.3617, 7.3561, 7.3656, 7.3772, 7.3875, 7.3817, 7.3762, 7.3735, 7.3681, 7.365, 7.359, 7.3545, 7.3486, 7.3605, 7.3569, 7.3513, 7.3461, 7.3551, 7.3499, 7.3445, 7.3404, 7.3219, 7.3321, 7.3437, 7.3404, 7.335, 7.3294, 7.3239, 7.3339, 7.3433, 7.3524, 7.3755, 7.3697, 7.3652, 7.3598, 7.3573, 7.354, 7.3625, 7.3608, 7.3698, 7.3647, 7.3608, 7.356, 7.3511, 7.3477, 7.348, 7.3428, 7.3384, 7.4033, 7.3998, 7.4083, 7.4056, 7.4017, 7.4124, 7.4209, 7.4178, 7.4165, 7.4112, 7.4062, 7.4012, 7.3992, 7.3939, 7.4029, 7.4001, 7.3958, 7.4045, 7.4017, 7.3968, 7.3931, 7.3877, 7.3957, 7.3943, 7.3914, 7.4003, 7.4491, 7.4573, 7.4522, 7.4495, 7.4447, 7.4519, 7.4467, 7.4426, 7.4374, 7.4352, 7.4307, 7.4167, 7.4135, 7.3978, 7.418, 7.4143, 7.4231, 7.4359, 7.4449, 7.4455, 7.4301, 7.4387, 7.434, 7.4326, 7.4283, 7.4244, 7.4404, 7.4259, 7.4247, 7.4206, 7.4315, 7.4288, 7.4361, 7.448, 7.4445, 7.4485, 7.4439, 7.44, 7.436, 7.4315, 7.4267, 7.4225, 7.4181, 7.4137, 7.4093, 7.4054, 7.4011, 7.4085, 7.4042, 7.3996, 7.3954, 7.3914, 7.3914, 7.3889, 7.3958, 7.3914, 7.387, 7.3826, 7.3788, 7.3871, 7.373, 7.3701, 7.3584, 7.3578, 7.3907, 7.3875, 7.383, 7.3807, 7.3774, 7.3739, 7.3697, 7.3658, 7.362, 7.3682, 7.365, 7.3609, 7.3674, 7.3636, 7.3597, 7.3562, 7.353, 7.3497, 7.3459, 7.3436, 7.3419, 7.3383, 7.3363, 7.3339, 7.3316, 7.3293, 7.3168, 7.3135, 7.3112, 7.3289, 7.3351, 7.3431, 7.3501, 7.3583, 7.3544, 7.3528, 7.36, 7.3674, 7.3634, 7.3595, 7.3663, 7.3732, 7.3698, 7.3664, 7.3749, 7.3829, 7.3797, 7.3783, 7.4409, 7.4989, 7.525, 7.532, 7.5283, 7.5351, 7.5321, 7.5287, 7.5247, 7.5219, 7.5394, 7.5371, 7.5332, 7.5209, 7.517, 7.5131, 7.5095, 7.5156, 7.512, 7.5082, 7.5042, 7.5003, 7.5071, 7.5036, 7.4996, 7.4961, 7.502, 7.4991, 7.487, 7.493, 7.4994, 7.5001, 7.5059, 7.5116, 7.5082, 7.506, 7.5129, 7.5106, 7.5074, 7.5041, 7.5025, 7.5003, 7.498, 7.4956, 7.5035, 7.501, 7.5078, 7.5044, 7.501, 7.4975, 7.4943, 7.5466, 7.5524, 7.5493, 7.5458, 7.5611, 7.5577, 7.555, 7.553, 7.559, 7.5559, 7.5526, 7.5592, 7.5558, 7.5535, 7.5514, 7.548, 7.5444, 7.5415, 7.5379, 7.5342, 7.532, 7.5287, 7.5253, 7.5225, 7.529, 7.527, 7.5325, 7.529, 7.5262, 7.5316, 7.5542, 7.5511, 7.5483, 7.6068, 7.6034, 7.6078, 7.6216, 7.6177, 7.6142, 7.6117, 7.608, 7.6058, 7.6037, 7.609, 7.6146, 7.6204, 7.6184, 7.6236, 7.6199, 7.625, 7.6216, 7.6185, 7.6167, 7.6131, 7.6103, 7.607, 7.6118, 7.6083, 7.6057, 7.6023, 7.5986, 7.5963, 7.594, 7.5919, 7.5897, 7.5864, 7.583, 7.5803, 7.5853, 7.5819, 7.5865, 7.5831, 7.5812, 7.5777, 7.5827, 7.5794, 7.5758, 7.5732, 7.57, 7.5744, 7.5788, 7.5832, 7.5812, 7.5876, 7.5842, 7.5888, 7.5933, 7.5979, 7.6028, 7.5996, 7.6046, 7.6094, 7.6064, 7.6045, 7.6053, 7.644, 7.6413, 7.6379, 7.6344, 7.6375, 7.6368, 7.6339, 7.6306, 7.6275, 7.6284, 7.6284, 7.6274, 7.6348, 7.6337, 7.6312, 7.6354, 7.6319, 7.6285, 7.626, 7.6247, 7.6212, 7.619, 7.6236, 7.6218, 7.6196, 7.6244, 7.6158, 7.6169, 7.6136, 7.624, 7.6364, 7.6333, 7.6315, 7.6362, 7.6331, 7.6319, 7.6286, 7.626, 7.6229, 7.6205, 7.6173, 7.6142, 7.6109, 7.6087, 7.6054, 7.603, 7.6017, 7.5985, 7.597, 7.6015, 7.5994, 7.6039, 7.6009, 7.598, 7.5982, 7.5951, 7.5922, 7.5893, 7.5862, 7.5833, 7.5804, 7.5773, 7.5747, 7.5718, 7.5704, 7.575, 7.5727, 7.5722, 7.5632, 7.5602, 7.5577, 7.5696, 7.5669, 7.5712, 7.5758, 7.573, 7.5778, 7.5816, 7.5854, 7.5936, 7.6007, 7.5993, 7.5973, 7.5944, 7.5852, 7.585, 7.582, 7.5895, 7.5868, 7.5839, 7.5816, 7.5788, 7.5761, 7.5744, 7.5718, 7.569, 7.5663, 7.5635, 7.5606, 7.5579, 7.5552, 7.5537, 7.5519, 7.549, 7.5464, 7.5507, 7.5551, 7.5524, 7.5572, 7.5611, 7.5596, 7.5569, 7.561, 7.558, 7.5623, 7.5596, 7.558, 7.5623, 7.5597, 7.5641, 7.5613, 7.5586, 7.556, 7.553, 7.5505, 7.5522, 7.5564, 7.5604, 7.5584, 7.5628, 7.5606, 7.5579, 7.5625, 7.554, 7.552, 7.5495, 7.547, 7.5449, 7.5494, 7.5467, 7.5452, 7.5377, 7.5354, 7.5395, 7.543, 7.547, 7.551, 7.5489, 7.5463, 7.5445, 7.5484, 7.5458, 7.5497, 7.547, 7.551, 7.5495, 7.547, 7.5445, 7.5427, 7.5405, 7.5378, 7.542, 7.5463, 7.5503, 7.5481, 7.5459, 7.5431, 7.5412, 7.5386, 7.5364, 7.5338, 7.5376, 7.5416, 7.5403, 7.5377, 7.5358, 7.5393, 7.5376, 7.5414, 7.539, 7.5376, 7.5357, 7.5331, 7.5306, 7.5346, 7.5372, 7.5358, 7.5332, 7.5372, 7.5394, 7.5433, 7.5407, 7.5384, 7.5369, 7.5352, 7.5333, 7.5371, 7.5357, 7.5332, 7.5309, 7.5346, 7.5335, 7.5326, 7.5365, 7.5344, 7.5382, 7.5356, 7.5337, 7.5375, 7.5351, 7.5327, 7.5387, 7.5374, 7.5349, 7.5326, 7.5364, 7.534, 7.5378, 7.5419, 7.5453, 7.5436, 7.5419, 7.5396, 7.5379, 7.5354, 7.5332, 7.5334, 7.5613, 7.5589, 7.5564, 7.5539, 7.5574, 7.5615, 7.5603, 7.5581, 7.5856, 7.5832, 7.5827, 7.5809, 7.5791, 7.5767, 7.5744, 7.5721, 7.5724, 7.5699, 7.5676, 7.5653, 7.5687, 7.5722, 7.5699, 7.5692, 7.5727, 7.571, 7.5688, 7.5664, 7.564, 7.5625, 7.5694, 7.5728, 7.5765, 7.5748, 7.5785, 7.5768, 7.5781, 7.5813, 7.5794, 7.5836, 7.5817, 7.5794, 7.5827, 7.5864, 7.584, 7.5824, 7.5802, 7.5786, 7.5772, 7.5754, 7.5795, 7.5826, 7.5815, 7.579, 7.5718, 7.5756, 7.5734, 7.5771, 7.5746, 7.5722, 7.5699, 7.5677, 7.5659, 7.5639, 7.5618, 7.5654, 7.5632, 7.561, 7.5589, 7.5566, 7.5601, 7.5582, 7.5566, 7.5542, 7.5529, 7.5516, 7.5494, 7.5475, 7.5457, 7.5436, 7.5472, 7.5505, 7.5484, 7.5423, 7.5472, 7.5462, 7.5394, 7.5377, 7.5385, 7.5422, 7.547, 7.5503, 7.548, 7.5463, 7.5462, 7.5439, 7.5423, 7.5406, 7.5345, 7.5329, 7.5308, 7.5286, 7.5273, 7.5306, 7.5361, 7.5347, 7.5404, 7.5393, 7.5376, 7.5356, 7.5363, 7.5395, 7.5426, 7.5411, 7.5391, 7.5375, 7.5364, 7.5344, 7.5323, 7.5356, 7.5386, 7.537, 7.5401, 7.5386, 7.566, 7.5638, 7.5724, 7.5807, 7.5785, 7.5719, 7.5709, 7.5703, 7.5792, 7.5983, 7.5964, 7.5946, 7.5941, 7.5937, 7.5924, 7.5903, 7.5887, 7.5985, 7.5977, 7.5962, 7.5948, 7.5936, 7.5914, 7.5894, 7.5926, 7.5906, 7.5942, 7.5924, 7.5906, 7.5897, 7.5889, 7.5868, 7.5855, 7.5884, 7.5863, 7.5844, 7.5829, 7.5859, 7.5888, 7.5878, 7.5857, 7.5887, 7.5872, 7.5851, 7.5881, 7.5859, 7.5841, 7.5824, 7.5812, 7.5843, 7.5829, 7.5809, 7.5935, 7.5918, 7.59, 7.5885, 7.5969, 7.596, 7.5989, 7.6069, 7.6052, 7.6033, 7.6059, 7.6045, 7.6059, 7.6038, 7.602, 7.601, 7.599, 7.5975, 7.596, 7.5947, 7.593, 7.5921, 7.5952, 7.5936, 7.5918, 7.5953, 7.5944, 7.5933, 7.5917, 7.591, 7.5898, 7.5878, 7.586, 7.5844, 7.5825, 7.5814, 7.5841, 7.5841, 7.5871, 7.5851, 7.5831, 7.5812, 7.5791, 7.582, 7.5816, 7.5845, 7.587, 7.5813, 7.5799, 7.583, 7.581, 7.5836, 7.5816, 7.5861, 7.5845, 7.6161, 7.6152, 7.6133, 7.6113, 7.6094, 7.6077, 7.6069, 7.6058, 7.6038, 7.6066, 7.6046, 7.6032, 7.6017, 7.6003, 7.5988, 7.5975, 7.5958, 7.594, 7.5921, 7.595, 7.5931, 7.5912, 7.5907, 7.5893, 7.5875, 7.5856, 7.5838, 7.582, 7.58, 7.5782, 7.5765, 7.5747, 7.5727, 7.571, 7.569, 7.572, 7.5702, 7.5784, 7.5765, 7.5902, 7.5931, 7.5919, 7.5945, 7.5925, 7.5906, 7.5892, 7.5875, 7.5857, 7.5841, 7.587, 7.5852, 7.5838, 7.5825, 7.5855, 7.5835, 7.5818, 7.5801, 7.5785, 7.5809, 7.579, 7.5781, 7.5771, 7.5766, 7.5764, 7.5745, 7.5726, 7.5714, 7.5696, 7.5723, 7.5707, 7.5733, 7.5761, 7.5742, 7.5725, 7.5706, 7.5733, 7.5718, 7.5749, 7.5737, 7.5729, 7.5711, 7.5829, 7.5819, 7.5801, 7.5783, 7.5771, 7.5761, 7.5787, 7.5769, 7.5751, 7.5739, 7.5765, 7.5793, 7.5782, 7.5816, 7.5801, 7.5786, 7.5774, 7.5765, 7.5749, 7.5732, 7.5713, 7.5695, 7.5684, 7.567, 7.5699, 7.5728, 7.5753, 7.5742, 7.5725, 7.5736, 7.5718, 7.5709, 7.5658, 7.5641, 7.567, 7.5653, 7.564, 7.5623, 7.5653, 7.5677, 7.5704, 7.5695, 7.5685, 7.5676, 7.5705, 7.569, 7.5685, 7.5683, 7.5665, 7.5654, 7.5637, 7.5625, 7.5664, 7.5617, 7.5601, 7.5627, 7.561, 7.5593, 7.5595, 7.5582, 7.5574, 7.5687, 7.5671, 7.567, 7.5653, 7.5685, 7.5674, 7.5658, 7.564, 7.5622, 7.5612, 7.56, 7.559, 7.5539, 7.5532, 7.5533, 7.5523, 7.5546, 7.5533, 7.5517, 7.5505, 7.5531, 7.5561, 7.5544, 7.553, 7.5513, 7.5497, 7.5491, 7.5529, 7.5518, 7.5509, 7.5494, 7.5521, 7.5547, 7.5538, 7.5527, 7.551, 7.5568, 7.5559, 7.5587, 7.5573, 7.5564, 7.5592, 7.5575, 7.5598, 7.558, 7.5564, 7.5548, 7.5532, 7.5558, 7.5544, 7.5528, 7.5512, 7.5496, 7.5445, 7.5429, 7.5466, 7.5452, 7.5476, 7.5466, 7.5497, 7.5448, 7.5435, 7.5418, 7.5443, 7.5431, 7.5416, 7.5444, 7.5428, 7.5413, 7.5397, 7.5381, 7.5364, 7.5387, 7.537, 7.5354, 7.5339, 7.5363, 7.5347, 7.5371, 7.5362, 7.5347, 7.5369, 7.5366, 7.5352, 7.5342, 7.5333, 7.5356, 7.5345, 7.5337, 7.5328, 7.5352, 7.5376, 7.5359, 7.5346, 7.533, 7.5321, 7.5304, 7.5289, 7.5273, 7.5262, 7.5253, 7.5252, 7.5276, 7.5267, 7.5251, 7.5235, 7.5259, 7.5243, 7.5227, 7.5215, 7.5204, 7.5225, 7.5209, 7.5205, 7.5191, 7.515, 7.5141, 7.5094, 7.5119, 7.5114, 7.51, 7.5084, 7.5085, 7.5073, 7.5058, 7.5042, 7.5027, 7.5011, 7.4996, 7.4998, 7.4997, 7.5019, 7.5005, 7.4996, 7.5, 7.5022, 7.5014, 7.5, 7.4989, 7.5011, 7.5, 7.4985, 7.4973, 7.4962, 7.4951, 7.4937, 7.4963, 7.4987, 7.4972, 7.4996, 7.4987, 7.5012, 7.5036, 7.5098, 7.5092, 7.5077, 7.5029, 7.5018, 7.5008, 7.4998, 7.5028, 7.5022, 7.5049, 7.5037, 7.5032, 7.5056, 7.5045, 7.5041, 7.5033, 7.5055, 7.5077, 7.5062, 7.5049, 7.5034, 7.5057, 7.5087, 7.5072, 7.5057, 7.5042, 7.5033, 7.5019, 7.5013, 7.4998, 7.502, 7.5006, 7.4999, 7.499, 7.5015, 7.5, 7.4986, 7.5008, 7.5001, 7.4986, 7.5009, 7.4998, 7.4986, 7.5005, 7.5029, 7.499, 7.4975, 7.4961, 7.4951, 7.4941, 7.4934, 7.4926, 7.4917, 7.494, 7.493, 7.4885, 7.4906, 7.4895, 7.4883, 7.4907, 7.4899, 7.4891, 7.4883, 7.4906, 7.4892, 7.4912, 7.4933, 7.4926, 7.4911, 7.4901, 7.4927, 7.4953, 7.4941, 7.493, 7.4917, 7.4904, 7.4889, 7.488, 7.4872, 7.4894, 7.4941, 7.4963, 7.4948, 7.494, 7.495, 7.4941, 7.4926, 7.4914, 7.49, 7.4888, 7.488, 7.4901, 7.4922, 7.4915, 7.4904, 7.4893, 7.4882, 7.4871, 7.4861, 7.4849, 7.4837, 7.4822, 7.4811, 7.4802, 7.4788, 7.4809, 7.4799, 7.4878, 7.4901, 7.4894, 7.488, 7.4903, 7.4925, 7.4945, 7.4932, 7.499, 7.4976, 7.4968, 7.4957, 7.4945, 7.4972, 7.4961, 7.4984, 7.4971, 7.4962, 7.4948, 7.4971, 7.4959, 7.4948, 7.4934, 7.4923, 7.4908, 7.4894, 7.4885, 7.4921, 7.4908, 7.4895, 7.4917, 7.5003, 7.499, 7.4983, 7.5005, 7.4991, 7.4984, 7.4973, 7.4995, 7.5052, 7.5041, 7.5003, 7.5027, 7.5014, 7.5001, 7.499, 7.4978, 7.5001, 7.4989, 7.5009, 7.4997, 7.4987, 7.4974, 7.4965, 7.4995, 7.4985, 7.4973, 7.4996, 7.4958, 7.4986, 7.5002, 7.499, 7.4984, 7.497, 7.4956, 7.4949, 7.4939, 7.4927, 7.4913, 7.4899, 7.4904, 7.4868, 7.4856, 7.4845, 7.4832, 7.4821, 7.4814, 7.4801, 7.4822, 7.4849, 7.4836, 7.4828, 7.487, 7.4866, 7.4888, 7.4908, 7.4895, 7.4889, 7.4887, 7.4845, 7.4837, 7.4826, 7.4882, 7.4872, 7.4932, 7.4922, 7.4946, 7.4937, 7.4936, 7.4933, 7.4898, 7.4891, 7.4888, 7.4875, 7.4861, 7.4882, 7.4903, 7.4894, 7.4882, 7.487, 7.4857, 7.4884, 7.4874, 7.4863, 7.4852, 7.4848, 7.4836, 7.4828, 7.4815, 7.4837, 7.4855, 7.485, 7.484, 7.486, 7.4878, 7.4868, 7.4861, 7.4849, 7.4844, 7.4862, 7.4852, 7.4842, 7.4861, 7.4848, 7.4842, 7.4831, 7.4824, 7.4812, 7.4807, 7.4832, 7.482, 7.4809, 7.4806, 7.4804, 7.4797, 7.4786, 7.4776, 7.4798, 7.4792, 7.4779, 7.4766, 7.4754, 7.4743, 7.4731, 7.4719, 7.4706, 7.4699, 7.4719, 7.4711, 7.4732, 7.4719, 7.4709, 7.4729, 7.4717, 7.4705, 7.4726, 7.4717, 7.4704, 7.4724, 7.4744, 7.4764, 7.4751, 7.4738, 7.4756, 7.4744, 7.4733, 7.4721, 7.4766, 7.4753, 7.474, 7.4732, 7.4725, 7.4713, 7.4702, 7.4694, 7.4685, 7.4673, 7.4714, 7.4747, 7.4739, 7.4733, 7.4823, 7.4829, 7.4846, 7.4836, 7.4823, 7.4817, 7.4805, 7.4794, 7.4781, 7.4771, 7.481, 7.4833, 7.4851, 7.487, 7.4859, 7.4852, 7.487, 7.4862, 7.488, 7.4867, 7.4856, 7.4848, 7.4869, 7.4858, 7.4877, 7.4867, 7.4886, 7.4876, 7.4901, 7.489, 7.4912, 7.4901, 7.4889, 7.4877, 7.4895, 7.4913, 7.49, 7.4888, 7.4881, 7.4868, 7.4889, 7.4879, 7.4876, 7.4847, 7.4867, 7.4861, 7.4855, 7.4848, 7.4837, 7.4825, 7.4813, 7.4831, 7.4829, 7.4819, 7.4838, 7.4829, 7.482, 7.4814, 7.4803, 7.4791, 7.4839, 7.4827, 7.4818, 7.4808, 7.4798, 7.4816, 7.4834, 7.4822, 7.4811, 7.4831, 7.4852, 7.4899, 7.4891, 7.4854, 7.4844, 7.4862, 7.4853, 7.4846, 7.4834, 7.4829, 7.4817, 7.4813, 7.4801, 7.4823, 7.4812, 7.48, 7.4818, 7.4806, 7.4794, 7.4813, 7.4801, 7.4793, 7.4782, 7.4772, 7.4794, 7.4811, 7.4829, 7.4823, 7.4841, 7.4858, 7.4849, 7.4865, 7.4884, 7.4875, 7.4868, 7.4862, 7.4905, 7.4894, 7.4858, 7.4876, 7.4864, 7.4855, 7.4848, 7.484, 7.4829, 7.4818, 7.4806, 7.4795, 7.4815, 7.4804, 7.4793, 7.4781, 7.4775, 7.4764, 7.4757, 7.4775, 7.4768, 7.4756, 7.4777, 7.4797, 7.4791, 7.476, 7.484, 7.4828, 7.4854, 7.4915, 7.4933, 7.4925, 7.4918, 7.4907, 7.4899, 7.4888, 7.4876, 7.4865, 7.486, 7.4852, 7.4873, 7.4862, 7.4828, 7.4817, 7.4806, 7.4825, 7.4814, 7.4803, 7.4813, 7.4831, 7.4823, 7.4842, 7.4831, 7.4823, 7.4813, 7.4802, 7.4823, 7.4817, 7.4806, 7.4798, 7.4814, 7.4805, 7.4794, 7.4761, 7.4841, 7.4861, 7.485, 7.4839, 7.4836, 7.4828, 7.4825, 7.4841, 7.4834, 7.4823, 7.4817, 7.4805, 7.4794, 7.4783, 7.4772, 7.4792, 7.4809, 7.4801, 7.485, 7.4839, 7.4828, 7.4846, 7.4839, 7.4829, 7.482, 7.4874, 7.4892, 7.4881, 7.4967, 7.4958, 7.4947, 7.4946, 7.4935, 7.4924, 7.4918, 7.4907, 7.4873, 7.4872, 7.489, 7.4889, 7.4913, 7.4908, 7.4898, 7.4888, 7.4879, 7.4868, 7.4857, 7.4851, 7.484, 7.4832, 7.4849, 7.484, 7.4835, 7.483, 7.4819, 7.481, 7.4799, 7.4789, 7.4806, 7.4802, 7.4792, 7.481, 7.4803, 7.4797, 7.4787, 7.4754, 7.4747, 7.4735, 7.4753, 7.4745, 7.4752, 7.4769, 7.4785, 7.4776, 7.4767, 7.4756, 7.4746, 7.4738, 7.4727, 7.4718, 7.4711, 7.4702, 7.4723, 7.472, 7.4711, 7.4763, 7.4764, 7.4734, 7.4793, 7.4811, 7.48, 7.4794, 7.4812, 7.4806, 7.4798, 7.4811, 7.4802, 7.4793, 7.4786, 7.4776, 7.4765, 7.4756, 7.4751, 7.4747, 7.4765, 7.4781, 7.4775, 7.4793, 7.476, 7.4752, 7.4721, 7.4737, 7.4755, 7.4772, 7.4789, 7.4805, 7.4798, 7.4812, 7.4804, 7.4875, 7.4864, 7.4881, 7.4874, 7.4865, 7.4857, 7.4847, 7.4839, 7.4837, 7.486, 7.485, 7.484, 7.483, 7.4825, 7.4792, 7.4759, 7.4753, 7.4743, 7.4738, 7.4755, 7.4751, 7.4743, 7.4732, 7.4722, 7.4716, 7.4731, 7.4726, 7.4721, 7.472, 7.4711, 7.4726, 7.4715, 7.4739, 7.473, 7.4719, 7.4709, 7.4701, 7.4693, 7.466, 7.4685, 7.4684, 7.4673, 7.4664, 7.4654, 7.4644, 7.4613, 7.4629, 7.4623, 7.4613, 7.4608, 7.4612, 7.4628, 7.4643, 7.4636, 7.4626, 7.4616, 7.4606, 7.4595, 7.459, 7.4583, 7.4573, 7.4569, 7.4586, 7.4603, 7.4597, 7.4588, 7.4606, 7.4596, 7.4589, 7.4604, 7.4597, 7.459, 7.4581, 7.4576, 7.457, 7.4585, 7.4578, 7.4594, 7.4584, 7.46, 7.4589, 7.4603, 7.4597, 7.4588, 7.4586, 7.4579, 7.4572, 7.459, 7.4581, 7.4572, 7.4563, 7.4561, 7.4583, 7.4599, 7.4615, 7.4605, 7.4598, 7.4592, 7.4608, 7.4598, 7.4614, 7.4604, 7.462, 7.461, 7.46, 7.4594, 7.4587, 7.4605, 7.4621, 7.4614, 7.4604, 7.4595, 7.4586, 7.4575, 7.4566, 7.4583, 7.4598, 7.4588, 7.4603, 7.4622, 7.4613, 7.4629, 7.4622, 7.4641, 7.4654, 7.4647, 7.4639, 7.4653, 7.4646, 7.4636, 7.4629, 7.462, 7.4615, 7.4614, 7.4604, 7.4595, 7.4585, 7.4575, 7.4569, 7.456, 7.4557, 7.4573, 7.4589, 7.4579, 7.457, 7.4564, 7.4582, 7.4573, 7.4564, 7.4556, 7.4551, 7.4544, 7.4534, 7.4549, 7.4545, 7.4537, 7.4554, 7.4544, 7.4534, 7.4548, 7.454, 7.4533, 7.455, 7.4541, 7.4535, 7.4532, 7.4527, 7.4523, 7.4538, 7.453, 7.4524, 7.4535, 7.4525, 7.4531, 7.4522, 7.4513, 7.4505, 7.4499, 7.4492, 7.4483, 7.4474, 7.4443, 7.4459, 7.4449, 7.4439, 7.4455, 7.447, 7.4461, 7.4452, 7.4445, 7.4435, 7.445, 7.4445, 7.4452, 7.4468, 7.4461, 7.4476, 7.4467, 7.4457, 7.4448, 7.4462, 7.4595, 7.4586, 7.4576, 7.4594, 7.4618, 7.4635, 7.463, 7.4623, 7.4636, 7.4627, 7.4621, 7.4616, 7.4606, 7.46, 7.4595, 7.4586, 7.4578, 7.4592, 7.4588, 7.4582, 7.4577, 7.457, 7.4565, 7.4583, 7.4574, 7.4591, 7.4581, 7.4574, 7.4568, 7.4558, 7.4551, 7.4544, 7.4558, 7.4549, 7.4541, 7.4557, 7.4551, 7.4521, 7.4491, 7.4481, 7.4499, 7.4491, 7.4461, 7.4481, 7.4451, 7.4443, 7.4458, 7.4452, 7.4468, 7.4473, 7.4465, 7.4456, 7.4448, 7.4443, 7.4434, 7.443, 7.4425, 7.4417, 7.4524, 7.4518, 7.4509, 7.4503, 7.4495, 7.4487, 7.448, 7.4476, 7.4489, 7.4504, 7.4497, 7.4491, 7.4482, 7.4473, 7.4464, 7.446, 7.4451, 7.4466, 7.4463, 7.4477, 7.4467, 7.4482, 7.4472, 7.4467, 7.4502, 7.4493, 7.4483, 7.4476, 7.4491, 7.4505, 7.4497, 7.4491, 7.4481, 7.4501, 7.4494, 7.4492, 7.4489, 7.4484, 7.4475, 7.4467, 7.4457, 7.4471, 7.4486, 7.4477, 7.4476, 7.4468, 7.4464, 7.4457, 7.4471, 7.4463, 7.4454, 7.445, 7.4441, 7.4437, 7.4432, 7.4426, 7.4421, 7.4436, 7.4427, 7.4419, 7.441, 7.4403, 7.4398, 7.4391, 7.4382, 7.4378, 7.4371, 7.438, 7.4375, 7.4377, 7.437, 7.4362, 7.4356, 7.4347, 7.4363, 7.4379, 7.4371, 7.4362, 7.4356, 7.435, 7.4366, 7.4382, 7.4387, 7.4387, 7.4379, 7.4432, 7.443, 7.4425, 7.4421, 7.4434, 7.4426, 7.4419, 7.4412, 7.4407, 7.4399, 7.4393, 7.4407, 7.4398, 7.4389, 7.438, 7.4371, 7.4384, 7.4376, 7.439, 7.4411, 7.4403, 7.4394, 7.4387, 7.4379, 7.4401, 7.4393, 7.4387, 7.4378, 7.4373, 7.4366, 7.436, 7.4374, 7.4369, 7.4362, 7.4353, 7.4368, 7.4383, 7.438, 7.4396, 7.4392, 7.4407, 7.4421, 7.4435, 7.4426, 7.442, 7.4435, 7.4456, 7.4448, 7.4439, 7.4453, 7.4446, 7.4441, 7.4437, 7.4429, 7.4425, 7.4418, 7.4413, 7.4406, 7.4403, 7.4375, 7.4367, 7.436, 7.4352, 7.4344, 7.4358, 7.4351, 7.4342, 7.4334, 7.4326, 7.4319, 7.4315, 7.4351, 7.4365, 7.4358, 7.4354, 7.4349, 7.4344, 7.4337, 7.433, 7.4323, 7.4316, 7.4309, 7.4305, 7.4299, 7.4292, 7.4283, 7.4275, 7.4309, 7.4302, 7.4295, 7.4294, 7.4286, 7.428, 7.4274, 7.4266, 7.4257, 7.425, 7.4242, 7.4234, 7.4226, 7.422, 7.4193, 7.4187, 7.4201, 7.4193, 7.4186, 7.4201, 7.4215, 7.421, 7.4228, 7.4244, 7.4252, 7.4246, 7.4237, 7.425, 7.4242, 7.4276, 7.4289, 7.4281, 7.4294, 7.4286, 7.4278, 7.427, 7.4288, 7.4301, 7.4293, 7.4285, 7.4277, 7.4268, 7.4281, 7.4273, 7.433, 7.4327, 7.4319, 7.4333, 7.4346, 7.4341, 7.4333, 7.4333, 7.4325, 7.4317, 7.4312, 7.4327, 7.4321, 7.4312, 7.4307, 7.43, 7.4292, 7.4284, 7.4297, 7.4293, 7.4287, 7.4305, 7.4298, 7.4291, 7.4328, 7.4322, 7.4335, 7.4327, 7.4324, 7.4318, 7.4333, 7.4326, 7.4318, 7.4314, 7.4328, 7.4321, 7.4317, 7.4309, 7.4301, 7.4293, 7.4308, 7.43, 7.4315, 7.4307, 7.4319, 7.4314, 7.4306, 7.4297, 7.4291, 7.4287, 7.4306, 7.432, 7.4313, 7.4326, 7.4318, 7.4331, 7.4344, 7.4336, 7.4328, 7.4341, 7.4354, 7.4346, 7.434, 7.4333, 7.4329, 7.432, 7.4313, 7.4306, 7.43, 7.4295, 7.4287, 7.428, 7.428, 7.4317, 7.431, 7.4382, 7.4375, 7.4366, 7.4358, 7.437, 7.4361, 7.4356, 7.4349, 7.4362, 7.4375, 7.437, 7.4362, 7.4398, 7.4443, 7.4456, 7.4448, 7.444, 7.4432, 7.4425, 7.4417, 7.443, 7.4426, 7.4418, 7.4409, 7.4401, 7.4395, 7.4388, 7.4401, 7.4415, 7.4407, 7.4399, 7.4393, 7.4385, 7.4398, 7.4389, 7.4402, 7.4395, 7.439, 7.4383, 7.438, 7.4395, 7.4387, 7.4383, 7.4377, 7.4371, 7.4367, 7.4373, 7.4366, 7.4358, 7.4352, 7.4367, 7.44, 7.4393, 7.4386, 7.44, 7.4392, 7.4427, 7.442, 7.4415, 7.4426, 7.4419, 7.4414, 7.4409, 7.4401, 7.4377, 7.4373, 7.4365, 7.4357, 7.4349, 7.4359, 7.4371, 7.4364, 7.4376, 7.4368, 7.4382, 7.4398, 7.439, 7.4384, 7.4376, 7.4371, 7.4383, 7.4395, 7.4391, 7.4383, 7.4397, 7.4389, 7.4381, 7.4373, 7.4419, 7.4434, 7.4427, 7.4419, 7.4431, 7.443, 7.4426, 7.4424, 7.4437, 7.4451, 7.4443, 7.4418, 7.4412, 7.4404, 7.4396, 7.4398, 7.4391, 7.4384, 7.4376, 7.4371, 7.4367, 7.436, 7.4352, 7.4348, 7.4348, 7.4342, 7.4339, 7.4331, 7.4307, 7.4308, 7.4301, 7.4293, 7.4308, 7.4401, 7.44, 7.4395, 7.4407, 7.4399, 7.4392, 7.4385, 7.4377, 7.4375, 7.4367, 7.436, 7.4355, 7.4347, 7.4352, 7.435, 7.4345, 7.4339, 7.4331, 7.4324, 7.4317, 7.431, 7.4303, 7.4314, 7.4316, 7.4308, 7.43, 7.4312, 7.4325, 7.4301, 7.4277, 7.4289, 7.4285, 7.4278, 7.4271, 7.4265, 7.4297, 7.431, 7.4302, 7.4278, 7.427, 7.4282, 7.4295, 7.4289, 7.4402, 7.4434, 7.4448, 7.4452, 7.4464, 7.4457, 7.445, 7.4443, 7.4437, 7.4431, 7.4423, 7.4417, 7.441, 7.4406, 7.4398, 7.4392, 7.4386, 7.4381, 7.4373, 7.4365, 7.4376, 7.4369, 7.4362, 7.4355, 7.4363, 7.4381, 7.4373, 7.4368, 7.4382, 7.4417, 7.4411, 7.4412, 7.4405, 7.4399, 7.4413, 7.4413, 7.441, 7.4422, 7.4416, 7.4432, 7.4446, 7.4441, 7.4441, 7.4434, 7.4429, 7.4406, 7.4399, 7.4414, 7.4427, 7.444, 7.4434, 7.4433, 7.4446, 7.444, 7.4451, 7.4445, 7.4456, 7.4451, 7.4489, 7.4483, 7.4476, 7.4473, 7.4468, 7.4464, 7.4461, 7.4456, 7.4451, 7.4446, 7.4441, 7.4453, 7.4445, 7.4438, 7.4417, 7.443, 7.4423, 7.4418, 7.441, 7.4406, 7.4421, 7.4416, 7.4412, 7.4404, 7.4403, 7.4398, 7.4412, 7.4427, 7.4424, 7.4437, 7.4433, 7.4446, 7.4442, 7.4435, 7.4427, 7.4421, 7.4488, 7.4502, 7.4495, 7.4509, 7.4502, 7.4498, 7.4492, 7.4486, 7.4481, 7.4473, 7.4484, 7.448, 7.4474, 7.4471, 7.4466, 7.4461, 7.4454, 7.4448, 7.4444, 7.444, 7.4452, 7.4464, 7.4458, 7.4469, 7.4481, 7.4458, 7.4453, 7.4447, 7.444, 7.4417, 7.441, 7.4402, 7.4398, 7.4412, 7.4425, 7.4422, 7.4434, 7.4427, 7.442, 7.4413, 7.4408, 7.4401, 7.4394, 7.4406, 7.4421, 7.4416, 7.4409, 7.4402, 7.4415, 7.4427, 7.4422, 7.4417, 7.441, 7.4404, 7.4398, 7.4392, 7.4384, 7.4397, 7.4393, 7.4403, 7.4415, 7.4428, 7.4431, 7.4423, 7.4433, 7.4446, 7.4439, 7.4431, 7.4443, 7.4444, 7.4437, 7.4449, 7.4464, 7.4479, 7.448, 7.4475, 7.4488, 7.4484, 7.448, 7.4476, 7.4514, 7.4514, 7.4534, 7.4549, 7.4543, 7.4537, 7.4537, 7.463, 7.4624, 7.4616, 7.4609, 7.4604, 7.4597, 7.4592, 7.4592, 7.4585, 7.4581, 7.4559, 7.457, 7.4564, 7.4557, 7.4557, 7.455, 7.4545, 7.4538, 7.453, 7.4527, 7.4525, 7.4518, 7.453, 7.4542, 7.4534, 7.4527, 7.4525, 7.4556, 7.4568, 7.4582, 7.4576, 7.4569, 7.4565, 7.4576, 7.4569, 7.4564, 7.4576, 7.4573, 7.4566, 7.4559, 7.4582, 7.4592, 7.4603, 7.4595, 7.4607, 7.4601, 7.4611, 7.459, 7.4583, 7.4595, 7.4607, 7.4587, 7.458, 7.4574, 7.4591, 7.4605, 7.4584, 7.458, 7.4595, 7.4605, 7.4602, 7.4594, 7.4605, 7.4597, 7.4592, 7.4588, 7.4581, 7.4594, 7.4589, 7.4616, 7.4627, 7.4621, 7.4633, 7.463, 7.4624, 7.4617, 7.4614, 7.4617, 7.4617, 7.461, 7.4604, 7.4597, 7.4592, 7.4586, 7.4598, 7.4591, 7.4583, 7.4595, 7.4591, 7.4604, 7.46, 7.4598, 7.4592, 7.4603, 7.4585, 7.4581, 7.4574, 7.4567, 7.4579, 7.4573, 7.4573, 7.4566, 7.4563, 7.4575, 7.4568, 7.4561, 7.4554, 7.4547, 7.4557, 7.4557, 7.4551, 7.4563, 7.4576, 7.457, 7.4563, 7.4558, 7.4552, 7.4548, 7.4543, 7.4536, 7.453, 7.4525, 7.4519, 7.4611, 7.4605, 7.4601, 7.4598, 7.4592, 7.4603, 7.4664, 7.4693, 7.4687, 7.4705, 7.4712, 7.4725, 7.4719, 7.4712, 7.4706, 7.4704, 7.4697, 7.469, 7.4686, 7.4681, 7.4676, 7.4673, 7.4666, 7.4661, 7.4671, 7.4664, 7.466, 7.4655, 7.4648, 7.4643, 7.4636, 7.463, 7.4623, 7.4616, 7.4611, 7.4606, 7.4618, 7.4611, 7.4623, 7.4618, 7.4613, 7.462, 7.4613, 7.4624, 7.4635, 7.4628, 7.4641, 7.4654, 7.4649, 7.4643, 7.4636, 7.4632, 7.4626, 7.4623, 7.462, 7.4615, 7.461, 7.4621, 7.4618, 7.4628, 7.4643, 7.4638, 7.4652, 7.4664, 7.4659, 7.4655, 7.4667, 7.4664, 7.466, 7.4655, 7.4667, 7.466, 7.4653, 7.4664, 7.4657, 7.4651, 7.4644, 7.4637, 7.4631, 7.4626, 7.4619, 7.4615, 7.4608, 7.4601, 7.4595, 7.4575, 7.4568, 7.4563, 7.4556, 7.4549, 7.4544, 7.4537, 7.453, 7.4525, 7.4519, 7.4516, 7.451, 7.4504, 7.4498, 7.4492, 7.4485, 7.448, 7.4477, 7.4488, 7.4483, 7.4479, 7.4472, 7.4466, 7.4477, 7.4471, 7.4466, 7.446, 7.4454, 7.4449, 7.4463, 7.4457, 7.4468, 7.4462, 7.4455, 7.4464, 7.4457, 7.4451, 7.4445, 7.4439, 7.4435, 7.4429, 7.4423, 7.4418, 7.4412, 7.4406, 7.4401, 7.4394, 7.4389, 7.4383, 7.4377, 7.4389, 7.4399, 7.4393, 7.4373, 7.4352, 7.4338, 7.4331, 7.4329, 7.4308, 7.432, 7.4315, 7.4308, 7.4303, 7.4296, 7.4289, 7.4285, 7.4278, 7.4273, 7.4268, 7.4262, 7.4256, 7.4251, 7.4249, 7.4248, 7.4243, 7.4237, 7.423, 7.4223, 7.4202, 7.4195, 7.4189, 7.4183, 7.4178, 7.4171, 7.4155, 7.4155, 7.4149, 7.4144, 7.4137, 7.4131, 7.4126, 7.4139, 7.4134, 7.4145, 7.4155, 7.4161, 7.4157, 7.4152, 7.4163, 7.4156, 7.4135, 7.4133, 7.4128, 7.4125, 7.4136, 7.4115, 7.4108, 7.4105, 7.4115, 7.4144, 7.4141, 7.412, 7.4114, 7.4107, 7.4117, 7.4114, 7.4107, 7.4117, 7.4111, 7.4105, 7.4115, 7.4109, 7.4105, 7.4098, 7.4092, 7.4085, 7.4082, 7.4092, 7.4085, 7.4095, 7.4139, 7.4134, 7.4145, 7.4155, 7.4166, 7.4177, 7.4173, 7.4167, 7.416, 7.4171, 7.4182, 7.4178, 7.4193, 7.4189, 7.4169, 7.418, 7.4174, 7.4168, 7.4162, 7.4157, 7.4151, 7.4146, 7.4159, 7.4152, 7.4145, 7.4142, 7.4136, 7.4133, 7.4131, 7.4125, 7.4135, 7.4129, 7.4125, 7.4122, 7.4116, 7.4111, 7.4137, 7.4165, 7.4194, 7.4188, 7.4169, 7.422, 7.4214, 7.4211, 7.419, 7.4185, 7.418, 7.4175, 7.4169, 7.4179, 7.4173, 7.4169, 7.4163, 7.416, 7.4155, 7.4149, 7.4144, 7.4141, 7.4153, 7.4147, 7.414, 7.4135, 7.413, 7.4124, 7.4118, 7.4114, 7.4125, 7.4119, 7.4113, 7.4109, 7.4106, 7.4117, 7.4111, 7.4108, 7.4122, 7.4116, 7.4115, 7.411, 7.4108, 7.4119, 7.412, 7.412, 7.4116, 7.411, 7.4104, 7.4098, 7.4092, 7.4103, 7.4097, 7.4091, 7.4086, 7.4095, 7.4106, 7.4123, 7.4134, 7.4131, 7.4125, 7.4122, 7.4117, 7.4112, 7.4107, 7.4104, 7.4101, 7.4097, 7.4172, 7.4183, 7.418, 7.4191, 7.4188, 7.4198, 7.4178, 7.4159, 7.4154, 7.4148, 7.4159, 7.4169, 7.4165, 7.416, 7.4154, 7.415, 7.4145, 7.4155, 7.4148, 7.4145, 7.4139, 7.412, 7.4118, 7.4129, 7.4139, 7.4133, 7.4126, 7.412, 7.4114, 7.4124, 7.4118, 7.4114, 7.4113, 7.4123, 7.415, 7.4147, 7.4142, 7.4154, 7.4149, 7.4144, 7.4139, 7.4133, 7.4127, 7.4127, 7.4121, 7.4119, 7.4099, 7.4096, 7.4112, 7.4122, 7.4117, 7.4111, 7.4112, 7.411, 7.4104, 7.4099, 7.4093, 7.4092, 7.4086, 7.408, 7.4074, 7.4115, 7.4109, 7.4103, 7.4114, 7.4117, 7.4112, 7.4122, 7.4117, 7.4111, 7.4107, 7.4117, 7.4111, 7.4121, 7.4115, 7.4125, 7.4121, 7.4116, 7.4125, 7.412, 7.4114, 7.4123, 7.4119, 7.413, 7.4139, 7.4133, 7.4127, 7.4142, 7.4136, 7.4146, 7.4141, 7.4151, 7.4146, 7.4141, 7.415, 7.4144, 7.4139, 7.4136, 7.413, 7.414, 7.4136, 7.4131, 7.4126, 7.4122, 7.4116, 7.411, 7.412, 7.413, 7.4124, 7.4118, 7.4112, 7.4106, 7.41, 7.4094, 7.4088, 7.4082, 7.4079, 7.4073, 7.4068, 7.4078, 7.4089, 7.4084, 7.4078, 7.4075, 7.4087, 7.4081, 7.4075, 7.407, 7.4064, 7.406, 7.4054, 7.4065, 7.4059, 7.4053, 7.4132, 7.4128, 7.4122, 7.4118, 7.4112, 7.4109, 7.4106, 7.41, 7.4095, 7.4093, 7.4087, 7.4081, 7.4079, 7.4075, 7.4069, 7.4064, 7.4058, 7.4069, 7.4064, 7.4075, 7.407, 7.4082, 7.4092, 7.4086, 7.4131, 7.4142, 7.4123, 7.4134, 7.4145, 7.4139, 7.4137, 7.4131, 7.413, 7.4126, 7.4121, 7.4116, 7.4128, 7.4124, 7.4136, 7.4133, 7.413, 7.4125, 7.4121, 7.4117, 7.4111, 7.4107, 7.4117, 7.4115, 7.411, 7.4106, 7.41, 7.4096, 7.4091, 7.4086, 7.4067, 7.4063, 7.4058, 7.4066, 7.406, 7.407, 7.4079, 7.4077, 7.4071, 7.408, 7.4075, 7.407, 7.4066, 7.4064, 7.4059, 7.4053, 7.405, 7.4045, 7.4039, 7.4034, 7.403, 7.4024, 7.402, 7.4025, 7.4023, 7.4019, 7.4013, 7.4013, 7.4022, 7.4031, 7.4025, 7.4064, 7.4087, 7.4084, 7.4081, 7.4075, 7.4077, 7.4073, 7.4068, 7.4078, 7.4073, 7.4069, 7.4064, 7.4063, 7.406, 7.407, 7.4067, 7.4077, 7.4059, 7.4054, 7.405, 7.4044, 7.4053, 7.4049, 7.4043, 7.4037, 7.4032, 7.4039, 7.4034, 7.4043, 7.4039, 7.4035, 7.403, 7.4026, 7.4023, 7.4018, 7.4013, 7.4009, 7.4003, 7.4001, 7.3997, 7.4007, 7.4002, 7.3998, 7.4023, 7.4033, 7.4029, 7.4039, 7.4048, 7.4043, 7.4038, 7.4033, 7.4027, 7.4023, 7.4019, 7.4016, 7.4011, 7.4007, 7.4017, 7.4015, 7.4011, 7.4006, 7.4, 7.3999, 7.3997, 7.3993, 7.399, 7.3986, 7.3996, 7.3993, 7.3989, 7.3984, 7.3978, 7.3974, 7.3968, 7.3963, 7.396, 7.3971, 7.3981, 7.3976, 7.3987, 7.3982, 7.3977, 7.3972, 7.3966, 7.3962, 7.396, 7.3954, 7.3948, 7.3943, 7.3937, 7.3946, 7.3942, 7.3939, 7.3948, 7.3943, 7.3938, 7.3937, 7.3937, 7.3934, 7.3929, 7.3924, 7.3919, 7.3914, 7.3909, 7.3904, 7.3899, 7.3909, 7.3907, 7.3903, 7.3898, 7.3894, 7.389, 7.3884, 7.3895, 7.3895, 7.3892, 7.389, 7.389, 7.3887, 7.3897, 7.3892, 7.3886, 7.3882, 7.3881, 7.3894, 7.3889, 7.3922, 7.3918, 7.3916, 7.3911, 7.3906, 7.3901, 7.3897, 7.3892, 7.3893, 7.3888, 7.3884, 7.3895, 7.389, 7.3886, 7.3881, 7.3891, 7.3874, 7.3871, 7.3881, 7.3877, 7.3872, 7.3882, 7.388, 7.389, 7.3899, 7.3896, 7.3907, 7.3902, 7.3897, 7.3898, 7.3893, 7.3888, 7.3882, 7.3885, 7.3896, 7.3894, 7.3903, 7.3898, 7.3894, 7.3889, 7.3884, 7.3882, 7.3891, 7.3887, 7.3882, 7.3877, 7.3873, 7.3869, 7.3864, 7.3876, 7.3885, 7.388, 7.3875, 7.387, 7.3881, 7.3876, 7.3885, 7.388, 7.3874, 7.3883, 7.388, 7.3881, 7.3878, 7.3873, 7.3868, 7.3863, 7.3863, 7.3876, 7.3871, 7.3866, 7.3861, 7.3856, 7.3852, 7.3861, 7.387, 7.3869, 7.3865, 7.3874, 7.3883, 7.3879, 7.3887, 7.3884, 7.3894, 7.389, 7.3886, 7.3901, 7.3897, 7.3893, 7.3889, 7.3901, 7.391, 7.3905, 7.3902, 7.3899, 7.3894, 7.3891, 7.39, 7.39, 7.3921, 7.3916, 7.3911, 7.3927, 7.3939, 7.3933, 7.393, 7.3926, 7.3921, 7.3916, 7.3924, 7.3933, 7.3929, 7.3923, 7.3918, 7.3926, 7.3911, 7.3897, 7.3891, 7.3888, 7.3883, 7.3866, 7.3862, 7.3859, 7.3855, 7.3863, 7.3858, 7.3853, 7.385, 7.3845, 7.3843, 7.3853, 7.3862, 7.3857, 7.3855, 7.385, 7.386, 7.3866, 7.3875, 7.3884, 7.3882, 7.3877, 7.3872, 7.3869, 7.3863, 7.3858, 7.3855, 7.3851, 7.386, 7.3854, 7.3849, 7.3863, 7.3861, 7.3871, 7.388, 7.3875, 7.3871, 7.3867, 7.3878, 7.3877, 7.3873, 7.3874, 7.3871, 7.3866, 7.3861, 7.3856, 7.3854, 7.3849, 7.386, 7.3855, 7.3852, 7.385, 7.3847, 7.3844, 7.3839, 7.3848, 7.3844, 7.3882, 7.3878, 7.3861, 7.3857, 7.3852, 7.3847, 7.3842, 7.3837, 7.3832, 7.3831, 7.3827, 7.3822, 7.3823, 7.3832, 7.3828, 7.3825, 7.3816, 7.3811, 7.3805, 7.38, 7.3808, 7.3803, 7.3798, 7.3807, 7.3791, 7.3786, 7.3795, 7.379, 7.3773, 7.3768, 7.3763, 7.3758, 7.3753, 7.3748, 7.3758, 7.3755, 7.375, 7.3746, 7.3756, 7.3751, 7.376, 7.3786, 7.3797, 7.3806, 7.3801, 7.3799, 7.3796, 7.3805, 7.3813, 7.3821, 7.3817, 7.3812, 7.3807, 7.3804, 7.3799, 7.3794, 7.3803, 7.38, 7.3796, 7.3791, 7.3791, 7.3869, 7.3866, 7.3904, 7.39, 7.3909, 7.3905, 7.3903, 7.3899, 7.3896, 7.389, 7.3886, 7.3881, 7.3876, 7.3885, 7.388, 7.3889, 7.3888, 7.3888, 7.3884, 7.388, 7.3876, 7.3899, 7.3909, 7.3921, 7.3945, 7.3944, 7.394, 7.3944, 7.3941, 7.3978, 7.4, 7.3998, 7.4007, 7.4002, 7.4024, 7.4019, 7.4017, 7.4015, 7.4025, 7.4021, 7.4021, 7.4016, 7.4011, 7.4007, 7.4002, 7.3997, 7.3992, 7.3989, 7.3985, 7.3995, 7.399, 7.3987, 7.3982, 7.3979, 7.3976, 7.3985, 7.398, 7.3977, 7.3985, 7.398, 7.3992, 7.3987, 7.3986, 7.3982, 7.3969, 7.3976, 7.3973, 7.397, 7.3965, 7.3962, 7.3971, 7.3968, 7.3966, 7.3993, 7.3991, 7.3989, 7.3985, 7.398, 7.3976, 7.3974, 7.3969, 7.3967, 7.3963, 7.396, 7.3957, 7.3952, 7.3947, 7.3955, 7.395, 7.3947, 7.3942, 7.3926, 7.3921, 7.3929, 7.3937, 7.3935, 7.3934, 7.3935, 7.3935, 7.3931, 7.3939, 7.395, 7.3947, 7.3956, 7.3953, 7.3949, 7.3944, 7.3952, 7.395, 7.3945, 7.3942, 7.3926, 7.3922, 7.3917, 7.3926, 7.3924, 7.392, 7.3916, 7.3912, 7.3907, 7.3907, 7.3902, 7.3899, 7.3882, 7.389, 7.3898, 7.3906, 7.389, 7.3887, 7.3882, 7.3877, 7.3872, 7.387, 7.3865, 7.386, 7.3855, 7.3851, 7.386, 7.3861, 7.387, 7.3868, 7.3878, 7.3873, 7.387, 7.3867, 7.3863, 7.3874, 7.387, 7.3865, 7.3861, 7.3856, 7.3909, 7.3905, 7.3913, 7.3898, 7.3895, 7.3903, 7.3912, 7.3907, 7.3902, 7.3898, 7.3905, 7.3902, 7.3899, 7.3901, 7.3898, 7.3893, 7.3888, 7.3885, 7.3881, 7.3877, 7.3886, 7.3881, 7.3876, 7.3874, 7.3869, 7.3867, 7.3862, 7.3857, 7.3852, 7.3861, 7.3857, 7.3856, 7.3852, 7.3847, 7.3849, 7.387, 7.3884, 7.388, 7.3879, 7.3874, 7.3869, 7.3868, 7.3866, 7.3863, 7.3871, 7.3868, 7.3903, 7.39, 7.3897, 7.3893, 7.3892, 7.3887, 7.3871, 7.3871, 7.3866, 7.3861, 7.3856, 7.3852, 7.3847, 7.3843, 7.384, 7.3836, 7.3834, 7.3832, 7.3827, 7.3823, 7.382, 7.3816, 7.3811, 7.3807, 7.3802, 7.3786, 7.377, 7.3767, 7.3803, 7.3813, 7.3838, 7.3833, 7.3817, 7.3813, 7.3811, 7.3808, 7.3816, 7.3814, 7.3823, 7.3818, 7.3813, 7.3821, 7.3821, 7.3816, 7.3811, 7.382, 7.3827, 7.3822, 7.3818, 7.3814, 7.3809, 7.3807, 7.3809, 7.3804, 7.3801, 7.3799, 7.3796, 7.3795, 7.3792, 7.3788, 7.3783, 7.3778, 7.3775, 7.3774, 7.377, 7.377, 7.3779, 7.3776, 7.3772, 7.378, 7.3788, 7.3783, 7.3792, 7.3801, 7.381, 7.3806, 7.3814, 7.381, 7.3807, 7.3792, 7.3788, 7.3787, 7.3782, 7.3777, 7.3772, 7.378, 7.3777, 7.3785, 7.3781, 7.3777, 7.3774, 7.3771, 7.3766, 7.3762, 7.3746, 7.3755, 7.3763, 7.3759, 7.3755, 7.3752, 7.376, 7.3769, 7.3765, 7.3784, 7.3779, 7.3788, 7.3783, 7.3779, 7.3774, 7.377, 7.3765, 7.3762, 7.3759, 7.3757, 7.3756, 7.3774, 7.377, 7.3766, 7.3775, 7.377, 7.3768, 7.3766, 7.3761, 7.3758, 7.3753, 7.3762, 7.3759, 7.3755, 7.3752, 7.375, 7.3745, 7.3741, 7.3751, 7.3749, 7.3745, 7.374, 7.3748, 7.3748, 7.3744, 7.374, 7.3735, 7.3722, 7.373, 7.3729, 7.3725, 7.3721, 7.3728, 7.3736, 7.3731, 7.3739, 7.3738, 7.3746, 7.3753, 7.3748, 7.3744, 7.3739, 7.3735, 7.373, 7.3725, 7.3721, 7.3706, 7.3691, 7.3688, 7.3696, 7.3694, 7.3704, 7.3711, 7.3706, 7.3702, 7.3698, 7.3707, 7.3703, 7.3712, 7.38, 7.3796, 7.383, 7.3826, 7.3822, 7.3829, 7.3837, 7.3869, 7.3864, 7.3866, 7.3862, 7.3858, 7.3854, 7.3862, 7.3858, 7.3868, 7.3864, 7.386, 7.3845, 7.384, 7.3838, 7.3849, 7.3847, 7.3844, 7.3844, 7.3854, 7.3856, 7.3857, 7.3852, 7.3877, 7.3888, 7.3885, 7.3894, 7.3892, 7.3888, 7.3884, 7.3881, 7.3879, 7.3875, 7.3874, 7.3869, 7.3867, 7.3863, 7.3871, 7.3867, 7.3864, 7.3859, 7.3866, 7.3888, 7.3883, 7.3878, 7.3874, 7.3882, 7.389, 7.3888, 7.3885, 7.3885, 7.388, 7.3877, 7.3885, 7.3883, 7.3878, 7.3874, 7.3872, 7.3868, 7.3903, 7.3899, 7.3908, 7.3917, 7.3914, 7.3911, 7.3908, 7.3904, 7.39, 7.3908, 7.3905, 7.39, 7.3895, 7.3903, 7.3901, 7.3908, 7.3903, 7.39, 7.3895, 7.3893, 7.3896, 7.3891, 7.3886, 7.3883, 7.3879, 7.3876, 7.3872, 7.3868, 7.3873, 7.3858, 7.3855, 7.385, 7.3845, 7.3842, 7.3839, 7.3834, 7.383, 7.384, 7.3862, 7.3858, 7.3856, 7.3851, 7.3847, 7.3855, 7.3854, 7.3862, 7.3858, 7.3855, 7.3851, 7.3846, 7.3842, 7.3839, 7.3836, 7.3834, 7.3829, 7.3814, 7.381, 7.3817, 7.3814, 7.3809, 7.3806, 7.3802, 7.3787, 7.3785, 7.378, 7.3766, 7.3784, 7.3782, 7.3782, 7.3779, 7.3774, 7.3781, 7.3788, 7.3785, 7.3793, 7.38, 7.3798, 7.3795, 7.3791, 7.3787, 7.3782, 7.3768, 7.3753, 7.3749, 7.3745, 7.3743, 7.3751, 7.375, 7.3758, 7.3755, 7.3751, 7.3747, 7.3742, 7.3739, 7.3746, 7.3745, 7.3752, 7.3748, 7.3744, 7.3742, 7.3738, 7.3734, 7.373, 7.3721, 7.3717, 7.3714, 7.3716, 7.3701, 7.3724, 7.3736, 7.3744, 7.379, 7.3787, 7.3782, 7.3779, 7.3776, 7.3772, 7.3768, 7.3764, 7.3759, 7.3765, 7.3773, 7.378, 7.3775, 7.3783, 7.3779, 7.3766, 7.3775, 7.3774, 7.3796, 7.3792, 7.3789, 7.3797, 7.3841, 7.3838, 7.3834, 7.383, 7.3828, 7.3825, 7.3837, 7.3848, 7.3833, 7.383, 7.3817, 7.3813, 7.3822, 7.3826, 7.3822, 7.3821, 7.382, 7.3819, 7.3815, 7.3813, 7.3811, 7.3809, 7.3818, 7.3803, 7.3791, 7.3777, 7.3797, 7.3793, 7.379, 7.3788, 7.3784, 7.3783, 7.3786, 7.3784, 7.3784, 7.3792, 7.3788, 7.3784, 7.3784, 7.3793, 7.3792, 7.3788, 7.3785, 7.3784, 7.3792, 7.38, 7.3798, 7.3795, 7.3793, 7.3789, 7.3784, 7.378, 7.3778, 7.3774, 7.3772, 7.3781, 7.377, 7.3766, 7.3764, 7.375, 7.3746, 7.3754, 7.3751, 7.3746, 7.3755, 7.3751, 7.3758, 7.3754, 7.374, 7.3737, 7.3734, 7.373, 7.3739, 7.3736, 7.3744, 7.3752, 7.3747, 7.3743, 7.3739, 7.3734, 7.3738, 7.3748, 7.3746, 7.3742, 7.3738, 7.3735, 7.3731, 7.3728, 7.3723, 7.3719, 7.3714, 7.371, 7.3718, 7.3714, 7.3722, 7.3718, 7.3716, 7.3723, 7.3724, 7.3731, 7.3726, 7.3722, 7.3718, 7.3714, 7.3714, 7.3711, 7.3707, 7.3703, 7.3711, 7.3709, 7.3705, 7.3702, 7.3698, 7.3705, 7.3712, 7.3709, 7.3705, 7.3701, 7.3699, 7.3697, 7.3694, 7.3691, 7.3691, 7.3678, 7.3674, 7.3669, 7.3666, 7.3663, 7.3659, 7.3666, 7.3665, 7.3672, 7.3679, 7.3675, 7.3671, 7.3678, 7.3685, 7.3681, 7.3677, 7.3685, 7.3683, 7.3678, 7.3677, 7.3685, 7.3681, 7.3689, 7.3685, 7.3692, 7.3689, 7.3685, 7.3682, 7.3691, 7.3687, 7.3685, 7.3692, 7.3688, 7.3684, 7.3696, 7.3693, 7.3689, 7.3685, 7.3681, 7.3678, 7.3674, 7.3683, 7.368, 7.3677, 7.3673, 7.3669, 7.3666, 7.3673, 7.3662, 7.3658, 7.3665, 7.3661, 7.3657, 7.3664, 7.3661, 7.367, 7.3678, 7.3677, 7.3673, 7.3669, 7.3677, 7.3673, 7.3669, 7.3666, 7.3663, 7.3671, 7.3669, 7.3666, 7.3663, 7.3672, 7.3684, 7.368, 7.3679, 7.3676, 7.3674, 7.366, 7.367, 7.3668, 7.3665, 7.3677, 7.3674, 7.367, 7.3668, 7.3664, 7.3661, 7.3659, 7.3658, 7.3668, 7.3664, 7.3671, 7.3667, 7.3663, 7.3659, 7.3655, 7.3662, 7.3658, 7.3662, 7.3658, 7.3665, 7.3651, 7.3651, 7.3657, 7.3664, 7.366, 7.3678, 7.3697, 7.3693, 7.3689, 7.3685, 7.3681, 7.3688, 7.3683, 7.369, 7.3687, 7.3683, 7.368, 7.3676, 7.3689, 7.3686, 7.3682, 7.37, 7.3708, 7.3704, 7.3711, 7.3707, 7.3703, 7.3697, 7.3699, 7.3706, 7.3704, 7.37, 7.3686, 7.3682, 7.3678, 7.3674, 7.3669, 7.3666, 7.3674, 7.367, 7.3667, 7.3663, 7.366, 7.3656, 7.3652, 7.3649, 7.3646, 7.3642, 7.3649, 7.3656, 7.3654, 7.3651, 7.3647, 7.3643, 7.3639, 7.3635, 7.3633, 7.3632, 7.3628, 7.3623, 7.3619, 7.3628, 7.3626, 7.3622, 7.3618, 7.3625, 7.3621, 7.3617, 7.3614, 7.3611, 7.3618, 7.3625, 7.3633, 7.3619, 7.3617, 7.3627, 7.3623, 7.3619, 7.3615, 7.3622, 7.3623, 7.361, 7.3606, 7.3624, 7.3688, 7.3686, 7.3682, 7.3678, 7.3685, 7.3682, 7.369, 7.3686, 7.3682, 7.3678, 7.3674, 7.367, 7.3668, 7.3668, 7.3666, 7.3668, 7.3666, 7.3674, 7.3682, 7.369, 7.3698, 7.3695, 7.3703, 7.3699, 7.3702, 7.3691, 7.3708, 7.3704, 7.37, 7.3707, 7.3704, 7.37, 7.3697, 7.3705, 7.3703, 7.3699, 7.3698, 7.3696, 7.3692, 7.3692, 7.3689, 7.3685, 7.3681, 7.3678, 7.3675, 7.3671, 7.3667, 7.3671, 7.3668, 7.3665, 7.3662, 7.3661, 7.3669, 7.3667, 7.3666, 7.3662, 7.366, 7.3656, 7.3652, 7.3649, 7.3673, 7.3671, 7.3658, 7.3666, 7.3674, 7.3671, 7.3667, 7.3664, 7.3664, 7.3661, 7.3659, 7.3709, 7.3716, 7.3713, 7.372, 7.3716, 7.3712, 7.3708, 7.3708, 7.3705, 7.3718, 7.3714, 7.371, 7.3717, 7.3724, 7.3742, 7.3729, 7.3726, 7.3723, 7.3722, 7.3718, 7.3715, 7.3723, 7.372, 7.3716, 7.3723, 7.3719, 7.3715, 7.3711, 7.3718, 7.3725, 7.3732, 7.3739, 7.3735, 7.3742, 7.3739, 7.3738, 7.3736, 7.3733, 7.3729, 7.3725, 7.3721, 7.3717, 7.3704, 7.37, 7.3709, 7.3714, 7.371, 7.3717, 7.3724, 7.3721, 7.3739, 7.3767, 7.3764, 7.3772, 7.3768, 7.3764, 7.3762, 7.3768, 7.3775, 7.3782, 7.3779, 7.3775, 7.3771, 7.3779, 7.3787, 7.3775, 7.3771, 7.3767, 7.3764, 7.3771, 7.3768, 7.3764, 7.3771, 7.3778, 7.3775, 7.3771, 7.378, 7.3776, 7.3773, 7.3769, 7.3766, 7.3763, 7.3771, 7.3767, 7.3768, 7.3803, 7.3811, 7.3807, 7.3804, 7.38, 7.3796, 7.3793, 7.379, 7.3789, 7.3798, 7.3795, 7.3801, 7.3798, 7.3805, 7.3803, 7.38, 7.3796, 7.3792, 7.3788, 7.3784, 7.3835, 7.3832, 7.3828, 7.3824, 7.382, 7.3818, 7.3815, 7.3811, 7.3807, 7.3803, 7.38, 7.3797, 7.3793, 7.3801, 7.3797, 7.3804, 7.3802, 7.3798, 7.3806, 7.3803, 7.3802, 7.3799, 7.3813, 7.3811, 7.3809, 7.3806, 7.3805, 7.3803, 7.3791, 7.3791, 7.3789, 7.3786, 7.3782, 7.3779, 7.3765, 7.3764, 7.376, 7.3756, 7.3763, 7.3759, 7.3756, 7.3743, 7.374, 7.375, 7.3769, 7.3767, 7.3767, 7.3766, 7.3762, 7.3758, 7.3755, 7.3753, 7.3753, 7.375, 7.3757, 7.3754, 7.3752, 7.375, 7.3746, 7.3744, 7.3747, 7.3754, 7.375, 7.3746, 7.3733, 7.373, 7.3738, 7.3734, 7.373, 7.3738, 7.3746, 7.3742, 7.3749, 7.3747, 7.3744, 7.375, 7.3748, 7.3744, 7.374, 7.3737, 7.3733, 7.373, 7.3727, 7.3725, 7.3722, 7.3719, 7.3715, 7.3713, 7.3723, 7.3719, 7.3716, 7.3716, 7.3713, 7.3709, 7.3705, 7.3703, 7.3702, 7.3699, 7.3696, 7.3693, 7.37, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.3692, 7.369, 7.3688, 7.3686, 7.3683, 7.3679, 7.3685, 7.3682, 7.3689, 7.3685, 7.3683, 7.3679, 7.3719, 7.3715, 7.3713, 7.3709, 7.3706, 7.3693, 7.3689, 7.3687, 7.3683, 7.3679, 7.3676, 7.3683, 7.3681, 7.3677, 7.3706, 7.3704, 7.37, 7.3697, 7.3693, 7.369, 7.3686, 7.3683, 7.3682, 7.3679, 7.3678, 7.3674, 7.3681, 7.3668, 7.3664, 7.366, 7.3656, 7.3652, 7.3649, 7.3646, 7.3642, 7.3652, 7.3648, 7.3646, 7.3642, 7.3639, 7.3637, 7.3644, 7.364, 7.3637, 7.3643, 7.3641, 7.3637, 7.3635, 7.3631, 7.3629, 7.3625, 7.3622, 7.3618, 7.3625, 7.3654, 7.3651, 7.3647, 7.3645, 7.3643, 7.364, 7.3648, 7.3636, 7.3635, 7.3631, 7.3627, 7.3624, 7.362, 7.3627, 7.3623, 7.362, 7.3625, 7.3621, 7.3618, 7.3615, 7.3614, 7.3612, 7.3609, 7.3605, 7.3601, 7.3608, 7.3616, 7.3604, 7.3612, 7.361, 7.3606, 7.3614, 7.362, 7.3618, 7.3625, 7.3627, 7.3624, 7.3623, 7.362, 7.3617, 7.3649, 7.3658, 7.3655, 7.3651, 7.367, 7.3677, 7.3685, 7.3681, 7.3678, 7.3684, 7.3681, 7.3679, 7.3678, 7.3685, 7.3681, 7.3679, 7.3676, 7.3672, 7.3669, 7.3667, 7.3667, 7.3655, 7.3651, 7.3648, 7.3644, 7.3641, 7.3638, 7.3645, 7.3643, 7.364, 7.3638, 7.3638, 7.3634, 7.364, 7.3627, 7.3634, 7.3631, 7.3628, 7.3626, 7.3623, 7.3619, 7.3618, 7.3615, 7.3612, 7.3615, 7.3612, 7.3609, 7.3615, 7.3612, 7.362, 7.3617, 7.3624, 7.3621, 7.3628, 7.3635, 7.3632, 7.3628, 7.3615, 7.3612, 7.3608, 7.3605, 7.3601, 7.3608, 7.3604, 7.3603, 7.3664, 7.3671, 7.3669, 7.3686, 7.3676, 7.3672, 7.3669, 7.3669, 7.3665, 7.3667, 7.3685, 7.3681, 7.3677, 7.3684, 7.369, 7.3686, 7.3684, 7.368, 7.3677, 7.3674, 7.3681, 7.3681, 7.3687, 7.3685, 7.3682, 7.368, 7.3676, 7.3673, 7.368, 7.3676, 7.3674, 7.3671, 7.3668, 7.3666, 7.3673, 7.367, 7.3668, 7.3665, 7.3661, 7.3659, 7.3657, 7.3653, 7.365, 7.3656, 7.3654, 7.3642, 7.3648, 7.3656, 7.3654, 7.365, 7.3657, 7.3653, 7.366, 7.3656, 7.3654, 7.365, 7.3655, 7.3661, 7.3659, 7.367, 7.3669, 7.3668, 7.3664, 7.3683, 7.369, 7.3687, 7.3694, 7.3691, 7.3698, 7.3694, 7.369, 7.3697, 7.3703, 7.3699, 7.3696, 7.3703, 7.3699, 7.3687, 7.3691, 7.3689, 7.3678, 7.3674, 7.367, 7.3668, 7.3664, 7.3661, 7.3659, 7.3656, 7.3662, 7.366, 7.3658, 7.3654, 7.365, 7.3648, 7.3644, 7.364, 7.3638, 7.3634, 7.3631, 7.3638, 7.3634, 7.364, 7.3637, 7.3634, 7.3632, 7.3638, 7.3661, 7.3659, 7.3657, 7.3654, 7.3675, 7.3671, 7.3669, 7.3666, 7.3663, 7.366, 7.3667, 7.3673, 7.3661, 7.3668, 7.3666, 7.3664, 7.3662, 7.3658, 7.3656, 7.3653, 7.365, 7.3657, 7.3664, 7.3661, 7.3668, 7.3665, 7.3661, 7.3658, 7.3664, 7.366, 7.3657, 7.3653, 7.3659, 7.3655, 7.3673, 7.3684, 7.368, 7.3676, 7.3673, 7.3661, 7.3667, 7.3674, 7.3671, 7.3668, 7.3665, 7.3671, 7.3669, 7.3667, 7.368, 7.3677, 7.3683, 7.368, 7.3706, 7.3704, 7.3702, 7.3692, 7.369, 7.3697, 7.3693, 7.3681, 7.3677, 7.3673, 7.3673, 7.3671, 7.367, 7.3676, 7.3675, 7.3675, 7.3671, 7.3677, 7.3683, 7.3681, 7.3678, 7.3666, 7.3664, 7.3661, 7.3667, 7.3663, 7.3671, 7.3667, 7.3666, 7.3663, 7.3659, 7.3667, 7.3663, 7.3661, 7.3667, 7.3663, 7.3662, 7.367, 7.3667, 7.3664, 7.3681, 7.3687, 7.3683, 7.3681, 7.369, 7.3686, 7.3692, 7.369, 7.3688, 7.3686, 7.3686, 7.3692, 7.3689, 7.3687, 7.3683, 7.3681, 7.3677, 7.3673, 7.367, 7.367, 7.3669, 7.3667, 7.3666, 7.3663, 7.366, 7.3658, 7.3656, 7.3663, 7.3671, 7.3678, 7.3684, 7.3682, 7.3681, 7.3679, 7.3677, 7.3683, 7.3689, 7.3686, 7.3706, 7.3726, 7.3714, 7.3711, 7.3711, 7.3723, 7.3785, 7.3781, 7.3779, 7.381, 7.381, 7.3806, 7.3803, 7.3802, 7.3798, 7.3794, 7.3791, 7.3789, 7.3786, 7.3783, 7.379, 7.3787, 7.3783, 7.378, 7.3777, 7.3774, 7.3771, 7.3816, 7.3812, 7.3811, 7.3808, 7.3805, 7.3793, 7.3789, 7.3787, 7.3816, 7.3813, 7.381, 7.3819, 7.3816, 7.3822, 7.3819, 7.3815, 7.3803, 7.3809, 7.3805, 7.3813, 7.3802, 7.3798, 7.3797, 7.3804, 7.3793, 7.3782, 7.3779, 7.3778, 7.3775, 7.3772, 7.3776, 7.3774, 7.378, 7.3777, 7.3775, 7.3771, 7.3769, 7.3775, 7.3772, 7.3768, 7.3766, 7.3762, 7.3769, 7.3768, 7.3766, 7.3772, 7.3787, 7.3798, 7.3795, 7.3792, 7.379, 7.379, 7.3787, 7.3796, 7.3792, 7.3791, 7.3789, 7.3786, 7.3783, 7.3776, 7.3772, 7.3778, 7.3776, 7.3774, 7.3771, 7.3769, 7.3767, 7.3764, 7.3762, 7.3759, 7.3757, 7.3763, 7.376, 7.3756, 7.3753, 7.3751, 7.374, 7.3731, 7.3748, 7.3751, 7.3748, 7.3739, 7.3737, 7.3734, 7.3731, 7.3728, 7.3724, 7.372, 7.3726, 7.373, 7.3726, 7.3723, 7.372, 7.3718, 7.3717, 7.3715, 7.3751, 7.3761, 7.3765, 7.3762, 7.3768, 7.3764, 7.3771, 7.3768, 7.3764, 7.376, 7.3768, 7.3765, 7.3763, 7.376, 7.3766, 7.3762, 7.3758, 7.3755, 7.3761, 7.3758, 7.3764, 7.376, 7.3758, 7.3754, 7.3752, 7.3749, 7.3745, 7.3743, 7.3749, 7.3745, 7.3742, 7.3739, 7.3745, 7.3743, 7.374, 7.3738, 7.3745, 7.3733, 7.373, 7.3727, 7.3733, 7.3723, 7.3729, 7.3726, 7.3723, 7.3724, 7.3731, 7.3719, 7.3708, 7.3705, 7.3702, 7.3701, 7.369, 7.3689, 7.3687, 7.369, 7.3696, 7.3693, 7.3691, 7.3718, 7.3724, 7.3721, 7.3737, 7.3734, 7.373, 7.3726, 7.3722, 7.3719, 7.3716, 7.3714, 7.372, 7.3727, 7.3724, 7.3722, 7.3723, 7.372, 7.3716, 7.3714, 7.3712, 7.3709, 7.3717, 7.3715, 7.3717, 7.3715, 7.3713, 7.371, 7.3716, 7.3713, 7.3711, 7.3708, 7.3707, 7.3705, 7.3711, 7.3707, 7.3703, 7.3702, 7.3698, 7.3695, 7.3691, 7.3698, 7.3705, 7.3711, 7.3708, 7.3704, 7.3701, 7.3707, 7.3703, 7.3701, 7.3708, 7.3705, 7.3693, 7.369, 7.3696, 7.3702, 7.3707, 7.3705, 7.3701, 7.3697, 7.3693, 7.3699, 7.3698, 7.3704, 7.3701, 7.3697, 7.3693, 7.37, 7.3707, 7.3779, 7.3775, 7.3772, 7.3778, 7.3783, 7.378, 7.3791, 7.3807, 7.3804, 7.3809, 7.3807, 7.3805, 7.3805, 7.3802, 7.381, 7.3807, 7.3805, 7.3823, 7.382, 7.3826, 7.3823, 7.3824, 7.383, 7.3828, 7.3826, 7.3824, 7.3829, 7.3826, 7.3833, 7.383, 7.3847, 7.3845, 7.3842, 7.3839, 7.3842, 7.3839, 7.3837, 7.3834, 7.3823, 7.382, 7.3819, 7.3831, 7.383, 7.3836, 7.3833, 7.3832, 7.3838, 7.3834, 7.3832, 7.3829, 7.3835, 7.3844, 7.3833, 7.383, 7.3827, 7.3833, 7.384, 7.3839, 7.3836, 7.3833, 7.383, 7.3828, 7.3825, 7.3822, 7.3819, 7.3816, 7.3813, 7.3819, 7.3817, 7.3815, 7.3813, 7.3809, 7.3815, 7.3821, 7.3833, 7.3838, 7.3836, 7.3834, 7.3839, 7.3836, 7.3833, 7.3829, 7.3826, 7.3822, 7.382, 7.3818, 7.3817, 7.3831, 7.3828, 7.3835, 7.3832, 7.3831, 7.3828, 7.3825, 7.3822, 7.3819, 7.3817, 7.3814, 7.381, 7.3807, 7.3806, 7.3812, 7.3809, 7.3808, 7.3814, 7.3811, 7.3808, 7.3806, 7.3812, 7.3809, 7.3806, 7.3804, 7.3802, 7.3808, 7.3804, 7.381, 7.3807, 7.3805, 7.3803, 7.3799, 7.3796, 7.3795, 7.3793, 7.379, 7.3787, 7.3784, 7.3789, 7.3786, 7.3783, 7.378, 7.3777, 7.3783, 7.378, 7.3777, 7.3783, 7.3779, 7.3785, 7.379, 7.3788, 7.3786, 7.3783, 7.378, 7.3777, 7.3773, 7.3778, 7.3774, 7.377, 7.3766, 7.3764, 7.3787, 7.3794, 7.3792, 7.3789, 7.3794, 7.3803, 7.3794, 7.3787, 7.3785, 7.3797, 7.3794, 7.379, 7.3789, 7.3796, 7.3793, 7.379, 7.3788, 7.3786, 7.3784, 7.3781, 7.3779, 7.3777, 7.3773, 7.3779, 7.3769, 7.3776, 7.3773, 7.377, 7.3768, 7.3767, 7.3773, 7.377, 7.3767, 7.3773, 7.3772, 7.3762, 7.3761, 7.3767, 7.3766, 7.3774, 7.3772, 7.3769, 7.3766, 7.3765, 7.3763, 7.3761, 7.3759, 7.3757, 7.3763, 7.3769, 7.3768, 7.3768, 7.3767, 7.3765, 7.3763, 7.3761, 7.3767, 7.3764, 7.3762, 7.3759, 7.3758, 7.3754, 7.3752, 7.3759, 7.3756, 7.3754, 7.3753, 7.375, 7.3756, 7.3762, 7.3759, 7.3774, 7.378, 7.3787, 7.3793, 7.3799, 7.3804, 7.3801, 7.3799, 7.3796, 7.3793, 7.3794, 7.3808, 7.3819, 7.3816, 7.3822, 7.3819, 7.3816, 7.3817, 7.3818, 7.3825, 7.3822, 7.3819, 7.3818, 7.3816, 7.3814, 7.382, 7.3834, 7.3832, 7.3829, 7.3828, 7.3825, 7.3822, 7.3828, 7.3826, 7.3823, 7.3823, 7.3829, 7.3828, 7.3826, 7.3825, 7.3824, 7.3824, 7.3822, 7.3827, 7.3823, 7.3821, 7.3828, 7.3826, 7.3831, 7.3837, 7.3844, 7.3841, 7.3842, 7.384, 7.3839, 7.3837, 7.3834, 7.3831, 7.3828, 7.3834, 7.3831, 7.3837, 7.3842, 7.3839, 7.3836, 7.3841, 7.3847, 7.3844, 7.3841, 7.3847, 7.3852, 7.3859, 7.3856, 7.3862, 7.3869, 7.3866, 7.3872, 7.3869, 7.3866, 7.3873, 7.3871, 7.3907, 7.3907, 7.3904, 7.391, 7.3916, 7.3913, 7.3909, 7.3906, 7.3912, 7.3909, 7.3906, 7.3903, 7.3901, 7.3897, 7.3902, 7.3899, 7.3905, 7.3912, 7.3909, 7.3928, 7.3925, 7.3922, 7.3919, 7.3926, 7.3923, 7.392, 7.3926, 7.3923, 7.3922, 7.3919, 7.3916, 7.3914, 7.392, 7.3925, 7.3922, 7.3919, 7.3917, 7.3914, 7.392, 7.3926, 7.3932, 7.3937, 7.3943, 7.3942, 7.3947, 7.3945, 7.3942, 7.3948, 7.3945, 7.3943, 7.395, 7.3947, 7.3944, 7.3941, 7.3939, 7.3936, 7.3933, 7.3947, 7.3952, 7.3958, 7.3955, 7.3954, 7.3945, 7.3942, 7.3939, 7.3936, 7.3935, 7.3941, 7.3947, 7.3944, 7.3945, 7.3941, 7.3947, 7.3945, 7.3942, 7.3939, 7.3936, 7.3934, 7.3931, 7.3928, 7.3925, 7.3949, 7.3955, 7.396, 7.3957, 7.3954, 7.3952, 7.395, 7.3981, 7.3988, 7.3984, 7.3981, 7.3978, 7.3976, 7.3974, 7.3979, 7.3976, 7.3981, 7.3978, 7.3975, 7.3981, 7.397], '192.168.122.111': [5.5203, 5.7406, 5.6441, 5.5844, 5.5586, 5.5335, 4.8352, 4.9926, 5.0299, 5.4073, 5.4008, 5.4405, 5.4289, 5.9474, 5.9114, 6.2096, 6.1824, 6.1345, 6.4143, 6.6354, 6.5804, 6.778, 6.7236, 6.688, 6.8543, 6.7992, 6.7627, 6.7314, 6.5167, 6.6588, 6.6297, 6.6128, 6.5766, 6.6963, 6.6669, 6.6449, 6.6209, 6.5968, 6.5719, 6.6955, 6.7919, 6.767, 6.7552, 6.8534, 6.8314, 6.7083, 6.6859, 6.668, 6.7526, 6.7308, 6.7043, 6.6852, 6.6634, 6.6415, 6.6339, 6.619, 6.6038, 6.4987, 6.4876, 6.4709, 6.4513, 6.4309, 6.419, 6.4199, 6.4042, 6.4049, 6.3982, 6.3819, 6.3731, 6.3651, 6.3743, 6.5072, 6.5787, 6.573, 6.5668, 6.5506, 6.54, 6.4638, 6.4546, 6.4465, 6.4371, 6.4297, 6.4181, 6.4194, 6.4276, 6.4178, 6.4723, 6.5222, 6.6361, 6.7104, 6.7032, 6.6885, 6.6746, 6.7226, 6.7088, 6.7359, 6.7561, 6.7501, 6.7461, 6.7349, 6.7892, 6.7313, 6.7756, 6.7607, 6.718, 6.715, 6.7528, 6.7397, 6.7432, 6.7336, 6.7709, 6.8075, 6.8483, 6.8347, 6.8272, 6.8613, 6.8533, 6.8474, 6.8428, 6.8303, 6.9054, 6.8931, 6.9688, 6.9975, 7.0395, 7.0479, 7.0392, 7.027, 7.0135, 7.0011, 6.9522, 6.9423, 6.934, 6.9635, 6.9513, 6.9493, 6.9422, 6.9992, 6.9872, 6.9751, 6.9638, 6.9881, 7.0135, 7.009, 7.0844, 7.0715, 7.0603, 7.0486, 7.0402, 7.0318, 7.0278, 7.0501, 7.0727, 7.0618, 7.0518, 7.0116, 7.0018, 6.9971, 6.986, 6.9791, 7.0184, 7.042, 7.1309, 7.1661, 7.2176, 7.2403, 7.2377, 7.2418, 7.2598, 7.2514, 7.2406, 7.2468, 7.2458, 7.2354, 7.2655, 7.3438, 7.3058, 7.2947, 7.2876, 7.2806, 7.273, 7.2641, 7.2536, 7.2734, 7.268, 7.2595, 7.2504, 7.2407, 7.2412, 7.2323, 7.2262, 7.2671, 7.2905, 7.2814, 7.2719, 7.2906, 7.3083, 7.2988, 7.2892, 7.2816, 7.2736, 7.291, 7.2852, 7.2569, 7.2481, 7.2444, 7.2376, 7.2339, 7.2309, 7.2247, 7.2287, 7.2198, 7.2116, 7.2277, 7.2451, 7.2617, 7.2539, 7.2254, 7.2171, 7.2137, 7.2108, 7.2274, 7.2926, 7.3243, 7.2991, 7.3133, 7.3057, 7.2969, 7.2904, 7.2987, 7.3334, 7.3329, 7.3264, 7.3191, 7.3128, 7.3044, 7.2987, 7.2901, 7.283, 7.2752, 7.2689, 7.2953, 7.2871, 7.2807, 7.278, 7.2924, 7.2859, 7.2783, 7.2746, 7.2667, 7.2806, 7.2726, 7.286, 7.2805, 7.2725, 7.2653, 7.278, 7.2714, 7.2661, 7.2587, 7.2567, 7.2514, 7.2441, 7.2365, 7.2486, 7.2634, 7.2768, 7.2695, 7.2828, 7.2779, 7.2905, 7.2837, 7.2769, 7.2696, 7.2636, 7.2565, 7.2695, 7.2638, 7.314, 7.3074, 7.3019, 7.295, 7.288, 7.2831, 7.2777, 7.2711, 7.266, 7.2615, 7.2544, 7.2525, 7.2479, 7.2605, 7.2561, 7.2518, 7.2458, 7.2411, 7.235, 7.2288, 7.2235, 7.2174, 7.2136, 7.2108, 7.2051, 7.1988, 7.1947, 7.2065, 7.2021, 7.2011, 7.1955, 7.2074, 7.2017, 7.1964, 7.1905, 7.1855, 7.1815, 7.1765, 7.1762, 7.1889, 7.1831, 7.1854, 7.197, 7.1919, 7.1872, 7.1823, 7.2192, 7.2153, 7.2122, 7.212, 7.207, 7.2365, 7.232, 7.229, 7.2237, 7.2205, 7.2153, 7.2105, 7.2076, 7.2079, 7.2032, 7.1982, 7.195, 7.2029, 7.1988, 7.21, 7.2048, 7.1998, 7.1991, 7.1944, 7.189, 7.1843, 7.1941, 7.1887, 7.1845, 7.1806, 7.1771, 7.1734, 7.1831, 7.1939, 7.2041, 7.1997, 7.1944, 7.1909, 7.1864, 7.1681, 7.1733, 7.1702, 7.1656, 7.1631, 7.159, 7.1541, 7.1535, 7.1544, 7.1498, 7.1595, 7.1556, 7.1508, 7.1599, 7.1555, 7.1851, 7.1939, 7.1897, 7.1866, 7.1965, 7.1922, 7.1883, 7.1834, 7.1783, 7.1737, 7.1702, 7.1796, 7.1949, 7.2112, 7.2102, 7.2255, 7.221, 7.2346, 7.2301, 7.2267, 7.2231, 7.2193, 7.2147, 7.2107, 7.2063, 7.2016, 7.199, 7.2069, 7.2025, 7.2114, 7.2077, 7.2032, 7.199, 7.1944, 7.1898, 7.1877, 7.1967, 7.1945, 7.1915, 7.1876, 7.1836, 7.1801, 7.1756, 7.1963, 7.1932, 7.1893, 7.1852, 7.1809, 7.1888, 7.1976, 7.2052, 7.2023, 7.2103, 7.2064, 7.2145, 7.212, 7.2082, 7.2037, 7.2008, 7.1988, 7.1946, 7.1908, 7.1867, 7.1839, 7.1805, 7.1773, 7.1735, 7.1722, 7.1805, 7.1777, 7.1851, 7.1808, 7.18, 7.1768, 7.1916, 7.1888, 7.1984, 7.1967, 7.2064, 7.2033, 7.2006, 7.2085, 7.2057, 7.2019, 7.1981, 7.206, 7.2134, 7.199, 7.2064, 7.2034, 7.2003, 7.1965, 7.1924, 7.1893, 7.177, 7.1637, 7.1612, 7.1594, 7.1682, 7.1647, 7.1512, 7.1493, 7.1574, 7.1541, 7.1625, 7.1596, 7.1672, 7.1639, 7.1507, 7.1471, 7.1543, 7.1526, 7.1498, 7.1365, 7.1331, 7.1297, 7.1271, 7.1238, 7.1204, 7.117, 7.1136, 7.1206, 7.1186, 7.1449, 7.1413, 7.1399, 7.1363, 7.1327, 7.1294, 7.1273, 7.1244, 7.1122, 7.1197, 7.1178, 7.1254, 7.1229, 7.1195, 7.1182, 7.1156, 7.1059, 7.1033, 7.1002, 7.0981, 7.0858, 7.0733, 7.0811, 7.0786, 7.0767, 7.0751, 7.0799, 7.0875, 7.0857, 7.0835, 7.0822, 7.0794, 7.0871, 7.0935, 7.1005, 7.1077, 7.1168, 7.1141, 7.111, 7.1083, 7.1064, 7.1042, 7.1115, 7.1101, 7.1077, 7.1375, 7.1471, 7.1439, 7.1414, 7.1294, 7.138, 7.1351, 7.1317, 7.1376, 7.1342, 7.131, 7.1291, 7.1283, 7.1265, 7.1239, 7.1207, 7.1192, 7.1166, 7.1142, 7.122, 7.1198, 7.1174, 7.1152, 7.1228, 7.1287, 7.1254, 7.1322, 7.1306, 7.1284, 7.1264, 7.1255, 7.1226, 7.12, 7.126, 7.1335, 7.1321, 7.1292, 7.126, 7.132, 7.1304, 7.1281, 7.1252, 7.131, 7.1281, 7.126, 7.1233, 7.1302, 7.1274, 7.1337, 7.1322, 7.1294, 7.1277, 7.1339, 7.1314, 7.1382, 7.1374, 7.1433, 7.1406, 7.1299, 7.1273, 7.1258, 7.1237, 7.1211, 7.1122, 7.119, 7.1086, 7.1055, 7.1025, 7.1001, 7.0972, 7.0954, 7.093, 7.0997, 7.0969, 7.0953, 7.1018, 7.0995, 7.1061, 7.1037, 7.1014, 7.099, 7.0916, 7.0891, 7.0959, 7.1115, 7.1096, 7.1085, 7.1061, 7.104, 7.1097, 7.1069, 7.1042, 7.1012, 7.1073, 7.1048, 7.1034, 7.1014, 7.0998, 7.0973, 7.0971, 7.0946, 7.092, 7.0899, 7.0874, 7.0848, 7.0822, 7.0803, 7.0785, 7.0758, 7.0741, 7.0718, 7.0692, 7.0667, 7.0643, 7.0618, 7.0591, 7.0566, 7.0786, 7.0842, 7.0825, 7.0805, 7.0781, 7.0836, 7.0912, 7.0893, 7.0873, 7.0863, 7.0918, 7.0908, 7.0891, 7.0799, 7.078, 7.0948, 7.0922, 7.0899, 7.1033, 7.1104, 7.1159, 7.1135, 7.1115, 7.1094, 7.1068, 7.1121, 7.1115, 7.1117, 7.1173, 7.1147, 7.1201, 7.1251, 7.1225, 7.12, 7.1248, 7.123, 7.1204, 7.1179, 7.1183, 7.1164, 7.119, 7.119, 7.1189, 7.1242, 7.1295, 7.1284, 7.1345, 7.1326, 7.133, 7.1382, 7.1405, 7.1382, 7.1358, 7.1343, 7.1321, 7.1299, 7.1281, 7.1256, 7.131, 7.1296, 7.1275, 7.1338, 7.1384, 7.1359, 7.1415, 7.1467, 7.1449, 7.1573, 7.1481, 7.1464, 7.1526, 7.1569, 7.1617, 7.1595, 7.1706, 7.168, 7.1655, 7.163, 7.1755, 7.195, 7.1932, 7.1978, 7.2027, 7.2007, 7.1987, 7.1972, 7.2093, 7.2141, 7.2053, 7.203, 7.2011, 7.2128, 7.2109, 7.2047, 7.2023, 7.2002, 7.1977, 7.196, 7.195, 7.1924, 7.1923, 7.1902, 7.2109, 7.2168, 7.2226, 7.2269, 7.2248, 7.2225, 7.2303, 7.2292, 7.2205, 7.2187, 7.2235, 7.2218, 7.2238, 7.2286, 7.2338, 7.2316, 7.2293, 7.2269, 7.2247, 7.2237, 7.2212, 7.2206, 7.2183, 7.2229, 7.2212, 7.2201, 7.2184, 7.2169, 7.2217, 7.2264, 7.2311, 7.2288, 7.2204, 7.2202, 7.2206, 7.2183, 7.2166, 7.2144, 7.2187, 7.2163, 7.2232, 7.221, 7.2188, 7.2174, 7.2225, 7.2269, 7.2246, 7.2225, 7.2268, 7.2267, 7.2185, 7.217, 7.2149, 7.2128, 7.2108, 7.2092, 7.2069, 7.2117, 7.2097, 7.2077, 7.206, 7.2106, 7.2085, 7.2071, 7.2122, 7.2101, 7.2085, 7.2069, 7.2047, 7.2026, 7.1959, 7.2089, 7.2136, 7.2201, 7.2403, 7.2382, 7.2529, 7.2515, 7.2553, 7.253, 7.2507, 7.2485, 7.2587, 7.2566, 7.261, 7.2647, 7.263, 7.261, 7.2653, 7.264, 7.2681, 7.2721, 7.2703, 7.2745, 7.2728, 7.277, 7.2807, 7.2789, 7.2897, 7.2883, 7.2862, 7.2839, 7.2816, 7.2854, 7.2841, 7.2829, 7.2812, 7.2807, 7.28, 7.278, 7.2767, 7.2747, 7.2726, 7.2657, 7.2702, 7.2626, 7.2667, 7.2652, 7.2577, 7.2618, 7.2598, 7.2577, 7.2554, 7.2534, 7.2573, 7.2614, 7.2593, 7.2635, 7.2618, 7.261, 7.2668, 7.2649, 7.2711, 7.2829, 7.281, 7.2857, 7.2837, 7.2815, 7.2799, 7.2779, 7.276, 7.274, 7.2718, 7.2697, 7.268, 7.2666, 7.2706, 7.2689, 7.267, 7.2706, 7.271, 7.2747, 7.2727, 7.2793, 7.2771, 7.2754, 7.2737, 7.2775, 7.2813, 7.2902, 7.2881, 7.2866, 7.2964, 7.2943, 7.298, 7.2962, 7.2943, 7.2927, 7.2922, 7.2901, 7.2889, 7.2874, 7.2853, 7.2892, 7.2872, 7.2855, 7.2837, 7.2875, 7.2853, 7.2832, 7.2813, 7.2887, 7.2873, 7.2854, 7.2889, 7.2883, 7.2861, 7.286, 7.2887, 7.2822, 7.2803, 7.2793, 7.2831, 7.2888, 7.2867, 7.2797, 7.2778, 7.2718, 7.2784, 7.2765, 7.2746, 7.2734, 7.2714, 7.2699, 7.2739, 7.2737, 7.2725, 7.2706, 7.2637, 7.2617, 7.2621, 7.2612, 7.2651, 7.2632, 7.262, 7.2657, 7.2645, 7.2629, 7.2612, 7.2653, 7.2636, 7.2624, 7.2611, 7.2592, 7.2573, 7.2565, 7.2549, 7.2531, 7.2556, 7.2539, 7.2473, 7.2457, 7.2439, 7.2421, 7.2405, 7.2452, 7.2434, 7.2416, 7.2397, 7.2379, 7.2362, 7.2346, 7.2333, 7.2324, 7.236, 7.2342, 7.2324, 7.2357, 7.234, 7.2328, 7.2311, 7.234, 7.2381, 7.2417, 7.2402, 7.2438, 7.2477, 7.2512, 7.2493, 7.2476, 7.2458, 7.2442, 7.2477, 7.2529, 7.2564, 7.2552, 7.254, 7.2525, 7.251, 7.2495, 7.2485, 7.2473, 7.2457, 7.2446, 7.2479, 7.2517, 7.2502, 7.2483, 7.2469, 7.2502, 7.2486, 7.2469, 7.2453, 7.2487, 7.2471, 7.2458, 7.244, 7.2421, 7.2405, 7.2391, 7.2375, 7.2359, 7.2341, 7.2324, 7.2315, 7.2356, 7.2342, 7.2329, 7.2369, 7.2405, 7.2386, 7.2371, 7.2403, 7.2396, 7.2429, 7.2411, 7.2449, 7.2483, 7.2465, 7.25, 7.2482, 7.2514, 7.2496, 7.2568, 7.2556, 7.2539, 7.2521, 7.2508, 7.249, 7.2473, 7.2456, 7.2441, 7.2432, 7.2419, 7.2401, 7.2389, 7.2421, 7.2409, 7.2442, 7.2429, 7.2413, 7.2399, 7.2384, 7.2367, 7.24, 7.2383, 7.2367, 7.2396, 7.2379, 7.2366, 7.235, 7.2338, 7.2368, 7.2352, 7.2338, 7.2371, 7.2406, 7.2389, 7.2378, 7.2368, 7.2402, 7.2389, 7.2377, 7.2359, 7.2345, 7.2337, 7.2417, 7.2448, 7.2432, 7.2469, 7.2465, 7.2448, 7.2479, 7.2468, 7.2451, 7.2486, 7.2518, 7.255, 7.2534, 7.2521, 7.2512, 7.2542, 7.2576, 7.2568, 7.2556, 7.2539, 7.253, 7.2563, 7.2593, 7.2581, 7.2564, 7.255, 7.2534, 7.2475, 7.2464, 7.245, 7.2443, 7.2427, 7.2454, 7.2445, 7.2475, 7.2463, 7.2447, 7.2431, 7.2418, 7.241, 7.2397, 7.2381, 7.2429, 7.2419, 7.2408, 7.2438, 7.2468, 7.2499, 7.2495, 7.2525, 7.2554, 7.2544, 7.2531, 7.2521, 7.251, 7.25, 7.2486, 7.2471, 7.2502, 7.2491, 7.2478, 7.251, 7.2497, 7.2529, 7.2517, 7.2573, 7.2603, 7.2591, 7.2622, 7.2607, 7.2601, 7.2589, 7.2576, 7.2563, 7.2548, 7.2578, 7.2584, 7.2613, 7.26, 7.2634, 7.2621, 7.265, 7.2686, 7.2714, 7.2709, 7.2696, 7.2679, 7.2708, 7.274, 7.2732, 7.2716, 7.2703, 7.2687, 7.2717, 7.2703, 7.2735, 7.2789, 7.2778, 7.2763, 7.2752, 7.274, 7.277, 7.2756, 7.2746, 7.2761, 7.279, 7.2777, 7.2922, 7.2914, 7.2943, 7.293, 7.2922, 7.2908, 7.294, 7.2972, 7.3057, 7.3043, 7.3075, 7.3062, 7.3089, 7.3075, 7.3065, 7.3093, 7.3081, 7.3068, 7.3053, 7.3048, 7.3077, 7.3062, 7.3093, 7.3078, 7.3109, 7.3138, 7.3127, 7.3112, 7.314, 7.3135, 7.3119, 7.3116, 7.3105, 7.3095, 7.3082, 7.308, 7.3064, 7.3048, 7.3077, 7.3026, 7.3014, 7.3041, 7.2988, 7.2978, 7.2967, 7.2957, 7.2943, 7.2929, 7.2923, 7.295, 7.2935, 7.2965, 7.2953, 7.294, 7.2947, 7.2954, 7.2947, 7.2933, 7.2918, 7.2948, 7.2938, 7.2925, 7.2996, 7.2984, 7.2971, 7.3003, 7.2992, 7.2978, 7.2964, 7.2953, 7.2994, 7.2981, 7.2969, 7.296, 7.2954, 7.2983, 7.2968, 7.2954, 7.294, 7.2927, 7.2914, 7.2985, 7.2974, 7.2961, 7.2949, 7.2933, 7.2919, 7.2908, 7.2901, 7.2889, 7.2878, 7.2863, 7.2853, 7.2842, 7.2838, 7.2824, 7.2846, 7.2831, 7.2823, 7.2851, 7.284, 7.2826, 7.2814, 7.2802, 7.2829, 7.283, 7.2822, 7.2849, 7.2835, 7.282, 7.2856, 7.2842, 7.2868, 7.2854, 7.2883, 7.2907, 7.2894, 7.2889, 7.2875, 7.2864, 7.2853, 7.2842, 7.2831, 7.282, 7.281, 7.2836, 7.2834, 7.2858, 7.2884, 7.2874, 7.2861, 7.2885, 7.2874, 7.2861, 7.2848, 7.2833, 7.2822, 7.2809, 7.28, 7.2791, 7.2776, 7.2762, 7.2755, 7.2741, 7.2731, 7.2724, 7.2756, 7.278, 7.2767, 7.2794, 7.278, 7.2767, 7.2754, 7.278, 7.2766, 7.2752, 7.2743, 7.2732, 7.2769, 7.2758, 7.2745, 7.2698, 7.2685, 7.271, 7.2735, 7.2722, 7.2708, 7.2697, 7.2682, 7.2708, 7.2732, 7.2757, 7.2782, 7.2768, 7.2758, 7.2748, 7.2737, 7.2723, 7.2749, 7.2809, 7.2798, 7.2905, 7.2928, 7.2954, 7.2977, 7.2966, 7.2957, 7.2949, 7.2941, 7.2963, 7.2953, 7.2939, 7.2925, 7.2919, 7.2909, 7.2901, 7.2928, 7.2919, 7.2944, 7.2932, 7.2925, 7.2914, 7.2901, 7.2926, 7.2912, 7.2898, 7.2884, 7.2908, 7.2933, 7.2961, 7.3022, 7.3009, 7.3033, 7.3058, 7.3048, 7.3041, 7.2995, 7.2983, 7.3007, 7.3018, 7.3015, 7.3017, 7.3015, 7.3008, 7.2997, 7.2985, 7.2972, 7.2996, 7.2983, 7.2971, 7.2958, 7.2952, 7.3052, 7.304, 7.3029, 7.3019, 7.3009, 7.2996, 7.2983, 7.2969, 7.2956, 7.2945, 7.2935, 7.2959, 7.2949, 7.2944, 7.2935, 7.2964, 7.295, 7.2938, 7.2928, 7.2917, 7.2872, 7.2861, 7.2848, 7.2835, 7.2822, 7.2811, 7.2798, 7.2785, 7.2771, 7.2759, 7.2753, 7.2746, 7.274, 7.2734, 7.2757, 7.2787, 7.2777, 7.2807, 7.2798, 7.2821, 7.2809, 7.2796, 7.2792, 7.278, 7.2769, 7.2763, 7.2755, 7.2747, 7.2739, 7.2731, 7.2719, 7.2741, 7.2764, 7.2754, 7.2745, 7.2736, 7.2762, 7.2785, 7.2778, 7.2807, 7.283, 7.2817, 7.2809, 7.2797, 7.282, 7.2807, 7.283, 7.2787, 7.2775, 7.2798, 7.2821, 7.281, 7.28, 7.2789, 7.2778, 7.2767, 7.2755, 7.2743, 7.2733, 7.2722, 7.2711, 7.2703, 7.273, 7.272, 7.2742, 7.2733, 7.2758, 7.2749, 7.2771, 7.2795, 7.289, 7.288, 7.2869, 7.2856, 7.2846, 7.2842, 7.2831, 7.299, 7.2979, 7.3002, 7.2989, 7.2981, 7.2969, 7.296, 7.2947, 7.2937, 7.2929, 7.2921, 7.2913, 7.2878, 7.2866, 7.2855, 7.2853, 7.2878, 7.2869, 7.2927, 7.2886, 7.291, 7.2903, 7.2897, 7.2917, 7.2906, 7.2895, 7.2886, 7.2875, 7.2865, 7.2856, 7.2847, 7.2837, 7.2857, 7.2888, 7.2911, 7.2901, 7.2924, 7.2911, 7.2898, 7.289, 7.2878, 7.2866, 7.2857, 7.2877, 7.2897, 7.2919, 7.294, 7.2962, 7.2983, 7.3005, 7.2996, 7.3018, 7.3006, 7.3028, 7.3016, 7.3006, 7.2996, 7.3017, 7.2975, 7.3013, 7.3035, 7.3022, 7.3016, 7.3004, 7.2992, 7.2984, 7.2975, 7.2996, 7.3016, 7.3005, 7.2994, 7.2982, 7.3001, 7.2989, 7.2978, 7.2966, 7.2954, 7.2946, 7.2937, 7.2934, 7.2923, 7.2946, 7.2934, 7.2922, 7.2914, 7.2934, 7.2925, 7.2947, 7.2935, 7.299, 7.3011, 7.3, 7.299, 7.2989, 7.2977, 7.2999, 7.2987, 7.2975, 7.2997, 7.3061, 7.3086, 7.3108, 7.3133, 7.3153, 7.3142, 7.3132, 7.3157, 7.3251, 7.3244, 7.3234, 7.3224, 7.3214, 7.3233, 7.3232, 7.3192, 7.3152, 7.3144, 7.3132, 7.3152, 7.3172, 7.3167, 7.3155, 7.3176, 7.3164, 7.3152, 7.3172, 7.3192, 7.3212, 7.32, 7.322, 7.3214, 7.3235, 7.3224, 7.3242, 7.329, 7.3285, 7.3304, 7.3297, 7.332, 7.3341, 7.3338, 7.3327, 7.3348, 7.3338, 7.336, 7.3357, 7.3377, 7.3417, 7.3473, 7.3502, 7.3491, 7.3481, 7.3522, 7.3511, 7.3529, 7.3563, 7.3553, 7.3582, 7.358, 7.3568, 7.3556, 7.3517, 7.3536, 7.3557, 7.3549, 7.3612, 7.3634, 7.3622, 7.3616, 7.3607, 7.3629, 7.3617, 7.3612, 7.3601, 7.3561, 7.3522, 7.3511, 7.3529, 7.3521, 7.3512, 7.3539, 7.351, 7.3562, 7.3553, 7.3602, 7.3591, 7.3614, 7.3637, 7.3626, 7.3647, 7.3636, 7.3624, 7.3613, 7.3616, 7.3637, 7.3627, 7.3647, 7.3638, 7.3632, 7.362, 7.3609, 7.3628, 7.3645, 7.3675, 7.3762, 7.3752, 7.3771, 7.3759, 7.375, 7.3744, 7.377, 7.3792, 7.3789, 7.3783, 7.3774, 7.3764, 7.3936, 7.3926, 7.3918, 7.3949, 7.3937, 7.396, 7.3954, 7.3943, 7.3932, 7.3925, 7.3995, 7.3958, 7.3959, 7.3976, 7.3965, 7.3928, 7.3917, 7.3906, 7.3927, 7.3916, 7.3879, 7.3903, 7.39, 7.3889, 7.3881, 7.387, 7.3889, 7.3851, 7.3865, 7.3857, 7.3847, 7.3867, 7.3857, 7.3874, 7.3896, 7.3914, 7.3948, 7.3939, 7.3986, 7.3978, 7.3971, 7.3993, 7.3983, 7.3975, 7.3964, 7.3927, 7.3916, 7.3906, 7.3895, 7.3912, 7.3917, 7.3907, 7.3927, 7.3918, 7.3911, 7.3931, 7.3924, 7.3917, 7.3905, 7.3896, 7.3859, 7.3852, 7.3815, 7.3808, 7.3797, 7.3787, 7.3807, 7.3827, 7.3845, 7.3834, 7.3825, 7.3816, 7.3778, 7.377, 7.3761, 7.3752, 7.3769, 7.3757, 7.3746, 7.3738, 7.3728, 7.3746, 7.374, 7.374, 7.3703, 7.3697, 7.3693, 7.3686, 7.3676, 7.3695, 7.3685, 7.3675, 7.3665, 7.3656, 7.3646, 7.3648, 7.364, 7.3659, 7.3676, 7.3746, 7.3736, 7.3726, 7.3716, 7.3734, 7.3725, 7.3744, 7.3735, 7.3726, 7.3745, 7.3738, 7.3729, 7.3722, 7.3711, 7.3701, 7.369, 7.3682, 7.3671, 7.366, 7.3678, 7.3697, 7.3688, 7.3678, 7.367, 7.3689, 7.3678, 7.3667, 7.3657, 7.3649, 7.3639, 7.3629, 7.3619, 7.3638, 7.3654, 7.3647, 7.3637, 7.3634, 7.3624, 7.3616, 7.3634, 7.3625, 7.3614, 7.3604, 7.3594, 7.3586, 7.3603, 7.3596, 7.3614, 7.3579, 7.3571, 7.3684, 7.3673, 7.3664, 7.3654, 7.362, 7.361, 7.3612, 7.3631, 7.3654, 7.3646, 7.3664, 7.3654, 7.3647, 7.3638, 7.3656, 7.3673, 7.3695, 7.366, 7.3652, 7.365, 7.3615, 7.3605, 7.3596, 7.3589, 7.358, 7.3573, 7.3563, 7.356, 7.3551, 7.3569, 7.356, 7.3577, 7.3595, 7.3612, 7.3629, 7.3673, 7.3667, 7.3682, 7.3675, 7.3667, 7.3658, 7.3702, 7.3723, 7.374, 7.3758, 7.3749, 7.3767, 7.3811, 7.3828, 7.3874, 7.3864, 7.3854, 7.387, 7.387, 7.386, 7.385, 7.3867, 7.3884, 7.3875, 7.3891, 7.3908, 7.3898, 7.392, 7.391, 7.3902, 7.3894, 7.3911, 7.3902, 7.3919, 7.391, 7.3934, 7.3925, 7.3942, 7.3933, 7.3922, 7.3914, 7.3905, 7.3898, 7.3887, 7.3879, 7.3898, 7.3888, 7.3878, 7.3869, 7.3858, 7.3851, 7.3818, 7.3817, 7.3836, 7.3854, 7.3844, 7.386, 7.3878, 7.387, 7.3887, 7.3876, 7.4024, 7.4019, 7.4011, 7.4, 7.3991, 7.3983, 7.3973, 7.3989, 7.3955, 7.3946, 7.3938, 7.3954, 7.3974, 7.3964, 7.3981, 7.3998, 7.3989, 7.3979, 7.3968, 7.3957, 7.3947, 7.3964, 7.3982, 7.3983, 7.398, 7.3972, 7.3939, 7.3929, 7.3919, 7.3961, 7.3953, 7.3943, 7.3934, 7.3925, 7.3917, 7.3907, 7.3899, 7.3889, 7.3907, 7.3877, 7.3867, 7.3857, 7.3847, 7.384, 7.3832, 7.3824, 7.3918, 7.3909, 7.3899, 7.3889, 7.388, 7.3896, 7.3888, 7.3906, 7.3897, 7.3914, 7.3904, 7.3921, 7.3938, 7.3963, 7.3954, 7.3971, 7.3966, 7.3957, 7.3947, 7.3938, 7.3929, 7.392, 7.3911, 7.3906, 7.3896, 7.3864, 7.3854, 7.3846, 7.3837, 7.3829, 7.3821, 7.3815, 7.3809, 7.3802, 7.3819, 7.3809, 7.3829, 7.3822, 7.3812, 7.3805, 7.3796, 7.3813, 7.3803, 7.382, 7.3811, 7.3828, 7.3845, 7.3836, 7.3853, 7.3844, 7.3838, 7.3831, 7.3821, 7.3815, 7.3805, 7.3796, 7.3811, 7.3802, 7.382, 7.3838, 7.3832, 7.3824, 7.3865, 7.3881, 7.3896, 7.3886, 7.3881, 7.3897, 7.3888, 7.3983, 7.3999, 7.3995, 7.3988, 7.4035, 7.4051, 7.4044, 7.4037, 7.4032, 7.4047, 7.4037, 7.4031, 7.4023, 7.4014, 7.4005, 7.3995, 7.3989, 7.3982, 7.3973, 7.3967, 7.3959, 7.3951, 7.3945, 7.396, 7.3955, 7.3945, 7.3935, 7.3926, 7.3918, 7.3936, 7.3928, 7.392, 7.3915, 7.3898, 7.3891, 7.39, 7.3891, 7.3888, 7.3878, 7.387, 7.3865, 7.3859, 7.3853, 7.3892, 7.391, 7.3928, 7.392, 7.3938, 7.3932, 7.3924, 7.3915, 7.3933, 7.3927, 7.3918, 7.3887, 7.3878, 7.3893, 7.3888, 7.3881, 7.3873, 7.3866, 7.386, 7.3851, 7.3847, 7.3863, 7.3856, 7.3851, 7.3868, 7.3861, 7.3854, 7.3846, 7.384, 7.3831, 7.3823, 7.3815, 7.3809, 7.3804, 7.3797, 7.3766, 7.3785, 7.3776, 7.3767, 7.376, 7.3752, 7.3744, 7.3761, 7.3776, 7.3774, 7.3767, 7.3761, 7.3754, 7.3724, 7.3739, 7.3732, 7.3725, 7.3718, 7.3735, 7.3726, 7.3722, 7.3713, 7.3705, 7.3696, 7.3712, 7.3703, 7.3697, 7.3712, 7.3707, 7.3724, 7.3716, 7.3734, 7.3727, 7.3722, 7.3715, 7.3685, 7.3657, 7.3627, 7.3642, 7.3641, 7.3633, 7.3625, 7.3621, 7.3612, 7.3606, 7.3622, 7.3636, 7.3629, 7.364, 7.3678, 7.3675, 7.3666, 7.3659, 7.365, 7.3641, 7.3634, 7.3625, 7.3616, 7.361, 7.3624, 7.3615, 7.3612, 7.3677, 7.3693, 7.3685, 7.3659, 7.365, 7.3665, 7.3659, 7.365, 7.3643, 7.3639, 7.3633, 7.3648, 7.3662, 7.3655, 7.3647, 7.364, 7.3631, 7.3624, 7.3616, 7.3611, 7.3603, 7.3596, 7.3587, 7.358, 7.3596, 7.3587, 7.3601, 7.3595, 7.361, 7.3627, 7.3618, 7.3611, 7.3625, 7.3641, 7.3657, 7.3671, 7.3662, 7.3656, 7.3671, 7.3673, 7.3665, 7.368, 7.3672, 7.3664, 7.3681, 7.3679, 7.3672, 7.3663, 7.3654, 7.3668, 7.3684, 7.3678, 7.367, 7.3664, 7.3656, 7.365, 7.3642, 7.3635, 7.3628, 7.362, 7.3612, 7.3627, 7.3629, 7.3621, 7.3615, 7.363, 7.3622, 7.3651, 7.3645, 7.3637, 7.3629, 7.3621, 7.3613, 7.3605, 7.3597, 7.3589, 7.3581, 7.3596, 7.3619, 7.3612, 7.3605, 7.3598, 7.3613, 7.3627, 7.3626, 7.3621, 7.3614, 7.3609, 7.3601, 7.3594, 7.3587, 7.358, 7.3572, 7.3588, 7.3581, 7.3574, 7.3566, 7.3561, 7.3576, 7.3595, 7.3567, 7.3581, 7.3596, 7.3588, 7.3603, 7.3595, 7.3587, 7.3601, 7.3595, 7.361, 7.3624, 7.3616, 7.3609, 7.3607, 7.36, 7.3593, 7.3586, 7.358, 7.3572, 7.3568, 7.3561, 7.3553, 7.3547, 7.354, 7.3534, 7.3528, 7.3519, 7.3514, 7.3507, 7.3498, 7.3494, 7.3486, 7.3477, 7.3469, 7.3461, 7.3452, 7.3466, 7.3481, 7.3495, 7.3504, 7.3495, 7.3487, 7.3478, 7.347, 7.3484, 7.3476, 7.349, 7.3482, 7.3496, 7.3489, 7.3462, 7.3473, 7.3467, 7.3461, 7.3511, 7.3524, 7.3547, 7.354, 7.3534, 7.3533, 7.3526, 7.3518, 7.351, 7.3502, 7.3494, 7.3508, 7.3501, 7.3496, 7.349, 7.3482, 7.3474, 7.3466, 7.3463, 7.3477, 7.347, 7.3463, 7.3455, 7.3447, 7.344, 7.3434, 7.343, 7.3443, 7.3435, 7.3427, 7.3419, 7.3411, 7.3535, 7.3528, 7.3523, 7.3536, 7.355, 7.3541, 7.3533, 7.3546, 7.356, 7.3575, 7.3567, 7.3559, 7.3575, 7.3567, 7.3559, 7.3553, 7.3586, 7.3558, 7.3553, 7.3545, 7.3537, 7.355, 7.3542, 7.3536, 7.3529, 7.3523, 7.3515, 7.3531, 7.3527, 7.3519, 7.3514, 7.3487, 7.348, 7.3473, 7.3464, 7.3477, 7.345, 7.3442, 7.3455, 7.3469, 7.3465, 7.346, 7.3457, 7.3449, 7.3441, 7.3433, 7.3427, 7.342, 7.3434, 7.3431, 7.3426, 7.344, 7.3432, 7.3446, 7.3438, 7.3435, 7.343, 7.3443, 7.3436, 7.3431, 7.3405, 7.3419, 7.3414, 7.3407, 7.3404, 7.3401, 7.3398, 7.3394, 7.3393, 7.3385, 7.3399, 7.3392, 7.3385, 7.3378, 7.3371, 7.3363, 7.3377, 7.3372, 7.3365, 7.3358, 7.335, 7.3363, 7.3377, 7.3372, 7.3365, 7.3357, 7.335, 7.3364, 7.3357, 7.3356, 7.3348, 7.334, 7.3333, 7.3327, 7.3321, 7.3315, 7.3309, 7.3303, 7.3316, 7.3309, 7.3302, 7.3297, 7.3315, 7.3329, 7.3322, 7.3317, 7.331, 7.3306, 7.3319, 7.3314, 7.331, 7.3324, 7.3317, 7.3311, 7.3308, 7.3322, 7.3335, 7.333, 7.3322, 7.3336, 7.333, 7.3323, 7.3319, 7.3313, 7.3307, 7.3302, 7.3296, 7.3291, 7.3292, 7.3285, 7.3282, 7.3288, 7.3281, 7.3295, 7.3288, 7.3283, 7.3275, 7.3268, 7.3281, 7.3275, 7.3271, 7.3266, 7.3259, 7.3251, 7.3245, 7.324, 7.3232, 7.3245, 7.3237, 7.3231, 7.3267, 7.3263, 7.3257, 7.3235, 7.3248, 7.3257, 7.3249, 7.3242, 7.3234, 7.3247, 7.324, 7.3233, 7.3208, 7.32, 7.3192, 7.3205, 7.3218, 7.3211, 7.3242, 7.3274, 7.3267, 7.3261, 7.3259, 7.3257, 7.3289, 7.3325, 7.3301, 7.3352, 7.3347, 7.3339, 7.3331, 7.3384, 7.3377, 7.3375, 7.3369, 7.3363, 7.3377, 7.3391, 7.3384, 7.3376, 7.339, 7.3404, 7.3459, 7.3471, 7.3525, 7.3538, 7.3533, 7.3527, 7.3519, 7.3532, 7.353, 7.3552, 7.3576, 7.3588, 7.3582, 7.3595, 7.3608, 7.3604, 7.3601, 7.3593, 7.3612, 7.3608, 7.3602, 7.3617, 7.361, 7.3624, 7.3646, 7.3639, 7.3633, 7.3626, 7.362, 7.3614, 7.3607, 7.3601, 7.3594, 7.3605, 7.3601, 7.3594, 7.3588, 7.3582, 7.3575, 7.3568, 7.3561, 7.3575, 7.3586, 7.3579, 7.3573, 7.3567, 7.3562, 7.3556, 7.355, 7.3543, 7.3556, 7.3549, 7.3569, 7.3562, 7.3557, 7.3551, 7.3526, 7.3528, 7.3504, 7.3506, 7.3501, 7.3544, 7.3523, 7.352, 7.3516, 7.3508, 7.35, 7.3529, 7.3525, 7.352, 7.3512, 7.3506, 7.3499, 7.3492, 7.3488, 7.3484, 7.3516, 7.3512, 7.3507, 7.3503, 7.3498, 7.3492, 7.3484, 7.3497, 7.349, 7.3502, 7.3496, 7.3513, 7.3506, 7.35, 7.3512, 7.3505, 7.3498, 7.3491, 7.349, 7.3483, 7.3483, 7.3572, 7.3567, 7.356, 7.3555, 7.3548, 7.3543, 7.3576, 7.3569, 7.3562, 7.3562, 7.3555, 7.3548, 7.354, 7.3552, 7.3545, 7.3557, 7.3551, 7.3563, 7.3575, 7.3568, 7.3563, 7.3582, 7.3558, 7.357, 7.3581, 7.3575, 7.3569, 7.3604, 7.3615, 7.3611, 7.3616, 7.361, 7.3603, 7.3605, 7.3598, 7.3612, 7.3606, 7.3599, 7.3594, 7.3587, 7.3581, 7.3557, 7.355, 7.3543, 7.3556, 7.355, 7.3562, 7.3555, 7.3548, 7.356, 7.3573, 7.3566, 7.3583, 7.3595, 7.3588, 7.3581, 7.3574, 7.3567, 7.356, 7.3573, 7.3585, 7.3578, 7.3571, 7.3578, 7.359, 7.3604, 7.3597, 7.359, 7.3602, 7.3614, 7.3626, 7.3638, 7.3631, 7.3623, 7.3619, 7.3612, 7.3605, 7.3618, 7.3611, 7.3606, 7.3602, 7.3603, 7.3597, 7.361, 7.3623, 7.3616, 7.361, 7.3603, 7.3596, 7.3591, 7.3588, 7.3581, 7.3579, 7.3591, 7.3584, 7.358, 7.3573, 7.3584, 7.3577, 7.3589, 7.3601, 7.3614, 7.3651, 7.3665, 7.3678, 7.373, 7.3725, 7.372, 7.375, 7.3744, 7.3737, 7.373, 7.3742, 7.3736, 7.3729, 7.3743, 7.3736, 7.3729, 7.3722, 7.3717, 7.3712, 7.3724, 7.3718, 7.3712, 7.3688, 7.3681, 7.3694, 7.3688, 7.3699, 7.3694, 7.367, 7.3682, 7.3676, 7.3669, 7.3663, 7.3677, 7.369, 7.3684, 7.3677, 7.3688, 7.3701, 7.3743, 7.3736, 7.373, 7.3723, 7.3717, 7.3711, 7.3705, 7.3718, 7.3731, 7.3725, 7.3719, 7.3713, 7.3708, 7.3704, 7.3698, 7.3691, 7.3684, 7.3677, 7.3688, 7.3684, 7.368, 7.3673, 7.3669, 7.3662, 7.3673, 7.3684, 7.3678, 7.3672, 7.3701, 7.3695, 7.3726, 7.3719, 7.3695, 7.3693, 7.3689, 7.3682, 7.3676, 7.3671, 7.3681, 7.3674, 7.367, 7.3663, 7.3673, 7.3666, 7.3659, 7.3654, 7.3648, 7.366, 7.366, 7.3655, 7.3666, 7.3659, 7.367, 7.3663, 7.3657, 7.3652, 7.3648, 7.3642, 7.3655, 7.365, 7.3662, 7.3674, 7.3667, 7.366, 7.3655, 7.365, 7.3644, 7.3639, 7.3651, 7.3644, 7.3656, 7.3651, 7.3646, 7.3642, 7.3635, 7.3629, 7.3644, 7.3639, 7.3633, 7.363, 7.3625, 7.3619, 7.3615, 7.3608, 7.3602, 7.3579, 7.3578, 7.3579, 7.3594, 7.3591, 7.3586, 7.358, 7.3576, 7.3589, 7.3583, 7.3645, 7.3656, 7.3634, 7.3612, 7.3605, 7.3598, 7.3629, 7.3641, 7.3638, 7.3634, 7.3667, 7.3661, 7.3657, 7.3653, 7.3665, 7.3659, 7.3653, 7.3649, 7.3662, 7.3673, 7.3667, 7.3678, 7.3671, 7.3668, 7.368, 7.3691, 7.3687, 7.3698, 7.3709, 7.3704, 7.3699, 7.3693, 7.369, 7.3684, 7.3679, 7.3672, 7.3665, 7.3678, 7.3709, 7.3716, 7.3709, 7.3703, 7.3698, 7.3693, 7.371, 7.3688, 7.3682, 7.3677, 7.3673, 7.3685, 7.368, 7.3673, 7.3666, 7.3661, 7.3674, 7.3669, 7.3662, 7.3655, 7.3666, 7.3659, 7.3654, 7.3648, 7.3661, 7.3655, 7.3633, 7.3628, 7.364, 7.3633, 7.3628, 7.3639, 7.3633, 7.3628, 7.3659, 7.3653, 7.3646, 7.3641, 7.3635, 7.3629, 7.3642, 7.3636, 7.3629, 7.3624, 7.3618, 7.363, 7.3624, 7.3636, 7.3632, 7.3627, 7.3639, 7.3634, 7.3646, 7.3641, 7.3635, 7.3632, 7.3626, 7.362, 7.3669, 7.3664, 7.3682, 7.3694, 7.3689, 7.3685, 7.368, 7.3674, 7.3686, 7.3698, 7.3693, 7.3687, 7.3682, 7.3675, 7.3668, 7.368, 7.3675, 7.3672, 7.3667, 7.3663, 7.3674, 7.3669, 7.3664, 7.3659, 7.3654, 7.3647, 7.3641, 7.3653, 7.3647, 7.3641, 7.3619, 7.3613, 7.3608, 7.3737, 7.375, 7.3746, 7.3742, 7.3736, 7.3748, 7.3742, 7.3735, 7.3729, 7.374, 7.3752, 7.375, 7.3744, 7.3739, 7.3752, 7.3763, 7.3742, 7.3737, 7.3749, 7.3761, 7.3739, 7.3735, 7.3731, 7.3741, 7.3737, 7.3748, 7.3759, 7.3771, 7.3766, 7.3779, 7.3773, 7.3766, 7.3777, 7.3773, 7.3767, 7.3763, 7.3757, 7.3788, 7.3805, 7.3801, 7.3796, 7.3807, 7.3805, 7.3798, 7.3793, 7.3788, 7.3789, 7.3786, 7.378, 7.3774, 7.3786, 7.3779, 7.3773, 7.3767, 7.3761, 7.3755, 7.3749, 7.3744, 7.3775, 7.3769, 7.3781, 7.3778, 7.379, 7.3784, 7.3778, 7.3772, 7.3766, 7.3762, 7.3757, 7.375, 7.3761, 7.3755, 7.3748, 7.3742, 7.3737, 7.3749, 7.3759, 7.3755, 7.3803, 7.3815, 7.381, 7.3805, 7.3819, 7.3832, 7.3827, 7.3822, 7.3837, 7.3836, 7.3836, 7.3831, 7.3841, 7.3836, 7.3831, 7.3824, 7.3822, 7.3815, 7.3809, 7.3805, 7.3799, 7.3797, 7.3791, 7.377, 7.3765, 7.3777, 7.3771, 7.3765, 7.3759, 7.3753, 7.3748, 7.3744, 7.3766, 7.376, 7.3754, 7.3749, 7.3745, 7.374, 7.375, 7.3761, 7.3756, 7.375, 7.3747, 7.3741, 7.3736, 7.3735, 7.373, 7.3725, 7.3718, 7.3757, 7.3768, 7.3761, 7.3789, 7.3787, 7.3782, 7.3777, 7.3771, 7.3765, 7.3776, 7.3773, 7.3767, 7.3763, 7.3763, 7.3759, 7.3786, 7.378, 7.3774, 7.3785, 7.3796, 7.379, 7.3784, 7.3796, 7.3807, 7.3801, 7.3812, 7.3807, 7.3802, 7.3796, 7.3777, 7.3771, 7.3766, 7.3778, 7.3772, 7.3766, 7.376, 7.3754, 7.3765, 7.3775, 7.3769, 7.3763, 7.3758, 7.3751, 7.3746, 7.374, 7.3736, 7.3747, 7.3742, 7.3736, 7.373, 7.3741, 7.3739, 7.3737, 7.3731, 7.3742, 7.3736, 7.3732, 7.3744, 7.3739, 7.3751, 7.3745, 7.3741, 7.3752, 7.3748, 7.3744, 7.374, 7.3734, 7.3728, 7.3725, 7.3724, 7.3735, 7.3731, 7.3741, 7.3774, 7.377, 7.378, 7.3774, 7.3784, 7.3778, 7.3788, 7.3782, 7.3779, 7.3773, 7.3787, 7.3787, 7.3799, 7.3811, 7.3808, 7.3817, 7.3812, 7.3807, 7.3802, 7.3797, 7.3792, 7.3787, 7.3782, 7.3794, 7.3805, 7.3802, 7.3796, 7.3792, 7.3789, 7.3785, 7.3781, 7.3775, 7.377, 7.3764, 7.3777, 7.3771, 7.3766, 7.3776, 7.377, 7.3798, 7.3806, 7.38, 7.3795, 7.379, 7.3785, 7.378, 7.3775, 7.3785, 7.3795, 7.3791, 7.3785, 7.3779, 7.3773, 7.3768, 7.3762, 7.3772, 7.3767, 7.3762, 7.3756, 7.3754, 7.3765, 7.3761, 7.3772, 7.3783, 7.3777, 7.3787, 7.3781, 7.3791, 7.3788, 7.3784, 7.3778, 7.3772, 7.3765, 7.3761, 7.3757, 7.3767, 7.3763, 7.3775, 7.377, 7.3782, 7.3778, 7.3772, 7.3769, 7.3764, 7.3775, 7.3771, 7.3766, 7.3778, 7.3774, 7.3768, 7.3763, 7.3759, 7.3754, 7.375, 7.3746, 7.3742, 7.3739, 7.375, 7.3745, 7.3739, 7.3735, 7.373, 7.3741, 7.3751, 7.3762, 7.3756, 7.3752, 7.3746, 7.3741, 7.3751, 7.3782, 7.3765, 7.3762, 7.3757, 7.3752, 7.3746, 7.374, 7.3751, 7.3731, 7.3726, 7.372, 7.3714, 7.3708, 7.3703, 7.3715, 7.3725, 7.3719, 7.3717, 7.3713, 7.3707, 7.372, 7.3731, 7.3728, 7.3724, 7.3705, 7.3715, 7.3725, 7.3721, 7.3717, 7.3711, 7.3706, 7.3687, 7.3697, 7.3695, 7.3705, 7.37, 7.3699, 7.3695, 7.3696, 7.3692, 7.3686, 7.3682, 7.3682, 7.3679, 7.3674, 7.3671, 7.3721, 7.3734, 7.3731, 7.3727, 7.3725, 7.3721, 7.3731, 7.3742, 7.3738, 7.3732, 7.3726, 7.372, 7.37, 7.3681, 7.3666, 7.3662, 7.3656, 7.3639, 7.3633, 7.3628, 7.3637, 7.3632, 7.3641, 7.3635, 7.3646, 7.3641, 7.3635, 7.3629, 7.3626, 7.3623, 7.3678, 7.369, 7.3686, 7.368, 7.3689, 7.367, 7.3666, 7.366, 7.3656, 7.3651, 7.3647, 7.3644, 7.3639, 7.3636, 7.3645, 7.3661, 7.3656, 7.3652, 7.3648, 7.3644, 7.3638, 7.3648, 7.3658, 7.3654, 7.3683, 7.3677, 7.3673, 7.3668, 7.3677, 7.3671, 7.368, 7.3689, 7.3683, 7.3677, 7.3686, 7.368, 7.3675, 7.3656, 7.3661, 7.3657, 7.3667, 7.3662, 7.3656, 7.3651, 7.366, 7.3654, 7.3648, 7.3658, 7.3654, 7.3649, 7.3644, 7.3638, 7.3634, 7.3629, 7.3624, 7.3619, 7.3615, 7.361, 7.3605, 7.3601, 7.36, 7.3596, 7.3606, 7.3602, 7.3612, 7.3608, 7.3605, 7.36, 7.361, 7.3605, 7.3588, 7.3583, 7.3579, 7.3574, 7.3555, 7.3538, 7.3534, 7.3544, 7.3555, 7.355, 7.356, 7.3574, 7.3583, 7.3578, 7.3572, 7.3553, 7.355, 7.3544, 7.3554, 7.3548, 7.3558, 7.3539, 7.3555, 7.3551, 7.3545, 7.3558, 7.3552, 7.3547, 7.3556, 7.3551, 7.3548, 7.3545, 7.3558, 7.3552, 7.3547, 7.3543, 7.3537, 7.352, 7.3515, 7.351, 7.3504, 7.3501, 7.3511, 7.3506, 7.3501, 7.3495, 7.3537, 7.3535, 7.3544, 7.3553, 7.3549, 7.3544, 7.3539, 7.3535, 7.3531, 7.3528, 7.3539, 7.3534, 7.3531, 7.3527, 7.3524, 7.3521, 7.3516, 7.3511, 7.3506, 7.3501, 7.3498, 7.3494, 7.349, 7.35, 7.3495, 7.349, 7.3486, 7.3481, 7.3491, 7.3486, 7.3481, 7.3463, 7.3458, 7.3453, 7.3448, 7.3445, 7.3459, 7.3459, 7.3454, 7.3451, 7.3447, 7.3456, 7.3466, 7.3462, 7.3459, 7.3453, 7.3447, 7.3443, 7.3451, 7.3446, 7.3442, 7.3437, 7.3433, 7.3428, 7.3439, 7.345, 7.3447, 7.3444, 7.3439, 7.345, 7.3445, 7.344, 7.3449, 7.3458, 7.344, 7.3422, 7.3432, 7.3427, 7.3422, 7.3432, 7.3426, 7.3421, 7.3418, 7.3413, 7.3408, 7.3403, 7.3401, 7.3396, 7.3391, 7.3373, 7.3355, 7.3365, 7.3375, 7.337, 7.3379, 7.3375, 7.3358, 7.3354, 7.3349, 7.3343, 7.3338, 7.3347, 7.3345, 7.3341, 7.3337, 7.3333, 7.3342, 7.3337, 7.335, 7.3345, 7.334, 7.3335, 7.3331, 7.3341, 7.3367, 7.3366, 7.336, 7.3361, 7.3346, 7.3341, 7.3336, 7.3387, 7.3382, 7.3391, 7.3385, 7.3395, 7.339, 7.3388, 7.3383, 7.3391, 7.3393, 7.339, 7.3388, 7.3384, 7.3382, 7.3376, 7.3384, 7.3387, 7.3369, 7.3364, 7.3359, 7.3343, 7.3339, 7.3337, 7.3332, 7.3327, 7.3322, 7.3318, 7.3313, 7.331, 7.3306, 7.3301, 7.3283, 7.3298, 7.3292, 7.3289, 7.3284, 7.3279, 7.3274, 7.3271, 7.3266, 7.3263, 7.3266, 7.3261, 7.3256, 7.3242, 7.3238, 7.3235, 7.3231, 7.3227, 7.3223, 7.3207, 7.3202, 7.3197, 7.3206, 7.3229, 7.3224, 7.3219, 7.3228, 7.3237, 7.3248, 7.3243, 7.3252, 7.3261, 7.3272, 7.3281, 7.3263, 7.3258, 7.3253, 7.3249, 7.3245, 7.324, 7.3272, 7.3254, 7.3292, 7.3289, 7.3285, 7.328, 7.3275, 7.327, 7.3279, 7.3287, 7.3284, 7.3294, 7.3298, 7.3295, 7.3291, 7.3286, 7.3308, 7.3303, 7.3312, 7.3307, 7.3303, 7.3298, 7.3294, 7.3276, 7.3271, 7.3266, 7.3261, 7.3256, 7.3251, 7.326, 7.3255, 7.3264, 7.3264, 7.326, 7.3255, 7.3263, 7.326, 7.327, 7.3265, 7.326, 7.327, 7.3265, 7.326, 7.3255, 7.3265, 7.3282, 7.329, 7.3286, 7.3281, 7.3289, 7.3303, 7.3299, 7.3295, 7.3305, 7.3302, 7.3309, 7.3305, 7.3302, 7.3298, 7.3294, 7.329, 7.33, 7.3309, 7.3308, 7.3324, 7.3319, 7.3315, 7.331, 7.3307, 7.3303, 7.3313, 7.3311, 7.332, 7.3315, 7.3311, 7.3306, 7.3302, 7.3298, 7.3323, 7.3318, 7.3313, 7.3308, 7.3308, 7.3304, 7.33, 7.3295, 7.3291, 7.3286, 7.3282, 7.3278, 7.3286, 7.3281, 7.3277, 7.3273, 7.3281, 7.3276, 7.3276, 7.327, 7.3279, 7.3276, 7.3261, 7.3259, 7.3255, 7.3267, 7.3263, 7.3258, 7.3255, 7.3264, 7.3283, 7.3279, 7.3326, 7.335, 7.3377, 7.3406, 7.3414, 7.3409, 7.3418, 7.3413, 7.3409, 7.3404, 7.34, 7.3396, 7.3393, 7.3388, 7.34, 7.3395, 7.339, 7.3399, 7.3395, 7.3391, 7.339, 7.3399, 7.3385, 7.338, 7.3376, 7.3386, 7.3398, 7.3406, 7.3407, 7.3402, 7.3398, 7.3407, 7.3443, 7.3438, 7.3446, 7.3456, 7.3451, 7.346, 7.3455, 7.3464, 7.3472, 7.3467, 7.3462, 7.3458, 7.3454, 7.3449, 7.3444, 7.3453, 7.3449, 7.3457, 7.3453, 7.3448, 7.3444, 7.3427, 7.3436, 7.3431, 7.344, 7.3448, 7.3456, 7.3452, 7.3461, 7.3458, 7.3467, 7.3463, 7.3458, 7.3453, 7.3449, 7.3444, 7.3453, 7.3449, 7.3444, 7.3442, 7.3438, 7.3433, 7.3429, 7.3439, 7.3423, 7.3419, 7.3487, 7.3484, 7.3479, 7.3476, 7.3475, 7.3507, 7.3503, 7.3499, 7.351, 7.3521, 7.3518, 7.3513, 7.3508, 7.3516, 7.3512, 7.3521, 7.353, 7.3525, 7.3521, 7.3516, 7.3512, 7.3507, 7.3503, 7.3499, 7.3495, 7.349, 7.35, 7.3495, 7.349, 7.3485, 7.3494, 7.3489, 7.3484, 7.3479, 7.3475, 7.347, 7.3466, 7.3461, 7.3456, 7.3452, 7.3448, 7.3432, 7.3433, 7.3442, 7.3458, 7.3441, 7.3425, 7.3421, 7.343, 7.3426, 7.3422, 7.3431, 7.3428, 7.3437, 7.3437, 7.3432, 7.3428, 7.3426, 7.3421, 7.3421, 7.3429, 7.3437, 7.3432, 7.3427, 7.3414, 7.341, 7.3419, 7.3415, 7.3411, 7.342, 7.3405, 7.3401, 7.3396, 7.3391, 7.3399, 7.3395, 7.3404, 7.3438, 7.3433, 7.3442, 7.3439, 7.3436, 7.3432, 7.3441, 7.347, 7.3465, 7.3492, 7.3521, 7.3518, 7.3513, 7.3523, 7.3588, 7.3584, 7.3593, 7.3616, 7.3614, 7.361, 7.3608, 7.3604, 7.3628, 7.3638, 7.3633, 7.3646, 7.3643, 7.3639, 7.3647, 7.3642, 7.3639, 7.3639, 7.3648, 7.3645, 7.3642, 7.3638, 7.3646, 7.3643, 7.3639, 7.3634, 7.3618, 7.3616, 7.3611, 7.3606, 7.3608, 7.3606, 7.3615, 7.3638, 7.3635, 7.3631, 7.3628, 7.3676, 7.3675, 7.3672, 7.3668, 7.3664, 7.3672, 7.3667, 7.3662, 7.3657, 7.3653, 7.3649, 7.3644, 7.3661, 7.3669, 7.3665, 7.3661, 7.3657, 7.3652, 7.3647, 7.3645, 7.3653, 7.365, 7.3646, 7.3643, 7.3641, 7.3636, 7.3632, 7.3642, 7.3637, 7.3635, 7.363, 7.3627, 7.3622, 7.3621, 7.3629, 7.3637, 7.3632, 7.3629, 7.3626, 7.3622, 7.362, 7.3631, 7.3629, 7.3625, 7.3621, 7.3617, 7.3616, 7.3613, 7.3609, 7.3617, 7.3613, 7.3609, 7.3617, 7.3626, 7.3624, 7.3635, 7.3619, 7.3604, 7.3612, 7.3607, 7.3602, 7.3597, 7.3581, 7.3576, 7.3571, 7.3567, 7.3577, 7.3585, 7.3589, 7.3585, 7.3569, 7.3553, 7.3561, 7.3578, 7.3574, 7.3571, 7.3567, 7.3563, 7.3558, 7.3554, 7.3552, 7.3562, 7.3557, 7.3542, 7.355, 7.3559, 7.3555, 7.3576, 7.3574, 7.3583, 7.3578, 7.3574, 7.3582, 7.3577, 7.3573, 7.3569, 7.3579, 7.3574, 7.3581, 7.3586, 7.3595, 7.359, 7.3586, 7.3595, 7.359, 7.3586, 7.3581, 7.3577, 7.3573, 7.357, 7.3565, 7.3574, 7.3583, 7.3581, 7.3578, 7.3575, 7.3571, 7.3555, 7.3563, 7.3559, 7.3556, 7.3564, 7.3561, 7.3557, 7.3552, 7.3548, 7.3544, 7.354, 7.3548, 7.3545, 7.3541, 7.3539, 7.3546, 7.3541, 7.3538, 7.3534, 7.3529, 7.3537, 7.3532, 7.3527, 7.3522, 7.353, 7.3528, 7.3525, 7.3521, 7.3517, 7.3513, 7.3499, 7.3494, 7.349, 7.3486, 7.3481, 7.3478, 7.3504, 7.3514, 7.35, 7.3508, 7.3505, 7.35, 7.3495, 7.3491, 7.3487, 7.3483, 7.3496, 7.3492, 7.35, 7.3497, 7.3493, 7.3488, 7.3496, 7.3491, 7.3487, 7.3483, 7.3491, 7.3486, 7.3484, 7.3482, 7.3478, 7.3487, 7.3483, 7.3492, 7.3487, 7.3496, 7.3492, 7.3488, 7.3485, 7.3481, 7.3477, 7.3473, 7.348, 7.3475, 7.347, 7.3467, 7.3452, 7.3448, 7.3444, 7.3439, 7.3423, 7.342, 7.3416, 7.3424, 7.3433, 7.3439, 7.3438, 7.3435, 7.3431, 7.3429, 7.3437, 7.3444, 7.3441, 7.3436, 7.3432, 7.344, 7.3435, 7.3433, 7.3431, 7.3426, 7.3411, 7.3395, 7.339, 7.3399, 7.3406, 7.3402, 7.3397, 7.3394, 7.339, 7.3386, 7.3382, 7.3378, 7.3373, 7.3369, 7.3365, 7.336, 7.3369, 7.3365, 7.3361, 7.3357, 7.3353, 7.3348, 7.3343, 7.3343, 7.3352, 7.335, 7.3358, 7.3367, 7.3363, 7.3371, 7.3366, 7.3374, 7.3369, 7.3364, 7.3362, 7.3357, 7.3354, 7.3352, 7.3352, 7.3361, 7.3346, 7.3342, 7.3339, 7.3348, 7.3345, 7.3353, 7.3349, 7.3345, 7.333, 7.3325, 7.3333, 7.333, 7.3331, 7.3327, 7.3323, 7.3333, 7.3328, 7.3324, 7.3344, 7.3345, 7.3341, 7.3341, 7.3339, 7.3323, 7.3307, 7.3303, 7.3311, 7.333, 7.3327, 7.3323, 7.3331, 7.3339, 7.3335, 7.3343, 7.3328, 7.3325, 7.332, 7.3341, 7.3338, 7.3346, 7.3354, 7.3362, 7.3358, 7.3366, 7.3362, 7.3358, 7.3353, 7.3361, 7.3368, 7.3371, 7.3367, 7.3363, 7.336, 7.3357, 7.3352, 7.3361, 7.3356, 7.3352, 7.3359, 7.3356, 7.3351, 7.3347, 7.3355, 7.3351, 7.3359, 7.3367, 7.3363, 7.3359, 7.3354, 7.3351, 7.3347, 7.3343, 7.3339, 7.3335, 7.3331, 7.3328, 7.3324, 7.3321, 7.3306, 7.333, 7.3326, 7.3322, 7.3327, 7.3334, 7.333, 7.3327, 7.3323, 7.3331, 7.3338, 7.3335, 7.3333, 7.3329, 7.3314, 7.331, 7.3309, 7.3308, 7.334, 7.3335, 7.3343, 7.3339, 7.3372, 7.3378, 7.339, 7.3386, 7.3382, 7.339, 7.3386, 7.3393, 7.3403, 7.3399, 7.3394, 7.3389, 7.3386, 7.3383, 7.339, 7.3397, 7.3404, 7.3412, 7.3408, 7.3405, 7.34, 7.3407, 7.3402, 7.3401, 7.3397, 7.3392, 7.3392, 7.3389, 7.3385, 7.3393, 7.339, 7.3387, 7.3384, 7.3391, 7.3403, 7.34, 7.3397, 7.3404, 7.34, 7.3395, 7.3393, 7.3402, 7.341, 7.3405, 7.3401, 7.341, 7.3406, 7.3404, 7.3402, 7.3398, 7.3394, 7.3402, 7.3398, 7.3395, 7.3391, 7.3388, 7.3385, 7.3381, 7.3378, 7.3379, 7.3387, 7.3385, 7.3392, 7.34, 7.3399, 7.3396, 7.3383, 7.339, 7.3388, 7.3384, 7.338, 7.3376, 7.3372, 7.3369, 7.3366, 7.3364, 7.336, 7.3357, 7.3353, 7.3349, 7.3345, 7.3343, 7.3339, 7.3335, 7.333, 7.3337, 7.3335, 7.333, 7.3327, 7.3323, 7.3308, 7.3304, 7.329, 7.3287, 7.3283, 7.3281, 7.3289, 7.3296, 7.3293, 7.33, 7.3307, 7.3304, 7.33, 7.3296, 7.3292, 7.3288, 7.3284, 7.328, 7.3275, 7.3283, 7.329, 7.3297, 7.3292, 7.3287, 7.3283, 7.3279, 7.3284, 7.3281, 7.3277, 7.3273, 7.3269, 7.3266, 7.3262, 7.3271, 7.3268, 7.3253, 7.325, 7.3246, 7.3243, 7.3241, 7.3227, 7.3223, 7.3219, 7.3227, 7.3223, 7.3231, 7.3228, 7.3226, 7.3222, 7.3219, 7.3205, 7.3201, 7.3198, 7.3183, 7.318, 7.3179, 7.3177, 7.3185, 7.3182, 7.3187, 7.3182, 7.3179, 7.3175, 7.3161, 7.3157, 7.3164, 7.3161, 7.3168, 7.3165, 7.3174, 7.317, 7.3179, 7.3175, 7.3172, 7.318, 7.3188, 7.3185, 7.3185, 7.3181, 7.3178, 7.3175, 7.3173, 7.317, 7.3166, 7.3173, 7.3181, 7.3177, 7.3173, 7.3169, 7.3165, 7.3161, 7.3146, 7.3153, 7.3152, 7.3149, 7.3149, 7.3146, 7.3143, 7.3139, 7.317, 7.3177, 7.3174, 7.317, 7.3167, 7.3163, 7.3159, 7.3155, 7.3175, 7.3172, 7.3168, 7.3164, 7.3186, 7.3182, 7.3192, 7.3188, 7.3194, 7.3218, 7.3215, 7.3212, 7.3208, 7.3205, 7.3212, 7.3208, 7.3205, 7.3201, 7.3198, 7.3196, 7.3193, 7.3189, 7.3185, 7.3181, 7.3167, 7.3171, 7.3179, 7.3178, 7.3174, 7.3182, 7.3204, 7.3211, 7.3222, 7.3229, 7.3226, 7.3233, 7.324, 7.3237, 7.3233, 7.3219, 7.3216, 7.3212, 7.322, 7.3217, 7.3214, 7.3223, 7.3221, 7.3218, 7.3214, 7.321, 7.3218, 7.3216, 7.3212, 7.322, 7.3228, 7.3225, 7.3221, 7.3219, 7.3216, 7.3212, 7.3208, 7.3217, 7.3203, 7.3199, 7.3199, 7.3207, 7.3205, 7.3202, 7.3188, 7.3188, 7.3187, 7.3184, 7.3192, 7.319, 7.3187, 7.3188, 7.3184, 7.3181, 7.3183, 7.3191, 7.3179, 7.3175, 7.3182, 7.3193, 7.3191, 7.3188, 7.3184, 7.3183, 7.318, 7.3179, 7.3176, 7.3173, 7.317, 7.3166, 7.3162, 7.318, 7.3178, 7.3187, 7.3186, 7.3182, 7.3169, 7.3165, 7.3162, 7.3158, 7.3156, 7.3152, 7.3149, 7.3146, 7.3143, 7.314, 7.3136, 7.3133, 7.3129, 7.3128, 7.3136, 7.3144, 7.3141, 7.3127, 7.3123, 7.312, 7.3116, 7.3112, 7.3109, 7.3106, 7.3102, 7.311, 7.3106, 7.3103, 7.3099, 7.3085, 7.3084, 7.308, 7.3076, 7.3073, 7.3069, 7.3069, 7.3077, 7.3073, 7.308, 7.3076, 7.3072, 7.3069, 7.3065, 7.3061, 7.3057, 7.3054, 7.3061, 7.3068, 7.3065, 7.3073, 7.3069, 7.3066, 7.3062, 7.307, 7.3068, 7.3065, 7.3061, 7.3075, 7.3072, 7.307, 7.3066, 7.3063, 7.306, 7.3056, 7.3053, 7.304, 7.3048, 7.3054, 7.3063, 7.307, 7.3066, 7.3062, 7.305, 7.3058, 7.3045, 7.3041, 7.3043, 7.3041, 7.3049, 7.3045, 7.3042, 7.3041, 7.3038, 7.3034, 7.3031, 7.304, 7.3051, 7.3063, 7.3051, 7.3047, 7.3059, 7.306, 7.3056, 7.3052, 7.3048, 7.3055, 7.3052, 7.3049, 7.3035, 7.3084, 7.308, 7.3087, 7.3084, 7.3093, 7.3089, 7.3086, 7.3082, 7.3089, 7.3087, 7.3094, 7.3102, 7.31, 7.3096, 7.3093, 7.309, 7.3098, 7.3096, 7.3093, 7.3091, 7.3088, 7.3085, 7.3082, 7.3079, 7.3075, 7.3072, 7.3069, 7.3067, 7.3064, 7.3082, 7.309, 7.312, 7.3128, 7.3136, 7.3133, 7.314, 7.3149, 7.3156, 7.3152, 7.3148, 7.3144, 7.314, 7.3149, 7.3145, 7.3152, 7.3159, 7.3166, 7.3164, 7.316, 7.3146, 7.3133, 7.3129, 7.3125, 7.3122, 7.3118, 7.3114, 7.3121, 7.3117, 7.3114, 7.3112, 7.3112, 7.3108, 7.3095, 7.3112, 7.3119, 7.3128, 7.3141, 7.3138, 7.3135, 7.3143, 7.3142, 7.314, 7.3137, 7.3135, 7.3131, 7.313, 7.3129, 7.3125, 7.3133, 7.3143, 7.3139, 7.314, 7.3136, 7.3133, 7.3129, 7.3125, 7.3122, 7.3121, 7.3128, 7.3125, 7.3121, 7.3128, 7.3134, 7.3131, 7.3133, 7.313, 7.3117, 7.3113, 7.3127, 7.3158, 7.3155, 7.3151, 7.3148, 7.3148, 7.3147, 7.3143, 7.3139, 7.3136, 7.3132, 7.3128, 7.3125, 7.3121, 7.3128, 7.3125, 7.3122, 7.3118, 7.3115, 7.3112, 7.3119, 7.3126, 7.3122, 7.312, 7.3121, 7.3117, 7.3114, 7.3123, 7.312, 7.3117, 7.3103, 7.31, 7.3108, 7.3106, 7.3102, 7.3099, 7.3096, 7.3093, 7.31, 7.3097, 7.3094, 7.3102, 7.3099, 7.3106, 7.3113, 7.3109, 7.3108, 7.3115, 7.3111, 7.3108, 7.3104, 7.31, 7.3096, 7.3093, 7.3089, 7.3087, 7.3104, 7.3112, 7.3108, 7.3116, 7.3123, 7.3119, 7.3126, 7.3122, 7.3119, 7.3164, 7.316, 7.3156, 7.3152, 7.3149, 7.3157, 7.3153, 7.3159, 7.3166, 7.3162, 7.3158, 7.3154, 7.3161, 7.3157, 7.3164, 7.316, 7.3156, 7.3163, 7.316, 7.3157, 7.3144, 7.3141, 7.3148, 7.315, 7.3147, 7.3143, 7.3141, 7.3137, 7.3133, 7.3129, 7.3125, 7.3131, 7.3127, 7.3124, 7.312, 7.3116, 7.3112, 7.3109, 7.3107, 7.3103, 7.3102, 7.3089, 7.3085, 7.3081, 7.3077, 7.3074, 7.3072, 7.3068, 7.3065, 7.3061, 7.3057, 7.3054, 7.305, 7.3057, 7.3054, 7.3051, 7.3047, 7.3054, 7.3041, 7.3039, 7.3035, 7.3053, 7.3059, 7.3056, 7.3053, 7.306, 7.3056, 7.3063, 7.307, 7.3066, 7.3062, 7.3059, 7.3056, 7.3073, 7.307, 7.3066, 7.3065, 7.3073, 7.3069, 7.3067, 7.3074, 7.307, 7.3077, 7.3075, 7.3071, 7.3068, 7.3065, 7.3052, 7.3048, 7.3048, 7.3044, 7.3041, 7.3037, 7.3044, 7.3031, 7.3027, 7.3015, 7.3022, 7.3019, 7.3015, 7.3011, 7.3007, 7.3003, 7.3, 7.2997, 7.3006, 7.3014, 7.3021, 7.3028, 7.3035, 7.3031, 7.3029, 7.3036, 7.3033, 7.304, 7.3096, 7.3103, 7.3099, 7.3095, 7.3102, 7.3112, 7.3119, 7.3106, 7.3102, 7.3099, 7.3095, 7.3092, 7.3088, 7.3095, 7.3102, 7.3099, 7.3106, 7.3114, 7.3111, 7.3107, 7.3094, 7.309, 7.3087, 7.3084, 7.3081, 7.3078, 7.3075, 7.3072, 7.3069, 7.3066, 7.3063, 7.306, 7.3057, 7.3064, 7.3064, 7.3053, 7.3041, 7.3049, 7.3056, 7.3053, 7.3049, 7.3059, 7.3062, 7.3069, 7.3067, 7.3074, 7.307, 7.3067, 7.3064, 7.3061, 7.3057, 7.3053, 7.305, 7.3047, 7.3043, 7.304, 7.3036, 7.3033, 7.3029, 7.3036, 7.3033, 7.303, 7.3028, 7.3056, 7.3055, 7.3061, 7.3057, 7.3053, 7.3049, 7.3045, 7.3041, 7.3037, 7.3033, 7.3029, 7.3036, 7.3034, 7.3042, 7.3049, 7.3047, 7.3034, 7.304, 7.3037, 7.3044, 7.3041, 7.303, 7.3017, 7.3023, 7.303, 7.3027, 7.3023, 7.3019, 7.3016, 7.3012, 7.3008, 7.3005, 7.3003, 7.3002, 7.3001, 7.2998, 7.2994, 7.3, 7.3, 7.2998, 7.3006, 7.3013, 7.3011, 7.3007, 7.3003, 7.3, 7.3007, 7.3013, 7.302, 7.3028, 7.3025, 7.3021, 7.3028, 7.3025, 7.3022, 7.3029, 7.3026, 7.3045, 7.3042, 7.3038, 7.3035, 7.3032, 7.3028, 7.3024, 7.3021, 7.3028, 7.3024, 7.302, 7.3016, 7.3022, 7.3018, 7.3018, 7.3005, 7.3001, 7.2998, 7.2994, 7.3, 7.3007, 7.3004, 7.3011, 7.3008, 7.3004, 7.301, 7.3007, 7.3004, 7.3001, 7.3012, 7.3001, 7.2998, 7.2996, 7.3009, 7.3006, 7.3003, 7.3002, 7.2998, 7.2995, 7.2993, 7.3, 7.2988, 7.2987, 7.2988, 7.2985, 7.2985, 7.2991, 7.2989, 7.2986, 7.2987, 7.2974, 7.2985, 7.2981, 7.2994, 7.2991, 7.298, 7.2977, 7.2973, 7.3011, 7.303, 7.3037, 7.3035, 7.3037, 7.3038, 7.3048, 7.3045, 7.3055, 7.3103, 7.31, 7.3096, 7.3093, 7.3101, 7.3099, 7.3088, 7.3085, 7.3097, 7.3107, 7.3103, 7.3091, 7.309, 7.3088, 7.3086, 7.3083, 7.308, 7.308, 7.3077, 7.3114, 7.311, 7.3107, 7.3104, 7.3104, 7.3103, 7.311, 7.3108, 7.3106, 7.3124, 7.3131, 7.3128, 7.3125, 7.3122, 7.3119, 7.3126, 7.3144, 7.3141, 7.3138, 7.3164, 7.317, 7.3166, 7.3172, 7.3169, 7.3167, 7.3164, 7.316, 7.3157, 7.3153, 7.315, 7.3146, 7.3142, 7.3138, 7.3135, 7.3132, 7.3128, 7.3134, 7.313, 7.3137, 7.3144, 7.3151, 7.3147, 7.3144, 7.314, 7.3137, 7.3125, 7.3133, 7.3131, 7.3129, 7.3154, 7.3152, 7.3148, 7.3145, 7.3141, 7.3148, 7.3156, 7.3154, 7.3155, 7.3151, 7.3155, 7.3153, 7.3184, 7.318, 7.3177, 7.3176, 7.3172, 7.3178, 7.3176, 7.3172, 7.3161, 7.3167, 7.3184, 7.3191, 7.3187, 7.3184, 7.3182, 7.3188, 7.3185, 7.3197, 7.3194, 7.3191, 7.3202, 7.3202, 7.321, 7.3207, 7.3214, 7.3211, 7.3208, 7.3206, 7.3204, 7.3202, 7.3198, 7.3196, 7.3193, 7.32, 7.3201, 7.3198, 7.3194, 7.3192, 7.3199, 7.3187, 7.3184, 7.3189, 7.3186, 7.3192, 7.3198, 7.3196, 7.3223, 7.322, 7.3217, 7.3216, 7.3213, 7.3226, 7.3234, 7.323, 7.3226, 7.3234, 7.3232, 7.324, 7.3238, 7.3235, 7.3231, 7.3228, 7.3234, 7.323, 7.3227, 7.3224, 7.3249, 7.3246, 7.3242, 7.324, 7.3258, 7.3265, 7.3272, 7.3271, 7.3268, 7.3274, 7.328, 7.3276, 7.328, 7.3277, 7.3274, 7.3271, 7.3268, 7.3265, 7.3301, 7.3304, 7.3301, 7.33, 7.3297, 7.3294, 7.329, 7.3278, 7.3266, 7.3254, 7.3251, 7.3247, 7.3243, 7.3249, 7.3256, 7.3254, 7.3251, 7.3247, 7.3243, 7.324, 7.3238, 7.3235, 7.3241, 7.3238, 7.3236, 7.3243, 7.3239, 7.3245, 7.3242, 7.3239, 7.3236, 7.3242, 7.3239, 7.3236, 7.3233, 7.323, 7.3236, 7.3232, 7.3229, 7.3225, 7.3223, 7.322, 7.3218, 7.3215, 7.3212, 7.3209, 7.3226, 7.3223, 7.322, 7.3226, 7.3224, 7.3221, 7.3226, 7.3223, 7.322, 7.3228, 7.3225, 7.3222, 7.3221, 7.3218, 7.3224, 7.3221, 7.3228, 7.3224, 7.3222, 7.3219, 7.3217, 7.3215, 7.3222, 7.3219, 7.3226, 7.3223, 7.322, 7.3228, 7.3225, 7.3222, 7.321, 7.3216, 7.3212, 7.3209, 7.322, 7.3217, 7.3213, 7.321, 7.3208, 7.3206, 7.3203, 7.32, 7.3206, 7.3202, 7.3199, 7.3196, 7.3192, 7.319, 7.3188, 7.3185, 7.3181, 7.318, 7.3178, 7.3176, 7.3173, 7.3178, 7.3175, 7.3171, 7.3168, 7.3174, 7.3181, 7.3187, 7.3175, 7.3174, 7.3171, 7.3169, 7.3158, 7.3155, 7.3152, 7.315, 7.3148, 7.3145, 7.3143, 7.3142, 7.3139, 7.3145, 7.3142, 7.3138, 7.3135, 7.3132, 7.3129, 7.3125, 7.3122, 7.311, 7.3117, 7.3123, 7.3129, 7.3126, 7.3122, 7.3119, 7.3118, 7.3147, 7.3144, 7.3141, 7.3137, 7.3135, 7.3132, 7.3138, 7.3145, 7.3142, 7.3139, 7.3137, 7.3143, 7.3151, 7.3148, 7.3144, 7.314, 7.3137, 7.3134, 7.3131, 7.3129, 7.3126, 7.3125, 7.3121, 7.3125, 7.3122, 7.3118, 7.3115, 7.3111, 7.3109, 7.3108, 7.3105, 7.3102, 7.3099, 7.3087, 7.3084, 7.3082, 7.3079, 7.3077, 7.3074, 7.3071, 7.307, 7.3067, 7.3064, 7.3061, 7.3058, 7.3065, 7.3072, 7.3078, 7.3076, 7.3073, 7.307, 7.3067, 7.3065, 7.3061, 7.3059, 7.3056, 7.3062, 7.3059, 7.3056, 7.3054, 7.3051, 7.3048, 7.3045, 7.3042, 7.304, 7.3047, 7.3045, 7.3042, 7.3039, 7.3046, 7.3052, 7.305, 7.3056, 7.3055, 7.3081, 7.3106, 7.3112, 7.3132, 7.313, 7.3128, 7.3135, 7.3133, 7.313, 7.3127, 7.3125, 7.3123, 7.3121, 7.3109, 7.3134, 7.3141, 7.3147, 7.3144, 7.3151, 7.3148, 7.3157, 7.3154, 7.3164, 7.3161, 7.316, 7.3157, 7.3165, 7.3172, 7.3162, 7.316, 7.3176, 7.3192, 7.3191, 7.3198, 7.3196, 7.3214, 7.323, 7.3227, 7.3223, 7.322, 7.3217, 7.3215, 7.3213, 7.3211, 7.3207, 7.3204, 7.3209, 7.3215, 7.3221, 7.3218, 7.3215, 7.3212, 7.3218, 7.3219, 7.3215, 7.3212, 7.3209, 7.3207, 7.3205, 7.3202, 7.3209, 7.3206, 7.3212, 7.3219, 7.3216, 7.3224, 7.3221, 7.3209, 7.3209, 7.3207, 7.3204, 7.3201, 7.3198, 7.3196, 7.3194, 7.32, 7.3197, 7.3194, 7.3191, 7.3187, 7.3183, 7.3189, 7.3186, 7.322, 7.3217, 7.3214, 7.3211, 7.3218, 7.3215, 7.3221, 7.3218, 7.3224, 7.323, 7.3236, 7.3233, 7.323, 7.3237, 7.3243, 7.3249, 7.3255, 7.3261, 7.325, 7.3256, 7.3253, 7.3259, 7.3257, 7.3254, 7.3251, 7.3257, 7.3254, 7.3251, 7.3253, 7.325, 7.3248, 7.3246, 7.3243, 7.3247, 7.3244, 7.3242, 7.3239, 7.3236, 7.3237, 7.3236, 7.3234, 7.3231, 7.3229, 7.3226, 7.3223, 7.3221, 7.3218, 7.3214, 7.321, 7.3207, 7.3204, 7.3202, 7.3199, 7.3188, 7.3186, 7.3183, 7.318, 7.3187, 7.3185, 7.3182, 7.3179, 7.3176, 7.3174, 7.3181, 7.3178, 7.3176, 7.3173, 7.317, 7.3158, 7.3173, 7.3171, 7.3178, 7.3176, 7.3174, 7.3171, 7.3169, 7.3166, 7.3162, 7.3178, 7.3175, 7.3191, 7.3206, 7.3215, 7.3213, 7.3211, 7.3217, 7.3214, 7.3211, 7.3208, 7.3205, 7.3202, 7.3199, 7.3205, 7.3194, 7.3191, 7.3197, 7.3194, 7.3191, 7.3189, 7.3186, 7.3183, 7.318, 7.3186, 7.3184, 7.319, 7.3187, 7.3193, 7.3208, 7.3205, 7.3202, 7.32, 7.3198, 7.3195, 7.3192, 7.3189, 7.3187, 7.3184, 7.3181, 7.3178, 7.3177, 7.3174, 7.318, 7.3186, 7.3183, 7.3189, 7.3187, 7.3184, 7.3184, 7.3189, 7.3187, 7.3195, 7.3195, 7.3192, 7.319, 7.3195, 7.3192, 7.3189, 7.3196, 7.3184, 7.3182, 7.318, 7.3179, 7.3176, 7.3174, 7.318, 7.3177, 7.3174, 7.3171, 7.3177, 7.3175, 7.3181, 7.3187, 7.3184, 7.3182, 7.3179, 7.3176, 7.3176, 7.3173, 7.317, 7.3177, 7.3175, 7.3172, 7.3161, 7.3158, 7.3165, 7.3162, 7.3159, 7.3156, 7.3154, 7.316, 7.3167, 7.3164, 7.3161, 7.3158, 7.3156, 7.3153, 7.3151, 7.3157, 7.3154, 7.3152, 7.3159, 7.3157, 7.3155, 7.3152, 7.3149, 7.3154, 7.3152, 7.3149, 7.3146, 7.3143, 7.314, 7.3138, 7.3135, 7.3132, 7.313, 7.3127, 7.3133, 7.3131, 7.3128, 7.3126, 7.3132, 7.3121, 7.3118, 7.3115, 7.3121, 7.3118, 7.3116, 7.3115, 7.3105, 7.3102, 7.3099, 7.3096, 7.3102, 7.31, 7.3097, 7.3094, 7.3092, 7.3089, 7.3087, 7.3093, 7.3099, 7.3096, 7.3093, 7.3089, 7.3086, 7.3083, 7.308, 7.3077, 7.3074, 7.308, 7.3078, 7.3075, 7.3073, 7.3071, 7.3068, 7.3066, 7.3072, 7.3079, 7.3076, 7.3073, 7.3071, 7.3069, 7.3067, 7.3064, 7.3063, 7.306, 7.3066, 7.3063, 7.3062, 7.3059, 7.3057, 7.3054, 7.306, 7.3066, 7.3072, 7.307, 7.3067, 7.3065, 7.3062, 7.3059, 7.3066, 7.3063, 7.3061, 7.3067, 7.3064, 7.3061, 7.3059, 7.3056, 7.3054, 7.3051, 7.3048, 7.3046, 7.3045, 7.3044, 7.3041, 7.3038, 7.3035, 7.3032, 7.3039, 7.3045, 7.3034, 7.3031, 7.3028, 7.3025, 7.3014, 7.3012, 7.3027, 7.3024, 7.3031, 7.3028, 7.3019, 7.3016, 7.3023, 7.302, 7.3017, 7.3014, 7.3019, 7.3016, 7.3022, 7.3011, 7.3008, 7.3005, 7.3055, 7.3055, 7.3052, 7.3049, 7.3047, 7.3045, 7.3045, 7.3042, 7.3057, 7.3054, 7.3052, 7.3051, 7.3049, 7.3046, 7.3044, 7.3042, 7.3041, 7.3039, 7.3044, 7.3049, 7.3063, 7.3069, 7.3066, 7.3064, 7.3061, 7.3068, 7.3066, 7.3064, 7.3062, 7.306, 7.3057, 7.3054, 7.3062, 7.3059, 7.3057, 7.3054, 7.306, 7.3057, 7.3054, 7.3043, 7.304, 7.3037, 7.3034, 7.3023, 7.302, 7.3018, 7.3016, 7.3016, 7.3015, 7.3004, 7.2993, 7.2992, 7.2989, 7.2987, 7.2984, 7.2981, 7.2997, 7.2995, 7.3002, 7.3, 7.2997, 7.2994, 7.2991, 7.2988, 7.2985, 7.2983, 7.2972, 7.2969, 7.2975, 7.2973, 7.2962, 7.296, 7.2966, 7.2972, 7.2978, 7.2975, 7.2972, 7.2977, 7.2975, 7.3011, 7.301, 7.3008, 7.3006, 7.2997, 7.3012, 7.302, 7.3017, 7.3023, 7.302, 7.3026, 7.3031, 7.3029, 7.3026, 7.3024, 7.303, 7.3027, 7.3024, 7.3021, 7.3026, 7.3023, 7.3012, 7.3017, 7.3014, 7.3004, 7.3001, 7.3006, 7.2995, 7.3, 7.2997, 7.2994, 7.2993, 7.299, 7.2988, 7.2995, 7.2992, 7.299, 7.2987, 7.2993, 7.299, 7.2993, 7.299, 7.2987, 7.2985, 7.2982, 7.2971, 7.2961, 7.2959, 7.2956, 7.2961, 7.2958, 7.2955, 7.2944, 7.295, 7.2956, 7.2954, 7.2951, 7.295, 7.2947, 7.2945, 7.2943, 7.294, 7.2937, 7.2926, 7.2932, 7.2929, 7.2927, 7.2924, 7.2921, 7.2919, 7.2926, 7.2932, 7.2936, 7.2934, 7.296, 7.2983, 7.2981, 7.2979, 7.297, 7.2979, 7.2976, 7.2984, 7.299, 7.2995, 7.3006, 7.3014, 7.3021, 7.3021, 7.3022, 7.3032, 7.3031, 7.3037, 7.3044, 7.3053, 7.3054, 7.306, 7.3058, 7.3065, 7.3054, 7.3051, 7.305, 7.3048, 7.3054, 7.3051, 7.3048, 7.3046, 7.3049, 7.304, 7.3038, 7.3036, 7.3034, 7.3039, 7.3049, 7.3055, 7.3061, 7.3058, 7.3057, 7.3054, 7.3059, 7.3056, 7.3063, 7.306, 7.3066, 7.3072, 7.307, 7.3076, 7.3074, 7.3072, 7.3086, 7.3085, 7.3082, 7.3079, 7.3076, 7.3073, 7.3079, 7.3076, 7.3081, 7.3076, 7.3073, 7.3079, 7.3076, 7.3073, 7.3071, 7.3088, 7.3085, 7.3093, 7.309, 7.3087, 7.3087, 7.3076, 7.3082, 7.3079, 7.3076, 7.3074, 7.3071, 7.3077, 7.3074, 7.308, 7.307, 7.3076, 7.3073, 7.3087, 7.3087, 7.3101, 7.3102, 7.3108, 7.3114, 7.3119, 7.3116, 7.3114, 7.3114, 7.3111, 7.3116, 7.3113, 7.3112, 7.3109, 7.3106, 7.3103, 7.31, 7.3105, 7.3102, 7.3099, 7.3104, 7.3101, 7.3098, 7.3095, 7.31, 7.3108, 7.3097, 7.3101, 7.3098, 7.3096, 7.3086, 7.3099, 7.3109, 7.3115, 7.3112, 7.3109, 7.3114, 7.3103, 7.31, 7.3097, 7.3094, 7.3092, 7.3098, 7.3103, 7.3109, 7.3115, 7.312, 7.3125, 7.3122, 7.3119, 7.3125, 7.3123, 7.3129, 7.3126, 7.3123, 7.312, 7.3117, 7.3123, 7.3128, 7.3125, 7.3122, 7.3128, 7.3133, 7.313, 7.3135, 7.3133, 7.3138, 7.3135, 7.3132, 7.3129, 7.3126, 7.3123, 7.3128, 7.315, 7.3147, 7.3152, 7.3164, 7.3161, 7.3174, 7.3171, 7.3168, 7.3181, 7.3188, 7.3186, 7.3183, 7.3181, 7.3178, 7.3177, 7.3174, 7.3171, 7.3168, 7.3174, 7.3171, 7.3177, 7.3174, 7.3171, 7.3161, 7.3158, 7.3163, 7.316, 7.3157, 7.3154, 7.3151, 7.3148, 7.3153, 7.315, 7.3155, 7.3182, 7.318, 7.3177, 7.3175, 7.3178, 7.3183, 7.318, 7.3177, 7.3174, 7.3171, 7.3176, 7.3173, 7.3178, 7.3175, 7.3173, 7.317, 7.3167, 7.3165, 7.3162, 7.3167, 7.3173, 7.317, 7.3177, 7.3175, 7.3174, 7.3172, 7.3169, 7.3174, 7.318, 7.3186, 7.3176, 7.3173, 7.3171, 7.3178, 7.3175, 7.3172, 7.3169, 7.3166, 7.3172, 7.3172, 7.3169, 7.3167, 7.3166, 7.3163, 7.316, 7.3158, 7.3155, 7.3152, 7.3149, 7.3147, 7.3144, 7.316, 7.3159, 7.3165, 7.3165, 7.3179, 7.3176, 7.3174, 7.3196, 7.3194, 7.32, 7.3205, 7.3203, 7.3208, 7.3206, 7.321, 7.3216, 7.3214, 7.3211, 7.3217, 7.3231, 7.3254, 7.3252, 7.3242, 7.324, 7.3245, 7.3242, 7.3249, 7.3254, 7.3251, 7.3256, 7.3253, 7.3259, 7.3249, 7.3257, 7.3262, 7.3259, 7.3264, 7.327, 7.3267, 7.3265, 7.327, 7.3267, 7.3267, 7.3264, 7.3261, 7.3258, 7.3258, 7.3265, 7.3263, 7.326, 7.3257, 7.3254, 7.3251, 7.3241, 7.3246, 7.3246, 7.326, 7.3258, 7.3299, 7.3304, 7.3301, 7.3298, 7.3303, 7.3308, 7.3313, 7.331, 7.3307, 7.3304, 7.3301, 7.3298, 7.3295, 7.33, 7.3305, 7.3302, 7.3307, 7.3305, 7.3302, 7.3307, 7.3304, 7.3309, 7.3314, 7.3311, 7.3317, 7.3323, 7.3321, 7.3319, 7.3316, 7.3321, 7.3311, 7.3312, 7.3309, 7.3306, 7.3321, 7.3327, 7.3333, 7.3338, 7.3344, 7.3341, 7.3338, 7.3343, 7.3357, 7.3354, 7.3359, 7.3356, 7.3354, 7.3367, 7.3364, 7.3369, 7.3359, 7.3357, 7.3362, 7.336, 7.3351, 7.3349, 7.3355, 7.3352, 7.3349, 7.3354, 7.3359, 7.3364, 7.3369, 7.3366, 7.3363, 7.3368, 7.3374, 7.3371, 7.3369, 7.3361, 7.3358, 7.3356, 7.3354, 7.3345, 7.3343, 7.3356, 7.3361, 7.3366, 7.3363, 7.336, 7.3357, 7.3354, 7.3383, 7.338, 7.3377, 7.3374, 7.3372, 7.3369, 7.3366, 7.3363, 7.336, 7.3365, 7.3363, 7.336, 7.3365, 7.3355, 7.3352, 7.3342, 7.3357, 7.3355, 7.3352, 7.3349, 7.3346, 7.3343, 7.334, 7.3338, 7.3335, 7.3341, 7.3338, 7.3335, 7.3332, 7.3329, 7.3326, 7.3323, 7.3328, 7.3325, 7.3322, 7.3327, 7.3332, 7.3337, 7.3343, 7.3341, 7.3338, 7.3335, 7.3332, 7.3337, 7.3342, 7.3347, 7.3337, 7.3334, 7.334, 7.3346, 7.3359, 7.3356, 7.3354, 7.3351, 7.3348, 7.3353, 7.3358, 7.3363, 7.3368, 7.3373, 7.3378, 7.3383, 7.3381, 7.3379, 7.3377, 7.3382, 7.338, 7.3385, 7.3382, 7.3388, 7.3393, 7.339, 7.3388, 7.3385, 7.3383, 7.3388, 7.3385, 7.339, 7.3388, 7.3393, 7.3391, 7.3388, 7.3385, 7.3382, 7.3379, 7.3385, 7.3382, 7.338, 7.3385, 7.3382, 7.338, 7.3377, 7.3374, 7.3379, 7.3392, 7.3397, 7.3403, 7.3408, 7.3413, 7.341, 7.3407, 7.3412, 7.3425, 7.3422, 7.3419, 7.3424, 7.3421, 7.3418, 7.3415, 7.3413, 7.3418, 7.3416, 7.3429, 7.3427, 7.3432, 7.343, 7.3427, 7.3427, 7.3425, 7.3427, 7.3424, 7.3414, 7.3411, 7.3416, 7.3413, 7.3412, 7.341, 7.3407, 7.342, 7.3418, 7.3424, 7.3422, 7.342, 7.3426, 7.3423, 7.3422, 7.3419, 7.3432, 7.3492, 7.3489, 7.3486, 7.3491, 7.3496, 7.3501, 7.3498, 7.3496, 7.3486, 7.3483, 7.3481, 7.3478, 7.3483, 7.3481, 7.3478, 7.3475, 7.3473, 7.347, 7.3468, 7.3465, 7.3462, 7.3491, 7.3489, 7.3487, 7.3492, 7.3523, 7.3515, 7.3512, 7.3509, 7.3506, 7.3512, 7.351, 7.3518, 7.3531, 7.3529, 7.3527, 7.3526, 7.3527, 7.3524, 7.3523, 7.3521, 7.3518, 7.3515, 7.3522, 7.3527, 7.3532, 7.3531, 7.3531, 7.3528, 7.3526, 7.3523, 7.3523, 7.3523, 7.3522, 7.352, 7.3525, 7.3531, 7.3529, 7.3527, 7.3526, 7.3525, 7.3531, 7.3537, 7.3544, 7.3543, 7.3541, 7.3538, 7.3538, 7.3535, 7.3534, 7.3534, 7.354, 7.3538, 7.3538, 7.3536, 7.3535, 7.3533, 7.353, 7.3528, 7.3525, 7.3523, 7.3529, 7.3527, 7.3532], '192.168.122.112': [7.498, 6.438, 6.294, 6.4817, 6.4297, 6.596, 7.193, 7.0871, 6.9329, 6.8625, 6.8064, 7.1422, 7.4215, 7.7655, 7.6134, 7.5983, 7.4758, 7.3644, 7.2568, 7.2126, 7.3983, 7.5551, 7.4944, 7.4014, 7.3314, 7.4644, 7.59, 7.5118, 7.4496, 7.3825, 7.3259, 7.3047, 7.2592, 7.236, 7.1991, 7.1441, 7.1061, 7.0728, 7.0314, 7.0007, 6.971, 6.9301, 6.907, 6.8798, 6.844, 6.8141, 6.917, 7.0014, 6.9874, 6.9588, 6.9361, 6.9074, 6.9837, 6.9569, 6.9343, 6.9136, 6.8872, 6.8652, 6.8424, 6.8259, 6.8903, 6.867, 6.8414, 6.8409, 6.818, 6.8806, 6.8621, 6.9298, 6.9864, 7.1202, 7.0985, 7.0179, 7.0137, 6.9948, 6.9888, 6.967, 7.0122, 6.9962, 6.9775, 7.0378, 7.0168, 7.0672, 7.1573, 7.1387, 7.1169, 7.0971, 7.0896, 7.0721, 7.0604, 7.0435, 6.9832, 6.969, 6.9736, 6.9614, 6.9475, 6.9319, 6.9714, 7.0145, 6.9979, 6.9812, 6.9674, 6.9534, 6.9431, 6.928, 6.9174, 6.903, 6.9393, 6.9242, 6.915, 6.9001, 6.8867, 6.9185, 6.9075, 6.8928, 6.9295, 6.9199, 6.9092, 6.9412, 6.9743, 6.9613, 6.9477, 6.9394, 6.9314, 6.9204, 6.9168, 6.9042, 6.8941, 6.8825, 6.873, 6.9007, 6.8999, 6.8963, 6.8936, 6.9224, 6.9133, 6.984, 6.9745, 6.9621, 6.9922, 6.951, 6.9422, 6.9664, 6.9551, 6.9482, 6.9816, 6.9783, 6.9746, 7.0412, 7.0339, 7.0231, 7.0501, 7.0387, 7.0311, 7.0222, 7.014, 7.038, 7.0648, 7.0891, 7.11, 7.1045, 7.0931, 7.0841, 7.0732, 7.0946, 7.0843, 7.109, 7.1333, 7.1285, 7.1199, 7.112, 7.1041, 7.096, 7.0878, 7.0776, 7.069, 7.1367, 7.1302, 7.1946, 7.1858, 7.2067, 7.1959, 7.1993, 7.1918, 7.181, 7.199, 7.1906, 7.1804, 7.1984, 7.1936, 7.187, 7.1777, 7.1692, 7.1766, 7.1673, 7.1839, 7.2562, 7.2762, 7.2668, 7.2849, 7.305, 7.2964, 7.2871, 7.2775, 7.2714, 7.2385, 7.2298, 7.2205, 7.238, 7.2295, 7.221, 7.2148, 7.2108, 7.2014, 7.1959, 7.1876, 7.1826, 7.1992, 7.1909, 7.1827, 7.174, 7.1685, 7.1602, 7.1521, 7.1752, 7.1671, 7.1856, 7.1799, 7.1728, 7.1649, 7.1595, 7.1523, 7.1472, 7.1657, 7.1579, 7.1733, 7.1654, 7.158, 7.1505, 7.1657, 7.1799, 7.1725, 7.1665, 7.1615, 7.1559, 7.1515, 7.1521, 7.1471, 7.1401, 7.1562, 7.1299, 7.104, 7.1004, 7.0931, 7.0861, 7.0895, 7.109, 7.0878, 7.1134, 7.1075, 7.1312, 7.1243, 7.1391, 7.1542, 7.169, 7.1655, 7.1599, 7.1624, 7.1762, 7.1688, 7.1805, 7.175, 7.16, 7.1735, 7.1665, 7.1621, 7.1561, 7.1503, 7.1438, 7.1376, 7.1497, 7.1438, 7.157, 7.1508, 7.1633, 7.1755, 7.1736, 7.1719, 7.1652, 7.1603, 7.156, 7.1501, 7.1443, 7.1387, 7.1545, 7.187, 7.1996, 7.2121, 7.2054, 7.1994, 7.1935, 7.1873, 7.1817, 7.1807, 7.1759, 7.1888, 7.1831, 7.1788, 7.173, 7.1678, 7.1623, 7.1735, 7.1694, 7.1633, 7.1597, 7.1541, 7.1644, 7.1591, 7.1608, 7.171, 7.1834, 7.1781, 7.1732, 7.167, 7.1784, 7.19, 7.1848, 7.1961, 7.1906, 7.1888, 7.186, 7.1804, 7.1902, 7.185, 7.1967, 7.1919, 7.188, 7.1851, 7.1803, 7.1761, 7.1879, 7.1839, 7.1939, 7.1934, 7.1905, 7.2005, 7.1949, 7.2057, 7.2158, 7.2118, 7.2212, 7.2165, 7.2123, 7.2067, 7.2026, 7.201, 7.2107, 7.2056, 7.2016, 7.198, 7.2119, 7.2067, 7.203, 7.2005, 7.2101, 7.206, 7.2014, 7.2148, 7.2123, 7.2216, 7.2174, 7.1994, 7.1963, 7.2056, 7.2019, 7.2128, 7.2095, 7.2187, 7.2147, 7.2105, 7.2059, 7.2037, 7.199, 7.2082, 7.2037, 7.2132, 7.2097, 7.2192, 7.2144, 7.2106, 7.22, 7.218, 7.2131, 7.2081, 7.2174, 7.2262, 7.2226, 7.2204, 7.2182, 7.2146, 7.2113, 7.2079, 7.2069, 7.2035, 7.2036, 7.2014, 7.2, 7.1965, 7.1946, 7.1906, 7.2027, 7.2005, 7.2119, 7.2092, 7.2085, 7.204, 7.2009, 7.1966, 7.1925, 7.1902, 7.1988, 7.2082, 7.2164, 7.2263, 7.2224, 7.27, 7.2784, 7.276, 7.2728, 7.2693, 7.2659, 7.274, 7.2818, 7.2773, 7.2778, 7.286, 7.2943, 7.3024, 7.3103, 7.3185, 7.314, 7.321, 7.3285, 7.3252, 7.3206, 7.329, 7.3384, 7.3403, 7.337, 7.3458, 7.3423, 7.3681, 7.3642, 7.3598, 7.3452, 7.3415, 7.3384, 7.3339, 7.3294, 7.3371, 7.333, 7.3407, 7.3374, 7.3358, 7.3322, 7.3295, 7.3257, 7.3381, 7.3463, 7.3444, 7.3411, 7.3271, 7.3346, 7.342, 7.3493, 7.3452, 7.3423, 7.3417, 7.3391, 7.339, 7.3361, 7.3561, 7.3658, 7.3923, 7.3999, 7.3981, 7.3939, 7.3918, 7.3875, 7.3854, 7.3722, 7.3702, 7.3664, 7.3624, 7.3588, 7.3548, 7.3509, 7.3472, 7.3453, 7.3423, 7.3395, 7.3354, 7.3315, 7.3284, 7.3255, 7.3124, 7.3086, 7.3053, 7.3017, 7.3087, 7.3051, 7.3122, 7.3225, 7.3189, 7.3186, 7.3155, 7.3027, 7.3017, 7.3185, 7.3253, 7.3126, 7.3005, 7.2978, 7.295, 7.2927, 7.2894, 7.2873, 7.2949, 7.2913, 7.2875, 7.2852, 7.2821, 7.2785, 7.2854, 7.2823, 7.2806, 7.2775, 7.2669, 7.2737, 7.2699, 7.2676, 7.2743, 7.2752, 7.2716, 7.2682, 7.2749, 7.2811, 7.2782, 7.2754, 7.2733, 7.2703, 7.2668, 7.2728, 7.2692, 7.2666, 7.264, 7.2608, 7.267, 7.2646, 7.2525, 7.2637, 7.2534, 7.2551, 7.2657, 7.2626, 7.2639, 7.2603, 7.2574, 7.254, 7.2514, 7.2481, 7.245, 7.2417, 7.2396, 7.2368, 7.2335, 7.2308, 7.2369, 7.2339, 7.2308, 7.2277, 7.234, 7.2403, 7.2463, 7.2444, 7.2601, 7.2593, 7.2562, 7.253, 7.2498, 7.2557, 7.2535, 7.2504, 7.2473, 7.2454, 7.2433, 7.2411, 7.2384, 7.237, 7.2345, 7.2408, 7.2474, 7.2566, 7.2625, 7.2687, 7.2658, 7.2643, 7.2711, 7.2683, 7.2747, 7.2718, 7.278, 7.2751, 7.2732, 7.2703, 7.2761, 7.2734, 7.2788, 7.2852, 7.2826, 7.2798, 7.277, 7.2828, 7.2798, 7.2776, 7.2748, 7.2897, 7.2872, 7.2936, 7.2912, 7.2944, 7.296, 7.2932, 7.2987, 7.2955, 7.2924, 7.2898, 7.2869, 7.2838, 7.2824, 7.2803, 7.278, 7.2749, 7.2719, 7.2694, 7.2668, 7.2641, 7.2536, 7.2507, 7.2479, 7.2451, 7.2421, 7.2478, 7.2532, 7.2502, 7.2481, 7.2451, 7.2429, 7.242, 7.2322, 7.2295, 7.2266, 7.2319, 7.2304, 7.236, 7.2331, 7.2314, 7.2288, 7.226, 7.2241, 7.2213, 7.2268, 7.2242, 7.2216, 7.2122, 7.2112, 7.2497, 7.2551, 7.2525, 7.2499, 7.247, 7.2444, 7.2423, 7.2394, 7.237, 7.2349, 7.2482, 7.2456, 7.2435, 7.2416, 7.2468, 7.252, 7.2491, 7.2465, 7.2514, 7.2563, 7.2542, 7.2527, 7.2512, 7.2486, 7.246, 7.2439, 7.249, 7.247, 7.2445, 7.2496, 7.2554, 7.2533, 7.2582, 7.2563, 7.2539, 7.2521, 7.2496, 7.2469, 7.2523, 7.2499, 7.2548, 7.2527, 7.2505, 7.2479, 7.2455, 7.2439, 7.2423, 7.2469, 7.2443, 7.2487, 7.2467, 7.2453, 7.2425, 7.2405, 7.2317, 7.2293, 7.2275, 7.2323, 7.2232, 7.2282, 7.2331, 7.2442, 7.2568, 7.2542, 7.2453, 7.2427, 7.24, 7.2382, 7.2358, 7.2344, 7.2421, 7.2397, 7.2446, 7.2434, 7.2482, 7.253, 7.2512, 7.2493, 7.2467, 7.2378, 7.2354, 7.2336, 7.2313, 7.2289, 7.2265, 7.2283, 7.2265, 7.2247, 7.2228, 7.221, 7.2187, 7.2236, 7.2219, 7.2196, 7.2177, 7.2224, 7.22, 7.225, 7.2238, 7.2411, 7.2458, 7.2443, 7.2421, 7.2396, 7.2378, 7.2431, 7.2486, 7.2462, 7.2439, 7.2421, 7.2412, 7.2467, 7.2518, 7.2502, 7.2547, 7.2535, 7.2641, 7.2728, 7.2703, 7.2679, 7.2658, 7.2639, 7.2616, 7.2593, 7.2572, 7.2618, 7.2593, 7.2592, 7.2592, 7.257, 7.2546, 7.265, 7.2697, 7.2676, 7.2652, 7.2635, 7.2679, 7.2718, 7.2788, 7.2763, 7.2747, 7.2728, 7.2712, 7.2691, 7.2754, 7.2755, 7.2739, 7.2718, 7.2698, 7.2815, 7.2799, 7.2776, 7.2822, 7.2799, 7.2839, 7.2816, 7.2813, 7.2792, 7.2836, 7.2816, 7.2747, 7.2918, 7.291, 7.2977, 7.3192, 7.3168, 7.3156, 7.3153, 7.3212, 7.3189, 7.317, 7.3148, 7.3135, 7.3123, 7.3101, 7.3088, 7.3071, 7.3048, 7.3028, 7.3004, 7.2981, 7.2959, 7.2881, 7.2858, 7.2836, 7.282, 7.2803, 7.2847, 7.2833, 7.2817, 7.2798, 7.2897, 7.2819, 7.2799, 7.2779, 7.2819, 7.2861, 7.2846, 7.2833, 7.282, 7.2803, 7.2782, 7.2765, 7.2753, 7.2731, 7.2771, 7.2752, 7.2737, 7.2779, 7.2817, 7.2797, 7.293, 7.2986, 7.2968, 7.2945, 7.2985, 7.3026, 7.3011, 7.2995, 7.3034, 7.3014, 7.2996, 7.3032, 7.3009, 7.299, 7.3027, 7.309, 7.3077, 7.3116, 7.3094, 7.3082, 7.3063, 7.3044, 7.3029, 7.3011, 7.299, 7.297, 7.2956, 7.2935, 7.2918, 7.29, 7.2941, 7.292, 7.2962, 7.2948, 7.2927, 7.2905, 7.2943, 7.2932, 7.297, 7.3004, 7.2991, 7.2977, 7.2954, 7.2992, 7.303, 7.3069, 7.3053, 7.3031, 7.301, 7.2989, 7.3084, 7.3063, 7.3043, 7.3022, 7.3052, 7.3032, 7.3013, 7.2993, 7.2988, 7.2972, 7.2954, 7.2935, 7.2914, 7.2952, 7.2935, 7.2917, 7.2906, 7.2887, 7.2867, 7.2855, 7.2836, 7.2873, 7.2853, 7.2834, 7.2871, 7.2804, 7.279, 7.2779, 7.2768, 7.2748, 7.2735, 7.272, 7.2701, 7.2683, 7.2719, 7.2755, 7.2738, 7.2723, 7.2756, 7.2794, 7.2833, 7.2816, 7.2851, 7.2836, 7.282, 7.2857, 7.2893, 7.2923, 7.2904, 7.2939, 7.2919, 7.2901, 7.2891, 7.2881, 7.2861, 7.2899, 7.2881, 7.2917, 7.2898, 7.2879, 7.2918, 7.2899, 7.2883, 7.2876, 7.2863, 7.2854, 7.2853, 7.284, 7.2826, 7.2814, 7.2794, 7.2788, 7.2769, 7.2755, 7.2756, 7.2745, 7.2729, 7.2711, 7.2693, 7.2727, 7.2709, 7.2694, 7.2629, 7.2613, 7.2601, 7.2582, 7.2613, 7.2594, 7.2629, 7.261, 7.2651, 7.2634, 7.271, 7.2797, 7.278, 7.2761, 7.2747, 7.2731, 7.2715, 7.2698, 7.2734, 7.2718, 7.2704, 7.2691, 7.2674, 7.2655, 7.2686, 7.2724, 7.2709, 7.2692, 7.2673, 7.2658, 7.264, 7.2623, 7.2612, 7.26, 7.2635, 7.2623, 7.2653, 7.2696, 7.2726, 7.2712, 7.2743, 7.2774, 7.2756, 7.2738, 7.2728, 7.271, 7.2691, 7.2672, 7.2657, 7.2638, 7.2625, 7.2608, 7.259, 7.2573, 7.256, 7.2541, 7.2523, 7.2505, 7.2542, 7.2524, 7.2632, 7.2624, 7.2605, 7.259, 7.2578, 7.2611, 7.2597, 7.2589, 7.2572, 7.2634, 7.2617, 7.2606, 7.2588, 7.2573, 7.256, 7.2554, 7.2675, 7.2614, 7.2599, 7.2581, 7.2569, 7.2556, 7.2547, 7.253, 7.2517, 7.2552, 7.2539, 7.2527, 7.2559, 7.259, 7.2576, 7.2656, 7.2638, 7.2627, 7.2697, 7.2687, 7.267, 7.2654, 7.2684, 7.2666, 7.2665, 7.2697, 7.2687, 7.2669, 7.2656, 7.264, 7.2623, 7.2653, 7.2643, 7.2675, 7.2734, 7.2721, 7.275, 7.2738, 7.273, 7.2762, 7.2793, 7.2781, 7.2766, 7.275, 7.2733, 7.2761, 7.2753, 7.2741, 7.2726, 7.2712, 7.2744, 7.2735, 7.2718, 7.2755, 7.2738, 7.2722, 7.272, 7.2706, 7.2704, 7.2731, 7.2761, 7.2749, 7.2779, 7.2768, 7.2777, 7.2769, 7.28, 7.2829, 7.2778, 7.2721, 7.2705, 7.2691, 7.2756, 7.2744, 7.2728, 7.2716, 7.2747, 7.2778, 7.2762, 7.2747, 7.2734, 7.2718, 7.2704, 7.2688, 7.2718, 7.2706, 7.2697, 7.2682, 7.2678, 7.2709, 7.2699, 7.2686, 7.2679, 7.2664, 7.2647, 7.2635, 7.2579, 7.2566, 7.255, 7.2542, 7.253, 7.2561, 7.2544, 7.2531, 7.2518, 7.2507, 7.2504, 7.2505, 7.2492, 7.2476, 7.2521, 7.251, 7.2499, 7.2486, 7.2473, 7.2536, 7.252, 7.2503, 7.2488, 7.2477, 7.2464, 7.2453, 7.2446, 7.2434, 7.2429, 7.2415, 7.2416, 7.2448, 7.2435, 7.245, 7.2478, 7.2465, 7.2451, 7.2438, 7.2441, 7.2432, 7.2418, 7.2405, 7.2392, 7.2384, 7.237, 7.2358, 7.2346, 7.242, 7.2407, 7.2392, 7.238, 7.237, 7.2361, 7.235, 7.2388, 7.2376, 7.2365, 7.2402, 7.2434, 7.2467, 7.2469, 7.2457, 7.246, 7.2547, 7.2533, 7.2525, 7.2558, 7.2549, 7.2581, 7.2529, 7.255, 7.2543, 7.2547, 7.2546, 7.262, 7.2606, 7.2595, 7.2581, 7.2664, 7.2689, 7.2675, 7.2723, 7.272, 7.2705, 7.2652, 7.2639, 7.2669, 7.2668, 7.2655, 7.268, 7.2665, 7.2694, 7.2682, 7.2668, 7.2653, 7.2642, 7.2631, 7.262, 7.2606, 7.2593, 7.2622, 7.265, 7.2672, 7.2623, 7.2652, 7.2637, 7.263, 7.2623, 7.2608, 7.2596, 7.2589, 7.2577, 7.2566, 7.2556, 7.2548, 7.2577, 7.2606, 7.2597, 7.2586, 7.2572, 7.256, 7.2547, 7.2532, 7.2521, 7.2508, 7.2494, 7.248, 7.2473, 7.246, 7.2485, 7.2471, 7.2499, 7.2528, 7.2513, 7.25, 7.2565, 7.2551, 7.2537, 7.2523, 7.2508, 7.2493, 7.2478, 7.2464, 7.245, 7.2438, 7.2465, 7.2454, 7.2482, 7.2468, 7.2454, 7.244, 7.2468, 7.2459, 7.2448, 7.2473, 7.2462, 7.2488, 7.244, 7.2426, 7.2415, 7.2441, 7.2431, 7.2419, 7.2405, 7.2392, 7.2377, 7.2365, 7.2352, 7.238, 7.237, 7.2356, 7.2346, 7.2385, 7.2371, 7.2361, 7.235, 7.2376, 7.2366, 7.2352, 7.2339, 7.2366, 7.2352, 7.2338, 7.2325, 7.231, 7.2347, 7.2334, 7.2321, 7.2317, 7.2344, 7.2387, 7.2411, 7.2404, 7.239, 7.2414, 7.2412, 7.2401, 7.2428, 7.2454, 7.241, 7.2435, 7.2423, 7.241, 7.2402, 7.2392, 7.2345, 7.2334, 7.2329, 7.2316, 7.2302, 7.2288, 7.228, 7.2271, 7.2257, 7.2247, 7.2237, 7.226, 7.2248, 7.2237, 7.2226, 7.2213, 7.2325, 7.2314, 7.2434, 7.2594, 7.2658, 7.2645, 7.2632, 7.2623, 7.2612, 7.2598, 7.2624, 7.265, 7.2675, 7.2662, 7.2654, 7.2641, 7.2628, 7.2616, 7.2641, 7.263, 7.2617, 7.2607, 7.2596, 7.2621, 7.2613, 7.26, 7.2587, 7.2574, 7.2563, 7.2552, 7.2541, 7.2566, 7.2557, 7.2544, 7.2538, 7.2567, 7.2554, 7.2603, 7.2591, 7.2579, 7.2566, 7.2553, 7.2542, 7.2602, 7.2626, 7.2648, 7.2636, 7.263, 7.2618, 7.2606, 7.2593, 7.2552, 7.2551, 7.2579, 7.262, 7.2615, 7.2605, 7.2596, 7.259, 7.2582, 7.2536, 7.2523, 7.2547, 7.2534, 7.2527, 7.2537, 7.2524, 7.2512, 7.2505, 7.2528, 7.2517, 7.2505, 7.2492, 7.2479, 7.2465, 7.2455, 7.2478, 7.2502, 7.2489, 7.2513, 7.2502, 7.2493, 7.2481, 7.2502, 7.2526, 7.2513, 7.2501, 7.2494, 7.2483, 7.247, 7.2494, 7.2481, 7.2504, 7.2491, 7.2478, 7.2501, 7.2489, 7.2476, 7.2473, 7.2463, 7.245, 7.2474, 7.2462, 7.2456, 7.2443, 7.2431, 7.2418, 7.2406, 7.2398, 7.2386, 7.2373, 7.2329, 7.2317, 7.234, 7.2364, 7.2352, 7.2376, 7.2402, 7.2398, 7.2387, 7.2409, 7.2398, 7.2391, 7.2389, 7.2376, 7.2396, 7.2385, 7.2374, 7.2364, 7.2355, 7.2348, 7.2368, 7.2361, 7.2351, 7.2338, 7.2359, 7.2354, 7.2342, 7.2363, 7.2354, 7.2377, 7.2372, 7.2395, 7.2383, 7.2372, 7.2362, 7.2351, 7.2338, 7.2358, 7.2381, 7.2408, 7.2401, 7.2425, 7.2448, 7.2435, 7.2423, 7.2412, 7.2432, 7.2422, 7.241, 7.2402, 7.2395, 7.2392, 7.2416, 7.2407, 7.2396, 7.2385, 7.2374, 7.2366, 7.2387, 7.2377, 7.2403, 7.2393, 7.2383, 7.2374, 7.2395, 7.2385, 7.241, 7.24, 7.242, 7.241, 7.2398, 7.2407, 7.2398, 7.2386, 7.2376, 7.237, 7.2361, 7.2355, 7.2346, 7.2338, 7.2296, 7.2287, 7.2276, 7.2274, 7.2265, 7.2255, 7.2248, 7.2242, 7.2233, 7.2221, 7.2216, 7.2207, 7.2197, 7.2198, 7.2188, 7.2177, 7.2179, 7.2169, 7.2158, 7.2154, 7.2176, 7.2165, 7.2156, 7.2159, 7.2149, 7.2172, 7.2164, 7.2156, 7.2145, 7.214, 7.2129, 7.212, 7.2143, 7.2135, 7.2127, 7.2115, 7.2137, 7.2159, 7.2148, 7.2168, 7.2158, 7.2146, 7.2139, 7.2164, 7.2189, 7.2178, 7.2218, 7.2233, 7.2268, 7.2259, 7.2284, 7.2275, 7.2266, 7.2257, 7.2248, 7.2273, 7.2264, 7.2257, 7.2249, 7.2243, 7.2231, 7.2222, 7.2183, 7.2144, 7.2133, 7.2122, 7.2111, 7.21, 7.2092, 7.2083, 7.2111, 7.2099, 7.2088, 7.208, 7.2068, 7.2087, 7.2079, 7.2099, 7.2088, 7.208, 7.2095, 7.2088, 7.2086, 7.2117, 7.2106, 7.21, 7.2092, 7.2082, 7.2075, 7.2067, 7.2056, 7.208, 7.2078, 7.2067, 7.2059, 7.2083, 7.2086, 7.2082, 7.2075, 7.2064, 7.2055, 7.2048, 7.2068, 7.206, 7.2079, 7.2101, 7.209, 7.208, 7.2072, 7.2097, 7.2086, 7.2118, 7.2107, 7.2134, 7.2126, 7.2115, 7.2104, 7.2126, 7.2117, 7.2106, 7.2126, 7.2146, 7.2166, 7.222, 7.2241, 7.2231, 7.2221, 7.2242, 7.2232, 7.2228, 7.2223, 7.2244, 7.2266, 7.2285, 7.228, 7.227, 7.2291, 7.2312, 7.2304, 7.2328, 7.2336, 7.2327, 7.2319, 7.2312, 7.2333, 7.2326, 7.2319, 7.2311, 7.2304, 7.2296, 7.2285, 7.2275, 7.2264, 7.2255, 7.2244, 7.2236, 7.2253, 7.2272, 7.2292, 7.2287, 7.2279, 7.227, 7.229, 7.2285, 7.2303, 7.2292, 7.2284, 7.2306, 7.2296, 7.2286, 7.2306, 7.2301, 7.2342, 7.2363, 7.2356, 7.2345, 7.2335, 7.2324, 7.2317, 7.2309, 7.2299, 7.2294, 7.2284, 7.2276, 7.2267, 7.226, 7.2279, 7.2269, 7.2267, 7.2288, 7.2256, 7.2277, 7.2267, 7.2258, 7.2249, 7.2269, 7.2258, 7.2251, 7.224, 7.2229, 7.2247, 7.224, 7.2233, 7.2224, 7.2217, 7.221, 7.2199, 7.2188, 7.2178, 7.2168, 7.2157, 7.2192, 7.2185, 7.2188, 7.2183, 7.2339, 7.2331, 7.2328, 7.2318, 7.2309, 7.2304, 7.2295, 7.2287, 7.2308, 7.2271, 7.2264, 7.2255, 7.2246, 7.224, 7.2233, 7.2223, 7.225, 7.224, 7.2258, 7.2251, 7.2241, 7.2265, 7.2324, 7.2342, 7.236, 7.2381, 7.2372, 7.2364, 7.2356, 7.2376, 7.2371, 7.2337, 7.2355, 7.2346, 7.2339, 7.233, 7.2321, 7.234, 7.233, 7.2321, 7.2314, 7.2304, 7.2296, 7.2286, 7.2281, 7.2271, 7.2261, 7.2251, 7.2246, 7.2239, 7.2237, 7.2262, 7.2253, 7.2243, 7.2265, 7.2287, 7.2279, 7.2269, 7.2237, 7.2314, 7.2306, 7.2296, 7.2325, 7.2372, 7.2373, 7.2433, 7.2427, 7.2418, 7.2438, 7.2428, 7.242, 7.244, 7.2459, 7.2449, 7.2479, 7.2507, 7.2527, 7.2559, 7.2549, 7.2543, 7.2614, 7.2604, 7.2633, 7.2624, 7.2617, 7.2608, 7.2601, 7.2591, 7.2582, 7.2572, 7.2538, 7.2531, 7.2521, 7.2516, 7.2507, 7.2527, 7.2492, 7.2511, 7.2504, 7.2494, 7.2485, 7.2477, 7.2467, 7.2475, 7.2465, 7.2456, 7.2446, 7.2438, 7.2433, 7.2425, 7.2449, 7.2443, 7.244, 7.2432, 7.2426, 7.2417, 7.2414, 7.2432, 7.2423, 7.2415, 7.2406, 7.2397, 7.2415, 7.2409, 7.2402, 7.242, 7.244, 7.2457, 7.245, 7.2468, 7.2486, 7.2506, 7.253, 7.2548, 7.2541, 7.2532, 7.2523, 7.2577, 7.2591, 7.2586, 7.2603, 7.2578, 7.2568, 7.2572, 7.2538, 7.2529, 7.2519, 7.2509, 7.2499, 7.2491, 7.2481, 7.2474, 7.2464, 7.2456, 7.2446, 7.2437, 7.2431, 7.2397, 7.2388, 7.2378, 7.2368, 7.2358, 7.2376, 7.2369, 7.236, 7.2355, 7.2346, 7.2366, 7.2365, 7.2356, 7.235, 7.2342, 7.2332, 7.2325, 7.2338, 7.233, 7.232, 7.2338, 7.2329, 7.232, 7.2313, 7.2314, 7.2333, 7.2325, 7.2317, 7.2311, 7.2301, 7.2295, 7.2285, 7.2276, 7.2295, 7.2285, 7.2302, 7.2294, 7.231, 7.23, 7.2366, 7.2382, 7.2399, 7.2415, 7.2433, 7.2424, 7.2442, 7.2409, 7.2402, 7.2394, 7.2385, 7.2376, 7.2344, 7.2334, 7.2352, 7.2343, 7.236, 7.2353, 7.2345, 7.2339, 7.2333, 7.2324, 7.2324, 7.2315, 7.2306, 7.2298, 7.2316, 7.2307, 7.2298, 7.2293, 7.2285, 7.2313, 7.2304, 7.2295, 7.2291, 7.2282, 7.2275, 7.2268, 7.226, 7.2257, 7.2225, 7.2216, 7.2269, 7.2262, 7.2295, 7.2287, 7.2331, 7.2323, 7.2332, 7.2351, 7.2341, 7.2333, 7.2324, 7.2316, 7.2307, 7.2327, 7.2347, 7.2339, 7.2332, 7.2323, 7.2341, 7.2339, 7.2357, 7.2354, 7.2345, 7.2341, 7.2333, 7.2326, 7.2318, 7.2312, 7.2304, 7.2306, 7.2299, 7.2291, 7.2309, 7.2301, 7.2311, 7.2303, 7.2297, 7.2289, 7.2282, 7.2274, 7.2292, 7.2283, 7.2279, 7.2301, 7.2292, 7.2286, 7.2278, 7.227, 7.224, 7.2235, 7.225, 7.2244, 7.2237, 7.2228, 7.2219, 7.221, 7.2226, 7.2242, 7.2233, 7.2226, 7.2217, 7.2259, 7.225, 7.2241, 7.2261, 7.2254, 7.2222, 7.2213, 7.2206, 7.2223, 7.2261, 7.2278, 7.2295, 7.2286, 7.2279, 7.2294, 7.2309, 7.2301, 7.2293, 7.2292, 7.2309, 7.2303, 7.2293, 7.2285, 7.2276, 7.2267, 7.2262, 7.2255, 7.2274, 7.2271, 7.2263, 7.2258, 7.2252, 7.2268, 7.2261, 7.2255, 7.2247, 7.2239, 7.2208, 7.2201, 7.2199, 7.2192, 7.2183, 7.2175, 7.2168, 7.2167, 7.2163, 7.2187, 7.2179, 7.2149, 7.2142, 7.2138, 7.2132, 7.2124, 7.2115, 7.2133, 7.2124, 7.2122, 7.2119, 7.2116, 7.2109, 7.21, 7.2095, 7.209, 7.2083, 7.2076, 7.2092, 7.2088, 7.2079, 7.2075, 7.2094, 7.2088, 7.2081, 7.2074, 7.2093, 7.2112, 7.2108, 7.2124, 7.2118, 7.2109, 7.2079, 7.207, 7.2086, 7.2078, 7.2071, 7.2089, 7.2081, 7.2073, 7.2067, 7.2062, 7.208, 7.2071, 7.2064, 7.2055, 7.2052, 7.2061, 7.2057, 7.2048, 7.2065, 7.208, 7.2074, 7.2091, 7.2083, 7.2103, 7.2097, 7.2094, 7.2111, 7.2128, 7.2119, 7.2113, 7.2106, 7.2101, 7.2093, 7.2109, 7.2107, 7.2077, 7.207, 7.2062, 7.2079, 7.2072, 7.2066, 7.2063, 7.2104, 7.2098, 7.2091, 7.2083, 7.2099, 7.2116, 7.2109, 7.2124, 7.2116, 7.2109, 7.2113, 7.2105, 7.2075, 7.2078, 7.207, 7.2062, 7.2078, 7.2094, 7.2086, 7.2084, 7.2084, 7.2076, 7.2092, 7.2084, 7.2081, 7.2073, 7.2091, 7.2084, 7.2077, 7.2075, 7.2068, 7.2085, 7.2079, 7.2075, 7.2089, 7.2106, 7.2098, 7.2092, 7.2063, 7.2055, 7.2048, 7.2043, 7.2037, 7.203, 7.2022, 7.2039, 7.2056, 7.205, 7.2046, 7.2021, 7.2016, 7.2014, 7.2006, 7.2021, 7.2015, 7.201, 7.2002, 7.1997, 7.1993, 7.2008, 7.2001, 7.1994, 7.2028, 7.2021, 7.2015, 7.2007, 7.198, 7.1972, 7.1965, 7.1981, 7.1973, 7.197, 7.1986, 7.1958, 7.1974, 7.1979, 7.1993, 7.1985, 7.1982, 7.1975, 7.1968, 7.1961, 7.1955, 7.1951, 7.1943, 7.1958, 7.195, 7.1942, 7.1934, 7.1928, 7.1922, 7.1915, 7.1932, 7.1925, 7.1918, 7.194, 7.1934, 7.1926, 7.1919, 7.1912, 7.1928, 7.1922, 7.1914, 7.1913, 7.1906, 7.1921, 7.1937, 7.1929, 7.1922, 7.1916, 7.1909, 7.1904, 7.1922, 7.1915, 7.1907, 7.19, 7.1896, 7.1888, 7.1884, 7.1901, 7.1917, 7.1911, 7.1904, 7.1906, 7.1898, 7.1913, 7.1906, 7.1898, 7.1921, 7.2012, 7.2007, 7.2028, 7.2025, 7.2017, 7.2012, 7.2005, 7.2019, 7.2014, 7.2009, 7.2005, 7.1997, 7.199, 7.1984, 7.1977, 7.1969, 7.1961, 7.1955, 7.1947, 7.1939, 7.1931, 7.1923, 7.1939, 7.1932, 7.1946, 7.196, 7.1952, 7.1946, 7.1939, 7.1953, 7.1946, 7.1963, 7.1977, 7.1971, 7.1964, 7.1956, 7.1955, 7.195, 7.1973, 7.1967, 7.1963, 7.1979, 7.1972, 7.1968, 7.1967, 7.1962, 7.1956, 7.1933, 7.1933, 7.1929, 7.1921, 7.1922, 7.1916, 7.1911, 7.1906, 7.1988, 7.1981, 7.1974, 7.1968, 7.1963, 7.1956, 7.1949, 7.1987, 7.1979, 7.1993, 7.1987, 7.1982, 7.1975, 7.1989, 7.2005, 7.1999, 7.2015, 7.203, 7.2024, 7.2019, 7.202, 7.2035, 7.2029, 7.2023, 7.2044, 7.2039, 7.2036, 7.2028, 7.2022, 7.2018, 7.201, 7.2006, 7.2021, 7.2016, 7.201, 7.2002, 7.2015, 7.201, 7.2004, 7.2, 7.1999, 7.1991, 7.1986, 7.1979, 7.1975, 7.1968, 7.1981, 7.1974, 7.1968, 7.1962, 7.1955, 7.1949, 7.1942, 7.1936, 7.1933, 7.1927, 7.1924, 7.1927, 7.1923, 7.1916, 7.191, 7.1903, 7.192, 7.1915, 7.1908, 7.1922, 7.1936, 7.193, 7.1926, 7.1918, 7.1912, 7.1906, 7.1881, 7.1875, 7.1871, 7.1867, 7.186, 7.1862, 7.1856, 7.1855, 7.1895, 7.1888, 7.1884, 7.1877, 7.187, 7.1863, 7.1878, 7.187, 7.1885, 7.1882, 7.1876, 7.1871, 7.1864, 7.1858, 7.1872, 7.1866, 7.1881, 7.1874, 7.1889, 7.1905, 7.1901, 7.1896, 7.1888, 7.1903, 7.1896, 7.1888, 7.1882, 7.1876, 7.1871, 7.1868, 7.1862, 7.1856, 7.1869, 7.1882, 7.1878, 7.1885, 7.1878, 7.1873, 7.187, 7.1864, 7.1858, 7.1852, 7.1847, 7.184, 7.1833, 7.1826, 7.1818, 7.1834, 7.1828, 7.1821, 7.1816, 7.1832, 7.1826, 7.1822, 7.1816, 7.1808, 7.1824, 7.1817, 7.181, 7.1805, 7.18, 7.1802, 7.1796, 7.179, 7.1782, 7.1776, 7.1805, 7.18, 7.1817, 7.1831, 7.1825, 7.182, 7.1814, 7.1828, 7.1842, 7.1838, 7.1853, 7.1849, 7.1842, 7.1837, 7.1831, 7.1825, 7.1819, 7.1813, 7.1827, 7.1839, 7.1836, 7.1848, 7.1841, 7.1856, 7.187, 7.1865, 7.1861, 7.1875, 7.1874, 7.1868, 7.1862, 7.1857, 7.1854, 7.1849, 7.1843, 7.1836, 7.185, 7.1865, 7.1861, 7.1857, 7.1852, 7.185, 7.1864, 7.1857, 7.185, 7.1847, 7.184, 7.1835, 7.1829, 7.1823, 7.1819, 7.1833, 7.1847, 7.1841, 7.1834, 7.183, 7.1848, 7.1843, 7.1857, 7.1853, 7.1848, 7.1842, 7.1837, 7.1851, 7.1847, 7.1861, 7.1871, 7.187, 7.1863, 7.186, 7.1854, 7.1848, 7.1844, 7.1837, 7.1812, 7.1807, 7.1802, 7.1797, 7.1792, 7.177, 7.1764, 7.1759, 7.1753, 7.1747, 7.174, 7.1715, 7.1708, 7.1701, 7.1697, 7.1711, 7.1704, 7.1697, 7.1692, 7.1687, 7.1702, 7.1695, 7.1693, 7.1687, 7.1681, 7.1674, 7.1668, 7.1663, 7.1657, 7.1651, 7.1648, 7.1642, 7.1639, 7.1633, 7.163, 7.1625, 7.1621, 7.1618, 7.1632, 7.1627, 7.1639, 7.1632, 7.1629, 7.1624, 7.1618, 7.1612, 7.1616, 7.1609, 7.1606, 7.16, 7.1593, 7.1568, 7.1562, 7.1576, 7.1569, 7.1563, 7.1557, 7.1551, 7.1566, 7.1564, 7.1559, 7.1554, 7.1551, 7.1545, 7.1539, 7.1553, 7.1565, 7.1574, 7.1567, 7.1561, 7.1557, 7.1572, 7.1569, 7.1565, 7.1558, 7.1552, 7.1547, 7.1581, 7.1574, 7.1567, 7.156, 7.158, 7.1577, 7.1571, 7.1564, 7.1559, 7.1555, 7.1549, 7.1543, 7.1519, 7.1533, 7.1546, 7.1548, 7.1543, 7.1557, 7.1554, 7.1548, 7.1542, 7.1536, 7.1531, 7.1526, 7.1522, 7.1535, 7.153, 7.1544, 7.1539, 7.1553, 7.157, 7.1571, 7.157, 7.1583, 7.1578, 7.1572, 7.1568, 7.1585, 7.158, 7.1574, 7.1567, 7.1562, 7.1575, 7.1589, 7.1583, 7.1579, 7.1572, 7.1569, 7.1562, 7.1556, 7.1552, 7.1546, 7.1541, 7.1554, 7.1548, 7.1542, 7.1536, 7.1529, 7.1523, 7.1518, 7.1531, 7.1525, 7.152, 7.1514, 7.1508, 7.1503, 7.1498, 7.1492, 7.1487, 7.1481, 7.1475, 7.1488, 7.1481, 7.1476, 7.148, 7.1495, 7.1491, 7.1485, 7.148, 7.1495, 7.149, 7.1486, 7.1499, 7.1495, 7.1492, 7.1486, 7.1479, 7.1475, 7.1487, 7.15, 7.1494, 7.1488, 7.1506, 7.1501, 7.153, 7.1524, 7.1518, 7.1512, 7.1507, 7.1503, 7.1497, 7.1493, 7.1487, 7.1516, 7.1534, 7.1548, 7.1561, 7.1574, 7.1569, 7.1563, 7.1557, 7.1569, 7.1582, 7.1576, 7.157, 7.1567, 7.1544, 7.154, 7.1553, 7.1566, 7.1564, 7.1577, 7.159, 7.1603, 7.1597, 7.1591, 7.1585, 7.1579, 7.1573, 7.1567, 7.1561, 7.1557, 7.1552, 7.1564, 7.156, 7.1554, 7.1547, 7.156, 7.1555, 7.1532, 7.1527, 7.1522, 7.1517, 7.153, 7.1525, 7.1521, 7.1518, 7.1514, 7.1508, 7.1503, 7.1518, 7.1512, 7.1508, 7.1502, 7.1516, 7.1511, 7.1488, 7.1482, 7.1476, 7.1472, 7.1467, 7.1465, 7.1462, 7.1456, 7.1451, 7.1465, 7.1478, 7.149, 7.1484, 7.1479, 7.1473, 7.149, 7.1504, 7.1506, 7.1527, 7.1544, 7.1539, 7.1539, 7.1562, 7.1557, 7.1569, 7.1582, 7.1594, 7.1593, 7.1606, 7.1601, 7.1597, 7.1609, 7.1605, 7.16, 7.1612, 7.1608, 7.1633, 7.1676, 7.1693, 7.169, 7.1687, 7.1682, 7.1704, 7.17, 7.1695, 7.1689, 7.1701, 7.1698, 7.1692, 7.1686, 7.1682, 7.1676, 7.167, 7.1684, 7.1682, 7.1689, 7.1684, 7.1678, 7.1676, 7.1672, 7.1684, 7.1679, 7.1674, 7.1668, 7.1662, 7.1658, 7.1652, 7.1648, 7.1642, 7.1636, 7.1631, 7.1625, 7.1688, 7.1709, 7.1703, 7.1698, 7.1692, 7.1688, 7.1699, 7.1693, 7.1687, 7.1699, 7.1693, 7.1687, 7.1681, 7.1676, 7.167, 7.1665, 7.1659, 7.1672, 7.1666, 7.166, 7.1654, 7.1649, 7.1661, 7.1655, 7.1649, 7.1648, 7.1647, 7.1625, 7.1622, 7.1633, 7.1645, 7.1639, 7.1651, 7.1663, 7.1659, 7.1657, 7.1668, 7.1664, 7.1677, 7.1692, 7.1687, 7.1699, 7.1711, 7.1763, 7.1775, 7.1779, 7.1774, 7.1768, 7.1762, 7.1756, 7.1769, 7.1781, 7.1775, 7.1753, 7.1749, 7.1743, 7.1762, 7.1758, 7.1754, 7.1766, 7.1761, 7.1764, 7.1759, 7.1754, 7.1748, 7.1742, 7.1736, 7.1748, 7.1742, 7.1736, 7.1749, 7.1744, 7.1739, 7.1736, 7.173, 7.1726, 7.172, 7.1732, 7.1727, 7.1731, 7.1744, 7.174, 7.1734, 7.1747, 7.1743, 7.1757, 7.1752, 7.1748, 7.1743, 7.1737, 7.1733, 7.1765, 7.1761, 7.1757, 7.1756, 7.175, 7.1745, 7.174, 7.1753, 7.1747, 7.1741, 7.1747, 7.1741, 7.1737, 7.175, 7.1744, 7.174, 7.1752, 7.176, 7.1773, 7.1768, 7.1762, 7.1757, 7.1752, 7.1766, 7.1779, 7.1774, 7.1769, 7.1764, 7.1759, 7.1754, 7.1767, 7.178, 7.1792, 7.1804, 7.1799, 7.1793, 7.1788, 7.1785, 7.1796, 7.1807, 7.1801, 7.1797, 7.1794, 7.1789, 7.179, 7.1787, 7.1781, 7.1791, 7.1787, 7.1783, 7.1778, 7.1775, 7.1769, 7.1765, 7.1776, 7.177, 7.1799, 7.1795, 7.1789, 7.1785, 7.1781, 7.1809, 7.1803, 7.18, 7.1813, 7.1827, 7.1823, 7.1836, 7.1848, 7.1846, 7.1878, 7.1914, 7.1926, 7.1938, 7.1968, 7.198, 7.1992, 7.1988, 7.1972, 7.1951, 7.1945, 7.1956, 7.1935, 7.193, 7.1925, 7.1936, 7.1931, 7.1942, 7.1954, 7.1948, 7.1944, 7.1938, 7.195, 7.1944, 7.1958, 7.1953, 7.1947, 7.1957, 7.1952, 7.1947, 7.1942, 7.1971, 7.1983, 7.1995, 7.2025, 7.2019, 7.2013, 7.2007, 7.2001, 7.2012, 7.2006, 7.2001, 7.2014, 7.2009, 7.2003, 7.1997, 7.1993, 7.1989, 7.2001, 7.2031, 7.2025, 7.2023, 7.2017, 7.203, 7.2041, 7.2036, 7.2047, 7.2051, 7.2045, 7.2055, 7.2051, 7.2046, 7.2043, 7.2037, 7.2031, 7.2026, 7.2021, 7.2017, 7.2011, 7.2005, 7.2, 7.1994, 7.1988, 7.1982, 7.1995, 7.199, 7.2004, 7.1998, 7.1977, 7.1956, 7.1971, 7.1985, 7.1982, 7.198, 7.1974, 7.1971, 7.1971, 7.1966, 7.1964, 7.1958, 7.1952, 7.1993, 7.199, 7.1984, 7.1981, 7.1977, 7.1974, 7.197, 7.1966, 7.1963, 7.1957, 7.1952, 7.1969, 7.1964, 7.1959, 7.1939, 7.1936, 7.1933, 7.1945, 7.194, 7.1919, 7.1917, 7.1929, 7.1941, 7.1935, 7.1929, 7.1909, 7.1905, 7.1902, 7.1898, 7.1894, 7.1889, 7.1886, 7.1881, 7.1892, 7.1888, 7.1899, 7.1894, 7.189, 7.1886, 7.1882, 7.194, 7.1935, 7.193, 7.1928, 7.1923, 7.1918, 7.1914, 7.1909, 7.1903, 7.195, 7.1961, 7.1988, 7.1983, 7.1995, 7.1991, 7.1985, 7.1979, 7.1974, 7.1971, 7.1968, 7.1964, 7.1944, 7.1943, 7.194, 7.1936, 7.1948, 7.1942, 7.1936, 7.193, 7.1912, 7.1907, 7.1902, 7.1897, 7.1892, 7.1887, 7.1882, 7.1877, 7.1887, 7.1898, 7.1893, 7.1921, 7.1916, 7.1921, 7.1916, 7.1911, 7.1922, 7.1932, 7.1927, 7.1938, 7.1934, 7.1929, 7.1926, 7.1935, 7.1947, 7.1943, 7.1977, 7.1973, 7.1969, 7.1966, 7.1963, 7.1958, 7.197, 7.1966, 7.196, 7.1954, 7.1964, 7.196, 7.1955, 7.1965, 7.1977, 7.1973, 7.1984, 7.1998, 7.1981, 7.1967, 7.2029, 7.2009, 7.2004, 7.2036, 7.203, 7.2025, 7.2036, 7.2031, 7.2026, 7.2021, 7.2034, 7.2066, 7.2061, 7.2149, 7.2145, 7.2128, 7.2124, 7.2136, 7.2147, 7.2142, 7.2159, 7.2155, 7.2154, 7.2182, 7.2177, 7.2173, 7.2168, 7.2169, 7.2165, 7.2161, 7.2156, 7.2151, 7.2147, 7.2154, 7.2164, 7.2159, 7.2156, 7.2151, 7.2162, 7.2158, 7.2152, 7.2163, 7.2158, 7.2168, 7.2163, 7.2158, 7.2153, 7.2148, 7.2158, 7.2169, 7.2163, 7.2172, 7.2168, 7.2178, 7.2173, 7.2168, 7.2163, 7.219, 7.2185, 7.2195, 7.219, 7.2186, 7.2198, 7.2194, 7.2191, 7.2186, 7.2182, 7.2192, 7.2205, 7.2201, 7.2199, 7.2195, 7.2191, 7.2188, 7.2186, 7.2181, 7.2179, 7.2174, 7.2185, 7.218, 7.2176, 7.2172, 7.2168, 7.2165, 7.2178, 7.2181, 7.2192, 7.2189, 7.2184, 7.2195, 7.219, 7.2186, 7.2196, 7.2226, 7.2252, 7.2247, 7.2241, 7.2235, 7.2229, 7.2226, 7.2222, 7.2232, 7.2242, 7.2236, 7.2231, 7.2226, 7.2224, 7.2235, 7.2241, 7.2236, 7.2232, 7.2227, 7.2222, 7.2233, 7.2243, 7.2237, 7.2248, 7.2245, 7.2246, 7.2241, 7.2237, 7.2233, 7.2229, 7.2223, 7.2234, 7.2248, 7.2244, 7.2257, 7.2253, 7.2251, 7.2262, 7.2257, 7.2253, 7.2266, 7.2263, 7.2259, 7.227, 7.2279, 7.2276, 7.2271, 7.2267, 7.2263, 7.2272, 7.2271, 7.2266, 7.2264, 7.2275, 7.2272, 7.2273, 7.2286, 7.2315, 7.2331, 7.2348, 7.236, 7.2371, 7.2383, 7.2382, 7.2365, 7.2362, 7.2372, 7.2368, 7.2362, 7.2357, 7.2352, 7.237, 7.2379, 7.2361, 7.2357, 7.2356, 7.2352, 7.2348, 7.2344, 7.2353, 7.2349, 7.2344, 7.234, 7.2321, 7.2331, 7.2327, 7.2338, 7.2333, 7.233, 7.2324, 7.232, 7.2315, 7.2326, 7.2326, 7.2326, 7.2326, 7.2322, 7.2317, 7.2344, 7.234, 7.2365, 7.2392, 7.2389, 7.2402, 7.2398, 7.2414, 7.2441, 7.2437, 7.2448, 7.2444, 7.2451, 7.2449, 7.2445, 7.2441, 7.2438, 7.2434, 7.2461, 7.2472, 7.2456, 7.2452, 7.2462, 7.2456, 7.2452, 7.2463, 7.2473, 7.2468, 7.2463, 7.2459, 7.2455, 7.2465, 7.2462, 7.2458, 7.247, 7.2482, 7.248, 7.2475, 7.2472, 7.2484, 7.248, 7.2491, 7.251, 7.2505, 7.25, 7.2495, 7.249, 7.2486, 7.2497, 7.2507, 7.2525, 7.2507, 7.2516, 7.2526, 7.2537, 7.2531, 7.2513, 7.2494, 7.249, 7.2485, 7.2498, 7.2495, 7.249, 7.2487, 7.2483, 7.248, 7.2476, 7.2472, 7.2468, 7.2464, 7.246, 7.2455, 7.2453, 7.2448, 7.2443, 7.2441, 7.2452, 7.2448, 7.2446, 7.2441, 7.2436, 7.2447, 7.2442, 7.2443, 7.2438, 7.2449, 7.2444, 7.2457, 7.2442, 7.2437, 7.2446, 7.2444, 7.2529, 7.2539, 7.2534, 7.2544, 7.2539, 7.2534, 7.2529, 7.2524, 7.2519, 7.2516, 7.2512, 7.2508, 7.2504, 7.2502, 7.2498, 7.2493, 7.2504, 7.2501, 7.2498, 7.2494, 7.2489, 7.25, 7.2495, 7.2523, 7.252, 7.2515, 7.2512, 7.251, 7.2509, 7.2504, 7.2501, 7.2496, 7.2491, 7.249, 7.2485, 7.2498, 7.2493, 7.249, 7.2485, 7.2479, 7.2475, 7.247, 7.2465, 7.2463, 7.2472, 7.2467, 7.2477, 7.2473, 7.2485, 7.2496, 7.2493, 7.2488, 7.2485, 7.248, 7.2476, 7.2471, 7.2482, 7.2479, 7.2475, 7.2476, 7.2471, 7.2466, 7.2461, 7.2458, 7.2454, 7.245, 7.245, 7.246, 7.247, 7.2465, 7.2461, 7.2456, 7.2452, 7.2434, 7.2429, 7.2424, 7.2419, 7.2416, 7.2411, 7.2409, 7.2419, 7.2429, 7.2424, 7.2419, 7.2413, 7.2411, 7.2406, 7.2402, 7.2397, 7.2407, 7.2402, 7.2398, 7.2393, 7.2389, 7.2399, 7.2395, 7.2393, 7.2389, 7.2387, 7.2383, 7.2408, 7.2403, 7.2399, 7.2395, 7.2392, 7.2402, 7.2412, 7.2407, 7.2424, 7.2428, 7.2422, 7.2432, 7.2427, 7.2435, 7.2445, 7.2443, 7.2453, 7.2449, 7.2446, 7.2441, 7.2451, 7.2446, 7.2441, 7.2438, 7.2433, 7.2443, 7.2438, 7.2436, 7.2447, 7.2442, 7.2437, 7.2433, 7.2443, 7.2438, 7.2448, 7.2443, 7.2438, 7.2433, 7.2428, 7.2427, 7.2436, 7.2432, 7.244, 7.2435, 7.2417, 7.2413, 7.2422, 7.2419, 7.2431, 7.2426, 7.2423, 7.2419, 7.2401, 7.2411, 7.242, 7.2429, 7.2424, 7.2421, 7.2416, 7.2425, 7.2423, 7.242, 7.2417, 7.2412, 7.2421, 7.2416, 7.2411, 7.242, 7.2429, 7.2424, 7.2419, 7.2415, 7.2413, 7.2485, 7.2482, 7.2482, 7.2491, 7.2486, 7.2485, 7.248, 7.2476, 7.2472, 7.2468, 7.2464, 7.2446, 7.2459, 7.2444, 7.2443, 7.244, 7.2471, 7.247, 7.2465, 7.2451, 7.2446, 7.2456, 7.2465, 7.2461, 7.2456, 7.2452, 7.2472, 7.2545, 7.2554, 7.2563, 7.2549, 7.2558, 7.2553, 7.2562, 7.2557, 7.2568, 7.2565, 7.2575, 7.257, 7.2579, 7.2575, 7.2584, 7.2593, 7.2602, 7.2597, 7.2592, 7.2588, 7.2616, 7.2614, 7.261, 7.2622, 7.2617, 7.2613, 7.2609, 7.2605, 7.2587, 7.257, 7.2567, 7.2567, 7.2564, 7.2562, 7.2567, 7.2562, 7.2572, 7.2568, 7.2563, 7.2571, 7.2567, 7.2564, 7.256, 7.2556, 7.2553, 7.2564, 7.2559, 7.2555, 7.255, 7.2559, 7.2597, 7.2592, 7.2588, 7.2591, 7.2627, 7.2638, 7.2638, 7.2646, 7.2671, 7.2666, 7.2661, 7.267, 7.2667, 7.2662, 7.2659, 7.2655, 7.2651, 7.2633, 7.2633, 7.2648, 7.2633, 7.2629, 7.2624, 7.2633, 7.2629, 7.2625, 7.2608, 7.2603, 7.2616, 7.2614, 7.261, 7.2607, 7.263, 7.2625, 7.262, 7.2603, 7.2599, 7.2594, 7.259, 7.2586, 7.2593, 7.2588, 7.2597, 7.2593, 7.2589, 7.2598, 7.2593, 7.2589, 7.2572, 7.2567, 7.2576, 7.2571, 7.2567, 7.2577, 7.2572, 7.2567, 7.2562, 7.2557, 7.2552, 7.2547, 7.253, 7.2528, 7.2523, 7.2519, 7.2516, 7.2513, 7.2495, 7.2493, 7.2491, 7.2501, 7.251, 7.2505, 7.25, 7.2496, 7.2494, 7.2503, 7.2498, 7.2507, 7.2502, 7.2497, 7.2506, 7.2501, 7.2497, 7.2492, 7.2487, 7.2482, 7.2478, 7.2488, 7.2484, 7.2493, 7.2489, 7.2484, 7.2481, 7.2479, 7.2475, 7.2485, 7.2481, 7.2491, 7.2487, 7.2495, 7.2491, 7.2504, 7.2499, 7.2495, 7.249, 7.2486, 7.2482, 7.2477, 7.2473, 7.2468, 7.2466, 7.2475, 7.247, 7.2465, 7.2473, 7.2472, 7.2482, 7.248, 7.2479, 7.2481, 7.248, 7.249, 7.2486, 7.2482, 7.2506, 7.2503, 7.2498, 7.2494, 7.2501, 7.2498, 7.2495, 7.2504, 7.2513, 7.2509, 7.2506, 7.2506, 7.2503, 7.25, 7.2495, 7.249, 7.2499, 7.2494, 7.2503, 7.2512, 7.2521, 7.2516, 7.2512, 7.2521, 7.2504, 7.2518, 7.2514, 7.251, 7.2519, 7.2528, 7.2512, 7.2507, 7.2491, 7.2487, 7.2471, 7.2455, 7.2453, 7.2449, 7.2447, 7.2445, 7.2441, 7.2436, 7.2432, 7.2428, 7.2424, 7.2422, 7.2431, 7.2426, 7.2435, 7.2446, 7.2455, 7.2454, 7.245, 7.2458, 7.2453, 7.2448, 7.2444, 7.2444, 7.2453, 7.2463, 7.2458, 7.2459, 7.2467, 7.2477, 7.2488, 7.2485, 7.2481, 7.2477, 7.2473, 7.2469, 7.2465, 7.2461, 7.2458, 7.2467, 7.2488, 7.2483, 7.2478, 7.2487, 7.2484, 7.2481, 7.2479, 7.2475, 7.2473, 7.2469, 7.2465, 7.2544, 7.254, 7.2563, 7.2572, 7.2568, 7.2563, 7.2547, 7.2544, 7.254, 7.2538, 7.2533, 7.253, 7.2527, 7.2522, 7.2519, 7.2516, 7.2511, 7.252, 7.2516, 7.2513, 7.251, 7.2506, 7.2502, 7.2511, 7.2507, 7.2518, 7.2513, 7.251, 7.2519, 7.2528, 7.2537, 7.2532, 7.2541, 7.2538, 7.2534, 7.253, 7.2526, 7.2523, 7.252, 7.2515, 7.2524, 7.2524, 7.2519, 7.2528, 7.2523, 7.252, 7.2529, 7.2538, 7.2547, 7.2556, 7.2551, 7.2546, 7.2542, 7.2539, 7.2548, 7.2557, 7.2554, 7.2551, 7.256, 7.2555, 7.2539, 7.2536, 7.2537, 7.2533, 7.253, 7.2527, 7.2522, 7.2519, 7.2515, 7.251, 7.2505, 7.25, 7.2496, 7.2492, 7.2489, 7.2485, 7.248, 7.2489, 7.2484, 7.2493, 7.249, 7.2486, 7.247, 7.2466, 7.2462, 7.246, 7.246, 7.2468, 7.2476, 7.2471, 7.2467, 7.2478, 7.2486, 7.247, 7.2478, 7.2486, 7.2482, 7.2498, 7.2506, 7.2501, 7.2497, 7.2492, 7.2495, 7.2492, 7.2487, 7.2482, 7.2493, 7.2501, 7.2516, 7.2524, 7.2508, 7.2492, 7.2488, 7.2488, 7.2483, 7.248, 7.2475, 7.2486, 7.2481, 7.2477, 7.2475, 7.2473, 7.2469, 7.2466, 7.2475, 7.2471, 7.2479, 7.2475, 7.2471, 7.2468, 7.2464, 7.246, 7.2445, 7.2441, 7.2437, 7.2434, 7.243, 7.2426, 7.2422, 7.2431, 7.2427, 7.2412, 7.2408, 7.2407, 7.2403, 7.24, 7.2395, 7.2391, 7.2386, 7.2381, 7.2376, 7.2374, 7.2383, 7.2381, 7.2377, 7.2374, 7.2371, 7.2367, 7.2363, 7.2362, 7.2359, 7.2367, 7.2362, 7.2359, 7.2368, 7.2364, 7.2373, 7.2382, 7.2378, 7.2386, 7.2381, 7.2377, 7.2373, 7.2369, 7.2364, 7.2372, 7.2369, 7.2366, 7.2375, 7.2371, 7.2367, 7.2376, 7.2373, 7.2381, 7.239, 7.2385, 7.2383, 7.2392, 7.239, 7.2399, 7.2395, 7.238, 7.2377, 7.2385, 7.2382, 7.2379, 7.2376, 7.2372, 7.237, 7.2377, 7.2373, 7.237, 7.2378, 7.2374, 7.2371, 7.238, 7.2376, 7.2373, 7.2357, 7.2365, 7.2363, 7.236, 7.2356, 7.2352, 7.2348, 7.2345, 7.2341, 7.2336, 7.2344, 7.234, 7.2345, 7.2353, 7.2361, 7.2358, 7.2366, 7.2373, 7.237, 7.2368, 7.2364, 7.2361, 7.2357, 7.2353, 7.2349, 7.2345, 7.234, 7.2336, 7.2332, 7.2341, 7.2362, 7.2382, 7.2391, 7.2395, 7.2404, 7.24, 7.2397, 7.2405, 7.2403, 7.2398, 7.2406, 7.2402, 7.2397, 7.2406, 7.2402, 7.2397, 7.2393, 7.2389, 7.2374, 7.2369, 7.2364, 7.2372, 7.2368, 7.2364, 7.2349, 7.2334, 7.233, 7.2338, 7.2335, 7.2331, 7.2327, 7.2324, 7.2327, 7.2322, 7.2319, 7.2327, 7.2334, 7.233, 7.2326, 7.2322, 7.232, 7.2329, 7.2325, 7.2321, 7.2324, 7.2325, 7.2324, 7.232, 7.2328, 7.2324, 7.2321, 7.2318, 7.2325, 7.2346, 7.2342, 7.2338, 7.2334, 7.2342, 7.235, 7.2346, 7.2343, 7.2341, 7.2339, 7.2336, 7.2332, 7.2328, 7.2325, 7.2322, 7.2318, 7.2314, 7.2313, 7.2309, 7.2306, 7.2302, 7.23, 7.2297, 7.2293, 7.2289, 7.2285, 7.2281, 7.2278, 7.2287, 7.2295, 7.2302, 7.2299, 7.2286, 7.2271, 7.2267, 7.2263, 7.2259, 7.2255, 7.2251, 7.2262, 7.227, 7.2279, 7.2277, 7.2273, 7.2271, 7.2267, 7.2264, 7.226, 7.2269, 7.2265, 7.2262, 7.2259, 7.2256, 7.2253, 7.2249, 7.2247, 7.2243, 7.2254, 7.225, 7.2246, 7.2242, 7.2261, 7.2268, 7.2265, 7.2261, 7.2272, 7.2269, 7.2267, 7.2275, 7.2273, 7.2281, 7.2289, 7.2286, 7.2294, 7.2301, 7.2297, 7.2293, 7.2301, 7.2296, 7.2282, 7.2278, 7.2286, 7.2283, 7.2279, 7.2275, 7.2271, 7.2268, 7.2264, 7.226, 7.2269, 7.2277, 7.2284, 7.2292, 7.2289, 7.2297, 7.2293, 7.2278, 7.2285, 7.2281, 7.229, 7.2286, 7.2282, 7.2278, 7.2286, 7.2284, 7.2281, 7.2278, 7.2286, 7.2283, 7.2279, 7.2297, 7.2294, 7.2291, 7.2288, 7.2288, 7.2284, 7.2303, 7.23, 7.232, 7.2316, 7.2301, 7.2298, 7.2294, 7.229, 7.2288, 7.2285, 7.2281, 7.2277, 7.2273, 7.2269, 7.2281, 7.2277, 7.2285, 7.2281, 7.2289, 7.2285, 7.2293, 7.2291, 7.229, 7.2288, 7.2283, 7.2278, 7.2274, 7.2272, 7.2269, 7.2278, 7.2285, 7.2282, 7.2278, 7.2275, 7.2273, 7.2271, 7.2271, 7.2267, 7.2265, 7.2273, 7.2269, 7.2265, 7.2262, 7.2258, 7.2254, 7.2251, 7.2248, 7.2256, 7.2253, 7.2261, 7.2257, 7.2254, 7.2252, 7.2248, 7.2256, 7.2252, 7.2249, 7.2246, 7.2231, 7.2228, 7.2226, 7.2211, 7.2207, 7.2215, 7.2211, 7.2209, 7.2241, 7.2238, 7.2248, 7.2246, 7.2254, 7.2251, 7.2248, 7.2244, 7.2241, 7.2249, 7.2257, 7.2267, 7.2264, 7.2262, 7.226, 7.2257, 7.2253, 7.2249, 7.2246, 7.2243, 7.2242, 7.2238, 7.2234, 7.2234, 7.2231, 7.2239, 7.2237, 7.2233, 7.2242, 7.2238, 7.2234, 7.222, 7.2217, 7.2214, 7.2211, 7.2219, 7.2215, 7.2211, 7.2208, 7.2217, 7.2214, 7.2212, 7.222, 7.2228, 7.2236, 7.2244, 7.2252, 7.2248, 7.2234, 7.223, 7.2215, 7.2211, 7.2207, 7.2215, 7.2212, 7.2208, 7.2206, 7.2213, 7.2211, 7.2207, 7.2214, 7.2211, 7.2209, 7.2218, 7.2216, 7.2224, 7.222, 7.2217, 7.2213, 7.221, 7.2218, 7.2214, 7.2211, 7.2219, 7.2216, 7.2214, 7.2211, 7.2208, 7.2205, 7.2191, 7.2199, 7.2207, 7.2204, 7.22, 7.2196, 7.2192, 7.219, 7.2199, 7.2195, 7.2203, 7.2201, 7.2197, 7.2205, 7.2201, 7.2198, 7.2196, 7.2193, 7.219, 7.2187, 7.2187, 7.2194, 7.2192, 7.2188, 7.2184, 7.218, 7.2182, 7.2189, 7.2196, 7.2191, 7.2188, 7.2184, 7.218, 7.2176, 7.2173, 7.2169, 7.2165, 7.2161, 7.217, 7.2178, 7.2174, 7.217, 7.2177, 7.2173, 7.2169, 7.2177, 7.2174, 7.2172, 7.2169, 7.2165, 7.2151, 7.2147, 7.2155, 7.2151, 7.2159, 7.2155, 7.2153, 7.2139, 7.2138, 7.2134, 7.2141, 7.2137, 7.2136, 7.2132, 7.2118, 7.2114, 7.2111, 7.2107, 7.2104, 7.2103, 7.2113, 7.2109, 7.2117, 7.2114, 7.211, 7.2106, 7.2102, 7.2101, 7.2087, 7.2084, 7.208, 7.207, 7.2073, 7.2072, 7.2069, 7.2065, 7.2062, 7.2058, 7.2055, 7.2063, 7.206, 7.2058, 7.2064, 7.2062, 7.2059, 7.2055, 7.2052, 7.206, 7.2079, 7.2076, 7.2072, 7.2069, 7.2077, 7.2074, 7.2071, 7.2068, 7.2065, 7.2072, 7.2059, 7.2057, 7.2053, 7.2049, 7.2058, 7.2054, 7.204, 7.2037, 7.2034, 7.203, 7.2028, 7.2025, 7.2023, 7.203, 7.2026, 7.2024, 7.2021, 7.2017, 7.2025, 7.2033, 7.2031, 7.204, 7.2037, 7.2034, 7.2031, 7.2029, 7.2036, 7.2032, 7.2029, 7.2025, 7.2023, 7.202, 7.2027, 7.2013, 7.201, 7.1996, 7.1983, 7.1979, 7.1977, 7.199, 7.1999, 7.1997, 7.1994, 7.1993, 7.1989, 7.1986, 7.1995, 7.1991, 7.1988, 7.2007, 7.2004, 7.2011, 7.2019, 7.2015, 7.2011, 7.2, 7.1996, 7.204, 7.2054, 7.2054, 7.2061, 7.2058, 7.2055, 7.2053, 7.2049, 7.2068, 7.2064, 7.2063, 7.206, 7.2058, 7.2054, 7.205, 7.2058, 7.2055, 7.2063, 7.207, 7.2067, 7.2131, 7.2127, 7.2135, 7.2132, 7.213, 7.2116, 7.2112, 7.2109, 7.2161, 7.2158, 7.2154, 7.215, 7.2158, 7.2154, 7.215, 7.2148, 7.2168, 7.2164, 7.2161, 7.2158, 7.2154, 7.215, 7.2147, 7.2144, 7.213, 7.2127, 7.2124, 7.2132, 7.2129, 7.213, 7.2127, 7.2114, 7.211, 7.2107, 7.2104, 7.2101, 7.2098, 7.2095, 7.2092, 7.21, 7.2096, 7.2093, 7.2101, 7.2099, 7.2096, 7.2093, 7.2089, 7.2086, 7.2082, 7.208, 7.2076, 7.2072, 7.2069, 7.2066, 7.2062, 7.206, 7.2056, 7.2064, 7.2066, 7.2063, 7.206, 7.2047, 7.2034, 7.2031, 7.2044, 7.2051, 7.2048, 7.2044, 7.2041, 7.2038, 7.2061, 7.2057, 7.2067, 7.2068, 7.2066, 7.2075, 7.2062, 7.207, 7.2067, 7.2089, 7.2088, 7.2087, 7.2077, 7.2115, 7.2113, 7.211, 7.2118, 7.2114, 7.2112, 7.2112, 7.2101, 7.2098, 7.2087, 7.2084, 7.2073, 7.2069, 7.2065, 7.2062, 7.2058, 7.2057, 7.2054, 7.2052, 7.2049, 7.2057, 7.2058, 7.2054, 7.2062, 7.2063, 7.206, 7.2058, 7.2055, 7.2051, 7.2047, 7.2044, 7.204, 7.2036, 7.2043, 7.2039, 7.2035, 7.2032, 7.204, 7.2038, 7.2034, 7.2034, 7.2031, 7.2038, 7.2054, 7.2054, 7.2061, 7.2071, 7.2078, 7.2088, 7.2085, 7.2095, 7.2102, 7.2099, 7.2095, 7.2102, 7.211, 7.2108, 7.2115, 7.2122, 7.214, 7.2137, 7.2133, 7.2129, 7.2126, 7.2122, 7.2118, 7.2115, 7.2112, 7.2108, 7.2104, 7.2102, 7.2098, 7.2105, 7.2102, 7.2109, 7.2105, 7.2102, 7.2109, 7.2105, 7.2102, 7.2099, 7.2096, 7.2094, 7.209, 7.2086, 7.2095, 7.2092, 7.2096, 7.2095, 7.2093, 7.2101, 7.2099, 7.2096, 7.2093, 7.2091, 7.2088, 7.2092, 7.2092, 7.2089, 7.2086, 7.2094, 7.2105, 7.2102, 7.2092, 7.2089, 7.2088, 7.2084, 7.2081, 7.2079, 7.2076, 7.2063, 7.205, 7.2046, 7.2043, 7.2052, 7.2061, 7.2057, 7.2056, 7.2081, 7.2078, 7.2075, 7.2072, 7.2079, 7.2077, 7.2075, 7.2082, 7.2078, 7.2075, 7.2082, 7.2082, 7.2078, 7.2075, 7.2082, 7.2081, 7.2077, 7.2073, 7.206, 7.2067, 7.2073, 7.2069, 7.2058, 7.2055, 7.2063, 7.2059, 7.2066, 7.2053, 7.206, 7.207, 7.2067, 7.2074, 7.2071, 7.2068, 7.2065, 7.2061, 7.2061, 7.2061, 7.2048, 7.2035, 7.2031, 7.2039, 7.2046, 7.2043, 7.205, 7.2058, 7.2065, 7.2061, 7.2057, 7.2046, 7.2065, 7.2062, 7.2052, 7.2049, 7.2056, 7.2063, 7.206, 7.2057, 7.2056, 7.2055, 7.2066, 7.2075, 7.2071, 7.2068, 7.2065, 7.2062, 7.2081, 7.2068, 7.2076, 7.2083, 7.208, 7.2077, 7.2074, 7.2072, 7.2069, 7.2065, 7.2053, 7.205, 7.2046, 7.2044, 7.2041, 7.2048, 7.2045, 7.2041, 7.2039, 7.2036, 7.2032, 7.2028, 7.2025, 7.2022, 7.202, 7.2027, 7.2035, 7.2031, 7.2027, 7.2023, 7.202, 7.2016, 7.2012, 7.2008, 7.2015, 7.2023, 7.202, 7.202, 7.2017, 7.2014, 7.2022, 7.2019, 7.202, 7.2017, 7.2024, 7.2021, 7.2018, 7.2019, 7.2026, 7.2033, 7.203, 7.2026, 7.2022, 7.2018, 7.2018, 7.2014, 7.2021, 7.2028, 7.2024, 7.2022, 7.2019, 7.2026, 7.2024, 7.202, 7.2016, 7.2013, 7.2009, 7.2007, 7.2003, 7.2011, 7.2008, 7.2016, 7.2024, 7.2023, 7.202, 7.2017, 7.2015, 7.2013, 7.201, 7.2009, 7.2006, 7.2003, 7.2011, 7.2008, 7.2006, 7.2004, 7.1991, 7.1998, 7.1994, 7.1991, 7.199, 7.1987, 7.1984, 7.1981, 7.1978, 7.1975, 7.1982, 7.1979, 7.1976, 7.1973, 7.1992, 7.1979, 7.1975, 7.1981, 7.198, 7.1976, 7.1984, 7.1988, 7.1985, 7.1982, 7.1978, 7.1975, 7.1972, 7.1982, 7.198, 7.1968, 7.1965, 7.1972, 7.1969, 7.1977, 7.1975, 7.1973, 7.1973, 7.1981, 7.1988, 7.1998, 7.1997, 7.1993, 7.199, 7.1988, 7.1992, 7.1989, 7.1986, 7.1982, 7.1989, 7.1995, 7.1992, 7.199, 7.1977, 7.1974, 7.1971, 7.1968, 7.1965, 7.1962, 7.1969, 7.1967, 7.1973, 7.198, 7.1979, 7.1967, 7.1956, 7.1963, 7.1971, 7.1968, 7.1965, 7.1972, 7.1979, 7.1976, 7.1972, 7.1968, 7.1965, 7.1963, 7.1998, 7.1995, 7.1992, 7.1988, 7.1986, 7.1992, 7.1979, 7.1975, 7.1983, 7.1981, 7.1979, 7.1986, 7.1993, 7.1989, 7.1986, 7.1975, 7.1979, 7.1975, 7.1985, 7.1985, 7.1976, 7.1976, 7.1974, 7.1993, 7.2011, 7.2008, 7.2005, 7.2001, 7.1998, 7.1994, 7.1991, 7.1988, 7.1994, 7.199, 7.1997, 7.1994, 7.2001, 7.1998, 7.1995, 7.1992, 7.1991, 7.1988, 7.1984, 7.1992, 7.1989, 7.1977, 7.1974, 7.1971, 7.1989, 7.2007, 7.2006, 7.2003, 7.2001, 7.1999, 7.1997, 7.1995, 7.1997, 7.2004, 7.2002, 7.1999, 7.1996, 7.1993, 7.1993, 7.1991, 7.1987, 7.1983, 7.199, 7.1987, 7.1983, 7.1979, 7.1975, 7.1973, 7.1971, 7.1978, 7.1976, 7.1973, 7.1981, 7.1978, 7.1975, 7.1973, 7.197, 7.1967, 7.1963, 7.1969, 7.1956, 7.1962, 7.1959, 7.1955, 7.1952, 7.1949, 7.1955, 7.1952, 7.1959, 7.1966, 7.1964, 7.1961, 7.1967, 7.1975, 7.1982, 7.1988, 7.1985, 7.1973, 7.1971, 7.1977, 7.1974, 7.1971, 7.1988, 7.1985, 7.1984, 7.198, 7.1968, 7.1966, 7.1974, 7.1973, 7.1971, 7.1968, 7.1964, 7.1961, 7.1958, 7.1955, 7.1952, 7.1959, 7.1963, 7.1961, 7.1958, 7.1965, 7.1962, 7.196, 7.1958, 7.1955, 7.1955, 7.1963, 7.1969, 7.1965, 7.1962, 7.1961, 7.197100000000001, 7.1976, 7.1973, 7.198, 7.1987, 7.1983, 7.198, 7.1977, 7.1974, 7.1984, 7.1973, 7.1979, 7.1977, 7.1973, 7.197, 7.1977, 7.1974, 7.197, 7.1967, 7.1973, 7.197, 7.1957, 7.1953, 7.195, 7.1959, 7.1955, 7.1965, 7.197500000000001, 7.198500000000001, 7.2003, 7.2012, 7.2011, 7.2008, 7.2007, 7.2004, 7.2011, 7.2019, 7.2036, 7.2043, 7.205, 7.2047, 7.2045, 7.2052, 7.205, 7.2057, 7.2054, 7.2051, 7.2048, 7.2036, 7.2033, 7.203, 7.2029, 7.2027, 7.2034, 7.204, 7.204, 7.2039, 7.2036, 7.2033, 7.2031, 7.2028, 7.2025, 7.2022, 7.2029, 7.2026, 7.2033, 7.2031, 7.2038, 7.2036, 7.2034, 7.2033, 7.2031, 7.2029, 7.2026, 7.2023, 7.2025, 7.2022, 7.2019, 7.2016, 7.2013, 7.201, 7.2007, 7.2005, 7.2002, 7.2, 7.2010000000000005, 7.2007, 7.2014, 7.2022, 7.2019, 7.2016, 7.2013, 7.201, 7.2018, 7.2015, 7.2013, 7.201, 7.2018, 7.2015, 7.2012, 7.201, 7.2007, 7.2004, 7.2001, 7.1997, 7.1994, 7.2006, 7.2012, 7.2021, 7.2018, 7.2014, 7.2011, 7.2008, 7.1996, 7.1994, 7.2004, 7.2014000000000005, 7.202400000000001, 7.203400000000001, 7.2044000000000015, 7.2041, 7.2029, 7.2036, 7.2034, 7.2031, 7.2028, 7.2025, 7.2022, 7.202, 7.2027, 7.2024, 7.2022, 7.2019, 7.2027, 7.2024, 7.2031, 7.2032, 7.2029, 7.2017, 7.2006, 7.2003, 7.2, 7.1997, 7.2014, 7.2012, 7.2013, 7.2001, 7.1999, 7.2014, 7.2011, 7.2008, 7.2005, 7.2003, 7.202, 7.2027, 7.2024, 7.2021, 7.2018, 7.2015, 7.2021, 7.2018, 7.2015, 7.2012, 7.2009, 7.2006, 7.2003, 7.2, 7.1997, 7.1997, 7.1985, 7.1991, 7.1989, 7.2006, 7.2003, 7.2004, 7.2001, 7.2009, 7.2006, 7.2014, 7.202, 7.2017, 7.2014, 7.2012, 7.202, 7.2027, 7.2024, 7.2031, 7.2028, 7.2036, 7.2039, 7.2038, 7.2045, 7.2042, 7.2059, 7.2069, 7.2076, 7.2073, 7.208, 7.2090000000000005, 7.2087, 7.2085, 7.2076, 7.2093, 7.2098, 7.2094, 7.2091, 7.2088, 7.2085, 7.2082, 7.2089, 7.2087, 7.2085, 7.2082, 7.208, 7.2133, 7.213, 7.2136, 7.2133, 7.213, 7.2129, 7.2135, 7.217, 7.2178, 7.2184, 7.2194, 7.2201, 7.2208, 7.2214, 7.2211, 7.2217, 7.2214, 7.221, 7.2206, 7.2204, 7.2201, 7.2198, 7.2194, 7.2191, 7.2188, 7.2185, 7.2195, 7.2192, 7.2198, 7.2195, 7.2192, 7.2189, 7.2186, 7.2184, 7.2181, 7.2179, 7.2177, 7.2175, 7.2181, 7.2178, 7.2175, 7.2173, 7.218, 7.2177, 7.2175, 7.2173, 7.2172, 7.2169, 7.2157, 7.2155, 7.2153, 7.2151, 7.2149, 7.2155, 7.2152, 7.2149, 7.2147, 7.2146, 7.2144, 7.2142, 7.2141, 7.214, 7.2139, 7.2136, 7.2133, 7.2129, 7.2127, 7.2134, 7.2131, 7.2119, 7.2118, 7.2114, 7.2111, 7.2117, 7.2114, 7.2112, 7.2109, 7.2106, 7.2104, 7.2102, 7.2099, 7.2105, 7.2102, 7.2108, 7.2105, 7.2102, 7.21, 7.2106, 7.2103, 7.2109, 7.2118, 7.2124, 7.2121, 7.2118, 7.2128, 7.2125, 7.2124, 7.2121, 7.2118, 7.2118, 7.2115, 7.2121, 7.2119, 7.2116, 7.2115, 7.2113, 7.212, 7.2117, 7.2114, 7.2112, 7.211, 7.2108, 7.2105, 7.2096, 7.2096, 7.2093, 7.209, 7.2087, 7.2093, 7.21, 7.2117, 7.2114, 7.2116, 7.2113, 7.212, 7.2126, 7.2123, 7.2132, 7.213, 7.2128, 7.2125, 7.2131, 7.2128, 7.2128, 7.2126, 7.2115, 7.2112, 7.2118, 7.2106, 7.2103, 7.2101, 7.2107, 7.2104, 7.213, 7.2128, 7.2125, 7.2131, 7.2137, 7.2134, 7.217, 7.2168, 7.2165, 7.2161, 7.2158, 7.2156, 7.2153, 7.2159, 7.2156, 7.2162, 7.2158, 7.2155, 7.2161, 7.2167, 7.2164, 7.217, 7.2177, 7.2174, 7.2171, 7.2169, 7.2167, 7.2166, 7.2172, 7.2169, 7.2166, 7.2164, 7.2162, 7.216, 7.2158, 7.2148, 7.2145, 7.2143, 7.2149, 7.2161, 7.2168, 7.2166, 7.2164, 7.2161, 7.2158, 7.2156, 7.2154, 7.2153, 7.215, 7.2147, 7.2154, 7.2152, 7.2149, 7.2146, 7.2144, 7.2141, 7.2139, 7.2146, 7.2143, 7.215, 7.2147, 7.2146, 7.2144, 7.2149, 7.2157, 7.2164, 7.2164, 7.2162, 7.216, 7.2157, 7.2154, 7.2161, 7.2159, 7.2166, 7.2164, 7.217, 7.2176, 7.2209, 7.2206, 7.2204, 7.2202, 7.22, 7.2206, 7.2212, 7.2209, 7.2215, 7.2212, 7.221, 7.222, 7.2226, 7.2233, 7.223, 7.2228, 7.2226, 7.2223, 7.2221, 7.2218, 7.2215, 7.2213, 7.2219, 7.2218, 7.2224, 7.2221, 7.2218, 7.2215, 7.2213, 7.2219, 7.2216, 7.2213, 7.2219, 7.2216, 7.2216, 7.2213, 7.2219, 7.2217, 7.2215, 7.2213, 7.2212, 7.2242, 7.2239, 7.2236, 7.2233, 7.223, 7.2228, 7.2231, 7.2229, 7.2228, 7.2225, 7.2225, 7.2231, 7.223, 7.2227, 7.2246, 7.2244, 7.2241, 7.223, 7.2228, 7.2225, 7.2223, 7.2221, 7.2227, 7.2224, 7.223, 7.2228, 7.2234, 7.224, 7.2237, 7.2243, 7.224, 7.2237, 7.2234, 7.2233, 7.223, 7.2227, 7.2225, 7.2222, 7.2228, 7.2234, 7.224, 7.2238, 7.2236, 7.2235, 7.2235, 7.2232, 7.2221, 7.2218, 7.2215, 7.2221, 7.2218, 7.2218, 7.2215, 7.2212, 7.221, 7.2207, 7.2205, 7.2212, 7.2209, 7.2206, 7.2212, 7.222, 7.2217, 7.2214, 7.2211, 7.2208, 7.2206, 7.2195, 7.2194, 7.2191, 7.2189, 7.2186, 7.2184, 7.2173, 7.2171, 7.2168, 7.2173, 7.2179, 7.2176, 7.2173, 7.217, 7.2176, 7.2182, 7.218, 7.2186, 7.2193, 7.219, 7.2189, 7.2188, 7.2187, 7.2176, 7.2181, 7.2171, 7.2169, 7.2167, 7.2164, 7.2163, 7.216, 7.2158, 7.2156, 7.2153, 7.2152, 7.2149, 7.2146, 7.2135, 7.2132, 7.213, 7.2127, 7.2124, 7.2121, 7.2128, 7.2125, 7.2122, 7.2111, 7.2109, 7.2119, 7.2129, 7.2126, 7.2132, 7.2138, 7.2144, 7.215, 7.2148, 7.2154, 7.2151, 7.2149, 7.2146, 7.2145, 7.2142, 7.2139, 7.2145, 7.2142, 7.2152, 7.2158, 7.2155, 7.2153, 7.2154, 7.2153, 7.2151, 7.2148, 7.2146, 7.2145, 7.2142, 7.2139, 7.2136, 7.2133, 7.214, 7.2138, 7.2135, 7.2134, 7.2131, 7.2131, 7.2128, 7.2125, 7.2123, 7.2121, 7.2118, 7.2115, 7.2116, 7.2117, 7.2114, 7.2111, 7.2108, 7.2124, 7.2121, 7.2118, 7.2115, 7.2108, 7.2115, 7.2115, 7.2114, 7.212, 7.2117, 7.2114, 7.2112, 7.211, 7.2107, 7.2106, 7.2105, 7.211, 7.2107, 7.2104, 7.2111, 7.2117, 7.2116, 7.2114, 7.2111, 7.2108, 7.2106, 7.2103, 7.2102, 7.21, 7.2098, 7.2104, 7.2101, 7.2098, 7.2095, 7.2092, 7.2091, 7.208, 7.2078, 7.2076, 7.2073, 7.2071, 7.2069, 7.2066, 7.2063, 7.2061, 7.2059, 7.2057, 7.2055, 7.2053, 7.206, 7.2057, 7.2054, 7.2051, 7.2058, 7.2065, 7.2072, 7.2078, 7.2076, 7.2083, 7.2081, 7.2078, 7.2084, 7.2081, 7.2088, 7.2085, 7.2092, 7.209, 7.2087, 7.2076, 7.2075, 7.2072, 7.207, 7.2068, 7.2067, 7.2067, 7.2064, 7.207, 7.2067, 7.2064, 7.2062, 7.2059, 7.2056, 7.2062, 7.2059, 7.2056, 7.2053, 7.2059, 7.2057, 7.2054, 7.2052, 7.205, 7.2049, 7.2046, 7.2043, 7.2043, 7.204, 7.2038, 7.2036, 7.2046, 7.2056000000000004, 7.2045, 7.205500000000001, 7.2052, 7.2062, 7.2072, 7.2132, 7.2129, 7.2135, 7.2141, 7.2145, 7.2153, 7.215, 7.2147, 7.2144, 7.2142, 7.2139, 7.2136, 7.2139, 7.2137, 7.2134, 7.2131, 7.2129, 7.2126, 7.2124, 7.213, 7.2128, 7.2126, 7.2125, 7.213, 7.2127, 7.2133, 7.2132, 7.213, 7.2152, 7.2149, 7.2147, 7.2144, 7.2133, 7.2139, 7.2145, 7.2151, 7.214, 7.2146, 7.2152, 7.2141, 7.2148, 7.2153, 7.2158, 7.2164, 7.2161, 7.2158, 7.2159, 7.2157, 7.2163, 7.2169, 7.2175, 7.2172, 7.2169, 7.2178, 7.2175, 7.2181, 7.2187, 7.2187, 7.2193, 7.219, 7.2187, 7.2176, 7.2174, 7.2171, 7.2169, 7.2166, 7.2164, 7.2161, 7.2159, 7.2156, 7.2153, 7.2159, 7.2165, 7.2163, 7.216, 7.2159, 7.2165, 7.2162, 7.2161, 7.2159, 7.2156, 7.2154, 7.2152, 7.2149, 7.2146, 7.2154, 7.2143, 7.214, 7.2137, 7.2135, 7.2135, 7.2132, 7.2129, 7.2126, 7.2115, 7.2112, 7.2113, 7.211, 7.2107, 7.2113, 7.2119, 7.2117, 7.2123, 7.2129, 7.2126, 7.2131, 7.2128, 7.2125, 7.2122, 7.2119, 7.2124, 7.2122, 7.2122, 7.2119, 7.2116, 7.2113, 7.2103, 7.2109, 7.2106, 7.2096, 7.2094, 7.2092, 7.2089, 7.2086, 7.2083, 7.208, 7.2077, 7.2074, 7.2071, 7.2068, 7.2074, 7.2071, 7.2069, 7.2068, 7.2065, 7.2063, 7.206, 7.2059, 7.2056, 7.2053, 7.2042, 7.2039, 7.2036, 7.2042, 7.2048, 7.2046, 7.2044, 7.2041, 7.2045, 7.2051, 7.2048, 7.2045, 7.2042, 7.204, 7.2038, 7.2035, 7.2032, 7.2038, 7.2035, 7.2041, 7.2038, 7.2035, 7.2032, 7.203, 7.2036, 7.2034, 7.2032, 7.203, 7.202, 7.2017, 7.2015, 7.2022, 7.203200000000001, 7.204200000000001, 7.2048, 7.2046, 7.2044, 7.2042, 7.2039, 7.2046, 7.2036, 7.2026, 7.2023, 7.202, 7.2018, 7.2024, 7.2021, 7.2019, 7.2017, 7.2023, 7.202, 7.2017, 7.2014, 7.2012, 7.2009, 7.2015, 7.2012, 7.201, 7.2016, 7.2022, 7.202, 7.2017, 7.2014, 7.2011, 7.2017, 7.2014, 7.2012, 7.2009, 7.2006, 7.2003, 7.2001, 7.2008, 7.2005, 7.2002, 7.1999, 7.2005, 7.2011, 7.2008, 7.2014, 7.2019, 7.2017, 7.2015, 7.2012, 7.201, 7.2009, 7.1999, 7.1997, 7.2011, 7.2008, 7.2005, 7.2002, 7.2, 7.2061, 7.2059, 7.2058, 7.2064, 7.207, 7.208, 7.2078, 7.2075, 7.2081, 7.2079, 7.2076, 7.2074, 7.208, 7.2077, 7.2074, 7.2079, 7.2076, 7.2073, 7.207, 7.2067, 7.2065, 7.2062, 7.2059, 7.2056, 7.2061, 7.2058, 7.2064, 7.2062, 7.2059, 7.2072, 7.2086, 7.2101, 7.2109, 7.2114, 7.2111, 7.21, 7.2106, 7.2111, 7.2109, 7.2106, 7.2109, 7.2107, 7.2105, 7.2111, 7.2117, 7.2116, 7.2122, 7.2128, 7.2134, 7.2131, 7.2137, 7.2134, 7.214, 7.2137, 7.2134, 7.2131, 7.2128, 7.2126, 7.2132, 7.213, 7.2137, 7.2134, 7.2139, 7.2136, 7.2142, 7.2148, 7.2144, 7.2143, 7.214, 7.2138, 7.2144, 7.2141, 7.2139, 7.2136, 7.2134, 7.2131, 7.2128, 7.2125, 7.2122, 7.2128, 7.2133, 7.213, 7.2128, 7.2133, 7.213, 7.2136, 7.2133, 7.2131, 7.2128, 7.2126, 7.2132, 7.2138, 7.2136, 7.2141, 7.2138, 7.2135, 7.2133, 7.213, 7.2136, 7.2133, 7.213, 7.2127, 7.2132, 7.2138, 7.2143, 7.2149, 7.2146, 7.2149, 7.2146, 7.2144, 7.2141, 7.2147, 7.2152, 7.2158, 7.2155, 7.2153, 7.2151, 7.2157, 7.2155, 7.2153, 7.2151, 7.2148, 7.2154, 7.2151, 7.2148, 7.2145, 7.2151, 7.2165, 7.2171, 7.2161, 7.2175, 7.2181, 7.2186, 7.2184, 7.2181, 7.2179, 7.218, 7.2178, 7.2175, 7.2173, 7.2179, 7.2176, 7.2181, 7.2178, 7.2183, 7.218, 7.2186, 7.2192, 7.2189, 7.2187, 7.2193, 7.219, 7.2187, 7.2184, 7.2181, 7.2204, 7.2214, 7.2211, 7.2208, 7.2213, 7.2219, 7.2209, 7.2206, 7.222, 7.2217, 7.2214, 7.2218, 7.2215, 7.222, 7.2217, 7.2222, 7.2228, 7.2225, 7.2215, 7.2221, 7.2218, 7.2215, 7.2221, 7.2218, 7.2246, 7.2243, 7.224, 7.2246, 7.2252, 7.2258, 7.2264, 7.2261, 7.2266, 7.2271, 7.2276, 7.2281, 7.2278, 7.2276, 7.2274, 7.2272, 7.2282, 7.2288, 7.2294, 7.2291, 7.2297, 7.2295, 7.23, 7.2297, 7.2295, 7.2292, 7.2298, 7.2295, 7.2293, 7.2306, 7.2304, 7.2301, 7.2307, 7.2313, 7.2326, 7.2332, 7.233, 7.2327, 7.2324, 7.2323, 7.232, 7.2325, 7.2323, 7.2344, 7.2345, 7.2351, 7.2349, 7.2355, 7.2352, 7.2358, 7.2356, 7.2353, 7.235, 7.2348, 7.2346, 7.2344, 7.235, 7.2348, 7.2346, 7.2343, 7.234, 7.2341, 7.234, 7.2331, 7.2328, 7.2329, 7.2334, 7.2333, 7.2334, 7.2339, 7.2345, 7.2353, 7.2351, 7.2348, 7.2338, 7.2335, 7.2332, 7.2329, 7.2327, 7.2324, 7.2322, 7.2312, 7.2318, 7.2326, 7.2323, 7.2334, 7.2339, 7.2344, 7.2341, 7.2362, 7.236, 7.2357, 7.2354, 7.2351, 7.2341, 7.2339, 7.2337, 7.2334, 7.2331, 7.2328, 7.2334, 7.2339, 7.2329, 7.2336, 7.2334, 7.2331, 7.2328, 7.2326, 7.2323, 7.232, 7.2318, 7.2327, 7.2324, 7.2322, 7.2319, 7.2317, 7.2314, 7.2304, 7.2301, 7.2298, 7.2295, 7.23, 7.2297, 7.2294, 7.2292, 7.2282, 7.2287, 7.2301, 7.2301, 7.2299, 7.2297, 7.2294, 7.2291, 7.2294, 7.2292, 7.2301, 7.2306, 7.2312, 7.231, 7.2315, 7.2313, 7.2303, 7.2301, 7.2298, 7.2295, 7.23, 7.2306, 7.231, 7.2335, 7.2332, 7.2346, 7.2343, 7.2341, 7.2339, 7.2344, 7.2342, 7.2339, 7.2336, 7.2341, 7.2354, 7.2359, 7.2356, 7.2354, 7.2355, 7.2378, 7.2376, 7.2382, 7.238, 7.2385, 7.239, 7.2387, 7.2384, 7.2389, 7.2394, 7.2413, 7.2418, 7.2415, 7.242, 7.2425, 7.2423, 7.2428, 7.2426, 7.2431, 7.2428, 7.2433, 7.2438, 7.2435, 7.2432, 7.243, 7.2435, 7.244, 7.2445, 7.245, 7.2455, 7.2453, 7.2451, 7.2456, 7.2454, 7.2459, 7.2456, 7.2462, 7.2475, 7.2481, 7.2479, 7.2484, 7.2474, 7.2464, 7.2461, 7.2458, 7.2456, 7.2454, 7.2451, 7.2457, 7.2454, 7.2459, 7.2457, 7.2454, 7.246, 7.2457, 7.2462, 7.2459, 7.2456, 7.247, 7.2468, 7.2466, 7.2466, 7.2479, 7.2476, 7.2473, 7.2478, 7.2475, 7.2472, 7.2477, 7.2475, 7.2481, 7.248, 7.2486, 7.2485, 7.2483, 7.2493, 7.2491, 7.2496, 7.2493, 7.249, 7.2487, 7.2485, 7.2485, 7.2483, 7.2481, 7.2486, 7.2484, 7.2482, 7.248, 7.2477, 7.2491, 7.2488, 7.2493, 7.249, 7.2487, 7.2484], '192.168.122.113': [5.3399, 5.7984, 7.5856, 7.1247, 6.765, 6.5639, 6.3923, 6.2816, 6.1846, 6.655, 6.5355, 6.4838, 7.0396, 6.9314, 6.9955, 6.8962, 7.1294, 7.3376, 7.5061, 7.4291, 7.3228, 7.2325, 7.3928, 7.3199, 7.2532, 7.1802, 6.935, 7.0976, 7.2514, 7.4145, 7.3443, 7.3263, 7.2981, 7.2725, 7.2341, 7.0528, 7.0176, 7.1138, 7.224, 7.1873, 7.1509, 7.1227, 7.2288, 7.1903, 7.1585, 7.1412, 7.1673, 7.2481, 7.2163, 7.1839, 7.1551, 7.2239, 7.2921, 7.2682, 7.2322, 7.2054, 7.1739, 7.1526, 7.1294, 7.1118, 7.0897, 7.0874, 7.0676, 7.1065, 7.085, 7.0651, 7.0412, 7.0175, 7.034, 7.0987, 7.1183, 7.0925, 7.0678, 7.0488, 6.9816, 6.9667, 6.946, 6.9246, 6.9069, 6.8976, 6.9028, 6.8947, 7.0327, 7.0136, 6.9993, 7.0463, 7.0268, 7.0091, 6.9911, 6.9763, 6.9652, 7.0292, 7.0123, 7.0044, 7.0438, 7.029, 7.0148, 7.0012, 6.9891, 6.9774, 6.9713, 6.9567, 6.941, 6.9264, 6.9203, 6.9097, 6.951, 6.9387, 6.9486, 7.0831, 7.0897, 7.1295, 7.1157, 7.105, 7.1128, 7.0975, 7.1039, 7.0919, 7.0797, 7.1249, 7.2077, 7.1952, 7.1803, 7.1279, 7.1606, 7.1464, 7.1351, 7.1236, 7.1592, 7.1499, 7.1514, 7.373, 7.3697, 7.3539, 7.305, 7.2992, 7.2916, 7.2805, 7.2663, 7.2554, 7.2461, 7.2443, 7.2319, 7.2236, 7.2519, 7.2439, 7.2355, 7.2244, 7.2196, 7.2091, 7.202, 7.1903, 7.1782, 7.202, 7.2304, 7.2221, 7.2113, 7.2027, 7.1961, 7.1851, 7.3098, 7.2972, 7.365, 7.3552, 7.343, 7.3306, 7.3513, 7.3443, 7.3688, 7.3566, 7.3461, 7.3697, 7.3938, 7.3577, 7.3512, 7.3404, 7.3312, 7.3212, 7.3145, 7.3038, 7.2961, 7.2948, 7.2844, 7.2751, 7.2924, 7.2825, 7.273, 7.2732, 7.2632, 7.2536, 7.2456, 7.236, 7.2545, 7.2462, 7.239, 7.2299, 7.2224, 7.2167, 7.2089, 7.2026, 7.1979, 7.1887, 7.1792, 7.1717, 7.242, 7.2615, 7.2558, 7.2481, 7.2164, 7.2336, 7.3042, 7.295, 7.2856, 7.2762, 7.267, 7.2584, 7.2493, 7.2649, 7.2592, 7.2528, 7.2684, 7.2606, 7.2521, 7.2436, 7.2349, 7.2311, 7.2243, 7.2426, 7.2348, 7.2278, 7.2209, 7.2154, 7.2068, 7.2225, 7.1938, 7.1896, 7.2363, 7.2725, 7.2659, 7.2576, 7.2502, 7.2442, 7.2499, 7.2452, 7.24, 7.2551, 7.2468, 7.2386, 7.2325, 7.2265, 7.2192, 7.2115, 7.206, 7.2201, 7.2173, 7.2108, 7.224, 7.2179, 7.211, 7.2248, 7.2197, 7.2129, 7.2268, 7.2395, 7.2325, 7.2265, 7.2213, 7.2348, 7.2287, 7.2221, 7.2155, 7.2084, 7.2019, 7.2152, 7.2354, 7.2305, 7.2234, 7.2168, 7.2098, 7.2045, 7.216, 7.2089, 7.203, 7.197, 7.1908, 7.1846, 7.1976, 7.2108, 7.2227, 7.2193, 7.2175, 7.23, 7.2237, 7.2177, 7.2118, 7.2058, 7.1997, 7.1935, 7.1892, 7.1831, 7.1771, 7.1709, 7.166, 7.1789, 7.175, 7.2207, 7.2474, 7.2698, 7.2742, 7.2684, 7.3397, 7.3366, 7.3329, 7.3112, 7.3227, 7.3191, 7.3143, 7.3106, 7.306, 7.3011, 7.3137, 7.3263, 7.3211, 7.3334, 7.3291, 7.3255, 7.3361, 7.3308, 7.3257, 7.3221, 7.3175, 7.315, 7.3092, 7.3041, 7.2996, 7.3093, 7.3037, 7.2979, 7.3092, 7.3037, 7.2976, 7.2918, 7.3016, 7.2959, 7.3068, 7.3012, 7.2983, 7.3093, 7.3183, 7.3136, 7.3084, 7.3181, 7.3129, 7.3088, 7.3031, 7.3129, 7.308, 7.3181, 7.313, 7.3076, 7.3033, 7.2984, 7.295, 7.2906, 7.2911, 7.2862, 7.2839, 7.3103, 7.3063, 7.3026, 7.2985, 7.2941, 7.2935, 7.2884, 7.2973, 7.3059, 7.3012, 7.3109, 7.312, 7.3132, 7.3099, 7.3047, 7.2997, 7.2945, 7.3045, 7.3007, 7.2959, 7.3039, 7.2999, 7.3086, 7.3182, 7.3168, 7.3254, 7.3341, 7.3316, 7.342, 7.3366, 7.3327, 7.3391, 7.3515, 7.3481, 7.3431, 7.3391, 7.3365, 7.3458, 7.3413, 7.3507, 7.3602, 7.3687, 7.3638, 7.3592, 7.356, 7.3783, 7.3931, 7.3882, 7.3956, 7.4041, 7.4392, 7.4469, 7.4415, 7.4497, 7.4376, 7.4331, 7.4298, 7.4393, 7.4345, 7.4307, 7.4257, 7.4352, 7.431, 7.4536, 7.4489, 7.4441, 7.4391, 7.4395, 7.4356, 7.4307, 7.426, 7.4212, 7.4291, 7.4245, 7.4217, 7.4169, 7.413, 7.4086, 7.4042, 7.4003, 7.4079, 7.405, 7.4017, 7.4091, 7.4214, 7.4169, 7.4124, 7.4085, 7.4065, 7.4131, 7.4021, 7.399, 7.3948, 7.4063, 7.402, 7.4093, 7.3943, 7.392, 7.3892, 7.3853, 7.3815, 7.3777, 7.3849, 7.3804, 7.3667, 7.3758, 7.3714, 7.3674, 7.3633, 7.3505, 7.3469, 7.3442, 7.3444, 7.3403, 7.3379, 7.3345, 7.3412, 7.3382, 7.3341, 7.3414, 7.35, 7.3462, 7.3528, 7.3487, 7.3557, 7.3514, 7.3478, 7.3442, 7.3739, 7.3812, 7.3873, 7.3838, 7.3706, 7.3682, 7.3759, 7.3623, 7.3589, 7.3551, 7.3616, 7.3485, 7.3354, 7.3316, 7.3659, 7.3621, 7.3583, 7.3544, 7.3509, 7.3474, 7.3441, 7.3409, 7.3542, 7.355, 7.3518, 7.3409, 7.3609, 7.3584, 7.3546, 7.3613, 7.3586, 7.3581, 7.3561, 7.3435, 7.3501, 7.3481, 7.3462, 7.343, 7.3492, 7.3547, 7.3731, 7.3628, 7.3591, 7.3558, 7.3525, 7.3517, 7.3529, 7.3509, 7.358, 7.3551, 7.3523, 7.359, 7.3554, 7.361, 7.3674, 7.3839, 7.3814, 7.3803, 7.3767, 7.3733, 7.3717, 7.3772, 7.3828, 7.3804, 7.3901, 7.3961, 7.3932, 7.3894, 7.386, 7.4036, 7.4003, 7.3967, 7.3932, 7.3906, 7.3888, 7.3852, 7.3822, 7.3843, 7.3808, 7.3837, 7.3805, 7.3865, 7.3831, 7.3893, 7.395, 7.3916, 7.388, 7.3846, 7.382, 7.3786, 7.3752, 7.3721, 7.3697, 7.3664, 7.3638, 7.3616, 7.3583, 7.3548, 7.3521, 7.3502, 7.3472, 7.3452, 7.3448, 7.3418, 7.3481, 7.3451, 7.3502, 7.3565, 7.3544, 7.3515, 7.3492, 7.3378, 7.3351, 7.3321, 7.3384, 7.3447, 7.3423, 7.3394, 7.337, 7.3339, 7.3311, 7.3287, 7.3296, 7.3268, 7.3237, 7.3224, 7.32, 7.3252, 7.3227, 7.3288, 7.3282, 7.3273, 7.324, 7.3293, 7.3273, 7.3243, 7.3212, 7.3181, 7.3165, 7.3312, 7.3295, 7.335, 7.3319, 7.3288, 7.3259, 7.3227, 7.3194, 7.3165, 7.3142, 7.3197, 7.3166, 7.3138, 7.3112, 7.3081, 7.3135, 7.3104, 7.3159, 7.3127, 7.3097, 7.3082, 7.3135, 7.3114, 7.3106, 7.3091, 7.3069, 7.3038, 7.3009, 7.3064, 7.3036, 7.3092, 7.3349, 7.3318, 7.3288, 7.3262, 7.3242, 7.3219, 7.3188, 7.3168, 7.3143, 7.3195, 7.3173, 7.3224, 7.3196, 7.317, 7.3138, 7.3187, 7.3165, 7.3217, 7.319, 7.3176, 7.3149, 7.3179, 7.3149, 7.312, 7.3099, 7.3077, 7.3136, 7.3188, 7.317, 7.3238, 7.3213, 7.319, 7.3163, 7.3219, 7.3192, 7.3163, 7.3137, 7.3193, 7.3168, 7.3147, 7.3123, 7.3178, 7.3231, 7.3211, 7.326, 7.3238, 7.3295, 7.3266, 7.3237, 7.3224, 7.3129, 7.3187, 7.3159, 7.3132, 7.3414, 7.3465, 7.3389, 7.3437, 7.3411, 7.3383, 7.3357, 7.3402, 7.3376, 7.3373, 7.3348, 7.3345, 7.3321, 7.3294, 7.3269, 7.3313, 7.336, 7.3412, 7.3393, 7.33, 7.3345, 7.3317, 7.3363, 7.3408, 7.3381, 7.3364, 7.334, 7.3321, 7.337, 7.3349, 7.335, 7.3398, 7.3397, 7.3377, 7.3352, 7.3326, 7.3309, 7.3289, 7.3266, 7.3248, 7.322, 7.3203, 7.3247, 7.3227, 7.3202, 7.3246, 7.3233, 7.321, 7.3223, 7.3198, 7.3178, 7.3153, 7.3196, 7.3239, 7.3217, 7.3265, 7.3245, 7.3157, 7.3145, 7.3121, 7.3095, 7.3069, 7.3045, 7.302, 7.2994, 7.2971, 7.2946, 7.2935, 7.2916, 7.2904, 7.2901, 7.2947, 7.2993, 7.2971, 7.2959, 7.294, 7.2984, 7.2977, 7.2893, 7.2868, 7.285, 7.2958, 7.2936, 7.3079, 7.3056, 7.3035, 7.3016, 7.2999, 7.2979, 7.2954, 7.2948, 7.2932, 7.2977, 7.3017, 7.2995, 7.2973, 7.2957, 7.2942, 7.2919, 7.2963, 7.3008, 7.2993, 7.2977, 7.3024, 7.3004, 7.298, 7.2958, 7.2935, 7.2978, 7.2961, 7.3225, 7.3268, 7.3358, 7.3335, 7.3317, 7.3364, 7.334, 7.3322, 7.33, 7.3299, 7.3222, 7.3203, 7.318, 7.316, 7.3203, 7.318, 7.316, 7.3142, 7.3123, 7.3165, 7.3145, 7.3131, 7.3115, 7.3096, 7.3075, 7.305, 7.303, 7.3107, 7.3029, 7.3013, 7.3054, 7.3097, 7.3035, 7.2958, 7.3003, 7.2992, 7.3113, 7.3099, 7.3082, 7.3124, 7.3113, 7.3267, 7.325, 7.3227, 7.3205, 7.3201, 7.3241, 7.3164, 7.3205, 7.3196, 7.3179, 7.3172, 7.3208, 7.3188, 7.3174, 7.3218, 7.3253, 7.3237, 7.3272, 7.3254, 7.3236, 7.3215, 7.3196, 7.3176, 7.3215, 7.3256, 7.3294, 7.3338, 7.3317, 7.3354, 7.3337, 7.3369, 7.3405, 7.3441, 7.342, 7.3406, 7.3445, 7.3439, 7.3417, 7.3394, 7.3374, 7.3321, 7.3259, 7.3244, 7.3228, 7.3212, 7.3191, 7.3178, 7.3157, 7.3195, 7.3232, 7.3228, 7.3269, 7.3258, 7.3242, 7.3238, 7.3275, 7.3314, 7.3298, 7.329, 7.3325, 7.3305, 7.3348, 7.3332, 7.3367, 7.3349, 7.3331, 7.3322, 7.3307, 7.3287, 7.3367, 7.3349, 7.3328, 7.3426, 7.3408, 7.3388, 7.3367, 7.3346, 7.3465, 7.3453, 7.3473, 7.3403, 7.3388, 7.3376, 7.3355, 7.3398, 7.3383, 7.3428, 7.3414, 7.3395, 7.3378, 7.3362, 7.3349, 7.3334, 7.3314, 7.3359, 7.3394, 7.3379, 7.3416, 7.3395, 7.3375, 7.3418, 7.3399, 7.3391, 7.3371, 7.3351, 7.3332, 7.3313, 7.3294, 7.3274, 7.3258, 7.3242, 7.3222, 7.3207, 7.3188, 7.3167, 7.3148, 7.313, 7.311, 7.3091, 7.307, 7.3106, 7.3087, 7.3067, 7.307, 7.3058, 7.3039, 7.3024, 7.3005, 7.2986, 7.302, 7.3001, 7.2985, 7.3024, 7.3007, 7.2988, 7.3023, 7.3005, 7.2991, 7.2973, 7.2956, 7.2936, 7.2957, 7.2992, 7.2981, 7.2999, 7.298, 7.2966, 7.2947, 7.298, 7.2976, 7.2961, 7.2941, 7.2997, 7.298, 7.2969, 7.2948, 7.293, 7.2913, 7.2932, 7.2914, 7.2951, 7.2937, 7.2921, 7.2903, 7.2893, 7.2878, 7.286, 7.2844, 7.2881, 7.2867, 7.2854, 7.2841, 7.2828, 7.2868, 7.2854, 7.2835, 7.2817, 7.2802, 7.2782, 7.2814, 7.2802, 7.2791, 7.2778, 7.2759, 7.2791, 7.2823, 7.2806, 7.2791, 7.2776, 7.2772, 7.2806, 7.2838, 7.282, 7.2806, 7.2795, 7.2819, 7.2801, 7.2784, 7.2765, 7.2747, 7.2738, 7.2726, 7.274, 7.2724, 7.2708, 7.2741, 7.2722, 7.2756, 7.2737, 7.2721, 7.2704, 7.2692, 7.2674, 7.2706, 7.274, 7.2739, 7.2722, 7.2756, 7.2789, 7.2772, 7.2807, 7.2788, 7.2775, 7.2808, 7.2792, 7.2781, 7.2766, 7.2752, 7.2745, 7.273, 7.2718, 7.2704, 7.2716, 7.2703, 7.2684, 7.2667, 7.2672, 7.2659, 7.2641, 7.2585, 7.2572, 7.2559, 7.2587, 7.2589, 7.2583, 7.2567, 7.2603, 7.2586, 7.257, 7.2577, 7.2563, 7.2546, 7.2531, 7.2524, 7.2567, 7.2597, 7.2579, 7.2563, 7.2549, 7.2581, 7.2568, 7.2606, 7.2593, 7.258, 7.261, 7.2595, 7.2583, 7.2566, 7.2553, 7.2538, 7.2639, 7.2627, 7.2568, 7.2559, 7.2552, 7.2535, 7.2564, 7.2547, 7.2532, 7.2563, 7.2506, 7.2491, 7.252, 7.2504, 7.2535, 7.2522, 7.2521, 7.2504, 7.2532, 7.2521, 7.2507, 7.25, 7.2487, 7.248, 7.2466, 7.2458, 7.2444, 7.2429, 7.2416, 7.2403, 7.239, 7.2378, 7.2369, 7.2352, 7.2387, 7.2388, 7.2376, 7.2371, 7.2363, 7.2353, 7.234, 7.2323, 7.231, 7.2342, 7.2329, 7.2313, 7.2306, 7.2289, 7.2277, 7.2262, 7.2247, 7.2273, 7.2262, 7.2247, 7.2231, 7.2259, 7.2291, 7.2324, 7.2309, 7.2337, 7.2321, 7.2305, 7.2292, 7.2276, 7.2306, 7.2296, 7.2285, 7.227, 7.2303, 7.2331, 7.2375, 7.2362, 7.2349, 7.2336, 7.2369, 7.2355, 7.2339, 7.2325, 7.2309, 7.2294, 7.2282, 7.227, 7.2255, 7.2241, 7.2228, 7.2213, 7.2201, 7.2186, 7.2182, 7.2167, 7.2196, 7.2181, 7.2213, 7.2243, 7.2236, 7.2222, 7.2252, 7.228, 7.2272, 7.2257, 7.2243, 7.2231, 7.2221, 7.221, 7.2197, 7.2185, 7.2173, 7.2203, 7.2233, 7.2219, 7.2208, 7.2195, 7.2181, 7.2213, 7.224, 7.2228, 7.2216, 7.2246, 7.2231, 7.2219, 7.2251, 7.2198, 7.2184, 7.2213, 7.2243, 7.2243, 7.223, 7.2216, 7.2245, 7.2231, 7.2306, 7.2292, 7.2279, 7.2265, 7.2256, 7.2244, 7.2249, 7.2405, 7.2391, 7.2339, 7.2328, 7.2326, 7.2353, 7.2399, 7.2439, 7.2428, 7.2461, 7.2618, 7.2611, 7.2636, 7.2662, 7.2652, 7.2641, 7.2638, 7.2668, 7.2654, 7.2642, 7.263, 7.2616, 7.2601, 7.2591, 7.2588, 7.2573, 7.2559, 7.2547, 7.2539, 7.2527, 7.2476, 7.2463, 7.2458, 7.2529, 7.2516, 7.2472, 7.2461, 7.2488, 7.2478, 7.2464, 7.2491, 7.2518, 7.2544, 7.2529, 7.2555, 7.2582, 7.2609, 7.2594, 7.2582, 7.2577, 7.2564, 7.2601, 7.2627, 7.2617, 7.2647, 7.2639, 7.2666, 7.2657, 7.2643, 7.2676, 7.2705, 7.2692, 7.2721, 7.2708, 7.2697, 7.2682, 7.2698, 7.2724, 7.2709, 7.2696, 7.2684, 7.267, 7.262, 7.2609, 7.2597, 7.2587, 7.2577, 7.2564, 7.2661, 7.2648, 7.2635, 7.262, 7.2606, 7.2629, 7.2616, 7.2643, 7.263, 7.2633, 7.2657, 7.2644, 7.2595, 7.2582, 7.2576, 7.2527, 7.2518, 7.2505, 7.2531, 7.2557, 7.2583, 7.2611, 7.2597, 7.2587, 7.2576, 7.2565, 7.2554, 7.254, 7.253, 7.2517, 7.2543, 7.2542, 7.2528, 7.2555, 7.2508, 7.2494, 7.248, 7.2479, 7.2465, 7.2455, 7.2485, 7.2511, 7.2537, 7.2524, 7.2519, 7.2505, 7.253, 7.2517, 7.2504, 7.249, 7.2477, 7.2464, 7.2451, 7.2441, 7.243, 7.2418, 7.2444, 7.2432, 7.2419, 7.2449, 7.2435, 7.2426, 7.2416, 7.2403, 7.2394, 7.2418, 7.2417, 7.244, 7.2427, 7.2414, 7.2405, 7.2431, 7.2422, 7.241, 7.2437, 7.2425, 7.2412, 7.2399, 7.2388, 7.2415, 7.2405, 7.2393, 7.2386, 7.2373, 7.2365, 7.2364, 7.235, 7.2305, 7.2298, 7.2284, 7.2272, 7.226, 7.2251, 7.2275, 7.2266, 7.2257, 7.2283, 7.2271, 7.2261, 7.2249, 7.227, 7.226, 7.2285, 7.2272, 7.2298, 7.2288, 7.2277, 7.2267, 7.2291, 7.2283, 7.2307, 7.2295, 7.225, 7.2239, 7.2229, 7.2217, 7.2207, 7.2197, 7.2193, 7.2183, 7.217, 7.2158, 7.2145, 7.2133, 7.2158, 7.2147, 7.2133, 7.2121, 7.2112, 7.2099, 7.2123, 7.2113, 7.214, 7.2131, 7.2118, 7.2111, 7.2099, 7.2124, 7.2111, 7.2136, 7.2131, 7.2118, 7.2108, 7.2132, 7.212, 7.2109, 7.2133, 7.2127, 7.2114, 7.2139, 7.2127, 7.215, 7.214, 7.2128, 7.2115, 7.211, 7.2066, 7.2095, 7.2085, 7.2075, 7.2067, 7.2057, 7.2047, 7.2037, 7.2027, 7.2015, 7.2007, 7.2001, 7.1988, 7.2018, 7.2005, 7.1993, 7.198, 7.1976, 7.1968, 7.1961, 7.1949, 7.1941, 7.194, 7.1929, 7.197, 7.1959, 7.195, 7.1938, 7.193, 7.1919, 7.1944, 7.1932, 7.1928, 7.1919, 7.1908, 7.1899, 7.1923, 7.1922, 7.1991, 7.1979, 7.1967, 7.1956, 7.1945, 7.1935, 7.1932, 7.1965, 7.1955, 7.1951, 7.1943, 7.1935, 7.1923, 7.1928, 7.1918, 7.2057, 7.2015, 7.2004, 7.2098, 7.2087, 7.2084, 7.2072, 7.2066, 7.2057, 7.2046, 7.2038, 7.2032, 7.2054, 7.2182, 7.2172, 7.2166, 7.2155, 7.2144, 7.2166, 7.2158, 7.2155, 7.2152, 7.2145, 7.2171, 7.2195, 7.2186, 7.22, 7.2189, 7.2181, 7.2169, 7.216, 7.2182, 7.2171, 7.216, 7.2148, 7.2136, 7.2159, 7.2149, 7.2172, 7.216, 7.2152, 7.214, 7.2134, 7.2157, 7.2145, 7.2171, 7.2163, 7.2223, 7.2244, 7.2265, 7.2253, 7.2242, 7.2234, 7.2228, 7.2251, 7.2244, 7.2233, 7.2253, 7.2241, 7.2262, 7.2221, 7.2245, 7.2234, 7.2224, 7.2221, 7.2217, 7.2211, 7.2202, 7.219, 7.2215, 7.2217, 7.2206, 7.2197, 7.2188, 7.218, 7.2202, 7.2224, 7.2212, 7.2233, 7.2194, 7.2157, 7.2179, 7.2167, 7.2156, 7.2177, 7.2164, 7.2186, 7.2208, 7.2198, 7.2186, 7.2185, 7.2175, 7.2196, 7.2188, 7.2177, 7.2166, 7.224, 7.2262, 7.2252, 7.2242, 7.2236, 7.2229, 7.2224, 7.2217, 7.2237, 7.2229, 7.2221, 7.2309, 7.2336, 7.2327, 7.2348, 7.2356, 7.2377, 7.2371, 7.236, 7.2353, 7.2342, 7.2351, 7.2344, 7.2334, 7.2323, 7.2345, 7.2367, 7.2359, 7.2353, 7.2346, 7.2335, 7.2335, 7.2355, 7.2378, 7.2367, 7.2358, 7.235, 7.234, 7.2359, 7.2353, 7.2342, 7.2333, 7.2322, 7.2315, 7.2334, 7.2323, 7.2312, 7.2301, 7.2323, 7.2315, 7.2304, 7.2292, 7.2281, 7.2303, 7.2292, 7.2254, 7.2292, 7.2312, 7.2301, 7.229, 7.2279, 7.227, 7.2261, 7.2285, 7.2285, 7.2309, 7.2427, 7.242, 7.2411, 7.2431, 7.242, 7.2438, 7.2428, 7.2417, 7.2439, 7.2431, 7.2425, 7.2416, 7.2437, 7.2436, 7.2425, 7.2443, 7.2464, 7.2546, 7.2536, 7.2526, 7.2515, 7.2514, 7.2502, 7.2508, 7.2526, 7.2522, 7.2516, 7.2507, 7.2498, 7.2493, 7.2483, 7.2476, 7.2467, 7.2458, 7.2448, 7.2437, 7.2408, 7.2397, 7.2386, 7.2375, 7.2396, 7.2417, 7.2437, 7.2427, 7.2417, 7.2407, 7.2437, 7.2399, 7.2474, 7.247, 7.2432, 7.2423, 7.2443, 7.2432, 7.2427, 7.2425, 7.2415, 7.2406, 7.24, 7.2391, 7.2382, 7.2377, 7.2396, 7.2385, 7.2352, 7.2314, 7.2333, 7.2323, 7.2313, 7.2305, 7.2294, 7.235, 7.2339, 7.2389, 7.238, 7.2375, 7.2401, 7.2391, 7.2382, 7.2402, 7.2393, 7.2386, 7.2407, 7.2398, 7.2388, 7.2381, 7.2376, 7.2397, 7.2388, 7.2409, 7.2398, 7.242, 7.2438, 7.246, 7.248, 7.2508, 7.2565, 7.2557, 7.2576, 7.2596, 7.2588, 7.2577, 7.2566, 7.2529, 7.2527, 7.2545, 7.2535, 7.2555, 7.2545, 7.2565, 7.2584, 7.2605, 7.2596, 7.2586, 7.2576, 7.2566, 7.2556, 7.2546, 7.254, 7.2553, 7.2572, 7.2591, 7.258, 7.2572, 7.2563, 7.2554, 7.2576, 7.2568, 7.2557, 7.255, 7.2571, 7.2589, 7.2581, 7.2571, 7.259, 7.258, 7.257, 7.2589, 7.2579, 7.2569, 7.2559, 7.2549, 7.2569, 7.2559, 7.2552, 7.2542, 7.2532, 7.2524, 7.2514, 7.2534, 7.2523, 7.2514, 7.2504, 7.2468, 7.258, 7.2572, 7.2563, 7.2555, 7.2548, 7.2567, 7.2557, 7.2576, 7.2578, 7.2569, 7.2562, 7.2556, 7.2546, 7.2536, 7.2555, 7.2546, 7.2539, 7.253, 7.2496, 7.2487, 7.2477, 7.2467, 7.2459, 7.2451, 7.2443, 7.2438, 7.2428, 7.2423, 7.244, 7.2431, 7.245, 7.2467, 7.2457, 7.2451, 7.2444, 7.2463, 7.2457, 7.2476, 7.2494, 7.2512, 7.2504, 7.2497, 7.2518, 7.251, 7.2501, 7.2494, 7.2513, 7.2513, 7.2505, 7.2499, 7.2491, 7.251, 7.2502, 7.2496, 7.2492, 7.2509, 7.2527, 7.2521, 7.2487, 7.2477, 7.2467, 7.2577, 7.2571, 7.2589, 7.2607, 7.2599, 7.2591, 7.2586, 7.2584, 7.2577, 7.2574, 7.2567, 7.2581, 7.2547, 7.2538, 7.2557, 7.2578, 7.2575, 7.2565, 7.2562, 7.258, 7.257, 7.256, 7.2584, 7.2576, 7.2573, 7.2591, 7.2585, 7.2577, 7.2574, 7.2569, 7.2559, 7.258, 7.2572, 7.2564, 7.2556, 7.2523, 7.2513, 7.2506, 7.2498, 7.2517, 7.2507, 7.2499, 7.2492, 7.2503, 7.2497, 7.2489, 7.2481, 7.2472, 7.2466, 7.2456, 7.2458, 7.2451, 7.2469, 7.2459, 7.2451, 7.2448, 7.2494, 7.2485, 7.2481, 7.2499, 7.2517, 7.2508, 7.2526, 7.2519, 7.2511, 7.2501, 7.2492, 7.2482, 7.2473, 7.2463, 7.2456, 7.245, 7.2418, 7.2512, 7.2506, 7.2524, 7.2517, 7.2513, 7.2505, 7.2499, 7.2489, 7.2483, 7.2516, 7.2563, 7.2553, 7.2547, 7.2537, 7.2527, 7.2518, 7.2511, 7.2505, 7.2522, 7.2512, 7.2505, 7.2495, 7.2489, 7.2484, 7.2477, 7.2473, 7.2464, 7.2481, 7.2472, 7.2463, 7.2455, 7.2471, 7.2488, 7.2504, 7.2494, 7.2487, 7.2477, 7.2469, 7.246, 7.2458, 7.2449, 7.2464, 7.2446, 7.2437, 7.2428, 7.2419, 7.2409, 7.2402, 7.2394, 7.2393, 7.2386, 7.2378, 7.2372, 7.2365, 7.2383, 7.2374, 7.2374, 7.2365, 7.2356, 7.2348, 7.2339, 7.2333, 7.2325, 7.2342, 7.2336, 7.2356, 7.2348, 7.2339, 7.2357, 7.2352, 7.2344, 7.2335, 7.2326, 7.2317, 7.2308, 7.2324, 7.2315, 7.2332, 7.2349, 7.2342, 7.2336, 7.2357, 7.2348, 7.2365, 7.2381, 7.2398, 7.2389, 7.2382, 7.2374, 7.2367, 7.238, 7.2371, 7.2388, 7.2379, 7.237, 7.2361, 7.2353, 7.2371, 7.2367, 7.2362, 7.2388, 7.243, 7.2428, 7.242, 7.2422, 7.2415, 7.2406, 7.2398, 7.2404, 7.2396, 7.2387, 7.2381, 7.2377, 7.2371, 7.2364, 7.2391, 7.2359, 7.2377, 7.2371, 7.2414, 7.2407, 7.2398, 7.2389, 7.2406, 7.2397, 7.2414, 7.2425, 7.2418, 7.2412, 7.2407, 7.24, 7.2369, 7.2386, 7.2379, 7.2372, 7.2363, 7.238, 7.2373, 7.2344, 7.2361, 7.2379, 7.2398, 7.2391, 7.2383, 7.2375, 7.2366, 7.236, 7.2355, 7.2348, 7.2341, 7.2334, 7.2327, 7.232, 7.2339, 7.2334, 7.235, 7.2343, 7.2336, 7.2327, 7.232, 7.2312, 7.2304, 7.2299, 7.2292, 7.2309, 7.23, 7.2291, 7.2283, 7.2254, 7.2249, 7.2245, 7.2263, 7.2257, 7.2249, 7.2244, 7.2236, 7.2231, 7.2202, 7.2195, 7.2186, 7.2179, 7.2171, 7.2162, 7.2156, 7.2147, 7.2139, 7.2108, 7.2125, 7.2141, 7.2158, 7.2174, 7.217, 7.2186, 7.2212, 7.2204, 7.2198, 7.2192, 7.2209, 7.2202, 7.2172, 7.2143, 7.2134, 7.2177, 7.217, 7.2163, 7.2164, 7.2159, 7.2154, 7.2148, 7.2141, 7.2134, 7.2125, 7.2143, 7.2182, 7.2198, 7.219, 7.2209, 7.2192, 7.2184, 7.2176, 7.2148, 7.2165, 7.2157, 7.2148, 7.2164, 7.218, 7.2174, 7.219, 7.2182, 7.2153, 7.2124, 7.2117, 7.2116, 7.2132, 7.2124, 7.2139, 7.2135, 7.2153, 7.2169, 7.2161, 7.2179, 7.2173, 7.2167, 7.2161, 7.2155, 7.215, 7.2144, 7.2161, 7.2195, 7.2212, 7.2207, 7.2202, 7.2194, 7.2188, 7.2183, 7.2201, 7.2219, 7.222, 7.2234, 7.2226, 7.2221, 7.2214, 7.221, 7.2235, 7.2252, 7.2248, 7.2252, 7.2245, 7.2241, 7.2341, 7.2333, 7.2325, 7.2297, 7.2292, 7.2285, 7.2279, 7.2272, 7.2267, 7.226, 7.2254, 7.2246, 7.2238, 7.2261, 7.226, 7.2254, 7.2225, 7.2241, 7.2256, 7.225, 7.2243, 7.2239, 7.2231, 7.2223, 7.2214, 7.2205, 7.2197, 7.219, 7.2184, 7.2161, 7.2176, 7.2169, 7.2162, 7.2179, 7.2171, 7.2166, 7.2159, 7.2152, 7.2146, 7.2139, 7.2137, 7.2153, 7.2147, 7.214, 7.2134, 7.2128, 7.2145, 7.2161, 7.2153, 7.2147, 7.2139, 7.2153, 7.2147, 7.2163, 7.2157, 7.2151, 7.2145, 7.2161, 7.2156, 7.2152, 7.2123, 7.2117, 7.2109, 7.2101, 7.2095, 7.2087, 7.2081, 7.2073, 7.2071, 7.2086, 7.208, 7.2072, 7.2075, 7.2069, 7.2062, 7.2057, 7.205, 7.2045, 7.2037, 7.203, 7.2049, 7.2043, 7.2057, 7.2073, 7.2066, 7.2058, 7.2052, 7.2047, 7.2044, 7.2059, 7.2051, 7.2046, 7.2018, 7.2012, 7.2007, 7.1999, 7.1991, 7.1985, 7.205, 7.2042, 7.2034, 7.2027, 7.2019, 7.2013, 7.2006, 7.2002, 7.1995, 7.2014, 7.1987, 7.198, 7.1973, 7.1971, 7.1986, 7.198, 7.1975, 7.1968, 7.1962, 7.1956, 7.1972, 7.1966, 7.1959, 7.1952, 7.1945, 7.1938, 7.1931, 7.1945, 7.1941, 7.1956, 7.1971, 7.1967, 7.1982, 7.1975, 7.1969, 7.1963, 7.1957, 7.1971, 7.1964, 7.198, 7.1972, 7.1949, 7.1965, 7.196, 7.1976, 7.197, 7.1965, 7.196, 7.1959, 7.1951, 7.1945, 7.1939, 7.1933, 7.1929, 7.1942, 7.1934, 7.1932, 7.1946, 7.194, 7.1955, 7.1968, 7.1962, 7.1958, 7.1951, 7.1969, 7.1963, 7.1936, 7.1981, 7.1973, 7.197, 7.1987, 7.1979, 7.2018, 7.2023, 7.2016, 7.2012, 7.2008, 7.2002, 7.1996, 7.197, 7.1983, 7.1976, 7.1969, 7.1962, 7.1979, 7.1994, 7.1986, 7.1982, 7.1977, 7.1972, 7.1969, 7.1962, 7.1977, 7.1972, 7.197, 7.1963, 7.1978, 7.1973, 7.1966, 7.1981, 7.1974, 7.1991, 7.1984, 7.1977, 7.197, 7.1984, 7.1979, 7.1978, 7.1974, 7.201, 7.2002, 7.1995, 7.1988, 7.1981, 7.1975, 7.1971, 7.1963, 7.1959, 7.1951, 7.1944, 7.1959, 7.1952, 7.1944, 7.1938, 7.1952, 7.1945, 7.1938, 7.1932, 7.1946, 7.194, 7.1954, 7.1967, 7.1963, 7.1976, 7.1968, 7.1962, 7.1958, 7.1971, 7.1986, 7.198, 7.1974, 7.1968, 7.1964, 7.1958, 7.1953, 7.1946, 7.1938, 7.1952, 7.1945, 7.1946, 7.1961, 7.1958, 7.1951, 7.1965, 7.1958, 7.1952, 7.1951, 7.1965, 7.1959, 7.1954, 7.1947, 7.194, 7.194, 7.1934, 7.1927, 7.1919, 7.1934, 7.1935, 7.1929, 7.1923, 7.1916, 7.1931, 7.1944, 7.1943, 7.1939, 7.1934, 7.1927, 7.192, 7.1914, 7.1908, 7.1901, 7.1899, 7.1914, 7.1908, 7.1901, 7.1917, 7.1911, 7.1905, 7.1904, 7.1897, 7.1892, 7.1889, 7.1882, 7.1876, 7.1871, 7.1864, 7.1881, 7.1894, 7.1887, 7.1901, 7.1896, 7.19, 7.1916, 7.1911, 7.1905, 7.1898, 7.1893, 7.191, 7.1921, 7.1916, 7.191, 7.1906, 7.192, 7.1934, 7.1927, 7.1901, 7.1894, 7.1909, 7.1906, 7.1905, 7.1897, 7.1892, 7.1888, 7.1882, 7.1897, 7.1892, 7.1906, 7.19, 7.1893, 7.1889, 7.1885, 7.1878, 7.1873, 7.1848, 7.1842, 7.1835, 7.1849, 7.1869, 7.1883, 7.1877, 7.1869, 7.1885, 7.1879, 7.1878, 7.1872, 7.1865, 7.186, 7.1862, 7.1859, 7.1854, 7.1866, 7.186, 7.1856, 7.1849, 7.1844, 7.1839, 7.1833, 7.1831, 7.1828, 7.1821, 7.1819, 7.1812, 7.1805, 7.18, 7.1814, 7.1828, 7.1841, 7.1853, 7.1849, 7.1844, 7.1857, 7.1853, 7.1847, 7.1844, 7.1837, 7.1834, 7.1829, 7.1825, 7.1829, 7.1838, 7.1851, 7.1845, 7.1839, 7.1835, 7.1891, 7.1898, 7.1893, 7.1888, 7.1881, 7.1893, 7.1889, 7.1883, 7.1877, 7.1892, 7.1868, 7.1863, 7.1877, 7.1874, 7.1867, 7.1862, 7.1856, 7.185, 7.1845, 7.1826, 7.1821, 7.1818, 7.1815, 7.1811, 7.1806, 7.1801, 7.1794, 7.1789, 7.1786, 7.1761, 7.1775, 7.177, 7.1763, 7.1758, 7.1771, 7.1766, 7.1761, 7.1797, 7.1791, 7.1785, 7.1774, 7.179, 7.1786, 7.1885, 7.188, 7.1876, 7.1883, 7.1879, 7.1895, 7.1909, 7.1884, 7.1878, 7.1871, 7.1864, 7.1878, 7.1873, 7.1887, 7.1881, 7.1875, 7.1869, 7.1864, 7.1925, 7.1919, 7.1915, 7.1912, 7.1905, 7.1919, 7.1914, 7.1928, 7.1961, 7.1954, 7.197, 7.1966, 7.1959, 7.1952, 7.1965, 7.1989, 7.2021, 7.2016, 7.201, 7.2024, 7.2019, 7.2034, 7.2029, 7.2023, 7.2019, 7.2013, 7.2007, 7.2003, 7.1996, 7.2008, 7.1984, 7.1981, 7.1975, 7.1988, 7.1982, 7.1979, 7.1972, 7.1966, 7.1959, 7.1952, 7.1946, 7.1958, 7.197, 7.1964, 7.1941, 7.1934, 7.1928, 7.1922, 7.1917, 7.191, 7.1923, 7.1919, 7.1915, 7.1928, 7.1924, 7.1936, 7.1949, 7.1944, 7.1957, 7.1969, 7.1985, 7.1978, 7.2019, 7.2016, 7.1996, 7.1976, 7.1996, 7.199, 7.2004, 7.1997, 7.201, 7.2024, 7.2018, 7.2015, 7.2029, 7.2024, 7.2017, 7.2013, 7.203, 7.2024, 7.2036, 7.2031, 7.2026, 7.2021, 7.2034, 7.2047, 7.2062, 7.2057, 7.2054, 7.2048, 7.2042, 7.2037, 7.2031, 7.2025, 7.2048, 7.2061, 7.2061, 7.2074, 7.2088, 7.2103, 7.2098, 7.2078, 7.2073, 7.2067, 7.2061, 7.2055, 7.2052, 7.2045, 7.2059, 7.2053, 7.2048, 7.2062, 7.2062, 7.2058, 7.206, 7.2072, 7.2106, 7.21, 7.2095, 7.209, 7.2083, 7.2121, 7.2114, 7.2108, 7.2102, 7.2095, 7.2088, 7.2084, 7.2078, 7.2091, 7.2123, 7.2118, 7.2134, 7.2128, 7.2122, 7.2126, 7.212, 7.2114, 7.2108, 7.2102, 7.2095, 7.2088, 7.2083, 7.2077, 7.207, 7.2083, 7.2095, 7.209, 7.2102, 7.2098, 7.211, 7.2104, 7.2099, 7.2094, 7.2087, 7.2084, 7.2078, 7.2076, 7.2088, 7.2083, 7.2078, 7.2076, 7.2071, 7.2065, 7.2058, 7.2071, 7.2065, 7.2058, 7.2059, 7.2053, 7.207, 7.2064, 7.2076, 7.2072, 7.2066, 7.2062, 7.2056, 7.2051, 7.2063, 7.2074, 7.2068, 7.2062, 7.2058, 7.2058, 7.2061, 7.2055, 7.2049, 7.2043, 7.204, 7.2034, 7.2088, 7.2082, 7.2076, 7.207, 7.2064, 7.2057, 7.2074, 7.2069, 7.2063, 7.206, 7.2054, 7.2069, 7.2065, 7.2064, 7.2059, 7.2053, 7.2066, 7.2109, 7.2104, 7.21, 7.2094, 7.209, 7.2084, 7.2079, 7.2074, 7.2068, 7.208, 7.2074, 7.2086, 7.2081, 7.2093, 7.2105, 7.2099, 7.2093, 7.2088, 7.21, 7.2078, 7.2055, 7.2033, 7.2027, 7.2023, 7.2019, 7.2032, 7.2025, 7.202, 7.1998, 7.201, 7.2004, 7.2018, 7.2014, 7.201, 7.2005, 7.2, 7.1994, 7.1988, 7.1981, 7.1975, 7.1988, 7.1982, 7.1975, 7.199, 7.1985, 7.198, 7.1992, 7.1987, 7.1999, 7.1993, 7.1972, 7.1969, 7.1969, 7.1981, 7.1976, 7.197, 7.1966, 7.1963, 7.1958, 7.1953, 7.1965, 7.1978, 7.1971, 7.1969, 7.1982, 7.1978, 7.1973, 7.1968, 7.1962, 7.1957, 7.1972, 7.1969, 7.1983, 7.1977, 7.1988, 7.2003, 7.1997, 7.1992, 7.1986, 7.198, 7.1974, 7.2028, 7.2022, 7.2018, 7.2013, 7.2027, 7.2023, 7.2017, 7.2029, 7.2023, 7.2036, 7.2031, 7.2026, 7.2021, 7.2016, 7.2011, 7.2006, 7.207, 7.2064, 7.2058, 7.207, 7.2065, 7.2059, 7.2054, 7.2048, 7.2043, 7.2056, 7.2054, 7.2068, 7.2063, 7.2057, 7.2051, 7.2046, 7.2042, 7.2037, 7.2034, 7.2029, 7.204, 7.2035, 7.203, 7.2024, 7.2017, 7.2011, 7.2023, 7.2017, 7.2029, 7.204, 7.2051, 7.2049, 7.2046, 7.2043, 7.2038, 7.2033, 7.2045, 7.204, 7.2051, 7.2046, 7.2058, 7.2053, 7.2047, 7.2075, 7.207, 7.2093, 7.2088, 7.2085, 7.208, 7.2074, 7.2087, 7.2107, 7.2103, 7.2102, 7.2106, 7.2101, 7.2095, 7.2107, 7.2101, 7.2095, 7.2154, 7.2177, 7.2189, 7.2168, 7.2163, 7.216, 7.2154, 7.215, 7.2175, 7.217, 7.2164, 7.2175, 7.2171, 7.2167, 7.2161, 7.2156, 7.2168, 7.218, 7.2194, 7.2223, 7.2217, 7.223, 7.2227, 7.2222, 7.2218, 7.2231, 7.2242, 7.2238, 7.2251, 7.2245, 7.2243, 7.2239, 7.2233, 7.2228, 7.2223, 7.2217, 7.2214, 7.2208, 7.2213, 7.2214, 7.2209, 7.2204, 7.2216, 7.2245, 7.2241, 7.2276, 7.228, 7.2282, 7.2277, 7.2272, 7.2266, 7.2264, 7.2259, 7.2253, 7.2247, 7.2242, 7.2253, 7.2248, 7.226, 7.2254, 7.2249, 7.2243, 7.224, 7.2235, 7.2232, 7.2245, 7.2295, 7.2311, 7.2307, 7.2304, 7.23, 7.2282, 7.2301, 7.2297, 7.2308, 7.2319, 7.2314, 7.2345, 7.2359, 7.2354, 7.2349, 7.2343, 7.234, 7.2334, 7.2328, 7.2325, 7.2322, 7.2316, 7.2312, 7.2292, 7.2287, 7.2302, 7.2285, 7.2296, 7.2291, 7.2338, 7.2334, 7.2328, 7.2322, 7.2316, 7.2323, 7.2318, 7.233, 7.2342, 7.2338, 7.2335, 7.233, 7.2328, 7.2322, 7.2317, 7.2327, 7.2321, 7.2315, 7.231, 7.2305, 7.2284, 7.228, 7.2293, 7.2316, 7.2312, 7.2324, 7.2322, 7.2319, 7.2315, 7.2311, 7.2321, 7.2331, 7.2326, 7.232, 7.2315, 7.2309, 7.2305, 7.23, 7.2315, 7.2326, 7.2337, 7.2333, 7.2333, 7.2322, 7.2318, 7.2314, 7.2309, 7.2303, 7.2283, 7.2278, 7.2289, 7.2285, 7.228, 7.2276, 7.227, 7.2265, 7.2259, 7.2254, 7.2285, 7.2279, 7.229, 7.2284, 7.2278, 7.2274, 7.2269, 7.2265, 7.226, 7.2255, 7.2249, 7.2244, 7.2238, 7.2249, 7.2261, 7.2255, 7.2251, 7.2246, 7.224, 7.2252, 7.2247, 7.2241, 7.2252, 7.2248, 7.2244, 7.2238, 7.2232, 7.2233, 7.2232, 7.2254, 7.2248, 7.2244, 7.2242, 7.2236, 7.223, 7.2243, 7.2238, 7.2232, 7.2228, 7.2222, 7.2216, 7.2213, 7.2223, 7.2217, 7.2212, 7.2225, 7.2236, 7.2232, 7.2229, 7.2224, 7.2219, 7.2214, 7.221, 7.2205, 7.22, 7.2213, 7.2207, 7.2201, 7.2197, 7.2191, 7.2186, 7.2185, 7.2183, 7.2179, 7.219, 7.2184, 7.2195, 7.219, 7.2189, 7.2186, 7.2181, 7.2176, 7.2188, 7.2202, 7.2185, 7.2224, 7.2221, 7.2218, 7.2214, 7.2224, 7.2235, 7.223, 7.2211, 7.2222, 7.2217, 7.2213, 7.2208, 7.2203, 7.2214, 7.2209, 7.2204, 7.2198, 7.2194, 7.2188, 7.2199, 7.2194, 7.2189, 7.2184, 7.2195, 7.2189, 7.2186, 7.2181, 7.2177, 7.2187, 7.2188, 7.2184, 7.218, 7.2176, 7.2172, 7.2185, 7.2181, 7.2176, 7.2174, 7.217, 7.2166, 7.2178, 7.219, 7.2187, 7.2186, 7.2182, 7.2178, 7.2189, 7.2185, 7.2181, 7.2176, 7.2172, 7.2167, 7.2179, 7.2193, 7.2188, 7.2199, 7.2195, 7.2192, 7.2193, 7.2188, 7.2198, 7.2194, 7.2188, 7.2198, 7.2195, 7.2191, 7.2186, 7.2181, 7.2178, 7.2172, 7.2182, 7.2178, 7.2189, 7.217, 7.2181, 7.2177, 7.2171, 7.2182, 7.2177, 7.2172, 7.2168, 7.2178, 7.2174, 7.217, 7.2165, 7.2163, 7.2174, 7.2185, 7.2196, 7.2208, 7.2203, 7.22, 7.2197, 7.2194, 7.2189, 7.2184, 7.2179, 7.2177, 7.2188, 7.2203, 7.2214, 7.221, 7.2238, 7.2234, 7.2215, 7.2211, 7.2208, 7.222, 7.2216, 7.2212, 7.2224, 7.2235, 7.2232, 7.2227, 7.2222, 7.2217, 7.223, 7.2225, 7.2222, 7.2217, 7.2211, 7.2221, 7.2231, 7.2212, 7.2201, 7.2181, 7.2176, 7.2157, 7.2151, 7.2145, 7.214, 7.2155, 7.2165, 7.2175, 7.2173, 7.217, 7.2166, 7.216, 7.2156, 7.215, 7.2144, 7.2154, 7.2148, 7.2159, 7.2154, 7.2149, 7.2144, 7.2126, 7.212, 7.213, 7.2125, 7.212, 7.2115, 7.211, 7.212, 7.213, 7.2126, 7.2121, 7.2116, 7.2113, 7.2122, 7.212, 7.213, 7.2127, 7.2123, 7.2132, 7.2127, 7.2124, 7.2118, 7.2128, 7.2138, 7.2135, 7.2148, 7.2153, 7.2147, 7.2142, 7.2136, 7.2132, 7.2144, 7.2139, 7.2135, 7.2222, 7.2232, 7.2227, 7.2223, 7.2218, 7.2214, 7.2211, 7.2221, 7.2231, 7.2226, 7.2221, 7.2216, 7.2213, 7.2208, 7.2218, 7.2227, 7.2223, 7.222, 7.2215, 7.2214, 7.2209, 7.222, 7.2234, 7.223, 7.2225, 7.222, 7.2231, 7.2274, 7.2269, 7.2264, 7.2259, 7.2261, 7.225, 7.2232, 7.2228, 7.2239, 7.2234, 7.2245, 7.2254, 7.2248, 7.2245, 7.2241, 7.2237, 7.2248, 7.2258, 7.2255, 7.2251, 7.2247, 7.2243, 7.224, 7.2235, 7.223, 7.2225, 7.2237, 7.2232, 7.2228, 7.2225, 7.2207, 7.2202, 7.2235, 7.2235, 7.2229, 7.2224, 7.2234, 7.223, 7.2227, 7.2222, 7.2217, 7.2213, 7.2208, 7.2205, 7.22, 7.2211, 7.2222, 7.2233, 7.2229, 7.2227, 7.2222, 7.2231, 7.2228, 7.2255, 7.2265, 7.2264, 7.2277, 7.2274, 7.2269, 7.2278, 7.2304, 7.2298, 7.2295, 7.229, 7.2299, 7.2296, 7.2306, 7.2303, 7.2298, 7.2294, 7.2295, 7.229, 7.2317, 7.2342, 7.2338, 7.2349, 7.2345, 7.234, 7.2339, 7.2335, 7.233, 7.2327, 7.2323, 7.2332, 7.2327, 7.2337, 7.2347, 7.2343, 7.2339, 7.2335, 7.2332, 7.2327, 7.2322, 7.232, 7.2316, 7.2311, 7.2306, 7.2303, 7.2301, 7.2297, 7.2294, 7.2289, 7.2285, 7.2281, 7.2277, 7.2272, 7.2268, 7.2279, 7.2289, 7.2291, 7.2316, 7.2312, 7.2297, 7.2295, 7.229, 7.2287, 7.2282, 7.228, 7.2277, 7.2271, 7.2282, 7.2278, 7.2273, 7.2283, 7.2279, 7.2274, 7.2274, 7.2284, 7.2295, 7.2276, 7.2301, 7.2296, 7.2293, 7.2288, 7.2286, 7.2283, 7.2281, 7.2291, 7.2291, 7.2286, 7.2282, 7.2278, 7.2275, 7.2274, 7.2283, 7.2293, 7.229, 7.23, 7.2295, 7.2291, 7.2287, 7.2282, 7.2278, 7.2273, 7.2268, 7.2263, 7.2258, 7.2268, 7.2265, 7.2262, 7.2302, 7.23, 7.2312, 7.2308, 7.2303, 7.2291, 7.2286, 7.2296, 7.2311, 7.2306, 7.2315, 7.2311, 7.2308, 7.2318, 7.2328, 7.2323, 7.2318, 7.2314, 7.2311, 7.2306, 7.2302, 7.2299, 7.2294, 7.2303, 7.2312, 7.2321, 7.2319, 7.2331, 7.2342, 7.2324, 7.2321, 7.2316, 7.2311, 7.2306, 7.2302, 7.2309, 7.2305, 7.2314, 7.2309, 7.2319, 7.2328, 7.2324, 7.2334, 7.2343, 7.2339, 7.2348, 7.2343, 7.2338, 7.2333, 7.2343, 7.2354, 7.235, 7.2346, 7.2355, 7.235, 7.2345, 7.234, 7.2335, 7.233, 7.2325, 7.232, 7.2315, 7.2311, 7.2306, 7.2329, 7.2339, 7.2336, 7.2353, 7.2349, 7.2346, 7.2342, 7.2337, 7.2334, 7.234, 7.2336, 7.2332, 7.2327, 7.2322, 7.2317, 7.2312, 7.2309, 7.2304, 7.2299, 7.2313, 7.2323, 7.2319, 7.2314, 7.231, 7.2305, 7.2302, 7.2298, 7.2296, 7.2294, 7.2289, 7.2284, 7.228, 7.2275, 7.227, 7.228, 7.2278, 7.2288, 7.2286, 7.2296, 7.2294, 7.2291, 7.2288, 7.2288, 7.2273, 7.2269, 7.2264, 7.2275, 7.227, 7.2265, 7.2262, 7.227, 7.2267, 7.2264, 7.2262, 7.2258, 7.2259, 7.2259, 7.2257, 7.2254, 7.2249, 7.2259, 7.2255, 7.2269, 7.2272, 7.2285, 7.2281, 7.2282, 7.2278, 7.2273, 7.2282, 7.2293, 7.2289, 7.2284, 7.2293, 7.2276, 7.2286, 7.2282, 7.229, 7.2298, 7.2294, 7.2289, 7.2291, 7.2301, 7.2296, 7.2294, 7.2291, 7.23, 7.2309, 7.2305, 7.2315, 7.2311, 7.231, 7.2306, 7.229, 7.2285, 7.228, 7.2292, 7.2302, 7.2298, 7.2295, 7.2293, 7.2301, 7.2297, 7.2292, 7.2288, 7.2285, 7.2282, 7.2293, 7.229, 7.2285, 7.228, 7.2275, 7.227, 7.2279, 7.2274, 7.2269, 7.2264, 7.2259, 7.2269, 7.2278, 7.2288, 7.2296, 7.2291, 7.2286, 7.2281, 7.2277, 7.2273, 7.2282, 7.2265, 7.226, 7.2269, 7.2265, 7.2274, 7.2271, 7.2267, 7.2278, 7.2344, 7.2353, 7.2348, 7.2344, 7.234, 7.2345, 7.2341, 7.2336, 7.2344, 7.2339, 7.2348, 7.2344, 7.2353, 7.2348, 7.2345, 7.2353, 7.2349, 7.2353, 7.2351, 7.2348, 7.2345, 7.2341, 7.2337, 7.2336, 7.2331, 7.2326, 7.2335, 7.2331, 7.2326, 7.2334, 7.2337, 7.2345, 7.234, 7.2335, 7.2331, 7.2327, 7.2322, 7.2318, 7.2314, 7.2311, 7.2319, 7.2315, 7.2312, 7.2307, 7.2317, 7.2313, 7.2308, 7.2303, 7.2312, 7.2312, 7.2321, 7.2325, 7.2322, 7.2331, 7.2328, 7.2337, 7.2347, 7.2342, 7.2337, 7.2332, 7.2327, 7.2324, 7.2333, 7.2342, 7.2338, 7.2335, 7.2344, 7.234, 7.2338, 7.2334, 7.2331, 7.2339, 7.2335, 7.2332, 7.2341, 7.2336, 7.2331, 7.2339, 7.2337, 7.2332, 7.2329, 7.2324, 7.2319, 7.2315, 7.2299, 7.2295, 7.2291, 7.2286, 7.2281, 7.2277, 7.2261, 7.2339, 7.2335, 7.233, 7.2314, 7.2301, 7.2297, 7.2294, 7.2337, 7.2388, 7.2384, 7.238, 7.2375, 7.237, 7.2365, 7.2363, 7.2374, 7.2369, 7.2367, 7.2363, 7.2372, 7.2367, 7.2362, 7.2359, 7.2356, 7.234, 7.2336, 7.2341, 7.2349, 7.2344, 7.2339, 7.2335, 7.2332, 7.2342, 7.2339, 7.2336, 7.2346, 7.2343, 7.2353, 7.2361, 7.2358, 7.2366, 7.2362, 7.2359, 7.2355, 7.235, 7.2346, 7.2347, 7.2344, 7.2341, 7.2373, 7.2383, 7.2378, 7.2379, 7.2375, 7.237, 7.2366, 7.2361, 7.2371, 7.2367, 7.2374, 7.2361, 7.2357, 7.2352, 7.2363, 7.2372, 7.2367, 7.2363, 7.2359, 7.2356, 7.2352, 7.2361, 7.2357, 7.2365, 7.2361, 7.2357, 7.2352, 7.236, 7.2356, 7.2353, 7.2352, 7.2348, 7.2357, 7.2341, 7.2336, 7.2332, 7.2327, 7.2337, 7.2333, 7.2342, 7.2337, 7.2332, 7.233, 7.2325, 7.232, 7.2329, 7.2338, 7.2335, 7.2343, 7.2339, 7.2337, 7.2333, 7.2329, 7.2327, 7.2323, 7.2333, 7.2332, 7.2328, 7.2324, 7.2333, 7.2341, 7.2336, 7.2344, 7.234, 7.2336, 7.232, 7.2317, 7.2314, 7.2311, 7.2306, 7.2315, 7.231, 7.2318, 7.2327, 7.2335, 7.2332, 7.2328, 7.2323, 7.2319, 7.2328, 7.2324, 7.2406, 7.2416, 7.2425, 7.2434, 7.2445, 7.2454, 7.2451, 7.2447, 7.2443, 7.2452, 7.2448, 7.2444, 7.2441, 7.2438, 7.2423, 7.2419, 7.2416, 7.2403, 7.2398, 7.2406, 7.2402, 7.2436, 7.2432, 7.2427, 7.2423, 7.2421, 7.2416, 7.2424, 7.2419, 7.2417, 7.2425, 7.2421, 7.243, 7.2425, 7.2421, 7.2405, 7.239, 7.2399, 7.2408, 7.2403, 7.2398, 7.2393, 7.2388, 7.2384, 7.2392, 7.2388, 7.2396, 7.2397, 7.2394, 7.239, 7.2387, 7.2383, 7.2368, 7.2364, 7.2373, 7.2369, 7.2354, 7.2351, 7.2346, 7.2342, 7.2338, 7.2348, 7.2345, 7.2342, 7.2337, 7.2345, 7.2341, 7.2347, 7.2342, 7.2337, 7.2332, 7.2328, 7.2329, 7.2325, 7.2322, 7.2318, 7.2327, 7.2323, 7.2334, 7.2343, 7.234, 7.2351, 7.2347, 7.2332, 7.234, 7.2349, 7.2346, 7.2343, 7.2339, 7.2348, 7.2356, 7.2352, 7.2351, 7.2347, 7.2355, 7.2352, 7.2348, 7.2344, 7.234, 7.2336, 7.2332, 7.2328, 7.2323, 7.2319, 7.2316, 7.2313, 7.2309, 7.2306, 7.2302, 7.2298, 7.2294, 7.2289, 7.2313, 7.231, 7.2307, 7.2304, 7.2312, 7.2307, 7.2302, 7.231, 7.2308, 7.2304, 7.2289, 7.2287, 7.2283, 7.228, 7.2265, 7.2262, 7.2258, 7.2254, 7.2249, 7.2245, 7.2241, 7.2238, 7.2234, 7.2243, 7.2239, 7.2235, 7.2231, 7.2228, 7.2225, 7.2222, 7.2219, 7.2227, 7.2223, 7.2223, 7.2231, 7.2228, 7.2225, 7.2232, 7.224, 7.2236, 7.2232, 7.2241, 7.225, 7.2246, 7.2242, 7.224, 7.2249, 7.2246, 7.2242, 7.2239, 7.2235, 7.2231, 7.2227, 7.2223, 7.2219, 7.2204, 7.2213, 7.221, 7.2207, 7.2203, 7.22, 7.2196, 7.2191, 7.2189, 7.2197, 7.2193, 7.2189, 7.2199, 7.2196, 7.2192, 7.2188, 7.2186, 7.2195, 7.2193, 7.219, 7.2186, 7.2172, 7.2157, 7.2153, 7.2152, 7.215, 7.2146, 7.2142, 7.2139, 7.2136, 7.2132, 7.2129, 7.2125, 7.2122, 7.2118, 7.2115, 7.2114, 7.2112, 7.2099, 7.2095, 7.2093, 7.2089, 7.2085, 7.2081, 7.2107, 7.2103, 7.2111, 7.2107, 7.2104, 7.21, 7.2096, 7.2092, 7.21, 7.2095, 7.2103, 7.21, 7.2096, 7.2098, 7.2095, 7.2104, 7.2121, 7.2117, 7.2112, 7.2109, 7.2105, 7.2102, 7.211, 7.2106, 7.2102, 7.2098, 7.2107, 7.2103, 7.2099, 7.2107, 7.2104, 7.21, 7.2096, 7.2093, 7.2078, 7.2079, 7.2088, 7.2086, 7.2082, 7.209, 7.2086, 7.2071, 7.2057, 7.206, 7.2069, 7.2066, 7.2064, 7.206, 7.2056, 7.2052, 7.2048, 7.2044, 7.2043, 7.2052, 7.2048, 7.2045, 7.2041, 7.2049, 7.2047, 7.2043, 7.204, 7.2037, 7.2045, 7.2054, 7.205, 7.2046, 7.2042, 7.2039, 7.2037, 7.2033, 7.2028, 7.2035, 7.2033, 7.2028, 7.2036, 7.2044, 7.204, 7.2037, 7.2033, 7.203, 7.2026, 7.2034, 7.2029, 7.2026, 7.2023, 7.2033, 7.2031, 7.2027, 7.2035, 7.2032, 7.2028, 7.2024, 7.2032, 7.2028, 7.2024, 7.202, 7.2018, 7.2027, 7.2025, 7.2022, 7.203, 7.2026, 7.2023, 7.2031, 7.2016, 7.2011, 7.2019, 7.2015, 7.2011, 7.2007, 7.2016, 7.2023, 7.2019, 7.2015, 7.2011, 7.2008, 7.2005, 7.2003, 7.1999, 7.1996, 7.2018, 7.2025, 7.2037, 7.2058, 7.2055, 7.2062, 7.2069, 7.2067, 7.2089, 7.2086, 7.2084, 7.2082, 7.208, 7.2065, 7.2072, 7.2079, 7.2086, 7.2081, 7.2077, 7.2074, 7.2083, 7.2081, 7.2079, 7.2075, 7.2072, 7.2069, 7.2076, 7.2072, 7.208, 7.2088, 7.2095, 7.2091, 7.2087, 7.2095, 7.2102, 7.21, 7.2097, 7.2082, 7.2079, 7.2075, 7.2071, 7.2067, 7.2064, 7.2061, 7.207, 7.2055, 7.2051, 7.2036, 7.2034, 7.2031, 7.2027, 7.2038, 7.2046, 7.2042, 7.2038, 7.2035, 7.2031, 7.2028, 7.2024, 7.2031, 7.2027, 7.2024, 7.202, 7.2006, 7.2026, 7.2022, 7.2019, 7.2016, 7.2014, 7.2011, 7.2009, 7.2006, 7.2004, 7.2001, 7.1999, 7.2008, 7.2016, 7.2013, 7.2009, 7.2005, 7.2002, 7.2, 7.1998, 7.201, 7.2006, 7.2004, 7.2, 7.1997, 7.1994, 7.1991, 7.1991, 7.1988, 7.1984, 7.198, 7.1976, 7.1972, 7.198, 7.1976, 7.1974, 7.197, 7.1978, 7.1985, 7.1981, 7.1977, 7.1974, 7.1973, 7.197, 7.1966, 7.1963, 7.196, 7.1957, 7.2024, 7.202, 7.2017, 7.2025, 7.2021, 7.2029, 7.2025, 7.2022, 7.2018, 7.2004, 7.2, 7.1986, 7.1997, 7.1993, 7.1989, 7.1987, 7.1985, 7.1982, 7.1979, 7.2009, 7.2045, 7.2042, 7.204, 7.2077, 7.2073, 7.206, 7.2079, 7.2077, 7.2073, 7.2069, 7.2067, 7.207, 7.2066, 7.2066, 7.2063, 7.2071, 7.2079, 7.2075, 7.2071, 7.2079, 7.2065, 7.2067, 7.2064, 7.2072, 7.208, 7.2069, 7.2069, 7.2067, 7.2063, 7.2059, 7.2057, 7.2065, 7.2064, 7.2062, 7.2059, 7.2067, 7.2064, 7.2073, 7.2058, 7.2055, 7.2065, 7.2063, 7.2072, 7.2081, 7.209, 7.2086, 7.2095, 7.2097, 7.2106, 7.2132, 7.2128, 7.2136, 7.2133, 7.2154, 7.2151, 7.2147, 7.2155, 7.2151, 7.2147, 7.2143, 7.2129, 7.2125, 7.2134, 7.2132, 7.2128, 7.2126, 7.2112, 7.2108, 7.2094, 7.209, 7.2086, 7.2082, 7.2078, 7.2086, 7.2082, 7.2078, 7.2086, 7.2094, 7.2098, 7.2094, 7.2101, 7.2097, 7.2095, 7.2091, 7.2077, 7.2085, 7.2093, 7.21, 7.2096, 7.2093, 7.2102, 7.2098, 7.2095, 7.2093, 7.2101, 7.2097, 7.2094, 7.2102, 7.21, 7.2108, 7.2104, 7.2101, 7.211, 7.211, 7.2107, 7.2105, 7.2112, 7.2109, 7.2105, 7.2109, 7.2117, 7.2115, 7.2113, 7.211, 7.2109, 7.2106, 7.2113, 7.212, 7.2116, 7.2112, 7.2109, 7.2106, 7.2103, 7.2112, 7.2109, 7.2095, 7.2081, 7.2078, 7.2085, 7.2082, 7.2078, 7.2086, 7.2086, 7.2083, 7.2091, 7.2087, 7.2084, 7.2093, 7.2092, 7.209, 7.2098, 7.2095, 7.2091, 7.2092, 7.2089, 7.2086, 7.2106, 7.2114, 7.2122, 7.212, 7.2117, 7.2125, 7.2132, 7.2128, 7.2127, 7.2124, 7.2131, 7.2127, 7.2124, 7.2132, 7.2144, 7.2152, 7.216, 7.2169, 7.2166, 7.2162, 7.2158, 7.2155, 7.2166, 7.2174, 7.2172, 7.217, 7.2156, 7.2166, 7.2187, 7.2183, 7.2181, 7.2177, 7.2174, 7.2171, 7.218, 7.2176, 7.2173, 7.2169, 7.2165, 7.2161, 7.2158, 7.2156, 7.2154, 7.215, 7.2146, 7.2143, 7.2141, 7.2137, 7.2133, 7.2129, 7.2136, 7.2143, 7.214, 7.2136, 7.2144, 7.2143, 7.214, 7.2147, 7.2143, 7.214, 7.2137, 7.2135, 7.216, 7.2156, 7.2159, 7.2157, 7.2154, 7.2151, 7.2149, 7.2146, 7.216, 7.216, 7.2156, 7.2154, 7.215, 7.2146, 7.2142, 7.215, 7.2147, 7.2133, 7.2119, 7.2115, 7.2111, 7.2107, 7.2104, 7.2103, 7.2111, 7.2098, 7.2095, 7.2091, 7.2088, 7.2085, 7.2093, 7.2101, 7.211, 7.2107, 7.2115, 7.2122, 7.213, 7.2135, 7.2134, 7.212, 7.2119, 7.2117, 7.2115, 7.2112, 7.2109, 7.2106, 7.2114, 7.211, 7.2107, 7.2114, 7.2111, 7.2119, 7.2115, 7.2102, 7.2099, 7.2095, 7.2091, 7.2099, 7.2096, 7.2103, 7.2101, 7.2097, 7.2093, 7.2089, 7.2086, 7.2084, 7.2081, 7.2089, 7.2087, 7.21, 7.2096, 7.2097, 7.2094, 7.2091, 7.2087, 7.2095, 7.2092, 7.2088, 7.2085, 7.2082, 7.209, 7.2088, 7.2085, 7.2083, 7.2079, 7.2075, 7.2071, 7.2069, 7.2056, 7.2052, 7.2049, 7.2045, 7.2053, 7.205, 7.2046, 7.2043, 7.204, 7.2037, 7.2033, 7.2041, 7.2039, 7.2035, 7.2023, 7.202, 7.2018, 7.2015, 7.2012, 7.201, 7.2007, 7.2005, 7.2002, 7.2, 7.2007, 7.2004, 7.2, 7.1996, 7.1993, 7.1995, 7.2002, 7.2009, 7.2008, 7.2005, 7.2013, 7.201, 7.2018, 7.2014, 7.201, 7.2006, 7.2014, 7.2022, 7.2018, 7.2028, 7.2024, 7.2031, 7.2027, 7.2023, 7.2031, 7.207, 7.2077, 7.2085, 7.2081, 7.2089, 7.2086, 7.2072, 7.2079, 7.2108, 7.2115, 7.2122, 7.2131, 7.2118, 7.2114, 7.2165, 7.2183, 7.2179, 7.2175, 7.2182, 7.2178, 7.2185, 7.2181, 7.2181, 7.2198, 7.2212, 7.2219, 7.2231, 7.2228, 7.2225, 7.2264, 7.2296, 7.2304, 7.2302, 7.231, 7.2306, 7.2325, 7.2322, 7.2329, 7.2326, 7.2324, 7.2331, 7.2329, 7.2325, 7.2323, 7.2332, 7.2328, 7.2337, 7.2336, 7.2332, 7.2329, 7.2338, 7.2335, 7.2343, 7.2343, 7.234, 7.2348, 7.2345, 7.2352, 7.2349, 7.2346, 7.2342, 7.2329, 7.2325, 7.2323, 7.233, 7.2337, 7.2334, 7.2335, 7.2332, 7.2328, 7.2325, 7.2322, 7.2318, 7.2315, 7.2312, 7.2308, 7.2317, 7.2315, 7.2313, 7.2321, 7.234, 7.235, 7.2378, 7.2375, 7.2371, 7.2367, 7.2364, 7.2371, 7.2368, 7.2365, 7.2363, 7.2359, 7.2355, 7.2351, 7.2358, 7.2355, 7.2352, 7.2348, 7.2344, 7.2345, 7.2342, 7.2339, 7.2382, 7.2378, 7.2374, 7.2374, 7.2384, 7.2381, 7.2388, 7.2385, 7.2381, 7.2377, 7.2374, 7.2371, 7.2358, 7.2355, 7.2373, 7.2371, 7.2367, 7.2374, 7.237, 7.238, 7.2367, 7.2375, 7.2383, 7.2382, 7.2379, 7.2386, 7.2382, 7.239, 7.2387, 7.2384, 7.2381, 7.238, 7.2378, 7.2374, 7.2371, 7.2378, 7.2375, 7.2362, 7.2358, 7.2354, 7.2351, 7.2349, 7.2345, 7.2352, 7.2348, 7.235, 7.2348, 7.2355, 7.2364, 7.236, 7.2368, 7.2364, 7.2371, 7.2369, 7.2378, 7.2378, 7.2377, 7.2374, 7.237, 7.2366, 7.2362, 7.236, 7.2356, 7.2352, 7.2348, 7.2347, 7.2345, 7.2342, 7.2339, 7.2337, 7.2333, 7.234, 7.2348, 7.2344, 7.234, 7.2347, 7.2344, 7.2352, 7.2359, 7.2356, 7.2352, 7.236, 7.2358, 7.2359, 7.2356, 7.2353, 7.235, 7.2347, 7.2357, 7.2354, 7.2363, 7.237, 7.2378, 7.2374, 7.2384, 7.238, 7.2376, 7.2373, 7.237, 7.2378, 7.2378, 7.2365, 7.2361, 7.2358, 7.2356, 7.2364, 7.2361, 7.2358, 7.2355, 7.2352, 7.2348, 7.2347, 7.2334, 7.2331, 7.2338, 7.2334, 7.2332, 7.2329, 7.2326, 7.2333, 7.2341, 7.2338, 7.2335, 7.2322, 7.2319, 7.2325, 7.2324, 7.2312, 7.2308, 7.2295, 7.2296, 7.2293, 7.229, 7.2287, 7.2298, 7.2322, 7.232, 7.2319, 7.2328, 7.2325, 7.2323, 7.2329, 7.2327, 7.2334, 7.2331, 7.2338, 7.2345, 7.2341, 7.2338, 7.2326, 7.2323, 7.233, 7.2326, 7.2333, 7.234, 7.2338, 7.2335, 7.2343, 7.2339, 7.2346, 7.2343, 7.2351, 7.2349, 7.2346, 7.2344, 7.2341, 7.2338, 7.2344, 7.2341, 7.2339, 7.2326, 7.2348, 7.2346, 7.2342, 7.2338, 7.2335, 7.2331, 7.233, 7.232, 7.2327, 7.2323, 7.2312, 7.231, 7.2307, 7.2314, 7.2311, 7.2307, 7.2303, 7.2299, 7.2296, 7.2292, 7.2291, 7.2297, 7.2293, 7.2291, 7.2303, 7.23, 7.23, 7.2304, 7.231, 7.2318, 7.2314, 7.231, 7.2316, 7.2313, 7.2311, 7.231, 7.231, 7.2309, 7.2316, 7.2323, 7.2319, 7.2316, 7.2323, 7.232, 7.2318, 7.2325, 7.2322, 7.2322, 7.2328, 7.2325, 7.2322, 7.2318, 7.2315, 7.2322, 7.2319, 7.2316, 7.2314, 7.2311, 7.2317, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.2299, 7.2296, 7.2293, 7.23, 7.2307, 7.2316, 7.2313, 7.2314, 7.2315, 7.2311, 7.2318, 7.2315, 7.2326, 7.2323, 7.2332, 7.2349, 7.2346, 7.2354, 7.2352, 7.235, 7.2348, 7.2345, 7.2344, 7.2331, 7.2328, 7.2334, 7.233, 7.2369, 7.2366, 7.2354, 7.2351, 7.2348, 7.2346, 7.2344, 7.2363, 7.2359, 7.2357, 7.2364, 7.2361, 7.2358, 7.2356, 7.2353, 7.235, 7.2346, 7.2401, 7.2398, 7.2395, 7.2394, 7.239, 7.2422, 7.243, 7.2426, 7.2423, 7.242, 7.2416, 7.2413, 7.2411, 7.2409, 7.2406, 7.2404, 7.2401, 7.2398, 7.2396, 7.2392, 7.239, 7.2396, 7.2395, 7.2394, 7.239, 7.2387, 7.2384, 7.2381, 7.2378, 7.2385, 7.2384, 7.2381, 7.2378, 7.2375, 7.2373, 7.2371, 7.2378, 7.2376, 7.2383, 7.237, 7.2387, 7.2383, 7.238, 7.2378, 7.2376, 7.2373, 7.2371, 7.2368, 7.2366, 7.2363, 7.236, 7.2357, 7.2353, 7.2349, 7.2348, 7.2355, 7.2352, 7.2359, 7.2366, 7.2366, 7.2373, 7.237, 7.237, 7.2366, 7.2373, 7.237, 7.2367, 7.2365, 7.2373, 7.2372, 7.237, 7.2367, 7.2365, 7.2361, 7.2378, 7.2375, 7.2373, 7.2379, 7.2377, 7.2376, 7.2383, 7.238, 7.2387, 7.2384, 7.2382, 7.2379, 7.2377, 7.2374, 7.2371, 7.2369, 7.2365, 7.2362, 7.2359, 7.2356, 7.2354, 7.235, 7.2354, 7.2351, 7.2347, 7.2343, 7.234, 7.2338, 7.2335, 7.2336, 7.2343, 7.2349, 7.2351, 7.2348, 7.2378, 7.2376, 7.2382, 7.2382, 7.2379, 7.2376, 7.2374, 7.238, 7.2388, 7.2389, 7.2386, 7.2383, 7.2389, 7.2387, 7.2394, 7.239, 7.2387, 7.2384, 7.238, 7.2386, 7.2393, 7.2389, 7.2385, 7.2382, 7.2389, 7.2386, 7.2384, 7.2391, 7.2389, 7.2387, 7.2386, 7.2393, 7.24, 7.2397, 7.2395, 7.2393, 7.2401, 7.2398, 7.2405, 7.2413, 7.2419, 7.2416, 7.2412, 7.2419, 7.2427, 7.2434, 7.2431, 7.2428, 7.2426, 7.2423, 7.242, 7.2417, 7.2414, 7.241, 7.2418, 7.2416, 7.2413, 7.241, 7.2407, 7.2404, 7.2402, 7.2399, 7.2396, 7.2403, 7.241, 7.2407, 7.2404, 7.2392, 7.238, 7.2377, 7.2374, 7.238, 7.2377, 7.2384, 7.2381, 7.2378, 7.2366, 7.2363, 7.236, 7.2359, 7.2366, 7.2364, 7.2361, 7.2358, 7.2355, 7.2365, 7.2371, 7.2359, 7.2357, 7.2355, 7.2353, 7.235, 7.2347, 7.2348, 7.2345, 7.2343, 7.234, 7.2337, 7.2335, 7.2331, 7.2338, 7.2336, 7.2333, 7.233, 7.2318, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.2299, 7.2297, 7.2304, 7.23, 7.2309, 7.2325, 7.2322, 7.2325, 7.2322, 7.2319, 7.2327, 7.2324, 7.235, 7.2359, 7.2348, 7.2345, 7.2342, 7.2339, 7.2336, 7.2334, 7.2341, 7.2338, 7.2326, 7.2323, 7.232, 7.2317, 7.2314, 7.2313, 7.2309, 7.2315, 7.2311, 7.2317, 7.2314, 7.2312, 7.2319, 7.2316, 7.2313, 7.2309, 7.2307, 7.2303, 7.231, 7.2306, 7.2303, 7.23, 7.2288, 7.2285, 7.2293, 7.2299, 7.2296, 7.2294, 7.2301, 7.2306, 7.2303, 7.2324, 7.2312, 7.2309, 7.2307, 7.2304, 7.2327, 7.2315, 7.2312, 7.2308, 7.2305, 7.2302, 7.2309, 7.2306, 7.2313, 7.2311, 7.2347, 7.2346, 7.2343, 7.2344, 7.2355, 7.2363, 7.2364, 7.2362, 7.238, 7.2377, 7.2375, 7.2373, 7.2361, 7.2358, 7.2355, 7.2361, 7.2359, 7.2357, 7.2355, 7.2359, 7.2356, 7.2363, 7.236, 7.2357, 7.2354, 7.235, 7.2346, 7.2344, 7.2341, 7.2338, 7.2335, 7.2333, 7.233, 7.233, 7.2328, 7.2325, 7.2322, 7.2319, 7.2316, 7.2313, 7.2319, 7.2325, 7.2322, 7.2319, 7.2307, 7.2304, 7.2311, 7.2308, 7.2306, 7.2313, 7.231, 7.2308, 7.2305, 7.2302, 7.2308, 7.2304, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2285, 7.2291, 7.2288, 7.2286, 7.2284, 7.2281, 7.2269, 7.2268, 7.2265, 7.2263, 7.2261, 7.2258, 7.2265, 7.2253, 7.226, 7.2258, 7.2257, 7.2254, 7.2243, 7.224, 7.2238, 7.2236, 7.2233, 7.2231, 7.2229, 7.2226, 7.2235, 7.2232, 7.2229, 7.2226, 7.2224, 7.2221, 7.2219, 7.2226, 7.2223, 7.222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2206, 7.2213, 7.221, 7.2207, 7.2213, 7.221, 7.2207, 7.2224, 7.2221, 7.2227, 7.2234, 7.2231, 7.2228, 7.2231, 7.2219, 7.2216, 7.2222, 7.2211, 7.2217, 7.2215, 7.2212, 7.2221, 7.2218, 7.2216, 7.2215, 7.2212, 7.221, 7.2207, 7.2205, 7.2203, 7.22, 7.2206, 7.2203, 7.2201, 7.2198, 7.2196, 7.2203, 7.22, 7.2198, 7.2195, 7.2193, 7.22, 7.2206, 7.2213, 7.2211, 7.2209, 7.2215, 7.2212, 7.2209, 7.2216, 7.2213, 7.2201, 7.2199, 7.2197, 7.2204, 7.2201, 7.2198, 7.2195, 7.2192, 7.2198, 7.2195, 7.2192, 7.2189, 7.2188, 7.2195, 7.2195, 7.2195, 7.2192, 7.219, 7.2187, 7.2184, 7.219, 7.2187, 7.2184, 7.2189, 7.2186, 7.2193, 7.219, 7.2195, 7.2193, 7.219, 7.2196, 7.2193, 7.2191, 7.2188, 7.2186, 7.2191, 7.2188, 7.2194, 7.2191, 7.2192, 7.2188, 7.2185, 7.2192, 7.2189, 7.2186, 7.2183, 7.218, 7.2177, 7.2174, 7.2171, 7.216, 7.2158, 7.2155, 7.2152, 7.2149, 7.2146, 7.2143, 7.2141, 7.2139, 7.2137, 7.2154, 7.2153, 7.215, 7.2147, 7.2144, 7.2141, 7.2147, 7.2163, 7.2161, 7.2159, 7.2157, 7.2156, 7.2162, 7.2159, 7.2156, 7.2153, 7.216, 7.2158, 7.2148, 7.2137, 7.2135, 7.2135, 7.2152, 7.2159, 7.2166, 7.2173, 7.218, 7.2178, 7.2176, 7.2166, 7.2163, 7.2161, 7.2167, 7.2164, 7.2161, 7.2158, 7.2157, 7.2154, 7.2161, 7.2159, 7.2165, 7.2164, 7.2166, 7.2172, 7.217, 7.2168, 7.2165, 7.2162, 7.2159, 7.2165, 7.2171, 7.2168, 7.222, 7.2218, 7.2217, 7.2216, 7.2213, 7.2229, 7.2226, 7.2223, 7.222, 7.2217, 7.2223, 7.222, 7.2217, 7.2214, 7.2222, 7.2219, 7.2217, 7.2214, 7.2211, 7.2211, 7.221, 7.2207, 7.2197, 7.2188, 7.2178, 7.2169, 7.2166, 7.2157, 7.2177, 7.2174, 7.218, 7.2169, 7.2175, 7.2173, 7.2183, 7.218, 7.2177, 7.2183, 7.2181, 7.2178, 7.2184, 7.2181, 7.2178, 7.2177, 7.2174, 7.2184, 7.2181, 7.2179, 7.2177, 7.2183, 7.218, 7.2178, 7.2175, 7.2164, 7.2161, 7.2167, 7.2164, 7.2171, 7.2168, 7.2165, 7.2163, 7.217, 7.2168, 7.2166, 7.2164, 7.2162, 7.2167, 7.2165, 7.2162, 7.2159, 7.2156, 7.2154, 7.2151, 7.2157, 7.2154, 7.2151, 7.2148, 7.2137, 7.2139, 7.2138, 7.2151, 7.2161, 7.2177, 7.2183, 7.2197, 7.2212, 7.2218, 7.2224, 7.231, 7.2307, 7.2304, 7.2304, 7.2301, 7.2299, 7.2296, 7.2293, 7.229, 7.2287, 7.2284, 7.2282, 7.2279, 7.2276, 7.2273, 7.227, 7.2268, 7.2274, 7.2271, 7.2277, 7.2279, 7.2277, 7.2274, 7.228, 7.2277, 7.2274, 7.228, 7.2278, 7.2285, 7.2282, 7.228, 7.2278, 7.2275, 7.2272, 7.2278, 7.2267, 7.2264, 7.2293, 7.229, 7.2288, 7.2286, 7.2292, 7.229, 7.2296, 7.2293, 7.2292, 7.229, 7.2296, 7.2293, 7.229, 7.2287, 7.2284, 7.229, 7.2288, 7.2285, 7.2282, 7.2279, 7.2276, 7.2273, 7.2271, 7.2268, 7.2265, 7.2279, 7.2298, 7.2295, 7.2292, 7.2289, 7.2288, 7.2285, 7.2283, 7.2289, 7.2295, 7.2292, 7.229, 7.2287, 7.2276, 7.2282, 7.2288, 7.2285, 7.2282, 7.228, 7.2287, 7.2284, 7.2282, 7.2279, 7.2287, 7.2285, 7.2292, 7.2289, 7.2287, 7.2284, 7.2282, 7.2279, 7.2277, 7.2286, 7.2275, 7.2282, 7.2288, 7.2294, 7.2291, 7.2297, 7.2294, 7.2291, 7.2289, 7.2287, 7.2284, 7.2281, 7.2287, 7.2284, 7.2282, 7.2282, 7.2279, 7.2276, 7.2282, 7.2279, 7.2285, 7.2282, 7.228, 7.2277, 7.2274, 7.2281, 7.2278, 7.2275, 7.2272, 7.227, 7.2271, 7.2269, 7.2266, 7.2264, 7.2262, 7.2268, 7.2265, 7.2265, 7.2262, 7.2259, 7.2256, 7.2261, 7.2259, 7.2257, 7.2254, 7.2252, 7.2249, 7.2247, 7.2244, 7.2241, 7.223, 7.2236, 7.2233, 7.223, 7.2231, 7.2237, 7.2244, 7.2241, 7.2247, 7.2253, 7.2251, 7.2258, 7.2257, 7.2254, 7.2272, 7.2279, 7.2277, 7.2283, 7.228, 7.2277, 7.228, 7.2277, 7.2274, 7.228, 7.2286, 7.2284, 7.2281, 7.2278, 7.2275, 7.2273, 7.2263, 7.2269, 7.2267, 7.2272, 7.2269, 7.2266, 7.2263, 7.2252, 7.2259, 7.2257, 7.2254, 7.226, 7.2265, 7.2262, 7.2269, 7.2266, 7.2263, 7.2261, 7.2258, 7.2255, 7.2252, 7.2249, 7.2255, 7.2261, 7.2267, 7.2284, 7.2274, 7.229, 7.2296, 7.2302, 7.23, 7.2306, 7.2303, 7.2301, 7.2307, 7.2304, 7.231, 7.232, 7.2327, 7.2342, 7.234, 7.2338, 7.2335, 7.235, 7.2348, 7.2355, 7.2362, 7.2368, 7.2365, 7.2364, 7.2363, 7.236, 7.2357, 7.236, 7.2357, 7.2354, 7.2351, 7.2348, 7.2347, 7.2344, 7.2351, 7.2357, 7.2346, 7.2352, 7.2349, 7.2355, 7.2353, 7.2358, 7.2356, 7.2362, 7.2359, 7.2356, 7.2353, 7.2359, 7.2365, 7.2363, 7.2369, 7.2366, 7.2363, 7.236, 7.2357, 7.2354, 7.2351, 7.2349, 7.2374, 7.2363, 7.2378, 7.2378, 7.2375, 7.2364, 7.2361, 7.2358, 7.2347, 7.2347, 7.2344, 7.2363, 7.2363, 7.236, 7.2358, 7.2355, 7.2353, 7.2352, 7.235, 7.2355, 7.2361, 7.2358, 7.2355, 7.2353, 7.2359, 7.2357, 7.2355, 7.2361, 7.2359, 7.2366, 7.2364, 7.237, 7.237, 7.2367, 7.2373, 7.2371, 7.2369, 7.2366, 7.2363, 7.2361, 7.2359, 7.2357, 7.2355, 7.2352, 7.2352, 7.2349, 7.2346, 7.2344, 7.2341, 7.2339, 7.2336, 7.2333, 7.2339, 7.2337, 7.2344, 7.2342, 7.2331, 7.2328, 7.2333, 7.233, 7.2327, 7.2332, 7.2329, 7.2335, 7.2332, 7.233, 7.2319, 7.2326, 7.2323, 7.2321, 7.2327, 7.2325, 7.2322, 7.2319, 7.2316, 7.2315, 7.2312, 7.231, 7.2308, 7.2305, 7.2302, 7.2299, 7.2305, 7.2328, 7.2325, 7.2363, 7.236, 7.2358, 7.2364, 7.2361, 7.2358, 7.2355, 7.2353, 7.2355, 7.2361, 7.2358, 7.2357, 7.2355, 7.2361, 7.236, 7.2357, 7.2354, 7.236, 7.2366, 7.2372, 7.2369, 7.2368, 7.2365, 7.2369, 7.2375, 7.2372, 7.2369, 7.2372, 7.2369, 7.2374, 7.238, 7.2385, 7.2391, 7.2397, 7.2395, 7.2401, 7.2408, 7.2413, 7.2411, 7.2408, 7.2405, 7.2402, 7.24, 7.2405, 7.2403, 7.2401, 7.2399, 7.2404, 7.2405, 7.2404, 7.2409, 7.2414, 7.2411, 7.2409, 7.2406, 7.2411, 7.241, 7.2408, 7.2405, 7.2395, 7.2392, 7.2397, 7.2394, 7.2392, 7.2398, 7.2395, 7.2401, 7.2398, 7.2395, 7.2393, 7.239, 7.2395, 7.2393, 7.2391, 7.2397, 7.2395, 7.2392, 7.2389, 7.2379, 7.2376, 7.2373, 7.2379, 7.2376, 7.2373, 7.2371, 7.2368, 7.2367, 7.2364, 7.237, 7.2367, 7.2364, 7.2371, 7.2368, 7.2365, 7.2362, 7.2359, 7.2364, 7.2363, 7.2368, 7.2365, 7.2364, 7.2362, 7.2359, 7.2356, 7.2362, 7.2359, 7.2356, 7.2353, 7.2351, 7.2351, 7.2358, 7.2363, 7.2361, 7.2359, 7.2358, 7.2356, 7.2369, 7.2375, 7.2381, 7.239, 7.239, 7.2404, 7.2401, 7.2424, 7.2421, 7.2418, 7.2423, 7.2421, 7.2421, 7.2427, 7.2424, 7.2438, 7.2438, 7.2438, 7.244, 7.2446, 7.2443, 7.2448, 7.2446, 7.2451, 7.2448, 7.2446, 7.2451, 7.2454, 7.2451, 7.2457, 7.2465, 7.2462, 7.2459, 7.2457, 7.2462, 7.2476, 7.2481, 7.2478, 7.2475, 7.2473, 7.2478, 7.2484, 7.2481, 7.2487, 7.2485, 7.2485, 7.2498, 7.2496, 7.2493, 7.2491, 7.2488, 7.2485, 7.2485, 7.2482, 7.2488, 7.2501, 7.2499, 7.2496, 7.2501, 7.2506, 7.2513, 7.251, 7.2508, 7.2522, 7.252, 7.2518, 7.2515, 7.2516, 7.252, 7.2517, 7.2514, 7.2512, 7.2503, 7.25, 7.2498, 7.2512, 7.2517, 7.2515, 7.2521, 7.2526, 7.2532, 7.253, 7.252, 7.2518, 7.2524, 7.2521, 7.2518, 7.2516, 7.2513, 7.2503, 7.2509, 7.2506, 7.2504, 7.2502, 7.2492, 7.2491, 7.249, 7.2498, 7.2495, 7.2508, 7.2505, 7.2511, 7.2516, 7.2506, 7.2504, 7.2502, 7.2499, 7.2504, 7.2518, 7.2516, 7.2522, 7.2543, 7.2541, 7.2539, 7.2553, 7.2543, 7.2541, 7.254, 7.2537, 7.2534, 7.2535, 7.2541, 7.2539, 7.2536, 7.2541, 7.2547, 7.2553, 7.2558, 7.2564, 7.2564, 7.2562, 7.2559, 7.2565, 7.2563, 7.2568, 7.2565, 7.2562, 7.2559, 7.2557, 7.2554, 7.256, 7.2565, 7.2563, 7.256, 7.2557, 7.2563, 7.2592, 7.259, 7.2588, 7.2593, 7.2604, 7.2602, 7.2599, 7.2598, 7.2604, 7.2602, 7.2608, 7.2606, 7.2612, 7.261, 7.2623, 7.2637, 7.2635, 7.2641, 7.2639, 7.2645, 7.265, 7.2656, 7.2653, 7.2643, 7.2648, 7.2645, 7.2659, 7.2656, 7.267, 7.2676, 7.2678, 7.2675, 7.2674, 7.2671, 7.2668, 7.2665, 7.267, 7.2667, 7.2672, 7.2708, 7.2713, 7.2719, 7.2725, 7.2723, 7.2729, 7.2728, 7.2725, 7.2723, 7.272, 7.2718, 7.2715, 7.2713, 7.2711, 7.2716, 7.2721, 7.2719, 7.2717, 7.2715, 7.2712, 7.2717, 7.2715, 7.2712, 7.2709, 7.2714, 7.2711, 7.2724, 7.2722, 7.2721, 7.2727, 7.2724, 7.2721, 7.2718, 7.2716, 7.2721, 7.2718, 7.2724, 7.2729, 7.2726, 7.2723, 7.2721, 7.2718, 7.2724, 7.2721, 7.2718, 7.2724, 7.2722, 7.272, 7.2717, 7.2707, 7.2712, 7.2702, 7.27, 7.2698, 7.2719, 7.2725, 7.2723, 7.2721, 7.2727, 7.2733, 7.2731, 7.2736, 7.2741, 7.2746, 7.2744, 7.2749, 7.2747, 7.2752, 7.2757, 7.2754, 7.2759, 7.2764, 7.2761, 7.2759, 7.2756, 7.2754, 7.2753, 7.2758, 7.2763, 7.2785, 7.2782, 7.2796, 7.2794, 7.2796, 7.2794, 7.2791, 7.2794, 7.2791, 7.2781, 7.2778, 7.2776, 7.2773, 7.2771, 7.2768, 7.2796, 7.2794, 7.2792, 7.2789, 7.2787, 7.2792, 7.2798, 7.2803, 7.2808, 7.2805, 7.281, 7.2815, 7.2821, 7.2834, 7.2831, 7.2828, 7.2825, 7.2822, 7.2827, 7.2833, 7.2839, 7.2829, 7.2819, 7.2817, 7.2807, 7.2805, 7.281, 7.2816, 7.2813, 7.2828, 7.2834, 7.2839, 7.2836, 7.2833, 7.2841, 7.2839, 7.2836, 7.2834, 7.2832, 7.283, 7.2827, 7.2832, 7.283, 7.2827, 7.2824, 7.2821, 7.2826, 7.2825, 7.283, 7.2827, 7.2825, 7.2834, 7.2832, 7.283, 7.2828, 7.2831, 7.2829, 7.2835, 7.284, 7.2837, 7.2835, 7.2833, 7.2838, 7.2828, 7.2826, 7.2824, 7.283, 7.2828, 7.2826, 7.2832, 7.2833, 7.283, 7.2861, 7.2866, 7.2863, 7.2869, 7.2882, 7.2887, 7.2884, 7.2881, 7.2878, 7.2876, 7.2874, 7.2871, 7.287, 7.2875, 7.2872, 7.2869, 7.2874, 7.2872, 7.287, 7.2868, 7.288, 7.2878, 7.2875, 7.2889, 7.2886, 7.2884, 7.2889, 7.2886, 7.2883, 7.288, 7.2878, 7.2875, 7.2873, 7.2883], '192.168.122.114': [29.47, 17.7708, 13.6831, 11.8059, 10.5985, 10.7358, 10.932, 10.2531, 9.7402, 9.2949, 8.4851, 8.6919, 8.5187, 8.3009, 8.1427, 7.6782, 7.5402, 7.4089, 7.3056, 7.751, 7.6802, 7.5986, 7.5263, 7.5041, 7.4689, 7.6222, 7.7375, 7.6926, 7.625, 7.5728, 7.5191, 7.6189, 7.5672, 7.5136, 7.4598, 7.5742, 7.6744, 7.6207, 7.7034, 7.6676, 7.7249, 7.6676, 7.7555, 7.7133, 7.6827, 7.6439, 7.5963, 7.579, 7.4373, 7.3943, 7.3557, 7.4172, 7.3863, 7.3481, 7.3107, 7.2844, 7.2852, 7.254, 7.3159, 7.302, 7.2842, 7.3487, 7.3249, 7.3015, 7.2757, 7.1807, 7.1635, 7.1357, 7.1221, 7.109, 7.0845, 7.0828, 7.073, 7.0526, 7.0332, 7.0163, 7.004, 6.9843, 7.0242, 7.0182, 7.0046, 6.9885, 7.0331, 7.0137, 7.0083, 7.0135, 7.001, 6.986, 6.9735, 6.9816, 6.9754, 6.9566, 6.9388, 6.9274, 6.9202, 6.9035, 6.8865, 6.8768, 6.9158, 6.9121, 6.8988, 6.8846, 6.9219, 6.957, 6.9504, 6.9339, 6.9694, 6.9544, 6.9435, 6.9281, 6.9628, 6.9507, 6.9361, 6.9695, 6.9556, 6.9417, 6.9745, 6.9652, 6.9517, 6.9394, 6.9702, 7.0033, 6.9896, 7.0276, 7.0147, 7.0017, 6.9917, 6.9846, 6.9382, 6.9252, 6.9186, 6.9065, 6.9363, 6.9259, 6.8784, 6.8842, 6.8807, 6.8714, 6.8693, 6.8596, 6.8541, 6.844, 6.8339, 6.8308, 6.8235, 6.7832, 6.7734, 6.7719, 6.7647, 6.7562, 6.7468, 6.7751, 6.8014, 6.7917, 6.7826, 6.8099, 6.8002, 6.7957, 6.7868, 6.7519, 6.7463, 6.7728, 6.7724, 6.7643, 6.759, 6.7582, 6.7505, 6.7752, 6.7702, 6.7942, 6.7902, 6.7855, 6.7865, 6.8372, 6.8306, 6.8239, 6.8477, 6.869, 6.869, 6.8675, 6.8661, 6.857, 6.8502, 6.8415, 6.8612, 6.8538, 6.8769, 6.8732, 6.8928, 6.9118, 6.9039, 6.8964, 6.8888, 6.8813, 6.8728, 6.8656, 6.8586, 6.8518, 6.8462, 6.8393, 6.8593, 6.8515, 6.8473, 6.8423, 6.8356, 6.9086, 6.9266, 6.9509, 7.0011, 6.9715, 6.9409, 6.9352, 6.9289, 6.9472, 6.9449, 6.9387, 7.0075, 7.0024, 6.9947, 7.0588, 7.1219, 7.1169, 7.1098, 7.1027, 7.0964, 7.1132, 7.1056, 7.0976, 7.0905, 7.083, 7.076, 7.0729, 7.0679, 7.0841, 7.0565, 7.0503, 7.1084, 7.1072, 7.1001, 7.1252, 7.121, 7.0983, 7.1125, 7.1263, 7.141, 7.1349, 7.1478, 7.1617, 7.1758, 7.1688, 7.1826, 7.1979, 7.2122, 7.2534, 7.2671, 7.2796, 7.2725, 7.2648, 7.2575, 7.252, 7.2451, 7.24, 7.2343, 7.2272, 7.2228, 7.2197, 7.2464, 7.2441, 7.2383, 7.2344, 7.2299, 7.2245, 7.2176, 7.2127, 7.2059, 7.2188, 7.2159, 7.2291, 7.2405, 7.2337, 7.2267, 7.22, 7.2142, 7.209, 7.2073, 7.2203, 7.2134, 7.2072, 7.2029, 7.1965, 7.1901, 7.2079, 7.2025, 7.1965, 7.1904, 7.1854, 7.1814, 7.193, 7.1882, 7.186, 7.1811, 7.1791, 7.1737, 7.1691, 7.1643, 7.1593, 7.1607, 7.1548, 7.1487, 7.1476, 7.1422, 7.1384, 7.1345, 7.1381, 7.1323, 7.1296, 7.126, 7.1377, 7.1341, 7.1315, 7.1282, 7.1241, 7.1355, 7.1301, 7.1253, 7.1216, 7.1176, 7.1126, 7.1079, 7.1203, 7.1149, 7.127, 7.1252, 7.1224, 7.117, 7.1136, 7.1084, 7.1039, 7.0988, 7.0953, 7.0912, 7.1018, 7.0967, 7.1066, 7.1013, 7.0973, 7.1076, 7.1037, 7.1012, 7.0967, 7.1079, 7.1056, 7.1029, 7.0994, 7.1101, 7.1055, 7.101, 7.1106, 7.106, 7.101, 7.0965, 7.0933, 7.09, 7.0852, 7.1027, 7.0995, 7.0953, 7.0924, 7.1016, 7.1111, 7.1076, 7.104, 7.0992, 7.0944, 7.0903, 7.1003, 7.0957, 7.1055, 7.1155, 7.1128, 7.1081, 7.1171, 7.1261, 7.1213, 7.1166, 7.1122, 7.1095, 7.1065, 7.1025, 7.0987, 7.0938, 7.0895, 7.0858, 7.0831, 7.0801, 7.0914, 7.0879, 7.0984, 7.1073, 7.1045, 7.1151, 7.1109, 7.1077, 7.1036, 7.1006, 7.109, 7.0935, 7.0892, 7.0909, 7.0879, 7.0841, 7.0812, 7.09, 7.0858, 7.0944, 7.0912, 7.1, 7.0978, 7.0952, 7.1039, 7.1126, 7.1083, 7.1176, 7.1265, 7.1226, 7.1313, 7.1269, 7.1252, 7.124, 7.1207, 7.1167, 7.1128, 7.1097, 7.1185, 7.1268, 7.1249, 7.1226, 7.1317, 7.1403, 7.144, 7.1413, 7.1373, 7.1577, 7.1704, 7.1665, 7.1658, 7.1638, 7.1602, 7.1691, 7.1658, 7.1663, 7.1625, 7.159, 7.1674, 7.1633, 7.1591, 7.1563, 7.1534, 7.1496, 7.1475, 7.144, 7.1532, 7.1493, 7.1454, 7.1317, 7.1291, 7.1376, 7.1342, 7.1307, 7.1275, 7.1366, 7.1437, 7.1422, 7.1389, 7.1359, 7.1647, 7.1608, 7.1572, 7.1539, 7.1503, 7.148, 7.1462, 7.1444, 7.1407, 7.1375, 7.1336, 7.1414, 7.1386, 7.136, 7.1437, 7.1402, 7.1367, 7.1443, 7.1411, 7.1382, 7.1462, 7.1446, 7.1418, 7.151, 7.1484, 7.1454, 7.1344, 7.1317, 7.1329, 7.1311, 7.1187, 7.1065, 7.1035, 7.1029, 7.0907, 7.0884, 7.0857, 7.083, 7.0813, 7.0886, 7.0859, 7.083, 7.0809, 7.0878, 7.0952, 7.0927, 7.1002, 7.0977, 7.0941, 7.0912, 7.0879, 7.0851, 7.0821, 7.0796, 7.0869, 7.0844, 7.0811, 7.0882, 7.0857, 7.0826, 7.0799, 7.0773, 7.0749, 7.0718, 7.0885, 7.0859, 7.0832, 7.0805, 7.0803, 7.078, 7.076, 7.0732, 7.1019, 7.0999, 7.0966, 7.1006, 7.0995, 7.0972, 7.094, 7.1002, 7.0972, 7.0949, 7.0925, 7.1087, 7.1064, 7.1126, 7.1094, 7.1133, 7.1111, 7.1082, 7.105, 7.1137, 7.1104, 7.1101, 7.1073, 7.1044, 7.1043, 7.1026, 7.1033, 7.1005, 7.0973, 7.0952, 7.1062, 7.1032, 7.1035, 7.1004, 7.1069, 7.1243, 7.1222, 7.1192, 7.1164, 7.1144, 7.1215, 7.1184, 7.1167, 7.1135, 7.1288, 7.1267, 7.1329, 7.1306, 7.128, 7.1256, 7.1232, 7.1211, 7.1278, 7.1344, 7.1321, 7.1289, 7.1262, 7.1263, 7.125, 7.1224, 7.1293, 7.1268, 7.1245, 7.1313, 7.1318, 7.129, 7.1329, 7.1303, 7.1282, 7.1178, 7.1246, 7.122, 7.1234, 7.1225, 7.1292, 7.1265, 7.1261, 7.1429, 7.1405, 7.1378, 7.1431, 7.1412, 7.146, 7.1431, 7.1596, 7.1692, 7.1789, 7.1783, 7.1841, 7.1818, 7.1879, 7.1935, 7.1909, 7.1889, 7.1945, 7.1919, 7.1892, 7.1863, 7.1957, 7.193, 7.1902, 7.1963, 7.202, 7.1991, 7.1965, 7.2022, 7.2007, 7.2062, 7.2068, 7.2047, 7.2025, 7.1998, 7.2055, 7.2028, 7.2076, 7.2056, 7.2027, 7.1998, 7.199, 7.2045, 7.21, 7.2082, 7.2059, 7.204, 7.2012, 7.1983, 7.1961, 7.1932, 7.1978, 7.1961, 7.1961, 7.1949, 7.1922, 7.19, 7.1877, 7.1929, 7.1904, 7.1875, 7.1928, 7.19, 7.192, 7.1899, 7.1881, 7.1867, 7.2127, 7.2099, 7.2082, 7.2062, 7.2041, 7.2024, 7.2008, 7.1987, 7.1962, 7.194, 7.1991, 7.1967, 7.2018, 7.2066, 7.2056, 7.2032, 7.2007, 7.1993, 7.1969, 7.1956, 7.1931, 7.1987, 7.2033, 7.2086, 7.2059, 7.2038, 7.2011, 7.2055, 7.2054, 7.2036, 7.2085, 7.2065, 7.2208, 7.2185, 7.2238, 7.2221, 7.2208, 7.2338, 7.2248, 7.2229, 7.2209, 7.226, 7.2235, 7.2447, 7.2495, 7.2478, 7.2453, 7.2435, 7.2416, 7.2398, 7.2377, 7.2356, 7.2411, 7.2322, 7.2369, 7.235, 7.2396, 7.2518, 7.2561, 7.2546, 7.2522, 7.2511, 7.2489, 7.2473, 7.2456, 7.2436, 7.2431, 7.2411, 7.2399, 7.2375, 7.2422, 7.2398, 7.2451, 7.2447, 7.2497, 7.2493, 7.247, 7.2382, 7.2426, 7.2399, 7.2375, 7.2351, 7.2325, 7.2307, 7.2282, 7.2264, 7.2317, 7.2295, 7.2338, 7.233, 7.2383, 7.236, 7.2401, 7.2378, 7.2353, 7.2338, 7.2314, 7.2304, 7.2281, 7.2359, 7.2356, 7.2337, 7.2316, 7.2366, 7.2282, 7.2266, 7.2254, 7.223, 7.2216, 7.2267, 7.2243, 7.2287, 7.2209, 7.2201, 7.2184, 7.2229, 7.2222, 7.2276, 7.2321, 7.231, 7.2345, 7.2324, 7.2302, 7.2289, 7.2277, 7.2268, 7.2249, 7.2227, 7.2209, 7.2186, 7.2239, 7.2229, 7.2271, 7.2317, 7.2297, 7.2276, 7.2319, 7.23, 7.2277, 7.2355, 7.2334, 7.2317, 7.2294, 7.2337, 7.2314, 7.2294, 7.2273, 7.2255, 7.2176, 7.2153, 7.2193, 7.2173, 7.2152, 7.2129, 7.2108, 7.209, 7.2136, 7.218, 7.2235, 7.2214, 7.2209, 7.225, 7.2235, 7.2215, 7.2196, 7.2179, 7.2161, 7.2174, 7.2155, 7.2142, 7.2122, 7.2108, 7.204, 7.2026, 7.2172, 7.2214, 7.2199, 7.2123, 7.2174, 7.2154, 7.2144, 7.2185, 7.2172, 7.219, 7.2171, 7.215, 7.214, 7.2121, 7.2113, 7.2094, 7.2077, 7.2057, 7.2035, 7.2021, 7.2006, 7.2048, 7.2089, 7.2067, 7.2047, 7.2028, 7.2015, 7.1995, 7.1974, 7.1957, 7.194, 7.1983, 7.1961, 7.1939, 7.1923, 7.1963, 7.2002, 7.2046, 7.2033, 7.2141, 7.2125, 7.2117, 7.2095, 7.2078, 7.2062, 7.2048, 7.2028, 7.2007, 7.2044, 7.2117, 7.2155, 7.2141, 7.218, 7.2159, 7.2199, 7.2183, 7.2222, 7.2205, 7.2185, 7.2224, 7.2204, 7.2194, 7.2235, 7.2273, 7.2258, 7.2297, 7.2278, 7.2257, 7.224, 7.2225, 7.2264, 7.2249, 7.2229, 7.221, 7.2189, 7.2171, 7.2153, 7.2187, 7.2167, 7.2148, 7.2131, 7.2231, 7.2218, 7.2199, 7.2189, 7.2176, 7.2158, 7.2146, 7.2131, 7.2117, 7.2097, 7.2133, 7.2168, 7.2305, 7.2345, 7.2381, 7.2313, 7.2312, 7.235, 7.2384, 7.2428, 7.2412, 7.2395, 7.2433, 7.2415, 7.2453, 7.244, 7.2479, 7.2461, 7.2452, 7.2438, 7.242, 7.2463, 7.2448, 7.2484, 7.2738, 7.2791, 7.2778, 7.2763, 7.2749, 7.273, 7.2711, 7.2696, 7.2677, 7.2662, 7.2653, 7.2687, 7.267, 7.2706, 7.2686, 7.2721, 7.2757, 7.2793, 7.2772, 7.2754, 7.2789, 7.2825, 7.2812, 7.2793, 7.2773, 7.2756, 7.2736, 7.2717, 7.2704, 7.2686, 7.2667, 7.265, 7.2632, 7.2616, 7.261, 7.2647, 7.2686, 7.2793, 7.2829, 7.2864, 7.2857, 7.2841, 7.2825, 7.2858, 7.2841, 7.2833, 7.2821, 7.2801, 7.2786, 7.2767, 7.2749, 7.2787, 7.2775, 7.2762, 7.2798, 7.2828, 7.2811, 7.2799, 7.2814, 7.2796, 7.2777, 7.2762, 7.2744, 7.2724, 7.2705, 7.2695, 7.2683, 7.267, 7.2654, 7.2637, 7.2671, 7.2655, 7.2691, 7.2736, 7.2722, 7.2786, 7.2776, 7.2758, 7.2745, 7.2736, 7.2718, 7.2705, 7.2687, 7.267, 7.2655, 7.2637, 7.2621, 7.2642, 7.2624, 7.2606, 7.2592, 7.2578, 7.2562, 7.2594, 7.2575, 7.2557, 7.254, 7.2526, 7.2509, 7.2503, 7.2488, 7.2597, 7.2535, 7.2555, 7.2538, 7.257, 7.261, 7.2595, 7.2629, 7.261, 7.2645, 7.2583, 7.2566, 7.2551, 7.2633, 7.2622, 7.2617, 7.2651, 7.2637, 7.2621, 7.2654, 7.2638, 7.262, 7.2607, 7.264, 7.2627, 7.2608, 7.2638, 7.2628, 7.2611, 7.2643, 7.2632, 7.2615, 7.2621, 7.2652, 7.2685, 7.2682, 7.2665, 7.2691, 7.2683, 7.2666, 7.2649, 7.2636, 7.2619, 7.2574, 7.2603, 7.2634, 7.2664, 7.2648, 7.268, 7.2663, 7.2647, 7.2633, 7.2662, 7.2645, 7.263, 7.2615, 7.2602, 7.2543, 7.2528, 7.261, 7.2597, 7.2627, 7.261, 7.2594, 7.2624, 7.2607, 7.2596, 7.258, 7.263, 7.2613, 7.2615, 7.2665, 7.2652, 7.2721, 7.2704, 7.2687, 7.273, 7.2713, 7.2731, 7.2716, 7.2701, 7.2733, 7.2718, 7.275, 7.2735, 7.2719, 7.2741, 7.2728, 7.2756, 7.2786, 7.282, 7.2804, 7.2787, 7.2813, 7.282, 7.2848, 7.2928, 7.2959, 7.2945, 7.2975, 7.2965, 7.295, 7.2936, 7.2927, 7.2912, 7.2895, 7.2882, 7.2867, 7.2898, 7.2882, 7.2869, 7.2856, 7.2845, 7.2833, 7.2816, 7.2817, 7.28, 7.2785, 7.2768, 7.2797, 7.2786, 7.2769, 7.2758, 7.2742, 7.277, 7.2801, 7.2792, 7.2819, 7.2808, 7.2795, 7.2744, 7.2775, 7.2806, 7.279, 7.2793, 7.2825, 7.2811, 7.2803, 7.2802, 7.2787, 7.2774, 7.2758, 7.2795, 7.2794, 7.2781, 7.2766, 7.2794, 7.2781, 7.2771, 7.2756, 7.2744, 7.2733, 7.2717, 7.2745, 7.273, 7.2713, 7.2743, 7.2732, 7.2679, 7.2665, 7.2693, 7.2722, 7.2708, 7.2693, 7.2684, 7.2668, 7.2697, 7.2681, 7.2669, 7.2655, 7.2682, 7.2709, 7.2737, 7.2765, 7.2757, 7.2741, 7.273, 7.2761, 7.2792, 7.2777, 7.2768, 7.2756, 7.2743, 7.273, 7.2759, 7.2788, 7.2772, 7.2801, 7.279, 7.282, 7.2813, 7.2839, 7.2869, 7.2856, 7.2886, 7.2872, 7.2856, 7.2842, 7.2828, 7.2857, 7.2845, 7.2836, 7.2867, 7.2896, 7.2927, 7.2913, 7.2898, 7.2882, 7.292, 7.2915, 7.2901, 7.2886, 7.2874, 7.29, 7.2887, 7.2875, 7.2862, 7.2891, 7.2875, 7.2866, 7.2854, 7.2847, 7.2875, 7.2862, 7.2849, 7.2839, 7.2868, 7.2853, 7.2838, 7.2841, 7.283, 7.2941, 7.3007, 7.2994, 7.3018, 7.3046, 7.3036, 7.3061, 7.3054, 7.3161, 7.3147, 7.3133, 7.3122, 7.3107, 7.3092, 7.3041, 7.3025, 7.301, 7.2996, 7.3022, 7.3048, 7.3035, 7.306, 7.3086, 7.3112, 7.3096, 7.3091, 7.3124, 7.3109, 7.3099, 7.3097, 7.3204, 7.3191, 7.3259, 7.3247, 7.3234, 7.3219, 7.3208, 7.3196, 7.3184, 7.3171, 7.316, 7.3146, 7.3133, 7.3119, 7.3108, 7.3134, 7.3085, 7.311, 7.3096, 7.3082, 7.3146, 7.3097, 7.3127, 7.3117, 7.311, 7.3135, 7.3121, 7.3112, 7.3102, 7.3087, 7.3074, 7.31, 7.3086, 7.3073, 7.3059, 7.3059, 7.3101, 7.3089, 7.3115, 7.3101, 7.3124, 7.3075, 7.3065, 7.317, 7.3197, 7.3183, 7.3208, 7.3234, 7.3259, 7.3248, 7.3262, 7.3252, 7.3283, 7.3268, 7.3276, 7.3265, 7.325, 7.3239, 7.3236, 7.3258, 7.3243, 7.3231, 7.3216, 7.3207, 7.3194, 7.3183, 7.317, 7.3156, 7.3116, 7.3178, 7.3202, 7.3188, 7.3368, 7.3357, 7.3344, 7.333, 7.332, 7.3344, 7.3331, 7.3397, 7.3383, 7.3386, 7.3372, 7.3358, 7.3345, 7.3332, 7.3322, 7.3309, 7.3294, 7.3282, 7.3307, 7.3331, 7.3355, 7.338, 7.3367, 7.3353, 7.3376, 7.3363, 7.3349, 7.3341, 7.3328, 7.3314, 7.3311, 7.3298, 7.3285, 7.3276, 7.3265, 7.3251, 7.3289, 7.328, 7.3268, 7.3255, 7.3422, 7.3422, 7.341, 7.3397, 7.3419, 7.3422, 7.3416, 7.3402, 7.3391, 7.3378, 7.3366, 7.3353, 7.334, 7.3332, 7.3319, 7.3305, 7.34, 7.3461, 7.3464, 7.3451, 7.3479, 7.3465, 7.3524, 7.3517, 7.3503, 7.3489, 7.3481, 7.3539, 7.3527, 7.3595, 7.3583, 7.3579, 7.3565, 7.3552, 7.3544, 7.3498, 7.3499, 7.3486, 7.3507, 7.3529, 7.3518, 7.3507, 7.3534, 7.3561, 7.3549, 7.3538, 7.3525, 7.3513, 7.35, 7.349, 7.3513, 7.35, 7.3492, 7.3515, 7.3506, 7.353, 7.3517, 7.3545, 7.3532, 7.3519, 7.3509, 7.3496, 7.3518, 7.353, 7.3552, 7.3539, 7.3526, 7.3513, 7.3535, 7.3558, 7.3546, 7.3534, 7.3562, 7.3551, 7.3591, 7.3622, 7.3645, 7.3736, 7.3733, 7.3736, 7.3732, 7.3688, 7.3679, 7.3674, 7.3666, 7.366, 7.3683, 7.3673, 7.372, 7.3715, 7.3719, 7.3708, 7.3699, 7.3688, 7.371, 7.3697, 7.3654, 7.3675, 7.3662, 7.3652, 7.3641, 7.3663, 7.3653, 7.3675, 7.37, 7.3688, 7.3676, 7.3637, 7.3601, 7.359, 7.3578, 7.3569, 7.3556, 7.3546, 7.3572, 7.3593, 7.3586, 7.3591, 7.3556, 7.3544, 7.3535, 7.3523, 7.3546, 7.3538, 7.3529, 7.3519, 7.354, 7.3551, 7.3608, 7.3608, 7.3599, 7.3562, 7.3583, 7.3571, 7.3587, 7.361, 7.3597, 7.3657, 7.3646, 7.3636, 7.3657, 7.3647, 7.3634, 7.3657, 7.3645, 7.3666, 7.3653, 7.3643, 7.36, 7.3588, 7.3577, 7.357, 7.3564, 7.3558, 7.3546, 7.3536, 7.3568, 7.3556, 7.3547, 7.3569, 7.359, 7.3578, 7.3566, 7.3554, 7.3549, 7.354, 7.3528, 7.358, 7.3568, 7.3557, 7.3547, 7.3535, 7.3557, 7.3545, 7.3566, 7.3588, 7.3578, 7.3605, 7.3594, 7.3588, 7.358, 7.3602, 7.3592, 7.3584, 7.3572, 7.3565, 7.3586, 7.3575, 7.3563, 7.3585, 7.3605, 7.3628, 7.3651, 7.367, 7.3659, 7.3648, 7.3639, 7.363, 7.3649, 7.3644, 7.3664, 7.3688, 7.3711, 7.3735, 7.3725, 7.372, 7.371, 7.3732, 7.3726, 7.3719, 7.3706, 7.3694, 7.3681, 7.3641, 7.3628, 7.3616, 7.3607, 7.3596, 7.3615, 7.3629, 7.3627, 7.3614, 7.3634, 7.3622, 7.3612, 7.3631, 7.3624, 7.3644, 7.3664, 7.3655, 7.3644, 7.3608, 7.3596, 7.3586, 7.3577, 7.3566, 7.3556, 7.3547, 7.3601, 7.3592, 7.3584, 7.3572, 7.3563, 7.3585, 7.3573, 7.3567, 7.3586, 7.3574, 7.3593, 7.3614, 7.3603, 7.3593, 7.3585, 7.3576, 7.357, 7.3561, 7.3552, 7.3603, 7.3596, 7.3597, 7.3588, 7.3579, 7.3568, 7.3557, 7.3575, 7.3569, 7.3558, 7.3578, 7.3627, 7.3647, 7.3637, 7.3655, 7.3706, 7.3725, 7.3745, 7.3829, 7.3817, 7.3808, 7.3828, 7.3816, 7.3811, 7.38, 7.3825, 7.3814, 7.3803, 7.3797, 7.3787, 7.3775, 7.3764, 7.3782, 7.3803, 7.3794, 7.3857, 7.3874, 7.3863, 7.3851, 7.384, 7.3832, 7.3826, 7.3815, 7.3837, 7.383, 7.3824, 7.3814, 7.3804, 7.3803, 7.3795, 7.3787, 7.3777, 7.3768, 7.373, 7.3719, 7.3738, 7.3731, 7.3752, 7.374, 7.373, 7.375, 7.3749, 7.3738, 7.3758, 7.3777, 7.3795, 7.3783, 7.3772, 7.379, 7.3779, 7.3776, 7.3766, 7.3755, 7.3744, 7.3763, 7.3752, 7.3741, 7.373, 7.3719, 7.3739, 7.3759, 7.3779, 7.38, 7.3794, 7.3824, 7.3816, 7.3804, 7.3802, 7.377, 7.3761, 7.3782, 7.3771, 7.3821, 7.3868, 7.3861, 7.388, 7.3871, 7.3891, 7.3881, 7.3843, 7.3832, 7.3852, 7.385, 7.387, 7.3862, 7.3913, 7.3904, 7.3896, 7.4034, 7.4024, 7.4043, 7.4064, 7.4052, 7.4014, 7.4005, 7.3993, 7.3986, 7.3976, 7.3966, 7.3956, 7.3949, 7.3938, 7.3965, 7.3957, 7.3947, 7.3966, 7.396, 7.3957, 7.3946, 7.3965, 7.3954, 7.395, 7.3971, 7.3963, 7.3954, 7.3972, 7.3961, 7.3925, 7.3918, 7.3936, 7.3927, 7.389, 7.3915, 7.3962, 7.3953, 7.3943, 7.3947, 7.3911, 7.3913, 7.3937, 7.3929, 7.3946, 7.3937, 7.3927, 7.3945, 7.4001, 7.3993, 7.4044, 7.4037, 7.4037, 7.4033, 7.4024, 7.4058, 7.4051, 7.4071, 7.406, 7.4056, 7.4061, 7.4052, 7.4042, 7.4037, 7.4028, 7.402, 7.4009, 7.4, 7.3991, 7.398, 7.397, 7.3959, 7.3977, 7.3941, 7.393, 7.3946, 7.3936, 7.3925, 7.3942, 7.3931, 7.3932, 7.4064, 7.4054, 7.4043, 7.4039, 7.4073, 7.4076, 7.4039, 7.4028, 7.4022, 7.3986, 7.3951, 7.397, 7.3959, 7.3955, 7.3944, 7.3937, 7.3955, 7.3953, 7.3946, 7.3939, 7.3958, 7.3952, 7.3941, 7.3933, 7.3954, 7.3943, 7.3961, 7.3977, 7.3969, 7.396, 7.398, 7.3973, 7.3964, 7.3953, 7.3944, 7.3935, 7.393, 7.392, 7.3912, 7.3904, 7.3911, 7.3904, 7.3895, 7.3887, 7.388, 7.3871, 7.386, 7.385, 7.3868, 7.3886, 7.3906, 7.3895, 7.3897, 7.3889, 7.388, 7.3896, 7.3888, 7.3882, 7.3898, 7.389, 7.388, 7.3873, 7.3889, 7.3882, 7.3874, 7.389, 7.3882, 7.3871, 7.3861, 7.3854, 7.3876, 7.3866, 7.3884, 7.3901, 7.389, 7.3907, 7.3979, 7.4, 7.4019, 7.4008, 7.3999, 7.3992, 7.3983, 7.3974, 7.3994, 7.4011, 7.4002, 7.4019, 7.4009, 7.4003, 7.3994, 7.3985, 7.4002, 7.3968, 7.3981, 7.3972, 7.3963, 7.3956, 7.3947, 7.3938, 7.3929, 7.3919, 7.3946, 7.3973, 7.399, 7.3987, 7.3954, 7.3945, 7.3937, 7.3926, 7.392, 7.3942, 7.3932, 7.3924, 7.3918, 7.3934, 7.3924, 7.3915, 7.3931, 7.3928, 7.39, 7.3947, 7.3939, 7.3936, 7.3926, 7.3921, 7.3912, 7.3901, 7.3894, 7.3885, 7.3876, 7.3893, 7.3885, 7.3876, 7.3869, 7.3835, 7.3825, 7.3823, 7.3849, 7.3871, 7.3862, 7.3866, 7.3856, 7.387, 7.386, 7.3877, 7.3868, 7.3861, 7.3876, 7.3865, 7.3903, 7.3895, 7.3886, 7.3888, 7.388, 7.3898, 7.3865, 7.3855, 7.3845, 7.3836, 7.3826, 7.3819, 7.3816, 7.3834, 7.3827, 7.382, 7.3811, 7.3828, 7.3845, 7.3862, 7.3859, 7.3826, 7.3818, 7.3813, 7.3829, 7.382, 7.3811, 7.3801, 7.3818, 7.3834, 7.3826, 7.3875, 7.3868, 7.3862, 7.3854, 7.3846, 7.3836, 7.3827, 7.3818, 7.3939, 7.4004, 7.3996, 7.3964, 7.3955, 7.3947, 7.3938, 7.393, 7.3922, 7.3914, 7.3904, 7.3895, 7.3913, 7.3903, 7.392, 7.3935, 7.3925, 7.3918, 7.3933, 7.393, 7.3947, 7.394, 7.4015, 7.4008, 7.4054, 7.4069, 7.4112, 7.4121, 7.4114, 7.4109, 7.4124, 7.4139, 7.413, 7.4123, 7.4139, 7.413, 7.412, 7.4113, 7.4105, 7.41, 7.4092, 7.4083, 7.4073, 7.4064, 7.408, 7.4087, 7.4078, 7.407, 7.4061, 7.4076, 7.4069, 7.4062, 7.4053, 7.4045, 7.404, 7.4055, 7.4046, 7.4039, 7.4033, 7.4026, 7.4021, 7.4013, 7.4028, 7.4045, 7.4037, 7.4027, 7.4017, 7.4009, 7.4001, 7.3994, 7.3989, 7.4005, 7.4021, 7.4011, 7.4002, 7.3994, 7.3986, 7.4002, 7.3992, 7.3983, 7.3999, 7.3989, 7.3958, 7.3953, 7.3971, 7.3965, 7.4005, 7.3998, 7.399, 7.4008, 7.4001, 7.4013, 7.4008, 7.4027, 7.4019, 7.4038, 7.4032, 7.4026, 7.4018, 7.4012, 7.4007, 7.3999, 7.399, 7.4008, 7.4002, 7.3994, 7.3964, 7.3954, 7.3945, 7.3939, 7.393, 7.3947, 7.3962, 7.3954, 7.3971, 7.3962, 7.3954, 7.3971, 7.3962, 7.3953, 7.3968, 7.3941, 7.3932, 7.3928, 7.392, 7.389, 7.3883, 7.3876, 7.3888, 7.3903, 7.3896, 7.3887, 7.3879, 7.3872, 7.3866, 7.3857, 7.3848, 7.3842, 7.3857, 7.385, 7.3842, 7.3857, 7.3871, 7.3842, 7.3813, 7.3838, 7.3829, 7.3819, 7.3816, 7.3809, 7.38, 7.3816, 7.381, 7.3824, 7.382, 7.3834, 7.3825, 7.382, 7.3835, 7.3829, 7.3828, 7.382, 7.3798, 7.3791, 7.3806, 7.3797, 7.3791, 7.3782, 7.3797, 7.3837, 7.385, 7.3842, 7.3812, 7.3806, 7.3797, 7.3788, 7.3782, 7.3773, 7.3767, 7.3784, 7.3801, 7.3817, 7.381, 7.3801, 7.3796, 7.3787, 7.3803, 7.3822, 7.3815, 7.383, 7.3823, 7.3814, 7.3806, 7.3821, 7.3837, 7.3831, 7.3825, 7.3842, 7.3834, 7.3827, 7.3819, 7.3811, 7.3803, 7.3795, 7.381, 7.3827, 7.3819, 7.3838, 7.3833, 7.3825, 7.3841, 7.3835, 7.3827, 7.3819, 7.3811, 7.3803, 7.3796, 7.3787, 7.3865, 7.3856, 7.3871, 7.3863, 7.3854, 7.3869, 7.386, 7.3854, 7.3824, 7.3815, 7.3807, 7.3782, 7.3775, 7.379, 7.3782, 7.3773, 7.3767, 7.3768, 7.376, 7.3751, 7.3747, 7.3753, 7.3767, 7.3781, 7.3772, 7.3763, 7.3757, 7.375, 7.3741, 7.3756, 7.3772, 7.3763, 7.3754, 7.3747, 7.374, 7.3732, 7.3726, 7.3717, 7.3708, 7.3701, 7.3715, 7.373, 7.3723, 7.3716, 7.371, 7.3705, 7.3698, 7.3689, 7.3681, 7.3673, 7.3666, 7.3638, 7.3629, 7.3644, 7.3659, 7.3651, 7.3642, 7.3635, 7.3649, 7.3641, 7.3633, 7.3625, 7.3619, 7.3613, 7.3605, 7.3596, 7.3588, 7.3582, 7.3574, 7.3587, 7.3583, 7.3598, 7.3612, 7.3606, 7.3599, 7.3614, 7.3605, 7.362, 7.3612, 7.3627, 7.364, 7.3655, 7.3648, 7.3619, 7.361, 7.3601, 7.3595, 7.3587, 7.36, 7.3613, 7.3604, 7.3597, 7.3611, 7.3681, 7.3696, 7.3688, 7.3702, 7.3706, 7.3699, 7.369, 7.3683, 7.3675, 7.369, 7.3683, 7.3655, 7.3648, 7.362, 7.3614, 7.3607, 7.3621, 7.3613, 7.3605, 7.3596, 7.3588, 7.358, 7.3608, 7.36, 7.3613, 7.363, 7.3622, 7.3637, 7.3631, 7.3644, 7.3635, 7.3629, 7.3622, 7.3614, 7.3607, 7.3599, 7.3591, 7.3607, 7.3621, 7.3613, 7.3607, 7.3599, 7.3612, 7.3625, 7.3618, 7.3631, 7.3623, 7.3616, 7.3609, 7.3601, 7.3594, 7.3586, 7.3678, 7.3671, 7.3663, 7.3655, 7.3691, 7.3683, 7.3676, 7.3669, 7.3662, 7.3681, 7.3679, 7.3693, 7.3707, 7.3699, 7.3696, 7.369, 7.3689, 7.3702, 7.3694, 7.3686, 7.37, 7.3692, 7.3688, 7.3681, 7.368, 7.3696, 7.3713, 7.3833, 7.3826, 7.3819, 7.3812, 7.3824, 7.3816, 7.3808, 7.3801, 7.3794, 7.3788, 7.3783, 7.3781, 7.3773, 7.3789, 7.3788, 7.3894, 7.389, 7.3884, 7.3877, 7.3869, 7.3861, 7.3856, 7.3848, 7.3865, 7.3882, 7.3876, 7.387, 7.3864, 7.3858, 7.3872, 7.3844, 7.3838, 7.3852, 7.3846, 7.384, 7.3833, 7.3825, 7.3838, 7.383, 7.3844, 7.3838, 7.3831, 7.3824, 7.3838, 7.3833, 7.3826, 7.3839, 7.3853, 7.3849, 7.3843, 7.3834, 7.3847, 7.3838, 7.3851, 7.3844, 7.3837, 7.3849, 7.3843, 7.3838, 7.383, 7.3824, 7.3836, 7.3831, 7.3824, 7.3817, 7.3811, 7.3848, 7.386, 7.3852, 7.3844, 7.3839, 7.3854, 7.3869, 7.3866, 7.386, 7.3854, 7.3847, 7.384, 7.3833, 7.3825, 7.3839, 7.3832, 7.3825, 7.382, 7.3834, 7.3847, 7.386, 7.3853, 7.3869, 7.3882, 7.3895, 7.3888, 7.3861, 7.3854, 7.3851, 7.3844, 7.3838, 7.3833, 7.3847, 7.3862, 7.3881, 7.3896, 7.3916, 7.389, 7.3883, 7.3898, 7.3891, 7.3912, 7.3906, 7.3901, 7.3915, 7.3908, 7.3922, 7.3914, 7.3926, 7.3939, 7.3913, 7.3905, 7.3938, 7.3932, 7.3947, 7.3945, 7.3939, 7.3953, 7.3945, 7.3958, 7.3971, 7.3983, 7.3975, 7.3969, 7.3961, 7.3954, 7.3946, 7.3959, 7.3952, 7.3945, 7.3937, 7.3931, 7.3923, 7.3918, 7.3911, 7.3908, 7.3901, 7.3915, 7.3911, 7.3923, 7.3962, 7.3955, 7.3968, 7.3982, 7.3975, 7.3949, 7.396, 7.3961, 7.3955, 7.3951, 7.3948, 7.394, 7.3933, 7.3927, 7.3921, 7.3917, 7.3914, 7.3927, 7.3939, 7.3912, 7.3905, 7.392, 7.3914, 7.3907, 7.3899, 7.3892, 7.3898, 7.3911, 7.3903, 7.3896, 7.3889, 7.3884, 7.3877, 7.3869, 7.3862, 7.3857, 7.385, 7.3863, 7.3855, 7.3868, 7.3862, 7.3854, 7.3849, 7.3847, 7.384, 7.3854, 7.3846, 7.3839, 7.3831, 7.3825, 7.3824, 7.3837, 7.3831, 7.3826, 7.382, 7.386, 7.3852, 7.3846, 7.3839, 7.3852, 7.3845, 7.3839, 7.3831, 7.3823, 7.3799, 7.3813, 7.3806, 7.3799, 7.3813, 7.3808, 7.38, 7.3814, 7.3807, 7.3801, 7.3795, 7.3788, 7.378, 7.3773, 7.3786, 7.3799, 7.3791, 7.3768, 7.3761, 7.3754, 7.3746, 7.377, 7.3782, 7.3775, 7.3768, 7.3763, 7.3755, 7.3748, 7.374, 7.3734, 7.3734, 7.3727, 7.374, 7.3732, 7.3724, 7.3737, 7.373, 7.3726, 7.3738, 7.3735, 7.3728, 7.374, 7.3733, 7.3726, 7.3701, 7.3712, 7.3705, 7.37, 7.3693, 7.3686, 7.3698, 7.3712, 7.3726, 7.3738, 7.3751, 7.3745, 7.374, 7.3733, 7.3726, 7.3739, 7.3735, 7.3727, 7.3739, 7.3733, 7.3725, 7.3719, 7.3722, 7.3734, 7.3727, 7.3721, 7.3716, 7.3708, 7.3711, 7.3705, 7.3698, 7.3709, 7.3767, 7.376, 7.3773, 7.3766, 7.376, 7.3753, 7.3767, 7.376, 7.3772, 7.3766, 7.378, 7.3792, 7.3796, 7.3789, 7.3782, 7.3775, 7.3768, 7.3762, 7.3754, 7.3752, 7.3745, 7.3756, 7.375, 7.3745, 7.3739, 7.3732, 7.3714, 7.3706, 7.3701, 7.3694, 7.3688, 7.3685, 7.3678, 7.3673, 7.3667, 7.368, 7.3675, 7.3754, 7.3789, 7.3806, 7.38, 7.3795, 7.3788, 7.3801, 7.3794, 7.3788, 7.3781, 7.3775, 7.377, 7.3764, 7.3757, 7.3752, 7.3766, 7.3759, 7.3752, 7.3764, 7.3758, 7.3751, 7.3765, 7.3759, 7.3752, 7.3748, 7.376, 7.3753, 7.3751, 7.3744, 7.3756, 7.3767, 7.3779, 7.3791, 7.3784, 7.3777, 7.3771, 7.3763, 7.3775, 7.3768, 7.3761, 7.3772, 7.3765, 7.3758, 7.3751, 7.3763, 7.3757, 7.3751, 7.3764, 7.3757, 7.3768, 7.3761, 7.3754, 7.3749, 7.3746, 7.3743, 7.3737, 7.3733, 7.373, 7.3707, 7.3719, 7.3712, 7.3725, 7.3719, 7.3713, 7.3707, 7.3701, 7.3696, 7.369, 7.3685, 7.3679, 7.3672, 7.3665, 7.3658, 7.3651, 7.3644, 7.3656, 7.3649, 7.3643, 7.3656, 7.3667, 7.368, 7.3687, 7.3681, 7.3681, 7.3675, 7.3669, 7.3663, 7.3656, 7.3633, 7.3629, 7.3622, 7.3634, 7.3633, 7.3627, 7.3621, 7.3616, 7.3642, 7.3639, 7.3637, 7.3632, 7.3644, 7.3637, 7.363, 7.3641, 7.3634, 7.3647, 7.3658, 7.3688, 7.3682, 7.3675, 7.3668, 7.3663, 7.3657, 7.3651, 7.3645, 7.3642, 7.3638, 7.365, 7.3646, 7.3639, 7.3635, 7.3632, 7.3643, 7.3653, 7.3663, 7.3658, 7.3652, 7.3645, 7.3651, 7.365, 7.3661, 7.3655, 7.3653, 7.3647, 7.3659, 7.3672, 7.3668, 7.368, 7.3678, 7.3689, 7.3703, 7.3699, 7.3693, 7.3688, 7.3699, 7.3712, 7.3742, 7.3737, 7.373, 7.3725, 7.3744, 7.3743, 7.3736, 7.3748, 7.3741, 7.3736, 7.373, 7.3727, 7.3722, 7.3716, 7.3719, 7.3731, 7.3736, 7.373, 7.3724, 7.3717, 7.3713, 7.3691, 7.3686, 7.3681, 7.3674, 7.3651, 7.363, 7.3609, 7.3604, 7.3615, 7.3608, 7.3614, 7.3608, 7.3609, 7.361, 7.3587, 7.358, 7.3578, 7.3572, 7.3567, 7.3561, 7.3575, 7.3575, 7.3586, 7.3581, 7.3586, 7.3563, 7.3558, 7.3551, 7.3546, 7.354, 7.3537, 7.353, 7.3523, 7.3517, 7.3528, 7.3539, 7.3533, 7.3526, 7.3538, 7.3559, 7.3552, 7.3546, 7.354, 7.3534, 7.3527, 7.3539, 7.3533, 7.3527, 7.3521, 7.3514, 7.3528, 7.3523, 7.3517, 7.3512, 7.3506, 7.3504, 7.3517, 7.3529, 7.3528, 7.3521, 7.3514, 7.3525, 7.3521, 7.3517, 7.3515, 7.351, 7.3504, 7.3516, 7.351, 7.3506, 7.3502, 7.3481, 7.3508, 7.3503, 7.3497, 7.3492, 7.3489, 7.3467, 7.3479, 7.3489, 7.3483, 7.3487, 7.3485, 7.348, 7.3475, 7.3469, 7.3463, 7.3474, 7.3486, 7.3482, 7.3478, 7.3474, 7.3471, 7.3465, 7.3459, 7.3454, 7.3448, 7.3461, 7.3456, 7.3452, 7.3447, 7.346, 7.3455, 7.3467, 7.348, 7.349, 7.3502, 7.3498, 7.3509, 7.3503, 7.3531, 7.3526, 7.352, 7.3515, 7.351, 7.3522, 7.3532, 7.3527, 7.3522, 7.3517, 7.3512, 7.3505, 7.3502, 7.3563, 7.3561, 7.3573, 7.3583, 7.358, 7.358, 7.3581, 7.3576, 7.3574, 7.3586, 7.358, 7.3573, 7.3567, 7.3561, 7.3557, 7.3551, 7.3545, 7.3557, 7.3552, 7.3548, 7.3526, 7.3504, 7.3498, 7.356, 7.3555, 7.3586, 7.3615, 7.3609, 7.3623, 7.3617, 7.3611, 7.3606, 7.3616, 7.3612, 7.3606, 7.3599, 7.3593, 7.3587, 7.3583, 7.3561, 7.3556, 7.3616, 7.3627, 7.3641, 7.3636, 7.3646, 7.3641, 7.366, 7.3655, 7.3666, 7.3659, 7.3654, 7.3661, 7.3657, 7.3652, 7.3647, 7.3642, 7.3637, 7.3633, 7.3627, 7.3637, 7.3648, 7.3644, 7.3639, 7.3633, 7.3638, 7.3648, 7.3644, 7.3638, 7.3649, 7.3643, 7.3637, 7.363, 7.364, 7.3651, 7.3645, 7.3642, 7.3636, 7.3647, 7.3642, 7.3639, 7.3636, 7.3631, 7.3627, 7.3623, 7.3619, 7.3614, 7.3593, 7.3587, 7.3601, 7.3596, 7.3608, 7.3602, 7.3597, 7.3609, 7.3622, 7.3633, 7.3639, 7.3649, 7.3643, 7.3637, 7.3648, 7.3641, 7.3652, 7.3646, 7.3657, 7.3651, 7.363, 7.3624, 7.3635, 7.3613, 7.3609, 7.3606, 7.36, 7.3594, 7.3588, 7.3581, 7.3575, 7.3589, 7.3585, 7.3579, 7.3591, 7.3602, 7.3614, 7.3607, 7.3603, 7.3613, 7.3609, 7.3606, 7.36, 7.3595, 7.3589, 7.3584, 7.3578, 7.3572, 7.3584, 7.3578, 7.3572, 7.3582, 7.3577, 7.3572, 7.3565, 7.3577, 7.3571, 7.3582, 7.3576, 7.3587, 7.3584, 7.3595, 7.3589, 7.3601, 7.3595, 7.359, 7.3584, 7.3578, 7.3572, 7.3568, 7.3564, 7.3575, 7.3586, 7.3584, 7.3578, 7.3572, 7.3567, 7.3562, 7.3556, 7.355, 7.3546, 7.354, 7.3534, 7.3529, 7.3524, 7.3519, 7.353, 7.3529, 7.354, 7.355, 7.356, 7.3556, 7.3551, 7.3545, 7.3574, 7.3584, 7.3578, 7.3591, 7.3585, 7.3584, 7.3577, 7.3572, 7.3566, 7.3561, 7.3559, 7.3553, 7.355, 7.3546, 7.354, 7.3535, 7.3548, 7.3543, 7.3538, 7.3532, 7.3607, 7.3602, 7.3597, 7.3592, 7.3575, 7.3585, 7.358, 7.3578, 7.3605, 7.36, 7.3611, 7.3605, 7.3622, 7.3618, 7.3638, 7.3632, 7.3642, 7.3638, 7.3632, 7.3628, 7.3623, 7.3634, 7.3628, 7.3657, 7.3686, 7.3682, 7.3677, 7.3687, 7.3681, 7.3691, 7.3685, 7.3681, 7.3678, 7.3691, 7.3687, 7.3697, 7.3695, 7.369, 7.372, 7.3715, 7.3724, 7.3718, 7.3713, 7.3707, 7.3703, 7.37, 7.3695, 7.369, 7.3684, 7.3694, 7.369, 7.3686, 7.368, 7.369, 7.3687, 7.3698, 7.3709, 7.3703, 7.3698, 7.3692, 7.3686, 7.3683, 7.3677, 7.3671, 7.3665, 7.3675, 7.3686, 7.368, 7.366, 7.3655, 7.3649, 7.3645, 7.3639, 7.3619, 7.3614, 7.3625, 7.3619, 7.3613, 7.3623, 7.3618, 7.3613, 7.3609, 7.3607, 7.3639, 7.3633, 7.3627, 7.3621, 7.3616, 7.3611, 7.3621, 7.3601, 7.3597, 7.3593, 7.3603, 7.3597, 7.3593, 7.3587, 7.3581, 7.3576, 7.357, 7.3565, 7.356, 7.3571, 7.3565, 7.356, 7.3556, 7.3552, 7.3546, 7.3544, 7.3539, 7.3533, 7.3543, 7.354, 7.355, 7.356, 7.3556, 7.355, 7.3547, 7.3527, 7.3529, 7.3523, 7.3517, 7.3511, 7.3521, 7.3515, 7.3512, 7.3507, 7.3518, 7.3527, 7.3522, 7.3532, 7.3543, 7.3539, 7.3534, 7.3544, 7.3546, 7.354, 7.3536, 7.3531, 7.3542, 7.3553, 7.3548, 7.3559, 7.3559, 7.3555, 7.3553, 7.355, 7.3545, 7.3542, 7.3541, 7.3536, 7.352, 7.3517, 7.3513, 7.3509, 7.3508, 7.3508, 7.3553, 7.3564, 7.356, 7.357, 7.3566, 7.3561, 7.3572, 7.3584, 7.3595, 7.3594, 7.3604, 7.36, 7.3597, 7.3579, 7.356, 7.3554, 7.355, 7.3547, 7.3547, 7.3541, 7.355, 7.3544, 7.3539, 7.3519, 7.3514, 7.3508, 7.3519, 7.3513, 7.3507, 7.3517, 7.3512, 7.3508, 7.3503, 7.3498, 7.3478, 7.3473, 7.3485, 7.3496, 7.3516, 7.3526, 7.3536, 7.3547, 7.3542, 7.3539, 7.3537, 7.3533, 7.3533, 7.3529, 7.3523, 7.3532, 7.3527, 7.3536, 7.3533, 7.353, 7.3539, 7.3534, 7.3529, 7.3523, 7.3533, 7.3545, 7.3526, 7.3566, 7.3563, 7.3558, 7.3553, 7.3549, 7.3545, 7.3539, 7.3536, 7.3534, 7.353, 7.3524, 7.352, 7.3531, 7.3527, 7.3522, 7.3531, 7.3527, 7.3523, 7.3519, 7.3528, 7.3523, 7.3518, 7.3514, 7.3508, 7.3533, 7.3528, 7.3525, 7.3534, 7.3536, 7.3531, 7.3528, 7.3554, 7.3549, 7.356, 7.3541, 7.3546, 7.3541, 7.3522, 7.3518, 7.3572, 7.3582, 7.3563, 7.3544, 7.3525, 7.3535, 7.3532, 7.354, 7.3549, 7.3545, 7.3539, 7.3536, 7.3564, 7.356, 7.357, 7.358, 7.3576, 7.3571, 7.3566, 7.3561, 7.3572, 7.3568, 7.3562, 7.3557, 7.3554, 7.3548, 7.3542, 7.3551, 7.3546, 7.3557, 7.3566, 7.3562, 7.3557, 7.3553, 7.3547, 7.3528, 7.3523, 7.3517, 7.3514, 7.351, 7.3507, 7.3502, 7.3498, 7.3493, 7.3491, 7.3487, 7.3483, 7.348, 7.3476, 7.3503, 7.3499, 7.3494, 7.3505, 7.3504, 7.3499, 7.3494, 7.3491, 7.35, 7.3495, 7.3491, 7.3488, 7.3483, 7.348, 7.3475, 7.3472, 7.3468, 7.3463, 7.346, 7.3459, 7.3469, 7.3483, 7.3493, 7.3474, 7.347, 7.3498, 7.3509, 7.3504, 7.3498, 7.3493, 7.3488, 7.3482, 7.3479, 7.3488, 7.3483, 7.3492, 7.3487, 7.3483, 7.3479, 7.3473, 7.3455, 7.345, 7.3445, 7.3441, 7.3436, 7.3431, 7.3426, 7.3421, 7.3416, 7.3425, 7.3421, 7.3424, 7.3434, 7.3429, 7.3439, 7.3494, 7.3476, 7.3457, 7.3466, 7.3462, 7.3457, 7.3451, 7.3447, 7.3448, 7.3443, 7.3439, 7.3435, 7.3445, 7.344, 7.3438, 7.3433, 7.3428, 7.3425, 7.3421, 7.3431, 7.3426, 7.3421, 7.3416, 7.3412, 7.3407, 7.3403, 7.3398, 7.3392, 7.3386, 7.3397, 7.3408, 7.3403, 7.3399, 7.3393, 7.3403, 7.3413, 7.3408, 7.3404, 7.34, 7.3396, 7.339, 7.3385, 7.3381, 7.3377, 7.3372, 7.3367, 7.3367, 7.3367, 7.3362, 7.3359, 7.3368, 7.3364, 7.3358, 7.334, 7.335, 7.3346, 7.3342, 7.3337, 7.3347, 7.3343, 7.3338, 7.3348, 7.3357, 7.3367, 7.3361, 7.3357, 7.3352, 7.3347, 7.3342, 7.3338, 7.3333, 7.3342, 7.3337, 7.3334, 7.3333, 7.3343, 7.3338, 7.3334, 7.3329, 7.3325, 7.3334, 7.3328, 7.3323, 7.333, 7.3339, 7.3335, 7.333, 7.3326, 7.3323, 7.3327, 7.3324, 7.3348, 7.3351, 7.3346, 7.3342, 7.3339, 7.3336, 7.3332, 7.3327, 7.3336, 7.3332, 7.3341, 7.3337, 7.3332, 7.3341, 7.3336, 7.3332, 7.3328, 7.3324, 7.3319, 7.3314, 7.3323, 7.3332, 7.3341, 7.335, 7.3359, 7.3354, 7.3349, 7.3344, 7.334, 7.3337, 7.3347, 7.3387, 7.3385, 7.3399, 7.3395, 7.3405, 7.34, 7.3395, 7.3391, 7.3386, 7.3381, 7.3389, 7.3384, 7.3378, 7.3388, 7.3397, 7.3392, 7.3388, 7.3386, 7.3383, 7.3365, 7.3376, 7.3371, 7.3368, 7.3366, 7.3362, 7.3358, 7.3353, 7.3349, 7.3331, 7.3369, 7.3365, 7.3363, 7.3358, 7.3353, 7.3348, 7.3358, 7.3354, 7.3359, 7.3341, 7.3352, 7.3369, 7.3364, 7.336, 7.3368, 7.3364, 7.336, 7.337, 7.3366, 7.3362, 7.3372, 7.3367, 7.3365, 7.3373, 7.3373, 7.3369, 7.338, 7.3376, 7.3372, 7.3369, 7.3364, 7.3359, 7.3354, 7.335, 7.3346, 7.3342, 7.3337, 7.3347, 7.3343, 7.3352, 7.3361, 7.337, 7.3379, 7.3374, 7.3386, 7.3381, 7.3378, 7.3387, 7.3385, 7.3409, 7.3405, 7.3401, 7.3397, 7.3405, 7.3409, 7.3405, 7.3402, 7.3416, 7.3414, 7.3421, 7.3403, 7.3398, 7.3393, 7.3389, 7.3384, 7.3385, 7.3383, 7.341, 7.3433, 7.3445, 7.3441, 7.3451, 7.3447, 7.3444, 7.344, 7.3436, 7.3432, 7.3458, 7.3469, 7.3465, 7.346, 7.3456, 7.3465, 7.3474, 7.347, 7.3465, 7.3461, 7.3456, 7.3453, 7.3449, 7.3444, 7.3453, 7.3464, 7.3473, 7.3468, 7.3464, 7.3459, 7.3442, 7.3437, 7.342, 7.3437, 7.3468, 7.3463, 7.3458, 7.3453, 7.345, 7.3463, 7.3458, 7.3453, 7.3448, 7.3444, 7.3439, 7.3421, 7.3432, 7.3428, 7.3424, 7.3436, 7.3431, 7.3426, 7.3422, 7.3438, 7.3452, 7.3448, 7.3445, 7.3441, 7.3436, 7.3431, 7.3431, 7.3427, 7.3424, 7.3421, 7.3417, 7.3413, 7.341, 7.3406, 7.3416, 7.3425, 7.342, 7.3417, 7.3413, 7.3408, 7.3403, 7.3399, 7.3408, 7.3404, 7.34, 7.3395, 7.338, 7.3375, 7.337, 7.3365, 7.336, 7.3355, 7.3354, 7.335, 7.3363, 7.3358, 7.3353, 7.335, 7.3359, 7.3355, 7.3364, 7.3373, 7.3382, 7.3377, 7.3372, 7.3369, 7.3364, 7.3359, 7.3356, 7.3353, 7.3349, 7.3346, 7.3355, 7.3364, 7.3372, 7.3382, 7.3365, 7.336, 7.3355, 7.3364, 7.3359, 7.3372, 7.3369, 7.3364, 7.3359, 7.3354, 7.3351, 7.3334, 7.3331, 7.3327, 7.3323, 7.3332, 7.3341, 7.3324, 7.3334, 7.3329, 7.3324, 7.3307, 7.3292, 7.3321, 7.3317, 7.3312, 7.331, 7.3308, 7.3303, 7.3299, 7.3294, 7.3289, 7.3298, 7.3306, 7.3302, 7.3298, 7.331, 7.3307, 7.3303, 7.3311, 7.3307, 7.3291, 7.3287, 7.3283, 7.3279, 7.3274, 7.327, 7.3278, 7.3261, 7.3256, 7.3252, 7.326, 7.3268, 7.3264, 7.326, 7.3256, 7.3252, 7.3248, 7.3245, 7.3241, 7.3249, 7.3245, 7.3242, 7.3237, 7.3234, 7.3243, 7.3252, 7.326, 7.3268, 7.3265, 7.3261, 7.3257, 7.3253, 7.325, 7.3246, 7.3242, 7.3241, 7.3237, 7.3234, 7.3231, 7.3254, 7.3262, 7.3271, 7.3266, 7.3263, 7.3272, 7.3267, 7.3264, 7.3272, 7.3267, 7.3263, 7.3258, 7.3257, 7.3252, 7.3247, 7.3255, 7.3253, 7.3251, 7.3235, 7.323, 7.3225, 7.322, 7.3216, 7.3225, 7.3222, 7.3231, 7.324, 7.3236, 7.3231, 7.3226, 7.3222, 7.3217, 7.3214, 7.3211, 7.3206, 7.3204, 7.32, 7.3195, 7.3191, 7.3187, 7.3222, 7.3218, 7.3214, 7.3222, 7.323, 7.3226, 7.3221, 7.3216, 7.3212, 7.3207, 7.3202, 7.3197, 7.3193, 7.3189, 7.3184, 7.3181, 7.3193, 7.3191, 7.3186, 7.3194, 7.3191, 7.3186, 7.3195, 7.319, 7.3185, 7.3195, 7.3203, 7.32, 7.3214, 7.321, 7.3219, 7.3215, 7.3212, 7.3208, 7.3209, 7.3207, 7.3215, 7.321, 7.3219, 7.3214, 7.321, 7.3207, 7.3204, 7.32, 7.3206, 7.3203, 7.3198, 7.3194, 7.3189, 7.3187, 7.3195, 7.3194, 7.3189, 7.3184, 7.3182, 7.3191, 7.3187, 7.3184, 7.3193, 7.3188, 7.3173, 7.3157, 7.3153, 7.3164, 7.3162, 7.3161, 7.3157, 7.3153, 7.316, 7.3156, 7.3152, 7.3161, 7.3145, 7.3142, 7.3137, 7.3145, 7.3154, 7.3138, 7.3135, 7.3132, 7.3128, 7.3137, 7.3145, 7.3143, 7.314, 7.3136, 7.3132, 7.3156, 7.3152, 7.3149, 7.3133, 7.3128, 7.3125, 7.3134, 7.3142, 7.3126, 7.3136, 7.3134, 7.3132, 7.3128, 7.3139, 7.3135, 7.3133, 7.313, 7.3127, 7.3124, 7.312, 7.3128, 7.3124, 7.3144, 7.3141, 7.3138, 7.3167, 7.3184, 7.3181, 7.3177, 7.3172, 7.3167, 7.3168, 7.3164, 7.3182, 7.3178, 7.3173, 7.3187, 7.3183, 7.3192, 7.3196, 7.3199, 7.321, 7.3207, 7.3202, 7.3198, 7.3195, 7.319, 7.3186, 7.3195, 7.319, 7.3186, 7.3183, 7.3191, 7.32, 7.3185, 7.3211, 7.3208, 7.3203, 7.3199, 7.3195, 7.319, 7.3186, 7.3181, 7.3178, 7.3162, 7.3171, 7.3166, 7.3161, 7.3156, 7.3151, 7.3148, 7.3144, 7.3141, 7.3149, 7.3145, 7.3153, 7.3149, 7.3148, 7.3144, 7.3142, 7.3137, 7.3133, 7.3132, 7.3139, 7.3134, 7.313, 7.3126, 7.3123, 7.313, 7.3128, 7.3124, 7.3121, 7.3125, 7.3121, 7.3117, 7.3113, 7.311, 7.3119, 7.3114, 7.3099, 7.3109, 7.3106, 7.3102, 7.3102, 7.3098, 7.3093, 7.3101, 7.3109, 7.3105, 7.3101, 7.3097, 7.31, 7.3097, 7.3093, 7.3089, 7.3098, 7.3094, 7.3089, 7.3074, 7.3069, 7.3066, 7.3063, 7.3058, 7.3054, 7.3038, 7.3023, 7.3019, 7.3027, 7.3022, 7.3018, 7.3015, 7.3011, 7.3007, 7.3003, 7.2999, 7.2995, 7.2992, 7.2988, 7.2985, 7.2983, 7.2991, 7.2988, 7.2996, 7.3001, 7.2999, 7.3007, 7.3004, 7.3002, 7.3009, 7.3005, 7.3001, 7.2998, 7.2995, 7.3003, 7.2987, 7.2984, 7.2992, 7.2988, 7.2984, 7.2992, 7.3001, 7.2997, 7.2994, 7.299, 7.2995, 7.3003, 7.3014, 7.3031, 7.3043, 7.3027, 7.3024, 7.3034, 7.3033, 7.3043, 7.304, 7.3036, 7.3045, 7.3043, 7.3028, 7.3038, 7.305, 7.3046, 7.3054, 7.309, 7.31, 7.3096, 7.3093, 7.3089, 7.3089, 7.3074, 7.312, 7.3117, 7.3113, 7.3109, 7.3143, 7.3152, 7.316, 7.3167, 7.3176, 7.3162, 7.3158, 7.3166, 7.3164, 7.3161, 7.3156, 7.3153, 7.315, 7.3147, 7.315, 7.3147, 7.3155, 7.315, 7.315, 7.3146, 7.315, 7.3159, 7.3156, 7.3152, 7.3147, 7.3142, 7.3149, 7.3145, 7.3158, 7.3144, 7.3153, 7.3153, 7.315, 7.3146, 7.3143, 7.3141, 7.3137, 7.3144, 7.314, 7.3136, 7.3133, 7.3145, 7.3153, 7.315, 7.3146, 7.3142, 7.3138, 7.3134, 7.313, 7.3126, 7.3133, 7.3129, 7.313, 7.3126, 7.3121, 7.3106, 7.3102, 7.31, 7.3097, 7.3093, 7.3102, 7.3098, 7.3094, 7.3091, 7.3087, 7.3071, 7.3079, 7.3075, 7.307, 7.3067, 7.3064, 7.3061, 7.3082, 7.3069, 7.3077, 7.3092, 7.3088, 7.3084, 7.3081, 7.3081, 7.3085, 7.3082, 7.3079, 7.3075, 7.3082, 7.3089, 7.3086, 7.3086, 7.3084, 7.308, 7.3077, 7.3073, 7.307, 7.3078, 7.3086, 7.3093, 7.3089, 7.3085, 7.3081, 7.3079, 7.3076, 7.3072, 7.3079, 7.3077, 7.3073, 7.307, 7.3065, 7.3062, 7.3059, 7.3057, 7.3055, 7.3052, 7.3048, 7.3044, 7.3054, 7.305, 7.3046, 7.3051, 7.3058, 7.3056, 7.3052, 7.305, 7.3048, 7.3044, 7.304, 7.3036, 7.3032, 7.3041, 7.3038, 7.3034, 7.303, 7.3028, 7.3037, 7.3034, 7.303, 7.3051, 7.3048, 7.3043, 7.304, 7.3039, 7.3035, 7.302, 7.3017, 7.3002, 7.2999, 7.3008, 7.3005, 7.3013, 7.3009, 7.3006, 7.3002, 7.2998, 7.2994, 7.2991, 7.2987, 7.2984, 7.297, 7.2966, 7.2962, 7.297, 7.2955, 7.2951, 7.2946, 7.2953, 7.2949, 7.2969, 7.2965, 7.2962, 7.2969, 7.2988, 7.3009, 7.3006, 7.3004, 7.3001, 7.2997, 7.2992, 7.299, 7.2987, 7.2983, 7.2979, 7.2988, 7.2984, 7.298, 7.2976, 7.2973, 7.2969, 7.2977, 7.2973, 7.297, 7.2966, 7.2964, 7.296, 7.297, 7.2967, 7.2963, 7.2971, 7.2967, 7.2963, 7.2975, 7.2961, 7.2959, 7.2945, 7.2941, 7.2937, 7.2933, 7.2931, 7.2927, 7.2923, 7.292, 7.2928, 7.2925, 7.2911, 7.2919, 7.2915, 7.2923, 7.2919, 7.2904, 7.2902, 7.2909, 7.2905, 7.2902, 7.2898, 7.2897, 7.2904, 7.2913, 7.2898, 7.2895, 7.2891, 7.2891, 7.2892, 7.2891, 7.2876, 7.2872, 7.2868, 7.2875, 7.2888, 7.2919, 7.2916, 7.2914, 7.2911, 7.2908, 7.2904, 7.2901, 7.2898, 7.2906, 7.2915, 7.2923, 7.2924, 7.2921, 7.2918, 7.293, 7.2926, 7.2914, 7.2923, 7.2919, 7.2915, 7.2912, 7.2909, 7.2905, 7.2902, 7.2903, 7.29, 7.2896, 7.2892, 7.2889, 7.2885, 7.2893, 7.2894, 7.289, 7.2898, 7.2894, 7.2892, 7.2899, 7.2896, 7.2881, 7.2877, 7.2873, 7.2881, 7.2878, 7.2874, 7.2871, 7.2878, 7.2874, 7.2884, 7.2881, 7.2877, 7.2873, 7.2869, 7.2866, 7.2866, 7.2872, 7.2868, 7.2888, 7.2942, 7.2938, 7.2934, 7.293, 7.2916, 7.2912, 7.2909, 7.2906, 7.2902, 7.2899, 7.2895, 7.2891, 7.2898, 7.2925, 7.2956, 7.2952, 7.2948, 7.2944, 7.293, 7.2927, 7.2924, 7.2922, 7.293, 7.2938, 7.2959, 7.2955, 7.2951, 7.2947, 7.2944, 7.294, 7.2937, 7.2933, 7.2933, 7.2941, 7.2938, 7.2934, 7.2946, 7.2942, 7.2951, 7.2949, 7.2946, 7.2955, 7.2953, 7.2949, 7.2959, 7.2955, 7.2952, 7.2938, 7.2925, 7.2923, 7.2919, 7.2917, 7.2913, 7.291, 7.2907, 7.2915, 7.2922, 7.2919, 7.2917, 7.2913, 7.2921, 7.2928, 7.2926, 7.2937, 7.2933, 7.2929, 7.2926, 7.2922, 7.2918, 7.2927, 7.2925, 7.2922, 7.2918, 7.2915, 7.2911, 7.2919, 7.2917, 7.2946, 7.2942, 7.296, 7.2957, 7.2953, 7.2961, 7.2958, 7.2944, 7.2941, 7.2927, 7.2913, 7.2899, 7.2907, 7.2904, 7.2911, 7.2919, 7.2915, 7.2916, 7.2912, 7.2908, 7.2904, 7.291, 7.2907, 7.2903, 7.29, 7.2908, 7.2907, 7.2903, 7.2901, 7.2898, 7.2894, 7.289, 7.2886, 7.2882, 7.2878, 7.2875, 7.2871, 7.2867, 7.2874, 7.287, 7.2867, 7.2863, 7.2859, 7.2855, 7.2853, 7.2861, 7.2857, 7.2853, 7.2849, 7.2845, 7.2852, 7.2848, 7.2844, 7.2841, 7.2849, 7.2857, 7.2854, 7.2851, 7.2859, 7.2867, 7.2874, 7.2935, 7.2931, 7.2939, 7.2935, 7.2931, 7.2928, 7.2924, 7.2932, 7.2928, 7.2925, 7.2922, 7.292, 7.2917, 7.2925, 7.2921, 7.2917, 7.2903, 7.2899, 7.2895, 7.2902, 7.2898, 7.2895, 7.2891, 7.2877, 7.2885, 7.2882, 7.2878, 7.2875, 7.2902, 7.2899, 7.2885, 7.2881, 7.2877, 7.2874, 7.287, 7.2867, 7.2864, 7.2861, 7.2857, 7.2853, 7.2849, 7.2845, 7.2852, 7.2848, 7.2847, 7.2844, 7.2852, 7.286, 7.2856, 7.2862, 7.2858, 7.2865, 7.2853, 7.2839, 7.2826, 7.2822, 7.2829, 7.2825, 7.2821, 7.2817, 7.2813, 7.282, 7.2827, 7.2824, 7.2833, 7.2831, 7.2829, 7.2826, 7.2823, 7.2846, 7.2842, 7.284, 7.2837, 7.2843, 7.2852, 7.2853, 7.2849, 7.2836, 7.2833, 7.284, 7.2842, 7.2839, 7.2846, 7.2854, 7.285, 7.2846, 7.2854, 7.285, 7.2847, 7.2843, 7.2839, 7.2846, 7.2842, 7.2838, 7.2834, 7.2832, 7.2829, 7.2826, 7.2823, 7.2822, 7.2819, 7.2815, 7.2802, 7.2808, 7.2805, 7.2813, 7.2809, 7.2805, 7.2801, 7.2819, 7.2816, 7.2819, 7.2815, 7.2825, 7.2822, 7.2829, 7.2836, 7.2833, 7.2829, 7.2826, 7.2822, 7.283, 7.2837, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2827, 7.2834, 7.2831, 7.2828, 7.2825, 7.2822, 7.2819, 7.2815, 7.2818, 7.2814, 7.2812, 7.2808, 7.2805, 7.2802, 7.2833, 7.2829, 7.2825, 7.2812, 7.281, 7.2806, 7.2802, 7.2798, 7.2796, 7.2793, 7.2802, 7.2814, 7.2811, 7.2808, 7.2805, 7.2835, 7.2832, 7.2828, 7.2826, 7.2833, 7.2829, 7.2837, 7.2844, 7.2856, 7.2867, 7.2874, 7.287, 7.2882, 7.2891, 7.291, 7.2919, 7.2915, 7.2923, 7.293, 7.2928, 7.2915, 7.2911, 7.2907, 7.2904, 7.2901, 7.2898, 7.2907, 7.2903, 7.29, 7.2897, 7.2884, 7.2882, 7.2889, 7.2886, 7.2883, 7.288, 7.2887, 7.2883, 7.287, 7.2867, 7.2864, 7.2861, 7.2858, 7.2865, 7.2861, 7.285, 7.2869, 7.2867, 7.2865, 7.2862, 7.2858, 7.2865, 7.2863, 7.288, 7.2877, 7.2875, 7.2874, 7.2871, 7.2869, 7.2866, 7.2873, 7.288, 7.2888, 7.2884, 7.2891, 7.2888, 7.2895, 7.2902, 7.2901, 7.2897, 7.2894, 7.2891, 7.2887, 7.2883, 7.289, 7.2892, 7.29, 7.2907, 7.2903, 7.2899, 7.2905, 7.2912, 7.2909, 7.2905, 7.2909, 7.2896, 7.2896, 7.2893, 7.2892, 7.2888, 7.2884, 7.2891, 7.2888, 7.2885, 7.2883, 7.2881, 7.2888, 7.2886, 7.2883, 7.2879, 7.2876, 7.2872, 7.2868, 7.2875, 7.2871, 7.2868, 7.2865, 7.2852, 7.2849, 7.2856, 7.2853, 7.2851, 7.286, 7.2859, 7.2857, 7.2844, 7.2832, 7.2841, 7.2879, 7.2876, 7.2872, 7.2868, 7.2875, 7.2871, 7.2858, 7.2845, 7.2842, 7.2849, 7.2845, 7.2851, 7.2847, 7.2854, 7.2841, 7.2838, 7.2836, 7.2834, 7.284, 7.2837, 7.2824, 7.282, 7.2817, 7.2814, 7.2811, 7.2807, 7.2814, 7.282, 7.2827, 7.2824, 7.282, 7.2817, 7.2815, 7.2814, 7.282, 7.2817, 7.2814, 7.2823, 7.282, 7.2816, 7.2822, 7.2818, 7.2825, 7.2821, 7.2817, 7.2814, 7.2821, 7.2818, 7.2814, 7.281, 7.2807, 7.2814, 7.2812, 7.283, 7.2826, 7.2822, 7.2819, 7.2815, 7.2823, 7.2841, 7.2838, 7.2855, 7.2852, 7.2849, 7.2868, 7.2866, 7.2863, 7.2859, 7.2862, 7.2858, 7.2856, 7.2853, 7.2866, 7.2863, 7.2863, 7.2871, 7.2867, 7.2864, 7.2861, 7.2848, 7.2845, 7.2842, 7.285, 7.2847, 7.2854, 7.2841, 7.2837, 7.2834, 7.2831, 7.2828, 7.2827, 7.2824, 7.2821, 7.2818, 7.2815, 7.2813, 7.281, 7.2809, 7.2806, 7.2804, 7.2791, 7.2778, 7.2775, 7.2771, 7.277, 7.2774, 7.2771, 7.2779, 7.2785, 7.2781, 7.2778, 7.2785, 7.2791, 7.2788, 7.2776, 7.2783, 7.2784, 7.2791, 7.2789, 7.2786, 7.2782, 7.278, 7.2776, 7.2773, 7.2769, 7.2757, 7.2755, 7.2751, 7.2748, 7.2745, 7.2742, 7.2748, 7.2744, 7.275, 7.2748, 7.2744, 7.2752, 7.2751, 7.2747, 7.2744, 7.274, 7.2747, 7.2744, 7.274, 7.2746, 7.2733, 7.2729, 7.2725, 7.2721, 7.2718, 7.2725, 7.2732, 7.2738, 7.2726, 7.2713, 7.2709, 7.2706, 7.2713, 7.2719, 7.2716, 7.2723, 7.272, 7.2717, 7.2713, 7.2719, 7.2717, 7.2714, 7.2715, 7.2712, 7.271, 7.2717, 7.2714, 7.2712, 7.2709, 7.2706, 7.2703, 7.271, 7.2707, 7.2714, 7.271, 7.2706, 7.2706, 7.2703, 7.27, 7.2697, 7.2704, 7.2702, 7.2699, 7.2695, 7.2693, 7.27, 7.2696, 7.2692, 7.2689, 7.2686, 7.2682, 7.2679, 7.2675, 7.2681, 7.2688, 7.2684, 7.269, 7.2696, 7.2703, 7.2699, 7.2697, 7.2693, 7.2699, 7.2695, 7.2693, 7.27, 7.2698, 7.2695, 7.2691, 7.2688, 7.2685, 7.2692, 7.2699, 7.2707, 7.2714, 7.2711, 7.2718, 7.2714, 7.2712, 7.2708, 7.272, 7.2718, 7.2715, 7.2712, 7.2718, 7.2715, 7.2721, 7.2728, 7.2724, 7.2731, 7.2737, 7.2734, 7.273, 7.273, 7.2727, 7.2725, 7.2713, 7.2719, 7.2716, 7.2713, 7.271, 7.2708, 7.2705, 7.2713, 7.2713, 7.272, 7.2727, 7.2725, 7.2722, 7.272, 7.2727, 7.274, 7.2752, 7.2749, 7.2755, 7.2762, 7.277, 7.2767, 7.2764, 7.2763, 7.2769, 7.2765, 7.2762, 7.2758, 7.2755, 7.2752, 7.2753, 7.2749, 7.2745, 7.2751, 7.2747, 7.2753, 7.275, 7.2746, 7.2743, 7.2739, 7.2736, 7.2743, 7.2751, 7.2756, 7.2753, 7.276, 7.2767, 7.2764, 7.2771, 7.2781, 7.2778, 7.2775, 7.2772, 7.2769, 7.2767, 7.2765, 7.2762, 7.2768, 7.2764, 7.276, 7.2759, 7.2755, 7.2751, 7.2748, 7.2745, 7.2743, 7.2746, 7.2744, 7.2741, 7.2749, 7.2756, 7.2763, 7.2771, 7.2769, 7.2767, 7.2763, 7.277, 7.2767, 7.2764, 7.276, 7.2757, 7.2763, 7.2759, 7.2757, 7.2745, 7.274, 7.2756, 7.2752, 7.2752, 7.2759, 7.2776, 7.2777, 7.281, 7.2806, 7.2803, 7.2809, 7.2816, 7.2805, 7.2803, 7.2799, 7.2805, 7.2802, 7.28, 7.2797, 7.2795, 7.2802, 7.2799, 7.2806, 7.2794, 7.2791, 7.2797, 7.2785, 7.2791, 7.2787, 7.2784, 7.2782, 7.278, 7.2777, 7.2773, 7.2779, 7.2785, 7.2791, 7.2798, 7.2797, 7.2797, 7.2795, 7.2802, 7.2809, 7.2816, 7.2822, 7.2829, 7.2828, 7.2826, 7.2832, 7.2829, 7.2845, 7.2841, 7.2848, 7.2846, 7.2844, 7.2853, 7.285, 7.2848, 7.2854, 7.2861, 7.2859, 7.2855, 7.2852, 7.2841, 7.2849, 7.2846, 7.2843, 7.284, 7.2839, 7.2835, 7.2831, 7.2829, 7.2826, 7.2824, 7.2831, 7.2819, 7.2818, 7.2816, 7.2824, 7.2821, 7.2818, 7.2816, 7.2812, 7.28, 7.2818, 7.2816, 7.2824, 7.282, 7.2817, 7.2814, 7.281, 7.2817, 7.2814, 7.282, 7.2826, 7.2832, 7.282, 7.282, 7.2831, 7.284, 7.2837, 7.2833, 7.2831, 7.2828, 7.2825, 7.2822, 7.2858, 7.2856, 7.2863, 7.286, 7.2857, 7.2845, 7.2842, 7.2848, 7.2836, 7.2824, 7.2813, 7.281, 7.2816, 7.2813, 7.2839, 7.2836, 7.2853, 7.2853, 7.285, 7.2838, 7.2864, 7.287, 7.2873, 7.2872, 7.2871, 7.2868, 7.2865, 7.2862, 7.2859, 7.2856, 7.2862, 7.2858, 7.2864, 7.286, 7.2857, 7.2854, 7.2851, 7.2848, 7.2845, 7.2843, 7.2841, 7.2838, 7.2846, 7.2853, 7.286, 7.2857, 7.2863, 7.286, 7.2857, 7.2854, 7.2851, 7.2878, 7.2875, 7.2872, 7.2869, 7.2866, 7.2873, 7.287, 7.2867, 7.2865, 7.2863, 7.2865, 7.2862, 7.2861, 7.2858, 7.2855, 7.2852, 7.285, 7.2847, 7.2844, 7.2842, 7.2848, 7.2851, 7.2848, 7.2848, 7.2854, 7.2861, 7.2858, 7.2855, 7.2854, 7.2861, 7.286, 7.2869, 7.2867, 7.2874, 7.2871, 7.2867, 7.2873, 7.288, 7.2877, 7.2874, 7.2871, 7.2877, 7.2873, 7.287, 7.2867, 7.2863, 7.2851, 7.2849, 7.2848, 7.2846, 7.2844, 7.2842, 7.2832, 7.283, 7.2827, 7.2826, 7.2824, 7.2821, 7.283, 7.2827, 7.2833, 7.2821, 7.2819, 7.2807, 7.2813, 7.281, 7.2807, 7.2804, 7.2801, 7.2809, 7.2806, 7.282, 7.2817, 7.2823, 7.2829, 7.2826, 7.2824, 7.2822, 7.2819, 7.2816, 7.2813, 7.2809, 7.2821, 7.2809, 7.2807, 7.2805, 7.2813, 7.281, 7.2808, 7.2804, 7.2802, 7.2799, 7.2797, 7.2793, 7.279, 7.2787, 7.2783, 7.278, 7.2778, 7.2775, 7.2772, 7.2769, 7.2766, 7.2763, 7.276, 7.2767, 7.2764, 7.2773, 7.277, 7.2767, 7.2784, 7.2782, 7.2789, 7.2816, 7.2814, 7.281, 7.2816, 7.2823, 7.2821, 7.2819, 7.2816, 7.2813, 7.2809, 7.2806, 7.2803, 7.28, 7.2797, 7.2795, 7.2792, 7.2789, 7.2786, 7.2783, 7.278, 7.2777, 7.2774, 7.2771, 7.2768, 7.2766, 7.2782, 7.2788, 7.2785, 7.2782, 7.2779, 7.2775, 7.2781, 7.2779, 7.2788, 7.2785, 7.2782, 7.2782, 7.2801, 7.279, 7.2788, 7.2786, 7.2783, 7.278, 7.2778, 7.2775, 7.2831, 7.283, 7.2836, 7.2832, 7.282, 7.2818, 7.2835, 7.2833, 7.2831, 7.2828, 7.2827, 7.2846, 7.2852, 7.2853, 7.2851, 7.2849, 7.2856, 7.2854, 7.2852, 7.2859, 7.2856, 7.2865, 7.2854, 7.2852, 7.285, 7.2856, 7.2844, 7.2841, 7.2838, 7.2836, 7.2833, 7.2831, 7.2828, 7.2825, 7.2822, 7.282, 7.2826, 7.2824, 7.2821, 7.2819, 7.2817, 7.2823, 7.282, 7.2826, 7.2823, 7.283, 7.2828, 7.2838, 7.2835, 7.2823, 7.282, 7.2819, 7.2816, 7.2814, 7.2821, 7.2818, 7.2816, 7.2822, 7.2828, 7.2836, 7.2833, 7.2841, 7.2847, 7.2844, 7.2851, 7.2858, 7.2855, 7.2861, 7.2858, 7.2855, 7.2852, 7.2855, 7.2862, 7.2859, 7.2856, 7.2862, 7.2879, 7.2877, 7.2885, 7.2882, 7.288, 7.2877, 7.2874, 7.287, 7.2859, 7.2866, 7.2871, 7.2868, 7.2873, 7.287, 7.2866, 7.2863, 7.2866, 7.2879, 7.2875, 7.2885, 7.2901, 7.2898, 7.2896, 7.2906, 7.2911, 7.2908, 7.2905, 7.2903, 7.2901, 7.2898, 7.2895, 7.2894, 7.2891, 7.2897, 7.2894, 7.2892, 7.2893, 7.289, 7.2887, 7.2884, 7.2881, 7.289, 7.2887, 7.2885, 7.2883, 7.288, 7.2877, 7.2877, 7.2875, 7.2889, 7.2904, 7.2903, 7.29, 7.2897, 7.2903, 7.2901, 7.2908, 7.2905, 7.2905, 7.2905, 7.2902, 7.2909, 7.2915, 7.2912, 7.2918, 7.2916, 7.2923, 7.2929, 7.2935, 7.2933, 7.2939, 7.2936, 7.2942, 7.2948, 7.2937, 7.2943, 7.295, 7.2948, 7.2954, 7.2953, 7.295, 7.2947, 7.2946, 7.2953, 7.295, 7.2947, 7.2944, 7.295, 7.2947, 7.2953, 7.2949, 7.2937, 7.2943, 7.294, 7.2937, 7.2935, 7.2933, 7.293, 7.2928, 7.2925, 7.2923, 7.292, 7.2918, 7.2915, 7.2912, 7.2909, 7.2916, 7.2922, 7.292, 7.2917, 7.2914, 7.2911, 7.2909, 7.2898, 7.2895, 7.2884, 7.2881, 7.2889, 7.2887, 7.2884, 7.2882, 7.2888, 7.2885, 7.2883, 7.2881, 7.2879, 7.2877, 7.2874, 7.2878, 7.2875, 7.2881, 7.2878, 7.2875, 7.2874, 7.2871, 7.2869, 7.2875, 7.288, 7.2886, 7.2885, 7.2885, 7.2882, 7.288, 7.2879, 7.2877, 7.288, 7.2886, 7.2883, 7.288, 7.2877, 7.2912, 7.2909, 7.2906, 7.2903, 7.2901, 7.292, 7.2934, 7.2941, 7.2947, 7.2937, 7.2934, 7.2932, 7.2929, 7.2918, 7.2918, 7.2915, 7.2912, 7.2909, 7.2907, 7.2905, 7.2903, 7.2913, 7.291, 7.2919, 7.2916, 7.2923, 7.2929, 7.2926, 7.2932, 7.2929, 7.2935, 7.2941, 7.2947, 7.2953, 7.2951, 7.2949, 7.2955, 7.2965, 7.2962, 7.2959, 7.2965, 7.2963, 7.296, 7.2957, 7.2963, 7.2952, 7.2951, 7.2948, 7.2945, 7.2943, 7.2949, 7.2947, 7.2944, 7.2941, 7.2938, 7.2935, 7.2933, 7.293, 7.2937, 7.2943, 7.2951, 7.2948, 7.2963, 7.296, 7.2958, 7.2955, 7.2961, 7.2965, 7.2962, 7.2963, 7.2969, 7.2966, 7.2972, 7.2969, 7.2967, 7.2965, 7.2963, 7.296, 7.2957, 7.2954, 7.2951, 7.2958, 7.2956, 7.2953, 7.295, 7.294, 7.2946, 7.2943, 7.294, 7.2938, 7.2944, 7.2941, 7.2938, 7.2935, 7.2941, 7.2947, 7.2944, 7.295, 7.2956, 7.2953, 7.295, 7.2956, 7.2963, 7.2969, 7.2975, 7.2972, 7.2979, 7.2976, 7.2982, 7.298, 7.2986, 7.2983, 7.2989, 7.2995, 7.2992, 7.2998, 7.303, 7.3027, 7.3016, 7.3022, 7.302, 7.3026, 7.3023, 7.3029, 7.3026, 7.3025, 7.3014, 7.302, 7.3025, 7.3022, 7.3019, 7.3017, 7.3023, 7.302, 7.3025, 7.3022, 7.3019, 7.3018, 7.3024, 7.3022, 7.3024, 7.3021, 7.3018, 7.3017, 7.3015, 7.3012, 7.3009, 7.3006, 7.3004, 7.3001, 7.2998, 7.2996, 7.2993, 7.2992, 7.2989, 7.2995, 7.3, 7.2997, 7.2994, 7.3, 7.2998, 7.2995, 7.2993, 7.2998, 7.2987, 7.2984, 7.299, 7.2987, 7.2985, 7.2983, 7.2989, 7.2986, 7.2983, 7.2989, 7.2986, 7.2983, 7.2989, 7.2986, 7.2983, 7.2972, 7.2969, 7.2966, 7.2964, 7.2961, 7.2968, 7.2965, 7.2963, 7.296, 7.2957, 7.2955, 7.2953, 7.296, 7.2949, 7.2946, 7.2944, 7.2941, 7.294, 7.2937, 7.2934, 7.2949, 7.2947, 7.2947, 7.2953, 7.295, 7.2948, 7.2946, 7.2952, 7.2949, 7.2947, 7.2944, 7.295, 7.2947, 7.2944, 7.2941, 7.2938, 7.2935, 7.2932, 7.2931, 7.2928, 7.2925, 7.2914, 7.2912, 7.2902, 7.2899, 7.2896, 7.2893, 7.2894, 7.2883, 7.2881, 7.2879, 7.2876, 7.2873, 7.2862, 7.2867, 7.2856, 7.2862, 7.2859, 7.2858, 7.2864, 7.2861, 7.2858, 7.2864, 7.2861, 7.2859, 7.2866, 7.2863, 7.2861, 7.286, 7.2857, 7.2864, 7.2861, 7.2858, 7.2855, 7.2861, 7.285, 7.2856, 7.286, 7.2858, 7.2855, 7.2856, 7.2853, 7.2851, 7.2848, 7.2845, 7.2851, 7.2849, 7.2855, 7.2852, 7.2849, 7.2863, 7.2869, 7.2883, 7.288, 7.288, 7.2881, 7.2887, 7.2885, 7.289, 7.2887, 7.2893, 7.2899, 7.2905, 7.2902, 7.2899, 7.2905, 7.2911, 7.2908, 7.2905, 7.291, 7.29, 7.2897, 7.2913, 7.2911, 7.2909, 7.2915, 7.2912, 7.2918, 7.2923, 7.2922, 7.292, 7.2918, 7.2915, 7.2921, 7.2918, 7.2923, 7.292, 7.2926, 7.2924, 7.293, 7.2929, 7.2935, 7.2933, 7.2922, 7.2921, 7.2918, 7.2916, 7.2905, 7.2902, 7.2899, 7.2897, 7.2906, 7.2903, 7.29, 7.2889, 7.2895, 7.2893, 7.2901, 7.2899, 7.2896, 7.2901, 7.2908, 7.2918, 7.2915, 7.2914, 7.2911, 7.2908, 7.2906, 7.2904, 7.2903, 7.2909, 7.2907, 7.2904, 7.2902, 7.2899, 7.2904, 7.2903, 7.2905, 7.2904, 7.2904, 7.2901, 7.2898, 7.2895, 7.2892, 7.2889, 7.2886, 7.2883, 7.288, 7.2885, 7.2891, 7.2888, 7.2904, 7.2909, 7.2907, 7.2904, 7.2911, 7.2909, 7.2909, 7.2906, 7.2905, 7.2903, 7.29, 7.2897, 7.2895, 7.2893, 7.289, 7.288, 7.288, 7.2877, 7.2878, 7.2867, 7.2865, 7.2879, 7.291, 7.2907, 7.2905, 7.2911, 7.2908, 7.2905, 7.291, 7.2907, 7.2904, 7.291, 7.2907, 7.2904, 7.2902, 7.2901, 7.2898, 7.2895, 7.2892, 7.2898, 7.2897, 7.2902, 7.2901, 7.2907, 7.2904, 7.291, 7.2909, 7.2915, 7.2912, 7.2918, 7.2932, 7.2922, 7.2928, 7.2925, 7.2922, 7.292, 7.2925, 7.2923, 7.292, 7.2918, 7.2915, 7.2913, 7.291, 7.2907, 7.2904, 7.2901, 7.2898, 7.2896, 7.2893, 7.2891, 7.2889, 7.2895, 7.2892, 7.2897, 7.2895, 7.2892, 7.2897, 7.2897, 7.2894, 7.29, 7.2899, 7.2897, 7.2894, 7.2891, 7.2889, 7.2886, 7.2883, 7.2888, 7.2893, 7.289, 7.2888, 7.2885, 7.2884, 7.2882, 7.2879, 7.2872, 7.2869, 7.2866, 7.2866, 7.2863, 7.2869, 7.2867, 7.2864, 7.2863, 7.2861, 7.2859, 7.2856, 7.2854, 7.2852, 7.2849, 7.2864, 7.2862, 7.2859, 7.2849, 7.2847, 7.2844, 7.2841, 7.2838, 7.2844, 7.2841, 7.2838, 7.2835, 7.2833, 7.2832, 7.2829, 7.2826, 7.2823, 7.282, 7.2826, 7.2832, 7.2829, 7.2827, 7.2824, 7.2825, 7.284, 7.2846, 7.2845, 7.2842, 7.2867, 7.2868, 7.2869, 7.2867, 7.2864, 7.2862, 7.2867, 7.2873, 7.2871, 7.2868, 7.2867, 7.2856, 7.2853, 7.2859, 7.2857, 7.2854, 7.2851, 7.2848, 7.2846, 7.2843, 7.284, 7.2846, 7.2869, 7.2867, 7.2866, 7.2863, 7.2869, 7.2866, 7.2863, 7.2861, 7.2858, 7.2855, 7.2852, 7.2849, 7.287, 7.2867, 7.2873, 7.2871, 7.2868, 7.2886, 7.2885, 7.2883, 7.288, 7.2877, 7.2874, 7.288, 7.2877, 7.2882, 7.2879, 7.2876, 7.2881, 7.2878, 7.2875, 7.2881, 7.2887, 7.2884, 7.2882, 7.2879, 7.2885, 7.2882, 7.2879, 7.2876, 7.2873, 7.2878, 7.2875, 7.2873, 7.287, 7.2876, 7.2873, 7.287, 7.2883, 7.2889, 7.2886, 7.2883, 7.288, 7.2877, 7.2875, 7.2873, 7.287, 7.2867, 7.2864, 7.2862, 7.2868, 7.2881, 7.2886, 7.2884, 7.29, 7.2901, 7.2898, 7.2895, 7.29, 7.2898, 7.2911, 7.2909, 7.2919, 7.2917, 7.2908, 7.2905, 7.2902, 7.2908, 7.2919, 7.2916, 7.2913, 7.291, 7.2915, 7.2913, 7.2919, 7.2916, 7.2906, 7.2903, 7.2893, 7.2891, 7.2888, 7.2912, 7.2918, 7.2916, 7.2921, 7.2926, 7.2923, 7.2913, 7.291, 7.2907, 7.2905, 7.2911, 7.2917, 7.2915, 7.2914, 7.2911, 7.2917, 7.2915, 7.2913, 7.2911, 7.2932, 7.2938, 7.2936, 7.2942, 7.2939, 7.2938, 7.2935, 7.2932, 7.2937, 7.2959, 7.2965, 7.2963, 7.297, 7.2968, 7.2965, 7.2966, 7.2964, 7.297, 7.2967, 7.2965, 7.2962, 7.2972, 7.2977, 7.2983, 7.2988, 7.2994, 7.2991, 7.2989, 7.2994, 7.2991, 7.2988, 7.2985, 7.299, 7.3012, 7.3009, 7.3023, 7.3029, 7.3026, 7.3024, 7.3022, 7.302, 7.3017, 7.3014, 7.3011, 7.3016, 7.3021, 7.3034, 7.304, 7.3037, 7.3043, 7.3041, 7.3039, 7.3036, 7.3027, 7.3025, 7.3031, 7.303, 7.303, 7.3028, 7.3025, 7.3023, 7.302, 7.3017, 7.3015, 7.3012, 7.3012, 7.301, 7.3007, 7.3004, 7.301, 7.3017, 7.3014, 7.3011, 7.3009, 7.3008, 7.3006, 7.3012, 7.3018, 7.3024, 7.303, 7.3028, 7.3034, 7.304, 7.3047, 7.3052, 7.3052, 7.3049, 7.3062, 7.3059, 7.3057, 7.3054, 7.3052, 7.305, 7.3055, 7.3053, 7.3056, 7.3061, 7.3066, 7.3072, 7.3077, 7.3067, 7.3066, 7.3064, 7.3062, 7.3052, 7.3049, 7.3047, 7.3052, 7.3057, 7.3054, 7.3052, 7.3057, 7.3054, 7.3051, 7.3049, 7.3054, 7.3051, 7.3056, 7.3053, 7.3051, 7.3064, 7.3062, 7.3059, 7.3064, 7.307, 7.3067, 7.3065, 7.3062, 7.306, 7.3057, 7.3058, 7.3055, 7.3054, 7.3051, 7.3049, 7.3046, 7.3051, 7.3057, 7.3054, 7.3051, 7.3048, 7.3054, 7.306, 7.3057, 7.3062, 7.3061, 7.3059, 7.3064, 7.3061, 7.3059, 7.3057, 7.3047, 7.3046, 7.3052, 7.3052, 7.305, 7.3047, 7.3044, 7.3042, 7.3039, 7.3044, 7.3042, 7.3039, 7.3037, 7.3056, 7.3054, 7.3052, 7.3057, 7.3054, 7.3082, 7.3084, 7.3089, 7.3086, 7.3098, 7.3097, 7.3096, 7.3094, 7.3091, 7.3088, 7.3094, 7.3099, 7.3096, 7.3093, 7.309, 7.3088, 7.3085, 7.3083, 7.3081, 7.3078, 7.3086, 7.3084, 7.3082, 7.3087, 7.3077, 7.3074, 7.3071, 7.3077, 7.3074, 7.3072, 7.3072, 7.3069, 7.3074, 7.3098, 7.3095, 7.3093, 7.3084, 7.3083, 7.3088, 7.3085, 7.309, 7.3087, 7.3084, 7.3105, 7.3118, 7.3115, 7.3112, 7.3117, 7.3122, 7.3119, 7.3116, 7.3113, 7.3118, 7.3123, 7.312, 7.3117, 7.3123, 7.3114, 7.3112, 7.3109, 7.3124, 7.3121, 7.3118, 7.3117, 7.3114, 7.3114, 7.3112, 7.3109, 7.3108, 7.3105, 7.3102, 7.3099, 7.3098, 7.3096, 7.3093, 7.3091, 7.3088, 7.3085, 7.3083, 7.308, 7.3078, 7.3076, 7.3073, 7.307, 7.3068, 7.3066, 7.3063, 7.3061, 7.3059, 7.3056, 7.3054, 7.3051, 7.3048, 7.3056, 7.3053, 7.3058, 7.3057, 7.3063, 7.3061, 7.3074, 7.3072, 7.3077, 7.3083, 7.308, 7.3078, 7.3085, 7.3083, 7.308, 7.3085, 7.3087, 7.3086, 7.308, 7.3079, 7.3078, 7.3071, 7.3068, 7.3065, 7.3063, 7.3064, 7.3062, 7.3062, 7.3062, 7.3061, 7.3058, 7.3057, 7.3055, 7.3055, 7.3053, 7.306, 7.3058, 7.3064, 7.3062, 7.3069, 7.3066, 7.3073, 7.3072, 7.3077, 7.3076, 7.3083, 7.3081, 7.3087, 7.3085, 7.3083, 7.3081, 7.3079, 7.3079, 7.3084, 7.3083, 7.3089, 7.3086, 7.3083, 7.3081, 7.3079, 7.3077, 7.3075, 7.3073, 7.3072, 7.3071, 7.3072, 7.3071, 7.3069], '192.168.122.115': [5.4479, 8.4339, 7.4905, 7.1183, 6.8687, 6.6239, 7.2199, 7.0406, 6.8565, 7.3715, 7.1747, 6.6264, 6.9607, 6.8714, 6.8073, 6.7211, 6.6461, 6.913, 6.8471, 6.7827, 6.7435, 6.7005, 6.6567, 6.618, 6.5746, 6.7393, 6.707, 6.8426, 6.6252, 6.5964, 6.5669, 6.5357, 6.5092, 6.6347, 6.6091, 6.7442, 6.716, 6.8391, 6.8006, 6.7815, 6.8326, 6.8316, 6.9173, 6.9245, 6.8867, 6.8519, 6.8312, 6.7998, 6.7801, 6.8314, 6.9284, 6.896, 6.8718, 6.7639, 6.833, 6.8311, 6.8994, 6.8781, 6.8573, 6.8441, 6.8253, 6.7257, 6.7112, 6.7787, 6.6811, 6.6596, 6.6387, 6.6208, 6.6017, 6.5826, 6.5774, 6.5722, 6.5582, 6.6218, 6.6195, 6.6088, 6.5354, 6.5234, 6.5785, 6.63, 6.6157, 6.6017, 6.5886, 6.5823, 6.5673, 6.5002, 6.5498, 6.5975, 6.5842, 6.5706, 6.5621, 6.5496, 6.5387, 6.5826, 6.5726, 6.5604, 6.5485, 6.5428, 6.5307, 6.5213, 6.5105, 6.5504, 6.5921, 6.6016, 6.5937, 6.5931, 6.588, 6.5835, 6.5725, 6.5672, 6.5569, 6.5028, 6.4921, 6.4846, 6.4821, 6.4307, 6.4247, 6.4257, 6.4218, 6.4204, 6.4119, 6.4064, 6.4407, 6.4315, 6.4644, 6.4855, 6.5188, 6.5138, 6.5227, 6.5703, 6.6034, 6.5947, 6.6256, 6.6632, 6.6533, 6.6467, 6.6401, 6.6322, 6.6299, 6.6222, 6.6203, 6.6185, 6.687, 6.6786, 6.7079, 6.7016, 6.6933, 6.6861, 6.6789, 6.6719, 6.6625, 6.6535, 6.6441, 6.6361, 6.6624, 6.6577, 6.6205, 6.648, 6.6744, 6.6682, 6.6615, 6.6869, 6.6792, 6.707, 6.669, 6.6945, 6.7208, 6.7453, 6.7998, 6.8025, 6.7937, 6.7905, 6.7903, 6.8132, 6.8065, 6.7982, 6.8188, 6.8105, 6.8331, 6.8571, 6.8496, 6.8729, 6.865, 6.8576, 6.8791, 6.8446, 6.8359, 6.8867, 6.9067, 6.9038, 6.9065, 6.8982, 6.8908, 6.9116, 6.9609, 6.9539, 7.0009, 6.9927, 7.0373, 7.0363, 7.0068, 6.9986, 6.9913, 7.0095, 7.0039, 7.0228, 7.0162, 7.0346, 7.0286, 7.0233, 7.0412, 7.0329, 7.0319, 7.0501, 7.0436, 7.04, 7.0334, 7.0251, 7.0187, 7.0123, 7.0295, 7.0217, 7.0162, 7.0135, 7.006, 7.0224, 7.0156, 7.0336, 7.0266, 7.0437, 7.0492, 7.0413, 7.0164, 7.0332, 7.0271, 7.0195, 7.0145, 7.0076, 6.9804, 6.9735, 6.9686, 6.9627, 6.9582, 6.9537, 6.9717, 6.9678, 6.9759, 6.9707, 6.9877, 6.9806, 6.9741, 6.9673, 6.9827, 6.9763, 6.9918, 7.0063, 6.9997, 7.0141, 7.0284, 7.022, 7.018, 7.0143, 7.0509, 7.0444, 7.0397, 7.0331, 7.0268, 7.0209, 7.017, 7.0143, 7.0103, 7.0038, 7.0083, 6.9847, 6.9984, 6.9926, 7.0066, 6.9837, 6.9782, 6.9559, 6.969, 6.9633, 6.9578, 6.9354, 6.9302, 6.9242, 6.9186, 6.9311, 6.9349, 6.9305, 6.9249, 6.9197, 6.9145, 6.9094, 6.9104, 6.9057, 6.901, 6.8963, 6.9361, 6.9334, 6.9281, 6.9236, 6.9184, 6.9156, 6.9126, 6.9437, 6.9391, 6.9392, 6.935, 6.9538, 6.9656, 6.9621, 6.9577, 6.9553, 6.9533, 6.9499, 6.946, 6.9426, 6.956, 6.9692, 6.9691, 6.965, 6.9757, 6.9744, 6.9724, 6.9872, 6.9827, 6.9956, 6.9903, 7.0009, 6.9954, 6.9904, 7.0029, 6.9982, 7.0096, 7.0055, 7.0051, 7.0003, 6.997, 7.0076, 7.0044, 6.9995, 6.9945, 6.9899, 6.9854, 6.9806, 6.9775, 6.9885, 6.9848, 6.9957, 6.9913, 6.9882, 6.9836, 6.9796, 6.9908, 6.9863, 6.9821, 6.9791, 6.9748, 6.9701, 6.9674, 6.9628, 6.9587, 6.9695, 6.9797, 6.9751, 6.9718, 7.0102, 7.0073, 7.0034, 6.9998, 7.0103, 7.0198, 7.0153, 7.0127, 7.0085, 7.0043, 6.9999, 7.0105, 7.0063, 7.0158, 7.0138, 7.009, 7.0046, 7.0145, 7.01, 6.9943, 6.9913, 6.9878, 6.9853, 6.9947, 7.0043, 7.0005, 7.01, 7.006, 7.0018, 6.9976, 6.9948, 6.9915, 7.0328, 7.0286, 7.0246, 7.0204, 7.0299, 7.0255, 7.0356, 7.0319, 7.041, 7.0409, 7.0378, 7.0341, 7.0313, 7.0274, 7.0234, 7.0198, 7.0041, 7.001, 6.9975, 7.0193, 7.0152, 7.0241, 7.0586, 7.056, 7.0518, 7.0871, 7.109, 7.0943, 7.1126, 7.1086, 7.107, 7.1036, 7.1011, 7.0972, 7.0942, 7.1031, 7.1369, 7.1449, 7.142, 7.1268, 7.1236, 7.121, 7.1203, 7.1415, 7.1499, 7.1577, 7.1536, 7.1511, 7.1602, 7.1456, 7.1419, 7.138, 7.134, 7.1416, 7.1272, 7.1347, 7.1428, 7.1391, 7.1358, 7.1447, 7.1415, 7.1273, 7.1269, 7.1234, 7.1204, 7.1185, 7.1145, 7.1566, 7.1557, 7.1641, 7.1606, 7.1577, 7.155, 7.1529, 7.1392, 7.1421, 7.1399, 7.1373, 7.1342, 7.1316, 7.13, 7.1379, 7.1347, 7.134, 7.1311, 7.1279, 7.1246, 7.1207, 7.1171, 7.1136, 7.1218, 7.1185, 7.115, 7.1144, 7.1111, 7.1077, 7.1045, 7.1018, 7.1014, 7.0987, 7.0976, 7.0845, 7.0715, 7.0685, 7.0662, 7.0626, 7.0513, 7.039, 7.0367, 7.0334, 7.0323, 7.0305, 7.0279, 7.0364, 7.0337, 7.0303, 7.027, 7.0246, 7.0226, 7.0212, 7.0195, 7.0166, 7.0139, 7.0112, 7.0078, 7.0149, 7.0118, 7.0094, 7.0062, 7.0046, 7.0016, 6.9984, 6.9952, 6.9929, 6.9905, 6.988, 6.9857, 7.0103, 7.01, 7.0085, 7.0063, 7.0042, 7.006, 7.0029, 6.9998, 6.9998, 6.9967, 6.995, 6.9928, 6.9905, 6.9965, 6.9933, 6.9946, 6.9924, 6.9891, 6.9877, 6.9854, 6.9829, 6.9807, 6.9871, 6.979, 6.9769, 6.974, 6.9755, 6.973, 6.9703, 6.9769, 6.9751, 6.9732, 6.98, 6.9869, 7.033, 7.0307, 7.0279, 7.0345, 7.0328, 7.0298, 7.0273, 7.0249, 7.022, 7.0302, 7.0279, 7.0256, 7.0229, 7.0212, 7.0267, 7.0338, 7.0401, 7.0474, 7.0449, 7.0422, 7.0496, 7.0591, 7.0578, 7.0558, 7.0532, 7.06, 7.0675, 7.0565, 7.055, 7.0617, 7.0605, 7.0669, 7.065, 7.0633, 7.061, 7.0682, 7.0657, 7.0629, 7.0606, 7.059, 7.0577, 7.056, 7.0627, 7.0605, 7.0578, 7.0568, 7.0633, 7.0546, 7.0858, 7.1013, 7.1247, 7.1393, 7.1449, 7.151, 7.1569, 7.1541, 7.1514, 7.1487, 7.146, 7.1441, 7.1344, 7.1405, 7.1384, 7.1527, 7.1512, 7.1493, 7.1466, 7.1438, 7.1421, 7.1421, 7.148, 7.1455, 7.1439, 7.1411, 7.1385, 7.1387, 7.1448, 7.142, 7.1496, 7.1475, 7.1448, 7.1437, 7.1424, 7.1399, 7.1454, 7.1428, 7.1486, 7.1481, 7.1538, 7.1602, 7.1574, 7.1624, 7.1595, 7.1574, 7.1547, 7.1521, 7.1571, 7.1477, 7.1532, 7.1503, 7.1645, 7.162, 7.1593, 7.1648, 7.1624, 7.1674, 7.1674, 7.165, 7.1626, 7.168, 7.1657, 7.1631, 7.1606, 7.1593, 7.1647, 7.1625, 7.1684, 7.1663, 7.164, 7.162, 7.1597, 7.1571, 7.1545, 7.1602, 7.166, 7.1635, 7.1621, 7.1538, 7.1511, 7.1563, 7.1547, 7.1596, 7.1643, 7.1695, 7.1668, 7.1644, 7.1619, 7.1598, 7.1506, 7.1485, 7.1472, 7.1563, 7.1618, 7.1595, 7.1595, 7.1572, 7.1564, 7.1475, 7.1452, 7.1436, 7.1416, 7.1468, 7.1444, 7.1431, 7.148, 7.1532, 7.1509, 7.1484, 7.1466, 7.1381, 7.1357, 7.1408, 7.1317, 7.1291, 7.1266, 7.1241, 7.1216, 7.1191, 7.1243, 7.123, 7.1215, 7.1205, 7.1254, 7.1247, 7.1296, 7.1276, 7.1257, 7.1234, 7.1284, 7.127, 7.1247, 7.1298, 7.1284, 7.1333, 7.1309, 7.1422, 7.1398, 7.1375, 7.135, 7.1327, 7.1309, 7.1291, 7.1343, 7.132, 7.1296, 7.1273, 7.1187, 7.1169, 7.1442, 7.1555, 7.1539, 7.1517, 7.1493, 7.1541, 7.1589, 7.1576, 7.1554, 7.1531, 7.1516, 7.15, 7.1419, 7.1395, 7.1388, 7.1365, 7.1349, 7.14, 7.1446, 7.1494, 7.1473, 7.1452, 7.1436, 7.1483, 7.1528, 7.1507, 7.1488, 7.1466, 7.1449, 7.149, 7.1475, 7.1526, 7.1505, 7.1486, 7.1462, 7.1444, 7.1425, 7.1401, 7.138, 7.1362, 7.1344, 7.1561, 7.1547, 7.1524, 7.1523, 7.1503, 7.148, 7.1457, 7.15, 7.1487, 7.1467, 7.1447, 7.1425, 7.1405, 7.1386, 7.1366, 7.1293, 7.1284, 7.1265, 7.127, 7.1283, 7.1261, 7.124, 7.1221, 7.1206, 7.1132, 7.113, 7.1175, 7.1155, 7.12, 7.1183, 7.1173, 7.1153, 7.1132, 7.1174, 7.1222, 7.1207, 7.1187, 7.1308, 7.129, 7.1272, 7.1253, 7.1231, 7.1214, 7.1195, 7.1182, 7.1162, 7.1148, 7.1127, 7.117, 7.1094, 7.1078, 7.1122, 7.1102, 7.1083, 7.1124, 7.1107, 7.109, 7.1074, 7.1116, 7.1104, 7.1085, 7.1064, 7.1106, 7.1086, 7.1071, 7.1118, 7.1159, 7.1159, 7.121, 7.1192, 7.1177, 7.116, 7.115, 7.1322, 7.1371, 7.1355, 7.1339, 7.1324, 7.1368, 7.1347, 7.133, 7.1313, 7.1371, 7.1383, 7.1425, 7.1406, 7.1411, 7.1463, 7.1445, 7.1489, 7.1474, 7.1459, 7.1438, 7.1421, 7.1573, 7.1559, 7.1539, 7.152, 7.1506, 7.1489, 7.153, 7.1512, 7.1498, 7.1538, 7.1577, 7.1558, 7.1537, 7.158, 7.1621, 7.1607, 7.1647, 7.1687, 7.1667, 7.165, 7.1688, 7.167, 7.1651, 7.1641, 7.168, 7.1661, 7.1695, 7.1677, 7.1658, 7.1638, 7.162, 7.1601, 7.1638, 7.1567, 7.1549, 7.1697, 7.1689, 7.1672, 7.1653, 7.1634, 7.1615, 7.1596, 7.1581, 7.162, 7.16, 7.158, 7.1621, 7.1828, 7.1809, 7.1793, 7.184, 7.182, 7.1804, 7.1795, 7.1781, 7.1825, 7.1756, 7.1739, 7.1726, 7.1707, 7.1747, 7.1732, 7.1771, 7.1808, 7.179, 7.1772, 7.176, 7.1744, 7.1725, 7.1708, 7.1745, 7.1726, 7.1716, 7.1698, 7.1731, 7.1712, 7.1694, 7.168, 7.1663, 7.1645, 7.1627, 7.1612, 7.1593, 7.158, 7.1565, 7.1554, 7.1539, 7.1578, 7.156, 7.1543, 7.1528, 7.1511, 7.1548, 7.1529, 7.1567, 7.1559, 7.1542, 7.1529, 7.151, 7.1497, 7.1479, 7.147, 7.1562, 7.155, 7.1538, 7.1681, 7.1663, 7.165, 7.1634, 7.1616, 7.1599, 7.1581, 7.1562, 7.1546, 7.1532, 7.1517, 7.1501, 7.1486, 7.1468, 7.1452, 7.1439, 7.1424, 7.1407, 7.1391, 7.1375, 7.1368, 7.1353, 7.1361, 7.1344, 7.1328, 7.1311, 7.1293, 7.1282, 7.1269, 7.1252, 7.124, 7.1228, 7.1211, 7.1193, 7.1179, 7.1316, 7.1452, 7.1438, 7.1419, 7.1421, 7.141, 7.1392, 7.1375, 7.1366, 7.1349, 7.1337, 7.1371, 7.1358, 7.1341, 7.1373, 7.1356, 7.1341, 7.1372, 7.1358, 7.1347, 7.1333, 7.1322, 7.1353, 7.1347, 7.1382, 7.1366, 7.135, 7.1346, 7.134, 7.1434, 7.1424, 7.1411, 7.1401, 7.1389, 7.1423, 7.1412, 7.14, 7.1431, 7.1418, 7.1453, 7.1484, 7.1468, 7.1502, 7.1487, 7.1522, 7.1506, 7.149, 7.1521, 7.1553, 7.1548, 7.1535, 7.1522, 7.1521, 7.1504, 7.1537, 7.1606, 7.1596, 7.1579, 7.1564, 7.1558, 7.1588, 7.1571, 7.1554, 7.1539, 7.1523, 7.1508, 7.1495, 7.1487, 7.1471, 7.1456, 7.144, 7.1425, 7.1413, 7.1397, 7.1389, 7.1479, 7.1467, 7.1451, 7.1435, 7.143, 7.1419, 7.1454, 7.1442, 7.1426, 7.1411, 7.14, 7.1383, 7.1372, 7.1409, 7.1448, 7.1431, 7.1464, 7.1449, 7.1439, 7.1429, 7.1502, 7.1485, 7.1469, 7.1456, 7.1445, 7.1435, 7.142, 7.1455, 7.1628, 7.1612, 7.1643, 7.1627, 7.1617, 7.1603, 7.1591, 7.1577, 7.157, 7.16, 7.1584, 7.1578, 7.1567, 7.1551, 7.1537, 7.1521, 7.1511, 7.1541, 7.1528, 7.1513, 7.1546, 7.1578, 7.1566, 7.1554, 7.1539, 7.1523, 7.151, 7.1498, 7.1526, 7.1558, 7.1549, 7.1538, 7.1525, 7.1549, 7.158, 7.1565, 7.1596, 7.1627, 7.1612, 7.1644, 7.1632, 7.1722, 7.1735, 7.1722, 7.1711, 7.1699, 7.1774, 7.185, 7.1836, 7.1865, 7.1891, 7.1879, 7.1909, 7.1893, 7.1885, 7.1868, 7.1942, 7.197, 7.1956, 7.1985, 7.2014, 7.2004, 7.1989, 7.2004, 7.1998, 7.2027, 7.2011, 7.1996, 7.1983, 7.1968, 7.1957, 7.1944, 7.1929, 7.1918, 7.1955, 7.1942, 7.1972, 7.1959, 7.1943, 7.1973, 7.1959, 7.1991, 7.2023, 7.2012, 7.2043, 7.2028, 7.2014, 7.2043, 7.2033, 7.2018, 7.2006, 7.1994, 7.198, 7.2016, 7.2046, 7.2074, 7.2062, 7.209, 7.2117, 7.2108, 7.2102, 7.2087, 7.2072, 7.2059, 7.2045, 7.2072, 7.2057, 7.205, 7.2037, 7.2099, 7.2087, 7.2113, 7.2156, 7.2191, 7.2176, 7.2163, 7.2192, 7.2223, 7.2253, 7.224, 7.2271, 7.227, 7.2258, 7.2244, 7.2271, 7.2302, 7.2289, 7.2287, 7.2273, 7.2258, 7.2247, 7.224, 7.2233, 7.2223, 7.2222, 7.2214, 7.22, 7.2187, 7.2181, 7.2166, 7.2196, 7.2194, 7.2219, 7.2208, 7.2236, 7.2225, 7.2216, 7.2205, 7.2222, 7.2213, 7.2243, 7.2269, 7.2298, 7.2284, 7.2269, 7.2255, 7.2284, 7.2276, 7.2263, 7.2249, 7.2277, 7.2263, 7.2248, 7.22, 7.219, 7.2178, 7.2165, 7.2153, 7.2143, 7.2134, 7.209, 7.2077, 7.2103, 7.2129, 7.2156, 7.2141, 7.2169, 7.2156, 7.2182, 7.2209, 7.2195, 7.2183, 7.2173, 7.2123, 7.211, 7.2101, 7.2128, 7.2078, 7.2064, 7.2056, 7.2047, 7.2034, 7.202, 7.2031, 7.2017, 7.2004, 7.1991, 7.202, 7.2007, 7.1994, 7.1981, 7.1968, 7.1995, 7.1982, 7.1971, 7.1957, 7.1944, 7.197, 7.1958, 7.1944, 7.1931, 7.1919, 7.1916, 7.1954, 7.1956, 7.1943, 7.1931, 7.1919, 7.1946, 7.1932, 7.1921, 7.1908, 7.1894, 7.1881, 7.1868, 7.1855, 7.1806, 7.1832, 7.1831, 7.1867, 7.1857, 7.1848, 7.1835, 7.1825, 7.1854, 7.1845, 7.1876, 7.1868, 7.1856, 7.1844, 7.1868, 7.193, 7.1958, 7.2023, 7.2082, 7.2071, 7.2095, 7.212, 7.2146, 7.2135, 7.2128, 7.2118, 7.211, 7.2136, 7.2126, 7.2152, 7.2183, 7.218, 7.2206, 7.2194, 7.2223, 7.2251, 7.2237, 7.2226, 7.2296, 7.2322, 7.2347, 7.2337, 7.2362, 7.2388, 7.2375, 7.2361, 7.2348, 7.2335, 7.2322, 7.2315, 7.2341, 7.2353, 7.2343, 7.2333, 7.2359, 7.2381, 7.2406, 7.2394, 7.2387, 7.2412, 7.2399, 7.2388, 7.2379, 7.2369, 7.2359, 7.2482, 7.2473, 7.2464, 7.2496, 7.2484, 7.2471, 7.2458, 7.2447, 7.2403, 7.2394, 7.2384, 7.2372, 7.2399, 7.2387, 7.2412, 7.2402, 7.2395, 7.2421, 7.2409, 7.2434, 7.2421, 7.2415, 7.2438, 7.2439, 7.2428, 7.2451, 7.2442, 7.2429, 7.2419, 7.2407, 7.2397, 7.2388, 7.2376, 7.24, 7.241, 7.2433, 7.2431, 7.2451, 7.2476, 7.253, 7.252, 7.2508, 7.2537, 7.2537, 7.2531, 7.2521, 7.2512, 7.25, 7.2487, 7.2485, 7.2485, 7.2487, 7.2651, 7.265, 7.2724, 7.271, 7.27, 7.27, 7.2691, 7.2678, 7.2665, 7.2657, 7.268, 7.2703, 7.2706, 7.273, 7.2717, 7.2705, 7.2693, 7.2688, 7.2676, 7.2664, 7.2667, 7.2657, 7.2656, 7.2645, 7.2634, 7.2628, 7.265, 7.2642, 7.2732, 7.2722, 7.2745, 7.2767, 7.2759, 7.2749, 7.2771, 7.2761, 7.2748, 7.2735, 7.2727, 7.2718, 7.274, 7.2728, 7.2722, 7.2712, 7.2704, 7.2691, 7.2682, 7.2672, 7.2741, 7.2765, 7.2789, 7.2747, 7.2734, 7.2723, 7.2733, 7.272, 7.2744, 7.2765, 7.2753, 7.2742, 7.2738, 7.2726, 7.2749, 7.2739, 7.2727, 7.2751, 7.2746, 7.2704, 7.2728, 7.2716, 7.2703, 7.2761, 7.2748, 7.2746, 7.274, 7.2728, 7.2718, 7.2675, 7.2665, 7.2652, 7.264, 7.2628, 7.2615, 7.2603, 7.2599, 7.2621, 7.2611, 7.2673, 7.266, 7.2648, 7.267, 7.2669, 7.2659, 7.2647, 7.2637, 7.2625, 7.2681, 7.2673, 7.2661, 7.2683, 7.2671, 7.2661, 7.2649, 7.268, 7.2702, 7.2691, 7.268, 7.2668, 7.2659, 7.2681, 7.2669, 7.266, 7.265, 7.2639, 7.2631, 7.2619, 7.264, 7.263, 7.2721, 7.2711, 7.2699, 7.2721, 7.2709, 7.2699, 7.2688, 7.2646, 7.2647, 7.2636, 7.2625, 7.2649, 7.2639, 7.2628, 7.2616, 7.2607, 7.2629, 7.2617, 7.2605, 7.2598, 7.2593, 7.2584, 7.2576, 7.2632, 7.2623, 7.2647, 7.2637, 7.2626, 7.2585, 7.2591, 7.2583, 7.2577, 7.2565, 7.2589, 7.2609, 7.2605, 7.2564, 7.2537, 7.2558, 7.2547, 7.2538, 7.2527, 7.2518, 7.254, 7.2529, 7.2519, 7.2507, 7.2467, 7.2456, 7.2445, 7.2436, 7.2426, 7.2414, 7.2404, 7.2426, 7.2449, 7.2414, 7.2406, 7.2371, 7.2365, 7.2368, 7.2371, 7.2406, 7.2398, 7.2358, 7.2351, 7.2373, 7.2361, 7.236, 7.2361, 7.2384, 7.2376, 7.2384, 7.2374, 7.2369, 7.236, 7.2352, 7.2342, 7.2333, 7.2322, 7.2316, 7.2316, 7.2305, 7.2328, 7.2317, 7.2312, 7.2274, 7.2263, 7.2259, 7.2278, 7.23, 7.232, 7.2337, 7.2347, 7.2341, 7.2368, 7.2361, 7.2382, 7.2371, 7.2384, 7.2378, 7.2373, 7.2374, 7.2457, 7.2449, 7.2438, 7.246, 7.2453, 7.2446, 7.2437, 7.2459, 7.2448, 7.2469, 7.2459, 7.2451, 7.247, 7.246, 7.2451, 7.244, 7.2436, 7.2425, 7.2415, 7.2377, 7.2366, 7.2355, 7.2344, 7.2364, 7.2384, 7.2351, 7.2371, 7.2363, 7.2384, 7.2435, 7.2426, 7.2417, 7.2411, 7.2402, 7.2391, 7.238, 7.2369, 7.2392, 7.2413, 7.2416, 7.2437, 7.2427, 7.2417, 7.2407, 7.2399, 7.2389, 7.2379, 7.2369, 7.2392, 7.2414, 7.2403, 7.2427, 7.2418, 7.2407, 7.2396, 7.2386, 7.2376, 7.2396, 7.2416, 7.2443, 7.2464, 7.2453, 7.2475, 7.2465, 7.2456, 7.2447, 7.2465, 7.2458, 7.248, 7.2471, 7.2463, 7.2486, 7.2477, 7.2467, 7.2459, 7.2425, 7.2474, 7.2466, 7.2429, 7.2422, 7.2412, 7.2402, 7.2406, 7.2396, 7.2386, 7.2377, 7.2368, 7.243, 7.2432, 7.2421, 7.2412, 7.2436, 7.2399, 7.2418, 7.2438, 7.243, 7.2429, 7.2419, 7.2412, 7.2402, 7.2396, 7.24, 7.2391, 7.2384, 7.2502, 7.252, 7.2513, 7.2531, 7.252, 7.2512, 7.253, 7.252, 7.2514, 7.2507, 7.2499, 7.249, 7.248, 7.247, 7.2489, 7.2508, 7.2497, 7.2462, 7.2452, 7.2444, 7.2434, 7.2454, 7.2446, 7.2411, 7.2406, 7.2395, 7.2388, 7.238, 7.237, 7.2363, 7.2353, 7.2348, 7.234, 7.2331, 7.2322, 7.232, 7.2315, 7.2335, 7.2325, 7.2317, 7.2366, 7.2357, 7.2347, 7.2366, 7.2357, 7.2377, 7.2369, 7.2359, 7.2351, 7.2343, 7.2333, 7.2353, 7.2347, 7.2344, 7.2334, 7.2329, 7.2318, 7.2308, 7.2298, 7.2288, 7.2281, 7.2276, 7.2296, 7.2288, 7.2306, 7.2297, 7.2316, 7.2306, 7.2296, 7.2316, 7.2313, 7.2306, 7.2325, 7.2316, 7.2335, 7.233, 7.2321, 7.2312, 7.2303, 7.2296, 7.2312, 7.2304, 7.2301, 7.2294, 7.2292, 7.2283, 7.2279, 7.2269, 7.2258, 7.2255, 7.2246, 7.2242, 7.2233, 7.2225, 7.2277, 7.2268, 7.2261, 7.2253, 7.2246, 7.2265, 7.2256, 7.2251, 7.2241, 7.2232, 7.2252, 7.2242, 7.2234, 7.2226, 7.2245, 7.2264, 7.2257, 7.2276, 7.2268, 7.2261, 7.2253, 7.227, 7.226, 7.2278, 7.2299, 7.2293, 7.2284, 7.2276, 7.2268, 7.226, 7.2251, 7.2242, 7.2259, 7.2249, 7.2244, 7.2237, 7.2227, 7.2218, 7.221, 7.22, 7.2191, 7.2181, 7.2173, 7.2144, 7.2136, 7.213, 7.2127, 7.212, 7.2112, 7.2112, 7.2131, 7.2124, 7.2142, 7.2203, 7.2195, 7.2213, 7.2232, 7.2262, 7.2254, 7.2246, 7.2265, 7.2256, 7.2247, 7.2237, 7.2229, 7.2247, 7.224, 7.2257, 7.2248, 7.2239, 7.2231, 7.2223, 7.2241, 7.2318, 7.2308, 7.2327, 7.2348, 7.2343, 7.2421, 7.2438, 7.2431, 7.2421, 7.2411, 7.2401, 7.2391, 7.2383, 7.2374, 7.2364, 7.238, 7.2371, 7.2363, 7.2361, 7.2351, 7.2342, 7.2359, 7.2376, 7.2394, 7.2387, 7.2383, 7.2374, 7.2392, 7.2386, 7.2379, 7.2377, 7.2367, 7.236, 7.235, 7.2341, 7.2332, 7.2325, 7.2315, 7.2437, 7.243, 7.242, 7.2412, 7.2405, 7.2396, 7.2387, 7.2377, 7.2368, 7.2359, 7.2376, 7.2367, 7.2359, 7.235, 7.2344, 7.2337, 7.2328, 7.232, 7.2357, 7.2375, 7.2393, 7.2411, 7.2402, 7.2419, 7.2412, 7.2403, 7.2396, 7.2392, 7.2383, 7.2374, 7.2392, 7.2383, 7.2374, 7.2347, 7.2347, 7.2338, 7.2329, 7.2382, 7.2408, 7.2425, 7.2415, 7.2406, 7.2397, 7.2389, 7.2381, 7.24, 7.2391, 7.2382, 7.2381, 7.2399, 7.2429, 7.2404, 7.2374, 7.2369, 7.2363, 7.2356, 7.2325, 7.2318, 7.2312, 7.2306, 7.23, 7.2293, 7.2288, 7.231, 7.2312, 7.2304, 7.2298, 7.2292, 7.2326, 7.2318, 7.231, 7.2328, 7.2347, 7.2341, 7.2332, 7.2324, 7.2315, 7.2306, 7.2298, 7.2315, 7.2334, 7.235, 7.2393, 7.2452, 7.245, 7.2495, 7.2539, 7.2581, 7.2578, 7.2593, 7.2639, 7.2656, 7.2652, 7.2646, 7.2691, 7.2683, 7.2675, 7.2694, 7.271, 7.2702, 7.2693, 7.2687, 7.2681, 7.2674, 7.2702, 7.2694, 7.2687, 7.2679, 7.2773, 7.2764, 7.2759, 7.2756, 7.2775, 7.2767, 7.2758, 7.2732, 7.2726, 7.2718, 7.271, 7.27, 7.2717, 7.2709, 7.2848, 7.2891, 7.2932, 7.2951, 7.2944, 7.2935, 7.2926, 7.2918, 7.291, 7.2902, 7.2892, 7.2887, 7.288, 7.2873, 7.2866, 7.2859, 7.2852, 7.2844, 7.2837, 7.283, 7.2821, 7.2812, 7.2808, 7.2825, 7.2818, 7.2811, 7.2803, 7.2796, 7.2793, 7.2784, 7.2778, 7.2769, 7.276, 7.2755, 7.2748, 7.274, 7.2735, 7.275, 7.2765, 7.2755, 7.2748, 7.2741, 7.2714, 7.273, 7.2723, 7.2714, 7.2762, 7.2735, 7.2727, 7.2718, 7.2688, 7.2684, 7.2682, 7.2674, 7.2646, 7.2638, 7.263, 7.2626, 7.2622, 7.2613, 7.2605, 7.2597, 7.2589, 7.2562, 7.2533, 7.253, 7.2524, 7.2517, 7.2512, 7.2506, 7.2501, 7.2518, 7.251, 7.2504, 7.2519, 7.251, 7.2501, 7.2494, 7.2485, 7.2478, 7.2493, 7.2487, 7.2483, 7.2499, 7.249, 7.2531, 7.2523, 7.2515, 7.2506, 7.2522, 7.2513, 7.2505, 7.2497, 7.2535, 7.2505, 7.2521, 7.2513, 7.2505, 7.2496, 7.2494, 7.2487, 7.2479, 7.2471, 7.2487, 7.2507, 7.25, 7.2495, 7.2487, 7.2503, 7.2501, 7.2516, 7.2509, 7.2502, 7.2497, 7.2491, 7.2516, 7.2531, 7.2523, 7.2516, 7.2531, 7.2547, 7.254, 7.2533, 7.2526, 7.2517, 7.2533, 7.2526, 7.2522, 7.2515, 7.2509, 7.2502, 7.2495, 7.2513, 7.2508, 7.2501, 7.2496, 7.2516, 7.2509, 7.2501, 7.2519, 7.2511, 7.2503, 7.2495, 7.2489, 7.2517, 7.251, 7.2503, 7.2475, 7.2468, 7.256, 7.2553, 7.2545, 7.2537, 7.2553, 7.2548, 7.254, 7.2533, 7.2549, 7.2541, 7.2557, 7.2549, 7.2541, 7.2558, 7.2552, 7.2549, 7.2541, 7.2556, 7.2572, 7.2565, 7.2608, 7.2656, 7.2673, 7.2668, 7.2664, 7.2655, 7.2672, 7.2666, 7.2666, 7.2685, 7.2677, 7.2669, 7.2662, 7.2655, 7.2652, 7.2646, 7.2618, 7.2611, 7.2629, 7.2623, 7.2616, 7.2588, 7.2582, 7.2575, 7.2593, 7.2585, 7.2602, 7.2594, 7.2588, 7.258, 7.2573, 7.2567, 7.2563, 7.2554, 7.2546, 7.2561, 7.2532, 7.2547, 7.2518, 7.2512, 7.2527, 7.2541, 7.2533, 7.2527, 7.2543, 7.2536, 7.2531, 7.2522, 7.2535, 7.253, 7.2525, 7.2518, 7.2517, 7.2531, 7.2545, 7.2538, 7.253, 7.2522, 7.2515, 7.2487, 7.2479, 7.2474, 7.2466, 7.2458, 7.2472, 7.2486, 7.2481, 7.2495, 7.2489, 7.2484, 7.2479, 7.2473, 7.2467, 7.2439, 7.2454, 7.245, 7.2442, 7.2459, 7.2478, 7.2473, 7.2488, 7.2484, 7.2499, 7.2493, 7.2512, 7.2527, 7.2541, 7.2577, 7.2615, 7.2607, 7.2622, 7.2641, 7.2656, 7.2648, 7.264, 7.2632, 7.2626, 7.2619, 7.2635, 7.2627, 7.2621, 7.2615, 7.2608, 7.2601, 7.2615, 7.261, 7.2603, 7.2596, 7.2591, 7.2583, 7.2574, 7.2588, 7.258, 7.2595, 7.2589, 7.267, 7.2665, 7.2661, 7.2655, 7.2672, 7.2702, 7.2698, 7.2691, 7.2685, 7.272, 7.2713, 7.2707, 7.2703, 7.2697, 7.2695, 7.2689, 7.2682, 7.2674, 7.267, 7.2694, 7.2766, 7.2759, 7.2732, 7.2728, 7.2727, 7.2741, 7.2736, 7.2728, 7.2744, 7.2716, 7.273, 7.2723, 7.2717, 7.2711, 7.2729, 7.2745, 7.2741, 7.2736, 7.2736, 7.273, 7.2723, 7.2717, 7.2709, 7.2701, 7.2736, 7.2731, 7.2746, 7.2765, 7.2757, 7.2751, 7.2723, 7.2716, 7.2709, 7.2703, 7.2698, 7.2691, 7.2686, 7.27, 7.2697, 7.269, 7.2685, 7.27, 7.2692, 7.2685, 7.2679, 7.2674, 7.267, 7.2684, 7.2676, 7.2669, 7.2668, 7.2712, 7.2705, 7.2698, 7.269, 7.2685, 7.2699, 7.2693, 7.2706, 7.27, 7.2692, 7.2686, 7.2679, 7.2675, 7.269, 7.2683, 7.2696, 7.269, 7.2686, 7.2679, 7.2699, 7.2695, 7.2689, 7.2704, 7.2696, 7.269, 7.2683, 7.2675, 7.2667, 7.266, 7.2654, 7.2647, 7.2646, 7.2639, 7.2634, 7.2628, 7.2621, 7.2595, 7.2588, 7.2581, 7.2577, 7.2571, 7.2567, 7.2561, 7.2556, 7.255, 7.2564, 7.2577, 7.2571, 7.2575, 7.257, 7.2564, 7.2557, 7.2549, 7.2546, 7.252, 7.2515, 7.2508, 7.2521, 7.2514, 7.2683, 7.2657, 7.2654, 7.2691, 7.2687, 7.2682, 7.2675, 7.2667, 7.266, 7.2718, 7.2711, 7.2709, 7.2702, 7.2716, 7.2709, 7.2725, 7.2718, 7.2733, 7.2748, 7.2741, 7.2734, 7.2748, 7.274, 7.2733, 7.2767, 7.2759, 7.2751, 7.2746, 7.2739, 7.2752, 7.2765, 7.2757, 7.277, 7.2812, 7.2811, 7.2811, 7.2804, 7.2799, 7.2792, 7.2786, 7.2779, 7.2772, 7.2785, 7.2781, 7.2775, 7.2789, 7.2782, 7.2818, 7.2813, 7.2807, 7.2801, 7.2795, 7.2789, 7.2787, 7.2779, 7.2772, 7.2764, 7.2757, 7.275, 7.2743, 7.2736, 7.271, 7.2704, 7.2717, 7.2729, 7.2723, 7.2718, 7.2711, 7.2728, 7.2724, 7.2717, 7.273, 7.2722, 7.2714, 7.2708, 7.2705, 7.2699, 7.2694, 7.2707, 7.272, 7.2713, 7.2727, 7.2722, 7.2716, 7.2709, 7.2703, 7.2706, 7.27, 7.2694, 7.2687, 7.2681, 7.2675, 7.2673, 7.2666, 7.2659, 7.2653, 7.2648, 7.2661, 7.2656, 7.2648, 7.2662, 7.2657, 7.265, 7.2662, 7.2675, 7.2674, 7.2673, 7.2666, 7.2659, 7.2653, 7.265, 7.2667, 7.2683, 7.2686, 7.2681, 7.2674, 7.2667, 7.2662, 7.2655, 7.2649, 7.2642, 7.2635, 7.2628, 7.2623, 7.2637, 7.263, 7.2634, 7.263, 7.2643, 7.2636, 7.2631, 7.2625, 7.2618, 7.2613, 7.2606, 7.26, 7.2595, 7.259, 7.2585, 7.2579, 7.2592, 7.2593, 7.2587, 7.2582, 7.2557, 7.2556, 7.2549, 7.2561, 7.2556, 7.2549, 7.2562, 7.2575, 7.2572, 7.2567, 7.2561, 7.2555, 7.2568, 7.2562, 7.2576, 7.2589, 7.2583, 7.2576, 7.2571, 7.2564, 7.2557, 7.2552, 7.2565, 7.2558, 7.257, 7.2563, 7.2556, 7.2549, 7.256, 7.2553, 7.2548, 7.2577, 7.2571, 7.2566, 7.2564, 7.2557, 7.2552, 7.2546, 7.2558, 7.257, 7.2547, 7.2541, 7.2553, 7.2548, 7.2541, 7.2553, 7.2567, 7.2562, 7.2555, 7.2548, 7.2541, 7.2554, 7.2574, 7.2576, 7.2573, 7.2566, 7.2578, 7.2591, 7.259, 7.2583, 7.2578, 7.2576, 7.2569, 7.2565, 7.2559, 7.2553, 7.2548, 7.256, 7.2553, 7.2546, 7.2541, 7.2553, 7.2568, 7.2563, 7.2558, 7.2552, 7.2565, 7.2577, 7.2576, 7.2571, 7.2566, 7.2561, 7.2556, 7.257, 7.2563, 7.2556, 7.2561, 7.2557, 7.257, 7.2584, 7.2596, 7.2592, 7.2586, 7.2599, 7.2593, 7.2597, 7.2616, 7.2629, 7.2626, 7.263, 7.2624, 7.2619, 7.2615, 7.2608, 7.2605, 7.2618, 7.2611, 7.2605, 7.2598, 7.2611, 7.2624, 7.2617, 7.261, 7.2622, 7.2618, 7.2611, 7.2606, 7.2599, 7.2593, 7.2607, 7.26, 7.2617, 7.261, 7.2603, 7.2597, 7.259, 7.2601, 7.2596, 7.2608, 7.2604, 7.26, 7.2594, 7.259, 7.2604, 7.2618, 7.2613, 7.2591, 7.2606, 7.2619, 7.2613, 7.2589, 7.2583, 7.2583, 7.2576, 7.2572, 7.2549, 7.2545, 7.2522, 7.2518, 7.2511, 7.2507, 7.2519, 7.2514, 7.2509, 7.254, 7.2553, 7.2547, 7.2542, 7.2536, 7.2529, 7.2526, 7.2538, 7.255, 7.2543, 7.2538, 7.2531, 7.2527, 7.254, 7.2554, 7.2549, 7.2562, 7.2557, 7.2552, 7.2551, 7.2544, 7.2557, 7.2551, 7.2546, 7.2589, 7.2585, 7.2578, 7.2591, 7.2584, 7.2578, 7.2594, 7.2588, 7.2591, 7.2587, 7.2584, 7.2581, 7.2578, 7.2571, 7.2567, 7.2561, 7.2556, 7.2551, 7.2528, 7.2524, 7.2519, 7.2514, 7.251, 7.2541, 7.2537, 7.2607, 7.2619, 7.2615, 7.264, 7.2653, 7.2648, 7.2642, 7.2657, 7.2651, 7.2645, 7.2622, 7.2635, 7.2648, 7.2642, 7.2638, 7.2633, 7.2627, 7.2621, 7.2615, 7.2622, 7.2634, 7.2633, 7.2646, 7.264, 7.2633, 7.2629, 7.2623, 7.2616, 7.2609, 7.2622, 7.2615, 7.2609, 7.2603, 7.2615, 7.261, 7.2604, 7.2598, 7.2597, 7.2609, 7.2603, 7.2689, 7.2682, 7.266, 7.2638, 7.2665, 7.266, 7.2653, 7.2665, 7.2661, 7.2673, 7.2685, 7.2681, 7.2696, 7.269, 7.2687, 7.2682, 7.2678, 7.2672, 7.2688, 7.2683, 7.2679, 7.2675, 7.267, 7.2684, 7.268, 7.2677, 7.2672, 7.2666, 7.266, 7.2654, 7.2649, 7.2643, 7.2655, 7.2667, 7.2678, 7.2674, 7.2671, 7.2665, 7.2683, 7.2694, 7.2687, 7.27, 7.2712, 7.2726, 7.2721, 7.2715, 7.2714, 7.2727, 7.2744, 7.2738, 7.2731, 7.2748, 7.2743, 7.2775, 7.2787, 7.2798, 7.2811, 7.2805, 7.2801, 7.2795, 7.2789, 7.2802, 7.2796, 7.279, 7.2802, 7.2797, 7.2792, 7.2786, 7.2781, 7.2777, 7.2771, 7.2784, 7.2778, 7.2785, 7.2779, 7.2774, 7.2787, 7.2782, 7.2776, 7.2774, 7.2786, 7.278, 7.2792, 7.2786, 7.278, 7.2757, 7.2735, 7.2789, 7.2801, 7.2797, 7.2817, 7.2812, 7.2806, 7.2818, 7.2812, 7.2806, 7.28, 7.2795, 7.279, 7.2785, 7.278, 7.2775, 7.2787, 7.2782, 7.2813, 7.2827, 7.2859, 7.2854, 7.285, 7.2845, 7.2842, 7.2854, 7.2848, 7.286, 7.2871, 7.2849, 7.2846, 7.2858, 7.2851, 7.2847, 7.2858, 7.2853, 7.2876, 7.287, 7.2865, 7.2878, 7.2872, 7.2868, 7.2881, 7.2876, 7.287, 7.2883, 7.2896, 7.2891, 7.2886, 7.2882, 7.2877, 7.2871, 7.2865, 7.2876, 7.2854, 7.2833, 7.2826, 7.2838, 7.2849, 7.2845, 7.2875, 7.2869, 7.294, 7.2952, 7.2946, 7.2942, 7.2936, 7.293, 7.2925, 7.2919, 7.2913, 7.2909, 7.292, 7.2914, 7.2908, 7.289, 7.2889, 7.2871, 7.2865, 7.2861, 7.289, 7.2887, 7.2881, 7.2876, 7.287, 7.2865, 7.2858, 7.2871, 7.2864, 7.2858, 7.287, 7.2863, 7.2857, 7.2851, 7.2867, 7.2863, 7.2857, 7.2851, 7.2845, 7.2856, 7.285, 7.2844, 7.2855, 7.2849, 7.2844, 7.284, 7.2836, 7.2847, 7.2842, 7.2836, 7.2831, 7.2828, 7.2822, 7.2833, 7.2828, 7.2823, 7.2834, 7.2831, 7.2827, 7.2839, 7.2833, 7.2828, 7.2825, 7.2821, 7.2817, 7.2813, 7.2824, 7.2819, 7.2815, 7.2812, 7.2809, 7.2803, 7.2816, 7.2828, 7.2822, 7.2816, 7.281, 7.2805, 7.2799, 7.2793, 7.2788, 7.2783, 7.2761, 7.2755, 7.2765, 7.2777, 7.2771, 7.279, 7.2784, 7.2778, 7.2773, 7.2769, 7.2781, 7.2777, 7.2789, 7.2786, 7.2784, 7.2778, 7.279, 7.2802, 7.2799, 7.281, 7.2804, 7.2798, 7.2809, 7.2803, 7.2798, 7.2793, 7.2787, 7.2782, 7.2778, 7.2773, 7.2768, 7.2765, 7.278, 7.2792, 7.2786, 7.278, 7.2776, 7.2772, 7.2783, 7.2777, 7.2771, 7.2766, 7.2777, 7.2771, 7.2768, 7.2762, 7.2756, 7.2752, 7.2763, 7.276, 7.2754, 7.2751, 7.273, 7.2726, 7.272, 7.2699, 7.2695, 7.2694, 7.2692, 7.2703, 7.2705, 7.2699, 7.2694, 7.2673, 7.2667, 7.2663, 7.2658, 7.2653, 7.2649, 7.2645, 7.2639, 7.2636, 7.2632, 7.2643, 7.2637, 7.2632, 7.2629, 7.2625, 7.2619, 7.2614, 7.2608, 7.2602, 7.2596, 7.2621, 7.2615, 7.261, 7.2604, 7.2598, 7.2609, 7.2629, 7.2624, 7.2606, 7.2618, 7.2615, 7.2612, 7.2608, 7.261, 7.2605, 7.2599, 7.2593, 7.2572, 7.2568, 7.2562, 7.2557, 7.2554, 7.255, 7.2544, 7.2538, 7.2539, 7.2533, 7.2527, 7.2523, 7.2535, 7.253, 7.2524, 7.2519, 7.253, 7.2525, 7.252, 7.2514, 7.2509, 7.2519, 7.2533, 7.2531, 7.2525, 7.2519, 7.2515, 7.2509, 7.2519, 7.2515, 7.251, 7.2506, 7.2517, 7.2513, 7.2507, 7.2502, 7.2497, 7.2493, 7.2488, 7.2498, 7.2494, 7.2492, 7.2503, 7.25, 7.2494, 7.25, 7.2497, 7.2491, 7.2486, 7.2481, 7.2477, 7.2471, 7.2467, 7.2462, 7.2473, 7.2496, 7.249, 7.2484, 7.2479, 7.2474, 7.2468, 7.2462, 7.2473, 7.2484, 7.2495, 7.2489, 7.2502, 7.2497, 7.2493, 7.2489, 7.25, 7.2511, 7.2507, 7.2501, 7.2501, 7.2497, 7.2492, 7.2502, 7.2498, 7.2493, 7.249, 7.2486, 7.2483, 7.2479, 7.248, 7.2476, 7.2472, 7.2467, 7.2451, 7.2464, 7.2459, 7.2455, 7.2466, 7.2477, 7.2473, 7.2484, 7.2478, 7.2477, 7.2474, 7.2475, 7.2469, 7.2466, 7.2462, 7.2458, 7.2452, 7.2447, 7.2441, 7.2436, 7.2446, 7.2456, 7.2451, 7.2448, 7.2459, 7.2469, 7.2465, 7.2461, 7.2443, 7.2438, 7.2432, 7.2426, 7.2437, 7.2448, 7.2445, 7.244, 7.2436, 7.2432, 7.2429, 7.2426, 7.2437, 7.2433, 7.2428, 7.2423, 7.2419, 7.24, 7.2411, 7.241, 7.2406, 7.2417, 7.2415, 7.2411, 7.2423, 7.244, 7.2451, 7.2431, 7.2427, 7.2438, 7.2434, 7.2429, 7.2425, 7.2421, 7.2416, 7.2413, 7.2424, 7.2419, 7.2413, 7.2441, 7.2436, 7.2431, 7.2446, 7.2441, 7.2437, 7.2432, 7.2428, 7.241, 7.2405, 7.2401, 7.2398, 7.2379, 7.2361, 7.2373, 7.2369, 7.2363, 7.236, 7.2356, 7.2352, 7.2353, 7.2363, 7.2357, 7.2355, 7.235, 7.2362, 7.2358, 7.2353, 7.2348, 7.2343, 7.2339, 7.235, 7.2346, 7.234, 7.2335, 7.233, 7.2311, 7.2306, 7.2316, 7.2316, 7.2326, 7.2323, 7.232, 7.2315, 7.2309, 7.2305, 7.2301, 7.2296, 7.2292, 7.2289, 7.2284, 7.228, 7.2291, 7.2285, 7.2281, 7.2277, 7.2273, 7.227, 7.228, 7.2289, 7.2285, 7.228, 7.2276, 7.2271, 7.2267, 7.2278, 7.229, 7.2287, 7.2298, 7.2293, 7.2303, 7.2298, 7.2292, 7.2287, 7.2283, 7.2266, 7.2263, 7.2259, 7.227, 7.2268, 7.2267, 7.2262, 7.227, 7.2265, 7.226, 7.2259, 7.2254, 7.2249, 7.2244, 7.2239, 7.2235, 7.223, 7.2226, 7.2221, 7.2232, 7.2227, 7.2226, 7.2283, 7.2279, 7.226, 7.2302, 7.2297, 7.2307, 7.2306, 7.2288, 7.2315, 7.231, 7.2306, 7.2301, 7.2296, 7.2292, 7.2293, 7.2304, 7.2313, 7.2323, 7.2333, 7.2328, 7.2337, 7.2333, 7.2329, 7.2338, 7.2334, 7.233, 7.2325, 7.2321, 7.2316, 7.2325, 7.232, 7.2329, 7.2326, 7.2336, 7.2331, 7.2341, 7.2339, 7.2334, 7.2333, 7.2343, 7.2354, 7.235, 7.2344, 7.234, 7.2335, 7.2331, 7.2326, 7.2321, 7.2318, 7.2321, 7.2316, 7.2318, 7.2328, 7.2325, 7.2321, 7.2317, 7.2357, 7.2352, 7.2347, 7.2343, 7.2339, 7.2349, 7.2344, 7.234, 7.235, 7.235, 7.2346, 7.2341, 7.2336, 7.233, 7.2325, 7.2321, 7.2337, 7.2334, 7.2331, 7.2326, 7.2337, 7.2332, 7.2333, 7.2346, 7.2342, 7.2337, 7.2337, 7.2348, 7.2343, 7.2338, 7.2348, 7.2346, 7.2341, 7.2336, 7.2333, 7.2328, 7.2323, 7.2334, 7.2331, 7.2326, 7.2322, 7.2317, 7.2312, 7.2308, 7.2303, 7.2299, 7.2309, 7.2307, 7.2305, 7.2301, 7.2296, 7.2307, 7.2362, 7.2356, 7.2338, 7.232, 7.2317, 7.2312, 7.2309, 7.2318, 7.2328, 7.2324, 7.2319, 7.2315, 7.231, 7.2335, 7.233, 7.2327, 7.2323, 7.2318, 7.2313, 7.2308, 7.2303, 7.2357, 7.2352, 7.2347, 7.2349, 7.2346, 7.237, 7.2365, 7.2364, 7.2361, 7.2357, 7.2353, 7.2349, 7.2361, 7.2358, 7.2353, 7.2349, 7.2359, 7.2354, 7.2351, 7.236, 7.2342, 7.2353, 7.2348, 7.2344, 7.2339, 7.2335, 7.2348, 7.2365, 7.236, 7.2355, 7.2352, 7.2352, 7.2347, 7.2342, 7.2337, 7.2333, 7.2344, 7.2342, 7.2338, 7.2348, 7.2344, 7.234, 7.2335, 7.2332, 7.2336, 7.2331, 7.2326, 7.2338, 7.2348, 7.2352, 7.2363, 7.2362, 7.2357, 7.2354, 7.235, 7.2346, 7.2355, 7.2352, 7.2376, 7.2373, 7.2382, 7.2378, 7.236, 7.2356, 7.2353, 7.235, 7.2345, 7.234, 7.2337, 7.2333, 7.2329, 7.2326, 7.2336, 7.2321, 7.2316, 7.2312, 7.2322, 7.2319, 7.2301, 7.2283, 7.2282, 7.2277, 7.2272, 7.2267, 7.2263, 7.2258, 7.2253, 7.2248, 7.2243, 7.2238, 7.2234, 7.223, 7.2242, 7.2238, 7.2234, 7.2229, 7.2224, 7.222, 7.2219, 7.223, 7.2226, 7.2237, 7.2233, 7.2229, 7.2237, 7.2232, 7.2242, 7.2238, 7.2247, 7.2244, 7.2239, 7.2234, 7.223, 7.2225, 7.2233, 7.2243, 7.2238, 7.2234, 7.2243, 7.2238, 7.2248, 7.2244, 7.2255, 7.2265, 7.2261, 7.2256, 7.2251, 7.2246, 7.2243, 7.2238, 7.2248, 7.2258, 7.2253, 7.225, 7.225, 7.2259, 7.2255, 7.2252, 7.2247, 7.2243, 7.2238, 7.2233, 7.2232, 7.2229, 7.2225, 7.2236, 7.2232, 7.2228, 7.2223, 7.2218, 7.221, 7.2206, 7.2201, 7.2199, 7.2195, 7.2219, 7.2287, 7.2295, 7.2292, 7.2307, 7.2317, 7.2382, 7.2391, 7.2388, 7.241, 7.2411, 7.242, 7.2429, 7.2426, 7.2422, 7.2424, 7.244, 7.2435, 7.243, 7.2426, 7.2421, 7.2437, 7.2446, 7.2435, 7.2435, 7.2432, 7.2428, 7.2424, 7.242, 7.2416, 7.2412, 7.2407, 7.2403, 7.2399, 7.2394, 7.2404, 7.2415, 7.2412, 7.242, 7.2416, 7.2412, 7.2422, 7.2418, 7.2413, 7.2422, 7.2432, 7.2428, 7.2439, 7.2448, 7.2445, 7.2456, 7.2466, 7.2477, 7.2473, 7.2483, 7.2492, 7.2501, 7.2496, 7.2478, 7.2488, 7.2484, 7.2508, 7.2517, 7.2513, 7.2522, 7.2527, 7.2523, 7.2532, 7.2527, 7.2522, 7.2517, 7.253, 7.2542, 7.2551, 7.2534, 7.2529, 7.2524, 7.2522, 7.2517, 7.2512, 7.2521, 7.253, 7.2525, 7.2521, 7.2516, 7.2512, 7.2508, 7.2503, 7.2499, 7.2509, 7.2505, 7.2502, 7.2502, 7.2497, 7.2496, 7.2491, 7.25, 7.2495, 7.2511, 7.2508, 7.2504, 7.2514, 7.2509, 7.2518, 7.2514, 7.2497, 7.2507, 7.2516, 7.2513, 7.2509, 7.2505, 7.2515, 7.2525, 7.2521, 7.2516, 7.252, 7.2515, 7.2511, 7.2507, 7.2503, 7.2511, 7.2506, 7.2514, 7.251, 7.2505, 7.2501, 7.2509, 7.2517, 7.2514, 7.2512, 7.251, 7.2506, 7.2492, 7.2488, 7.2484, 7.2494, 7.249, 7.2499, 7.2508, 7.2506, 7.2501, 7.2496, 7.2491, 7.25, 7.2497, 7.2493, 7.2503, 7.25, 7.2502, 7.2525, 7.2534, 7.2542, 7.2539, 7.2535, 7.2531, 7.254, 7.2563, 7.2563, 7.2572, 7.2568, 7.2564, 7.2561, 7.2556, 7.2539, 7.2547, 7.2543, 7.2539, 7.2534, 7.253, 7.2513, 7.2522, 7.2505, 7.2541, 7.2528, 7.2514, 7.251, 7.2505, 7.2514, 7.2511, 7.2506, 7.2516, 7.2511, 7.252, 7.2516, 7.2512, 7.2508, 7.2503, 7.2501, 7.25, 7.2495, 7.2491, 7.25, 7.2497, 7.2494, 7.2478, 7.2473, 7.2468, 7.2465, 7.2461, 7.2457, 7.2453, 7.2448, 7.2443, 7.2439, 7.2435, 7.2431, 7.2427, 7.2423, 7.2419, 7.2415, 7.241, 7.2406, 7.2402, 7.2397, 7.2392, 7.2389, 7.2385, 7.238, 7.2376, 7.2372, 7.2368, 7.2363, 7.2359, 7.2355, 7.2366, 7.2362, 7.2374, 7.2371, 7.2367, 7.2363, 7.2361, 7.2357, 7.2354, 7.2351, 7.2347, 7.2343, 7.2341, 7.2339, 7.2338, 7.2334, 7.2345, 7.2354, 7.2363, 7.2372, 7.2368, 7.2363, 7.2359, 7.2356, 7.2353, 7.2349, 7.2357, 7.2352, 7.2335, 7.2331, 7.2327, 7.2324, 7.2319, 7.2328, 7.2337, 7.2346, 7.2341, 7.2337, 7.2333, 7.2329, 7.2326, 7.2334, 7.233, 7.2339, 7.2334, 7.2332, 7.2328, 7.2326, 7.2321, 7.2329, 7.2329, 7.2386, 7.2381, 7.2377, 7.24, 7.2409, 7.2405, 7.2401, 7.2397, 7.2394, 7.2393, 7.239, 7.2401, 7.2387, 7.2384, 7.2393, 7.2388, 7.2385, 7.2382, 7.2377, 7.2374, 7.237, 7.2365, 7.236, 7.2357, 7.2353, 7.2349, 7.2345, 7.2356, 7.2353, 7.2348, 7.2343, 7.234, 7.2337, 7.2333, 7.2328, 7.2326, 7.2337, 7.2346, 7.2341, 7.2336, 7.2332, 7.2328, 7.2337, 7.2321, 7.233, 7.2328, 7.2336, 7.2396, 7.2391, 7.2387, 7.2395, 7.239, 7.2385, 7.238, 7.2376, 7.2373, 7.2369, 7.2377, 7.2374, 7.2358, 7.2342, 7.2338, 7.2333, 7.2329, 7.2324, 7.2332, 7.2327, 7.2323, 7.2331, 7.2328, 7.2336, 7.2333, 7.2329, 7.2327, 7.2322, 7.2331, 7.2328, 7.2323, 7.2319, 7.2318, 7.2302, 7.2311, 7.2307, 7.2319, 7.2327, 7.2324, 7.232, 7.2329, 7.2338, 7.2335, 7.2344, 7.2341, 7.2338, 7.236, 7.2356, 7.2351, 7.2387, 7.2395, 7.2443, 7.244, 7.2436, 7.2432, 7.2457, 7.2466, 7.2474, 7.2496, 7.2506, 7.2503, 7.2487, 7.2483, 7.2478, 7.2486, 7.2481, 7.2477, 7.2473, 7.247, 7.2466, 7.2475, 7.2471, 7.2469, 7.2465, 7.2462, 7.2457, 7.2453, 7.2448, 7.2444, 7.2453, 7.2461, 7.2457, 7.2453, 7.2449, 7.2444, 7.2442, 7.245, 7.2446, 7.2442, 7.2463, 7.2459, 7.2454, 7.245, 7.2446, 7.2442, 7.2438, 7.2436, 7.2448, 7.2489, 7.2485, 7.2472, 7.2481, 7.2477, 7.2476, 7.2477, 7.2486, 7.2482, 7.2478, 7.2503, 7.25, 7.2497, 7.2483, 7.2494, 7.2491, 7.2487, 7.2521, 7.2543, 7.2551, 7.2548, 7.2544, 7.2553, 7.2549, 7.2545, 7.2541, 7.2537, 7.2533, 7.2542, 7.2551, 7.2548, 7.2545, 7.2532, 7.2528, 7.2524, 7.2521, 7.2517, 7.2526, 7.2522, 7.2518, 7.2514, 7.2511, 7.2507, 7.2504, 7.25, 7.2496, 7.2481, 7.2477, 7.2473, 7.2482, 7.2467, 7.2463, 7.2459, 7.2455, 7.2452, 7.2449, 7.2445, 7.2442, 7.2438, 7.2436, 7.2444, 7.2428, 7.2436, 7.2444, 7.2465, 7.2461, 7.2456, 7.244, 7.2438, 7.2451, 7.246, 7.2504, 7.2501, 7.2497, 7.2494, 7.2503, 7.25, 7.2496, 7.2496, 7.2496, 7.2494, 7.2497, 7.2507, 7.2503, 7.2502, 7.2499, 7.2496, 7.2504, 7.25, 7.2497, 7.2505, 7.2513, 7.2521, 7.2529, 7.2525, 7.2521, 7.2517, 7.2525, 7.2523, 7.2519, 7.2515, 7.2511, 7.2519, 7.2515, 7.25, 7.2509, 7.2519, 7.2514, 7.2545, 7.2553, 7.2552, 7.2549, 7.2545, 7.2541, 7.2538, 7.2534, 7.253, 7.2526, 7.2522, 7.2507, 7.2503, 7.2511, 7.2519, 7.2517, 7.2525, 7.2522, 7.252, 7.2528, 7.2524, 7.252, 7.2505, 7.2513, 7.2511, 7.2507, 7.2502, 7.2497, 7.2507, 7.2503, 7.2501, 7.2498, 7.2507, 7.2515, 7.2513, 7.2497, 7.2505, 7.2501, 7.2498, 7.2494, 7.249, 7.2487, 7.2495, 7.2491, 7.2487, 7.2494, 7.249, 7.2487, 7.2494, 7.249, 7.2486, 7.2484, 7.2481, 7.2479, 7.2499, 7.2495, 7.2507, 7.2505, 7.2512, 7.2509, 7.2516, 7.2512, 7.2509, 7.2505, 7.2501, 7.2497, 7.2493, 7.2501, 7.2486, 7.2482, 7.249, 7.2486, 7.2482, 7.249, 7.2486, 7.2494, 7.2503, 7.2499, 7.2529, 7.2525, 7.2521, 7.2517, 7.2514, 7.2522, 7.2518, 7.2514, 7.251, 7.2506, 7.2503, 7.2499, 7.2495, 7.2503, 7.2499, 7.2496, 7.2492, 7.2489, 7.2496, 7.2492, 7.25, 7.2496, 7.2494, 7.2503, 7.251, 7.2506, 7.2503, 7.251, 7.2507, 7.2516, 7.2526, 7.2521, 7.2518, 7.2503, 7.2512, 7.2509, 7.2506, 7.2503, 7.251, 7.2507, 7.2504, 7.2512, 7.2509, 7.2494, 7.249, 7.2499, 7.2495, 7.2495, 7.2492, 7.2501, 7.2488, 7.2496, 7.2509, 7.2513, 7.2521, 7.2519, 7.2506, 7.2502, 7.251, 7.2509, 7.2512, 7.2509, 7.2517, 7.2524, 7.256, 7.2556, 7.257, 7.257, 7.2566, 7.2562, 7.256, 7.2561, 7.2557, 7.2553, 7.2551, 7.2548, 7.2544, 7.2552, 7.2548, 7.2545, 7.2543, 7.254, 7.255, 7.2546, 7.2531, 7.2527, 7.2513, 7.2509, 7.2542, 7.2538, 7.2533, 7.2541, 7.2538, 7.2535, 7.2532, 7.254, 7.2561, 7.2558, 7.2555, 7.2562, 7.2571, 7.2569, 7.2565, 7.2561, 7.2569, 7.2565, 7.255, 7.2548, 7.259, 7.2594, 7.2579, 7.2579, 7.2587, 7.2607, 7.2603, 7.2599, 7.2596, 7.2604, 7.2611, 7.2619, 7.2615, 7.2611, 7.2609, 7.2594, 7.2591, 7.2587, 7.2595, 7.2603, 7.2611, 7.2596, 7.2592, 7.2589, 7.2585, 7.258, 7.2576, 7.2572, 7.2568, 7.2564, 7.256, 7.2558, 7.2559, 7.2568, 7.2576, 7.2574, 7.2559, 7.2545, 7.2531, 7.2527, 7.2524, 7.2521, 7.2517, 7.2514, 7.251, 7.2507, 7.2515, 7.2523, 7.2556, 7.2555, 7.2552, 7.2548, 7.2555, 7.2574, 7.257, 7.2577, 7.2584, 7.2581, 7.2577, 7.2585, 7.2582, 7.2578, 7.2577, 7.2574, 7.2571, 7.2568, 7.2564, 7.256, 7.2546, 7.2543, 7.2551, 7.2548, 7.2546, 7.2556, 7.2552, 7.2571, 7.2581, 7.2589, 7.2586, 7.2583, 7.258, 7.2576, 7.2573, 7.2573, 7.257, 7.2578, 7.2586, 7.2582, 7.2568, 7.2564, 7.256, 7.2556, 7.2565, 7.2573, 7.257, 7.2567, 7.2565, 7.2573, 7.2571, 7.2568, 7.2564, 7.2561, 7.2568, 7.2576, 7.2574, 7.2571, 7.2567, 7.2575, 7.2582, 7.2578, 7.2586, 7.2572, 7.258, 7.2576, 7.2584, 7.2581, 7.2577, 7.2574, 7.257, 7.2555, 7.2552, 7.256, 7.2556, 7.2554, 7.255, 7.2546, 7.2543, 7.2551, 7.2548, 7.2551, 7.2547, 7.2543, 7.2539, 7.2536, 7.2545, 7.2531, 7.2527, 7.2523, 7.2519, 7.2515, 7.2527, 7.2524, 7.251, 7.2506, 7.2513, 7.2509, 7.2505, 7.2501, 7.2497, 7.2493, 7.2489, 7.2485, 7.2493, 7.249, 7.2487, 7.2487, 7.2483, 7.2504, 7.2501, 7.2522, 7.2531, 7.2527, 7.2524, 7.2532, 7.2529, 7.2525, 7.2533, 7.2541, 7.2538, 7.2535, 7.2532, 7.2529, 7.2525, 7.2522, 7.2518, 7.2515, 7.2512, 7.2509, 7.2506, 7.2493, 7.249, 7.2487, 7.2484, 7.2482, 7.2478, 7.2474, 7.2471, 7.2468, 7.2465, 7.2462, 7.247, 7.2478, 7.2485, 7.2485, 7.2486, 7.2483, 7.248, 7.2478, 7.2475, 7.2472, 7.2471, 7.2468, 7.2464, 7.246, 7.2457, 7.2453, 7.246, 7.2456, 7.2453, 7.2452, 7.2448, 7.2444, 7.2452, 7.246, 7.2456, 7.2454, 7.245, 7.2436, 7.244, 7.2436, 7.2422, 7.2419, 7.2427, 7.2423, 7.2421, 7.2418, 7.2415, 7.2411, 7.2419, 7.2416, 7.2414, 7.2411, 7.2408, 7.2405, 7.2412, 7.2408, 7.2405, 7.2401, 7.2397, 7.2405, 7.2401, 7.2397, 7.2405, 7.2402, 7.2399, 7.2395, 7.2392, 7.24, 7.2396, 7.2394, 7.239, 7.2389, 7.2397, 7.2393, 7.2389, 7.2387, 7.2394, 7.239, 7.2386, 7.2382, 7.2379, 7.2376, 7.2383, 7.2379, 7.2375, 7.2373, 7.237, 7.2368, 7.2364, 7.2361, 7.2358, 7.2355, 7.2351, 7.2347, 7.2354, 7.235, 7.2385, 7.2392, 7.24, 7.2397, 7.2393, 7.2405, 7.2401, 7.2409, 7.241, 7.2406, 7.2402, 7.2399, 7.2396, 7.2392, 7.2389, 7.2387, 7.2373, 7.238, 7.2376, 7.2383, 7.2381, 7.2377, 7.2374, 7.2388, 7.2385, 7.2392, 7.2389, 7.2397, 7.2393, 7.2389, 7.2386, 7.2384, 7.2391, 7.2399, 7.2406, 7.2392, 7.2389, 7.2385, 7.2381, 7.2377, 7.2384, 7.2381, 7.2378, 7.2376, 7.2373, 7.236, 7.2346, 7.2343, 7.2339, 7.2336, 7.2332, 7.2329, 7.2328, 7.2325, 7.2322, 7.2319, 7.2326, 7.2322, 7.2318, 7.2315, 7.2312, 7.2308, 7.2313, 7.2322, 7.2318, 7.2327, 7.2324, 7.2321, 7.2329, 7.2318, 7.2314, 7.2311, 7.2309, 7.2297, 7.2294, 7.2291, 7.2288, 7.2285, 7.2281, 7.2279, 7.2275, 7.2271, 7.2267, 7.2263, 7.2261, 7.2261, 7.2268, 7.2264, 7.2251, 7.2248, 7.2246, 7.2253, 7.2251, 7.2248, 7.2244, 7.2241, 7.2237, 7.2233, 7.2241, 7.2238, 7.2235, 7.2231, 7.2228, 7.2224, 7.2231, 7.2231, 7.2227, 7.2235, 7.2231, 7.2229, 7.2237, 7.2233, 7.224, 7.2247, 7.2243, 7.2239, 7.2237, 7.2233, 7.2229, 7.2225, 7.2233, 7.2241, 7.2248, 7.2244, 7.2242, 7.224, 7.2247, 7.2259, 7.2257, 7.2264, 7.2272, 7.2269, 7.2267, 7.2274, 7.2286, 7.2283, 7.2281, 7.2278, 7.2274, 7.2271, 7.2269, 7.2298, 7.2296, 7.2282, 7.231, 7.2317, 7.2315, 7.2329, 7.2336, 7.2333, 7.2329, 7.2325, 7.2332, 7.2339, 7.2336, 7.2343, 7.2339, 7.2337, 7.2333, 7.2329, 7.2327, 7.2323, 7.233, 7.2327, 7.2324, 7.2332, 7.2341, 7.2349, 7.2357, 7.2354, 7.235, 7.2347, 7.2354, 7.236, 7.2357, 7.2364, 7.2362, 7.2369, 7.2365, 7.2352, 7.2349, 7.2357, 7.2355, 7.2351, 7.2353, 7.2349, 7.2336, 7.2345, 7.2342, 7.2339, 7.2337, 7.237, 7.2366, 7.2363, 7.236, 7.2347, 7.2343, 7.2359, 7.2355, 7.2352, 7.2348, 7.2344, 7.2341, 7.2339, 7.2335, 7.2333, 7.2331, 7.2328, 7.2335, 7.2332, 7.2328, 7.2325, 7.2353, 7.2349, 7.2356, 7.2353, 7.236, 7.2358, 7.2354, 7.236, 7.2356, 7.2353, 7.235, 7.2346, 7.2342, 7.2338, 7.2334, 7.233, 7.2327, 7.2329, 7.2326, 7.2323, 7.2319, 7.2326, 7.2344, 7.234, 7.2347, 7.2343, 7.2339, 7.2326, 7.2322, 7.2319, 7.2316, 7.2312, 7.231, 7.2317, 7.2327, 7.2314, 7.2321, 7.2318, 7.2314, 7.231, 7.2307, 7.2306, 7.2303, 7.231, 7.2298, 7.2306, 7.2304, 7.2301, 7.2309, 7.2305, 7.2302, 7.2298, 7.2306, 7.2303, 7.23, 7.2302, 7.231, 7.2317, 7.2324, 7.2321, 7.2329, 7.2317, 7.2324, 7.2325, 7.2333, 7.233, 7.2326, 7.2323, 7.2319, 7.2327, 7.2323, 7.233, 7.2338, 7.2334, 7.233, 7.2326, 7.2333, 7.2331, 7.2327, 7.2326, 7.2325, 7.2332, 7.2329, 7.2326, 7.2323, 7.2319, 7.2316, 7.2312, 7.2323, 7.2323, 7.2321, 7.2319, 7.2327, 7.2325, 7.2322, 7.233, 7.2326, 7.2322, 7.2319, 7.2315, 7.2312, 7.2319, 7.2317, 7.2314, 7.2321, 7.2328, 7.2325, 7.2322, 7.2318, 7.2314, 7.2321, 7.2318, 7.2325, 7.2321, 7.2317, 7.2313, 7.2309, 7.2305, 7.2301, 7.2297, 7.2294, 7.229, 7.2287, 7.2295, 7.2296, 7.2292, 7.2289, 7.2306, 7.2314, 7.2322, 7.232, 7.2327, 7.2323, 7.2313, 7.231, 7.2308, 7.2305, 7.2301, 7.2324, 7.2323, 7.2324, 7.2321, 7.2328, 7.2326, 7.2323, 7.2331, 7.2328, 7.2328, 7.2337, 7.2334, 7.2331, 7.2328, 7.2325, 7.2326, 7.2314, 7.2302, 7.2299, 7.2296, 7.2303, 7.23, 7.2287, 7.2294, 7.229, 7.2288, 7.2285, 7.2282, 7.2284, 7.2281, 7.228, 7.2278, 7.2275, 7.2272, 7.2269, 7.2265, 7.2262, 7.2258, 7.2266, 7.2274, 7.227, 7.2267, 7.2272, 7.2269, 7.2276, 7.2272, 7.2268, 7.2265, 7.2272, 7.2279, 7.2276, 7.2273, 7.2281, 7.2279, 7.2276, 7.2273, 7.227, 7.2267, 7.2264, 7.226, 7.2257, 7.2254, 7.2251, 7.2247, 7.2244, 7.2241, 7.2238, 7.2235, 7.2223, 7.221, 7.2206, 7.2203, 7.221, 7.2208, 7.2205, 7.2201, 7.2208, 7.2205, 7.2201, 7.2201, 7.2199, 7.2196, 7.2192, 7.219, 7.2196, 7.2202, 7.2198, 7.2195, 7.2192, 7.2189, 7.2186, 7.2194, 7.2194, 7.2219, 7.2241, 7.2237, 7.2234, 7.2231, 7.2237, 7.2244, 7.2251, 7.2247, 7.2245, 7.2252, 7.2258, 7.2258, 7.2256, 7.2263, 7.226, 7.2257, 7.2255, 7.2252, 7.2248, 7.2244, 7.2241, 7.2238, 7.2235, 7.2232, 7.2229, 7.2235, 7.2231, 7.2228, 7.2225, 7.2222, 7.2219, 7.2217, 7.2235, 7.2232, 7.225, 7.2248, 7.2255, 7.2251, 7.2248, 7.2245, 7.2243, 7.224, 7.2237, 7.2235, 7.2242, 7.224, 7.2247, 7.2244, 7.2231, 7.223, 7.2228, 7.2225, 7.2232, 7.2229, 7.2235, 7.2242, 7.2239, 7.2246, 7.2253, 7.2251, 7.2248, 7.2249, 7.2245, 7.2252, 7.2259, 7.2269, 7.2266, 7.2274, 7.2271, 7.2279, 7.2276, 7.2273, 7.2269, 7.2266, 7.2263, 7.2261, 7.2258, 7.2255, 7.2252, 7.2248, 7.2245, 7.2242, 7.2238, 7.2225, 7.2222, 7.2219, 7.2215, 7.2213, 7.221, 7.2208, 7.2204, 7.22, 7.2197, 7.2194, 7.2202, 7.2208, 7.2215, 7.2212, 7.221, 7.2207, 7.2203, 7.2202, 7.2199, 7.2196, 7.2193, 7.219, 7.2187, 7.2184, 7.2182, 7.2179, 7.2176, 7.2174, 7.2171, 7.2168, 7.2165, 7.2162, 7.2159, 7.2166, 7.2168, 7.2165, 7.2162, 7.2158, 7.2166, 7.2173, 7.216, 7.2158, 7.2156, 7.2154, 7.215, 7.2146, 7.2142, 7.2142, 7.214, 7.2147, 7.2144, 7.2142, 7.215, 7.2147, 7.2154, 7.2181, 7.2171, 7.2169, 7.2166, 7.2164, 7.2161, 7.2159, 7.2157, 7.2154, 7.2151, 7.2148, 7.2146, 7.2142, 7.2139, 7.2136, 7.2143, 7.2139, 7.2137, 7.2135, 7.2132, 7.2129, 7.2127, 7.2124, 7.2121, 7.2117, 7.2114, 7.2121, 7.2117, 7.2114, 7.2121, 7.2118, 7.2124, 7.2112, 7.2119, 7.2115, 7.2121, 7.2119, 7.2137, 7.2135, 7.2132, 7.2131, 7.216, 7.2148, 7.2147, 7.2144, 7.2151, 7.2148, 7.2154, 7.2151, 7.2148, 7.2146, 7.2145, 7.2142, 7.2149, 7.2146, 7.2143, 7.214, 7.2137, 7.2144, 7.2142, 7.2139, 7.2135, 7.2132, 7.2136, 7.2143, 7.214, 7.214, 7.2137, 7.2135, 7.2131, 7.2127, 7.2124, 7.212, 7.2117, 7.2114, 7.2111, 7.2108, 7.2104, 7.2092, 7.2089, 7.2087, 7.2094, 7.2091, 7.2089, 7.2096, 7.2093, 7.2101, 7.2109, 7.2106, 7.2113, 7.211, 7.2107, 7.2103, 7.2103, 7.2111, 7.2101, 7.2099, 7.2096, 7.2093, 7.2101, 7.2099, 7.2097, 7.2122, 7.2119, 7.2116, 7.2115, 7.2122, 7.2119, 7.2126, 7.2124, 7.2131, 7.2138, 7.2135, 7.2142, 7.2139, 7.2136, 7.2133, 7.213, 7.2129, 7.2126, 7.2114, 7.2111, 7.2108, 7.2096, 7.2084, 7.2072, 7.2069, 7.2066, 7.2073, 7.207, 7.2066, 7.2072, 7.206, 7.2058, 7.2065, 7.2071, 7.2088, 7.2094, 7.2091, 7.2108, 7.2114, 7.211, 7.2107, 7.2105, 7.2112, 7.2111, 7.2099, 7.2096, 7.2094, 7.2092, 7.2089, 7.2096, 7.2093, 7.2092, 7.2099, 7.2096, 7.2084, 7.2082, 7.2079, 7.2076, 7.2074, 7.2074, 7.2071, 7.2071, 7.2068, 7.2065, 7.2062, 7.2061, 7.2068, 7.2065, 7.2063, 7.2061, 7.2058, 7.2055, 7.2053, 7.2059, 7.2056, 7.2053, 7.206, 7.2057, 7.2056, 7.2053, 7.2051, 7.2061, 7.2071000000000005, 7.2078, 7.2084, 7.2082, 7.2092, 7.2099, 7.2096, 7.2094, 7.2102, 7.21, 7.2097, 7.2094, 7.21, 7.2097, 7.2095, 7.2092, 7.2089, 7.2086, 7.2086, 7.2092, 7.2089, 7.2087, 7.2085, 7.2084, 7.2081, 7.2077, 7.2073, 7.2072, 7.2078, 7.2075, 7.2072, 7.2069, 7.2066, 7.2076, 7.208600000000001, 7.2093, 7.209, 7.2096, 7.2103, 7.211, 7.2116, 7.2123, 7.2133, 7.214300000000001, 7.214, 7.2137, 7.2135, 7.2133, 7.2141, 7.2139, 7.2139, 7.2138, 7.2137, 7.214700000000001, 7.215700000000001, 7.216700000000001, 7.2165, 7.2162, 7.215, 7.2147, 7.2145, 7.2151, 7.2157, 7.2163, 7.216, 7.216, 7.2157, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.215, 7.2147, 7.2144, 7.215, 7.2139, 7.2127, 7.2126, 7.2132, 7.2129, 7.2126, 7.2122, 7.2119, 7.2129, 7.213900000000001, 7.2136, 7.2133, 7.2139, 7.2136, 7.2133, 7.214, 7.2137, 7.2134, 7.2131, 7.2119, 7.2117, 7.2114, 7.212400000000001, 7.216, 7.2157, 7.2163, 7.2161, 7.2167, 7.2164, 7.216, 7.2158, 7.2156, 7.2154, 7.2151, 7.215, 7.2157, 7.2155, 7.2159, 7.2156, 7.2162, 7.2159, 7.2147, 7.2144, 7.2141, 7.2148, 7.2145, 7.2142, 7.2139, 7.2136, 7.2133, 7.213, 7.2127, 7.2124, 7.2132, 7.213, 7.2136, 7.2133, 7.213, 7.2128, 7.2126, 7.2126, 7.2123, 7.2121, 7.2118, 7.2116, 7.2113, 7.211, 7.2099, 7.2096, 7.2103, 7.2091, 7.2088, 7.2087, 7.2084, 7.2099, 7.2096, 7.2093, 7.209, 7.2087, 7.2093, 7.2099, 7.2097, 7.2094, 7.2091, 7.2088, 7.2087, 7.209, 7.2088, 7.2085, 7.2082, 7.2079, 7.2085, 7.2083, 7.208, 7.2077, 7.2075, 7.2073, 7.2074, 7.2073, 7.208, 7.2090000000000005, 7.2097, 7.2094, 7.2101, 7.2099, 7.2105, 7.2107, 7.2105, 7.2102, 7.2108, 7.2105, 7.2107, 7.2112, 7.2109, 7.2106, 7.2103, 7.21, 7.2098, 7.2095, 7.2092, 7.209, 7.2088, 7.2098, 7.2096, 7.2093, 7.2091, 7.2088, 7.2086, 7.2083, 7.208, 7.2079, 7.2076, 7.2074, 7.2072, 7.207, 7.2068, 7.2065, 7.2063, 7.206, 7.2057, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.2049, 7.2056, 7.2059, 7.2057, 7.2054, 7.2051, 7.2083, 7.2081, 7.2078, 7.2076, 7.2074, 7.2072, 7.2069, 7.2066, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.205, 7.2047, 7.2053, 7.2051, 7.2059, 7.2057, 7.2063, 7.206, 7.2058, 7.2055, 7.2052, 7.205, 7.2056, 7.2054, 7.2064, 7.207400000000001, 7.2071, 7.2068, 7.2082, 7.2115, 7.2112, 7.2127, 7.2133, 7.213, 7.2119, 7.212, 7.2118, 7.2116, 7.2117, 7.2133, 7.213, 7.2127, 7.2134, 7.2132, 7.2132, 7.2138, 7.2127, 7.2124, 7.213, 7.2127, 7.2173, 7.217, 7.2167, 7.2164, 7.2161, 7.2159, 7.2157, 7.2154, 7.2161, 7.2158, 7.2155, 7.2153, 7.2151, 7.2149, 7.2146, 7.2153, 7.2144, 7.216, 7.2172, 7.217, 7.2167, 7.2173, 7.2171, 7.2168, 7.2165, 7.2164, 7.2153, 7.2165, 7.2162, 7.2172, 7.2169, 7.2166, 7.2163, 7.2169, 7.2166, 7.2173, 7.2182, 7.218, 7.2177, 7.2174, 7.2172, 7.2178, 7.2175, 7.2182, 7.2188, 7.2185, 7.2182, 7.218, 7.2178, 7.2175, 7.2172, 7.2178, 7.2176, 7.2173, 7.217, 7.217, 7.2168, 7.2165, 7.2162, 7.2161, 7.2159, 7.2156, 7.2154, 7.2151, 7.2149, 7.2155, 7.2161, 7.2158, 7.2155, 7.2161, 7.2158, 7.2164, 7.2161, 7.2158, 7.2147, 7.2146, 7.2143, 7.214, 7.2144, 7.2143, 7.2141, 7.2139, 7.2136, 7.2137, 7.2134, 7.2131, 7.2129, 7.2127, 7.2124, 7.2121, 7.211, 7.2109, 7.2107, 7.2122, 7.2128, 7.2125, 7.2122, 7.2128, 7.2127, 7.2125, 7.2114, 7.2112, 7.211, 7.2107, 7.2104, 7.2103, 7.21, 7.2098, 7.2095, 7.2092, 7.2089, 7.2087, 7.2093, 7.209, 7.2091, 7.2098, 7.2088, 7.2086, 7.2084, 7.2081, 7.2079, 7.2076, 7.2065, 7.2062, 7.2059, 7.2057, 7.2055, 7.2052, 7.2059, 7.2058, 7.2064, 7.207, 7.2068, 7.2074, 7.208, 7.2077, 7.2083, 7.2112, 7.2109, 7.2115, 7.2113, 7.2119, 7.2129, 7.2135, 7.2132, 7.2129, 7.2126, 7.2133, 7.213, 7.2136, 7.2134, 7.2131, 7.212, 7.2127, 7.2132, 7.2129, 7.2135, 7.2139, 7.2145, 7.2142, 7.214, 7.2137, 7.2143, 7.2148, 7.2145, 7.2153, 7.2159, 7.2165, 7.2171, 7.2168, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.2182, 7.2179, 7.2177, 7.2175, 7.2172, 7.217, 7.2176, 7.2182, 7.2179, 7.2185, 7.2183, 7.2189, 7.2187, 7.2185, 7.2174, 7.2172, 7.2169, 7.2166, 7.2173, 7.217, 7.2167, 7.2165, 7.2164, 7.2161, 7.2161, 7.2158, 7.2157, 7.2154, 7.2151, 7.2149, 7.2147, 7.2145, 7.2144, 7.2141, 7.213, 7.2136, 7.2133, 7.2139, 7.2137, 7.2134, 7.214, 7.2137, 7.2134, 7.2131, 7.213, 7.2137, 7.2128, 7.2117, 7.2123, 7.2121, 7.2119, 7.2116, 7.2105, 7.2102, 7.2101, 7.2098, 7.2095, 7.2093, 7.209, 7.2087, 7.2085, 7.2092, 7.2089, 7.2086, 7.2083, 7.2081, 7.2078, 7.2075, 7.2073, 7.207, 7.2077, 7.2075, 7.2072, 7.2079, 7.2076, 7.2074, 7.2072, 7.2078, 7.2076, 7.2073, 7.2072, 7.2069, 7.2084, 7.2086, 7.2084, 7.2081, 7.2079, 7.2085, 7.2075, 7.2072, 7.2072, 7.2072, 7.2061, 7.2058, 7.2064, 7.2062, 7.2087, 7.2085, 7.2082, 7.2079, 7.2076, 7.2065, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.2042, 7.2039, 7.2036, 7.2046, 7.2052, 7.2061, 7.2058, 7.2056, 7.2062, 7.2068, 7.2065, 7.2063, 7.206, 7.2057, 7.2067000000000005, 7.2065, 7.2062, 7.2059, 7.2056, 7.2054, 7.2104, 7.2101, 7.2104, 7.2101, 7.2107, 7.2114, 7.212, 7.2117, 7.2123, 7.2129, 7.2127, 7.2134, 7.2132, 7.213, 7.2136, 7.2133, 7.213, 7.213, 7.2128, 7.2135, 7.2132, 7.2129, 7.2118, 7.2115, 7.2112, 7.2109, 7.2098, 7.2095, 7.2092, 7.2089, 7.2079, 7.2077, 7.2074, 7.2082, 7.2079, 7.2068, 7.2066, 7.2055, 7.2061, 7.206, 7.2057, 7.2055, 7.2062, 7.2059, 7.2069, 7.2079, 7.2077, 7.2074, 7.2071, 7.207, 7.2068, 7.2074, 7.208, 7.2077, 7.2087, 7.2077, 7.2087, 7.2084, 7.2081, 7.2091, 7.2089, 7.2087, 7.2084, 7.2081, 7.208, 7.2078, 7.2085, 7.2083, 7.208, 7.2086, 7.2092, 7.209, 7.2087, 7.2099, 7.2096, 7.2093, 7.2091, 7.2097, 7.2094, 7.2092, 7.2089, 7.2086, 7.2083, 7.2089, 7.2095, 7.2092, 7.2089, 7.2086, 7.2084, 7.2101, 7.2099, 7.2096, 7.2085, 7.2083, 7.2086, 7.2083, 7.208, 7.2069, 7.2067, 7.2064, 7.2102, 7.2099, 7.2096, 7.2103, 7.2107, 7.2104, 7.211, 7.2107, 7.2104, 7.2101, 7.2099, 7.2097, 7.2096, 7.2093, 7.2099, 7.2105, 7.2119, 7.2116, 7.2113, 7.2111, 7.2117, 7.2107, 7.2097, 7.2095, 7.2094, 7.2083, 7.2082, 7.2082, 7.2072, 7.2078, 7.2084, 7.2081, 7.2084, 7.209, 7.2096, 7.2094, 7.2092, 7.2098, 7.2096, 7.2102, 7.21, 7.2106, 7.2103, 7.2101, 7.2099, 7.2097, 7.2103, 7.2101, 7.2103, 7.2101, 7.2099, 7.2108, 7.2105, 7.2111, 7.2109, 7.2106, 7.2103, 7.2104, 7.2102, 7.2108, 7.2105, 7.2111, 7.2109, 7.2115, 7.2113, 7.2111, 7.2109, 7.2106, 7.2103, 7.2102, 7.2099, 7.2106, 7.2103, 7.2101, 7.2106, 7.2104, 7.2102, 7.2092, 7.2089, 7.2087, 7.2085, 7.2091, 7.2088, 7.2086, 7.2092, 7.2098, 7.2095, 7.2085, 7.2083, 7.2089, 7.2087, 7.2094, 7.2091, 7.2088, 7.2089, 7.2095, 7.2093, 7.2106, 7.2103, 7.2101, 7.2098, 7.2097, 7.2094, 7.2092, 7.2082, 7.2088, 7.2119, 7.2116, 7.2114, 7.2111, 7.2108, 7.2114, 7.2119, 7.2125, 7.2122, 7.2119, 7.2116, 7.2122, 7.2119, 7.2117, 7.2114, 7.212, 7.2118, 7.2124, 7.213, 7.2144, 7.2141, 7.2147, 7.2149, 7.2151, 7.2151, 7.2149, 7.2146, 7.2144, 7.2159, 7.2158, 7.2156, 7.2154, 7.2152, 7.215, 7.2148, 7.2137, 7.2134, 7.214, 7.2138, 7.2136, 7.2135, 7.2141, 7.2139, 7.2136, 7.2166, 7.2163, 7.2168, 7.2174, 7.2171, 7.2169, 7.2167, 7.2164, 7.2169, 7.2166, 7.2164, 7.2162, 7.2159, 7.2156, 7.2153, 7.2159, 7.2157, 7.2162, 7.2167, 7.2164, 7.2172, 7.2162, 7.2159, 7.2157, 7.2173, 7.2172, 7.2169, 7.2175, 7.219, 7.2196, 7.2194, 7.2192, 7.2197, 7.2195, 7.2192, 7.2198, 7.2195, 7.2201, 7.2206, 7.2204, 7.2202, 7.2208, 7.2205, 7.2211, 7.2209, 7.2215, 7.2212, 7.2209, 7.2214, 7.222, 7.2218, 7.2217, 7.2223, 7.2221, 7.2222, 7.2221, 7.2219, 7.2216, 7.2225, 7.223, 7.2227, 7.2234, 7.2232, 7.223, 7.222, 7.222, 7.2217, 7.2214, 7.223, 7.2244, 7.2242, 7.2241, 7.2239, 7.2262, 7.226, 7.2258, 7.2264, 7.227, 7.2275, 7.228, 7.2278, 7.2275, 7.228, 7.2286, 7.2291, 7.2288, 7.2294, 7.2291, 7.2288, 7.2285, 7.2291, 7.2289, 7.2286, 7.2283, 7.2281, 7.2295, 7.2292, 7.2297, 7.2294, 7.23, 7.2314, 7.2312, 7.2318, 7.2324, 7.233, 7.2328, 7.2325, 7.2322, 7.2319, 7.2316, 7.2313, 7.2311, 7.2309, 7.2306, 7.2309, 7.2307, 7.2304, 7.2302, 7.2292, 7.229, 7.2288, 7.2293, 7.229, 7.2287, 7.2293, 7.2291, 7.2288, 7.2294, 7.2291, 7.2289, 7.2295, 7.2293, 7.2324, 7.233, 7.2328, 7.2326, 7.2324, 7.233, 7.2327, 7.2333, 7.233, 7.2336, 7.2333, 7.233, 7.2327, 7.2337, 7.2334, 7.2347, 7.2344, 7.2341, 7.2331, 7.2336, 7.2341, 7.2346, 7.2351, 7.2348, 7.2346, 7.2351, 7.2356, 7.2361, 7.2366, 7.2363, 7.2368, 7.2365, 7.237, 7.2375, 7.2381, 7.2372, 7.2378, 7.2383, 7.2397, 7.2406, 7.2403, 7.2402, 7.24, 7.2398, 7.2396, 7.2402, 7.2407, 7.2413, 7.2413, 7.2423, 7.2434, 7.2431, 7.2429, 7.2437, 7.2435, 7.2433, 7.2425, 7.2422, 7.2438, 7.2436, 7.2434, 7.2431, 7.2423, 7.2433, 7.2431, 7.2431, 7.2437, 7.2435, 7.2433, 7.243, 7.2428, 7.2425, 7.2427, 7.2433, 7.2424, 7.2421, 7.2418, 7.2423, 7.2421, 7.2435, 7.2432, 7.2438, 7.2435, 7.2432, 7.2429, 7.2427, 7.2432, 7.2429, 7.2434, 7.244, 7.2446, 7.246, 7.2461, 7.2461, 7.2466, 7.2464, 7.2464, 7.2461, 7.2497, 7.2494, 7.25, 7.2497, 7.2494, 7.2491, 7.2489, 7.2503, 7.2502, 7.2501, 7.2499, 7.2491, 7.2489, 7.2487, 7.2486, 7.2484, 7.249, 7.2487, 7.2493, 7.2483, 7.2489, 7.2486, 7.2484, 7.2489, 7.2495, 7.2492, 7.249, 7.2487, 7.2492, 7.2489, 7.2486, 7.2483, 7.2489, 7.2496, 7.2493, 7.249, 7.2496, 7.2493, 7.2491, 7.2497, 7.2487, 7.2485, 7.2483, 7.2482, 7.2487, 7.2501, 7.2507, 7.2512, 7.2519, 7.2516, 7.2513, 7.2511, 7.2516, 7.2521, 7.2519, 7.2516, 7.2521, 7.2527, 7.2525, 7.2515, 7.2513, 7.2534, 7.2532, 7.2538, 7.2536, 7.2534, 7.2531, 7.2537, 7.2542, 7.254, 7.2537, 7.2534, 7.2531, 7.2528, 7.2533, 7.2531, 7.2579, 7.2586, 7.2583, 7.2589, 7.2586, 7.2585, 7.2583, 7.258, 7.2578, 7.2576, 7.2582, 7.258, 7.2579, 7.2577, 7.2577, 7.2575, 7.2572, 7.257, 7.2576, 7.2574, 7.2581, 7.2571, 7.2569, 7.2566, 7.2563, 7.2561, 7.2561, 7.2553, 7.255, 7.2548, 7.2561, 7.2559, 7.2556, 7.2548, 7.2546, 7.2544, 7.2541, 7.2539, 7.2537, 7.2542, 7.2548, 7.2554, 7.2551, 7.2548, 7.2546, 7.2551, 7.2556, 7.2561, 7.2566, 7.2564, 7.2562, 7.256, 7.2558, 7.2564, 7.2561, 7.2566, 7.2563, 7.256, 7.2574, 7.258, 7.2586, 7.2583, 7.2588, 7.2585, 7.2582, 7.2579, 7.2584, 7.259, 7.2596, 7.2594, 7.26, 7.2606, 7.2619, 7.2616, 7.2614, 7.2611, 7.2601, 7.2606, 7.2603, 7.26, 7.2599, 7.2596, 7.2601, 7.2598, 7.2605, 7.2603, 7.26, 7.2598, 7.2595, 7.2592, 7.2589, 7.2586, 7.2583, 7.258, 7.2585, 7.259, 7.2587, 7.2625, 7.2622, 7.2627, 7.2624, 7.2622, 7.262, 7.2625, 7.2622, 7.2619, 7.2616, 7.2621, 7.2634, 7.2624, 7.2621, 7.2628, 7.2625, 7.2631, 7.2636, 7.2642, 7.2648, 7.2646, 7.2644, 7.2649, 7.2654, 7.2651, 7.2648, 7.2646, 7.2644, 7.2642, 7.2639, 7.2637], '192.168.122.116': [8.3165, 7.1263, 6.6252, 6.3727, 6.1836, 6.9492, 6.7511, 6.6381, 7.1247, 6.5315, 6.4767, 6.8352, 7.0941, 6.9616, 6.8629, 6.7767, 7.0683, 7.3196, 7.2649, 7.1905, 7.1251, 7.0388, 6.9821, 6.9255, 7.0921, 7.2585, 7.2078, 7.1539, 7.1168, 7.2599, 7.2199, 7.1614, 7.1212, 7.0774, 7.1024, 7.0597, 7.0582, 7.0103, 6.9775, 6.9488, 6.9326, 6.908, 6.8712, 6.8349, 6.86, 6.8373, 6.8176, 6.792, 6.7674, 6.7457, 6.7403, 6.7274, 6.7144, 6.8812, 6.8546, 7.0785, 7.0635, 6.9511, 6.9314, 6.9202, 6.8329, 6.8366, 6.8176, 6.7984, 6.7854, 6.7853, 6.7636, 6.7551, 6.8171, 6.9746, 6.9539, 6.9333, 6.8494, 6.8281, 6.8086, 6.7886, 6.7805, 6.8361, 6.8168, 6.8689, 6.8503, 6.7784, 6.7605, 6.804, 6.8714, 6.8535, 6.8475, 6.8316, 6.8735, 6.8654, 6.8546, 6.898, 6.9962, 6.9777, 6.9674, 7.0521, 7.0395, 7.0218, 7.0588, 7.0957, 7.0826, 7.0666, 7.0569, 7.0478, 7.0321, 7.0169, 7.0129, 6.996, 6.9379, 6.9276, 6.9195, 6.9531, 6.9385, 6.9464, 6.9401, 6.9319, 6.9232, 6.9546, 6.9411, 6.9313, 6.9177, 6.9046, 6.9372, 6.9672, 6.975, 6.9623, 6.9496, 7.0209, 7.1002, 7.0866, 7.0777, 7.112, 7.1007, 7.1004, 7.0906, 7.0791, 7.1098, 7.101, 7.0939, 7.0823, 7.1096, 7.106, 7.0947, 7.1185, 7.1453, 7.1338, 7.1238, 7.1168, 7.1459, 7.1403, 7.1284, 7.1197, 7.1099, 7.136, 7.1573, 7.1477, 7.1435, 7.3019, 7.2913, 7.279, 7.2683, 7.2575, 7.2474, 7.2364, 7.2281, 7.2191, 7.2126, 7.2049, 7.2264, 7.2157, 7.2472, 7.2398, 7.2303, 7.2188, 7.208, 7.1977, 7.2186, 7.2083, 7.2287, 7.2512, 7.2408, 7.2351, 7.2254, 7.2169, 7.2077, 7.2002, 7.1937, 7.1833, 7.2077, 7.2047, 7.1952, 7.2149, 7.1854, 7.2019, 7.1929, 7.1842, 7.1785, 7.1704, 7.1666, 7.1571, 7.1622, 7.1794, 7.1709, 7.1651, 7.183, 7.1989, 7.2203, 7.2117, 7.2047, 7.1953, 7.2147, 7.2134, 7.2146, 7.2902, 7.2812, 7.2759, 7.267, 7.2584, 7.2506, 7.2468, 7.2409, 7.2346, 7.2371, 7.233, 7.2255, 7.225, 7.2191, 7.211, 7.2056, 7.1972, 7.2121, 7.2037, 7.1962, 7.1884, 7.2035, 7.1979, 7.1902, 7.1839, 7.1787, 7.1759, 7.1686, 7.1612, 7.1535, 7.1463, 7.1389, 7.1354, 7.15, 7.1507, 7.1435, 7.1365, 7.1339, 7.1298, 7.1259, 7.1194, 7.1126, 7.1064, 7.0996, 7.0926, 7.0879, 7.0629, 7.0568, 7.0712, 7.068, 7.0618, 7.0751, 7.0697, 7.0632, 7.0574, 7.0515, 7.0655, 7.0588, 7.0713, 7.0652, 7.0595, 7.0357, 7.0318, 7.0262, 7.0204, 7.0144, 7.0104, 7.0064, 7.0006, 7.0181, 7.0144, 7.0236, 7.0181, 7.0332, 7.0293, 7.0254, 7.02, 7.0181, 7.0137, 7.0085, 7.0216, 7.0157, 7.0282, 7.0226, 7.0205, 7.0155, 7.0282, 7.0243, 7.0207, 7.0176, 7.0332, 7.0289, 7.0438, 7.0573, 7.0522, 7.0658, 7.0603, 7.0576, 7.053, 7.0666, 7.0628, 7.0594, 7.0556, 7.0513, 7.0675, 7.0789, 7.0738, 7.0684, 7.0632, 7.0428, 7.0401, 7.0386, 7.0514, 7.0323, 7.0431, 7.0379, 7.0489, 7.044, 7.0385, 7.0344, 7.0296, 7.0258, 7.0236, 7.035, 7.0315, 7.0272, 7.0225, 7.0179, 7.0127, 7.0082, 7.0036, 6.9991, 6.9948, 6.9905, 6.9868, 6.9842, 6.9798, 6.9904, 6.9864, 6.9815, 7.0121, 7.0205, 7.017, 7.0142, 7.0096, 7.0073, 7.0045, 7.0007, 6.9976, 6.9928, 6.9885, 7.0005, 6.996, 6.9919, 6.9877, 6.9873, 6.9851, 6.9807, 6.9773, 6.9978, 6.9932, 6.9898, 6.9879, 6.9859, 6.9886, 6.9872, 6.986, 6.9824, 6.9918, 6.9897, 6.9871, 6.9837, 6.9817, 6.9804, 6.9811, 6.9647, 6.9626, 6.96, 6.9569, 6.9681, 6.9776, 6.9744, 6.9706, 6.97, 6.9681, 6.9654, 6.9624, 6.9596, 6.9692, 6.978, 6.9822, 6.9807, 6.9768, 6.9741, 6.97, 6.9661, 6.9787, 6.9748, 6.9706, 6.9665, 6.9624, 6.9587, 6.9681, 6.9693, 6.9657, 6.9622, 6.9597, 6.969, 6.9664, 6.9639, 6.9636, 6.9595, 6.9577, 6.9553, 6.956300000000001, 6.9532, 6.9385, 6.9351, 6.9446, 6.9411, 6.938, 6.9272, 6.9237, 6.92, 6.9163, 6.9381, 6.9365, 6.9452, 6.9415, 6.9393, 6.9357, 6.9323, 6.9289, 6.9267, 6.913, 6.9224, 6.9086, 6.9057, 6.9029, 6.8997, 6.897, 6.8941, 6.8913, 6.8882, 6.8858, 6.893, 6.9014, 6.8983, 6.896, 6.8832, 6.8799, 6.8769, 6.8753, 6.8722, 6.8694, 6.8776, 6.8744, 6.8715, 6.8685, 6.8667, 6.8634, 6.8609, 6.8619, 6.8817, 6.9128, 6.9097, 6.918, 6.915, 6.9238, 6.931, 6.9279, 6.9469, 6.9455, 6.9536, 6.9406, 6.9373, 6.9351, 6.9227, 6.9314, 6.928, 6.9256, 6.9128, 6.9002, 6.9012, 6.9105, 6.9078, 6.9054, 6.9033, 6.9008, 6.899, 6.9079, 6.9056, 6.9145, 6.9122, 6.9104, 6.9073, 6.9041, 6.9018, 6.8986, 6.9075, 6.9052, 6.9043, 6.9121, 6.9191, 6.9175, 6.9145, 6.9121, 6.9092, 6.952, 6.9488, 6.9561, 6.9529, 6.9616, 6.9586, 6.9581, 6.9569, 6.9544, 6.9552, 6.9532, 6.9512, 6.9579, 6.9664, 6.9661, 6.9639, 6.9619, 6.9587, 6.9575, 6.9563, 6.9551, 6.953, 6.9606, 6.9576, 6.9615, 6.968, 6.965, 6.9733, 6.9794, 6.9864, 6.9859, 6.9833, 6.9805, 6.9775, 6.9753, 6.9726, 6.9796, 6.9767, 6.9836, 6.9807, 6.9776, 6.9747, 6.9721, 6.9794, 6.9865, 6.9857, 6.9891, 6.9864, 6.9837, 6.9809, 6.9782, 6.9854, 6.9839, 6.9909, 6.9884, 6.9979, 6.9949, 6.9923, 6.9911, 6.9899, 6.9875, 6.9885, 6.9863, 6.984, 6.985, 6.986000000000001, 6.9845, 6.9818, 6.9804, 6.9809, 6.9784, 6.9996, 7.0066, 6.9958, 6.9936, 6.9913, 6.9889, 6.996, 7.0008, 7.0169, 7.0147, 7.0133, 7.0205, 7.0192, 7.0169, 7.0252, 7.0238, 7.0218, 7.0287, 7.0261, 7.0246, 7.0235, 7.0216, 7.0202, 7.0185, 7.016, 7.0131, 7.0111, 7.0093, 7.0075, 7.01, 7.008, 7.0073, 7.0048, 7.0031, 7.027, 7.0169, 7.0144, 7.0119, 7.0092, 7.0082, 7.0142, 7.021, 7.0183, 7.0243, 7.0226, 7.0199, 7.0172, 7.0149, 7.0214, 7.0188, 7.0161, 7.0142, 7.0127, 7.0109, 7.0167, 7.0152, 7.0136, 7.012, 7.01, 7.0075, 7.0135, 7.0198, 7.0252, 7.0228, 7.0214, 7.0276, 7.0251, 7.0236, 7.0213, 7.02, 7.0257, 7.0233, 7.0293, 7.0349, 7.0403, 7.0457, 7.0448, 7.0423, 7.0397, 7.0453, 7.0431, 7.0509, 7.0563, 7.0546, 7.0522, 7.0509, 7.0488, 7.0537, 7.0514, 7.0492, 7.0466, 7.0517, 7.0495, 7.0559, 7.0541, 7.0603, 7.0661, 7.0635, 7.0693, 7.0675, 7.0649, 7.0705, 7.0687, 7.0736, 7.0721, 7.0704, 7.0759, 7.074, 7.0727, 7.0778, 7.0754, 7.0744, 7.0799, 7.0775, 7.0896, 7.0947, 7.1055, 7.103, 7.1024, 7.1, 7.0976, 7.103, 7.1004, 7.098, 7.0964, 7.1019, 7.1004, 7.098, 7.0964, 7.0941, 7.0924, 7.09, 7.0878, 7.0802, 7.0856, 7.092, 7.0908, 7.0822, 7.0965, 7.0884, 7.0892, 7.0871, 7.0846, 7.0829, 7.0805, 7.0782, 7.0833, 7.0808, 7.0865, 7.0849, 7.0836, 7.0831, 7.0807, 7.0786, 7.0798, 7.0779, 7.0902, 7.0957, 7.0937, 7.0917, 7.0896, 7.0962, 7.1011, 7.0995, 7.0972, 7.095, 7.0933, 7.0911, 7.0892, 7.087, 7.0846, 7.0825, 7.0803, 7.0782, 7.0792, 7.0774, 7.0753, 7.0681, 7.0683, 7.0823, 7.0803, 7.0798, 7.0783, 7.0761, 7.0742, 7.0729, 7.0724, 7.0701, 7.0693, 7.0678, 7.0728, 7.071, 7.0687, 7.073, 7.0779, 7.0763, 7.0748, 7.0727, 7.0706, 7.0855, 7.0834, 7.1005, 7.0927, 7.0979, 7.0968, 7.1017, 7.1067, 7.1047, 7.1034, 7.1019, 7.1, 7.098, 7.0959, 7.1004, 7.0991, 7.0911, 7.0894, 7.0989, 7.0975, 7.0954, 7.1001, 7.1046, 7.1038, 7.1085, 7.1078, 7.1062, 7.1048, 7.1028, 7.1006, 7.0985, 7.0979, 7.0957, 7.0946, 7.0929, 7.0913, 7.0892, 7.0878, 7.0873, 7.0853, 7.0836, 7.0819, 7.0804, 7.0849, 7.0829, 7.0809, 7.0852, 7.0891, 7.094, 7.0926, 7.0974, 7.0962, 7.0945, 7.0937, 7.0918, 7.0897, 7.0879, 7.0927, 7.091, 7.0891, 7.0878, 7.0862, 7.0842, 7.0887, 7.0866, 7.0844, 7.0824, 7.0844, 7.0822, 7.0802, 7.0786, 7.0768, 7.0753, 7.0798, 7.0777, 7.082, 7.0801, 7.0844, 7.0887, 7.0873, 7.0855, 7.0836, 7.0818, 7.0863, 7.0846, 7.083, 7.0812, 7.0797, 7.0783, 7.0766, 7.0776, 7.0759, 7.0746, 7.0811, 7.0849, 7.0888, 7.0926, 7.0919, 7.0962, 7.095, 7.0932, 7.0914, 7.0897, 7.0938, 7.0975, 7.0956, 7.0949, 7.0946, 7.0934, 7.0918, 7.09, 7.088, 7.0861, 7.0843, 7.0828, 7.0815, 7.0854, 7.0835, 7.0819, 7.0812, 7.0805, 7.0791, 7.078, 7.0822, 7.0809, 7.0791, 7.0778, 7.0759, 7.0741, 7.0782, 7.0778, 7.0771, 7.0776, 7.0758, 7.0743, 7.0733, 7.0716, 7.0699, 7.0793, 7.0951, 7.0933, 7.0978, 7.1014, 7.1001, 7.0988, 7.0976, 7.0963, 7.0945, 7.0924, 7.0908, 7.089, 7.0925, 7.0908, 7.089, 7.0881, 7.0863, 7.0846, 7.0828, 7.076, 7.0743, 7.0726, 7.071, 7.0756, 7.0739, 7.0722, 7.0732, 7.0719, 7.0767, 7.0752, 7.0735, 7.072, 7.0705, 7.069, 7.0672, 7.0655, 7.0695, 7.0677, 7.066, 7.0643, 7.0629, 7.0614, 7.0558, 7.0597, 7.0636, 7.0675, 7.0664, 7.0702, 7.0684, 7.0668, 7.0706, 7.0689, 7.0671, 7.0653, 7.0639, 7.0688, 7.0683, 7.0617, 7.0656, 7.0694, 7.068, 7.0666, 7.0653, 7.069, 7.0684, 7.0667, 7.0706, 7.0689, 7.0682, 7.0707, 7.0691, 7.0674, 7.069, 7.0674, 7.0656, 7.0645, 7.068, 7.071, 7.0699, 7.064, 7.0626, 7.0691, 7.0674, 7.0713, 7.0649, 7.0634, 7.057, 7.0614, 7.0699, 7.0681, 7.0669, 7.0668, 7.0665, 7.0699, 7.0683, 7.0666, 7.0603, 7.0586, 7.0571, 7.0608, 7.0592, 7.0629, 7.0667, 7.0722, 7.0761, 7.0746, 7.073, 7.0715, 7.0701, 7.0688, 7.0734, 7.0727, 7.0732, 7.0715, 7.0703, 7.0723, 7.0763, 7.0746, 7.0729, 7.0683, 7.068, 7.0664, 7.0657, 7.064, 7.0624, 7.0611, 7.0597, 7.0584, 7.0567, 7.0599, 7.0585, 7.0619, 7.0602, 7.0594, 7.0584, 7.0568, 7.0553, 7.0539, 7.0525, 7.0512, 7.0496, 7.0482, 7.0569, 7.0558, 7.0548, 7.0537, 7.052, 7.0506, 7.049, 7.0475, 7.0511, 7.0496, 7.048, 7.0471, 7.0468, 7.0454, 7.0439, 7.0434, 7.0384, 7.052, 7.0505, 7.0491, 7.0478, 7.0512, 7.05, 7.0486, 7.0474, 7.0508, 7.0493, 7.0478, 7.0509, 7.0496, 7.0528, 7.056, 7.0545, 7.053, 7.0559, 7.0593, 7.0577, 7.0568, 7.0557, 7.0595, 7.0625, 7.0759, 7.0743, 7.0728, 7.0726, 7.0731, 7.0719, 7.0703, 7.0689, 7.0682, 7.0671, 7.0657, 7.0691, 7.0724, 7.071, 7.0698, 7.0683, 7.0716, 7.0704, 7.0706, 7.0796, 7.0864, 7.0913, 7.0954, 7.0945, 7.0933, 7.0965, 7.095, 7.0945, 7.0933, 7.0918, 7.0903, 7.0893, 7.0879, 7.0866, 7.0851, 7.0836, 7.0868, 7.0899, 7.0883, 7.0869, 7.0858, 7.0851, 7.0889, 7.0877, 7.0864, 7.0849, 7.0835, 7.0825, 7.0811, 7.0811, 7.08, 7.0789, 7.0779, 7.0799, 7.0788, 7.0822, 7.0808, 7.0795, 7.0831, 7.0835, 7.0826, 7.0829, 7.0859, 7.0847, 7.0833, 7.0822, 7.0808, 7.0858, 7.0845, 7.0836, 7.0821, 7.0814, 7.0856, 7.0809, 7.0796, 7.0783, 7.0772, 7.0761, 7.0747, 7.07, 7.0699, 7.0688, 7.0675, 7.066, 7.0691, 7.072, 7.0884, 7.0913, 7.0989, 7.1108, 7.1182, 7.1168, 7.1154, 7.114, 7.1128, 7.1114, 7.1143, 7.1133, 7.112, 7.115, 7.1136, 7.1123, 7.1112, 7.1098, 7.1085, 7.107, 7.1062, 7.1047, 7.1039, 7.1069, 7.1054, 7.1083, 7.1075, 7.1106, 7.1097, 7.1084, 7.107, 7.1061, 7.1097, 7.1088, 7.1087, 7.1073, 7.106, 7.1046, 7.1035, 7.1021, 7.1053, 7.1045, 7.1035, 7.1064, 7.1092, 7.1121, 7.1107, 7.1136, 7.1122, 7.111, 7.1095, 7.1081, 7.1115, 7.1102, 7.1131, 7.1118, 7.1106, 7.1092, 7.1119, 7.1151, 7.1139, 7.1146, 7.1134, 7.1126, 7.1156, 7.1147, 7.1178, 7.1208, 7.12, 7.119, 7.1223, 7.1212, 7.1204, 7.1189, 7.118, 7.1174, 7.1206, 7.1241, 7.1227, 7.1215, 7.1204, 7.1195, 7.1183, 7.1173, 7.1163, 7.1149, 7.1135, 7.1121, 7.115, 7.1182, 7.1171, 7.116, 7.1149, 7.1138, 7.1127, 7.1114, 7.1155, 7.1143, 7.1132, 7.112, 7.119, 7.1219, 7.1208, 7.1198, 7.1187, 7.1175, 7.1169, 7.1157, 7.1155, 7.1143, 7.1257, 7.1244, 7.1234, 7.1267, 7.1296, 7.1284, 7.127, 7.1264, 7.1252, 7.1203, 7.1189, 7.1176, 7.1163, 7.115, 7.1139, 7.1132, 7.112, 7.115, 7.1142, 7.1129, 7.1122, 7.1116, 7.1106, 7.1093, 7.1084, 7.1035, 7.1023, 7.1014, 7.1043, 7.1034, 7.1022, 7.1008, 7.1016, 7.1006, 7.0995, 7.102, 7.1009, 7.0998, 7.0996, 7.0984, 7.0972, 7.0963, 7.095, 7.0938, 7.0891, 7.0878, 7.0866, 7.0852, 7.0842, 7.0833, 7.0865, 7.0875, 7.0865, 7.0893, 7.0881, 7.0909, 7.0895, 7.0883, 7.0873, 7.0829, 7.083900000000001, 7.084900000000001, 7.0846, 7.0833, 7.0823, 7.0811, 7.0842, 7.0796, 7.0823, 7.0833, 7.084300000000001, 7.0834, 7.0826, 7.082, 7.0808, 7.08, 7.0791, 7.0785, 7.0778, 7.0765, 7.0752, 7.0742, 7.077, 7.0758, 7.0783, 7.0775, 7.0802, 7.083, 7.0817, 7.081, 7.0765, 7.0792, 7.0779, 7.0806, 7.0795, 7.0824, 7.0816, 7.0806, 7.0832, 7.0828, 7.0822, 7.081, 7.0804, 7.0793, 7.0784, 7.0797, 7.0807, 7.0817000000000005, 7.0805, 7.08, 7.0788, 7.0776, 7.0768, 7.0756, 7.0745, 7.0738, 7.0764, 7.0752, 7.0742, 7.0769, 7.0757, 7.0745, 7.0742, 7.073, 7.0719, 7.0746, 7.0772, 7.0798, 7.0786, 7.0886, 7.0913, 7.0903, 7.089, 7.0879, 7.0867, 7.0893, 7.0919, 7.0909, 7.09, 7.0887, 7.091, 7.0899, 7.089, 7.0879, 7.0908, 7.0898, 7.0889, 7.0881, 7.087, 7.0897, 7.0923, 7.0919, 7.0907, 7.0897, 7.0908, 7.0928, 7.096, 7.0968, 7.0956, 7.098, 7.097, 7.0993, 7.0984, 7.0975, 7.0963, 7.0988, 7.0975, 7.1, 7.0991, 7.0979, 7.0967, 7.0992, 7.1016, 7.1004, 7.0993, 7.0985, 7.1011, 7.0999, 7.0991, 7.098, 7.1007, 7.1001, 7.0993, 7.0983, 7.0972, 7.0966, 7.0956, 7.0946, 7.0972, 7.096, 7.095, 7.0941, 7.093, 7.0942, 7.0941, 7.0933, 7.1, 7.1025, 7.1013, 7.1005, 7.0999, 7.1023, 7.1017, 7.1011, 7.1001, 7.099, 7.1017, 7.1046, 7.101, 7.1005, 7.1032, 7.106, 7.1051, 7.1042, 7.1033, 7.1024, 7.1016, 7.1006, 7.0964, 7.0955, 7.0946, 7.0939, 7.0935, 7.0931, 7.092, 7.0908, 7.0933, 7.0922, 7.091, 7.0898, 7.0903, 7.0891, 7.0883, 7.0872, 7.0862, 7.0885, 7.0875, 7.0873, 7.0861, 7.085, 7.0847, 7.0836, 7.0794, 7.0784, 7.0773, 7.0762, 7.0751, 7.074, 7.073, 7.0723, 7.0712, 7.0702, 7.0692, 7.0692, 7.0691, 7.068, 7.0688, 7.0687, 7.0713, 7.0703, 7.0691, 7.0682, 7.0673, 7.0663, 7.0653, 7.068, 7.0673, 7.0639, 7.0663, 7.0689, 7.0678, 7.0669, 7.0657, 7.0646, 7.0637, 7.0626, 7.0652, 7.0675, 7.0668, 7.066, 7.0657, 7.0648, 7.067, 7.0659, 7.0658, 7.0647, 7.0638, 7.066, 7.0683, 7.0675, 7.0664, 7.066, 7.065, 7.0679, 7.0669, 7.0692, 7.0689, 7.0682, 7.0672, 7.0672, 7.0732, 7.073, 7.072, 7.071, 7.0703, 7.0693, 7.0685, 7.0675, 7.0696, 7.0686, 7.0676, 7.0703, 7.0704, 7.073, 7.072, 7.0709, 7.0699, 7.0724, 7.0714, 7.0725, 7.0715, 7.0705, 7.0699, 7.0713, 7.0703, 7.0693, 7.0688, 7.0713, 7.0703, 7.0695, 7.0686, 7.0782, 7.0792, 7.0802000000000005, 7.0793, 7.0785, 7.0776, 7.0802, 7.0826, 7.0818, 7.084, 7.0833, 7.0825, 7.0817, 7.0807, 7.0798, 7.0822, 7.0815, 7.0804, 7.0765, 7.0729, 7.075, 7.0742, 7.0737, 7.0726, 7.0747, 7.0741, 7.0763, 7.0783, 7.0805, 7.0829, 7.0849, 7.0845, 7.0867, 7.086, 7.0882, 7.0872, 7.0862, 7.0885, 7.0908, 7.0905, 7.0925, 7.0939, 7.093, 7.0921, 7.0882, 7.0877, 7.087, 7.0861, 7.0886, 7.0877, 7.0868, 7.0859, 7.0849, 7.0838, 7.083, 7.0851, 7.084, 7.0836, 7.0856, 7.0845, 7.0834, 7.0856, 7.0847, 7.087, 7.0862, 7.0827, 7.0818, 7.0813, 7.0835, 7.0886, 7.0879, 7.087, 7.0859, 7.085, 7.084, 7.0864, 7.0854, 7.0846, 7.0837, 7.0826, 7.0817, 7.0976, 7.0966, 7.0996, 7.0988, 7.0979, 7.1002, 7.102, 7.104, 7.103, 7.1022, 7.1014, 7.1035, 7.1025, 7.1015, 7.1025, 7.1021, 7.1064, 7.1054, 7.106400000000001, 7.1059, 7.1049, 7.1059, 7.1081, 7.1102, 7.1093, 7.1083, 7.1074, 7.1066, 7.1057, 7.1047, 7.1039, 7.1077, 7.1069, 7.1064, 7.1076, 7.1086, 7.1096, 7.1089, 7.1116, 7.1141, 7.1133, 7.1126, 7.1136, 7.1128, 7.1091, 7.109, 7.1082, 7.1072, 7.1092, 7.1085, 7.1106, 7.1127, 7.112, 7.1142, 7.1194, 7.1187, 7.1181, 7.117, 7.1182, 7.1172, 7.1168, 7.1158, 7.1184, 7.1174, 7.1167, 7.113, 7.112, 7.111, 7.1101, 7.1091, 7.1081, 7.1101, 7.1065, 7.1056, 7.1111, 7.1102, 7.1092, 7.111, 7.1102, 7.1123, 7.1116, 7.1106, 7.1096, 7.109, 7.1082, 7.1105, 7.107, 7.106, 7.1057, 7.1051, 7.1078, 7.1099, 7.109, 7.1082, 7.1074, 7.1066, 7.1057, 7.1078, 7.1099, 7.109, 7.1145, 7.1136, 7.1225, 7.1217, 7.1182, 7.1173, 7.1224, 7.1222, 7.1233, 7.1225, 7.122, 7.1211, 7.1202, 7.1195, 7.1199, 7.1189, 7.1247, 7.1239, 7.123, 7.122, 7.1216, 7.1236, 7.1255, 7.1247, 7.1243, 7.1235, 7.1255, 7.1246, 7.1211, 7.1203, 7.1194, 7.1215, 7.1225000000000005, 7.1218, 7.1208, 7.1228, 7.1246, 7.1237, 7.1228, 7.1224, 7.1214, 7.1205, 7.1225, 7.1218, 7.1209, 7.1229, 7.122, 7.121, 7.1202, 7.1222, 7.1215, 7.1205, 7.1196, 7.1215, 7.1209, 7.1201, 7.1166, 7.1189, 7.1181, 7.1172, 7.1191, 7.1182, 7.1175, 7.1167, 7.1162, 7.1156, 7.1152, 7.1144, 7.1135, 7.1101, 7.1094, 7.1114, 7.1105, 7.1098, 7.109, 7.1109, 7.1104, 7.1095, 7.1086, 7.1078, 7.107, 7.115, 7.117, 7.1162, 7.1182, 7.1173, 7.1164, 7.1184, 7.115, 7.1143, 7.1163, 7.1165, 7.1157, 7.1148, 7.1114, 7.1105, 7.1101, 7.1094, 7.1085, 7.1078, 7.1069, 7.1089, 7.1087, 7.108, 7.107, 7.1063, 7.1054, 7.1048, 7.1041, 7.1031, 7.1059, 7.1052, 7.1045, 7.1063, 7.1055, 7.1047, 7.104, 7.1058, 7.105, 7.1071, 7.1063, 7.1057, 7.1081, 7.1076, 7.1086, 7.1096, 7.110600000000001, 7.1127, 7.1122, 7.1116, 7.1115, 7.1106, 7.1097, 7.1089, 7.1081, 7.1111, 7.1129, 7.112, 7.1139, 7.1132, 7.1124, 7.1116, 7.1106, 7.1097, 7.1123, 7.1118, 7.1085, 7.1103, 7.1096, 7.1088, 7.1079, 7.1074, 7.1096, 7.1087, 7.1078, 7.1074, 7.1092, 7.1087, 7.1078, 7.1071, 7.1065, 7.1063, 7.1068, 7.1089, 7.1082, 7.1074, 7.1066, 7.1059, 7.1051, 7.1047, 7.1042, 7.1039, 7.103, 7.1023, 7.1014, 7.1035, 7.1028, 7.1021, 7.1014, 7.1033, 7.1024, 7.1017, 7.1009, 7.1028, 7.1044, 7.1062, 7.1078, 7.1088000000000005, 7.1079, 7.107, 7.1087, 7.1081, 7.1049, 7.1042, 7.1039, 7.104, 7.1035, 7.1053, 7.1025, 7.1028, 7.1022, 7.1013, 7.1033, 7.1043, 7.105300000000001, 7.1075, 7.1076, 7.1074, 7.1092, 7.1083, 7.1077, 7.1069, 7.1063, 7.1031, 7.1051, 7.1071, 7.1062, 7.1056, 7.1057, 7.1027, 7.1046, 7.104, 7.1039, 7.1031, 7.1024, 7.1023, 7.1015, 7.1007, 7.1001, 7.0992, 7.0985, 7.0995, 7.1005, 7.101500000000001, 7.1059, 7.105, 7.1044, 7.1072, 7.1066, 7.1057, 7.1026, 7.1017, 7.1009, 7.1023, 7.1015, 7.1007, 7.1001, 7.0993, 7.100300000000001, 7.101300000000001, 7.1005, 7.1029, 7.1021, 7.1039, 7.1163, 7.1155, 7.1147, 7.1139, 7.1137, 7.1129, 7.1129, 7.1122, 7.1115, 7.1107, 7.1101, 7.1101, 7.107, 7.107, 7.1062, 7.1058, 7.1049, 7.1083, 7.1074, 7.1066, 7.1057, 7.1051, 7.1047, 7.1095, 7.1114, 7.1107, 7.1098, 7.1091, 7.1086, 7.1078, 7.1096, 7.1065, 7.1084, 7.1076, 7.1092, 7.1083, 7.1077, 7.1096, 7.1093, 7.1088, 7.1098, 7.1114, 7.1105, 7.1096, 7.1091, 7.1118, 7.111, 7.1106, 7.1122, 7.1114, 7.1106, 7.11, 7.1092, 7.1116, 7.1109, 7.1128, 7.1145, 7.1142, 7.1137, 7.1133, 7.1151, 7.1145, 7.1137, 7.1164, 7.1158, 7.1153, 7.1146, 7.1164, 7.1157, 7.1152, 7.1146, 7.1139, 7.1131, 7.1124, 7.1116, 7.1135, 7.113, 7.1147, 7.114, 7.1133, 7.1125, 7.112, 7.1115, 7.1108, 7.1128, 7.1119, 7.1111, 7.1081, 7.1101, 7.1094, 7.1114, 7.1109, 7.1104, 7.1096, 7.109, 7.1082, 7.1077, 7.1099, 7.1095, 7.1088, 7.1103, 7.1096, 7.1089, 7.1085, 7.1126, 7.112, 7.1113, 7.1129, 7.1121, 7.1138, 7.1144, 7.1138, 7.114800000000001, 7.1144, 7.1135, 7.1153, 7.1146, 7.1141, 7.1134, 7.1155, 7.1175, 7.1192, 7.1185, 7.1202, 7.1196, 7.1216, 7.1233, 7.1227, 7.1222, 7.1217, 7.1216, 7.121, 7.1204, 7.1198, 7.1195, 7.1188, 7.1181, 7.1175, 7.1168, 7.116, 7.118, 7.1173, 7.1167, 7.1162, 7.1155, 7.1172, 7.1164, 7.1158, 7.1173, 7.1144, 7.1115, 7.1112, 7.1127, 7.1122, 7.1118, 7.111, 7.1128, 7.1129, 7.1145, 7.1166, 7.1183, 7.1179, 7.1149, 7.1141, 7.1133, 7.1125, 7.1117, 7.111, 7.1103, 7.1096, 7.1115, 7.113, 7.1102, 7.1074, 7.1088, 7.1105, 7.1097, 7.1096, 7.1091, 7.1107, 7.1124, 7.1118, 7.1112, 7.1105, 7.1097, 7.1089, 7.1084, 7.11, 7.1116, 7.1111, 7.1104, 7.1099, 7.1093, 7.1088, 7.1081, 7.109100000000001, 7.1107, 7.1099, 7.1091, 7.1084, 7.1076, 7.1068, 7.1084, 7.1078, 7.1052, 7.1044, 7.1036, 7.1028, 7.1022, 7.1016, 7.1009, 7.1027, 7.1021, 7.1017, 7.101, 7.1004, 7.0998, 7.0992, 7.0984, 7.0976, 7.0947, 7.0919, 7.0915, 7.0907, 7.0924, 7.0917, 7.091, 7.0903, 7.09, 7.0895, 7.0889, 7.0881, 7.0874, 7.0891, 7.0908, 7.0902, 7.091200000000001, 7.0924, 7.0918, 7.0911, 7.0911, 7.0909, 7.0902, 7.0918, 7.0913, 7.0939, 7.0933, 7.0927, 7.0941, 7.0935, 7.0949, 7.0944, 7.0936, 7.0931, 7.0946, 7.0939, 7.0934, 7.0951, 7.0944, 7.0916, 7.0909, 7.0902, 7.0875, 7.089, 7.0883, 7.0898, 7.0891, 7.0884, 7.0899, 7.0892, 7.0887, 7.0882, 7.0876, 7.0869, 7.0885, 7.0878, 7.087, 7.0865, 7.0859, 7.0851, 7.0869, 7.0862, 7.0855, 7.085, 7.086, 7.0852, 7.0846, 7.0847, 7.0842, 7.0856, 7.0849, 7.0845, 7.0839, 7.0841, 7.0853, 7.0867, 7.0859, 7.0852, 7.0866, 7.0882, 7.0896, 7.0869, 7.0863, 7.0857, 7.0857, 7.085, 7.0865, 7.0858, 7.0851, 7.0867, 7.086, 7.0876, 7.0891, 7.0885, 7.0901, 7.0894, 7.0887, 7.0882, 7.0898, 7.0891, 7.0885, 7.0878, 7.0871, 7.0866, 7.0859, 7.0852, 7.0869, 7.0863, 7.0835, 7.083, 7.0824, 7.084, 7.0857, 7.0852, 7.0845, 7.0862, 7.0861, 7.0855, 7.0848, 7.0842, 7.0835, 7.0828, 7.0842, 7.0834, 7.0828, 7.0844, 7.0837, 7.0836, 7.0829, 7.0822, 7.0818, 7.0811, 7.0825, 7.0823, 7.0837, 7.0833, 7.0826, 7.082, 7.0836, 7.083, 7.0824, 7.0819, 7.0814, 7.0829, 7.0822, 7.0817, 7.081, 7.0806, 7.0821, 7.0815, 7.0815, 7.081, 7.0803, 7.0818, 7.0832, 7.0827, 7.082, 7.0813, 7.0829, 7.0871, 7.0866, 7.0883, 7.0877, 7.087, 7.0886, 7.0884, 7.0879, 7.0853, 7.0848, 7.0842, 7.0836, 7.0854, 7.0849, 7.0844, 7.0859, 7.0851, 7.085, 7.0847, 7.0841, 7.0864, 7.0858, 7.0873, 7.0869, 7.0884, 7.0877, 7.0871, 7.0866, 7.086, 7.0856, 7.085, 7.0864, 7.088, 7.0897, 7.0912, 7.0905, 7.0919, 7.0913, 7.0909, 7.0913, 7.0913, 7.0907, 7.09, 7.0893, 7.0909, 7.0885, 7.0879, 7.0882, 7.0875, 7.0869, 7.0879, 7.0853, 7.0846, 7.0841, 7.0855, 7.0867, 7.0881, 7.0964, 7.0959, 7.0975, 7.0969, 7.0967, 7.096, 7.0976, 7.097, 7.0964, 7.096, 7.0934, 7.0927, 7.0942, 7.0937, 7.0953, 7.0968, 7.0961, 7.0984, 7.0998, 7.1013, 7.1029, 7.1023, 7.1038, 7.1031, 7.1046, 7.1059, 7.1054, 7.1048, 7.1043, 7.1037, 7.1031, 7.1046, 7.1041, 7.1035, 7.1028, 7.1022, 7.1015, 7.1008, 7.1005, 7.1001, 7.1018, 7.1011, 7.1026, 7.102, 7.1013, 7.1006, 7.1, 7.0994, 7.0988, 7.1007, 7.1004, 7.0998, 7.0993, 7.1006, 7.1003, 7.1, 7.0996, 7.0989, 7.0982, 7.0997, 7.100700000000001, 7.1002, 7.0999, 7.0993, 7.0988, 7.0983, 7.0978, 7.0971, 7.0965, 7.098, 7.0975, 7.0968, 7.0983, 7.0977, 7.0973, 7.0968, 7.0963, 7.0961, 7.0961, 7.0977, 7.0972, 7.0966, 7.0961, 7.0995, 7.0973, 7.097, 7.0965, 7.096, 7.1003, 7.1018, 7.1013, 7.1029, 7.1055, 7.1056, 7.1074, 7.1068, 7.1063, 7.1083, 7.1083, 7.1098, 7.1112, 7.1105, 7.1119, 7.1133, 7.1127, 7.1124, 7.1119, 7.1098, 7.1097, 7.1092, 7.1088, 7.1089, 7.1147, 7.116, 7.1157, 7.1173, 7.1179, 7.1172, 7.1206, 7.1203, 7.1217, 7.1211, 7.1225, 7.1239, 7.1234, 7.1228, 7.1242, 7.1238, 7.1232, 7.1225, 7.1218, 7.1211, 7.1208, 7.1203, 7.12, 7.1193, 7.121, 7.1225, 7.1218, 7.1214, 7.1209, 7.1202, 7.1218, 7.1215, 7.1209, 7.1205, 7.1198, 7.1192, 7.1185, 7.1182, 7.1178, 7.1174, 7.1169, 7.1163, 7.1159, 7.1155, 7.1152, 7.1147, 7.116, 7.1153, 7.1152, 7.1164, 7.1158, 7.1153, 7.1128, 7.1141, 7.1155, 7.1169, 7.1163, 7.1178, 7.1172, 7.1186, 7.118, 7.1173, 7.1167, 7.1181, 7.1175, 7.1191, 7.1186, 7.1199, 7.1194, 7.1187, 7.1182, 7.1192, 7.1192, 7.1187, 7.1182, 7.1199, 7.1192, 7.1186, 7.1199, 7.1192, 7.1187, 7.118, 7.1177, 7.1171, 7.1184, 7.1178, 7.1172, 7.1165, 7.1162, 7.1176, 7.1152, 7.1128, 7.1122, 7.1116, 7.1112, 7.1106, 7.1101, 7.1095, 7.1088, 7.1082, 7.1092, 7.1085, 7.108, 7.1076, 7.109, 7.1104, 7.1101, 7.1095, 7.109, 7.1102, 7.1118, 7.1112, 7.1107, 7.112, 7.1133, 7.1127, 7.1123, 7.1136, 7.1131, 7.1127, 7.112, 7.1096, 7.1091, 7.1104, 7.1097, 7.1093, 7.1108, 7.1085, 7.1081, 7.1078, 7.1074, 7.1069, 7.1047, 7.1042, 7.1041, 7.1037, 7.1033, 7.1027, 7.1003, 7.0997, 7.100700000000001, 7.101700000000001, 7.1013, 7.1007, 7.1003, 7.1, 7.0996, 7.0995, 7.0988, 7.0984, 7.0998, 7.101, 7.1005, 7.1018, 7.1015, 7.1012, 7.1009, 7.1006, 7.1019, 7.1012, 7.1008, 7.1003, 7.1016, 7.1011, 7.1007, 7.1003, 7.1003, 7.0999, 7.0997, 7.0991, 7.0985, 7.0981, 7.0994, 7.1006, 7.1, 7.0995, 7.1009, 7.1005, 7.1, 7.0995, 7.1008, 7.1021, 7.1015, 7.1009, 7.1005, 7.0999, 7.1011, 7.1023, 7.1016, 7.1049, 7.1043, 7.1037, 7.1031, 7.1044, 7.1038, 7.1051, 7.1045, 7.104, 7.1054, 7.1031, 7.1043, 7.1056, 7.1069, 7.1082, 7.1095, 7.1089, 7.1102, 7.1115, 7.1112, 7.1108, 7.1103, 7.1115, 7.1109, 7.1102, 7.1116, 7.1112, 7.1091, 7.1086, 7.1081, 7.109100000000001, 7.1088, 7.1101, 7.1095, 7.1108, 7.1121, 7.1133, 7.1147, 7.1141, 7.1135, 7.1148, 7.1179, 7.1192, 7.1186, 7.1198, 7.1192, 7.1206, 7.12, 7.1209, 7.1205, 7.12, 7.1194, 7.1188, 7.1182, 7.1176, 7.1171, 7.1185, 7.1198, 7.1194, 7.119, 7.1202, 7.1196, 7.1192, 7.1186, 7.1182, 7.1176, 7.1189, 7.1208, 7.1203, 7.1197, 7.1199, 7.120900000000001, 7.1203, 7.1243, 7.1258, 7.1254, 7.1231, 7.1225, 7.124, 7.1218, 7.122800000000001, 7.1222, 7.1218, 7.1212, 7.1206, 7.1201, 7.1252, 7.1251, 7.1265, 7.126, 7.1255, 7.1232, 7.1243, 7.1237, 7.1236, 7.1231, 7.1244, 7.124, 7.1235, 7.1231, 7.1263, 7.1257, 7.1251, 7.1246, 7.1242, 7.1236, 7.1233, 7.123, 7.1243, 7.1237, 7.1249, 7.1248, 7.1408, 7.1405, 7.1399, 7.1396, 7.1408, 7.1407, 7.1407, 7.1401, 7.141100000000001, 7.1405, 7.1418, 7.1415, 7.143, 7.1436, 7.143, 7.1432, 7.1428, 7.144, 7.1438, 7.1438, 7.1452, 7.1446, 7.1441, 7.1474, 7.147, 7.1465, 7.1461, 7.1463, 7.1457, 7.147, 7.1475, 7.1478, 7.1472, 7.1529, 7.156, 7.1564, 7.1579, 7.1573, 7.1567, 7.1579, 7.1591, 7.1601, 7.1611, 7.162100000000001, 7.1635, 7.1617, 7.1596, 7.161, 7.162, 7.1654, 7.1648, 7.1642, 7.1636, 7.1631, 7.1626, 7.1623, 7.1617, 7.1611, 7.1605, 7.16, 7.1594, 7.1606, 7.1619, 7.1613, 7.1625, 7.1619, 7.1613, 7.1607, 7.1601, 7.1595, 7.1589, 7.1583, 7.158, 7.1559, 7.1537, 7.1515, 7.1509, 7.1503, 7.1517, 7.1529, 7.1539, 7.1549000000000005, 7.1548, 7.156, 7.1556, 7.1567, 7.1579, 7.1573, 7.1567, 7.1566, 7.1561, 7.1573, 7.158, 7.1574, 7.1568, 7.1564, 7.1565, 7.156, 7.1555, 7.1553, 7.1547, 7.1543, 7.1556, 7.1568, 7.1562, 7.1574, 7.1568, 7.1563, 7.1557, 7.1555, 7.1567, 7.1561, 7.1562, 7.1575, 7.1587, 7.1583, 7.1579, 7.1575, 7.1569, 7.1581, 7.1579, 7.1581, 7.1594, 7.1588, 7.1601, 7.1595, 7.159, 7.1585, 7.1581, 7.1595, 7.1608, 7.1605, 7.1636, 7.1647, 7.1644, 7.1659, 7.1672, 7.1668, 7.1663, 7.1641, 7.165100000000001, 7.166100000000001, 7.1674, 7.1711, 7.1723, 7.1701, 7.1713, 7.1708, 7.1721, 7.1716, 7.171, 7.1723, 7.1736, 7.1749, 7.1762, 7.1788, 7.1782, 7.1777, 7.1773, 7.177, 7.1764, 7.176, 7.1773, 7.1808, 7.1837, 7.1832, 7.1863, 7.1859, 7.1872, 7.187, 7.1865, 7.1862, 7.1856, 7.185, 7.1844, 7.1839, 7.1833, 7.1845, 7.1856, 7.1868, 7.1863, 7.1858, 7.1887, 7.1898, 7.1893, 7.1887, 7.1881, 7.1876, 7.1879, 7.1874, 7.1885, 7.1896, 7.1907, 7.1904, 7.19, 7.1894, 7.1888, 7.19, 7.1895, 7.1939, 7.1933, 7.1946, 7.194, 7.1953, 7.1947, 7.1943, 7.1942, 7.1936, 7.1946, 7.1941, 7.1953, 7.1983, 7.1978, 7.1957, 7.1936, 7.1982, 7.1977, 7.2023, 7.2019, 7.2019, 7.2014, 7.2009, 7.2019, 7.2026, 7.2005, 7.2001, 7.1995, 7.1989, 7.2, 7.1994, 7.1989, 7.1984, 7.198, 7.1976, 7.199, 7.1984, 7.1986, 7.1983, 7.1995, 7.1989, 7.1983, 7.1977, 7.1987000000000005, 7.199700000000001, 7.1992, 7.1989, 7.1983, 7.1979, 7.1979, 7.1992, 7.1986, 7.1998, 7.1994, 7.1988, 7.1982, 7.1976, 7.1971, 7.1984, 7.1978, 7.1989, 7.1988, 7.1999, 7.1997, 7.2009, 7.2004, 7.1983, 7.1993, 7.1987, 7.1982, 7.198, 7.1974, 7.1972, 7.1966, 7.196, 7.1955, 7.195, 7.1945, 7.1944, 7.194, 7.1938, 7.1933, 7.1912, 7.1908, 7.1903, 7.1899, 7.1898, 7.1894, 7.1889, 7.1885, 7.1885, 7.1896, 7.1892, 7.1872, 7.1885, 7.188, 7.1875, 7.1871, 7.1867, 7.1863, 7.1857, 7.1852, 7.1833, 7.1833, 7.1828, 7.1823, 7.1833, 7.1843, 7.1839, 7.1835, 7.183, 7.1825, 7.1808, 7.1802, 7.1832, 7.1861, 7.1871, 7.1867, 7.1872, 7.1867, 7.1862, 7.1857, 7.1854, 7.185, 7.1844, 7.1838, 7.1817, 7.1811, 7.1805, 7.1801, 7.1795, 7.1806, 7.18, 7.1797, 7.1798, 7.1826, 7.182, 7.1816, 7.1811, 7.1808, 7.1804, 7.1816, 7.1813, 7.1824, 7.1818, 7.1818, 7.1829, 7.1825, 7.1805, 7.181500000000001, 7.182500000000001, 7.1822, 7.1817, 7.1813, 7.1807, 7.1807, 7.1817, 7.1811, 7.1825, 7.182, 7.1815, 7.1812, 7.1794, 7.1789, 7.1783, 7.1779, 7.1774, 7.1768, 7.1763, 7.1759, 7.1739, 7.1734, 7.1728, 7.1723, 7.1718, 7.1729, 7.1726, 7.1722, 7.1716, 7.1726, 7.1736, 7.1747, 7.1743, 7.1723, 7.1718, 7.1712, 7.1707, 7.1718, 7.1713, 7.1724, 7.1718, 7.1712, 7.1707, 7.1718, 7.1729, 7.1725, 7.1719, 7.1715, 7.1713, 7.1693, 7.1707, 7.1702, 7.1697, 7.1694, 7.1707, 7.1719, 7.1751, 7.1749, 7.1747, 7.1746, 7.1756, 7.1751, 7.1748, 7.1744, 7.1744, 7.1742, 7.174, 7.1737, 7.1749, 7.1745, 7.1775, 7.1771, 7.1784, 7.1778, 7.1772, 7.1767, 7.1762, 7.1758, 7.1754, 7.1766, 7.1762, 7.1758, 7.1753, 7.1764, 7.1775, 7.1769, 7.1765, 7.1746, 7.1744, 7.1739, 7.1735, 7.1752, 7.1747, 7.1742, 7.1738, 7.175, 7.176, 7.1755, 7.175, 7.1761, 7.1755, 7.1766, 7.1761, 7.1758, 7.177, 7.1766, 7.1761, 7.1794, 7.1788, 7.1784, 7.1779, 7.1775, 7.1757, 7.1758, 7.1753, 7.1748, 7.1758, 7.1754, 7.1749, 7.1744, 7.1741, 7.1736, 7.1731, 7.1744, 7.174, 7.1736, 7.1733, 7.173, 7.1729, 7.1724, 7.1721, 7.1716, 7.1726, 7.1722, 7.1717, 7.1713, 7.1709, 7.1703, 7.1698, 7.1695, 7.1693, 7.1689, 7.17, 7.171, 7.1692, 7.169, 7.17, 7.171, 7.1705, 7.1717, 7.1712, 7.1707, 7.1718, 7.1748, 7.1743, 7.1739, 7.175, 7.1746, 7.1766, 7.1762, 7.1765, 7.1762, 7.1774, 7.1769, 7.1765, 7.1762, 7.1757, 7.1768, 7.1779, 7.1774, 7.1769, 7.1779, 7.1789, 7.1785, 7.1795, 7.18, 7.1796, 7.1806, 7.18, 7.1796, 7.1807, 7.1808, 7.1805, 7.1801, 7.1783, 7.1778, 7.1773, 7.1783, 7.1778, 7.1793, 7.1788, 7.1783, 7.1793, 7.182, 7.1815, 7.181, 7.1821, 7.1816, 7.1811, 7.1806, 7.1801, 7.1809, 7.179, 7.1787, 7.1797, 7.1806, 7.1801, 7.1812, 7.1807, 7.1806, 7.1802, 7.1805, 7.1818, 7.1828, 7.183800000000001, 7.1833, 7.1828, 7.1825, 7.1826, 7.1822, 7.1818, 7.1814, 7.181, 7.1809, 7.1804, 7.1807, 7.182, 7.1815, 7.1811, 7.1824, 7.1831, 7.1862, 7.1861, 7.1858, 7.1855, 7.1865000000000006, 7.186, 7.1882, 7.1892, 7.1903, 7.1884, 7.1865, 7.1846, 7.1841, 7.1823, 7.1833, 7.1829, 7.1825, 7.1834, 7.1831, 7.183, 7.1825, 7.1834, 7.1815, 7.1811, 7.1807, 7.1817, 7.1813, 7.1808, 7.1803, 7.1798, 7.1794, 7.1789, 7.1787, 7.1798, 7.1795, 7.1791, 7.1788, 7.1799, 7.1794, 7.1789, 7.1784, 7.1782, 7.1778, 7.1773, 7.1783, 7.1781, 7.1776, 7.1785, 7.178, 7.1776, 7.1772, 7.1783, 7.1778, 7.178800000000001, 7.179800000000001, 7.181, 7.1819, 7.1815, 7.1824, 7.1833, 7.1829, 7.1824, 7.1819, 7.1815, 7.1811, 7.1824, 7.182, 7.1829, 7.181, 7.1841, 7.1851, 7.1846, 7.1846, 7.1843, 7.1838, 7.1836, 7.1846, 7.1841, 7.1836, 7.1847, 7.1843, 7.1844, 7.1846, 7.1879, 7.1875, 7.1886, 7.1882, 7.1877, 7.1872, 7.1868, 7.1864, 7.186, 7.1855, 7.1851, 7.1862, 7.1873, 7.1914, 7.1909, 7.1935, 7.193, 7.1956, 7.1953, 7.1952, 7.1947, 7.1942, 7.1952, 7.1934, 7.1916, 7.1935, 7.193, 7.1926, 7.1923, 7.1932, 7.1927, 7.1922, 7.1933, 7.1944, 7.1953, 7.1949, 7.1945, 7.194, 7.1936, 7.1933, 7.1943, 7.194, 7.1935, 7.193, 7.1925, 7.192, 7.1917, 7.1927, 7.1922, 7.1904, 7.1914, 7.1909, 7.1919, 7.1915, 7.191, 7.1905, 7.1915, 7.1925, 7.1921, 7.1917, 7.1927, 7.1923, 7.1918, 7.1914, 7.1909, 7.1905, 7.1902, 7.1906, 7.1902, 7.1901, 7.1898, 7.1915, 7.1901, 7.1897, 7.1896, 7.1913, 7.191, 7.1906, 7.1907, 7.1892, 7.1922, 7.1918, 7.1928, 7.1927, 7.1923, 7.1933, 7.193, 7.1926, 7.1924, 7.192, 7.1916, 7.1927, 7.1924, 7.192, 7.1931, 7.1926, 7.1923, 7.1906, 7.1917, 7.1914, 7.1911, 7.1906, 7.1902, 7.1903, 7.1898, 7.1893, 7.1903, 7.1901, 7.191, 7.1906, 7.1901, 7.1897, 7.1893, 7.1889, 7.1884, 7.188, 7.1862, 7.1861, 7.1857, 7.1853, 7.1849, 7.1845, 7.1841, 7.1837, 7.1834, 7.183, 7.1841, 7.1837, 7.1849, 7.1844, 7.1839, 7.1823, 7.1805, 7.1803, 7.1798, 7.1795, 7.179, 7.1785, 7.1781, 7.1777, 7.1773, 7.1769, 7.1769, 7.1765, 7.1761, 7.1773, 7.177, 7.1753, 7.1735, 7.1746, 7.1741, 7.1737, 7.1744, 7.1726, 7.1735, 7.173, 7.1727, 7.1724, 7.1721, 7.1719, 7.1719, 7.1715, 7.1729, 7.1725, 7.175, 7.1748, 7.1758, 7.1755, 7.1765, 7.1774, 7.1771, 7.178100000000001, 7.1764, 7.1766, 7.1762, 7.1771, 7.1767, 7.1777, 7.1788, 7.1784, 7.1779, 7.1789, 7.1827, 7.1823, 7.1849, 7.1859, 7.1855, 7.1851, 7.1861, 7.1871, 7.1866, 7.1863, 7.1858, 7.1867, 7.1878, 7.1888, 7.1883, 7.1893, 7.1889, 7.1898, 7.1908, 7.189, 7.1886, 7.1896, 7.1891, 7.189, 7.1885, 7.1883, 7.1879, 7.1888, 7.1887, 7.1884, 7.1879, 7.1875, 7.1871, 7.1866, 7.1861, 7.1843, 7.1839, 7.1836, 7.1845, 7.1842, 7.1837, 7.1833, 7.1829, 7.1825, 7.1821, 7.1831, 7.1826, 7.1836, 7.1845, 7.1847, 7.1843, 7.1838, 7.1835, 7.1844, 7.1842, 7.184, 7.1837, 7.1833, 7.1828, 7.1823, 7.1832, 7.1828, 7.1823, 7.182, 7.1817, 7.1812, 7.1808, 7.1818, 7.1815, 7.181, 7.1806, 7.1801, 7.1796, 7.1791, 7.1788, 7.1798, 7.1807, 7.1804, 7.1799, 7.1795, 7.179, 7.1786, 7.1781, 7.1809, 7.1817, 7.1813, 7.1808, 7.1803, 7.1829, 7.1825, 7.182, 7.1815, 7.1813, 7.181, 7.1806, 7.1803, 7.1798, 7.1793, 7.1802, 7.1799, 7.1794, 7.1793, 7.1803, 7.1812, 7.1808, 7.1818, 7.1828, 7.1825, 7.1821, 7.1817, 7.1814, 7.1811, 7.1808, 7.1804, 7.1802, 7.1798, 7.1807, 7.1803, 7.1798, 7.1809, 7.1809, 7.1822, 7.1818, 7.1814, 7.181, 7.1805, 7.1801, 7.1797, 7.1794, 7.1804, 7.1799, 7.1794, 7.18, 7.1811, 7.1807, 7.1792, 7.1788, 7.1784, 7.1779, 7.1777, 7.1776, 7.1785, 7.1794, 7.1803, 7.1798, 7.1794, 7.1791, 7.1787, 7.1771, 7.1767, 7.1763, 7.1759, 7.1755, 7.1752, 7.1749, 7.1732, 7.1727, 7.1737, 7.1732, 7.1727, 7.1724, 7.1721, 7.1716, 7.1716, 7.1712, 7.1709, 7.1717, 7.1713, 7.1721, 7.1717, 7.1713, 7.1722, 7.1718, 7.1713, 7.1712, 7.1724, 7.172, 7.1717, 7.1774, 7.1772, 7.1769, 7.1766, 7.1778, 7.1775, 7.1772, 7.1768, 7.1779, 7.1789, 7.1785, 7.1783, 7.1779, 7.1788, 7.1798, 7.1782, 7.1779, 7.1775, 7.1779, 7.1775, 7.1771, 7.1755, 7.1765, 7.1763, 7.1759, 7.176, 7.1758, 7.1764, 7.1762, 7.1772, 7.1768, 7.1764, 7.176, 7.1745, 7.1741, 7.1738, 7.1733, 7.1728, 7.1724, 7.1734, 7.1743, 7.1749, 7.1744, 7.1753, 7.1749, 7.1749, 7.1756, 7.1765, 7.1774, 7.1769, 7.1778, 7.1787, 7.1782, 7.1777, 7.1787, 7.1782, 7.179200000000001, 7.1801, 7.1798, 7.1793, 7.1788, 7.1797, 7.1798, 7.1795, 7.1803, 7.1799, 7.1796, 7.1793, 7.1789, 7.1785, 7.1784, 7.1768, 7.1777, 7.1785, 7.1782, 7.1792, 7.1789, 7.1784, 7.1781, 7.1777, 7.1773, 7.1769, 7.1764, 7.176, 7.1768, 7.1765, 7.1774, 7.177, 7.1754, 7.175, 7.1771, 7.1766, 7.1764, 7.1773, 7.1786, 7.1812, 7.1808, 7.1806, 7.1802, 7.18, 7.1809, 7.1806, 7.1847, 7.185700000000001, 7.1855, 7.1852, 7.1861, 7.1857, 7.1854, 7.185, 7.1847, 7.1844, 7.184, 7.1824, 7.182, 7.1829, 7.1827, 7.1823, 7.182, 7.1816, 7.1813, 7.1822, 7.1819, 7.1815, 7.1824, 7.1823, 7.1819, 7.1828, 7.1824, 7.1821, 7.1817, 7.1802, 7.1786, 7.1783, 7.1793, 7.1789, 7.1784, 7.1768, 7.1765, 7.1761, 7.1757, 7.1741, 7.1725, 7.1734, 7.1743, 7.1751, 7.1749, 7.1752, 7.1749, 7.1745, 7.1743, 7.1752, 7.1748, 7.1744, 7.1742, 7.1739, 7.1749, 7.1758, 7.1754, 7.1763, 7.1759, 7.1757, 7.1742, 7.1739, 7.1735, 7.1731, 7.1727, 7.1724, 7.1732, 7.1728, 7.1726, 7.1721, 7.1717, 7.1752, 7.1762, 7.1757, 7.1756, 7.1752, 7.1762, 7.1772, 7.1768, 7.1764, 7.1773, 7.177, 7.1767, 7.1776, 7.1772, 7.1768, 7.1764, 7.1761, 7.1758, 7.1755, 7.176500000000001, 7.1776, 7.1773, 7.1783, 7.178, 7.1776, 7.1785, 7.1794, 7.179, 7.1794, 7.1792, 7.1788, 7.1798, 7.1794, 7.1803, 7.1801, 7.1797, 7.1793, 7.179, 7.1785, 7.1782, 7.1778, 7.1786, 7.1782, 7.1779, 7.1775, 7.1771, 7.178, 7.1776, 7.1772, 7.1768, 7.1753, 7.1748, 7.1745, 7.1742, 7.1737, 7.1734, 7.1743, 7.1752, 7.1749, 7.1745, 7.1741, 7.1738, 7.1747, 7.1744, 7.1741, 7.1737, 7.1732, 7.173, 7.1726, 7.1735, 7.1732, 7.1729, 7.175, 7.1763, 7.176, 7.1756, 7.1764, 7.1772, 7.1768, 7.1766, 7.1762, 7.1759, 7.1755, 7.175, 7.1759, 7.1781, 7.179, 7.1789, 7.1789, 7.1786, 7.1812, 7.181, 7.1807, 7.1791, 7.1788, 7.1784, 7.1781, 7.1779, 7.1775, 7.1783, 7.1784, 7.178, 7.1776, 7.1772, 7.1769, 7.1788, 7.1785, 7.1782, 7.1779, 7.1777, 7.1772, 7.1769, 7.1765, 7.1774, 7.1772, 7.1768, 7.1776, 7.1772, 7.1757, 7.1766, 7.1775, 7.1771, 7.1768, 7.1764, 7.176, 7.1756, 7.176, 7.1747, 7.1756, 7.1752, 7.1763, 7.1772, 7.1768, 7.1765, 7.1793, 7.1778, 7.1763, 7.1771, 7.1768, 7.1764, 7.176, 7.1784, 7.1792, 7.18, 7.1786, 7.1783, 7.178, 7.1789, 7.1787, 7.1774, 7.1771, 7.177, 7.1778, 7.1774, 7.177, 7.1779, 7.1775, 7.176, 7.1757, 7.1753, 7.1752, 7.1748, 7.1744, 7.1741, 7.1737, 7.1733, 7.1729, 7.1726, 7.1735, 7.1731, 7.1739, 7.1735, 7.1722, 7.1731, 7.1729, 7.1737, 7.1734, 7.1748, 7.1758, 7.1755, 7.1751, 7.1747, 7.1744, 7.174, 7.1737, 7.1734, 7.1719, 7.1716, 7.1736, 7.1732, 7.174, 7.1751, 7.1748, 7.1745, 7.1741, 7.1741, 7.1749, 7.1745, 7.1742, 7.1752, 7.1749, 7.1759, 7.1756, 7.1752, 7.1752, 7.1791, 7.1788, 7.1798, 7.1795, 7.1792, 7.1801, 7.1798, 7.1806, 7.1802, 7.1799, 7.1808, 7.1804, 7.1801, 7.1797, 7.1817, 7.1802, 7.1798, 7.1838, 7.1834, 7.183, 7.1838, 7.1835, 7.1844, 7.1829, 7.1826, 7.1823, 7.1819, 7.1815, 7.1811, 7.1808, 7.1805, 7.1801, 7.1809, 7.1805, 7.18, 7.1796, 7.1804, 7.18, 7.1796, 7.1792, 7.1788, 7.1785, 7.1781, 7.1779, 7.1776, 7.1785, 7.178, 7.1782, 7.1777, 7.1788, 7.1785, 7.1782, 7.1791, 7.1788, 7.1784, 7.1783, 7.1779, 7.1787, 7.1783, 7.178, 7.1777, 7.1773, 7.1769, 7.1754, 7.1763, 7.177, 7.1766, 7.1751, 7.1754, 7.175, 7.1759, 7.1756, 7.1752, 7.1749, 7.1734, 7.1731, 7.1739, 7.1735, 7.1745, 7.1753, 7.1753, 7.1749, 7.1745, 7.1742, 7.1727, 7.1724, 7.1721, 7.1722, 7.1744, 7.1753, 7.1738, 7.1735, 7.1731, 7.174, 7.1737, 7.1745, 7.1754, 7.175, 7.1747, 7.1743, 7.1739, 7.1736, 7.1733, 7.1729, 7.1725, 7.1733, 7.1729, 7.1725, 7.1733, 7.1816, 7.1824, 7.1821, 7.1817, 7.1814, 7.181, 7.1806, 7.1802, 7.1798, 7.1806, 7.1802, 7.1799, 7.1807, 7.1803, 7.1805, 7.1801, 7.1797, 7.1805, 7.1801, 7.1816, 7.1812, 7.1816, 7.1812, 7.1809, 7.1817, 7.1813, 7.1809, 7.1806, 7.1814, 7.1813, 7.1809, 7.181, 7.181, 7.1812, 7.1808, 7.1795, 7.1793, 7.179, 7.1786, 7.1799, 7.1797, 7.1795, 7.1791, 7.1787, 7.1783, 7.1779, 7.1766, 7.1774, 7.1774, 7.177, 7.1779, 7.1788, 7.1801, 7.1801, 7.1822, 7.183, 7.1815, 7.1811, 7.1819, 7.1815, 7.1812, 7.1808, 7.1805, 7.1812, 7.1809, 7.1805, 7.1803, 7.18, 7.1809, 7.1818, 7.1816, 7.1825, 7.1822, 7.1818, 7.1829, 7.1826, 7.1846, 7.1844, 7.1841, 7.1838, 7.1827, 7.1834, 7.1842, 7.1849, 7.1857, 7.1854, 7.1861, 7.1861, 7.1869, 7.1865, 7.1873, 7.1869, 7.1866, 7.1874, 7.187, 7.1867, 7.1863, 7.1859, 7.1866, 7.1862, 7.1858, 7.1857, 7.1865, 7.1861, 7.1857, 7.1854, 7.1851, 7.1847, 7.1846, 7.1832, 7.1828, 7.1836, 7.1833, 7.1829, 7.1837, 7.1833, 7.1831, 7.1827, 7.1837, 7.1833, 7.183, 7.1837, 7.1845, 7.1853, 7.1849, 7.1866, 7.1874, 7.1884, 7.188, 7.1878, 7.1875, 7.1872, 7.187, 7.1866, 7.187600000000001, 7.188600000000001, 7.1883, 7.1881, 7.1868, 7.1865, 7.1865, 7.1875, 7.1871, 7.1868, 7.1864, 7.1871, 7.1868, 7.1876, 7.1885, 7.189500000000001, 7.1892, 7.1889, 7.1888, 7.1884, 7.1893, 7.189, 7.1887, 7.1897, 7.1893, 7.1889, 7.1897, 7.1894, 7.189, 7.1898, 7.1905, 7.1901, 7.1908, 7.1905, 7.1902, 7.1899, 7.1908, 7.1904, 7.1913, 7.1917, 7.1914, 7.191, 7.1907, 7.1904, 7.19, 7.1898, 7.1894, 7.1894, 7.1897, 7.1899, 7.1896, 7.1904, 7.1901, 7.1909, 7.1908, 7.1916, 7.1913, 7.192, 7.1916, 7.1924, 7.1921, 7.1918, 7.1914, 7.19, 7.1898, 7.1895, 7.1903, 7.1911, 7.1908, 7.1905, 7.1903, 7.1913, 7.1921, 7.1917, 7.1914, 7.1922, 7.1919, 7.1915, 7.1923, 7.1933, 7.1933, 7.1921, 7.1923, 7.192, 7.1917, 7.1918, 7.1919, 7.191, 7.1906, 7.191, 7.1907, 7.1904, 7.1901, 7.1898, 7.1911, 7.1908, 7.1905, 7.1901, 7.1898, 7.1896, 7.1892, 7.1889, 7.1875, 7.1872, 7.1881, 7.1877, 7.1885, 7.1881, 7.1879, 7.1877, 7.1893, 7.1901, 7.1909, 7.1906, 7.1905, 7.1913, 7.1921, 7.1917, 7.1913, 7.1921, 7.1917, 7.1913, 7.1899, 7.1895, 7.1881, 7.1879, 7.1878, 7.1874, 7.187, 7.1868, 7.1864, 7.1861, 7.1858, 7.1854, 7.184, 7.1847, 7.1844, 7.1873, 7.187, 7.188000000000001, 7.1867, 7.1864, 7.185, 7.1847, 7.1854, 7.1851, 7.1848, 7.1845, 7.1853, 7.1861, 7.1847, 7.1843, 7.184, 7.1836, 7.1844, 7.183, 7.1828, 7.1837, 7.1833, 7.1829, 7.1827, 7.1834, 7.1843, 7.1839, 7.1836, 7.1833, 7.183, 7.1838, 7.1836, 7.1844, 7.1841, 7.1849, 7.1845, 7.1842, 7.1839, 7.1836, 7.1856, 7.1865, 7.1873, 7.188, 7.1877, 7.1874, 7.1882, 7.1879, 7.1876, 7.1872, 7.1868, 7.1865, 7.1862, 7.1858, 7.1854, 7.1864, 7.1874, 7.1871, 7.1867, 7.1863, 7.1859, 7.1856, 7.1852, 7.1848, 7.1836, 7.185, 7.1846, 7.1853, 7.1861, 7.1857, 7.1853, 7.1852, 7.1838, 7.1835, 7.1831, 7.1828, 7.1825, 7.1822, 7.1818, 7.1816, 7.1813, 7.1822, 7.182, 7.1827, 7.1824, 7.182, 7.1816, 7.1812, 7.1798, 7.1794, 7.1802, 7.1799, 7.1796, 7.1792, 7.18, 7.1796, 7.1794, 7.179, 7.1799, 7.1817, 7.1813, 7.1821, 7.182, 7.1827, 7.1823, 7.183, 7.1827, 7.1824, 7.1832, 7.1828, 7.183800000000001, 7.184800000000001, 7.1857, 7.1865, 7.1861, 7.1858, 7.1856, 7.1864, 7.1872, 7.188, 7.19, 7.191000000000001, 7.1906, 7.1902, 7.1909, 7.1905, 7.1912, 7.1908, 7.191800000000001, 7.1915, 7.1912, 7.1919, 7.1916, 7.1924, 7.192, 7.1916, 7.1902, 7.1899, 7.1896, 7.1893, 7.1889, 7.1886, 7.1884, 7.1892, 7.1888, 7.1885, 7.1893, 7.1889, 7.1886, 7.1883, 7.188, 7.1876, 7.1874, 7.1871, 7.1868, 7.1865, 7.1863, 7.1861, 7.1868, 7.1872, 7.1869, 7.1866, 7.1864, 7.1862, 7.1859, 7.1868, 7.1878, 7.1876, 7.1896, 7.1893, 7.189, 7.1886, 7.1893, 7.1892, 7.1889, 7.1887, 7.1884, 7.1882, 7.188, 7.1898, 7.1895, 7.1894, 7.189, 7.189, 7.1887, 7.1885, 7.1882, 7.1892000000000005, 7.19, 7.19, 7.1896, 7.1904, 7.1912, 7.1909, 7.1905, 7.1901, 7.1898, 7.1905, 7.1901, 7.1898, 7.1905, 7.1901, 7.1908, 7.1906, 7.1895, 7.1893, 7.1893, 7.189, 7.1886, 7.1883, 7.1881, 7.188, 7.1876, 7.1872, 7.1869, 7.1876, 7.1872, 7.188, 7.1876, 7.1873, 7.1869, 7.1866, 7.1874, 7.1871, 7.1878, 7.1874, 7.187, 7.1883, 7.188, 7.1877, 7.1873, 7.1881, 7.1878, 7.1874, 7.1872, 7.1869, 7.1871, 7.1867, 7.1863, 7.187, 7.1866, 7.1873, 7.187, 7.1868, 7.1865, 7.1861, 7.1858, 7.1856, 7.1862, 7.1879, 7.1866, 7.1873, 7.1869, 7.1866, 7.1862, 7.187, 7.1866, 7.1863, 7.187, 7.1866, 7.1865, 7.1873, 7.1869, 7.1865, 7.1862, 7.1858, 7.1856, 7.1863, 7.187, 7.1867, 7.1864, 7.1863, 7.1861, 7.1857, 7.1864, 7.1862, 7.1869, 7.1866, 7.1863, 7.186, 7.1848, 7.1835, 7.1832, 7.1829, 7.1826, 7.1833, 7.1831, 7.1828, 7.1825, 7.1822, 7.1819, 7.1816, 7.1813, 7.1811, 7.1809, 7.1806, 7.1804, 7.1801, 7.181, 7.1807, 7.1804, 7.1801, 7.18, 7.1808, 7.1795, 7.1792, 7.18, 7.1797, 7.1784, 7.1781, 7.1778, 7.1786, 7.1784, 7.1791, 7.181, 7.1856, 7.1853, 7.185, 7.1857, 7.1853, 7.1861, 7.1899, 7.1909, 7.1906, 7.1904, 7.19, 7.1903, 7.19, 7.1896, 7.1883, 7.1881, 7.1888, 7.1899, 7.1909, 7.1916, 7.1905, 7.1902, 7.1899, 7.1888, 7.1885, 7.1885, 7.1882, 7.1892000000000005, 7.1889, 7.1886, 7.1882, 7.1869, 7.1856, 7.1865, 7.1862, 7.1858, 7.1855, 7.1852, 7.1849, 7.1856, 7.1845, 7.1845, 7.1841, 7.1837, 7.1844, 7.1841, 7.1838, 7.1835, 7.1831, 7.1827, 7.1837, 7.1839, 7.1836, 7.1843, 7.184, 7.1847, 7.1845, 7.1844, 7.1841, 7.1837, 7.1835, 7.1842, 7.1849, 7.1859, 7.1867, 7.1854, 7.185, 7.1857, 7.1854, 7.1861, 7.1857, 7.1854, 7.1851, 7.1848, 7.1846, 7.1844, 7.184, 7.1837, 7.1834, 7.1851, 7.1858, 7.1858, 7.1854, 7.1862, 7.1858, 7.1857, 7.1864, 7.1862, 7.1859, 7.1855, 7.1863, 7.186, 7.1859, 7.1856, 7.1853, 7.185, 7.1847, 7.1844, 7.1841, 7.1838, 7.1835, 7.1832, 7.1829, 7.1826, 7.1823, 7.182, 7.1818, 7.1816, 7.1803, 7.18, 7.1797, 7.1804, 7.1811, 7.1818, 7.1815, 7.1812, 7.1819, 7.1806, 7.1804, 7.1801, 7.1799, 7.1797, 7.1794, 7.179, 7.180000000000001, 7.181000000000001, 7.1807, 7.1826, 7.1836, 7.1832, 7.1839, 7.1835, 7.1833, 7.184, 7.1849, 7.1846, 7.1843, 7.183, 7.1871, 7.1869, 7.1907, 7.1894, 7.1911, 7.1908, 7.1906, 7.1914, 7.1952, 7.1959, 7.1946, 7.1944, 7.194, 7.1947, 7.1944, 7.1951, 7.1949, 7.1977, 7.1994, 7.1999, 7.1987, 7.1984, 7.1981, 7.1995, 7.1992, 7.199, 7.1978, 7.1985, 7.1983, 7.199, 7.1987, 7.1974, 7.197, 7.1968, 7.1955, 7.1963, 7.197, 7.1969, 7.1967, 7.1965, 7.1961, 7.1958, 7.1955, 7.1943, 7.194, 7.1937, 7.1934, 7.194, 7.1938, 7.1925, 7.1925, 7.1922, 7.1929, 7.1937, 7.1943, 7.1951, 7.1958, 7.1954, 7.1961, 7.1958, 7.1945, 7.1942, 7.1939, 7.1946, 7.1943, 7.1963, 7.1961, 7.1957, 7.1964, 7.1962, 7.1972000000000005, 7.1978, 7.1975, 7.1971, 7.1968, 7.1964, 7.1961, 7.1958, 7.1956, 7.1954, 7.1952, 7.195, 7.1946, 7.1944, 7.194, 7.1937, 7.1934, 7.1941, 7.1938, 7.1935, 7.1931, 7.1927, 7.1933, 7.193, 7.1926, 7.1932, 7.193, 7.1937, 7.1934, 7.1931, 7.1928, 7.1925, 7.1922, 7.193, 7.1926, 7.1934, 7.1941, 7.1938, 7.1936, 7.1943, 7.1953, 7.195, 7.1946, 7.1944, 7.1942, 7.1939, 7.1946, 7.1942, 7.1939, 7.1936, 7.1946, 7.1944, 7.1942, 7.194, 7.1937, 7.1934, 7.193, 7.1937, 7.1934, 7.1922, 7.1919, 7.1916, 7.1914, 7.1911, 7.1908, 7.1917, 7.1925, 7.1922, 7.1919, 7.1916, 7.1919, 7.1916, 7.1915, 7.1923, 7.1921, 7.1918, 7.1907, 7.1905, 7.1902, 7.191, 7.1918, 7.1916, 7.1912, 7.192, 7.1929, 7.1927, 7.1915, 7.1903, 7.1891, 7.1889, 7.1886, 7.1884, 7.1894, 7.19, 7.1918, 7.1926, 7.1934, 7.194, 7.1937, 7.1967, 7.1966, 7.1976, 7.1973, 7.1971, 7.1968, 7.1965, 7.1962, 7.1958, 7.1954, 7.1952, 7.195, 7.1946, 7.1934, 7.1941, 7.1947, 7.1943, 7.1949, 7.1948, 7.1945, 7.1955, 7.1953, 7.1949, 7.1956, 7.1963, 7.197, 7.1977, 7.1974, 7.1981, 7.1978, 7.1985, 7.1981, 7.1979, 7.2024, 7.2021, 7.202, 7.2008, 7.2015, 7.2012, 7.2009, 7.2007, 7.2014, 7.2011, 7.2, 7.1988, 7.1985, 7.1983, 7.198, 7.1987, 7.1984, 7.1984, 7.1981, 7.1978, 7.1974, 7.1971, 7.1967, 7.1964, 7.1964, 7.1981, 7.1979, 7.1976, 7.1964, 7.1978, 7.1976, 7.1995, 7.1992, 7.199, 7.1987, 7.1984, 7.1983, 7.198, 7.1977, 7.1994, 7.1986, 7.1991, 7.1989, 7.1996, 7.1993, 7.201, 7.201, 7.2008, 7.2015, 7.2011, 7.2008, 7.2028, 7.2025, 7.2024, 7.2012, 7.2009, 7.2006, 7.2003, 7.1999, 7.1996, 7.1997, 7.1994, 7.1991, 7.1988, 7.1976, 7.1983, 7.198, 7.1977, 7.1974, 7.1972, 7.1979, 7.1977, 7.1975, 7.1982, 7.1979, 7.1976, 7.1973, 7.199, 7.1987, 7.2062, 7.2059, 7.2055, 7.2053, 7.206, 7.2058, 7.2055, 7.2052, 7.2049, 7.2046, 7.2042, 7.2039, 7.2036, 7.2062, 7.2061, 7.2067, 7.2064, 7.2061, 7.2059, 7.2059, 7.2056, 7.2044, 7.2063, 7.2098, 7.2096, 7.2115, 7.2122, 7.212, 7.2117, 7.2115, 7.2131, 7.213, 7.2118, 7.2106, 7.2102, 7.2099, 7.2095, 7.2091, 7.2097, 7.2094, 7.2091, 7.2088, 7.2114, 7.212, 7.2117, 7.2113, 7.211, 7.2106, 7.2112, 7.2101, 7.2097, 7.2094, 7.209, 7.2096, 7.2109, 7.2115, 7.2112, 7.2119, 7.2116, 7.2114, 7.2113, 7.211, 7.2107, 7.2114, 7.2121, 7.212, 7.2128, 7.2125, 7.2122, 7.2122, 7.2119, 7.2126, 7.2133, 7.214, 7.2147, 7.2143, 7.2139, 7.2137, 7.2143, 7.2151, 7.2148, 7.2146, 7.2152, 7.2149, 7.2146, 7.2143, 7.2141, 7.2139, 7.2137, 7.2144, 7.2141, 7.2138, 7.2135, 7.2133, 7.2129, 7.2145, 7.2143, 7.2159, 7.2166, 7.2164, 7.217, 7.2177, 7.2175, 7.2163, 7.216, 7.2158, 7.2156, 7.2154, 7.2151, 7.2149, 7.2147, 7.2153, 7.215, 7.2147, 7.2184, 7.2181, 7.2178, 7.2196, 7.2202, 7.2209, 7.2206, 7.2194, 7.2191, 7.2188, 7.2192, 7.219, 7.2187, 7.2184, 7.2181, 7.2179, 7.2167, 7.2164, 7.2171, 7.2177, 7.2184, 7.2181, 7.219, 7.2206, 7.2212, 7.2218, 7.2215, 7.2241, 7.2238, 7.2236, 7.2233, 7.223, 7.2228, 7.2245, 7.2252, 7.225, 7.2256, 7.2253, 7.2259, 7.2255, 7.2261, 7.2249, 7.2247, 7.2244, 7.2246, 7.2243, 7.2241, 7.2238, 7.2235, 7.2234, 7.2232, 7.2229, 7.2217, 7.2214, 7.2212, 7.221, 7.2208, 7.2205, 7.2203, 7.22, 7.2198, 7.2196, 7.2203, 7.22, 7.2198, 7.2198, 7.2196, 7.2194, 7.2192, 7.22, 7.2197, 7.2195, 7.2192, 7.2198, 7.2195, 7.2192, 7.2189, 7.2186, 7.2182, 7.2179, 7.2176, 7.2174, 7.2172, 7.2169, 7.2158, 7.2165, 7.2162, 7.2159, 7.215, 7.2147, 7.2144, 7.215, 7.2157, 7.2154, 7.2151, 7.2158, 7.2165, 7.2169, 7.2167, 7.2173, 7.217, 7.2168, 7.2157, 7.2145, 7.2151, 7.2148, 7.2145, 7.2151, 7.2157, 7.2154, 7.2151, 7.2141, 7.2147, 7.2144, 7.215, 7.2147, 7.2144, 7.2141, 7.2138, 7.2127, 7.2125, 7.2122, 7.212, 7.2117, 7.2114, 7.2111, 7.2109, 7.2115, 7.2121, 7.2127, 7.2133, 7.213, 7.2136, 7.2133, 7.2121, 7.2118, 7.2115, 7.2122, 7.2119, 7.2116, 7.2113, 7.212, 7.2117, 7.2125, 7.2123, 7.2129, 7.2126, 7.2123, 7.2129, 7.2139, 7.2146, 7.2144, 7.2142, 7.2149, 7.2155, 7.2152, 7.215, 7.2147, 7.2144, 7.2144, 7.2141, 7.2139, 7.2136, 7.2133, 7.213, 7.2136, 7.2142, 7.2149, 7.2148, 7.2145, 7.2153, 7.215, 7.2147, 7.2145, 7.215, 7.2147, 7.2144, 7.2142, 7.2139, 7.2136, 7.2134, 7.2132, 7.2138, 7.2135, 7.2142, 7.214, 7.2146, 7.2143, 7.214, 7.2137, 7.2143, 7.2149, 7.2156, 7.2153, 7.215, 7.2148, 7.2145, 7.2143, 7.214, 7.215000000000001, 7.2148, 7.2154, 7.216, 7.2166, 7.2163, 7.2169, 7.2157, 7.2155, 7.2161, 7.2158, 7.2155, 7.2152, 7.2149, 7.2147, 7.2144, 7.2159, 7.2156, 7.2153, 7.2151, 7.2142, 7.2139, 7.2136, 7.2134, 7.2132, 7.2142, 7.214, 7.2137, 7.2134, 7.2152, 7.2149, 7.2146, 7.2149, 7.2146, 7.2144, 7.2141, 7.2138, 7.2135, 7.2132, 7.2158, 7.2155, 7.2152, 7.2158, 7.2155, 7.2152, 7.2149, 7.2155, 7.2152, 7.2149, 7.2146, 7.2152, 7.2158, 7.2184, 7.2182, 7.2179, 7.2185, 7.2182, 7.2179, 7.2185, 7.2183, 7.218, 7.2187, 7.2194, 7.2192, 7.2189, 7.2195, 7.2193, 7.219, 7.2188, 7.2228, 7.2225, 7.2222, 7.2219, 7.2216, 7.2213, 7.2211, 7.2208, 7.2205, 7.221, 7.2208, 7.2205, 7.2202, 7.2208, 7.2205, 7.2211, 7.2217, 7.2206, 7.2203, 7.22, 7.2197, 7.2195, 7.2201, 7.2198, 7.2195, 7.2201, 7.2199, 7.2188, 7.2186, 7.2184, 7.2191, 7.2215, 7.2212, 7.2209, 7.2206, 7.2203, 7.2206, 7.2204, 7.2211, 7.2209, 7.2206, 7.2217, 7.2214, 7.222, 7.2226, 7.2224, 7.2221, 7.2227, 7.2225, 7.2223, 7.2229, 7.2227, 7.2224, 7.2239, 7.2236, 7.2242, 7.2239, 7.2236, 7.2233, 7.2232, 7.2238, 7.2236, 7.2233, 7.223, 7.2227, 7.2234, 7.2223, 7.222, 7.2217, 7.2222, 7.2229, 7.2227, 7.2224, 7.2231, 7.2238, 7.2241, 7.2238, 7.2235, 7.2232, 7.2229, 7.2236, 7.2233, 7.2239, 7.2243, 7.2242, 7.224, 7.2246, 7.2243, 7.225, 7.2256, 7.2263, 7.2261, 7.2258, 7.2264, 7.2262, 7.226, 7.2257, 7.2254, 7.2251, 7.2249, 7.2254, 7.2254, 7.2254, 7.2251, 7.2248, 7.225, 7.2266, 7.2264, 7.2261, 7.2268, 7.2265, 7.2265, 7.2264, 7.2263, 7.2261, 7.2268, 7.2267, 7.2264, 7.2261, 7.226, 7.2258, 7.2255, 7.2254, 7.226, 7.2266, 7.2264, 7.2262, 7.2259, 7.2256, 7.2262, 7.2259, 7.2257, 7.2254, 7.2261, 7.2267, 7.2264, 7.2313, 7.231, 7.2308, 7.2305, 7.2303, 7.2306, 7.232, 7.2336, 7.2334, 7.2331, 7.2328, 7.2334, 7.2335, 7.2332, 7.2331, 7.2329, 7.2327, 7.2325, 7.2323, 7.2321, 7.2328, 7.2326, 7.2323, 7.232, 7.2327, 7.2324, 7.2323, 7.232, 7.2317, 7.2314, 7.232, 7.2317, 7.2314, 7.232, 7.2318, 7.2316, 7.2322, 7.232, 7.2317, 7.2316, 7.2313, 7.231, 7.2307, 7.2305, 7.2303, 7.23, 7.2306, 7.2304, 7.2301, 7.23, 7.2289, 7.2287, 7.2293, 7.229, 7.2287, 7.2285, 7.2283, 7.2281, 7.2278, 7.2277, 7.2274, 7.2282, 7.2283, 7.2284, 7.2282, 7.228, 7.2278, 7.2275, 7.2282, 7.2279, 7.2276, 7.2274, 7.2271, 7.2262, 7.226, 7.2263, 7.2261, 7.2259, 7.2256, 7.2254, 7.2252, 7.2249, 7.2256, 7.2254, 7.2251, 7.2249, 7.2247, 7.2273, 7.2271, 7.2268, 7.2265, 7.2271, 7.2279, 7.2276, 7.2282, 7.2279, 7.2285, 7.2282, 7.2279, 7.2277, 7.2274, 7.2272, 7.2269, 7.2275, 7.2281, 7.2278, 7.2284, 7.229, 7.2288, 7.2286, 7.2283, 7.2288, 7.2294, 7.2291, 7.229, 7.2287, 7.2285, 7.2282, 7.228, 7.2278, 7.2275, 7.2276, 7.2273, 7.2301, 7.2301, 7.2307, 7.2304, 7.2321, 7.2318, 7.2317, 7.2314, 7.2313, 7.231, 7.2308, 7.2305, 7.2304, 7.2301, 7.2309, 7.2316, 7.2305, 7.2304, 7.2311, 7.2308, 7.2305, 7.2311, 7.2312, 7.231, 7.2309, 7.2307, 7.2313, 7.2319, 7.2317, 7.2315, 7.2313, 7.231, 7.2307, 7.2304, 7.2304, 7.2302, 7.23, 7.2306, 7.2321, 7.2318, 7.2324, 7.233, 7.2327, 7.2333, 7.2344, 7.2342, 7.2348, 7.2337, 7.2334, 7.2331, 7.2328, 7.2325, 7.2352, 7.2359, 7.2358, 7.2364, 7.2361, 7.2374, 7.2381, 7.2384, 7.2381, 7.2387, 7.2393, 7.239, 7.2388, 7.2394, 7.24, 7.2397, 7.2395, 7.2392, 7.239, 7.2396, 7.2393, 7.239, 7.2387, 7.2384, 7.2381, 7.2378, 7.2375, 7.2381, 7.2379, 7.2377, 7.2374, 7.2372, 7.2369, 7.2366, 7.2363, 7.2368, 7.2358, 7.2365, 7.2365, 7.2371, 7.2378, 7.2376, 7.2373, 7.2371, 7.2369, 7.2366, 7.2372, 7.237, 7.2376, 7.2382, 7.2379, 7.2377, 7.2374, 7.2379, 7.2376, 7.2374, 7.2372, 7.2377, 7.2375, 7.238, 7.2378, 7.2384, 7.2381, 7.2387, 7.2384, 7.2389, 7.2386, 7.2392, 7.239, 7.2379, 7.2376, 7.2373, 7.238, 7.2379, 7.2377, 7.2385, 7.2382, 7.2371, 7.2369, 7.2387, 7.2386, 7.2384, 7.2382, 7.2379, 7.2378, 7.2383, 7.2382, 7.2381, 7.2379, 7.2377, 7.2375, 7.2382, 7.2379, 7.2376, 7.2383, 7.2393, 7.2391, 7.2398, 7.2396, 7.2393, 7.2402, 7.2399, 7.2397, 7.2394, 7.2391, 7.2389, 7.2387, 7.2386, 7.2391, 7.2388, 7.2378, 7.2384, 7.2373, 7.237, 7.2359, 7.2357, 7.2347, 7.2344, 7.2344, 7.2341, 7.234, 7.2346, 7.2343, 7.2348, 7.2346, 7.2344, 7.2341, 7.2338, 7.2336, 7.2325, 7.2322, 7.2319, 7.2316, 7.2314, 7.2311, 7.2309, 7.2307, 7.2304, 7.231, 7.2307, 7.2304, 7.2304, 7.231, 7.2316, 7.2313, 7.231, 7.2308, 7.2308, 7.2305, 7.2311, 7.2309, 7.2315, 7.2304, 7.2314, 7.2311, 7.2309, 7.2306, 7.2321, 7.2352, 7.235, 7.2348, 7.2346, 7.2352, 7.2358, 7.2356, 7.2353, 7.2351, 7.2348, 7.2337, 7.2334, 7.2334, 7.2332, 7.2337, 7.2326, 7.2324, 7.2321, 7.2326, 7.2323, 7.2329, 7.2335, 7.234, 7.2337, 7.2371, 7.2377, 7.2375, 7.2365, 7.2374, 7.2381, 7.2394, 7.2393, 7.239, 7.2396, 7.2393, 7.2391, 7.2388, 7.2394, 7.24, 7.2397, 7.2394, 7.24, 7.2407, 7.2413, 7.241, 7.2407, 7.2414, 7.2411, 7.2408, 7.2398, 7.2398, 7.2395, 7.2394, 7.2391, 7.2391, 7.2389, 7.2387, 7.2384, 7.239, 7.2394, 7.2394, 7.2392, 7.239, 7.2388, 7.2399, 7.2397, 7.2411, 7.2417, 7.2414, 7.2411, 7.2409, 7.2407, 7.2405, 7.2436, 7.2433, 7.2439, 7.2436, 7.2442, 7.2439, 7.2436, 7.2444, 7.2441, 7.2431, 7.2428, 7.2426, 7.2431, 7.243, 7.2428, 7.2425, 7.2439, 7.2445, 7.245, 7.2448, 7.2445, 7.2442, 7.2439, 7.2436, 7.2434, 7.2431, 7.2437, 7.2435, 7.2432, 7.2429, 7.2419, 7.2426, 7.2416, 7.2406, 7.2403, 7.24, 7.239, 7.2388, 7.2385, 7.2376, 7.2382, 7.2406, 7.2413, 7.2414, 7.242, 7.2425, 7.2423, 7.2422, 7.242, 7.2425, 7.2423, 7.242, 7.2418, 7.2417, 7.2414, 7.2419, 7.2417, 7.2415, 7.2412, 7.2418, 7.2416, 7.2413, 7.2411, 7.2417, 7.2415, 7.2405, 7.2403, 7.2401, 7.2398, 7.2395, 7.2392, 7.239, 7.2388, 7.2386, 7.2384, 7.2381, 7.2387, 7.2384, 7.239, 7.2396, 7.2393, 7.2391, 7.2388, 7.2386, 7.2384, 7.2391, 7.2398, 7.2396, 7.2385, 7.2383, 7.2381, 7.2389, 7.2388, 7.2385, 7.2383, 7.238, 7.2377, 7.2374, 7.2364, 7.2361, 7.2366, 7.2364, 7.2361, 7.2358, 7.2359, 7.2361, 7.2359, 7.2365, 7.2371, 7.2373, 7.237, 7.2367, 7.2367, 7.2372, 7.2369, 7.2366, 7.2363, 7.2361, 7.2358, 7.2364, 7.2366, 7.2365, 7.2364, 7.2361, 7.2358, 7.2355, 7.2369, 7.2374, 7.2376, 7.2381, 7.2378, 7.2375, 7.2384, 7.2383, 7.2389, 7.2387, 7.2384, 7.2381, 7.2378, 7.2383, 7.2389, 7.2387, 7.2385, 7.2375, 7.2372, 7.2377, 7.2382, 7.2379, 7.2384, 7.239, 7.2395, 7.2385, 7.2391, 7.2388, 7.2385, 7.2384, 7.2381, 7.2378, 7.2386, 7.2383, 7.238, 7.2377, 7.2375, 7.2373, 7.2387, 7.2385, 7.2382, 7.2379, 7.2376, 7.2373, 7.237, 7.2368, 7.2373, 7.2378, 7.2383, 7.2388, 7.2385, 7.2383, 7.238, 7.2427, 7.2433, 7.2444, 7.2455, 7.2445, 7.2435, 7.2425, 7.243, 7.2428, 7.2434, 7.2431, 7.2428, 7.2418, 7.2423, 7.2428, 7.2425, 7.2422, 7.242, 7.2426, 7.2424, 7.2422, 7.2427, 7.2433, 7.2459, 7.2457, 7.2486, 7.2484, 7.2475, 7.2475, 7.2493, 7.2499, 7.2504, 7.2509, 7.2506, 7.2503, 7.2503, 7.2517, 7.2547, 7.2561, 7.2559, 7.2565, 7.2564, 7.2563, 7.2577, 7.2575, 7.2572, 7.2586, 7.259, 7.2596, 7.2595, 7.2592, 7.259, 7.2587, 7.2609, 7.2606, 7.2611, 7.261, 7.2615, 7.2628, 7.2625, 7.263, 7.2627, 7.2641, 7.2639, 7.2637, 7.2635, 7.264, 7.2637, 7.2642, 7.2639, 7.2636, 7.2642, 7.264, 7.2638, 7.2643, 7.2641, 7.2638, 7.2638, 7.2643, 7.264, 7.2637, 7.2634, 7.2632, 7.2637, 7.2643, 7.2633, 7.2646, 7.2643, 7.2649, 7.2646, 7.2643, 7.2648, 7.2654, 7.2659, 7.2656, 7.2653, 7.2652, 7.265, 7.2655, 7.2664, 7.2661, 7.2651, 7.2648, 7.267, 7.2676, 7.2682, 7.2687, 7.2692, 7.269, 7.2696, 7.2693, 7.269, 7.2695, 7.2692, 7.2689, 7.2694, 7.2699, 7.2704, 7.2701, 7.2708, 7.2722, 7.2752, 7.2749, 7.2746, 7.2759, 7.2773, 7.2771, 7.2769, 7.2774, 7.2771, 7.2768, 7.2758, 7.2755, 7.2752, 7.2749, 7.2746, 7.2744, 7.2741, 7.2746, 7.2743, 7.2756, 7.2753, 7.2758, 7.2755, 7.2761, 7.2766, 7.2763, 7.2785, 7.2775, 7.2773, 7.2771, 7.2777, 7.2769, 7.2775, 7.2773, 7.2771, 7.2768, 7.2758, 7.2755, 7.2761, 7.2774, 7.2778, 7.2784, 7.2782, 7.2779, 7.2776, 7.2773, 7.2778, 7.2784, 7.2774, 7.2787, 7.2793, 7.2799, 7.2797, 7.2795, 7.2792, 7.279, 7.2795, 7.28, 7.2806, 7.2803, 7.2817, 7.2814, 7.2819, 7.2834, 7.2831, 7.2861, 7.2859, 7.2864, 7.2877, 7.2875, 7.2882, 7.2879, 7.2884, 7.2882, 7.289, 7.2903, 7.2902, 7.29, 7.2914, 7.2923, 7.2928, 7.2926, 7.2924, 7.2921, 7.2926, 7.2924, 7.2921, 7.2918, 7.2916, 7.2921, 7.2919, 7.294, 7.2944, 7.2957, 7.2955, 7.2953, 7.2958, 7.2956, 7.2946, 7.2951, 7.2949, 7.2947, 7.2944, 7.2946, 7.295, 7.2955, 7.2953, 7.2963, 7.2969, 7.2967, 7.2966, 7.2963, 7.2962, 7.2959, 7.2956, 7.2953, 7.2977, 7.299, 7.2996, 7.3003, 7.3007, 7.3011, 7.3009, 7.3007, 7.3005, 7.3003, 7.3, 7.2997, 7.2989, 7.2994, 7.2993, 7.3008, 7.3005, 7.2998, 7.2997, 7.2994, 7.3, 7.3006, 7.3003, 7.3, 7.2999, 7.3005, 7.3003, 7.3001, 7.3007, 7.3005, 7.301, 7.3015, 7.3012, 7.3017, 7.3022, 7.3019, 7.3019, 7.3016, 7.3013, 7.3018, 7.3015, 7.3013, 7.3017, 7.3014], '192.168.122.120': [10.6947, 10.968, 10.7904, 9.414, 10.8624, 10.9016, 10.1753, 9.6234, 9.2708, 8.9542, 9.1234, 8.8404, 8.6506, 8.848, 8.6484, 8.4689, 8.2962, 8.1666, 8.0476, 7.952, 7.8317, 7.7518, 7.6616, 7.609, 7.5311, 7.6589, 7.6113, 7.5676, 7.53, 7.4573, 7.5202, 7.4509, 7.3848, 7.4758, 7.5641, 7.5048, 7.4575, 7.4098, 7.3707, 7.322, 7.4107, 7.8761, 7.8302, 7.7868, 7.6311, 7.591, 7.5455, 7.4205, 7.3908, 7.3587, 7.35, 7.4339, 7.4175, 7.3787, 7.4362, 7.4072, 7.3713, 7.2535, 7.2237, 7.2811, 7.2549, 7.3184, 7.2987, 7.2813, 7.2565, 7.2301, 7.2269, 7.1996, 7.1115, 7.1013, 7.0992, 7.0982, 7.0892, 7.0688, 7.0523, 7.0309, 7.0845, 7.077, 7.1245, 7.1018, 7.087, 7.0663, 7.0451, 7.0274, 7.0709, 7.0676, 7.1192, 7.108, 7.1535, 7.1324, 7.115, 7.0961, 7.0786, 7.0615, 7.1079, 7.1536, 7.1499, 7.1313, 7.1156, 7.1522, 7.2107, 7.2001, 7.1398, 7.1216, 7.1548, 7.1441, 7.176, 7.164, 7.1582, 7.1416, 7.1252, 7.0672, 7.0523, 7.0858, 7.0724, 7.0573, 7.0421, 7.0361, 7.0279, 7.0362, 7.0222, 7.0523, 7.0386, 7.0247, 7.011, 7.0057, 6.9975, 7.0296, 7.0175, 7.0074, 6.9995, 6.9997, 6.9879, 7.0173, 7.0049, 6.9982, 6.9864, 6.9791, 7.0063, 6.9956, 7.0208, 7.0084, 7.0005, 7.1644, 7.1511, 7.1766, 7.1733, 7.1961, 7.1831, 7.1744, 7.1738, 7.1652, 7.1545, 7.145, 7.1353, 7.1246, 7.1544, 7.1464, 7.1374, 7.133, 7.1243, 7.1171, 7.1455, 7.1346, 7.1265, 7.1208, 7.1135, 7.1081, 7.1148, 7.1276, 7.1255, 7.119, 7.1108, 7.1343, 7.1263, 7.1189, 7.1088, 7.0987, 7.1251, 7.1156, 7.1082, 7.0982, 7.0905, 7.1116, 7.1057, 7.1257, 7.1454, 7.1389, 7.1328, 7.1259, 7.1456, 7.1376, 7.1279, 7.1194, 7.1109, 7.1023, 7.0939, 7.1131, 7.1042, 7.0977, 7.0949, 7.0914, 7.0828, 7.1012, 7.1038, 7.1224, 7.1172, 7.1091, 7.131, 7.1325, 7.1247, 7.1263, 7.1206, 7.1401, 7.1335, 7.1315, 7.1259, 7.1001, 7.1441, 7.1607, 7.1529, 7.1679, 7.1824, 7.1756, 7.169, 7.1615, 7.1544, 7.1496, 7.141, 7.1348, 7.1293, 7.1433, 7.1384, 7.1306, 7.128, 7.1225, 7.1173, 7.1118, 7.1061, 7.1025, 7.1212, 7.1136, 7.1083, 7.1012, 7.1164, 7.1314, 7.1257, 7.118, 7.1126, 7.1271, 7.1204, 7.1155, 7.1151, 7.1114, 7.1066, 7.1032, 7.0966, 7.0901, 7.1038, 7.118, 7.111, 7.129, 7.1426, 7.1367, 7.1294, 7.142, 7.1425, 7.1361, 7.1491, 7.165, 7.1584, 7.152, 7.1459, 7.1419, 7.1556, 7.1495, 7.1451, 7.1402, 7.1544, 7.1483, 7.1423, 7.1556, 7.1497, 7.2014, 7.1953, 7.1892, 7.2019, 7.1965, 7.1916, 7.1869, 7.1843, 7.1972, 7.1921, 7.2251, 7.2206, 7.2161, 7.2434, 7.2374, 7.241, 7.2532, 7.2469, 7.2442, 7.2422, 7.2376, 7.2167, 7.2116, 7.2243, 7.2193, 7.2141, 7.2273, 7.2402, 7.2351, 7.2457, 7.2408, 7.2537, 7.2496, 7.2445, 7.239, 7.2337, 7.2287, 7.2394, 7.2354, 7.2298, 7.2401, 7.2344, 7.2134, 7.2094, 7.2075, 7.2046, 7.2004, 7.1969, 7.1908, 7.188, 7.1844, 7.1796, 7.175, 7.1695, 7.1644, 7.1593, 7.1704, 7.1652, 7.179, 7.1896, 7.1844, 7.1795, 7.1771, 7.1716, 7.1669, 7.1774, 7.1881, 7.1854, 7.181, 7.1764, 7.1869, 7.2, 7.1947, 7.1897, 7.1846, 7.1944, 7.1899, 7.1848, 7.1819, 7.1787, 7.1749, 7.1699, 7.1517, 7.1614, 7.1573, 7.1522, 7.1477, 7.1437, 7.1392, 7.1377, 7.133, 7.1289, 7.1242, 7.1333, 7.1688, 7.1784, 7.1749, 7.185, 7.1944, 7.1908, 7.187, 7.1825, 7.1777, 7.173, 7.1695, 7.1649, 7.16, 7.1693, 7.1787, 7.1746, 7.1707, 7.1662, 7.1754, 7.2009, 7.1976, 7.2076, 7.2196, 7.2296, 7.2252, 7.2341, 7.2203, 7.2288, 7.2407, 7.2363, 7.2332, 7.2308, 7.2261, 7.2217, 7.2308, 7.2262, 7.2231, 7.2198, 7.2157, 7.2126, 7.2123, 7.208, 7.2168, 7.2255, 7.2342, 7.2295, 7.2256, 7.2216, 7.2233, 7.2316, 7.2273, 7.2314, 7.241, 7.2368, 7.2452, 7.2434, 7.2396, 7.2351, 7.2435, 7.2392, 7.2242, 7.22, 7.2162, 7.2134, 7.2112, 7.207, 7.1979, 7.1837, 7.1798, 7.1759, 7.1787, 7.1755, 7.1615, 7.1586, 7.1555, 7.1519, 7.1609, 7.1575, 7.1533, 7.1499, 7.1475, 7.1444, 7.1532, 7.1492, 7.1455, 7.1316, 7.1395, 7.1358, 7.1335, 7.1299, 7.1378, 7.1343, 7.1303, 7.1389, 7.1357, 7.1321, 7.1362, 7.1325, 7.129, 7.1369, 7.1445, 7.1523, 7.1497, 7.1575, 7.1538, 7.1502, 7.1468, 7.1441, 7.1421, 7.1388, 7.1381, 7.1252, 7.1229, 7.112, 7.109, 7.0963, 7.0832, 7.0914, 7.0994, 7.097, 7.0943, 7.0917, 7.089, 7.0967, 7.1261, 7.1341, 7.1406, 7.1373, 7.1358, 7.133, 7.1319, 7.1281, 7.1251, 7.1215, 7.1191, 7.1172, 7.1242, 7.1315, 7.1287, 7.1268, 7.1239, 7.1204, 7.1175, 7.115, 7.1222, 7.1185, 7.1255, 7.1238, 7.1208, 7.1185, 7.1168, 7.1132, 7.1104, 7.1071, 7.1046, 7.1011, 7.098, 7.0954, 7.103, 7.1025, 7.0999, 7.0974, 7.1037, 7.1101, 7.1181, 7.1154, 7.1218, 7.1282, 7.1252, 7.1222, 7.1289, 7.1263, 7.133, 7.13, 7.1184, 7.1252, 7.1136, 7.1108, 7.1078, 7.105, 7.1116, 7.1089, 7.1075, 7.1043, 7.111, 7.1085, 7.1055, 7.1045, 7.1023, 7.0995, 7.0965, 7.0943, 7.0914, 7.0886, 7.0857, 7.0826, 7.0795, 7.0859, 7.0833, 7.0802, 7.0802, 7.0778, 7.0855, 7.0828, 7.0804, 7.0796, 7.078, 7.0751, 7.0808, 7.0779, 7.0752, 7.0737, 7.0801, 7.087, 7.0949, 7.1019, 7.0992, 7.0965, 7.0944, 7.092, 7.0906, 7.088, 7.0861, 7.0832, 7.0808, 7.0784, 7.076, 7.0829, 7.0814, 7.0966, 7.0946, 7.0928, 7.0902, 7.0874, 7.0854, 7.0846, 7.0817, 7.0804, 7.0788, 7.076, 7.074, 7.0744, 7.0716, 7.0689, 7.0661, 7.0634, 7.0695, 7.0763, 7.0821, 7.0802, 7.078, 7.0759, 7.0739, 7.0711, 7.0684, 7.0686, 7.0657, 7.0628, 7.0603, 7.0666, 7.0725, 7.078, 7.0848, 7.0821, 7.0795, 7.0853, 7.0843, 7.0815, 7.079, 7.0764, 7.0744, 7.0715, 7.0689, 7.059, 7.0572, 7.0546, 7.0522, 7.0506, 7.0482, 7.0457, 7.0432, 7.0422, 7.0409, 7.0383, 7.0367, 7.0341, 7.0244, 7.0299, 7.0276, 7.0255, 7.0231, 7.0215, 7.0271, 7.0244, 7.0225, 7.0201, 7.0184, 7.0161, 7.0141, 7.012, 7.0096, 7.0078, 7.0449, 7.0448, 7.0502, 7.048, 7.0539, 7.0603, 7.0901, 7.0886, 7.0934, 7.1023, 7.0998, 7.1056, 7.1114, 7.1175, 7.1151, 7.1129, 7.1108, 7.1158, 7.1248, 7.1221, 7.1212, 7.1261, 7.1411, 7.1389, 7.1367, 7.1275, 7.1401, 7.1377, 7.143, 7.1338, 7.1253, 7.1227, 7.1277, 7.1252, 7.1302, 7.1283, 7.1336, 7.1384, 7.1431, 7.141, 7.1386, 7.1438, 7.1488, 7.1482, 7.1686, 7.1735, 7.1714, 7.169, 7.174, 7.165, 7.1625, 7.1599, 7.1581, 7.1629, 7.1611, 7.1586, 7.1571, 7.1556, 7.1539, 7.1515, 7.1496, 7.1483, 7.1469, 7.1456, 7.1431, 7.15, 7.1559, 7.1538, 7.1517, 7.164, 7.1617, 7.1666, 7.1643, 7.1695, 7.1764, 7.1813, 7.1801, 7.1792, 7.1772, 7.1749, 7.1728, 7.1798, 7.1778, 7.1775, 7.1829, 7.1806, 7.1786, 7.1836, 7.1813, 7.1791, 7.1773, 7.1761, 7.175, 7.1728, 7.1706, 7.1753, 7.1802, 7.1782, 7.1825, 7.1948, 7.1925, 7.1907, 7.1948, 7.1927, 7.1903, 7.1888, 7.1935, 7.1912, 7.1896, 7.1873, 7.1854, 7.1854, 7.1833, 7.181, 7.1788, 7.1773, 7.1972, 7.2047, 7.2027, 7.1949, 7.1996, 7.2325, 7.237, 7.2358, 7.2342, 7.2319, 7.2297, 7.2274, 7.2319, 7.2298, 7.2276, 7.2253, 7.2233, 7.2229, 7.2212, 7.2189, 7.2177, 7.2224, 7.2207, 7.2191, 7.2123, 7.217, 7.2147, 7.2131, 7.2111, 7.209, 7.2091, 7.2069, 7.2061, 7.2045, 7.2029, 7.201, 7.2059, 7.2042, 7.203, 7.2081, 7.2058, 7.2038, 7.2017, 7.1994, 7.2115, 7.2098, 7.2075, 7.2054, 7.2034, 7.2019, 7.2061, 7.2038, 7.2021, 7.2009, 7.1989, 7.1971, 7.1949, 7.1936, 7.1919, 7.1898, 7.1883, 7.1861, 7.1847, 7.1827, 7.1808, 7.179, 7.1838, 7.1824, 7.1749, 7.1728, 7.1707, 7.1696, 7.168, 7.166, 7.1702, 7.1684, 7.1663, 7.1599, 7.1677, 7.1659, 7.1637, 7.1616, 7.1597, 7.1548, 7.1607, 7.1645, 7.1694, 7.1683, 7.1662, 7.1644, 7.1622, 7.1605, 7.1589, 7.1579, 7.1558, 7.1601, 7.1591, 7.1576, 7.1561, 7.1545, 7.1591, 7.1572, 7.1556, 7.1542, 7.1523, 7.1503, 7.1484, 7.1475, 7.1461, 7.1441, 7.1422, 7.1402, 7.1443, 7.1423, 7.1407, 7.1387, 7.1428, 7.1415, 7.1459, 7.1498, 7.1482, 7.1522, 7.1561, 7.1543, 7.1525, 7.1517, 7.1557, 7.1538, 7.1541, 7.1529, 7.1509, 7.1498, 7.1481, 7.1413, 7.1393, 7.1381, 7.1362, 7.1347, 7.1394, 7.1375, 7.1418, 7.1398, 7.1379, 7.1363, 7.1344, 7.1324, 7.1311, 7.1308, 7.1348, 7.1449, 7.1445, 7.1379, 7.1361, 7.1342, 7.1327, 7.1312, 7.1292, 7.1389, 7.137, 7.1411, 7.1401, 7.1444, 7.1484, 7.1527, 7.1561, 7.1544, 7.1525, 7.1513, 7.1551, 7.1533, 7.1514, 7.1505, 7.173, 7.1768, 7.175, 7.1733, 7.1773, 7.1754, 7.1735, 7.1772, 7.1778, 7.176, 7.1743, 7.1726, 7.1764, 7.1745, 7.178, 7.1766, 7.1756, 7.1797, 7.178, 7.1762, 7.1743, 7.1727, 7.171, 7.1747, 7.1734, 7.1716, 7.1702, 7.1688, 7.1671, 7.1709, 7.1702, 7.1685, 7.1723, 7.1706, 7.1688, 7.1679, 7.1661, 7.1648, 7.1636, 7.1618, 7.16, 7.1636, 7.1622, 7.162, 7.1609, 7.1648, 7.1584, 7.1624, 7.1613, 7.1598, 7.1581, 7.162, 7.1656, 7.164, 7.1627, 7.1664, 7.1667, 7.1653, 7.1589, 7.1574, 7.1557, 7.1595, 7.1576, 7.1561, 7.161, 7.1599, 7.1587, 7.1589, 7.1583, 7.1571, 7.1556, 7.1544, 7.1529, 7.1511, 7.1543, 7.1529, 7.1511, 7.1449, 7.1436, 7.1432, 7.1415, 7.1403, 7.1385, 7.1368, 7.1362, 7.1357, 7.1339, 7.1321, 7.1306, 7.1289, 7.1271, 7.1255, 7.1238, 7.1227, 7.1211, 7.12, 7.1186, 7.1172, 7.1171, 7.1163, 7.1273, 7.1308, 7.1293, 7.1278, 7.1262, 7.1248, 7.1232, 7.1232, 7.1215, 7.1204, 7.1238, 7.123, 7.1213, 7.1198, 7.1297, 7.1324, 7.1309, 7.1345, 7.1375, 7.1363, 7.1348, 7.1434, 7.1424, 7.1457, 7.1504, 7.15, 7.153, 7.1563, 7.1549, 7.1585, 7.1614, 7.16, 7.1583, 7.162, 7.1691, 7.1679, 7.1664, 7.1701, 7.1687, 7.172, 7.1706, 7.169, 7.1723, 7.1734, 7.1719, 7.1702, 7.1684, 7.1716, 7.1702, 7.1828, 7.1863, 7.1847, 7.1831, 7.2004, 7.1987, 7.1979, 7.1962, 7.1959, 7.1951, 7.1982, 7.1968, 7.1952, 7.1941, 7.1926, 7.1908, 7.1904, 7.1892, 7.1876, 7.1863, 7.1857, 7.1847, 7.1833, 7.1824, 7.1827, 7.1863, 7.1847, 7.1879, 7.1862, 7.1888, 7.1885, 7.1918, 7.1903, 7.1935, 7.1968, 7.1951, 7.1979, 7.1962, 7.1993, 7.1979, 7.1969, 7.1954, 7.1944, 7.1927, 7.1869, 7.1852, 7.1796, 7.1783, 7.1766, 7.1795, 7.1778, 7.1766, 7.1755, 7.1742, 7.1729, 7.1716, 7.1704, 7.1744, 7.1732, 7.1764, 7.1751, 7.1738, 7.1726, 7.1755, 7.1743, 7.1728, 7.1672, 7.1656, 7.1686, 7.1714, 7.1791, 7.178, 7.1809, 7.1797, 7.1786, 7.1815, 7.1803, 7.1756, 7.1746, 7.174, 7.1724, 7.1715, 7.1835, 7.1867, 7.1854, 7.1838, 7.1826, 7.1816, 7.1813, 7.1799, 7.1795, 7.1741, 7.1776, 7.1721, 7.1887, 7.1876, 7.1912, 7.19, 7.1888, 7.1922, 7.1914, 7.1945, 7.1931, 7.1916, 7.1901, 7.1885, 7.1886, 7.1916, 7.1994, 7.198, 7.201, 7.2105, 7.2097, 7.2082, 7.2069, 7.2058, 7.2047, 7.2031, 7.202, 7.2005, 7.2079, 7.2068, 7.2057, 7.2043, 7.2031, 7.2019, 7.2006, 7.1993, 7.1978, 7.1963, 7.1951, 7.1982, 7.1968, 7.1954, 7.1938, 7.1928, 7.1922, 7.1958, 7.1945, 7.1935, 7.1963, 7.1948, 7.196, 7.1949, 7.2021, 7.2012, 7.2005, 7.2033, 7.2025, 7.198, 7.1965, 7.1996, 7.1986, 7.1934, 7.1922, 7.1914, 7.1902, 7.1895, 7.1928, 7.1955, 7.1945, 7.1929, 7.1914, 7.1899, 7.1888, 7.1918, 7.1944, 7.1974, 7.1963, 7.1951, 7.1942, 7.1927, 7.1912, 7.19, 7.1886, 7.1882, 7.1869, 7.1868, 7.1856, 7.1842, 7.1829, 7.1856, 7.1842, 7.1829, 7.182, 7.1815, 7.1843, 7.1829, 7.1816, 7.1801, 7.1787, 7.1773, 7.1769, 7.1755, 7.1745, 7.1731, 7.1758, 7.1751, 7.1738, 7.1725, 7.1754, 7.1783, 7.1854, 7.1844, 7.1833, 7.1862, 7.1847, 7.1832, 7.1817, 7.1804, 7.1791, 7.1785, 7.1772, 7.1797, 7.1789, 7.1775, 7.1763, 7.1784, 7.177, 7.1758, 7.1746, 7.1738, 7.1724, 7.1709, 7.1698, 7.1725, 7.1793, 7.1782, 7.1769, 7.1756, 7.1747, 7.1778, 7.1765, 7.1874, 7.1921, 7.192, 7.1906, 7.1891, 7.1877, 7.1904, 7.1891, 7.1878, 7.1906, 7.1893, 7.1917, 7.187, 7.1821, 7.1773, 7.1768, 7.1762, 7.1755, 7.1781, 7.1778, 7.1765, 7.1753, 7.1787, 7.1856, 7.189, 7.1916, 7.1874, 7.1869, 7.1859, 7.185, 7.184, 7.1828, 7.1817, 7.1803, 7.1795, 7.1783, 7.1805, 7.1793, 7.1779, 7.1766, 7.1756, 7.1743, 7.1729, 7.1716, 7.1743, 7.1769, 7.177, 7.1762, 7.1752, 7.1739, 7.173, 7.172, 7.1707, 7.1694, 7.1682, 7.1668, 7.1655, 7.1643, 7.1667, 7.1659, 7.1647, 7.1599, 7.1629, 7.1616, 7.1604, 7.1592, 7.1582, 7.1569, 7.1556, 7.1545, 7.1572, 7.1559, 7.1546, 7.1569, 7.1592, 7.1582, 7.1608, 7.1596, 7.1584, 7.1572, 7.1566, 7.1554, 7.1587, 7.1574, 7.1567, 7.1593, 7.1582, 7.1573, 7.1564, 7.1557, 7.1545, 7.1534, 7.1525, 7.1551, 7.1579, 7.158, 7.1591, 7.1591, 7.1616, 7.1604, 7.1592, 7.1582, 7.1575, 7.1568, 7.1565, 7.157, 7.156, 7.1548, 7.154, 7.1528, 7.1515, 7.1587, 7.1582, 7.1608, 7.1597, 7.1586, 7.1575, 7.157, 7.1561, 7.1516, 7.1504, 7.1497, 7.1485, 7.1473, 7.1461, 7.149, 7.1519, 7.1545, 7.1532, 7.1521, 7.1509, 7.15, 7.1491, 7.1516, 7.1522, 7.1512, 7.1501, 7.1491, 7.1491, 7.1479, 7.1504, 7.1529, 7.1553, 7.1546, 7.1546, 7.154, 7.1531, 7.1558, 7.1546, 7.157, 7.1562, 7.155, 7.1574, 7.1562, 7.1555, 7.1579, 7.1607, 7.1597, 7.1588, 7.1581, 7.1608, 7.1608, 7.1599, 7.1623, 7.1646, 7.1669, 7.1658, 7.1647, 7.1637, 7.163, 7.162, 7.1641, 7.1605, 7.1594, 7.1583, 7.1646, 7.1637, 7.1656, 7.1647, 7.1671, 7.1659, 7.1654, 7.1653, 7.1647, 7.1635, 7.1629, 7.1696, 7.1685, 7.1712, 7.1735, 7.1723, 7.1747, 7.1738, 7.1763, 7.1756, 7.1812, 7.1801, 7.1839, 7.1863, 7.1854, 7.1857, 7.1854, 7.1845, 7.1838, 7.1836, 7.1833, 7.1863, 7.1861, 7.1869, 7.1861, 7.185, 7.1845, 7.1833, 7.1821, 7.1818, 7.1897, 7.1885, 7.1877, 7.1871, 7.1859, 7.1849, 7.1871, 7.1864, 7.1853, 7.1878, 7.1866, 7.1825, 7.1813, 7.1801, 7.179, 7.1782, 7.1804, 7.1795, 7.1783, 7.1775, 7.1735, 7.1758, 7.1749, 7.1769, 7.1766, 7.1755, 7.175, 7.1764, 7.1757, 7.1745, 7.1766, 7.1755, 7.1744, 7.1807, 7.1798, 7.1821, 7.1844, 7.1867, 7.1889, 7.1877, 7.1866, 7.1824, 7.1847, 7.1869, 7.186, 7.1852, 7.1841, 7.1834, 7.1857, 7.1849, 7.1838, 7.1828, 7.1821, 7.1842, 7.1831, 7.1823, 7.1847, 7.1876, 7.1899, 7.1888, 7.1876, 7.1867, 7.1859, 7.1855, 7.1843, 7.1843, 7.1838, 7.1828, 7.1822, 7.1813, 7.1802, 7.1826, 7.1814, 7.1811, 7.1771, 7.1732, 7.172, 7.1741, 7.1729, 7.1717, 7.1715, 7.1736, 7.175, 7.1738, 7.1727, 7.1716, 7.1704, 7.1696, 7.1685, 7.1706, 7.1696, 7.1689, 7.1679, 7.174, 7.1729, 7.1748, 7.1739, 7.1731, 7.1724, 7.1715, 7.1714, 7.1676, 7.1699, 7.1719, 7.171, 7.1702, 7.1723, 7.1718, 7.1708, 7.1729, 7.1718, 7.1711, 7.1733, 7.1759, 7.1861, 7.1892, 7.1882, 7.187, 7.1866, 7.1857, 7.1846, 7.1866, 7.1856, 7.1876, 7.1867, 7.1855, 7.1845, 7.1844, 7.1866, 7.1878, 7.188, 7.191, 7.1903, 7.1893, 7.1886, 7.1875, 7.1837, 7.1829, 7.188, 7.1847, 7.1841, 7.1844, 7.1806, 7.1798, 7.1819, 7.1808, 7.1797, 7.1819, 7.1808, 7.1798, 7.182, 7.1809, 7.1926, 7.1946, 7.1937, 7.1959, 7.1951, 7.1941, 7.1931, 7.1923, 7.1946, 7.1941, 7.1931, 7.1923, 7.1945, 7.1934, 7.1928, 7.1916, 7.1909, 7.1909, 7.1901, 7.1892, 7.1881, 7.1874, 7.1894, 7.1891, 7.1881, 7.1902, 7.1922, 7.1969, 7.1962, 7.1983, 7.2002, 7.1992, 7.1954, 7.1943, 7.1963, 7.1954, 7.1975, 7.1995, 7.2016, 7.1978, 7.1998, 7.199, 7.198, 7.2002, 7.2053, 7.2042, 7.2064, 7.2119, 7.2081, 7.2071, 7.2034, 7.2027, 7.2022, 7.1985, 7.1976, 7.1966, 7.1984, 7.1976, 7.1996, 7.1987, 7.2017, 7.2037, 7.2057, 7.2053, 7.2044, 7.2036, 7.2057, 7.202, 7.201, 7.2, 7.1991, 7.1985, 7.2006, 7.1999, 7.1989, 7.1979, 7.2, 7.199, 7.2012, 7.2003, 7.1994, 7.2012, 7.1986, 7.2013, 7.2003, 7.1995, 7.199, 7.198, 7.197, 7.1964, 7.1985, 7.1976, 7.1967, 7.1957, 7.1965, 7.1957, 7.2016, 7.2008, 7.2, 7.1992, 7.1988, 7.198, 7.1973, 7.1963, 7.1927, 7.192, 7.1912, 7.1902, 7.1869, 7.1892, 7.1882, 7.1874, 7.1839, 7.1859, 7.188, 7.1853, 7.1852, 7.1843, 7.1807, 7.1802, 7.1833, 7.1841, 7.1843, 7.1834, 7.1828, 7.1829, 7.1819, 7.1811, 7.1805, 7.1797, 7.1849, 7.1841, 7.1861, 7.1854, 7.1874, 7.1874, 7.1868, 7.1832, 7.1852, 7.1842, 7.1863, 7.1853, 7.1846, 7.1838, 7.1835, 7.1829, 7.1825, 7.1815, 7.1809, 7.1801, 7.1765, 7.1759, 7.1752, 7.1743, 7.1768, 7.1758, 7.1752, 7.1749, 7.1768, 7.1763, 7.1753, 7.1744, 7.1764, 7.173, 7.1749, 7.1742, 7.1735, 7.1726, 7.1717, 7.171, 7.1701, 7.1693, 7.1745, 7.1711, 7.1806, 7.1855, 7.1879, 7.1873, 7.1867, 7.1858, 7.1876, 7.1866, 7.1856, 7.1848, 7.1866, 7.1859, 7.1851, 7.187, 7.1921, 7.1974, 7.1996, 7.1986, 7.1978, 7.197, 7.1969, 7.1964, 7.1956, 7.1973, 7.1995, 7.1987, 7.196, 7.1951, 7.1942, 7.1936, 7.1936, 7.1939, 7.1932, 7.1924, 7.1915, 7.1934, 7.1953, 7.1971, 7.1988, 7.2016, 7.2008, 7.1998, 7.1988, 7.1978, 7.1996, 7.1986, 7.1978, 7.1968, 7.1959, 7.1976, 7.1966, 7.1989, 7.1979, 7.1998, 7.199, 7.1981, 7.1974, 7.1992, 7.1985, 7.1976, 7.1967, 7.1957, 7.1948, 7.1966, 7.1965, 7.1959, 7.198, 7.1971, 7.1962, 7.1953, 7.1924, 7.1942, 7.1961, 7.1951, 7.197, 7.1963, 7.1981, 7.1977, 7.1969, 7.1935, 7.1925, 7.1917, 7.1935, 7.1955, 7.204, 7.2073, 7.2182, 7.2173, 7.2167, 7.216, 7.2153, 7.2145, 7.2136, 7.2127, 7.2123, 7.2115, 7.2134, 7.2125, 7.2118, 7.2135, 7.2125, 7.2116, 7.2109, 7.2126, 7.2116, 7.2109, 7.2101, 7.2094, 7.2084, 7.2104, 7.2186, 7.2176, 7.2166, 7.2159, 7.2189, 7.2183, 7.2225, 7.2218, 7.2209, 7.2208, 7.2199, 7.2191, 7.2209, 7.2201, 7.2192, 7.2208, 7.2201, 7.2193, 7.2187, 7.2181, 7.2199, 7.2193, 7.2265, 7.2232, 7.2224, 7.2244, 7.2235, 7.2202, 7.2199, 7.2244, 7.2264, 7.2255, 7.2248, 7.2238, 7.2228, 7.2219, 7.2211, 7.2205, 7.2221, 7.2212, 7.2204, 7.2196, 7.2188, 7.218, 7.2171, 7.219, 7.2208, 7.22, 7.2312, 7.2304, 7.2324, 7.2318, 7.231, 7.2329, 7.2325, 7.2315, 7.2307, 7.2327, 7.2319, 7.2337, 7.2329, 7.2297, 7.2289, 7.228, 7.2272, 7.2289, 7.2332, 7.234, 7.2359, 7.235, 7.2341, 7.2308, 7.2299, 7.2291, 7.2287, 7.2278, 7.2272, 7.229, 7.2305, 7.2299, 7.2289, 7.2282, 7.2274, 7.2266, 7.2283, 7.2274, 7.2291, 7.2282, 7.2273, 7.229, 7.2359, 7.2352, 7.2344, 7.2335, 7.2349, 7.2345, 7.2336, 7.2327, 7.2418, 7.2413, 7.2405, 7.2421, 7.2418, 7.2461, 7.2454, 7.2449, 7.2441, 7.2435, 7.2427, 7.242, 7.2421, 7.244, 7.2432, 7.2423, 7.2428, 7.2464, 7.2458, 7.2452, 7.2448, 7.2443, 7.2463, 7.2455, 7.245, 7.2444, 7.2436, 7.2454, 7.2447, 7.2438, 7.243, 7.2421, 7.2412, 7.2405, 7.2397, 7.239, 7.2383, 7.2352, 7.2343, 7.2335, 7.2328, 7.2343, 7.234, 7.2333, 7.2326, 7.2343, 7.2338, 7.2329, 7.2298, 7.2315, 7.2308, 7.2299, 7.229, 7.2283, 7.2274, 7.2272, 7.2269, 7.2261, 7.2254, 7.2247, 7.2239, 7.2232, 7.2224, 7.2238, 7.223, 7.2223, 7.2238, 7.2234, 7.2227, 7.2219, 7.2188, 7.2181, 7.2176, 7.2248, 7.224, 7.2232, 7.2251, 7.2246, 7.2239, 7.2232, 7.2251, 7.2245, 7.2243, 7.2236, 7.2206, 7.2345, 7.2361, 7.2353, 7.2369, 7.2361, 7.2352, 7.2371, 7.2387, 7.2385, 7.2378, 7.2397, 7.2414, 7.2408, 7.2402, 7.2394, 7.2385, 7.2401, 7.2393, 7.2387, 7.2384, 7.2354, 7.2324, 7.2294, 7.2311, 7.2306, 7.2322, 7.2314, 7.2306, 7.2297, 7.2314, 7.2308, 7.2299, 7.2294, 7.2286, 7.2301, 7.2293, 7.2286, 7.2282, 7.2274, 7.2266, 7.2258, 7.2249, 7.2267, 7.2283, 7.2276, 7.2269, 7.2263, 7.2255, 7.2271, 7.2287, 7.2279, 7.2249, 7.222, 7.2212, 7.2206, 7.2198, 7.219, 7.2182, 7.2176, 7.2172, 7.2165, 7.2157, 7.2173, 7.2165, 7.2158, 7.2155, 7.2146, 7.2164, 7.2194, 7.2188, 7.2182, 7.2175, 7.217, 7.2162, 7.2156, 7.2149, 7.2143, 7.2136, 7.2162, 7.2155, 7.2147, 7.214, 7.2132, 7.2151, 7.2155, 7.2173, 7.2167, 7.216, 7.2151, 7.2182, 7.2175, 7.2193, 7.2188, 7.2181, 7.2275, 7.2268, 7.2295, 7.2287, 7.2281, 7.232, 7.2377, 7.2371, 7.2374, 7.239, 7.239, 7.236, 7.2448, 7.244, 7.2432, 7.2448, 7.2442, 7.2437, 7.2431, 7.2424, 7.2416, 7.2408, 7.2422, 7.2457, 7.245, 7.2442, 7.2434, 7.2426, 7.2418, 7.2411, 7.2427, 7.2423, 7.2415, 7.2454, 7.247, 7.2463, 7.2456, 7.2449, 7.2465, 7.2459, 7.2459, 7.2452, 7.2447, 7.2446, 7.2438, 7.246, 7.2458, 7.2454, 7.2446, 7.2438, 7.2432, 7.2424, 7.242, 7.2412, 7.2427, 7.2419, 7.2434, 7.2427, 7.2419, 7.2433, 7.2439, 7.2433, 7.2425, 7.244, 7.2432, 7.2423, 7.2415, 7.2407, 7.2402, 7.2394, 7.2388, 7.238, 7.2372, 7.2365, 7.2358, 7.2352, 7.2345, 7.2359, 7.2352, 7.2345, 7.2339, 7.2333, 7.2326, 7.232, 7.2316, 7.2333, 7.2327, 7.2343, 7.2337, 7.2329, 7.239, 7.2382, 7.2377, 7.2372, 7.2366, 7.2359, 7.2351, 7.2433, 7.2425, 7.2418, 7.2412, 7.2448, 7.2485, 7.2499, 7.2491, 7.2483, 7.2478, 7.247, 7.2468, 7.2483, 7.2482, 7.2498, 7.249, 7.2485, 7.2481, 7.2499, 7.2494, 7.2488, 7.2481, 7.2476, 7.2468, 7.246, 7.2454, 7.2447, 7.2439, 7.2454, 7.2469, 7.2466, 7.2458, 7.2454, 7.2448, 7.244, 7.2456, 7.2454, 7.2457, 7.2449, 7.2441, 7.2433, 7.2428, 7.242, 7.2412, 7.2404, 7.2396, 7.2389, 7.2383, 7.2376, 7.239, 7.2384, 7.2399, 7.2391, 7.2405, 7.2399, 7.2397, 7.2412, 7.2406, 7.24, 7.2394, 7.2386, 7.2378, 7.2371, 7.2386, 7.2383, 7.2379, 7.2372, 7.2367, 7.2363, 7.2359, 7.2374, 7.2391, 7.2384, 7.2387, 7.2381, 7.2354, 7.2348, 7.2321, 7.2314, 7.2307, 7.2299, 7.2293, 7.229, 7.2263, 7.2255, 7.2251, 7.2245, 7.224, 7.2232, 7.2224, 7.2217, 7.221, 7.2224, 7.2299, 7.2294, 7.2287, 7.2262, 7.2258, 7.2252, 7.2245, 7.224, 7.2305, 7.2299, 7.2292, 7.2286, 7.2279, 7.2252, 7.2225, 7.222, 7.222, 7.2213, 7.2206, 7.2199, 7.2214, 7.2207, 7.2204, 7.2197, 7.219, 7.2183, 7.2175, 7.2169, 7.2182, 7.2174, 7.2168, 7.2164, 7.2157, 7.2151, 7.2164, 7.216, 7.2174, 7.2187, 7.218, 7.2174, 7.2187, 7.2201, 7.2195, 7.2187, 7.2187, 7.218, 7.2175, 7.2169, 7.2161, 7.2176, 7.2191, 7.2187, 7.2181, 7.2176, 7.217, 7.2185, 7.2181, 7.2175, 7.217, 7.2164, 7.2158, 7.2152, 7.2161, 7.2155, 7.2149, 7.2143, 7.2136, 7.2129, 7.2123, 7.212, 7.2114, 7.2108, 7.2104, 7.2099, 7.2093, 7.2087, 7.2081, 7.2097, 7.2112, 7.2107, 7.21, 7.2115, 7.2111, 7.2104, 7.2097, 7.2122, 7.218, 7.2175, 7.2168, 7.2245, 7.2241, 7.2236, 7.2246, 7.2241, 7.2234, 7.2249, 7.2272, 7.2267, 7.2263, 7.2261, 7.2254, 7.2247, 7.224, 7.2238, 7.2231, 7.2224, 7.2219, 7.2211, 7.2203, 7.2197, 7.2211, 7.2204, 7.2212, 7.2208, 7.2203, 7.2217, 7.221, 7.2237, 7.2234, 7.2229, 7.2222, 7.2197, 7.219, 7.2182, 7.2175, 7.2188, 7.2219, 7.2197, 7.2192, 7.2207, 7.2224, 7.2218, 7.2239, 7.2253, 7.2246, 7.2242, 7.2257, 7.2271, 7.2264, 7.2257, 7.2252, 7.2246, 7.226, 7.2253, 7.2248, 7.2242, 7.2256, 7.227, 7.2264, 7.226, 7.2257, 7.2271, 7.2265, 7.2272, 7.2266, 7.2278, 7.2273, 7.2267, 7.226, 7.2253, 7.2248, 7.2241, 7.2235, 7.225, 7.2243, 7.2238, 7.224, 7.2234, 7.2228, 7.2222, 7.2218, 7.2222, 7.2217, 7.221, 7.2233, 7.2246, 7.2239, 7.2233, 7.2228, 7.2221, 7.2217, 7.2213, 7.2209, 7.2222, 7.2219, 7.2213, 7.2207, 7.2201, 7.2194, 7.2188, 7.2222, 7.2237, 7.223, 7.2224, 7.222, 7.2215, 7.2228, 7.2262, 7.2255, 7.2247, 7.224, 7.2253, 7.2246, 7.2239, 7.2234, 7.2248, 7.2262, 7.2257, 7.2232, 7.2227, 7.2239, 7.2235, 7.223, 7.2225, 7.2221, 7.2233, 7.2226, 7.224, 7.2235, 7.2228, 7.2241, 7.2254, 7.225, 7.2243, 7.2238, 7.2251, 7.2244, 7.2257, 7.2251, 7.2264, 7.2277, 7.227, 7.2283, 7.2276, 7.2271, 7.2284, 7.2277, 7.2276, 7.2269, 7.2262, 7.2275, 7.2268, 7.2261, 7.2256, 7.227, 7.2264, 7.2258, 7.2251, 7.2244, 7.2237, 7.2231, 7.2244, 7.2237, 7.2231, 7.2243, 7.2236, 7.2229, 7.2222, 7.2234, 7.2227, 7.2222, 7.2234, 7.2228, 7.2222, 7.2219, 7.2212, 7.2205, 7.2218, 7.2213, 7.2208, 7.2207, 7.2202, 7.2197, 7.2191, 7.2184, 7.2178, 7.2172, 7.2165, 7.214, 7.2133, 7.213, 7.2125, 7.2119, 7.2158, 7.2158, 7.2151, 7.2146, 7.2159, 7.2154, 7.2167, 7.218, 7.2194, 7.2188, 7.2183, 7.2177, 7.2171, 7.2171, 7.2165, 7.2179, 7.2175, 7.2188, 7.2196, 7.2211, 7.2226, 7.222, 7.2215, 7.2218, 7.2212, 7.221, 7.2203, 7.2197, 7.2191, 7.2186, 7.2199, 7.2194, 7.2207, 7.2201, 7.2196, 7.2192, 7.2186, 7.2181, 7.2208, 7.2204, 7.2198, 7.2191, 7.2185, 7.218, 7.2173, 7.2167, 7.2161, 7.2174, 7.2169, 7.2165, 7.2178, 7.2171, 7.2164, 7.2177, 7.2175, 7.2188, 7.2203, 7.2197, 7.219, 7.2203, 7.22, 7.2194, 7.2209, 7.2203, 7.2198, 7.2231, 7.2246, 7.2265, 7.2278, 7.2272, 7.2285, 7.2278, 7.2272, 7.2266, 7.226, 7.2273, 7.2267, 7.2245, 7.2239, 7.2233, 7.2227, 7.2223, 7.2216, 7.2209, 7.2203, 7.2197, 7.2273, 7.2285, 7.2278, 7.229, 7.2284, 7.2297, 7.2293, 7.2307, 7.2322, 7.2327, 7.2321, 7.2334, 7.2327, 7.232, 7.2321, 7.232, 7.2316, 7.2328, 7.2322, 7.2319, 7.2315, 7.2308, 7.2301, 7.2313, 7.2307, 7.2306, 7.2299, 7.2312, 7.2306, 7.23, 7.2318, 7.2311, 7.2304, 7.2298, 7.2312, 7.2305, 7.2316, 7.2327, 7.2339, 7.2355, 7.2348, 7.2341, 7.2354, 7.2387, 7.2399, 7.2394, 7.2388, 7.2402, 7.2395, 7.2388, 7.2385, 7.238, 7.2373, 7.2366, 7.236, 7.2356, 7.2349, 7.2361, 7.2373, 7.2371, 7.2365, 7.2359, 7.2355, 7.2368, 7.2382, 7.2376, 7.2388, 7.2462, 7.2456, 7.2451, 7.2445, 7.2459, 7.2472, 7.2484, 7.2478, 7.2472, 7.2485, 7.2482, 7.2495, 7.2489, 7.2482, 7.2524, 7.2518, 7.2512, 7.2489, 7.252, 7.2513, 7.2508, 7.2502, 7.2495, 7.2489, 7.2483, 7.2478, 7.249, 7.2488, 7.2482, 7.2494, 7.2491, 7.2485, 7.2478, 7.2471, 7.2483, 7.2476, 7.247, 7.2465, 7.2442, 7.242, 7.2434, 7.2428, 7.244, 7.2433, 7.2427, 7.2423, 7.2435, 7.243, 7.2407, 7.2419, 7.2412, 7.2408, 7.2405, 7.2431, 7.2443, 7.2438, 7.245, 7.2463, 7.2458, 7.249, 7.2497, 7.2516, 7.2519, 7.2531, 7.2525, 7.2519, 7.2515, 7.2508, 7.2503, 7.2496, 7.249, 7.2484, 7.2477, 7.2471, 7.2468, 7.2462, 7.2473, 7.247, 7.2483, 7.2476, 7.247, 7.2464, 7.2476, 7.2489, 7.2483, 7.2496, 7.2509, 7.2505, 7.2516, 7.2527, 7.2537, 7.2532, 7.2526, 7.254, 7.2534, 7.2528, 7.2522, 7.2516, 7.2531, 7.2544, 7.2557, 7.2551, 7.2565, 7.2584, 7.2562, 7.2558, 7.2627, 7.2621, 7.2615, 7.261, 7.2604, 7.2582, 7.2576, 7.2587, 7.2581, 7.2593, 7.2587, 7.26, 7.2596, 7.2609, 7.2603, 7.2597, 7.2591, 7.2585, 7.2579, 7.2573, 7.2567, 7.2561, 7.2557, 7.2556, 7.2569, 7.2563, 7.2557, 7.2551, 7.2547, 7.2542, 7.2537, 7.2534, 7.2516, 7.2512, 7.2528, 7.2525, 7.2536, 7.2534, 7.2545, 7.2557, 7.2551, 7.2545, 7.2541, 7.2536, 7.2534, 7.2528, 7.2524, 7.2534, 7.2531, 7.2542, 7.2537, 7.2532, 7.2527, 7.2522, 7.2535, 7.2529, 7.2523, 7.2517, 7.2535, 7.2531, 7.251, 7.2509, 7.2523, 7.2517, 7.2512, 7.2507, 7.2503, 7.2497, 7.2509, 7.2504, 7.2482, 7.2476, 7.247, 7.2482, 7.2495, 7.2508, 7.2508, 7.2502, 7.2496, 7.249, 7.2484, 7.2496, 7.249, 7.2486, 7.2482, 7.2476, 7.2476, 7.2473, 7.2467, 7.2481, 7.2475, 7.247, 7.2466, 7.2461, 7.2457, 7.2468, 7.2462, 7.2475, 7.2472, 7.2466, 7.246, 7.2455, 7.2449, 7.2445, 7.244, 7.2434, 7.2463, 7.2458, 7.2452, 7.2463, 7.2457, 7.2452, 7.2446, 7.2441, 7.2452, 7.2464, 7.2458, 7.2469, 7.2463, 7.248, 7.2492, 7.2486, 7.248, 7.2476, 7.2472, 7.2466, 7.2464, 7.2477, 7.249, 7.2484, 7.248, 7.2475, 7.2471, 7.2469, 7.2466, 7.2478, 7.2476, 7.249, 7.2504, 7.2504, 7.2498, 7.2498, 7.2492, 7.2486, 7.248, 7.2475, 7.247, 7.2519, 7.2514, 7.2526, 7.2521, 7.2522, 7.2567, 7.2561, 7.2573, 7.2585, 7.2579, 7.2574, 7.2569, 7.2581, 7.2611, 7.2606, 7.2607, 7.2618, 7.2638, 7.2672, 7.2686, 7.2681, 7.2681, 7.2709, 7.2721, 7.2718, 7.2712, 7.2723, 7.2719, 7.2715, 7.2712, 7.2707, 7.2701, 7.2695, 7.2694, 7.2688, 7.2746, 7.2741, 7.2735, 7.2729, 7.2723, 7.2717, 7.2712, 7.2724, 7.2736, 7.273, 7.2724, 7.2718, 7.2728, 7.2757, 7.2752, 7.2765, 7.2759, 7.2754, 7.2749, 7.2762, 7.2756, 7.2751, 7.2746, 7.2757, 7.2768, 7.2762, 7.2756, 7.275, 7.2731, 7.271, 7.2708, 7.2767, 7.278, 7.2791, 7.2802, 7.2817, 7.2815, 7.2795, 7.2791, 7.2802, 7.2781, 7.2787, 7.2784, 7.2764, 7.2765, 7.276, 7.2757, 7.2767, 7.2761, 7.2756, 7.2784, 7.2778, 7.2775, 7.2833, 7.2832, 7.2846, 7.284, 7.2834, 7.2828, 7.2842, 7.2854, 7.2852, 7.2846, 7.2825, 7.282, 7.2832, 7.2828, 7.2825, 7.2821, 7.2817, 7.2812, 7.2806, 7.28, 7.2797, 7.2791, 7.2787, 7.2781, 7.2791, 7.2787, 7.2783, 7.2777, 7.2771, 7.2766, 7.2761, 7.2756, 7.2752, 7.2763, 7.2758, 7.2752, 7.2747, 7.2758, 7.2752, 7.2748, 7.2743, 7.2738, 7.2732, 7.2727, 7.2721, 7.2717, 7.2711, 7.2721, 7.2716, 7.2712, 7.2707, 7.2703, 7.2714, 7.2709, 7.275, 7.2744, 7.2756, 7.275, 7.2746, 7.274, 7.2735, 7.273, 7.2725, 7.272, 7.2714, 7.2709, 7.272, 7.2714, 7.2725, 7.272, 7.2714, 7.2725, 7.2736, 7.2747, 7.2741, 7.2737, 7.2733, 7.2728, 7.2724, 7.2757, 7.2751, 7.2746, 7.2778, 7.2805, 7.2801, 7.2816, 7.2813, 7.2815, 7.281, 7.2804, 7.2801, 7.2797, 7.2793, 7.2788, 7.2788, 7.2783, 7.2778, 7.2774, 7.2787, 7.2783, 7.278, 7.2778, 7.2773, 7.2771, 7.2766, 7.2778, 7.2773, 7.2753, 7.2751, 7.2763, 7.2758, 7.2768, 7.2762, 7.2759, 7.2754, 7.2748, 7.2743, 7.2738, 7.2733, 7.273, 7.2724, 7.2718, 7.2713, 7.2709, 7.2706, 7.2701, 7.2711, 7.2707, 7.2702, 7.2698, 7.2708, 7.2702, 7.2696, 7.269, 7.2701, 7.2681, 7.2662, 7.2657, 7.2652, 7.2647, 7.2641, 7.2635, 7.2629, 7.264, 7.2653, 7.2648, 7.2642, 7.2636, 7.2647, 7.2642, 7.2653, 7.2664, 7.2658, 7.2639, 7.2633, 7.2628, 7.2623, 7.2634, 7.2629, 7.2624, 7.2619, 7.2616, 7.2627, 7.2621, 7.2615, 7.2626, 7.2622, 7.2616, 7.2627, 7.2621, 7.2616, 7.2611, 7.2606, 7.26, 7.2594, 7.2589, 7.2585, 7.2568, 7.2563, 7.2558, 7.2553, 7.258, 7.2592, 7.2589, 7.2601, 7.2598, 7.2592, 7.2602, 7.2582, 7.2563, 7.2544, 7.2539, 7.2536, 7.2547, 7.2543, 7.2539, 7.2534, 7.2529, 7.2523, 7.2517, 7.2497, 7.2478, 7.2478, 7.2473, 7.2483, 7.2493, 7.2489, 7.2483, 7.2477, 7.2471, 7.2466, 7.2461, 7.2457, 7.2452, 7.2447, 7.2441, 7.2452, 7.2461, 7.246, 7.2455, 7.245, 7.2447, 7.2442, 7.2438, 7.2434, 7.2436, 7.2448, 7.2509, 7.2505, 7.2516, 7.2517, 7.2542, 7.2538, 7.2533, 7.2528, 7.2524, 7.252, 7.2515, 7.2509, 7.252, 7.2515, 7.2532, 7.2528, 7.2538, 7.2549, 7.2544, 7.2557, 7.2558, 7.2553, 7.2549, 7.2544, 7.2539, 7.2534, 7.256, 7.2555, 7.2551, 7.2545, 7.254, 7.2618, 7.2612, 7.2623, 7.2617, 7.2613, 7.2608, 7.2588, 7.2599, 7.2594, 7.2589, 7.2599, 7.261, 7.262, 7.2615, 7.2626, 7.2621, 7.2616, 7.2627, 7.2637, 7.2619, 7.2601, 7.2596, 7.261, 7.2607, 7.2618, 7.2627, 7.2625, 7.263, 7.2626, 7.2622, 7.2631, 7.2629, 7.2626, 7.2623, 7.2617, 7.263, 7.2625, 7.2635, 7.2629, 7.2625, 7.262, 7.2629, 7.2625, 7.2635, 7.2646, 7.2641, 7.2651, 7.2659, 7.2653, 7.2651, 7.2645, 7.2655, 7.265, 7.266, 7.2656, 7.265, 7.2645, 7.2655, 7.265, 7.2644, 7.2639, 7.2635, 7.2631, 7.2627, 7.2622, 7.2618, 7.2658, 7.2654, 7.265, 7.2661, 7.2656, 7.2651, 7.2649, 7.2643, 7.264, 7.2635, 7.263, 7.2626, 7.2621, 7.263, 7.2625, 7.2624, 7.2634, 7.2645, 7.264, 7.2636, 7.2647, 7.2649, 7.2645, 7.2672, 7.2667, 7.2679, 7.2674, 7.2701, 7.2732, 7.2749, 7.2745, 7.2741, 7.2737, 7.2763, 7.2758, 7.2742, 7.2727, 7.2725, 7.272, 7.273, 7.2726, 7.2721, 7.2716, 7.2711, 7.2707, 7.2703, 7.27, 7.271, 7.2705, 7.27, 7.2698, 7.2694, 7.269, 7.2672, 7.2683, 7.2678, 7.2688, 7.2685, 7.268, 7.2676, 7.2658, 7.264, 7.2635, 7.263, 7.2625, 7.262, 7.2615, 7.2625, 7.262, 7.2615, 7.261, 7.2619, 7.2614, 7.2624, 7.2634, 7.2644, 7.2653, 7.2649, 7.2644, 7.2639, 7.2664, 7.2659, 7.2656, 7.2653, 7.2648, 7.2643, 7.2652, 7.2647, 7.2645, 7.2641, 7.2636, 7.2635, 7.2636, 7.2632, 7.263, 7.264, 7.265, 7.2646, 7.2671, 7.2685, 7.2695, 7.269, 7.2686, 7.2696, 7.2691, 7.2686, 7.2696, 7.2705, 7.2715, 7.271, 7.2724, 7.2719, 7.2715, 7.2711, 7.2721, 7.2717, 7.2712, 7.2697, 7.2692, 7.2691, 7.2686, 7.2688, 7.2683, 7.2678, 7.2673, 7.2683, 7.2693, 7.2689, 7.2687, 7.2683, 7.2678, 7.2673, 7.267, 7.2666, 7.2662, 7.2671, 7.2667, 7.2662, 7.2657, 7.2653, 7.2635, 7.2618, 7.2613, 7.2609, 7.2604, 7.26, 7.2595, 7.2592, 7.2589, 7.2599, 7.2597, 7.2592, 7.259, 7.2619, 7.2614, 7.2597, 7.2592, 7.2587, 7.2582, 7.2577, 7.2577, 7.2574, 7.2569, 7.2567, 7.2562, 7.2572, 7.2567, 7.2576, 7.2572, 7.2581, 7.259, 7.2585, 7.258, 7.2575, 7.2616, 7.2626, 7.2621, 7.263, 7.2641, 7.2636, 7.2633, 7.2643, 7.2639, 7.2634, 7.2629, 7.2638, 7.2634, 7.263, 7.2625, 7.2622, 7.2619, 7.2614, 7.2612, 7.2608, 7.2605, 7.26, 7.2596, 7.2591, 7.2586, 7.2583, 7.2578, 7.2586, 7.2583, 7.2578, 7.2574, 7.2571, 7.2566, 7.2575, 7.257, 7.2566, 7.2562, 7.257, 7.2565, 7.2561, 7.2556, 7.2566, 7.2562, 7.2561, 7.2557, 7.2568, 7.2563, 7.256, 7.2555, 7.2552, 7.2547, 7.2544, 7.2553, 7.2562, 7.2559, 7.2569, 7.2565, 7.2561, 7.2557, 7.2553, 7.2549, 7.2545, 7.2541, 7.2536, 7.2532, 7.2528, 7.2526, 7.2535, 7.253, 7.2525, 7.252, 7.253, 7.2555, 7.2552, 7.2561, 7.2556, 7.2551, 7.2561, 7.2571, 7.2567, 7.2577, 7.2573, 7.2569, 7.2579, 7.2589, 7.2585, 7.2582, 7.2577, 7.2588, 7.2583, 7.2578, 7.2573, 7.2569, 7.258, 7.258, 7.2593, 7.259, 7.2585, 7.2596, 7.2593, 7.2605, 7.2602, 7.2599, 7.2595, 7.2578, 7.2573, 7.2584, 7.258, 7.2577, 7.2573, 7.2569, 7.2564, 7.2562, 7.2545, 7.2541, 7.2536, 7.2532, 7.2527, 7.2523, 7.2506, 7.2514, 7.2509, 7.2504, 7.2499, 7.2494, 7.2503, 7.2498, 7.2493, 7.2488, 7.2483, 7.248, 7.2463, 7.2459, 7.2468, 7.2464, 7.2501, 7.2498, 7.2493, 7.2489, 7.2484, 7.2479, 7.2475, 7.2477, 7.2472, 7.2481, 7.2478, 7.2487, 7.2496, 7.2491, 7.25, 7.2509, 7.2504, 7.2501, 7.2496, 7.2504, 7.25, 7.2495, 7.249, 7.2499, 7.2496, 7.2506, 7.2502, 7.2497, 7.2492, 7.2489, 7.2488, 7.2483, 7.2479, 7.2488, 7.2485, 7.2481, 7.249, 7.2486, 7.2482, 7.2477, 7.2472, 7.2468, 7.2463, 7.2472, 7.248, 7.2529, 7.2527, 7.2522, 7.253, 7.2525, 7.2521, 7.2516, 7.2525, 7.2534, 7.2531, 7.2528, 7.2524, 7.2522, 7.2517, 7.2543, 7.2539, 7.2569, 7.2565, 7.2562, 7.2559, 7.2555, 7.255, 7.2561, 7.2558, 7.2568, 7.2581, 7.2577, 7.2574, 7.2569, 7.2578, 7.2574, 7.2571, 7.2583, 7.2581, 7.2579, 7.2644, 7.2642, 7.2638, 7.2635, 7.263, 7.2625, 7.262, 7.2603, 7.26, 7.2609, 7.2618, 7.2614, 7.2609, 7.2593, 7.2602, 7.2599, 7.2595, 7.2579, 7.2564, 7.256, 7.2596, 7.2592, 7.26, 7.2598, 7.2609, 7.2607, 7.2602, 7.2611, 7.2607, 7.2603, 7.2598, 7.2593, 7.2592, 7.2601, 7.2597, 7.2593, 7.2608, 7.2606, 7.2601, 7.2599, 7.2598, 7.2595, 7.2591, 7.2587, 7.2573, 7.2581, 7.259, 7.2585, 7.258, 7.2589, 7.2587, 7.2584, 7.258, 7.2576, 7.2585, 7.2594, 7.259, 7.2586, 7.2595, 7.2591, 7.2601, 7.2598, 7.2594, 7.2591, 7.2589, 7.2585, 7.2581, 7.2579, 7.2587, 7.2596, 7.2592, 7.2588, 7.2584, 7.258, 7.2578, 7.2576, 7.2591, 7.2587, 7.2583, 7.258, 7.2578, 7.2586, 7.2581, 7.2577, 7.2572, 7.2568, 7.2564, 7.2561, 7.257, 7.2566, 7.2563, 7.2558, 7.2553, 7.2562, 7.2558, 7.2555, 7.255, 7.2545, 7.2541, 7.2536, 7.2532, 7.2529, 7.2538, 7.2534, 7.2529, 7.2524, 7.2519, 7.2528, 7.2524, 7.2521, 7.2517, 7.2513, 7.2508, 7.2503, 7.2511, 7.2506, 7.2502, 7.2512, 7.2508, 7.2505, 7.2501, 7.2498, 7.2494, 7.2477, 7.2474, 7.2471, 7.2467, 7.2464, 7.246, 7.2456, 7.244, 7.2435, 7.243, 7.2425, 7.2432, 7.243, 7.2425, 7.2427, 7.2423, 7.2466, 7.2464, 7.2462, 7.2459, 7.2455, 7.2465, 7.2461, 7.2469, 7.2478, 7.2475, 7.2471, 7.2455, 7.2466, 7.2462, 7.2458, 7.2442, 7.2437, 7.2432, 7.2428, 7.2437, 7.245, 7.2445, 7.2429, 7.2424, 7.2432, 7.2428, 7.2423, 7.242, 7.2443, 7.2438, 7.2435, 7.2431, 7.2428, 7.2424, 7.2436, 7.2432, 7.2442, 7.2443, 7.2455, 7.2462, 7.2446, 7.243, 7.2439, 7.2434, 7.2472, 7.2467, 7.2463, 7.2459, 7.2468, 7.2464, 7.2459, 7.2456, 7.2453, 7.245, 7.2435, 7.2431, 7.2427, 7.2422, 7.2418, 7.2415, 7.2413, 7.2397, 7.2396, 7.2392, 7.2394, 7.239, 7.2386, 7.2395, 7.2391, 7.2387, 7.2382, 7.2378, 7.2374, 7.237, 7.2366, 7.2374, 7.2382, 7.2379, 7.2376, 7.2385, 7.2371, 7.2367, 7.2364, 7.2359, 7.2357, 7.2341, 7.2337, 7.2363, 7.236, 7.2368, 7.2366, 7.235, 7.2359, 7.2356, 7.2352, 7.2374, 7.2383, 7.238, 7.2377, 7.2374, 7.2371, 7.2367, 7.2364, 7.236, 7.2357, 7.2353, 7.2362, 7.2371, 7.2366, 7.2361, 7.236, 7.2355, 7.2352, 7.2349, 7.2346, 7.2342, 7.2338, 7.2324, 7.2324, 7.232, 7.2317, 7.2314, 7.2311, 7.2296, 7.2292, 7.2288, 7.2285, 7.2282, 7.2279, 7.2276, 7.2271, 7.2256, 7.2265, 7.2263, 7.2271, 7.2268, 7.2263, 7.226, 7.2257, 7.2266, 7.2262, 7.2258, 7.2242, 7.2239, 7.2235, 7.223, 7.2239, 7.2235, 7.2231, 7.2239, 7.2236, 7.2232, 7.2228, 7.2224, 7.222, 7.2217, 7.2214, 7.2222, 7.2219, 7.2215, 7.2212, 7.222, 7.2229, 7.2225, 7.2247, 7.2256, 7.2265, 7.2261, 7.2257, 7.2256, 7.2241, 7.2236, 7.2232, 7.2241, 7.2238, 7.2246, 7.2255, 7.2251, 7.2248, 7.2233, 7.2229, 7.2225, 7.2224, 7.222, 7.2217, 7.2215, 7.2226, 7.2234, 7.2231, 7.224, 7.2225, 7.2221, 7.2218, 7.2227, 7.2223, 7.2232, 7.2219, 7.2216, 7.2213, 7.2209, 7.2206, 7.2208, 7.2205, 7.2214, 7.221, 7.2218, 7.2214, 7.2209, 7.2204, 7.2213, 7.221, 7.221, 7.2195, 7.2191, 7.2179, 7.2206, 7.2202, 7.2199, 7.2195, 7.2207, 7.2195, 7.2207, 7.2194, 7.2194, 7.219, 7.2186, 7.2183, 7.2192, 7.22, 7.2199, 7.2195, 7.2191, 7.2187, 7.2196, 7.2192, 7.2188, 7.2185, 7.2182, 7.2178, 7.2174, 7.217, 7.2167, 7.2163, 7.2148, 7.2144, 7.2152, 7.2149, 7.2159, 7.2144, 7.2142, 7.2139, 7.2135, 7.2144, 7.2152, 7.2148, 7.2145, 7.2154, 7.2162, 7.2158, 7.2143, 7.214, 7.2137, 7.2133, 7.2141, 7.215, 7.2158, 7.2154, 7.2163, 7.217, 7.2166, 7.2162, 7.2159, 7.2155, 7.2164, 7.2175, 7.2172, 7.218, 7.2188, 7.2186, 7.2181, 7.2179, 7.2188, 7.2184, 7.2181, 7.2178, 7.2185, 7.2193, 7.2189, 7.2184, 7.218, 7.2177, 7.2187, 7.2184, 7.218, 7.2188, 7.2196, 7.2193, 7.219, 7.2186, 7.2195, 7.2191, 7.2203, 7.22, 7.2197, 7.2193, 7.2178, 7.2178, 7.2174, 7.217, 7.2166, 7.2162, 7.2172, 7.2168, 7.2153, 7.2161, 7.2157, 7.2153, 7.2149, 7.2157, 7.2153, 7.2149, 7.2146, 7.2153, 7.2161, 7.2157, 7.2142, 7.215, 7.2158, 7.2166, 7.2173, 7.2169, 7.2166, 7.2162, 7.2158, 7.2154, 7.2139, 7.215, 7.2148, 7.2145, 7.2142, 7.2151, 7.2148, 7.2145, 7.2141, 7.2149, 7.2158, 7.2166, 7.2175, 7.2172, 7.2168, 7.2164, 7.2172, 7.2173, 7.2185, 7.2192, 7.2188, 7.2186, 7.2182, 7.2178, 7.2174, 7.2183, 7.2181, 7.2182, 7.2179, 7.2187, 7.2184, 7.2193, 7.219, 7.2186, 7.2183, 7.2192, 7.2188, 7.2196, 7.2204, 7.2213, 7.2221, 7.2206, 7.2216, 7.2212, 7.222, 7.2218, 7.2227, 7.2236, 7.2248, 7.2245, 7.2242, 7.2238, 7.2246, 7.2243, 7.2252, 7.2248, 7.2245, 7.2253, 7.2262, 7.2261, 7.2257, 7.2266, 7.2273, 7.227, 7.2255, 7.2253, 7.225, 7.2246, 7.2254, 7.2253, 7.225, 7.2238, 7.2235, 7.2232, 7.2229, 7.2225, 7.2265, 7.2272, 7.227, 7.2267, 7.2263, 7.2248, 7.2245, 7.2254, 7.2272, 7.228, 7.2277, 7.2273, 7.228, 7.2276, 7.2273, 7.2269, 7.2265, 7.2261, 7.2257, 7.2265, 7.2262, 7.2272, 7.2289, 7.2299, 7.2306, 7.2303, 7.23, 7.2296, 7.2294, 7.229, 7.2287, 7.2272, 7.2268, 7.2277, 7.2273, 7.2281, 7.2277, 7.2273, 7.227, 7.2278, 7.2274, 7.2271, 7.2258, 7.2255, 7.2241, 7.2237, 7.2233, 7.223, 7.2227, 7.2223, 7.2219, 7.2218, 7.2215, 7.2211, 7.2219, 7.2227, 7.2223, 7.2231, 7.2227, 7.2212, 7.2209, 7.2206, 7.2204, 7.2223, 7.2231, 7.2228, 7.2247, 7.2243, 7.2252, 7.225, 7.2247, 7.2245, 7.2241, 7.2226, 7.2235, 7.2232, 7.2229, 7.2227, 7.2214, 7.2212, 7.2221, 7.223, 7.2232, 7.2229, 7.2227, 7.2224, 7.222, 7.2216, 7.2224, 7.2232, 7.2247, 7.2232, 7.2229, 7.2237, 7.2244, 7.2252, 7.2248, 7.2246, 7.2243, 7.2251, 7.2248, 7.2246, 7.2254, 7.225, 7.2246, 7.2254, 7.225, 7.2246, 7.2242, 7.2238, 7.2235, 7.2232, 7.2228, 7.2237, 7.2236, 7.2243, 7.2242, 7.2238, 7.2236, 7.2222, 7.2218, 7.2204, 7.2202, 7.22, 7.2197, 7.2194, 7.2191, 7.2188, 7.2193, 7.219, 7.2187, 7.2183, 7.2191, 7.2188, 7.2184, 7.2183, 7.2179, 7.2166, 7.2163, 7.2159, 7.2156, 7.2153, 7.2149, 7.2147, 7.216, 7.2156, 7.2163, 7.2149, 7.2146, 7.2154, 7.214, 7.2148, 7.2144, 7.214, 7.2148, 7.2145, 7.2142, 7.2138, 7.2136, 7.2144, 7.214, 7.2137, 7.2134, 7.2142, 7.214, 7.2137, 7.2145, 7.2154, 7.215, 7.2147, 7.2155, 7.2154, 7.2151, 7.2148, 7.2157, 7.2154, 7.2151, 7.2171, 7.2167, 7.2176, 7.2162, 7.2159, 7.2168, 7.2165, 7.2162, 7.2159, 7.2157, 7.2154, 7.2151, 7.2147, 7.2155, 7.2152, 7.2148, 7.2144, 7.2153, 7.2161, 7.2169, 7.2166, 7.2174, 7.2182, 7.2194, 7.219, 7.2198, 7.2194, 7.219, 7.2188, 7.2185, 7.2182, 7.219, 7.2187, 7.2183, 7.2179, 7.2188, 7.2184, 7.2191, 7.2187, 7.2183, 7.2179, 7.2175, 7.2172, 7.2181, 7.2178, 7.2186, 7.2183, 7.218, 7.2177, 7.2174, 7.217, 7.2177, 7.2174, 7.2171, 7.2168, 7.2164, 7.2162, 7.2158, 7.2155, 7.2151, 7.2159, 7.2168, 7.2187, 7.2183, 7.218, 7.2176, 7.2172, 7.2168, 7.2164, 7.216, 7.2158, 7.2155, 7.2152, 7.216, 7.2168, 7.2165, 7.2162, 7.2158, 7.2165, 7.2163, 7.2227, 7.2223, 7.2219, 7.222, 7.2228, 7.2227, 7.2223, 7.222, 7.2236, 7.2232, 7.2241, 7.2238, 7.2234, 7.2232, 7.2229, 7.2236, 7.2244, 7.224, 7.2238, 7.2234, 7.2241, 7.2237, 7.2234, 7.2231, 7.2238, 7.2235, 7.2221, 7.2208, 7.2204, 7.2213, 7.2221, 7.2219, 7.2226, 7.2212, 7.2209, 7.2208, 7.2217, 7.2228, 7.2227, 7.2228, 7.2225, 7.2222, 7.2229, 7.2237, 7.2245, 7.2254, 7.2251, 7.2256, 7.2253, 7.2262, 7.2258, 7.2255, 7.2263, 7.2259, 7.2256, 7.2253, 7.2262, 7.2258, 7.2255, 7.2252, 7.2248, 7.2247, 7.2233, 7.224, 7.2236, 7.2232, 7.2239, 7.2236, 7.2242, 7.2239, 7.2236, 7.2232, 7.2228, 7.2226, 7.2222, 7.2232, 7.224, 7.2236, 7.2233, 7.223, 7.2228, 7.2224, 7.2231, 7.2218, 7.222, 7.2227, 7.2234, 7.222, 7.223, 7.2227, 7.2259, 7.2266, 7.2262, 7.2259, 7.2266, 7.2263, 7.2272, 7.2268, 7.2265, 7.2262, 7.2258, 7.2254, 7.2251, 7.2251, 7.2247, 7.2244, 7.2241, 7.2238, 7.2234, 7.223, 7.2227, 7.2225, 7.2221, 7.2207, 7.2203, 7.22, 7.2211, 7.2218, 7.2214, 7.2211, 7.2207, 7.2204, 7.2191, 7.2178, 7.2186, 7.2182, 7.2189, 7.2185, 7.2181, 7.2188, 7.2185, 7.2183, 7.218, 7.2177, 7.2186, 7.2193, 7.22, 7.2198, 7.2194, 7.2192, 7.2243, 7.2261, 7.2249, 7.2246, 7.2253, 7.2261, 7.2247, 7.2247, 7.2254, 7.224, 7.2239, 7.2238, 7.2235, 7.2245, 7.229, 7.2297, 7.235, 7.2347, 7.2345, 7.2342, 7.2349, 7.2385, 7.2381, 7.2378, 7.2375, 7.2384, 7.238, 7.2391, 7.2391, 7.239, 7.2398, 7.2394, 7.2403, 7.24, 7.2396, 7.2393, 7.2389, 7.2401, 7.2412, 7.2409, 7.2406, 7.2403, 7.24, 7.2397, 7.2406, 7.2414, 7.2411, 7.2408, 7.2408, 7.2408, 7.2416, 7.2441, 7.2437, 7.2434, 7.2431, 7.2438, 7.2458, 7.2448, 7.2445, 7.2443, 7.244, 7.2436, 7.2434, 7.243, 7.2417, 7.2413, 7.2409, 7.2405, 7.2401, 7.2409, 7.2405, 7.2403, 7.2399, 7.2397, 7.2406, 7.2403, 7.24, 7.2407, 7.2405, 7.2394, 7.2401, 7.2397, 7.2394, 7.239, 7.2388, 7.2387, 7.2374, 7.2371, 7.2367, 7.2366, 7.2362, 7.2359, 7.2366, 7.2384, 7.2381, 7.2378, 7.2385, 7.2382, 7.2378, 7.2377, 7.2364, 7.2371, 7.2368, 7.2366, 7.2373, 7.238, 7.2377, 7.2377, 7.2373, 7.237, 7.2367, 7.2363, 7.2359, 7.2346, 7.2342, 7.2349, 7.2359, 7.2366, 7.2362, 7.2359, 7.2356, 7.2365, 7.2353, 7.2349, 7.2345, 7.2341, 7.2338, 7.2334, 7.2342, 7.235, 7.2348, 7.2344, 7.2351, 7.2357, 7.2355, 7.2351, 7.2347, 7.2343, 7.235, 7.2337, 7.2334, 7.233, 7.2326, 7.2324, 7.2331, 7.2339, 7.2326, 7.2323, 7.2319, 7.2316, 7.2313, 7.2311, 7.2308, 7.2315, 7.2302, 7.2298, 7.2305, 7.2312, 7.2319, 7.2318, 7.2314, 7.231, 7.2311, 7.2307, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.23, 7.2308, 7.2305, 7.2303, 7.23, 7.2296, 7.2292, 7.2289, 7.2285, 7.2283, 7.229, 7.2296, 7.2303, 7.23, 7.2307, 7.2306, 7.2302, 7.2299, 7.2306, 7.2312, 7.2308, 7.2305, 7.2302, 7.2298, 7.2294, 7.2291, 7.2309, 7.2307, 7.2305, 7.2301, 7.2308, 7.2305, 7.2292, 7.2279, 7.2276, 7.2273, 7.2272, 7.2269, 7.2266, 7.2263, 7.227, 7.2267, 7.2264, 7.2273, 7.2269, 7.2257, 7.2254, 7.2251, 7.2259, 7.2257, 7.2264, 7.2261, 7.2269, 7.2266, 7.2263, 7.2259, 7.2267, 7.2264, 7.226, 7.2247, 7.2236, 7.2224, 7.2221, 7.2218, 7.2215, 7.2222, 7.2219, 7.2216, 7.2224, 7.2221, 7.2229, 7.2226, 7.2224, 7.2222, 7.221, 7.2206, 7.2202, 7.2198, 7.2196, 7.2196, 7.2203, 7.2199, 7.2195, 7.2192, 7.2188, 7.2195, 7.2192, 7.2199, 7.2221, 7.2218, 7.2226, 7.2222, 7.2218, 7.2225, 7.2232, 7.2228, 7.2225, 7.2221, 7.2217, 7.2224, 7.2232, 7.2228, 7.2225, 7.2215, 7.2213, 7.221, 7.2208, 7.2206, 7.2224, 7.2221, 7.2228, 7.2215, 7.2203, 7.2191, 7.2188, 7.2185, 7.2182, 7.2179, 7.2176, 7.2173, 7.217, 7.2167, 7.2163, 7.2159, 7.2155, 7.2151, 7.2148, 7.2154, 7.2161, 7.2167, 7.2163, 7.2159, 7.2167, 7.2164, 7.2161, 7.2159, 7.2165, 7.2172, 7.2171, 7.2169, 7.2167, 7.2164, 7.216, 7.2147, 7.2145, 7.2152, 7.2159, 7.2156, 7.2153, 7.215, 7.2146, 7.2154, 7.215, 7.2148, 7.2135, 7.2131, 7.2137, 7.2144, 7.2131, 7.2129, 7.2125, 7.2122, 7.2112, 7.2137, 7.2134, 7.2131, 7.2129, 7.2117, 7.2136, 7.2143, 7.2141, 7.2148, 7.2145, 7.2142, 7.2143, 7.2141, 7.214, 7.2137, 7.2133, 7.214, 7.2141, 7.214, 7.2137, 7.2144, 7.2143, 7.2141, 7.2138, 7.2134, 7.2131, 7.2128, 7.2125, 7.2121, 7.2118, 7.2117, 7.2114, 7.211, 7.2118, 7.2131, 7.2152, 7.215, 7.2147, 7.2143, 7.2141, 7.2138, 7.2141, 7.2149, 7.2145, 7.2141, 7.2138, 7.2137, 7.2125, 7.2132, 7.2129, 7.2125, 7.2122, 7.2118, 7.2114, 7.212, 7.2117, 7.2123, 7.2124, 7.2121, 7.2118, 7.2114, 7.2111, 7.2108, 7.2105, 7.2093, 7.2091, 7.2088, 7.2095, 7.2092, 7.2089, 7.209, 7.2087, 7.2084, 7.2071, 7.2067, 7.2066, 7.2054, 7.2051, 7.2048, 7.2057, 7.2053, 7.2052, 7.2059, 7.2056, 7.2053, 7.205, 7.2047, 7.2034, 7.2031, 7.2047, 7.2054, 7.2053, 7.206, 7.2057, 7.2053, 7.206, 7.2059, 7.2055, 7.2052, 7.2048, 7.206, 7.2057, 7.2054, 7.2051, 7.2047, 7.2053, 7.2061, 7.2069, 7.2077, 7.2065, 7.2062, 7.206, 7.2057, 7.2053, 7.2063, 7.2065, 7.2095, 7.2095, 7.2093, 7.2089, 7.2088, 7.2106, 7.2104, 7.2113, 7.2111, 7.2118, 7.2124, 7.2122, 7.2129, 7.2128, 7.2124, 7.2121, 7.2118, 7.2115, 7.2112, 7.211, 7.2107, 7.2104, 7.2101, 7.2108, 7.2114, 7.2111, 7.2108, 7.2106, 7.2103, 7.2101, 7.2121, 7.2117, 7.2114, 7.2113, 7.2103, 7.21, 7.2096, 7.2096, 7.2093, 7.21, 7.2097, 7.2094, 7.2091, 7.2097, 7.2105, 7.2101, 7.2098, 7.2094, 7.21, 7.2107, 7.2094, 7.214, 7.2137, 7.2134, 7.2131, 7.2138, 7.2135, 7.2132, 7.2129, 7.2128, 7.2124, 7.2122, 7.2119, 7.2125, 7.2134, 7.2131, 7.2128, 7.2124, 7.2123, 7.212, 7.2117, 7.2116, 7.2113, 7.211, 7.2108, 7.2096, 7.2096, 7.2093, 7.2092, 7.2089, 7.2087, 7.2095, 7.2092, 7.2099, 7.212, 7.2127, 7.2124, 7.2131, 7.2127, 7.2124, 7.2152, 7.2149, 7.2147, 7.2144, 7.214, 7.2147, 7.2144, 7.2143, 7.2158, 7.2156, 7.2163, 7.2169, 7.2166, 7.2163, 7.216, 7.2159, 7.2157, 7.2164, 7.217, 7.2167, 7.2173, 7.2161, 7.215, 7.214, 7.2147, 7.2144, 7.2141, 7.2147, 7.2153, 7.216, 7.2148, 7.2146, 7.2162, 7.2159, 7.2156, 7.2154, 7.2151, 7.2149, 7.2146, 7.2153, 7.2151, 7.2148, 7.2144, 7.2161, 7.2168, 7.2165, 7.2162, 7.2168, 7.2165, 7.2162, 7.216, 7.2156, 7.2153, 7.2152, 7.2149, 7.2146, 7.2152, 7.2159, 7.2157, 7.2183, 7.2181, 7.2188, 7.2185, 7.2191, 7.2189, 7.2196, 7.2215, 7.2212, 7.2209, 7.2206, 7.2203, 7.221, 7.2217, 7.2213, 7.221, 7.2207, 7.2204, 7.2201, 7.2198, 7.2195, 7.2193, 7.219, 7.2188, 7.2185, 7.2181, 7.2187, 7.2194, 7.2195, 7.2193, 7.2199, 7.2206, 7.2204, 7.2223, 7.222, 7.2218, 7.2215, 7.2212, 7.221, 7.2216, 7.2213, 7.222, 7.2229, 7.2226, 7.2224, 7.2221, 7.2217, 7.2214, 7.2212, 7.2211, 7.2209, 7.2205, 7.2201, 7.2208, 7.2205, 7.2202, 7.2199, 7.2207, 7.2204, 7.2202, 7.2199, 7.2195, 7.2192, 7.2181, 7.2178, 7.2175, 7.2173, 7.217, 7.2167, 7.2173, 7.217, 7.2181, 7.2189, 7.2195, 7.2196, 7.2193, 7.219, 7.2189, 7.2187, 7.2193, 7.219, 7.2187, 7.2184, 7.2181, 7.2177, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.2151, 7.2148, 7.2161, 7.2163, 7.2161, 7.2159, 7.2156, 7.2154, 7.216, 7.2157, 7.2154, 7.2151, 7.2148, 7.2145, 7.2142, 7.2139, 7.2136, 7.2133, 7.2129, 7.2126, 7.2123, 7.212, 7.2117, 7.2114, 7.2121, 7.2118, 7.2117, 7.2105, 7.2104, 7.2102, 7.2099, 7.2097, 7.2094, 7.2093, 7.209, 7.2087, 7.2084, 7.2081, 7.2079, 7.2085, 7.2082, 7.2079, 7.2076, 7.2073, 7.207, 7.2067, 7.2073, 7.2079, 7.2076, 7.2075, 7.2075, 7.2072, 7.2069, 7.2066, 7.2063, 7.206, 7.2058, 7.2068, 7.207800000000001, 7.208800000000001, 7.2085, 7.2082, 7.207, 7.2068, 7.2066, 7.2054, 7.2052, 7.205, 7.2055, 7.2052, 7.205, 7.2057, 7.2054, 7.2051, 7.205, 7.2047, 7.2045, 7.2047, 7.2046, 7.2056000000000004, 7.206600000000001, 7.207600000000001, 7.2075, 7.2072, 7.208, 7.2077, 7.2091, 7.2089, 7.2088, 7.2094, 7.2095, 7.2092, 7.2089, 7.2086, 7.2083, 7.2089, 7.2086, 7.2096, 7.2093, 7.2094, 7.2092, 7.209, 7.2087, 7.2084, 7.2082, 7.2092, 7.2101, 7.21, 7.2107, 7.2114, 7.2112, 7.211, 7.2107, 7.2104, 7.2101, 7.2098, 7.2095, 7.2092, 7.209, 7.2096, 7.2093, 7.209, 7.21, 7.211, 7.2119, 7.2126, 7.2123, 7.212, 7.2119, 7.2117, 7.2114, 7.2102, 7.21, 7.2097, 7.2094, 7.2096, 7.2094, 7.2092, 7.2109, 7.2107, 7.2105, 7.2102, 7.21, 7.2097, 7.2085, 7.2083, 7.2081, 7.2088, 7.209, 7.2087, 7.2084, 7.2082, 7.2079, 7.2085, 7.2082, 7.208, 7.2077, 7.2075, 7.2064, 7.2062, 7.2059, 7.2066, 7.2066, 7.2064, 7.2062, 7.2059, 7.2047, 7.2053, 7.205, 7.206, 7.2058, 7.2058, 7.2055, 7.2065, 7.2063, 7.2069, 7.2066, 7.2064, 7.2062, 7.2059, 7.2056, 7.2062, 7.2059, 7.2056, 7.2055, 7.2072, 7.2069, 7.2076, 7.2075, 7.2073, 7.207, 7.2076, 7.2074, 7.208, 7.2078, 7.2075, 7.2081, 7.2087, 7.2125, 7.2122, 7.2119, 7.2117, 7.2114, 7.212, 7.213, 7.2128, 7.2125, 7.2121, 7.2137, 7.2134, 7.2131, 7.2128, 7.2138, 7.2148, 7.2146, 7.2151, 7.2158, 7.2166, 7.2165, 7.2172, 7.2172, 7.2179, 7.2176, 7.2173, 7.2162, 7.2168, 7.2167, 7.2164, 7.217, 7.2167, 7.2174, 7.2171, 7.2177, 7.2174, 7.2191, 7.2188, 7.2186, 7.2184, 7.2181, 7.2179, 7.2185, 7.2182, 7.2179, 7.2186, 7.2201, 7.2198, 7.2195, 7.2193, 7.2191, 7.2188, 7.2185, 7.2183, 7.2189, 7.2195, 7.2193, 7.2191, 7.2188, 7.2185, 7.2183, 7.218, 7.2177, 7.2175, 7.2172, 7.2169, 7.2168, 7.2165, 7.2162, 7.216, 7.2157, 7.2163, 7.216, 7.2175, 7.2172, 7.217, 7.2167, 7.2165, 7.2162, 7.216, 7.2166, 7.2163, 7.2162, 7.2159, 7.2167, 7.2173, 7.217, 7.2176, 7.2182, 7.2189, 7.2186, 7.2184, 7.2181, 7.2187, 7.2184, 7.219, 7.2187, 7.2192, 7.219, 7.2196, 7.2194, 7.2192, 7.2202, 7.2199, 7.2205, 7.2202, 7.2209, 7.2207, 7.2213, 7.2212, 7.2201, 7.2198, 7.2204, 7.2202, 7.2225, 7.2223, 7.222, 7.2218, 7.2225, 7.2222, 7.2219, 7.2226, 7.2224, 7.2222, 7.2229, 7.2218, 7.2225, 7.2222, 7.2219, 7.2225, 7.2231, 7.2237, 7.2234, 7.224, 7.2237, 7.2243, 7.2255, 7.2253, 7.225, 7.2258, 7.2273, 7.227, 7.2282, 7.2281, 7.2281, 7.2279, 7.2278, 7.2286, 7.2283, 7.2289, 7.2286, 7.2283, 7.2282, 7.2279, 7.2286, 7.2283, 7.228, 7.2286, 7.2293, 7.229, 7.2288, 7.2294, 7.2296, 7.2293, 7.2306, 7.2304, 7.2302, 7.2308, 7.2305, 7.2302, 7.2304, 7.231, 7.2308, 7.2306, 7.2303, 7.23, 7.2298, 7.2297, 7.2304, 7.2301, 7.2307, 7.2305, 7.2311, 7.2317, 7.2315, 7.2312, 7.2317, 7.2323, 7.232, 7.2318, 7.2324, 7.2322, 7.2322, 7.2319, 7.2325, 7.2325, 7.2333, 7.2332, 7.2336, 7.2333, 7.234, 7.2339, 7.2336, 7.2333, 7.233, 7.2328, 7.2326, 7.2316, 7.2314, 7.2311, 7.2308, 7.2306, 7.2312, 7.2309, 7.2306, 7.2303, 7.2301, 7.229, 7.2287, 7.2285, 7.2291, 7.2288, 7.2294, 7.2292, 7.2291, 7.2288, 7.2286, 7.2284, 7.2281, 7.228, 7.2278, 7.2276, 7.2274, 7.2281, 7.2279, 7.2276, 7.2283, 7.229, 7.2287, 7.2285, 7.2282, 7.228, 7.2278, 7.2275, 7.2264, 7.2261, 7.2258, 7.2255, 7.2253, 7.225, 7.2247, 7.2245, 7.2243, 7.2243, 7.224, 7.2237, 7.2234, 7.2232, 7.2229, 7.2226, 7.2232, 7.2229, 7.2226, 7.2224, 7.2229, 7.2227, 7.2224, 7.2241, 7.2238, 7.2243, 7.2249, 7.2246, 7.2243, 7.224, 7.2237, 7.2234, 7.2232, 7.223, 7.2229, 7.2235, 7.2233, 7.2231, 7.2229, 7.2226, 7.2232, 7.223, 7.2228, 7.2234, 7.2231, 7.2228, 7.2225, 7.2222, 7.222, 7.2217, 7.2214, 7.2211, 7.2209, 7.2207, 7.2205, 7.2213, 7.2221, 7.2221, 7.2227, 7.2225, 7.2222, 7.222, 7.2227, 7.2224, 7.223, 7.2233, 7.223, 7.2236, 7.2233, 7.2232, 7.223, 7.2253, 7.2242, 7.2239, 7.2237, 7.2243, 7.224, 7.2237, 7.2243, 7.2234, 7.2241, 7.2238, 7.2236, 7.2234, 7.2232, 7.2229, 7.2235, 7.2232, 7.2229, 7.2226, 7.2224, 7.2221, 7.2218, 7.2224, 7.2239, 7.2236, 7.2235, 7.2232, 7.2221, 7.2218, 7.2217, 7.2214, 7.2213, 7.226, 7.2257, 7.2255, 7.2253, 7.2252, 7.2258, 7.2255, 7.2253, 7.2259, 7.2256, 7.2253, 7.2259, 7.2256, 7.2253, 7.225, 7.2256, 7.2254, 7.2259, 7.2265, 7.2262, 7.226, 7.2278, 7.2275, 7.2289, 7.2287, 7.2284, 7.2282, 7.2292, 7.2298, 7.2295, 7.2285, 7.2282, 7.2279, 7.2276, 7.2281, 7.2278, 7.2277, 7.2275, 7.2273, 7.2278, 7.2275, 7.228, 7.2277, 7.2276, 7.2274, 7.2271, 7.2269, 7.2268, 7.2265, 7.2267, 7.2265, 7.2263, 7.2252, 7.2249, 7.2254, 7.2255, 7.2244, 7.2233, 7.225, 7.2239, 7.228, 7.2277, 7.2283, 7.2282, 7.2279, 7.2286, 7.2299, 7.2296, 7.2293, 7.229, 7.2314, 7.2312, 7.2309, 7.231, 7.2308, 7.2306, 7.2304, 7.2301, 7.2299, 7.2297, 7.2294, 7.2291, 7.2289, 7.2295, 7.2292, 7.2298, 7.2295, 7.23, 7.2298, 7.2295, 7.2293, 7.2292, 7.2297, 7.2296, 7.2293, 7.2292, 7.2299, 7.2296, 7.2294, 7.2291, 7.2289, 7.2287, 7.2294, 7.2292, 7.2289, 7.2278, 7.2275, 7.2272, 7.227, 7.2275, 7.2281, 7.2281, 7.2278, 7.2275, 7.2264, 7.2253, 7.225, 7.2247, 7.2253, 7.2255, 7.2252, 7.2258, 7.2255, 7.2262, 7.2268, 7.2266, 7.2272, 7.2269, 7.2266, 7.2263, 7.226, 7.2266, 7.2272, 7.2272, 7.2278, 7.2275, 7.2272, 7.227, 7.2268, 7.2281, 7.2279, 7.2276, 7.2273, 7.227, 7.2267, 7.2268, 7.2269, 7.2266, 7.2271, 7.2277, 7.2283, 7.228, 7.2277, 7.2306, 7.232, 7.2343, 7.234, 7.2329, 7.2318, 7.2315, 7.2312, 7.2318, 7.2316, 7.2313, 7.2311, 7.2317, 7.2314, 7.2311, 7.2308, 7.2314, 7.2312, 7.2301, 7.2298, 7.2296, 7.2293, 7.229, 7.2287, 7.2293, 7.2283, 7.2288, 7.2285, 7.229, 7.2287, 7.2298, 7.2295, 7.2292, 7.2297, 7.2294, 7.23, 7.2297, 7.2303, 7.2303, 7.2309, 7.2306, 7.2312, 7.2339, 7.2336, 7.2343, 7.2349, 7.2347, 7.2336, 7.2342, 7.2347, 7.2345, 7.2343, 7.234, 7.233, 7.2327, 7.2332, 7.2329, 7.2326, 7.2323, 7.2321, 7.2327, 7.2325, 7.2331, 7.2336, 7.2333, 7.233, 7.2327, 7.2324, 7.2329, 7.2326, 7.2323, 7.232, 7.2325, 7.233, 7.2328, 7.2325, 7.2331, 7.2362, 7.2359, 7.2356, 7.2355, 7.236, 7.2366, 7.2363, 7.236, 7.2365, 7.237, 7.2367, 7.2365, 7.2363, 7.2352, 7.2357, 7.2371, 7.2391, 7.2397, 7.2403, 7.24, 7.2405, 7.2402, 7.2408, 7.2406, 7.2408, 7.2406, 7.2415, 7.2413, 7.2418, 7.2415, 7.2412, 7.2418, 7.2415, 7.2421, 7.2418, 7.2424, 7.243, 7.2427, 7.2433, 7.243, 7.2427, 7.2424, 7.2421, 7.2418, 7.2415, 7.242, 7.2428, 7.2425, 7.2422, 7.242, 7.2417, 7.2415, 7.2413, 7.241, 7.2407, 7.2404, 7.2427, 7.2424, 7.2431, 7.2436, 7.245, 7.2456, 7.2453, 7.2459, 7.2457, 7.2463, 7.246, 7.2457, 7.2462, 7.246, 7.2474, 7.2465, 7.2466, 7.2471, 7.2468, 7.2467, 7.2465, 7.2462, 7.2468, 7.2465, 7.2454, 7.2459, 7.2456, 7.2458, 7.2464, 7.2476, 7.2474, 7.248, 7.248, 7.2477, 7.2485, 7.2495, 7.2493, 7.2503, 7.2495, 7.2496, 7.2494, 7.2496, 7.2501, 7.2499, 7.2489, 7.2486, 7.2487, 7.2501, 7.2499, 7.2505, 7.251, 7.2509, 7.2507, 7.2521, 7.2511, 7.2508, 7.2518, 7.2523, 7.2537, 7.256, 7.256, 7.2567, 7.2565, 7.2566, 7.2568, 7.2573, 7.257, 7.2575, 7.258, 7.2585, 7.2591, 7.2596, 7.2594, 7.2591, 7.2608, 7.2607, 7.2615, 7.2605, 7.261, 7.2608, 7.2606, 7.2624, 7.2621, 7.2618, 7.2631, 7.2637, 7.2642, 7.2639, 7.2644, 7.2643, 7.2649, 7.2663, 7.266, 7.2657, 7.2655, 7.2661, 7.2667, 7.2679, 7.2676, 7.2677, 7.2682, 7.268, 7.2686, 7.2692, 7.2689, 7.2694, 7.2699, 7.2705, 7.2702, 7.2699, 7.2699, 7.2696, 7.2686, 7.27, 7.2705, 7.2718, 7.2723, 7.2721, 7.2719, 7.2724, 7.2721, 7.2718, 7.2732, 7.2729, 7.2727, 7.2725, 7.2722, 7.272, 7.2725, 7.2723, 7.2721, 7.2711, 7.2717, 7.2715, 7.2728, 7.2725, 7.2748, 7.2748, 7.2748, 7.2748, 7.2746, 7.2763, 7.2754, 7.2752, 7.275, 7.2747, 7.2753, 7.275, 7.2748, 7.2754, 7.2777, 7.2767, 7.2764, 7.277, 7.2768, 7.2766, 7.2763, 7.276, 7.2757, 7.2755, 7.2754, 7.2752, 7.2749, 7.2746, 7.2743, 7.2748, 7.2753, 7.2766, 7.2763, 7.2769, 7.2774, 7.2787, 7.2785, 7.279, 7.2789, 7.2786, 7.2783, 7.278, 7.2777, 7.2774, 7.2777, 7.2774, 7.2764, 7.2762, 7.2762, 7.2761, 7.2766, 7.2763, 7.2768, 7.2765, 7.2763, 7.2775, 7.2788, 7.2793, 7.279, 7.2787, 7.2785, 7.279, 7.2787, 7.2792, 7.2798, 7.2797, 7.2803, 7.28, 7.2805, 7.281, 7.2808, 7.2805, 7.2811, 7.2813, 7.2811, 7.2808, 7.2805, 7.2811, 7.2809, 7.2806, 7.2811, 7.2809, 7.2807, 7.2812, 7.2809, 7.2814, 7.2812, 7.2827, 7.2832, 7.2831, 7.2836, 7.2833, 7.283, 7.282, 7.2817, 7.2814, 7.2819, 7.2817, 7.2814, 7.2804, 7.2801, 7.2806, 7.2803, 7.28, 7.2798, 7.2804, 7.2809, 7.2814, 7.282, 7.2817, 7.2814, 7.2819, 7.2816, 7.2813, 7.2811, 7.2809, 7.2807, 7.2805, 7.2811, 7.2816, 7.2829, 7.2819, 7.2818, 7.2818, 7.2821, 7.2828, 7.2836, 7.2856, 7.2856, 7.2861, 7.2861, 7.2876, 7.2881, 7.2879, 7.2876, 7.2882, 7.288, 7.2878, 7.2891, 7.2888, 7.2886, 7.2891, 7.2897, 7.2895, 7.2917, 7.2914, 7.2912, 7.2909, 7.2907, 7.2904, 7.2902, 7.29, 7.2898, 7.2897, 7.2902, 7.2899, 7.2904, 7.2901, 7.2906, 7.2903, 7.2908, 7.2913, 7.291, 7.2908, 7.2905, 7.2905, 7.2911, 7.2916, 7.2914, 7.2911, 7.2908, 7.2906, 7.2903, 7.2902, 7.2893, 7.2891, 7.2888, 7.2889, 7.2886, 7.2883, 7.2883, 7.2881, 7.2879, 7.2877, 7.2882, 7.288, 7.2878, 7.2878, 7.2895, 7.2893, 7.289, 7.2887, 7.2885, 7.2882, 7.288, 7.2877, 7.2894, 7.2884, 7.2889, 7.2893, 7.2899, 7.2925, 7.2938, 7.2951, 7.2949, 7.2954, 7.2962, 7.296, 7.2952, 7.2958, 7.2955, 7.2964, 7.2977, 7.2975, 7.2972, 7.297, 7.2978, 7.2976, 7.2974, 7.2972, 7.297, 7.2977, 7.2976, 7.299, 7.2991, 7.299, 7.2989, 7.2986, 7.3, 7.3006, 7.3004, 7.3003, 7.3001, 7.2998, 7.2996, 7.2995, 7.2992, 7.2991, 7.2989, 7.2989, 7.2995, 7.2994, 7.2993, 7.2991, 7.299, 7.2987, 7.2985, 7.2983, 7.298, 7.2986, 7.2992, 7.2998, 7.2998, 7.3, 7.2999, 7.2997, 7.3003, 7.3003, 7.3003, 7.3001, 7.3007, 7.3012, 7.301, 7.3016, 7.3013, 7.3019], '192.168.122.118': [13.4807, 9.6689, 10.0505, 10.2537, 9.5238, 8.8835, 8.4629, 8.7424, 8.372, 8.1164, 8.4154, 8.1847, 7.9775, 8.174, 8.3503, 8.1903, 7.7367, 7.9358, 8.1009, 8.0165, 7.9229, 7.8178, 7.7231, 7.6248, 7.7826, 7.6858, 7.599, 7.7459, 7.6622, 7.5827, 7.5358, 7.4945, 7.3123, 7.2801, 7.3733, 7.3258, 7.2783, 7.2283, 7.2063, 7.1697, 7.1263, 7.0827, 7.0493, 7.0891, 7.1634, 7.1353, 7.095, 7.0746, 7.0373, 6.9072, 6.9296, 6.9174, 6.8993, 6.877, 6.9417, 6.9356, 6.8248, 6.803, 6.7799, 6.7597, 6.7498, 6.8223, 6.8934, 6.8707, 6.859, 6.8445, 6.9025, 6.9696, 6.955, 6.9622, 7.0179, 7.0271, 7.0779, 7.0597, 6.9869, 6.9701, 6.9501, 6.999, 6.9777, 6.9658, 6.9479, 6.9302, 6.9742, 6.954, 6.9406, 6.9827, 6.9652, 7.0087, 7.0766, 7.058, 7.0993, 7.1415, 7.1354, 7.1246, 7.1047, 7.0876, 7.022, 7.1789, 7.1605, 7.0984, 7.0803, 7.1154, 7.1007, 7.0875, 7.0763, 7.0671, 7.0597, 7.0478, 7.0318, 7.0165, 7.0511, 7.0395, 7.0349, 7.0265, 6.9695, 6.9148, 6.9094, 7.0204, 7.0061, 6.9981, 7.0306, 7.0786, 7.065, 7.1154, 7.1039, 7.0909, 7.0791, 7.0901, 7.0898, 7.0779, 7.0637, 7.0927, 7.0807, 7.1131, 7.103, 7.141, 7.1299, 7.1178, 7.108, 7.1067, 7.0943, 7.2036, 7.2001, 7.187, 7.1752, 7.2035, 7.229, 7.185, 7.1796, 7.1731, 7.1662, 7.1546, 7.1818, 7.1742, 7.1647, 7.1546, 7.1479, 7.1721, 7.198, 7.1861, 7.2087, 7.1977, 7.1869, 7.181, 7.1848, 7.1743, 7.1357, 7.1262, 7.1185, 7.1086, 7.0981, 7.0897, 7.1102, 7.0994, 7.09, 7.1453, 7.1375, 7.1291, 7.1192, 7.1092, 7.1023, 7.0945, 7.0855, 7.1059, 7.1136, 7.1057, 7.0966, 7.0871, 7.1151, 7.0867, 7.0826, 7.0739, 7.068, 7.0879, 7.0793, 7.0986, 7.1175, 7.1406, 7.1323, 7.1235, 7.1149, 7.1069, 7.0992, 7.0937, 7.0904, 7.0846, 7.0776, 7.0728, 7.0678, 7.0961, 7.0879, 7.1053, 7.0971, 7.0914, 7.1089, 7.1009, 7.0954, 7.1868, 7.1804, 7.1755, 7.1903, 7.1827, 7.1743, 7.1926, 7.1846, 7.202, 7.2173, 7.2163, 7.2078, 7.2018, 7.1934, 7.1877, 7.1799, 7.1727, 7.2387, 7.2536, 7.2455, 7.239, 7.2309, 7.2232, 7.2317, 7.2237, 7.2161, 7.2083, 7.2042, 7.1781, 7.1727, 7.1651, 7.1629, 7.1579, 7.192, 7.1853, 7.2001, 7.2146, 7.2071, 7.2, 7.193, 7.1862, 7.2007, 7.1948, 7.2092, 7.2015, 7.1956, 7.193, 7.1857, 7.1997, 7.2137, 7.2072, 7.2005, 7.1937, 7.1907, 7.1856, 7.1803, 7.1746, 7.2143, 7.2292, 7.2252, 7.2204, 7.2154, 7.2093, 7.2029, 7.206, 7.2175, 7.23, 7.2239, 7.2367, 7.2312, 7.2446, 7.243, 7.2384, 7.234, 7.2282, 7.2225, 7.2164, 7.2124, 7.206, 7.2001, 7.2126, 7.2082, 7.203, 7.1984, 7.1941, 7.1892, 7.2027, 7.1995, 7.2143, 7.211, 7.2051, 7.2009, 7.198, 7.1972, 7.198, 7.1928, 7.1881, 7.1822, 7.1765, 7.1738, 7.185, 7.1798, 7.1922, 7.1864, 7.1675, 7.1828, 7.1778, 7.1906, 7.1877, 7.1821, 7.1783, 7.1749, 7.171, 7.2135, 7.218, 7.2479, 7.2429, 7.2378, 7.2356, 7.2306, 7.2248, 7.2195, 7.2189, 7.2157, 7.2105, 7.2052, 7.2001, 7.1956, 7.1911, 7.1859, 7.1822, 7.1941, 7.1892, 7.1855, 7.196, 7.1923, 7.1872, 7.182, 7.1885, 7.1836, 7.1784, 7.1738, 7.1685, 7.1652, 7.1609, 7.1558, 7.1507, 7.146, 7.1443, 7.1398, 7.1352, 7.1174, 7.1131, 7.1225, 7.1187, 7.1139, 7.1097, 7.1052, 7.1013, 7.1118, 7.1072, 7.1117, 7.108, 7.1045, 7.1007, 7.1099, 7.1191, 7.1282, 7.1375, 7.133, 7.162, 7.1724, 7.1675, 7.1637, 7.1595, 7.1686, 7.1652, 7.163, 7.1713, 7.1882, 7.1836, 7.1807, 7.1778, 7.1864, 7.1827, 7.1905, 7.1859, 7.1812, 7.1782, 7.1735, 7.1702, 7.1686, 7.1644, 7.1602, 7.1682, 7.1719, 7.1808, 7.1785, 7.175, 7.1711, 7.1672, 7.164, 7.1807, 7.1765, 7.1726, 7.1688, 7.1715, 7.1673, 7.1677, 7.1653, 7.1751, 7.1837, 7.18, 7.1766, 7.1726, 7.1693, 7.1651, 7.1612, 7.1577, 7.1654, 7.1614, 7.1697, 7.1653, 7.1624, 7.1582, 7.1438, 7.1445, 7.1407, 7.1492, 7.137, 7.133, 7.13, 7.1265, 7.1362, 7.1365, 7.1455, 7.1426, 7.1399, 7.136, 7.1339, 7.1425, 7.1391, 7.1356, 7.1326, 7.1288, 7.1369, 7.1469, 7.1435, 7.1398, 7.1361, 7.1339, 7.1304, 7.1265, 7.1235, 7.1212, 7.1176, 7.1251, 7.1232, 7.131, 7.1277, 7.1241, 7.1211, 7.1188, 7.1267, 7.1263, 7.1233, 7.1306, 7.1276, 7.1247, 7.1318, 7.1185, 7.1158, 7.1125, 7.1089, 7.0956, 7.0833, 7.0916, 7.0997, 7.0968, 7.095, 7.0914, 7.0989, 7.1074, 7.1045, 7.1017, 7.099, 7.0975, 7.1051, 7.1014, 7.0986, 7.0998, 7.0965, 7.0928, 7.0901, 7.0874, 7.0848, 7.0823, 7.0803, 7.0768, 7.0735, 7.0809, 7.0794, 7.0762, 7.0839, 7.0716, 7.0697, 7.0775, 7.0847, 7.0927, 7.0998, 7.0974, 7.0951, 7.0928, 7.1008, 7.0985, 7.0965, 7.094, 7.1021, 7.0991, 7.096, 7.0981, 7.0956, 7.1036, 7.1117, 7.1181, 7.1155, 7.1136, 7.1107, 7.1079, 7.1055, 7.1028, 7.1017, 7.0903, 7.0783, 7.0861, 7.0831, 7.0895, 7.0865, 7.0834, 7.0803, 7.0771, 7.074, 7.072, 7.0688, 7.0661, 7.0741, 7.0811, 7.0795, 7.0764, 7.0831, 7.0825, 7.0803, 7.0774, 7.0788, 7.0775, 7.0842, 7.0817, 7.0874, 7.1124, 7.1091, 7.1064, 7.1033, 7.1004, 7.098, 7.1039, 7.1019, 7.0996, 7.0965, 7.0943, 7.0916, 7.0807, 7.078, 7.0751, 7.0725, 7.0696, 7.0673, 7.0734, 7.071, 7.0688, 7.0661, 7.0637, 7.0694, 7.0667, 7.0638, 7.0636, 7.0617, 7.0619, 7.0685, 7.0663, 7.0648, 7.0717, 7.069, 7.0721, 7.0707, 7.0679, 7.0654, 7.0632, 7.0615, 7.068, 7.0651, 7.0637, 7.063, 7.06, 7.0572, 7.0749, 7.0805, 7.0865, 7.0925, 7.0916, 7.0888, 7.0908, 7.0882, 7.0858, 7.0833, 7.0826, 7.0811, 7.0793, 7.0766, 7.0683, 7.066, 7.0637, 7.0533, 7.043, 7.0402, 7.0377, 7.0353, 7.0413, 7.0386, 7.036, 7.0334, 7.0316, 7.029, 7.0267, 7.0246, 7.0221, 7.0202, 7.0179, 7.0238, 7.0294, 7.0268, 7.0243, 7.0222, 7.0205, 7.018, 7.0236, 7.0294, 7.0359, 7.0335, 7.0401, 7.0395, 7.037, 7.0274, 7.0267, 7.0324, 7.0378, 7.0766, 7.0744, 7.0782, 7.0835, 7.0898, 7.0875, 7.0849, 7.0824, 7.0797, 7.0776, 7.076, 7.0811, 7.0787, 7.0772, 7.0748, 7.0808, 7.0786, 7.0761, 7.0673, 7.0653, 7.0711, 7.0692, 7.0675, 7.0661, 7.0643, 7.0623, 7.0606, 7.0588, 7.0569, 7.0481, 7.0461, 7.0511, 7.0689, 7.0674, 7.0584, 7.057, 7.0545, 7.0727, 7.0781, 7.069, 7.0664, 7.0717, 7.0712, 7.0696, 7.0677, 7.0653, 7.0564, 7.0541, 7.0518, 7.0493, 7.0482, 7.0463, 7.0514, 7.0492, 7.0469, 7.0525, 7.0503, 7.048, 7.0457, 7.0446, 7.0421, 7.048, 7.046, 7.0456, 7.0518, 7.0507, 7.0496, 7.0473, 7.0521, 7.0572, 7.062, 7.0672, 7.0647, 7.0624, 7.063400000000001, 7.064400000000001, 7.0622, 7.0674, 7.0726, 7.0716, 7.0699, 7.0685, 7.0668, 7.0667, 7.072, 7.0703, 7.0751, 7.0798, 7.0844, 7.0891, 7.0883, 7.0863, 7.0911, 7.0899, 7.0814, 7.0863, 7.085, 7.0902, 7.0946, 7.0995, 7.0984, 7.0961, 7.0941, 7.092, 7.091, 7.101, 7.1006, 7.0987, 7.0989, 7.0972, 7.0951, 7.093, 7.0909, 7.0887, 7.0865, 7.091, 7.0889, 7.0866, 7.0843, 7.0893, 7.0877, 7.0887, 7.0873, 7.1242, 7.1287, 7.1266, 7.1244, 7.1292, 7.1271, 7.1257, 7.1306, 7.1286, 7.1398, 7.1375, 7.1419, 7.14, 7.1442, 7.1495, 7.1483, 7.1464, 7.1725, 7.1704, 7.169, 7.1669, 7.1787, 7.1781, 7.1827, 7.1805, 7.1787, 7.2447, 7.2428, 7.2492, 7.2469, 7.2451, 7.2429, 7.247, 7.2448, 7.2426, 7.241, 7.2454, 7.2433, 7.2411, 7.2453, 7.2491, 7.2498, 7.2481, 7.2416, 7.2457, 7.2498, 7.2541, 7.2588, 7.257, 7.2556, 7.2533, 7.2511, 7.2492, 7.2478, 7.2458, 7.2436, 7.2365, 7.2342, 7.2322, 7.2301, 7.2342, 7.2272, 7.2267, 7.2251, 7.2228, 7.2247, 7.2294, 7.2342, 7.2384, 7.2364, 7.2411, 7.239, 7.2432, 7.2413, 7.2393, 7.238, 7.2357, 7.2399, 7.2439, 7.2416, 7.2459, 7.2499, 7.2486, 7.2468, 7.2462, 7.2506, 7.2495, 7.2481, 7.2607, 7.265, 7.2627, 7.2662, 7.2648, 7.2751, 7.279, 7.2768, 7.2745, 7.2732, 7.2715, 7.2693, 7.2689, 7.2849, 7.2885, 7.287, 7.2906, 7.2887, 7.2867, 7.2866, 7.2845, 7.2827, 7.2866, 7.2849, 7.2833, 7.2814, 7.2791, 7.2769, 7.2754, 7.2823, 7.2858, 7.286, 7.2922, 7.291, 7.289, 7.288, 7.2859, 7.2896, 7.2935, 7.2913, 7.2893, 7.295, 7.2932, 7.2914, 7.2839, 7.2821, 7.2805, 7.2784, 7.2764, 7.2747, 7.2727, 7.2706, 7.274, 7.2885, 7.2866, 7.2851, 7.2839, 7.2877, 7.2862, 7.2843, 7.2823, 7.2861, 7.2895, 7.2932, 7.2978, 7.2958, 7.2994, 7.3028, 7.301, 7.3054, 7.3045, 7.3045, 7.3083, 7.3064, 7.3047, 7.2977, 7.3012, 7.2992, 7.2971, 7.2952, 7.2931, 7.3024, 7.3005, 7.299, 7.2983, 7.302, 7.3, 7.2979, 7.3015, 7.3003, 7.2986, 7.2964, 7.2946, 7.2981, 7.2977, 7.2962, 7.2946, 7.2933, 7.2923, 7.2908, 7.2891, 7.2942, 7.2927, 7.3044, 7.308, 7.307, 7.3107, 7.3087, 7.3124, 7.3112, 7.3095, 7.308, 7.3065, 7.3046, 7.3069, 7.3104, 7.3135, 7.3115, 7.3151, 7.3135, 7.3116, 7.3152, 7.3137, 7.312, 7.312, 7.316, 7.3141, 7.3084, 7.3065, 7.3006, 7.2989, 7.2972, 7.2954, 7.2992, 7.2975, 7.2956, 7.2938, 7.2921, 7.2902, 7.2883, 7.2872, 7.2859, 7.2841, 7.2843, 7.2824, 7.282, 7.2804, 7.2792, 7.2775, 7.2811, 7.2792, 7.2782, 7.2824, 7.281, 7.2796, 7.2826, 7.2862, 7.2893, 7.2877, 7.301, 7.304, 7.3071, 7.3052, 7.3039, 7.302, 7.3052, 7.3034, 7.3066, 7.3096, 7.3083, 7.307, 7.3101, 7.3107, 7.3093, 7.3129, 7.3115, 7.3185, 7.3165, 7.3146, 7.3176, 7.3162, 7.3143, 7.3176, 7.3208, 7.3189, 7.3175, 7.3164, 7.3146, 7.313, 7.3117, 7.3099, 7.3084, 7.3067, 7.31, 7.3086, 7.3124, 7.3062, 7.3099, 7.3084, 7.3117, 7.31, 7.3092, 7.318, 7.3169, 7.3154, 7.3139, 7.3122, 7.311, 7.3095, 7.3128, 7.3116, 7.3148, 7.3138, 7.3129, 7.3158, 7.3221, 7.3439, 7.342, 7.3406, 7.3388, 7.3374, 7.3356, 7.3344, 7.3326, 7.3355, 7.3388, 7.3416, 7.3397, 7.3427, 7.3415, 7.3356, 7.3341, 7.3328, 7.3269, 7.3256, 7.3241, 7.3276, 7.3339, 7.3326, 7.3307, 7.3291, 7.3274, 7.3256, 7.3238, 7.3224, 7.321, 7.3196, 7.3181, 7.3217, 7.3246, 7.3234, 7.3222, 7.3275, 7.3269, 7.3257, 7.3287, 7.3269, 7.3303, 7.3285, 7.3279, 7.3262, 7.3245, 7.3228, 7.3211, 7.3194, 7.3177, 7.316, 7.3161, 7.3143, 7.3175, 7.3157, 7.3186, 7.3172, 7.3156, 7.3187, 7.3177, 7.316, 7.3172, 7.3203, 7.3186, 7.3168, 7.3199, 7.3229, 7.3212, 7.3242, 7.3228, 7.3303, 7.3291, 7.3276, 7.3303, 7.3338, 7.3368, 7.3394, 7.3555, 7.3586, 7.3569, 7.356, 7.3675, 7.3617, 7.3601, 7.3631, 7.3617, 7.3606, 7.3592, 7.362, 7.3606, 7.3593, 7.362, 7.3603, 7.3588, 7.3614, 7.3648, 7.3631, 7.3658, 7.369, 7.3673, 7.3664, 7.3647, 7.3629, 7.3616, 7.3603, 7.3589, 7.3621, 7.3604, 7.3589, 7.3581, 7.3564, 7.3508, 7.3494, 7.3525, 7.356, 7.3551, 7.355, 7.3538, 7.3524, 7.3508, 7.3494, 7.3479, 7.3508, 7.3492, 7.3534, 7.3518, 7.3506, 7.3495, 7.3485, 7.3514, 7.3539, 7.3525, 7.3555, 7.3539, 7.3574, 7.3602, 7.3587, 7.3577, 7.3561, 7.3589, 7.3574, 7.356, 7.3543, 7.3527, 7.3519, 7.3547, 7.3538, 7.3523, 7.3506, 7.3494, 7.3529, 7.3515, 7.35, 7.3484, 7.3472, 7.3457, 7.3441, 7.3426, 7.3455, 7.3441, 7.3489, 7.3475, 7.3461, 7.3469, 7.3499, 7.3483, 7.351, 7.354, 7.3526, 7.3512, 7.3502, 7.3527, 7.3473, 7.3467, 7.3452, 7.3439, 7.3463, 7.3491, 7.3477, 7.3462, 7.3489, 7.3474, 7.3461, 7.3445, 7.3429, 7.3414, 7.3401, 7.3384, 7.3368, 7.3392, 7.338, 7.3408, 7.3394, 7.3392, 7.3377, 7.3369, 7.3353, 7.3344, 7.3333, 7.3322, 7.3308, 7.3293, 7.3358, 7.3343, 7.3369, 7.3354, 7.3346, 7.333, 7.336, 7.3346, 7.3338, 7.3331, 7.3356, 7.3344, 7.3331, 7.332, 7.3304, 7.3333, 7.3324, 7.335, 7.3338, 7.3328, 7.3313, 7.3307, 7.3294, 7.3251, 7.3245, 7.323, 7.3332, 7.3402, 7.3392, 7.3386, 7.3375, 7.3364, 7.3352, 7.3339, 7.3325, 7.3313, 7.33, 7.3287, 7.3274, 7.33, 7.3286, 7.3272, 7.3295, 7.332, 7.327, 7.3258, 7.3286, 7.3274, 7.3224, 7.3175, 7.3164, 7.317, 7.3317, 7.3277, 7.3275, 7.3331, 7.3323, 7.3354, 7.3343, 7.3341, 7.3326, 7.3312, 7.3307, 7.3297, 7.3414, 7.3364, 7.3389, 7.3375, 7.3366, 7.3406, 7.34, 7.3424, 7.341, 7.3407, 7.3393, 7.3379, 7.3416, 7.3404, 7.3442, 7.3428, 7.3417, 7.344, 7.3427, 7.3417, 7.3441, 7.3427, 7.3425, 7.3417, 7.3403, 7.3432, 7.3428, 7.3469, 7.3496, 7.3482, 7.3468, 7.3537, 7.353, 7.3519, 7.3507, 7.3495, 7.3523, 7.3549, 7.3538, 7.3524, 7.3516, 7.3505, 7.3516, 7.3503, 7.3528, 7.3515, 7.3503, 7.3488, 7.3513, 7.35, 7.3486, 7.3472, 7.3465, 7.3452, 7.3477, 7.347, 7.346, 7.3449, 7.3462, 7.3497, 7.3522, 7.3547, 7.3571, 7.3595, 7.3585, 7.361, 7.3603, 7.359, 7.3615, 7.3601, 7.3624, 7.361, 7.362, 7.3643, 7.3629, 7.3655, 7.3645, 7.3636, 7.366, 7.3678, 7.3666, 7.3652, 7.3677, 7.3667, 7.3654, 7.3639, 7.3628, 7.3617, 7.3606, 7.3596, 7.362, 7.3608, 7.3594, 7.3654, 7.3645, 7.3632, 7.3625, 7.3614, 7.3638, 7.3627, 7.3614, 7.3638, 7.3624, 7.361, 7.3596, 7.3557, 7.3543, 7.3531, 7.3554, 7.3543, 7.3532, 7.3522, 7.3508, 7.3494, 7.3487, 7.3474, 7.3501, 7.3524, 7.3511, 7.3498, 7.3521, 7.3507, 7.3496, 7.3483, 7.3472, 7.3468, 7.3457, 7.3444, 7.3434, 7.3421, 7.348, 7.3467, 7.349, 7.3478, 7.3465, 7.3453, 7.3442, 7.3429, 7.3417, 7.3404, 7.3392, 7.3379, 7.3366, 7.3354, 7.3377, 7.3367, 7.3357, 7.3313, 7.3303, 7.3292, 7.3285, 7.3274, 7.3263, 7.3255, 7.3242, 7.3269, 7.3255, 7.3243, 7.323, 7.3253, 7.3241, 7.3231, 7.3218, 7.3207, 7.3197, 7.3188, 7.3175, 7.3162, 7.3176, 7.3166, 7.3157, 7.3115, 7.3105, 7.3094, 7.3082, 7.3053, 7.304, 7.3062, 7.305, 7.3076, 7.3099, 7.3088, 7.3141, 7.3164, 7.3152, 7.3142, 7.3134, 7.3122, 7.3122, 7.3144, 7.3201, 7.3364, 7.3352, 7.3414, 7.3441, 7.3401, 7.3394, 7.3387, 7.3411, 7.3435, 7.3429, 7.3387, 7.3377, 7.3366, 7.3355, 7.3312, 7.3305, 7.3293, 7.3282, 7.3302, 7.3292, 7.3282, 7.3273, 7.3264, 7.3255, 7.3245, 7.3238, 7.3229, 7.3273, 7.3269, 7.329, 7.3277, 7.3265, 7.3253, 7.3274, 7.3298, 7.3286, 7.3307, 7.3296, 7.3286, 7.3274, 7.3262, 7.3343, 7.3332, 7.332, 7.3307, 7.3329, 7.3351, 7.3342, 7.3329, 7.3316, 7.3337, 7.3359, 7.3358, 7.3349, 7.3337, 7.3359, 7.3346, 7.3305, 7.3327, 7.3315, 7.3306, 7.3331, 7.3319, 7.3309, 7.333, 7.3332, 7.332, 7.3342, 7.3331, 7.3319, 7.334, 7.3351, 7.3344, 7.3331, 7.3321, 7.3315, 7.3307, 7.3297, 7.332, 7.3314, 7.3304, 7.3297, 7.3286, 7.3278, 7.3437, 7.3433, 7.3432, 7.3456, 7.3513, 7.3504, 7.3571, 7.3564, 7.3554, 7.358, 7.3539, 7.3559, 7.3581, 7.3578, 7.3609, 7.3598, 7.3618, 7.3606, 7.3594, 7.3582, 7.3572, 7.3559, 7.3581, 7.3572, 7.3594, 7.3616, 7.3607, 7.3567, 7.3555, 7.3544, 7.358, 7.3572, 7.3562, 7.3553, 7.3543, 7.3561, 7.3552, 7.3542, 7.3533, 7.3523, 7.3515, 7.3503, 7.3494, 7.3485, 7.3472, 7.3459, 7.3478, 7.3496, 7.349, 7.3509, 7.3531, 7.3558, 7.3546, 7.3533, 7.3521, 7.3511, 7.3502, 7.3494, 7.3488, 7.3476, 7.3466, 7.3457, 7.3446, 7.3434, 7.3422, 7.3411, 7.3401, 7.3393, 7.3382, 7.3372, 7.336, 7.3348, 7.334, 7.333, 7.329, 7.3279, 7.3267, 7.3256, 7.3245, 7.3268, 7.3261, 7.325, 7.3239, 7.3228, 7.3216, 7.3208, 7.3175, 7.3169, 7.3158, 7.3178, 7.3168, 7.3157, 7.3148, 7.3141, 7.313, 7.312, 7.3109, 7.3097, 7.3116, 7.3107, 7.31, 7.3119, 7.312, 7.3111, 7.3103, 7.3123, 7.3143, 7.3132, 7.3121, 7.314, 7.3129, 7.312, 7.3111, 7.3131, 7.3126, 7.3115, 7.3106, 7.3104, 7.3093, 7.3083, 7.3073, 7.3063, 7.3052, 7.3115, 7.3124, 7.3155, 7.3118, 7.3114, 7.3127, 7.3148, 7.3168, 7.3159, 7.3147, 7.3137, 7.3155, 7.315, 7.3171, 7.3161, 7.315, 7.3143, 7.3134, 7.3175, 7.3169, 7.3191, 7.3182, 7.317, 7.316, 7.3179, 7.3169, 7.3158, 7.315, 7.314, 7.3133, 7.3096, 7.3116, 7.3105, 7.3102, 7.3092, 7.3087, 7.3077, 7.3067, 7.3058, 7.3051, 7.3043, 7.3034, 7.3025, 7.3014, 7.3006, 7.2997, 7.3018, 7.3008, 7.3001, 7.3021, 7.3011, 7.3004, 7.2996, 7.2986, 7.2985, 7.2977, 7.2966, 7.2955, 7.2945, 7.2941, 7.293, 7.2925, 7.2914, 7.2934, 7.2986, 7.2974, 7.2992, 7.2956, 7.2949, 7.297, 7.296, 7.298, 7.297, 7.296, 7.2954, 7.2973, 7.2963, 7.2995, 7.2987, 7.3006, 7.2996, 7.2986, 7.2976, 7.2965, 7.2955, 7.2944, 7.2936, 7.2931, 7.2921, 7.2915, 7.2909, 7.2927, 7.2917, 7.2909, 7.2873, 7.2863, 7.2855, 7.2875, 7.2865, 7.2856, 7.2846, 7.2837, 7.2855, 7.2845, 7.2863, 7.288, 7.287, 7.289, 7.2893, 7.2913, 7.2904, 7.2894, 7.2885, 7.2905, 7.2895, 7.286, 7.285, 7.2839, 7.2857, 7.2847, 7.2836, 7.2855, 7.2846, 7.2836, 7.283, 7.2849, 7.2844, 7.2834, 7.2823, 7.2813, 7.2805, 7.2856, 7.2904, 7.2894, 7.2973, 7.2937, 7.2958, 7.2951, 7.2942, 7.2934, 7.2926, 7.2945, 7.2962, 7.2954, 7.2946, 7.2917, 7.2916, 7.2996, 7.2986, 7.2983, 7.2981, 7.2971, 7.2965, 7.2957, 7.2947, 7.2999, 7.2991, 7.2983, 7.2975, 7.2993, 7.3011, 7.3029, 7.3019, 7.3009, 7.3005, 7.2995, 7.2989, 7.3007, 7.2999, 7.2991, 7.2981, 7.2973, 7.2963, 7.296, 7.3021, 7.308, 7.307, 7.3098, 7.3115, 7.3132, 7.3149, 7.314, 7.313, 7.3148, 7.3165, 7.3157, 7.3147, 7.3137, 7.3155, 7.3147, 7.314, 7.3156, 7.3147, 7.314, 7.3161, 7.3151, 7.3146, 7.3136, 7.313, 7.3125, 7.3118, 7.3133, 7.3153, 7.3144, 7.3163, 7.3154, 7.3173, 7.3181, 7.3173, 7.319, 7.3186, 7.3178, 7.3172, 7.3163, 7.3154, 7.3144, 7.3134, 7.3125, 7.3115, 7.3115, 7.3106, 7.3097, 7.3116, 7.3133, 7.3125, 7.3115, 7.3116, 7.3108, 7.3101, 7.3117, 7.3107, 7.3097, 7.3113, 7.3105, 7.3095, 7.3087, 7.3077, 7.3095, 7.3142, 7.3132, 7.3099, 7.3095, 7.3088, 7.3078, 7.3098, 7.3088, 7.3078, 7.3068, 7.3085, 7.3075, 7.307, 7.3043, 7.3038, 7.3028, 7.3019, 7.3014, 7.3005, 7.3023, 7.3013, 7.3006, 7.2998, 7.2993, 7.2986, 7.296, 7.2952, 7.2952, 7.2942, 7.2932, 7.295, 7.2946, 7.2913, 7.2903, 7.2895, 7.2893, 7.2937, 7.293, 7.2921, 7.2911, 7.2903, 7.2894, 7.2888, 7.2879, 7.2896, 7.2912, 7.2903, 7.292, 7.2913, 7.2931, 7.2922, 7.2913, 7.2904, 7.2925, 7.2943, 7.2935, 7.2926, 7.2894, 7.2885, 7.2876, 7.2867, 7.2883, 7.2901, 7.2898, 7.2898, 7.2888, 7.2906, 7.2897, 7.2887, 7.2879, 7.2875, 7.2866, 7.2883, 7.2873, 7.2867, 7.2857, 7.2847, 7.2841, 7.2859, 7.2876, 7.2867, 7.286, 7.2878, 7.2868, 7.2865, 7.2873, 7.2864, 7.2856, 7.2873, 7.289, 7.288, 7.2871, 7.2862, 7.2855, 7.2846, 7.2836, 7.2827, 7.2819, 7.281, 7.2805, 7.2796, 7.2813, 7.2804, 7.2821, 7.2838, 7.2855, 7.2846, 7.2838, 7.2879, 7.287, 7.2934, 7.2925, 7.2967, 7.3008, 7.3, 7.3017, 7.3036, 7.3053, 7.3044, 7.3061, 7.3078, 7.307, 7.3088, 7.308, 7.3072, 7.3065, 7.3057, 7.3052, 7.3043, 7.3035, 7.3026, 7.3043, 7.3034, 7.3006, 7.3024, 7.3034, 7.3028, 7.3019, 7.3035, 7.3027, 7.3024, 7.3015, 7.3031, 7.3021, 7.3014, 7.303, 7.3043, 7.3011, 7.3002, 7.2993, 7.2984, 7.3, 7.2993, 7.2985, 7.2954, 7.2946, 7.294, 7.2931, 7.2947, 7.2939, 7.2933, 7.2948, 7.2938, 7.2934, 7.2951, 7.2971, 7.2963, 7.2962, 7.2954, 7.297, 7.2966, 7.2957, 7.2953, 7.2946, 7.2938, 7.2931, 7.2922, 7.2914, 7.2907, 7.29, 7.2891, 7.2883, 7.2874, 7.2866, 7.2862, 7.2854, 7.2845, 7.2838, 7.283, 7.2846, 7.2837, 7.2806, 7.2797, 7.2788, 7.2779, 7.2774, 7.2782, 7.2775, 7.2769, 7.2808, 7.28, 7.2816, 7.2807, 7.2777, 7.2771, 7.2763, 7.2755, 7.2746, 7.274, 7.2738, 7.2735, 7.2727, 7.2743, 7.2724, 7.2739, 7.2734, 7.2726, 7.2718, 7.271, 7.2703, 7.2694, 7.2685, 7.2678, 7.2672, 7.2688, 7.2681, 7.2696, 7.2709, 7.2724, 7.2716, 7.2686, 7.2678, 7.2672, 7.267, 7.2663, 7.2658, 7.2652, 7.2668, 7.2661, 7.2653, 7.2629, 7.2623, 7.2614, 7.261, 7.2601, 7.2598, 7.2596, 7.2591, 7.2607, 7.2602, 7.2596, 7.2592, 7.2608, 7.2601, 7.2593, 7.2587, 7.2584, 7.2576, 7.2571, 7.2566, 7.256, 7.2553, 7.2545, 7.2559, 7.2552, 7.2544, 7.2538, 7.2531, 7.2524, 7.2516, 7.2511, 7.2506, 7.25, 7.2515, 7.2509, 7.2501, 7.2494, 7.2489, 7.2506, 7.252, 7.2513, 7.2528, 7.2543, 7.2536, 7.2554, 7.2547, 7.2542, 7.2536, 7.2507, 7.2501, 7.2519, 7.2535, 7.2532, 7.2524, 7.2539, 7.2556, 7.2572, 7.2564, 7.2581, 7.2572, 7.2568, 7.256, 7.2552, 7.2546, 7.2545, 7.256, 7.2577, 7.2581, 7.2575, 7.2569, 7.2562, 7.2576, 7.2567, 7.2565, 7.2583, 7.2607, 7.2601, 7.2577, 7.257, 7.2586, 7.2604, 7.2618, 7.2636, 7.263, 7.2623, 7.264, 7.2632, 7.2652, 7.2645, 7.2661, 7.2657, 7.2649, 7.2644, 7.2637, 7.2633, 7.2626, 7.2619, 7.2651, 7.2666, 7.2658, 7.265, 7.2642, 7.2634, 7.2649, 7.2641, 7.2656, 7.2651, 7.2643, 7.2658, 7.265, 7.2666, 7.2658, 7.265, 7.2646, 7.2661, 7.2654, 7.2669, 7.2663, 7.2659, 7.2674, 7.2668, 7.2661, 7.2657, 7.2671, 7.2687, 7.2707, 7.2699, 7.2692, 7.2684, 7.2677, 7.2695, 7.2711, 7.2704, 7.2705, 7.2699, 7.2725, 7.2742, 7.2735, 7.2726, 7.272, 7.2712, 7.2706, 7.2722, 7.2716, 7.271, 7.2704, 7.2696, 7.269, 7.2704, 7.272, 7.2715, 7.2711, 7.2705, 7.2697, 7.2694, 7.2686, 7.2681, 7.2675, 7.2667, 7.267, 7.2662, 7.2654, 7.2668, 7.2662, 7.2638, 7.2635, 7.2628, 7.2643, 7.2658, 7.265, 7.2665, 7.266, 7.2675, 7.2669, 7.2661, 7.2654, 7.2648, 7.2642, 7.2636, 7.2666, 7.268, 7.2694, 7.2687, 7.2679, 7.2671, 7.2676, 7.2669, 7.2663, 7.2677, 7.267, 7.2684, 7.2676, 7.2669, 7.2661, 7.2656, 7.265, 7.2661, 7.2653, 7.2645, 7.2637, 7.2629, 7.2623, 7.2615, 7.263, 7.2644, 7.2639, 7.2655, 7.2648, 7.2733, 7.277, 7.2806, 7.2799, 7.2792, 7.2787, 7.2781, 7.2795, 7.2788, 7.2762, 7.2754, 7.2729, 7.2722, 7.2756, 7.2749, 7.2742, 7.2737, 7.2732, 7.2725, 7.2719, 7.2712, 7.2706, 7.27, 7.2736, 7.2729, 7.2748, 7.2742, 7.2735, 7.2729, 7.2791, 7.2783, 7.2797, 7.2818, 7.2813, 7.2834, 7.2829, 7.2826, 7.2842, 7.2835, 7.2827, 7.2841, 7.2836, 7.2855, 7.287, 7.2862, 7.2877, 7.2892, 7.2887, 7.288, 7.2874, 7.2868, 7.2861, 7.2876, 7.2871, 7.2886, 7.2882, 7.2874, 7.2866, 7.288, 7.2872, 7.2866, 7.2878, 7.289, 7.2884, 7.2886, 7.2879, 7.2896, 7.289, 7.2903, 7.2917, 7.2909, 7.2924, 7.2937, 7.2929, 7.2943, 7.2937, 7.293, 7.2923, 7.2937, 7.293, 7.2924, 7.2956, 7.2949, 7.2944, 7.2938, 7.2931, 7.2925, 7.2917, 7.2912, 7.2906, 7.2899, 7.2893, 7.2886, 7.2883, 7.2876, 7.2868, 7.2862, 7.2856, 7.2848, 7.2844, 7.2837, 7.2832, 7.2846, 7.284, 7.2855, 7.2868, 7.2863, 7.2856, 7.287, 7.2865, 7.2858, 7.2873, 7.2867, 7.286, 7.2861, 7.2857, 7.2869, 7.2883, 7.2896, 7.2889, 7.2884, 7.2981, 7.2975, 7.2969, 7.2985, 7.3039, 7.3053, 7.3066, 7.3078, 7.3091, 7.3101, 7.3115, 7.3129, 7.3124, 7.3159, 7.3152, 7.3144, 7.3178, 7.317, 7.3163, 7.3219, 7.3231, 7.3263, 7.3257, 7.3292, 7.3287, 7.3281, 7.3275, 7.3268, 7.326, 7.3252, 7.3265, 7.3259, 7.3256, 7.3268, 7.3281, 7.3273, 7.3268, 7.3291, 7.3286, 7.3279, 7.3257, 7.3252, 7.3266, 7.3263, 7.3256, 7.329, 7.3283, 7.3279, 7.3272, 7.3287, 7.3281, 7.3274, 7.3266, 7.326, 7.3255, 7.3268, 7.3262, 7.3256, 7.325, 7.3244, 7.3238, 7.3232, 7.3232, 7.3224, 7.3236, 7.325, 7.3244, 7.3241, 7.3234, 7.3239, 7.3253, 7.3246, 7.3238, 7.3231, 7.3226, 7.3239, 7.3233, 7.3248, 7.3242, 7.3236, 7.3249, 7.3242, 7.3236, 7.323, 7.3223, 7.3216, 7.3218, 7.3212, 7.3204, 7.3198, 7.3191, 7.3184, 7.3177, 7.3169, 7.3163, 7.3155, 7.3168, 7.3163, 7.3158, 7.3159, 7.3151, 7.3146, 7.314, 7.3115, 7.3132, 7.3125, 7.3118, 7.3115, 7.3112, 7.3104, 7.3097, 7.3095, 7.3111, 7.3103, 7.3096, 7.3109, 7.3103, 7.31, 7.3113, 7.3107, 7.3119, 7.3132, 7.3124, 7.3138, 7.3138, 7.315, 7.3162, 7.3155, 7.3147, 7.3154, 7.3147, 7.3139, 7.3133, 7.3148, 7.3161, 7.3154, 7.315, 7.3143, 7.3155, 7.3148, 7.3141, 7.3134, 7.3127, 7.312, 7.3119, 7.3112, 7.3202, 7.3196, 7.3189, 7.3202, 7.3195, 7.3188, 7.3181, 7.3271, 7.3284, 7.3283, 7.3278, 7.3271, 7.3264, 7.3258, 7.3251, 7.3247, 7.324, 7.3253, 7.3245, 7.324, 7.3235, 7.3246, 7.3239, 7.3232, 7.3232, 7.3248, 7.3242, 7.3236, 7.325, 7.3242, 7.3235, 7.3228, 7.3222, 7.3218, 7.3212, 7.3208, 7.3221, 7.3215, 7.3208, 7.3205, 7.3197, 7.319, 7.3183, 7.3176, 7.3169, 7.3162, 7.3157, 7.3152, 7.3164, 7.3176, 7.3187, 7.3183, 7.3176, 7.3171, 7.3164, 7.3164, 7.3176, 7.3172, 7.3204, 7.32, 7.3214, 7.3209, 7.3202, 7.3196, 7.319, 7.3186, 7.3179, 7.3176, 7.3175, 7.3169, 7.3162, 7.3156, 7.3149, 7.3146, 7.314, 7.3134, 7.311, 7.3106, 7.31, 7.3094, 7.3087, 7.3121, 7.3153, 7.3169, 7.3166, 7.316, 7.3155, 7.3148, 7.3141, 7.3134, 7.3131, 7.3125, 7.3122, 7.3115, 7.3109, 7.3102, 7.3095, 7.3095, 7.3089, 7.3102, 7.3095, 7.309, 7.3106, 7.3109, 7.3104, 7.3097, 7.3128, 7.3141, 7.3136, 7.3129, 7.3122, 7.3117, 7.3111, 7.3107, 7.3104, 7.3101, 7.3094, 7.3088, 7.3082, 7.3077, 7.3072, 7.3068, 7.3064, 7.3082, 7.3076, 7.309, 7.3103, 7.3096, 7.3089, 7.3083, 7.3077, 7.3108, 7.3121, 7.3114, 7.3108, 7.3105, 7.31, 7.3093, 7.3089, 7.3102, 7.3097, 7.3098, 7.3137, 7.3151, 7.3146, 7.3158, 7.3153, 7.315, 7.3167, 7.3159, 7.3152, 7.3145, 7.3156, 7.3151, 7.3144, 7.3138, 7.3149, 7.3142, 7.3157, 7.3153, 7.3164, 7.3158, 7.3169, 7.3183, 7.3176, 7.3175, 7.3189, 7.3183, 7.3179, 7.3176, 7.3171, 7.3166, 7.3159, 7.3152, 7.3145, 7.3156, 7.3149, 7.3144, 7.3144, 7.3137, 7.3148, 7.3143, 7.3159, 7.3172, 7.3165, 7.3158, 7.3158, 7.3151, 7.3145, 7.314, 7.3152, 7.3149, 7.3143, 7.3137, 7.3131, 7.3125, 7.3118, 7.313, 7.3124, 7.3117, 7.3112, 7.3108, 7.3101, 7.3095, 7.3108, 7.3117, 7.311, 7.3122, 7.3117, 7.3113, 7.3106, 7.3118, 7.3113, 7.3107, 7.3107, 7.31, 7.3094, 7.3087, 7.308, 7.3074, 7.3086, 7.3079, 7.3095, 7.3107, 7.3105, 7.3099, 7.3101, 7.3078, 7.3055, 7.3051, 7.3046, 7.3039, 7.305, 7.3045, 7.304, 7.3087, 7.3081, 7.3058, 7.3057, 7.305, 7.3046, 7.3059, 7.3054, 7.3048, 7.3044, 7.3037, 7.3032, 7.3026, 7.3076, 7.3081, 7.3079, 7.3073, 7.3068, 7.3062, 7.3057, 7.3052, 7.3047, 7.3059, 7.3071, 7.3067, 7.3074, 7.3086, 7.308, 7.3074, 7.3067, 7.3079, 7.3073, 7.3067, 7.308, 7.3074, 7.3067, 7.308, 7.3092, 7.3089, 7.3083, 7.3076, 7.307, 7.308, 7.3076, 7.3069, 7.3064, 7.3059, 7.3071, 7.3065, 7.3059, 7.3056, 7.3051, 7.3083, 7.3095, 7.3089, 7.3083, 7.3096, 7.3108, 7.3108, 7.3102, 7.308, 7.3074, 7.3068, 7.3062, 7.306, 7.3054, 7.3065, 7.3061, 7.3055, 7.3049, 7.3044, 7.3042, 7.3054, 7.3048, 7.3042, 7.3037, 7.3031, 7.3044, 7.3039, 7.3033, 7.3027, 7.3022, 7.3, 7.2994, 7.2989, 7.3002, 7.2996, 7.2991, 7.2986, 7.2999, 7.2993, 7.2989, 7.2987, 7.2981, 7.2975, 7.2954, 7.2948, 7.2943, 7.2938, 7.2933, 7.2928, 7.2944, 7.2956, 7.2953, 7.2965, 7.2962, 7.2957, 7.2955, 7.2949, 7.2963, 7.2958, 7.2957, 7.2954, 7.2949, 7.2944, 7.2938, 7.2934, 7.2929, 7.2939, 7.2935, 7.2929, 7.294, 7.2935, 7.2929, 7.2941, 7.2953, 7.2947, 7.2942, 7.2953, 7.2952, 7.293, 7.2941, 7.2953, 7.2932, 7.2926, 7.2921, 7.2934, 7.2928, 7.2939, 7.2933, 7.2927, 7.2921, 7.2915, 7.2909, 7.2921, 7.2932, 7.2926, 7.292, 7.293, 7.2924, 7.2919, 7.2915, 7.291, 7.2923, 7.2919, 7.2913, 7.2911, 7.2921, 7.2917, 7.2912, 7.2907, 7.2901, 7.2897, 7.2892, 7.2873, 7.2886, 7.2903, 7.2932, 7.2927, 7.2921, 7.2916, 7.2912, 7.2918, 7.2913, 7.2906, 7.29, 7.2911, 7.2921, 7.2916, 7.2927, 7.2924, 7.2936, 7.2948, 7.295, 7.2944, 7.2938, 7.3072, 7.3067, 7.3062, 7.3056, 7.3068, 7.3063, 7.3059, 7.3055, 7.3048, 7.3047, 7.3043, 7.3037, 7.3073, 7.3085, 7.308, 7.3074, 7.3069, 7.3065, 7.306, 7.3054, 7.3052, 7.3047, 7.3045, 7.3039, 7.3052, 7.3047, 7.3042, 7.3042, 7.3037, 7.3034, 7.3028, 7.3075, 7.3087, 7.3082, 7.3094, 7.3089, 7.3106, 7.3101, 7.3113, 7.3107, 7.3101, 7.3112, 7.3123, 7.3134, 7.3129, 7.3123, 7.3134, 7.3128, 7.3121, 7.3118, 7.3129, 7.3147, 7.3142, 7.3137, 7.3132, 7.316, 7.3139, 7.315, 7.3144, 7.314, 7.3135, 7.3158, 7.3152, 7.3147, 7.3157, 7.3167, 7.3164, 7.316, 7.3171, 7.3165, 7.3159, 7.3153, 7.3147, 7.3141, 7.3163, 7.3191, 7.3185, 7.318, 7.3191, 7.32, 7.3194, 7.3189, 7.3185, 7.318, 7.3174, 7.3153, 7.3147, 7.3142, 7.3154, 7.3152, 7.3165, 7.316, 7.3155, 7.3149, 7.316, 7.3154, 7.3149, 7.3159, 7.3157, 7.3185, 7.3185, 7.3179, 7.3246, 7.3272, 7.33, 7.3319, 7.3313, 7.3308, 7.3319, 7.3329, 7.3323, 7.3317, 7.3312, 7.3306, 7.3317, 7.3311, 7.3305, 7.3316, 7.3351, 7.3346, 7.3342, 7.3355, 7.3351, 7.3378, 7.3373, 7.3368, 7.3364, 7.3408, 7.3404, 7.3415, 7.3425, 7.3421, 7.342, 7.3416, 7.3412, 7.3407, 7.3402, 7.3415, 7.3428, 7.3442, 7.3436, 7.3432, 7.3426, 7.3407, 7.3417, 7.3429, 7.3425, 7.3437, 7.3432, 7.3427, 7.3438, 7.3433, 7.3428, 7.3422, 7.3416, 7.3427, 7.3437, 7.3432, 7.3426, 7.3406, 7.3419, 7.3414, 7.3408, 7.3404, 7.3398, 7.341, 7.3405, 7.3401, 7.3396, 7.3439, 7.3433, 7.3427, 7.3422, 7.3434, 7.3429, 7.3424, 7.3419, 7.3414, 7.3396, 7.3391, 7.3402, 7.3398, 7.3392, 7.3386, 7.338, 7.3376, 7.3374, 7.3369, 7.3363, 7.3358, 7.3354, 7.3348, 7.3359, 7.3355, 7.3349, 7.3329, 7.3324, 7.3318, 7.3312, 7.3308, 7.3319, 7.3313, 7.331, 7.3306, 7.3301, 7.3301, 7.3312, 7.331, 7.3305, 7.3301, 7.3295, 7.3289, 7.3286, 7.3283, 7.3294, 7.3289, 7.3286, 7.3283, 7.3278, 7.3289, 7.3284, 7.3279, 7.329, 7.3286, 7.3281, 7.3292, 7.3291, 7.3287, 7.3282, 7.3277, 7.3272, 7.3267, 7.3267, 7.3264, 7.326, 7.327, 7.3266, 7.3261, 7.3256, 7.3252, 7.3246, 7.3241, 7.3236, 7.323, 7.3224, 7.3234, 7.3217, 7.3212, 7.3206, 7.32, 7.3195, 7.3191, 7.3188, 7.3184, 7.318, 7.3205, 7.3231, 7.3226, 7.3249, 7.3249, 7.3292, 7.3288, 7.3282, 7.3278, 7.3272, 7.3267, 7.3262, 7.326, 7.3259, 7.3254, 7.3249, 7.3244, 7.3238, 7.3232, 7.3228, 7.3224, 7.3237, 7.3231, 7.3228, 7.3208, 7.3203, 7.3198, 7.3208, 7.3203, 7.3214, 7.3209, 7.3205, 7.32, 7.3211, 7.3206, 7.3215, 7.3225, 7.3221, 7.3232, 7.3242, 7.3236, 7.3246, 7.3227, 7.3207, 7.32, 7.3195, 7.3205, 7.3199, 7.3193, 7.3187, 7.3197, 7.3199, 7.3213, 7.321, 7.3191, 7.3171, 7.3184, 7.318, 7.3176, 7.3172, 7.3166, 7.316, 7.3155, 7.3158, 7.3153, 7.3163, 7.3161, 7.3156, 7.3151, 7.3197, 7.3192, 7.3189, 7.3203, 7.3197, 7.3192, 7.3186, 7.3181, 7.3191, 7.3187, 7.3182, 7.3176, 7.3171, 7.3166, 7.3161, 7.3157, 7.3153, 7.3149, 7.315, 7.3167, 7.3178, 7.3207, 7.3205, 7.32, 7.3194, 7.3204, 7.3199, 7.3194, 7.3188, 7.3171, 7.3183, 7.318, 7.3175, 7.3171, 7.3165, 7.3159, 7.3154, 7.315, 7.3144, 7.314, 7.315, 7.3146, 7.314, 7.3134, 7.3128, 7.3123, 7.3132, 7.3142, 7.3137, 7.3147, 7.3145, 7.3139, 7.3135, 7.3146, 7.3159, 7.3156, 7.3151, 7.3162, 7.3157, 7.3153, 7.3148, 7.3143, 7.3153, 7.3148, 7.3192, 7.3172, 7.3153, 7.3137, 7.3132, 7.3127, 7.3122, 7.3118, 7.3116, 7.3126, 7.3137, 7.3147, 7.313, 7.3127, 7.3122, 7.3133, 7.3131, 7.3127, 7.3138, 7.3133, 7.3143, 7.3141, 7.3136, 7.3145, 7.3155, 7.3153, 7.3157, 7.3152, 7.3147, 7.3129, 7.3124, 7.3123, 7.3107, 7.3101, 7.3097, 7.3092, 7.3086, 7.3083, 7.3109, 7.3105, 7.3145, 7.314, 7.315, 7.3148, 7.3142, 7.3155, 7.3151, 7.3148, 7.3144, 7.3139, 7.315, 7.3145, 7.314, 7.3135, 7.3146, 7.3142, 7.3137, 7.3132, 7.3127, 7.3122, 7.3117, 7.3113, 7.3108, 7.3105, 7.3116, 7.3111, 7.3106, 7.3117, 7.3112, 7.3107, 7.3089, 7.3084, 7.308, 7.3075, 7.307, 7.3067, 7.3078, 7.3074, 7.3068, 7.3063, 7.3073, 7.3069, 7.3065, 7.306, 7.307, 7.3065, 7.3069, 7.3064, 7.3059, 7.3054, 7.3049, 7.3045, 7.304, 7.3053, 7.3048, 7.3043, 7.304, 7.3038, 7.3033, 7.3043, 7.3038, 7.3033, 7.3028, 7.3022, 7.3003, 7.2985, 7.2979, 7.2989, 7.2999, 7.2994, 7.299, 7.2985, 7.2981, 7.2976, 7.2971, 7.2981, 7.2979, 7.2989, 7.2984, 7.2979, 7.2993, 7.2988, 7.2983, 7.2978, 7.2988, 7.2983, 7.2978, 7.2973, 7.2968, 7.2967, 7.2978, 7.2975, 7.3001, 7.2997, 7.3008, 7.3005, 7.3015, 7.301, 7.3007, 7.3002, 7.2984, 7.2979, 7.2991, 7.2985, 7.2979, 7.2974, 7.2998, 7.2997, 7.2993, 7.3018, 7.3028, 7.3038, 7.302, 7.3032, 7.3072, 7.3067, 7.3078, 7.3073, 7.3069, 7.3065, 7.306, 7.3055, 7.3065, 7.306, 7.3055, 7.3051, 7.3046, 7.3056, 7.3066, 7.3063, 7.3073, 7.3082, 7.3083, 7.3078, 7.3074, 7.3071, 7.3066, 7.3076, 7.3071, 7.3156, 7.3181, 7.3176, 7.3158, 7.3154, 7.3149, 7.3144, 7.3139, 7.3135, 7.3131, 7.3126, 7.3121, 7.3132, 7.3142, 7.314, 7.3136, 7.3145, 7.3141, 7.3136, 7.3133, 7.3116, 7.3111, 7.3106, 7.3101, 7.3096, 7.3107, 7.3103, 7.3112, 7.3107, 7.3103, 7.3098, 7.3093, 7.3088, 7.3097, 7.3107, 7.3116, 7.3111, 7.3121, 7.3116, 7.3125, 7.312, 7.3158, 7.3153, 7.3148, 7.313, 7.3112, 7.3121, 7.3118, 7.3114, 7.311, 7.3118, 7.3112, 7.312, 7.3118, 7.3114, 7.3123, 7.3118, 7.3113, 7.3108, 7.3103, 7.3085, 7.3094, 7.3089, 7.3084, 7.308, 7.3089, 7.3084, 7.3079, 7.3088, 7.3089, 7.3106, 7.3103, 7.31, 7.3095, 7.309, 7.3087, 7.3126, 7.3125, 7.3126, 7.3122, 7.3117, 7.3126, 7.3121, 7.3117, 7.3113, 7.3111, 7.3123, 7.3153, 7.3163, 7.3161, 7.3159, 7.3154, 7.315, 7.3148, 7.3145, 7.3142, 7.3152, 7.3148, 7.3157, 7.3168, 7.3164, 7.3159, 7.3155, 7.315, 7.3146, 7.3141, 7.3137, 7.3131, 7.3127, 7.3122, 7.3117, 7.3126, 7.3122, 7.3117, 7.3111, 7.3108, 7.3122, 7.3105, 7.31, 7.311, 7.3105, 7.31, 7.3096, 7.3091, 7.3086, 7.3081, 7.3089, 7.3084, 7.3094, 7.309, 7.3098, 7.3112, 7.312, 7.3115, 7.311, 7.3107, 7.3106, 7.3101, 7.311, 7.3106, 7.3118, 7.3113, 7.3125, 7.3121, 7.3119, 7.3129, 7.3124, 7.312, 7.3116, 7.3112, 7.3109, 7.3118, 7.3127, 7.3128, 7.3123, 7.3119, 7.3114, 7.3109, 7.3105, 7.3114, 7.3109, 7.3092, 7.3101, 7.3111, 7.3108, 7.3103, 7.31, 7.3096, 7.3091, 7.3086, 7.3069, 7.3065, 7.3074, 7.307, 7.3065, 7.306, 7.3099, 7.3094, 7.3098, 7.3107, 7.3102, 7.3097, 7.3092, 7.3087, 7.3082, 7.3077, 7.3073, 7.3068, 7.3065, 7.306, 7.3058, 7.3053, 7.3049, 7.3045, 7.3041, 7.3036, 7.3031, 7.3027, 7.3038, 7.3033, 7.3043, 7.3053, 7.3048, 7.3043, 7.3026, 7.3021, 7.3018, 7.3016, 7.3024, 7.3019, 7.3028, 7.3039, 7.3036, 7.3033, 7.3032, 7.303, 7.3026, 7.3022, 7.3017, 7.3013, 7.2997, 7.2992, 7.2987, 7.2974, 7.2987, 7.2983, 7.3004, 7.2999, 7.2994, 7.2989, 7.3019, 7.3029, 7.3024, 7.3019, 7.3029, 7.3024, 7.3033, 7.3029, 7.3038, 7.3033, 7.3028, 7.3037, 7.3032, 7.3028, 7.3011, 7.302, 7.3015, 7.301, 7.3009, 7.3005, 7.3001, 7.301, 7.3021, 7.3017, 7.3026, 7.3035, 7.3032, 7.303, 7.304, 7.3037, 7.3033, 7.3032, 7.3042, 7.3037, 7.306, 7.3055, 7.3052, 7.3035, 7.3031, 7.3026, 7.3021, 7.3005, 7.299, 7.2987, 7.2982, 7.2977, 7.2974, 7.2969, 7.2978, 7.2974, 7.2984, 7.298, 7.2976, 7.2959, 7.2968, 7.2964, 7.2974, 7.2969, 7.2978, 7.2973, 7.2968, 7.2964, 7.296, 7.2969, 7.2964, 7.296, 7.2972, 7.297, 7.2979, 7.2988, 7.2983, 7.2978, 7.2988, 7.2985, 7.298, 7.2975, 7.2971, 7.2968, 7.2965, 7.2961, 7.2958, 7.2958, 7.2968, 7.2978, 7.2986, 7.2995, 7.3005, 7.3001, 7.2997, 7.3006, 7.3003, 7.2999, 7.2994, 7.2989, 7.2987, 7.2982, 7.2979, 7.2988, 7.2984, 7.2993, 7.299, 7.2985, 7.2982, 7.2978, 7.2973, 7.2968, 7.2978, 7.2987, 7.2982, 7.2991, 7.2986, 7.2982, 7.2991, 7.2999, 7.2996, 7.2979, 7.2988, 7.2983, 7.2967, 7.2962, 7.2957, 7.2953, 7.2963, 7.2958, 7.2953, 7.2963, 7.296, 7.297, 7.2966, 7.2962, 7.2959, 7.297, 7.2967, 7.2964, 7.2972, 7.2967, 7.2962, 7.297, 7.2968, 7.2965, 7.2974, 7.297, 7.2966, 7.2962, 7.2971, 7.2967, 7.2975, 7.2971, 7.2979, 7.2977, 7.2972, 7.2967, 7.2975, 7.2984, 7.2981, 7.298, 7.2977, 7.2973, 7.2968, 7.2963, 7.2958, 7.2955, 7.2951, 7.2949, 7.2947, 7.2943, 7.2938, 7.2946, 7.2954, 7.2962, 7.2971, 7.2967, 7.2964, 7.2959, 7.2946, 7.2957, 7.2967, 7.2967, 7.2962, 7.2958, 7.2958, 7.2953, 7.295, 7.2946, 7.293, 7.2926, 7.2921, 7.2916, 7.2925, 7.2933, 7.2935, 7.2932, 7.2918, 7.2914, 7.2964, 7.2959, 7.2954, 7.295, 7.2946, 7.2954, 7.2965, 7.2949, 7.2957, 7.2952, 7.2947, 7.2955, 7.295, 7.2946, 7.2941, 7.2938, 7.2946, 7.2941, 7.2936, 7.2935, 7.2931, 7.2927, 7.2911, 7.2907, 7.2902, 7.29, 7.2895, 7.289, 7.2885, 7.2881, 7.2877, 7.2886, 7.2895, 7.2892, 7.2901, 7.2897, 7.2892, 7.2889, 7.2898, 7.2893, 7.289, 7.2887, 7.2882, 7.2877, 7.2886, 7.2883, 7.2893, 7.289, 7.2885, 7.2881, 7.2877, 7.2874, 7.287, 7.2867, 7.2865, 7.286, 7.2857, 7.2866, 7.2863, 7.2859, 7.2868, 7.2863, 7.2871, 7.2866, 7.2862, 7.2871, 7.288, 7.2889, 7.2884, 7.2881, 7.2878, 7.2874, 7.2869, 7.2865, 7.286, 7.2857, 7.2852, 7.2864, 7.2859, 7.2855, 7.2852, 7.2848, 7.2843, 7.2838, 7.2846, 7.2844, 7.2852, 7.2849, 7.2844, 7.284, 7.2848, 7.2845, 7.2853, 7.2863, 7.2847, 7.2843, 7.2838, 7.2834, 7.2819, 7.2803, 7.28, 7.2795, 7.2792, 7.2787, 7.2783, 7.2793, 7.2789, 7.2786, 7.2789, 7.2786, 7.2795, 7.2804, 7.2812, 7.282, 7.2815, 7.2811, 7.2809, 7.2804, 7.2816, 7.2813, 7.281, 7.2805, 7.2813, 7.281, 7.2805, 7.2801, 7.281, 7.2806, 7.2814, 7.281, 7.2806, 7.2802, 7.2787, 7.2783, 7.278, 7.2776, 7.2761, 7.2784, 7.278, 7.2776, 7.2772, 7.2805, 7.2801, 7.2785, 7.2781, 7.2788, 7.2796, 7.2793, 7.2826, 7.2821, 7.2817, 7.2814, 7.2799, 7.2807, 7.2816, 7.2813, 7.2809, 7.2818, 7.2804, 7.28, 7.2796, 7.282, 7.2818, 7.2827, 7.2837, 7.2845, 7.2853, 7.2849, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2825, 7.282, 7.2816, 7.2821, 7.283, 7.2826, 7.2824, 7.282, 7.2828, 7.2825, 7.2821, 7.2817, 7.2813, 7.2809, 7.2804, 7.2802, 7.2836, 7.2831, 7.2828, 7.2823, 7.282, 7.2828, 7.2813, 7.2812, 7.2808, 7.2806, 7.2819, 7.2816, 7.2812, 7.2824, 7.282, 7.282, 7.2816, 7.2812, 7.2807, 7.2803, 7.2802, 7.2786, 7.2811, 7.2798, 7.2794, 7.279, 7.2786, 7.2795, 7.2791, 7.2787, 7.2796, 7.2792, 7.2783, 7.2821, 7.2818, 7.2818, 7.2827, 7.2823, 7.2819, 7.2816, 7.2837, 7.2833, 7.283, 7.2868, 7.2877, 7.2874, 7.2882, 7.2879, 7.2875, 7.2871, 7.2867, 7.2864, 7.286, 7.2868, 7.2876, 7.2893, 7.289, 7.2889, 7.2884, 7.2879, 7.2875, 7.287, 7.2865, 7.2872, 7.2869, 7.2868, 7.2876, 7.2871, 7.2867, 7.2864, 7.286, 7.2855, 7.2852, 7.2847, 7.2842, 7.2839, 7.2835, 7.2842, 7.2838, 7.2835, 7.2833, 7.2829, 7.2825, 7.2822, 7.283, 7.2837, 7.2845, 7.2841, 7.2836, 7.2831, 7.2827, 7.2822, 7.2818, 7.2827, 7.2824, 7.2819, 7.2805, 7.28, 7.2797, 7.2792, 7.2789, 7.2786, 7.2783, 7.2791, 7.2787, 7.2783, 7.2792, 7.2789, 7.2784, 7.2769, 7.2778, 7.2774, 7.2783, 7.2792, 7.2789, 7.2786, 7.2783, 7.279, 7.2799, 7.2806, 7.2825, 7.2833, 7.283, 7.2827, 7.2824, 7.2821, 7.2816, 7.2812, 7.2819, 7.2826, 7.2822, 7.2818, 7.2825, 7.2832, 7.2829, 7.2824, 7.2832, 7.2827, 7.2822, 7.2819, 7.2827, 7.2834, 7.2829, 7.2826, 7.2833, 7.283, 7.2827, 7.2823, 7.2819, 7.2815, 7.2811, 7.281, 7.2806, 7.2803, 7.2801, 7.2798, 7.2807, 7.2792, 7.2789, 7.2798, 7.2794, 7.2791, 7.28, 7.2807, 7.2806, 7.2802, 7.2809, 7.2805, 7.2801, 7.2797, 7.2806, 7.2802, 7.2798, 7.2801, 7.2797, 7.2796, 7.2792, 7.2788, 7.2784, 7.278, 7.2778, 7.2775, 7.2771, 7.2768, 7.2766, 7.2762, 7.2769, 7.2777, 7.2775, 7.2782, 7.2778, 7.2799, 7.2798, 7.2805, 7.2798, 7.2807, 7.2803, 7.28, 7.2797, 7.2794, 7.279, 7.2786, 7.2793, 7.2801, 7.2798, 7.2794, 7.279, 7.2787, 7.2795, 7.2791, 7.2787, 7.2783, 7.2779, 7.2775, 7.2783, 7.278, 7.2777, 7.2774, 7.277, 7.2777, 7.2773, 7.2781, 7.2778, 7.2775, 7.276, 7.2757, 7.2753, 7.2749, 7.2745, 7.2741, 7.2738, 7.2734, 7.2733, 7.2718, 7.2704, 7.2713, 7.2709, 7.2717, 7.2713, 7.2709, 7.2705, 7.2702, 7.271, 7.2707, 7.2693, 7.269, 7.2706, 7.2702, 7.27, 7.2697, 7.2693, 7.2689, 7.2689, 7.2688, 7.2684, 7.268, 7.268, 7.2677, 7.2685, 7.2683, 7.268, 7.2687, 7.2684, 7.2698, 7.2685, 7.2693, 7.2704, 7.2701, 7.2687, 7.2696, 7.2706, 7.2714, 7.2712, 7.2709, 7.2706, 7.2702, 7.2699, 7.2707, 7.2715, 7.2711, 7.2708, 7.2704, 7.269, 7.2686, 7.2682, 7.269, 7.2687, 7.2683, 7.2691, 7.2688, 7.2696, 7.2703, 7.27, 7.2707, 7.2703, 7.27, 7.2712, 7.271, 7.2706, 7.2714, 7.271, 7.2708, 7.2716, 7.2713, 7.271, 7.2718, 7.2727, 7.2724, 7.2731, 7.2727, 7.2724, 7.272, 7.2717, 7.2715, 7.2711, 7.2714, 7.2721, 7.2726, 7.2722, 7.2719, 7.272, 7.2728, 7.2724, 7.272, 7.2727, 7.2723, 7.2719, 7.2715, 7.2701, 7.271, 7.2706, 7.2703, 7.2699, 7.2695, 7.2694, 7.2702, 7.2698, 7.2707, 7.2703, 7.271, 7.2706, 7.2706, 7.2705, 7.2702, 7.2699, 7.2695, 7.2692, 7.2701, 7.2697, 7.2695, 7.2708, 7.2704, 7.2701, 7.2708, 7.2704, 7.27, 7.27, 7.2696, 7.2704, 7.2701, 7.2709, 7.2706, 7.2704, 7.2701, 7.2697, 7.2705, 7.2702, 7.2698, 7.2697, 7.2693, 7.269, 7.2687, 7.2695, 7.2691, 7.2688, 7.2685, 7.2681, 7.2678, 7.2674, 7.267, 7.2666, 7.2663, 7.266, 7.2656, 7.2664, 7.2671, 7.2669, 7.2677, 7.2675, 7.2671, 7.2667, 7.2663, 7.2671, 7.2668, 7.2664, 7.266, 7.2657, 7.2653, 7.2649, 7.2645, 7.2641, 7.2637, 7.2637, 7.2623, 7.2619, 7.2639, 7.2648, 7.2656, 7.2668, 7.2665, 7.2673, 7.2669, 7.2665, 7.2663, 7.2661, 7.2668, 7.2665, 7.2661, 7.2668, 7.2675, 7.2671, 7.2672, 7.2669, 7.2665, 7.2661, 7.2657, 7.2664, 7.2661, 7.2647, 7.2654, 7.265, 7.2658, 7.2667, 7.2663, 7.2659, 7.2655, 7.2663, 7.2659, 7.2658, 7.2656, 7.2652, 7.2649, 7.2648, 7.266, 7.2658, 7.2666, 7.2662, 7.2659, 7.2667, 7.2663, 7.2659, 7.2667, 7.2663, 7.2659, 7.2656, 7.2653, 7.2649, 7.2646, 7.2642, 7.2639, 7.2647, 7.2655, 7.2651, 7.2658, 7.2655, 7.2652, 7.2648, 7.2656, 7.2663, 7.2659, 7.2655, 7.2652, 7.2648, 7.2645, 7.2664, 7.265, 7.2636, 7.2632, 7.2628, 7.2693, 7.2697, 7.2705, 7.2702, 7.2701, 7.2687, 7.2685, 7.2698, 7.2709, 7.2733, 7.2729, 7.2726, 7.2723, 7.2731, 7.2737, 7.2744, 7.273, 7.2739, 7.2746, 7.2743, 7.2739, 7.2769, 7.2776, 7.2783, 7.2781, 7.2779, 7.2765, 7.2752, 7.2754, 7.275, 7.2756, 7.2752, 7.2749, 7.2746, 7.2743, 7.274, 7.2737, 7.2734, 7.2731, 7.2728, 7.2725, 7.2721, 7.2717, 7.2724, 7.2732, 7.2729, 7.2726, 7.2734, 7.2742, 7.2739, 7.2759, 7.2756, 7.2764, 7.2762, 7.277, 7.277, 7.2767, 7.2763, 7.276, 7.2767, 7.2786, 7.2782, 7.2778, 7.2774, 7.277, 7.2777, 7.2773, 7.2769, 7.2765, 7.2761, 7.2758, 7.2754, 7.2752, 7.2749, 7.2746, 7.2742, 7.2738, 7.2745, 7.2741, 7.2737, 7.2733, 7.2741, 7.2749, 7.2745, 7.2743, 7.2741, 7.275, 7.2746, 7.2742, 7.2749, 7.2746, 7.2748, 7.2754, 7.275, 7.2746, 7.2743, 7.2739, 7.2746, 7.2742, 7.2749, 7.2745, 7.2742, 7.2738, 7.2736, 7.2734, 7.273, 7.2727, 7.2729, 7.2727, 7.2725, 7.2723, 7.2719, 7.2717, 7.2704, 7.2704, 7.2711, 7.2709, 7.2705, 7.2701, 7.2698, 7.2705, 7.2701, 7.2709, 7.2706, 7.2702, 7.2698, 7.2706, 7.2703, 7.271, 7.2706, 7.2702, 7.2709, 7.2705, 7.2702, 7.2709, 7.2705, 7.2702, 7.2698, 7.2694, 7.2691, 7.2688, 7.2697, 7.2705, 7.2701, 7.2697, 7.2694, 7.2702, 7.271, 7.2706, 7.2703, 7.271, 7.2717, 7.2714, 7.2723, 7.272, 7.2717, 7.2714, 7.27, 7.2697, 7.2693, 7.269, 7.2687, 7.2694, 7.2701, 7.2688, 7.2685, 7.2682, 7.2689, 7.2695, 7.2703, 7.2699, 7.2696, 7.2694, 7.2683, 7.269, 7.2686, 7.2682, 7.2678, 7.2675, 7.2716, 7.2712, 7.2729, 7.2725, 7.2732, 7.2729, 7.2737, 7.2744, 7.274, 7.2736, 7.2732, 7.2739, 7.2736, 7.2746, 7.2742, 7.274, 7.2737, 7.2733, 7.2729, 7.2727, 7.2723, 7.2743, 7.274, 7.2737, 7.2733, 7.2729, 7.2736, 7.2732, 7.2729, 7.2726, 7.2733, 7.2741, 7.2748, 7.2746, 7.2753, 7.2751, 7.2748, 7.2755, 7.2751, 7.2767, 7.2765, 7.2762, 7.2758, 7.2763, 7.275, 7.2747, 7.2747, 7.2736, 7.2733, 7.2734, 7.2756, 7.2757, 7.2754, 7.2744, 7.2741, 7.2768, 7.2775, 7.2771, 7.2769, 7.2767, 7.2763, 7.275, 7.2747, 7.2744, 7.2741, 7.2748, 7.2745, 7.2742, 7.274, 7.2737, 7.2748, 7.2735, 7.2731, 7.2728, 7.2725, 7.2721, 7.2718, 7.2714, 7.2711, 7.2707, 7.2703, 7.2718, 7.2716, 7.2713, 7.2709, 7.2705, 7.2701, 7.2699, 7.2696, 7.2692, 7.2699, 7.2695, 7.2692, 7.2689, 7.2685, 7.2684, 7.2681, 7.2678, 7.2675, 7.2671, 7.2669, 7.2666, 7.2664, 7.2663, 7.2659, 7.2655, 7.2651, 7.2648, 7.2665, 7.2662, 7.2658, 7.2654, 7.2682, 7.2689, 7.2685, 7.2681, 7.2678, 7.2674, 7.2681, 7.2678, 7.2675, 7.2671, 7.2679, 7.2686, 7.2693, 7.2689, 7.2687, 7.2684, 7.2681, 7.2678, 7.2675, 7.2671, 7.2669, 7.2675, 7.2687, 7.2684, 7.2681, 7.2678, 7.2676, 7.2673, 7.2669, 7.2656, 7.2664, 7.2662, 7.2649, 7.2645, 7.2642, 7.2629, 7.2625, 7.2623, 7.262, 7.2616, 7.2613, 7.26, 7.2598, 7.2595, 7.2593, 7.2589, 7.2587, 7.2585, 7.2582, 7.2579, 7.2566, 7.2553, 7.255, 7.2548, 7.2545, 7.2554, 7.2551, 7.2558, 7.2566, 7.2564, 7.2561, 7.2558, 7.2554, 7.255, 7.2548, 7.2545, 7.2541, 7.2537, 7.2533, 7.254, 7.2536, 7.2532, 7.2529, 7.2527, 7.2523, 7.252, 7.2522, 7.252, 7.2517, 7.2515, 7.2512, 7.2515, 7.2512, 7.2509, 7.2515, 7.2511, 7.2507, 7.2506, 7.2503, 7.249, 7.2488, 7.2484, 7.2481, 7.2477, 7.2475, 7.2482, 7.2488, 7.2487, 7.2483, 7.2479, 7.2475, 7.2472, 7.2459, 7.2446, 7.2442, 7.2438, 7.2434, 7.243, 7.2428, 7.2427, 7.2424, 7.2421, 7.2417, 7.2413, 7.2411, 7.241, 7.2416, 7.2412, 7.2408, 7.2405, 7.2401, 7.2398, 7.2405, 7.2402, 7.2399, 7.2396, 7.2402, 7.2399, 7.2405, 7.2401, 7.2397, 7.2394, 7.2391, 7.2388, 7.2384, 7.2382, 7.2381, 7.2378, 7.2384, 7.239, 7.2388, 7.2386, 7.2382, 7.2389, 7.2385, 7.2382, 7.2369, 7.2365, 7.2361, 7.2358, 7.2365, 7.2363, 7.2361, 7.2392, 7.239, 7.2388, 7.2385, 7.2374, 7.2371, 7.2368, 7.2364, 7.2361, 7.2357, 7.2365, 7.2362, 7.2359, 7.2356, 7.2353, 7.234, 7.2337, 7.2344, 7.2351, 7.2348, 7.2345, 7.2352, 7.2348, 7.2345, 7.2342, 7.2339, 7.2336, 7.2333, 7.2329, 7.2325, 7.2332, 7.2328, 7.2325, 7.2378, 7.2375, 7.2373, 7.2381, 7.237, 7.2368, 7.2365, 7.2363, 7.2361, 7.2358, 7.2355, 7.2353, 7.2352, 7.236, 7.2357, 7.2389, 7.2385, 7.2382, 7.2433, 7.2429, 7.2427, 7.2426, 7.2423, 7.241, 7.2407, 7.2403, 7.2399, 7.2396, 7.2402, 7.2398, 7.2406, 7.2403, 7.2399, 7.2396, 7.2393, 7.24, 7.2417, 7.2414, 7.241, 7.2417, 7.2415, 7.2413, 7.241, 7.2408, 7.2405, 7.2402, 7.24, 7.2397, 7.2394, 7.2391, 7.2388, 7.2385, 7.2392, 7.2399, 7.2405, 7.2412, 7.2409, 7.2406, 7.2402, 7.2399, 7.2398, 7.2394, 7.2391, 7.2388, 7.2385, 7.2381, 7.2378, 7.2374, 7.237, 7.2378, 7.2376, 7.2373, 7.2391, 7.2399, 7.2396, 7.2393, 7.239, 7.2388, 7.2385, 7.2382, 7.2379, 7.2376, 7.2373, 7.2361, 7.235, 7.2347, 7.2355, 7.2352, 7.2348, 7.2346, 7.2345, 7.2343, 7.234, 7.2339, 7.2346, 7.2343, 7.2332, 7.233, 7.2337, 7.2334, 7.2331, 7.2328, 7.2335, 7.2332, 7.2329, 7.2326, 7.2323, 7.2324, 7.2321, 7.2318, 7.2315, 7.2311, 7.2307, 7.2304, 7.2301, 7.2307, 7.2314, 7.232, 7.2317, 7.2334, 7.2349, 7.2345, 7.2342, 7.234, 7.2336, 7.2343, 7.2341, 7.2338, 7.2337, 7.2343, 7.2341, 7.2341, 7.2348, 7.2345, 7.2333, 7.233, 7.2337, 7.2334, 7.2331, 7.2329, 7.2326, 7.2323, 7.2329, 7.2335, 7.2353, 7.236, 7.2368, 7.2365, 7.2363, 7.2361, 7.2358, 7.2355, 7.2355, 7.2352, 7.235, 7.2348, 7.2354, 7.2352, 7.235, 7.2349, 7.2357, 7.2354, 7.235, 7.2346, 7.2344, 7.2351, 7.2347, 7.2354, 7.2352, 7.2368, 7.2364, 7.2365, 7.2355, 7.2352, 7.2348, 7.2345, 7.2341, 7.2337, 7.2334, 7.2331, 7.2328, 7.2325, 7.2331, 7.2328, 7.2335, 7.2333, 7.233, 7.2326, 7.2361, 7.2358, 7.2355, 7.2343, 7.2331, 7.2328, 7.2325, 7.2322, 7.2319, 7.2325, 7.2321, 7.232, 7.2326, 7.2324, 7.2321, 7.2317, 7.2314, 7.2311, 7.2309, 7.2315, 7.2314, 7.2313, 7.2311, 7.2308, 7.2305, 7.2303, 7.23, 7.2307, 7.2304, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2287, 7.2284, 7.2281, 7.2278, 7.2276, 7.2273, 7.2272, 7.2279, 7.2276, 7.2283, 7.229, 7.2287, 7.2285, 7.2292, 7.229, 7.2288, 7.2285, 7.2292, 7.2288, 7.2294, 7.2292, 7.229, 7.2286, 7.2283, 7.229, 7.2297, 7.2294, 7.2294, 7.2292, 7.2309, 7.2316, 7.2317, 7.2314, 7.2311, 7.2308, 7.2305, 7.2302, 7.2308, 7.2306, 7.2313, 7.231, 7.2308, 7.2298, 7.2298, 7.2295, 7.2292, 7.2294, 7.2291, 7.2288, 7.2285, 7.2283, 7.2281, 7.2277, 7.2274, 7.228, 7.2276, 7.2273, 7.228, 7.2277, 7.2274, 7.2271, 7.2268, 7.2266, 7.2262, 7.226, 7.2257, 7.2255, 7.2261, 7.2268, 7.2265, 7.2264, 7.2261, 7.2278, 7.2275, 7.2272, 7.2269, 7.2266, 7.2263, 7.226, 7.2258, 7.2255, 7.2252, 7.2251, 7.2248, 7.2245, 7.2242, 7.224, 7.2237, 7.2243, 7.224, 7.2247, 7.2246, 7.2243, 7.2243, 7.224, 7.2237, 7.2243, 7.224, 7.2246, 7.2253, 7.225, 7.2257, 7.2254, 7.2262, 7.2269, 7.2267, 7.2264, 7.2261, 7.2258, 7.2255, 7.2262, 7.2259, 7.2256, 7.2253, 7.2251, 7.2248, 7.2254, 7.2251, 7.2248, 7.2245, 7.2242, 7.2241, 7.2259, 7.2256, 7.2254, 7.2251, 7.225, 7.2249, 7.2246, 7.2244, 7.2241, 7.2238, 7.2235, 7.2232, 7.2239, 7.2236, 7.2243, 7.2263, 7.226, 7.2256, 7.2252, 7.2259, 7.2265, 7.2272, 7.2272, 7.2261, 7.2258, 7.2264, 7.2261, 7.2258, 7.2255, 7.2261, 7.2259, 7.2265, 7.2262, 7.226, 7.2297, 7.2305, 7.2302, 7.2299, 7.2297, 7.2294, 7.2294, 7.2292, 7.2292, 7.2289, 7.2295, 7.2292, 7.2289, 7.2286, 7.2283, 7.2291, 7.2289, 7.2295, 7.2294, 7.2291, 7.2288, 7.2285, 7.2282, 7.2279, 7.23, 7.2297, 7.2294, 7.2291, 7.228, 7.2286, 7.2283, 7.2289, 7.2305, 7.2311, 7.2319, 7.2317, 7.2314, 7.232, 7.2308, 7.2315, 7.2318, 7.2317, 7.2314, 7.2312, 7.231, 7.2306, 7.2303, 7.2308, 7.2306, 7.2313, 7.231, 7.2308, 7.2305, 7.2303, 7.2291, 7.2288, 7.2294, 7.2291, 7.2297, 7.2294, 7.2301, 7.2299, 7.2297, 7.2293, 7.23, 7.2297, 7.2303, 7.23, 7.2296, 7.2293, 7.229, 7.2288, 7.2285, 7.2282, 7.2281, 7.2278, 7.2287, 7.2295, 7.2305, 7.2302, 7.2299, 7.2305, 7.2311, 7.2318, 7.2315, 7.2312, 7.2309, 7.2307, 7.2308, 7.2306, 7.2303, 7.2301, 7.2298, 7.2296, 7.2294, 7.2291, 7.2279, 7.2276, 7.2283, 7.229, 7.2324, 7.2322, 7.232, 7.2318, 7.2317, 7.2327, 7.2323, 7.232, 7.2316, 7.2305, 7.2302, 7.2299, 7.2296, 7.2294, 7.2292, 7.2289, 7.2286, 7.2292, 7.229, 7.2288, 7.2338, 7.2335, 7.2333, 7.2331, 7.2328, 7.2325, 7.2322, 7.2319, 7.2325, 7.2322, 7.2319, 7.2317, 7.2314, 7.2321, 7.2318, 7.2315, 7.2312, 7.2309, 7.2307, 7.2304, 7.2311, 7.2308, 7.2305, 7.2312, 7.231, 7.2308, 7.2305, 7.2312, 7.231, 7.2308, 7.2309, 7.2307, 7.2315, 7.2312, 7.2313, 7.2312, 7.2318, 7.2315, 7.2312, 7.2309, 7.2306, 7.2303, 7.2301, 7.2298, 7.2297, 7.2294, 7.2292, 7.2282, 7.229, 7.2287, 7.2285, 7.2282, 7.228, 7.2277, 7.2274, 7.2271, 7.2259, 7.2256, 7.2253, 7.2259, 7.2265, 7.2271, 7.2268, 7.2275, 7.2272, 7.227, 7.2276, 7.2273, 7.227, 7.2276, 7.2273, 7.227, 7.2267, 7.2273, 7.2271, 7.2269, 7.2267, 7.2264, 7.2261, 7.2267, 7.2264, 7.2261, 7.2258, 7.2265, 7.2273, 7.2271, 7.2277, 7.2274, 7.2281, 7.2278, 7.2275, 7.2272, 7.227, 7.2259, 7.2256, 7.2254, 7.226, 7.2257, 7.2254, 7.2252, 7.2249, 7.2247, 7.2244, 7.2242, 7.2239, 7.2245, 7.2242, 7.2248, 7.2246, 7.2243, 7.224, 7.2237, 7.2243, 7.2241, 7.224, 7.2237, 7.2236, 7.2242, 7.224, 7.2237, 7.2234, 7.2231, 7.2228, 7.2234, 7.2231, 7.2229, 7.2226, 7.2224, 7.2221, 7.222, 7.2218, 7.2215, 7.2213, 7.222, 7.2218, 7.2215, 7.2221, 7.2218, 7.2215, 7.2212, 7.222, 7.2234, 7.2231, 7.2237, 7.2235, 7.2233, 7.223, 7.2237, 7.2231, 7.2228, 7.2225, 7.2238, 7.2241, 7.2239, 7.2236, 7.2244, 7.2251, 7.2242, 7.2239, 7.2255, 7.2252, 7.2249, 7.2255, 7.2252, 7.2257, 7.2254, 7.226, 7.2257, 7.2254, 7.2252, 7.225, 7.2256, 7.2254, 7.2251, 7.2248, 7.2245, 7.2242, 7.2242, 7.2249, 7.2255, 7.2246, 7.2243, 7.2241, 7.2248, 7.2246, 7.2245, 7.2243, 7.2241, 7.2248, 7.2246, 7.2245, 7.2245, 7.2243, 7.224, 7.2238, 7.2279, 7.2277, 7.2274, 7.2274, 7.228, 7.2278, 7.2276, 7.2274, 7.2271, 7.2268, 7.2265, 7.2263, 7.226, 7.2276, 7.2274, 7.2272, 7.2269, 7.2267, 7.2265, 7.2265, 7.2271, 7.2268, 7.2266, 7.2263, 7.2262, 7.2268, 7.2266, 7.2272, 7.2278, 7.2284, 7.2281, 7.227, 7.2267, 7.2264, 7.227, 7.2276, 7.2273, 7.228, 7.2286, 7.2284, 7.2281, 7.2287, 7.2285, 7.2291, 7.2288, 7.2285, 7.2292, 7.2289, 7.2288, 7.2285, 7.2283, 7.2281, 7.228, 7.2277, 7.2283, 7.2281, 7.2287, 7.2293, 7.2291, 7.2297, 7.2303, 7.23, 7.2298, 7.2287, 7.2302, 7.2311, 7.2302, 7.2309, 7.2306, 7.2312, 7.231, 7.2299, 7.2305, 7.2302, 7.23, 7.2306, 7.2311, 7.2308, 7.2313, 7.231, 7.2309, 7.2315, 7.2321, 7.2318, 7.2316, 7.2322, 7.2328, 7.2325, 7.233, 7.2336, 7.2341, 7.2338, 7.2335, 7.2352, 7.2349, 7.2346, 7.2343, 7.2351, 7.234, 7.2346, 7.2345, 7.2351, 7.2348, 7.2338, 7.2357, 7.2364, 7.2362, 7.2369, 7.2358, 7.2356, 7.2354, 7.236, 7.2357, 7.2355, 7.2352, 7.2349, 7.2346, 7.2335, 7.2334, 7.2331, 7.232, 7.232, 7.2309, 7.2306, 7.2311, 7.2308, 7.2302, 7.2299, 7.2297, 7.2303, 7.2311, 7.2316, 7.2322, 7.2321, 7.2318, 7.2315, 7.2322, 7.2321, 7.232, 7.2317, 7.2326, 7.2332, 7.233, 7.2328, 7.2326, 7.2323, 7.2321, 7.2318, 7.2307, 7.2305, 7.2302, 7.23, 7.2297, 7.2294, 7.2291, 7.2297, 7.2286, 7.2283, 7.2283, 7.2272, 7.227, 7.2281, 7.2278, 7.2275, 7.2274, 7.2274, 7.2271, 7.2268, 7.2266, 7.2264, 7.2268, 7.2265, 7.2262, 7.2259, 7.2256, 7.2253, 7.225, 7.2247, 7.2244, 7.2242, 7.2239, 7.2245, 7.2242, 7.2239, 7.2245, 7.2234, 7.2239, 7.2245, 7.2251, 7.2256, 7.225, 7.2248, 7.2245, 7.2242, 7.2241, 7.2238, 7.2244, 7.2251, 7.2248, 7.2248, 7.2247, 7.2253, 7.225, 7.2258, 7.2255, 7.2261, 7.2252, 7.2242, 7.2232, 7.2238, 7.2235, 7.2233, 7.223, 7.2221, 7.2219, 7.2223, 7.222, 7.2217, 7.2246, 7.2252, 7.2257, 7.2255, 7.2261, 7.226, 7.2265, 7.2271, 7.2269, 7.2275, 7.2272, 7.2282, 7.228, 7.2277, 7.2274, 7.2274, 7.2272, 7.2278, 7.2284, 7.2282, 7.2279, 7.2276, 7.2275, 7.2274, 7.2266, 7.2264, 7.227, 7.2276, 7.2273, 7.2279, 7.2287, 7.2293, 7.229, 7.2304, 7.231, 7.2345, 7.2343, 7.2341, 7.2338, 7.2336, 7.2334, 7.2332, 7.2332, 7.2329, 7.2326, 7.2323, 7.2321, 7.2327, 7.2325, 7.2314, 7.2305, 7.2303, 7.2293, 7.2291, 7.2288, 7.2285, 7.2282, 7.2279, 7.228, 7.2278, 7.2277, 7.2294, 7.2291, 7.2288, 7.2294, 7.2291, 7.2289, 7.2289, 7.2278, 7.2284, 7.2282, 7.2279, 7.2285, 7.2282, 7.228, 7.2288, 7.2285, 7.2282, 7.2279, 7.2302, 7.2308, 7.2315, 7.232, 7.2317, 7.2314, 7.2311, 7.2318, 7.2315, 7.2312, 7.2318, 7.2324, 7.2321, 7.2337, 7.2342, 7.2339, 7.2337, 7.2334, 7.2343, 7.2358, 7.2373, 7.2382, 7.238, 7.2387, 7.2389, 7.2387, 7.2378, 7.2375, 7.2366, 7.2371, 7.2368, 7.2382, 7.2379, 7.2377, 7.2383, 7.2388, 7.2386, 7.2409, 7.2407, 7.2416, 7.2422, 7.2419, 7.2416, 7.2422, 7.2419, 7.2425, 7.2422, 7.2419, 7.2416, 7.2413, 7.241, 7.2416, 7.2413, 7.241, 7.2407, 7.2405, 7.2395, 7.2393, 7.2399, 7.2388, 7.2386, 7.2396, 7.2394, 7.2408, 7.2405, 7.2403, 7.2409, 7.2415, 7.2412, 7.241, 7.2416, 7.2414, 7.2411, 7.2409, 7.2406, 7.2404, 7.2402, 7.2407, 7.2404, 7.2401, 7.2407, 7.2413, 7.241, 7.2408, 7.2431, 7.2428, 7.2434, 7.2431, 7.2429, 7.2426, 7.2416, 7.2413, 7.241, 7.2417, 7.2415, 7.2412, 7.2402, 7.2416, 7.2455, 7.2453, 7.245, 7.2456, 7.2454, 7.2451, 7.2448, 7.2446, 7.2444, 7.2448, 7.244, 7.2446, 7.246, 7.2474, 7.2471, 7.2487, 7.2484, 7.2489, 7.2496, 7.2501, 7.2498, 7.2495, 7.2493, 7.249, 7.2487, 7.2485, 7.2492, 7.2492, 7.249, 7.2488, 7.2485, 7.2482, 7.2479, 7.2476, 7.2473, 7.2478, 7.2475, 7.2472, 7.2478, 7.2483, 7.248, 7.2477, 7.2478, 7.2484, 7.2481, 7.2479, 7.2493, 7.2499, 7.2505, 7.2511, 7.2502, 7.25, 7.2498, 7.2488, 7.2485, 7.2475, 7.2473, 7.2479, 7.2484, 7.2489, 7.2495, 7.25, 7.2497, 7.2494, 7.2508, 7.2506, 7.2505, 7.2524, 7.2521, 7.2518, 7.2516, 7.253, 7.2519, 7.2525, 7.2526, 7.2523, 7.252, 7.2518, 7.2541, 7.2539, 7.2536, 7.2533, 7.253, 7.2527, 7.2535, 7.2532, 7.2522, 7.2528, 7.2534, 7.2532, 7.2522, 7.2519, 7.2524, 7.2521, 7.2536, 7.2533, 7.2531, 7.2529, 7.2554, 7.2559, 7.2556, 7.2563, 7.256, 7.257, 7.2571, 7.2577, 7.2574, 7.2571, 7.2577, 7.2574, 7.258, 7.2585, 7.259, 7.2595, 7.26, 7.2597, 7.2602, 7.2608, 7.2614, 7.2612, 7.261, 7.2608, 7.2614, 7.2612, 7.2618, 7.264, 7.2638, 7.2644, 7.2642, 7.2648, 7.2646, 7.2643, 7.2641, 7.2638, 7.2635, 7.2633, 7.263, 7.2627, 7.2624, 7.2621, 7.2619, 7.2617, 7.2615, 7.2624, 7.2621, 7.2619, 7.2617, 7.2614, 7.2612, 7.2609, 7.2606, 7.2603, 7.26, 7.2597, 7.2603, 7.2609, 7.2606, 7.2612, 7.2609, 7.2615, 7.2613, 7.261, 7.2616, 7.2614, 7.2613, 7.2611, 7.2616, 7.2614, 7.262, 7.2634, 7.2631, 7.263, 7.2627, 7.2632, 7.2638, 7.2636, 7.2634, 7.2632, 7.2637, 7.2627, 7.2624, 7.2621, 7.2637, 7.2643, 7.2665, 7.267, 7.2672, 7.267, 7.2675, 7.269, 7.2693, 7.269, 7.2688, 7.2685, 7.2683, 7.268, 7.2679, 7.2685, 7.2683, 7.2681, 7.2678, 7.2692, 7.2689, 7.2694, 7.2699, 7.2696, 7.2705, 7.2705, 7.2703, 7.2704, 7.2701, 7.2698, 7.2696, 7.2699, 7.2697, 7.2702, 7.2699, 7.2696, 7.2702, 7.2699, 7.2712, 7.271, 7.2708, 7.271, 7.2708, 7.2706, 7.2696, 7.2694, 7.2693, 7.2691, 7.269, 7.269, 7.2687, 7.2692, 7.2697, 7.2694, 7.2691, 7.2696, 7.2701, 7.2698, 7.2703, 7.27, 7.2697, 7.2702, 7.27, 7.2697, 7.2702, 7.2708, 7.2713, 7.2719, 7.2716, 7.2722, 7.2719, 7.2716, 7.2721, 7.2727, 7.2733, 7.2738, 7.2735, 7.2741, 7.2738, 7.2736, 7.2749, 7.2754, 7.2752, 7.275, 7.2747, 7.2748, 7.2748, 7.2747, 7.2753, 7.2751, 7.2748, 7.2745, 7.2742, 7.274, 7.273, 7.2727, 7.2727, 7.273, 7.276, 7.2771, 7.2768, 7.2773, 7.2771, 7.2777, 7.2774, 7.2771, 7.277, 7.2768, 7.2766, 7.2763, 7.2762, 7.2768, 7.2766, 7.2772, 7.2771, 7.2776, 7.2779, 7.2782, 7.2779, 7.2777, 7.2775, 7.2788, 7.2785, 7.2791, 7.2792, 7.279, 7.2787, 7.2784, 7.2781, 7.2771, 7.2777, 7.2783, 7.2781, 7.2786, 7.2784, 7.2798, 7.279, 7.2787, 7.2785, 7.2783, 7.2786, 7.2785, 7.2783, 7.2781, 7.2786, 7.2776, 7.2773, 7.277, 7.2775, 7.2772, 7.2769, 7.2767, 7.2772, 7.2775, 7.2772, 7.277, 7.277, 7.2767, 7.2764, 7.2761, 7.2761, 7.2815, 7.2813, 7.281, 7.2807, 7.2804, 7.2801, 7.2798, 7.2796, 7.2793, 7.2799, 7.2797, 7.2795, 7.2793, 7.2792, 7.279, 7.2787, 7.2785, 7.2783, 7.2789, 7.2794, 7.2793, 7.2791, 7.2796, 7.2802, 7.2799, 7.2797, 7.2798, 7.2796, 7.2801, 7.2798, 7.2795, 7.2801, 7.2798, 7.2803, 7.28, 7.2798, 7.2796, 7.2795, 7.2793, 7.2791, 7.2788, 7.278, 7.2779, 7.2779, 7.2777, 7.2775, 7.2773, 7.2804, 7.2802, 7.2799, 7.2798, 7.2795, 7.2793, 7.2831, 7.2828, 7.2833, 7.2831, 7.2837, 7.2835, 7.2841, 7.2842, 7.284, 7.2856, 7.2855, 7.2854, 7.2852]}
rtt9_2_10 = {'192.168.122.118': [5.6372, 5.8014, 12.1615, 12.8789, 5.78, 10.8988, 10.7007, 6.4399, 26.7017, 5.2509, 11.322, 11.8017, 10.7222, 5.487, 1.06, 7.3147, 22.8429, 5.4646, 5.6717, 6.2959, 5.6365, 6.1867, 5.626, 6.5484, 5.2974, 5.6798, 6.2745, 5.5165, 5.3756, 9.6674, 5.3608, 5.7142, 11.3716, 10.9122, 5.7235, 5.4834, 5.9304, 14.2114, 14.8087, 5.46, 6.2666, 5.4436, 6.3202, 17.123, 5.482, 5.2667, 10.8037, 5.5232, 5.3253, 6.8021, 5.888, 5.3985, 10.8349, 0.5996, 5.6479, 5.4958, 5.4526, 6.1822, 11.4498, 5.3921, 5.8386, 5.9288, 5.4233, 5.2552, 5.4364, 10.9029, 5.3804, 10.7567, 5.7945, 5.4274, 5.3527, 5.476, 0.8903, 5.3046, 5.5244, 11.3842, 5.5518, 10.9906, 5.3134, 6.5522, 6.1955, 5.4603, 5.3031, 5.2998, 10.9246, 5.5733, 5.6314, 5.6024, 6.2745, 0.695, 1.1871, 12.0847, 11.5054, 5.2667, 11.282, 6.8135, 6.4132, 10.6924, 5.6906, 5.5351, 1.1613, 5.2288, 5.4507, 5.4057, 5.3358, 10.7126, 10.6947, 5.5282, 11.503, 10.4544, 15.8994, 5.2848, 5.4049, 5.4114, 5.6372, 0.8566, 5.5997, 5.815, 1.3599, 5.7364, 5.9006, 5.6574, 5.7178, 5.2743, 5.4636, 5.2574, 6.2926, 5.9888, 5.7428, 5.549, 5.2381, 5.4216, 5.4026, 21.4818, 11.1115, 5.4827, 5.6837, 5.4154, 5.5637, 5.636, 6.1095, 5.4355, 17.823, 11.147, 5.3334, 6.7599, 5.4717, 6.1123, 5.4901, 10.9613, 10.8664, 10.9177, 5.5776, 10.9241, 5.754, 5.3918, 5.5377, 5.5079, 6.6228, 5.2893, 5.4107, 5.2915, 6.043, 5.7912, 12.121, 5.6026, 6.0804, 6.1023, 5.3849, 16.8769, 6.1193, 6.3052, 6.644, 6.5556, 5.3275, 6.4859, 5.4486, 6.2792, 10.8993, 5.4066, 11.2255, 5.3136, 5.2884, 21.4887, 5.281, 6.5041, 10.4356, 5.6794, 5.7793, 5.6999, 6.0716, 6.1417, 11.2982, 10.7229, 5.821, 5.5957, 5.5311, 10.7594, 11.8964, 5.3718, 0.8163, 6.103, 5.29, 5.4762, 6.3708, 6.4538, 5.4607, 5.2979, 5.9187, 5.4381, 5.4784, 5.5399, 0.7224, 5.7604, 5.8782, 5.6181, 6.3283, 6.1932, 5.6443, 10.5758, 5.2531, 10.7005, 11.1151, 5.6846, 11.0099, 10.7987, 11.5573, 5.5618, 6.3076, 5.7364, 5.9061, 10.9699, 5.3883, 0.6163, 5.518, 10.7512, 5.4982, 5.6696, 21.4689, 11.2548, 10.6425, 6.156, 12.1419, 5.6095, 5.7361, 5.5647, 5.6043, 5.7774, 11.0316, 5.702, 5.6374, 5.4882, 11.2183, 10.921, 11.5821, 11.2023, 6.0081, 11.0168], '192.168.122.120': [5.3389, 5.2979, 10.6449, 5.5182, 5.4321, 11.0307, 5.271, 11.4996, 21.8787, 5.3382, 5.3325, 5.8768, 5.404, 11.0693, 1.0018, 5.548, 5.42, 10.8585, 11.2846, 6.7844, 6.1026, 11.1456, 11.2894, 5.4395, 10.865, 5.4288, 10.8533, 10.4458, 10.6573, 5.6422, 10.7179, 5.3499, 5.5192, 10.8955, 5.7948, 5.3616, 5.3043, 5.213, 5.477, 11.1146, 5.4092, 5.2788, 10.9334, 6.3026, 11.2722, 10.8228, 10.8182, 5.8742, 5.4331, 5.8591, 5.9199, 5.3253, 0.5937, 5.3239, 5.5425, 6.2039, 5.8427, 6.3655, 11.6084, 10.8192, 5.9276, 11.692, 5.8374, 5.5993, 5.3723, 5.8057, 5.3005, 6.4502, 10.9413, 10.9091, 5.7163, 5.4305, 0.5448, 5.2993, 10.8714, 5.9304, 5.2085, 5.3909, 5.5223, 16.0122, 5.8851, 5.5172, 11.0106, 10.6113, 21.4698, 5.6961, 5.7135, 18.5823, 6.4161, 16.4645, 0.6027, 5.3992, 5.6889, 7.2615, 5.5907, 5.4708, 5.2166, 11.5004, 5.7414, 5.5814, 0.3939, 5.3251, 10.9992, 5.5904, 5.3976, 5.4312, 5.6438, 5.8041, 5.9805, 36.5558, 5.321, 5.2896, 5.4116, 10.6239, 6.0003, 6.6659, 5.5685, 10.8531, 0.9997, 6.0475, 5.3265, 11.219, 11.6038, 10.9935, 11.0083, 11.296, 10.7417, 11.1849, 5.923, 5.383, 5.9307, 10.9193, 11.3015, 10.957, 11.0729, 6.5427, 5.5454, 5.4748, 10.673, 10.9911, 5.954, 11.4019, 26.6867, 16.4061, 17.0908, 10.7434, 11.1499, 5.7852, 5.2655, 5.6167, 5.4922, 5.9114, 11.1909, 5.353, 5.5125, 5.2476, 10.9546, 11.1623, 5.527, 15.3942, 10.6723, 10.6165, 5.5029, 5.223, 17.1223, 6.0833, 6.2709, 5.964, 5.3902, 10.7737, 5.594, 6.7258, 11.0152, 5.9984, 5.718, 6.0074, 5.842, 5.9099, 5.5571, 10.9491, 5.4018, 5.8136, 5.3086, 5.8954, 5.8165, 1.0517, 5.8665, 6.1219, 12.465, 6.3217, 25.6908, 22.063, 11.4996, 6.1786, 5.4679, 5.5394, 11.1818, 5.6992, 5.5201, 5.8975, 0.8354, 5.821, 22.2709, 6.0327, 5.2788, 6.1879, 10.7837, 10.6792, 5.2712, 5.4631, 5.2145, 5.8315, 0.9053, 11.327, 5.2943, 6.0554, 5.4924, 5.3227, 5.7755, 15.8093, 5.4212, 29.7122, 5.3589, 6.336, 10.6459, 5.5468, 11.5361, 0.6688, 11.5564, 5.6722, 16.948, 5.4269, 5.4917, 18.0912, 5.861, 5.2819, 10.9203, 10.7002, 6.1424, 10.9296, 6.0072, 5.5847, 10.8485, 17.0085, 5.2185, 5.8498, 6.2294, 5.8935, 5.4007, 0.8121, 5.7087, 13.5405, 16.4635, 11.6947, 6.0916, 17.02, 5.4195, 5.3837], '192.168.122.116': [10.4778, 5.6241, 5.5871, 5.6801, 5.4953, 6.0337, 12.274, 5.9338, 5.8968, 10.6201, 5.3604, 5.4815, 5.3709, 5.4719, 0.828, 5.4932, 10.9193, 5.3117, 5.5695, 5.748, 6.1851, 22.6943, 5.553, 5.5838, 5.7459, 5.4708, 5.8441, 5.2714, 10.7372, 8.1327, 5.5861, 12.6009, 10.8581, 5.3382, 6.7067, 5.3835, 16.3214, 15.9595, 10.951, 10.5305, 6.5989, 7.6399, 10.8576, 6.1345, 6.391, 6.8698, 5.95, 6.4795, 5.4269, 9.0592, 5.4765, 5.3422, 5.7976, 10.6289, 5.4069, 5.5976, 5.337, 5.6965, 22.7885, 5.4278, 5.357, 10.5488, 5.8577, 21.9724, 5.3313, 5.275, 5.388, 6.3219, 5.3778, 5.4197, 16.175, 5.5568, 0.6611, 5.4498, 10.9007, 22.3031, 10.3078, 16.9127, 21.6551, 10.9327, 5.3837, 5.553, 10.9499, 5.2159, 11.1475, 10.9103, 5.645, 17.0417, 10.8869, 15.7313, 2.1183, 5.4083, 5.6295, 5.9161, 5.5649, 10.844, 10.9205, 5.5816, 17.4272, 5.6405, 0.7341, 5.3465, 5.3875, 11.287, 11.0924, 5.7149, 11.3673, 10.952, 10.4852, 10.5324, 10.5853, 10.7236, 6.2845, 10.4477, 10.797, 5.4367, 5.7123, 11.1709, 0.9913, 5.5263, 10.9415, 5.554, 16.8397, 10.7532, 5.512, 6.5324, 5.9075, 5.3425, 5.363, 5.4958, 5.7945, 5.2226, 5.4944, 5.5354, 6.0058, 16.3007, 16.3956, 5.471, 5.5296, 11.1392, 6.0043, 10.9251, 16.8355, 5.7836, 5.9896, 11.3325, 5.5506, 5.4164, 5.343, 5.2402, 5.8315, 5.4088, 5.4774, 10.586, 11.2708, 5.1746, 5.5676, 16.7038, 10.8442, 6.1774, 6.1047, 5.7106, 22.2719, 5.5711, 15.6949, 6.1703, 5.4562, 5.3248, 10.8693, 10.8171, 5.8053, 10.7718, 11.7958, 11.3254, 6.3798, 10.8058, 10.9167, 5.3573, 5.4514, 6.0849, 10.5743, 6.3994, 5.61, 11.1725, 11.0815, 0.6878, 5.5354, 11.0078, 5.6767, 11.445, 10.412, 6.8383, 5.7201, 5.7302, 5.5211, 5.517, 6.0203, 10.9112, 5.651, 5.7917, 0.8624, 16.9063, 5.2598, 11.1065, 10.6254, 10.8132, 16.3822, 10.4005, 11.1518, 6.0792, 5.4185, 12.079, 0.9983, 5.6715, 5.8172, 10.3259, 5.4917, 5.3911, 5.8439, 10.5557, 5.8355, 6.0949, 11.0986, 10.8585, 11.1477, 5.4708, 5.5215, 0.9229, 10.9096, 7.0319, 6.1436, 10.5271, 22.0187, 6.18, 5.8467, 10.4525, 5.604, 5.2328, 5.6317, 11.9276, 15.8184, 5.7857, 10.6115, 5.6286, 5.6748, 5.9276, 10.6149, 5.3606, 5.8775, 0.7706, 5.4879, 10.9231, 5.5258, 5.8053, 5.7642, 5.7397, 12.3734, 8.0087], '192.168.122.115': [5.2693, 5.3256, 5.671, 0.7539, 5.5201, 5.4109, 6.4662, 11.3938, 11.1294, 10.8361, 5.9118, 5.5103, 11.0726, 10.8619, 0.6058, 16.5758, 10.8602, 11.2116, 5.6007, 11.4713, 6.0289, 11.2903, 11.0736, 11.0047, 5.698, 11.2414, 13.1881, 5.2428, 5.3878, 5.2552, 5.9054, 5.8544, 18.0724, 5.95, 5.4457, 10.9296, 11.2996, 5.3232, 10.8838, 10.9756, 5.3959, 5.5382, 6.9592, 5.4469, 5.4464, 1.0657, 5.2745, 5.8546, 5.99, 0.4413, 5.3682, 5.321, 5.7993, 10.854, 5.3384, 6.3641, 5.4967, 6.0575, 11.5016, 6.5148, 10.8438, 11.4102, 5.9078, 6.0644, 11.8945, 5.1987, 10.7219, 5.347, 5.3883, 0.7904, 5.8196, 5.3866, 0.6025, 5.4517, 5.4746, 10.8628, 5.6512, 10.6575, 5.6508, 5.4626, 5.9712, 10.9622, 11.1027, 10.6494, 5.3971, 5.5156, 11.0066, 5.7323, 10.9146, 11.0343, 5.7189, 10.8123, 10.4926, 10.8781, 5.6114, 11.2195, 5.3425, 10.8378, 5.7917, 10.6773, 0.6814, 5.388, 5.8136, 5.2741, 16.8638, 5.3606, 28.2779, 5.4183, 5.2345, 13.8595, 5.3618, 5.6911, 5.3439, 11.1752, 10.781, 5.4178, 6.4445, 11.637, 0.927, 11.03, 5.5985, 11.1525, 6.2268, 6.1388, 5.7771, 11.5523, 5.6233, 5.6069, 5.9953, 5.9946, 6.6085, 5.3399, 12.1195, 11.3423, 5.5249, 10.8433, 5.5144, 5.3241, 10.3025, 6.1707, 6.043, 8.5621, 16.9826, 5.2655, 5.8908, 5.3215, 6.0785, 5.5301, 5.5299, 5.316, 5.9969, 5.8041, 6.1069, 5.3771, 11.09, 10.879, 5.8572, 10.9591, 16.4304, 11.903, 13.5646, 5.996, 10.7727, 5.372, 5.461, 6.2377, 10.5963, 11.1072, 5.8639, 5.3864, 5.2695, 10.6924, 10.9692, 10.8209, 16.6619, 16.3543, 5.3637, 5.4018, 5.5025, 5.4426, 5.4896, 5.7933, 5.2884, 5.3136, 27.7646, 1.0407, 5.7311, 11.5776, 5.4801, 6.5017, 11.5535, 10.4392, 5.6891, 5.6901, 16.5071, 5.5783, 11.0984, 5.9106, 10.937, 11.0464, 1.1542, 5.954, 5.2161, 5.4438, 21.8978, 11.3447, 5.5983, 6.1967, 21.5709, 5.8861, 5.4317, 16.6717, 1.0476, 5.9624, 5.2788, 11.529, 5.2588, 10.8948, 6.0093, 11.004, 12.929, 0.7043, 11.2584, 11.0364, 34.307, 5.4595, 5.6489, 5.7108, 11.2119, 5.5087, 11.1492, 5.6756, 5.7824, 5.3725, 5.7609, 5.3728, 5.4111, 5.4564, 11.1833, 10.7505, 5.5251, 10.53, 10.8111, 5.9752, 6.2439, 5.7845, 6.1326, 10.7529, 5.2059, 1.0462, 11.4086, 5.9841, 5.4433, 5.5203, 5.8582, 5.7335, 11.5542, 6.3939], '192.168.122.114': [5.3151, 5.2912, 5.2073, 0.7594, 5.5549, 10.8476, 5.4464, 11.5678, 5.9075, 16.4778, 5.4173, 10.6792, 5.3072, 5.3909, 0.7598, 5.5783, 5.378, 11.6608, 5.6796, 11.4658, 5.4793, 5.4748, 16.9499, 10.7398, 6.166, 5.7645, 5.971, 5.5737, 5.8208, 27.1983, 5.3422, 5.9495, 5.6405, 5.7099, 5.8343, 17.343, 10.9708, 5.4176, 10.8254, 10.8829, 5.4269, 17.354, 10.7739, 6.2144, 5.8825, 0.8314, 10.9041, 5.5375, 10.9253, 5.5573, 5.5912, 10.5052, 5.7402, 16.6533, 5.2903, 10.6566, 6.495, 10.941, 11.1699, 9.3474, 5.6593, 11.1334, 5.4646, 5.6405, 5.8782, 5.2018, 5.7735, 5.4414, 5.4126, 0.8411, 6.1178, 11.2982, 0.5519, 5.4603, 5.4643, 5.6963, 5.352, 10.6912, 5.4226, 6.2568, 17.3893, 11.0443, 10.973, 11.1783, 10.8449, 22.033, 10.6859, 6.5601, 5.6479, 5.4026, 10.7617, 5.7249, 10.421, 5.3382, 11.3666, 5.9593, 5.2168, 5.3771, 5.2707, 6.3517, 0.6711, 11.4636, 16.1655, 5.6057, 5.3911, 10.9031, 24.4596, 6.2866, 11.374, 11.5814, 5.3144, 6.7668, 10.8521, 6.2466, 5.3368, 11.4799, 5.6915, 11.0307, 0.6585, 10.926, 5.6188, 5.5144, 16.0239, 6.3603, 12.9664, 11.0917, 5.3673, 11.5049, 11.6038, 5.4665, 21.4829, 10.8349, 5.465, 5.5649, 5.4336, 10.8955, 6.021, 21.6415, 5.8351, 11.7445, 10.823, 5.7552, 5.3627, 11.0214, 5.7724, 10.6175, 21.6305, 5.4653, 10.932, 11.0013, 10.447, 11.4892, 5.6069, 5.1811, 11.2286, 5.5432, 22.3949, 10.8488, 6.0194, 5.9941, 5.9519, 5.5835, 15.3525, 5.4202, 5.2834, 5.63, 5.2474, 11.1165, 5.985, 5.4877, 5.6279, 10.6406, 5.7938, 10.8955, 6.4797, 5.2428, 11.1825, 5.4054, 5.5325, 11.0881, 10.8154, 6.5007, 5.7504, 6.0468, 5.2807, 0.6051, 6.0916, 5.5838, 5.9366, 6.1235, 21.7957, 10.8752, 5.6036, 5.414, 11.8847, 5.5478, 5.7564, 10.8936, 5.7356, 6.5196, 0.9201, 5.3976, 5.964, 10.9658, 11.1518, 11.3759, 10.5152, 5.8386, 10.5, 16.34, 5.3494, 5.4102, 0.7851, 10.778, 5.4996, 6.2792, 10.8075, 5.4672, 6.1209, 5.7101, 5.8212, 7.0138, 5.511, 5.4967, 10.9584, 16.1984, 6.2413, 10.6363, 5.9407, 5.6446, 5.7461, 6.2137, 11.5819, 5.5809, 5.5332, 10.8535, 5.9741, 5.5757, 6.3841, 5.4569, 6.3365, 29.7973, 11.4572, 6.3174, 10.5343, 10.8836, 5.5726, 10.704, 5.3132, 0.865, 5.3999, 5.6095, 5.4371, 6.7728, 16.5946, 11.2851, 11.2827, 11.2355], '192.168.122.113': [5.7201, 5.3546, 5.3508, 1.0886, 5.2645, 10.6683, 5.8887, 5.6689, 5.6655, 10.7203, 5.4011, 5.3301, 11.2164, 10.7102, 6.6142, 5.6474, 16.3336, 5.7971, 5.6489, 5.2981, 11.0204, 5.6727, 5.8353, 5.5161, 5.2876, 5.3046, 6.0816, 5.78, 5.9907, 12.2178, 5.5752, 5.5957, 11.3418, 5.3542, 6.3128, 21.7912, 5.5046, 5.2326, 5.3818, 5.4615, 5.4188, 5.6729, 5.4255, 11.2317, 10.9208, 0.5941, 6.263, 16.5772, 5.4216, 10.684, 16.2518, 10.6544, 10.7667, 13.8841, 10.7226, 6.1271, 11.2901, 10.9916, 11.4009, 5.9006, 5.3439, 6.4633, 5.3694, 12.0089, 10.675, 10.4129, 11.1709, 5.343, 5.4281, 6.0656, 5.9602, 10.9367, 0.5381, 5.7797, 10.9196, 5.6863, 10.8182, 10.4923, 21.7757, 5.5006, 5.2361, 11.333, 5.2726, 5.7201, 5.4011, 5.6345, 16.428, 5.7912, 10.9217, 10.9179, 5.2264, 6.6836, 10.3812, 5.779, 5.9526, 22.2578, 5.5211, 6.1998, 6.048, 5.9519, 5.8112, 10.5865, 5.46, 5.4388, 5.3785, 10.8938, 16.0534, 10.7336, 5.285, 5.6691, 10.5863, 6.9573, 5.4665, 11.7483, 11.7762, 10.7958, 11.2035, 11.0903, 0.643, 5.7395, 11.0691, 11.1768, 10.4403, 10.932, 5.224, 5.3797, 10.6597, 16.5052, 5.6098, 5.5881, 5.2819, 10.8483, 6.5153, 25.5721, 5.3906, 10.9763, 5.4455, 10.9234, 5.7802, 5.3763, 5.3546, 5.336, 11.0214, 5.8193, 5.4584, 5.5249, 11.0016, 10.8273, 27.4563, 11.3325, 5.4841, 10.8857, 6.1007, 5.5022, 5.7659, 11.302, 5.707, 5.4152, 5.801, 5.5668, 5.7917, 5.2321, 6.1879, 5.5642, 6.0294, 16.8667, 11.2648, 5.383, 10.8783, 10.8545, 5.5387, 19.3026, 5.8322, 6.2578, 11.9882, 10.951, 10.7558, 5.4591, 5.5399, 6.4254, 5.2965, 5.827, 10.9599, 16.1667, 5.3134, 0.7067, 10.9076, 11.3685, 5.5783, 5.7924, 10.4599, 16.2356, 6.3369, 5.2259, 5.2025, 5.5609, 5.6226, 5.4202, 6.4733, 5.9774, 10.6091, 10.9434, 5.4197, 5.2786, 10.7286, 5.5954, 10.9766, 10.7281, 5.4455, 5.7361, 48.0845, 11.2724, 0.6244, 5.8851, 10.9065, 6.3684, 5.415, 5.3992, 5.7497, 5.2481, 6.0346, 11.6003, 6.8471, 5.6453, 5.6019, 6.6576, 5.6489, 5.5718, 5.4548, 10.9885, 5.1877, 17.1158, 6.3229, 5.3532, 15.8548, 5.6098, 5.5976, 0.7126, 7.7901, 11.2946, 5.543, 5.2698, 6.0618, 15.9957, 5.5604, 5.4624, 11.3981, 10.6728, 5.5926, 0.7031, 10.8662, 5.2397, 5.4798, 6.2571, 0.8247, 5.4176, 10.9358, 11.0936], '192.168.122.112': [5.6481, 6.2492, 10.499, 1.3008, 5.3587, 10.8161, 6.4039, 0.6554, 10.056, 5.3525, 5.4796, 9.5713, 5.3473, 5.446, 5.2226, 11.2367, 5.615, 5.4817, 5.6827, 10.8397, 11.1206, 5.6341, 18.0471, 11.0486, 27.3361, 5.3396, 5.4891, 6.0327, 16.3276, 11.1442, 5.1911, 11.0714, 10.8011, 5.4309, 5.2617, 11.0116, 10.9842, 5.785, 5.6303, 5.5912, 5.8837, 21.8129, 5.4674, 5.4607, 10.879, 0.7682, 5.8589, 5.3298, 16.4571, 5.8703, 5.3999, 10.7875, 5.3811, 10.8056, 5.6849, 11.2143, 5.5001, 5.6081, 6.5286, 5.3208, 10.7679, 10.8888, 5.4789, 5.6145, 5.3294, 10.3023, 16.4676, 10.74, 11.2553, 16.7859, 5.4939, 11.1814, 0.7432, 10.875, 10.6745, 5.2178, 5.702, 6.0215, 5.3158, 11.1845, 6.1569, 10.9544, 5.6636, 6.1657, 5.4212, 10.8321, 16.017, 5.276, 5.4724, 5.4049, 10.7079, 5.6515, 10.8676, 10.3476, 27.8502, 5.6727, 10.849, 5.723, 0.6135, 6.1522, 5.5027, 5.3561, 5.5144, 5.2495, 5.398, 5.4786, 6.0575, 5.9257, 5.9574, 5.8217, 12.0199, 5.3537, 5.4235, 5.5673, 21.6322, 5.4867, 5.5044, 5.9278, 0.7637, 5.4834, 5.6806, 5.9149, 10.5255, 6.3086, 21.7168, 10.5164, 5.5053, 10.91, 5.7051, 10.3831, 5.2624, 10.9205, 16.2673, 5.6434, 6.1033, 10.9425, 5.6968, 11.1754, 5.8427, 6.7506, 10.879, 10.5689, 5.311, 5.7878, 21.7652, 5.7001, 6.8438, 5.4448, 10.8581, 10.7489, 5.6069, 10.8082, 11.091, 10.9916, 6.6652, 27.1001, 11.4069, 6.4356, 5.475, 5.4274, 5.444, 16.0761, 6.0475, 5.5904, 5.707, 11.2689, 16.0418, 5.3077, 5.4269, 6.053, 5.5728, 5.3754, 11.9078, 5.2564, 1.009, 6.047, 10.9687, 6.8517, 5.4679, 6.1026, 10.4585, 5.5122, 10.4849, 5.7263, 5.4884, 0.6747, 5.7886, 16.6011, 14.1411, 5.6622, 10.7257, 5.2178, 5.6283, 10.6235, 5.331, 5.6868, 5.682, 5.4171, 10.906, 21.462, 0.7079, 11.3447, 5.3556, 5.5151, 10.6771, 5.2311, 10.581, 5.4197, 5.5828, 27.0448, 6.3298, 5.651, 0.5867, 11.4751, 11.6873, 5.291, 10.8697, 10.5946, 5.7473, 5.3089, 5.7254, 21.5836, 5.389, 5.3713, 5.6162, 16.3319, 6.5606, 5.439, 5.4615, 5.2469, 10.463, 5.3692, 15.878, 10.448, 5.4314, 5.4522, 11.0524, 0.4961, 5.9302, 10.7079, 10.4899, 10.5011, 6.3293, 5.8892, 11.9443, 10.9718, 5.6484, 5.79, 5.5132, 0.8354, 32.1815, 5.4803, 5.5993, 5.4669, 11.2259, 11.1561, 10.8767, 5.9085], '192.168.122.111': [5.8558, 5.5561, 5.2116, 0.6452, 5.4474, 10.9515, 5.7352, 0.5703, 17.9102, 5.6572, 5.3613, 6.3508, 6.0792, 16.4437, 5.7573, 5.2655, 11.8327, 5.357, 5.6551, 11.457, 11.0795, 5.5931, 24.3971, 5.4224, 5.383, 9.3052, 5.9376, 7.1592, 5.4293, 6.2439, 5.6384, 5.5845, 5.8784, 10.8082, 5.9433, 5.2636, 10.8206, 5.332, 22.3286, 10.787, 5.2683, 5.4276, 5.403, 5.46, 5.7335, 0.5479, 5.6825, 10.9694, 5.4405, 11.5681, 5.4262, 11.0462, 26.9573, 5.3523, 10.4594, 10.623, 5.4169, 5.5094, 5.7225, 10.6192, 5.2934, 5.2829, 15.7619, 5.2695, 5.4345, 5.3368, 5.3661, 5.8925, 5.6372, 0.9236, 12.4974, 5.2791, 0.4926, 11.4698, 5.2879, 5.7151, 5.4727, 5.3203, 5.6686, 10.9503, 5.4164, 10.9026, 8.096, 6.501, 6.3913, 5.2178, 10.3295, 11.5147, 10.9785, 5.4328, 5.312, 5.8098, 5.3904, 5.6005, 6.1412, 10.9956, 5.923, 5.2733, 5.8913, 10.5574, 5.4662, 10.6947, 5.3473, 10.5798, 5.2681, 10.7987, 5.6329, 5.5687, 6.1777, 11.3938, 5.2643, 16.4814, 6.5451, 11.9801, 10.9353, 27.4227, 17.0324, 5.2271, 0.9251, 5.527, 5.2903, 12.1436, 10.4384, 6.397, 5.5439, 11.2896, 6.3088, 5.3372, 5.7023, 5.4486, 5.7623, 10.798, 5.4221, 5.3465, 16.4859, 11.9269, 6.5989, 5.939, 6.2752, 16.7964, 11.178, 5.3141, 44.0347, 26.7105, 16.1753, 5.9495, 10.7749, 10.8864, 5.4188, 5.8744, 5.8084, 5.6429, 6.1126, 5.3432, 5.7514, 5.837, 5.6646, 5.6348, 6.5279, 5.4107, 5.3439, 5.2655, 5.5215, 6.5169, 11.5561, 5.3921, 5.5921, 11.8272, 5.3267, 6.2244, 21.0905, 10.7136, 16.9685, 5.5485, 1.6887, 16.6304, 5.4731, 6.9683, 5.4965, 6.0554, 19.1669, 5.9469, 5.4073, 10.5243, 5.9805, 5.5702, 5.795, 22.2852, 8.9333, 5.7054, 10.4108, 6.2664, 11.066, 10.6201, 5.2755, 5.4193, 10.9465, 5.5327, 5.5592, 5.7378, 0.7305, 10.5128, 5.955, 5.4576, 5.707, 10.7582, 10.5453, 10.7174, 10.8874, 10.8693, 5.3861, 11.2174, 0.7024, 10.6809, 5.8043, 5.5864, 5.9862, 10.8573, 10.4785, 5.2853, 5.3616, 6.5336, 5.6829, 10.8314, 26.7529, 10.8638, 16.7325, 5.574, 22.316, 6.0129, 11.0035, 5.435, 5.9383, 5.2752, 11.2731, 10.8924, 5.8322, 0.5455, 11.251, 10.9391, 6.1448, 5.3098, 5.7492, 5.8646, 5.3363, 5.893, 5.7905, 5.7786, 16.2387, 0.9139, 5.3391, 5.501, 5.3358, 5.4693, 10.4067, 0.5519, 6.1939, 5.9707], '192.168.122.110': [5.4092, 5.827, 5.6579, 0.7479, 5.5721, 5.7516, 5.3988, 0.6657, 5.9195, 5.3389, 5.3735, 5.8217, 10.7152, 5.3875, 5.2984, 10.957, 5.4619, 5.4786, 5.6207, 5.4164, 21.6162, 5.5416, 11.1911, 10.9546, 11.2357, 6.5899, 6.1104, 5.676, 27.3697, 6.3543, 5.619, 5.4007, 5.3811, 16.3231, 11.0655, 5.3718, 10.9024, 5.7507, 5.8489, 5.3966, 5.4836, 5.486, 11.4126, 10.9227, 5.3561, 0.8814, 10.9489, 10.8643, 5.4927, 10.9093, 10.7763, 5.6334, 5.3473, 10.721, 5.1844, 5.9068, 16.2094, 5.9192, 11.3564, 5.3377, 10.7751, 11.368, 10.9091, 6.6199, 5.4266, 5.2729, 5.5296, 5.3921, 5.785, 5.5213, 5.8496, 5.3513, 0.7768, 6.4666, 5.3921, 5.5029, 21.4705, 10.8073, 5.9123, 5.3189, 6.4068, 16.7916, 5.7111, 5.7409, 7.324, 5.6376, 5.6705, 10.8829, 10.8294, 5.6663, 5.3945, 1.6327, 5.7378, 10.7858, 6.2704, 5.4262, 5.3654, 5.5015, 10.9336, 5.5232, 5.4524, 10.6471, 16.109, 5.2166, 5.3191, 5.2929, 10.6511, 11.7126, 6.0699, 5.6186, 5.8377, 5.8489, 5.7378, 11.1687, 5.4276, 16.9258, 6.0718, 11.5216, 6.6733, 5.6477, 11.0605, 5.585, 5.6965, 5.5754, 10.3896, 5.513, 10.5758, 5.5254, 5.693, 0.7746, 10.4373, 6.4347, 5.4488, 5.6975, 10.952, 5.331, 5.6791, 5.5811, 5.6407, 6.0756, 5.2722, 5.3024, 5.8258, 6.0334, 10.9711, 5.4343, 5.3709, 6.0184, 10.9138, 5.857, 5.477, 23.6154, 11.1318, 7.2563, 6.6438, 6.269, 16.0351, 11.096, 10.4587, 10.9367, 5.6026, 5.2626, 11.1561, 5.8942, 5.2702, 5.5022, 11.471, 6.4766, 10.7594, 6.0732, 10.8888, 10.7138, 5.5461, 5.795, 1.1194, 10.8354, 5.7416, 7.9205, 5.4028, 5.5048, 11.0672, 5.2431, 10.8845, 6.3062, 5.7764, 5.9714, 10.7949, 5.7127, 5.441, 5.6598, 5.6705, 11.4098, 5.8672, 5.4233, 11.2057, 5.6415, 11.1911, 6.0213, 5.7218, 5.8279, 0.7465, 10.5605, 11.7002, 17.1711, 11.1492, 16.6333, 5.9144, 5.2495, 10.8027, 5.836, 5.7113, 5.4207, 6.1719, 5.4612, 5.6927, 5.5792, 16.0811, 5.4541, 11.0543, 10.7427, 5.4469, 5.3904, 5.949, 5.3656, 5.3034, 10.7992, 10.9761, 16.5839, 11.0471, 5.6589, 6.5622, 6.2423, 6.0768, 10.566, 5.8191, 10.9663, 10.9375, 0.8323, 5.6982, 16.8164, 6.0861, 16.8803, 5.827, 11.6854, 15.7967, 6.0148, 5.4636, 6.3913, 5.6694, 16.8345, 0.7224, 5.4395, 6.46, 5.4407, 11.2622, 1.0185, 5.4307, 6.5429]}
cpu9_2_10 = [43.3, 24.4, 1.1, 1.2, 0.8, 0.1, 0.1, 0.8, 0.2, 0.1, 1.2, 0.7, 0.4, 0.8, 0.1, 0.5, 0.4, 0.4, 0.4, 0.6, 1.4, 1.3, 0.4, 0.4, 0.1, 0.0, 2.5, 2.9, 0.3, 0.5, 0.5, 0.1, 0.3, 0.3, 0.1, 0.2, 0.8, 1.1, 0.4, 0.1, 0.2, 0.3, 0.6, 0.4, 0.3, 0.2, 0.2, 1.4, 0.3, 1.2, 1.5, 2.2, 3.8, 4.7, 1.0, 0.5, 0.0, 0.4, 0.1, 0.1, 0.2, 0.2, 0.7, 2.5, 4.1, 1.2, 0.5, 1.3, 0.3, 1.7, 1.2, 0.5, 0.9, 0.5, 0.1, 1.0, 0.3, 0.4, 0.1, 0.2, 0.6, 0.4, 0.9, 1.3, 0.5, 0.0, 0.3, 1.1, 0.5, 1.4, 1.5, 0.1, 0.4, 0.4, 0.6, 0.4, 1.2, 1.4, 0.6, 0.8, 1.0, 0.7, 0.7, 0.3, 3.9, 1.5, 2.2, 1.2, 1.0, 0.2, 1.0, 1.4, 0.2, 0.8, 0.9, 0.6, 0.5, 0.2, 0.7, 1.0, 0.7, 0.0, 0.4, 0.5, 0.1, 0.4, 0.4, 0.3, 0.5, 0.2, 0.2, 0.7, 0.4, 0.6, 0.0, 0.0, 3.4, 3.4, 0.2, 0.0, 1.6, 1.3, 0.2, 0.2, 0.1, 0.3, 0.4, 0.5, 0.8, 0.1, 1.0, 0.9, 0.6, 0.4, 0.5, 0.7, 0.8, 1.1, 1.0, 0.1, 0.2, 1.0, 2.1, 3.6, 2.4, 0.1, 1.4, 0.2, 0.3, 0.2, 1.2, 0.9, 0.3, 0.3, 0.7, 0.8, 1.2, 0.1, 0.5, 0.0, 0.6, 0.6, 0.2, 0.6, 1.0, 0.7, 0.9, 0.6, 0.6, 0.6, 0.3, 1.4, 1.8, 0.7, 2.4, 3.2, 1.0, 0.3, 1.0, 0.6, 1.0, 1.4, 0.9, 0.2, 0.4, 0.4, 0.5, 0.1, 1.1, 1.6, 2.9, 1.5, 0.7, 0.1, 0.5, 0.3, 0.4, 1.1, 1.7, 1.1, 0.4, 1.2, 0.3, 0.7, 0.4, 0.5, 1.1, 1.4, 0.1, 0.7, 0.6, 0.8, 0.3, 0.8, 0.0, 0.7, 1.0, 1.0, 0.1, 0.2, 0.0, 1.2, 0.2, 0.3, 1.2, 1.0, 0.6, 0.6, 0.3, 0.1, 0.3, 5.0, 4.9, 0.1, 0.5, 1.3, 0.9, 0.2]
off_mec9_2_10 = 182
off_cloud9_2_10 = 277
inward_mec9_2_10 = 190
loc9_2_10 = 467
deadlock9_2_10 = [9]
memory9_2_10 = [0.2181, 0.219, 0.2191, 0.2187, 0.2188, 0.2188, 0.2189, 0.219, 0.2193, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2197, 0.2198, 0.2198, 0.2199, 0.2199, 0.2199, 0.2202, 0.2202, 0.2202, 0.2206, 0.2207, 0.2207, 0.2207, 0.221, 0.221, 0.221, 0.2211, 0.2211, 0.2212, 0.2212, 0.2215, 0.2216, 0.2216, 0.2218, 0.2218, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2226, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.223, 0.223, 0.223, 0.223, 0.2232, 0.2232, 0.2233, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2237, 0.2238, 0.2239, 0.224, 0.224, 0.224, 0.2241, 0.2241, 0.2242, 0.2243, 0.2243, 0.2243, 0.2244, 0.2244, 0.2245, 0.2245, 0.2248, 0.2248, 0.2248, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.225, 0.2251, 0.2251, 0.2251, 0.2251, 0.2251, 0.2252, 0.2254, 0.2254, 0.2255, 0.2256, 0.2256, 0.2257, 0.2257, 0.2258, 0.2258, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.2261, 0.2262, 0.2263, 0.2264, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.2271, 0.2271, 0.2271, 0.2277, 0.2277, 0.2277, 0.2277, 0.2278, 0.2278, 0.2278, 0.2278, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2282, 0.2284, 0.2284, 0.2284, 0.2285, 0.2285, 0.2293, 0.2293, 0.2293, 0.2294, 0.2294, 0.2294, 0.2296, 0.2296, 0.2296, 0.2296, 0.2297, 0.2297, 0.2297, 0.2297, 0.2297, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2299, 0.2299, 0.23, 0.2301, 0.2301, 0.2301, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2303, 0.2304, 0.2304, 0.2305, 0.2305, 0.2305, 0.2305, 0.2306, 0.2306, 0.2306, 0.2307, 0.2307, 0.2308, 0.2308, 0.2308, 0.2309, 0.2309, 0.231, 0.231, 0.231, 0.231, 0.231, 0.2311, 0.2311, 0.2312, 0.2312, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2313, 0.2314, 0.2314, 0.2315, 0.2315, 0.2315, 0.2316, 0.2316, 0.2317, 0.2319, 0.2322, 0.2322, 0.2322, 0.2324, 0.2326, 0.2327]
task_received9_2_10 = 926
sent_t9_2_10 = {'124': 274, '126': 302, '125': 350}
cooperate9_2_10 = {'mec': 182, 'cloud': 277}
task_record9_2_10 = {}
outward_mec9_2_10 = 206
offload_check9_2_10 = [172, 32]
timed_out_tasks9_2_10 = 0
|
index = 0
def register(name, func):
global index
index += 1
func_name = name + str(index)
globals()[func_name] = func
return func_name
|
def search(data):
string = ""
number = ""
last_i = ""
for el in data:
if el.isdigit():
number += el
last_i = data.index(el)
continue
elif number == "":
string += el
else:
break
return string, number, last_i
data = input()
rage_msg = ""
while not data == "":
string, number, last_i = search(data)
rage_msg += string.upper() * int(number)
data = data[last_i + 1:]
unique_sym = set(rage_msg)
print(f"Unique symbols used: {len(unique_sym)}")
print(rage_msg)
|
# -*- coding: utf-8 -*-
'''
>>> from opem.Dynamic.Padulles_Hauer import *
>>> import shutil
>>> Test_Vector={"T":343,"E0":0.6,"N0":5,"KO2":0.0000211,"KH2":0.0000422,"KH2O":0.000007716,"tH2":3.37,"tO2":6.74,"t1":2,"t2":2,"tH2O":18.418,"B":0.04777,"C":0.0136,"Rint":0.00303,"rho":1.168,"qMethanol":0.0002,"CV":2,"i-start":0.1,"i-stop":4,"i-step":0.1,"Name":"test3"}
>>> Padulles_Hauer_Data=Dynamic_Analysis(InputMethod=Test_Vector, TestMode=True)
###########
Padulles-Hauer-Model Simulation
###########
Analyzing . . .
I : 0.1
E : 2.9234154992732004 V
FC Efficiency : 0.41518043908246366
FC Power : 0.3238407424843217 W
FC Voltage : 3.2384074248432166 V
PH2 : 0.19717074233280188 atm
PH2O : 0.2426831613626925 atm
PO2 : 0.1906263686382979 atm
Power-Thermal : 0.2911592575156784 W
###########
I : 0.2
E : 2.9234139617015558 V
FC Efficiency : 0.4108963136482338
FC Power : 0.6409982492912448 W
FC Voltage : 3.204991246456224 V
PH2 : 0.1971566919511875 atm
PH2O : 0.24266586776736396 atm
PO2 : 0.1906184358000996 atm
Power-Thermal : 0.5890017507087553 W
###########
I : 0.3
E : 2.9234124240659227 V
FC Efficiency : 0.4083740564879825
FC Power : 0.955595292181879 W
FC Voltage : 3.1853176406062635 V
PH2 : 0.19714264156957312 atm
PH2O : 0.24264857417203542 atm
PO2 : 0.1906105029619013 atm
Power-Thermal : 0.889404707818121 W
###########
I : 0.4
E : 2.9234108863662946 V
FC Efficiency : 0.4065731449109761
FC Power : 1.2685082121222457 W
FC Voltage : 3.171270530305614 V
PH2 : 0.19712859118795872 atm
PH2O : 0.24263128057670688 atm
PO2 : 0.19060257012370302 atm
Power-Thermal : 1.1914917878777547 W
###########
I : 0.5
E : 2.9234093486026658 V
FC Efficiency : 0.4051674903968853
FC Power : 1.5801532125478528 W
FC Voltage : 3.1603064250957056 V
PH2 : 0.19711454080634436 atm
PH2O : 0.24261398698137834 atm
PO2 : 0.1905946372855047 atm
Power-Thermal : 1.4948467874521474 W
###########
I : 0.6
E : 2.923407810775032 V
FC Efficiency : 0.4040118444230801
FC Power : 1.8907754319000147 W
FC Voltage : 3.1512923865000246 V
PH2 : 0.19710049042472996 atm
PH2O : 0.2425966933860498 atm
PO2 : 0.1905867044473064 atm
Power-Thermal : 1.7992245680999854 W
###########
I : 0.7
E : 2.923406272883388 V
FC Efficiency : 0.4030287270042349
FC Power : 2.2005368494431226 W
FC Voltage : 3.1436240706330323 V
PH2 : 0.19708644004311557 atm
PH2O : 0.24257939979072127 atm
PO2 : 0.19057877160910808 atm
Power-Thermal : 2.1044631505568776 W
###########
I : 0.8
E : 2.9234047349277277 V
FC Efficiency : 0.4021718894938075
FC Power : 2.509552590441359 W
FC Voltage : 3.1369407380516985 V
PH2 : 0.19707238966150117 atm
PH2O : 0.24256210619539273 atm
PO2 : 0.1905708387709098 atm
Power-Thermal : 2.4104474095586417 W
###########
I : 0.9
E : 2.9234031969080454 V
FC Efficiency : 0.4014115005665013
FC Power : 2.81790873397684 W
FC Voltage : 3.1310097044187106 V
PH2 : 0.19705833927988675 atm
PH2O : 0.24254481260006414 atm
PO2 : 0.19056290593271147 atm
Power-Thermal : 2.7170912660231608 W
###########
I : 1.0
E : 2.9234016588243374 V
FC Efficiency : 0.40072719160282416
FC Power : 3.1256720945020287 W
FC Voltage : 3.1256720945020287 V
PH2 : 0.19704428889827239 atm
PH2O : 0.2425275190047356 atm
PO2 : 0.1905549730945132 atm
Power-Thermal : 3.0243279054979717 W
###########
I : 1.1
E : 2.9234001206765963 V
FC Efficiency : 0.40010443449551725
FC Power : 3.4328960479715387 W
FC Voltage : 3.1208145890650347 V
PH2 : 0.197030238516658 atm
PH2O : 0.24251022540940706 atm
PO2 : 0.19054704025631486 atm
Power-Thermal : 3.3321039520284623 W
###########
I : 1.2
E : 2.9233985824648183 V
FC Efficiency : 0.39953250222749515
FC Power : 3.7396242208493544 W
FC Voltage : 3.116353517374462 V
PH2 : 0.1970161881350436 atm
PH2O : 0.24249293181407852 atm
PO2 : 0.19053910741811658 atm
Power-Thermal : 3.640375779150646 W
###########
I : 1.3
E : 2.923397044188998 V
FC Efficiency : 0.3990032485837277
FC Power : 4.045892940639 W
FC Voltage : 3.1122253389530767 V
PH2 : 0.19700213775342923 atm
PH2O : 0.24247563821874998 atm
PO2 : 0.19053117457991825 atm
Power-Thermal : 3.9491070593610007 W
###########
I : 1.4
E : 2.923395505849129 V
FC Efficiency : 0.3985103413824903
FC Power : 4.351732927896794 W
FC Voltage : 3.1083806627834245 V
PH2 : 0.19698808737181484 atm
PH2O : 0.24245834462342142 atm
PO2 : 0.19052324174171997 atm
Power-Thermal : 4.258267072103206 W
###########
I : 1.5
E : 2.923393967445207 V
FC Efficiency : 0.3980487608857143
FC Power : 4.657170502362857 W
FC Voltage : 3.1047803349085714 V
PH2 : 0.19697403699020044 atm
PH2O : 0.24244105102809288 atm
PO2 : 0.19051530890352164 atm
Power-Thermal : 4.567829497637144 W
###########
I : 1.6
E : 2.923392428977226 V
FC Efficiency : 0.39761446042126253
FC Power : 4.962228466057358 W
FC Voltage : 3.101392791285848 V
PH2 : 0.19695998660858605 atm
PH2O : 0.24242375743276434 atm
PO2 : 0.19050737606532336 atm
Power-Thermal : 4.877771533942644 W
###########
I : 1.7
E : 2.9233908904451815 V
FC Efficiency : 0.3972041300730298
FC Power : 5.2669267647683755 W
FC Voltage : 3.098192214569633 V
PH2 : 0.19694593622697168 atm
PH2O : 0.2424064638374358 atm
PO2 : 0.19049944322712503 atm
Power-Thermal : 5.188073235231625 W
###########
I : 1.8
E : 2.9233893518490675 V
FC Efficiency : 0.39681502801851076
FC Power : 5.571282993379892 W
FC Voltage : 3.0951572185443843 V
PH2 : 0.19693188584535729 atm
PH2O : 0.24238917024210727 atm
PO2 : 0.19049151038892673 atm
Power-Thermal : 5.498717006620109 W
###########
I : 1.9
E : 2.9233878131888784 V
FC Efficiency : 0.3964448575287326
FC Power : 5.875312788575817 W
FC Voltage : 3.0922698887241142 V
PH2 : 0.1969178354637429 atm
PH2O : 0.24237187664677873 atm
PO2 : 0.19048357755072845 atm
Power-Thermal : 5.809687211424183 W
###########
I : 2.0
E : 2.9233862744646095 V
FC Efficiency : 0.3960916755547374
FC Power : 6.1790301386539035 W
FC Voltage : 3.0895150693269517 V
PH2 : 0.19690378508212852 atm
PH2O : 0.2423545830514502 atm
PO2 : 0.19047564471253012 atm
Power-Thermal : 6.120969861346097 W
###########
I : 2.1
E : 2.923384735676255 V
FC Efficiency : 0.39575382364054146
FC Power : 6.482447631232071 W
FC Voltage : 3.086879824396224 V
PH2 : 0.19688973470051413 atm
PH2O : 0.24233728945612165 atm
PO2 : 0.19046771187433184 atm
Power-Thermal : 6.432552368767931 W
###########
I : 2.2
E : 2.92338319682381 V
FC Efficiency : 0.3954298749226794
FC Power : 6.78557665367318 W
FC Voltage : 3.0843530243968997 V
PH2 : 0.19687568431889974 atm
PH2O : 0.2423199958607931 atm
PO2 : 0.1904597790361335 atm
Power-Thermal : 6.744423346326822 W
###########
I : 2.3
E : 2.923381657907269 V
FC Efficiency : 0.39511859292081414
FC Power : 7.088427556999405 W
FC Voltage : 3.0819250247823504 V
PH2 : 0.19686163393728537 atm
PH2O : 0.24230270226546458 atm
PO2 : 0.19045184619793523 atm
Power-Thermal : 7.0565724430005945 W
###########
I : 2.4
E : 2.9233801189266266 V
FC Efficiency : 0.39481889910524637
FC Power : 7.391009791250212 W
FC Voltage : 3.079587413020922 V
PH2 : 0.19684758355567097 atm
PH2O : 0.242285408670136 atm
PO2 : 0.1904439133597369 atm
Power-Thermal : 7.368990208749787 W
###########
I : 2.5
E : 2.923378579881877 V
FC Efficiency : 0.39452984708947947
FC Power : 7.693332018244849 W
FC Voltage : 3.07733280729794 V
PH2 : 0.19683353317405658 atm
PH2O : 0.24226811507480747 atm
PO2 : 0.19043598052153862 atm
Power-Thermal : 7.681667981755151 W
###########
I : 2.6
E : 2.923377040773016 V
FC Efficiency : 0.39425060188740335
FC Power : 7.995402206276542 W
FC Voltage : 3.0751546947217467 V
PH2 : 0.19681948279244216 atm
PH2O : 0.2422508214794789 atm
PO2 : 0.1904280476833403 atm
Power-Thermal : 7.99459779372346 W
###########
I : 2.7
E : 2.923375501600037 V
FC Efficiency : 0.3939804230873111
FC Power : 8.297227710218774 W
FC Voltage : 3.073047300081027 V
PH2 : 0.19680543241082776 atm
PH2O : 0.24223352788415034 atm
PO2 : 0.190420114845142 atm
Power-Thermal : 8.307772289781228 W
###########
I : 2.8
E : 2.923373962362936 V
FC Efficiency : 0.3937186510874208
FC Power : 8.59881533974927 W
FC Voltage : 3.0710054784818825 V
PH2 : 0.1967913820292134 atm
PH2O : 0.2422162342888218 atm
PO2 : 0.19041218200694368 atm
Power-Thermal : 8.62118466025073 W
###########
I : 2.9
E : 2.9233724230617057 V
FC Efficiency : 0.3934646957478549
FC Power : 8.900171417816479 W
FC Voltage : 3.0690246268332686 V
PH2 : 0.196777331647599 atm
PH2O : 0.24219894069349326 atm
PO2 : 0.1904042491687454 atm
Power-Thermal : 8.934828582183522 W
###########
I : 3.0
E : 2.923370883696343 V
FC Efficiency : 0.39321802696722546
FC Power : 9.201301831033076 W
FC Voltage : 3.0671006103443585 V
PH2 : 0.1967632812659846 atm
PH2O : 0.24218164709816473 atm
PO2 : 0.19039631633054707 atm
Power-Thermal : 9.248698168966925 W
###########
I : 3.1
E : 2.9233693442668414 V
FC Efficiency : 0.39297816680494896
FC Power : 9.502212073343667 W
FC Voltage : 3.0652297010786023 V
PH2 : 0.19674923088437024 atm
PH2O : 0.2421643535028362 atm
PO2 : 0.1903883834923488 atm
Power-Thermal : 9.562787926656334 W
###########
I : 3.2
E : 2.9233678047731946 V
FC Efficiency : 0.39274468285467545
FC Power : 9.8029072840527 W
FC Voltage : 3.0634085262664685 V
PH2 : 0.19673518050275585 atm
PH2O : 0.24214705990750765 atm
PO2 : 0.19038045065415046 atm
Power-Thermal : 9.877092715947303 W
###########
I : 3.3
E : 2.9233662652153996 V
FC Efficiency : 0.3925171826377131
FC Power : 10.103392281094736 W
FC Voltage : 3.0616340245741624 V
PH2 : 0.19672113012114145 atm
PH2O : 0.2421297663121791 atm
PO2 : 0.19037251781595219 atm
Power-Thermal : 10.191607718905265 W
###########
I : 3.4
E : 2.923364725593449 V
FC Efficiency : 0.39229530883366054
FC Power : 10.403671590268678 W
FC Voltage : 3.059903408902552 V
PH2 : 0.19670707973952706 atm
PH2O : 0.24211247271685057 atm
PO2 : 0.19036458497775385 atm
Power-Thermal : 10.506328409731324 W
###########
I : 3.5
E : 2.923363185907339 V
FC Efficiency : 0.39207873520256487
FC Power : 10.703749471030022 W
FC Voltage : 3.0582141345800062 V
PH2 : 0.1966930293579127 atm
PH2O : 0.24209517912152204 atm
PO2 : 0.19035665213955555 atm
Power-Thermal : 10.82125052896998 W
###########
I : 3.6
E : 2.923361646157063 V
FC Efficiency : 0.3918671630816706
FC Power : 11.003629939333312 W
FC Voltage : 3.0565638720370307 V
PH2 : 0.1966789789762983 atm
PH2O : 0.2420778855261935 atm
PO2 : 0.19034871930135727 atm
Power-Thermal : 11.13637006066669 W
###########
I : 3.7
E : 2.923360106342616 V
FC Efficiency : 0.3916603183622587
FC Power : 11.303316787934786 W
FC Voltage : 3.054950483225618 V
PH2 : 0.1966649285946839 atm
PH2O : 0.24206059193086493 atm
PO2 : 0.19034078646315894 atm
Power-Thermal : 11.451683212065214 W
###########
I : 3.8
E : 2.9233585664639925 V
FC Efficiency : 0.3914579488697281
FC Power : 11.602813604498742 W
FC Voltage : 3.0533720011838796 V
PH2 : 0.19665087821306954 atm
PH2O : 0.2420432983355364 atm
PO2 : 0.19033285362496066 atm
Power-Thermal : 11.767186395501259 W
###########
I : 3.9
E : 2.9233570265211877 V
FC Efficiency : 0.3912598220840501
FC Power : 11.902123787796803 W
FC Voltage : 3.051826612255591 V
PH2 : 0.19663682783145514 atm
PH2O : 0.24202600474020786 atm
PO2 : 0.19032492078676233 atm
Power-Thermal : 12.082876212203196 W
###########
Report is generating ...
Done!
>>> Padulles_Hauer_Data["Status"]
True
>>> Padulles_Hauer_Data["P"][5]
1.8907754319000147
>>> Padulles_Hauer_Data["I"][5]
0.6
>>> Padulles_Hauer_Data["V"][5]
3.1512923865000246
>>> Padulles_Hauer_Data["EFF"][5]
0.4040118444230801
>>> Padulles_Hauer_Data["PO2"][5]
0.1905867044473064
>>> Padulles_Hauer_Data["PH2"][5]
0.19710049042472996
>>> Padulles_Hauer_Data["PH2O"][5]
0.2425966933860498
>>> Padulles_Hauer_Data["Ph"][5]
1.7992245680999854
>>> Padulles_Hauer_Data["V0"]
3.1748727715256186
>>> Padulles_Hauer_Data["K"]
-0.03643090556526363
>>> Padulles_Hauer_Data["VE"][5]
3.1530142281864606
>>> Padulles_Hauer_Data=Dynamic_Analysis(InputMethod={}, TestMode=True,PrintMode=False)
>>> Padulles_Hauer_Data["Status"]
False
>>> qH2_Calc(qMethanol=None,CV=2,t1=2,t2=2)
[Error] qH2 Calculation Failed (qMethanol:None, CV:2, t1:2, t2:2)
>>> Test_Vector={"T":2,"E0":-0.6,"N0":5,"KO2":0.0000211,"KH2":0.0000422,"KH2O":0.000007716,"tH2":3.37,"tO2":6.74,"t1":2,"t2":2,"tH2O":18.418,"B":0.04777,"C":0.0136,"Rint":0.00303,"rho":1.168,"qMethanol":0.0002,"CV":2,"i-start":4,"i-stop":0.1,"i-step":-2,"Name":"test3"}
>>> Padulles_Hauer_Data=Dynamic_Analysis(InputMethod=Test_Vector, TestMode=True)
###########
Padulles-Hauer-Model Simulation
###########
Analyzing . . .
I : 0.1
E : -3.00044655685555 V
FC Efficiency : -0.3442890552930171
FC Power : -0.2685454631285534 W
FC Voltage : -2.6854546312855336 V
PH2 : 0.19717074233280188 atm
PH2O : 0.2426831613626925 atm
PO2 : 0.1906263686382979 atm
Power-Thermal : 0.8835454631285535 W
###########
I : 2.0
E : -3.000446727262597 V
FC Efficiency : -0.3633740938974685
FC Power : -5.6686358648005095 W
FC Voltage : -2.8343179324002548 V
PH2 : 0.19690378508212852 atm
PH2O : 0.2423545830514502 atm
PO2 : 0.19047564471253012 atm
Power-Thermal : 17.96863586480051 W
###########
Report is generating ...
Warning : The value of I(>0.1) leads to minus amount of V, please check your inputs
Done!
>>> shutil.rmtree("Padulles-Hauer")
'''
|
class Strategy:
"""A combination of alternative and its belief."""
def __init__(self, alternative, belief):
self.alternative = alternative
self.belief = belief
|
bag = dict()
bag["mathTextBook"] = 12.5
bag["nameTag"] = "Winston"
bag.update({"nameTag": "Grace"})
print(bag)
|
M = 10**9 + 7
def solve(n):
a = n
i = 1
while i < n:
k = n // i
j = min(n // k + 1, n)
a += k * (j - i) * n - k * (k + 1) * (j - i) * (i + j - 1) // 4
a %= M
i = j
return a
for _ in range(int(input())):
n = int(input())
print(solve(n))
|
"""Extra, simple, "builtin-like" functions."""
def subclasstree(cls):
"""Return dictionary whose first key is the class and whose
value is a dict mapping each of its subclasses to their
subclass trees recursively.
"""
classtree = {cls: {}}
for subclass in type.__subclasses__(cls): # long version allows type
classtree[cls].update(subclasstree(subclass))
return classtree
def subclasses(cls):
"""List all subclasses of cls recursively."""
p = {cls}
subclasses = set()
while p:
subclasses.update(p)
q = set()
for base in p:
for subclass in type.__subclasses__(base):
if subclass not in subclasses:
q.add(subclass)
p = q
return subclasses
class PopattrDefault(object):
"""Hacking trick for altering help text docs."""
def __repr__(self):
"""Moves cursor back to beginning of "default=" and overwrites
such that it reads "popattr(...)".
"""
default_text = ("popattr__object, "
"popattr__name, "
"popattr__default="
)
return '\b'*len(default_text) + "..."
def _make_popattr():
"""Makes popattr with an unreachable default argument."""
_default_object = PopattrDefault()
# use stupid long names to prevent keyword args because whatevs.
def popattr(popattr__object,
popattr__name,
popattr__default=_default_object):
"""popattr(object, name[, default]) -> value
Remove a named attribute from object and return the corresponding
value. When the attribute does not exist, default is returned if
given, otherwise an exception is raised.
"""
# Case for NOT raising errors
if popattr__default is not _default_object:
# must return identical to getattr, since there is hasattr
# weirdness
attr = getattr(popattr__object, popattr__name, _default_object)
if attr is not _default_object: # safe in this case
delattr(popattr__object, popattr__name)
return attr # make sure not to return _default_obj
else:
return popattr__default
else:
attr = getattr(popattr__object, popattr__name)
delattr(popattr__object, popattr__name)
return attr
return popattr
popattr = _make_popattr()
del _make_popattr, PopattrDefault
|
string = input('enter string from which vowels are need to be remove ')
string = string.lower()
vowels = ('a','e','i','o','u')
for c in string:
if string in vowels:
new_str = string.replace(c,'')
print(new_str)
|
#
# PySNMP MIB module EdgeSwitch-DOT1X-ADVANCED-FEATURES-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/EdgeSwitch-DOT1X-ADVANCED-FEATURES-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:56:10 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint")
fastPath, = mibBuilder.importSymbols("EdgeSwitch-REF-MIB", "fastPath")
dot1xPaePortNumber, = mibBuilder.importSymbols("IEEE8021-PAE-MIB", "dot1xPaePortNumber")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ModuleIdentity, iso, IpAddress, Integer32, Counter64, ObjectIdentity, NotificationType, Bits, Counter32, Gauge32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "iso", "IpAddress", "Integer32", "Counter64", "ObjectIdentity", "NotificationType", "Bits", "Counter32", "Gauge32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "TimeTicks")
DateAndTime, TextualConvention, RowStatus, MacAddress, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "DateAndTime", "TextualConvention", "RowStatus", "MacAddress", "DisplayString")
fastPathdot1xAdvanced = ModuleIdentity((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36))
fastPathdot1xAdvanced.setRevisions(('2011-01-26 00:00', '2007-05-23 00:00',))
if mibBuilder.loadTexts: fastPathdot1xAdvanced.setLastUpdated('201101260000Z')
if mibBuilder.loadTexts: fastPathdot1xAdvanced.setOrganization('Broadcom Inc')
class Dot1xPortControlMode(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("forceUnauthorized", 1), ("auto", 2), ("forceAuthorized", 3), ("macBased", 4))
class Dot1xSessionTerminationAction(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("default", 1), ("reauthenticate", 2))
agentDot1xEnhancementConfigGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 1))
agentDot1xRadiusVlanAssignment = MibScalar((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xRadiusVlanAssignment.setStatus('current')
agentDot1xDynamicVlanCreationMode = MibScalar((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xDynamicVlanCreationMode.setStatus('current')
agentDot1xEapolFloodMode = MibScalar((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xEapolFloodMode.setStatus('current')
agentDot1xPortConfigGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2))
agentDot1xPortConfigTable = MibTable((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1), )
if mibBuilder.loadTexts: agentDot1xPortConfigTable.setStatus('current')
agentDot1xPortConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1), ).setIndexNames((0, "IEEE8021-PAE-MIB", "dot1xPaePortNumber"))
if mibBuilder.loadTexts: agentDot1xPortConfigEntry.setStatus('current')
agentDot1xPortControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 1), Dot1xPortControlMode().clone('auto')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xPortControlMode.setStatus('current')
agentDot1xGuestVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 2), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xGuestVlanId.setStatus('current')
agentDot1xGuestVlanPeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 300)).clone(90)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xGuestVlanPeriod.setStatus('current')
agentDot1xUnauthenticatedVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 4), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xUnauthenticatedVlan.setStatus('current')
agentDot1xMaxUsers = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 5), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xMaxUsers.setStatus('current')
agentDot1xPortVlanAssigned = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xPortVlanAssigned.setStatus('current')
agentDot1xPortVlanAssignedReason = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("default", 1), ("radius", 2), ("unauthenticatedVlan", 3), ("guestVlan", 4), ("voiceVlan", 5), ("monitorVlan", 6), ("notAssigned", 7))).clone(5)).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xPortVlanAssignedReason.setStatus('current')
agentDot1xPortSessionTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 8), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xPortSessionTimeout.setStatus('current')
agentDot1xPortTerminationAction = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 9), Dot1xSessionTerminationAction().clone(1)).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xPortTerminationAction.setStatus('current')
agentDot1xPortMABenabled = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xPortMABenabled.setStatus('current')
agentDot1xPortMABenabledOperational = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone(2)).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xPortMABenabledOperational.setStatus('current')
agentDot1xClientConfigGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3))
agentDot1xClientConfigTable = MibTable((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1), )
if mibBuilder.loadTexts: agentDot1xClientConfigTable.setStatus('current')
agentDot1xClientConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1), ).setIndexNames((0, "EdgeSwitch-DOT1X-ADVANCED-FEATURES-MIB", "agentDot1xClientMacAddress"))
if mibBuilder.loadTexts: agentDot1xClientConfigEntry.setStatus('current')
agentDot1xClientMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientMacAddress.setStatus('current')
agentDot1xLogicalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xLogicalPort.setStatus('current')
agentDot1xInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xInterface.setStatus('current')
agentDot1xClientAuthPAEstate = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("initialize", 1), ("disconnected", 2), ("connecting", 3), ("authenticating", 4), ("authenticated", 5), ("aborting", 6), ("held", 7), ("forceAuth", 8), ("forceUnauth", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientAuthPAEstate.setStatus('current')
agentDot1xClientBackendState = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("request", 1), ("response", 2), ("success", 3), ("fail", 4), ("timeout", 5), ("idle", 6), ("initialize", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientBackendState.setStatus('current')
agentDot1xClientUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientUserName.setStatus('current')
agentDot1xClientSessionTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientSessionTime.setStatus('current')
agentDot1xClientFilterID = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientFilterID.setStatus('current')
agentDot1xClientVlanAssigned = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientVlanAssigned.setStatus('current')
agentDot1xClientVlanAssignedReason = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 6, 7))).clone(namedValues=NamedValues(("default", 1), ("radius", 2), ("unauthenticatedVlan", 3), ("monitorVlan", 6), ("invalid", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientVlanAssignedReason.setStatus('current')
agentDot1xClientSessionTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientSessionTimeout.setStatus('current')
agentDot1xClientTerminationAction = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 3, 1, 1, 12), Dot1xSessionTerminationAction()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xClientTerminationAction.setStatus('current')
agentDot1xMonitorModeConfigGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 4))
agentDot1xMonitorModeEnabled = MibScalar((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 4, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xMonitorModeEnabled.setStatus('current')
agentDot1xMonitorModeClients = MibScalar((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 4, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xMonitorModeClients.setStatus('current')
agentDot1xNonMonitorModeClients = MibScalar((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 4, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xNonMonitorModeClients.setStatus('current')
agentDot1xAuthHistoryResultsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5))
agentDot1xPortAuthHistoryResultTable = MibTable((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1), )
if mibBuilder.loadTexts: agentDot1xPortAuthHistoryResultTable.setStatus('current')
agentDot1xPortAuthHistoryResultEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1), ).setIndexNames((0, "EdgeSwitch-DOT1X-ADVANCED-FEATURES-MIB", "agentDot1xAuthHistoryResultIfaceIndex"), (0, "EdgeSwitch-DOT1X-ADVANCED-FEATURES-MIB", "agentDot1xAuthHistoryResultIndex"))
if mibBuilder.loadTexts: agentDot1xPortAuthHistoryResultEntry.setStatus('current')
agentDot1xAuthHistoryResultIfaceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultIfaceIndex.setStatus('current')
agentDot1xAuthHistoryResultIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultIndex.setStatus('current')
agentDot1xAuthHistoryResultTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 3), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultTimeStamp.setStatus('current')
agentDot1xAuthHistoryResultAge = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultAge.setStatus('current')
agentDot1xAuthHistoryResultMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 5), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultMacAddress.setStatus('current')
agentDot1xAuthHistoryResultVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultVlanId.setStatus('current')
agentDot1xAuthHistoryResultAuthStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("success", 1), ("failure", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultAuthStatus.setStatus('current')
agentDot1xAuthHistoryResultAccessStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("granted", 1), ("denied", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultAccessStatus.setStatus('current')
agentDot1xAuthHistoryResultFilterID = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultFilterID.setStatus('current')
agentDot1xAuthHistoryResultVlanAssigned = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultVlanAssigned.setStatus('current')
agentDot1xAuthHistoryResultVlanAssignedType = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("default", 1), ("radius", 2), ("unauthenticatedVlan", 3), ("guestVlan", 4), ("voiceVlan", 5), ("monitorVlan", 6), ("notAssigned", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultVlanAssignedType.setStatus('current')
agentDot1xAuthHistoryResultReasonCode = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30))).clone(namedValues=NamedValues(("supplicant-timeout", 1), ("eapol-timeout", 2), ("radius-request-timeout", 3), ("radius-auth-failure", 4), ("radius-auth-comm-failure", 5), ("radius-challenge-process-invalid-nas-port", 6), ("radius-challenge-process-wrong-eap-msg", 7), ("radius-request-send-msg-error", 8), ("radius-accept-process-invalid-nas-port", 9), ("radius-accept-process-wrong-eap-msg", 10), ("radius-accept-filter-assignment-failure", 11), ("radius-accept-diffserv-not-present", 12), ("radius-accept-vlan-assignment-failure", 13), ("vlan-assignment-feature-not-enabled", 14), ("radius-success", 15), ("local-auth-user-not-found", 16), ("local-auth-user-no-access", 17), ("local-auth-md5-validation-failure", 18), ("local-auth-invalid-eap-type", 19), ("local-failure", 20), ("local-success", 21), ("radius-invalid-radius-status", 22), ("guest-vlan-timer-expiry", 23), ("undefined-auth-method", 24), ("reject-auth-method", 25), ("invalid-auth-method", 26), ("auth-method-not-configured", 27), ("unauth-vlan-not-created", 28), ("guest-vlan-not-created", 29), ("radius-accept-invalid-vlan-failure", 30)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultReasonCode.setStatus('current')
agentDot1xAuthHistoryResultsClear = MibScalar((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultsClear.setStatus('current')
agentDot1xPortAuthHistoryResultClearTable = MibTable((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 3), )
if mibBuilder.loadTexts: agentDot1xPortAuthHistoryResultClearTable.setStatus('current')
agentDot1xPortAuthHistoryResultClearEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 3, 1), ).setIndexNames((0, "EdgeSwitch-DOT1X-ADVANCED-FEATURES-MIB", "agentDot1xAuthHistoryResultIfIndex"))
if mibBuilder.loadTexts: agentDot1xPortAuthHistoryResultClearEntry.setStatus('current')
agentDot1xAuthHistoryResultIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 3, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentDot1xAuthHistoryResultIfIndex.setStatus('current')
agentDot1xPortAuthHistoryResultsClear = MibTableColumn((1, 3, 6, 1, 4, 1, 4413, 1, 1, 36, 5, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentDot1xPortAuthHistoryResultsClear.setStatus('current')
mibBuilder.exportSymbols("EdgeSwitch-DOT1X-ADVANCED-FEATURES-MIB", agentDot1xGuestVlanId=agentDot1xGuestVlanId, PYSNMP_MODULE_ID=fastPathdot1xAdvanced, agentDot1xAuthHistoryResultTimeStamp=agentDot1xAuthHistoryResultTimeStamp, agentDot1xAuthHistoryResultVlanAssignedType=agentDot1xAuthHistoryResultVlanAssignedType, Dot1xPortControlMode=Dot1xPortControlMode, agentDot1xMonitorModeEnabled=agentDot1xMonitorModeEnabled, agentDot1xClientFilterID=agentDot1xClientFilterID, agentDot1xDynamicVlanCreationMode=agentDot1xDynamicVlanCreationMode, agentDot1xAuthHistoryResultFilterID=agentDot1xAuthHistoryResultFilterID, agentDot1xAuthHistoryResultIfIndex=agentDot1xAuthHistoryResultIfIndex, agentDot1xPortAuthHistoryResultsClear=agentDot1xPortAuthHistoryResultsClear, agentDot1xClientAuthPAEstate=agentDot1xClientAuthPAEstate, agentDot1xPortVlanAssigned=agentDot1xPortVlanAssigned, agentDot1xMaxUsers=agentDot1xMaxUsers, agentDot1xPortConfigGroup=agentDot1xPortConfigGroup, fastPathdot1xAdvanced=fastPathdot1xAdvanced, agentDot1xAuthHistoryResultsGroup=agentDot1xAuthHistoryResultsGroup, agentDot1xAuthHistoryResultIndex=agentDot1xAuthHistoryResultIndex, agentDot1xAuthHistoryResultReasonCode=agentDot1xAuthHistoryResultReasonCode, agentDot1xAuthHistoryResultMacAddress=agentDot1xAuthHistoryResultMacAddress, agentDot1xPortAuthHistoryResultClearTable=agentDot1xPortAuthHistoryResultClearTable, agentDot1xAuthHistoryResultAge=agentDot1xAuthHistoryResultAge, agentDot1xLogicalPort=agentDot1xLogicalPort, agentDot1xClientTerminationAction=agentDot1xClientTerminationAction, agentDot1xClientConfigEntry=agentDot1xClientConfigEntry, agentDot1xAuthHistoryResultVlanAssigned=agentDot1xAuthHistoryResultVlanAssigned, agentDot1xMonitorModeClients=agentDot1xMonitorModeClients, agentDot1xEnhancementConfigGroup=agentDot1xEnhancementConfigGroup, agentDot1xClientUserName=agentDot1xClientUserName, agentDot1xAuthHistoryResultAccessStatus=agentDot1xAuthHistoryResultAccessStatus, agentDot1xClientConfigGroup=agentDot1xClientConfigGroup, agentDot1xGuestVlanPeriod=agentDot1xGuestVlanPeriod, agentDot1xNonMonitorModeClients=agentDot1xNonMonitorModeClients, agentDot1xAuthHistoryResultVlanId=agentDot1xAuthHistoryResultVlanId, agentDot1xPortAuthHistoryResultClearEntry=agentDot1xPortAuthHistoryResultClearEntry, agentDot1xClientConfigTable=agentDot1xClientConfigTable, agentDot1xPortAuthHistoryResultTable=agentDot1xPortAuthHistoryResultTable, agentDot1xAuthHistoryResultsClear=agentDot1xAuthHistoryResultsClear, agentDot1xPortTerminationAction=agentDot1xPortTerminationAction, Dot1xSessionTerminationAction=Dot1xSessionTerminationAction, agentDot1xPortMABenabledOperational=agentDot1xPortMABenabledOperational, agentDot1xInterface=agentDot1xInterface, agentDot1xUnauthenticatedVlan=agentDot1xUnauthenticatedVlan, agentDot1xClientVlanAssignedReason=agentDot1xClientVlanAssignedReason, agentDot1xEapolFloodMode=agentDot1xEapolFloodMode, agentDot1xPortConfigEntry=agentDot1xPortConfigEntry, agentDot1xClientMacAddress=agentDot1xClientMacAddress, agentDot1xAuthHistoryResultAuthStatus=agentDot1xAuthHistoryResultAuthStatus, agentDot1xPortVlanAssignedReason=agentDot1xPortVlanAssignedReason, agentDot1xPortAuthHistoryResultEntry=agentDot1xPortAuthHistoryResultEntry, agentDot1xAuthHistoryResultIfaceIndex=agentDot1xAuthHistoryResultIfaceIndex, agentDot1xRadiusVlanAssignment=agentDot1xRadiusVlanAssignment, agentDot1xPortConfigTable=agentDot1xPortConfigTable, agentDot1xClientSessionTime=agentDot1xClientSessionTime, agentDot1xClientBackendState=agentDot1xClientBackendState, agentDot1xClientVlanAssigned=agentDot1xClientVlanAssigned, agentDot1xClientSessionTimeout=agentDot1xClientSessionTimeout, agentDot1xPortControlMode=agentDot1xPortControlMode, agentDot1xPortSessionTimeout=agentDot1xPortSessionTimeout, agentDot1xPortMABenabled=agentDot1xPortMABenabled, agentDot1xMonitorModeConfigGroup=agentDot1xMonitorModeConfigGroup)
|
#!/usr/bin/python
class User(object):
def __init__(self,conn, addr,name=None):
self.name = name
self.conn = conn
self.addr = addr
class Player(User):
def __init__(self,conn,addr,name=None):
super(Player,self).__init__(conn,addr,name)
self.passwd = None
self.score = 0
self.guesses = 0
def send(self,msg):
self.conn.send(msg)
def recv(self):
d = self.conn.recv(4096)
if d == "":
return None
else:
return d
|
# Given a binary tree and a number ‘S’,
# find all paths in the tree such that the sum of all the node values of each path equals ‘S’.
# Please note that the paths can start or end at any node
# but all paths must follow direction from parent to child(top to bottom).
# worst: O(N^2) best:O(NlogN)
# space: O(N)
class TreeNode:
def __init__(self, value) -> None:
self.value = value
self.left, self.right = None, None
def count_paths(root, sum_value):
return count_paths_recursive(root, sum_value, [])
def count_paths_recursive(current_node, sum_value, current_path):
if current_node is None:
return 0
current_path.append(current_node.value)
path_count, path_sum = 0, 0
for i in range(len(current_path)-1, -1, -1):
path_sum += current_path[i]
if path_sum == sum_value:
path_count += 1
path_count += count_paths_recursive(current_node.left, sum_value, current_path)
path_count += count_paths_recursive(current_node.right, sum_value, current_path)
del current_path[-1]
return path_count
root = TreeNode(12)
root.left = TreeNode(7)
root.right = TreeNode(1)
root.left.left = TreeNode(4)
root.right.left = TreeNode(10)
root.right.right = TreeNode(5)
print(count_paths(root, 11))
|
"""
PYTHON LIST SLICING: FLAT LIST
"""
__author__ = 'Sol Amour - [email protected]'
__twitter__ = '@solamour'
__version__ = '1.0.0'
# SYNTAX: [ startCut : endCut ]
# startCut = This is the first item included in the Slice
# endCut = This is the last item included in the Slice
# NOTES:
# All parameters have to be integers
# A colon is required to demarcate slicing
# The first value is the start point. If left empty, it
# starts at the beginning
# The second value is the end point. If left empty, it takes
# the entire list from the chosen start point
# Using -1 at the end will give the second to last item in a
# list. Using -X will come backwards from the end of the list
# (i.e -2 finishes the Slice at the third to last item)
# A slice of list[ : ] will clone the list
# A multi-tiered numbers list
numbers = [ [ 0, 1, 2, 3 ], [ 4, 5, 6, 7, 8 ] ]
chosenRangeInSublists = [ n[ 1 : -1 ] for n in numbers ] # Using
# a List Comprehension to get all items from the 1st index to
# the second to last index in all sublists
# The out port using our List Slices
OUT = chosenRangeInSublists
|
def pkcs_7_padding(block,N=16):
if N >= 256:
raise Exception('N is too large.')
num_remaining = N - len(block) % N
return block + (chr(num_remaining) * num_remaining).encode('utf-8')
if __name__ == '__main__':
print(pkcs_7_padding(b'YELLOW SUBMARINE', 20))
|
#
# @lc app=leetcode id=487 lang=python3
#
# [487] Max Consecutive Ones II
#
# @lc code=start
class Solution:
def findMaxConsecutiveOnes(self, nums):
curzero = 0
lp = 0
rp = 0
mxlen = 0
while rp < len(nums):
if nums[rp] == 0:
curzero += 1
if curzero > 1:
mxlen = max(mxlen, rp - lp)
while curzero > 1:
if nums[lp] == 0:
curzero -= 1
lp += 1
rp += 1
mxlen = max(mxlen, rp - lp)
return mxlen
a = Solution()
b = a.findMaxConsecutiveOnes([1,0,1,1,0,1])
print(b)
# @lc code=end
|
"""Simple dummy generator for the Pairsum problem, outputting a trivial instance."""
n = 0
with open("input", "r") as input:
n = int(input.readline())
with open("output", "w") as output:
output.write(" ".join("1" for i in range(n)))
output.write("\n")
output.write("0 1 2 3")
|
input = """
1 2 2 1 3 4
1 3 2 1 2 4
1 4 0 0
0
3 b
2 a
0
B+
0
B-
1
0
1
"""
output = """
{b}
{a}
"""
|
number1 = int (input())
number2 = int (input())
if number1 >= number2:
print('Greater number: ', number1)
elif number2 > number1:
print('Greater number: ', number2)
else:
print()
|
# header
"""
#Format\tALLC
#Species\thuman
#Genome\thg19
#MethylomeType\tsingle-cell
#Technology\tsnmC-seq2
#ContextLength\t3
#MethylationBase\t0
#mCContent\tCNN
#Generator\tALLCools
"""
|
# -*- coding: utf-8 -*-
name = 'turret_resolver'
version = '1.1.3.0'
authors = ['wen.tan',
'ben.skinner',
'daniel.flood']
build_requires = ['python']
build_command = 'rez env python -c "python {root}/rezbuild.py {install}"'
requires = ['pgtk', 'tk_core']
def commands():
env.PYTHONPATH.append('{root}/python')
env.RESOLVE.set("{root}/bin/turret-resolver.bat")
env.PATH.append('{root}/bin')
|
def sum(num):
return num + num
def squre(num):
return num * num
|
# lextab.py. This file automatically created by PLY (version 2.2). Don't edit!
_lextokens = {'HEADER_NAME': None, 'IDENTIFIER': None, 'PP_NUMBER': None, 'CHARACTER_CONSTANT': None, 'STRING_LITERAL': None, 'OTHER': None, 'PTR_OP': None, 'INC_OP': None, 'DEC_OP': None, 'LEFT_OP': None, 'RIGHT_OP': None, 'LE_OP': None, 'GE_OP': None, 'EQ_OP': None, 'NE_OP': None, 'AND_OP': None, 'OR_OP': None, 'MUL_ASSIGN': None, 'DIV_ASSIGN': None, 'MOD_ASSIGN': None, 'ADD_ASSIGN': None, 'SUB_ASSIGN': None, 'LEFT_ASSIGN': None, 'RIGHT_ASSIGN': None, 'AND_ASSIGN': None, 'XOR_ASSIGN': None, 'OR_ASSIGN': None, 'PERIOD': None, 'ELLIPSIS': None, 'LPAREN': None, 'NEWLINE': None, 'PP_DEFINE': None, 'PP_DEFINE_NAME': None, 'PP_DEFINE_MACRO_NAME': None, 'PP_MACRO_PARAM': None, 'PP_STRINGIFY': None, 'PP_IDENTIFIER_PASTE': None, 'PP_END_DEFINE': None}
_lexreflags = 0
_lexliterals = ''
_lexstateinfo = {'INITIAL': 'inclusive', 'DEFINE': 'exclusive'}
_lexstatere = {'INITIAL': [('(?P<t_ANY_directive>\\#\\s+(\\d+)\\s+"([^"]+)"[ \\d]*\\n)|(?P<t_ANY_punctuator>(\\.\\.\\.|\\+\\+|\\|\\||>>=|<<=|\\+=|\\*=|\\^=|\\|=|-=|/=|%=|&=|>>|<<|--|->|&&|<=|>=|==|!=|<:|:>|<%|%>|\\)|\\[|\\.|\\+|\\*|\\^|\\||\\?|;|{|}|,|:|=|]|&|!|~|-|/|%|<|>))', [None, ('t_ANY_directive', 'ANY_directive'), None, None, ('t_ANY_punctuator', 'ANY_punctuator')]), ('(?P<t_INITIAL_identifier>[a-zA-Z_]([a-zA-Z_]|[0-9])*)', [None, ('t_INITIAL_identifier', 'INITIAL_identifier')]), ('(?P<t_ANY_float>(?P<p1>[0-9]+)?(?P<dp>[.]?)(?P<p2>(?(p1)[0-9]*|[0-9]+))(?P<exp>(?:[Ee][+-]?[0-9]+)?)(?P<suf>([FfLl]|d[dfl]|D[DFL]|[fFdD][0-9]+x?)?)(?!\\w))', [None, ('t_ANY_float', 'ANY_float'), None, None, None, None, None]), ('(?P<t_ANY_int>(?P<p1>(?:0x[a-fA-F0-9]+)|(?:0[0-7]*)|(?:[1-9][0-9]*))(?P<suf>[uUlL]*))', [None, ('t_ANY_int', 'ANY_int'), None, None]), ('(?P<t_ANY_character_constant>L?\'(\\\\.|[^\\\\\'])+\')|(?P<t_ANY_string_literal>L?"(\\\\.|[^\\\\"])*")|(?P<t_ANY_lparen>\\()|(?P<t_INITIAL_newline>\\n)|(?P<t_INITIAL_pp_define>\\#define)', [None, ('t_ANY_character_constant', 'ANY_character_constant'), None, ('t_ANY_string_literal', 'ANY_string_literal'), None, ('t_ANY_lparen', 'ANY_lparen'), ('t_INITIAL_newline', 'INITIAL_newline'), ('t_INITIAL_pp_define', 'INITIAL_pp_define')])], 'DEFINE': [('(?P<t_ANY_directive>\\#\\s+(\\d+)\\s+"([^"]+)"[ \\d]*\\n)|(?P<t_ANY_punctuator>(\\.\\.\\.|\\+\\+|\\|\\||>>=|<<=|\\+=|\\*=|\\^=|\\|=|-=|/=|%=|&=|>>|<<|--|->|&&|<=|>=|==|!=|<:|:>|<%|%>|\\)|\\[|\\.|\\+|\\*|\\^|\\||\\?|;|{|}|,|:|=|]|&|!|~|-|/|%|<|>))', [None, ('t_ANY_directive', 'ANY_directive'), None, None, ('t_ANY_punctuator', 'ANY_punctuator')]), ('(?P<t_DEFINE_identifier>[a-zA-Z_]([a-zA-Z_]|[0-9])*)', [None, ('t_DEFINE_identifier', 'DEFINE_identifier')]), ('(?P<t_ANY_float>(?P<p1>[0-9]+)?(?P<dp>[.]?)(?P<p2>(?(p1)[0-9]*|[0-9]+))(?P<exp>(?:[Ee][+-]?[0-9]+)?)(?P<suf>([FfLl]|d[dfl]|D[DFL]|[fFdD][0-9]+x?)?)(?!\\w))', [None, ('t_ANY_float', 'ANY_float'), None, None, None, None, None]), ('(?P<t_ANY_int>(?P<p1>(?:0x[a-fA-F0-9]+)|(?:0[0-7]*)|(?:[1-9][0-9]*))(?P<suf>[uUlL]*))', [None, ('t_ANY_int', 'ANY_int'), None, None]), ('(?P<t_ANY_character_constant>L?\'(\\\\.|[^\\\\\'])+\')|(?P<t_ANY_string_literal>L?"(\\\\.|[^\\\\"])*")|(?P<t_ANY_lparen>\\()|(?P<t_DEFINE_newline>\\n)|(?P<t_DEFINE_pp_param_op>(\\#\\#)|(\\#))', [None, ('t_ANY_character_constant', 'ANY_character_constant'), None, ('t_ANY_string_literal', 'ANY_string_literal'), None, ('t_ANY_lparen', 'ANY_lparen'), ('t_DEFINE_newline', 'DEFINE_newline'), ('t_DEFINE_pp_param_op', 'DEFINE_pp_param_op')])]}
_lexstateignore = {'INITIAL': ' \t\x0b\x0c\r', 'DEFINE': ' \t\x0b\x0c\r'}
_lexstateerrorf = {'INITIAL': 't_INITIAL_error', 'DEFINE': 't_DEFINE_error'}
|
num_students = int(input())
students = {}
for _ in range(num_students):
name, grade = input().split(' ')
if name not in students:
students[name] = []
students[name].append(float(grade))
for name, grades in students.items():
average_grade = sum(grades) / len(grades)
grades = [f'{x:.2f}' for x in grades]
print(f"{name} -> {' '.join(grades)} (avg: {average_grade:.2f})")
|
#Paula Duffy 2018-02-06
#Collatz Conjecture - Week 3 Exercise
n = int(input("Please enter an integer: "))
while n > 1:
if n % 2 == 0:
n = n // 2 #divide by 2 if integer is even
print (n)
elif n % 2 == 1:
n = (n * 3) + 1 #multiply by 3 and add 1 if integer is not even
print (n)
|
n = float(input('Digite um valor: '))
if n % 2 == 0:
print(f'{n} é PAR!')
else:
print(f'{n} é ÍMPAR!')
|
def add(a,b):
return a+b
def sub(a,b):
return a-b
def mul(a,b):
return a*b
def div(a,b):
return a/b
print(__name__)
|
class Node(object):
def __init__(self, data):
"""Initialize this node with the given data."""
self.data = data
self.next = None
self.prev = None
def __repr__(self):
"""Return a string representation of this node."""
return 'Node({!r})'.format(self.data)
class Doubly_LinkedList(object):
def append(item):
new_node = Node(item)
self.tail.next = new_node
new_node.prev = self.tail
self.tail = new_node
def prepend():
new_node = Node(item)
self.head.prev = new_node
new_node.next = self.head
self.head = new_node
def find():
"""Return an item from this linked list satisfying the given quality.
Best case running time: Omega(1) if item is near the head of the list.
Worst case running time: O(n) if item is near the tail of the list or
not present and we need to loop through all n nodes in the list."""
# Start at the head node
node = self.head # Constant time to assign a variable reference
# Loop until the node is None, which is one node too far past the tail
while node is not None: # Up to n iterations if we don't exit early
# Check if this node's data satisfies the given quality function
if quality(node.data): # Constant time to call quality function
# We found data satisfying the quality function, so exit early
return node.data # Constant time to return data
# Skip to the next node
node = node.next # Constant time to reassign a variable
# We never found data satisfying quality, but have to return something
return None # Constant time to return None
def delete():
pass
|
class LatchApp(object):
def __init__(self, appid, secret):
"""
Class constructor
:param appid: App ID
:param secret: Secret code
"""
self._appid = appid
self._secret = secret
self._proxy = None
@property
def appid(self):
"""
Returns App ID
:return: App ID
"""
return self._appid
@property
def secret(self):
"""
Returns Secret
:return: Secret
"""
return self._secret
@property
def proxy(self):
"""
Returns Proxy
:return: Proxy
"""
return self._proxy
def setProxy(self, host, port):
"""
Set proxy data
:param host: Proxy Host
:param port: Proxy Port
"""
self._proxy = {
'http': '{}:{}'.format(host, port),
'https': '{}:{}'.format(host, port)
}
|
class ObjectView(dict):
def __init__(self, *args, **kwargs):
super(ObjectView, self).__init__(**kwargs)
for arg in args:
if not arg:
continue
elif isinstance(arg, dict):
for key, val in arg.items():
self[key] = val
else:
raise TypeError()
for key, val in kwargs.items():
self[key] = val
def __setattr__(self, key, value):
if not hasattr(ObjectView, key):
self[key] = value
else:
raise
def __setitem__(self, name, value):
value = ObjectView(value) if isinstance(value, dict) else value
super(ObjectView, self).__setitem__(name, value)
def __getattr__(self, item):
return self.__getitem__(item)
def __getitem__(self, name):
if name not in self:
self[name] = {}
return super(ObjectView, self).__getitem__(name)
def __delattr__(self, name):
del self[name]
|
"""
Author: Marcos Oliveira
Github: https://github.com/the-physicist
Date: 18/10/21
"""
# 7 - Faça um Programa que calcule a área de um quadrado, em seguida mostre o dobro desta área para o usuário.
lado = float(input("Qual o comprimento do lado do quadrado? \n"))
area = lado * lado
area_dobro = area * 2
print("O dobro da area é ", area_dobro)
|
def fermat(num):
"""Runs a number through 1 simplified iteration of Fermat's test."""
if ((2 ** num) - 2) % num == 0:
return True
else: return False
def gen_primes(maxnum):
"""Generates primes using fermat"""
if maxnum % 2 == 0: # finds odd number
maxnum -= 1
num = maxnum
while num > 1: # iterates from higher to smaller numbers
if fermat(num):
yield num
num -= 2
|
# Problem:
# Write a program that reads a number of integer numbers entered by the user and sums them.
num_of_loops = int(input())
sum = 0;
for i in range(1, num_of_loops + 1):
num = int(input())
sum += num
print(sum)
|
#!/usr/bin/env python
scores = {
"pullups": [(4,20), (5,23), (5,23), (5,23), (5,21), (5,20), (5,19), (4,19)],
"crunches": [
(70,105),
(70,110),
(70,115),
(70,115),
(70,110),
(65,105),
(50,100),
(40,100),
],
"run": [
(18 * 60,27 * 60 + 40),
(18 * 60,27 * 60 + 40),
(18 * 60,28 * 60 + 00),
(18 * 60,28 * 60 + 40),
(18 * 60,28 * 60 + 40),
(18 * 60 + 30,29 * 60 + 40),
(19 * 60,30 * 60 + 40),
(19 * 60 + 30,33 * 60 + 40),
],
}
def pullup_score(lower, upper):
pullups = int(input("Pullups: "))
if pullups > upper:
return 100
elif pullups < lower:
return 0
else:
range = upper - lower
pct_through = (pullups - lower) / range * 100
return int(pct_through)
def run_score(lower, upper):
runtime = input("Runtime: ")
hh, mm = [int(v) for v in runtime.split(":")]
runtime = hh*60 + mm
if runtime > upper:
return 100
elif runtime < lower:
return 0
else:
range = upper - lower
pct_through = (runtime - lower) / range * 100
return int(100-pct_through)
def crunch_score(lower, upper):
crunches = int(input("Crunches: "))
if crunches > upper:
return 100
elif crunches < lower:
return 0
else:
range = upper - lower
pct_through = (crunches - lower) / range * 100
return int(pct_through)
def score_bracket(age):
if age >= 17 and age <= 20:
return 0
elif age >= 21 and age <= 25:
return 1
elif age >= 26 and age <= 30:
return 2
elif age >= 31 and age <= 35:
return 3
elif age >= 36 and age <= 40:
return 4
elif age >= 41 and age <= 45:
return 5
elif age >= 46 and age <= 50:
return 6
elif age >= 51:
return 7
else:
print("Age must be >= 17")
age = input("Age: ")
return score_bracket(age)
def main():
age = 30
bracket = score_bracket(age)
pullup = pullup_score(*scores['pullups'][bracket])
print(pullup)
crunch = crunch_score(*scores['crunches'][bracket])
print(crunch)
run = run_score(*scores['run'][bracket])
print(run)
print("Total:", pullup + crunch + run, "out of 300")
if __name__ == "__main__":
main()
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.