content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
# Group the Numbers
# Partitioning : quicksort !!
# Time - O(n), Space- O(1)
# Lomuto's partitioning O(n) time, in-place
def solve(arr):
even = -1 # index from the beginning (r -- red == even)
i = 0 # current pointer
while i < len(arr): # O(n)
if arr[i] % 2 == 0:
even += 1
arr[i], arr[even] = arr[even], arr[i]
i += 1
return arr
if __name__ == '__main__':
arr = [1, 5, 2, 3, 4, 4, 4, 5, 2, 6, 8, 9, 9]
def solve(arr):
left_pointer = -1
current_pointer = 0
while current_pointer < len(arr) - 1:
if (arr[current_pointer] % 2 == 0):
left_pointer += 1
arr[current_pointer], arr[left_pointer] = arr[left_pointer], arr[current_pointer]
current_pointer += 1
return arr | def solve(arr):
even = -1
i = 0
while i < len(arr):
if arr[i] % 2 == 0:
even += 1
(arr[i], arr[even]) = (arr[even], arr[i])
i += 1
return arr
if __name__ == '__main__':
arr = [1, 5, 2, 3, 4, 4, 4, 5, 2, 6, 8, 9, 9]
def solve(arr):
left_pointer = -1
current_pointer = 0
while current_pointer < len(arr) - 1:
if arr[current_pointer] % 2 == 0:
left_pointer += 1
(arr[current_pointer], arr[left_pointer]) = (arr[left_pointer], arr[current_pointer])
current_pointer += 1
return arr |
class Learner(object):
"""docstring for Learner"""
def __init__(self, model, seed=None):
super(Learner, self).__init__()
self.model = model
self.seed = seed
def next(self, pool, step):
raise Exception("Undefined next function")
def fit(self, X, y):
raise Exception("Undefined fit function")
def predict(self,X):
return self.model.predict(X)
def predict_proba(self, X):
return self.model.predict_proba(X)
def _argmax_x(self, pool, step):
raise Exception("Undefined objective function") | class Learner(object):
"""docstring for Learner"""
def __init__(self, model, seed=None):
super(Learner, self).__init__()
self.model = model
self.seed = seed
def next(self, pool, step):
raise exception('Undefined next function')
def fit(self, X, y):
raise exception('Undefined fit function')
def predict(self, X):
return self.model.predict(X)
def predict_proba(self, X):
return self.model.predict_proba(X)
def _argmax_x(self, pool, step):
raise exception('Undefined objective function') |
# see https://www.codewars.com/kata/5a092d9e46d843b9db000064/solutions/python
def solve(arr):
arr = sorted(arr)
i, j = 0, -1
while True:
if arr[i] + arr[j] != 0:
print(arr[i], arr[j], arr[i+1], arr[j-1])
if arr[i+1] + arr[j] == 0:
return arr[i]
else:
if arr[i + 1] != arr[i]:
return arr[j]
else:
return arr[i]
else:
i += 1
j -= 1
#print(solve([639, 103, 317, -306, 987, -597, -872, 117, 164, -456, 595, -217, 726, -944, -449, 449, 829, 148, 576, -17, -724, 758, 685, 377, -392, -152, 597, -679, -726, 715, 345, 351, 581, -639, 992, -282, 724, -922, -715, -740, -829, -820, -152, -595, -987, -377, 618, -685, -23, -103, 510, 416, -117, 135, 679, 356, 436, -192, 217, -164, -618, -947, -308, -424, 944, -149, 820, -436, -99, 99, -788, 947, -732, -939, 777, 495, -963, -641, -279, -577, 279, 380, 641, -380, -541, -345, -677, -581, 401, -958, 896, -755, 275, 528, -135, 192, -576, 902, 958, -530, 306, -351, 456, 149, 732, 530, 23, 282, -528, -777, -416, -401, 44, -902, 755, -816, 541, -317, 872, 936, 939, 642, 816, 424, -758, -992, 740, 788, 922, -495, -148, -356, 577, -896, -510, 308, -275, -936, 963, 17, -843, 392, 843, -642, -44, 677]) == -152)
#print(solve([1,-1,2,-2,3]) == 3)
#print(solve([-3,1,2,3,-1,-4,-2]) == -4)
#print(solve([1,-1,2,-2,3,3]) == 3)
#print(solve([-110,110,-38,-38,-62,62,-38,-38,-38]) == -38)
#print(solve([ -9,-105,-9,-9,-9,-9,105]) == -9)
| def solve(arr):
arr = sorted(arr)
(i, j) = (0, -1)
while True:
if arr[i] + arr[j] != 0:
print(arr[i], arr[j], arr[i + 1], arr[j - 1])
if arr[i + 1] + arr[j] == 0:
return arr[i]
elif arr[i + 1] != arr[i]:
return arr[j]
else:
return arr[i]
else:
i += 1
j -= 1 |
'''
Assigment No: 1 - Grading Logic Assigment
Author's Name: Umaima Khurshid Ahmad
Youtube Link: https://youtu.be/SY_c813y6H0
Date: 04/05/2020
'I have not given or received any unauthorized assistance on this assignment'
'''
def computeFinalGrade():
'''returns total score and grade of the student
it gives the final score of the students assignment
The function is further divided into further submodules the returns their scores if any:
1 - Intial Grading Check Questions Score - initalGradingCheck()
2 - Code Performance Check Questions Score - codeGradingCheck()
3 - Late Submission Questions Score - checkForLateSubmission(mTotalComputedMarks)
'''
initalGradingCheckMarks = initalGradingCheck()
codeGradingOverAllMarks = 0.0
if initalGradingCheckMarks > 0: # if the user has already filled then intial questions response move further to check code perfomance questions
codeGradingOverAllMarks = codeGradingCheck()
if codeGradingOverAllMarks > 0:
mTotalComputedMarks = initalGradingCheckMarks + codeGradingOverAllMarks
checkForLateSubmissionMarks = checkForLateSubmission(mTotalComputedMarks)
if(checkForLateSubmissionMarks == 0): # if its not late submission then commutes just inital Grading Marks addition to the Code perfomance marks
mTotalComputedMarks = initalGradingCheckMarks + codeGradingOverAllMarks
else:
mTotalComputedMarks = checkForLateSubmissionMarks
mTotalGrade = str(int(mTotalComputedMarks)) + '/70' + ' Grade - ' + gradingLogic(int(mTotalComputedMarks))
print('\033[1;32;40m The final score of the student is ' + mTotalGrade) # Total marks statement in color green(32 color code) format 1 =style type,
else:
print('\033[1;31;40m Failed to update score, please retry with correct values')
def initalGradingCheck():
'''returns the score of the inital questions by asking the user for
which each each questions answer in either true or false -
adding each answers to a list
'''
input('-- Assignment Grading Software - Enter Y or yes for a true response AND N or no for a false response --')
initalGradingCheckQuestionsIndex = 0
eachSubModuleScore = 10
mIntialGradingCheckList = [] #intailzation of list to store all the true answers of the questions. (to many if else statments would have been expensive)
mFileFormat = booleanHelper((input('Is the assignment submitted as a single uncompressed .py file?' +' ' ))) # question one response
mIntialGradingCheckList.insert(initalGradingCheckQuestionsIndex,mFileFormat) #inserting boolean response to list
mStudentNameAndDateVerification = booleanHelper((input(
'\nDoes the assignment contain author\'s name and date?' +' ' ))) # question two response
mIntialGradingCheckList.insert(initalGradingCheckQuestionsIndex + 1 ,mStudentNameAndDateVerification)
IsHonorStatement = booleanHelper((input(
'\nDoes the assignment contain this statement on the top of the code'
+ ' ' + '"I have not given or received any unauthorized assistance on this assignment"?'
+ ' '))) # question three response
mIntialGradingCheckList.insert(initalGradingCheckQuestionsIndex + 1,IsHonorStatement)
IsYoutubeLink = youtubeLinkCheckSteps() # question four response
mIntialGradingCheckList.insert(initalGradingCheckQuestionsIndex + 1,IsYoutubeLink)
studentIntialMarks = 0 # inital students marks
for trueValues in mIntialGradingCheckList:
if trueValues == True:
studentIntialMarks = studentIntialMarks + eachSubModuleScore #adding submodule score for each true answer
if studentIntialMarks > 0:
return studentIntialMarks
return 0
def codeGradingCheck():
'''returns the total Code perfomance score based on the questions
user inputs the float values for each question
'''
input('\n\n-- On a scale from 0 - 10, Answer the following questions to evaluate further -- Press Enter to countinue')
correctnessOfCodeMarks = float(input('\nWhat points would be give for the correctness of the code?'
+' '))
eleganceOfCodeMarks = float(input('\nWhat points would be give for the elegance of the code?'
+' '))
qualityDiscussionOfCodeMarks = float(input('\nWhat points would be give for the '
+'quality of the discussion in the YouTube video?'+' ' ))
if rangeCheckOfCodePerfomanceMarks(
correctnessOfCodeMarks,
eleganceOfCodeMarks,qualityDiscussionOfCodeMarks) == True:
totalCodeGradingMarks = correctnessOfCodeMarks + eleganceOfCodeMarks + qualityDiscussionOfCodeMarks
return totalCodeGradingMarks # returns sum of answers of all the questions
else:
print('\033[1;31;40m\nThe entereted marks for each answer should be between the range of 0 and 10') # color code for red = 31
return 0
def rangeCheckOfCodePerfomanceMarks(
correctnessOfCodeMarks,
eleganceOfCodeMarks,
qualityDiscussionOfCodeMarks):
''' returns true if all the three parameters are less than 10 and greater than 0 '''
if 0 <= correctnessOfCodeMarks and eleganceOfCodeMarks and qualityDiscussionOfCodeMarks <= 10: return True
return False
def booleanHelper(userInputValue):
'''returns boolean response by to parsing the users response to some questions
'''
if userInputValue.lower() == 'y' or userInputValue == 'yes': # answer True
return True
elif userInputValue.lower() == 'n' or userInputValue == 'no': # answer False
print('\033[1;31;40m Student has been awarded grade 0')
exit()
else:
print('\nIncorrect input found, To proceed please try again by entering Y or N only') # In case the user enters invalid response
exit() # exit from the code if incorrect value
return None
def youtubeLinkCheckSteps():
'''returns boolean value on the bases of 3 subchecks:
1 - YouTube Link Given?
2 - Is video unlisted?
3 - Is Duration 3 mintues?
'''
youtubeLinkDurationCheck = False
youTubeUnlistedVideo = False
isYouTubeLinkAviablable = booleanHelper((input('\nIs the video youtube link added?'))) # question four- submodule response
if isYouTubeLinkAviablable:
youTubeLinkDurationCheck = booleanHelper((input('\nIs the provided YouTube video of 3-minutes?' + ' '))) # question four- submodule response
if youTubeLinkDurationCheck:
youTubeUnlistedVideo = booleanHelper((input('\nIs the provided YouTube video unlisted'
+'- an unlisted video will not appear in any of YouTube\'s public spaces?'
+' '))) # question four - submodule response
if youTubeUnlistedVideo:
return True
return False
def checkForLateSubmission(totalmarks):
'''returns integer value of deducted marks (if any) for late assignment
Input type: totalmarks(The total computed marks)
The decuted marks are computed of the parameter of total marks:
totalmarks - totalmarks * (lateSubmissionHourCount * 0.01)
'''
isAssignmentSubmittedLate = (input('\nHas the student submitted the assignment late? (Y/N) '
+' ')) # boolean response for late submission
if isAssignmentSubmittedLate is 'Y':
lateSubmissionHourCount = int(input('\nHow many hours was the assignment late? '
+' ')) # no of hours of late assignment
mDeductedMarks = int(totalmarks - totalmarks * (lateSubmissionHourCount*0.01)) # deduction of 1% from the total marks for each hour
return mDeductedMarks
else:
return 0 # returns 0 if not late submission
def gradingLogic(totalscore):
'''returns the grade of the student depending of the range of the score
Input parameter: Score in number
'''
if 60 < totalscore <= 70:
return 'A'
elif 50 < totalscore <= 59:
return 'B'
elif 30 < totalscore <= 49:
return 'C'
elif totalscore <= 29:
return 'D'
return '-'
computeFinalGrade() | """
Assigment No: 1 - Grading Logic Assigment
Author's Name: Umaima Khurshid Ahmad
Youtube Link: https://youtu.be/SY_c813y6H0
Date: 04/05/2020
'I have not given or received any unauthorized assistance on this assignment'
"""
def compute_final_grade():
"""returns total score and grade of the student
it gives the final score of the students assignment
The function is further divided into further submodules the returns their scores if any:
1 - Intial Grading Check Questions Score - initalGradingCheck()
2 - Code Performance Check Questions Score - codeGradingCheck()
3 - Late Submission Questions Score - checkForLateSubmission(mTotalComputedMarks)
"""
inital_grading_check_marks = inital_grading_check()
code_grading_over_all_marks = 0.0
if initalGradingCheckMarks > 0:
code_grading_over_all_marks = code_grading_check()
if codeGradingOverAllMarks > 0:
m_total_computed_marks = initalGradingCheckMarks + codeGradingOverAllMarks
check_for_late_submission_marks = check_for_late_submission(mTotalComputedMarks)
if checkForLateSubmissionMarks == 0:
m_total_computed_marks = initalGradingCheckMarks + codeGradingOverAllMarks
else:
m_total_computed_marks = checkForLateSubmissionMarks
m_total_grade = str(int(mTotalComputedMarks)) + '/70' + ' Grade - ' + grading_logic(int(mTotalComputedMarks))
print('\x1b[1;32;40m The final score of the student is ' + mTotalGrade)
else:
print('\x1b[1;31;40m Failed to update score, please retry with correct values')
def inital_grading_check():
"""returns the score of the inital questions by asking the user for
which each each questions answer in either true or false -
adding each answers to a list
"""
input('-- Assignment Grading Software - Enter Y or yes for a true response AND N or no for a false response --')
inital_grading_check_questions_index = 0
each_sub_module_score = 10
m_intial_grading_check_list = []
m_file_format = boolean_helper(input('Is the assignment submitted as a single uncompressed .py file?' + ' '))
mIntialGradingCheckList.insert(initalGradingCheckQuestionsIndex, mFileFormat)
m_student_name_and_date_verification = boolean_helper(input("\nDoes the assignment contain author's name and date?" + ' '))
mIntialGradingCheckList.insert(initalGradingCheckQuestionsIndex + 1, mStudentNameAndDateVerification)
is_honor_statement = boolean_helper(input('\nDoes the assignment contain this statement on the top of the code' + ' ' + '"I have not given or received any unauthorized assistance on this assignment"?' + ' '))
mIntialGradingCheckList.insert(initalGradingCheckQuestionsIndex + 1, IsHonorStatement)
is_youtube_link = youtube_link_check_steps()
mIntialGradingCheckList.insert(initalGradingCheckQuestionsIndex + 1, IsYoutubeLink)
student_intial_marks = 0
for true_values in mIntialGradingCheckList:
if trueValues == True:
student_intial_marks = studentIntialMarks + eachSubModuleScore
if studentIntialMarks > 0:
return studentIntialMarks
return 0
def code_grading_check():
"""returns the total Code perfomance score based on the questions
user inputs the float values for each question
"""
input('\n\n-- On a scale from 0 - 10, Answer the following questions to evaluate further -- Press Enter to countinue')
correctness_of_code_marks = float(input('\nWhat points would be give for the correctness of the code?' + ' '))
elegance_of_code_marks = float(input('\nWhat points would be give for the elegance of the code?' + ' '))
quality_discussion_of_code_marks = float(input('\nWhat points would be give for the ' + 'quality of the discussion in the YouTube video?' + ' '))
if range_check_of_code_perfomance_marks(correctnessOfCodeMarks, eleganceOfCodeMarks, qualityDiscussionOfCodeMarks) == True:
total_code_grading_marks = correctnessOfCodeMarks + eleganceOfCodeMarks + qualityDiscussionOfCodeMarks
return totalCodeGradingMarks
else:
print('\x1b[1;31;40m\nThe entereted marks for each answer should be between the range of 0 and 10')
return 0
def range_check_of_code_perfomance_marks(correctnessOfCodeMarks, eleganceOfCodeMarks, qualityDiscussionOfCodeMarks):
""" returns true if all the three parameters are less than 10 and greater than 0 """
if 0 <= correctnessOfCodeMarks and eleganceOfCodeMarks and (qualityDiscussionOfCodeMarks <= 10):
return True
return False
def boolean_helper(userInputValue):
"""returns boolean response by to parsing the users response to some questions
"""
if userInputValue.lower() == 'y' or userInputValue == 'yes':
return True
elif userInputValue.lower() == 'n' or userInputValue == 'no':
print('\x1b[1;31;40m Student has been awarded grade 0')
exit()
else:
print('\nIncorrect input found, To proceed please try again by entering Y or N only')
exit()
return None
def youtube_link_check_steps():
"""returns boolean value on the bases of 3 subchecks:
1 - YouTube Link Given?
2 - Is video unlisted?
3 - Is Duration 3 mintues?
"""
youtube_link_duration_check = False
you_tube_unlisted_video = False
is_you_tube_link_aviablable = boolean_helper(input('\nIs the video youtube link added?'))
if isYouTubeLinkAviablable:
you_tube_link_duration_check = boolean_helper(input('\nIs the provided YouTube video of 3-minutes?' + ' '))
if youTubeLinkDurationCheck:
you_tube_unlisted_video = boolean_helper(input('\nIs the provided YouTube video unlisted' + "- an unlisted video will not appear in any of YouTube's public spaces?" + ' '))
if youTubeUnlistedVideo:
return True
return False
def check_for_late_submission(totalmarks):
"""returns integer value of deducted marks (if any) for late assignment
Input type: totalmarks(The total computed marks)
The decuted marks are computed of the parameter of total marks:
totalmarks - totalmarks * (lateSubmissionHourCount * 0.01)
"""
is_assignment_submitted_late = input('\nHas the student submitted the assignment late? (Y/N) ' + ' ')
if isAssignmentSubmittedLate is 'Y':
late_submission_hour_count = int(input('\nHow many hours was the assignment late? ' + ' '))
m_deducted_marks = int(totalmarks - totalmarks * (lateSubmissionHourCount * 0.01))
return mDeductedMarks
else:
return 0
def grading_logic(totalscore):
"""returns the grade of the student depending of the range of the score
Input parameter: Score in number
"""
if 60 < totalscore <= 70:
return 'A'
elif 50 < totalscore <= 59:
return 'B'
elif 30 < totalscore <= 49:
return 'C'
elif totalscore <= 29:
return 'D'
return '-'
compute_final_grade() |
class ShootingProblem:
def __init__(self, initialState, runningModels, terminalModel):
""" Declare a shooting problem.
:param initialState: initial state
:param runningModels: running action models
:param terminalModel: terminal action model
"""
self.T = len(runningModels)
self.initialState = initialState
self.runningModels = runningModels
self.runningDatas = [m.createData() for m in runningModels]
self.terminalModel = terminalModel
self.terminalData = terminalModel.createData()
def calc(self, xs, us):
""" Compute the cost and the next states.
"""
return sum([m.calc(d, x, u)[1] for m, d, x, u in zip(self.runningModels, self.runningDatas, xs[:-1], us)
]) + self.terminalModel.calc(self.terminalData, xs[-1])[1]
def calcDiff(self, xs, us):
""" Compute the cost-and-dynamics derivatives.
These quantities are computed along a given pair of trajectories xs
(states) and us (controls).
:param xs: state trajectory
:param us: control trajectory
"""
assert (len(xs) == self.T + 1)
assert (len(us) == self.T)
for m, d, x, u in zip(self.runningModels, self.runningDatas, xs[:-1], us):
m.calcDiff(d, x, u)
self.terminalModel.calcDiff(self.terminalData, xs[-1])
return sum([d.cost for d in self.runningDatas + [self.terminalData]])
def rollout(self, us):
""" Integrate the dynamics given a control sequence.
:param us: control sequence
"""
xs = [self.initialState]
for m, d, u in zip(self.runningModels, self.runningDatas, us):
xs.append(m.calc(d, xs[-1], u)[0].copy())
return xs
| class Shootingproblem:
def __init__(self, initialState, runningModels, terminalModel):
""" Declare a shooting problem.
:param initialState: initial state
:param runningModels: running action models
:param terminalModel: terminal action model
"""
self.T = len(runningModels)
self.initialState = initialState
self.runningModels = runningModels
self.runningDatas = [m.createData() for m in runningModels]
self.terminalModel = terminalModel
self.terminalData = terminalModel.createData()
def calc(self, xs, us):
""" Compute the cost and the next states.
"""
return sum([m.calc(d, x, u)[1] for (m, d, x, u) in zip(self.runningModels, self.runningDatas, xs[:-1], us)]) + self.terminalModel.calc(self.terminalData, xs[-1])[1]
def calc_diff(self, xs, us):
""" Compute the cost-and-dynamics derivatives.
These quantities are computed along a given pair of trajectories xs
(states) and us (controls).
:param xs: state trajectory
:param us: control trajectory
"""
assert len(xs) == self.T + 1
assert len(us) == self.T
for (m, d, x, u) in zip(self.runningModels, self.runningDatas, xs[:-1], us):
m.calcDiff(d, x, u)
self.terminalModel.calcDiff(self.terminalData, xs[-1])
return sum([d.cost for d in self.runningDatas + [self.terminalData]])
def rollout(self, us):
""" Integrate the dynamics given a control sequence.
:param us: control sequence
"""
xs = [self.initialState]
for (m, d, u) in zip(self.runningModels, self.runningDatas, us):
xs.append(m.calc(d, xs[-1], u)[0].copy())
return xs |
class CRITsOperationalError(Exception):
""" Critical error oh shiiiii"""
pass
class CRITsInvalidTypeError(Exception):
"""Raised when an invalid TLO type is specified"""
pass
| class Critsoperationalerror(Exception):
""" Critical error oh shiiiii"""
pass
class Critsinvalidtypeerror(Exception):
"""Raised when an invalid TLO type is specified"""
pass |
def parse_table(table):
data = []
table_body = table.find('tbody')
rows = table_body.find_all('tr')
for row in rows:
cols = row.find_all('td')
cols = [ele.text.strip() for ele in cols]
data.append([ele for ele in cols if ele]) # Get rid of empty values
return data
| def parse_table(table):
data = []
table_body = table.find('tbody')
rows = table_body.find_all('tr')
for row in rows:
cols = row.find_all('td')
cols = [ele.text.strip() for ele in cols]
data.append([ele for ele in cols if ele])
return data |
# -*- coding: utf-8 -*-
class ExecutionDisabled(Exception):
""" Exception thrown if the manager cannot execute task because execution is disabled """
pass
class NotFound(Exception):
""" Exception thrown if a requested object is not found in a collection """
pass
class ProcessNotFound(NotFound):
""" Exception thrown when a requested process is not found """
pass
| class Executiondisabled(Exception):
""" Exception thrown if the manager cannot execute task because execution is disabled """
pass
class Notfound(Exception):
""" Exception thrown if a requested object is not found in a collection """
pass
class Processnotfound(NotFound):
""" Exception thrown when a requested process is not found """
pass |
x = int(input())
_ = ((x) + (3))
_ = ((x) * (6))
_ = ((x) & (2))
_ = ((x) ^ (1))
_ = ((x) | (3))
_ = ((x) + (10))
| x = int(input())
_ = x + 3
_ = x * 6
_ = x & 2
_ = x ^ 1
_ = x | 3
_ = x + 10 |
def swap_case(s):
t=""
for i in s:
if i.isalpha():
if i.isupper():
t=t+i.lower()
else:
t=t+i.upper()
else:
t=t+i
return (t)
| def swap_case(s):
t = ''
for i in s:
if i.isalpha():
if i.isupper():
t = t + i.lower()
else:
t = t + i.upper()
else:
t = t + i
return t |
#!/usr/bin/env python
EXPECTED_NUM_TESTS = 4
METRICS_FILE_PATH = "./svqc/tests/test_metrics.txt"
CRITERIA_FILE_PATH = "./svqc/tests/test_criteria.txt"
EXPECTED_OUT_FILE_PATH = "./svqc/tests/test_out.txt"
OUT_FILE_PATH = "./svqc/tests/test.out"
| expected_num_tests = 4
metrics_file_path = './svqc/tests/test_metrics.txt'
criteria_file_path = './svqc/tests/test_criteria.txt'
expected_out_file_path = './svqc/tests/test_out.txt'
out_file_path = './svqc/tests/test.out' |
class CacheVocabulary:
def __init__(self, vocab_data, vocab_dict, cache_number, unknown_word, blank_word):
self.word_value = {}
self.word_value[unknown_word] = 0
self.word_value[blank_word] = 1
count = 0
for key in vocab_dict.keys():
word = vocab_data.vocab.itos[key]
if word != unknown_word and word != unknown_word:
self.word_value[word] = count+2
# self.word_value[word] = count
count += 1
if count == cache_number-2:
# if count == cache_number:
break
self.value_word = dict([(value, key) for key, value in self.word_value.items()]) | class Cachevocabulary:
def __init__(self, vocab_data, vocab_dict, cache_number, unknown_word, blank_word):
self.word_value = {}
self.word_value[unknown_word] = 0
self.word_value[blank_word] = 1
count = 0
for key in vocab_dict.keys():
word = vocab_data.vocab.itos[key]
if word != unknown_word and word != unknown_word:
self.word_value[word] = count + 2
count += 1
if count == cache_number - 2:
break
self.value_word = dict([(value, key) for (key, value) in self.word_value.items()]) |
def relax():
neopixel.setAnimation("Color Wipe", 0, 0, 20, 1)
sleep(2)
neopixel.setAnimation("Ironman", 0, 0, 255, 1)
if (i01.eyesTracking.getOpenCV().capturing):
global MoveBodyRandom
MoveBodyRandom=0
global MoveHeadRandom
MoveHeadRandom=0
i01.setHandSpeed("left", 0.85, 0.85, 0.85, 0.85, 0.85, 0.85)
i01.setHandSpeed("right", 0.85, 0.85, 0.85, 0.85, 0.85, 0.85)
i01.setArmSpeed("right", 0.75, 0.85, 0.65, 0.85)
i01.setArmSpeed("left", 0.95, 0.65, 0.75, 0.75)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(79,100)
i01.moveArm("left",5,84,28,14)
i01.moveArm("right",5,82,28,16)
i01.moveHand("left",92,33,37,71,66,25)
i01.moveHand("right",81,66,82,60,105,113)
i01.moveTorso(95,90,90)
else:
global MoveBodyRandom
MoveBodyRandom=1
global MoveHeadRandom
MoveHeadRandom=1
i01.setHandSpeed("left", 0.85, 0.85, 0.85, 0.85, 0.85, 0.85)
i01.setHandSpeed("right", 0.85, 0.85, 0.85, 0.85, 0.85, 0.85)
i01.setArmSpeed("right", 0.75, 0.85, 0.65, 0.85)
i01.setArmSpeed("left", 0.95, 0.65, 0.75, 0.75)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
#i01.moveHead(79,100)
i01.moveArm("left",5,84,28,14)
i01.moveArm("right",5,82,28,16)
i01.moveHand("left",92,33,37,71,66,25)
i01.moveHand("right",81,66,82,60,105,113)
i01.moveTorso(95,90,90)
| def relax():
neopixel.setAnimation('Color Wipe', 0, 0, 20, 1)
sleep(2)
neopixel.setAnimation('Ironman', 0, 0, 255, 1)
if i01.eyesTracking.getOpenCV().capturing:
global MoveBodyRandom
move_body_random = 0
global MoveHeadRandom
move_head_random = 0
i01.setHandSpeed('left', 0.85, 0.85, 0.85, 0.85, 0.85, 0.85)
i01.setHandSpeed('right', 0.85, 0.85, 0.85, 0.85, 0.85, 0.85)
i01.setArmSpeed('right', 0.75, 0.85, 0.65, 0.85)
i01.setArmSpeed('left', 0.95, 0.65, 0.75, 0.75)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(79, 100)
i01.moveArm('left', 5, 84, 28, 14)
i01.moveArm('right', 5, 82, 28, 16)
i01.moveHand('left', 92, 33, 37, 71, 66, 25)
i01.moveHand('right', 81, 66, 82, 60, 105, 113)
i01.moveTorso(95, 90, 90)
else:
global MoveBodyRandom
move_body_random = 1
global MoveHeadRandom
move_head_random = 1
i01.setHandSpeed('left', 0.85, 0.85, 0.85, 0.85, 0.85, 0.85)
i01.setHandSpeed('right', 0.85, 0.85, 0.85, 0.85, 0.85, 0.85)
i01.setArmSpeed('right', 0.75, 0.85, 0.65, 0.85)
i01.setArmSpeed('left', 0.95, 0.65, 0.75, 0.75)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveArm('left', 5, 84, 28, 14)
i01.moveArm('right', 5, 82, 28, 16)
i01.moveHand('left', 92, 33, 37, 71, 66, 25)
i01.moveHand('right', 81, 66, 82, 60, 105, 113)
i01.moveTorso(95, 90, 90) |
class OdbAnalysisWarning:
"""The OdbAnalysisWarning object stores the description of different warnings encountered
during the analysis.
Notes
-----
This object can be accessed by:
.. code-block:: python
import visualization
session.odbData[name].diagnosticData.analysisWarnings[i]
"""
pass
| class Odbanalysiswarning:
"""The OdbAnalysisWarning object stores the description of different warnings encountered
during the analysis.
Notes
-----
This object can be accessed by:
.. code-block:: python
import visualization
session.odbData[name].diagnosticData.analysisWarnings[i]
"""
pass |
class Director:
__builder = None
def setBuilder(self, builder):
self.__builder = builder
def getOrden(self):
orden = Orden()
pan = self.__builder.preparaPan()
orden.setPan(pan)
carne = self.__builder.agregaCarne()
orden.setCarne(carne)
verduras = self.__builder.agregaVerduras()
orden.setVerduras(verduras)
condimentos = self.__builder.agregaCondimentos()
orden.setCondimentos(condimentos)
combo = self.__builder.hazlaCombo()
orden.setCombo(combo)
return orden
class Orden:
def __init__(self):
self.__pan = None
self.__carne = None
self.__verduras = None
self.__condimentos = None
self.__combo = None
def setPan(self, pan):
self.__pan = pan
def setCarne(self, carne):
self.__carne = carne
def setVerduras(self, verduras):
self.__verduras = verduras
def setCondimentos(self, condimentos):
self.__condimentos = condimentos
def setCombo(self, combo):
self.__combo = combo
def caracteristicas(self):
print ("Pan: %s" % self.__pan.tipo)
print ("Carne: %s" % self.__carne.porciones)
print ("Verduras: %s" % self.__verduras.si_no)
print ("Condimentos: %s" % self.__condimentos.si_no)
print ("Combo: %s" % self.__combo.si_no)
class Builder:
def preparaPan(self):pass
def agregaCarne(self):pass
def agregaVerduras(self):pass
def agregaCondimentos(self):pass
def hazlaCombo(self):pass
class Hocho1Builder(Builder):
def preparaPan(self):
pan = Pan()
pan.tipo = ' Normal '
return pan
def agregaCarne(self):
carne = Carne()
carne.porciones = ' Si '
return carne
def agregaVerduras(self):
verduras = Verduras()
verduras.si_no = " Si "
return verduras
def agregaCondimentos(self):
condimentos = Condimentos()
condimentos.si_no = " Si "
return condimentos
def hazlaCombo(self):
combo = Combo()
combo.si_no = " Si "
return combo
class Hocho2Builder(Builder):
def preparaPan(self):
pan = Pan()
pan.tipo = ' Normal '
return pan
def agregaCarne(self):
carne = Carne()
carne.porciones = ' Si '
return carne
def agregaVerduras(self):
verduras = Verduras()
verduras.si_no = " No "
return verduras
def agregaCondimentos(self):
condimentos = Condimentos()
condimentos.si_no = " Si "
return condimentos
def hazlaCombo(self):
combo = Combo()
combo.si_no = " Si "
return combo
class Burguer1Builder(Builder):
def preparaPan(self):
pan = Pan()
pan.tipo = ' Integral '
return pan
def agregaCarne(self):
carne = Carne()
carne.porciones = ' No '
return carne
def agregaVerduras(self):
verduras = Verduras()
verduras.si_no = " Si "
return verduras
def agregaCondimentos(self):
condimentos = Condimentos()
condimentos.si_no = " No "
return condimentos
def hazlaCombo(self):
combo = Combo()
combo.si_no = " Si "
return combo
class Burguer2Builder(Builder):
def preparaPan(self):
pan = Pan()
pan.tipo = ' Normal '
return pan
def agregaCarne(self):
carne = Carne()
carne.porciones = ' Si '
return carne
def agregaVerduras(self):
verduras = Verduras()
verduras.si_no = " Si "
return verduras
def agregaCondimentos(self):
condimentos = Condimentos()
condimentos.si_no = " No "
return condimentos
def hazlaCombo(self):
combo = Combo()
combo.si_no = " Si "
return combo
class Burguer3Builder(Builder):
def preparaPan(self):
pan = Pan()
pan.tipo = ' Normal '
return pan
def agregaCarne(self):
carne = Carne()
carne.porciones = ' Ninguna '
return carne
def agregaVerduras(self):
verduras = Verduras()
verduras.si_no = " Si "
return verduras
def agregaCondimentos(self):
condimentos = Condimentos()
condimentos.si_no = " Si "
return condimentos
def hazlaCombo(self):
combo = Combo()
combo.si_no = " No "
return combo
class Pan:
tipo = None
class Carne:
porciones = None
class Verduras:
si_no = None
class Condimentos:
si_no = None
class Combo:
si_no = None
def cliente():
hocho1Builder = Hocho1Builder()
hocho2Builder = Hocho2Builder()
burguer1Builder = Burguer1Builder()
burguer2Builder = Burguer2Builder()
burguer3Builder = Burguer3Builder()
director = Director()
print ("Hocho1: ")
director.setBuilder(hocho1Builder)
hocho1 = director.getOrden()
hocho1.caracteristicas()
print ("\nHocho2: ")
director.setBuilder(hocho2Builder)
hocho2 = director.getOrden()
hocho2.caracteristicas()
print ("\nBurguer1: ")
director.setBuilder(burguer1Builder)
burguer1 = director.getOrden()
burguer1.caracteristicas()
print ("\nBurguer2: ")
director.setBuilder(burguer2Builder)
burguer2 = director.getOrden()
burguer2.caracteristicas()
print ("\nBurguer3: ")
director.setBuilder(burguer3Builder)
burguer3 = director.getOrden()
burguer3.caracteristicas()
if __name__ == '__main__':
cliente()
| class Director:
__builder = None
def set_builder(self, builder):
self.__builder = builder
def get_orden(self):
orden = orden()
pan = self.__builder.preparaPan()
orden.setPan(pan)
carne = self.__builder.agregaCarne()
orden.setCarne(carne)
verduras = self.__builder.agregaVerduras()
orden.setVerduras(verduras)
condimentos = self.__builder.agregaCondimentos()
orden.setCondimentos(condimentos)
combo = self.__builder.hazlaCombo()
orden.setCombo(combo)
return orden
class Orden:
def __init__(self):
self.__pan = None
self.__carne = None
self.__verduras = None
self.__condimentos = None
self.__combo = None
def set_pan(self, pan):
self.__pan = pan
def set_carne(self, carne):
self.__carne = carne
def set_verduras(self, verduras):
self.__verduras = verduras
def set_condimentos(self, condimentos):
self.__condimentos = condimentos
def set_combo(self, combo):
self.__combo = combo
def caracteristicas(self):
print('Pan: %s' % self.__pan.tipo)
print('Carne: %s' % self.__carne.porciones)
print('Verduras: %s' % self.__verduras.si_no)
print('Condimentos: %s' % self.__condimentos.si_no)
print('Combo: %s' % self.__combo.si_no)
class Builder:
def prepara_pan(self):
pass
def agrega_carne(self):
pass
def agrega_verduras(self):
pass
def agrega_condimentos(self):
pass
def hazla_combo(self):
pass
class Hocho1Builder(Builder):
def prepara_pan(self):
pan = pan()
pan.tipo = ' Normal '
return pan
def agrega_carne(self):
carne = carne()
carne.porciones = ' Si '
return carne
def agrega_verduras(self):
verduras = verduras()
verduras.si_no = ' Si '
return verduras
def agrega_condimentos(self):
condimentos = condimentos()
condimentos.si_no = ' Si '
return condimentos
def hazla_combo(self):
combo = combo()
combo.si_no = ' Si '
return combo
class Hocho2Builder(Builder):
def prepara_pan(self):
pan = pan()
pan.tipo = ' Normal '
return pan
def agrega_carne(self):
carne = carne()
carne.porciones = ' Si '
return carne
def agrega_verduras(self):
verduras = verduras()
verduras.si_no = ' No '
return verduras
def agrega_condimentos(self):
condimentos = condimentos()
condimentos.si_no = ' Si '
return condimentos
def hazla_combo(self):
combo = combo()
combo.si_no = ' Si '
return combo
class Burguer1Builder(Builder):
def prepara_pan(self):
pan = pan()
pan.tipo = ' Integral '
return pan
def agrega_carne(self):
carne = carne()
carne.porciones = ' No '
return carne
def agrega_verduras(self):
verduras = verduras()
verduras.si_no = ' Si '
return verduras
def agrega_condimentos(self):
condimentos = condimentos()
condimentos.si_no = ' No '
return condimentos
def hazla_combo(self):
combo = combo()
combo.si_no = ' Si '
return combo
class Burguer2Builder(Builder):
def prepara_pan(self):
pan = pan()
pan.tipo = ' Normal '
return pan
def agrega_carne(self):
carne = carne()
carne.porciones = ' Si '
return carne
def agrega_verduras(self):
verduras = verduras()
verduras.si_no = ' Si '
return verduras
def agrega_condimentos(self):
condimentos = condimentos()
condimentos.si_no = ' No '
return condimentos
def hazla_combo(self):
combo = combo()
combo.si_no = ' Si '
return combo
class Burguer3Builder(Builder):
def prepara_pan(self):
pan = pan()
pan.tipo = ' Normal '
return pan
def agrega_carne(self):
carne = carne()
carne.porciones = ' Ninguna '
return carne
def agrega_verduras(self):
verduras = verduras()
verduras.si_no = ' Si '
return verduras
def agrega_condimentos(self):
condimentos = condimentos()
condimentos.si_no = ' Si '
return condimentos
def hazla_combo(self):
combo = combo()
combo.si_no = ' No '
return combo
class Pan:
tipo = None
class Carne:
porciones = None
class Verduras:
si_no = None
class Condimentos:
si_no = None
class Combo:
si_no = None
def cliente():
hocho1_builder = hocho1_builder()
hocho2_builder = hocho2_builder()
burguer1_builder = burguer1_builder()
burguer2_builder = burguer2_builder()
burguer3_builder = burguer3_builder()
director = director()
print('Hocho1: ')
director.setBuilder(hocho1Builder)
hocho1 = director.getOrden()
hocho1.caracteristicas()
print('\nHocho2: ')
director.setBuilder(hocho2Builder)
hocho2 = director.getOrden()
hocho2.caracteristicas()
print('\nBurguer1: ')
director.setBuilder(burguer1Builder)
burguer1 = director.getOrden()
burguer1.caracteristicas()
print('\nBurguer2: ')
director.setBuilder(burguer2Builder)
burguer2 = director.getOrden()
burguer2.caracteristicas()
print('\nBurguer3: ')
director.setBuilder(burguer3Builder)
burguer3 = director.getOrden()
burguer3.caracteristicas()
if __name__ == '__main__':
cliente() |
"""
Classes for user pers.
Classes
Personality
Conditional
"""
class Personality:
"""
Represents a user's decision making.
The idea is to get all Conditional objects in goals to be true and false in limits.
This allows a user to make decisions by mapping functions to changed output.
:param list gl: Conditionals to make true.
:param list lim: Conditionals to keep false.
:param list funct: Functions usable by users.
"""
def __init__(self, gl=None, lim=None, funct=None):
"""Constructor"""
if gl is None:
self.goals = []
else:
self.goals = gl
if lim is None:
self.limits = []
else:
self.limits = lim
if funct is None:
self.functions = []
else:
self.functions = funct
def __str__(self):
return "g:{}, l:{} f:{}".format(self.goals, self.limits, self.functions)
class Conditional:
"""
Put two objects in to have a constantly updating way to compare them.
:param any a: Thing one.
:param str a_atr: The part of a to check.
:param any b: Thing two.
:param str b_atr: The part of b to check.
:param str evalType: How Conditional compares a and b.
Methods
distance(): Calculate how far apart a and b are.
"""
def __init__(self, a, a_atr, b, b_atr, evalType):
"""Constructor"""
self.a = a
self.aAttribute = a_atr
self.b = b
self.bAttribute = b_atr
self.evalType = evalType
def __bool__(self):
"""
Returns true or false depending on a, b, and evalType. Defaults to false if bad evalType.
"""
e = self.evalType
if self.aAttribute is None:
a = self.a
else:
a = self.a.__getattribute__(self.aAttribute)
if self.bAttribute is None:
b = self.b
else:
b = self.b.__getattribute__(self.bAttribute)
if e == '=':
return a == b
elif e == '!':
return a != b
elif e == ">":
return a > b
elif e == "<":
return a < b
elif e == ">=":
return a >= b
elif e == "<=":
return a <= b
elif e == "is":
return a is b
else:
return False
def distance(self):
"""
Calculate how far apart a and b are.
For numerical values its the absolute value of the difference.
For booleans this returns 0 for matching values.
For lists, strings, and a being a tuple return how many matches there are between a and b.
"""
if self.aAttribute is None:
a = self.a
else:
a = self.a.__getattribute__(self.aAttribute)
if self.bAttribute is None:
b = self.b
else:
b = self.b.__getattribute__(self.bAttribute)
if isinstance(a, (int, float)) and isinstance(b, (int, float)):
return abs(a - b)
elif isinstance(a, bool) and isinstance(b, bool):
if a == b:
return 0
else:
return 1
elif isinstance(a, (list, str, tuple)) and isinstance(b, (list, str)):
matches = 0
b = list(b)
for i in a:
for f in b:
if i == f:
matches += 1
b.remove(f)
break
return abs(a.__len__() - matches)
else:
return None
| """
Classes for user pers.
Classes
Personality
Conditional
"""
class Personality:
"""
Represents a user's decision making.
The idea is to get all Conditional objects in goals to be true and false in limits.
This allows a user to make decisions by mapping functions to changed output.
:param list gl: Conditionals to make true.
:param list lim: Conditionals to keep false.
:param list funct: Functions usable by users.
"""
def __init__(self, gl=None, lim=None, funct=None):
"""Constructor"""
if gl is None:
self.goals = []
else:
self.goals = gl
if lim is None:
self.limits = []
else:
self.limits = lim
if funct is None:
self.functions = []
else:
self.functions = funct
def __str__(self):
return 'g:{}, l:{} f:{}'.format(self.goals, self.limits, self.functions)
class Conditional:
"""
Put two objects in to have a constantly updating way to compare them.
:param any a: Thing one.
:param str a_atr: The part of a to check.
:param any b: Thing two.
:param str b_atr: The part of b to check.
:param str evalType: How Conditional compares a and b.
Methods
distance(): Calculate how far apart a and b are.
"""
def __init__(self, a, a_atr, b, b_atr, evalType):
"""Constructor"""
self.a = a
self.aAttribute = a_atr
self.b = b
self.bAttribute = b_atr
self.evalType = evalType
def __bool__(self):
"""
Returns true or false depending on a, b, and evalType. Defaults to false if bad evalType.
"""
e = self.evalType
if self.aAttribute is None:
a = self.a
else:
a = self.a.__getattribute__(self.aAttribute)
if self.bAttribute is None:
b = self.b
else:
b = self.b.__getattribute__(self.bAttribute)
if e == '=':
return a == b
elif e == '!':
return a != b
elif e == '>':
return a > b
elif e == '<':
return a < b
elif e == '>=':
return a >= b
elif e == '<=':
return a <= b
elif e == 'is':
return a is b
else:
return False
def distance(self):
"""
Calculate how far apart a and b are.
For numerical values its the absolute value of the difference.
For booleans this returns 0 for matching values.
For lists, strings, and a being a tuple return how many matches there are between a and b.
"""
if self.aAttribute is None:
a = self.a
else:
a = self.a.__getattribute__(self.aAttribute)
if self.bAttribute is None:
b = self.b
else:
b = self.b.__getattribute__(self.bAttribute)
if isinstance(a, (int, float)) and isinstance(b, (int, float)):
return abs(a - b)
elif isinstance(a, bool) and isinstance(b, bool):
if a == b:
return 0
else:
return 1
elif isinstance(a, (list, str, tuple)) and isinstance(b, (list, str)):
matches = 0
b = list(b)
for i in a:
for f in b:
if i == f:
matches += 1
b.remove(f)
break
return abs(a.__len__() - matches)
else:
return None |
class Room:
room_cost = 0
def __init__(self, name: str, budget: float, members_count: int):
self.family_name = name
self.budget = budget
self.members_count = members_count
self.children = []
self.expenses = 0
@property
def total_monthly_cost(self):
return self.expenses + self.room_cost
@property
def expenses(self):
return self.__expenses
@expenses.setter
def expenses(self, value):
if value < 0:
raise ValueError("Expenses cannot be negative")
self.__expenses = value
def calculate_expenses(self, *args):
result = sum(el.get_monthly_expense() for arg in args for el in arg)
self.expenses = result
def __repr__(self):
return f"{self.family_name} with {self.members_count} members. Budget: {self.budget:.2f}$, Expenses: {self.expenses:.2f}$\n" \
f"--- Appliances monthly cost: {self.expenses:.2f}$"
| class Room:
room_cost = 0
def __init__(self, name: str, budget: float, members_count: int):
self.family_name = name
self.budget = budget
self.members_count = members_count
self.children = []
self.expenses = 0
@property
def total_monthly_cost(self):
return self.expenses + self.room_cost
@property
def expenses(self):
return self.__expenses
@expenses.setter
def expenses(self, value):
if value < 0:
raise value_error('Expenses cannot be negative')
self.__expenses = value
def calculate_expenses(self, *args):
result = sum((el.get_monthly_expense() for arg in args for el in arg))
self.expenses = result
def __repr__(self):
return f'{self.family_name} with {self.members_count} members. Budget: {self.budget:.2f}$, Expenses: {self.expenses:.2f}$\n--- Appliances monthly cost: {self.expenses:.2f}$' |
class Solution:
def nthUglyNumber(self, n: int) -> int:
if n < 0: return 0
dp = [1] * n
index2 = index3 = index5 = 0
for i in range(1, n):
dp[i] = min(2 * dp[index2], 3 * dp[index3], 5 * dp[index5])
if dp[i] == 2 * dp[index2]: index2 += 1
if dp[i] == 3 * dp[index3]: index3 += 1
if dp[i] == 5 * dp[index5]: index5 += 1
return dp[n - 1]
| class Solution:
def nth_ugly_number(self, n: int) -> int:
if n < 0:
return 0
dp = [1] * n
index2 = index3 = index5 = 0
for i in range(1, n):
dp[i] = min(2 * dp[index2], 3 * dp[index3], 5 * dp[index5])
if dp[i] == 2 * dp[index2]:
index2 += 1
if dp[i] == 3 * dp[index3]:
index3 += 1
if dp[i] == 5 * dp[index5]:
index5 += 1
return dp[n - 1] |
# -*- coding: utf-8 -*-
"""
Created on Wed Jan 18 06:40:34 2018
@author: boele
"""
# 02, reading text files and converting from NED to XYZ
# open xyz file
f = open('test.xyz', 'r')
data = f.read()
xyz = data.split('\n')
# print first 5 rows
print(xyz[0:5])
# create empty ned list
ned = []
# for each row convert xyz to ned and append to ned list
for row in xyz:
values = row.split(' ')
ned.append([values[1], values[0], '-'+values[2]])
#print first 5 ned rows
print(ned[0:5])
# print depth at row 15
print(ned[16][2])
| """
Created on Wed Jan 18 06:40:34 2018
@author: boele
"""
f = open('test.xyz', 'r')
data = f.read()
xyz = data.split('\n')
print(xyz[0:5])
ned = []
for row in xyz:
values = row.split(' ')
ned.append([values[1], values[0], '-' + values[2]])
print(ned[0:5])
print(ned[16][2]) |
##sequence = [1,1]
##length_expection = int(input("Please enter the length\
## of Fibonacci to generate:"))
##i = 1
##j = 2
##while len(sequence) <= length_expection:
## sequence.append(i+j)
## i += 1
## j += 1
##print(element for element in sequence)
a = 1
b = 1
while a < 1000:
print(a)
a, b = b, a+b
| a = 1
b = 1
while a < 1000:
print(a)
(a, b) = (b, a + b) |
def draw():
rows = int(pow(2, int(random(1, 6))))
u = int(height / (rows + 4))
thickness = int(pow(2, int(random(1, 4))))
uth1 = int(u / thickness)
uth2 = u + uth1
startX = int(-u * .75)
startY = int(height / 2 + rows / 2 * u)
endX = width + u
endY = height / 2 + rows / 2 * u
for x in range(startX, endX, u):
for y in range(startY, endY, u):
if random(1) > 0.5:
fill(255)
quad(x, y, x + u, y + u, x + uth2, y + u, x + uth1, y)
else:
fill(0)
quad(x, y + u, x + u, y, x + uth2, y, x + uth1, y + u) | def draw():
rows = int(pow(2, int(random(1, 6))))
u = int(height / (rows + 4))
thickness = int(pow(2, int(random(1, 4))))
uth1 = int(u / thickness)
uth2 = u + uth1
start_x = int(-u * 0.75)
start_y = int(height / 2 + rows / 2 * u)
end_x = width + u
end_y = height / 2 + rows / 2 * u
for x in range(startX, endX, u):
for y in range(startY, endY, u):
if random(1) > 0.5:
fill(255)
quad(x, y, x + u, y + u, x + uth2, y + u, x + uth1, y)
else:
fill(0)
quad(x, y + u, x + u, y, x + uth2, y, x + uth1, y + u) |
__all__ = [
'base_controller',
'cdrs_controller',
'numbers_controller',
'routes_controller',
'messages_controller',
] | __all__ = ['base_controller', 'cdrs_controller', 'numbers_controller', 'routes_controller', 'messages_controller'] |
#!/usr/bin/python3
"""Meowth - A Discord helper bot for Pokemon Go communities.
Meowth is a Discord bot written in Python 3.5 using version 0.16.12 of the discord.py library.
It assists with the organisation of local Pokemon Go Discord servers and their members."""
__author__ = "FoglyOgly, Scragly and BrenenP"
__copyright__ = "Copyright 2017, FoglyOgly"
__credits__ = ["FoglyOgly", "6_lasers", "Scragly", "BrenenP"]
__license__ = "GNU General Public License v3.0"
__version__ = "2.6.0"
__date__ = "24/10/2017"
__maintainer__ = "FoglyOgly"
__status__ = "Production"
| """Meowth - A Discord helper bot for Pokemon Go communities.
Meowth is a Discord bot written in Python 3.5 using version 0.16.12 of the discord.py library.
It assists with the organisation of local Pokemon Go Discord servers and their members."""
__author__ = 'FoglyOgly, Scragly and BrenenP'
__copyright__ = 'Copyright 2017, FoglyOgly'
__credits__ = ['FoglyOgly', '6_lasers', 'Scragly', 'BrenenP']
__license__ = 'GNU General Public License v3.0'
__version__ = '2.6.0'
__date__ = '24/10/2017'
__maintainer__ = 'FoglyOgly'
__status__ = 'Production' |
#!/usr/bin/env python3
"""Zig Zag.
Given an array A (distinct elements) of size N.
Rearrange the elements of array in zig-zag fashion.
The converted array should be in form a < b > c < d > e < f.
The relative order of elements is same in the output
i.e you have to iterate on the original array only.
Source:
https://practice.geeksforgeeks.org/problems/convert-array-into-zig-zag-fashion/0
"""
def zig_zag(items: list) ->list:
"""Rearrange the elements of a list in zig-zag fashion.
Changes to the list are made in place.
"""
less_than = True
for i in range(len(items)-1):
if (less_than) and items[i] > items[i+1]:
items[i], items[i+1] = items[i+1], items[i]
else:
if items[i] < items[i+1]:
items[i], items[i+1] = items[i+1], items[i]
less_than = bool(1 - less_than)
return items
def zig_zag_both(items: list) -> tuple:
"""Return original and zig-zap lists in a tuple."""
return (items[:], zig_zag(items),)
def main():
"""Main function to run zig-zag functions."""
print(zig_zag([4, 3, 7, 8, 6, 2, 1, ]))
print(zig_zag([1, 4, 3, 2, ]))
print(zig_zag_both([4, 3, 7, 8, 6, 2, 1, ]))
print(zig_zag_both([1, 4, 3, 2, ]))
if __name__ == "__main__":
main()
| """Zig Zag.
Given an array A (distinct elements) of size N.
Rearrange the elements of array in zig-zag fashion.
The converted array should be in form a < b > c < d > e < f.
The relative order of elements is same in the output
i.e you have to iterate on the original array only.
Source:
https://practice.geeksforgeeks.org/problems/convert-array-into-zig-zag-fashion/0
"""
def zig_zag(items: list) -> list:
"""Rearrange the elements of a list in zig-zag fashion.
Changes to the list are made in place.
"""
less_than = True
for i in range(len(items) - 1):
if less_than and items[i] > items[i + 1]:
(items[i], items[i + 1]) = (items[i + 1], items[i])
elif items[i] < items[i + 1]:
(items[i], items[i + 1]) = (items[i + 1], items[i])
less_than = bool(1 - less_than)
return items
def zig_zag_both(items: list) -> tuple:
"""Return original and zig-zap lists in a tuple."""
return (items[:], zig_zag(items))
def main():
"""Main function to run zig-zag functions."""
print(zig_zag([4, 3, 7, 8, 6, 2, 1]))
print(zig_zag([1, 4, 3, 2]))
print(zig_zag_both([4, 3, 7, 8, 6, 2, 1]))
print(zig_zag_both([1, 4, 3, 2]))
if __name__ == '__main__':
main() |
__author__ = 'Chintalagiri Shashank'
__email__ = 'shashank@chintal.in'
__version__ = '0.1.0'
| __author__ = 'Chintalagiri Shashank'
__email__ = 'shashank@chintal.in'
__version__ = '0.1.0' |
def make_bold(fn):
def wrapped():
return "<b>" + fn() + "</b>"
return wrapped
def make_italic(fn):
def wrapped():
return "<i>" + fn() + "</i>"
return wrapped
def make_underline(fn):
def wrapped():
return "<u>" + fn() + "</u>"
return wrapped
@make_bold
@make_italic
@make_underline
def hello():
return "hello world"
print(hello()) ## returns "<b><i><u>hello world</u></i></b>" | def make_bold(fn):
def wrapped():
return '<b>' + fn() + '</b>'
return wrapped
def make_italic(fn):
def wrapped():
return '<i>' + fn() + '</i>'
return wrapped
def make_underline(fn):
def wrapped():
return '<u>' + fn() + '</u>'
return wrapped
@make_bold
@make_italic
@make_underline
def hello():
return 'hello world'
print(hello()) |
# 000577_30_Dict_add_rem
customer_29876 = {'first name': 'David', 'last name': 'Elliott', 'address': '4803 Wellesley St.', 'city': 'Toronto'}
print("initial dict", customer_29876)
# rem
del customer_29876["address"]
print('remove "address"',customer_29876)
# add "street"
print("add street")
customer_29876["street"] = "Park Avenue"
print(customer_29876)
# change "Winipeg"
print('change city from Toronto to Winipeg')
customer_29876["city"] = "Winipeg"
print(customer_29876) | customer_29876 = {'first name': 'David', 'last name': 'Elliott', 'address': '4803 Wellesley St.', 'city': 'Toronto'}
print('initial dict', customer_29876)
del customer_29876['address']
print('remove "address"', customer_29876)
print('add street')
customer_29876['street'] = 'Park Avenue'
print(customer_29876)
print('change city from Toronto to Winipeg')
customer_29876['city'] = 'Winipeg'
print(customer_29876) |
def user_selection(message, options):
# taken from https://github.com/Asana/python-asana/blob/master/examples/example-create-task.py
option_list = list(options)
print(message)
for i, option in enumerate(option_list):
print(i, ": " + option["name"])
index = int(input("Enter choice (default 0): ") or 0)
return option_list[index]
| def user_selection(message, options):
option_list = list(options)
print(message)
for (i, option) in enumerate(option_list):
print(i, ': ' + option['name'])
index = int(input('Enter choice (default 0): ') or 0)
return option_list[index] |
"""
Name: exception.py
Author: Charles Zhang <694556046@qq.com>
Propose: PyGrading exceptions
Coding: UTF-8
"""
class DataTypeError(Exception):
pass
class FunctionsTypeError(Exception):
pass
class FieldMissingError(Exception):
pass
class ExecError(Exception):
pass
class FunctionArgsError(Exception):
pass
| """
Name: exception.py
Author: Charles Zhang <694556046@qq.com>
Propose: PyGrading exceptions
Coding: UTF-8
"""
class Datatypeerror(Exception):
pass
class Functionstypeerror(Exception):
pass
class Fieldmissingerror(Exception):
pass
class Execerror(Exception):
pass
class Functionargserror(Exception):
pass |
"""
Miscellaneous utility classes and functions.
"""
class Location:
@classmethod
def location_from_pos(cls, src, pos, name=None, filename=None):
loc = Location(src, name=name, filename=filename, ln=0, col=0, pos=0)
for c in src:
loc._inc_pos()
if c == '\n':
loc._newline()
if loc.pos >= pos:
break
return loc
def __init__(self, src='', name=None, filename=None, ln=0, col=0, pos=0):
self._src = src
self._name = name
self._fname = filename
self._ln = ln
self._col = col
self._pos = pos
@property
def line(self):
return self._ln
@property
def column(self):
return self._col
@property
def pos(self):
return self._pos
def _inc_pos(self, delta=1):
self._pos += delta
self._col += delta
def _newline(self):
self._ln += 1
self._col = 0
def clone(self):
return Location(self._src, name=self._name, filename=self._fname, ln=self._ln, col=self._col, pos=self._pos)
def context(self, num_ctx_lines=4):
ln = self.line
col = self.column
# Get the Context
src_lines = self._src.split('\n')
# If there is just a single line, don't bother with line numbers and context lines
if len(src_lines) < 2:
return ["src: "+self._src," "+" "*col+"^"]
start_ctx = max(ln-num_ctx_lines,0)
end_ctx = min(ln+num_ctx_lines+1,len(src_lines))
prev_lines = src_lines[start_ctx:ln]
post_lines = src_lines[ln+1:end_ctx]
# Get the current line with a caret indicating the column
cur_lines = ['', src_lines[ln], " "*col+"^"]
# Prepend line numbers & current line marker
line_num_len = len(str(end_ctx))
for i in range(len(prev_lines)):
prev_lines[i] = ' '+str(start_ctx+i).ljust(line_num_len+2) + prev_lines[i]
cur_lines[1] = '> '+str(ln).ljust(line_num_len)+ cur_lines[1]
cur_lines[2] = ' '+''.ljust(line_num_len) + cur_lines[2]
for i in range(len(post_lines)):
post_lines[i] = ' '+str(ln+i).ljust(line_num_len+2) + post_lines[i]
return prev_lines+post_lines+cur_lines
def __str__(self):
ret = '{ln}, {col}'.format(ln=self.line, col=self.column)
if self._fname is not None:
ret+="("+self._fname+")"
if self._name is not None:
ret+=self._name
return ret
def __repr__(self):
return str(self)
| """
Miscellaneous utility classes and functions.
"""
class Location:
@classmethod
def location_from_pos(cls, src, pos, name=None, filename=None):
loc = location(src, name=name, filename=filename, ln=0, col=0, pos=0)
for c in src:
loc._inc_pos()
if c == '\n':
loc._newline()
if loc.pos >= pos:
break
return loc
def __init__(self, src='', name=None, filename=None, ln=0, col=0, pos=0):
self._src = src
self._name = name
self._fname = filename
self._ln = ln
self._col = col
self._pos = pos
@property
def line(self):
return self._ln
@property
def column(self):
return self._col
@property
def pos(self):
return self._pos
def _inc_pos(self, delta=1):
self._pos += delta
self._col += delta
def _newline(self):
self._ln += 1
self._col = 0
def clone(self):
return location(self._src, name=self._name, filename=self._fname, ln=self._ln, col=self._col, pos=self._pos)
def context(self, num_ctx_lines=4):
ln = self.line
col = self.column
src_lines = self._src.split('\n')
if len(src_lines) < 2:
return ['src: ' + self._src, ' ' + ' ' * col + '^']
start_ctx = max(ln - num_ctx_lines, 0)
end_ctx = min(ln + num_ctx_lines + 1, len(src_lines))
prev_lines = src_lines[start_ctx:ln]
post_lines = src_lines[ln + 1:end_ctx]
cur_lines = ['', src_lines[ln], ' ' * col + '^']
line_num_len = len(str(end_ctx))
for i in range(len(prev_lines)):
prev_lines[i] = ' ' + str(start_ctx + i).ljust(line_num_len + 2) + prev_lines[i]
cur_lines[1] = '> ' + str(ln).ljust(line_num_len) + cur_lines[1]
cur_lines[2] = ' ' + ''.ljust(line_num_len) + cur_lines[2]
for i in range(len(post_lines)):
post_lines[i] = ' ' + str(ln + i).ljust(line_num_len + 2) + post_lines[i]
return prev_lines + post_lines + cur_lines
def __str__(self):
ret = '{ln}, {col}'.format(ln=self.line, col=self.column)
if self._fname is not None:
ret += '(' + self._fname + ')'
if self._name is not None:
ret += self._name
return ret
def __repr__(self):
return str(self) |
class Object:
"""
Represents a detected object
"""
# (x, y) is the top left coordinate
x = None
y = None
# (x2, y2) is the bottom right coordinate
x2 = None
y2 = None
width = None
height = None
label = None
score = None
def to_string(self):
return "x={}, y={}\n" \
"x2={}, y2={}\n" \
"width={}, height={}\n" \
"label='{}'\n" \
"score={}\n" \
.format(self.x, self.y,
self.x2, self.y2,
self.width, self.height,
self.label, self.score)
def __eq__(self, other):
return self.x == other.x and \
self.y == other.y and \
self.x2 == other.x2 and \
self.y2 == other.y2 and \
self.width == other.width and \
self.height == other.height and \
self.label == other.label and \
self.score == other.score
def __dict__(self):
return {
'x': self.x,
'y': self.y,
'width': self.width,
'height': self.height,
'label': self.label,
'score': self.score,
}
| class Object:
"""
Represents a detected object
"""
x = None
y = None
x2 = None
y2 = None
width = None
height = None
label = None
score = None
def to_string(self):
return "x={}, y={}\nx2={}, y2={}\nwidth={}, height={}\nlabel='{}'\nscore={}\n".format(self.x, self.y, self.x2, self.y2, self.width, self.height, self.label, self.score)
def __eq__(self, other):
return self.x == other.x and self.y == other.y and (self.x2 == other.x2) and (self.y2 == other.y2) and (self.width == other.width) and (self.height == other.height) and (self.label == other.label) and (self.score == other.score)
def __dict__(self):
return {'x': self.x, 'y': self.y, 'width': self.width, 'height': self.height, 'label': self.label, 'score': self.score} |
class MenuItem(object):
def __init__(self, type: str, title: str, **kwargs):
if not isinstance(type, str):
raise TypeError('type must be an instance of str')
if not isinstance(title, str):
raise TypeError('title must be an instance of str')
self.type = type
self.title = title
for k in kwargs:
setattr(self, k, kwargs[k])
def to_dict(self):
res = dict(vars(self))
if 'call_to_actions' in res:
res['call_to_actions'] = [x.to_dict() for x in res['call_to_actions']]
return res
class PersistentMenu(object):
def __init__(self, call_to_actions: list = None, locale: str = 'default', composer_input_disabled: bool = False):
if call_to_actions is None:
call_to_actions = []
if not isinstance(call_to_actions, list):
raise TypeError('call_to_actions must be an instance of list')
if not isinstance(locale, str):
raise TypeError('locale must be an instance of str')
if not isinstance(composer_input_disabled, bool):
raise TypeError('composer_input_disabled must be an instance of bool')
self.call_to_actions = call_to_actions
self.locale = locale
self.composer_input_disabled = composer_input_disabled
def add(self, item: MenuItem):
self.call_to_actions.append(item)
def to_dict(self):
return {
'locale': self.locale,
'composer_input_disabled': self.composer_input_disabled,
'call_to_actions': [x.to_dict() for x in self.call_to_actions]
}
class Analytics(object):
def __init__(self, custom_events: list, page_id: int, page_scoped_user_id: int, event: str = 'CUSTOM_APP_EVENTS',
advertiser_tracking_enabled: int = 1, application_tracking_enabled: int = 1, extinfo: list = None):
if extinfo is None:
extinfo = ['mb1']
self.custom_events = custom_events
self.page_id = page_id
self.page_scoped_user_id = page_scoped_user_id
self.event = event
self.advertiser_tracking_enabled = advertiser_tracking_enabled
self.application_tracking_enabled = application_tracking_enabled
self.extinfo = extinfo
def to_dict(self):
return dict(vars(self))
| class Menuitem(object):
def __init__(self, type: str, title: str, **kwargs):
if not isinstance(type, str):
raise type_error('type must be an instance of str')
if not isinstance(title, str):
raise type_error('title must be an instance of str')
self.type = type
self.title = title
for k in kwargs:
setattr(self, k, kwargs[k])
def to_dict(self):
res = dict(vars(self))
if 'call_to_actions' in res:
res['call_to_actions'] = [x.to_dict() for x in res['call_to_actions']]
return res
class Persistentmenu(object):
def __init__(self, call_to_actions: list=None, locale: str='default', composer_input_disabled: bool=False):
if call_to_actions is None:
call_to_actions = []
if not isinstance(call_to_actions, list):
raise type_error('call_to_actions must be an instance of list')
if not isinstance(locale, str):
raise type_error('locale must be an instance of str')
if not isinstance(composer_input_disabled, bool):
raise type_error('composer_input_disabled must be an instance of bool')
self.call_to_actions = call_to_actions
self.locale = locale
self.composer_input_disabled = composer_input_disabled
def add(self, item: MenuItem):
self.call_to_actions.append(item)
def to_dict(self):
return {'locale': self.locale, 'composer_input_disabled': self.composer_input_disabled, 'call_to_actions': [x.to_dict() for x in self.call_to_actions]}
class Analytics(object):
def __init__(self, custom_events: list, page_id: int, page_scoped_user_id: int, event: str='CUSTOM_APP_EVENTS', advertiser_tracking_enabled: int=1, application_tracking_enabled: int=1, extinfo: list=None):
if extinfo is None:
extinfo = ['mb1']
self.custom_events = custom_events
self.page_id = page_id
self.page_scoped_user_id = page_scoped_user_id
self.event = event
self.advertiser_tracking_enabled = advertiser_tracking_enabled
self.application_tracking_enabled = application_tracking_enabled
self.extinfo = extinfo
def to_dict(self):
return dict(vars(self)) |
class dotUndoOperation_t(object):
# no doc
Operation=None
| class Dotundooperation_T(object):
operation = None |
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/master/LICENSE
def indent_code(code, indent):
finalcode = ""
for line in code.splitlines():
finalcode += " " * indent + line + "\n"
return finalcode
| def indent_code(code, indent):
finalcode = ''
for line in code.splitlines():
finalcode += ' ' * indent + line + '\n'
return finalcode |
'''
lec4
dict
tuple
'''
my_tuple = 'a','b','c','d','e'
print(my_tuple)
my_2nd_tuple= ('a','b','c','d','e')
print (my_2nd_tuple)
is_a_tuple= ('a',)
print ( type(is_a_tuple) )
print (my_tuple[1])
my_car = {
'color' : 'red',
'maker': 'toyota',
'year': 2015
}
print (my_car)
print (my_car ['color'])
print (my_car ['year'])
print (my_car.items())
print (my_car.keys())
print(my_car.values())
print(my_car.get('year'))
my_car ['model'] = 'Corolla'
print(my_car)
my_car ['year'] = 2020
print(my_car)
print ( len (my_car))
print
| """
lec4
dict
tuple
"""
my_tuple = ('a', 'b', 'c', 'd', 'e')
print(my_tuple)
my_2nd_tuple = ('a', 'b', 'c', 'd', 'e')
print(my_2nd_tuple)
is_a_tuple = ('a',)
print(type(is_a_tuple))
print(my_tuple[1])
my_car = {'color': 'red', 'maker': 'toyota', 'year': 2015}
print(my_car)
print(my_car['color'])
print(my_car['year'])
print(my_car.items())
print(my_car.keys())
print(my_car.values())
print(my_car.get('year'))
my_car['model'] = 'Corolla'
print(my_car)
my_car['year'] = 2020
print(my_car)
print(len(my_car))
print |
class Credentials:
def __init__(self, appkey, secretkey, accountkey=None):
self.appkey = appkey
self.secretkey = secretkey
self.account_key = accountkey
def __eq__(self, other: object) -> bool:
if isinstance(other, Credentials):
return self.appkey == other.appkey \
and self.secretkey == other.secretkey \
and self.account_key == other.account_key
return False
EMPTY_CREDENTIALS = Credentials('', '')
| class Credentials:
def __init__(self, appkey, secretkey, accountkey=None):
self.appkey = appkey
self.secretkey = secretkey
self.account_key = accountkey
def __eq__(self, other: object) -> bool:
if isinstance(other, Credentials):
return self.appkey == other.appkey and self.secretkey == other.secretkey and (self.account_key == other.account_key)
return False
empty_credentials = credentials('', '') |
i = 1
pool = 3
entFormat = open("play_script.txt", "w")
while i == 1:
readLine = input()
if readLine == "stop":
i = 0
entFormat.close()
else:
if readLine == "":
wool = "{}".format(pool)
entFormat.write(" elseif time < "+wool+" then\n")
pool = pool + 1
else:
if readLine == " ":
p = 0
else:
entFormat.write(" print(\""+readLine+"\")\n") | i = 1
pool = 3
ent_format = open('play_script.txt', 'w')
while i == 1:
read_line = input()
if readLine == 'stop':
i = 0
entFormat.close()
elif readLine == '':
wool = '{}'.format(pool)
entFormat.write(' elseif time < ' + wool + ' then\n')
pool = pool + 1
elif readLine == ' ':
p = 0
else:
entFormat.write(' print("' + readLine + '")\n') |
# Uses python3
def edit_distance(s, t, memo = {}):
if len(s) == 0: return len(t)
if len(t) == 0: return len(s)
if (len(s), len(t)) in memo:
return memo[(len(s), len(t))]
delta = 1 if s[-1] != t[-1] else 0
diag = edit_distance(s[:-1], t[:-1], memo) + delta
vert = edit_distance(s[:-1], t, memo) + 1
horz = edit_distance(s, t[:-1], memo) + 1
min_distance = min(diag, vert, horz)
memo[(len(s), len(t))] = min_distance
return min_distance
if __name__ == "__main__":
print(edit_distance(input(), input()))
| def edit_distance(s, t, memo={}):
if len(s) == 0:
return len(t)
if len(t) == 0:
return len(s)
if (len(s), len(t)) in memo:
return memo[len(s), len(t)]
delta = 1 if s[-1] != t[-1] else 0
diag = edit_distance(s[:-1], t[:-1], memo) + delta
vert = edit_distance(s[:-1], t, memo) + 1
horz = edit_distance(s, t[:-1], memo) + 1
min_distance = min(diag, vert, horz)
memo[len(s), len(t)] = min_distance
return min_distance
if __name__ == '__main__':
print(edit_distance(input(), input())) |
#
# @lc app=leetcode id=280 lang=python3
#
# [280] Wiggle Sort
#
# @lc code=start
class Solution:
def wiggleSort(self, nums):
"""
Do not return anything, modify nums in-place instead.
"""
if nums:
nums.sort()
for i in range(1, len(nums) - 1, 2):
nums[i], nums[i + 1] = nums[i + 1], nums[i]
# def swap(ls):
# for i in range(0, len(ls) - 1, 2):
# ls[i], ls[i + 1] = ls[i + 1], ls[i]
# return ls
# if __name__ == '__main__':
# newls = swap([1,2,3,4,5])
# print(newls)
# @lc code=end
| class Solution:
def wiggle_sort(self, nums):
"""
Do not return anything, modify nums in-place instead.
"""
if nums:
nums.sort()
for i in range(1, len(nums) - 1, 2):
(nums[i], nums[i + 1]) = (nums[i + 1], nums[i]) |
# Examen Parcial 1 Algoritmos y Estructuras 2 Seccion 305C1
# ----- Programacion Modular -----
def factorial(numero):
fact = 1
for i in range (1, numero + 1):
fact *= i
return (fact)
def coseno(num, termino):
bandera = True
result = 1
if(termino % 2 == 0):
for i in range (2, termino + 2, 2):
if(bandera):
result -= pow(num, i) / factorial(i)
bandera = False
else:
result += pow(num, i) / factorial(i)
bandera = True
if((termino % 2 == 1) & (termino > 1)):
for i in range (2, termino + 2, 2):
if(bandera):
result -= pow(num, i) / factorial(i)
bandera = False
else:
result += pow(num, i) / factorial(i)
bandera = True
print('El valor de termino',termino ,'es:', result)
num1 = int(input('Ingrese un termino de la serie: '))
numF = int(input('Coseno de: '))
"""
num2 = int(input('Ingrese la aproximacion de la serie hasta un n dado: '))
num3 = int(input('Ingrese la toleracia hasta donde llegara la serie: ')) """
coseno(numF, num1)
| def factorial(numero):
fact = 1
for i in range(1, numero + 1):
fact *= i
return fact
def coseno(num, termino):
bandera = True
result = 1
if termino % 2 == 0:
for i in range(2, termino + 2, 2):
if bandera:
result -= pow(num, i) / factorial(i)
bandera = False
else:
result += pow(num, i) / factorial(i)
bandera = True
if (termino % 2 == 1) & (termino > 1):
for i in range(2, termino + 2, 2):
if bandera:
result -= pow(num, i) / factorial(i)
bandera = False
else:
result += pow(num, i) / factorial(i)
bandera = True
print('El valor de termino', termino, 'es:', result)
num1 = int(input('Ingrese un termino de la serie: '))
num_f = int(input('Coseno de: '))
" \nnum2 = int(input('Ingrese la aproximacion de la serie hasta un n dado: '))\nnum3 = int(input('Ingrese la toleracia hasta donde llegara la serie: ')) "
coseno(numF, num1) |
# -*- coding: utf-8 -*-
"""
mothpy - moth-inspired navigation models flying in `pompy` (Puff Odour-plume Model in Python)
@author: Noam Benelli and Alex Liberzon
"""
name = "mothpy"
| """
mothpy - moth-inspired navigation models flying in `pompy` (Puff Odour-plume Model in Python)
@author: Noam Benelli and Alex Liberzon
"""
name = 'mothpy' |
# HEAD
# Classes - Metaclasses for class modification
# DESCRIPTION
# Describes how to use metaclasses dynamically to modify classes during instatiation
# Describes how to add attributes to a metaclass
# or re-implement the type __call__ methods
# Public
# RESOURCES
#
# /opt/pycharm/pycharm-community-2019.2.1/bin# sh pycharm.sh
# Concept taken from following
# https://github.com/django/django/blob/master/django/db/models/base.py
# Creating a Base meta class using type
class ModelBase(type):
# Creating a method to be applied to all classed extending metaclass ModelBase
def hello(cls):
print("Test", type(cls))
# __new__ , __init__ , __call__ , __dict__
# Overriding implementation of __init__ of type and returning a class
def __init__(cls, name, bases, dct):
# Printing arguments
print('bases', bases)
print('name', name)
print('dict', dct)
print('cls.__dict__', cls.__dict__)
# Returning the class as is - No changes
# init passes an argument of cls or self
return super(ModelBase, cls).__init__(cls)
def __call__(self, *args, **kwargs):
# Adding hello and sayHello method
setattr(self, "hello", self.hello)
setattr(self, "sayHello", self.hello)
# Returning the modified class with two new methods
# Call does not pass a argument
return super(ModelBase, self).__call__()
class MyTest(metaclass=ModelBase):
attributesname = 10
# Creating a method testhello
def testhello(self):
self.sayHello()
print("Printing class details inside of MyTest", type(self))
# Instantiating MyTest class extended using the metaclass ModelBase
obj = MyTest()
# Checking availability of attributes/methods
obj.sayHello()
obj.hello()
obj.testhello()
| class Modelbase(type):
def hello(cls):
print('Test', type(cls))
def __init__(cls, name, bases, dct):
print('bases', bases)
print('name', name)
print('dict', dct)
print('cls.__dict__', cls.__dict__)
return super(ModelBase, cls).__init__(cls)
def __call__(self, *args, **kwargs):
setattr(self, 'hello', self.hello)
setattr(self, 'sayHello', self.hello)
return super(ModelBase, self).__call__()
class Mytest(metaclass=ModelBase):
attributesname = 10
def testhello(self):
self.sayHello()
print('Printing class details inside of MyTest', type(self))
obj = my_test()
obj.sayHello()
obj.hello()
obj.testhello() |
# Challenge 036 - 04/21/2021 - Henrique Matheus Alves Pereira
# Write a program to approve the bank loan for the purchase of a home.
# Ask the price of the house, the buyer's salary and how many years he will pay.
# The monthly installment cannot exceed 30% of the salary or the loan will be denied.
print("Challenge 036")
print("Please, for the following information, enter only two digits after the comma.")
priceHouse = float(input("1 - Please, enter the purchase price of the home (R$):"))
financingTime = float(input("2 - Please, enter the financing time of the home (Years):"))
salary = float(input("3 - Please, enter you salary (R$):"))
bankLoanReleased = "Bank loan released, considering that the monthly installment is below 30% of the informed salary."
bankLoanNotReleased = "Bank loan not released, considering that the monthly installment amount is above 30% of the informed salary."
monthlyInstallment = float(priceHouse/(financingTime*12))
print("The monthly installment is: R${:.2f}" .format(monthlyInstallment))
print(bankLoanReleased) if monthlyInstallment <= float(salary*0.3) else print(bankLoanNotReleased)
print("Financial institutions accept to commit up to 30% of the gross family income in real estate financing. Source: https://ka.com.br/qual-e-a-renda-para-financiamento-com-a-caixa/") | print('Challenge 036')
print('Please, for the following information, enter only two digits after the comma.')
price_house = float(input('1 - Please, enter the purchase price of the home (R$):'))
financing_time = float(input('2 - Please, enter the financing time of the home (Years):'))
salary = float(input('3 - Please, enter you salary (R$):'))
bank_loan_released = 'Bank loan released, considering that the monthly installment is below 30% of the informed salary.'
bank_loan_not_released = 'Bank loan not released, considering that the monthly installment amount is above 30% of the informed salary.'
monthly_installment = float(priceHouse / (financingTime * 12))
print('The monthly installment is: R${:.2f}'.format(monthlyInstallment))
print(bankLoanReleased) if monthlyInstallment <= float(salary * 0.3) else print(bankLoanNotReleased)
print('Financial institutions accept to commit up to 30% of the gross family income in real estate financing. Source: https://ka.com.br/qual-e-a-renda-para-financiamento-com-a-caixa/') |
abeceda = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
def abecedna_vrednost(ime):
seznam = list(str(ime))
vrednost = 0
for i in range(len(seznam)):
vrednost = vrednost + abeceda.index(seznam[i]) + 1
return vrednost
# Datoteka se nahaja na Project Euler pod spodnjim imenom.
datoteka = open("podatki\p022_names.txt",'r') # r je branje
imena = sorted(datoteka.read().replace('"','').split(",")) #sorted = abecedni red
def vsota(seznam):
vsota = 0
for i in range(len(seznam)):
vsota = vsota + (i + 1) * abecedna_vrednost(seznam[i])
return vsota
print(vsota(imena)) | abeceda = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
def abecedna_vrednost(ime):
seznam = list(str(ime))
vrednost = 0
for i in range(len(seznam)):
vrednost = vrednost + abeceda.index(seznam[i]) + 1
return vrednost
datoteka = open('podatki\\p022_names.txt', 'r')
imena = sorted(datoteka.read().replace('"', '').split(','))
def vsota(seznam):
vsota = 0
for i in range(len(seznam)):
vsota = vsota + (i + 1) * abecedna_vrednost(seznam[i])
return vsota
print(vsota(imena)) |
wt3_3_7 = {'192.168.122.110': [5.3551, 8.3352, 7.3783, 6.9324, 6.6606, 6.4673, 6.5077, 6.6393, 7.3012, 7.1319, 6.7323, 6.3639, 6.33, 6.6602, 6.9711, 6.8935, 7.1543, 7.3671, 7.2675, 7.223, 7.1379, 7.3225, 7.2638, 7.4282, 7.435, 7.3821, 7.5459, 7.4728, 7.4688, 7.4658, 7.3986, 7.347, 7.4649, 7.4186, 7.4119, 7.358, 7.3216, 7.3293, 7.4145, 7.3954, 7.3986, 7.3596, 7.3364, 7.3243, 7.411, 7.3719, 7.3574, 7.3301, 7.3179, 7.3856, 7.3547, 7.3178, 7.2821, 7.2477, 7.2416, 7.2305, 7.2017, 7.1679, 7.2313, 7.2228, 7.2006, 7.1695, 7.1567, 7.1309, 7.1868, 7.2391, 7.2265, 7.2816, 7.3295, 7.325, 7.3876, 7.365, 7.3474, 7.3721, 7.4419, 7.4331, 7.4142, 7.4177, 7.393, 7.447, 7.4236, 7.3969, 7.4034, 7.384, 7.3894, 7.3673, 7.4125, 7.4083, 7.404, 7.3883, 7.3706, 7.3558, 7.3448, 7.3287, 7.3181, 7.3544, 7.3439, 7.3419, 7.3233, 7.304, 7.3442, 7.3357, 7.3327, 7.3148, 7.2982, 7.2859, 7.2686, 7.2655, 7.2632, 7.2493, 7.239, 7.2229, 7.2081, 7.1923, 7.1897, 7.1765, 7.1731, 7.1694, 7.1536, 7.1417, 7.1329, 7.0821, 7.0789, 7.1101, 7.1407, 7.1348, 7.1206, 7.1088, 7.0678, 7.0536, 7.044, 7.0748, 7.0656, 7.0572, 7.0858, 7.1107, 7.1164, 7.1057, 7.132, 7.1261, 7.1156, 7.1084, 7.097, 7.1251, 7.2267, 7.2762, 7.2679, 7.2567, 7.305, 7.3736, 7.4014, 7.3891, 7.4139, 7.3767, 7.3698, 7.3589, 7.3605, 7.3554, 7.3503, 7.372, 7.3669, 7.3583, 7.3625, 7.3536, 7.3412, 7.329, 7.3168, 7.315, 7.3049, 7.2964, 7.2915, 7.2864, 7.308, 7.2979, 7.3176, 7.3116, 7.301, 7.2939, 7.2884, 7.2797, 7.2761, 7.3008, 7.3069, 7.3286, 7.3461, 7.3447, 7.3423, 7.338, 7.3554, 7.346, 7.3361, 7.3259, 7.3257, 7.3186, 7.3156, 7.3103, 7.3008, 7.2979, 7.2968, 7.3153, 7.3062, 7.3046, 7.3006, 7.2692, 7.2634, 7.2592, 7.2541, 7.2465, 7.2371, 7.2331, 7.225, 7.2167, 7.2122, 7.2082, 7.2078, 7.1996, 7.1916, 7.1847, 7.1821, 7.178, 7.1547, 7.1496, 7.1462, 7.1227, 7.1171, 7.112, 7.1103, 7.1273, 7.1249, 7.1177, 7.1108, 7.1051, 7.2225, 7.2162, 7.2112, 7.2053, 7.2044, 7.1973, 7.2664, 7.261, 7.256, 7.2745, 7.2688, 7.2618, 7.2605, 7.2648, 7.2597, 7.2776, 7.2734, 7.2671, 7.2621, 7.2603, 7.2584, 7.254, 7.2689, 7.2623, 7.2573, 7.2545, 7.2474, 7.242, 7.2561, 7.2829, 7.2777, 7.2723, 7.2649, 7.2579, 7.2359, 7.2339, 7.2312, 7.2453, 7.2405, 7.2415, 7.2341, 7.2288, 7.2235, 7.2205, 7.2176, 7.2118, 7.2091, 7.2084, 7.2215, 7.2161, 7.2168, 7.2335, 7.2286, 7.244, 7.2408, 7.2354, 7.2553, 7.2539, 7.2865, 7.2824, 7.299, 7.3339, 7.3277, 7.3227, 7.3179, 7.3462, 7.3459, 7.3412, 7.3358, 7.3392, 7.3518, 7.3644, 7.3602, 7.3593, 7.3543, 7.3554, 7.3533, 7.3498, 7.3471, 7.341, 7.3372, 7.3311, 7.3295, 7.3303, 7.3295, 7.3248, 7.3243, 7.3241, 7.3203, 7.3314, 7.3425, 7.3408, 7.3517, 7.3646, 7.3624, 7.3606, 7.3715, 7.3655, 7.3595, 7.3532, 7.3599, 7.3718, 7.3855, 7.3793, 7.3758, 7.3879, 7.3873, 7.3819, 7.38, 7.3753, 7.3695, 7.354, 7.3507, 7.3563, 7.3508, 7.3524, 7.3495, 7.3445, 7.3418, 7.3368, 7.351, 7.3466, 7.3562, 7.3534, 7.3634, 7.3731, 7.3721, 7.3959, 7.3948, 7.3965, 7.3926, 7.3915, 7.4055, 7.4165, 7.4115, 7.4084, 7.4075, 7.4171, 7.4117, 7.4094, 7.4174, 7.4156, 7.4133, 7.4105, 7.4057, 7.4158, 7.4111, 7.4076, 7.4055, 7.4008, 7.4003, 7.3983, 7.4074, 7.4079, 7.4034, 7.3993, 7.3976, 7.4077, 7.4028, 7.3973, 7.4066, 7.4031, 7.3986, 7.3965, 7.4049, 7.4132, 7.4079, 7.4054, 7.4138, 7.4116, 7.4102, 7.4071, 7.4021, 7.4109, 7.4063, 7.4051, 7.4028, 7.411, 7.4068, 7.4021, 7.3973, 7.4055, 7.4084, 7.4183, 7.4172, 7.4145, 7.4095, 7.4074, 7.418, 7.4272, 7.4227, 7.4183, 7.4137, 7.409, 7.4051, 7.403, 7.411, 7.4063, 7.4038, 7.4014, 7.3988, 7.3958, 7.3819, 7.3794, 7.3757, 7.3743, 7.3745, 7.3718, 7.3806, 7.3885, 7.3886, 7.3985, 7.4079, 7.4053, 7.416, 7.4258, 7.4365, 7.4348, 7.4322, 7.4416, 7.4507, 7.4474, 7.4567, 7.4526, 7.4483, 7.445, 7.4425, 7.4392, 7.4369, 7.4337, 7.4242, 7.421, 7.4166, 7.4242, 7.4335, 7.4306, 7.438, 7.4407, 7.4368, 7.4443, 7.4518, 7.4494, 7.4451, 7.4409, 7.438, 7.4467, 7.4448, 7.4402, 7.4362, 7.4344, 7.4302, 7.4485, 7.4473, 7.4773, 7.4857, 7.4827, 7.4797, 7.5021, 7.4987, 7.4953, 7.5151, 7.511, 7.5086, 7.5052, 7.5023, 7.5008, 7.499, 7.4955, 7.4936, 7.4896, 7.4965, 7.4953, 7.4927, 7.4915, 7.487, 7.4833, 7.4793, 7.4783, 7.4848, 7.4805, 7.4786, 7.4874, 7.4848, 7.4821, 7.4787, 7.4758, 7.4717, 7.4723, 7.4688, 7.4652, 7.4639, 7.4707, 7.4673, 7.464, 7.4606, 7.4982, 7.4942, 7.4906, 7.4892, 7.4954, 7.4933, 7.5007, 7.4999, 7.4982, 7.4941, 7.4915, 7.4884, 7.4866, 7.4825, 7.4788, 7.4853, 7.4919, 7.4881, 7.4844, 7.4805, 7.4766, 7.4825, 7.4825, 7.4788, 7.4782, 7.477, 7.4736, 7.4702, 7.4674, 7.4828, 7.4803, 7.4772, 7.4736, 7.4807, 7.4774, 7.478, 7.4764, 7.473, 7.4714, 7.4682, 7.4827, 7.4944, 7.4917, 7.4823, 7.4925, 7.4918, 7.4981, 7.5039, 7.5008, 7.4972, 7.4965, 7.494, 7.4933, 7.492, 7.4891, 7.4858, 7.4827, 7.4815, 7.4871, 7.4858, 7.492, 7.4898, 7.4956, 7.4919, 7.4884, 7.4846, 7.4815, 7.4803, 7.477, 7.4775, 7.4761, 7.4809, 7.4698, 7.4695, 7.4696, 7.4719, 7.4702, 7.4677, 7.4652, 7.462, 7.4593, 7.4583, 7.4641, 7.4608, 7.4598, 7.4579, 7.455, 7.5032, 7.5091, 7.5054, 7.4953, 7.4918, 7.4898, 7.4955, 7.4925, 7.5069, 7.5033, 7.5054, 7.5458, 7.5425, 7.5395, 7.5392, 7.5375, 7.5342, 7.5308, 7.5301, 7.528, 7.5175, 7.515, 7.5237, 7.5298, 7.528, 7.5247, 7.5227, 7.5276, 7.5265, 7.5232, 7.5211, 7.5273, 7.5242, 7.5333, 7.5305, 7.5276, 7.5256, 7.5236, 7.5207, 7.5257, 7.525, 7.5217, 7.5203, 7.5184, 7.5166, 7.5218, 7.5132, 7.5123, 7.5102, 7.5115, 7.513, 7.5105, 7.5076, 7.5046, 7.5017, 7.508, 7.5054, 7.5028, 7.5003, 7.4995, 7.4964, 7.4932, 7.4913, 7.4964, 7.4943, 7.4924, 7.4892, 7.487, 7.4846, 7.484, 7.4924, 7.4929, 7.5025, 7.4999, 7.4968, 7.494, 7.4999, 7.497, 7.5019, 7.4999, 7.4973, 7.4978, 7.4956, 7.4928, 7.4986, 7.492, 7.489, 7.4871, 7.4849, 7.4829, 7.4831, 7.4883, 7.4851, 7.4833, 7.4809, 7.4799, 7.4776, 7.4821, 7.4897, 7.4946, 7.4921, 7.4892, 7.4877, 7.4872, 7.4847, 7.4894, 7.4865, 7.4912, 7.4898, 7.4868, 7.4909, 7.4903, 7.4957, 7.4931, 7.4933, 7.4923, 7.4905, 7.4888, 7.4938, 7.491, 7.4882, 7.493, 7.4986, 7.4959, 7.5008, 7.5058, 7.5029, 7.5005, 7.4975, 7.4965, 7.4962, 7.4934, 7.4931, 7.4918, 7.4896, 7.4957, 7.494, 7.4928, 7.4902, 7.4967, 7.5016, 7.5063, 7.5049, 7.5021, 7.4993, 7.498, 7.4964, 7.4945, 7.4934, 7.4924, 7.4969, 7.4958, 7.5015, 7.5061, 7.5046, 7.503, 7.5034, 7.5073, 7.5114, 7.5127, 7.5196, 7.5168, 7.5215, 7.5187, 7.5167, 7.514, 7.5112, 7.5091, 7.5083, 7.5057, 7.5031, 7.5082, 7.5072, 7.5059, 7.5209, 7.5182, 7.5247, 7.5164, 7.5181, 7.5114, 7.5092, 7.5099, 7.5078, 7.5131, 7.5122, 7.5114, 7.5111, 7.5156, 7.5193, 7.5176, 7.5149, 7.5122, 7.5101, 7.5182, 7.5171, 7.5098, 7.507, 7.5055, 7.5038, 7.5079, 7.5056, 7.5032, 7.5006, 7.4998, 7.4986, 7.5028, 7.4956, 7.5003, 7.5048, 7.5025, 7.5011, 7.5002, 7.5053, 7.5042, 7.5025, 7.5025, 7.5006, 7.4987, 7.4985, 7.4963, 7.4892, 7.4868, 7.4921, 7.4899, 7.4877, 7.4872, 7.4865, 7.4852, 7.483, 7.4818, 7.4819, 7.48, 7.4845, 7.4892, 7.4927, 7.4919, 7.4896, 7.485, 7.489, 7.4867, 7.4911, 7.4951, 7.4997, 7.4971, 7.4949, 7.4938, 7.4914, 7.4913, 7.4909, 7.4897, 7.4872, 7.4853, 7.4832, 7.4881, 7.4862, 7.4842, 7.4824, 7.4817, 7.4798, 7.4808, 7.4786, 7.4914, 7.4847, 7.4826, 7.4829, 7.4806, 7.4841, 7.4822, 7.4799, 7.4732, 7.4894, 7.4882, 7.4898, 7.4876, 7.4923, 7.4911, 7.4949, 7.4992, 7.497, 7.4955, 7.4933, 7.4914, 7.496, 7.5005, 7.4983, 7.4971, 7.4957, 7.4943, 7.4919, 7.496, 7.5006, 7.5009, 7.4987, 7.498, 7.5021, 7.5126, 7.511, 7.5044, 7.498, 7.4917, 7.4897, 7.4937, 7.4975, 7.5027, 7.5068, 7.5049, 7.5041, 7.5026, 7.5061, 7.5094, 7.5074, 7.5116, 7.5157, 7.5191, 7.5168, 7.5152, 7.5153, 7.5131, 7.5115, 7.5103, 7.5086, 7.5078, 7.5127, 7.5112, 7.5127, 7.5106, 7.5085, 7.5074, 7.5074, 7.5053, 7.5057, 7.5039, 7.5015, 7.4994, 7.5031, 7.5064, 7.5062, 7.5041, 7.5023, 7.502, 7.5005, 7.5043, 7.5025, 7.5002, 7.4996, 7.4988, 7.5024, 7.5001, 7.4994, 7.4972, 7.4907, 7.4885, 7.488, 7.4922, 7.4955, 7.4892, 7.4872, 7.4866, 7.4869, 7.4854, 7.4838, 7.4847, 7.4832, 7.4816, 7.4794, 7.4834, 7.478, 7.4762, 7.4754, 7.4736, 7.4681, 7.4665, 7.4654, 7.4643, 7.4623, 7.4615, 7.4593, 7.4572, 7.4562, 7.4545, 7.4531, 7.4566, 7.4546, 7.4591, 7.4571, 7.4567, 7.4548, 7.4535, 7.4514, 7.4494, 7.4483, 7.4471, 7.4455, 7.4454, 7.4441, 7.4425, 7.4426, 7.4407, 7.4394, 7.4382, 7.4376, 7.4362, 7.4358, 7.434, 7.4322, 7.4354, 7.4333, 7.4316, 7.431, 7.4292, 7.4334, 7.4327, 7.4321, 7.4463, 7.4458, 7.4497, 7.4492, 7.4437, 7.4483, 7.4477, 7.449, 7.4471, 7.4521, 7.4556, 7.4538, 7.4477, 7.4475, 7.4472, 7.4566, 7.4551, 7.4542, 7.4532, 7.4561, 7.4556, 7.4541, 7.4521, 7.4559, 7.4547, 7.4576, 7.4559, 7.4542, 7.4528, 7.4538, 7.4517, 7.4463, 7.4406, 7.444, 7.4425, 7.4409, 7.439, 7.437, 7.4308, 7.4406, 7.4394, 7.4375, 7.4355, 7.4388, 7.4376, 7.4411, 7.4393, 7.4377, 7.4359, 7.4351, 7.4333, 7.4386, 7.4334, 7.4279, 7.4262, 7.4211, 7.4204, 7.4188, 7.419, 7.4182, 7.4165, 7.411, 7.4098, 7.4091, 7.4074, 7.4065, 7.4008, 7.3996, 7.398, 7.3971, 7.3964, 7.4006, 7.3993, 7.4036, 7.4047, 7.4042, 7.4034, 7.4036, 7.3985, 7.3967, 7.3963, 7.3949, 7.3937, 7.3919, 7.3901, 7.3897, 7.3887, 7.3889, 7.3919, 7.3915, 7.3917, 7.3913, 7.3899, 7.3949, 7.3953, 7.3935, 7.3916, 7.3898, 7.3929, 7.3966, 7.3964, 7.396, 7.3942, 7.3925, 7.3916, 7.3899, 7.3896, 7.389, 7.3885, 7.3835, 7.3816, 7.3799, 7.3786, 7.3872, 7.3866, 7.3901, 7.3906, 7.3891, 7.3873, 7.3866, 7.3859, 7.3844, 7.3835, 7.3829, 7.3773, 7.3762, 7.3745, 7.3906, 7.3908, 7.3904, 7.3895, 7.3879, 7.3876, 7.3874, 7.3903, 7.3892, 7.3922, 7.3913, 7.3947, 7.3929, 7.3912, 7.3941, 7.3933, 7.3916, 7.3899, 7.3881, 7.3864, 7.3894, 7.3878, 7.3861, 7.3844, 7.3835, 7.3833, 7.379, 7.3775, 7.3761, 7.3793, 7.3787, 7.3781, 7.3763, 7.3714, 7.3701, 7.3692, 7.3722, 7.3712, 7.3695, 7.368, 7.368, 7.3664, 7.3661, 7.3619, 7.3601, 7.3587, 7.3572, 7.3562, 7.3555, 7.3545, 7.3538, 7.3522, 7.352, 7.3511, 7.3503, 7.35, 7.3484, 7.3467, 7.3457, 7.344, 7.344, 7.3428, 7.3411, 7.3425, 7.3408, 7.3401, 7.3384, 7.3415, 7.3407, 7.3391, 7.3419, 7.3403, 7.3472, 7.3462, 7.349, 7.3519, 7.3512, 7.3507, 7.3506, 7.3491, 7.3523, 7.3517, 7.3547, 7.3575, 7.3561, 7.3589, 7.3574, 7.3563, 7.3593, 7.3577, 7.3564, 7.3549, 7.3503, 7.3461, 7.3423, 7.342, 7.3376, 7.3361, 7.3371, 7.3364, 7.3353, 7.3343, 7.3369, 7.3411, 7.3398, 7.3385, 7.3412, 7.3397, 7.3391, 7.338, 7.3379, 7.3407, 7.3399, 7.339, 7.339, 7.342, 7.3416, 7.3404, 7.34, 7.343, 7.3424, 7.3421, 7.3452, 7.3482, 7.3474, 7.3468, 7.347, 7.3458, 7.3449, 7.3441, 7.3471, 7.3455, 7.344, 7.3433, 7.346, 7.3451, 7.3445, 7.3474, 7.3462, 7.346, 7.3489, 7.3477, 7.347, 7.3454, 7.3447, 7.3448, 7.3479, 7.3484, 7.348, 7.3466, 7.3451, 7.3443, 7.3429, 7.3413, 7.341, 7.3402, 7.339, 7.3384, 7.3372, 7.3362, 7.3347, 7.3339, 7.3364, 7.339, 7.3418, 7.3403, 7.3388, 7.3381, 7.3408, 7.3397, 7.3398, 7.3389, 7.3376, 7.337, 7.3356, 7.3353, 7.3383, 7.337, 7.3356, 7.3382, 7.337, 7.3354, 7.3433, 7.3422, 7.3411, 7.3411, 7.3404, 7.3431, 7.3455, 7.3439, 7.3509, 7.3497, 7.354, 7.3626, 7.3612, 7.3654, 7.3641, 7.3626, 7.3652, 7.3642, 7.3668, 7.3666, 7.3692, 7.368, 7.3667, 7.3653, 7.3643, 7.3629, 7.3625, 7.3614, 7.3608, 7.3636, 7.3621, 7.361, 7.3595, 7.3583, 7.3568, 7.3556, 7.3625, 7.3673, 7.3791, 7.3788, 7.3817, 7.3839, 7.3834, 7.3825, 7.3851, 7.3838, 7.3795, 7.3789, 7.3778, 7.377, 7.3796, 7.3786, 7.3772, 7.3798, 7.3788, 7.3788, 7.3777, 7.3767, 7.3756, 7.3875, 7.3903, 7.389, 7.3917, 7.3904, 7.393, 7.3919, 7.3906, 7.3901, 7.3892, 7.3886, 7.3875, 7.386, 7.3859, 7.3847, 7.3835, 7.3821, 7.3811, 7.3806, 7.3801, 7.3791, 7.3779, 7.3768, 7.3765, 7.3755, 7.3781, 7.3809, 7.3842, 7.3882, 7.3928, 7.3915, 7.39, 7.389, 7.3918, 7.391, 7.3898, 7.3885, 7.3877, 7.387, 7.3864, 7.385, 7.3838, 7.3859, 7.3847, 7.3835, 7.3862, 7.3851, 7.384, 7.3826, 7.3817, 7.3813, 7.3807, 7.3794, 7.3818, 7.3811, 7.3796, 7.3785, 7.3778, 7.3769, 7.3762, 7.3766, 7.3802, 7.379, 7.3779, 7.3768, 7.3766, 7.3756, 7.3748, 7.374, 7.3728, 7.3723, 7.372, 7.371, 7.375, 7.3736, 7.3769, 7.3758, 7.3744, 7.3776, 7.3807, 7.3808, 7.3798, 7.3822, 7.3815, 7.3843, 7.3846, 7.3837, 7.3837, 7.3827, 7.3814, 7.3806, 7.3803, 7.3791, 7.3813, 7.3808, 7.38, 7.3791, 7.3777, 7.3783, 7.3783, 7.3783, 7.3778, 7.3734, 7.3721, 7.3716, 7.3737, 7.3731, 7.3719, 7.3716, 7.3705, 7.3707, 7.3694, 7.3682, 7.3671, 7.3704, 7.3694, 7.3689, 7.3676, 7.3663, 7.3652, 7.364, 7.3628, 7.3617, 7.3612, 7.3601, 7.3588, 7.3645, 7.3635, 7.3624, 7.3582, 7.3571, 7.3539, 7.3547, 7.3534, 7.3523, 7.3527, 7.3549, 7.3537, 7.3527, 7.3554, 7.3543, 7.3533, 7.3523, 7.3511, 7.3482, 7.347, 7.3494, 7.3491, 7.3479, 7.3501, 7.3491, 7.348, 7.3469, 7.3464, 7.3454, 7.3455, 7.3443, 7.3441, 7.343, 7.3424, 7.3449, 7.3448, 7.3435, 7.3433, 7.3428, 7.3424, 7.3424, 7.345, 7.344, 7.343, 7.3417, 7.3406, 7.3431, 7.3419, 7.341, 7.3399, 7.339, 7.3384, 7.3382, 7.341, 7.3397, 7.3392, 7.3382, 7.3371, 7.3358, 7.3348, 7.3338, 7.3334, 7.3328, 7.3315, 7.3303, 7.3291, 7.3278, 7.3265, 7.3253, 7.3243, 7.3268, 7.3263, 7.3263, 7.3393, 7.3383, 7.3371, 7.3367, 7.3332, 7.3365, 7.3389, 7.3387, 7.3381, 7.3375, 7.3399, 7.3425, 7.3423, 7.3448, 7.3442, 7.3432, 7.3455, 7.3443, 7.3433, 7.3427, 7.3417, 7.344, 7.3501, 7.35, 7.3499, 7.3489, 7.3484, 7.3479, 7.3471, 7.3464, 7.3461, 7.3464, 7.3459, 7.3449, 7.3438, 7.3426, 7.3419, 7.3413, 7.3403, 7.3465, 7.3459, 7.3448, 7.3445, 7.3436, 7.3424, 7.3416, 7.344, 7.3429, 7.3425, 7.3435, 7.3431, 7.3461, 7.3438, 7.343, 7.3455, 7.3444, 7.344, 7.3439, 7.3428, 7.3418, 7.3408, 7.3432, 7.3428, 7.3428, 7.3428, 7.342, 7.3416, 7.3413, 7.3403, 7.3425, 7.3413, 7.3403, 7.3401, 7.3396, 7.3396, 7.3415, 7.3436, 7.343, 7.342, 7.3444, 7.3497, 7.3487, 7.3482, 7.3479, 7.3467, 7.3456, 7.3458, 7.3452, 7.3454, 7.3442, 7.3472, 7.3475, 7.3443, 7.3466, 7.3464, 7.3463, 7.3485, 7.348, 7.3479, 7.3486, 7.3482, 7.3504, 7.3504, 7.3528, 7.3521, 7.3543, 7.3532, 7.3523, 7.3517, 7.3509, 7.3505, 7.3526, 7.3513, 7.3501, 7.349, 7.348, 7.3501, 7.3489, 7.3479, 7.3467, 7.346, 7.345, 7.3471, 7.3469, 7.3462, 7.3458, 7.3447, 7.3471, 7.3468, 7.3465, 7.3456, 7.3479, 7.3501, 7.349, 7.348, 7.3538, 7.353, 7.3527, 7.3517, 7.3543, 7.3657, 7.3677, 7.3668, 7.3723, 7.3726, 7.3717, 7.3717, 7.3706, 7.3697, 7.3691, 7.371, 7.3702, 7.3694, 7.3688, 7.3686, 7.3684, 7.3685, 7.3679, 7.3668, 7.367, 7.369, 7.3709, 7.3699, 7.3689, 7.3679, 7.3674, 7.3663, 7.3651, 7.3649, 7.3638, 7.3637, 7.3626, 7.3678, 7.3698, 7.369, 7.3664, 7.3693, 7.3696, 7.3719, 7.371, 7.3699, 7.3692, 7.3685, 7.3675, 7.3664, 7.363, 7.362, 7.361, 7.3599, 7.3594, 7.3585, 7.3581, 7.357, 7.3591, 7.3585, 7.3576, 7.3566, 7.3556, 7.3546, 7.354, 7.3618, 7.3638, 7.3627, 7.3617, 7.3608, 7.3599, 7.3589, 7.3578, 7.3572, 7.3562, 7.3557, 7.358, 7.357, 7.3565, 7.3555, 7.3544, 7.3538, 7.3504, 7.3541, 7.3531, 7.3526, 7.3515, 7.3504, 7.3494, 7.3488, 7.3486, 7.3479, 7.3477, 7.3444, 7.3433, 7.352, 7.3516, 7.3513, 7.3536, 7.3528, 7.3534, 7.3552, 7.3561, 7.3559, 7.3559, 7.3555, 7.355, 7.3543, 7.3533, 7.3526, 7.3518, 7.3509, 7.3499, 7.3488, 7.3486, 7.3475, 7.3466, 7.3486, 7.3505, 7.3505, 7.3495, 7.3487, 7.3483, 7.3482, 7.35, 7.3517, 7.3486, 7.3482, 7.3477, 7.3468, 7.3487, 7.3476, 7.3466, 7.3455, 7.3421, 7.3412, 7.3402, 7.3392, 7.3382, 7.3373, 7.3347, 7.334, 7.3358, 7.3353, 7.3344, 7.3335, 7.3326, 7.332, 7.3309, 7.3302, 7.3291, 7.3289, 7.331, 7.33, 7.329, 7.328, 7.327, 7.3261, 7.3254, 7.3243, 7.3264, 7.3284, 7.3274, 7.3275, 7.3324, 7.3345, 7.3337, 7.3335, 7.3326, 7.3318, 7.3316, 7.3319, 7.332, 7.3318, 7.331, 7.3303, 7.3299, 7.332, 7.334, 7.3332, 7.3325, 7.3327, 7.3348, 7.3342, 7.3344, 7.3362, 7.3353, 7.3358, 7.3379, 7.337, 7.3361, 7.3353, 7.3345, 7.3345, 7.3363, 7.3356, 7.335, 7.3342, 7.3389, 7.3379, 7.3369, 7.3389, 7.3387, 7.3385, 7.3378, 7.3369, 7.3363, 7.3359, 7.335, 7.3347, 7.3337, 7.3334, 7.3324, 7.3319, 7.3311, 7.3303, 7.33, 7.332, 7.3344, 7.3342, 7.3332, 7.335, 7.3343, 7.3332, 7.3326, 7.3372, 7.3424, 7.3421, 7.3412, 7.343, 7.3536, 7.3526, 7.352, 7.351, 7.35, 7.3495, 7.3512, 7.3512, 7.3529, 7.3519, 7.3519, 7.3515, 7.3512, 7.3505, 7.3503, 7.3493, 7.3494, 7.3487, 7.3505, 7.3529, 7.3531, 7.3524, 7.3543, 7.3513, 7.3487, 7.348, 7.3497, 7.3495, 7.3513, 7.3511, 7.3503, 7.3495, 7.3512, 7.3503, 7.3495, 7.3493, 7.3485, 7.3476, 7.3469, 7.3468, 7.3489, 7.3481, 7.347, 7.3491, 7.3492, 7.3486, 7.3536, 7.3556, 7.3554, 7.3574, 7.3566, 7.3567, 7.3565, 7.3587, 7.3583, 7.3575, 7.3567, 7.3564, 7.3583, 7.3603, 7.3602, 7.3626, 7.3619, 7.3609, 7.3602, 7.3594, 7.3584, 7.358, 7.3597, 7.359, 7.358, 7.3579, 7.3573, 7.359, 7.3609, 7.361, 7.3607, 7.3604, 7.3622, 7.3641, 7.3659, 7.3654, 7.3653, 7.3648, 7.364, 7.363, 7.3621, 7.3613, 7.3609, 7.3606, 7.3598, 7.3592, 7.3612, 7.3603, 7.3593, 7.3592, 7.3583, 7.3575, 7.3593, 7.3585, 7.3603, 7.3593, 7.3586, 7.3586, 7.3606, 7.3602, 7.3592, 7.3584, 7.3578, 7.3586, 7.3603, 7.36, 7.3592, 7.3583, 7.3604, 7.3609, 7.361, 7.3601, 7.3594, 7.3586, 7.3579, 7.3573, 7.3566, 7.3557, 7.3549, 7.3541, 7.3537, 7.3532, 7.3532, 7.3535, 7.3526, 7.3544, 7.356, 7.3558, 7.3548, 7.3567, 7.3563, 7.3554, 7.355, 7.3569, 7.3561, 7.3579, 7.3572, 7.3594, 7.3591, 7.3581, 7.3617, 7.3609, 7.3602, 7.3594, 7.3586, 7.3581, 7.3574, 7.3568, 7.3584, 7.3582, 7.3557, 7.3531, 7.3523, 7.3516, 7.3513, 7.3508, 7.3505, 7.3522, 7.3517, 7.3516, 7.3508, 7.3505, 7.3496, 7.3487, 7.3457, 7.3462, 7.3457, 7.3427, 7.3418, 7.3434, 7.343, 7.3423, 7.3418, 7.3409, 7.3427, 7.34, 7.3395, 7.3393, 7.3409, 7.3407, 7.3407, 7.3406, 7.3401, 7.3393, 7.3383, 7.34, 7.3393, 7.341, 7.3412, 7.3412, 7.3404, 7.3399, 7.3417, 7.3437, 7.3455, 7.3447, 7.3465, 7.3457, 7.3475, 7.3466, 7.3458, 7.3452, 7.3442, 7.3435, 7.3426, 7.3426, 7.3446, 7.3445, 7.344, 7.3436, 7.3434, 7.3455, 7.3428, 7.3419, 7.341, 7.3402, 7.3372, 7.3367, 7.3383, 7.3381, 7.3382, 7.3378, 7.3373, 7.3364, 7.3361, 7.3377, 7.3371, 7.3365, 7.3356, 7.3348, 7.3341, 7.3336, 7.3333, 7.3324, 7.3315, 7.3306, 7.3302, 7.3306, 7.3298, 7.3271, 7.3264, 7.3259, 7.3253, 7.327, 7.3263, 7.3259, 7.3278, 7.3275, 7.3268, 7.3265, 7.3283, 7.3258, 7.325, 7.3231, 7.3249, 7.3265, 7.328, 7.3271, 7.3264, 7.3257, 7.325, 7.3246, 7.3248, 7.3239, 7.3303, 7.3296, 7.3286, 7.3283, 7.3274, 7.3272, 7.3278, 7.3295, 7.3312, 7.3303, 7.3301, 7.3292, 7.3287, 7.3278, 7.3276, 7.3276, 7.3272, 7.3265, 7.3258, 7.3253, 7.3245, 7.3264, 7.3264, 7.3257, 7.325, 7.3244, 7.3263, 7.3265, 7.3281, 7.3278, 7.327, 7.3262, 7.3253, 7.3245, 7.3262, 7.3254, 7.3246, 7.3238, 7.324, 7.324, 7.3234, 7.3273, 7.3267, 7.3262, 7.3255, 7.3271, 7.3285, 7.328, 7.3295, 7.331, 7.3303, 7.3302, 7.3308, 7.3324, 7.3381, 7.3379, 7.3374, 7.3371, 7.3363, 7.3365, 7.3357, 7.3375, 7.3367, 7.3361, 7.3352, 7.3344, 7.334, 7.3332, 7.3326, 7.3324, 7.3321, 7.3339, 7.3332, 7.3369, 7.3365, 7.3356, 7.3349, 7.3366, 7.3357, 7.3349, 7.335, 7.3341, 7.3333, 7.3326, 7.3324, 7.3316, 7.3309, 7.33, 7.3297, 7.329, 7.3291, 7.3282, 7.3276, 7.3269, 7.3283, 7.3277, 7.3274, 7.3265, 7.3261, 7.3275, 7.327, 7.327, 7.3288, 7.328, 7.3272, 7.3267, 7.3283, 7.3297, 7.3292, 7.3284, 7.3279, 7.3274, 7.3275, 7.3268, 7.3261, 7.3257, 7.3252, 7.3268, 7.3284, 7.3335, 7.334, 7.336, 7.3357, 7.3372, 7.3367, 7.3382, 7.3382, 7.3376, 7.3374, 7.3392, 7.3384, 7.3384, 7.338, 7.3395, 7.3389, 7.3382, 7.3399, 7.3393, 7.3408, 7.3407, 7.3426, 7.3424, 7.3416, 7.3433, 7.3434, 7.3452, 7.3444, 7.3437, 7.3433, 7.3429, 7.3422, 7.3417, 7.3414, 7.3407, 7.3405, 7.3419, 7.3435, 7.3442, 7.3443, 7.349, 7.3483, 7.3535, 7.3549, 7.3541, 7.3559, 7.3553, 7.3572, 7.3564, 7.3625, 7.3618, 7.3618, 7.3634, 7.3651, 7.3646, 7.3645, 7.3659, 7.3652, 7.3667, 7.3664, 7.3657, 7.3655, 7.3648, 7.3663, 7.3658, 7.3656, 7.3652, 7.3644, 7.3659, 7.3651, 7.3649, 7.3641, 7.3635, 7.3632, 7.3646, 7.3641, 7.3635, 7.3631, 7.3669, 7.3667, 7.3667, 7.3667, 7.366, 7.3652, 7.3645, 7.3637, 7.3629, 7.3624, 7.3616, 7.3608, 7.36, 7.3615, 7.3607, 7.3601, 7.3617, 7.361, 7.3603, 7.3595, 7.3633, 7.3631, 7.363, 7.3622, 7.3623, 7.3619, 7.3634, 7.3626, 7.3643, 7.3639, 7.3631, 7.3625, 7.3617, 7.3611, 7.3619, 7.3624, 7.3616, 7.3594, 7.3621, 7.3613, 7.3607, 7.3663, 7.3658, 7.3653, 7.3646, 7.3639, 7.3633, 7.3627, 7.3623, 7.362, 7.3613, 7.3605, 7.3597, 7.362, 7.3613, 7.3629, 7.3621, 7.3615, 7.3607, 7.3604, 7.3601, 7.3597, 7.359, 7.3638, 7.3631, 7.3623, 7.3619, 7.3633, 7.365, 7.3643, 7.3636, 7.3631, 7.3629, 7.3625, 7.3618, 7.3632, 7.3646, 7.3644, 7.3636, 7.3632, 7.3625, 7.3641, 7.3639, 7.3639, 7.3636, 7.3633, 7.3653, 7.365, 7.3663, 7.3662, 7.3654, 7.3646, 7.3664, 7.3658, 7.3657, 7.365, 7.3646, 7.3641, 7.3656, 7.3649, 7.3646, 7.366, 7.3654, 7.3668, 7.3661, 7.3659, 7.3673, 7.3687, 7.3681, 7.3673, 7.3697, 7.3691, 7.3686, 7.3681, 7.3737, 7.3731, 7.3747, 7.3761, 7.3754, 7.375, 7.3764, 7.3758, 7.3771, 7.3766, 7.3779, 7.3772, 7.3764, 7.3758, 7.3761, 7.3778, 7.3777, 7.3769, 7.3762, 7.3777, 7.3779, 7.3794, 7.3789, 7.3786, 7.3778, 7.3772, 7.3766, 7.3782, 7.378, 7.376, 7.3754, 7.3746, 7.3762, 7.3755, 7.3747, 7.374, 7.3736, 7.3728, 7.3721, 7.3715, 7.3708, 7.3704, 7.37, 7.3716, 7.3708, 7.3704, 7.3697, 7.369, 7.3703, 7.3696, 7.3689, 7.3681, 7.3659, 7.3652, 7.3649, 7.3647, 7.3655, 7.3694, 7.3689, 7.3705, 7.3719, 7.3713, 7.371, 7.3705, 7.3703, 7.3697, 7.3691, 7.3691, 7.3684, 7.3678, 7.3679, 7.3676, 7.369, 7.3688, 7.3691, 7.3683, 7.3677, 7.3673, 7.3668, 7.3646, 7.3645, 7.3659, 7.3652, 7.3648, 7.3645, 7.3638, 7.3634, 7.3631, 7.3631, 7.3645, 7.3657, 7.3651, 7.3645, 7.3638, 7.3632, 7.3684, 7.3698, 7.369, 7.3686, 7.3681, 7.3673, 7.3671, 7.3671, 7.3684, 7.3677, 7.3669, 7.3661, 7.3657, 7.3652, 7.3666, 7.3646, 7.3643, 7.3656, 7.3652, 7.3654, 7.3649, 7.3646, 7.3644, 7.3638, 7.3635, 7.3628, 7.3621, 7.3613, 7.3608, 7.3622, 7.3616, 7.3613, 7.3635, 7.3633, 7.3676, 7.367, 7.3665, 7.3658, 7.3653, 7.3648, 7.364, 7.3634, 7.3631, 7.3629, 7.3626, 7.3641, 7.3644, 7.364, 7.3639, 7.3657, 7.3649, 7.3664, 7.3663, 7.366, 7.3674, 7.3672, 7.3667, 7.3662, 7.3655, 7.3652, 7.3666, 7.3664, 7.3658, 7.365, 7.3648, 7.3643, 7.3636, 7.3635, 7.3629, 7.3622, 7.3616, 7.3612, 7.3624, 7.3638, 7.3637, 7.3633, 7.3627, 7.362, 7.3637, 7.3636, 7.3629, 7.3629, 7.3642, 7.364, 7.3654, 7.3657, 7.365, 7.3662, 7.366, 7.37, 7.3698, 7.3725, 7.3721, 7.3714, 7.3712, 7.3743, 7.3737, 7.3713, 7.3706, 7.37, 7.3712, 7.3689, 7.3688, 7.3681, 7.3678, 7.3674, 7.3688, 7.3692, 7.3686, 7.3681, 7.3673, 7.3667, 7.3773, 7.3766, 7.3759, 7.3792, 7.3791, 7.3804, 7.3799, 7.3792, 7.3785, 7.3779, 7.3792, 7.3787, 7.3782, 7.3782, 7.3795, 7.381, 7.3802, 7.3799, 7.3792, 7.3785, 7.3797, 7.3793, 7.3806, 7.3798, 7.3794, 7.3792, 7.3807, 7.3823, 7.3816, 7.3809, 7.3823, 7.3821, 7.3834, 7.3828, 7.3842, 7.3835, 7.3828, 7.382, 7.3819, 7.3833, 7.386, 7.3853, 7.3849, 7.385, 7.3845, 7.3839, 7.3832, 7.3824, 7.3833, 7.3829, 7.3823, 7.3838, 7.3832, 7.3864, 7.3863, 7.3863, 7.3883, 7.3876, 7.3869, 7.3862, 7.3855, 7.3848, 7.385, 7.3844, 7.3859, 7.3853, 7.3868, 7.3869, 7.3865, 7.3859, 7.3872, 7.3864, 7.3879, 7.3873, 7.3866, 7.3866, 7.3859, 7.3853, 7.3865, 7.3895, 7.3894, 7.3887, 7.389, 7.3905, 7.3919, 7.3917, 7.3914, 7.3925, 7.3918, 7.393, 7.3926, 7.394, 7.3938, 7.3932, 7.3947, 7.3941, 7.3955, 7.395, 7.3947, 7.3962, 7.3956, 7.395, 7.3948, 7.3944, 7.3945, 7.3941, 7.3935, 7.3929, 7.3943, 7.3944, 7.3938, 7.3932, 7.3926, 7.3972, 7.3972, 7.3965, 7.3958, 7.3955, 7.3955, 7.3952, 7.3951, 7.3945, 7.3939, 7.3966, 7.396, 7.3956, 7.395, 7.3943, 7.3937, 7.3931, 7.3927, 7.3921, 7.3935, 7.3937, 7.3954, 7.3965, 7.3959, 7.3957, 7.397, 7.3964, 7.396, 7.3957, 7.3951, 7.3945, 7.3939, 7.3932, 7.3945, 7.3957, 7.3954, 7.3947, 7.3941, 7.3935, 7.3946, 7.3944, 7.3938, 7.3932, 7.3926, 7.3919, 7.3951, 7.3945, 7.3959, 7.3957, 7.3936, 7.3929, 7.3924, 7.3919, 7.3899, 7.3913, 7.3916, 7.3956, 7.4049, 7.4064, 7.4064, 7.4075, 7.4069, 7.408, 7.4074, 7.4071, 7.4064, 7.4076, 7.4069, 7.4065, 7.4059, 7.4071, 7.4049, 7.4062, 7.4075, 7.4069, 7.4064, 7.4077, 7.407, 7.4067, 7.4061, 7.4061, 7.4055, 7.4049, 7.4029, 7.4023, 7.4021, 7.4037, 7.4031, 7.4045, 7.404, 7.4042, 7.4042, 7.4054, 7.4084, 7.4079, 7.4075, 7.4068, 7.4068, 7.4064, 7.4058, 7.4051, 7.4052, 7.4065, 7.4076, 7.4074, 7.4073, 7.4068, 7.4065, 7.4062, 7.4056, 7.4053, 7.405, 7.4043, 7.4039, 7.4053, 7.4068, 7.4069, 7.4062, 7.4041, 7.404, 7.4036, 7.4051, 7.4049, 7.4043, 7.4055, 7.4035, 7.403, 7.4025, 7.402, 7.4013, 7.3995, 7.3991, 7.3972, 7.395, 7.3944, 7.3938, 7.3949, 7.3944, 7.3941, 7.3941, 7.3935, 7.3929, 7.3927, 7.3922, 7.3918, 7.3912, 7.3909, 7.389, 7.3889, 7.3884, 7.3882, 7.3876, 7.3873, 7.3871, 7.3864, 7.3844, 7.3839, 7.3834, 7.383, 7.3826, 7.3819, 7.3813, 7.3809, 7.3808, 7.3822, 7.3819, 7.3814, 7.3796, 7.3792, 7.3787, 7.3781, 7.3776, 7.3788, 7.3801, 7.3814, 7.3793, 7.3787, 7.3799, 7.3796, 7.38, 7.3794, 7.3807, 7.3805, 7.3801, 7.3797, 7.3809, 7.3804, 7.3819, 7.3835, 7.3829, 7.3823, 7.3836, 7.3831, 7.3825, 7.3838, 7.3834, 7.3846, 7.3839, 7.3833, 7.383, 7.3828, 7.3822, 7.3816, 7.3828, 7.3822, 7.3823, 7.3834, 7.3829, 7.3824, 7.3817, 7.3811, 7.3829, 7.3823, 7.3823, 7.3817, 7.3814, 7.3811, 7.3805, 7.3803, 7.3797, 7.3791, 7.377, 7.3766, 7.376, 7.3777, 7.379, 7.3784, 7.3778, 7.3772, 7.3753, 7.3747, 7.3742, 7.3741, 7.3739, 7.3741, 7.3745, 7.3739, 7.3719, 7.3701, 7.3682, 7.3677, 7.368, 7.3693, 7.3688, 7.37, 7.3694, 7.3705, 7.37, 7.3714, 7.3712, 7.3707, 7.3701, 7.3699, 7.3694, 7.3688, 7.37, 7.3713, 7.3706, 7.3703, 7.3696, 7.3693, 7.3705, 7.3699, 7.3698, 7.3727, 7.3726, 7.372, 7.3714, 7.3707, 7.3704, 7.37, 7.3697, 7.3693, 7.3688, 7.3688, 7.3683, 7.3677, 7.3675, 7.3721, 7.3703, 7.37, 7.3703, 7.3699, 7.3695, 7.3711, 7.3707, 7.3703, 7.3714, 7.3711, 7.3705, 7.37, 7.3699, 7.3696, 7.369, 7.3684, 7.3679, 7.3673, 7.3671, 7.3667, 7.3661, 7.3655, 7.3652, 7.3649, 7.3645, 7.3656, 7.3655, 7.3667, 7.3679, 7.3673, 7.3667, 7.366, 7.3655, 7.3652, 7.3647, 7.3643, 7.3637, 7.3631, 7.3613, 7.3607, 7.3605, 7.3599, 7.3597, 7.3593, 7.3587, 7.3583, 7.358, 7.3577, 7.3572, 7.3566, 7.3563, 7.3558, 7.3556, 7.3551, 7.3548, 7.3543, 7.3538, 7.3535, 7.3532, 7.353, 7.3526, 7.3522, 7.3535, 7.3534, 7.3531, 7.3562, 7.3556, 7.3567, 7.3588, 7.3573, 7.3587, 7.3599, 7.3609, 7.3621, 7.3603, 7.3601, 7.3599, 7.3593, 7.3589, 7.3584, 7.3581, 7.3576, 7.3576, 7.357, 7.3591, 7.3585, 7.358, 7.3581, 7.3577, 7.3557, 7.3553, 7.3547, 7.3545, 7.3556, 7.3567, 7.3562, 7.3558, 7.3556, 7.3552, 7.3547, 7.356, 7.3554, 7.3555, 7.355, 7.3562, 7.356, 7.3554, 7.3551, 7.3545, 7.3541, 7.354, 7.3534, 7.3528, 7.3522, 7.3521, 7.3514, 7.3524, 7.3518, 7.3512, 7.3526, 7.3521, 7.3503, 7.3499, 7.3494, 7.3522, 7.3519, 7.353, 7.354, 7.3534, 7.353, 7.3528, 7.3524, 7.3523, 7.3536, 7.3535, 7.3529, 7.3523, 7.3517, 7.3497, 7.351, 7.3524, 7.3518, 7.353, 7.3526, 7.3538, 7.3548, 7.3544, 7.354, 7.3535, 7.3534, 7.3536, 7.355, 7.3547, 7.3547, 7.3541, 7.3552, 7.3568, 7.3564, 7.3558, 7.3552, 7.3551, 7.3545, 7.3545, 7.3546, 7.3545, 7.3544, 7.3543, 7.3555, 7.3566, 7.358, 7.3575, 7.3569, 7.3564, 7.3548, 7.3545, 7.354, 7.354, 7.3538, 7.3534, 7.3528, 7.3526, 7.3538, 7.3536, 7.3548, 7.3545, 7.3539, 7.3538, 7.3536, 7.3532, 7.3527, 7.353, 7.3527, 7.3524, 7.3522, 7.3519, 7.3515, 7.3509, 7.3505, 7.3516, 7.3513, 7.3512, 7.3522, 7.3517, 7.3512, 7.3506, 7.3502, 7.3499, 7.3494, 7.3474, 7.3468, 7.3464, 7.3463, 7.3463, 7.3459, 7.3455, 7.3457, 7.3452, 7.3446, 7.3441, 7.3437, 7.3417, 7.3418, 7.3428, 7.3424, 7.3422, 7.3422, 7.342, 7.3416, 7.3429, 7.344, 7.3457, 7.3452, 7.3449, 7.345, 7.3445, 7.3441, 7.3424, 7.3409, 7.3404, 7.3399, 7.3399, 7.338, 7.3374, 7.3355, 7.3366, 7.3348, 7.3342, 7.3352, 7.3347, 7.3359, 7.3371, 7.3367, 7.3364, 7.3398, 7.3392, 7.3386, 7.3384, 7.3397, 7.3396, 7.3393, 7.3395, 7.3391, 7.3388, 7.3386, 7.338, 7.3364, 7.3345, 7.334, 7.3349, 7.3344, 7.3354, 7.335, 7.3333, 7.3343, 7.334, 7.3338, 7.3333, 7.333, 7.3327, 7.3321, 7.3317, 7.3312, 7.3306, 7.3316, 7.3312, 7.3328, 7.3358, 7.3353, 7.3351, 7.3346, 7.3341, 7.3354, 7.3349, 7.3349, 7.3343, 7.3338, 7.3349, 7.3343, 7.3342, 7.3352, 7.3363, 7.3361, 7.3358, 7.3354, 7.3353, 7.3348, 7.3358, 7.3371, 7.3412, 7.341, 7.3422, 7.342, 7.3417, 7.3412, 7.3411, 7.3423, 7.3421, 7.3406, 7.3401, 7.3383, 7.3377, 7.3377, 7.3372, 7.3384, 7.3383, 7.3368, 7.3363, 7.3358, 7.3371, 7.3371, 7.3367, 7.3362, 7.3363, 7.3359, 7.3392, 7.3394, 7.3401, 7.34, 7.3399, 7.3394, 7.3392, 7.3388, 7.3383, 7.338, 7.3376, 7.3388, 7.34, 7.3409, 7.3409, 7.3404, 7.3399, 7.3395, 7.3394, 7.3395, 7.3395, 7.3392, 7.3389, 7.3387, 7.3382, 7.3377, 7.3388, 7.3382, 7.3377, 7.3374, 7.3384, 7.3396, 7.3396, 7.3391, 7.3389, 7.3388, 7.3397, 7.3391, 7.339, 7.3386, 7.3395, 7.339, 7.3401, 7.3413, 7.3408, 7.3403, 7.3399, 7.3394, 7.3381, 7.3376, 7.3371, 7.341, 7.3406, 7.3417, 7.3412, 7.3408, 7.3404, 7.34, 7.3396, 7.3394, 7.3409, 7.3407, 7.3408, 7.3405, 7.3404, 7.3398, 7.3393, 7.3399, 7.3383, 7.3381, 7.3377, 7.3372, 7.3371, 7.337, 7.3369, 7.3378, 7.3373, 7.3369, 7.3355, 7.335, 7.3344, 7.3327, 7.3324, 7.332, 7.3332, 7.3328, 7.3323, 7.3318, 7.3315, 7.331, 7.3306, 7.3315, 7.3313, 7.3308, 7.3305, 7.3303, 7.3305, 7.3304, 7.3305, 7.3316, 7.3316, 7.3297, 7.3293, 7.3305, 7.3303, 7.3299, 7.3293, 7.329, 7.33, 7.3295, 7.331, 7.3308, 7.3304, 7.3303, 7.3298, 7.3293, 7.3289, 7.3284, 7.3281, 7.3275, 7.3272, 7.3267, 7.3253, 7.3236, 7.3233, 7.3228, 7.3225, 7.3223, 7.3218, 7.3215, 7.3211, 7.3206, 7.3201, 7.3199, 7.3209, 7.3204, 7.3198, 7.3193, 7.3188, 7.3186, 7.3184, 7.3183, 7.3195, 7.3208, 7.3219, 7.3202, 7.3198, 7.3193, 7.322, 7.3218, 7.3215, 7.3212, 7.3207, 7.3207, 7.3217, 7.3219, 7.3215, 7.3212, 7.3209, 7.3208, 7.3221, 7.3217, 7.3212, 7.321, 7.3205, 7.3203, 7.3198, 7.3194, 7.3193, 7.3191, 7.3201, 7.3204, 7.3199, 7.3196, 7.3207, 7.3203, 7.3202, 7.32, 7.3199, 7.3183, 7.3178, 7.3175, 7.3185, 7.3183, 7.3183, 7.3178, 7.3175, 7.3173, 7.3168, 7.3168, 7.3163, 7.3158, 7.3154, 7.3152, 7.3148, 7.3159, 7.3199, 7.3194, 7.3189, 7.3184, 7.3182, 7.3177, 7.3176, 7.3171, 7.3166, 7.3177, 7.3188, 7.3188, 7.3184, 7.3179, 7.3179, 7.3174, 7.3184, 7.3181, 7.3176, 7.3185, 7.3195, 7.3193, 7.3203, 7.3199, 7.32, 7.3198, 7.3183, 7.3183, 7.3182, 7.3178, 7.3175, 7.3172, 7.3183, 7.3179, 7.318, 7.319, 7.32, 7.3195, 7.3206, 7.3206, 7.3201, 7.3196, 7.3199, 7.3196, 7.3207, 7.3208, 7.3204, 7.3202, 7.3186, 7.3169, 7.3168, 7.3184, 7.3179, 7.3173, 7.3173, 7.3167, 7.3163, 7.3164, 7.3163, 7.3159, 7.3158, 7.3153, 7.3148, 7.3146, 7.3144, 7.3141, 7.3137, 7.3132, 7.3127, 7.3129, 7.3153, 7.315, 7.3182, 7.3177, 7.3189, 7.3189, 7.3184, 7.3181, 7.3177, 7.3175, 7.3185, 7.3179, 7.3177, 7.3172, 7.3171, 7.3183, 7.3179, 7.3177, 7.3172, 7.3168, 7.3164, 7.3174, 7.3171, 7.3166, 7.3176, 7.3171, 7.3168, 7.3165, 7.3165, 7.3164, 7.3164, 7.3174, 7.3208, 7.3218, 7.3214, 7.3209, 7.3265, 7.3274, 7.3269, 7.3266, 7.3261, 7.3256, 7.3242, 7.324, 7.3236, 7.3232, 7.3232, 7.3232, 7.3227, 7.3245, 7.3277, 7.3279, 7.3277, 7.3294, 7.3291, 7.3287, 7.3297, 7.3307, 7.3302, 7.3299, 7.3294, 7.3292, 7.3287, 7.3282, 7.3284, 7.3294, 7.3303, 7.3299, 7.3296, 7.3291, 7.3288, 7.3287, 7.3298, 7.3294, 7.3289, 7.3284, 7.328, 7.3279, 7.328, 7.3278, 7.3277, 7.3275, 7.3271, 7.3272, 7.3268, 7.3264, 7.3281, 7.3278, 7.3289, 7.3284, 7.3296, 7.3292, 7.3294, 7.3292, 7.3288, 7.3286, 7.3282, 7.3282, 7.3293, 7.3291, 7.3302, 7.3299, 7.3295, 7.3306, 7.3305, 7.3303, 7.3301, 7.3296, 7.3294, 7.3298, 7.3293, 7.3289, 7.3288, 7.3283, 7.3267, 7.3265, 7.3262, 7.3265, 7.326, 7.3255, 7.3253, 7.3248, 7.3234, 7.3231, 7.3227, 7.3225, 7.3227, 7.3225, 7.3211, 7.3206, 7.3207, 7.3207, 7.3203, 7.3199, 7.3197, 7.3193, 7.3191, 7.3188, 7.3202, 7.3218, 7.3216, 7.3211, 7.3197, 7.3194, 7.3178, 7.3175, 7.3171, 7.3168, 7.3177, 7.3162, 7.316, 7.317, 7.318, 7.319, 7.3188, 7.3198, 7.3208, 7.3204, 7.3214, 7.3224, 7.3222, 7.3233, 7.3228, 7.3239, 7.3239, 7.3236, 7.3233, 7.322, 7.3208, 7.3204, 7.3199, 7.3196, 7.3193, 7.3188, 7.3185, 7.3181, 7.3177, 7.3173, 7.3184, 7.318, 7.3175, 7.3177, 7.3173, 7.317, 7.3167, 7.3169, 7.3166, 7.3164, 7.316, 7.3157, 7.3212, 7.3221, 7.3222, 7.3231, 7.324, 7.3235, 7.3234, 7.3229, 7.3214, 7.321, 7.3206, 7.3204, 7.3205, 7.3205, 7.3201, 7.3196, 7.3181, 7.3194, 7.3205, 7.32, 7.321, 7.3207, 7.3202, 7.3199, 7.3208, 7.3206, 7.3203, 7.32, 7.3211, 7.321, 7.3208, 7.3204, 7.3202, 7.3197, 7.3209, 7.3206, 7.3203, 7.3201, 7.3198, 7.3196, 7.3193, 7.3231, 7.3228, 7.3225, 7.3234, 7.323, 7.3214, 7.3225, 7.3236, 7.3233, 7.3232, 7.3228, 7.3235, 7.3233, 7.3244, 7.324, 7.3239, 7.3228, 7.3226, 7.3237, 7.3247, 7.3243, 7.3252, 7.325, 7.3259, 7.3267, 7.3267, 7.3278, 7.3287, 7.3272, 7.3267, 7.3262, 7.3263, 7.326, 7.3259, 7.3256, 7.3268, 7.3264, 7.3263, 7.3261, 7.3271, 7.3268, 7.3278, 7.3305, 7.329, 7.3287, 7.3273, 7.3268, 7.3264, 7.3261, 7.3256, 7.3242, 7.3237, 7.3233, 7.3234, 7.3231, 7.3241, 7.3237, 7.3237, 7.3233, 7.3232, 7.3228, 7.3237, 7.3233, 7.3228, 7.3237, 7.3236, 7.3235, 7.3244, 7.3244, 7.3239, 7.3235, 7.3232, 7.3229, 7.3226, 7.3225, 7.3235, 7.3246, 7.3245, 7.3241, 7.325, 7.3263, 7.3258, 7.3254, 7.3251, 7.326, 7.3269, 7.3265, 7.3267, 7.3262, 7.3257, 7.3254, 7.3249, 7.3248, 7.3251, 7.3251, 7.3247, 7.3246, 7.3243, 7.3241, 7.3251, 7.3274, 7.33, 7.3312, 7.3321, 7.3317, 7.3315, 7.3313, 7.3308, 7.3308, 7.3304, 7.3302, 7.3318, 7.3314, 7.3311, 7.337, 7.3368, 7.3354, 7.335, 7.3349, 7.3349, 7.3335, 7.3331, 7.3341, 7.3336, 7.3334, 7.333, 7.334, 7.3338, 7.3378, 7.3375, 7.3386, 7.3384, 7.3382, 7.3378, 7.3365, 7.3361, 7.3358, 7.3355, 7.3364, 7.3359, 7.3344, 7.334, 7.334, 7.3335, 7.3333, 7.3328, 7.3326, 7.3325, 7.3321, 7.333, 7.3325, 7.3321, 7.3316, 7.3312, 7.3322, 7.3322, 7.3323, 7.3318, 7.3343, 7.3339, 7.3325, 7.3321, 7.3317, 7.3312, 7.3308, 7.3305, 7.33, 7.3298, 7.3297, 7.33, 7.3296, 7.3308, 7.3304, 7.3299, 7.331, 7.331, 7.332, 7.3307, 7.3306, 7.3301, 7.3296, 7.3291, 7.3277, 7.3286, 7.3281, 7.3277, 7.3276, 7.3289, 7.3287, 7.3285, 7.3284, 7.328, 7.3276, 7.3272, 7.3268, 7.3253, 7.3249, 7.3247, 7.3256, 7.3264, 7.326, 7.3269, 7.3277, 7.3275, 7.3284, 7.3282, 7.3278, 7.3279, 7.3277, 7.3292, 7.3288, 7.3284, 7.3282, 7.3294, 7.329, 7.3286, 7.3282, 7.3281, 7.3277, 7.3275, 7.3284, 7.3282, 7.3281, 7.3283, 7.328, 7.3292, 7.3289, 7.3299, 7.3296, 7.3305, 7.3301, 7.3297, 7.3293, 7.3289, 7.3287, 7.3283, 7.3293, 7.3291, 7.3376, 7.3385, 7.3383, 7.3382, 7.338, 7.3378, 7.3397, 7.3393, 7.3401, 7.3409, 7.3406, 7.3402, 7.3389, 7.3375, 7.3384, 7.3395, 7.3391, 7.3378, 7.3377, 7.3363, 7.336, 7.337, 7.3368, 7.3367, 7.3367, 7.3363, 7.3363, 7.3361, 7.3357, 7.3354, 7.3353, 7.3349, 7.3344, 7.3353, 7.3339, 7.3335, 7.3331, 7.3339, 7.3335, 7.3332, 7.3318, 7.3315, 7.3315, 7.3311, 7.3306, 7.3316, 7.3316, 7.3311, 7.3309, 7.3305, 7.3303, 7.3313, 7.3299, 7.3308, 7.3304, 7.3304, 7.3291, 7.3276, 7.3272, 7.3269, 7.3265, 7.3274, 7.3284, 7.3282, 7.328, 7.3288, 7.3286, 7.3281, 7.3277, 7.3273, 7.3281, 7.3279, 7.3275, 7.3273, 7.3258, 7.3257, 7.3266, 7.3265, 7.3265, 7.3262, 7.3263, 7.3262, 7.326, 7.3268, 7.3265, 7.326, 7.3258, 7.3256, 7.3255, 7.3251, 7.3247, 7.3247, 7.3233, 7.3231, 7.3226, 7.3223, 7.3223, 7.3223, 7.3222, 7.3219, 7.322, 7.3218, 7.3216, 7.3228, 7.3226, 7.3224, 7.3219, 7.3218, 7.322, 7.3258, 7.3267, 7.3263, 7.3249, 7.3248, 7.3246, 7.3243, 7.3244, 7.3254, 7.3255, 7.3314, 7.331, 7.3308, 7.3305, 7.3304, 7.3305, 7.3305, 7.3303, 7.3298, 7.3295, 7.3294, 7.3292, 7.3304, 7.3301, 7.3301, 7.3306, 7.3304, 7.3301, 7.3302, 7.33, 7.3298, 7.3299, 7.3299, 7.3308, 7.3305, 7.3306, 7.3305, 7.3314, 7.3316, 7.3313, 7.3324, 7.3321, 7.3318, 7.3326, 7.3312, 7.33, 7.3297, 7.3284, 7.3294, 7.3303, 7.33, 7.331, 7.3309, 7.3306, 7.3305, 7.3292, 7.329, 7.3286, 7.3322, 7.332, 7.3318, 7.3304, 7.329, 7.329, 7.329, 7.3289, 7.3285, 7.3281, 7.3268, 7.3264, 7.3264, 7.3251, 7.3247, 7.3243, 7.3243, 7.3251, 7.3247, 7.3246, 7.3243, 7.3238, 7.3236, 7.3232, 7.3217, 7.3217, 7.3214, 7.321, 7.3205, 7.3202, 7.3189, 7.319, 7.3187, 7.3183, 7.3179, 7.3178, 7.3174, 7.3183, 7.3183, 7.3182, 7.318, 7.3176, 7.3174, 7.3175, 7.3174, 7.3172, 7.3169, 7.3165, 7.3174, 7.3172, 7.3168, 7.3166, 7.3163, 7.3161, 7.3148, 7.3146, 7.3142, 7.3151, 7.3159, 7.3157, 7.3165, 7.3162, 7.3148, 7.3147, 7.3155, 7.3153, 7.3149, 7.3157, 7.3156, 7.3153, 7.3149, 7.3145, 7.3145, 7.3143, 7.3139, 7.3136, 7.3135, 7.3146, 7.3155, 7.3164, 7.316, 7.316, 7.3164, 7.3151, 7.3139, 7.3126, 7.3125, 7.3123, 7.3118, 7.3127, 7.3126, 7.3124, 7.3133, 7.3144, 7.314, 7.3138, 7.3149, 7.3145, 7.3142, 7.3137, 7.3133, 7.3131, 7.3127, 7.3125, 7.3121, 7.3118, 7.3114, 7.311, 7.3106, 7.3106, 7.3104, 7.3099, 7.3107, 7.3104, 7.3103, 7.3101, 7.3099, 7.3096, 7.3092, 7.3093, 7.3094, 7.3115, 7.3123, 7.3125, 7.3123, 7.3119, 7.3117, 7.3113, 7.3121, 7.3108, 7.3103, 7.3099, 7.3095, 7.3092, 7.3088, 7.3084, 7.3103, 7.31, 7.3109, 7.3111, 7.3107, 7.3122, 7.3119, 7.3119, 7.3135, 7.3132, 7.3131, 7.3139, 7.3136, 7.3132, 7.314, 7.3149, 7.3156, 7.3165, 7.3167, 7.3166, 7.3164, 7.3173, 7.3169, 7.3165, 7.3161, 7.3157, 7.3153, 7.3152, 7.3149, 7.315, 7.3151, 7.3147, 7.3147, 7.3145, 7.3144, 7.3143, 7.314, 7.314, 7.3136, 7.3133, 7.3143, 7.3139, 7.3137, 7.3133, 7.3149, 7.3156, 7.3152, 7.3164, 7.3165, 7.3161, 7.317, 7.3168, 7.3166, 7.3162, 7.316, 7.3156, 7.3154, 7.3151, 7.315, 7.3149, 7.3147, 7.3158, 7.3157, 7.3145, 7.3132, 7.3141, 7.3139, 7.3135, 7.3143, 7.315, 7.3171, 7.3167, 7.3176, 7.3171, 7.317, 7.3222, 7.3218, 7.3215, 7.3211, 7.3219, 7.3217, 7.3226, 7.3222, 7.3244, 7.3241, 7.3249, 7.3247, 7.3254, 7.3253, 7.3255, 7.3251, 7.325, 7.3262, 7.327, 7.3268, 7.3264, 7.3261, 7.3258, 7.3255, 7.3263, 7.3262, 7.3264, 7.3262, 7.3258, 7.3254, 7.3253, 7.3251, 7.3289, 7.3286, 7.3293, 7.3302, 7.3303, 7.3299, 7.3296, 7.3304, 7.3312, 7.3309, 7.3317, 7.3314, 7.3311, 7.3319, 7.3327, 7.3327, 7.3323, 7.3322, 7.332, 7.3318, 7.3314, 7.3311, 7.3308, 7.3308, 7.3306, 7.3306, 7.3302, 7.3299, 7.331, 7.331, 7.3308, 7.3316, 7.3325, 7.3321, 7.3319, 7.3318, 7.3325, 7.3321, 7.3318, 7.3314, 7.3321, 7.333, 7.333, 7.3327, 7.3326, 7.3334, 7.3333, 7.3329, 7.3329, 7.3346, 7.3353, 7.3351, 7.3348, 7.3358, 7.3366, 7.3363, 7.3362, 7.3359, 7.3357, 7.3356, 7.3354, 7.335, 7.3346, 7.3354, 7.3352, 7.3348, 7.3344, 7.3356, 7.3352, 7.3352, 7.3352, 7.3361, 7.3358, 7.3359, 7.3355, 7.3343, 7.334, 7.3336, 7.3334, 7.3343, 7.334, 7.3337, 7.3336, 7.3332, 7.3339, 7.3337, 7.3333, 7.3329, 7.3328, 7.3337, 7.3334, 7.3333, 7.3332, 7.3329, 7.3325, 7.3325, 7.3322, 7.3319, 7.3318, 7.3316, 7.3313, 7.3313, 7.3311, 7.3307, 7.3306, 7.3304, 7.3304, 7.3301, 7.3309, 7.3308, 7.3315, 7.3313, 7.3312, 7.3309, 7.3306, 7.3304, 7.33, 7.3287, 7.3283, 7.3281, 7.3277, 7.3277, 7.3275, 7.3271, 7.3269, 7.3268, 7.3268, 7.3264, 7.3263, 7.326, 7.3262, 7.3259, 7.3267, 7.3264, 7.3262, 7.326, 7.3257, 7.3257, 7.3256, 7.3264, 7.3263, 7.3263, 7.3271, 7.327, 7.3268, 7.3266, 7.3266, 7.3262, 7.3261, 7.3257, 7.3255, 7.3253, 7.3249, 7.3246, 7.3245, 7.3253, 7.3251, 7.3258, 7.3267, 7.3264, 7.326, 7.325, 7.3258, 7.3256, 7.3252, 7.3249, 7.3252, 7.3241, 7.3238, 7.3246, 7.3243, 7.3243, 7.3255, 7.3251, 7.3254, 7.3242, 7.324, 7.3238, 7.3248, 7.3244, 7.3241, 7.3239, 7.3237, 7.3245, 7.3254, 7.3263, 7.326, 7.3257, 7.3254, 7.3251, 7.3261, 7.327, 7.3269, 7.3266, 7.3264, 7.3262, 7.3259, 7.3256, 7.3266, 7.3264, 7.3272, 7.3271, 7.328, 7.3276, 7.3287, 7.3296, 7.3296, 7.3293, 7.3294, 7.3293, 7.3294, 7.3293, 7.3303, 7.3312, 7.3309, 7.3306, 7.3304, 7.33, 7.33, 7.3298, 7.3307, 7.3305, 7.3313, 7.3309, 7.332, 7.3316, 7.3323, 7.3319, 7.3315, 7.3314, 7.3311, 7.3319, 7.3331, 7.3329, 7.335, 7.3351, 7.3351, 7.3349, 7.3348, 7.3346, 7.3345, 7.3342, 7.3341, 7.3348, 7.3345, 7.3342, 7.3338, 7.3336, 7.3334, 7.3331, 7.3343, 7.3339, 7.3336, 7.3333, 7.3331, 7.3328, 7.3335, 7.3344, 7.3342, 7.3353, 7.3349, 7.3345, 7.3342, 7.3342, 7.3338, 7.3335, 7.3334, 7.333, 7.3331, 7.3327, 7.3323, 7.3333, 7.3344, 7.3341, 7.334, 7.3337, 7.3356, 7.3363, 7.3359, 7.3357, 7.3366, 7.3366, 7.3364, 7.336, 7.3403, 7.3423, 7.3419, 7.3415, 7.3412, 7.3419, 7.3416, 7.3413, 7.3409, 7.3406, 7.3403, 7.34, 7.3399, 7.3395, 7.3403, 7.3402, 7.3398, 7.3397, 7.3393, 7.3393, 7.339, 7.3386, 7.3383, 7.338, 7.338, 7.3369, 7.3368, 7.3368, 7.3377, 7.3376, 7.3382, 7.3379, 7.3376, 7.3376, 7.3375, 7.3371, 7.3368, 7.3364, 7.336, 7.3358, 7.3354, 7.335, 7.3346, 7.3344, 7.3342, 7.334, 7.334, 7.3336, 7.3332, 7.3328, 7.3335, 7.3334, 7.3331, 7.3327, 7.3323, 7.3319, 7.3315, 7.3312, 7.3308, 7.3304, 7.3303, 7.33, 7.3288, 7.3306, 7.3302, 7.3303, 7.3301, 7.3352, 7.3348, 7.3367, 7.3375, 7.3371, 7.3367, 7.3374, 7.3372, 7.337, 7.339, 7.3387, 7.3387, 7.3385, 7.3383, 7.339, 7.3386, 7.3384, 7.3382, 7.3379, 7.3378, 7.3377, 7.3373, 7.337, 7.3382, 7.3414, 7.3411, 7.3407, 7.3405, 7.3403, 7.34, 7.3417, 7.3414, 7.3412, 7.3413, 7.3414, 7.3411, 7.341, 7.3407, 7.3414, 7.3412, 7.3409, 7.3405, 7.3402, 7.3405, 7.3401, 7.3397, 7.3395, 7.3391, 7.3389, 7.3385, 7.3382, 7.339, 7.3386, 7.3394, 7.339, 7.3386, 7.3383, 7.3372, 7.337, 7.3367, 7.3365, 7.3363, 7.3361, 7.3358, 7.3354, 7.3355, 7.3353, 7.3351, 7.3351, 7.3348, 7.3345, 7.3343, 7.334, 7.3339, 7.3347, 7.3345, 7.3341, 7.3338, 7.3335, 7.3331, 7.3339, 7.3335, 7.3333, 7.3334, 7.3331, 7.333, 7.3328, 7.3326, 7.3323, 7.3324, 7.3323, 7.3319, 7.3315, 7.3313, 7.3309, 7.3305, 7.3312, 7.3319, 7.3316, 7.3314, 7.3311, 7.3308, 7.3306, 7.3302, 7.33, 7.3298, 7.3294, 7.3301, 7.33, 7.3307, 7.3303, 7.3299, 7.3306, 7.3302, 7.3309, 7.3298, 7.3306, 7.3313, 7.3314, 7.331, 7.3306, 7.3302, 7.3298, 7.3305, 7.3311, 7.3313, 7.331, 7.3297, 7.3285, 7.3281, 7.3288, 7.3289, 7.3295, 7.3293, 7.3289, 7.3285, 7.3291, 7.328, 7.3286, 7.3286, 7.3294, 7.329, 7.3288, 7.3287, 7.3284, 7.3283, 7.3279, 7.3287, 7.3286, 7.3288, 7.3286, 7.3282, 7.3279, 7.3268, 7.3265, 7.3264, 7.3261, 7.3259, 7.3247, 7.3254, 7.3251, 7.3259, 7.3256, 7.3252, 7.3249, 7.3237, 7.3236, 7.3235, 7.3235, 7.3233, 7.3223, 7.3221, 7.3217, 7.3213, 7.321, 7.3228, 7.3225, 7.3222, 7.3221, 7.323, 7.3239, 7.3237, 7.3234, 7.3233, 7.3225, 7.3224, 7.3223, 7.3219, 7.3216, 7.3222, 7.3219, 7.3207, 7.3204, 7.3201, 7.3202, 7.3202, 7.3199, 7.3196, 7.3196, 7.3194, 7.3194, 7.3193, 7.3193, 7.3189, 7.3177, 7.3184, 7.3193, 7.3191, 7.3188, 7.3187, 7.3185, 7.3181, 7.3171, 7.317, 7.317, 7.3169, 7.3168, 7.3168, 7.3165, 7.3162, 7.3159, 7.3167, 7.3186, 7.3183, 7.318, 7.3197, 7.3186, 7.3184, 7.3196, 7.3193, 7.3192, 7.3189, 7.3187, 7.3185, 7.3192, 7.3189, 7.3185, 7.3184, 7.3182, 7.3179, 7.3176, 7.3177, 7.3184, 7.3172, 7.317, 7.3177, 7.3173, 7.317, 7.3171, 7.3179, 7.3177, 7.3174, 7.3172, 7.3169, 7.3167, 7.3174, 7.3171, 7.3178, 7.3179, 7.3187, 7.3184, 7.3192, 7.3189, 7.3177, 7.3175, 7.3183, 7.3184, 7.3183, 7.3181, 7.317, 7.3158, 7.3156, 7.3153, 7.3172, 7.3169, 7.3168, 7.3168, 7.3171, 7.317, 7.3177, 7.3177, 7.3175, 7.3174, 7.3182, 7.3189, 7.3186, 7.3183, 7.3181, 7.317, 7.3169, 7.3177, 7.3175, 7.3172, 7.3169, 7.3166, 7.3164, 7.3163, 7.3161, 7.3157, 7.3155, 7.3154, 7.3152, 7.3149, 7.3146, 7.3145, 7.3154, 7.3153, 7.3152, 7.3152, 7.3142, 7.3149, 7.3145, 7.3188, 7.3195, 7.3194, 7.3191, 7.3187, 7.3185, 7.3182, 7.3182, 7.3212, 7.3208, 7.3214, 7.321, 7.3208, 7.3216, 7.3214, 7.3221, 7.3221, 7.3218, 7.3214, 7.3212, 7.3209, 7.3216, 7.3213, 7.3212, 7.3209, 7.3208, 7.3205, 7.3205, 7.3202, 7.321, 7.3206, 7.3225, 7.3223, 7.3221, 7.322, 7.3227, 7.3224, 7.322, 7.3227, 7.3224, 7.3222, 7.3222, 7.322, 7.3216, 7.3222, 7.322, 7.3218, 7.3224, 7.3232, 7.3239, 7.3241, 7.3239, 7.3235, 7.3232, 7.3231, 7.3227, 7.3225, 7.3232, 7.3239, 7.3237, 7.3234, 7.3241, 7.3245, 7.3242, 7.324, 7.3237, 7.3245, 7.3243, 7.3285, 7.3282, 7.33, 7.329, 7.3288, 7.3285, 7.3285, 7.3284, 7.3283, 7.3282, 7.3282, 7.3279, 7.3279, 7.3275, 7.3273, 7.327, 7.3267, 7.3257, 7.3264, 7.3264, 7.326, 7.3261, 7.326, 7.3267, 7.3255, 7.3252, 7.3249, 7.3246, 7.3264, 7.3264, 7.3268, 7.3265, 7.3263, 7.327, 7.3268, 7.3266, 7.3264, 7.3272, 7.3269, 7.3267, 7.3273, 7.3272, 7.3269, 7.3268, 7.3276, 7.3274, 7.3272, 7.3268, 7.3257, 7.3246, 7.3234, 7.3241, 7.3238, 7.3237, 7.3234, 7.3231, 7.323, 7.3229, 7.3236, 7.3243, 7.3242, 7.3241, 7.3237, 7.3235, 7.3231, 7.324, 7.3247, 7.3244, 7.3244, 7.3245, 7.3233, 7.3231, 7.3227, 7.3226, 7.3223, 7.3221, 7.322, 7.3217, 7.3215, 7.3212, 7.3211, 7.3208, 7.3206, 7.3213, 7.321, 7.3208, 7.3205, 7.3204, 7.3207, 7.3215, 7.3222, 7.322, 7.3216, 7.3215, 7.3212, 7.3209, 7.3206, 7.3204, 7.3201, 7.3198, 7.3194, 7.3196, 7.3192, 7.319, 7.3191, 7.3188, 7.3187, 7.3187, 7.3184, 7.3192, 7.3191, 7.3188, 7.3185, 7.3184, 7.3181, 7.317, 7.3177, 7.3174, 7.3175, 7.3177, 7.3184, 7.3183, 7.3181, 7.3178, 7.3175, 7.3174, 7.3181, 7.317, 7.3176, 7.3186, 7.3185, 7.3182, 7.3179, 7.3186, 7.3185, 7.3184, 7.3172, 7.3179, 7.3185, 7.3192, 7.3188, 7.3185, 7.3183, 7.3179, 7.3176, 7.3172, 7.317, 7.3171, 7.3168, 7.3168, 7.3175, 7.3172, 7.3169, 7.3176, 7.3174, 7.3171, 7.3177, 7.3174, 7.3172, 7.3162, 7.316, 7.3157, 7.3167, 7.3164, 7.3163, 7.316, 7.3159, 7.3156, 7.3155, 7.3153, 7.3153, 7.3149, 7.3146, 7.3147, 7.3144, 7.3143, 7.3141, 7.3141, 7.3139, 7.3136, 7.3133, 7.313, 7.3127, 7.3123, 7.3131, 7.3128, 7.3125, 7.3122, 7.312, 7.3117, 7.3114, 7.311, 7.3109, 7.3106, 7.3102, 7.3098, 7.3095, 7.3092, 7.309, 7.309, 7.3107, 7.3107, 7.3104, 7.3103, 7.3101, 7.309, 7.3089, 7.3092, 7.31, 7.3107, 7.3106, 7.3114, 7.3154, 7.3166, 7.3162, 7.316, 7.3159, 7.3159, 7.3157, 7.3155, 7.3152, 7.3152, 7.3152, 7.315, 7.3147, 7.3146, 7.3143, 7.3141, 7.3141, 7.3137, 7.3134, 7.3132, 7.3139, 7.314, 7.3137, 7.3144, 7.3143, 7.3144, 7.3183, 7.318, 7.3205, 7.3203, 7.32, 7.32, 7.3197, 7.3204, 7.3193, 7.319, 7.3188, 7.3187, 7.3187, 7.3185, 7.3182, 7.3184, 7.3181, 7.3178, 7.3175, 7.3172, 7.3168, 7.3165, 7.3163, 7.317, 7.3176, 7.3173, 7.3171, 7.3168, 7.3164, 7.3163, 7.317, 7.3169, 7.3168, 7.3165, 7.3166, 7.3162, 7.316, 7.3157, 7.3184, 7.3183, 7.318, 7.3177, 7.3176, 7.3183, 7.318, 7.3177, 7.3175, 7.3172, 7.3169, 7.3166, 7.3165, 7.3164, 7.3171, 7.3169, 7.3168, 7.3165, 7.3162, 7.3159, 7.3158, 7.3155, 7.3162, 7.3159, 7.3158, 7.3165, 7.3164, 7.3161, 7.3158, 7.3155, 7.3161, 7.316, 7.3157, 7.3156, 7.3153, 7.3151, 7.3147, 7.3144, 7.3144, 7.3143, 7.3142, 7.315, 7.3151, 7.3157, 7.3154, 7.3151, 7.3158, 7.3148, 7.3147, 7.3146, 7.3143, 7.3144, 7.3141, 7.3138, 7.3136, 7.3133, 7.313, 7.3126, 7.3125, 7.3122, 7.3119, 7.3118, 7.3115, 7.3112, 7.3109, 7.3106, 7.3102, 7.311, 7.3109, 7.3108, 7.3104, 7.3101, 7.3098, 7.3097, 7.3096, 7.3095, 7.3092, 7.3089, 7.3086, 7.3084, 7.3082, 7.3079, 7.3078, 7.3076, 7.3073, 7.307, 7.3076, 7.3073, 7.307, 7.3067, 7.3064, 7.3064, 7.3063, 7.306, 7.3057, 7.3064, 7.3061, 7.3058, 7.3055, 7.3062, 7.3061, 7.3059, 7.3056, 7.3053, 7.3059, 7.3059, 7.3056, 7.3055, 7.3054, 7.3051, 7.3049, 7.3056, 7.3063, 7.3062, 7.3068, 7.3075, 7.3081, 7.3087, 7.3086, 7.3083, 7.308, 7.3077, 7.3075, 7.3072, 7.3078, 7.3077, 7.3074, 7.307, 7.3067, 7.3064, 7.3062, 7.3069, 7.3068, 7.3065, 7.3062, 7.3061, 7.306, 7.3076, 7.3073, 7.307, 7.3076, 7.3074, 7.3074, 7.3081, 7.3077, 7.3074, 7.3081, 7.3077, 7.3074, 7.3072, 7.307, 7.3067, 7.3064, 7.3072, 7.307, 7.3067, 7.3067, 7.3066, 7.3065, 7.3072, 7.308, 7.3077, 7.3076, 7.3073, 7.3071, 7.3071, 7.307, 7.3105, 7.3104, 7.3101, 7.3134, 7.3134, 7.3131, 7.3138, 7.3138, 7.3135, 7.3141, 7.314, 7.3141, 7.314, 7.314, 7.3137, 7.3134, 7.3134, 7.3134, 7.3131, 7.3137, 7.3136, 7.3134, 7.3141, 7.314, 7.3147, 7.3144, 7.3151, 7.3148, 7.3145, 7.3142, 7.3139, 7.3136, 7.3142, 7.3141, 7.3138, 7.3135, 7.3132, 7.3131, 7.313, 7.3127, 7.3124, 7.3131, 7.3129, 7.3145, 7.3142, 7.3141, 7.314, 7.3147, 7.3154, 7.3214, 7.3212, 7.3219, 7.3219, 7.3226, 7.3225, 7.3222, 7.322, 7.3217, 7.3214, 7.3212, 7.321, 7.3215, 7.3213, 7.3212, 7.3211, 7.3207, 7.3213, 7.321, 7.321, 7.3207, 7.3206, 7.3205, 7.3203, 7.32, 7.3203, 7.3201, 7.3207, 7.3206, 7.3205, 7.3203, 7.3204, 7.321, 7.3216, 7.3216, 7.3214, 7.3213, 7.321, 7.3216, 7.3223, 7.323, 7.323, 7.3228, 7.3226, 7.3223, 7.3223, 7.3222, 7.3221, 7.3218, 7.3224, 7.323, 7.3236, 7.3233, 7.3232, 7.3238, 7.3244, 7.3242, 7.324, 7.3237, 7.3234, 7.3232, 7.3229, 7.3235, 7.3232, 7.3229, 7.3227, 7.3226, 7.3224, 7.3221, 7.3228, 7.3237, 7.3235, 7.3235, 7.3232, 7.3231, 7.3238, 7.3238, 7.3237, 7.3243, 7.324, 7.3246, 7.3252, 7.3249, 7.3256, 7.3253, 7.3259, 7.3258, 7.3255, 7.3262, 7.3259, 7.3258, 7.3265, 7.3263, 7.3262, 7.3269, 7.3266, 7.3264, 7.327, 7.3276, 7.3273, 7.327, 7.3267, 7.3275, 7.3272, 7.3269, 7.3275, 7.3282, 7.3279, 7.3285, 7.3292, 7.3289, 7.3286, 7.3284, 7.329, 7.3287, 7.3285, 7.3301, 7.3302, 7.33, 7.3307, 7.3298, 7.3297, 7.3295, 7.3292, 7.3298, 7.3305, 7.3311, 7.3318, 7.3317, 7.3315, 7.3321, 7.332, 7.3326, 7.3325, 7.3326, 7.3325, 7.3322, 7.3319, 7.3318, 7.3315, 7.3312, 7.3312, 7.3311, 7.3316, 7.3322, 7.3319, 7.3316, 7.3323, 7.3322, 7.3321, 7.3318, 7.3317, 7.3324, 7.3324, 7.3322, 7.332, 7.3309, 7.3306, 7.3305, 7.3303, 7.331, 7.3316, 7.3313, 7.3313, 7.3311, 7.3312, 7.3311, 7.331, 7.3327, 7.3333, 7.333, 7.3328, 7.3325, 7.3322, 7.3321, 7.3322, 7.3319, 7.3316, 7.3313, 7.3312, 7.3309, 7.3306, 7.3314, 7.3312, 7.331, 7.3308, 7.3314, 7.3313, 7.3311, 7.3317, 7.3314, 7.3311, 7.3308, 7.3308, 7.3307, 7.3306, 7.3303, 7.3327, 7.3326, 7.3332, 7.3331, 7.3329, 7.3328, 7.3328, 7.3327, 7.3325, 7.3314, 7.3312, 7.3309, 7.3311, 7.3309, 7.3318, 7.3323, 7.332, 7.3329, 7.3329, 7.3326, 7.3326, 7.3327, 7.3325, 7.3331, 7.333, 7.3335, 7.3334, 7.334, 7.3338, 7.3336, 7.3342, 7.3348, 7.3348, 7.3345, 7.3342, 7.3339, 7.3345, 7.335, 7.3385, 7.3391, 7.3388, 7.3386, 7.3385, 7.3382, 7.3379, 7.3385, 7.3382, 7.3388, 7.3394, 7.3399, 7.3396, 7.3394, 7.34, 7.3415, 7.3412, 7.3409, 7.3407, 7.3405, 7.3403, 7.3393, 7.3391, 7.3398, 7.3401, 7.34, 7.3397, 7.3396, 7.3399, 7.3401, 7.3399, 7.3397, 7.3404, 7.341, 7.3408, 7.3414, 7.3421, 7.3418, 7.3425, 7.3422, 7.3422, 7.3421, 7.342, 7.3426, 7.3423, 7.3429, 7.3435, 7.3432, 7.3429, 7.3427, 7.3428, 7.3425, 7.3431, 7.3446], '192.168.122.111': [5.3396, 6.1361, 8.7935, 7.9497, 7.4503, 7.3561, 7.1921, 7.7341, 7.6337, 7.4372, 7.3846, 7.3117, 7.304, 7.1838, 7.1132, 7.1652, 7.1187, 7.0822, 7.0341, 6.9429, 7.1262, 7.1084, 7.0508, 7.0156, 7.1982, 7.1259, 7.0986, 7.4638, 7.4031, 7.3407, 7.2778, 7.2686, 7.3749, 7.3374, 7.4347, 7.3994, 7.3477, 7.3071, 7.2658, 7.2374, 7.1998, 7.1585, 7.3126, 7.5427, 7.5099, 7.4644, 7.5339, 7.6007, 7.6667, 7.6332, 7.5929, 7.5486, 7.5087, 7.4784, 7.4549, 7.4185, 7.4074, 7.3024, 7.2885, 7.2566, 7.2303, 7.211, 7.2744, 7.2736, 7.3355, 7.389, 7.3586, 7.3387, 7.3142, 7.2921, 7.2791, 7.2604, 7.2668, 7.2445, 7.2494, 7.2359, 7.29, 7.2634, 7.2426, 7.1627, 7.1517, 7.2616, 7.2404, 7.2467, 7.2321, 7.2138, 7.1918, 7.1739, 7.1641, 7.1488, 7.1302, 7.1099, 7.0905, 7.0232, 7.0051, 7.0425, 7.024, 7.0075, 7.0459, 7.0293, 7.0672, 7.0598, 7.0442, 7.0373, 7.0315, 7.0177, 7.0566, 7.0412, 7.0375, 7.0237, 7.0218, 7.0587, 7.0517, 7.0009, 6.9865, 6.9764, 6.9841, 7.0626, 7.048, 7.0377, 7.0348, 7.0209, 7.0107, 7.0422, 7.0298, 7.0246, 7.0126, 7.041, 7.0294, 7.02, 7.0524, 7.0831, 7.0796, 7.0693, 7.0288, 7.023, 7.0173, 7.0111, 7.009, 6.9986, 6.9951, 6.9521, 6.9483, 6.9512, 6.981, 6.9753, 6.9653, 6.993, 6.9843, 6.9749, 6.9818, 6.9741, 6.9654, 6.9573, 6.9568, 6.9492, 6.9444, 6.939, 6.9345, 6.9575, 6.9504, 6.9435, 6.9415, 6.9353, 6.9685, 6.9702, 6.9642, 6.9869, 6.9769, 6.9731, 6.9976, 6.995, 6.9589, 6.9801, 6.9768, 6.9758, 6.9983, 6.9972, 7.0177, 7.0115, 7.0069, 7.0098, 7.0043, 7.0468, 7.0385, 7.0326, 7.0966, 7.1179, 7.1132, 7.1047, 7.0787, 7.0701, 7.066, 7.0871, 7.0791, 7.0716, 7.1226, 7.1165, 7.111, 7.1047, 7.0967, 7.0889, 7.0864, 7.1055, 7.1015, 7.0934, 7.1152, 7.1084, 7.1015, 7.0996, 7.0948, 7.0985, 7.0924, 7.0907, 7.0846, 7.0795, 7.0793, 7.075, 7.093, 7.0687, 7.0619, 7.0795, 7.0724, 7.0704, 7.0644, 7.0636, 7.0801, 7.0734, 7.0667, 7.0483, 7.0411, 7.0345, 7.0296, 7.0467, 7.0403, 7.0372, 7.0343, 7.0311, 7.0299, 7.0355, 7.0323, 7.0262, 7.0192, 7.0263, 7.0199, 7.0165, 7.0143, 7.0079, 7.0225, 7.0414, 7.0359, 7.0299, 7.0234, 7.0208, 7.0201, 7.0366, 7.037, 7.0324, 7.0283, 7.0244, 7.0418, 7.0375, 7.0336, 7.0502, 7.0479, 7.0422, 7.0378, 7.0311, 7.0483, 7.0443, 7.038, 7.0316, 7.0488, 7.0438, 7.0577, 7.0563, 7.0513, 7.0496, 7.0476, 7.0474, 7.045, 7.042, 7.0371, 7.0511, 7.0472, 7.0423, 7.0386, 7.0321, 7.0301, 7.0242, 7.024, 7.0211, 7.0349, 7.0516, 7.0842, 7.0795, 7.0758, 7.0723, 7.0671, 7.062, 7.0565, 7.0504, 7.0447, 7.0434, 7.0899, 7.1056, 7.1217, 7.1185, 7.0974, 7.093, 7.0884, 7.1014, 7.0982, 7.0947, 7.0934, 7.104, 7.0999, 7.0942, 7.0908, 7.0871, 7.0814, 7.0781, 7.1044, 7.1001, 7.1115, 7.126, 7.1376, 7.1351, 7.1309, 7.128, 7.1226, 7.1178, 7.1129, 7.1264, 7.1213, 7.1045, 7.0996, 7.0963, 7.0922, 7.0881, 7.0863, 7.0985, 7.0936, 7.1043, 7.1174, 7.129, 7.1257, 7.1365, 7.1317, 7.1301, 7.1271, 7.1242, 7.1209, 7.1313, 7.1269, 7.1382, 7.1367, 7.1337, 7.146, 7.1442, 7.1746, 7.1756, 7.1733, 7.1685, 7.1924, 7.2027, 7.2003, 7.2246, 7.2212, 7.2324, 7.2284, 7.2254, 7.226, 7.2211, 7.2174, 7.2134, 7.2229, 7.2103, 7.2078, 7.2057, 7.2015, 7.1983, 7.1955, 7.1913, 7.1891, 7.1858, 7.1812, 7.1785, 7.174, 7.1696, 7.1654, 7.1631, 7.1589, 7.1895, 7.1853, 7.1807, 7.1784, 7.2338, 7.2298, 7.2511, 7.2494, 7.248, 7.2436, 7.2421, 7.2515, 7.2495, 7.2447, 7.2412, 7.2494, 7.259, 7.2555, 7.2523, 7.2892, 7.2847, 7.2931, 7.302, 7.3133, 7.3092, 7.3062, 7.3034, 7.299, 7.2979, 7.2933, 7.3022, 7.2978, 7.2932, 7.3014, 7.2967, 7.3055, 7.3018, 7.3027, 7.2996, 7.2948, 7.3051, 7.3007, 7.3123, 7.3085, 7.3102, 7.3057, 7.3026, 7.2985, 7.3065, 7.316, 7.3237, 7.3214, 7.3172, 7.3147, 7.3188, 7.3188, 7.315, 7.3113, 7.3067, 7.3139, 7.3109, 7.3183, 7.3147, 7.3105, 7.3183, 7.3215, 7.3181, 7.3164, 7.3119, 7.3371, 7.3332, 7.3417, 7.3409, 7.3394, 7.3365, 7.3349, 7.3324, 7.3285, 7.3626, 7.3581, 7.3543, 7.3552, 7.352, 7.354, 7.3507, 7.3468, 7.3444, 7.3425, 7.3397, 7.3478, 7.3491, 7.3576, 7.3538, 7.3589, 7.355, 7.3521, 7.3601, 7.361, 7.3578, 7.3579, 7.3554, 7.3542, 7.3592, 7.3556, 7.3539, 7.3513, 7.3485, 7.3445, 7.3532, 7.3503, 7.359, 7.3559, 7.3629, 7.3598, 7.3571, 7.3542, 7.3515, 7.349, 7.3457, 7.3416, 7.3393, 7.3369, 7.3342, 7.3333, 7.3327, 7.3414, 7.3406, 7.3486, 7.3562, 7.3542, 7.3505, 7.3484, 7.35, 7.348, 7.3455, 7.3417, 7.3403, 7.3468, 7.3463, 7.3465, 7.3438, 7.3509, 7.3517, 7.3584, 7.3558, 7.3523, 7.3509, 7.3575, 7.3541, 7.3505, 7.3477, 7.3449, 7.3511, 7.3506, 7.3495, 7.346, 7.3461, 7.3441, 7.3442, 7.3407, 7.3381, 7.3363, 7.3351, 7.3417, 7.3395, 7.3396, 7.3371, 7.3348, 7.3313, 7.3278, 7.3284, 7.3251, 7.3245, 7.3138, 7.3113, 7.3083, 7.3159, 7.3143, 7.3122, 7.3101, 7.3082, 7.3061, 7.3049, 7.3015, 7.3075, 7.3143, 7.3109, 7.3084, 7.3143, 7.3107, 7.3079, 7.3061, 7.3173, 7.3143, 7.3212, 7.3364, 7.3336, 7.332, 7.3389, 7.3386, 7.3413, 7.3383, 7.3387, 7.3442, 7.3738, 7.3702, 7.3681, 7.3652, 7.3643, 7.3627, 7.3595, 7.3579, 7.3573, 7.3633, 7.3615, 7.3704, 7.3683, 7.3827, 7.3796, 7.3762, 7.3741, 7.3713, 7.3682, 7.3655, 7.3624, 7.3591, 7.3567, 7.3535, 7.3502, 7.3476, 7.3464, 7.3518, 7.3491, 7.3543, 7.3516, 7.3487, 7.3461, 7.3435, 7.3487, 7.3455, 7.3511, 7.3489, 7.3464, 7.3455, 7.3432, 7.3488, 7.3467, 7.3438, 7.3493, 7.3462, 7.3511, 7.3565, 7.3625, 7.3683, 7.3668, 7.3637, 7.3608, 7.3516, 7.3492, 7.3548, 7.3522, 7.3505, 7.3585, 7.3681, 7.3666, 7.3641, 7.3779, 7.3713, 7.3631, 7.3608, 7.358, 7.3556, 7.3552, 7.3548, 7.3522, 7.3581, 7.3571, 7.3635, 7.3686, 7.3657, 7.3711, 7.369, 7.3659, 7.3628, 7.3618, 7.3595, 7.3565, 7.3537, 7.352, 7.349, 7.3471, 7.3447, 7.3421, 7.3401, 7.3395, 7.3461, 7.3438, 7.3411, 7.339, 7.3367, 7.3367, 7.3352, 7.3325, 7.3377, 7.3366, 7.3339, 7.3327, 7.33, 7.3273, 7.3328, 7.3386, 7.3443, 7.3431, 7.3403, 7.3387, 7.3384, 7.3404, 7.3396, 7.3385, 7.3373, 7.3345, 7.3358, 7.3338, 7.3314, 7.3298, 7.3277, 7.3254, 7.3232, 7.321, 7.3194, 7.3178, 7.3152, 7.3129, 7.3106, 7.3163, 7.3156, 7.3206, 7.3253, 7.3233, 7.3208, 7.3185, 7.3188, 7.3247, 7.3227, 7.3361, 7.3352, 7.337, 7.3426, 7.3403, 7.3339, 7.3332, 7.3312, 7.3309, 7.3282, 7.3332, 7.3314, 7.3367, 7.3413, 7.339, 7.3363, 7.3343, 7.3331, 7.338, 7.3421, 7.34, 7.3383, 7.3363, 7.3339, 7.3315, 7.3299, 7.3288, 7.3263, 7.3238, 7.3215, 7.3266, 7.3239, 7.3224, 7.3323, 7.3372, 7.3424, 7.3399, 7.3377, 7.3354, 7.333, 7.3373, 7.3348, 7.3327, 7.3319, 7.3371, 7.3417, 7.3395, 7.3377, 7.3354, 7.3328, 7.3317, 7.3244, 7.3224, 7.3222, 7.3197, 7.3268, 7.3314, 7.3335, 7.3324, 7.3315, 7.3297, 7.3338, 7.3318, 7.3301, 7.3276, 7.3208, 7.3186, 7.3167, 7.3145, 7.3121, 7.3121, 7.3165, 7.3141, 7.3183, 7.3159, 7.3202, 7.3245, 7.3219, 7.3206, 7.3186, 7.323, 7.3231, 7.3206, 7.3189, 7.3238, 7.3214, 7.3192, 7.3175, 7.3154, 7.3148, 7.3128, 7.3109, 7.3095, 7.3141, 7.3125, 7.3105, 7.3104, 7.309, 7.3078, 7.3124, 7.3119, 7.3097, 7.3075, 7.3064, 7.3043, 7.3083, 7.3134, 7.3126, 7.3102, 7.3091, 7.307, 7.3052, 7.304, 7.3085, 7.3066, 7.3042, 7.3087, 7.3133, 7.3176, 7.3222, 7.3203, 7.3182, 7.3228, 7.3207, 7.3201, 7.3179, 7.3224, 7.3206, 7.3255, 7.3236, 7.3215, 7.3263, 7.331, 7.3299, 7.3277, 7.3259, 7.336, 7.3292, 7.3278, 7.3261, 7.325, 7.3297, 7.3287, 7.3331, 7.3309, 7.3289, 7.3335, 7.3311, 7.3314, 7.3297, 7.328, 7.3258, 7.3247, 7.3225, 7.3205, 7.3195, 7.3176, 7.3159, 7.3137, 7.3116, 7.3105, 7.309, 7.308, 7.3067, 7.305, 7.3057, 7.3043, 7.3045, 7.3032, 7.3018, 7.2998, 7.3042, 7.3025, 7.2955, 7.2973, 7.2954, 7.2997, 7.2992, 7.2987, 7.2983, 7.2973, 7.3023, 7.3001, 7.2979, 7.296, 7.2949, 7.2944, 7.294, 7.292, 7.2904, 7.29, 7.2883, 7.2863, 7.2847, 7.2787, 7.2768, 7.2748, 7.273, 7.2716, 7.2704, 7.2696, 7.2676, 7.2673, 7.2682, 7.2686, 7.2667, 7.2648, 7.2629, 7.2615, 7.2603, 7.259, 7.2576, 7.2561, 7.255, 7.2536, 7.2522, 7.2456, 7.2449, 7.2432, 7.2419, 7.2409, 7.2403, 7.2396, 7.2377, 7.2361, 7.2346, 7.2385, 7.2378, 7.2417, 7.2407, 7.2398, 7.2384, 7.2367, 7.2363, 7.2356, 7.2342, 7.2331, 7.2382, 7.238, 7.2376, 7.2362, 7.2343, 7.2333, 7.2316, 7.2297, 7.2236, 7.2221, 7.2215, 7.2206, 7.2245, 7.2241, 7.2242, 7.2275, 7.2264, 7.2264, 7.2302, 7.2287, 7.2288, 7.2277, 7.2271, 7.2254, 7.2235, 7.2225, 7.2214, 7.2197, 7.2183, 7.2173, 7.2172, 7.2163, 7.22, 7.219, 7.2175, 7.2214, 7.22, 7.2239, 7.2224, 7.229, 7.2276, 7.2284, 7.2276, 7.2262, 7.2243, 7.2243, 7.228, 7.2313, 7.2294, 7.2276, 7.2273, 7.2256, 7.2247, 7.223, 7.2218, 7.2199, 7.2188, 7.2173, 7.2214, 7.2154, 7.2151, 7.2142, 7.2123, 7.2111, 7.2143, 7.2127, 7.2171, 7.2115, 7.2054, 7.2044, 7.2082, 7.2019, 7.2055, 7.204, 7.2026, 7.2012, 7.1999, 7.1983, 7.1965, 7.2009, 7.1995, 7.199, 7.1977, 7.1961, 7.1996, 7.1983, 7.2029, 7.2018, 7.2052, 7.2036, 7.2022, 7.2004, 7.1998, 7.1984, 7.1978, 7.1961, 7.1956, 7.1991, 7.203, 7.202, 7.2018, 7.2004, 7.2, 7.1993, 7.1979, 7.1975, 7.1959, 7.1945, 7.1934, 7.1922, 7.1909, 7.1895, 7.1881, 7.1871, 7.1864, 7.1853, 7.1892, 7.1927, 7.1874, 7.1816, 7.1814, 7.1797, 7.1793, 7.1827, 7.1822, 7.1811, 7.1795, 7.1827, 7.1862, 7.1895, 7.1928, 7.1917, 7.1863, 7.1846, 7.1829, 7.1862, 7.1847, 7.183, 7.1812, 7.1797, 7.1784, 7.1776, 7.1764, 7.1758, 7.1742, 7.1727, 7.1711, 7.1747, 7.1784, 7.1738, 7.1782, 7.183, 7.1771, 7.1768, 7.1752, 7.1736, 7.1728, 7.1725, 7.1714, 7.1699, 7.1683, 7.1672, 7.1659, 7.1653, 7.1921, 7.1906, 7.1938, 7.1972, 7.1967, 7.1952, 7.1986, 7.1982, 7.1993, 7.1981, 7.197, 7.2055, 7.2044, 7.203, 7.2016, 7.201, 7.2002, 7.1987, 7.1974, 7.2009, 7.2006, 7.1991, 7.1974, 7.1975, 7.201, 7.2042, 7.2072, 7.206, 7.2055, 7.2043, 7.2027, 7.2011, 7.1996, 7.198, 7.1965, 7.195, 7.1981, 7.2011, 7.2002, 7.1999, 7.1982, 7.1967, 7.1951, 7.1981, 7.1965, 7.1949, 7.1897, 7.1887, 7.1833, 7.1819, 7.1805, 7.1835, 7.1818, 7.1809, 7.1797, 7.1785, 7.1773, 7.1759, 7.175, 7.1736, 7.1773, 7.1762, 7.1746, 7.1742, 7.169, 7.1675, 7.1664, 7.166, 7.1652, 7.1641, 7.1628, 7.1614, 7.16, 7.1585, 7.1575, 7.156, 7.1548, 7.1495, 7.1448, 7.14, 7.1392, 7.1377, 7.1363, 7.1365, 7.1356, 7.1341, 7.1336, 7.1324, 7.1314, 7.13, 7.133, 7.141, 7.1443, 7.143, 7.1428, 7.1418, 7.1405, 7.1396, 7.1386, 7.1377, 7.1364, 7.1366, 7.1354, 7.135, 7.1306, 7.136, 7.1367, 7.1356, 7.1343, 7.1339, 7.1326, 7.1368, 7.1361, 7.1348, 7.1337, 7.1322, 7.1309, 7.1304, 7.1294, 7.1245, 7.1233, 7.1225, 7.1264, 7.1262, 7.1256, 7.1246, 7.1206, 7.1161, 7.1151, 7.1141, 7.1131, 7.1088, 7.1041, 7.0997, 7.0994, 7.098, 7.098, 7.097, 7.0958, 7.0945, 7.0933, 7.0926, 7.092, 7.0912, 7.0911, 7.0907, 7.0902, 7.0976, 7.0969, 7.0967, 7.0919, 7.091, 7.0908, 7.0903, 7.0898, 7.089, 7.0923, 7.0917, 7.0945, 7.0936, 7.0928, 7.1011, 7.1006, 7.0998, 7.0988, 7.0986, 7.094, 7.0929, 7.0917, 7.0946, 7.0943, 7.0935, 7.0966, 7.0952, 7.0938, 7.093, 7.096, 7.0963, 7.0955, 7.0956, 7.0951, 7.0939, 7.0931, 7.0956, 7.1037, 7.1071, 7.1062, 7.1056, 7.1056, 7.1046, 7.1034, 7.1063, 7.1054, 7.104, 7.1028, 7.1059, 7.105, 7.1041, 7.1029, 7.1021, 7.102, 7.1007, 7.0995, 7.0986, 7.0975, 7.0966, 7.1079, 7.1109, 7.1097, 7.1085, 7.1072, 7.1064, 7.1052, 7.104, 7.1036, 7.1024, 7.0978, 7.0936, 7.0891, 7.0846, 7.0834, 7.0829, 7.0857, 7.0846, 7.0847, 7.0841, 7.083, 7.0856, 7.0848, 7.0846, 7.0833, 7.082, 7.0818, 7.0809, 7.0803, 7.079, 7.0779, 7.0775, 7.0762, 7.0754, 7.0744, 7.0734, 7.0721, 7.0709, 7.0737, 7.0724, 7.0711, 7.0701, 7.0727, 7.0715, 7.0743, 7.073, 7.0758, 7.0749, 7.0741, 7.0737, 7.0726, 7.0752, 7.0746, 7.0751, 7.0742, 7.0734, 7.0727, 7.0916, 7.0905, 7.0934, 7.0927, 7.0915, 7.0903, 7.0893, 7.0881, 7.0872, 7.0869, 7.0895, 7.0885, 7.0913, 7.0902, 7.0894, 7.0884, 7.0874, 7.0865, 7.0895, 7.0921, 7.0911, 7.0941, 7.094, 7.0938, 7.0934, 7.0893, 7.0885, 7.0874, 7.0903, 7.0891, 7.085, 7.0838, 7.0865, 7.086, 7.0848, 7.0836, 7.0824, 7.0816, 7.0843, 7.0834, 7.0863, 7.0855, 7.0817, 7.0778, 7.0776, 7.0769, 7.0764, 7.0754, 7.0743, 7.0737, 7.0728, 7.0727, 7.072, 7.071, 7.0832, 7.0826, 7.0892, 7.0955, 7.0943, 7.0971, 7.0931, 7.0891, 7.0851, 7.0886, 7.088, 7.0872, 7.0983, 7.1012, 7.1011, 7.1007, 7.0997, 7.1005, 7.1034, 7.1023, 7.1014, 7.1004, 7.1001, 7.0995, 7.099, 7.098, 7.0975, 7.0963, 7.0954, 7.0943, 7.0932, 7.0921, 7.0916, 7.094, 7.0935, 7.0925, 7.0921, 7.0912, 7.0937, 7.0928, 7.0918, 7.0959, 7.0952, 7.0949, 7.0948, 7.0938, 7.0937, 7.0998, 7.1003, 7.1029, 7.1022, 7.1059, 7.1047, 7.1044, 7.1033, 7.1029, 7.1024, 7.1019, 7.1014, 7.1005, 7.1001, 7.0993, 7.0992, 7.0992, 7.0984, 7.0974, 7.0968, 7.0959, 7.1018, 7.1007, 7.0998, 7.0988, 7.099, 7.0982, 7.1011, 7.1002, 7.0998, 7.0987, 7.0978, 7.097, 7.0996, 7.0988, 7.0981, 7.097, 7.0973, 7.0966, 7.0962, 7.0952, 7.0945, 7.0971, 7.0971, 7.0963, 7.0954, 7.0944, 7.0932, 7.0921, 7.0921, 7.091, 7.0907, 7.0896, 7.0898, 7.089, 7.0914, 7.0942, 7.0966, 7.0993, 7.0987, 7.0977, 7.0972, 7.0968, 7.0963, 7.0954, 7.0946, 7.0938, 7.0931, 7.0924, 7.0926, 7.0915, 7.0944, 7.0934, 7.0925, 7.0957, 7.095, 7.0939, 7.0967, 7.0956, 7.0977, 7.0969, 7.0965, 7.0956, 7.0949, 7.0943, 7.0934, 7.0925, 7.0918, 7.0909, 7.0899, 7.0923, 7.0916, 7.1012, 7.1001, 7.1025, 7.0988, 7.0977, 7.0967, 7.0957, 7.0947, 7.0944, 7.0969, 7.0958, 7.0955, 7.098, 7.0974, 7.0969, 7.0959, 7.0955, 7.0944, 7.0973, 7.0962, 7.0953, 7.0943, 7.0932, 7.0924, 7.0914, 7.0967, 7.0958, 7.1002, 7.1068, 7.1062, 7.1058, 7.1054, 7.1049, 7.1039, 7.1068, 7.1064, 7.1091, 7.1122, 7.1113, 7.1143, 7.1136, 7.1129, 7.1121, 7.1113, 7.1104, 7.1127, 7.1116, 7.1106, 7.1098, 7.1087, 7.1083, 7.1074, 7.1123, 7.1149, 7.1144, 7.1138, 7.1132, 7.1121, 7.1114, 7.1111, 7.1107, 7.1096, 7.1088, 7.1087, 7.1076, 7.1076, 7.1134, 7.1098, 7.1091, 7.1113, 7.1112, 7.1105, 7.1108, 7.1104, 7.1096, 7.1088, 7.108, 7.1072, 7.1096, 7.1085, 7.1081, 7.107, 7.1065, 7.1086, 7.1075, 7.1065, 7.1064, 7.1059, 7.1049, 7.1041, 7.1068, 7.1089, 7.1085, 7.1075, 7.1068, 7.1061, 7.1055, 7.1057, 7.1048, 7.1042, 7.1031, 7.1024, 7.1015, 7.1042, 7.1067, 7.1097, 7.1119, 7.1111, 7.11, 7.1123, 7.1121, 7.1149, 7.1176, 7.1169, 7.1169, 7.1194, 7.1163, 7.1202, 7.1198, 7.117, 7.1163, 7.1154, 7.1149, 7.1155, 7.1174, 7.1173, 7.1166, 7.1156, 7.1148, 7.1151, 7.1144, 7.1148, 7.1144, 7.1133, 7.1126, 7.1119, 7.1114, 7.1104, 7.1103, 7.1096, 7.1089, 7.1082, 7.1074, 7.1042, 7.1034, 7.1027, 7.1018, 7.1016, 7.1036, 7.1032, 7.1023, 7.1044, 7.1037, 7.1039, 7.1058, 7.1048, 7.1039, 7.1033, 7.1025, 7.1021, 7.1043, 7.1068, 7.1089, 7.1081, 7.1077, 7.1068, 7.1033, 7.1025, 7.1025, 7.1017, 7.1012, 7.1004, 7.0999, 7.1021, 7.1016, 7.1011, 7.1067, 7.1063, 7.1053, 7.1042, 7.1065, 7.1089, 7.1079, 7.1076, 7.1072, 7.1063, 7.1058, 7.108, 7.1073, 7.1066, 7.1092, 7.1084, 7.1078, 7.1102, 7.11, 7.1091, 7.1113, 7.1108, 7.1107, 7.11, 7.1091, 7.1115, 7.111, 7.11, 7.1096, 7.1091, 7.1089, 7.1088, 7.1115, 7.1107, 7.1129, 7.1119, 7.1118, 7.1143, 7.1164, 7.116, 7.1152, 7.1143, 7.1134, 7.1126, 7.1121, 7.1116, 7.1109, 7.1103, 7.1126, 7.1153, 7.1144, 7.1167, 7.1159, 7.1149, 7.1144, 7.1136, 7.1127, 7.113, 7.1124, 7.1145, 7.1138, 7.1138, 7.113, 7.1095, 7.1091, 7.1091, 7.1087, 7.1077, 7.1071, 7.1074, 7.1067, 7.1062, 7.1061, 7.1053, 7.1045, 7.1043, 7.104, 7.103, 7.103, 7.1021, 7.1015, 7.1008, 7.1001, 7.0994, 7.0992, 7.099, 7.1013, 7.101, 7.1003, 7.0994, 7.1015, 7.1009, 7.1001, 7.0998, 7.099, 7.0981, 7.0977, 7.0969, 7.0963, 7.0956, 7.0983, 7.0977, 7.097, 7.0965, 7.0955, 7.0951, 7.0944, 7.0937, 7.0934, 7.0925, 7.0919, 7.0916, 7.0908, 7.093, 7.095, 7.0942, 7.0932, 7.0927, 7.0947, 7.0939, 7.0934, 7.0929, 7.0924, 7.0915, 7.091, 7.0961, 7.0964, 7.0955, 7.0949, 7.0941, 7.0934, 7.0955, 7.0946, 7.0937, 7.093, 7.1017, 7.1011, 7.1007, 7.1036, 7.1036, 7.1055, 7.1122, 7.1102, 7.1109, 7.1127, 7.1122, 7.1143, 7.1139, 7.1132, 7.1126, 7.1094, 7.1087, 7.1104, 7.113, 7.1131, 7.115, 7.1144, 7.1136, 7.1128, 7.1121, 7.1112, 7.1108, 7.1099, 7.109, 7.1109, 7.1099, 7.1094, 7.1085, 7.108, 7.1071, 7.1091, 7.1086, 7.1105, 7.1099, 7.1093, 7.1063, 7.1031, 7.1025, 7.1023, 7.1018, 7.1039, 7.1031, 7.1028, 7.1027, 7.1019, 7.1011, 7.101, 7.1008, 7.1033, 7.1026, 7.1022, 7.1017, 7.1009, 7.1004, 7.0997, 7.1002, 7.1026, 7.0993, 7.1014, 7.1004, 7.0997, 7.102, 7.104, 7.1032, 7.1051, 7.1042, 7.1035, 7.1029, 7.1021, 7.1015, 7.1015, 7.101, 7.1029, 7.1048, 7.1044, 7.1036, 7.1028, 7.1026, 7.1017, 7.1009, 7.1002, 7.1, 7.0992, 7.0987, 7.1011, 7.1003, 7.1, 7.1062, 7.1055, 7.1074, 7.1073, 7.1091, 7.1086, 7.1083, 7.1075, 7.1067, 7.1061, 7.1057, 7.1052, 7.1044, 7.1037, 7.104, 7.1041, 7.1037, 7.1028, 7.1024, 7.1015, 7.1017, 7.1035, 7.103, 7.1021, 7.1014, 7.101, 7.1031, 7.1026, 7.1023, 7.1015, 7.101, 7.1005, 7.1001, 7.0997, 7.0989, 7.0962, 7.0954, 7.0934, 7.0972, 7.1004, 7.098, 7.0972, 7.0968, 7.0959, 7.0954, 7.0952, 7.0949, 7.0947, 7.0967, 7.0963, 7.0955, 7.0949, 7.0942, 7.0911, 7.0905, 7.0925, 7.0918, 7.0913, 7.0906, 7.0899, 7.0892, 7.091, 7.0903, 7.0921, 7.0912, 7.0906, 7.0924, 7.0921, 7.0914, 7.0907, 7.1026, 7.1021, 7.1018, 7.101, 7.1006, 7.0999, 7.0992, 7.0961, 7.0952, 7.0947, 7.0939, 7.0935, 7.0932, 7.0924, 7.0919, 7.091, 7.0906, 7.0898, 7.0895, 7.0887, 7.0879, 7.0872, 7.0864, 7.0859, 7.083, 7.0822, 7.0792, 7.0785, 7.0777, 7.0774, 7.0766, 7.0759, 7.0754, 7.0753, 7.0729, 7.0725, 7.0734, 7.0725, 7.0696, 7.0691, 7.0686, 7.0659, 7.0678, 7.0673, 7.0668, 7.0695, 7.0702, 7.0721, 7.0742, 7.0764, 7.0757, 7.0751, 7.0745, 7.0741, 7.0734, 7.073, 7.0724, 7.0726, 7.0718, 7.0757, 7.0753, 7.0745, 7.0739, 7.0731, 7.0724, 7.0744, 7.0791, 7.0784, 7.078, 7.0772, 7.0792, 7.0786, 7.0778, 7.0771, 7.0768, 7.0766, 7.0764, 7.074, 7.0759, 7.0735, 7.071, 7.0711, 7.0704, 7.0727, 7.0747, 7.0748, 7.0765, 7.077500000000001, 7.0767, 7.0785, 7.0777, 7.0748, 7.0745, 7.0737, 7.0729, 7.0721, 7.0713, 7.0713, 7.073, 7.0723, 7.0741, 7.0735, 7.073, 7.0723, 7.0721, 7.0713, 7.0706, 7.0699, 7.0755, 7.0753, 7.0746, 7.0756000000000006, 7.076600000000001, 7.0783, 7.0801, 7.0793, 7.0785, 7.078, 7.0775, 7.0791, 7.0822, 7.0839, 7.0833, 7.0825, 7.0831, 7.0823, 7.0818, 7.0815, 7.081, 7.0804, 7.0821, 7.0816, 7.0808, 7.0801, 7.0793, 7.0789, 7.0787, 7.0787, 7.0781, 7.0773, 7.0766, 7.0764, 7.076, 7.0756, 7.0773, 7.0766, 7.0784, 7.0828, 7.0825, 7.0824, 7.082, 7.0817, 7.0811, 7.083, 7.0824, 7.0823, 7.0841, 7.0844, 7.0837, 7.0835, 7.0828, 7.0821, 7.0841, 7.0838, 7.0832, 7.0805, 7.0863, 7.0885, 7.0879, 7.0853, 7.0845, 7.0843, 7.0845, 7.0837, 7.0841, 7.0836, 7.0913, 7.0919, 7.0918, 7.0911, 7.0908, 7.0926, 7.0946, 7.0964, 7.0958, 7.0954, 7.0951, 7.0944, 7.0964, 7.0962, 7.0954, 7.0929, 7.0923, 7.092, 7.0917, 7.0934, 7.0928, 7.096, 7.0953, 7.0949, 7.0921, 7.0913, 7.0941, 7.0936, 7.0929, 7.0922, 7.0915, 7.0908, 7.0902, 7.0921, 7.0915, 7.0912, 7.0906, 7.0904, 7.0899, 7.0915, 7.0911, 7.0906, 7.09, 7.0897, 7.0913, 7.0906, 7.0947, 7.094, 7.0933, 7.0927, 7.0925, 7.0922, 7.0917, 7.0911, 7.0907, 7.0904, 7.0882, 7.086, 7.0879, 7.0874, 7.0867, 7.0861, 7.0856, 7.0855, 7.0848, 7.0841, 7.0834, 7.0827, 7.0819, 7.0814, 7.0811, 7.0808, 7.0803, 7.0823, 7.0821, 7.0814, 7.0814, 7.0832, 7.0826, 7.0821, 7.0815, 7.0816, 7.0809, 7.0803, 7.0798, 7.0791, 7.0795, 7.0789, 7.0782, 7.0774, 7.0797, 7.0792, 7.079, 7.0806, 7.0804, 7.0799, 7.0792, 7.0786, 7.0779, 7.0774, 7.0771, 7.0766, 7.0738, 7.0734, 7.0727, 7.0724, 7.0721, 7.0738, 7.0738, 7.0735, 7.0731, 7.0749, 7.0764, 7.0763, 7.0785, 7.0782, 7.0779, 7.0772, 7.0767, 7.0785, 7.0801, 7.0798, 7.0794, 7.0789, 7.0786, 7.076, 7.0752, 7.0771, 7.0769, 7.0765, 7.0757, 7.0752, 7.0747, 7.0742, 7.0737, 7.0732, 7.0724, 7.074, 7.0733, 7.0726, 7.0719, 7.0712, 7.0732, 7.0726, 7.072, 7.0713, 7.0707, 7.07, 7.0699, 7.0694, 7.071, 7.0703, 7.0696, 7.0672, 7.0667, 7.0661, 7.0654, 7.0648, 7.0643, 7.0658, 7.0632, 7.0606, 7.0622, 7.0617, 7.0612, 7.0743, 7.0758, 7.0755, 7.0772, 7.0767, 7.0762, 7.0756, 7.0752, 7.0751, 7.0766, 7.0782, 7.0779, 7.0775, 7.0768, 7.0762, 7.0756, 7.0754, 7.0749, 7.0743, 7.0736, 7.0731, 7.0727, 7.0723, 7.0716, 7.0709, 7.0706, 7.0699, 7.0699, 7.0718, 7.0717, 7.071, 7.0702, 7.0716, 7.0713, 7.071, 7.0705, 7.0703, 7.0679, 7.0655, 7.0648, 7.0664, 7.0662, 7.0655, 7.065, 7.0644, 7.066, 7.0678, 7.0671, 7.0687, 7.0685, 7.0678, 7.0671, 7.0648, 7.0641, 7.0657, 7.0757, 7.0755, 7.0748, 7.0742, 7.0736, 7.0732, 7.0749, 7.0745, 7.0763, 7.0758, 7.0774, 7.0768, 7.0784, 7.0759, 7.0774, 7.077, 7.0767, 7.0781, 7.0796, 7.0791, 7.0786, 7.0801, 7.0798, 7.0792, 7.0808, 7.0801, 7.0777, 7.0773, 7.0775, 7.0769, 7.0767, 7.0745, 7.0742, 7.078, 7.0779, 7.0772, 7.0766, 7.0741, 7.0757, 7.0753, 7.0752, 7.0747, 7.0741, 7.074, 7.074, 7.0755, 7.0748, 7.0745, 7.0765, 7.0761, 7.0757, 7.0752, 7.0747, 7.0763, 7.0758, 7.0753, 7.0749, 7.0762, 7.0756, 7.0754, 7.0748, 7.0741, 7.0739, 7.0733, 7.0778, 7.0794, 7.0788, 7.0811, 7.0805, 7.0785, 7.0808, 7.0803, 7.0802, 7.0799, 7.0793, 7.0786, 7.0781, 7.0779, 7.0777, 7.0776, 7.0776, 7.0774, 7.0771, 7.0765, 7.0762, 7.0758, 7.0754, 7.0748, 7.0842, 7.0859, 7.0855, 7.0848, 7.0842, 7.0836, 7.0829, 7.0828, 7.0825, 7.0839, 7.0832, 7.0831, 7.0825, 7.0823, 7.0837, 7.0855, 7.0855, 7.0857, 7.0856, 7.0882, 7.0877, 7.0872, 7.0866, 7.0861, 7.0856, 7.0854, 7.0847, 7.084, 7.0834, 7.0832, 7.0846, 7.0844, 7.0859, 7.0854, 7.0848, 7.0842, 7.0838, 7.0832, 7.0828, 7.0845, 7.0843, 7.0836, 7.085, 7.0863, 7.084, 7.0835, 7.0829, 7.0826, 7.0825, 7.0825, 7.0818, 7.0812, 7.0828, 7.0825, 7.0818, 7.0811, 7.0804, 7.0818, 7.0811, 7.0806, 7.0822, 7.0816, 7.0809, 7.0808, 7.0804, 7.0797, 7.0793, 7.0768, 7.0761, 7.0758, 7.0756, 7.077, 7.0763, 7.0756, 7.0733, 7.0728, 7.0723, 7.0718, 7.0713, 7.0708, 7.0725, 7.0725, 7.0729, 7.0724, 7.0723, 7.0721, 7.0716, 7.0699, 7.0722, 7.0723, 7.072, 7.0722, 7.0719, 7.0714, 7.0693, 7.0692, 7.0707, 7.0703, 7.0721, 7.0715, 7.0709, 7.0704, 7.072, 7.0737, 7.0732, 7.0729, 7.0724, 7.072, 7.0716, 7.0714, 7.0709, 7.0723, 7.0719, 7.0716, 7.0711, 7.0705, 7.07, 7.0698, 7.0677, 7.0692, 7.0686, 7.0701, 7.0696, 7.0691, 7.0692, 7.0707, 7.0702, 7.0697, 7.071, 7.0705, 7.0721, 7.0715, 7.0728, 7.0721, 7.0735, 7.0731, 7.0764, 7.0758, 7.0753, 7.0747, 7.0762, 7.0775, 7.0769, 7.0765, 7.076, 7.0773, 7.0766, 7.0761, 7.0755, 7.0749, 7.0747, 7.074, 7.0737, 7.0736, 7.0752, 7.0747, 7.0762, 7.0763, 7.0762, 7.076, 7.0758, 7.0772, 7.0766, 7.0763, 7.0759, 7.0759, 7.0735, 7.0733, 7.075, 7.0746, 7.0741, 7.0755, 7.0752, 7.077, 7.075, 7.0748, 7.0741, 7.0737, 7.0732, 7.0725, 7.0722, 7.0737, 7.0733, 7.0734, 7.0729, 7.0744, 7.0739, 7.0736, 7.0735, 7.0735, 7.0732, 7.0731, 7.0725, 7.0721, 7.0722, 7.0721, 7.0721, 7.0715, 7.0733, 7.0727, 7.0723, 7.0718, 7.0732, 7.0729, 7.0725, 7.072, 7.0715, 7.071, 7.0709, 7.0725, 7.0788, 7.077, 7.0766, 7.0766, 7.0764, 7.076, 7.0851, 7.0847, 7.0842, 7.0858, 7.0853, 7.0869, 7.0876, 7.087, 7.0869, 7.0866, 7.0863, 7.0858, 7.0853, 7.0849, 7.0845, 7.0843, 7.0837, 7.0816, 7.0795, 7.0773, 7.0768, 7.0764, 7.0759, 7.0761, 7.0816, 7.0811, 7.0826, 7.0821, 7.0819, 7.0832, 7.0826, 7.0824, 7.0822, 7.0819, 7.0813, 7.0808, 7.0822, 7.0849, 7.085, 7.0845, 7.0846, 7.0841, 7.0857, 7.0852, 7.0851, 7.0848, 7.0844, 7.0839, 7.0834, 7.0832, 7.0828, 7.0825, 7.0849, 7.083, 7.0814, 7.0808, 7.0804, 7.0798, 7.0794, 7.0807, 7.0802, 7.0799, 7.0793, 7.0807, 7.0805, 7.0799, 7.0796, 7.0811, 7.0808, 7.0805, 7.08, 7.0797, 7.0793, 7.0788, 7.0782, 7.0776, 7.0789, 7.0784, 7.0778, 7.0775, 7.0792, 7.0786, 7.0783, 7.0777, 7.0791, 7.0787, 7.0782, 7.0795, 7.079, 7.0789, 7.0786, 7.0781, 7.0778, 7.0793, 7.0794, 7.0789, 7.0804, 7.08, 7.0815, 7.0828, 7.0824, 7.082, 7.0814, 7.0811, 7.0805, 7.08, 7.0797, 7.0791, 7.0787, 7.08, 7.0798, 7.0795, 7.079, 7.0788, 7.0783, 7.078, 7.0775, 7.0769, 7.0769, 7.0764, 7.0764, 7.0761, 7.0759, 7.074, 7.0721, 7.0735, 7.0731, 7.0746, 7.0745, 7.0743, 7.0756, 7.075, 7.075, 7.0749, 7.0761, 7.0756, 7.0754, 7.075, 7.0764, 7.0763, 7.0759, 7.0754, 7.0772, 7.0768, 7.0782, 7.078, 7.0777, 7.079, 7.0784, 7.0778, 7.0774, 7.0786, 7.0784, 7.0764, 7.0762, 7.0757, 7.0752, 7.0747, 7.0761, 7.0759, 7.0754, 7.075, 7.0745, 7.0743, 7.0743, 7.0767, 7.0762, 7.0756, 7.0757, 7.0752, 7.0748, 7.0744, 7.0739, 7.0735, 7.073, 7.0726, 7.0721, 7.0717, 7.0712, 7.0707, 7.0702, 7.0696, 7.0696, 7.0691, 7.069, 7.0689, 7.0683, 7.0697, 7.0697, 7.0693, 7.074, 7.0754, 7.075, 7.0745, 7.0743, 7.0738, 7.0733, 7.0731, 7.0746, 7.0787, 7.0781, 7.0778, 7.0772, 7.0766, 7.076, 7.0743, 7.0743, 7.0737, 7.0733, 7.0728, 7.0727, 7.0721, 7.072, 7.0715, 7.071, 7.0725, 7.072, 7.0717, 7.0713, 7.0693, 7.0692, 7.0732, 7.0749, 7.0745, 7.0741, 7.0793, 7.0789, 7.0783, 7.0778, 7.0774, 7.0757, 7.0755, 7.0768, 7.0765, 7.0745, 7.074, 7.0737, 7.0732, 7.0728, 7.0724, 7.0737, 7.0749, 7.0743, 7.0755, 7.0766, 7.0761, 7.0773, 7.0785, 7.078, 7.0775, 7.0788, 7.0786, 7.0765, 7.076, 7.0757, 7.076, 7.0768, 7.0765, 7.0761, 7.0757, 7.0752, 7.0749, 7.0763, 7.0765, 7.0787, 7.0786, 7.0785, 7.0782, 7.0779, 7.0773, 7.0769, 7.0782, 7.0795, 7.079, 7.0786, 7.0798, 7.0812, 7.0809, 7.0808, 7.0804, 7.0801, 7.0812, 7.0807, 7.0809, 7.0804, 7.0801, 7.0795, 7.0807, 7.0811, 7.0823, 7.0818, 7.0832, 7.0814, 7.0833, 7.0829, 7.0824, 7.0819, 7.0817, 7.0838, 7.0835, 7.0855, 7.0904, 7.0884, 7.088, 7.0878, 7.0893, 7.0892, 7.0888, 7.0901, 7.0896, 7.0894, 7.0889, 7.0884, 7.0879, 7.0873, 7.0868, 7.0868, 7.0864, 7.0859, 7.0857, 7.087, 7.0884, 7.0883, 7.0879, 7.0874, 7.0869, 7.0864, 7.0862, 7.0863, 7.0865, 7.0862, 7.0857, 7.0868, 7.0868, 7.0863, 7.0862, 7.0877, 7.0911, 7.0928, 7.0924, 7.0922, 7.0917, 7.0912, 7.0909, 7.0904, 7.0899, 7.0895, 7.0891, 7.0903, 7.0917, 7.0932, 7.0926, 7.0924, 7.0919, 7.0916, 7.091, 7.0922, 7.0921, 7.0917, 7.0932, 7.0929, 7.0941, 7.0937, 7.0937, 7.0951, 7.0964, 7.0961, 7.0956, 7.0967, 7.0962, 7.0959, 7.0955, 7.095, 7.0946, 7.0943, 7.0939, 7.0936, 7.0948, 7.0947, 7.0959, 7.0954, 7.099, 7.0973, 7.097, 7.0965, 7.0961, 7.0956, 7.1005, 7.1003, 7.1004, 7.1001, 7.0998, 7.0993, 7.1006, 7.1018, 7.1014, 7.1012, 7.101, 7.1022, 7.1022, 7.1035, 7.1048, 7.1044, 7.1042, 7.1036, 7.1117, 7.1113, 7.1125, 7.1139, 7.1136, 7.1133, 7.1129, 7.1127, 7.114, 7.1135, 7.1132, 7.1126, 7.113, 7.1126, 7.1121, 7.1129, 7.1141, 7.1136, 7.1132, 7.1128, 7.114, 7.1134, 7.1146, 7.1142, 7.1139, 7.114, 7.1138, 7.1139, 7.1135, 7.1135, 7.1131, 7.1146, 7.1141, 7.1154, 7.115, 7.1145, 7.1141, 7.1139, 7.1134, 7.1146, 7.1143, 7.1139, 7.1134, 7.1116, 7.1128, 7.1124, 7.1135, 7.1131, 7.1126, 7.114, 7.1141, 7.1137, 7.1132, 7.1143, 7.1141, 7.1136, 7.1149, 7.1143, 7.1139, 7.115, 7.1147, 7.1143, 7.1155, 7.1151, 7.1163, 7.1158, 7.1154, 7.1149, 7.1162, 7.1244, 7.1244, 7.125, 7.1246, 7.124, 7.1242, 7.1272, 7.1266, 7.1278, 7.1274, 7.1302, 7.1297, 7.1308, 7.1305, 7.1316, 7.1313, 7.131, 7.1323, 7.132, 7.1314, 7.131, 7.1305, 7.1301, 7.1296, 7.1295, 7.129, 7.1286, 7.1288, 7.1299, 7.1293, 7.1289, 7.1285, 7.1279, 7.1277, 7.1275, 7.1271, 7.1268, 7.1264, 7.1262, 7.126, 7.1255, 7.1252, 7.1248, 7.1247, 7.1245, 7.1241, 7.1239, 7.1235, 7.1231, 7.1227, 7.1222, 7.1219, 7.1232, 7.1235, 7.1234, 7.123, 7.1241, 7.1239, 7.1236, 7.1233, 7.1228, 7.1224, 7.122, 7.1215, 7.1211, 7.1207, 7.122, 7.1231, 7.1242, 7.1253, 7.1264, 7.1261, 7.1259, 7.1258, 7.1269, 7.1264, 7.1261, 7.1263, 7.126, 7.1256, 7.1253, 7.1249, 7.1245, 7.124, 7.1236, 7.1232, 7.1227, 7.1238, 7.1249, 7.1243, 7.1239, 7.125, 7.1246, 7.124, 7.1235, 7.1235, 7.123, 7.1229, 7.1226, 7.1223, 7.1221, 7.1232, 7.123, 7.1212, 7.1224, 7.1219, 7.1215, 7.1213, 7.1194, 7.1189, 7.1188, 7.1199, 7.1196, 7.1191, 7.1202, 7.1197, 7.1192, 7.1188, 7.1186, 7.1183, 7.1178, 7.1175, 7.117, 7.1151, 7.1132, 7.1143, 7.114, 7.1137, 7.1132, 7.1116, 7.1111, 7.111, 7.1106, 7.1102, 7.1114, 7.1118, 7.1131, 7.1199, 7.1194, 7.1206, 7.1201, 7.1197, 7.1192, 7.1191, 7.1189, 7.1187, 7.1183, 7.1179, 7.1176, 7.1174, 7.1198, 7.1195, 7.1206, 7.1201, 7.12, 7.12, 7.1196, 7.1194, 7.1191, 7.1187, 7.1183, 7.1184, 7.1184, 7.1184, 7.1179, 7.1176, 7.1177, 7.1177, 7.1176, 7.1173, 7.1172, 7.1167, 7.1162, 7.1157, 7.117, 7.1166, 7.1163, 7.1159, 7.1154, 7.1167, 7.1163, 7.116, 7.1156, 7.1152, 7.1149, 7.1144, 7.117, 7.1166, 7.1148, 7.113, 7.1125, 7.1121, 7.1118, 7.1114, 7.1108, 7.1105, 7.1118, 7.1114, 7.111, 7.1122, 7.1118, 7.113, 7.1142, 7.1124, 7.112, 7.1116, 7.1116, 7.1114, 7.1126, 7.1138, 7.1134, 7.1134, 7.1145, 7.1143, 7.1155, 7.1154, 7.1149, 7.1153, 7.1153, 7.1148, 7.1144, 7.1157, 7.1142, 7.114, 7.1135, 7.1147, 7.1144, 7.1141, 7.1136, 7.1131, 7.1127, 7.114, 7.1137, 7.1132, 7.1128, 7.114, 7.1151, 7.1146, 7.1144, 7.1142, 7.1138, 7.1152, 7.1148, 7.1146, 7.1128, 7.1124, 7.1142, 7.1139, 7.1136, 7.1132, 7.1128, 7.1125, 7.1121, 7.112, 7.1115, 7.1127, 7.1125, 7.1124, 7.1119, 7.1114, 7.1128, 7.1158, 7.1171, 7.1168, 7.1164, 7.1174, 7.1175, 7.1187, 7.1182, 7.1178, 7.1179, 7.1174, 7.1171, 7.117, 7.1166, 7.1162, 7.1163, 7.116, 7.1157, 7.1152, 7.115, 7.1146, 7.1142, 7.1137, 7.1151, 7.1147, 7.1159, 7.1142, 7.1138, 7.1134, 7.113, 7.1127, 7.1122, 7.1121, 7.1119, 7.1105, 7.1103, 7.1102, 7.1084, 7.108, 7.1079, 7.1092, 7.1088, 7.1099, 7.1098, 7.1093, 7.1089, 7.1072, 7.1085, 7.1081, 7.1077, 7.1072, 7.107, 7.1065, 7.1064, 7.1074, 7.1086, 7.1081, 7.1082, 7.1094, 7.1104, 7.109, 7.1089, 7.1087, 7.1083, 7.1079, 7.1074, 7.1069, 7.1079, 7.1074, 7.1072, 7.107, 7.1065, 7.1061, 7.1073, 7.1068, 7.1053, 7.1036, 7.1047, 7.1043, 7.1043, 7.1039, 7.105, 7.1047, 7.1046, 7.1044, 7.1054, 7.1049, 7.1044, 7.1039, 7.1035, 7.1031, 7.1027, 7.1022, 7.1033, 7.1031, 7.1042, 7.1053, 7.1065, 7.1076, 7.1072, 7.1067, 7.1068, 7.1066, 7.1062, 7.1059, 7.1054, 7.1049, 7.1076, 7.1071, 7.1071, 7.1068, 7.1079, 7.1077, 7.1073, 7.1077, 7.1072, 7.1069, 7.1079, 7.109, 7.109, 7.1086, 7.1082, 7.1094, 7.1091, 7.1088, 7.1087, 7.1099, 7.1096, 7.1106, 7.1102, 7.11, 7.1097, 7.1092, 7.1087, 7.1099, 7.1095, 7.1091, 7.1074, 7.1072, 7.1084, 7.108, 7.1091, 7.1087, 7.107, 7.1066, 7.1068, 7.1064, 7.106, 7.1056, 7.1052, 7.1048, 7.1032, 7.1042, 7.1038, 7.1023, 7.102, 7.1015, 7.1012, 7.1023, 7.1034, 7.1037, 7.1048, 7.1046, 7.1042, 7.1039, 7.1037, 7.1033, 7.1044, 7.1042, 7.104, 7.1039, 7.105, 7.1048, 7.1031, 7.1028, 7.104, 7.1051, 7.1046, 7.1057, 7.1067, 7.1066, 7.1077, 7.109, 7.1088, 7.1101, 7.1097, 7.1109, 7.1105, 7.1088, 7.1084, 7.1082, 7.1093, 7.1088, 7.1087, 7.1082, 7.1093, 7.1089, 7.1085, 7.1081, 7.1079, 7.1075, 7.1075, 7.107, 7.1066, 7.1064, 7.1064, 7.1047, 7.1042, 7.1037, 7.1068, 7.108, 7.109, 7.1089, 7.1098, 7.1128, 7.1126, 7.1122, 7.1135, 7.1132, 7.1129, 7.1128, 7.1127, 7.1127, 7.1125, 7.1121, 7.1132, 7.113, 7.1126, 7.1142, 7.1141, 7.1124, 7.111, 7.1121, 7.1117, 7.1117, 7.1103, 7.1101, 7.1098, 7.1094, 7.1104, 7.1099, 7.1082, 7.1078, 7.1089, 7.1087, 7.1082, 7.1092, 7.1088, 7.1098, 7.11, 7.1096, 7.1094, 7.1091, 7.1088, 7.1084, 7.1097, 7.1093, 7.1091, 7.11, 7.1096, 7.1092, 7.1102, 7.1098, 7.1111, 7.1107, 7.1118, 7.1114, 7.1098, 7.111, 7.1106, 7.1102, 7.1099, 7.1099, 7.1096, 7.1107, 7.1103, 7.1115, 7.1125, 7.1121, 7.1131, 7.1127, 7.1138, 7.117, 7.1171, 7.1172, 7.1172, 7.1169, 7.1175, 7.1171, 7.1169, 7.1166, 7.1198, 7.1195, 7.1204, 7.1188, 7.1198, 7.1194, 7.1192, 7.1205, 7.1201, 7.1246, 7.1267, 7.1269, 7.1267, 7.1255, 7.1251, 7.125, 7.1252, 7.1235, 7.1218, 7.1216, 7.1217, 7.1227, 7.1223, 7.122, 7.1216, 7.1212, 7.1207, 7.119, 7.1188, 7.12, 7.1198, 7.1208, 7.1204, 7.1202, 7.1198, 7.1196, 7.1192, 7.119, 7.123, 7.1226, 7.1222, 7.1232, 7.1228, 7.1228, 7.1224, 7.122, 7.1216, 7.1217, 7.1214, 7.1199, 7.1186, 7.1183, 7.118, 7.1178, 7.1174, 7.1173, 7.1172, 7.117, 7.1169, 7.1165, 7.1176, 7.1179, 7.1175, 7.1185, 7.1184, 7.1179, 7.1203, 7.1187, 7.117, 7.1153, 7.1163, 7.1162, 7.1158, 7.1156, 7.1167, 7.1151, 7.1148, 7.1146, 7.1161, 7.1162, 7.1158, 7.1167, 7.1178, 7.1174, 7.1163, 7.1173, 7.1171, 7.1167, 7.1162, 7.1161, 7.1171, 7.1169, 7.1167, 7.1175, 7.1171, 7.117, 7.1165, 7.116, 7.1169, 7.1167, 7.1165, 7.1162, 7.1158, 7.1171, 7.1156, 7.1151, 7.1148, 7.1145, 7.1142, 7.1138, 7.1137, 7.1133, 7.1129, 7.1125, 7.1121, 7.1117, 7.1114, 7.1112, 7.1111, 7.1109, 7.1105, 7.1114, 7.111, 7.1105, 7.1104, 7.1103, 7.1099, 7.1109, 7.1106, 7.1102, 7.11, 7.111, 7.1108, 7.1105, 7.1103, 7.1104, 7.1114, 7.1099, 7.1096, 7.1093, 7.1104, 7.1101, 7.1112, 7.111, 7.111, 7.1109, 7.1096, 7.1096, 7.1092, 7.1102, 7.1086, 7.1073, 7.1084, 7.1084, 7.108, 7.1077, 7.1076, 7.108, 7.1075, 7.1072, 7.1068, 7.1065, 7.1064, 7.1062, 7.1062, 7.1059, 7.1055, 7.1041, 7.1026, 7.1036, 7.1034, 7.1032, 7.1028, 7.1027, 7.1023, 7.1033, 7.103, 7.1041, 7.1052, 7.105, 7.1046, 7.1057, 7.1054, 7.105, 7.1046, 7.1056, 7.1052, 7.1051, 7.1047, 7.1045, 7.1054, 7.1053, 7.1063, 7.1062, 7.1062, 7.1059, 7.1065, 7.1062, 7.106, 7.1055, 7.1065, 7.1063, 7.1073, 7.107, 7.1066, 7.1076, 7.1072, 7.1081, 7.1077, 7.1087, 7.1085, 7.1069, 7.1054, 7.105, 7.1049, 7.1033, 7.103, 7.1027, 7.1026, 7.1011, 7.102, 7.1016, 7.1013, 7.1009, 7.1005, 7.1001, 7.0987, 7.0983, 7.0983, 7.098, 7.0989, 7.0987, 7.0983, 7.098, 7.0976, 7.0986, 7.0972, 7.0981, 7.0982, 7.0981, 7.0977, 7.0973, 7.0972, 7.0971, 7.0981, 7.1003, 7.1, 7.0996, 7.0992, 7.099, 7.0988, 7.0986, 7.0996, 7.0993, 7.1004, 7.099, 7.0986, 7.0983, 7.098, 7.0976, 7.0972, 7.0969, 7.0967, 7.0965, 7.0975, 7.0984, 7.0982, 7.098, 7.0979, 7.0978, 7.0987, 7.0983, 7.098, 7.0989, 7.0999, 7.0997, 7.0993, 7.0989, 7.0987, 7.0983, 7.0981, 7.0979, 7.0975, 7.096, 7.0996, 7.101, 7.1006, 7.1002, 7.0998, 7.0995, 7.0991, 7.0988, 7.0987, 7.0986, 7.0985, 7.0982, 7.0979, 7.0989, 7.0986, 7.0983, 7.0983, 7.0982, 7.0991, 7.0987, 7.0998, 7.0996, 7.0992, 7.099, 7.0998, 7.0996, 7.1005, 7.1001, 7.0997, 7.0993, 7.1003, 7.1, 7.0997, 7.0982, 7.0982, 7.0979, 7.0976, 7.0985, 7.0995, 7.0997, 7.101, 7.1007, 7.1006, 7.1003, 7.1001, 7.0997, 7.0993, 7.0991, 7.0989, 7.0999, 7.0995, 7.0992, 7.1002, 7.1, 7.0996, 7.0992, 7.0994, 7.1005, 7.1002, 7.0999, 7.0996, 7.0992, 7.1002, 7.1, 7.0996, 7.0992, 7.0989, 7.0988, 7.0984, 7.0997, 7.0995, 7.098, 7.0991, 7.0987, 7.0983, 7.0979, 7.0978, 7.0974, 7.097, 7.0966, 7.0962, 7.0959, 7.0956, 7.0952, 7.0948, 7.0945, 7.0945, 7.0941, 7.0926, 7.0924, 7.092, 7.0916, 7.0913, 7.0913, 7.0915, 7.0913, 7.0923, 7.0932, 7.093, 7.0926, 7.0911, 7.0908, 7.0904, 7.09, 7.0899, 7.0916, 7.0915, 7.095, 7.0949, 7.0948, 7.0958, 7.0954, 7.0951, 7.0949, 7.0957, 7.0954, 7.0951, 7.0948, 7.0947, 7.0945, 7.0968, 7.0965, 7.0989, 7.0986, 7.0997, 7.0994, 7.0993, 7.0978, 7.0975, 7.0987, 7.0983, 7.0979, 7.0976, 7.0986, 7.0985, 7.0983, 7.0993, 7.0991, 7.0988, 7.0985, 7.1006, 7.1003, 7.1, 7.0996, 7.0994, 7.0996, 7.0993, 7.0992, 7.0991, 7.0988, 7.0997, 7.0994, 7.1002, 7.0999, 7.0997, 7.0995, 7.1005, 7.1002, 7.0999, 7.1009, 7.1018, 7.1017, 7.1013, 7.1009, 7.101, 7.1006, 7.1005, 7.1002, 7.0999, 7.0997, 7.0994, 7.0992, 7.0988, 7.0997, 7.0993, 7.1014, 7.101, 7.102, 7.1017, 7.1015, 7.1012, 7.1022, 7.1021, 7.1018, 7.1021, 7.1018, 7.1015, 7.1014, 7.1015, 7.1011, 7.0998, 7.0996, 7.0994, 7.0991, 7.0988, 7.1022, 7.1031, 7.1028, 7.1028, 7.1026, 7.1024, 7.102, 7.1017, 7.1025, 7.1021, 7.1018, 7.1027, 7.1023, 7.102, 7.1018, 7.1014, 7.1023, 7.1021, 7.1019, 7.1015, 7.1011, 7.1021, 7.1019, 7.1015, 7.1023, 7.1009, 7.1005, 7.1002, 7.101, 7.1006, 7.1014, 7.101, 7.1007, 7.1006, 7.1005, 7.1003, 7.1, 7.0999, 7.0998, 7.0995, 7.0992, 7.0992, 7.1001, 7.0997, 7.1006, 7.1003, 7.1, 7.1009, 7.1005, 7.1001, 7.0998, 7.0994, 7.0991, 7.0987, 7.0986, 7.0986, 7.0984, 7.0983, 7.0984, 7.098, 7.0977, 7.0974, 7.0973, 7.0971, 7.0969, 7.0966, 7.0963, 7.096, 7.0958, 7.0955, 7.0953, 7.095, 7.095, 7.096, 7.096, 7.0959, 7.0948, 7.0945, 7.0954, 7.0953, 7.0964, 7.0972, 7.097, 7.0967, 7.0966, 7.0964, 7.0962, 7.0958, 7.0956, 7.0955, 7.0979, 7.0976, 7.0975, 7.0985, 7.0981, 7.0977, 7.0973, 7.097, 7.0979, 7.0976, 7.0962, 7.0961, 7.0958, 7.0966, 7.0974, 7.097, 7.0967, 7.0966, 7.0963, 7.0961, 7.0958, 7.0968, 7.0966, 7.0975, 7.0984, 7.098, 7.0988, 7.0988, 7.0986, 7.0984, 7.0981, 7.0966, 7.0988, 7.1024, 7.101, 7.0996, 7.0994, 7.099, 7.0988, 7.0984, 7.0981, 7.0977, 7.0973, 7.0982, 7.0978, 7.0974, 7.0984, 7.098, 7.0978, 7.0976, 7.0974, 7.097, 7.0967, 7.0966, 7.0962, 7.0958, 7.0944, 7.0932, 7.0921, 7.093, 7.0928, 7.0924, 7.092, 7.0918, 7.0917, 7.0919, 7.0915, 7.0914, 7.0911, 7.0911, 7.0909, 7.0905, 7.0901, 7.0898, 7.0894, 7.089, 7.0889, 7.0886, 7.0884, 7.0882, 7.0878, 7.0874, 7.0871, 7.0868, 7.0864, 7.0861, 7.0857, 7.0871, 7.0868, 7.0865, 7.0862, 7.0873, 7.0872, 7.0872, 7.0871, 7.0859, 7.0856, 7.0853, 7.0851, 7.0838, 7.0836, 7.0835, 7.0832, 7.0829, 7.083, 7.0828, 7.0826, 7.0827, 7.0823, 7.0823, 7.0821, 7.0831, 7.0829, 7.0827, 7.0874, 7.0874, 7.0926, 7.0922, 7.0918, 7.0916, 7.0913, 7.0923, 7.091, 7.0908, 7.0906, 7.0906, 7.0903, 7.0899, 7.0896, 7.0882, 7.0882, 7.0884, 7.0881, 7.0888, 7.0885, 7.0871, 7.0858, 7.0855, 7.0866, 7.0863, 7.0859, 7.0846, 7.0845, 7.0843, 7.0832, 7.0843, 7.0842, 7.0841, 7.0842, 7.0842, 7.0832, 7.0828, 7.0824, 7.0821, 7.0823, 7.0821, 7.0819, 7.0808, 7.0806, 7.0817, 7.0815, 7.0813, 7.081, 7.082, 7.0816, 7.0813, 7.0811, 7.0808, 7.0816, 7.0824, 7.0834, 7.0822, 7.0834, 7.0835, 7.0833, 7.0841, 7.0831, 7.083, 7.0826, 7.0824, 7.0821, 7.0818, 7.0817, 7.0815, 7.0811, 7.0807, 7.0804, 7.0814, 7.081, 7.0811, 7.0809, 7.0806, 7.0802, 7.0811, 7.0809, 7.0805, 7.0803, 7.0811, 7.082, 7.0817, 7.0813, 7.081, 7.0806, 7.0815, 7.0811, 7.0809, 7.0805, 7.0804, 7.08, 7.0796, 7.0793, 7.0793, 7.0791, 7.0787, 7.0784, 7.0783, 7.0792, 7.0789, 7.0787, 7.0785, 7.0793, 7.08, 7.0808, 7.0804, 7.08, 7.0796, 7.0796, 7.0792, 7.079, 7.0788, 7.0787, 7.0784, 7.0784, 7.0783, 7.078, 7.0776, 7.0773, 7.077, 7.0767, 7.0776, 7.0775, 7.0784, 7.0783, 7.0782, 7.0779, 7.0779, 7.0776, 7.0785, 7.0795, 7.0795, 7.0791, 7.0789, 7.0776, 7.0764, 7.0775, 7.0773, 7.0782, 7.0791, 7.0789, 7.0788, 7.0784, 7.0793, 7.079, 7.0788, 7.0785, 7.0783, 7.0781, 7.0779, 7.0778, 7.0776, 7.0765, 7.0763, 7.0759, 7.0755, 7.0752, 7.076, 7.0757, 7.0754, 7.0752, 7.0761, 7.0759, 7.0767, 7.0763, 7.0761, 7.0759, 7.0761, 7.0758, 7.0756, 7.0753, 7.0764, 7.0761, 7.0758, 7.0757, 7.0755, 7.0776, 7.0773, 7.0787, 7.0786, 7.0785, 7.0806, 7.0803, 7.0804, 7.0801, 7.0799, 7.0797, 7.0796, 7.0792, 7.0801, 7.0798, 7.0806, 7.0804, 7.08, 7.0786, 7.0783, 7.078, 7.0782, 7.0792, 7.0789, 7.0797, 7.0796, 7.0794, 7.0791, 7.0788, 7.0809, 7.0806, 7.0803, 7.08, 7.0797, 7.0807, 7.0805, 7.0794, 7.0791, 7.0788, 7.0776, 7.0774, 7.0772, 7.077, 7.0766, 7.0763, 7.076, 7.0757, 7.0766, 7.0762, 7.076, 7.0757, 7.0744, 7.0742, 7.075, 7.074, 7.0737, 7.0724, 7.0722, 7.0722, 7.0719, 7.0728, 7.0725, 7.0722, 7.0732, 7.0729, 7.0738, 7.0737, 7.0736, 7.0733, 7.0731, 7.0729, 7.0728, 7.0736, 7.0734, 7.0742, 7.075, 7.0747, 7.0744, 7.0743, 7.0742, 7.0739, 7.074, 7.0737, 7.0757, 7.0754, 7.0751, 7.0748, 7.0755, 7.0752, 7.0758, 7.0765, 7.0763, 7.0759, 7.0755, 7.0754, 7.0754, 7.0751, 7.0749, 7.0757, 7.0756, 7.0753, 7.0752, 7.0753, 7.0751, 7.0748, 7.0745, 7.0753, 7.0751, 7.0749, 7.0737, 7.0725, 7.0725, 7.0733, 7.073, 7.0718, 7.0718, 7.0714, 7.0714, 7.0703, 7.0712, 7.072, 7.0717, 7.0727, 7.0723, 7.072, 7.0719, 7.0717, 7.0737, 7.0736, 7.0733, 7.0741, 7.0741, 7.0738, 7.0748, 7.0747, 7.0745, 7.0755, 7.0752, 7.0756, 7.0752, 7.076, 7.0749, 7.0747, 7.0743, 7.0752, 7.074, 7.074, 7.0737, 7.0741, 7.0741, 7.0738, 7.0735, 7.0746, 7.0743, 7.0752, 7.074, 7.0727, 7.0724, 7.0722, 7.072, 7.0718, 7.0716, 7.0713, 7.071, 7.0708, 7.0706, 7.0702, 7.07, 7.0698, 7.0697, 7.0704, 7.0702, 7.0698, 7.0694, 7.069, 7.069, 7.0687, 7.0684, 7.068, 7.0677, 7.0673, 7.0671, 7.0658, 7.0656, 7.0652, 7.0648, 7.0645, 7.0642, 7.0672, 7.0679, 7.0677, 7.0686, 7.0683, 7.068, 7.0678, 7.0674, 7.067, 7.0683, 7.0681, 7.0679, 7.0687, 7.0683, 7.067, 7.0659, 7.0649, 7.0635, 7.0634, 7.0622, 7.0629, 7.0629, 7.0641, 7.064, 7.0638, 7.0635, 7.0631, 7.0639, 7.0636, 7.0635, 7.0623, 7.0632, 7.0629, 7.0627, 7.0625, 7.0624, 7.0632, 7.0641, 7.0651, 7.0648, 7.0661, 7.066, 7.0659, 7.0666, 7.0662, 7.0661, 7.0658, 7.0655, 7.0653, 7.0651, 7.0649, 7.0653, 7.0651, 7.0651, 7.0648, 7.065, 7.066, 7.0657, 7.0656, 7.0653, 7.0675, 7.0673, 7.0674, 7.0671, 7.0669, 7.0667, 7.0667, 7.0663, 7.066, 7.0667, 7.0663, 7.0651, 7.0648, 7.0648, 7.0656, 7.0654, 7.0654, 7.0652, 7.065, 7.0657, 7.0647, 7.0654, 7.0662, 7.066, 7.0657, 7.0654, 7.0653, 7.0651, 7.0649, 7.0637, 7.0645, 7.0646, 7.0647, 7.0656, 7.0655, 7.0675, 7.0673, 7.0683, 7.068, 7.0677, 7.0675, 7.0687, 7.0686, 7.0674, 7.0671, 7.067, 7.0657, 7.0666, 7.0666, 7.0664, 7.066, 7.0656, 7.0669, 7.0668, 7.0675, 7.0675, 7.0673, 7.0683, 7.0682, 7.0679, 7.0676, 7.0674, 7.0662, 7.066, 7.0657, 7.0657, 7.0654, 7.0651, 7.0648, 7.0647, 7.0644, 7.0633, 7.063, 7.0629, 7.0627, 7.0625, 7.0627, 7.0624, 7.0631, 7.0628, 7.0625, 7.0623, 7.0622, 7.062, 7.062, 7.0619, 7.0619, 7.0616, 7.0612, 7.061, 7.0608, 7.0606, 7.0614, 7.0612, 7.062, 7.0622, 7.063, 7.0627, 7.0635, 7.0633, 7.063, 7.0644, 7.0641, 7.0639, 7.0636, 7.0634, 7.0634, 7.0642, 7.0639, 7.0647, 7.0655, 7.0653, 7.0652, 7.066, 7.0657, 7.0654, 7.0653, 7.065, 7.0658, 7.0658, 7.0655, 7.0663, 7.0671, 7.0668, 7.0675, 7.0672, 7.0682, 7.0681, 7.0678, 7.0676, 7.0673, 7.0671, 7.0679, 7.0689, 7.0688, 7.0687, 7.0695, 7.0695, 7.0702, 7.069, 7.0689, 7.0687, 7.0688, 7.0696, 7.0694, 7.0703, 7.0701, 7.0698, 7.0707, 7.0705, 7.0702, 7.0701, 7.07, 7.0698, 7.0697, 7.0688, 7.0695, 7.0691, 7.0679, 7.0678, 7.0688, 7.0686, 7.0673, 7.0671, 7.0668, 7.0676, 7.0673, 7.067, 7.0678, 7.0675, 7.0673, 7.0673, 7.0671, 7.067, 7.0667, 7.0664, 7.0673, 7.067, 7.0667, 7.0665, 7.0665, 7.0665, 7.0665, 7.0662, 7.0662, 7.066, 7.0657, 7.0657, 7.0654, 7.0652, 7.0682, 7.0704, 7.0712, 7.0725, 7.0724, 7.0724, 7.0721, 7.0718, 7.0715, 7.0713, 7.0711, 7.0708, 7.0717, 7.0706, 7.0703, 7.0701, 7.0698, 7.0695, 7.0692, 7.0742, 7.0762, 7.0761, 7.0758, 7.0755, 7.0763, 7.0762, 7.0761, 7.0759, 7.0746, 7.0746, 7.0744, 7.0742, 7.0741, 7.0739, 7.0738, 7.0745, 7.0743, 7.0741, 7.0739, 7.0738, 7.0736, 7.0733, 7.074, 7.0748, 7.0747, 7.0745, 7.0743, 7.0743, 7.0741, 7.0739, 7.0736, 7.0733, 7.0752, 7.0749, 7.0738, 7.0737, 7.0744, 7.0742, 7.075, 7.0747, 7.0755, 7.0752, 7.0748, 7.0746, 7.0754, 7.0752, 7.0759, 7.0767, 7.0764, 7.0773, 7.0772, 7.077, 7.0778, 7.0775, 7.0773, 7.077, 7.0767, 7.0765, 7.0764, 7.0761, 7.0758, 7.0765, 7.0764, 7.0752, 7.075, 7.0747, 7.0746, 7.0765, 7.0774, 7.0772, 7.077, 7.0777, 7.0774, 7.0772, 7.077, 7.0767, 7.0768, 7.0766, 7.0764, 7.0765, 7.0788, 7.0785, 7.0782, 7.078, 7.0777, 7.0774, 7.0781, 7.0778, 7.0775, 7.0773, 7.0782, 7.0789, 7.0788, 7.0795, 7.0802, 7.0803, 7.0802, 7.0799, 7.0796, 7.0795, 7.0793, 7.0806, 7.0807, 7.0804, 7.0819, 7.0827, 7.0817, 7.0817, 7.0814, 7.0821, 7.0819, 7.0816, 7.0813, 7.0813, 7.0811, 7.0818, 7.0816, 7.0814, 7.0811, 7.0808, 7.0806, 7.0813, 7.0812, 7.0809, 7.0807, 7.0804, 7.0811, 7.0819, 7.0827, 7.0828, 7.0828, 7.0825, 7.0822, 7.0822, 7.0821, 7.0822, 7.082, 7.0818, 7.0815, 7.0813, 7.0831, 7.0829, 7.0828, 7.0827, 7.0827, 7.0833, 7.0832, 7.0833, 7.0833, 7.0831, 7.0838, 7.0845, 7.0842, 7.084, 7.0837, 7.0836, 7.0836, 7.0834, 7.0831, 7.0828, 7.0835, 7.0832, 7.0839, 7.0846, 7.0843, 7.0841, 7.0838, 7.0835, 7.0833, 7.0841, 7.0838, 7.0835, 7.0832, 7.0831, 7.0829, 7.083, 7.0827, 7.0824, 7.0821, 7.0819, 7.0816, 7.0814, 7.0822, 7.0819, 7.0807, 7.0804, 7.0812, 7.082, 7.082, 7.0827, 7.0826, 7.0823, 7.083, 7.0829, 7.0827, 7.0825, 7.0823, 7.0821, 7.082, 7.0818, 7.0826, 7.0823, 7.082, 7.0819, 7.0818, 7.0815, 7.0814, 7.0822, 7.0819, 7.0817, 7.0815, 7.0822, 7.0819, 7.0818, 7.0815, 7.0814, 7.0811, 7.0809, 7.0807, 7.0804, 7.0801, 7.0808, 7.0807, 7.0806, 7.0804, 7.0801, 7.0802, 7.0802, 7.0801, 7.0798, 7.0805, 7.0803, 7.08, 7.0808, 7.0806, 7.0802, 7.08, 7.0799, 7.0798, 7.0796, 7.0794, 7.0825, 7.0823, 7.082, 7.0818, 7.0817, 7.0824, 7.0821, 7.0819, 7.0817, 7.0814, 7.0812, 7.0853, 7.089, 7.0887, 7.0894, 7.0892, 7.0889, 7.0886, 7.0893, 7.0901, 7.0909, 7.091, 7.0901, 7.09, 7.0897, 7.0894, 7.0893, 7.089, 7.0889, 7.0887, 7.0887, 7.0876, 7.0884, 7.0883, 7.0882, 7.0879, 7.0887, 7.0895, 7.0884, 7.0883, 7.0881, 7.0889, 7.0887, 7.0886, 7.0883, 7.088, 7.0878, 7.0906, 7.0943, 7.096, 7.0958, 7.0974, 7.0971, 7.0977, 7.0992, 7.099, 7.0998, 7.1004, 7.1012, 7.1011, 7.101, 7.101, 7.0999, 7.0988, 7.0985, 7.0982, 7.0979, 7.0977, 7.0975, 7.0972, 7.0969, 7.0966, 7.0966, 7.0964, 7.0961, 7.0958, 7.0959, 7.0956, 7.0965, 7.0974, 7.0972, 7.0969, 7.0967, 7.0967, 7.0974, 7.0996, 7.0995, 7.1003, 7.1003, 7.1002, 7.1002, 7.1, 7.0997, 7.1005, 7.1003, 7.1, 7.0999, 7.1009, 7.1007, 7.1005, 7.1002, 7.1002, 7.0999, 7.0997, 7.0994, 7.0991, 7.0997, 7.0994, 7.1007, 7.1006, 7.1006, 7.1003, 7.1, 7.1013, 7.1011, 7.1008, 7.1006, 7.1003, 7.1002, 7.1009, 7.1008, 7.1005, 7.1004, 7.1004, 7.1003, 7.1011, 7.1011, 7.101, 7.1007, 7.1006, 7.1005, 7.1003, 7.103, 7.1027, 7.1025, 7.1024, 7.1023, 7.1022, 7.1024, 7.1032, 7.1049, 7.1046, 7.1053, 7.1051, 7.1056, 7.1053, 7.1051, 7.1059, 7.1057, 7.1056, 7.1054, 7.1051, 7.1059, 7.1057, 7.1065, 7.1072, 7.1069, 7.1066, 7.1074, 7.1077, 7.1076, 7.1073, 7.108, 7.1077, 7.1075, 7.1084, 7.1082, 7.1079, 7.1077, 7.1074, 7.1082, 7.1081, 7.111, 7.1108, 7.1098, 7.1097, 7.1104, 7.1112, 7.111, 7.1107, 7.1106, 7.1112, 7.1109, 7.1106, 7.1103, 7.111, 7.1107, 7.1106, 7.1113, 7.111, 7.1099, 7.1098, 7.1095, 7.1093, 7.1092, 7.109, 7.1087, 7.109, 7.1081, 7.107, 7.1067, 7.1074, 7.1071, 7.1078, 7.1087, 7.1095, 7.1097, 7.1096, 7.1093, 7.1091, 7.1088, 7.1087, 7.1085, 7.1085, 7.1089, 7.1087, 7.1095, 7.1093, 7.1092, 7.1089, 7.1087, 7.1087, 7.1085, 7.1083, 7.108, 7.1077, 7.1076, 7.1074, 7.108, 7.1078, 7.1075, 7.1073, 7.108, 7.1077, 7.1074, 7.1064, 7.1071, 7.1069, 7.1076, 7.1073, 7.108, 7.1077, 7.1076, 7.1073, 7.107, 7.1067, 7.1065, 7.1062, 7.1059, 7.1058, 7.1055, 7.1052, 7.1041, 7.103, 7.1038, 7.1035, 7.1032, 7.1031, 7.1028, 7.1026, 7.1023, 7.1022, 7.1021, 7.1019, 7.1026, 7.1026, 7.1032, 7.1039, 7.1048, 7.1045, 7.1044, 7.1051, 7.1049, 7.1066, 7.1064, 7.1055, 7.1062, 7.1083, 7.108, 7.1077, 7.1075, 7.1075, 7.1072, 7.1071, 7.1078, 7.1076, 7.1084, 7.1081, 7.108, 7.1078, 7.1076, 7.1073, 7.1081, 7.1078, 7.1084, 7.1114, 7.1121, 7.1119, 7.1116, 7.1116, 7.1115, 7.1112, 7.111, 7.1107, 7.1104, 7.1111, 7.1108, 7.1124, 7.1121, 7.1121, 7.1118, 7.1117, 7.1115, 7.1122, 7.1122, 7.1129, 7.1127, 7.1124, 7.1122, 7.1121, 7.1129, 7.1136, 7.1126, 7.1124, 7.1125, 7.1123, 7.1122, 7.1121, 7.113, 7.1137, 7.1135, 7.1135, 7.1134, 7.1132, 7.1141, 7.1139, 7.1128, 7.1129, 7.1128, 7.1136, 7.1143, 7.1142, 7.115, 7.1149, 7.1147, 7.1144, 7.1142, 7.114, 7.1146, 7.1153, 7.115, 7.1148, 7.1155, 7.1152, 7.1159, 7.1165, 7.1172, 7.1169, 7.1167, 7.1165, 7.1163, 7.116, 7.1158, 7.1157, 7.1155, 7.1152, 7.116, 7.1159, 7.1151, 7.1158, 7.1155, 7.1154, 7.1161, 7.1159, 7.116, 7.1167, 7.1164, 7.1164, 7.1163, 7.1163, 7.1161, 7.116, 7.115, 7.115, 7.1148, 7.1145, 7.1152, 7.115, 7.1149, 7.1149, 7.1147, 7.1145, 7.1143, 7.114, 7.1137, 7.1136, 7.1133, 7.113, 7.1128, 7.1125, 7.1124, 7.1121, 7.1128, 7.1126, 7.1125, 7.1115, 7.1112, 7.1111, 7.1108, 7.1106, 7.1103, 7.1101, 7.1112, 7.1129, 7.1136, 7.1125, 7.1125, 7.1122, 7.1129, 7.1127, 7.1125, 7.1125, 7.1131, 7.1129, 7.1126, 7.1125, 7.1125, 7.1123, 7.1121, 7.1118, 7.1107, 7.1105, 7.1103, 7.1101, 7.1099, 7.1089, 7.1078, 7.1085, 7.1084, 7.1082, 7.1089, 7.109, 7.1087, 7.1077, 7.1075, 7.1075, 7.1074, 7.1071, 7.1069, 7.1059, 7.1058, 7.1056, 7.1054, 7.1061, 7.1059, 7.1067, 7.1065, 7.1065, 7.1062, 7.106, 7.1058, 7.1058, 7.1056, 7.1054, 7.1053, 7.105, 7.1049, 7.1046, 7.1053, 7.1051, 7.1041, 7.1039, 7.1036, 7.1025, 7.1031, 7.1029, 7.1026, 7.1024, 7.1021, 7.1031, 7.1032, 7.1032, 7.103, 7.1031, 7.1029, 7.1027, 7.1025, 7.1023, 7.1031, 7.1028, 7.1027, 7.1035, 7.1043, 7.1051, 7.105, 7.105, 7.1048, 7.1046, 7.1044, 7.105, 7.1047, 7.1046, 7.1044, 7.1033, 7.1052, 7.105, 7.1048, 7.1047, 7.1036, 7.1069, 7.1069, 7.1077, 7.1078, 7.1075, 7.1072, 7.1079, 7.1078, 7.1078, 7.1076, 7.1075, 7.1073, 7.1078, 7.1078, 7.1077, 7.1076, 7.1066, 7.1064, 7.1071, 7.1069, 7.1066, 7.1065, 7.1062, 7.107, 7.1069, 7.1067, 7.1074, 7.1073, 7.108, 7.1079, 7.1086, 7.1084, 7.1083, 7.1082, 7.1088, 7.1086, 7.1083, 7.1099, 7.1096, 7.1095, 7.1103, 7.1104, 7.1111, 7.111, 7.1107, 7.1098, 7.1089, 7.1086, 7.1086, 7.1086, 7.1092, 7.1091, 7.1097, 7.1097, 7.1095, 7.1094, 7.1084, 7.1091, 7.109, 7.1089, 7.1086, 7.1085, 7.1083, 7.1082, 7.1081, 7.1078, 7.1075, 7.1075, 7.1064, 7.1062, 7.1061, 7.1068, 7.1084, 7.1083, 7.1074, 7.1066, 7.1055, 7.1054, 7.1061, 7.1059, 7.1068, 7.1076, 7.1074, 7.1072, 7.1069, 7.1067, 7.1065, 7.1062, 7.1062, 7.106, 7.1059, 7.105, 7.105, 7.1047, 7.1044, 7.1041, 7.1048, 7.1046, 7.1043, 7.104, 7.1037, 7.1034, 7.1054, 7.106, 7.1058, 7.1058, 7.1056, 7.1053, 7.105, 7.1092, 7.1089, 7.1086, 7.1093, 7.1091, 7.1098, 7.1097, 7.1095, 7.1096, 7.1093, 7.1091, 7.1098, 7.1089, 7.1088, 7.1094, 7.1093, 7.109, 7.1089, 7.1096, 7.1093, 7.109, 7.1097, 7.1096, 7.1094, 7.1091, 7.109, 7.1088, 7.1086, 7.1093, 7.112, 7.1118, 7.1117, 7.1114, 7.1121, 7.1129, 7.1129, 7.1128, 7.1125, 7.1123, 7.1123, 7.1122, 7.1121, 7.1137, 7.1137, 7.1136, 7.1135, 7.1143, 7.1155, 7.1162, 7.1159, 7.1159, 7.1156, 7.1153, 7.1151, 7.1158, 7.1165, 7.1171, 7.1171, 7.1168, 7.1176, 7.1174, 7.1172, 7.1169, 7.1166, 7.1164, 7.1155, 7.1153, 7.115, 7.1166, 7.1173, 7.1197, 7.1194, 7.1198, 7.1205, 7.1203, 7.1202, 7.12, 7.1197, 7.1196, 7.1204, 7.1204, 7.1194, 7.1192, 7.1192, 7.119, 7.1187, 7.1187, 7.1184, 7.12, 7.1199, 7.1197, 7.1195, 7.1196, 7.1203, 7.1202, 7.1201, 7.1198, 7.1195, 7.1195, 7.1192, 7.1189, 7.1188, 7.1186, 7.1185, 7.1182, 7.1179, 7.1176, 7.1173, 7.1171, 7.1173, 7.118, 7.1177, 7.1184, 7.119, 7.1187, 7.1195, 7.1194, 7.1195, 7.1194, 7.1184, 7.1175, 7.1166, 7.1166, 7.1163, 7.1163, 7.116, 7.1159, 7.116, 7.1158, 7.1155, 7.1162, 7.1159, 7.1158, 7.1156, 7.1155, 7.118, 7.1177, 7.1183, 7.1181, 7.118, 7.1179, 7.1176, 7.1174, 7.1172, 7.1169, 7.1175, 7.1173, 7.1174, 7.1174, 7.1172, 7.1181, 7.1189, 7.1187, 7.1186, 7.1193, 7.12, 7.1198, 7.1205, 7.1222, 7.1222, 7.122, 7.1217, 7.1216, 7.1223, 7.1221, 7.122, 7.1218, 7.1224, 7.1231, 7.1238, 7.1254, 7.1254, 7.126, 7.1259, 7.1266, 7.1264, 7.1262, 7.1259, 7.1265, 7.1272, 7.1286, 7.1294, 7.1291, 7.1289, 7.1286, 7.1284, 7.129, 7.128, 7.1277, 7.1275, 7.1272, 7.1261, 7.1267, 7.1273, 7.1279, 7.1278, 7.1275, 7.1273, 7.127, 7.1267, 7.1282, 7.128, 7.1287, 7.1294, 7.1291, 7.1288, 7.1287, 7.1284, 7.1281, 7.127, 7.1267, 7.1265, 7.1262, 7.1259, 7.1258, 7.1255, 7.1253, 7.125, 7.1248, 7.1246, 7.1244, 7.1243, 7.1242, 7.1239, 7.1237, 7.1243, 7.1241, 7.1239, 7.1239, 7.1238, 7.1237, 7.1237, 7.1234, 7.1225, 7.1222, 7.1221, 7.1221, 7.1219, 7.1218, 7.1215, 7.1213, 7.121, 7.1207, 7.1204, 7.121, 7.1211, 7.1209, 7.1206, 7.1204, 7.123, 7.1248, 7.1246, 7.1238, 7.1238, 7.1235, 7.1235, 7.1233, 7.123, 7.1227, 7.1225, 7.1223, 7.1222, 7.122, 7.1218, 7.1216, 7.1214, 7.1213, 7.1213, 7.1213, 7.1214, 7.1213, 7.1212, 7.1209, 7.1206, 7.1205, 7.1202, 7.1199, 7.1197, 7.1203, 7.1201, 7.1199, 7.1197, 7.1238, 7.1238, 7.1236, 7.1234, 7.1224, 7.1222, 7.122, 7.1217, 7.1225, 7.123, 7.1228, 7.1226, 7.1233, 7.1231, 7.1229, 7.1228, 7.1228, 7.1227, 7.1217, 7.1215, 7.1213, 7.1212, 7.121, 7.1208, 7.1214, 7.1214, 7.1229, 7.1229, 7.1244, 7.1243, 7.1241, 7.1239, 7.1239, 7.1238, 7.1246, 7.1252, 7.1251, 7.1249, 7.1249, 7.1247, 7.1246, 7.1244, 7.1243, 7.1242, 7.1293, 7.129, 7.129, 7.1288, 7.1278, 7.1276, 7.1274, 7.1273, 7.1272, 7.127, 7.1269, 7.1267, 7.1265, 7.1262, 7.1259, 7.125, 7.1248, 7.1246, 7.1252, 7.125, 7.1249, 7.1246, 7.1278, 7.1294, 7.1293, 7.1292, 7.1289, 7.128, 7.1279, 7.1277, 7.1284, 7.1282, 7.1281, 7.1279, 7.1278, 7.1275, 7.1274, 7.1271, 7.1269, 7.1269, 7.1275, 7.1273, 7.1271, 7.1269, 7.1276, 7.1274, 7.1272, 7.1269, 7.1267, 7.1266, 7.1264, 7.1263, 7.1261, 7.1261, 7.1259, 7.1265, 7.1262, 7.126, 7.126, 7.1259, 7.1265, 7.1262, 7.126, 7.1266, 7.1264, 7.1262, 7.126, 7.1259, 7.1259, 7.1258, 7.1257, 7.1255, 7.1253, 7.1275, 7.1274, 7.1274, 7.1274, 7.1272, 7.1269, 7.1259, 7.1256, 7.1256, 7.1253, 7.125, 7.1257, 7.1256, 7.1254, 7.1252, 7.1258, 7.1255, 7.1254, 7.1251, 7.1249, 7.1256, 7.1254, 7.1251, 7.1249, 7.1246, 7.1245, 7.1252, 7.1259, 7.1256, 7.1253, 7.1252, 7.1249, 7.1247, 7.1244, 7.1242, 7.124, 7.1237, 7.1238, 7.1235, 7.1232, 7.123, 7.1229, 7.1226, 7.1225, 7.1222, 7.122, 7.1218, 7.1215, 7.1214, 7.1211, 7.1208, 7.1206, 7.1211, 7.121, 7.1217, 7.1215, 7.1213, 7.1211, 7.1225, 7.1222, 7.122, 7.1218, 7.1215, 7.1213, 7.1211, 7.1217, 7.1214, 7.1211, 7.1217, 7.1214, 7.122, 7.122, 7.1217, 7.1216, 7.1222, 7.122, 7.1227, 7.1225, 7.1223, 7.1222, 7.122, 7.1218, 7.1224, 7.123, 7.1237, 7.1243, 7.1241, 7.1238, 7.1235, 7.1234, 7.1231, 7.1228, 7.1228, 7.1247, 7.1246, 7.1243, 7.124, 7.1238, 7.1236, 7.1235, 7.1233, 7.1231, 7.1229, 7.1235, 7.1232, 7.1229, 7.1235, 7.1241, 7.124, 7.124, 7.1239, 7.1238, 7.1245, 7.1243, 7.124, 7.124, 7.1238, 7.1244, 7.1241, 7.124, 7.1238, 7.1235, 7.1233, 7.1239, 7.1238, 7.1235, 7.1233, 7.1234, 7.1232, 7.1223, 7.1222, 7.122, 7.1221, 7.1219, 7.1217, 7.1223, 7.1221, 7.1218, 7.122, 7.1218, 7.1224, 7.1222, 7.1219, 7.1218, 7.1216, 7.1224, 7.123, 7.1228, 7.1234, 7.1232, 7.1231, 7.1228, 7.1226, 7.1225, 7.1223, 7.1221, 7.1218, 7.1224, 7.1223, 7.123, 7.1228, 7.1228, 7.1226, 7.1226, 7.1225, 7.1224, 7.1222, 7.1227, 7.1233, 7.1239, 7.1237, 7.1234, 7.1239, 7.1262, 7.1259, 7.1259, 7.1257, 7.1257, 7.1263, 7.1261, 7.1266, 7.1264, 7.1263, 7.1261, 7.126, 7.1258, 7.1264, 7.1263, 7.1262, 7.1261, 7.126, 7.126, 7.1258, 7.1264, 7.1262, 7.126, 7.1257, 7.1263, 7.1262, 7.126, 7.1266, 7.1263, 7.1269, 7.1269, 7.1275, 7.1281, 7.1279, 7.1278, 7.1276, 7.1281, 7.1286, 7.1285, 7.1282, 7.128, 7.1277, 7.1275, 7.1273, 7.1271, 7.1271, 7.1276, 7.1273, 7.1272, 7.127, 7.1267, 7.1264, 7.1261, 7.1259, 7.1265, 7.1263, 7.1269, 7.1266, 7.1264, 7.1262, 7.1268, 7.1269, 7.1274, 7.128, 7.1286, 7.1291, 7.1288, 7.1285, 7.1291, 7.1284, 7.1289, 7.1287, 7.1285, 7.1282, 7.128, 7.1286, 7.1283, 7.1297, 7.1304, 7.1309, 7.1306, 7.1305, 7.1302, 7.1316, 7.1313, 7.1311, 7.1324, 7.1323, 7.1337, 7.1335, 7.1341, 7.1339, 7.1338, 7.1344, 7.1343, 7.1343, 7.1342, 7.134, 7.1346, 7.1344, 7.1343, 7.134, 7.1347, 7.1346, 7.1361, 7.1353, 7.1351, 7.1349, 7.1347, 7.1347, 7.1347, 7.1345, 7.1344, 7.1342, 7.1365, 7.1363, 7.137, 7.1367, 7.1388, 7.1386, 7.1384, 7.1383, 7.1381, 7.1379, 7.1377, 7.1384, 7.1391, 7.139, 7.1396, 7.1406, 7.142, 7.1429, 7.1428, 7.1426, 7.1424, 7.1422, 7.1428, 7.1426, 7.1423, 7.1421, 7.1419, 7.1417, 7.1415, 7.1412, 7.141, 7.1408, 7.1414, 7.1413, 7.1411, 7.1409, 7.1415, 7.1414, 7.142, 7.1418, 7.1425, 7.1423, 7.1421, 7.1428, 7.1426, 7.1424, 7.1424, 7.1422, 7.1419, 7.1418, 7.1424, 7.1423, 7.1421, 7.1426, 7.1423, 7.142, 7.1425, 7.1431, 7.1428, 7.1425, 7.1423, 7.143, 7.1427, 7.1426, 7.1425, 7.1422, 7.142, 7.1417, 7.1415, 7.1412, 7.141, 7.1416, 7.1413, 7.1418, 7.1416, 7.1414, 7.1412, 7.1417, 7.1415, 7.1414, 7.1412, 7.141, 7.1408, 7.1405, 7.1411, 7.1417, 7.1423, 7.1421, 7.142, 7.1425, 7.1422, 7.1422, 7.142, 7.1419, 7.1416, 7.1422, 7.142, 7.1417, 7.1415, 7.1414, 7.1411, 7.141, 7.1409, 7.1414, 7.1412, 7.1411, 7.1417, 7.1422, 7.142, 7.1425, 7.143, 7.1427, 7.1424, 7.1421, 7.1419, 7.1424, 7.1421, 7.1421, 7.1422, 7.142, 7.1419, 7.1417, 7.1416, 7.1413, 7.1412, 7.1409, 7.1406, 7.1404, 7.1401, 7.1398, 7.1395, 7.1393, 7.1399, 7.1397, 7.1395, 7.1394, 7.1399, 7.1398, 7.1397, 7.1394, 7.1392, 7.1391, 7.1388, 7.1387, 7.1385, 7.1391, 7.1391, 7.1389, 7.1396, 7.1397, 7.1403, 7.1403, 7.1403, 7.14, 7.1398, 7.1397, 7.1396, 7.1396, 7.1396, 7.1393, 7.1392, 7.1391, 7.1396, 7.1393, 7.14, 7.1398, 7.1396, 7.1402, 7.1402, 7.14, 7.1399, 7.1397, 7.1394, 7.1392, 7.1398, 7.1395, 7.1404, 7.1403, 7.1401, 7.1407, 7.1405, 7.1411, 7.141, 7.1409, 7.1407, 7.1406, 7.1413, 7.1413, 7.1411, 7.1409, 7.1408, 7.1414, 7.1413, 7.1412, 7.1412, 7.1424, 7.143, 7.1435, 7.1434, 7.1432, 7.143, 7.143, 7.143, 7.1428, 7.1457, 7.1459], '192.168.122.112': [7.2057, 6.3115, 7.8788, 10.7917, 9.8209, 9.1824, 8.7552, 8.5912, 8.2145, 8.1502, 7.5152, 7.8037, 7.6663, 7.5439, 7.4464, 7.3309, 7.5193, 7.4431, 7.3423, 7.2529, 7.2863, 7.226, 7.6526, 7.6404, 7.7952, 8.6162, 8.5209, 8.4446, 8.3711, 8.285, 8.3726, 8.3167, 8.5698, 8.5016, 8.4313, 8.4965, 8.4139, 8.4875, 8.4151, 8.3548, 8.2801, 8.2132, 8.1485, 8.0957, 8.178, 8.1412, 8.227, 8.1717, 8.1213, 8.0656, 8.2316, 8.2879, 8.2334, 8.0955, 8.0482, 7.9992, 7.9581, 7.9156, 7.878, 7.8409, 7.8052, 7.8582, 7.8246, 7.7915, 7.7673, 7.7337, 7.7806, 7.8319, 7.7423, 7.7072, 7.7535, 7.725, 7.6946, 7.6609, 7.636, 7.6047, 7.5752, 7.4869, 7.4657, 7.4459, 7.421, 7.4002, 7.3853, 7.3626, 7.3454, 7.3263, 7.3059, 7.2895, 7.2686, 7.2464, 7.2266, 7.2095, 7.2475, 7.2271, 7.2626, 7.2517, 7.2362, 7.2173, 7.2004, 7.2068, 7.1937, 7.2309, 7.2669, 7.2518, 7.2866, 7.3238, 7.3157, 7.3046, 7.289, 7.2805, 7.2672, 7.2137, 7.1969, 7.1813, 7.1647, 7.1534, 7.1495, 7.1366, 7.1368, 7.122, 7.154, 7.1847, 7.1731, 7.158, 7.1461, 7.132, 7.124, 7.1166, 7.1093, 7.1033, 7.0915, 7.0429, 7.0391, 7.0295, 7.0183, 7.0085, 6.9983, 6.9885, 6.9778, 6.9353, 6.9264, 6.9993, 6.999, 6.9979, 7.0717, 7.0614, 7.0569, 7.0446, 7.071, 7.0623, 7.0583, 7.0832, 7.1107, 7.1068, 7.0977, 7.0978, 7.0873, 7.0792, 7.0789, 7.0769, 7.0699, 7.0656, 7.0589, 7.0491, 7.0432, 7.0685, 7.0669, 7.0642, 7.064, 7.0854, 7.0757, 7.0658, 7.032, 7.0229, 7.0128, 7.0035, 6.9964, 6.9872, 7.0777, 7.0708, 7.0695, 7.0612, 7.0518, 7.0492, 7.0417, 7.0639, 7.0549, 7.0453, 7.0407, 7.0359, 7.033, 7.0248, 7.0161, 7.0118, 7.0067, 7.0274, 7.0246, 7.0169, 7.0376, 7.0583, 7.0505, 7.0434, 7.0642, 7.0579, 7.0508, 7.0484, 7.0665, 7.0852, 7.0784, 7.0722, 7.0644, 7.191, 7.1862, 7.1778, 7.1702, 7.1654, 7.1833, 7.1773, 7.1724, 7.1698, 7.1641, 7.1566, 7.1517, 7.1227, 7.1416, 7.1342, 7.1318, 7.1262, 7.124, 7.097, 7.1145, 7.1301, 7.1233, 7.1161, 7.1317, 7.148, 7.1435, 7.1363, 7.1324, 7.1277, 7.1272, 7.1433, 7.1801, 7.1749, 7.1699, 7.1712, 7.1754, 7.1756, 7.1786, 7.194, 7.2104, 7.2041, 7.1974, 7.1934, 7.1908, 7.1872, 7.1842, 7.1847, 7.1814, 7.1768, 7.1703, 7.1685, 7.1668, 7.1629, 7.1567, 7.1726, 7.1689, 7.1685, 7.1632, 7.161, 7.1586, 7.1747, 7.1708, 7.1659, 7.1636, 7.1576, 7.1722, 7.1674, 7.167, 7.1603, 7.1553, 7.1505, 7.1448, 7.1446, 7.1236, 7.1372, 7.151, 7.1487, 7.1622, 7.1585, 7.1554, 7.1525, 7.1466, 7.1418, 7.1419, 7.1419, 7.1357, 7.1314, 7.1446, 7.1578, 7.1523, 7.1466, 7.1961, 7.1901, 7.1972, 7.1933, 7.1881, 7.184, 7.1994, 7.215, 7.2108, 7.1897, 7.2057, 7.2208, 7.2144, 7.2243, 7.2179, 7.2305, 7.2257, 7.2217, 7.251, 7.2516, 7.2621, 7.2559, 7.3205, 7.3177, 7.3128, 7.3084, 7.3028, 7.3134, 7.3074, 7.3088, 7.305, 7.2992, 7.2953, 7.3075, 7.305, 7.2995, 7.2935, 7.2876, 7.2982, 7.2927, 7.3036, 7.3002, 7.2941, 7.2884, 7.2834, 7.2775, 7.2735, 7.2689, 7.2796, 7.2759, 7.2709, 7.2674, 7.2643, 7.2586, 7.2557, 7.2523, 7.2469, 7.2415, 7.2362, 7.2493, 7.2509, 7.2517, 7.2633, 7.2587, 7.2538, 7.2506, 7.2463, 7.2418, 7.2462, 7.2443, 7.2273, 7.2376, 7.2336, 7.2285, 7.2241, 7.2203, 7.2159, 7.2162, 7.1993, 7.1967, 7.1916, 7.1897, 7.1867, 7.1831, 7.1793, 7.1829, 7.1797, 7.1754, 7.2004, 7.1975, 7.1959, 7.1926, 7.1892, 7.1861, 7.1821, 7.1945, 7.1901, 7.1895, 7.1846, 7.194, 7.19, 7.1883, 7.2104, 7.2201, 7.2163, 7.2251, 7.2227, 7.2308, 7.2276, 7.24, 7.2368, 7.2454, 7.271, 7.268, 7.2661, 7.2755, 7.2709, 7.2666, 7.2632, 7.2589, 7.2542, 7.2515, 7.2488, 7.2448, 7.2536, 7.2515, 7.248, 7.2448, 7.2455, 7.2552, 7.2627, 7.2606, 7.2736, 7.2614, 7.2575, 7.2555, 7.2413, 7.2558, 7.264, 7.2615, 7.258, 7.2654, 7.275, 7.2724, 7.2803, 7.2783, 7.2821, 7.2903, 7.2882, 7.2859, 7.2947, 7.2933, 7.2907, 7.2999, 7.2955, 7.3159, 7.3154, 7.3112, 7.3084, 7.3056, 7.3027, 7.2985, 7.2986, 7.2945, 7.3027, 7.3331, 7.329, 7.3249, 7.3327, 7.3192, 7.3268, 7.3343, 7.3304, 7.329, 7.3253, 7.3212, 7.3171, 7.3145, 7.314, 7.3101, 7.3085, 7.3074, 7.3059, 7.3037, 7.3005, 7.2966, 7.294, 7.3022, 7.3144, 7.3104, 7.3064, 7.3151, 7.3155, 7.3146, 7.3108, 7.3069, 7.3152, 7.3121, 7.3125, 7.3097, 7.3172, 7.3251, 7.3235, 7.3321, 7.3434, 7.3398, 7.3376, 7.3339, 7.3333, 7.3207, 7.3183, 7.3179, 7.316, 7.3138, 7.3134, 7.3112, 7.3099, 7.3074, 7.305, 7.3015, 7.3033, 7.3026, 7.2989, 7.2957, 7.2837, 7.28, 7.278, 7.2746, 7.2723, 7.2721, 7.2693, 7.2667, 7.2731, 7.2817, 7.2781, 7.2787, 7.2769, 7.2738, 7.2704, 7.2669, 7.2635, 7.2619, 7.2585, 7.2552, 7.2533, 7.2531, 7.251, 7.2486, 7.2466, 7.2445, 7.235, 7.2332, 7.2297, 7.2277, 7.2259, 7.2225, 7.2215, 7.2207, 7.2196, 7.2162, 7.2236, 7.2211, 7.2179, 7.2171, 7.2144, 7.2115, 7.2092, 7.2201, 7.2171, 7.2144, 7.2126, 7.2029, 7.2229, 7.2201, 7.2421, 7.2595, 7.2582, 7.2573, 7.2458, 7.2518, 7.2486, 7.2468, 7.2444, 7.2416, 7.2411, 7.2403, 7.247, 7.2444, 7.2426, 7.2402, 7.2376, 7.2357, 7.2431, 7.2397, 7.2456, 7.2431, 7.2403, 7.2467, 7.2446, 7.2433, 7.241, 7.2472, 7.2538, 7.2508, 7.2499, 7.2519, 7.2674, 7.3008, 7.2976, 7.3035, 7.3003, 7.2979, 7.297, 7.2959, 7.2932, 7.2906, 7.2877, 7.2884, 7.2871, 7.2848, 7.2904, 7.2881, 7.285, 7.2847, 7.2915, 7.29, 7.2873, 7.2859, 7.2837, 7.2812, 7.2786, 7.2761, 7.2756, 7.2749, 7.2718, 7.269, 7.2666, 7.265, 7.2627, 7.2597, 7.2684, 7.2668, 7.2785, 7.277, 7.2742, 7.272, 7.2705, 7.2681, 7.2654, 7.2633, 7.2616, 7.2674, 7.2747, 7.2737, 7.2719, 7.2693, 7.2675, 7.2645, 7.2621, 7.2599, 7.257, 7.2554, 7.2619, 7.2592, 7.2649, 7.2622, 7.2602, 7.2572, 7.2547, 7.2524, 7.2593, 7.2585, 7.261, 7.2585, 7.2556, 7.2537, 7.2516, 7.2501, 7.2501, 7.2555, 7.2552, 7.2529, 7.2503, 7.2477, 7.2454, 7.2511, 7.2484, 7.2544, 7.2518, 7.2494, 7.2481, 7.2474, 7.2452, 7.2432, 7.2486, 7.2469, 7.2386, 7.2357, 7.234, 7.2399, 7.2559, 7.2615, 7.2588, 7.2562, 7.256, 7.2539, 7.2514, 7.2566, 7.2545, 7.2535, 7.2611, 7.259, 7.2579, 7.2639, 7.2624, 7.2604, 7.2664, 7.2636, 7.2617, 7.2609, 7.2587, 7.2576, 7.2635, 7.2626, 7.2608, 7.2588, 7.2565, 7.2616, 7.2668, 7.2644, 7.2621, 7.2607, 7.2584, 7.2564, 7.2543, 7.2598, 7.2579, 7.2557, 7.2544, 7.2522, 7.2514, 7.2564, 7.2616, 7.2605, 7.2592, 7.2649, 7.2874, 7.2948, 7.2923, 7.2905, 7.2891, 7.2867, 7.2858, 7.284, 7.282, 7.2805, 7.2787, 7.2835, 7.2814, 7.2872, 7.2852, 7.2842, 7.2816, 7.2807, 7.2781, 7.2755, 7.2809, 7.2783, 7.2757, 7.2734, 7.2782, 7.276, 7.2739, 7.273, 7.2705, 7.2832, 7.2828, 7.2806, 7.2785, 7.2772, 7.2759, 7.2738, 7.2716, 7.2694, 7.2674, 7.2651, 7.2571, 7.2547, 7.259, 7.2595, 7.2522, 7.2506, 7.2493, 7.2482, 7.247, 7.2446, 7.2427, 7.2411, 7.2397, 7.2388, 7.2385, 7.2442, 7.2427, 7.2413, 7.239, 7.238, 7.2372, 7.2349, 7.2331, 7.2308, 7.229, 7.2265, 7.2309, 7.2353, 7.2393, 7.2372, 7.2349, 7.2328, 7.2305, 7.2286, 7.2278, 7.2263, 7.2252, 7.2232, 7.2282, 7.2284, 7.2262, 7.2246, 7.2233, 7.2229, 7.2207, 7.2196, 7.2181, 7.2162, 7.2143, 7.2254, 7.2233, 7.2221, 7.2223, 7.2231, 7.2222, 7.2209, 7.2196, 7.2185, 7.2172, 7.2153, 7.22, 7.2246, 7.223, 7.2218, 7.2195, 7.2181, 7.2162, 7.2142, 7.213, 7.2118, 7.2172, 7.2157, 7.2202, 7.2131, 7.2113, 7.2094, 7.2077, 7.2002, 7.1982, 7.1965, 7.1944, 7.1926, 7.191, 7.19, 7.1882, 7.1868, 7.1854, 7.1846, 7.1885, 7.1873, 7.1852, 7.184, 7.185, 7.1847, 7.1829, 7.1812, 7.1791, 7.1836, 7.1818, 7.1861, 7.1854, 7.1896, 7.1941, 7.1925, 7.191, 7.1953, 7.1936, 7.1916, 7.1955, 7.1993, 7.2029, 7.2012, 7.2006, 7.1991, 7.1988, 7.1978, 7.1971, 7.195, 7.1936, 7.193, 7.1926, 7.1909, 7.1961, 7.1951, 7.1933, 7.1916, 7.1965, 7.1963, 7.2012, 7.1993, 7.2036, 7.2078, 7.2061, 7.2043, 7.2024, 7.2063, 7.2051, 7.2169, 7.2155, 7.2141, 7.2123, 7.2105, 7.209, 7.208, 7.2069, 7.2051, 7.204, 7.203, 7.2019, 7.1952, 7.1987, 7.1968, 7.1952, 7.1939, 7.1935, 7.1933, 7.1913, 7.1911, 7.1899, 7.1885, 7.1882, 7.1884, 7.1866, 7.1857, 7.184, 7.2199, 7.219, 7.2236, 7.2286, 7.227, 7.2256, 7.2252, 7.219, 7.2174, 7.2226, 7.2274, 7.2261, 7.2246, 7.2228, 7.2224, 7.2212, 7.2205, 7.2188, 7.2172, 7.2157, 7.215, 7.2087, 7.2081, 7.2075, 7.2057, 7.21, 7.2102, 7.2103, 7.2093, 7.2075, 7.2057, 7.2094, 7.2081, 7.2066, 7.2105, 7.2094, 7.2034, 7.2072, 7.2063, 7.205, 7.2043, 7.2026, 7.2021, 7.202, 7.201, 7.1996, 7.2037, 7.2023, 7.2016, 7.1998, 7.1988, 7.1977, 7.1975, 7.1978, 7.196, 7.1951, 7.1992, 7.1994, 7.2033, 7.2021, 7.2003, 7.1988, 7.1971, 7.1962, 7.1913, 7.1901, 7.1923, 7.1905, 7.1887, 7.187, 7.1857, 7.1899, 7.1944, 7.1932, 7.1915, 7.1914, 7.1964, 7.2019, 7.2005, 7.1991, 7.1976, 7.196, 7.1993, 7.2029, 7.2015, 7.1957, 7.1949, 7.193, 7.1964, 7.1955, 7.1946, 7.1943, 7.1934, 7.1872, 7.1812, 7.1795, 7.1821, 7.1806, 7.1805, 7.1792, 7.1832, 7.1867, 7.1849, 7.1839, 7.1821, 7.1928, 7.191, 7.1893, 7.188, 7.1868, 7.1857, 7.1842, 7.1832, 7.1815, 7.1802, 7.1791, 7.1828, 7.1817, 7.1806, 7.1789, 7.1772, 7.1761, 7.18, 7.1811, 7.1794, 7.1786, 7.177, 7.1753, 7.1789, 7.1777, 7.1761, 7.1759, 7.1748, 7.1733, 7.1769, 7.1804, 7.1789, 7.1773, 7.1762, 7.1797, 7.1781, 7.1819, 7.1807, 7.175, 7.1698, 7.1686, 7.168, 7.1717, 7.1756, 7.1748, 7.1731, 7.1714, 7.1743, 7.1734, 7.1717, 7.1711, 7.1656, 7.1644, 7.1627, 7.1621, 7.161, 7.1599, 7.1589, 7.1625, 7.1612, 7.1744, 7.1738, 7.1726, 7.1712, 7.1713, 7.1712, 7.1704, 7.1738, 7.1724, 7.1713, 7.1744, 7.173, 7.1761, 7.1793, 7.1777, 7.1761, 7.179, 7.1735, 7.1729, 7.1722, 7.1706, 7.1739, 7.1726, 7.1711, 7.1696, 7.1682, 7.1673, 7.1667, 7.1695, 7.1686, 7.1671, 7.1661, 7.1652, 7.1649, 7.1639, 7.1632, 7.1626, 7.1613, 7.1613, 7.1599, 7.1589, 7.1576, 7.1607, 7.1593, 7.1579, 7.1609, 7.1639, 7.163, 7.1616, 7.1601, 7.1587, 7.1572, 7.1606, 7.1596, 7.1592, 7.1585, 7.1573, 7.1521, 7.1519, 7.1552, 7.1545, 7.1538, 7.1615, 7.1646, 7.163, 7.1619, 7.1605, 7.1728, 7.1713, 7.1757, 7.1749, 7.1701, 7.1692, 7.1688, 7.1678, 7.1666, 7.1672, 7.1662, 7.1726, 7.1721, 7.1711, 7.17, 7.1684, 7.1721, 7.1719, 7.1799, 7.1787, 7.1779, 7.1776, 7.1765, 7.1751, 7.1742, 7.1732, 7.1723, 7.1717, 7.1708, 7.1653, 7.1605, 7.1555, 7.1542, 7.169, 7.172, 7.1713, 7.1698, 7.1739, 7.1735, 7.1722, 7.1706, 7.1731, 7.1716, 7.1704, 7.1692, 7.1726, 7.1712, 7.1701, 7.1731, 7.1718, 7.1717, 7.1749, 7.1738, 7.1725, 7.1676, 7.1665, 7.1656, 7.1609, 7.1598, 7.163, 7.1663, 7.1655, 7.165, 7.1677, 7.1666, 7.1653, 7.1606, 7.1637, 7.1667, 7.1661, 7.1655, 7.1656, 7.165, 7.1637, 7.1624, 7.1577, 7.1617, 7.1609, 7.1594, 7.158, 7.1611, 7.156, 7.1512, 7.1552, 7.1548, 7.1539, 7.1539, 7.1488, 7.1437, 7.1445, 7.143, 7.1422, 7.1415, 7.1402, 7.1394, 7.1387, 7.1373, 7.1367, 7.1396, 7.1426, 7.1423, 7.141, 7.1397, 7.1385, 7.1381, 7.1558, 7.1586, 7.1576, 7.1605, 7.1597, 7.1584, 7.1575, 7.1616, 7.1658, 7.1656, 7.1643, 7.1629, 7.1675, 7.1662, 7.1655, 7.1664, 7.1742, 7.1776, 7.173, 7.1717, 7.1706, 7.1733, 7.1764, 7.1755, 7.1749, 7.1743, 7.1737, 7.181, 7.1801, 7.1789, 7.1778, 7.181, 7.1762, 7.1748, 7.1735, 7.1772, 7.1765, 7.1761, 7.1747, 7.1738, 7.1726, 7.1754, 7.1746, 7.1699, 7.1693, 7.1685, 7.1672, 7.1678, 7.1673, 7.166, 7.1654, 7.165, 7.1637, 7.1626, 7.1622, 7.1705, 7.171, 7.1697, 7.1688, 7.1715, 7.1703, 7.1701, 7.1687, 7.1673, 7.1701, 7.1688, 7.1675, 7.1662, 7.1615, 7.1567, 7.1525, 7.1481, 7.1508, 7.1537, 7.1527, 7.1516, 7.1509, 7.1503, 7.1491, 7.1483, 7.1475, 7.1427, 7.142, 7.1418, 7.1407, 7.1398, 7.1389, 7.1383, 7.1378, 7.1407, 7.1394, 7.138, 7.1409, 7.1397, 7.1353, 7.1419, 7.1415, 7.1408, 7.1401, 7.1426, 7.1413, 7.1419, 7.1408, 7.1434, 7.1426, 7.1419, 7.1411, 7.1405, 7.1404, 7.1391, 7.1387, 7.1375, 7.1365, 7.1352, 7.134, 7.1367, 7.1361, 7.1427, 7.1453, 7.1441, 7.1429, 7.1453, 7.1483, 7.1513, 7.15, 7.1494, 7.1482, 7.147, 7.1464, 7.1459, 7.1446, 7.1436, 7.1427, 7.1419, 7.1412, 7.1405, 7.1399, 7.1394, 7.1387, 7.1384, 7.1372, 7.1362, 7.143, 7.1392, 7.1421, 7.1414, 7.1521, 7.1509, 7.152, 7.1516, 7.157, 7.1571, 7.1565, 7.1628, 7.1629, 7.1588, 7.1616, 7.1683, 7.1709, 7.1698, 7.1688, 7.168, 7.1712, 7.1704, 7.1701, 7.169, 7.1686, 7.1675, 7.1666, 7.1654, 7.1681, 7.168, 7.164, 7.164, 7.1632, 7.162, 7.1647, 7.1645, 7.1637, 7.1633, 7.1628, 7.1657, 7.1684, 7.1679, 7.1668, 7.1658, 7.1652, 7.164, 7.1669, 7.1659, 7.1682, 7.1674, 7.1668, 7.166, 7.1649, 7.1638, 7.1627, 7.1617, 7.161, 7.1599, 7.1587, 7.1577, 7.1567, 7.1559, 7.1585, 7.1574, 7.1564, 7.1558, 7.1547, 7.1542, 7.1569, 7.1563, 7.1554, 7.1552, 7.1539, 7.1531, 7.1554, 7.1543, 7.1531, 7.1523, 7.1516, 7.1504, 7.1493, 7.1517, 7.1513, 7.1538, 7.1557, 7.1549, 7.1541, 7.1531, 7.1524, 7.1518, 7.151, 7.155, 7.1542, 7.1534, 7.1526, 7.1544, 7.1535, 7.1562, 7.1614, 7.1607, 7.1633, 7.1625, 7.1651, 7.1639, 7.1636, 7.1628, 7.1653, 7.1642, 7.1668, 7.1693, 7.1686, 7.1712, 7.1704, 7.1692, 7.168, 7.1674, 7.1663, 7.1661, 7.1685, 7.1686, 7.168, 7.1703, 7.1691, 7.1684, 7.1679, 7.1677, 7.1671, 7.1659, 7.1648, 7.164, 7.1635, 7.1641, 7.1636, 7.1624, 7.1618, 7.1608, 7.1632, 7.1672, 7.1695, 7.1696, 7.1689, 7.1682, 7.1706, 7.1729, 7.1719, 7.171, 7.1706, 7.1737, 7.1731, 7.1725, 7.1715, 7.1711, 7.1708, 7.1732, 7.1758, 7.1717, 7.1712, 7.1702, 7.1697, 7.1719, 7.1707, 7.1762, 7.1751, 7.1744, 7.1703, 7.1726, 7.1721, 7.1746, 7.1735, 7.1725, 7.1719, 7.1711, 7.171, 7.1707, 7.1701, 7.169, 7.1718, 7.1707, 7.1703, 7.1729, 7.1718, 7.1741, 7.1731, 7.1722, 7.1744, 7.1743, 7.1733, 7.1762, 7.1752, 7.1755, 7.1755, 7.1744, 7.1737, 7.1761, 7.1753, 7.1751, 7.1777, 7.1802, 7.1796, 7.1787, 7.1779, 7.177, 7.1765, 7.1763, 7.176, 7.1785, 7.1776, 7.1767, 7.1836, 7.183, 7.1825, 7.1816, 7.1812, 7.1804, 7.1795, 7.179, 7.178, 7.1805, 7.1834, 7.1856, 7.1849, 7.1839, 7.1863, 7.1852, 7.1847, 7.1836, 7.1825, 7.1824, 7.1849, 7.184, 7.1833, 7.1825, 7.1817, 7.1808, 7.1829, 7.185, 7.184, 7.1829, 7.1818, 7.1841, 7.1831, 7.1823, 7.1846, 7.1868, 7.1858, 7.1884, 7.1873, 7.1863, 7.1861, 7.185, 7.1843, 7.1833, 7.183, 7.182, 7.1785, 7.1806, 7.1803, 7.1793, 7.1787, 7.1747, 7.174, 7.1738, 7.1729, 7.1734, 7.1727, 7.1721, 7.1714, 7.1708, 7.1707, 7.1696, 7.1685, 7.1645, 7.1639, 7.1633, 7.1656, 7.1649, 7.1641, 7.1634, 7.1659, 7.1652, 7.1651, 7.1646, 7.1643, 7.1636, 7.1635, 7.1628, 7.1622, 7.1615, 7.1608, 7.1601, 7.1594, 7.1587, 7.161, 7.1603, 7.1595, 7.1586, 7.1578, 7.157, 7.1532, 7.1525, 7.1548, 7.1541, 7.1534, 7.1527, 7.1519, 7.1513, 7.1543, 7.1543, 7.1533, 7.1558, 7.1524, 7.152, 7.1511, 7.1503, 7.1523, 7.1516, 7.1538, 7.153, 7.1528, 7.1521, 7.1514, 7.1512, 7.1502, 7.1526, 7.1518, 7.1513, 7.1506, 7.1561, 7.1566, 7.1557, 7.1552, 7.1587, 7.158, 7.1543, 7.1537, 7.1526, 7.1519, 7.1513, 7.1504, 7.1467, 7.1464, 7.1488, 7.148, 7.1471, 7.1463, 7.1458, 7.1479, 7.1481, 7.148, 7.1481, 7.1505, 7.1496, 7.1488, 7.1477, 7.147, 7.1464, 7.1463, 7.1461, 7.1454, 7.1446, 7.1437, 7.1458, 7.1451, 7.1446, 7.1439, 7.1434, 7.1425, 7.1416, 7.144, 7.143, 7.1422, 7.1419, 7.1415, 7.1468, 7.1462, 7.1454, 7.1444, 7.1438, 7.1429, 7.145, 7.1446, 7.1437, 7.1428, 7.1447, 7.1476, 7.1469, 7.1461, 7.1518, 7.1511, 7.1502, 7.1523, 7.1513, 7.1511, 7.1534, 7.1527, 7.1519, 7.1541, 7.1534, 7.1557, 7.1552, 7.1543, 7.1535, 7.1533, 7.1525, 7.1545, 7.1568, 7.1559, 7.1549, 7.1539, 7.1534, 7.1532, 7.153, 7.1522, 7.1514, 7.1507, 7.1506, 7.1497, 7.1522, 7.1519, 7.1521, 7.1515, 7.1508, 7.1501, 7.1499, 7.1497, 7.1487, 7.1479, 7.1469, 7.1463, 7.1453, 7.1447, 7.144, 7.1462, 7.1453, 7.1449, 7.1442, 7.1465, 7.1487, 7.1482, 7.1474, 7.1464, 7.1486, 7.1489, 7.1479, 7.147, 7.1462, 7.1459, 7.1479, 7.1471, 7.1463, 7.1456, 7.1452, 7.1474, 7.1465, 7.1461, 7.1453, 7.1444, 7.1434, 7.1454, 7.1452, 7.1444, 7.1462, 7.1481, 7.1471, 7.149, 7.1512, 7.1506, 7.1497, 7.149, 7.1483, 7.1449, 7.1447, 7.147, 7.1464, 7.1456, 7.1448, 7.147, 7.1462, 7.1456, 7.1452, 7.1446, 7.1471, 7.1461, 7.1455, 7.1454, 7.1446, 7.1441, 7.1444, 7.1414, 7.1433, 7.1427, 7.1423, 7.1421, 7.1443, 7.1437, 7.1433, 7.143, 7.1424, 7.1446, 7.1443, 7.1435, 7.1426, 7.1417, 7.141, 7.1405, 7.1396, 7.1397, 7.1395, 7.1394, 7.1412, 7.1405, 7.14, 7.1393, 7.1362, 7.1331, 7.1299, 7.1292, 7.1331, 7.1322, 7.1319, 7.1313, 7.1312, 7.1333, 7.1331, 7.1325, 7.1323, 7.1346, 7.1344, 7.1341, 7.134, 7.1332, 7.1326, 7.1327, 7.1325, 7.1318, 7.1317, 7.1311, 7.1304, 7.1306, 7.1304, 7.1323, 7.1342, 7.1345, 7.1338, 7.136, 7.1354, 7.1345, 7.1343, 7.1337, 7.1357, 7.1352, 7.1352, 7.1345, 7.134, 7.1359, 7.1356, 7.1349, 7.1346, 7.1363, 7.136, 7.138, 7.1401, 7.14, 7.1392, 7.1384, 7.1376, 7.1371, 7.1365, 7.1333, 7.1332, 7.1327, 7.1326, 7.1318, 7.1313, 7.131, 7.1303, 7.1298, 7.1293, 7.1285, 7.128, 7.1303, 7.1295, 7.1293, 7.1284, 7.128, 7.1277, 7.1278, 7.127, 7.127, 7.1292, 7.1315, 7.1312, 7.1317, 7.1311, 7.1307, 7.1301, 7.1293, 7.1286, 7.1282, 7.1249, 7.1277, 7.1295, 7.1288, 7.1289, 7.1284, 7.1333, 7.1326, 7.1321, 7.1313, 7.1305, 7.1298, 7.1292, 7.1259, 7.1254, 7.125, 7.1244, 7.1288, 7.1283, 7.1277, 7.1272, 7.1266, 7.1259, 7.1281, 7.1299, 7.1293, 7.1286, 7.1277, 7.1269, 7.1263, 7.1281, 7.1275, 7.1292, 7.1312, 7.1305, 7.1297, 7.1289, 7.1281, 7.1274, 7.1267, 7.126, 7.1253, 7.1247, 7.124, 7.1238, 7.1233, 7.1225, 7.122, 7.1212, 7.123, 7.1224, 7.1221, 7.1213, 7.1232, 7.1225, 7.1217, 7.1211, 7.1208, 7.1205, 7.1197, 7.1189, 7.1181, 7.115, 7.112, 7.1112, 7.1083, 7.1079, 7.1075, 7.1066, 7.1067, 7.1064, 7.1061, 7.1056, 7.1048, 7.1065, 7.106, 7.103, 7.1024, 7.1019, 7.0988, 7.0979, 7.0981, 7.1001, 7.0997, 7.0998, 7.0991, 7.0983, 7.0975, 7.0992, 7.0988, 7.0983, 7.098, 7.0974, 7.0973, 7.0948, 7.0946, 7.0941, 7.0959, 7.0956, 7.0951, 7.0949, 7.0943, 7.0961, 7.0953, 7.0947, 7.0944, 7.0938, 7.093, 7.0958, 7.0954, 7.0977, 7.0971, 7.0967, 7.0965, 7.0982, 7.1002, 7.0994, 7.0988, 7.0985, 7.0977, 7.095, 7.095, 7.0995, 7.1, 7.0992, 7.0986, 7.0979, 7.0973, 7.0977, 7.0969, 7.0966, 7.0966, 7.0966, 7.0959, 7.0951, 7.0924, 7.0916, 7.091, 7.0907, 7.0901, 7.0902, 7.0897, 7.0889, 7.0889, 7.0883, 7.0951, 7.0972, 7.0968, 7.0987, 7.1004, 7.0996, 7.0995, 7.0989, 7.0985, 7.1054, 7.1047, 7.1041, 7.1033, 7.1056, 7.1081, 7.1074, 7.1067, 7.106, 7.1056, 7.1051, 7.105, 7.1048, 7.1041, 7.1111, 7.1105, 7.1101, 7.1095, 7.112, 7.1113, 7.1107, 7.1112, 7.1105, 7.1127, 7.1121, 7.1121, 7.1113, 7.1107, 7.11, 7.1119, 7.1116, 7.1135, 7.1129, 7.1124, 7.1143, 7.1141, 7.1161, 7.1156, 7.115, 7.1143, 7.1139, 7.1132, 7.1128, 7.112, 7.1116, 7.111, 7.1106, 7.1099, 7.107, 7.1063, 7.1058, 7.1058, 7.1074, 7.1092, 7.1084, 7.108, 7.1097, 7.1094, 7.1092, 7.1086, 7.1086, 7.1083, 7.1076, 7.1068, 7.1075, 7.1092, 7.1109, 7.1109, 7.1104, 7.1102, 7.1096, 7.1094, 7.1088, 7.108, 7.1098, 7.109, 7.1083, 7.1075, 7.1068, 7.1061, 7.1053, 7.1025, 7.1018, 7.1034, 7.103, 7.1025, 7.1018, 7.101, 7.103, 7.1023, 7.1017, 7.1013, 7.1008, 7.1001, 7.0993, 7.0986, 7.0978, 7.0971, 7.0968, 7.0961, 7.0955, 7.095, 7.0949, 7.0942, 7.0945, 7.0942, 7.0934, 7.093, 7.0926, 7.0923, 7.0915, 7.0888, 7.0863, 7.0856, 7.0875, 7.0868, 7.0863, 7.0858, 7.0859, 7.0852, 7.0869, 7.0862, 7.0912, 7.0928, 7.0925, 7.0944, 7.0937, 7.093, 7.0934, 7.093, 7.0923, 7.0937, 7.0953, 7.0948, 7.0944, 7.096, 7.0954, 7.0971, 7.0967, 7.0959, 7.0976, 7.0973, 7.0969, 7.0963, 7.0958, 7.0953, 7.0946, 7.0941, 7.0959, 7.0938, 7.0957, 7.0985, 7.1012, 7.1005, 7.1003, 7.0997, 7.0999, 7.1019, 7.1024, 7.1016, 7.1016, 7.101, 7.1004, 7.0997, 7.0995, 7.0989, 7.1005, 7.0999, 7.1017, 7.1011, 7.1004, 7.1004, 7.1001, 7.0999, 7.0997, 7.1013, 7.1031, 7.1026, 7.1023, 7.1, 7.0993, 7.0986, 7.0984, 7.0979, 7.098, 7.0984, 7.0981, 7.0976, 7.0971, 7.0965, 7.0962, 7.0955, 7.0951, 7.0944, 7.0936, 7.0928, 7.0944, 7.0963, 7.0961, 7.0977, 7.0972, 7.0965, 7.0958, 7.0977, 7.0975, 7.0971, 7.0944, 7.0939, 7.0932, 7.0924, 7.0919, 7.0914, 7.0941, 7.0916, 7.089, 7.0883, 7.0878, 7.0896, 7.0893, 7.0911, 7.0906, 7.0922, 7.0916, 7.091, 7.0906, 7.0901, 7.0894, 7.0911, 7.0914, 7.0929, 7.0928, 7.0902, 7.0895, 7.0892, 7.0889, 7.0883, 7.0898, 7.0893, 7.0866, 7.0859, 7.0857, 7.0852, 7.0868, 7.0885, 7.09, 7.0895, 7.0889, 7.0885, 7.0879, 7.0875, 7.087, 7.0862, 7.0855, 7.0852, 7.0846, 7.0842, 7.0818, 7.0793, 7.0786, 7.078, 7.078, 7.0775, 7.0772, 7.0792, 7.0809, 7.0802, 7.0805, 7.08, 7.0794, 7.0769, 7.0762, 7.0764, 7.0757, 7.0773, 7.0769, 7.0766, 7.076, 7.0739, 7.0733, 7.073, 7.073, 7.0725, 7.0721, 7.0714, 7.0692, 7.069, 7.0687, 7.0703, 7.0696, 7.0689, 7.0685, 7.0681, 7.0678, 7.0673, 7.0673, 7.067, 7.0666, 7.0659, 7.0675, 7.0668, 7.0662, 7.0656, 7.0633, 7.0628, 7.0626, 7.0623, 7.0617, 7.0617, 7.0611, 7.0607, 7.06, 7.0621, 7.0615, 7.0609, 7.063, 7.0634, 7.0645, 7.0711, 7.0729, 7.0724, 7.0717, 7.0699, 7.0702, 7.0769, 7.0776, 7.0775, 7.0774, 7.077, 7.0766, 7.0784, 7.0779, 7.0777, 7.0774, 7.0771, 7.0764, 7.076, 7.0753, 7.0769, 7.0786, 7.0801, 7.0794, 7.0787, 7.0781, 7.0777, 7.0784, 7.0777, 7.0792, 7.0828, 7.0803, 7.0821, 7.0815, 7.0816, 7.0811, 7.0804, 7.0801, 7.08, 7.0798, 7.0792, 7.0786, 7.0779, 7.0773, 7.0766, 7.0781, 7.0775, 7.0791, 7.0805, 7.0803, 7.0797, 7.079, 7.0804, 7.0803, 7.082, 7.0816, 7.0832, 7.0827, 7.0803, 7.0804, 7.0821, 7.0821, 7.0821, 7.0835, 7.0851, 7.0849, 7.0866, 7.0861, 7.0858, 7.0853, 7.0848, 7.0841, 7.0838, 7.0853, 7.0847, 7.0841, 7.0834, 7.0849, 7.0846, 7.0842, 7.0838, 7.0813, 7.0806, 7.0803, 7.0799, 7.0793, 7.0769, 7.0783, 7.0776, 7.0774, 7.0769, 7.0785, 7.0786, 7.0801, 7.0794, 7.0787, 7.0802, 7.0799, 7.0797, 7.0794, 7.0787, 7.0781, 7.0799, 7.0793, 7.0787, 7.0781, 7.0758, 7.0751, 7.0747, 7.0743, 7.0739, 7.0735, 7.0736, 7.0714, 7.0708, 7.0703, 7.0719, 7.0722, 7.0717, 7.0693, 7.0689, 7.0691, 7.069, 7.0685, 7.0681, 7.0676, 7.067, 7.0663, 7.066, 7.0654, 7.0653, 7.0647, 7.0662, 7.0657, 7.0637, 7.0635, 7.0632, 7.0627, 7.0626, 7.0641, 7.0635, 7.0631, 7.0646, 7.0643, 7.064, 7.0635, 7.0631, 7.0625, 7.0638, 7.0637, 7.0641, 7.0638, 7.0652, 7.067, 7.0686, 7.0681, 7.0679, 7.0656, 7.0634, 7.065, 7.0644, 7.0637, 7.0635, 7.0632, 7.0646, 7.0641, 7.0657, 7.0651, 7.0647, 7.0645, 7.0643, 7.064, 7.0658, 7.0675, 7.0694, 7.071, 7.0724, 7.0719, 7.0736, 7.073, 7.0725, 7.0738, 7.0735, 7.0733, 7.0727, 7.072, 7.0715, 7.0749, 7.0743, 7.0737, 7.0733, 7.073, 7.0729, 7.0742, 7.0736, 7.0749, 7.0746, 7.076, 7.0775, 7.0771, 7.0766, 7.0761, 7.0775, 7.0769, 7.0765, 7.0761, 7.0758, 7.0774, 7.0773, 7.0769, 7.0763, 7.0759, 7.0755, 7.0751, 7.0767, 7.0762, 7.0756, 7.0757, 7.0754, 7.0752, 7.0745, 7.0741, 7.0734, 7.073, 7.0728, 7.073, 7.0724, 7.0718, 7.0714, 7.0713, 7.0711, 7.0707, 7.0701, 7.0695, 7.069, 7.0686, 7.0682, 7.0745, 7.0742, 7.074, 7.0735, 7.0733, 7.0792, 7.0788, 7.0784, 7.0779, 7.0774, 7.0768, 7.0763, 7.0762, 7.0755, 7.0777, 7.077, 7.0764, 7.0761, 7.0775, 7.0788, 7.0784, 7.0778, 7.0773, 7.0768, 7.0763, 7.0757, 7.077, 7.0765, 7.0779, 7.0776, 7.0771, 7.0766, 7.0781, 7.0797, 7.0791, 7.0786, 7.0782, 7.0798, 7.0793, 7.079, 7.0788, 7.079, 7.0769, 7.075, 7.0764, 7.0759, 7.0758, 7.0753, 7.0747, 7.0741, 7.0739, 7.0737, 7.0751, 7.0745, 7.0739, 7.0738, 7.0753, 7.0747, 7.0741, 7.0754, 7.075, 7.0765, 7.0766, 7.0764, 7.0758, 7.0756, 7.0751, 7.0766, 7.0762, 7.0761, 7.0755, 7.077, 7.0763, 7.0757, 7.0771, 7.0765, 7.0782, 7.0776, 7.0777, 7.0772, 7.0769, 7.0765, 7.076, 7.0775, 7.0804, 7.0817, 7.0811, 7.0827, 7.0822, 7.0836, 7.0831, 7.0829, 7.0827, 7.0823, 7.0817, 7.0815, 7.0813, 7.0809, 7.0807, 7.0802, 7.0796, 7.079, 7.0803, 7.0797, 7.0813, 7.0829, 7.0825, 7.0824, 7.0822, 7.0816, 7.0833, 7.0828, 7.0822, 7.0817, 7.0817, 7.0831, 7.0847, 7.0843, 7.0842, 7.0848, 7.0843, 7.0839, 7.0837, 7.0839, 7.0834, 7.0847, 7.0861, 7.0856, 7.0852, 7.0846, 7.0843, 7.0845, 7.0847, 7.0867, 7.0918, 7.0913, 7.0931, 7.0927, 7.0934, 7.0929, 7.0927, 7.0923, 7.0937, 7.0933, 7.0931, 7.0927, 7.0907, 7.0903, 7.0897, 7.0892, 7.0886, 7.0886, 7.088, 7.0894, 7.091, 7.0925, 7.0922, 7.0917, 7.0911, 7.0908, 7.0903, 7.0902, 7.0899, 7.0911, 7.0906, 7.0903, 7.0916, 7.0912, 7.091, 7.0907, 7.0904, 7.0903, 7.09, 7.0896, 7.0877, 7.0874, 7.087, 7.0871, 7.0865, 7.0878, 7.0893, 7.0891, 7.0891, 7.0887, 7.0883, 7.0878, 7.0872, 7.0867, 7.0862, 7.0856, 7.0851, 7.0846, 7.0842, 7.0836, 7.0831, 7.0843, 7.0842, 7.0836, 7.0843, 7.0857, 7.0851, 7.0861, 7.0855, 7.0851, 7.0867, 7.0881, 7.0894, 7.0907, 7.0907, 7.0938, 7.0941, 7.0935, 7.0931, 7.0927, 7.094, 7.0923, 7.0936, 7.0949, 7.0973, 7.0986, 7.098, 7.0976, 7.0973, 7.0967, 7.0963, 7.096, 7.0973, 7.0986, 7.0982, 7.0977, 7.0992, 7.1004, 7.1, 7.0994, 7.0989, 7.0984, 7.0981, 7.0977, 7.0991, 7.1004, 7.0999, 7.0979, 7.0975, 7.0971, 7.0965, 7.0962, 7.0967, 7.0962, 7.0956, 7.0954, 7.0949, 7.0929, 7.0927, 7.0939, 7.0934, 7.093, 7.0936, 7.0949, 7.0947, 7.0942, 7.0982, 7.0996, 7.0991, 7.0985, 7.0981, 7.0981, 7.098, 7.0975, 7.0972, 7.0984, 7.0981, 7.0979, 7.0994, 7.1005, 7.1002, 7.0997, 7.0994, 7.0989, 7.0984, 7.0997, 7.0991, 7.099, 7.1004, 7.0984, 7.0978, 7.0975, 7.0969, 7.0966, 7.0962, 7.0974, 7.0986, 7.0982, 7.0977, 7.0974, 7.0969, 7.0963, 7.0959, 7.0953, 7.0951, 7.0947, 7.0942, 7.0938, 7.0987, 7.0982, 7.0984, 7.0984, 7.0997, 7.1, 7.0996, 7.1026, 7.1022, 7.1017, 7.1011, 7.0992, 7.1003, 7.1, 7.0994, 7.1009, 7.1003, 7.0997, 7.0993, 7.0987, 7.0967, 7.0962, 7.0957, 7.0955, 7.0968, 7.0963, 7.0958, 7.0954, 7.095, 7.0944, 7.0956, 7.095, 7.0962, 7.096, 7.0955, 7.0967, 7.0979, 7.0977, 7.0989, 7.0985, 7.0981, 7.0978, 7.0973, 7.0973, 7.0988, 7.0983, 7.0995, 7.0997, 7.0995, 7.0996, 7.0992, 7.0988, 7.1012, 7.1015, 7.1028, 7.1041, 7.1039, 7.1036, 7.1035, 7.1031, 7.1028, 7.1025, 7.102, 7.1032, 7.1026, 7.102, 7.1017, 7.103, 7.1025, 7.1021, 7.1017, 7.1023, 7.1022, 7.1034, 7.1033, 7.1045, 7.1039, 7.105, 7.1045, 7.1043, 7.1041, 7.1036, 7.1034, 7.103, 7.1025, 7.102, 7.1054, 7.1051, 7.1046, 7.1042, 7.1037, 7.1032, 7.1045, 7.1055, 7.1054, 7.1049, 7.1061, 7.1061, 7.1056, 7.1052, 7.1047, 7.1041, 7.1039, 7.1035, 7.103, 7.1025, 7.1023, 7.1018, 7.1013, 7.1008, 7.1006, 7.1017, 7.0997, 7.1009, 7.1004, 7.0999, 7.0996, 7.099, 7.0985, 7.0981, 7.0961, 7.0957, 7.0986, 7.0982, 7.0987, 7.0999, 7.0995, 7.0991, 7.0989, 7.0985, 7.0982, 7.0979, 7.0974, 7.0968, 7.0963, 7.0958, 7.0952, 7.0965, 7.096, 7.0955, 7.0955, 7.0967, 7.0996, 7.0995, 7.0989, 7.0987, 7.0986, 7.0982, 7.098, 7.0975, 7.0969, 7.0969, 7.0997, 7.0993, 7.099, 7.1002, 7.0998, 7.0993, 7.0988, 7.0984, 7.0983, 7.0979, 7.1007, 7.101, 7.1006, 7.1004, 7.1017, 7.1016, 7.1028, 7.1023, 7.1019, 7.1015, 7.101, 7.1007, 7.1002, 7.1013, 7.1009, 7.1005, 7.1, 7.1013, 7.1042, 7.1041, 7.1036, 7.103, 7.1025, 7.1021, 7.1017, 7.1014, 7.1008, 7.1023, 7.1018, 7.1015, 7.1009, 7.1022, 7.1019, 7.1033, 7.103, 7.1027, 7.1024, 7.1019, 7.1016, 7.1011, 7.1008, 7.1006, 7.1001, 7.1008, 7.1005, 7.1002, 7.0997, 7.0993, 7.0992, 7.0987, 7.1, 7.1003, 7.0998, 7.1009, 7.1004, 7.1003, 7.0997, 7.0992, 7.0987, 7.1001, 7.0996, 7.0995, 7.0996, 7.0992, 7.0987, 7.1, 7.0996, 7.0992, 7.1004, 7.1002, 7.1015, 7.1013, 7.1026, 7.1022, 7.1018, 7.1014, 7.1009, 7.1008, 7.1006, 7.1004, 7.0999, 7.0994, 7.0993, 7.0989, 7.0985, 7.098, 7.0976, 7.0972, 7.0972, 7.0971, 7.0968, 7.0963, 7.0961, 7.0958, 7.0956, 7.0953, 7.0966, 7.0962, 7.0957, 7.0952, 7.0949, 7.0944, 7.0957, 7.0969, 7.0982, 7.098, 7.0976, 7.0989, 7.0985, 7.0982, 7.0977, 7.0973, 7.097, 7.0967, 7.0963, 7.0958, 7.0954, 7.0939, 7.0942, 7.0953, 7.0949, 7.0948, 7.0946, 7.0943, 7.0942, 7.0937, 7.0933, 7.0914, 7.0913, 7.0925, 7.0923, 7.0905, 7.0901, 7.0901, 7.0896, 7.0893, 7.0889, 7.0873, 7.0889, 7.0884, 7.0881, 7.0893, 7.0891, 7.089, 7.0903, 7.0898, 7.0894, 7.0906, 7.0904, 7.0899, 7.091, 7.0934, 7.0916, 7.0897, 7.0892, 7.0889, 7.0886, 7.0886, 7.0881, 7.0878, 7.0874, 7.087, 7.0868, 7.088, 7.0878, 7.0873, 7.0885, 7.088, 7.0876, 7.0871, 7.0867, 7.0864, 7.0859, 7.0854, 7.0853, 7.0854, 7.0852, 7.0847, 7.0843, 7.0838, 7.0833, 7.0828, 7.0826, 7.0824, 7.0822, 7.0826, 7.0821, 7.0816, 7.0816, 7.0811, 7.0807, 7.0805, 7.0804, 7.0801, 7.0832, 7.0831, 7.0826, 7.0842, 7.0843, 7.0848, 7.0844, 7.0841, 7.0852, 7.0857, 7.0852, 7.0865, 7.0867, 7.0891, 7.0907, 7.0903, 7.0898, 7.0896, 7.0893, 7.0889, 7.0888, 7.0886, 7.087, 7.0855, 7.0856, 7.0854, 7.0871, 7.0867, 7.0879, 7.0879, 7.0875, 7.0871, 7.0883, 7.0879, 7.0875, 7.0872, 7.0854, 7.085, 7.0864, 7.0862, 7.0875, 7.0871, 7.0866, 7.0862, 7.0858, 7.084, 7.0916, 7.0911, 7.0907, 7.0903, 7.0898, 7.0893, 7.0891, 7.0922, 7.0918, 7.0915, 7.091, 7.0894, 7.089, 7.0886, 7.0882, 7.0881, 7.0878, 7.0874, 7.0871, 7.0858, 7.0854, 7.085, 7.0846, 7.0858, 7.0854, 7.0836, 7.0831, 7.086, 7.0857, 7.0868, 7.0867, 7.085, 7.0845, 7.0843, 7.0839, 7.0836, 7.0833, 7.0833, 7.083, 7.0825, 7.0823, 7.0824, 7.0821, 7.0816, 7.0815, 7.081, 7.081, 7.0806, 7.0819, 7.0831, 7.0829, 7.0825, 7.0821, 7.0817, 7.0816, 7.08, 7.0801, 7.0799, 7.0802, 7.0797, 7.0808, 7.0806, 7.0804, 7.0801, 7.0814, 7.0809, 7.0807, 7.0806, 7.0805, 7.0806, 7.0805, 7.0804, 7.0823, 7.0805, 7.0803, 7.0814, 7.0844, 7.0857, 7.0855, 7.0854, 7.0837, 7.085, 7.0846, 7.0829, 7.0813, 7.0795, 7.0795, 7.0806, 7.0805, 7.0801, 7.08, 7.0798, 7.0796, 7.0793, 7.0792, 7.0806, 7.0805, 7.0805, 7.0803, 7.0801, 7.0798, 7.0781, 7.0777, 7.0789, 7.0785, 7.078, 7.0781, 7.0779, 7.0774, 7.0785, 7.0781, 7.078, 7.0806, 7.0817, 7.0812, 7.0807, 7.0802, 7.0812, 7.0809, 7.082, 7.0818, 7.0815, 7.0811, 7.0808, 7.0803, 7.0802, 7.0799, 7.0825, 7.0886, 7.0885, 7.0911, 7.0914, 7.0912, 7.0908, 7.0905, 7.0901, 7.0898, 7.0895, 7.0908, 7.0903, 7.09, 7.0896, 7.0892, 7.0887, 7.0885, 7.0881, 7.0877, 7.0872, 7.087, 7.0866, 7.0861, 7.0871, 7.0868, 7.0866, 7.0861, 7.0872, 7.0883, 7.0879, 7.089, 7.0885, 7.0882, 7.0893, 7.0889, 7.0885, 7.0896, 7.0891, 7.0873, 7.087, 7.0883, 7.0884, 7.0882, 7.088, 7.0877, 7.0873, 7.0869, 7.0871, 7.087, 7.0867, 7.0866, 7.0861, 7.0858, 7.0857, 7.0867, 7.0866, 7.0872, 7.0867, 7.0862, 7.0859, 7.0855, 7.0839, 7.085, 7.0833, 7.083, 7.0841, 7.0852, 7.0835, 7.0832, 7.0844, 7.084, 7.0836, 7.0833, 7.0858, 7.084, 7.0823, 7.0819, 7.0829, 7.0812, 7.0807, 7.0803, 7.08, 7.0797, 7.0809, 7.0805, 7.0801, 7.0812, 7.0813, 7.0809, 7.0807, 7.0803, 7.0814, 7.0825, 7.0823, 7.0834, 7.0835, 7.0846, 7.0859, 7.0855, 7.0854, 7.0855, 7.0851, 7.0847, 7.0844, 7.0841, 7.0854, 7.0853, 7.0849, 7.0846, 7.0844, 7.0842, 7.0883, 7.0895, 7.0894, 7.0893, 7.089, 7.0887, 7.0897, 7.0895, 7.0894, 7.0889, 7.0886, 7.0881, 7.0879, 7.0889, 7.0884, 7.0895, 7.0905, 7.0902, 7.0898, 7.0893, 7.0891, 7.0887, 7.0882, 7.0865, 7.0861, 7.0858, 7.0854, 7.0854, 7.085, 7.0845, 7.0848, 7.0847, 7.0845, 7.0858, 7.0853, 7.0851, 7.0852, 7.0837, 7.0834, 7.0831, 7.0828, 7.0824, 7.082, 7.083, 7.0812, 7.0794, 7.0779, 7.0775, 7.0771, 7.0769, 7.0764, 7.0774, 7.077, 7.0767, 7.0766, 7.0764, 7.076, 7.0771, 7.0754, 7.0755, 7.075, 7.0747, 7.0745, 7.0743, 7.0739, 7.0739, 7.0735, 7.0732, 7.0728, 7.0757, 7.0753, 7.0751, 7.0751, 7.0747, 7.0745, 7.0742, 7.0739, 7.0735, 7.0734, 7.0731, 7.0729, 7.0728, 7.0726, 7.071, 7.0694, 7.069, 7.07, 7.0701, 7.0699, 7.0694, 7.0696, 7.0692, 7.0688, 7.0684, 7.0698, 7.0696, 7.0694, 7.0695, 7.0691, 7.0691, 7.0704, 7.0705, 7.0701, 7.0713, 7.0712, 7.0709, 7.0706, 7.0717, 7.0716, 7.07, 7.0696, 7.0695, 7.0694, 7.0692, 7.0717, 7.0717, 7.0712, 7.0709, 7.0705, 7.0716, 7.0713, 7.0709, 7.0706, 7.0703, 7.0686, 7.0697, 7.0708, 7.0706, 7.0702, 7.0699, 7.0695, 7.0694, 7.0679, 7.0679, 7.0681, 7.0677, 7.0681, 7.0692, 7.069, 7.0686, 7.0685, 7.0684, 7.0695, 7.0693, 7.0691, 7.0687, 7.0684, 7.0698, 7.0683, 7.067, 7.0665, 7.0666, 7.0676, 7.0659, 7.0658, 7.0642, 7.0641, 7.0624, 7.0621, 7.0617, 7.0612, 7.0608, 7.0606, 7.0602, 7.0601, 7.0598, 7.0595, 7.0592, 7.0575, 7.0559, 7.0543, 7.0547, 7.0543, 7.0546, 7.0572, 7.0591, 7.0576, 7.0574, 7.057, 7.0581, 7.0592, 7.0591, 7.0588, 7.0584, 7.0612, 7.0623, 7.0634, 7.0645, 7.0642, 7.0639, 7.0637, 7.0635, 7.0645, 7.0641, 7.0639, 7.068, 7.0689, 7.0685, 7.0695, 7.069, 7.0688, 7.0684, 7.0679, 7.0675, 7.0672, 7.0668, 7.0664, 7.0648, 7.0647, 7.0656, 7.0666, 7.0663, 7.0673, 7.0668, 7.0664, 7.0661, 7.0657, 7.0654, 7.0649, 7.0646, 7.0642, 7.0638, 7.0648, 7.0643, 7.0639, 7.0665, 7.0662, 7.0661, 7.0657, 7.0655, 7.0665000000000004, 7.0665, 7.0663, 7.0674, 7.0686, 7.0683, 7.0695, 7.0704, 7.07, 7.0711, 7.0708, 7.0721, 7.0717, 7.073, 7.073, 7.0726, 7.0721, 7.0717, 7.0714, 7.0726, 7.0736, 7.0734, 7.0731, 7.0728, 7.0728, 7.0724, 7.0721, 7.0706, 7.0703, 7.0712, 7.071, 7.0705, 7.0701, 7.0701, 7.0696, 7.0691, 7.0689, 7.0694, 7.0703, 7.07, 7.0697, 7.0694, 7.0704, 7.0688, 7.069800000000001, 7.0682, 7.067, 7.0666, 7.0663, 7.0673, 7.0669, 7.0667, 7.0666, 7.0664, 7.066, 7.0658, 7.0653, 7.0648, 7.0644, 7.064, 7.0636, 7.0633, 7.0629, 7.064, 7.0635, 7.0632, 7.063, 7.0641, 7.0637, 7.0634, 7.0631, 7.0629, 7.0627, 7.0628, 7.0625, 7.0622, 7.0619, 7.0615, 7.0613, 7.0624, 7.062, 7.063, 7.0627, 7.0622, 7.0631, 7.0627, 7.0624, 7.063400000000001, 7.063, 7.0626, 7.061, 7.0595, 7.0592, 7.0588, 7.0589, 7.0585, 7.0585, 7.0597, 7.0583, 7.0568, 7.0581, 7.0592, 7.0589, 7.0575, 7.0575, 7.0559, 7.056900000000001, 7.0565, 7.0566, 7.0563, 7.056, 7.0557, 7.0553, 7.0549, 7.0547, 7.0552, 7.0549, 7.055, 7.0538, 7.0537, 7.0533, 7.0532, 7.053, 7.0539, 7.0537, 7.0533, 7.0543000000000005, 7.054, 7.0535, 7.0534, 7.0531, 7.0528, 7.0524, 7.052, 7.0517, 7.0515, 7.0526, 7.0524, 7.0522, 7.0518, 7.0515, 7.0517, 7.0513, 7.0527, 7.0514, 7.0511, 7.0521, 7.052, 7.0517, 7.0514, 7.051, 7.0506, 7.0503, 7.05, 7.0496, 7.0494, 7.0502, 7.0498, 7.0522, 7.0519, 7.0529, 7.0539, 7.0535, 7.0532, 7.0528, 7.0513, 7.0509, 7.0505, 7.0501, 7.0497, 7.0495, 7.0506, 7.0511, 7.0509, 7.0507, 7.0503, 7.0499, 7.0496, 7.0493, 7.0489, 7.0498, 7.0507, 7.0505, 7.0502, 7.0499, 7.0495, 7.0491, 7.0477, 7.0476, 7.0472, 7.0468, 7.0464, 7.046, 7.0469, 7.0465, 7.0467, 7.0465, 7.0464, 7.0462, 7.0458, 7.0462, 7.0475, 7.048500000000001, 7.0483, 7.048, 7.0478, 7.0487, 7.0487, 7.0484, 7.0482, 7.0479, 7.0476, 7.0475, 7.0473, 7.0471, 7.0468, 7.0465, 7.0475, 7.048500000000001, 7.049500000000001, 7.0492, 7.0491, 7.049, 7.050000000000001, 7.0497, 7.0493, 7.0489, 7.0487, 7.0484, 7.0494, 7.0491, 7.0501, 7.0499, 7.051, 7.0507, 7.0516, 7.0527, 7.054, 7.0537, 7.0533, 7.0531, 7.0527, 7.0538, 7.0538, 7.0535, 7.0532, 7.0529, 7.0539000000000005, 7.0537, 7.0533, 7.053, 7.054, 7.0537, 7.0533, 7.0518, 7.0517, 7.0528, 7.053800000000001, 7.054800000000001, 7.0558, 7.0554, 7.0553, 7.0539, 7.0535, 7.0531, 7.053, 7.0539, 7.0535, 7.0532, 7.054200000000001, 7.0538, 7.0534, 7.053, 7.0575, 7.0571, 7.0568, 7.0576, 7.0576, 7.0573, 7.057, 7.0566, 7.0575, 7.0585, 7.0582, 7.058, 7.0576, 7.0584, 7.0593, 7.0589, 7.0587, 7.0584, 7.057, 7.0567, 7.0578, 7.0574, 7.0572, 7.0568, 7.0565, 7.0562, 7.0571, 7.0583, 7.058, 7.0579, 7.0576, 7.0586, 7.0582, 7.0579, 7.059, 7.0588, 7.0585, 7.0582, 7.058, 7.0589, 7.0585, 7.0582, 7.0579, 7.0578, 7.0574, 7.058400000000001, 7.0581, 7.0578, 7.0575, 7.0573, 7.057, 7.0569, 7.0578, 7.059, 7.0588, 7.0591, 7.0589, 7.0586, 7.0583, 7.0582, 7.0578, 7.0588, 7.0598, 7.0597, 7.0593, 7.0592, 7.0592, 7.0589, 7.0587, 7.0583, 7.0581, 7.0577, 7.0587, 7.0597, 7.0583, 7.0606, 7.0604, 7.0601, 7.0598, 7.0607, 7.0617, 7.0615, 7.0611, 7.0608, 7.0607, 7.0603, 7.06, 7.061, 7.0606, 7.0592, 7.0588, 7.0587, 7.0596, 7.0595, 7.0605, 7.0605, 7.0602, 7.0599, 7.0596, 7.0593, 7.0591, 7.0591, 7.0589, 7.0585, 7.0584, 7.0593, 7.0603, 7.0601, 7.0632, 7.0642, 7.0638, 7.0637, 7.0634, 7.0631, 7.0629, 7.0625, 7.0621, 7.0623, 7.0608, 7.0604, 7.0602, 7.06, 7.0597, 7.0594, 7.0609, 7.062, 7.0644, 7.0641, 7.0689, 7.07, 7.0698, 7.0695, 7.0693, 7.0689, 7.0691, 7.0687, 7.0683, 7.068, 7.0677, 7.0676, 7.0677, 7.0676, 7.0672, 7.0669, 7.0668, 7.0666, 7.0662, 7.0663, 7.0663, 7.0659, 7.0658, 7.0655, 7.0656, 7.0653, 7.0664, 7.0676, 7.0676, 7.0676, 7.0674, 7.0673, 7.067, 7.0671, 7.0667, 7.0676, 7.0674, 7.0672, 7.0669, 7.0666, 7.0663, 7.0659, 7.0646, 7.0645, 7.0656, 7.0667, 7.0679, 7.0676, 7.0685, 7.0682, 7.0691, 7.0689, 7.0698, 7.0695, 7.0691, 7.069, 7.0686, 7.0695, 7.0692, 7.0691, 7.0689, 7.0688, 7.0685, 7.0681, 7.0678, 7.0687, 7.0675, 7.0673, 7.0669, 7.0666, 7.0665, 7.0673, 7.0659, 7.0656, 7.0653, 7.0664, 7.066, 7.0665, 7.0664, 7.0665, 7.0661, 7.0658, 7.0656, 7.0655, 7.0652, 7.0649, 7.0636, 7.0633, 7.062, 7.0617, 7.0627, 7.0624, 7.0611, 7.0598, 7.0608, 7.0605, 7.0614, 7.0612, 7.0609, 7.0607, 7.0603, 7.0613, 7.061, 7.0609, 7.0607, 7.0606, 7.0603, 7.0599, 7.0595, 7.0593, 7.059, 7.0589, 7.0585, 7.0581, 7.0568, 7.0555, 7.0542, 7.0539, 7.0537, 7.0536, 7.0535, 7.0534, 7.0531, 7.054, 7.0537, 7.0536, 7.0533, 7.0531, 7.0532, 7.0531, 7.0531, 7.0528, 7.0525, 7.0523, 7.0519, 7.0529, 7.0552, 7.055, 7.0564, 7.0561, 7.0559, 7.0557, 7.0554, 7.0562, 7.0561, 7.0557, 7.0554, 7.0555, 7.0552, 7.0564, 7.0575, 7.0571, 7.0558, 7.0555, 7.0552, 7.0548, 7.0548, 7.0557, 7.0567, 7.0563, 7.0563, 7.0572, 7.057, 7.0566, 7.0563, 7.0562, 7.0559, 7.0556, 7.0552, 7.0549, 7.0559, 7.0557, 7.0555, 7.0566, 7.0563, 7.0562, 7.0573, 7.0571, 7.0571, 7.0557, 7.0557, 7.0567, 7.0577000000000005, 7.0583, 7.0582, 7.0591, 7.0605, 7.0603, 7.0602, 7.0616, 7.0619, 7.063, 7.0644, 7.0641, 7.064, 7.0627, 7.0626, 7.0625, 7.0622, 7.0619, 7.0605, 7.0592, 7.0589, 7.0575, 7.0573, 7.057, 7.058, 7.0577, 7.0575, 7.0562, 7.0562, 7.0561, 7.0559, 7.0556, 7.0556, 7.0554, 7.0541, 7.055, 7.0548, 7.0544, 7.0542, 7.0538, 7.0535, 7.0535, 7.0535, 7.0532, 7.053, 7.0539, 7.0536, 7.0535, 7.0522, 7.0521, 7.0518, 7.0515, 7.0512, 7.0509, 7.0495, 7.0481, 7.0477, 7.0475, 7.0475, 7.0472, 7.047, 7.0468, 7.0464, 7.0464, 7.0472, 7.0481, 7.0478, 7.0486, 7.0484, 7.0481, 7.048, 7.0488, 7.0485, 7.0485, 7.0483, 7.0479, 7.0479, 7.0477, 7.0476, 7.0473, 7.047, 7.0456, 7.0454, 7.0451, 7.0449, 7.0445, 7.0442, 7.0441, 7.0439, 7.044, 7.0437, 7.0434, 7.0448, 7.0447, 7.0446, 7.0443, 7.0439, 7.0436, 7.0434, 7.0432, 7.0433, 7.0446, 7.0445, 7.0443, 7.0444, 7.0465, 7.0463, 7.0461, 7.047, 7.0467, 7.0467, 7.0465, 7.0473, 7.047, 7.0479, 7.0478, 7.0486, 7.0483, 7.049300000000001, 7.050300000000001, 7.0504, 7.0514, 7.0527, 7.0515, 7.0513, 7.0521, 7.0518, 7.0506, 7.0503, 7.0504, 7.0495, 7.0504, 7.05, 7.0497, 7.0494, 7.0491, 7.05, 7.0497, 7.0495, 7.0492, 7.0503, 7.0502, 7.0501, 7.0511, 7.0508, 7.0507, 7.0504, 7.0502, 7.0511, 7.051, 7.0507, 7.0505, 7.0513, 7.0509, 7.0506, 7.0504, 7.0502, 7.0488, 7.0484, 7.0481, 7.0479, 7.0475, 7.0475, 7.0473, 7.0471, 7.047, 7.0466, 7.0475, 7.048500000000001, 7.0492, 7.049, 7.0487, 7.0497, 7.0495, 7.0505, 7.0503, 7.0511, 7.0508, 7.0505, 7.0503, 7.05, 7.0501, 7.0497, 7.0493, 7.049, 7.0487, 7.0495, 7.0505, 7.0515, 7.0512, 7.051, 7.052, 7.0519, 7.0518, 7.0514, 7.0501, 7.05, 7.0498, 7.0487, 7.0483, 7.0481, 7.049, 7.0488, 7.0485, 7.0484, 7.0481, 7.0478, 7.0474, 7.0471, 7.0469, 7.0478, 7.0475, 7.0472, 7.0469, 7.0465, 7.0463, 7.0463, 7.0471, 7.047, 7.0469, 7.0466, 7.0476, 7.0486, 7.049600000000001, 7.050600000000001, 7.051600000000001, 7.0513, 7.0511, 7.0508, 7.0505, 7.0514, 7.0511, 7.0507, 7.0494, 7.0492, 7.0488, 7.0496, 7.0494, 7.0483, 7.048, 7.0488, 7.0496, 7.0492, 7.0491, 7.0501000000000005, 7.051100000000001, 7.0508, 7.0505, 7.0514, 7.0524000000000004, 7.0521, 7.0531, 7.0528, 7.0537, 7.0535, 7.0544, 7.0541, 7.0538, 7.0534, 7.0531, 7.0528, 7.0525, 7.0523, 7.052, 7.0528, 7.0524, 7.0521, 7.0517, 7.0513, 7.051, 7.0520000000000005, 7.0517, 7.0525, 7.0521, 7.053100000000001, 7.0527, 7.0535, 7.0531, 7.0527, 7.0524, 7.0522, 7.0519, 7.052, 7.0517, 7.0513, 7.051, 7.0507, 7.0504, 7.0501, 7.05, 7.0499, 7.0507, 7.0506, 7.0516000000000005, 7.0513, 7.051, 7.0497, 7.0485, 7.0494, 7.0494, 7.0482, 7.0489, 7.0499, 7.0496, 7.0494, 7.0491, 7.0488, 7.0486, 7.0486, 7.0487, 7.0487, 7.0507, 7.0529, 7.0549, 7.0547, 7.0544, 7.0541, 7.0548, 7.0547, 7.0544, 7.0542, 7.0539, 7.0525, 7.0523, 7.0531, 7.0541, 7.0529, 7.0538, 7.0525, 7.0523, 7.0521, 7.0519, 7.0517, 7.0515, 7.0512, 7.0508, 7.0505, 7.0514, 7.0511, 7.051, 7.0519, 7.0507, 7.0504, 7.0513, 7.0532, 7.0529, 7.0528, 7.0525, 7.0523, 7.0521, 7.0518, 7.0515, 7.0513, 7.051, 7.0507, 7.0506, 7.0503, 7.0511, 7.0519, 7.0519, 7.0527, 7.053, 7.0537, 7.0545, 7.0545, 7.0542, 7.0529, 7.0526, 7.0523, 7.0531, 7.0529, 7.0525, 7.0512, 7.051, 7.0508, 7.0507, 7.0504, 7.0501, 7.0502, 7.0499, 7.0498, 7.0497, 7.0494, 7.0494, 7.0482, 7.047, 7.0457, 7.0455, 7.0442, 7.0441, 7.0439, 7.0427, 7.0425, 7.0434, 7.0464, 7.0461, 7.0459, 7.0475, 7.0496, 7.0501, 7.0514, 7.0513, 7.0511, 7.0509, 7.0507, 7.0505, 7.0522, 7.0532, 7.0529, 7.0527, 7.0525, 7.0521, 7.0529, 7.0537, 7.0545, 7.0543, 7.054, 7.0538, 7.0536, 7.0533, 7.0532, 7.0532, 7.0533, 7.0529, 7.0539, 7.0536, 7.0535, 7.0533, 7.0529, 7.0526, 7.0523, 7.052, 7.0517, 7.052700000000001, 7.0524, 7.0522, 7.0519, 7.0529, 7.0529, 7.0527, 7.0536, 7.0532, 7.0528, 7.0526, 7.0535, 7.0532, 7.0531, 7.0529, 7.0527, 7.0535, 7.0534, 7.0536, 7.0525, 7.0526, 7.0524, 7.0561, 7.0558, 7.0558, 7.056, 7.0549, 7.0538, 7.0536, 7.0534, 7.0532, 7.0541, 7.0538, 7.0535, 7.0535, 7.0534, 7.0532, 7.0531, 7.0528, 7.0515, 7.0512, 7.0509, 7.0518, 7.0507, 7.0503, 7.0501, 7.0498, 7.0508, 7.0505, 7.0502, 7.05, 7.0499, 7.0501, 7.05, 7.0496, 7.0484, 7.0491, 7.0488, 7.0498, 7.0496, 7.0495, 7.0504, 7.0497, 7.0507, 7.0506, 7.0516000000000005, 7.0515, 7.0523, 7.0531, 7.0528, 7.0525, 7.0535000000000005, 7.0533, 7.0543000000000005, 7.0541, 7.053, 7.0528, 7.0528, 7.0525, 7.0523, 7.0531, 7.0519, 7.052, 7.0517, 7.0514, 7.0511, 7.0509, 7.051900000000001, 7.0517, 7.0515, 7.0515, 7.0525, 7.0524, 7.0513, 7.0512, 7.051, 7.0520000000000005, 7.0518, 7.0534, 7.0532, 7.054, 7.0537, 7.0534, 7.0532, 7.053, 7.0528, 7.0528, 7.0525, 7.0533, 7.0531, 7.0539, 7.0536, 7.0545, 7.0543, 7.054, 7.0538, 7.0536, 7.0535, 7.0552, 7.0562000000000005, 7.056, 7.0571, 7.0569, 7.0581, 7.0603, 7.06, 7.0598, 7.0596, 7.0593, 7.0597, 7.0604, 7.0614, 7.0611, 7.0608, 7.0606, 7.0604, 7.0602, 7.0599, 7.0596, 7.0593, 7.0602, 7.061, 7.061, 7.0618, 7.0615, 7.0613, 7.0612, 7.062, 7.0619, 7.0626, 7.0634, 7.0631, 7.0639, 7.0638, 7.0636, 7.0645, 7.0644, 7.0654, 7.0658, 7.0656, 7.0653, 7.0651, 7.0651, 7.0639, 7.0628, 7.0625, 7.0621, 7.062, 7.0618, 7.0615, 7.0613, 7.0611, 7.0609, 7.0606, 7.0595, 7.0593, 7.0593, 7.059, 7.0587, 7.0584, 7.0582, 7.059, 7.0588, 7.0586, 7.0586, 7.0583, 7.0582, 7.0579, 7.0576, 7.0574, 7.0572, 7.0571, 7.0569, 7.0566, 7.0565, 7.0565, 7.0562, 7.0561, 7.0585, 7.0584, 7.0586, 7.0596000000000005, 7.060600000000001, 7.061600000000001, 7.0615, 7.0612, 7.061, 7.0628, 7.0637, 7.0644, 7.0642, 7.0632, 7.063, 7.0638, 7.0646, 7.0643, 7.065300000000001, 7.065, 7.0638, 7.0635, 7.0634, 7.0632, 7.064, 7.0648, 7.0651, 7.065, 7.0658, 7.0668, 7.0687, 7.0695, 7.0692, 7.0691, 7.0679, 7.0678, 7.0675, 7.0673, 7.0671, 7.0668, 7.0667, 7.0674, 7.0672, 7.0671, 7.0678, 7.0679, 7.0676, 7.0673, 7.0671, 7.0679, 7.0679, 7.0677, 7.0685, 7.0684, 7.0681, 7.0679, 7.0688, 7.0685, 7.0684, 7.0682, 7.0679, 7.0667, 7.0667, 7.0666, 7.0674, 7.0672, 7.0672, 7.0672, 7.0672, 7.0663, 7.0693, 7.069, 7.0688, 7.0685, 7.0684, 7.0687, 7.0727, 7.0724, 7.0721, 7.0729, 7.0726, 7.0738, 7.0736, 7.0734, 7.0731, 7.0756, 7.0754, 7.0752, 7.075, 7.0739, 7.0739, 7.0747, 7.0755, 7.0752, 7.075, 7.0748, 7.0745, 7.0744, 7.0741, 7.0738, 7.0738, 7.0735, 7.0733, 7.0732, 7.0743, 7.0743, 7.0741, 7.074, 7.0738, 7.0735, 7.0731, 7.0738, 7.0737, 7.0744, 7.0741, 7.0749, 7.0758, 7.0756, 7.0763, 7.0761, 7.0749, 7.0746, 7.0743, 7.075, 7.0748, 7.0745, 7.0742, 7.0749, 7.0756, 7.0753, 7.075, 7.0748, 7.0747, 7.0745, 7.0748, 7.0745, 7.0743, 7.075, 7.075, 7.0748, 7.0746, 7.0744, 7.0741, 7.0748, 7.0745, 7.0744, 7.0741, 7.0751, 7.0749, 7.0746, 7.0743, 7.075, 7.0747, 7.0744, 7.0741, 7.0739, 7.0736, 7.0745, 7.0742, 7.075, 7.075, 7.0747, 7.0755, 7.0753, 7.0751, 7.0748, 7.0746, 7.0743, 7.0741, 7.0741, 7.0766, 7.0774, 7.0771, 7.0768, 7.0765, 7.0772, 7.0772, 7.077, 7.0767, 7.0764, 7.0761, 7.0764, 7.0762, 7.0759, 7.0756, 7.0753, 7.0753, 7.075, 7.075, 7.0747, 7.0755, 7.0753, 7.0751, 7.0751, 7.0749, 7.0756, 7.0766, 7.0763, 7.0771, 7.0769, 7.0767, 7.0768, 7.0765, 7.0764, 7.0763, 7.077, 7.0767, 7.0773, 7.0771, 7.0769, 7.0767, 7.0776, 7.0774, 7.0771, 7.0768, 7.0765, 7.0763, 7.0771, 7.0769, 7.0767, 7.0764, 7.0762, 7.0761, 7.076, 7.0758, 7.0755, 7.0753, 7.075, 7.0749, 7.0748, 7.0745, 7.0753, 7.0761, 7.0769, 7.0766, 7.0773, 7.077, 7.0768, 7.0775, 7.0795, 7.0793, 7.0792, 7.0791, 7.0789, 7.0788, 7.0796, 7.0805, 7.0805, 7.0802, 7.08, 7.0797, 7.0804, 7.0801, 7.0799, 7.0806, 7.0813, 7.081, 7.0809, 7.081, 7.0807, 7.0815, 7.0813, 7.0811, 7.0811, 7.0802, 7.08, 7.0797, 7.0806, 7.0804, 7.081, 7.0809, 7.0808, 7.0805, 7.0804, 7.0803, 7.0802, 7.08, 7.0807, 7.0831, 7.0839, 7.0838, 7.0849, 7.0858, 7.0882, 7.088, 7.0877, 7.0874, 7.0871, 7.0869, 7.0868, 7.0866, 7.0865, 7.0864, 7.0861, 7.0858, 7.0855, 7.0852, 7.085, 7.0849, 7.0857, 7.0865, 7.0862, 7.0862, 7.0859, 7.0856, 7.0863, 7.0861, 7.0858, 7.0856, 7.0857, 7.0854, 7.0842, 7.0842, 7.0839, 7.0836, 7.0834, 7.0831, 7.0828, 7.0825, 7.0822, 7.0822, 7.0828, 7.0828, 7.0825, 7.0822, 7.0829, 7.0827, 7.0834, 7.0832, 7.084, 7.0837, 7.0835, 7.0833, 7.083, 7.0827, 7.0834, 7.0837, 7.0836, 7.0845, 7.0843, 7.0852, 7.085, 7.0849, 7.0848, 7.0855, 7.0853, 7.0851, 7.0849, 7.0846, 7.0845, 7.0843, 7.0841, 7.0839, 7.0836, 7.0834, 7.084, 7.0837, 7.0834, 7.0832, 7.0831, 7.083, 7.0828, 7.0825, 7.0833, 7.083, 7.0829, 7.0829, 7.0827, 7.0826, 7.0824, 7.0822, 7.0819, 7.0827, 7.0824, 7.0825, 7.0823, 7.0822, 7.082, 7.0828, 7.0827, 7.0827, 7.0825, 7.0834, 7.0832, 7.083, 7.0829, 7.0827, 7.0835, 7.0843, 7.0847, 7.0845, 7.0844, 7.0842, 7.084, 7.0847, 7.0844, 7.0842, 7.0839, 7.0836, 7.0836, 7.0844, 7.0854, 7.0855, 7.0854, 7.0862, 7.0861, 7.086, 7.086, 7.0858, 7.0849, 7.0846, 7.0845, 7.0844, 7.0852, 7.085, 7.0847, 7.0857, 7.0854, 7.0851, 7.086, 7.0858, 7.0869, 7.087, 7.0867, 7.0865, 7.0862, 7.086, 7.0858, 7.0856, 7.0853, 7.0852, 7.0849, 7.0857, 7.0855, 7.0854, 7.0852, 7.0851, 7.0884, 7.0883, 7.0872, 7.0871, 7.0868, 7.0866, 7.0864, 7.0864, 7.0861, 7.0861, 7.0858, 7.0855, 7.0852, 7.086200000000001, 7.087200000000001, 7.0869, 7.0866, 7.0863, 7.0861, 7.0858, 7.0856, 7.0856, 7.0872, 7.087, 7.0867, 7.0869, 7.0866, 7.087, 7.0877, 7.0876, 7.0884, 7.0887, 7.0895, 7.0893, 7.0891, 7.089, 7.0897, 7.0895, 7.0895, 7.0892, 7.088, 7.0881, 7.088, 7.0877, 7.0875, 7.0873, 7.0871, 7.087, 7.0872, 7.0879, 7.0879, 7.0877, 7.0876, 7.0874, 7.0872, 7.0869, 7.0866, 7.0864, 7.0861, 7.0859, 7.0848, 7.0845, 7.0842, 7.0841, 7.0839, 7.0837, 7.0835, 7.0835, 7.0832, 7.0829, 7.0835, 7.0832, 7.0839, 7.0836, 7.0833, 7.083, 7.0819, 7.0808, 7.0815, 7.0822, 7.0821, 7.0819, 7.0826, 7.0825, 7.0823, 7.082, 7.0828, 7.0826, 7.0823, 7.0822, 7.0829, 7.0835, 7.0832, 7.0839, 7.0836, 7.0842, 7.0839, 7.0836, 7.0837, 7.0835, 7.0833, 7.0832, 7.0829, 7.0826, 7.0824, 7.0832, 7.084, 7.0837, 7.0835, 7.0834, 7.0831, 7.0838, 7.0835, 7.0836, 7.0865, 7.0863, 7.086, 7.0867, 7.0865, 7.0862, 7.0871, 7.0869, 7.0867, 7.0864, 7.0861, 7.0868, 7.0865, 7.0862, 7.086, 7.0859, 7.0856, 7.0855, 7.0852, 7.0851, 7.085, 7.0849, 7.0847, 7.0854, 7.0851, 7.0848, 7.0845, 7.0834, 7.084, 7.0847, 7.0854, 7.0852, 7.085, 7.0848, 7.0848, 7.0847, 7.0844, 7.0842, 7.084, 7.0837, 7.0835, 7.0834, 7.0842, 7.0843, 7.085, 7.0857, 7.0855, 7.0854, 7.0852, 7.0859, 7.0857, 7.0854, 7.0853, 7.086, 7.0858, 7.0858, 7.0857, 7.0855, 7.0853, 7.085, 7.0839, 7.0836, 7.0833, 7.084300000000001, 7.085, 7.0847, 7.0844, 7.0842, 7.0841, 7.0848, 7.0855, 7.0854, 7.0852, 7.0849, 7.0847, 7.0853, 7.0859, 7.0866, 7.0863, 7.086, 7.0857, 7.0867, 7.0884, 7.0881, 7.0879, 7.0877, 7.0875, 7.0881, 7.0872, 7.0882000000000005, 7.089200000000001, 7.090200000000001, 7.0891, 7.0888, 7.0886, 7.0885, 7.0883, 7.0889, 7.0886, 7.0893, 7.089, 7.0887, 7.0892, 7.089, 7.0887, 7.0894, 7.0892, 7.089, 7.0897, 7.0904, 7.0903, 7.0903, 7.0902, 7.09, 7.0889, 7.0877, 7.0874, 7.0871, 7.0868, 7.0866, 7.0863, 7.0862, 7.0861, 7.0858, 7.0847, 7.0844, 7.085, 7.0857, 7.0855, 7.0854, 7.0851, 7.0848, 7.0848, 7.0846, 7.0845, 7.0844, 7.0841, 7.0838, 7.0835, 7.0853, 7.0851, 7.085, 7.0848, 7.0845, 7.0834, 7.0832, 7.0832, 7.0832, 7.083, 7.0829, 7.0828, 7.0817, 7.0806, 7.0803, 7.0801, 7.08, 7.0798, 7.0797, 7.0787, 7.0785, 7.0783, 7.0781, 7.0782, 7.0799, 7.0798, 7.0797, 7.0795, 7.0793, 7.0791, 7.0799, 7.0798, 7.0796, 7.0793, 7.0803, 7.081300000000001, 7.082300000000001, 7.0833, 7.0833, 7.0831, 7.084, 7.0841, 7.0847, 7.0837, 7.0837, 7.0837, 7.0845, 7.0844, 7.0842, 7.084, 7.0838, 7.0852, 7.086, 7.0857, 7.0855, 7.0862, 7.0859, 7.0848, 7.0846, 7.0855, 7.0863, 7.0863, 7.0861, 7.0858, 7.0858, 7.0856, 7.0854, 7.0854, 7.0862, 7.0862, 7.086, 7.0858, 7.0855, 7.0853, 7.0854, 7.0861, 7.086, 7.0866, 7.0863, 7.0873, 7.0883, 7.0873, 7.0871, 7.0868, 7.0868, 7.0865, 7.0862, 7.0859, 7.0856, 7.086600000000001, 7.0864, 7.087400000000001, 7.0864, 7.0861, 7.0863, 7.0869, 7.0868, 7.0865, 7.0864, 7.0853, 7.085, 7.0848, 7.0847, 7.0845, 7.0852, 7.085, 7.0849, 7.0846, 7.0845, 7.0843, 7.0841, 7.0841, 7.085100000000001, 7.086100000000001, 7.0869, 7.0877, 7.0885, 7.0883, 7.089, 7.0897, 7.0904, 7.0905, 7.0907, 7.0905, 7.0902, 7.0908, 7.0906, 7.0904, 7.0894, 7.0885, 7.0891, 7.0889, 7.0896, 7.0894, 7.0891, 7.0899, 7.0897, 7.0895, 7.0884, 7.0882, 7.0882, 7.0898, 7.0898, 7.0896, 7.0894, 7.0891, 7.0889, 7.0887, 7.0884, 7.0873, 7.0865, 7.0864, 7.0871, 7.0878, 7.0876, 7.0874, 7.088, 7.0879, 7.0869, 7.0868, 7.0867, 7.0881, 7.088, 7.0878, 7.0876, 7.0873, 7.087, 7.087, 7.0867, 7.0856, 7.0854, 7.0852, 7.0849, 7.0847, 7.0845, 7.0844, 7.0868, 7.0878000000000005, 7.088800000000001, 7.0886, 7.0885, 7.0883, 7.0886, 7.0885, 7.0884, 7.0882, 7.088, 7.0877, 7.0876, 7.0875, 7.0881, 7.0882, 7.0888, 7.0898, 7.090800000000001, 7.0905, 7.0902, 7.0901, 7.0899, 7.0905, 7.0903, 7.09, 7.0898, 7.0897, 7.0903, 7.0902, 7.0908, 7.0908, 7.0906, 7.0904, 7.0903, 7.0911, 7.0918, 7.0915, 7.0912, 7.0918, 7.0916, 7.0926, 7.0923, 7.0929, 7.0936, 7.0934, 7.094, 7.095, 7.0951, 7.0958, 7.0956, 7.0955, 7.0953, 7.0952, 7.095, 7.0951, 7.095, 7.0947, 7.0946, 7.0944, 7.0942, 7.094, 7.0939, 7.0945, 7.0943, 7.0949, 7.0946, 7.0945, 7.0943, 7.0953, 7.0963, 7.096, 7.0957, 7.0955, 7.0953, 7.0951, 7.0948, 7.0955, 7.096500000000001, 7.097500000000001, 7.0983, 7.098, 7.0981, 7.0978, 7.0976, 7.0974, 7.0973, 7.097, 7.096, 7.0957, 7.0957, 7.0955, 7.0954, 7.0953, 7.095, 7.0949, 7.0956, 7.0945, 7.0944, 7.0944, 7.0943, 7.094, 7.0937, 7.0934, 7.0931, 7.0932, 7.094200000000001, 7.0939, 7.0938, 7.0945, 7.0942, 7.0952, 7.0962000000000005, 7.0959, 7.0966, 7.0964, 7.0972, 7.097, 7.0968, 7.0967, 7.0965, 7.0963, 7.0961, 7.0959, 7.0958, 7.0955, 7.0953, 7.0951, 7.0949, 7.0956, 7.0954, 7.0951, 7.0957, 7.0963, 7.0965, 7.0971, 7.0961, 7.0951, 7.0941, 7.094, 7.0939, 7.0936, 7.0934, 7.0933, 7.094, 7.0937, 7.0935, 7.0934, 7.0932, 7.0932, 7.0932, 7.093, 7.0954, 7.0964, 7.0974, 7.098400000000001, 7.0983, 7.0981, 7.0988, 7.0986, 7.0985, 7.0984, 7.099, 7.099, 7.0989, 7.0989, 7.0987, 7.0986, 7.0984, 7.099, 7.0988, 7.0988, 7.0994, 7.0991, 7.099, 7.0989, 7.0988, 7.0989, 7.0987, 7.0987, 7.0985, 7.0995, 7.0994, 7.0993, 7.0993, 7.0993, 7.0991, 7.0997, 7.0995, 7.0992, 7.0989, 7.0995, 7.0993, 7.1011, 7.1009, 7.1008, 7.1007, 7.1026, 7.1016, 7.1014, 7.1011, 7.1008, 7.1007, 7.1005, 7.1039, 7.1037, 7.1043, 7.1041, 7.1031, 7.1028, 7.1025, 7.1025, 7.1024, 7.1023, 7.102, 7.1017, 7.1015, 7.1014, 7.1012, 7.101, 7.102, 7.102, 7.1018, 7.1016, 7.1016, 7.1014, 7.1012, 7.1013, 7.1011, 7.1011, 7.101, 7.1008, 7.1006, 7.1012, 7.1011, 7.1011, 7.1008, 7.1016, 7.1014, 7.1012, 7.1009, 7.0999, 7.0997, 7.0995, 7.0994, 7.0992, 7.0991, 7.0997, 7.0996, 7.0995, 7.0993, 7.0991, 7.0996, 7.0993, 7.0991, 7.1011, 7.1011, 7.1018, 7.1017, 7.1016, 7.1022, 7.1022, 7.1021, 7.1027, 7.1024, 7.1021, 7.1031, 7.104100000000001, 7.1039, 7.1038, 7.1044, 7.1045, 7.1042, 7.1041, 7.1049, 7.1051, 7.1049, 7.1046, 7.1045, 7.1044, 7.105, 7.1048, 7.1054, 7.1054, 7.1052, 7.1052, 7.1066, 7.1071, 7.107, 7.1068, 7.1075, 7.1065, 7.1057, 7.1055, 7.1053, 7.1055, 7.1053, 7.1051, 7.105, 7.1057, 7.1055, 7.1055, 7.1052, 7.1051, 7.1048, 7.104, 7.1042, 7.104, 7.1038, 7.1037, 7.1034, 7.1033, 7.1032, 7.103, 7.1037, 7.1047, 7.105700000000001, 7.109, 7.1089, 7.1087, 7.1085, 7.1083, 7.109, 7.1088, 7.1087, 7.1085, 7.1084, 7.1082, 7.108, 7.1078, 7.1086, 7.1083, 7.1082, 7.1088, 7.1086, 7.1083, 7.1084, 7.1082, 7.1081, 7.1079, 7.1078, 7.1086, 7.1083, 7.1083, 7.108, 7.1086, 7.1077, 7.1075, 7.1077, 7.1083, 7.108, 7.1078, 7.1075, 7.1072, 7.1071, 7.1069, 7.1067, 7.1065, 7.1056, 7.1062, 7.1059, 7.1057, 7.1056, 7.1062, 7.1059, 7.1058, 7.1064, 7.1061, 7.1067, 7.1065, 7.1064, 7.107, 7.1076, 7.1082, 7.1081, 7.1079, 7.1077, 7.1083, 7.108, 7.1078, 7.1076, 7.1075, 7.1074, 7.1072, 7.107, 7.1069, 7.1067, 7.1065, 7.1064, 7.1062, 7.1061, 7.106, 7.1058, 7.1056, 7.1054, 7.106, 7.1066, 7.1064, 7.1062, 7.106, 7.1058, 7.1056, 7.1054, 7.1052, 7.1051, 7.1049, 7.1047, 7.1054, 7.1052, 7.105, 7.1041, 7.104, 7.1039, 7.1045, 7.1051, 7.1049, 7.1046, 7.1053, 7.105, 7.1047, 7.1053, 7.1051, 7.105, 7.1047, 7.1044, 7.1041, 7.1038, 7.1037, 7.1036, 7.1033, 7.1032, 7.1034, 7.1034, 7.1032, 7.1034, 7.1043, 7.1045, 7.1043, 7.1041, 7.1051, 7.1052, 7.1051, 7.1057, 7.1056, 7.1062, 7.1061, 7.106, 7.1058, 7.1058, 7.1057, 7.1056, 7.1055, 7.1053, 7.1059, 7.1065, 7.1063, 7.1061, 7.1058, 7.1057, 7.1063, 7.1062, 7.106, 7.1058, 7.1064, 7.1061, 7.1061, 7.1061, 7.1061, 7.1067, 7.1065, 7.1072, 7.1071, 7.107, 7.1076, 7.1073, 7.107, 7.1068, 7.1068, 7.1065, 7.1063, 7.106, 7.1059, 7.1065, 7.1063, 7.1069, 7.1075, 7.1072, 7.107, 7.1068, 7.1067, 7.1064, 7.1061, 7.106, 7.1059, 7.1056, 7.1062, 7.1059, 7.1057, 7.1063, 7.1069, 7.1066, 7.1065, 7.1064, 7.1062, 7.1068, 7.1067, 7.1065, 7.1063, 7.1061, 7.1059, 7.1057, 7.1054, 7.1054, 7.1052, 7.105, 7.1049, 7.1047, 7.1046, 7.1044, 7.1043, 7.1043, 7.1042, 7.1048, 7.1054, 7.1053, 7.105, 7.1049, 7.1048, 7.1046, 7.1047, 7.1047, 7.1047, 7.1046, 7.1044, 7.1043, 7.1042, 7.104, 7.1039, 7.1046, 7.1044, 7.1042, 7.104, 7.1039, 7.1038, 7.1044, 7.1043, 7.1042, 7.1039, 7.1037, 7.1035, 7.1033, 7.104, 7.1049, 7.1048, 7.1046, 7.1043, 7.1043, 7.1042, 7.1042, 7.104, 7.1037, 7.1034, 7.1031, 7.1029, 7.1035, 7.1035, 7.1042, 7.1042, 7.1048, 7.1046, 7.1048, 7.1039, 7.1045, 7.1043, 7.1041, 7.1039, 7.1044, 7.1042, 7.1049, 7.1048, 7.1047, 7.1045, 7.1051, 7.1048, 7.1047, 7.1046, 7.1052, 7.105, 7.105, 7.1049, 7.105, 7.1047, 7.1046, 7.1044, 7.1042, 7.1047, 7.1054, 7.1052, 7.1049, 7.1049, 7.1048, 7.1045, 7.1049, 7.1047, 7.1046, 7.1061, 7.1067, 7.1067, 7.1068, 7.1067, 7.1065, 7.1072, 7.1069, 7.1069, 7.1067, 7.1065, 7.1082, 7.1082, 7.1082, 7.1075, 7.1073, 7.1092, 7.109, 7.1088, 7.1099, 7.1097, 7.1095, 7.1094, 7.1099, 7.11, 7.1097, 7.1096, 7.1115, 7.1124, 7.1122, 7.1129, 7.1127, 7.1125, 7.1124, 7.1149, 7.1147, 7.1145, 7.1153, 7.1151, 7.1149, 7.1156, 7.1156, 7.1181, 7.1208, 7.1205, 7.121, 7.1208, 7.1206, 7.1213, 7.1223, 7.1229, 7.1226, 7.1224, 7.1222, 7.1219, 7.1228, 7.1233, 7.1232, 7.123, 7.1227, 7.1233, 7.123, 7.1228, 7.1227, 7.1225, 7.1234, 7.1234, 7.1242, 7.1241, 7.1261, 7.1267, 7.1266, 7.1264, 7.1262, 7.126, 7.1257, 7.1254, 7.1251, 7.1256, 7.1254, 7.126, 7.1258, 7.1256, 7.1262, 7.1259, 7.1264, 7.1261, 7.1259, 7.1256, 7.1262, 7.1261, 7.1259, 7.1257, 7.1254, 7.1252, 7.125, 7.1248, 7.1254, 7.1253, 7.1251, 7.125, 7.1249, 7.1255, 7.1253, 7.1252, 7.1257, 7.1255, 7.1263, 7.127, 7.127, 7.1268, 7.1282, 7.128, 7.1278, 7.1294, 7.1292, 7.129, 7.1288, 7.128, 7.1289, 7.1296, 7.1314, 7.1313, 7.131, 7.131, 7.1307, 7.1305, 7.1302, 7.1326, 7.1323, 7.1359, 7.1366, 7.1373, 7.1371, 7.137, 7.1369, 7.1367, 7.1365, 7.137, 7.1368, 7.1367, 7.1364, 7.1363, 7.1369, 7.1367, 7.1364, 7.1361, 7.1359, 7.1356, 7.1353, 7.1351, 7.1349, 7.1346, 7.1345, 7.1351, 7.1348, 7.1346, 7.1343, 7.1341, 7.1339, 7.1337, 7.1334, 7.1339, 7.1337, 7.1335, 7.1336, 7.1335, 7.1333, 7.1339, 7.1337, 7.1335, 7.1334, 7.134, 7.1338, 7.1344, 7.135, 7.1348, 7.1346, 7.1352, 7.135, 7.1347, 7.1345, 7.135, 7.1348, 7.1346, 7.1351, 7.1348, 7.1345, 7.1343, 7.1341, 7.1338, 7.1335, 7.134, 7.1337, 7.1334, 7.1332, 7.1329, 7.1335, 7.1332, 7.1329, 7.1326, 7.1324, 7.1329, 7.1327, 7.1332, 7.1329, 7.1326, 7.1323, 7.1321, 7.1326, 7.1324, 7.1314, 7.1319, 7.1318, 7.1316, 7.1313, 7.1319, 7.1318, 7.1324, 7.133, 7.1328, 7.1343, 7.1334, 7.1331, 7.1322, 7.1313, 7.1311, 7.131, 7.1308, 7.1306, 7.1304, 7.1302, 7.1301, 7.1298, 7.1296, 7.1302, 7.1301, 7.1307, 7.1304, 7.1301, 7.1299, 7.1298, 7.1304, 7.1301, 7.13, 7.1298, 7.1296, 7.1293, 7.1291, 7.129, 7.1288, 7.1287, 7.1285, 7.1282, 7.1295, 7.1293, 7.1291, 7.1289, 7.1289, 7.1288, 7.1302, 7.13, 7.1307, 7.1314, 7.1312, 7.1311, 7.131, 7.1308, 7.1306, 7.1303, 7.1309, 7.1307, 7.1305, 7.1311], '192.168.122.114': [6.0153, 5.7533, 7.5716, 8.4394, 7.8914, 7.6347, 7.5224, 7.3214, 7.1851, 7.627, 7.5463, 7.3739, 7.2576, 7.2155, 7.5487, 7.4595, 7.3862, 7.6098, 7.5682, 7.4751, 7.404, 7.3719, 7.29, 7.4608, 7.3801, 7.3053, 7.2653, 7.4213, 7.3612, 7.3248, 7.3264, 7.2988, 7.246, 7.1928, 7.1667, 7.1271, 7.1002, 6.9852, 6.95, 6.9186, 6.8866, 6.8562, 6.862, 6.8321, 6.8049, 6.7757, 6.7466, 6.624, 6.6105, 6.5964, 6.7231, 6.7248, 6.7981, 6.7991, 6.8001000000000005, 6.8828, 6.857, 6.8526, 6.8443, 6.8212, 6.8043, 6.8768, 6.8588, 6.7736, 6.7766, 6.7597, 6.7381, 6.7193, 6.7118, 6.6914, 6.7438, 6.7366, 6.735, 6.7347, 6.7904, 6.7872, 6.7729, 6.7557, 6.7445, 6.7261, 6.7087, 6.7098, 6.7096, 6.7038, 6.6957, 6.6796, 6.6681, 6.7313, 6.7754, 6.7657, 6.7573, 6.7434, 6.7898, 6.8553, 6.8436, 6.8389, 6.8799, 6.9295, 6.9679, 6.9638, 6.9482, 6.9425, 6.9265, 6.9128, 6.898, 6.8917, 6.8382, 6.8331, 6.8199, 6.807, 6.7937, 6.7814, 6.77, 6.7653, 6.753, 6.7613, 6.7559, 6.7537, 6.7511, 6.7541, 6.7499, 6.7416, 6.7311, 6.7197, 6.708, 6.7087, 6.666, 6.6566, 6.6487, 6.6417, 6.6724, 6.6705, 6.6617, 6.6206, 6.6116, 6.6062, 6.5986, 6.5888, 6.5828, 6.5842, 6.6154, 6.6443, 6.6405, 6.6678, 6.663, 6.6558, 6.6519, 6.6533, 6.6498, 6.6485, 6.643, 6.6366, 6.6295, 6.6384, 6.6763, 6.6405, 6.6355, 6.6649, 6.6602, 6.6606, 6.6856, 6.6899, 6.6918, 6.6854, 6.6767, 6.645, 6.6751, 6.6694, 6.666, 6.6783, 6.6492, 6.6514, 6.7255, 6.7543, 6.749, 6.7412, 6.7366, 6.7298, 6.7232, 6.7194, 6.7148, 6.709, 6.7936, 6.7868, 6.7801, 6.7737, 6.7718, 6.7643, 6.7674, 6.7634, 6.7572, 6.7532, 6.7471, 6.7407, 6.7378, 6.732, 6.7287, 6.7516, 6.7478, 6.747, 6.7707, 6.7957, 6.8258, 6.8435, 6.838, 6.8312, 6.8303, 6.8274, 6.8292, 6.8274, 6.8028, 6.7963, 6.7916, 6.7875, 6.8078, 6.8015, 6.7982, 6.8173, 6.811, 6.8295, 6.8229, 6.8217, 6.7973, 6.7918, 6.7891, 6.787, 6.7832, 6.8016, 6.7964, 6.815, 6.8084, 6.8049, 6.8236, 6.8177, 6.8118, 6.8069, 6.804, 6.8006, 6.8225, 6.8402, 6.8383, 6.8394, 6.835, 6.8361, 6.8348, 6.83, 6.8466, 6.8527, 6.8505, 6.8445, 6.8614, 6.8555, 6.8522, 6.8536, 6.8539, 6.8481, 6.8447, 6.8415, 6.837, 6.8553, 6.8691, 6.888, 6.8835, 6.8794, 6.8757, 6.8901, 6.8872, 6.8833, 6.8776, 6.9081, 6.904, 6.9032, 6.9195, 6.9173, 6.9153, 6.9112, 6.8917, 6.8906, 6.8889, 6.8846, 6.8863, 6.8817, 6.8817, 6.8813, 6.8814, 6.8957, 6.8942, 6.8884, 6.8828, 6.8974, 6.8955, 6.8909, 6.8894, 6.8848, 6.8843, 6.8807, 6.8773, 6.8739, 6.8912, 6.892200000000001, 6.893200000000001, 6.894200000000001, 6.895200000000002, 6.9073, 6.9071, 6.9205, 6.9011, 6.9006, 6.8968, 6.9104, 6.9049, 6.9188, 6.9344, 6.9354000000000005, 6.9317, 6.9289, 6.9424, 6.9415, 6.939, 6.9339, 6.9289, 6.9242, 6.9526, 6.951, 6.9477, 6.9432, 6.9387, 6.9377, 6.9357, 6.9307, 6.9428, 6.9414, 6.9369, 6.9494, 6.9459, 6.9476, 6.9444, 6.9397, 7.0937, 7.0773, 7.0725, 7.0865, 7.085, 7.0827, 7.0778, 7.0761, 7.0752, 7.0863, 7.0832, 7.0944, 7.0916, 7.0889, 7.0876, 7.0833, 7.0823, 7.0798, 7.077, 7.0754, 7.0888, 7.1013, 7.0975, 7.0945, 7.0907, 7.0888, 7.1004, 7.0958, 7.092, 7.1019, 7.086, 7.0821, 7.0793, 7.0794, 7.0763, 7.0736, 7.0833, 7.0841, 7.0817, 7.0772, 7.0741, 7.071, 7.0692, 7.0647, 7.0613, 7.0567, 7.0539, 7.0499, 7.0594, 7.0549, 7.0644, 7.0604, 7.0705, 7.0571, 7.0552, 7.0533, 7.0625, 7.0609, 7.0714, 7.0679, 7.0661, 7.0752, 7.074, 7.0702, 7.0798, 7.088, 7.0838, 7.0929, 7.1023, 7.0986, 7.1083, 7.1064, 7.1033, 7.1037, 7.1011, 7.097, 7.0931, 7.0901, 7.088, 7.0861, 7.0953, 7.0921, 7.0907, 7.0905, 7.0873, 7.0848, 7.0826, 7.0821, 7.0785, 7.0771, 7.0736, 7.0828, 7.0792, 7.079, 7.0767, 7.0736, 7.0831, 7.0823, 7.0792, 7.0793, 7.0783, 7.0899, 7.092, 7.1003, 7.1005, 7.0964, 7.0928, 7.089, 7.0861, 7.0937, 7.091, 7.0885, 7.0858, 7.0821, 7.0781, 7.0871, 7.0833, 7.0817, 7.0781, 7.0861, 7.0844, 7.0808, 7.0897, 7.0858, 7.0938, 7.0901, 7.0864, 7.0827, 7.0801, 7.0821, 7.0808, 7.0888, 7.0857, 7.0822, 7.0911, 7.119, 7.1201, 7.1167, 7.1239, 7.1224, 7.12, 7.1164, 7.1127, 7.1116, 7.1129, 7.1104, 7.1178, 7.1153, 7.1226, 7.1213, 7.118, 7.1145, 7.111, 7.1073, 7.1089, 7.1061, 7.1052, 7.1132, 7.1204, 7.1079, 7.1062, 7.1154, 7.1136, 7.1102, 7.1067, 7.1043, 7.1135, 7.1111, 7.1207, 7.1204, 7.1193, 7.1157, 7.1126, 7.1114, 7.1088, 7.1068, 7.1057, 7.121, 7.1187, 7.118, 7.1177, 7.1263, 7.1228, 7.1219, 7.1293, 7.1287, 7.1362, 7.134, 7.1354, 7.135, 7.1329, 7.1301, 7.1306, 7.1286, 7.1369, 7.1392, 7.1402, 7.1373, 7.137, 7.1363, 7.1338, 7.1405, 7.1416, 7.1405, 7.1387, 7.1359, 7.1344, 7.1313, 7.1287, 7.1272, 7.1246, 7.1348, 7.1328, 7.1401, 7.139, 7.1371, 7.1337, 7.1307, 7.1288, 7.127, 7.1253, 7.1229, 7.1229, 7.1202, 7.1272, 7.1256, 7.1233, 7.1227, 7.1197, 7.1176, 7.1146, 7.1207, 7.1185, 7.116, 7.1127, 7.1112, 7.1088, 7.1147, 7.1125, 7.1124, 7.1096, 7.1078, 7.1143, 7.1117, 7.1111, 7.112, 7.1113, 7.112, 7.1104, 7.1079, 7.1072, 7.1047, 7.1022, 7.1007, 7.0982, 7.105, 7.1037, 7.1005, 7.0985, 7.0968, 7.0939, 7.1442, 7.1424, 7.1481, 7.1463, 7.145, 7.142, 7.139, 7.1394, 7.1386, 7.145, 7.1511, 7.1484, 7.1456, 7.1442, 7.1416, 7.14, 7.1369, 7.136, 7.135, 7.1333, 7.1318, 7.154, 7.1517, 7.1501, 7.1489, 7.1549, 7.156, 7.1535, 7.1521, 7.1492, 7.147, 7.1445, 7.1421, 7.1398, 7.1373, 7.1344, 7.1323, 7.1309, 7.1287, 7.1276, 7.1387, 7.1359, 7.1349, 7.1322, 7.1309, 7.1288, 7.1345, 7.1404, 7.1377, 7.1357, 7.1337, 7.1328, 7.13, 7.1358, 7.126, 7.1234, 7.1225, 7.1203, 7.1174, 7.1151, 7.1131, 7.1128, 7.1111, 7.1166, 7.1142, 7.1128, 7.1113, 7.1103, 7.1171, 7.1163, 7.1216, 7.1275, 7.1248, 7.1319, 7.1299, 7.128, 7.1337, 7.1314, 7.1299, 7.1363, 7.142, 7.1407, 7.141, 7.1399, 7.1386, 7.1409, 7.1398, 7.1385, 7.1359, 7.134, 7.1315, 7.1381, 7.1354, 7.1487, 7.1462, 7.1437, 7.1417, 7.1332, 7.1458, 7.165, 7.1637, 7.2035, 7.2025, 7.2013, 7.2003, 7.198, 7.1959, 7.1963, 7.1955, 7.1938, 7.1931, 7.1925, 7.1905, 7.1885, 7.1825, 7.1837, 7.1891, 7.1879, 7.1853, 7.186, 7.2145, 7.2131, 7.2112, 7.2092, 7.2072, 7.2062, 7.2041, 7.2019, 7.1997, 7.1919, 7.1912, 7.1887, 7.1861, 7.184, 7.182, 7.1805, 7.1782, 7.1769, 7.1747, 7.1757, 7.1736, 7.1715, 7.1767, 7.1747, 7.1739, 7.1792, 7.1778, 7.1767, 7.1752, 7.1734, 7.1715, 7.1771, 7.1766, 7.1745, 7.1736, 7.1727, 7.1774, 7.1767, 7.1747, 7.1722, 7.1712, 7.1699, 7.1747, 7.174, 7.1787, 7.1764, 7.174, 7.1715, 7.1696, 7.1679, 7.1665, 7.1788, 7.1832, 7.1863, 7.1845, 7.1902, 7.1898, 7.1883, 7.1936, 7.1916, 7.1892, 7.1944, 7.1986, 7.1966, 7.1953, 7.2005, 7.1984, 7.2039, 7.2018, 7.2061, 7.204, 7.2022, 7.1946, 7.1922, 7.1898, 7.1875, 7.1859, 7.1835, 7.1811, 7.1858, 7.1834, 7.1819, 7.1869, 7.1912, 7.189, 7.1938, 7.1925, 7.1849, 7.1828, 7.1877, 7.1922, 7.1964, 7.2016, 7.2059, 7.2044, 7.216, 7.2141, 7.2186, 7.2111, 7.2088, 7.2074, 7.2054, 7.2041, 7.2031, 7.2029, 7.2012, 7.2001, 7.205, 7.2097, 7.2077, 7.2054, 7.2047, 7.2026, 7.202, 7.2005, 7.1997, 7.1978, 7.1982, 7.2029, 7.2026, 7.2073, 7.2115, 7.2096, 7.2077, 7.2054, 7.2101, 7.2091, 7.207, 7.2115, 7.2098, 7.2089, 7.2073, 7.2056, 7.2037, 7.2021, 7.1999, 7.1985, 7.1963, 7.1949, 7.1928, 7.1915, 7.1903, 7.1887, 7.1873, 7.1861, 7.1859, 7.1841, 7.1823, 7.1867, 7.1917, 7.1957, 7.194, 7.1922, 7.1963, 7.1887, 7.1989, 7.1981, 7.2044, 7.2092, 7.207, 7.2062, 7.204, 7.2024, 7.207, 7.2049, 7.2028, 7.2011, 7.1991, 7.2033, 7.2026, 7.2021, 7.2006, 7.1998, 7.1978, 7.1968, 7.1963, 7.1956, 7.1944, 7.1924, 7.1906, 7.1893, 7.1883, 7.1872, 7.1863, 7.1848, 7.1833, 7.1812, 7.1796, 7.1798, 7.184, 7.1824, 7.1812, 7.1794, 7.1775, 7.1765, 7.1749, 7.1749, 7.1739, 7.1724, 7.1708, 7.1699, 7.1691, 7.1681, 7.1673, 7.1655, 7.1651, 7.1695, 7.1684, 7.1672, 7.1708, 7.1695, 7.1678, 7.1659, 7.1589, 7.1573, 7.1558, 7.1544, 7.1588, 7.1577, 7.1564, 7.1546, 7.1537, 7.1582, 7.1567, 7.1554, 7.1537, 7.1523, 7.1515, 7.1503, 7.1489, 7.1477, 7.1464, 7.141, 7.135, 7.134, 7.1322, 7.1309, 7.1358, 7.1343, 7.1337, 7.1324, 7.1308, 7.1305, 7.1305, 7.129, 7.1278, 7.1264, 7.1253, 7.1243, 7.1237, 7.1227, 7.1266, 7.1308, 7.1293, 7.1275, 7.132, 7.1357, 7.1347, 7.133, 7.1325, 7.1318, 7.1307, 7.129, 7.1274, 7.1256, 7.1257, 7.1239, 7.1223, 7.1213, 7.1209, 7.1202, 7.1196, 7.1183, 7.1174, 7.117, 7.1167, 7.1211, 7.12, 7.1184, 7.1181, 7.1165, 7.1154, 7.1151, 7.1192, 7.1178, 7.1167, 7.1155, 7.114, 7.1138, 7.1177, 7.1216, 7.1204, 7.1241, 7.1278, 7.1267, 7.1279, 7.1318, 7.1308, 7.1292, 7.1334, 7.1326, 7.1476, 7.1465, 7.1457, 7.145, 7.149, 7.1481, 7.1475, 7.1463, 7.1446, 7.143, 7.1423, 7.146, 7.1494, 7.1492, 7.1483, 7.147, 7.1411, 7.1352, 7.1292, 7.1277, 7.1272, 7.1214, 7.1253, 7.1256, 7.1245, 7.1248, 7.124, 7.1279, 7.1264, 7.1299, 7.1336, 7.132, 7.1354, 7.1388, 7.1371, 7.1372, 7.1412, 7.1395, 7.1382, 7.1426, 7.1417, 7.1401, 7.1401, 7.1388, 7.1376, 7.136, 7.1344, 7.1328, 7.1319, 7.1315, 7.1311, 7.1299, 7.1283, 7.127, 7.1261, 7.1256, 7.124, 7.123, 7.1229, 7.1216, 7.1255, 7.1293, 7.1285, 7.1275, 7.1259, 7.1244, 7.1234, 7.1224, 7.1174, 7.112, 7.1111, 7.1095, 7.1127, 7.1111, 7.1108, 7.1097, 7.1084, 7.1069, 7.1058, 7.1086, 7.108, 7.1066, 7.1014, 7.1006, 7.0993, 7.0981, 7.0966, 7.095, 7.0949, 7.0944, 7.0982, 7.0969, 7.0954, 7.094, 7.0926, 7.0927, 7.0915, 7.0953, 7.0946, 7.0933, 7.0932, 7.093, 7.0924, 7.0964, 7.096, 7.0953, 7.0938, 7.0972, 7.0958, 7.091, 7.09, 7.0943, 7.0934, 7.0929, 7.092, 7.0906, 7.0895, 7.0889, 7.093, 7.0965, 7.1017, 7.1006, 7.1043, 7.1038, 7.0984, 7.098, 7.0974, 7.0964, 7.095, 7.0987, 7.1019, 7.1003, 7.0947, 7.0936, 7.0968, 7.0985, 7.0979, 7.0971, 7.0956, 7.0954, 7.099, 7.0975, 7.0978, 7.0964, 7.0909, 7.0908, 7.0896, 7.0881, 7.0874, 7.0907, 7.0901, 7.0897, 7.0892, 7.0881, 7.0881, 7.0875, 7.0823, 7.081, 7.0756, 7.0752, 7.0746, 7.0732, 7.0719, 7.0704, 7.0691, 7.0679, 7.0665, 7.0651, 7.0637, 7.0632, 7.0626, 7.0617, 7.0606, 7.0591, 7.0542, 7.0531, 7.0521, 7.0512, 7.0497, 7.0483, 7.0473, 7.0459, 7.0444, 7.0434, 7.0423, 7.043, 7.0427, 7.046, 7.0407, 7.0356, 7.0385, 7.0415, 7.0405, 7.0395, 7.0386, 7.0372, 7.0358, 7.0361, 7.0365, 7.0355, 7.0314, 7.0349, 7.0395, 7.0389, 7.0376, 7.0409, 7.0408, 7.0404, 7.0393, 7.0386, 7.0374, 7.0414, 7.04, 7.0435, 7.0389, 7.0378, 7.0371, 7.0322, 7.0314, 7.0302, 7.029, 7.0283, 7.0234, 7.022, 7.0217, 7.0204, 7.0193, 7.0185, 7.0174, 7.017, 7.012, 7.0109, 7.0142, 7.0139, 7.0137, 7.0177, 7.017, 7.0125, 7.0111, 7.0103, 7.0094, 7.0043, 6.9992, 7.0002, 6.9955, 6.9945, 6.9982, 6.9977, 7.0011, 6.9999, 6.9993, 6.9983, 6.9982, 6.9971, 7.0004, 6.9994, 7.003, 7.0024, 7.0021, 7.0011, 7.0004, 7.0002, 7.0155, 7.0143, 7.0132, 7.0121, 7.0116, 7.0152, 7.0141, 7.0174, 7.0167, 7.0161, 7.0188, 7.0175, 7.0172, 7.0207, 7.0209, 7.0207, 7.0165, 7.0196, 7.0226, 7.0215, 7.0214, 7.0209, 7.0203, 7.0235, 7.0267, 7.0298, 7.0329, 7.0324, 7.0323, 7.0314, 7.0308, 7.034, 7.0372, 7.038200000000001, 7.037, 7.0322, 7.0316, 7.0304, 7.0292, 7.0284, 7.0273, 7.0307, 7.0298, 7.0295, 7.0283, 7.0273, 7.0303, 7.0294, 7.0281, 7.027, 7.0280000000000005, 7.0268, 7.03, 7.0296, 7.0286, 7.028, 7.0268, 7.0255, 7.0265, 7.0369, 7.0358, 7.0351, 7.034, 7.0327, 7.0322, 7.0312, 7.0269, 7.0298, 7.0286, 7.0243, 7.02, 7.0155, 7.0108, 7.0104, 7.0104, 7.0096, 7.0087, 7.0075, 7.0102, 7.0102, 7.0091, 7.0088, 7.0075, 7.0028, 7.0019, 7.0007, 7.004, 7.003, 7.002, 7.0012, 6.997, 6.9964, 6.9965, 6.9954, 6.9941, 6.9933, 6.9921, 6.9922, 6.9915, 6.9904, 6.9896, 6.9925, 6.9913, 6.9907, 6.9938, 6.9927, 6.9926, 6.9886, 6.989, 6.992, 6.9912, 6.9948, 6.991, 6.9902, 6.9901, 6.9889, 6.9919, 6.9908, 6.9935, 6.9924, 6.9913, 6.9903, 6.9892, 6.9887, 6.9875, 6.9873, 6.9871, 6.9865, 6.9857, 6.9858, 6.9847, 6.9849, 6.9877, 6.988700000000001, 6.9879, 6.991, 6.9898, 6.9888, 6.9877, 6.9866, 6.9856, 6.9855, 6.9844, 6.9836, 6.983, 6.9862, 6.9855, 6.9844, 6.9835, 6.9834, 6.9826, 6.982, 6.9811, 6.9805, 6.9798, 6.9787, 6.9814, 6.9777, 6.9736, 6.9739, 6.9694, 6.9684, 6.9674, 6.9666, 6.9662, 6.9672, 6.9682, 6.9672, 6.9701, 6.9694, 6.9691, 6.9769, 6.9758, 6.979, 6.9817, 6.9809, 6.977, 6.973, 6.9687, 6.9681, 6.9671, 6.9662, 6.9656, 6.9646, 6.9642, 6.9604, 6.9631, 6.9623, 6.9581, 6.9574, 6.9566, 6.9557, 6.9546, 6.9546, 6.954, 6.953, 6.9523, 6.9534, 6.9524, 6.9523, 6.9514, 6.9505, 6.9535, 6.9526, 6.9517, 6.9507, 6.9495, 6.9486, 6.9477, 6.9466, 6.9495, 6.9489, 6.9478, 6.9467, 6.9477, 6.9468, 6.9463, 6.949, 6.95, 6.9510000000000005, 6.95, 6.9502, 6.949, 6.948, 6.9474, 6.947, 6.9464, 6.9491, 6.948, 6.9469, 6.9462, 6.9459, 6.9419, 6.942, 6.9443, 6.9442, 6.9432, 6.9455, 6.9488, 6.9482, 6.9487, 6.9478, 6.9474, 6.9471, 6.9496, 6.9486, 6.948, 6.9473, 6.9463, 6.9453, 6.9443, 6.9435, 6.9428, 6.9427, 6.9421, 6.9457, 6.9447, 6.9446, 6.9436, 6.9425, 6.9418, 6.9408, 6.9399, 6.943, 6.9423, 6.9419, 6.941, 6.9407, 6.9432, 6.9442, 6.947, 6.9461, 6.9503, 6.9556, 6.9554, 6.9545, 6.9536, 6.956, 6.9622, 6.9717, 6.9712, 6.9702, 6.9692, 6.9691, 6.968, 6.9679, 6.967, 6.9696, 6.9692, 6.9695, 6.9689, 6.9683, 6.9711, 6.9702, 6.9696, 6.9688, 6.9685, 6.9677, 6.967, 6.9664, 6.9659, 6.965, 6.9648, 6.9643, 6.9684, 6.9728, 6.9756, 6.9746, 6.9706, 6.9696, 6.9688, 6.9714, 6.9705, 6.9695, 6.9795, 6.9805, 6.9815000000000005, 6.9805, 6.9798, 6.9788, 6.9789, 6.9782, 6.9773, 6.9763, 6.9753, 6.9753, 6.9746, 6.9739, 6.9729, 6.9739, 6.974900000000001, 6.974, 6.9731, 6.9721, 6.9712, 6.9702, 6.9728, 6.972, 6.9753, 6.9789, 6.9757, 6.976, 6.9771, 6.9831, 6.9832, 6.9865, 6.9857, 6.9879, 6.9907, 6.9898, 6.9897, 6.9907, 6.9932, 6.9965, 6.996, 6.9987, 6.9984, 7.001, 7.0004, 7.0013, 7.0043, 7.0036, 7.0027, 7.0026, 7.0036000000000005, 7.0062, 7.0059, 7.0051, 7.0052, 7.0049, 7.0045, 7.0037, 7.0044, 7.0072, 7.0068, 7.0072, 7.0069, 7.0061, 7.0064, 7.0089, 7.0081, 7.0072, 7.0065, 7.0059, 7.005, 7.0041, 7.004, 7.003, 7.0056, 7.002, 7.006, 7.0087, 7.0083, 7.0078, 7.0105, 7.0102, 7.0093, 7.0092, 7.0088, 7.0085, 7.0082, 7.0107, 7.0102, 7.0098, 7.0097, 7.0094, 7.0091, 7.0083, 7.0083, 7.0095, 7.0088, 7.0091, 7.0098, 7.0088, 7.0083, 7.0073, 7.0083, 7.0093000000000005, 7.0088, 7.0078, 7.0103, 7.0125, 7.015, 7.0144, 7.0154000000000005, 7.016400000000001, 7.0154, 7.018, 7.019, 7.0200000000000005, 7.0235, 7.0229, 7.0223, 7.0244, 7.0239, 7.0229, 7.0223, 7.0245, 7.0271, 7.0263, 7.0261, 7.0255, 7.025, 7.0242, 7.024, 7.0303, 7.0298, 7.0327, 7.0354, 7.0348, 7.0341, 7.0336, 7.0331, 7.0328, 7.0329, 7.0351, 7.0373, 7.0393, 7.0389, 7.0414, 7.0406, 7.0371, 7.0366, 7.0357, 7.0367, 7.0377, 7.037, 7.0362, 7.0359, 7.0352, 7.0347, 7.0339, 7.0332, 7.0296, 7.0289, 7.0308, 7.0311, 7.0308, 7.0298, 7.0295, 7.0286, 7.0281, 7.0275, 7.0269, 7.0262, 7.0288, 7.0287, 7.0278, 7.0288, 7.0281, 7.0276, 7.0297, 7.0319, 7.0309, 7.0301, 7.0352, 7.0317, 7.031, 7.0301, 7.0293, 7.0285, 7.0277, 7.028700000000001, 7.0345, 7.035500000000001, 7.0347, 7.0341, 7.0332, 7.0324, 7.0317, 7.0315, 7.0309, 7.03, 7.031000000000001, 7.0303, 7.0303, 7.0295, 7.0316, 7.0342, 7.0339, 7.0331, 7.0326, 7.0318, 7.0348, 7.0372, 7.0364, 7.0359, 7.0352, 7.0347, 7.037, 7.0361, 7.0361, 7.0353, 7.0348, 7.0411, 7.0411, 7.0405, 7.0426, 7.0421, 7.0412, 7.0407, 7.041, 7.0406, 7.0398, 7.0389, 7.038, 7.04, 7.039, 7.0382, 7.0402, 7.0395, 7.0388, 7.0413, 7.0406, 7.04, 7.042, 7.0416, 7.0412, 7.0431, 7.0452, 7.0447, 7.044, 7.045, 7.046, 7.0482, 7.0476, 7.0472, 7.0491, 7.0486, 7.0479, 7.0484, 7.0478, 7.0502, 7.0533, 7.0528, 7.0523, 7.0516, 7.054, 7.0539, 7.0531, 7.0554, 7.0576, 7.0569, 7.0562, 7.0554, 7.0607, 7.0603, 7.0598, 7.0601, 7.0599, 7.0592, 7.0588, 7.0579, 7.0571, 7.0564, 7.0557, 7.0558, 7.0553, 7.0575, 7.0567, 7.056, 7.0553, 7.0552, 7.0548, 7.0544, 7.0537, 7.0532, 7.0526, 7.0521, 7.0514, 7.0507, 7.0501, 7.0492, 7.0485, 7.0477, 7.047, 7.0465, 7.0458, 7.0456, 7.0448, 7.044, 7.045, 7.046, 7.0519, 7.0517, 7.0536, 7.0528, 7.0551, 7.0545, 7.0537, 7.0529, 7.0528, 7.0523, 7.0545, 7.0542, 7.0534, 7.0529, 7.053, 7.0529, 7.0522, 7.0518, 7.0515, 7.051, 7.0531, 7.0553, 7.0563, 7.057300000000001, 7.0569, 7.0562, 7.0554, 7.0552, 7.0546, 7.0569, 7.057, 7.0562, 7.0556, 7.0547, 7.0539, 7.0531, 7.0523, 7.0514, 7.0507, 7.0505, 7.05, 7.0495, 7.0488, 7.0483, 7.0484, 7.0487, 7.0563, 7.0565, 7.0562, 7.0581, 7.0583, 7.0574, 7.0576, 7.0573, 7.0572, 7.0594, 7.0613, 7.0609, 7.063, 7.0622, 7.0594, 7.0564, 7.0559, 7.0553, 7.0572, 7.0593, 7.059, 7.0586, 7.0584, 7.0579, 7.0575, 7.0566, 7.0564, 7.0563, 7.0564, 7.0557, 7.055, 7.0545, 7.0565, 7.0585, 7.0583, 7.058, 7.0575, 7.0572, 7.0564, 7.056, 7.0552, 7.0552, 7.0571, 7.0566, 7.0559, 7.0554, 7.0548, 7.0548, 7.0545, 7.0538, 7.0582, 7.0716, 7.0711, 7.0703, 7.0697, 7.0702, 7.0697, 7.069, 7.0687, 7.0679, 7.068, 7.0676, 7.0695, 7.069, 7.0684, 7.0677, 7.0677, 7.067, 7.0645, 7.0643, 7.0636, 7.0629, 7.0622, 7.0645, 7.0667, 7.0662, 7.068, 7.0677, 7.0669, 7.0661, 7.0656, 7.0654, 7.0692, 7.070200000000001, 7.071200000000001, 7.0708, 7.0705, 7.0701, 7.0721, 7.0713, 7.0705, 7.0703, 7.0695, 7.0741, 7.0737, 7.0759, 7.0781, 7.0781, 7.0801, 7.0818, 7.0838, 7.083, 7.0827, 7.0823, 7.0818, 7.0837, 7.0829, 7.0821, 7.0841, 7.0862, 7.0881, 7.0874, 7.0844, 7.0836, 7.0831, 7.0841, 7.085100000000001, 7.0848, 7.0842, 7.0845, 7.0838, 7.0857, 7.0856, 7.0851, 7.0843, 7.0838, 7.0829, 7.0824, 7.0821, 7.0813, 7.0806, 7.0798, 7.0791, 7.0808, 7.0801, 7.0792, 7.0785, 7.0777, 7.0771, 7.0763, 7.0756, 7.0778, 7.0775, 7.0768, 7.076, 7.0756, 7.0748, 7.0741, 7.0733, 7.0724, 7.0716, 7.0711, 7.0712, 7.0704, 7.0723, 7.0716, 7.0718, 7.071, 7.0728, 7.0758, 7.075, 7.0742, 7.0739, 7.0732, 7.075, 7.0742, 7.0712, 7.0705, 7.0723, 7.0753, 7.0745, 7.0743, 7.0742, 7.0733, 7.0727, 7.0727, 7.0697, 7.0672, 7.0668, 7.0664, 7.0786, 7.078, 7.0858, 7.0865, 7.0865, 7.087, 7.0864, 7.0858, 7.0855, 7.0852, 7.0846, 7.0843, 7.0838, 7.0808, 7.0801, 7.0823, 7.0819, 7.0813, 7.0808, 7.0827, 7.0824, 7.0818, 7.0816, 7.0813, 7.0808, 7.0805, 7.0823, 7.0822, 7.0816, 7.0814, 7.081, 7.0829, 7.0825, 7.0818, 7.0811, 7.0804, 7.0803, 7.0821, 7.082, 7.0791, 7.0784, 7.0802, 7.0797, 7.0796, 7.0794, 7.079, 7.0784, 7.0778, 7.0774, 7.0771, 7.0772, 7.0764, 7.0757, 7.0755, 7.0751, 7.0752, 7.0746, 7.0765, 7.0762, 7.0779, 7.0772, 7.0764, 7.0782, 7.0774, 7.0768, 7.0785, 7.0778, 7.0771, 7.077, 7.0764, 7.0782, 7.0778, 7.0771, 7.0768, 7.0785, 7.0777, 7.077, 7.0762, 7.0772, 7.0766, 7.076, 7.0761, 7.0758, 7.0777, 7.0772, 7.0767, 7.0765, 7.076, 7.0762, 7.0782, 7.0802, 7.0798, 7.0795, 7.0791, 7.0808, 7.0805, 7.08, 7.0793, 7.0789, 7.0783, 7.0777, 7.0795, 7.0789, 7.0784, 7.0777, 7.0773, 7.0766, 7.0765, 7.0763, 7.076, 7.0754, 7.0747, 7.0757, 7.0755, 7.0749, 7.0745, 7.0738, 7.0736, 7.0731, 7.073, 7.0749, 7.0743, 7.0761, 7.0754, 7.073, 7.0726, 7.0719, 7.0713, 7.0706, 7.0701, 7.0694, 7.069, 7.0687, 7.0704, 7.0697, 7.069, 7.0708, 7.0725, 7.0764, 7.0781, 7.0774, 7.0767, 7.0762, 7.0756, 7.0748, 7.0741, 7.0758, 7.0756, 7.075, 7.0722, 7.0719, 7.0713, 7.0707, 7.07, 7.0717, 7.0711, 7.0706, 7.0723, 7.07, 7.0677, 7.0669, 7.0665, 7.067, 7.0667, 7.0686, 7.0696, 7.0689, 7.0684, 7.0677, 7.067, 7.0663, 7.0655, 7.0651, 7.0646, 7.0643, 7.0639, 7.0632, 7.0626, 7.0644, 7.0637, 7.0641, 7.0633, 7.0631, 7.0649, 7.0642, 7.0635, 7.0631, 7.0649, 7.0659, 7.0669, 7.0662, 7.0655, 7.0649, 7.0645, 7.0618, 7.059, 7.0583, 7.0576, 7.0586, 7.0596000000000005, 7.0591, 7.0586, 7.0579, 7.0596, 7.0592, 7.0608, 7.0601, 7.0596, 7.059, 7.0582, 7.0574, 7.058400000000001, 7.059400000000001, 7.0587, 7.056, 7.0581, 7.0577, 7.0587, 7.0605, 7.0597, 7.059, 7.0607, 7.0651, 7.065, 7.065, 7.065, 7.0645, 7.0638, 7.0655, 7.0656, 7.0653, 7.0652, 7.0671, 7.0669, 7.0684, 7.0702, 7.072, 7.0717, 7.071, 7.0703, 7.0698, 7.0693, 7.069, 7.0704, 7.0721, 7.0695, 7.0688, 7.0704, 7.0701, 7.0695, 7.0691, 7.0684, 7.0676, 7.0669, 7.0666, 7.0665, 7.0665, 7.0661, 7.0654, 7.0653, 7.0646, 7.0645, 7.0642, 7.064, 7.0668, 7.0672, 7.0688, 7.066, 7.0678, 7.0676, 7.0669, 7.0668, 7.0668, 7.067, 7.0664, 7.0656, 7.0675, 7.0671, 7.0668, 7.0663, 7.0678, 7.0674, 7.0668, 7.0661, 7.0657, 7.0674, 7.0671, 7.0667, 7.0665, 7.0659, 7.0655, 7.0653, 7.065, 7.0646, 7.062, 7.0616, 7.0622, 7.0621, 7.0599, 7.0594, 7.0588, 7.0565, 7.0575, 7.0551, 7.0546, 7.0539, 7.0549, 7.0544, 7.0541, 7.0537, 7.0533, 7.0527, 7.052, 7.0516, 7.0512, 7.0508, 7.0501, 7.0499, 7.0514, 7.051, 7.0507, 7.0502, 7.0495, 7.0512, 7.0508, 7.0523, 7.052, 7.0513, 7.0508, 7.0505, 7.051500000000001, 7.0508, 7.0505, 7.0521, 7.0514, 7.0533, 7.0531, 7.0526, 7.0524, 7.0522, 7.0516, 7.0511, 7.051, 7.0503, 7.0505, 7.0498, 7.0515, 7.0509, 7.0509, 7.0485, 7.046, 7.0453, 7.0473, 7.0471, 7.0469, 7.0467, 7.0482, 7.0478, 7.0475, 7.0488, 7.0482, 7.0476, 7.0476, 7.0469, 7.0444, 7.044, 7.0455, 7.0462, 7.0457, 7.0453, 7.0447, 7.0422, 7.0417, 7.0412, 7.0406, 7.0406, 7.0401, 7.0398, 7.0415, 7.0425, 7.0421, 7.0438, 7.0431, 7.0424, 7.0419, 7.0435, 7.045, 7.045, 7.0448, 7.0443, 7.044, 7.0438, 7.0432, 7.0426, 7.0419, 7.0417, 7.0434, 7.041, 7.0405, 7.0402, 7.0428, 7.0428, 7.0465, 7.0461, 7.0496, 7.05, 7.05, 7.0479, 7.0494, 7.049, 7.0486, 7.048, 7.0474, 7.0471, 7.0465, 7.0463, 7.0456, 7.0456, 7.0449, 7.0442, 7.0457, 7.0454, 7.0448, 7.0466, 7.0461, 7.0454, 7.047, 7.0486, 7.0479, 7.0484, 7.0504, 7.0498, 7.0493, 7.0508, 7.0501, 7.0496, 7.0493, 7.0486, 7.05, 7.0496, 7.0512, 7.0527, 7.052, 7.0515, 7.0491, 7.0484, 7.0479, 7.048, 7.0498, 7.0492, 7.0487, 7.0482, 7.0476, 7.0474, 7.0468, 7.0483, 7.0499, 7.0494, 7.0472, 7.047, 7.0465, 7.0459, 7.0452, 7.0446, 7.044, 7.0434, 7.0431, 7.0429, 7.0446, 7.0443, 7.0422, 7.0418, 7.0412, 7.0409, 7.0404, 7.0421, 7.0415, 7.041, 7.0404, 7.044, 7.0457, 7.0452, 7.0446, 7.0461, 7.0437, 7.0431, 7.0424, 7.0439, 7.0433, 7.0427, 7.0421, 7.0452, 7.0448, 7.0442, 7.0459, 7.0453, 7.0449, 7.0445, 7.0441, 7.0437, 7.043, 7.0424, 7.0418, 7.0397, 7.0392, 7.0386, 7.0399, 7.0393, 7.0387, 7.0381, 7.0385, 7.0402, 7.0398, 7.0394, 7.0411, 7.0404, 7.0398, 7.0412, 7.0408, 7.0423, 7.0416, 7.041, 7.0404, 7.0397, 7.0391, 7.0367, 7.0363, 7.0379, 7.0463, 7.0477, 7.0471, 7.0488, 7.0464, 7.0457, 7.0454, 7.0485, 7.0483, 7.0479, 7.0475, 7.0455, 7.045, 7.0445, 7.0439, 7.0434, 7.0428, 7.0424, 7.042, 7.0436, 7.0432, 7.0429, 7.0426, 7.0425, 7.0421, 7.0419, 7.0414, 7.041, 7.0407, 7.0408, 7.0406, 7.0402, 7.0396, 7.0393, 7.0388, 7.0382, 7.0378, 7.0376, 7.0371, 7.0367, 7.0364, 7.0361, 7.0358, 7.0449, 7.0443, 7.046, 7.0456, 7.0457, 7.0433, 7.0412, 7.0408, 7.0406, 7.0401, 7.0418, 7.0434, 7.0432, 7.0427, 7.0422, 7.0426, 7.044, 7.0437, 7.0434, 7.0428, 7.0424, 7.0426, 7.0423, 7.0418, 7.0412, 7.0418, 7.0431, 7.0427, 7.0424, 7.0417, 7.0412, 7.0429, 7.0423, 7.0421, 7.0418, 7.0437, 7.0433, 7.0429, 7.0427, 7.0424, 7.0419, 7.0433, 7.0432, 7.0447, 7.0446, 7.0443, 7.0438, 7.0437, 7.045, 7.0445, 7.0459, 7.0475, 7.0469, 7.0486, 7.0487, 7.0484, 7.0478, 7.0474, 7.047, 7.0465, 7.0464, 7.048, 7.0479, 7.051, 7.0507, 7.0502, 7.0504, 7.0499, 7.0586, 7.0581, 7.0595, 7.0589, 7.0584, 7.0582, 7.0578, 7.0573, 7.0569, 7.0567, 7.0584, 7.0583, 7.0577, 7.0573, 7.0568, 7.0563, 7.0566, 7.0562, 7.0561, 7.0556, 7.0555, 7.0552, 7.0549, 7.0547, 7.0541, 7.0537, 7.0535, 7.0549, 7.0544, 7.0546, 7.0542, 7.0537, 7.0514, 7.0509, 7.0505, 7.0519, 7.0515, 7.0528, 7.0522, 7.0517, 7.0514, 7.0511, 7.0513, 7.0508, 7.0523, 7.0517, 7.0529, 7.0523, 7.0518, 7.0513, 7.0507, 7.054, 7.0537, 7.0534, 7.0529, 7.0542, 7.0539, 7.0535, 7.0513, 7.0492, 7.0486, 7.0481, 7.0493, 7.0503, 7.0513, 7.0508, 7.0508, 7.0506, 7.0502, 7.0498, 7.0495, 7.0493, 7.0488, 7.0501, 7.05, 7.0496, 7.0493, 7.049, 7.0489, 7.0487, 7.0483, 7.0477, 7.0492, 7.0505, 7.0499, 7.0497, 7.0494, 7.0507, 7.0504, 7.05, 7.0494, 7.050400000000001, 7.0516, 7.0514, 7.0508, 7.0521, 7.0518, 7.0513, 7.0511, 7.0506, 7.0502, 7.056, 7.0558, 7.0556, 7.055, 7.0544, 7.054, 7.0538, 7.0532, 7.0526, 7.0522, 7.0517, 7.0516, 7.0511, 7.0506, 7.0485, 7.0481, 7.0477, 7.0509, 7.0505, 7.0538, 7.0537, 7.0552, 7.0551, 7.0547, 7.055700000000001, 7.056700000000001, 7.057700000000001, 7.0595, 7.0591, 7.0593, 7.0592, 7.0589, 7.0585, 7.058, 7.0574, 7.057, 7.0567, 7.0562, 7.0558, 7.0564, 7.0563, 7.0559, 7.0557, 7.0553, 7.055, 7.0545, 7.054, 7.0555, 7.0588, 7.0584, 7.0609, 7.0603, 7.06, 7.0594, 7.0588, 7.0602, 7.0602, 7.06, 7.0595, 7.059, 7.0603, 7.06, 7.0594, 7.0591, 7.059, 7.0584, 7.0579, 7.0576, 7.0555, 7.0568, 7.0563, 7.056, 7.0574, 7.0571, 7.0567, 7.0562, 7.0557, 7.0557, 7.0535, 7.0531, 7.0528, 7.0526, 7.0524, 7.0534, 7.0529, 7.0539000000000005, 7.057, 7.0564, 7.056, 7.0554, 7.055, 7.0559, 7.0557, 7.0556, 7.0569, 7.057, 7.0564, 7.0567, 7.0548, 7.0562, 7.0575, 7.0575, 7.0572, 7.0573, 7.058, 7.0576, 7.057, 7.0565, 7.0562, 7.0557, 7.0552, 7.0566, 7.0563, 7.0559, 7.0557, 7.0552, 7.0566, 7.0549, 7.0528, 7.0524, 7.0569, 7.0567, 7.0579, 7.0573, 7.0568, 7.0564, 7.0566, 7.0568, 7.059, 7.0587, 7.0581, 7.0577, 7.0575, 7.0571, 7.0568, 7.0565, 7.0575, 7.0585, 7.058, 7.0576, 7.0574, 7.0575, 7.059, 7.0586, 7.0582, 7.0578, 7.0573, 7.0568, 7.0604, 7.06, 7.0599, 7.0594, 7.0591, 7.061, 7.0606, 7.0602, 7.0601, 7.0599, 7.0598, 7.0592, 7.0588, 7.0585, 7.0598, 7.0594, 7.059, 7.0585, 7.0564, 7.0578, 7.0573, 7.0587, 7.0583, 7.0577, 7.0571, 7.0567, 7.0582, 7.0577, 7.0576, 7.0573, 7.057, 7.0552, 7.0566, 7.0567, 7.0562, 7.0558, 7.0553, 7.0548, 7.0545, 7.0541, 7.0537, 7.0535, 7.0535, 7.0557, 7.0554, 7.0553, 7.0548, 7.0543, 7.0522, 7.0535, 7.0547, 7.0543, 7.0538, 7.0551, 7.0565, 7.0564, 7.0563, 7.0576, 7.0587, 7.0567, 7.0565, 7.0561, 7.0556, 7.055, 7.0546, 7.0558, 7.0588, 7.0601, 7.0597, 7.0593, 7.0589, 7.0601, 7.0595, 7.0608, 7.0621, 7.0617, 7.0629, 7.0626, 7.064, 7.0652, 7.0646, 7.0659, 7.0671, 7.0665, 7.0661, 7.0674, 7.0672, 7.0666, 7.066, 7.064, 7.0635, 7.0632, 7.063, 7.0641, 7.0636, 7.0636, 7.0635, 7.0633, 7.0627, 7.0642, 7.0638, 7.0633, 7.0628, 7.064, 7.0653, 7.0648, 7.0644, 7.064, 7.0641, 7.0646, 7.0642, 7.0637, 7.0638, 7.0633, 7.0631, 7.0642, 7.0639, 7.0634, 7.063, 7.0625, 7.062, 7.0633, 7.0634, 7.0629, 7.0625, 7.0622, 7.0617, 7.0611, 7.0606, 7.0602, 7.0652, 7.0647, 7.0642, 7.0637, 7.0634, 7.0632, 7.0629, 7.0642, 7.0636, 7.0631, 7.0642, 7.0638, 7.0634, 7.0662, 7.0659, 7.0661, 7.0657, 7.067, 7.0667, 7.0666, 7.068, 7.0692, 7.0687, 7.0686, 7.0682, 7.0697, 7.0696, 7.0708, 7.0722, 7.0716, 7.0712, 7.0708, 7.0703, 7.0697, 7.0695, 7.0695, 7.0694, 7.0688, 7.0683, 7.0678, 7.069, 7.0687, 7.0683, 7.068, 7.0692, 7.069, 7.0686, 7.0699, 7.0711, 7.0723, 7.0719, 7.0715, 7.071, 7.0705, 7.07, 7.0695, 7.0707, 7.0704, 7.0699, 7.0694, 7.0705, 7.0702, 7.0696, 7.0691, 7.0705, 7.0702, 7.0682, 7.0678, 7.0675, 7.0673, 7.0668, 7.0667, 7.0662, 7.0657, 7.0652, 7.0648, 7.0644, 7.0639, 7.0637, 7.0634, 7.0629, 7.0642, 7.0637, 7.0649, 7.0644, 7.0657, 7.0655, 7.0667, 7.0665, 7.0678, 7.0673, 7.067, 7.0665, 7.0662, 7.0658, 7.0653, 7.0665, 7.066, 7.0675, 7.0671, 7.0672, 7.0677, 7.0672, 7.0684, 7.0679, 7.0677, 7.0672, 7.0667, 7.0663, 7.066, 7.0658, 7.0653, 7.0634, 7.0629, 7.0641, 7.0653, 7.0677, 7.0688, 7.0683, 7.0677, 7.0675, 7.0679, 7.0678, 7.0677, 7.0675, 7.0674, 7.0674, 7.0669, 7.0666, 7.0693, 7.0703000000000005, 7.0717, 7.0718, 7.0713, 7.0711, 7.0708, 7.0719, 7.0713, 7.0708, 7.0704, 7.0707, 7.0703, 7.0713, 7.0762, 7.0774, 7.0774, 7.0775, 7.0776, 7.0771, 7.0769, 7.0786, 7.0783, 7.0797, 7.0793, 7.0788, 7.0785, 7.0785, 7.0769, 7.0828, 7.0859, 7.0856, 7.087, 7.0868, 7.0867, 7.0861, 7.086, 7.0857, 7.087, 7.0867, 7.0867, 7.0882, 7.0881, 7.0878, 7.0874, 7.087, 7.0866, 7.0863, 7.0858, 7.087, 7.0867, 7.0865, 7.0876, 7.0873, 7.0868, 7.0865, 7.0866, 7.0879, 7.0875, 7.0873, 7.0868, 7.0868, 7.0864, 7.086, 7.0857, 7.0856, 7.0854, 7.0851, 7.0849, 7.0844, 7.0843, 7.0841, 7.084, 7.0835, 7.0831, 7.0828, 7.0825, 7.0825, 7.0822, 7.0818, 7.082, 7.0836, 7.0832, 7.083, 7.0828, 7.0841, 7.0839, 7.0837, 7.0833, 7.083, 7.0842, 7.0839, 7.085, 7.0861, 7.0857, 7.0852, 7.085, 7.0846, 7.0842, 7.0838, 7.0835, 7.0833, 7.0846, 7.0841, 7.0837, 7.0832, 7.0827, 7.0824, 7.0806, 7.0802, 7.08, 7.0812, 7.0812, 7.0808, 7.0821, 7.0817, 7.0813, 7.0795, 7.0794, 7.0792, 7.0789, 7.0799, 7.0795, 7.079, 7.0787, 7.0784, 7.0779, 7.0778, 7.0774, 7.0773, 7.077, 7.0751, 7.0791, 7.0786, 7.0786, 7.0784, 7.0767, 7.0762, 7.0757, 7.0753, 7.0766, 7.0764, 7.0762, 7.0746, 7.0741, 7.074, 7.075, 7.0826, 7.0823, 7.0818, 7.0814, 7.081, 7.0805, 7.0816, 7.0811, 7.0806, 7.0803, 7.0799, 7.0794, 7.0791, 7.0786, 7.0782, 7.0778, 7.0773, 7.0769, 7.078, 7.079, 7.0789, 7.08, 7.081, 7.082000000000001, 7.082, 7.082, 7.0816, 7.0829, 7.0826, 7.0821, 7.0832, 7.0845, 7.0841, 7.0836, 7.0831, 7.0827, 7.081, 7.0806, 7.0819, 7.0816, 7.0829, 7.0825, 7.0826, 7.0841, 7.0838, 7.0835, 7.0835, 7.0846, 7.0844, 7.0841, 7.0823, 7.0806, 7.0818, 7.0815, 7.0826, 7.0825, 7.0822, 7.0819, 7.0816, 7.0815, 7.0815, 7.0814, 7.0813, 7.081, 7.082000000000001, 7.0815, 7.0799, 7.0809, 7.0805, 7.0816, 7.0811, 7.0808, 7.0808, 7.0803, 7.0787, 7.0799, 7.081, 7.0806, 7.0805, 7.0817, 7.0815, 7.0811, 7.0807, 7.0806, 7.0803, 7.0787, 7.0799, 7.0797, 7.0809, 7.0805, 7.0802, 7.0814, 7.0818, 7.0816, 7.0813, 7.0809, 7.0806, 7.0802, 7.0798, 7.0794, 7.0791, 7.0786, 7.0782, 7.0792, 7.0788, 7.0802, 7.0815, 7.0811, 7.0793, 7.0788, 7.0817, 7.0816, 7.0816, 7.0816, 7.0815, 7.0825, 7.0821, 7.0818, 7.0819, 7.0815, 7.0815, 7.0812, 7.0812, 7.0807, 7.0804, 7.0816, 7.0811, 7.0825, 7.0821, 7.0833, 7.0831, 7.0826, 7.0821, 7.0817, 7.0813, 7.0809, 7.0806, 7.0802, 7.0798, 7.0797, 7.0799, 7.0799, 7.0796, 7.0794, 7.079, 7.0785, 7.0797, 7.0794, 7.079, 7.0785, 7.0784, 7.0769, 7.0767, 7.0766, 7.0768, 7.0764, 7.0759, 7.0768, 7.0751, 7.0747, 7.0746, 7.0728, 7.0712, 7.0708, 7.0705, 7.0702, 7.0698, 7.0693, 7.0693, 7.069, 7.07, 7.0698, 7.0708, 7.0751, 7.0746, 7.0745, 7.074, 7.0737, 7.0734, 7.0745, 7.0742, 7.0728, 7.0726, 7.0723, 7.0719, 7.0714, 7.071, 7.0707, 7.0705, 7.0703, 7.0714, 7.0712, 7.0708, 7.0705, 7.0702, 7.07, 7.0696, 7.0681, 7.0678, 7.0674, 7.0675, 7.067, 7.0659, 7.0663, 7.0703, 7.07, 7.0712, 7.0711, 7.0708, 7.0707, 7.0717, 7.0713, 7.071, 7.0725, 7.0723, 7.0719, 7.0717, 7.0714, 7.0709, 7.0705, 7.07, 7.0698, 7.0696, 7.0693, 7.0703, 7.0699, 7.0696, 7.0693, 7.0689, 7.0685, 7.0681, 7.0691, 7.0688, 7.0701, 7.0712, 7.0708, 7.0707, 7.0709, 7.0706, 7.0716, 7.0712, 7.0711, 7.0724, 7.0734, 7.0745, 7.0841, 7.0851, 7.0848, 7.0845, 7.0842, 7.0837, 7.0838, 7.0834, 7.0831, 7.0828, 7.0839, 7.0836, 7.0832, 7.0843, 7.084, 7.0835, 7.083, 7.0829, 7.083900000000001, 7.084900000000001, 7.0845, 7.0844, 7.084, 7.0837, 7.0834, 7.0834, 7.0829, 7.0827, 7.081, 7.0819, 7.0802, 7.0799, 7.081, 7.0807, 7.0791, 7.0787, 7.0782, 7.0778, 7.0789, 7.0799, 7.0795, 7.0791, 7.0775, 7.0771, 7.078, 7.0764, 7.076, 7.0759, 7.0769, 7.0778, 7.0775, 7.0773, 7.0772, 7.0771, 7.0783, 7.0781, 7.078, 7.0778, 7.0777, 7.0775, 7.0774, 7.0771, 7.0766, 7.0762, 7.0759, 7.0755, 7.0756, 7.0757, 7.0756, 7.0752, 7.0751, 7.0762, 7.0774, 7.0771, 7.0769, 7.0766, 7.0765, 7.0763, 7.0758, 7.0753, 7.0751, 7.0761, 7.0763, 7.076, 7.0757, 7.0767, 7.0765, 7.0765, 7.0762, 7.0758, 7.0755, 7.0832, 7.0828, 7.0824, 7.0833, 7.0832, 7.0842, 7.0837, 7.0847, 7.0859, 7.0869, 7.0866, 7.0862, 7.0861, 7.0858, 7.0869, 7.0867, 7.0877, 7.089, 7.09, 7.0899, 7.0909, 7.0919, 7.0915, 7.0911, 7.0907, 7.0904, 7.0901, 7.0901, 7.0896, 7.0879, 7.089, 7.0887, 7.0871, 7.0855, 7.0851, 7.0847, 7.0843, 7.0853, 7.0849, 7.0847, 7.0846, 7.0856, 7.0855, 7.0853, 7.0839, 7.0836, 7.0874, 7.0884, 7.0882, 7.0879, 7.0889, 7.0889, 7.0885, 7.0884, 7.0881, 7.0892, 7.089, 7.0887, 7.0896, 7.0892, 7.0902, 7.0898, 7.0897, 7.0895, 7.0894, 7.0904, 7.09, 7.0896, 7.0892, 7.0876, 7.0859, 7.087, 7.0881, 7.0878, 7.0875, 7.0885, 7.0881, 7.0876, 7.0873, 7.0869, 7.087, 7.0867, 7.0877, 7.0875, 7.0871, 7.0868, 7.0867, 7.0876, 7.0872, 7.0902, 7.0897, 7.0893, 7.089, 7.0886, 7.0882, 7.0878, 7.0874, 7.0871, 7.0867, 7.0877, 7.0876, 7.0873, 7.0871, 7.0867, 7.0864, 7.086, 7.0871, 7.0868, 7.0863, 7.0885, 7.0885, 7.0882, 7.0881, 7.0877, 7.0875, 7.0871, 7.0867, 7.0865, 7.0875, 7.0874, 7.0859, 7.0855, 7.0876, 7.0874, 7.0872, 7.0868, 7.0851, 7.0848, 7.0845, 7.0855, 7.0855, 7.0865, 7.0875, 7.0882, 7.0879, 7.0875, 7.0873, 7.0872, 7.0871, 7.0867, 7.0863, 7.086, 7.0848, 7.0858, 7.0867, 7.0865, 7.0849, 7.0859, 7.0845, 7.0841, 7.0825, 7.0824, 7.0821, 7.0818, 7.0829, 7.0832, 7.0853, 7.0872, 7.0868, 7.0865, 7.0849, 7.0832, 7.0826, 7.085, 7.0862, 7.086, 7.0857, 7.0867, 7.0851, 7.0848, 7.0844, 7.0841, 7.0852, 7.0848, 7.0858, 7.0869, 7.088, 7.0876, 7.0872, 7.087, 7.0867, 7.0877, 7.0873, 7.0874, 7.0871, 7.088, 7.0878, 7.0887, 7.087, 7.0894, 7.089, 7.0888, 7.0884, 7.0882, 7.0893, 7.089, 7.0886, 7.0884, 7.088, 7.0876, 7.0873, 7.087, 7.0867, 7.0863, 7.0859, 7.0868, 7.0854, 7.0853, 7.0851, 7.0849, 7.0845, 7.0842, 7.0838, 7.0834, 7.0833, 7.0856, 7.0854, 7.0853, 7.0865, 7.086, 7.0857, 7.0868, 7.0865, 7.0876, 7.0873, 7.0857, 7.0868, 7.0865, 7.0874, 7.0885, 7.0896, 7.0911, 7.0907, 7.0891, 7.0887, 7.0884, 7.0882, 7.0877, 7.0875, 7.0876, 7.0877, 7.0875, 7.0861, 7.0858, 7.0856, 7.0852, 7.0848, 7.0846, 7.0832, 7.0832, 7.0828, 7.0824, 7.082, 7.0817, 7.0827, 7.0823, 7.082, 7.083, 7.0826, 7.0823, 7.0818, 7.0816, 7.0826, 7.0811, 7.0795, 7.0794, 7.0792, 7.079, 7.0799, 7.0796, 7.0805, 7.0801, 7.0798, 7.0795, 7.0795, 7.0793, 7.079, 7.0786, 7.0774, 7.0784, 7.0794, 7.079, 7.08, 7.0798, 7.0794, 7.079, 7.0788, 7.0784, 7.078, 7.0777, 7.0775, 7.0784, 7.0793, 7.0791, 7.0788, 7.0784, 7.0781, 7.0782, 7.0779, 7.0775, 7.0771, 7.0768, 7.0752, 7.075, 7.0746, 7.0742, 7.0738, 7.0723, 7.0719, 7.0715, 7.0713, 7.0712, 7.0709, 7.0707, 7.0692, 7.0689, 7.0686, 7.0685, 7.0682, 7.0679, 7.0675, 7.0676, 7.0662, 7.0671, 7.068, 7.0678, 7.068, 7.0676, 7.0672, 7.0669, 7.0654, 7.0651, 7.0647, 7.0632, 7.0629, 7.0627, 7.0627, 7.0637, 7.0647, 7.0643, 7.0639, 7.0647, 7.0644, 7.0641, 7.0637, 7.0635, 7.0632, 7.0628, 7.0625, 7.0634, 7.0631, 7.0629, 7.0626, 7.0634, 7.0643, 7.0653, 7.0649, 7.0633, 7.0631, 7.0628, 7.0624, 7.0633, 7.063, 7.0629, 7.0629, 7.0625, 7.0622, 7.0621, 7.0617, 7.0613, 7.0623, 7.0632, 7.0629, 7.0639, 7.0635, 7.0639, 7.0635, 7.0632, 7.0617, 7.0626, 7.0623, 7.062, 7.0634, 7.0621, 7.0607, 7.0603, 7.0599, 7.0608, 7.0607, 7.0605, 7.0601, 7.0611, 7.0609, 7.0609, 7.0605, 7.0614, 7.0623, 7.0619, 7.0618, 7.0615, 7.0611, 7.0621, 7.0623, 7.0619, 7.0616, 7.0612, 7.0608, 7.0607, 7.0604, 7.0643, 7.0652, 7.0649, 7.0658, 7.0667, 7.0677, 7.0673, 7.0669, 7.0666, 7.0665, 7.0664, 7.0674, 7.0683, 7.068, 7.0677, 7.0675, 7.0671, 7.0667, 7.0663, 7.0659, 7.0655, 7.0652, 7.0661, 7.0657, 7.0684, 7.0682, 7.0697, 7.0694, 7.069, 7.0686, 7.0685, 7.0682, 7.0706, 7.071, 7.0708, 7.0706, 7.0702, 7.0699, 7.0709, 7.0724, 7.072, 7.0721, 7.0718, 7.0715, 7.0712, 7.071, 7.0707, 7.0717, 7.0714, 7.071, 7.0694, 7.0692, 7.0701, 7.0686, 7.0683, 7.068, 7.0677, 7.0698, 7.0695, 7.0693, 7.0692, 7.0689, 7.0685, 7.0681, 7.0678, 7.0674, 7.0672, 7.0668, 7.0664, 7.0662, 7.0658, 7.0655, 7.0652, 7.0661, 7.0671, 7.0656, 7.0652, 7.0648, 7.0675, 7.0672, 7.0669, 7.0665, 7.0661, 7.0657, 7.0657, 7.0654, 7.0663, 7.0672, 7.0682, 7.0667, 7.0676, 7.0672, 7.0682, 7.0681, 7.0678, 7.0679, 7.0677, 7.0687, 7.0684, 7.0681, 7.0679, 7.0675, 7.0674, 7.0671, 7.0669, 7.0665, 7.0676, 7.0687, 7.0695, 7.0692, 7.0688, 7.0684, 7.0681, 7.0677, 7.0673, 7.0671, 7.0668, 7.0664, 7.066, 7.067, 7.0669, 7.0666, 7.0667, 7.0666, 7.0663, 7.066, 7.0658, 7.0657, 7.0644, 7.0642, 7.0641, 7.0638, 7.0634, 7.063, 7.0627, 7.0624, 7.062, 7.0616, 7.0612, 7.061, 7.0606, 7.0603, 7.06, 7.0597, 7.0597, 7.0594, 7.059, 7.0599, 7.0608, 7.0605, 7.0601, 7.061100000000001, 7.0609, 7.0609, 7.0618, 7.0617, 7.0627, 7.0623, 7.062, 7.0617, 7.0603, 7.06, 7.0597, 7.0606, 7.0603, 7.0613, 7.0615, 7.0613, 7.061, 7.0609, 7.0618, 7.0614, 7.0613, 7.0609, 7.0607, 7.0603, 7.0601, 7.0598, 7.0594, 7.0604, 7.0605, 7.0615, 7.0611, 7.0621, 7.0619, 7.0607, 7.0605, 7.0602, 7.0599, 7.0599, 7.0629, 7.0617, 7.0613, 7.0612, 7.0621, 7.0629, 7.0616, 7.0615, 7.0614, 7.0611, 7.0608, 7.0607, 7.0616, 7.0613, 7.0612, 7.0638, 7.0635, 7.0631, 7.0647, 7.0644, 7.0643, 7.0642, 7.064, 7.0649, 7.0647, 7.0645, 7.0643, 7.0641, 7.0638, 7.0636, 7.0633, 7.063, 7.0628, 7.0638, 7.0637, 7.0636, 7.0633, 7.0643, 7.064, 7.065, 7.0647, 7.0671, 7.0669, 7.0681, 7.0678, 7.0676, 7.0674, 7.0671, 7.0671, 7.0671, 7.0669, 7.0665, 7.0661, 7.0647, 7.0646, 7.0644, 7.0642, 7.0639, 7.0637, 7.0634, 7.0633, 7.0634, 7.063, 7.0626, 7.0626, 7.0624, 7.0623, 7.0633, 7.063, 7.0627, 7.0629, 7.0648, 7.0662, 7.0659, 7.0658, 7.0655, 7.0656, 7.0677, 7.0673, 7.067, 7.0656, 7.0654, 7.065, 7.066000000000001, 7.067, 7.0666, 7.0663, 7.0659, 7.0656, 7.0652, 7.065, 7.065, 7.0649, 7.0649, 7.0648, 7.0645, 7.0641, 7.065, 7.0647, 7.0656, 7.0652, 7.0661, 7.0657, 7.0664, 7.0663, 7.0651, 7.0638, 7.0636, 7.0633, 7.0621, 7.0609, 7.0607, 7.0595, 7.0591, 7.0589, 7.0585, 7.0613, 7.0611, 7.061, 7.0608, 7.0605, 7.0606, 7.0603, 7.06, 7.0599, 7.0608, 7.0594, 7.0581, 7.0567, 7.0578, 7.0618, 7.062, 7.0616, 7.0614, 7.0611, 7.0608, 7.0606, 7.0602, 7.0599, 7.0588, 7.0597, 7.0608, 7.0609, 7.0607, 7.0603, 7.0599, 7.0595, 7.0592, 7.06, 7.06, 7.0596, 7.0593, 7.0591, 7.059, 7.0609, 7.0606, 7.0604, 7.06, 7.06, 7.0611, 7.0621, 7.0621, 7.0619, 7.0616, 7.0614, 7.0602, 7.0602, 7.06, 7.0596, 7.0582, 7.0578, 7.0577, 7.0574, 7.0572, 7.0581, 7.0577, 7.0586, 7.0598, 7.0599, 7.0606, 7.0616, 7.0624, 7.0621, 7.0617, 7.0628, 7.0626, 7.0636, 7.0635, 7.0646, 7.0645, 7.0632, 7.0631, 7.0628, 7.0629, 7.064, 7.0648, 7.0645, 7.0642, 7.0651, 7.0661, 7.0662, 7.065, 7.0646, 7.0644, 7.0649, 7.0636, 7.0634, 7.0644, 7.0643, 7.0639, 7.0625, 7.0623, 7.0621, 7.0608, 7.0605, 7.0603, 7.0601, 7.0598, 7.0595, 7.0603, 7.0599, 7.0599, 7.0599, 7.0595, 7.0593, 7.059, 7.0588, 7.0576, 7.0574, 7.0572, 7.0581, 7.0579, 7.0576, 7.0572, 7.0582, 7.0581, 7.058, 7.0578, 7.0575, 7.0571, 7.0567, 7.0563, 7.056, 7.0559, 7.0556, 7.0553, 7.0551, 7.0537, 7.0524, 7.0522, 7.0528, 7.0537, 7.0545, 7.0543, 7.0539, 7.0537, 7.0536, 7.0534, 7.0533, 7.053, 7.0527, 7.0526, 7.0539, 7.0535, 7.0533, 7.053, 7.054, 7.0538, 7.0534, 7.0533, 7.0531, 7.0528, 7.0526, 7.0523, 7.0519, 7.0505, 7.0514, 7.0527, 7.0539, 7.0537, 7.0534, 7.0543, 7.0542, 7.0539, 7.0536, 7.0535, 7.0533, 7.0531, 7.0529, 7.0531, 7.0527, 7.0524, 7.0523, 7.0531, 7.053, 7.0529, 7.0564, 7.056, 7.0557, 7.0567, 7.0565, 7.0574, 7.057, 7.057, 7.0567, 7.0576, 7.0574, 7.0577, 7.0574, 7.0584, 7.0581, 7.059, 7.0577, 7.0565, 7.0562, 7.0558, 7.0558, 7.0547, 7.0544, 7.0543, 7.0542, 7.053, 7.0527, 7.0524, 7.051, 7.0519, 7.0528, 7.0525, 7.0522, 7.0519, 7.0518, 7.0515, 7.0512, 7.0508, 7.0505, 7.0513, 7.0509, 7.0506, 7.0504, 7.0492, 7.0491, 7.048, 7.048, 7.0488, 7.0496, 7.0492, 7.049, 7.0479, 7.0487, 7.0485, 7.0482, 7.0478, 7.0489, 7.05, 7.0498, 7.0498, 7.0495, 7.0493, 7.0492, 7.0489, 7.0486, 7.0485, 7.0495, 7.0492, 7.0499, 7.0498, 7.0508, 7.0508, 7.0507, 7.0505, 7.0503, 7.0511, 7.0508, 7.0555, 7.0552, 7.0548, 7.0546, 7.0555, 7.0555, 7.0554, 7.0542, 7.0557, 7.0561, 7.0557, 7.0554, 7.0566, 7.0563, 7.0564, 7.0563, 7.0571, 7.0571, 7.0567, 7.0564, 7.0561, 7.0559, 7.0556, 7.0552, 7.0549, 7.0547, 7.0544, 7.0552, 7.056, 7.0568, 7.0566, 7.0581, 7.0579, 7.0594, 7.0591, 7.0588, 7.0587, 7.0596, 7.0592, 7.0589, 7.0579, 7.0575, 7.0572, 7.057, 7.0568, 7.0565, 7.0562, 7.056, 7.0559, 7.0558, 7.0555, 7.0553, 7.0562, 7.0559, 7.0578, 7.0589, 7.0602, 7.06, 7.0598, 7.0599, 7.0596, 7.0594, 7.0625, 7.0622, 7.0619, 7.0616, 7.0616, 7.0613, 7.0614, 7.0611, 7.0609, 7.0617, 7.0615, 7.0623, 7.0619, 7.0616, 7.0625, 7.0633, 7.063, 7.0629, 7.0625, 7.0624, 7.0622, 7.062, 7.0617, 7.0614, 7.0621, 7.0621, 7.0618, 7.0614, 7.061, 7.0607, 7.0604, 7.0601, 7.0588, 7.0587, 7.0585, 7.0584, 7.0581, 7.0569, 7.0569, 7.0577, 7.0564, 7.0563, 7.0562, 7.057, 7.0569, 7.0566, 7.0564, 7.0561, 7.056, 7.0568, 7.0576, 7.0573, 7.057, 7.0593, 7.058, 7.058, 7.0578, 7.0577, 7.0575, 7.0562, 7.0571, 7.0568, 7.0564, 7.0561, 7.057, 7.0557, 7.0565, 7.0562, 7.0559, 7.0567, 7.0566, 7.0563, 7.0561, 7.0569, 7.0577, 7.0574, 7.0571, 7.0573, 7.056, 7.0558, 7.0555, 7.0563, 7.0571, 7.0568, 7.0565, 7.0562, 7.0559, 7.0572, 7.057, 7.0568, 7.0577, 7.0574, 7.0572, 7.057, 7.0582, 7.0594, 7.0602, 7.0621, 7.0618, 7.0626, 7.0623, 7.0619, 7.0615, 7.0611, 7.0608, 7.0595, 7.0591, 7.0588, 7.0596, 7.0593, 7.059, 7.0588, 7.0595, 7.0614, 7.0622, 7.0621, 7.0617, 7.0626, 7.0622, 7.0622, 7.062, 7.0618, 7.0617, 7.0626, 7.0624, 7.0611, 7.0599, 7.0586, 7.0584, 7.0581, 7.0568, 7.0576, 7.0573, 7.0575, 7.0572, 7.0572, 7.0572, 7.0571, 7.0569, 7.0568, 7.0556, 7.0555, 7.0564, 7.0561, 7.0559, 7.0556, 7.0555, 7.0554, 7.0553, 7.0562, 7.0559, 7.0557, 7.0555, 7.0553, 7.0552, 7.0551, 7.0548, 7.0535, 7.0544, 7.0542, 7.0551, 7.0548, 7.0547, 7.0546, 7.0545, 7.0541, 7.0538, 7.0536, 7.0545, 7.0542, 7.054, 7.0538, 7.0534, 7.0531, 7.053, 7.0527, 7.0524, 7.0521, 7.052, 7.0519, 7.0519, 7.0516, 7.0514, 7.0524000000000004, 7.0522, 7.0519, 7.0519, 7.0515, 7.0515, 7.0514, 7.0513, 7.0511, 7.0509, 7.0498, 7.0496, 7.0493, 7.049, 7.0487, 7.0489, 7.0487, 7.0474, 7.0463, 7.0473, 7.0471, 7.048100000000001, 7.049, 7.0488, 7.0486, 7.0483, 7.049300000000001, 7.050300000000001, 7.0514, 7.0524000000000004, 7.0523, 7.0521, 7.053, 7.0528, 7.0528, 7.0526, 7.0525, 7.0523, 7.0522, 7.0522, 7.0509, 7.0508, 7.0495, 7.0493, 7.0503, 7.0513, 7.0513, 7.0522, 7.0519, 7.0516, 7.0513, 7.051, 7.0508, 7.0516, 7.0514, 7.0517, 7.0523, 7.052, 7.0529, 7.0517, 7.0514, 7.0541, 7.0538, 7.0549, 7.0548, 7.0557, 7.0554, 7.0553, 7.0541, 7.0545, 7.0553, 7.055, 7.0548, 7.0559, 7.0549, 7.0546, 7.0544, 7.0542, 7.054, 7.0548, 7.0547, 7.0556, 7.0555, 7.0552, 7.0551, 7.055, 7.0548, 7.0546, 7.0542, 7.0539, 7.0536, 7.0566, 7.0574, 7.0584, 7.0582, 7.0579, 7.0576, 7.0573, 7.057, 7.0568, 7.0566, 7.0565, 7.0562, 7.0559, 7.0567, 7.0566, 7.0563, 7.0563, 7.056, 7.0567, 7.0564, 7.0561, 7.0562, 7.056, 7.0568, 7.0565, 7.0573, 7.0572, 7.0569, 7.0579, 7.0577, 7.0575, 7.0574, 7.0581, 7.0579, 7.0577, 7.0585, 7.0582, 7.0581, 7.059, 7.0587, 7.0584, 7.0584, 7.058, 7.0577, 7.0619, 7.0619, 7.0619, 7.0619, 7.0616, 7.0614, 7.0612, 7.0619, 7.0616, 7.0623, 7.0621, 7.063, 7.0653, 7.065, 7.0649, 7.0647, 7.0657000000000005, 7.0667, 7.0674, 7.0671, 7.0679, 7.0676, 7.0663, 7.0651, 7.0652, 7.0659, 7.0656, 7.0663, 7.0663, 7.0661, 7.0659, 7.0657, 7.0655, 7.0663, 7.066, 7.0657, 7.0655, 7.0653, 7.0681, 7.0678, 7.0676, 7.0673, 7.0671, 7.0668, 7.0665, 7.0662, 7.0659, 7.0656, 7.0655, 7.0674, 7.0671, 7.0668, 7.0665, 7.0664, 7.0662, 7.0659, 7.0661, 7.0658, 7.0655, 7.0654, 7.0651, 7.0648, 7.0645, 7.0643, 7.0641, 7.0638, 7.0626, 7.0624, 7.0621, 7.063, 7.0628, 7.0638000000000005, 7.0635, 7.064500000000001, 7.065500000000001, 7.0653, 7.0641, 7.064, 7.0649, 7.0657, 7.0659, 7.0667, 7.0664, 7.0663, 7.0662, 7.0663, 7.0661, 7.0659, 7.0667, 7.0668, 7.0656, 7.0654, 7.0661, 7.0659, 7.0656, 7.0654, 7.0654, 7.0652, 7.065, 7.0657, 7.0664, 7.0665, 7.0662, 7.0677, 7.0678, 7.0691, 7.0688, 7.0686, 7.0691, 7.069, 7.0688, 7.0696, 7.0687, 7.0684, 7.0692, 7.0683, 7.0681, 7.0678, 7.0675, 7.0672, 7.0669, 7.0668, 7.0672, 7.067, 7.0667, 7.0664, 7.068, 7.0696, 7.0693, 7.069, 7.0698, 7.0705, 7.0702, 7.0699, 7.0696, 7.0693, 7.07, 7.0698, 7.0696, 7.0693, 7.0691, 7.0689, 7.0698, 7.0695, 7.0696, 7.0705, 7.0702, 7.0692, 7.0691, 7.0688, 7.0686, 7.0683, 7.069, 7.0687, 7.0686, 7.0683, 7.068, 7.0677, 7.0679, 7.0677, 7.0674, 7.0671, 7.0679, 7.0687, 7.0693, 7.0691, 7.0698, 7.0695, 7.0703, 7.0755, 7.0751, 7.0748, 7.0756, 7.0753, 7.075, 7.0758, 7.0767, 7.0766, 7.0754, 7.0751, 7.075, 7.0757, 7.0756, 7.0753, 7.075, 7.0748, 7.0755, 7.0754, 7.0751, 7.0749, 7.0747, 7.0745, 7.0743, 7.0741, 7.0738, 7.0726, 7.0724, 7.0721, 7.0717, 7.0722, 7.0721, 7.0719, 7.0718, 7.0716, 7.0713, 7.0711, 7.0709, 7.0706, 7.0703, 7.0701, 7.073, 7.0731, 7.0729, 7.0727, 7.0726, 7.0723, 7.072, 7.0721, 7.0728, 7.0726, 7.0725, 7.0723, 7.072, 7.0728, 7.0736, 7.0733, 7.073, 7.0738, 7.0736, 7.0745, 7.0742, 7.0739, 7.0736, 7.0733, 7.0732, 7.073, 7.0727, 7.0724, 7.0722, 7.0719, 7.0719, 7.0717, 7.0727, 7.0735, 7.0732, 7.0731, 7.0728, 7.0726, 7.0723, 7.0721, 7.0721, 7.0718, 7.0715, 7.0722, 7.0721, 7.0728, 7.0738, 7.0747, 7.0745, 7.0743, 7.074, 7.0737, 7.0734, 7.0732, 7.0742, 7.0739, 7.0749, 7.0746, 7.0753, 7.0761, 7.0769, 7.0766, 7.0763, 7.0761, 7.077, 7.077, 7.0767, 7.0764, 7.0763, 7.0763, 7.0761, 7.0769, 7.0767, 7.0765, 7.0763, 7.0761, 7.0759, 7.0757, 7.0756, 7.0755, 7.0752, 7.074, 7.0738, 7.0735, 7.0732, 7.0729, 7.0728, 7.0726, 7.0724, 7.0713, 7.071, 7.0707, 7.0715, 7.072500000000001, 7.0734, 7.0741, 7.074, 7.074, 7.074, 7.074, 7.074, 7.0737, 7.0747, 7.0757, 7.0775, 7.0772, 7.077, 7.0767, 7.0764, 7.0766, 7.0765, 7.0766, 7.0763, 7.0762, 7.0759, 7.0759, 7.0774, 7.0771, 7.0769, 7.0768, 7.0766, 7.0763, 7.0762, 7.0762, 7.077, 7.0768, 7.0766, 7.0785, 7.0783, 7.078, 7.0777, 7.0784, 7.0786, 7.0785, 7.0792, 7.079, 7.0789, 7.0788, 7.0785, 7.0793, 7.0791, 7.0789, 7.0789, 7.0799, 7.0796, 7.0804, 7.0801, 7.0798, 7.0798, 7.0798, 7.0805, 7.0802, 7.08, 7.0798, 7.0795, 7.0801, 7.0798, 7.0816, 7.0826, 7.0825, 7.0822, 7.083, 7.0827, 7.0826, 7.0823, 7.082, 7.0819, 7.0818, 7.0817, 7.0816, 7.0815, 7.0814, 7.0813, 7.0801, 7.0798, 7.0796, 7.0793, 7.0799, 7.0797, 7.0795, 7.0792, 7.0789, 7.0786, 7.0785, 7.0782, 7.0779, 7.0789, 7.0786, 7.0783, 7.078, 7.077, 7.0758, 7.0778, 7.0776, 7.0782, 7.0781, 7.0788, 7.0796, 7.0806000000000004, 7.0803, 7.0802, 7.0799, 7.0796, 7.0794, 7.0794, 7.0792, 7.0791, 7.0791, 7.0789, 7.0787, 7.0794, 7.0793, 7.0792, 7.0792, 7.0792, 7.0791, 7.0789, 7.0797, 7.0796, 7.0795, 7.0793, 7.0791, 7.079, 7.0798, 7.0797, 7.0799, 7.0798, 7.0808, 7.0818, 7.0826, 7.0824, 7.0824, 7.0822, 7.0821, 7.0828, 7.0826, 7.0824, 7.0821, 7.082, 7.0818, 7.0825, 7.0832, 7.0831, 7.083, 7.0829, 7.0827, 7.0825, 7.0824, 7.0822, 7.0839, 7.0836, 7.0844, 7.0841, 7.0839, 7.0838, 7.0836, 7.0843, 7.084, 7.0837, 7.0834, 7.0831, 7.0829, 7.0826, 7.083600000000001, 7.0853, 7.0863000000000005, 7.0862, 7.086, 7.0857, 7.0857, 7.0865, 7.0863, 7.0861, 7.0879, 7.0878, 7.0875, 7.0883, 7.088, 7.0879, 7.0889, 7.0887, 7.089, 7.0888, 7.0885, 7.0882, 7.088, 7.0878, 7.0875, 7.0874, 7.0872, 7.088, 7.0877, 7.0875, 7.0875, 7.0873, 7.087, 7.0869, 7.0877, 7.0875, 7.0883, 7.0882, 7.0874, 7.0871, 7.087, 7.0877, 7.0885, 7.0894, 7.0891, 7.0898, 7.0915, 7.0912, 7.0909, 7.0907, 7.0905, 7.0903, 7.091, 7.0909, 7.0906, 7.0903, 7.09, 7.0899, 7.0906, 7.0905, 7.0902, 7.089, 7.0888, 7.0887, 7.0893, 7.0892, 7.0898, 7.091, 7.0907, 7.0906, 7.0905, 7.0913, 7.0911, 7.0911, 7.0911, 7.092, 7.0909, 7.0909, 7.0917, 7.0916, 7.0923, 7.0923, 7.0922, 7.092, 7.0921, 7.0918, 7.0918, 7.0915, 7.0912, 7.0909, 7.0906, 7.0903, 7.0901, 7.0899, 7.0899, 7.0896, 7.0903, 7.09, 7.0889, 7.0887, 7.0884, 7.0892, 7.0908, 7.0905, 7.0903, 7.091, 7.0925, 7.0923, 7.092, 7.0927, 7.0924, 7.0921, 7.0918, 7.0915, 7.0933, 7.0932, 7.0921, 7.0911, 7.091, 7.0917, 7.0928, 7.0934, 7.0931, 7.0928, 7.0926, 7.0933, 7.093, 7.0927, 7.0925, 7.0933, 7.093, 7.0928, 7.0925, 7.0923, 7.0921, 7.0918, 7.0917, 7.0924, 7.0922, 7.092, 7.0917, 7.0925, 7.0924, 7.0923, 7.0921, 7.0919, 7.0917, 7.0925, 7.0933, 7.0931, 7.0937, 7.0934, 7.0931, 7.093, 7.0937, 7.0936, 7.0953, 7.095, 7.0941, 7.0946, 7.0952, 7.0959, 7.0956, 7.0953, 7.0951, 7.0948, 7.0945, 7.0944, 7.0941, 7.0938, 7.0937, 7.0936, 7.0933, 7.094, 7.0939, 7.0939, 7.0937, 7.0934, 7.0931, 7.0929, 7.0929, 7.0926, 7.0923, 7.0929, 7.0919, 7.0916, 7.0913, 7.091, 7.0907, 7.0913, 7.091, 7.0907, 7.0904, 7.0902, 7.0909, 7.0906, 7.0904, 7.0902, 7.0892, 7.0898, 7.0905, 7.0903, 7.091, 7.0912, 7.091, 7.094, 7.0937, 7.0936, 7.0933, 7.0932, 7.0931, 7.0938, 7.0935, 7.0934, 7.094, 7.0939, 7.0937, 7.0934, 7.0941, 7.0948, 7.0945, 7.0942, 7.094, 7.0947, 7.0944, 7.0942, 7.0942, 7.0941, 7.0939, 7.0937, 7.0934, 7.0931, 7.0931, 7.093, 7.0929, 7.0936, 7.0926, 7.0933, 7.0931, 7.0939, 7.095, 7.0947, 7.0954, 7.0951, 7.095, 7.0943, 7.0977, 7.0974, 7.0972, 7.0973, 7.097, 7.0967, 7.0973, 7.0971, 7.0977, 7.0975, 7.0976, 7.0976, 7.0973, 7.097, 7.0969, 7.0966, 7.0964, 7.0961, 7.096, 7.0959, 7.0958, 7.0957, 7.0948, 7.0955, 7.0961, 7.0958, 7.0965, 7.0965, 7.0971, 7.0968, 7.0966, 7.0956, 7.0953, 7.0951, 7.0982, 7.0981, 7.098, 7.0979, 7.0981, 7.0988, 7.0987, 7.0994, 7.1, 7.1007, 7.1004, 7.1001, 7.1, 7.0998, 7.0995, 7.1002, 7.0999, 7.0999, 7.0989, 7.0996, 7.0993, 7.0991, 7.099, 7.0988, 7.0995, 7.1003, 7.0992, 7.0998, 7.0996, 7.1015, 7.1027, 7.1024, 7.1024, 7.1015, 7.1012, 7.101, 7.1009, 7.1012, 7.101, 7.1008, 7.1025, 7.1024, 7.1032, 7.104, 7.1046, 7.1045, 7.1042, 7.106, 7.1058, 7.1055, 7.1045, 7.1045, 7.1042, 7.104, 7.1049, 7.1048, 7.1046, 7.1038, 7.1064, 7.1061, 7.1058, 7.1058, 7.1056, 7.1056, 7.1064, 7.107, 7.1068, 7.1067, 7.1065, 7.1064, 7.1062, 7.106, 7.1059, 7.1056, 7.1086, 7.1084, 7.1081, 7.1079, 7.1077, 7.1084, 7.1092, 7.1091, 7.1098, 7.1104, 7.1102, 7.11, 7.1097, 7.1126, 7.1124, 7.1131, 7.1138, 7.1136, 7.1126, 7.1125, 7.1131, 7.1131, 7.1128, 7.1125, 7.1123, 7.112, 7.1135, 7.1125, 7.1125, 7.1123, 7.1121, 7.1118, 7.1117, 7.1115, 7.1113, 7.1111, 7.1109, 7.1098, 7.1087, 7.1085, 7.1083, 7.1084, 7.1084, 7.1083, 7.108, 7.1079, 7.1078, 7.1075, 7.1072, 7.1071, 7.1075, 7.1073, 7.107, 7.1068, 7.1065, 7.1064, 7.1061, 7.1059, 7.1056, 7.1056, 7.1053, 7.1052, 7.1051, 7.1058, 7.1048, 7.1037, 7.1042, 7.1045, 7.1061, 7.1058, 7.1056, 7.1053, 7.1052, 7.1058, 7.1049, 7.1048, 7.1046, 7.1054, 7.1052, 7.1053, 7.1054, 7.1053, 7.1051, 7.1049, 7.1047, 7.1045, 7.1035, 7.1032, 7.103, 7.1038, 7.1064, 7.1061, 7.1059, 7.1057, 7.1061, 7.1059, 7.1057, 7.1058, 7.1057, 7.1065, 7.1062, 7.1069, 7.1078, 7.1076, 7.1074, 7.1087, 7.1094, 7.1091, 7.1083, 7.1089, 7.1086, 7.1084, 7.1082, 7.1079, 7.1077, 7.111, 7.1128, 7.1127, 7.1126, 7.1126, 7.1132, 7.1129, 7.113, 7.1127, 7.1133, 7.113, 7.1127, 7.1125, 7.1123, 7.112, 7.1117, 7.1125, 7.1136, 7.1135, 7.1133, 7.113, 7.1127, 7.1124, 7.1122, 7.1113, 7.111, 7.1111, 7.1111, 7.1109, 7.1108, 7.1109, 7.1109, 7.1107, 7.1114, 7.1116, 7.1114, 7.1121, 7.1121, 7.112, 7.1118, 7.1116, 7.1113, 7.1112, 7.1103, 7.1119, 7.1143, 7.114, 7.1137, 7.1134, 7.1131, 7.1137, 7.1135, 7.1134, 7.1131, 7.1135, 7.1132, 7.113, 7.1127, 7.1125, 7.1123, 7.1122, 7.112, 7.1117, 7.1114, 7.112, 7.1117, 7.1123, 7.1122, 7.1121, 7.1118, 7.1116, 7.1114, 7.1112, 7.111, 7.1107, 7.1107, 7.111, 7.1108, 7.1106, 7.1096, 7.1094, 7.11, 7.1107, 7.1114, 7.1114, 7.112, 7.1126, 7.1123, 7.1122, 7.1121, 7.1118, 7.1116, 7.1122, 7.1119, 7.1109, 7.1107, 7.1107, 7.1104, 7.1103, 7.1102, 7.1109, 7.1107, 7.1106, 7.1105, 7.1112, 7.1109, 7.1117, 7.1115, 7.1122, 7.1121, 7.112, 7.1127, 7.1127, 7.1124, 7.1122, 7.1119, 7.1117, 7.1114, 7.1111, 7.1108, 7.1107, 7.1104, 7.1111, 7.111, 7.1108, 7.1106, 7.1106, 7.1104, 7.1111, 7.111, 7.1108, 7.1107, 7.1098, 7.1088, 7.1094, 7.1093, 7.1091, 7.1089, 7.1087, 7.1085, 7.1092, 7.1099, 7.1097, 7.1104, 7.1101, 7.1099, 7.1097, 7.1095, 7.1101, 7.1099, 7.1105, 7.1105, 7.1103, 7.1101, 7.1101, 7.1102, 7.11, 7.1098, 7.1095, 7.1092, 7.1098, 7.1106, 7.1106, 7.1104, 7.1103, 7.1102, 7.1113, 7.1111, 7.1118, 7.1115, 7.1113, 7.1121, 7.1144, 7.1142, 7.114, 7.1137, 7.1135, 7.1136, 7.1133, 7.114, 7.1146, 7.1145, 7.1142, 7.1139, 7.1138, 7.1135, 7.1133, 7.113, 7.1128, 7.1133, 7.1131, 7.113, 7.1127, 7.1125, 7.1123, 7.112, 7.1119, 7.1116, 7.1106, 7.1104, 7.1102, 7.1099, 7.1105, 7.1103, 7.1101, 7.1107, 7.1105, 7.1103, 7.11, 7.1099, 7.1097, 7.1095, 7.1092, 7.1091, 7.1088, 7.1095, 7.1092, 7.1091, 7.1089, 7.1088, 7.1087, 7.1084, 7.1082, 7.108, 7.1078, 7.1076, 7.1073, 7.1079, 7.1078, 7.1076, 7.1074, 7.108, 7.1078, 7.1084, 7.1082, 7.1088, 7.1085, 7.1091, 7.1106, 7.1104, 7.1111, 7.1109, 7.1115, 7.1114, 7.1105, 7.1104, 7.1102, 7.1099, 7.1096, 7.1094, 7.1093, 7.109, 7.1087, 7.1091, 7.1089, 7.1095, 7.1092, 7.1098, 7.1095, 7.1093, 7.1099, 7.1096, 7.1095, 7.1086, 7.1085, 7.1091, 7.1091, 7.1088, 7.1086, 7.1086, 7.1083, 7.1083, 7.1081, 7.1078, 7.1084, 7.109, 7.1089, 7.1088, 7.1095, 7.1101, 7.1091, 7.109, 7.1088, 7.1087, 7.1086, 7.1093, 7.1098, 7.1104, 7.1112, 7.1123, 7.1123, 7.1121, 7.1118, 7.1139, 7.1139, 7.1156, 7.1155, 7.1145, 7.1153, 7.1152, 7.1159, 7.1157, 7.1156, 7.1155, 7.1153, 7.1153, 7.1161, 7.1159, 7.1157, 7.1165, 7.1163, 7.1153, 7.1147, 7.1145, 7.1142, 7.1142, 7.1152, 7.115, 7.1142, 7.1149, 7.1147, 7.1155, 7.1153, 7.1151, 7.1151, 7.1158, 7.1156, 7.1156, 7.1162, 7.1162, 7.1168, 7.1165, 7.1162, 7.1171, 7.1169, 7.1168, 7.1165, 7.1166, 7.1172, 7.1179, 7.1178, 7.1176, 7.1167, 7.1173, 7.117, 7.1171, 7.1168, 7.1165, 7.1172, 7.117, 7.1168, 7.1167, 7.1164, 7.1172, 7.1163, 7.1161, 7.1167, 7.1164, 7.1162, 7.1159, 7.1156, 7.1155, 7.1153, 7.1159, 7.1166, 7.1174, 7.1164, 7.117, 7.1167, 7.1165, 7.1164, 7.1161, 7.1158, 7.1155, 7.1153, 7.1151, 7.1157, 7.1157, 7.1155, 7.1156, 7.1154, 7.1154, 7.116, 7.1159, 7.1156, 7.1155, 7.1161, 7.1158, 7.1156, 7.1154, 7.1153, 7.1151, 7.115, 7.115, 7.1156, 7.1162, 7.116, 7.1158, 7.1157, 7.1157, 7.1156, 7.1154, 7.1153, 7.1151, 7.1148, 7.1155, 7.1161, 7.1159, 7.1157, 7.1156, 7.1153, 7.116, 7.1166, 7.1163, 7.1161, 7.1159, 7.1158, 7.1156, 7.1147, 7.1138, 7.1135, 7.1136, 7.1134, 7.1132, 7.1135, 7.1133, 7.1132, 7.1139, 7.1146, 7.1144, 7.1143, 7.1149, 7.1147, 7.1153, 7.1159, 7.1157, 7.1165, 7.1164, 7.1163, 7.1161, 7.1167, 7.1165, 7.1163, 7.1161, 7.1161, 7.1159, 7.1157, 7.1155, 7.1153, 7.1152, 7.1158, 7.1165, 7.1164, 7.1163, 7.1169, 7.1167, 7.1164, 7.1161, 7.1159, 7.1159, 7.1158, 7.1157, 7.1155, 7.1152, 7.1151, 7.115, 7.1148, 7.1146, 7.1144, 7.1143, 7.1142, 7.1139, 7.1137, 7.1134, 7.1132, 7.1139, 7.1145, 7.1143, 7.114, 7.1138, 7.1137, 7.1136, 7.1137, 7.1135, 7.1133, 7.1131, 7.113, 7.113, 7.1136, 7.1142, 7.114, 7.1138, 7.1144, 7.1142, 7.1148, 7.1147, 7.1153, 7.1152, 7.1157, 7.1156, 7.1161, 7.1158, 7.1157, 7.1154, 7.116, 7.1167, 7.1164, 7.1161, 7.1158, 7.1156, 7.1154, 7.116, 7.1157, 7.1155, 7.1161, 7.1158, 7.1155, 7.1152, 7.1151, 7.1149, 7.1155, 7.1154, 7.1152, 7.1151, 7.115, 7.1157, 7.1155, 7.1161, 7.1159, 7.1166, 7.1172, 7.1172, 7.1179, 7.1179, 7.1178, 7.1176, 7.1182, 7.1181, 7.1178, 7.1184, 7.119, 7.1196, 7.1194, 7.1192, 7.1191, 7.1188, 7.1187, 7.1185, 7.1191, 7.1197, 7.1195, 7.1192, 7.119, 7.1188, 7.1185, 7.1183, 7.1181, 7.1183, 7.1189, 7.1191, 7.1198, 7.1196, 7.1194, 7.1202, 7.1217, 7.1215, 7.1213, 7.1212, 7.121, 7.1208, 7.1207, 7.1213, 7.1219, 7.1217, 7.1214, 7.1213, 7.1211, 7.121, 7.1207, 7.1214, 7.1222, 7.1221, 7.122, 7.1226, 7.1233, 7.1251, 7.1249, 7.1248, 7.1247, 7.1244, 7.1241, 7.1239, 7.1245, 7.1243, 7.1241, 7.1238, 7.1235, 7.1233, 7.1232, 7.123, 7.1229, 7.1226, 7.1225, 7.1223, 7.1221, 7.1219, 7.1216, 7.1215, 7.122, 7.1218, 7.1215, 7.1213, 7.1211, 7.121, 7.1208, 7.1206, 7.1204, 7.121, 7.1208, 7.1214, 7.1212, 7.121, 7.1208, 7.1206, 7.1205, 7.1204, 7.1202, 7.1199, 7.1197, 7.1202, 7.1199, 7.1196, 7.1194, 7.1193, 7.119, 7.1196, 7.1194, 7.1191, 7.119, 7.1188, 7.1186, 7.1185, 7.1183, 7.118, 7.1186, 7.1185, 7.1191, 7.1197, 7.1203, 7.1209, 7.1206, 7.1203, 7.12, 7.1214, 7.1211, 7.121, 7.1217, 7.1215, 7.1239, 7.1237, 7.1235, 7.1241, 7.1239, 7.1236, 7.1234, 7.1232, 7.1231, 7.1231, 7.1228, 7.1226, 7.1223, 7.1221, 7.1221, 7.122, 7.1218, 7.1216, 7.1222, 7.1221, 7.1226, 7.1224, 7.1221, 7.122, 7.1218, 7.1216, 7.1214, 7.122, 7.122, 7.1218, 7.1216, 7.1222, 7.1236, 7.1235, 7.1227, 7.1247, 7.1245, 7.1259, 7.128, 7.1285, 7.1282, 7.1296, 7.1317, 7.1323, 7.1322, 7.1337, 7.1332, 7.1337, 7.1343, 7.1341, 7.1339, 7.1338, 7.1345, 7.1351, 7.1358, 7.1356, 7.1354, 7.1357, 7.1363, 7.1362, 7.136, 7.1358, 7.1356, 7.1354, 7.136, 7.1359, 7.1358, 7.1364, 7.1364, 7.1362, 7.1368, 7.1368, 7.1378, 7.1377, 7.1376, 7.1381, 7.1381, 7.1378, 7.1376, 7.1376, 7.1375, 7.1373, 7.1373, 7.1371, 7.1378, 7.1376, 7.1375, 7.1381, 7.1389, 7.1388, 7.1388, 7.1401, 7.14, 7.1398, 7.1397, 7.1395, 7.1393, 7.1392, 7.1399, 7.1421, 7.1425, 7.1424, 7.1422, 7.142, 7.1434, 7.1433, 7.1431, 7.1428, 7.1427, 7.1425, 7.1423, 7.1421, 7.1427, 7.1425, 7.1423, 7.142, 7.1418, 7.1415, 7.1412, 7.1417, 7.1414, 7.1412, 7.1409, 7.1408, 7.1406, 7.1403, 7.14, 7.1398, 7.1396, 7.1394, 7.14, 7.1405, 7.1411, 7.1409, 7.1406, 7.1404, 7.1403, 7.1408, 7.1405, 7.141, 7.1408, 7.1407, 7.1404, 7.1409, 7.1408, 7.1405, 7.1403, 7.1403, 7.14, 7.1399, 7.1397, 7.1409, 7.1407, 7.1405, 7.1399, 7.1396, 7.1402, 7.1401, 7.14, 7.1399, 7.1402, 7.1395, 7.1394, 7.1407, 7.1406, 7.1406, 7.1412, 7.1417, 7.1414, 7.1413, 7.1414, 7.1412, 7.1422, 7.1428, 7.1428, 7.143, 7.1428, 7.1426, 7.1432, 7.1438, 7.1429, 7.1426, 7.1425, 7.1423, 7.1421, 7.1419, 7.1417, 7.1423, 7.1422, 7.1421, 7.1419, 7.1416, 7.1415, 7.1412, 7.141, 7.1409, 7.1408, 7.1407, 7.1404, 7.1403, 7.1401, 7.1399, 7.1397, 7.1402, 7.1399, 7.1404, 7.1402, 7.141, 7.1408, 7.1399, 7.1397, 7.1402, 7.14, 7.1397, 7.1394, 7.1392, 7.1389, 7.1387, 7.1393, 7.1398, 7.1397, 7.1395, 7.1392, 7.139, 7.1388, 7.1402, 7.14, 7.1407, 7.1405, 7.1431, 7.1428, 7.1426, 7.1421, 7.1419, 7.1417, 7.1435, 7.1454, 7.1452, 7.1444, 7.1444, 7.1435, 7.1435, 7.1434, 7.1431, 7.1438, 7.1437, 7.1436], '192.168.122.115': [5.9352, 6.1211, 7.1009, 6.8111, 6.5188, 6.317, 6.2595, 6.8821, 7.4631, 7.4177, 7.275, 7.1266, 7.0403, 6.9706, 6.8906, 6.9, 6.889, 6.8577, 6.848, 7.0694, 7.0121, 7.177, 7.1077, 7.3183, 7.2713, 7.6153, 7.7381, 7.6743, 7.6138, 7.7304, 7.6506, 7.6052, 7.5637, 7.5089, 7.5221, 7.4627, 7.4081, 7.3593, 7.4391, 7.3991, 7.4741, 7.9225, 7.8685, 7.8321, 7.6738, 7.6198, 7.6882, 7.6417, 7.5997, 7.5575, 7.5231, 7.4816, 7.4401, 7.4075, 7.3722, 7.3373, 7.3095, 7.2762, 7.3322, 7.3104, 7.2764, 7.2555, 7.2383, 7.2177, 7.198, 7.1796, 7.2446, 7.2221, 7.284, 7.2618, 7.2482, 7.2404, 7.3156, 7.2923, 7.2781, 7.26, 7.2501, 7.225, 7.2023, 7.1838, 7.1652, 7.151, 7.1418, 7.1312, 7.1219, 7.1065, 7.0862, 7.0798, 7.122, 7.1082, 7.0885, 7.1283, 7.1101, 7.0929, 7.0767, 7.0588, 7.0423, 7.0302, 7.0156, 7.0042, 7.0504, 7.0331, 7.0168, 6.9999, 6.9478, 6.9315, 6.9163, 6.9111, 6.8956, 6.8806, 6.8712, 6.9059, 6.8976, 6.8831, 6.9196, 6.9174, 6.9065, 6.8995, 6.894, 6.9294, 6.9195, 6.9102, 6.8971, 6.9339, 6.8873, 6.844, 6.8358, 6.8354, 6.8229, 6.8147, 6.8096, 6.8443, 6.8364, 6.836, 6.8297, 6.8217, 6.8561, 6.8837, 6.8798, 6.9096, 6.9001, 6.9389, 6.9304, 6.9258, 6.929, 6.9322, 6.9222, 6.9518, 6.9473, 6.937, 6.9663, 6.9597, 6.9534, 6.9525, 6.942, 6.9663, 6.9559, 6.949, 6.943, 6.9428, 6.9402, 6.9311, 6.926, 6.89, 6.8802, 6.8712, 6.8993, 6.8939, 6.8888, 6.88, 6.9038, 6.8685, 6.8922, 6.8862, 6.8793, 6.8519, 6.8439, 6.8404, 6.8321, 6.8559, 6.8484, 6.8423, 6.8419, 6.8364, 6.8337, 6.859, 6.8519, 6.8716, 6.868, 6.8615, 6.8613, 6.8544, 6.8477, 6.8695, 6.8613, 6.8567, 6.8552, 6.8473, 6.8703, 6.9212, 6.9198, 7.0557, 7.0534, 7.0477, 7.0427, 7.0619, 7.0826, 7.0998, 7.0952, 7.1139, 7.132, 7.1261, 7.1463, 7.142, 7.1349, 7.1324, 7.127, 7.1223, 7.1239, 7.0997, 7.0711, 7.0666, 7.0603, 7.0532, 7.0709, 7.0651, 7.0824, 7.0755, 7.0684, 7.062, 7.0558, 7.0723, 7.0693, 7.0621, 7.0604, 7.0604, 7.0527, 7.1631, 7.1555, 7.1521, 7.1458, 7.1504, 7.1466, 7.1657, 7.1591, 7.1628, 7.1585, 7.1555, 7.1494, 7.143, 7.1385, 7.1549, 7.1482, 7.1661, 7.1822, 7.1764, 7.1775, 7.1742, 7.1708, 7.1649, 7.161, 7.1586, 7.1546, 7.1486, 7.1419, 7.1394, 7.1385, 7.1339, 7.1327, 7.1279, 7.1274, 7.1228, 7.1171, 7.1135, 7.1301, 7.1263, 7.1057, 7.1032, 7.117, 7.1112, 7.1071, 7.1108, 7.1078, 7.1239, 7.119, 7.1345, 7.1481, 7.1432, 7.1572, 7.1564, 7.1543, 7.1524, 7.1554, 7.1535, 7.1566, 7.1917, 7.2145, 7.2104, 7.211, 7.223, 7.2192, 7.2148, 7.1942, 7.1904, 7.187, 7.1828, 7.177, 7.1706, 7.1849, 7.1836, 7.198, 7.1943, 7.1898, 7.1906, 7.2025, 7.1963, 7.2078, 7.2055, 7.2025, 7.2021, 7.1964, 7.1937, 7.1884, 7.1995, 7.1947, 7.2062, 7.2024, 7.2034, 7.2033, 7.202, 7.2005, 7.2322, 7.243, 7.2529, 7.2529, 7.2474, 7.245, 7.245, 7.2554, 7.2499, 7.2476, 7.2457, 7.2399, 7.2343, 7.2292, 7.2399, 7.236, 7.2308, 7.2293, 7.2241, 7.234, 7.2311, 7.2431, 7.2396, 7.2524, 7.2645, 7.2621, 7.2597, 7.255, 7.2657, 7.263, 7.2605, 7.2568, 7.2576, 7.2555, 7.2549, 7.2498, 7.2479, 7.2471, 7.2433, 7.2532, 7.2359, 7.2342, 7.2306, 7.2268, 7.2222, 7.217, 7.2126, 7.2229, 7.2186, 7.294, 7.301, 7.2974, 7.3071, 7.3044, 7.2992, 7.2946, 7.2904, 7.291, 7.2992, 7.2941, 7.2891, 7.2888, 7.2845, 7.2938, 7.3414, 7.3367, 7.3318, 7.3406, 7.3359, 7.3444, 7.3398, 7.3347, 7.3308, 7.3301, 7.3389, 7.3348, 7.3298, 7.34, 7.3497, 7.3472, 7.3442, 7.3521, 7.3477, 7.344, 7.3442, 7.3669, 7.3635, 7.3728, 7.3682, 7.3654, 7.3743, 7.3831, 7.3786, 7.3739, 7.3696, 7.3654, 7.375, 7.371, 7.3673, 7.3632, 7.3586, 7.3681, 7.364, 7.3661, 7.3615, 7.3568, 7.3548, 7.3505, 7.3462, 7.357, 7.3526, 7.3758, 7.3725, 7.3689, 7.3676, 7.3631, 7.3595, 7.3674, 7.3695, 7.3662, 7.3631, 7.3717, 7.3672, 7.3723, 7.3682, 7.3679, 7.3908, 7.4028, 7.3988, 7.3893, 7.3851, 7.382, 7.3799, 7.3762, 7.3868, 7.3864, 7.3836, 7.4017, 7.3974, 7.4051, 7.4039, 7.4112, 7.4203, 7.4194, 7.4227, 7.4195, 7.4163, 7.4135, 7.4095, 7.4094, 7.4075, 7.4152, 7.4163, 7.4119, 7.4098, 7.4164, 7.4163, 7.4124, 7.4093, 7.4054, 7.4123, 7.3992, 7.3968, 7.3962, 7.3936, 7.4005, 7.3991, 7.3951, 7.4028, 7.3999, 7.3969, 7.3932, 7.3904, 7.3888, 7.3862, 7.3857, 7.3867, 7.3843, 7.385, 7.3824, 7.4076, 7.4281, 7.4262, 7.4234, 7.4223, 7.4208, 7.4168, 7.4138, 7.4115, 7.4078, 7.4041, 7.3938, 7.4004, 7.3962, 7.4024, 7.4098, 7.4061, 7.4033, 7.4012, 7.3987, 7.396, 7.3944, 7.4018, 7.4017, 7.398, 7.3944, 7.3935, 7.3911, 7.3889, 7.3876, 7.3953, 7.3914, 7.3888, 7.3879, 7.3946, 7.4015, 7.3989, 7.3967, 7.4029, 7.3907, 7.3881, 7.3953, 7.392, 7.3898, 7.3961, 7.3937, 7.3915, 7.3898, 7.3885, 7.3852, 7.3814, 7.3803, 7.3797, 7.3863, 7.3843, 7.383, 7.3806, 7.3771, 7.3752, 7.3815, 7.3781, 7.3774, 7.3753, 7.3819, 7.38, 7.3775, 7.3757, 7.3722, 7.3686, 7.3653, 7.3621, 7.3603, 7.3574, 7.3544, 7.3597, 7.3563, 7.355, 7.3553, 7.3524, 7.3489, 7.3492, 7.3464, 7.3439, 7.3503, 7.3512, 7.3492, 7.3461, 7.3433, 7.3398, 7.3374, 7.335, 7.3328, 7.3317, 7.3294, 7.3353, 7.3413, 7.3398, 7.3457, 7.3451, 7.3419, 7.3397, 7.3457, 7.3433, 7.35, 7.3392, 7.3389, 7.3357, 7.3324, 7.3705, 7.3703, 7.3684, 7.3656, 7.3629, 7.3604, 7.3581, 7.3554, 7.353, 7.3509, 7.3493, 7.3466, 7.3522, 7.3497, 7.3472, 7.3467, 7.3364, 7.3263, 7.3251, 7.3264, 7.3237, 7.3221, 7.322, 7.3199, 7.3167, 7.3307, 7.3292, 7.3268, 7.3185, 7.3167, 7.3079, 7.3051, 7.3035, 7.3014, 7.2991, 7.3049, 7.3027, 7.3005, 7.2986, 7.2976, 7.2963, 7.304, 7.3011, 7.298, 7.2973, 7.2949, 7.2932, 7.2989, 7.3064, 7.3144, 7.3123, 7.3097, 7.3081, 7.3135, 7.3121, 7.3122, 7.3178, 7.3238, 7.321, 7.3183, 7.3242, 7.3227, 7.3281, 7.3253, 7.3247, 7.3231, 7.3227, 7.3293, 7.3348, 7.3319, 7.3291, 7.3277, 7.3191, 7.3162, 7.336, 7.3336, 7.331, 7.3362, 7.3344, 7.3406, 7.3402, 7.3378, 7.3396, 7.3455, 7.3427, 7.3414, 7.3387, 7.3363, 7.334, 7.3317, 7.3289, 7.3271, 7.3251, 7.3241, 7.3217, 7.3222, 7.32, 7.325, 7.3229, 7.3225, 7.3233, 7.3214, 7.3198, 7.3173, 7.3154, 7.3126, 7.319, 7.3165, 7.3139, 7.3125, 7.3184, 7.3161, 7.3212, 7.3198, 7.3194, 7.3257, 7.3238, 7.3212, 7.3201, 7.3259, 7.3174, 7.3149, 7.3193, 7.3175, 7.3159, 7.3145, 7.3122, 7.3103, 7.308, 7.3061, 7.3042, 7.3016, 7.2998, 7.3052, 7.3028, 7.3022, 7.2996, 7.2982, 7.2957, 7.2946, 7.2998, 7.2974, 7.2961, 7.2938, 7.2923, 7.29, 7.295, 7.2932, 7.2914, 7.2906, 7.2966, 7.2949, 7.2927, 7.2918, 7.2905, 7.2882, 7.2931, 7.2915, 7.2975, 7.3132, 7.3116, 7.3471, 7.3446, 7.3637, 7.3721, 7.3646, 7.3628, 7.3607, 7.365, 7.3823, 7.3995, 7.3968, 7.4013, 7.3991, 7.4036, 7.4016, 7.4002, 7.3989, 7.3969, 7.3947, 7.387, 7.3845, 7.3822, 7.3796, 7.3782, 7.3763, 7.3744, 7.373, 7.3705, 7.3685, 7.3662, 7.3703, 7.3679, 7.3655, 7.3629, 7.3612, 7.3589, 7.3567, 7.3544, 7.3532, 7.3506, 7.3504, 7.3484, 7.3469, 7.3468, 7.3445, 7.343, 7.3406, 7.3382, 7.336, 7.3404, 7.3394, 7.3372, 7.3421, 7.3406, 7.3388, 7.338, 7.3357, 7.3338, 7.3321, 7.3298, 7.328, 7.3273, 7.3282, 7.3327, 7.332, 7.3369, 7.3353, 7.3337, 7.3336, 7.3375, 7.3359, 7.3349, 7.333, 7.3313, 7.3293, 7.3286, 7.3265, 7.3243, 7.329, 7.3284, 7.3268, 7.325, 7.3232, 7.3213, 7.3263, 7.3246, 7.325, 7.3227, 7.3222, 7.3207, 7.3134, 7.3118, 7.3159, 7.3136, 7.3123, 7.3105, 7.3084, 7.3065, 7.3109, 7.3149, 7.3138, 7.314, 7.3125, 7.3115, 7.3099, 7.3142, 7.3138, 7.3127, 7.3107, 7.3088, 7.3071, 7.3066, 7.3108, 7.3157, 7.3134, 7.3124, 7.3103, 7.3142, 7.3126, 7.3121, 7.3105, 7.3084, 7.3131, 7.3111, 7.3096, 7.314, 7.3132, 7.3119, 7.3162, 7.3143, 7.3183, 7.3167, 7.315, 7.3128, 7.3117, 7.31, 7.3144, 7.3126, 7.3114, 7.3112, 7.3102, 7.3275, 7.3257, 7.3238, 7.3223, 7.3286, 7.335, 7.3299, 7.3294, 7.3287, 7.3274, 7.3255, 7.3242, 7.3285, 7.3273, 7.3259, 7.33, 7.3288, 7.3327, 7.3308, 7.3291, 7.3332, 7.3334, 7.3313, 7.3302, 7.3348, 7.3345, 7.3422, 7.3356, 7.3344, 7.3328, 7.3319, 7.3303, 7.3292, 7.3275, 7.3257, 7.324, 7.328, 7.3269, 7.3252, 7.3242, 7.3224, 7.3203, 7.3193, 7.3177, 7.3163, 7.3203, 7.325, 7.3272, 7.322, 7.3258, 7.3264, 7.3245, 7.3235, 7.3216, 7.3202, 7.3191, 7.3178, 7.3226, 7.3265, 7.3252, 7.3292, 7.3279, 7.3272, 7.3211, 7.3203, 7.3188, 7.3181, 7.3216, 7.3201, 7.3183, 7.322, 7.3202, 7.3191, 7.3173, 7.3155, 7.3136, 7.3118, 7.3163, 7.3159, 7.3145, 7.3187, 7.3179, 7.3162, 7.3152, 7.3146, 7.3127, 7.3162, 7.3145, 7.3183, 7.3174, 7.3157, 7.314, 7.3121, 7.312, 7.3103, 7.3088, 7.3087, 7.309, 7.308, 7.307, 7.3051, 7.3083, 7.3114, 7.3098, 7.3087, 7.3075, 7.3116, 7.3112, 7.3146, 7.3139, 7.3128, 7.3117, 7.31, 7.3038, 7.2979, 7.2915, 7.29, 7.2936, 7.2874, 7.2906, 7.2891, 7.2879, 7.2873, 7.2861, 7.2844, 7.2833, 7.2825, 7.2808, 7.2798, 7.2836, 7.2824, 7.281, 7.2849, 7.2838, 7.2923, 7.2906, 7.294, 7.2927, 7.296, 7.2953, 7.2946, 7.2928, 7.2911, 7.2904, 7.2898, 7.2895, 7.2885, 7.2922, 7.2912, 7.2895, 7.288, 7.2876, 7.286, 7.2843, 7.2825, 7.2806, 7.2788, 7.2775, 7.2807, 7.2843, 7.2835, 7.2822, 7.2857, 7.284, 7.2832, 7.2826, 7.2771, 7.2718, 7.2708, 7.2691, 7.2687, 7.2785, 7.2768, 7.2751, 7.2736, 7.2721, 7.2705, 7.2736, 7.2737, 7.273, 7.2715, 7.2699, 7.274, 7.2722, 7.2755, 7.2745, 7.2729, 7.2716, 7.27, 7.2702, 7.2694, 7.2676, 7.266, 7.2646, 7.263, 7.2621, 7.2603, 7.2587, 7.2571, 7.2554, 7.2539, 7.2534, 7.2521, 7.2511, 7.2509, 7.2505, 7.2537, 7.2522, 7.2554, 7.2549, 7.2544, 7.2537, 7.2528, 7.2513, 7.2505, 7.2537, 7.2521, 7.2508, 7.2514, 7.2507, 7.2493, 7.2481, 7.2519, 7.2556, 7.2596, 7.2653, 7.2643, 7.2593, 7.2622, 7.2618, 7.2651, 7.2638, 7.2625, 7.2655, 7.2684, 7.2674, 7.2659, 7.2644, 7.2633, 7.2622, 7.2613, 7.2599, 7.2632, 7.2624, 7.2655, 7.2641, 7.2625, 7.261, 7.2603, 7.2634, 7.2625, 7.2632, 7.2584, 7.2567, 7.2604, 7.2599, 7.2586, 7.2573, 7.256, 7.2507, 7.2462, 7.2542, 7.2533, 7.2562, 7.2599, 7.2586, 7.2575, 7.2562, 7.2564, 7.2514, 7.2548, 7.2537, 7.2525, 7.2513, 7.25, 7.2486, 7.2475, 7.2459, 7.2448, 7.248, 7.2463, 7.2459, 7.2459, 7.2411, 7.2395, 7.2389, 7.2379, 7.2409, 7.2438, 7.2425, 7.2454, 7.2438, 7.2429, 7.2447, 7.2434, 7.2467, 7.2458, 7.2443, 7.2438, 7.2425, 7.2414, 7.2408, 7.2394, 7.2388, 7.242, 7.2407, 7.2356, 7.2383, 7.2382, 7.2334, 7.2369, 7.2367, 7.2352, 7.2382, 7.2414, 7.2401, 7.2388, 7.2374, 7.2326, 7.2313, 7.2299, 7.2294, 7.2279, 7.2274, 7.2261, 7.2247, 7.2273, 7.2264, 7.2254, 7.2248, 7.2242, 7.2233, 7.2183, 7.2138, 7.2216, 7.2209, 7.2199, 7.2186, 7.2137, 7.2092, 7.2082, 7.2045, 7.2042, 7.2034, 7.2027, 7.2018, 7.2009, 7.1999, 7.1993, 7.1979, 7.1973, 7.1959, 7.1949, 7.1936, 7.1922, 7.195, 7.1936, 7.1922, 7.1921, 7.1907, 7.1902, 7.1895, 7.1881, 7.1874, 7.1861, 7.186, 7.1852, 7.1841, 7.184, 7.1879, 7.1868, 7.1866, 7.1857, 7.186, 7.1863, 7.1849, 7.188, 7.1947, 7.1976, 7.1973, 7.1959, 7.1946, 7.1993, 7.2078, 7.2068, 7.2065, 7.2066, 7.2097, 7.2137, 7.217, 7.2156, 7.2142, 7.2136, 7.2127, 7.216, 7.2147, 7.2134, 7.212, 7.2117, 7.2108, 7.2094, 7.2086, 7.2115, 7.2144, 7.2131, 7.2118, 7.2111, 7.2103, 7.2091, 7.2077, 7.2073, 7.2066, 7.2022, 7.2009, 7.1997, 7.1987, 7.1974, 7.2005, 7.2034, 7.2026, 7.2054, 7.2014, 7.1978, 7.1935, 7.1925, 7.1913, 7.19, 7.1932, 7.1923, 7.1912, 7.194, 7.1931, 7.1922, 7.1908, 7.1866, 7.1869, 7.1862, 7.1859, 7.1886, 7.1915, 7.1902, 7.186, 7.1888, 7.1878, 7.1864, 7.185, 7.184, 7.1827, 7.1814, 7.1842, 7.1828, 7.1815, 7.1811, 7.1798, 7.1787, 7.1774, 7.1767, 7.1755, 7.1743, 7.1738, 7.1764, 7.1752, 7.1741, 7.1734, 7.176, 7.1789, 7.1776, 7.1803, 7.1793, 7.1787, 7.1782, 7.1771, 7.1797, 7.1784, 7.1772, 7.1767, 7.1763, 7.1753, 7.1744, 7.1771, 7.1761, 7.1751, 7.1738, 7.1766, 7.1753, 7.1781, 7.1771, 7.1799, 7.1826, 7.1817, 7.1806, 7.1833, 7.1831, 7.1823, 7.1817, 7.1845, 7.1843, 7.1834, 7.1831, 7.182, 7.1807, 7.1802, 7.1792, 7.1786, 7.1779, 7.1766, 7.1724, 7.1685, 7.1673, 7.1667, 7.1696, 7.1692, 7.168, 7.1678, 7.167, 7.1661, 7.1659, 7.1685, 7.1714, 7.1703, 7.1692, 7.1803, 7.1798, 7.1824, 7.178, 7.1742, 7.1796, 7.1799, 7.1868, 7.1859, 7.1849, 7.1837, 7.1825, 7.1818, 7.1815, 7.1841, 7.1799, 7.1794, 7.179, 7.1785, 7.1773, 7.1764, 7.1763, 7.1756, 7.1745, 7.1736, 7.1725, 7.1713, 7.174, 7.1735, 7.1725, 7.1719, 7.1717, 7.1707, 7.1695, 7.1728, 7.1717, 7.1743, 7.1733, 7.1723, 7.171, 7.1708, 7.1699, 7.1693, 7.1686, 7.1718, 7.1709, 7.1697, 7.172, 7.1709, 7.1699, 7.1693, 7.1681, 7.1676, 7.1664, 7.1652, 7.1684, 7.1674, 7.1664, 7.1652, 7.1612, 7.1617, 7.1608, 7.1634, 7.1628, 7.1619, 7.1643, 7.1634, 7.1632, 7.1621, 7.1674, 7.1666, 7.1655, 7.1642, 7.1766, 7.1755, 7.1763, 7.176, 7.1749, 7.1756, 7.1745, 7.1745, 7.1734, 7.1759, 7.1752, 7.1739, 7.1763, 7.1751, 7.1738, 7.1727, 7.1718, 7.1743, 7.1732, 7.1722, 7.1717, 7.1747, 7.1738, 7.1765, 7.1755, 7.1748, 7.1749, 7.1774, 7.1762, 7.1753, 7.1777, 7.1741, 7.1732, 7.1722, 7.1748, 7.1737, 7.1761, 7.1755, 7.1782, 7.1775, 7.1763, 7.1755, 7.1743, 7.1768, 7.1793, 7.1816, 7.1841, 7.183, 7.1822, 7.181, 7.1799, 7.1791, 7.178, 7.1769, 7.1793, 7.1782, 7.1771, 7.1766, 7.1791, 7.1814, 7.1846, 7.1836, 7.1826, 7.1814, 7.1807, 7.1796, 7.1786, 7.1776, 7.1769, 7.1731, 7.1758, 7.1757, 7.1757, 7.1747, 7.1742, 7.1738, 7.173, 7.1732, 7.1721, 7.1716, 7.1711, 7.1737, 7.1738, 7.1764, 7.1796, 7.1785, 7.1779, 7.1773, 7.1763, 7.1796, 7.1788, 7.1777, 7.1807, 7.1805, 7.1831, 7.1819, 7.1814, 7.1807, 7.1839, 7.183, 7.182, 7.1814, 7.181, 7.1832, 7.1864, 7.1934, 7.1924, 7.1919, 7.1907, 7.1899, 7.189, 7.1913, 7.1906, 7.1894, 7.1959, 7.1955, 7.1962, 7.1953, 7.1943, 7.1934, 7.193, 7.1921, 7.1914, 7.1972, 7.1969, 7.1958, 7.1956, 7.195, 7.1947, 7.1941, 7.1932, 7.1926, 7.1916, 7.1915, 7.1904, 7.1894, 7.1887, 7.1907, 7.1896, 7.1886, 7.1848, 7.1836, 7.1825, 7.1816, 7.1805, 7.1826, 7.1818, 7.1807, 7.18, 7.1788, 7.1783, 7.1779, 7.1774, 7.1763, 7.1754, 7.1747, 7.1736, 7.1728, 7.1691, 7.1721, 7.1711, 7.1705, 7.17, 7.1696, 7.1686, 7.169, 7.169, 7.1682, 7.1675, 7.1695, 7.1694, 7.1691, 7.1727, 7.1738, 7.1774, 7.1767, 7.176, 7.1756, 7.173, 7.1722, 7.1715, 7.1738, 7.1739, 7.1738, 7.173, 7.1723, 7.1745, 7.1741, 7.1733, 7.1756, 7.1756, 7.1746, 7.1738, 7.1733, 7.1729, 7.1751, 7.1748, 7.1768, 7.1788, 7.1811, 7.181, 7.1772, 7.1769, 7.1764, 7.1755, 7.1744, 7.1735, 7.1726, 7.1716, 7.1713, 7.1706, 7.1696, 7.1691, 7.1657, 7.1653, 7.1642, 7.1677, 7.167, 7.166, 7.165, 7.1642, 7.1662, 7.1651, 7.1641, 7.1635, 7.1624, 7.1618, 7.1615, 7.1607, 7.1599, 7.1623, 7.1619, 7.161, 7.1605, 7.1627, 7.1625, 7.1624, 7.1617, 7.1613, 7.1608, 7.1599, 7.159, 7.1587, 7.1579, 7.16, 7.1592, 7.1614, 7.1607, 7.1599, 7.1593, 7.1585, 7.1577, 7.157, 7.1564, 7.1576, 7.1566, 7.1556, 7.1579, 7.1589, 7.1613, 7.1608, 7.1599, 7.1593, 7.162, 7.1613, 7.1608, 7.1601, 7.1599, 7.1594, 7.1618, 7.1608, 7.1605, 7.1629, 7.1624, 7.1614, 7.1607, 7.1602, 7.1593, 7.1582, 7.1574, 7.1573, 7.1563, 7.1557, 7.1552, 7.1543, 7.1564, 7.1554, 7.1575, 7.1569, 7.1563, 7.1588, 7.1579, 7.1572, 7.1567, 7.1564, 7.1612, 7.1633, 7.1623, 7.1643, 7.1666, 7.1661, 7.1654, 7.1703, 7.1729, 7.1721, 7.1741, 7.1739, 7.1732, 7.1722, 7.1715, 7.1709, 7.17, 7.1693, 7.1722, 7.1717, 7.1713, 7.1705, 7.1728, 7.1719, 7.1716, 7.1738, 7.1736, 7.1727, 7.1717, 7.1712, 7.1732, 7.1725, 7.1724, 7.1717, 7.1716, 7.1712, 7.1733, 7.1727, 7.178, 7.18, 7.1793, 7.1814, 7.1806, 7.18, 7.1792, 7.1787, 7.1809, 7.1802, 7.1796, 7.1786, 7.1779, 7.1799, 7.1821, 7.1816, 7.1808, 7.1798, 7.1818, 7.1808, 7.1805, 7.1801, 7.1819, 7.1812, 7.1804, 7.1798, 7.177, 7.1761, 7.1753, 7.1746, 7.1743, 7.1738, 7.1734, 7.173, 7.1749, 7.1742, 7.1734, 7.1736, 7.1735, 7.1726, 7.1725, 7.1774, 7.177, 7.1769, 7.1763, 7.1754, 7.1746, 7.1738, 7.1731, 7.1724, 7.1715, 7.1718, 7.171, 7.1708, 7.1704, 7.1696, 7.1694, 7.1687, 7.1682, 7.1676, 7.1702, 7.1696, 7.1687, 7.171, 7.17, 7.1693, 7.1687, 7.1681, 7.1678, 7.1669, 7.1659, 7.1653, 7.1674, 7.1665, 7.1658, 7.1678, 7.1672, 7.1663, 7.1657, 7.1676, 7.1677, 7.1667, 7.1634, 7.1601, 7.1623, 7.1614, 7.1606, 7.1599, 7.1595, 7.1592, 7.1613, 7.1609, 7.16, 7.1597, 7.1589, 7.1607, 7.163, 7.1654, 7.1648, 7.1641, 7.1637, 7.1632, 7.1626, 7.162, 7.1617, 7.1608, 7.1599, 7.1593, 7.1587, 7.158, 7.1601, 7.162, 7.164, 7.1634, 7.1626, 7.1645, 7.1642, 7.164, 7.1631, 7.1623, 7.1621, 7.1613, 7.1605, 7.1609, 7.1629, 7.1621, 7.1617, 7.161, 7.1602, 7.1625, 7.1619, 7.1612, 7.1606, 7.1599, 7.1592, 7.1583, 7.1575, 7.1567, 7.1559, 7.1552, 7.1544, 7.1547, 7.154, 7.1548, 7.1539, 7.1534, 7.1558, 7.1582, 7.1575, 7.1566, 7.1587, 7.1606, 7.1602, 7.1598, 7.1597, 7.1589, 7.158, 7.1577, 7.1569, 7.156, 7.1555, 7.1554, 7.1577, 7.1571, 7.1592, 7.1613, 7.1626, 7.1621, 7.1618, 7.1612, 7.1604, 7.1599, 7.1591, 7.161, 7.1606, 7.1598, 7.1592, 7.1588, 7.1559, 7.1552, 7.1544, 7.1536, 7.1529, 7.1604, 7.1597, 7.1589, 7.1584, 7.1604, 7.1597, 7.1589, 7.1583, 7.1601, 7.1594, 7.1589, 7.1581, 7.1572, 7.1565, 7.1558, 7.1549, 7.1568, 7.1561, 7.1578, 7.1579, 7.1571, 7.1564, 7.1557, 7.1577, 7.1574, 7.1567, 7.1561, 7.1557, 7.155, 7.1546, 7.1539, 7.1531, 7.1523, 7.1515, 7.1506, 7.1498, 7.1516, 7.1508, 7.15, 7.1492, 7.1509, 7.1528, 7.1519, 7.1536, 7.1554, 7.1547, 7.1539, 7.1508, 7.1499, 7.1496, 7.149, 7.1538, 7.1533, 7.1525, 7.1528, 7.1526, 7.152, 7.1537, 7.1565, 7.1562, 7.1561, 7.1552, 7.1543, 7.1512, 7.1506, 7.15, 7.1493, 7.1487, 7.1487, 7.1479, 7.1473, 7.1466, 7.146, 7.1452, 7.1446, 7.1441, 7.1435, 7.1435, 7.1428, 7.1424, 7.1444, 7.1444, 7.1462, 7.1455, 7.1447, 7.1438, 7.1432, 7.1427, 7.1445, 7.1463, 7.1455, 7.1475, 7.1467, 7.1463, 7.1457, 7.1453, 7.1445, 7.1438, 7.1432, 7.1425, 7.1427, 7.1419, 7.1437, 7.1434, 7.1433, 7.1428, 7.1423, 7.1415, 7.1407, 7.1402, 7.142, 7.1438, 7.143, 7.1423, 7.1393, 7.1386, 7.1382, 7.1429, 7.1425, 7.1397, 7.1391, 7.1387, 7.1379, 7.1396, 7.1391, 7.1387, 7.138, 7.1376, 7.1375, 7.1367, 7.1361, 7.1354, 7.1346, 7.1371, 7.1369, 7.1364, 7.1356, 7.135, 7.1342, 7.1334, 7.1333, 7.1324, 7.1342, 7.1344, 7.1337, 7.133, 7.1322, 7.1319, 7.1318, 7.1313, 7.1333, 7.1354, 7.1351, 7.135, 7.1342, 7.1335, 7.1328, 7.1321, 7.1314, 7.1332, 7.133, 7.1322, 7.1315, 7.1313, 7.1315, 7.1308, 7.1328, 7.1323, 7.1342, 7.1335, 7.1331, 7.1328, 7.1345, 7.1364, 7.1358, 7.1354, 7.1345, 7.1362, 7.1356, 7.135, 7.1342, 7.1337, 7.1333, 7.1353, 7.1371, 7.1367, 7.1359, 7.1331, 7.1325, 7.1324, 7.1317, 7.1356, 7.1351, 7.1344, 7.1336, 7.1335, 7.1327, 7.132, 7.1338, 7.1332, 7.1348, 7.134, 7.1332, 7.1324, 7.1319, 7.1318, 7.132, 7.1317, 7.131, 7.1311, 7.1305, 7.1276, 7.127, 7.1264, 7.1258, 7.1275, 7.1268, 7.1283, 7.1382, 7.1378, 7.1371, 7.1343, 7.1336, 7.1331, 7.1325, 7.1317, 7.1315, 7.1308, 7.1304, 7.1298, 7.1295, 7.1288, 7.128, 7.1276, 7.127, 7.1274, 7.1292, 7.1285, 7.1299, 7.1292, 7.1314, 7.1308, 7.1303, 7.1305, 7.1354, 7.1349, 7.1325, 7.1317, 7.131, 7.1303, 7.13, 7.1322, 7.1339, 7.1355, 7.135, 7.1346, 7.1344, 7.1338, 7.1355, 7.1373, 7.1381, 7.1374, 7.1371, 7.1363, 7.1355, 7.1352, 7.1345, 7.134, 7.1337, 7.1337, 7.1335, 7.1331, 7.1323, 7.134, 7.1359, 7.1353, 7.1345, 7.1392, 7.1398, 7.1396, 7.1414, 7.1407, 7.1425, 7.1423, 7.1417, 7.1411, 7.1405, 7.1421, 7.1438, 7.1453, 7.1447, 7.144, 7.1459, 7.1453, 7.1446, 7.1441, 7.1434, 7.143, 7.1446, 7.1439, 7.1456, 7.1448, 7.1463, 7.1456, 7.1472, 7.147, 7.1486, 7.1502, 7.1516, 7.1513, 7.1506, 7.1506, 7.1499, 7.1494, 7.151, 7.1503, 7.15, 7.1493, 7.1486, 7.1502, 7.1499, 7.1473, 7.1489, 7.1481, 7.1501, 7.1496, 7.1513, 7.1506, 7.1503, 7.1495, 7.1488, 7.1483, 7.1476, 7.147, 7.1462, 7.1457, 7.145, 7.1466, 7.1462, 7.1477, 7.1471, 7.1466, 7.1461, 7.1457, 7.1449, 7.1465, 7.1481, 7.1476, 7.1469, 7.1443, 7.1438, 7.143, 7.1424, 7.1439, 7.1454, 7.1451, 7.1428, 7.1422, 7.1417, 7.142, 7.1416, 7.1408, 7.1424, 7.1418, 7.1414, 7.1409, 7.1402, 7.1437, 7.1451, 7.1451, 7.1444, 7.1459, 7.1454, 7.1448, 7.145, 7.1466, 7.1462, 7.1455, 7.1451, 7.1448, 7.1466, 7.1463, 7.1461, 7.1481, 7.1474, 7.1466, 7.146, 7.1452, 7.1444, 7.1442, 7.1437, 7.1431, 7.1446, 7.1465, 7.1462, 7.1458, 7.1472, 7.1472, 7.1489, 7.1492, 7.1466, 7.1486, 7.1479, 7.1475, 7.1472, 7.1486, 7.1481, 7.1475, 7.1471, 7.1466, 7.1458, 7.1457, 7.1471, 7.1467, 7.1482, 7.1475, 7.1468, 7.1465, 7.1458, 7.1474, 7.1476, 7.1492, 7.1485, 7.148, 7.1476, 7.1468, 7.1462, 7.1479, 7.1456, 7.145, 7.1449, 7.1448, 7.1442, 7.1439, 7.1432, 7.1425, 7.1419, 7.1414, 7.1409, 7.1406, 7.1402, 7.1401, 7.1395, 7.139, 7.1406, 7.1426, 7.1401, 7.144, 7.1433, 7.1429, 7.1462, 7.1477, 7.1494, 7.1488, 7.1484, 7.1479, 7.1473, 7.1488, 7.1482, 7.1476, 7.1472, 7.1468, 7.1444, 7.1438, 7.1431, 7.1426, 7.1421, 7.1417, 7.1414, 7.1407, 7.1405, 7.1402, 7.1397, 7.139, 7.1406, 7.1399, 7.1394, 7.1388, 7.1385, 7.138, 7.1375, 7.1371, 7.1364, 7.1357, 7.135, 7.1363, 7.1361, 7.1376, 7.1369, 7.1364, 7.1367, 7.1384, 7.1378, 7.1371, 7.1367, 7.1361, 7.1335, 7.131, 7.1305, 7.1298, 7.1291, 7.1286, 7.1279, 7.1272, 7.1287, 7.1283, 7.1279, 7.1275, 7.1268, 7.1261, 7.1256, 7.1249, 7.1263, 7.1263, 7.1258, 7.1253, 7.1249, 7.1245, 7.1239, 7.1235, 7.1211, 7.1206, 7.122, 7.1217, 7.1211, 7.1204, 7.1199, 7.1196, 7.1193, 7.1189, 7.1207, 7.1201, 7.1197, 7.119, 7.1165, 7.1166, 7.1168, 7.1163, 7.1161, 7.1196, 7.119, 7.1205, 7.1201, 7.1176, 7.117, 7.1186, 7.1201, 7.1182, 7.1175, 7.1189, 7.1202, 7.1195, 7.1209, 7.1184, 7.1178, 7.1174, 7.1167, 7.1162, 7.1156, 7.1149, 7.1146, 7.1143, 7.1138, 7.1164, 7.1157, 7.1152, 7.1154, 7.1174, 7.1172, 7.117, 7.1167, 7.116, 7.1154, 7.1152, 7.1183, 7.1178, 7.119, 7.1187, 7.1201, 7.1194, 7.1191, 7.1205, 7.12, 7.1196, 7.1192, 7.1189, 7.1183, 7.1176, 7.1171, 7.1187, 7.1182, 7.1177, 7.1174, 7.1189, 7.1187, 7.1185, 7.1181, 7.1178, 7.1179, 7.1173, 7.117, 7.117, 7.1186, 7.1163, 7.1156, 7.116, 7.1154, 7.117, 7.1186, 7.1183, 7.1176, 7.1174, 7.1169, 7.1163, 7.1158, 7.1152, 7.1169, 7.1165, 7.1163, 7.1158, 7.1152, 7.1146, 7.1144, 7.1142, 7.1137, 7.1131, 7.1125, 7.1102, 7.11, 7.1119, 7.1116, 7.1112, 7.1108, 7.1103, 7.11, 7.1096, 7.109, 7.1086, 7.108, 7.1078, 7.1076, 7.1071, 7.1066, 7.1059, 7.1055, 7.1051, 7.1049, 7.1044, 7.1061, 7.1059, 7.1052, 7.1065, 7.1062, 7.1078, 7.1072, 7.1065, 7.1058, 7.1051, 7.1065, 7.108, 7.1094, 7.1088, 7.1085, 7.1079, 7.1075, 7.1068, 7.1083, 7.1098, 7.1095, 7.1103, 7.1098, 7.1093, 7.1092, 7.1091, 7.1088, 7.1087, 7.1085, 7.1079, 7.1076, 7.1091, 7.1087, 7.1081, 7.1075, 7.107, 7.1063, 7.108, 7.1066, 7.1061, 7.1056, 7.1051, 7.1047, 7.1042, 7.1038, 7.1033, 7.1028, 7.1027, 7.1021, 7.1037, 7.1036, 7.1035, 7.1029, 7.1025, 7.1042, 7.1056, 7.1051, 7.1045, 7.1038, 7.1032, 7.1026, 7.102, 7.1034, 7.1028, 7.1023, 7.1051, 7.1049, 7.1063, 7.1059, 7.1052, 7.1051, 7.1031, 7.1025, 7.1069, 7.1064, 7.1058, 7.1072, 7.1067, 7.1061, 7.1056, 7.1051, 7.1067, 7.106, 7.1055, 7.1053, 7.1049, 7.1062, 7.1062, 7.1063, 7.1076, 7.1071, 7.1069, 7.1065, 7.1122, 7.1116, 7.1112, 7.1105, 7.11, 7.1098, 7.1076, 7.1056, 7.1054, 7.105, 7.1047, 7.1045, 7.1039, 7.1036, 7.1035, 7.1029, 7.1025, 7.1021, 7.1019, 7.1012, 7.1006, 7.1006, 7.1, 7.1002, 7.0998, 7.0992, 7.0987, 7.0983, 7.0977, 7.0977, 7.0971, 7.0971, 7.0968, 7.0969, 7.0963, 7.0957, 7.0954, 7.0948, 7.0942, 7.0956, 7.097, 7.0966, 7.098, 7.0974, 7.0968, 7.0982, 7.0997, 7.099, 7.0986, 7.0982, 7.0995, 7.0988, 7.0986, 7.0981, 7.0995, 7.1007, 7.1031, 7.1044, 7.104, 7.1034, 7.1031, 7.103, 7.1027, 7.1026, 7.102, 7.1014, 7.1008, 7.1003, 7.0999, 7.1013, 7.1007, 7.1005, 7.1003, 7.1005, 7.1, 7.1014, 7.1009, 7.1023, 7.1017, 7.1031, 7.1029, 7.1027, 7.1023, 7.102, 7.1015, 7.1012, 7.1007, 7.1004, 7.0998, 7.0992, 7.1015, 7.1012, 7.1007, 7.1001, 7.0997, 7.0994, 7.1007, 7.1003, 7.1001, 7.0996, 7.0994, 7.0988, 7.0985, 7.098, 7.1001, 7.0995, 7.0992, 7.0971, 7.0969, 7.1003, 7.0997, 7.102, 7.1029, 7.1026, 7.1021, 7.1016, 7.1031, 7.1012, 7.1008, 7.1007, 7.1002, 7.0997, 7.0994, 7.0988, 7.0982, 7.0979, 7.0975, 7.0969, 7.0964, 7.0976, 7.0974, 7.097, 7.0969, 7.0963, 7.0976, 7.097, 7.095, 7.0947, 7.0944, 7.0939, 7.0936, 7.0932, 7.0926, 7.0925, 7.0922, 7.0918, 7.0913, 7.0908, 7.0905, 7.0899, 7.0893, 7.0891, 7.089, 7.0888, 7.0899, 7.0894, 7.0889, 7.0884, 7.0879, 7.0876, 7.0871, 7.0866, 7.086, 7.0854, 7.0848, 7.0845, 7.084, 7.0835, 7.0848, 7.0842, 7.0838, 7.0834, 7.0829, 7.0826, 7.0826, 7.0839, 7.0852, 7.0833, 7.0831, 7.0829, 7.0824, 7.0839, 7.0833, 7.083, 7.0846, 7.0841, 7.0836, 7.0832, 7.0827, 7.0833, 7.0828, 7.0827, 7.0826, 7.0824, 7.082, 7.084, 7.0835, 7.0849, 7.0843, 7.0839, 7.0852, 7.0865, 7.0867, 7.0865, 7.086, 7.0857, 7.0854, 7.085, 7.0847, 7.0843, 7.0839, 7.0851, 7.0848, 7.0827, 7.0825, 7.0821, 7.0833, 7.0847, 7.0842, 7.0856, 7.0854, 7.0852, 7.0866, 7.0861, 7.0857, 7.0852, 7.0851, 7.0845, 7.0842, 7.0837, 7.0833, 7.0831, 7.0826, 7.0821, 7.0818, 7.0797, 7.0794, 7.0793, 7.0788, 7.0801, 7.0798, 7.0809, 7.0803, 7.0801, 7.0796, 7.0812, 7.0811, 7.0807, 7.0803, 7.0803, 7.0799, 7.0795, 7.0789, 7.0786, 7.0786, 7.078, 7.0778, 7.0774, 7.077, 7.0765, 7.0777, 7.0774, 7.0769, 7.0767, 7.0763, 7.0761, 7.0755, 7.075, 7.0745, 7.0756, 7.0751, 7.0745, 7.0743, 7.0758, 7.0738, 7.0735, 7.0733, 7.0728, 7.0725, 7.0721, 7.0736, 7.0731, 7.0743, 7.0756, 7.0752, 7.0747, 7.076, 7.0754, 7.0749, 7.0745, 7.0739, 7.0751, 7.0749, 7.0763, 7.076, 7.0759, 7.0757, 7.0756, 7.0754, 7.0754, 7.075, 7.0745, 7.0741, 7.0739, 7.0752, 7.0754, 7.0802, 7.0816, 7.0846, 7.0845, 7.0839, 7.0835, 7.083, 7.0843, 7.0838, 7.0836, 7.0832, 7.0827, 7.084, 7.0843, 7.084, 7.0835, 7.0836, 7.0831, 7.0844, 7.0858, 7.0854, 7.0851, 7.0848, 7.0845, 7.0843, 7.0839, 7.0833, 7.0828, 7.0826, 7.0822, 7.0825, 7.0821, 7.082, 7.0815, 7.0811, 7.0842, 7.0827, 7.0822, 7.082, 7.0819, 7.0815, 7.0828, 7.0828, 7.0822, 7.082, 7.0814, 7.0827, 7.0823, 7.0819, 7.083, 7.0824, 7.082, 7.0815, 7.0817, 7.0812, 7.0809, 7.0821, 7.0815, 7.0809, 7.0804, 7.0799, 7.0796, 7.0794, 7.0817, 7.0817, 7.0813, 7.0809, 7.0807, 7.0807, 7.0808, 7.0819, 7.0817, 7.0829, 7.0825, 7.0826, 7.0823, 7.0818, 7.083, 7.0859, 7.0857, 7.0852, 7.0847, 7.0845, 7.084, 7.0836, 7.0831, 7.0826, 7.084, 7.0835, 7.0831, 7.0827, 7.0839, 7.0851, 7.0846, 7.0841, 7.0839, 7.0836, 7.0849, 7.0847, 7.0847, 7.0843, 7.0838, 7.0834, 7.0829, 7.0825, 7.0823, 7.0852, 7.0849, 7.0845, 7.084, 7.0839, 7.0834, 7.0832, 7.0845, 7.0841, 7.0836, 7.0831, 7.083, 7.0831, 7.0855, 7.0851, 7.085, 7.0848, 7.0878, 7.0858, 7.0853, 7.0849, 7.085, 7.0844, 7.0845, 7.0841, 7.0842, 7.0836, 7.0831, 7.0825, 7.0819, 7.0813, 7.0824, 7.0837, 7.0833, 7.0844, 7.0838, 7.0834, 7.0834, 7.0831, 7.0844, 7.0841, 7.086, 7.0894, 7.0906, 7.0912, 7.0916, 7.0911, 7.0912, 7.0911, 7.0908, 7.0905, 7.0916, 7.0915, 7.0915, 7.091, 7.0904, 7.0914, 7.0927, 7.0922, 7.0919, 7.0933, 7.0947, 7.0943, 7.0937, 7.0934, 7.0929, 7.0926, 7.0923, 7.0919, 7.0914, 7.0911, 7.0925, 7.0938, 7.0938, 7.0934, 7.093, 7.094, 7.0953, 7.0968, 7.0964, 7.0978, 7.0974, 7.0988, 7.1002, 7.1003, 7.1014, 7.1029, 7.1044, 7.1042, 7.104, 7.1035, 7.1036, 7.1035, 7.1047, 7.1043, 7.1043, 7.1039, 7.1054, 7.1051, 7.1063, 7.1074, 7.1068, 7.1065, 7.1061, 7.106, 7.1071, 7.1066, 7.1062, 7.1058, 7.1056, 7.1052, 7.1067, 7.108, 7.1075, 7.1071, 7.1067, 7.108, 7.1075, 7.107, 7.1067, 7.1063, 7.1058, 7.1052, 7.1046, 7.1042, 7.1038, 7.1035, 7.1031, 7.103, 7.104, 7.104, 7.1038, 7.1037, 7.1034, 7.1031, 7.103, 7.1028, 7.1024, 7.1007, 7.1003, 7.0998, 7.0993, 7.0995, 7.0991, 7.0986, 7.0984, 7.0983, 7.098, 7.0977, 7.0972, 7.0968, 7.098, 7.1007, 7.1092, 7.1091, 7.1087, 7.1082, 7.1079, 7.1077, 7.1072, 7.1083, 7.1081, 7.1092, 7.1092, 7.1103, 7.1099, 7.1094, 7.109, 7.1072, 7.1082, 7.1078, 7.1073, 7.1085, 7.108, 7.108, 7.1075, 7.1119, 7.1114, 7.1109, 7.1125, 7.1121, 7.112, 7.1115, 7.111, 7.1121, 7.1134, 7.113, 7.1125, 7.1123, 7.1117, 7.1115, 7.1126, 7.1122, 7.1133, 7.113, 7.1127, 7.1125, 7.112, 7.1132, 7.1144, 7.1139, 7.1134, 7.1129, 7.1124, 7.1123, 7.1119, 7.113, 7.1128, 7.1124, 7.1122, 7.1149, 7.1163, 7.1159, 7.1188, 7.1184, 7.1182, 7.1166, 7.1162, 7.1158, 7.1154, 7.115, 7.1145, 7.114, 7.1138, 7.1119, 7.1131, 7.1127, 7.1122, 7.1131, 7.1143, 7.1138, 7.1151, 7.1147, 7.1158, 7.1154, 7.1149, 7.1144, 7.1143, 7.1188, 7.1193, 7.1211, 7.1213, 7.1211, 7.1207, 7.1205, 7.1203, 7.1185, 7.1197, 7.1195, 7.1191, 7.1186, 7.1182, 7.1209, 7.1205, 7.1202, 7.1198, 7.1196, 7.1191, 7.1175, 7.1187, 7.1183, 7.1181, 7.1178, 7.1174, 7.117, 7.1166, 7.1164, 7.1161, 7.1158, 7.1154, 7.1149, 7.1146, 7.1143, 7.1141, 7.1137, 7.1132, 7.1129, 7.1157, 7.1156, 7.1152, 7.1138, 7.1134, 7.1132, 7.116, 7.1171, 7.119, 7.1186, 7.1185, 7.1181, 7.1179, 7.1175, 7.1189, 7.1203, 7.1199, 7.1194, 7.119, 7.12, 7.1198, 7.1195, 7.1193, 7.1189, 7.1186, 7.1183, 7.1195, 7.1178, 7.1175, 7.1175, 7.117, 7.1166, 7.1161, 7.1156, 7.1166, 7.1163, 7.116, 7.1156, 7.1157, 7.1154, 7.1151, 7.1148, 7.1144, 7.1145, 7.1168, 7.1165, 7.1149, 7.1147, 7.1157, 7.1152, 7.1168, 7.1164, 7.116, 7.1162, 7.1158, 7.1156, 7.1138, 7.1121, 7.1121, 7.1116, 7.1113, 7.1109, 7.1121, 7.1132, 7.1128, 7.1125, 7.1136, 7.1145, 7.1141, 7.1137, 7.1134, 7.1146, 7.1142, 7.1152, 7.1147, 7.1142, 7.114, 7.1136, 7.1132, 7.1128, 7.1126, 7.1123, 7.1107, 7.1106, 7.1101, 7.1097, 7.1095, 7.109, 7.1085, 7.108, 7.1077, 7.1072, 7.1067, 7.1063, 7.1074, 7.107, 7.107, 7.1065, 7.1109, 7.112, 7.1134, 7.1131, 7.1127, 7.1124, 7.112, 7.1115, 7.1114, 7.1111, 7.1106, 7.1104, 7.1101, 7.1096, 7.1091, 7.1086, 7.1082, 7.108, 7.1077, 7.1073, 7.1069, 7.1081, 7.1078, 7.1073, 7.1068, 7.1063, 7.1059, 7.1042, 7.104, 7.1035, 7.1031, 7.1028, 7.1038, 7.1036, 7.1032, 7.1028, 7.1054, 7.1052, 7.1051, 7.1048, 7.1049, 7.1031, 7.1042, 7.1038, 7.1034, 7.103, 7.1025, 7.1025, 7.1021, 7.1018, 7.1014, 7.101, 7.1005, 7.1001, 7.1, 7.0996, 7.0995, 7.0993, 7.099, 7.0986, 7.0982, 7.098, 7.0977, 7.0974, 7.0957, 7.0953, 7.0949, 7.0945, 7.0955, 7.0952, 7.0965, 7.0961, 7.0957, 7.0968, 7.0964, 7.096, 7.0957, 7.0955, 7.0952, 7.0948, 7.0932, 7.093, 7.0929, 7.0925, 7.0921, 7.0933, 7.093, 7.0926, 7.0923, 7.0922, 7.0918, 7.0929, 7.0941, 7.0939, 7.0935, 7.093, 7.0928, 7.0924, 7.0921, 7.092, 7.0932, 7.0929, 7.0926, 7.0922, 7.0934, 7.0933, 7.0929, 7.094, 7.0953, 7.0949, 7.0945, 7.0944, 7.094, 7.0936, 7.0937, 7.0934, 7.093, 7.0925, 7.0927, 7.0923, 7.0907, 7.0902, 7.0898, 7.0899, 7.0898, 7.0898, 7.0914, 7.0912, 7.0964, 7.096, 7.097, 7.1018, 7.1014, 7.1009, 7.1019, 7.1015, 7.1025, 7.1008, 7.101, 7.1009, 7.1019, 7.1029, 7.1025, 7.1021, 7.1018, 7.1018, 7.1014, 7.1024, 7.1035, 7.1031, 7.1026, 7.1022, 7.1018, 7.1017, 7.1016, 7.1014, 7.101, 7.1007, 7.1017, 7.1001, 7.0984, 7.0968, 7.1007, 7.1017, 7.1013, 7.1012, 7.1007, 7.1005, 7.1002, 7.0999, 7.0995, 7.0983, 7.0981, 7.0976, 7.0988, 7.0984, 7.098, 7.0978, 7.0974, 7.097, 7.0967, 7.0966, 7.0962, 7.0975, 7.0973, 7.0969, 7.0967, 7.0963, 7.0959, 7.0955, 7.0967, 7.0978, 7.0973, 7.0971, 7.0969, 7.0965, 7.095, 7.096, 7.0956, 7.0953, 7.0952, 7.0949, 7.0959, 7.0957, 7.0952, 7.0948, 7.0946, 7.0944, 7.0941, 7.094, 7.0936, 7.0933, 7.0935, 7.0932, 7.0943, 7.094, 7.0936, 7.0934, 7.095, 7.0947, 7.0943, 7.094, 7.0924, 7.092, 7.0919, 7.0918, 7.0916, 7.0917, 7.0914, 7.0911, 7.0908, 7.0907, 7.0904, 7.0915, 7.0915, 7.0924, 7.0924, 7.0922, 7.0947, 7.0945, 7.0941, 7.0938, 7.0933, 7.093, 7.0915, 7.0927, 7.0923, 7.0934, 7.093, 7.0927, 7.0925, 7.0923, 7.092, 7.0918, 7.0914, 7.0911, 7.0914, 7.0924, 7.0919, 7.0915, 7.0912, 7.0911, 7.0907, 7.0904, 7.0899, 7.0897, 7.0881, 7.0865, 7.086, 7.0859, 7.0857, 7.0853, 7.0851, 7.086, 7.0843, 7.0843, 7.0839, 7.0835, 7.0833, 7.083, 7.084, 7.0836, 7.0832, 7.0833, 7.0829, 7.0813, 7.0798, 7.0794, 7.079, 7.08, 7.0796, 7.0794, 7.0806, 7.0817, 7.0803, 7.0813, 7.0809, 7.0819, 7.0818, 7.0816, 7.0802, 7.0798, 7.0797, 7.0808, 7.0808, 7.0807, 7.0806, 7.0816, 7.0812, 7.0809, 7.0806, 7.0802, 7.0818, 7.0828, 7.0827, 7.0829, 7.0827, 7.0823, 7.0822, 7.0826, 7.0836, 7.0834, 7.0817, 7.0813, 7.081, 7.0835, 7.0831, 7.0843, 7.0855, 7.0851, 7.0851, 7.086, 7.0855, 7.0864, 7.0861, 7.087, 7.0866, 7.0864, 7.0862, 7.0857, 7.0853, 7.085, 7.0848, 7.0832, 7.0842, 7.0838, 7.0836, 7.0833, 7.0845, 7.0849, 7.0851, 7.0879, 7.0874, 7.0871, 7.088, 7.0863, 7.0859, 7.0855, 7.0851, 7.0868, 7.0865, 7.0867, 7.0864, 7.0861, 7.0857, 7.0868, 7.0863, 7.0862, 7.0859, 7.0855, 7.0841, 7.0837, 7.0835, 7.0836, 7.0833, 7.0829, 7.0828, 7.0838, 7.0833, 7.0844, 7.084, 7.0849, 7.0846, 7.0841, 7.0837, 7.0847, 7.0831, 7.0815, 7.0812, 7.0808, 7.0818, 7.0814, 7.081, 7.0806, 7.0805, 7.0805, 7.0814, 7.0826, 7.0822, 7.0818, 7.0829, 7.0828, 7.0828, 7.0824, 7.082, 7.083, 7.0827, 7.0824, 7.082, 7.0818, 7.0814, 7.0825, 7.0813, 7.0797, 7.0799, 7.0786, 7.0782, 7.0777, 7.0774, 7.0774, 7.0772, 7.0784, 7.0781, 7.0778, 7.0776, 7.0785, 7.0783, 7.0767, 7.0753, 7.0751, 7.0747, 7.0757, 7.0756, 7.0755, 7.074, 7.0725, 7.0721, 7.0717, 7.0728, 7.0712, 7.0709, 7.0709, 7.0719, 7.0754, 7.0752, 7.0753, 7.0763, 7.0772, 7.0768, 7.0764, 7.075, 7.0773, 7.0769, 7.0754, 7.0751, 7.076, 7.0756, 7.0793, 7.0788, 7.0785, 7.0782, 7.078, 7.0777, 7.0776, 7.0774, 7.0771, 7.0774, 7.0784, 7.0782, 7.0793, 7.0805, 7.0802, 7.0805, 7.0802, 7.0816, 7.0801, 7.0786, 7.0783, 7.0779, 7.0777, 7.0779, 7.0789, 7.0785, 7.0795, 7.0791, 7.0789, 7.0798, 7.0807, 7.0805, 7.0815, 7.0817, 7.0813, 7.0811, 7.0836, 7.0836, 7.0836, 7.0834, 7.0844, 7.0843, 7.0839, 7.0835, 7.082, 7.0816, 7.0812, 7.0823, 7.0821, 7.0818, 7.0814, 7.0811, 7.081, 7.0807, 7.0804, 7.0814, 7.081, 7.0806, 7.0803, 7.0799, 7.0796, 7.0792, 7.0792, 7.0791, 7.0788, 7.0784, 7.0793, 7.0789, 7.0789, 7.0785, 7.0794, 7.0791, 7.0788, 7.0784, 7.0781, 7.0779, 7.0776, 7.0772, 7.078, 7.0777, 7.0787, 7.0784, 7.078, 7.0777, 7.0774, 7.0758, 7.0757, 7.0755, 7.0751, 7.0748, 7.0748, 7.0745, 7.0744, 7.0732, 7.0744, 7.0743, 7.0739, 7.0749, 7.0751, 7.0762, 7.0759, 7.0755, 7.0753, 7.075, 7.0762, 7.0771, 7.077, 7.0768, 7.0766, 7.0765, 7.0761, 7.0772, 7.077, 7.0767, 7.0766, 7.0777, 7.0774, 7.0761, 7.0771, 7.0769, 7.0766, 7.0766, 7.0752, 7.0748, 7.0758, 7.0754, 7.0738, 7.0734, 7.0731, 7.0727, 7.0724, 7.072, 7.072, 7.0718, 7.073, 7.0755, 7.0752, 7.0748, 7.0746, 7.073, 7.074, 7.0749, 7.0747, 7.0743, 7.0762, 7.0771, 7.077, 7.077, 7.0767, 7.0777, 7.0773, 7.0769, 7.0765, 7.0762, 7.076, 7.0769, 7.0769, 7.0754, 7.0752, 7.075, 7.0746, 7.0743, 7.074, 7.0739, 7.0749, 7.0746, 7.0742, 7.0728, 7.0727, 7.0724, 7.0722, 7.0718, 7.0715, 7.0712, 7.0712, 7.0714, 7.071, 7.0707, 7.0704, 7.0706, 7.0704, 7.0701, 7.0697, 7.0694, 7.0693, 7.069, 7.0687, 7.069, 7.0687, 7.0697, 7.0694, 7.0681, 7.0678, 7.0687, 7.0684, 7.0681, 7.068, 7.0676, 7.0675, 7.0672, 7.0669, 7.0665, 7.0664, 7.0662, 7.0658, 7.0655, 7.0652, 7.0649, 7.0646, 7.0644, 7.0654, 7.0651, 7.065, 7.0658, 7.0669, 7.0666, 7.0663, 7.066, 7.0658, 7.0656, 7.0654, 7.0662, 7.0659, 7.0657, 7.0656, 7.0654, 7.0652, 7.0648, 7.0634, 7.0631, 7.0627, 7.0637, 7.0634, 7.0643, 7.064, 7.065, 7.0646, 7.0646, 7.0646, 7.0668, 7.0664, 7.0663, 7.0661, 7.067, 7.0668, 7.0669, 7.0667, 7.0675, 7.0673, 7.0693, 7.0702, 7.0703, 7.07, 7.0698, 7.0694, 7.069, 7.0686, 7.0673, 7.067, 7.0666, 7.0662, 7.0671, 7.0659, 7.0656, 7.0654, 7.065, 7.066, 7.0656, 7.0653, 7.0649, 7.0645, 7.0642, 7.0641, 7.064, 7.0636, 7.0645, 7.0642, 7.0638, 7.0642, 7.0664, 7.0661, 7.0659, 7.066, 7.066, 7.0658, 7.0657, 7.0655, 7.0663, 7.0661, 7.0658, 7.0654, 7.0652, 7.065, 7.0659, 7.0695, 7.0694, 7.0691, 7.0689, 7.0686, 7.0683, 7.068, 7.0679, 7.0677, 7.0686, 7.0682, 7.0703, 7.07, 7.0699, 7.0698, 7.0695, 7.0694, 7.0698, 7.0697, 7.0693, 7.0692, 7.069, 7.0688, 7.0686, 7.0682, 7.0678, 7.0702, 7.0699, 7.0696, 7.0693, 7.0691, 7.0691, 7.0692, 7.0691, 7.0691, 7.0691, 7.0679, 7.0679, 7.0688, 7.0686, 7.0682, 7.0679, 7.0675, 7.0672, 7.0668, 7.0667, 7.0665, 7.0674, 7.0683, 7.0693, 7.069, 7.0689, 7.0685, 7.0682, 7.068, 7.0677, 7.0676, 7.0684, 7.0683, 7.0696, 7.0683, 7.0679, 7.0678, 7.0675, 7.0672, 7.0672, 7.0669, 7.0668, 7.0664, 7.0661, 7.0661, 7.0658, 7.0655, 7.0655, 7.0652, 7.065, 7.066, 7.0658, 7.0655, 7.0664, 7.0661, 7.0673, 7.0659, 7.0646, 7.0656, 7.0655, 7.0655, 7.0651, 7.0649, 7.0646, 7.0644, 7.0642, 7.0639, 7.0638, 7.0635, 7.0623, 7.0621, 7.0619, 7.0619, 7.0616, 7.0617, 7.0614, 7.0612, 7.061, 7.0608, 7.0606, 7.0593, 7.0603, 7.0604, 7.06, 7.0599, 7.061, 7.0608, 7.0608, 7.0616, 7.0627, 7.0625, 7.0621, 7.0608, 7.0605, 7.0603, 7.0613, 7.06, 7.0597, 7.0585, 7.0588, 7.0586, 7.0589, 7.0587, 7.0585, 7.0582, 7.0587, 7.0587, 7.0584, 7.0572, 7.0588, 7.0592, 7.06, 7.0598, 7.0595, 7.0592, 7.0602, 7.0602, 7.0613, 7.0609, 7.0608, 7.0594, 7.0594, 7.0594, 7.0592, 7.059, 7.0587, 7.0598, 7.0584, 7.0582, 7.0592, 7.0591, 7.0589, 7.0587, 7.0583, 7.0569, 7.0557, 7.0554, 7.0565, 7.0563, 7.0561, 7.0548, 7.0545, 7.0556, 7.0544, 7.0541, 7.0538, 7.0534, 7.0532, 7.054, 7.0538, 7.0535, 7.0533, 7.0541, 7.0537, 7.0546, 7.0542, 7.0539, 7.054, 7.0537, 7.0537, 7.0533, 7.0534, 7.0544, 7.0541, 7.0551, 7.0547, 7.0545, 7.0554, 7.055, 7.0547, 7.0544, 7.0542, 7.0541, 7.0537, 7.0533, 7.0531, 7.0529, 7.0516, 7.0502, 7.0511, 7.0519, 7.0516, 7.0513, 7.0509, 7.0506, 7.0506, 7.0503, 7.0523, 7.0549, 7.0538, 7.0535, 7.0531, 7.0529, 7.0516, 7.0513, 7.0511, 7.051, 7.0506, 7.0504, 7.0515, 7.0515, 7.0523, 7.052, 7.0517, 7.0513, 7.0523, 7.052, 7.0516, 7.0514, 7.0524, 7.052, 7.0518, 7.0516, 7.0513, 7.0509, 7.0508, 7.0516, 7.0513, 7.0513, 7.0512, 7.0508, 7.0525, 7.0522, 7.052, 7.0519, 7.0527, 7.0528, 7.0524, 7.0521, 7.0517, 7.0514, 7.0523, 7.0521, 7.0517, 7.0515, 7.0512, 7.0511, 7.0511, 7.0511, 7.0507, 7.0504, 7.0501, 7.0499, 7.0486, 7.0473, 7.0473, 7.047, 7.0468, 7.0455, 7.0452, 7.0451, 7.0447, 7.0434, 7.043, 7.043, 7.0429, 7.0438, 7.0437, 7.0434, 7.0432, 7.0443, 7.0441, 7.045100000000001, 7.046100000000001, 7.047100000000001, 7.048100000000002, 7.0492, 7.0492, 7.0502, 7.0501, 7.05, 7.05, 7.0499, 7.0496, 7.0507, 7.0503, 7.0499, 7.0496, 7.0493, 7.0479, 7.0476, 7.0486, 7.0483, 7.0479, 7.0487, 7.0485, 7.0481, 7.0479, 7.0466, 7.0464, 7.0461, 7.046, 7.047000000000001, 7.0482, 7.0479, 7.0478, 7.0488, 7.0498, 7.0495, 7.0505, 7.0514, 7.0522, 7.0522, 7.0519, 7.0516, 7.0514, 7.0515, 7.0512, 7.0509, 7.0506, 7.0503, 7.0502, 7.0501, 7.0498, 7.050800000000001, 7.0506, 7.0502, 7.0499, 7.0497, 7.0494, 7.0502, 7.0501, 7.0498, 7.05, 7.0498, 7.0485, 7.0482, 7.0478, 7.0476, 7.0473, 7.047, 7.0466, 7.0476, 7.0532, 7.0529, 7.0527, 7.0535, 7.0531, 7.0528, 7.0526, 7.0542, 7.055, 7.0546, 7.0547, 7.0544, 7.0541, 7.0537, 7.0534, 7.0531, 7.0528, 7.0538, 7.0555, 7.0552, 7.0549, 7.0545, 7.0533, 7.053, 7.055, 7.0547, 7.0579, 7.0577, 7.0573, 7.0581, 7.059, 7.0589, 7.0586, 7.0582, 7.058, 7.0591, 7.06, 7.0597, 7.0605, 7.0602, 7.0599, 7.0598, 7.0596, 7.0593, 7.0592, 7.0588, 7.0586, 7.0597, 7.0595, 7.0592, 7.059, 7.0588, 7.0596, 7.0594, 7.0591, 7.0589, 7.0587, 7.0585, 7.0594, 7.0602, 7.0601, 7.0601, 7.0598, 7.0605, 7.0603, 7.0599, 7.0586, 7.0583, 7.0592, 7.0591, 7.0588, 7.0596, 7.0595, 7.0592, 7.06, 7.0608, 7.0605, 7.0607, 7.0595, 7.0595, 7.0593, 7.0608, 7.0597, 7.0595, 7.0594, 7.0591, 7.0591, 7.0588, 7.0585, 7.0582, 7.0579, 7.0576, 7.0574, 7.0571, 7.0568, 7.0567, 7.0565, 7.0563, 7.0571, 7.0568, 7.0565, 7.0562, 7.056, 7.0558, 7.0545, 7.0532, 7.0529, 7.0527, 7.0523, 7.052, 7.0517, 7.0503, 7.0501, 7.0498, 7.0495, 7.0492, 7.0507, 7.0505, 7.0502, 7.0498, 7.0496, 7.0498, 7.0495, 7.0498, 7.0494, 7.0491, 7.05, 7.0498, 7.05, 7.0497, 7.0494, 7.0491, 7.0489, 7.0486, 7.0483, 7.0483, 7.0481, 7.0491, 7.0489, 7.0497, 7.0495, 7.0492, 7.0491, 7.0489, 7.0486, 7.0494, 7.0491, 7.0501, 7.05, 7.0496, 7.0494, 7.0494, 7.0526, 7.0523, 7.0521, 7.0531, 7.055, 7.0548, 7.0546, 7.0554, 7.0562, 7.0559, 7.0557, 7.0555, 7.0563, 7.0561, 7.0559, 7.0557, 7.0545, 7.0533, 7.052, 7.0518, 7.0527, 7.0516, 7.0514, 7.0511, 7.0508, 7.0516, 7.0524, 7.0522, 7.0519, 7.0518, 7.0515, 7.0502, 7.0511, 7.052, 7.0529, 7.0539, 7.0539, 7.0538, 7.0534, 7.0531, 7.054, 7.054, 7.0538, 7.0536, 7.0532, 7.053, 7.053, 7.0529, 7.0527, 7.0524, 7.0523, 7.0532, 7.052, 7.0524, 7.0521, 7.0518, 7.0515, 7.0524, 7.0521, 7.0522, 7.0532, 7.0532, 7.0533, 7.0533, 7.0531, 7.0518, 7.0516, 7.0513, 7.052300000000001, 7.053300000000001, 7.053, 7.0528, 7.0528, 7.0526, 7.0522, 7.0519, 7.0529, 7.0527, 7.0524, 7.0523, 7.0522, 7.0532, 7.0538, 7.0536, 7.0533, 7.0531, 7.052, 7.0516, 7.0514, 7.0523, 7.0521, 7.0518, 7.0526, 7.0513, 7.0503, 7.0515, 7.0516, 7.0512, 7.051, 7.0519, 7.0516, 7.0514, 7.0514, 7.0512, 7.051, 7.0509, 7.0507, 7.0505, 7.0504, 7.0514, 7.0511, 7.0511, 7.0508, 7.0517, 7.0516, 7.0526, 7.0524, 7.0522, 7.0518, 7.0516, 7.0514, 7.0512, 7.0519, 7.0507, 7.0503, 7.0499, 7.0498, 7.0509, 7.0509, 7.0506, 7.0527, 7.0524, 7.0532, 7.0529, 7.0526, 7.0536, 7.0556, 7.0566, 7.0563, 7.056, 7.0569, 7.0569, 7.0556, 7.0553, 7.0551, 7.0549, 7.0556, 7.0564, 7.0561, 7.056, 7.0557, 7.0566, 7.0565, 7.0563, 7.0551, 7.0548, 7.0545, 7.0542, 7.0549, 7.0548, 7.0546, 7.0553, 7.0552, 7.0551, 7.055, 7.0548, 7.0552, 7.055, 7.0547, 7.0544, 7.0543, 7.054, 7.0537, 7.0535, 7.0533, 7.0554, 7.0551, 7.0548, 7.0566, 7.0565, 7.0582, 7.0588, 7.0596, 7.0604, 7.0601, 7.0601, 7.06, 7.0597, 7.0605, 7.0602, 7.061, 7.0607, 7.0605, 7.0603, 7.0609, 7.0607, 7.0606, 7.0603, 7.0611, 7.0609, 7.0607, 7.0671, 7.0669, 7.0669, 7.0667, 7.0663, 7.0663, 7.0652, 7.0651, 7.0649, 7.0656, 7.0653, 7.0652, 7.065, 7.0661, 7.0658, 7.0656, 7.0653, 7.0653, 7.065, 7.0638, 7.0625, 7.0623, 7.062, 7.0617, 7.0625, 7.0623, 7.0698, 7.0707, 7.0708, 7.0706, 7.0705, 7.0703, 7.0711, 7.0708, 7.0715, 7.0712, 7.072, 7.0718, 7.0716, 7.0717, 7.0716, 7.0714, 7.0711, 7.0708, 7.0705, 7.0702, 7.0702, 7.0699, 7.0698, 7.0695, 7.0693, 7.0692, 7.0692, 7.0699, 7.0696, 7.0707, 7.0704, 7.0701, 7.0698, 7.0728, 7.0725, 7.0724, 7.0712, 7.071, 7.0707, 7.0705, 7.0703, 7.0701, 7.0712, 7.0709, 7.0707, 7.0705, 7.0703, 7.0701, 7.0701, 7.07, 7.0698, 7.0697, 7.0694, 7.0694, 7.0703, 7.0701, 7.0689, 7.0686, 7.0685, 7.0694, 7.0692, 7.069, 7.069, 7.0688, 7.0685, 7.0682, 7.0691, 7.0691, 7.07, 7.0697, 7.0705, 7.0703, 7.0701, 7.0699, 7.0698, 7.0705, 7.0702, 7.0709, 7.0707, 7.0704, 7.0701, 7.0698, 7.0708, 7.0697, 7.0699, 7.0698, 7.0706, 7.0715, 7.0716, 7.0713, 7.0722, 7.0721, 7.0718, 7.0717, 7.0706, 7.0703, 7.0691, 7.0688, 7.0686, 7.0684, 7.0692, 7.069, 7.0689, 7.0687, 7.0684, 7.0692, 7.069, 7.0689, 7.0688, 7.0696, 7.0693, 7.0692, 7.07, 7.0699, 7.0698, 7.0695, 7.0692, 7.0689, 7.0686, 7.0683, 7.0694, 7.0702, 7.07, 7.0697, 7.0694, 7.071, 7.0717, 7.0725, 7.0732, 7.0729, 7.0729, 7.0727, 7.0735, 7.0734, 7.0732, 7.0731, 7.0728, 7.0736, 7.0744, 7.0741, 7.0738, 7.0737, 7.0737, 7.0734, 7.0734, 7.0731, 7.0729, 7.0727, 7.0725, 7.0723, 7.072, 7.0717, 7.0714, 7.0711, 7.0709, 7.0707, 7.0707, 7.0716, 7.0714, 7.0722, 7.072, 7.0718, 7.0715, 7.0703, 7.07, 7.0707, 7.0704, 7.0702, 7.07, 7.0702, 7.07, 7.0697, 7.072, 7.0721, 7.0744, 7.0748, 7.0746, 7.0744, 7.0742, 7.074, 7.0737, 7.0736, 7.0734, 7.0742, 7.0739, 7.0742, 7.0741, 7.074, 7.0737, 7.0737, 7.0736, 7.0733, 7.0733, 7.073, 7.0727, 7.0724, 7.0731, 7.0739, 7.0737, 7.0736, 7.0734, 7.0732, 7.0731, 7.0729, 7.0727, 7.0724, 7.0724, 7.0722, 7.072, 7.0718, 7.0728, 7.0727, 7.0734, 7.0745, 7.0743, 7.074, 7.0739, 7.0745, 7.0742, 7.074, 7.0738, 7.0745, 7.0742, 7.075, 7.0747, 7.0745, 7.0742, 7.0741, 7.0739, 7.0736, 7.0746, 7.0756000000000006, 7.0766, 7.0763, 7.0762, 7.0769, 7.0769, 7.0767, 7.0764, 7.0752, 7.0749, 7.0758, 7.0755, 7.0752, 7.0751, 7.0748, 7.0746, 7.0744, 7.0734, 7.0732, 7.073, 7.0728, 7.0737, 7.0735, 7.0741, 7.0753, 7.0751, 7.0759, 7.0759, 7.0756, 7.0763, 7.0753, 7.075, 7.0748, 7.0745, 7.0744, 7.0743, 7.0741, 7.0739, 7.0747, 7.0745, 7.0741, 7.0751, 7.0748, 7.0755, 7.0753, 7.0751, 7.0764, 7.0761, 7.0767, 7.0765, 7.0762, 7.0759, 7.0756, 7.0754, 7.0763, 7.0761, 7.0769, 7.0767, 7.0764, 7.0771, 7.076, 7.0758, 7.0755, 7.0753, 7.0751, 7.0759, 7.0769, 7.0779000000000005, 7.0777, 7.0775, 7.0774, 7.0784, 7.0784, 7.0782, 7.0779, 7.0776, 7.078600000000001, 7.079600000000001, 7.0804, 7.0802, 7.0801, 7.08, 7.0797, 7.0794, 7.0791, 7.0789, 7.0787, 7.0784, 7.0784, 7.0781, 7.079, 7.0791, 7.0793, 7.0803, 7.0801, 7.0798, 7.0798, 7.0797, 7.0795, 7.0792, 7.079, 7.08, 7.0797, 7.0807, 7.0805, 7.0804, 7.0803, 7.0801, 7.0809, 7.0817, 7.0816, 7.0814, 7.0811, 7.0808, 7.0805, 7.0812, 7.0811, 7.0809, 7.0806, 7.0803, 7.0802, 7.0801, 7.0799, 7.0807, 7.0804, 7.0803, 7.0803, 7.08, 7.0799, 7.0806, 7.0883, 7.088, 7.0868, 7.0865, 7.0855, 7.0872, 7.0871, 7.0869, 7.0866, 7.0873, 7.087, 7.0869, 7.0869, 7.0866, 7.0864, 7.0864, 7.0862, 7.086, 7.0859, 7.0856, 7.0854, 7.0852, 7.0849, 7.0857, 7.0865, 7.0864, 7.0862, 7.086, 7.0869, 7.0867, 7.0878, 7.0875, 7.0872, 7.0872, 7.0872, 7.0869, 7.0867, 7.0864, 7.0865, 7.0865, 7.0863, 7.0871, 7.087, 7.087, 7.0871, 7.0879, 7.0877, 7.0875, 7.0873, 7.087, 7.0868, 7.0868, 7.0867, 7.0868, 7.0878, 7.0875, 7.0881, 7.0878, 7.088, 7.0878, 7.0876, 7.0875, 7.0873, 7.087, 7.0867, 7.0885, 7.0885, 7.0883, 7.088, 7.0879, 7.0876, 7.0873, 7.087, 7.0869, 7.0869, 7.0876, 7.0874, 7.0871, 7.0868, 7.0866, 7.0864, 7.0872, 7.087, 7.0867, 7.0876, 7.0874, 7.0872, 7.0872, 7.0871, 7.0868, 7.0867, 7.0864, 7.0861, 7.086, 7.0868, 7.0876, 7.0888, 7.0886, 7.0896, 7.0894, 7.0901, 7.0901, 7.0899, 7.0898, 7.0897, 7.0896, 7.0895, 7.0893, 7.09, 7.0897, 7.0898, 7.0899, 7.0897, 7.0895, 7.0892, 7.0918, 7.0944, 7.0942, 7.0941, 7.0938, 7.0935, 7.0943, 7.095, 7.0957, 7.0955, 7.0953, 7.095, 7.095, 7.0948, 7.0947, 7.0944, 7.0932, 7.0929, 7.0936, 7.0943, 7.095, 7.0947, 7.0944, 7.0943, 7.0941, 7.0938, 7.0936, 7.0944, 7.0944, 7.0942, 7.0939, 7.0937, 7.0935, 7.0932, 7.0939, 7.0946, 7.0955, 7.0963, 7.096, 7.0957, 7.0954, 7.0951, 7.0949, 7.0946, 7.0943, 7.094, 7.0947, 7.0945, 7.0942, 7.0949, 7.0946, 7.0943, 7.0941, 7.0939, 7.0936, 7.0933, 7.0931, 7.0928, 7.0927, 7.0935, 7.0933, 7.0931, 7.0929, 7.0927, 7.0924, 7.0921, 7.0939, 7.0945, 7.0942, 7.0941, 7.093, 7.0919, 7.0936, 7.0933, 7.0931, 7.0932, 7.0931, 7.0929, 7.0926, 7.0923, 7.0924, 7.0921, 7.092, 7.0939, 7.0937, 7.0934, 7.0931, 7.093, 7.0935, 7.0944, 7.0942, 7.0942, 7.0949, 7.0947, 7.0945, 7.0943, 7.095, 7.0947, 7.0954, 7.0953, 7.0961, 7.0959, 7.0965, 7.0972, 7.098, 7.0987, 7.0978, 7.0975, 7.0972, 7.0969, 7.0968, 7.0974, 7.0974, 7.0971, 7.0962, 7.096, 7.0958, 7.0956, 7.0968, 7.0966, 7.0963, 7.0962, 7.0959, 7.0957, 7.0964, 7.0961, 7.0968, 7.0967, 7.0975, 7.0973, 7.098, 7.0978, 7.0978, 7.0976, 7.0984, 7.0982, 7.0979, 7.0976, 7.0974, 7.0971, 7.097, 7.0968, 7.0965, 7.0962, 7.0969, 7.0958, 7.0955, 7.0953, 7.0961, 7.0968, 7.0966, 7.0964, 7.0962, 7.096, 7.0958, 7.0955, 7.0953, 7.0951, 7.0949, 7.0946, 7.0955, 7.0952, 7.095, 7.0947, 7.0946, 7.0954, 7.0951, 7.0948, 7.0955, 7.0952, 7.0949, 7.0957, 7.0965, 7.0963, 7.099, 7.0989, 7.0996, 7.1003, 7.1011, 7.1008, 7.1005, 7.1002, 7.1, 7.1007, 7.1004, 7.1003, 7.1028, 7.1025, 7.1023, 7.1013, 7.1014, 7.1011, 7.1008, 7.1006, 7.1005, 7.1002, 7.1, 7.0997, 7.1004, 7.1002, 7.0999, 7.0996, 7.0993, 7.0992, 7.0989, 7.0987, 7.0984, 7.0981, 7.0978, 7.0967, 7.0957, 7.0958, 7.0955, 7.0962, 7.0969, 7.0966, 7.0964, 7.0962, 7.0951, 7.0958, 7.0964, 7.098, 7.0988, 7.0987, 7.0984, 7.0982, 7.0983, 7.0982, 7.0981, 7.0978, 7.0975, 7.0973, 7.0971, 7.0978, 7.0985, 7.0983, 7.0991, 7.0981, 7.0988, 7.0992, 7.0992, 7.0999, 7.0989, 7.0986, 7.0984, 7.0981, 7.0981, 7.0988, 7.0987, 7.0976, 7.0975, 7.0982, 7.0981, 7.0979, 7.0979, 7.0987, 7.0985, 7.0985, 7.0984, 7.0982, 7.0979, 7.0986, 7.0985, 7.0982, 7.0989, 7.0988, 7.0986, 7.0984, 7.1001, 7.0999, 7.101, 7.1009, 7.1008, 7.0997, 7.0994, 7.0992, 7.0991, 7.0997, 7.0994, 7.0992, 7.1, 7.0998, 7.0996, 7.0993, 7.0991, 7.0989, 7.098, 7.0977, 7.0975, 7.0982, 7.0981, 7.0979, 7.0976, 7.0967, 7.0964, 7.0963, 7.0961, 7.0959, 7.0966, 7.0966, 7.0965, 7.0963, 7.096, 7.0959, 7.0966, 7.0965, 7.0964, 7.0954, 7.0952, 7.0949, 7.0946, 7.0943, 7.094, 7.0946, 7.0943, 7.0941, 7.093, 7.0931, 7.0938, 7.0935, 7.0932, 7.0929, 7.0927, 7.0918, 7.0936, 7.0933, 7.093, 7.0929, 7.0926, 7.0959, 7.0957, 7.0963, 7.0971, 7.0991, 7.0992, 7.099, 7.0987, 7.0985, 7.0982, 7.0982, 7.098, 7.0978, 7.0976, 7.0975, 7.0973, 7.0971, 7.0978, 7.0975, 7.0972, 7.0978, 7.0976, 7.0973, 7.0979, 7.0969, 7.0958, 7.0955, 7.0954, 7.0951, 7.0948, 7.0945, 7.0953, 7.0959, 7.0964, 7.0955, 7.0953, 7.0963, 7.0961, 7.0958, 7.0956, 7.0963, 7.0962, 7.0959, 7.0966, 7.0963, 7.0961, 7.0952, 7.0949, 7.0946, 7.0954, 7.097, 7.0977, 7.0969, 7.0967, 7.0974, 7.0973, 7.097, 7.0969, 7.0975, 7.0973, 7.098, 7.099, 7.0989, 7.0987, 7.0993, 7.099, 7.0987, 7.0976, 7.1011, 7.101, 7.1008, 7.1007, 7.1004, 7.1003, 7.101, 7.1008, 7.1006, 7.1004, 7.1001, 7.0998, 7.0995, 7.0992, 7.099, 7.0989, 7.0988, 7.0987, 7.0993, 7.0993, 7.0991, 7.0989, 7.0997, 7.0994, 7.1001, 7.0999, 7.1006, 7.1006, 7.1004, 7.1011, 7.1009, 7.1006, 7.1003, 7.1001, 7.0998, 7.0995, 7.0992, 7.0989, 7.0996, 7.0993, 7.1, 7.0997, 7.0994, 7.0992, 7.099, 7.1011, 7.1001, 7.0999, 7.0997, 7.0994, 7.0991, 7.0997, 7.0996, 7.0994, 7.0991, 7.0988, 7.0985, 7.0982, 7.0989, 7.099, 7.0988, 7.0986, 7.0986, 7.0994, 7.1031, 7.1037, 7.1034, 7.1042, 7.1039, 7.1045, 7.1042, 7.104, 7.1047, 7.1046, 7.1062, 7.106, 7.1057, 7.1063, 7.1061, 7.106, 7.1058, 7.1065, 7.1054, 7.1061, 7.1059, 7.1056, 7.1053, 7.105, 7.1048, 7.1066, 7.1075, 7.1082, 7.1081, 7.1078, 7.1076, 7.1073, 7.1072, 7.1065, 7.1063, 7.106, 7.1057, 7.1086, 7.1084, 7.11, 7.1106, 7.1105, 7.1105, 7.1112, 7.111, 7.1108, 7.1106, 7.1105, 7.1113, 7.111, 7.1109, 7.1115, 7.1121, 7.1119, 7.1118, 7.1115, 7.1113, 7.1119, 7.1116, 7.1114, 7.1112, 7.112, 7.1118, 7.1159, 7.1158, 7.1155, 7.1163, 7.116, 7.1158, 7.1155, 7.1145, 7.1135, 7.1133, 7.1131, 7.1152, 7.115, 7.1148, 7.1139, 7.1139, 7.1139, 7.1137, 7.1134, 7.1127, 7.1125, 7.1133, 7.1132, 7.113, 7.1136, 7.1134, 7.1131, 7.1137, 7.1136, 7.1133, 7.1132, 7.1131, 7.1128, 7.1127, 7.1134, 7.1131, 7.1132, 7.113, 7.1146, 7.1144, 7.1135, 7.1133, 7.1134, 7.1132, 7.1138, 7.1136, 7.1135, 7.1133, 7.113, 7.1127, 7.1134, 7.1133, 7.1139, 7.1136, 7.1133, 7.1132, 7.1129, 7.1126, 7.1133, 7.1139, 7.1137, 7.1143, 7.114, 7.1139, 7.1138, 7.1135, 7.1142, 7.1139, 7.1136, 7.1142, 7.1139, 7.1146, 7.1146, 7.1143, 7.1141, 7.1139, 7.1136, 7.1134, 7.1169, 7.1169, 7.1166, 7.1165, 7.1163, 7.1169, 7.1169, 7.1167, 7.1167, 7.1166, 7.1165, 7.1171, 7.1171, 7.117, 7.1177, 7.1175, 7.1173, 7.1171, 7.1169, 7.1173, 7.118, 7.1178, 7.1175, 7.1172, 7.1178, 7.1177, 7.1183, 7.118, 7.1186, 7.1192, 7.1201, 7.1203, 7.121, 7.1208, 7.12, 7.1206, 7.1212, 7.1219, 7.1209, 7.1207, 7.1204, 7.121, 7.1209, 7.1208, 7.1205, 7.1204, 7.1202, 7.1201, 7.1199, 7.1206, 7.1204, 7.1201, 7.1207, 7.1204, 7.1285, 7.1282, 7.1281, 7.1284, 7.1282, 7.1281, 7.1297, 7.1296, 7.1293, 7.1294, 7.1292, 7.129, 7.1299, 7.1297, 7.1294, 7.13, 7.1298, 7.1305, 7.1302, 7.1308, 7.1307, 7.1304, 7.1302, 7.1299, 7.1298, 7.1295, 7.1295, 7.1301, 7.1299, 7.1297, 7.1299, 7.1297, 7.1303, 7.1293, 7.1285, 7.1325, 7.1323, 7.132, 7.1326, 7.1324, 7.1322, 7.132, 7.1328, 7.1327, 7.1334, 7.1331, 7.133, 7.1327, 7.1317, 7.1316, 7.1315, 7.1312, 7.131, 7.1308, 7.1308, 7.1305, 7.1304, 7.1302, 7.1309, 7.1306, 7.1305, 7.1303, 7.131, 7.1307, 7.1305, 7.1304, 7.1301, 7.1299, 7.1305, 7.1302, 7.131, 7.131, 7.1303, 7.1313, 7.1319, 7.1326, 7.1358, 7.1348, 7.1346, 7.1343, 7.134, 7.1338, 7.1336, 7.1342, 7.134, 7.1338, 7.1344, 7.1341, 7.1331, 7.1329, 7.1335, 7.1333, 7.133, 7.1327, 7.1324, 7.1323, 7.1322, 7.132, 7.1318, 7.1316, 7.1306, 7.1305, 7.1304, 7.1303, 7.1302, 7.13, 7.1307, 7.1304, 7.1306, 7.1305, 7.1311, 7.1318, 7.1315, 7.1314, 7.132, 7.1319, 7.1318, 7.1315, 7.1313, 7.1311, 7.1309, 7.1315, 7.1314, 7.1312, 7.1319, 7.1317, 7.1314, 7.132, 7.1326, 7.1324, 7.1321, 7.1318, 7.1323, 7.1321, 7.1328, 7.1334, 7.1333, 7.133, 7.1328, 7.1326, 7.1324, 7.133, 7.1328, 7.1334, 7.1341, 7.1339, 7.1337, 7.1343, 7.1349, 7.1348, 7.1354, 7.1353, 7.1344, 7.1342, 7.1339, 7.1345, 7.1344, 7.1341, 7.134, 7.1339, 7.1338, 7.1336, 7.1334, 7.134, 7.1337, 7.1335, 7.1333, 7.1331, 7.1331, 7.1328, 7.1325, 7.1324, 7.1323, 7.1329, 7.1326, 7.1326, 7.1325, 7.1323, 7.1329, 7.134, 7.134, 7.1337, 7.1335, 7.1333, 7.1333, 7.1328, 7.1326, 7.1342, 7.1335, 7.1339, 7.1336, 7.1335, 7.1332, 7.1329, 7.1328, 7.1326, 7.1325, 7.1322, 7.1321, 7.132, 7.1327, 7.1324, 7.133, 7.1328, 7.1334, 7.1332, 7.1331, 7.1329, 7.1326, 7.1332, 7.133, 7.1327, 7.1326, 7.1324, 7.133, 7.1331, 7.1338, 7.1337, 7.1334, 7.1332, 7.1331, 7.1329, 7.1327, 7.1326, 7.1325, 7.1322, 7.1321, 7.1318, 7.1316, 7.1323, 7.1322, 7.132, 7.1318, 7.1316, 7.1314, 7.1311, 7.1316, 7.1313, 7.131, 7.1307, 7.1304, 7.131, 7.1316, 7.1314, 7.1312, 7.1309, 7.1307, 7.1306, 7.1312, 7.131, 7.1308, 7.1306, 7.1304, 7.1311, 7.1309, 7.1307, 7.1306, 7.1304, 7.1303, 7.1301, 7.1304, 7.1302, 7.1299, 7.1297, 7.1295, 7.1292, 7.1289, 7.1288, 7.1286, 7.1283, 7.1281, 7.1287, 7.1286, 7.1284, 7.1275, 7.1273, 7.1271, 7.1278, 7.1276, 7.1282, 7.1279, 7.1277, 7.1275, 7.1274, 7.1272, 7.127, 7.1269, 7.1275, 7.1281, 7.1278, 7.1278, 7.1276, 7.1274, 7.1272, 7.1269, 7.1266, 7.1273, 7.1279, 7.1279, 7.1278, 7.1277, 7.1274, 7.1272, 7.1278, 7.1276, 7.1275, 7.1281, 7.1287, 7.1285, 7.1292, 7.1291, 7.1288, 7.1294, 7.1292, 7.129, 7.129, 7.128, 7.1287, 7.1313, 7.1323, 7.1322, 7.1319, 7.1316, 7.1339, 7.1337, 7.1337, 7.1337, 7.1337, 7.1337, 7.1343, 7.1341, 7.1342, 7.134, 7.1337, 7.1343, 7.1341, 7.1351, 7.1361, 7.136, 7.1359, 7.1357, 7.1372, 7.137, 7.1377, 7.1376, 7.1382, 7.138, 7.138, 7.1392, 7.139, 7.1396, 7.1398, 7.1409, 7.1415, 7.1421, 7.1419, 7.1416, 7.1414, 7.1428, 7.1426, 7.1425, 7.1424, 7.1422, 7.1422, 7.1419, 7.1416, 7.1413, 7.1419, 7.1416, 7.1422, 7.142, 7.1418, 7.1415, 7.1413, 7.141, 7.141, 7.1407, 7.1404, 7.1401, 7.1406, 7.142, 7.1426, 7.1424, 7.1429, 7.1438, 7.1443, 7.1441, 7.145, 7.1455, 7.1453, 7.1452, 7.1457, 7.1454, 7.1459, 7.1464, 7.1461, 7.1466, 7.1463, 7.146, 7.1466, 7.1472, 7.1478, 7.1476, 7.1482, 7.148, 7.149, 7.149, 7.1489, 7.1503, 7.15, 7.1498, 7.1496, 7.1493, 7.149, 7.1489, 7.1488, 7.1486, 7.1478, 7.1476, 7.1473, 7.1471, 7.1468, 7.1466, 7.1463, 7.1461, 7.1458, 7.1455, 7.1452, 7.145, 7.1448, 7.1446, 7.1443, 7.144, 7.1446, 7.1443, 7.1448, 7.1462, 7.1461, 7.1458, 7.1456, 7.1453, 7.1459, 7.1457, 7.1455, 7.1452, 7.1449, 7.1447, 7.1453, 7.1451, 7.1474, 7.1479, 7.1477, 7.1475, 7.1481, 7.1479, 7.1485, 7.1483, 7.1481, 7.1478, 7.1483, 7.148, 7.1477, 7.1474, 7.1471, 7.1468, 7.1466, 7.1472, 7.147, 7.1468, 7.1482, 7.1479, 7.1477, 7.1476, 7.1474, 7.1472, 7.147, 7.147, 7.1469, 7.1467, 7.1466, 7.1464, 7.1461, 7.1468, 7.1466, 7.1463, 7.146, 7.1459, 7.1458, 7.1456, 7.1462, 7.146, 7.1451, 7.1456, 7.1453, 7.145, 7.1447, 7.1445, 7.145, 7.1447, 7.1445, 7.1443, 7.1448, 7.1448, 7.1453, 7.1459, 7.1458, 7.1456, 7.1461, 7.1459, 7.1457, 7.1454, 7.1452, 7.1459, 7.1458, 7.1463, 7.1461, 7.1459, 7.1457, 7.1463, 7.1461, 7.1466, 7.1472, 7.1478, 7.1475, 7.1481, 7.1479, 7.1477, 7.1475, 7.1472, 7.1469, 7.1466, 7.1464, 7.1469, 7.1466, 7.1463, 7.1461, 7.1458, 7.1455, 7.1454, 7.1451, 7.1448, 7.1446, 7.1444, 7.1442, 7.144, 7.1445, 7.145, 7.1448, 7.1447, 7.1447, 7.1444, 7.1441, 7.144, 7.1438, 7.1435, 7.1435, 7.1432, 7.1429, 7.1426, 7.144, 7.1437, 7.1434, 7.1431, 7.1429, 7.1428, 7.1433, 7.1431, 7.1431, 7.1431, 7.1429, 7.1429, 7.1427, 7.1421, 7.1419, 7.1417, 7.1415, 7.1413, 7.1419, 7.1417, 7.1423, 7.1421, 7.1418, 7.1416, 7.1414, 7.1413, 7.141, 7.1408, 7.1406, 7.1405, 7.1403, 7.1408, 7.1405, 7.1403, 7.1402, 7.1415, 7.1421, 7.1419, 7.1418, 7.1415, 7.1412, 7.141, 7.1407, 7.1404, 7.1409, 7.1415, 7.1413, 7.1417, 7.1415, 7.1414, 7.1412, 7.1417, 7.1416, 7.1422, 7.1419, 7.1425, 7.1431, 7.1429, 7.1427, 7.1425, 7.1423, 7.142, 7.1419, 7.1417, 7.1422, 7.1421, 7.1419], '192.168.122.116': [5.9617, 5.9982, 5.9619, 5.8497, 5.9425, 5.9592, 6.8373, 6.7094, 6.5564, 6.5333, 6.4667, 6.4082, 6.4734, 6.4088, 6.3411, 6.2818, 6.5866, 6.5144, 6.4596, 6.4134, 6.3812, 6.6004, 6.5681, 6.5279, 6.5626, 6.7215, 6.7173, 6.6742, 6.6618, 6.6182, 6.7603, 6.7475, 6.7537, 6.7753, 6.9039, 7.011, 6.964, 7.0648, 7.0429, 7.153, 7.1273, 7.1225, 7.0832, 7.0448, 7.0052, 6.9702, 6.9371, 6.9031, 6.8802, 6.8597, 6.8371, 6.8299, 6.8018, 6.7987, 6.7864, 6.7681, 6.751, 6.7307, 6.7127, 6.695, 6.7644, 6.8464, 6.7525, 6.7368, 6.7225, 6.7118, 6.7049, 6.7137, 6.7715, 6.7545, 6.7409, 6.7349, 6.7145, 6.695, 6.6951, 6.6833, 6.6672, 6.6626, 6.6518, 6.6359, 6.6907, 6.677, 6.6816, 6.885, 6.9334, 6.9166, 6.9019, 6.8861, 6.8753, 6.878, 6.8648, 6.8658, 6.9133, 6.9019, 6.8948, 6.8817, 6.8742, 6.8215, 6.8167, 6.8119, 6.7988, 6.7911, 6.7973, 6.7864, 6.7731, 6.766, 6.7546, 6.75, 6.7443, 6.7818, 6.7701, 6.8039, 6.8397, 6.843, 6.8339, 6.829, 6.82, 6.8252, 6.8138, 6.801, 6.789, 6.7839, 6.8259, 6.8624, 6.8538, 6.8413, 6.8308, 6.8332, 6.8624, 6.894, 6.9296, 6.9208, 6.9186, 6.9153, 6.9085, 6.8959, 6.8905, 6.9189, 6.9147, 6.9071, 6.8985, 6.8874, 6.913, 6.904, 6.8963, 6.8975, 6.8961, 6.8985, 6.8914, 6.8901, 6.8828, 6.875, 6.8751, 6.8689, 6.8292, 6.8224, 6.8201, 6.8107, 6.809, 6.8133, 6.8048, 6.8004, 6.7915, 6.7878, 6.7788, 6.7761, 6.7719, 6.7676, 6.7629, 6.7565, 6.7524, 6.7448, 6.7406, 6.7343, 6.727, 6.7194, 6.7182, 6.7165, 6.7143, 6.7119, 6.7088, 6.7034, 6.7281, 6.7342, 6.7283, 6.7247, 6.7195, 6.7429, 6.7369, 6.732, 6.7268, 6.7278, 6.728800000000001, 6.7504, 6.7469, 6.74, 6.7605, 6.7706, 6.7723, 6.7684, 6.761, 6.7845, 6.8054, 6.8038, 6.7972, 6.816, 6.8117, 6.812, 6.8085, 6.8021, 6.7961, 6.7906, 6.7836, 6.8025, 6.8226, 6.7967, 6.793, 6.7885, 6.7824, 6.7781, 6.779100000000001, 6.7796, 6.7739, 6.7728, 6.7917, 6.7872, 6.7654, 6.7598, 6.7832, 6.7802, 6.7812, 6.7822000000000005, 6.7818, 6.7978, 6.7918, 6.7896, 6.7851, 6.78, 6.7764, 6.7706, 6.7863, 6.7869, 6.7814, 6.7787, 6.7956, 6.7932, 6.8116, 6.8086, 6.8065, 6.8022, 6.821, 6.8396, 6.8379, 6.8369, 6.8366, 6.833, 6.8269, 6.8429, 6.8384, 6.8573, 6.8793, 6.8755, 6.8745, 6.8851, 6.8811, 6.8794, 6.875, 6.8787, 6.8779, 6.8749, 6.8711, 6.8679, 6.8636, 6.8435, 6.8393, 6.8566, 6.8514, 6.8485, 6.8454, 6.8398, 6.8552, 6.8506, 6.8468, 6.8462, 6.8445, 6.8455, 6.8499, 6.8444, 6.8444, 6.859, 6.8568, 6.8551, 6.891, 6.8875, 6.8879, 6.9453, 6.9593, 6.9543, 6.9568, 6.959, 6.9423, 6.939, 6.9359, 6.9376, 6.954, 6.9504, 6.9449, 6.9406, 6.9364, 6.949, 6.9489, 6.9455, 6.9424, 6.944, 6.9461, 6.9425, 6.9565, 6.952, 6.9483, 6.9434, 6.9402, 6.9359, 6.9329, 6.9285, 6.9246, 6.9277, 6.9232, 6.9186, 6.9141, 6.9274, 6.9284, 6.9244, 6.9064, 6.9022, 6.8985, 6.8943, 6.9065, 6.9176, 6.915, 6.9102, 6.9231, 6.9183, 6.9141, 6.9105, 6.9064, 6.9103, 6.9214, 6.9169, 6.9131, 6.9107, 6.9073, 6.9195, 6.9175, 6.9314, 6.9271, 6.941, 6.9518, 6.9477, 6.9479, 6.9438, 6.942, 6.946, 6.9429, 6.9283, 6.9268, 6.9384, 6.9496, 6.9489, 6.9445, 6.9428, 6.9268, 6.9227, 6.9212, 6.9175, 6.9144, 6.9101, 6.9202, 6.9295, 6.9299, 6.9294, 6.9396, 6.9502, 6.9463, 6.9446, 6.9548, 6.9517, 6.9476, 6.948, 6.9443, 6.9409, 6.938, 6.9374, 6.9368, 6.9344, 6.9549, 6.9652, 6.964, 6.9609, 6.9614, 6.962, 6.9581, 6.9543, 6.9526, 6.9513, 6.9617, 6.9617, 6.9576, 6.9579, 6.9718, 6.9695, 6.9673, 6.964, 6.9605, 6.9567, 6.9559, 6.9522, 6.9624, 6.9592, 6.955, 6.9513, 6.9482, 6.9574, 6.9684, 6.9681, 6.9789, 6.9763, 6.9736, 6.9836, 6.983, 6.9805, 6.99, 6.9876, 6.9841, 6.9806, 6.9778, 6.9759, 6.9725, 6.9697, 6.9685, 6.9647, 6.9609, 6.9583, 6.9442, 6.9565, 6.9546, 6.9521, 6.9531, 6.9541, 6.963, 6.971, 6.972, 6.9804, 6.977, 6.9752, 6.9839, 6.981, 6.9801, 6.9785, 6.9768, 6.9976, 6.9954, 6.9919, 6.9943, 6.9907, 6.9871, 6.9848, 6.9834, 6.9801, 6.9879, 6.9847, 6.9812, 6.9792, 6.9761, 6.974, 6.9822, 6.9793, 6.9879, 6.9853, 6.9836, 6.9811, 6.978, 6.9775, 6.9743, 6.9726, 6.9725, 6.9813, 6.9781, 6.9763, 6.9842, 6.9819, 6.9788, 6.9755, 6.9845, 6.9838, 6.9807, 6.9948, 7.0179, 7.019, 7.0333, 7.0343, 7.043, 7.0534, 7.0513, 7.05, 7.0464, 7.0436, 7.0403, 7.0384, 7.0363, 7.0463, 7.0441, 7.0422, 7.0505, 7.0494, 7.0493, 7.0478, 7.0474, 7.0579, 7.0673, 7.0665, 7.0643, 7.0642, 7.0628, 7.0705, 7.0696, 7.0689, 7.0657, 7.0639, 7.0622, 7.0626, 7.0618, 7.0697, 7.0668, 7.0639, 7.0609, 7.0596, 7.0591, 7.0594, 7.0497, 7.0473, 7.0372, 7.0345, 7.035500000000001, 7.0423, 7.0396, 7.0381, 7.0453, 7.0525, 7.0592, 7.0561, 7.0451, 7.0527, 7.0511, 7.0685, 7.0755, 7.0826, 7.1004, 7.1014, 7.1024, 7.1, 7.0985, 7.0983, 7.0973, 7.0943, 7.1014, 7.0984, 7.0952, 7.092, 7.0804, 7.0784, 7.0758, 7.0735, 7.0725, 7.0693, 7.0678, 7.0769, 7.0748, 7.0729, 7.0709, 7.0683, 7.0654, 7.0641, 7.0625, 7.0609, 7.0593, 7.0562, 7.054, 7.0528, 7.05, 7.0485, 7.0464, 7.053, 7.0506, 7.049, 7.0476, 7.0486, 7.0465, 7.0435, 7.0494, 7.0479, 7.0547, 7.0519, 7.0517, 7.0498, 7.0491, 7.047, 7.054, 7.0513, 7.0505, 7.048, 7.049, 7.0464, 7.0442, 7.0424, 7.0397, 7.0471, 7.0464, 7.0474000000000006, 7.0456, 7.0435, 7.0492, 7.0486, 7.0559, 7.0711, 7.0683, 7.0752, 7.0731, 7.071, 7.0705, 7.0769, 7.0747, 7.0732, 7.0704, 7.0615, 7.0602, 7.059, 7.0578, 7.0642, 7.0712, 7.0862, 7.0861, 7.0842, 7.0751, 7.073, 7.0707, 7.0681, 7.0655, 7.0716, 7.0701, 7.0691, 7.068, 7.067, 7.0646, 7.062, 7.0521, 7.05, 7.0473, 7.0467, 7.0524, 7.0511, 7.0497, 7.0485, 7.0627, 7.06, 7.0588, 7.0567, 7.0554, 7.0533, 7.0512, 7.0505, 7.0485, 7.0466, 7.0445, 7.0426, 7.0402, 7.0384, 7.0378, 7.0353, 7.0411, 7.0395, 7.0387, 7.0442, 7.0423, 7.0413, 7.0464, 7.046, 7.0457, 7.0513, 7.0496, 7.0485, 7.0463, 7.044, 7.0425, 7.0411, 7.0405, 7.046, 7.0516, 7.05, 7.0478, 7.0393, 7.0376, 7.0599, 7.0653, 7.0641, 7.0556, 7.0554, 7.0562, 7.0548, 7.0525, 7.0506, 7.0494, 7.0538, 7.0543, 7.0522, 7.0586, 7.0572, 7.0554, 7.0467, 7.0532, 7.0513, 7.0494, 7.0546, 7.0542, 7.0524, 7.0526, 7.0504, 7.0489, 7.0498, 7.0627, 7.0606, 7.0604, 7.0585, 7.0581, 7.0568, 7.0551, 7.0535, 7.0535, 7.0526, 7.0532, 7.0551, 7.0556, 7.0539, 7.0549, 7.0541, 7.0551, 7.0531, 7.0524, 7.0507, 7.0557, 7.0548, 7.053, 7.0447, 7.0627, 7.0684, 7.0666, 7.0653, 7.0631, 7.0612, 7.0592, 7.0572, 7.0551, 7.0539, 7.0521, 7.0505, 7.0496, 7.0542, 7.0597, 7.0577, 7.056, 7.0618, 7.0606, 7.0589, 7.0582, 7.0576, 7.0817, 7.0798, 7.0853, 7.0839, 7.0885, 7.0873, 7.0851, 7.0844, 7.089, 7.0878, 7.086, 7.084, 7.0824, 7.0815, 7.0794, 7.0773, 7.0759, 7.0738, 7.0782, 7.0771, 7.0882, 7.0815, 7.0734, 7.0726, 7.0717, 7.0697, 7.068, 7.0658, 7.0707, 7.0691, 7.074, 7.0738, 7.0736, 7.0716, 7.0702, 7.0681, 7.073, 7.0653, 7.0632, 7.0621, 7.0602, 7.0648, 7.0639, 7.0625, 7.0606, 7.0599, 7.0581, 7.0562, 7.0607, 7.0597, 7.0596, 7.0578, 7.0571, 7.0624, 7.0672, 7.0659, 7.065, 7.063, 7.0638, 7.062, 7.0603, 7.0584, 7.0573, 7.0559, 7.0544, 7.0525, 7.0506, 7.0493, 7.0485, 7.048, 7.0459, 7.0443, 7.0424, 7.0405, 7.0388, 7.0373, 7.036, 7.034, 7.0329, 7.0322, 7.0312, 7.0296, 7.0279, 7.0269, 7.0375, 7.0364, 7.0354, 7.0337, 7.032, 7.0367, 7.0358, 7.0349, 7.0331, 7.0312, 7.0293, 7.0286, 7.033, 7.0312, 7.0361, 7.0349, 7.035900000000001, 7.034, 7.0324, 7.0311, 7.0242, 7.0237, 7.0221, 7.022, 7.0201, 7.02, 7.0195, 7.0189, 7.0183, 7.0231, 7.0226, 7.0213, 7.0195, 7.0182, 7.0238, 7.022, 7.0207, 7.0199, 7.018, 7.0165, 7.017, 7.0211, 7.0197, 7.018, 7.0179, 7.016, 7.0143, 7.013, 7.0129, 7.0125, 7.011, 7.0151, 7.0144, 7.0138, 7.0122, 7.0114, 7.0107, 7.0102, 7.0107, 7.0107, 7.0099, 7.0145, 7.0129, 7.0173, 7.0154, 7.0204, 7.0201, 7.021100000000001, 7.0261, 7.0196, 7.0187, 7.0169, 7.0157, 7.0145, 7.0127, 7.0117, 7.0102, 7.0147, 7.0145, 7.0136, 7.0122, 7.006, 7.0044, 7.0029, 7.0026, 7.0021, 7.0012, 7.0016, 7.006, 7.006, 7.0046, 7.0034, 7.002, 7.0004, 6.9999, 6.9999, 7.000900000000001, 7.0057, 7.0045, 7.0087, 7.014, 7.0123, 7.0112, 7.0115, 7.012, 7.0115, 7.0108, 7.011, 7.0092, 7.009, 7.0075, 7.0081, 7.0068, 7.0054, 7.0038, 7.0041, 7.0082, 7.0074, 7.0058, 7.0097, 7.0081, 7.0123, 7.0116, 7.01, 7.0091, 7.0074, 7.0059, 7.0068, 7.0115, 7.0123, 7.0113, 7.0155, 7.0141, 7.013, 7.012, 7.0343, 7.041, 7.0403, 7.0398, 7.0438, 7.0491, 7.0475, 7.0462, 7.0452, 7.044, 7.0565, 7.0549, 7.0547, 7.0638, 7.0623, 7.061, 7.0652, 7.0645, 7.0635, 7.0623, 7.0608, 7.0648, 7.0661, 7.0604, 7.0606, 7.059, 7.0584, 7.0626, 7.0619, 7.0603, 7.0642, 7.0687, 7.0674, 7.0714, 7.0701, 7.0736, 7.0777, 7.0762, 7.0763, 7.075, 7.0737, 7.0732, 7.074, 7.0728, 7.0732, 7.0728, 7.0766, 7.075, 7.0734, 7.0723, 7.0761, 7.0706, 7.0649, 7.0589, 7.0589, 7.0582, 7.053, 7.0517, 7.0502, 7.0491, 7.048, 7.0466, 7.0453, 7.0442, 7.0488, 7.0488, 7.0498, 7.0492, 7.0481, 7.0472, 7.0508, 7.0497, 7.0487, 7.0497000000000005, 7.050700000000001, 7.0598, 7.0538, 7.0548, 7.0634, 7.063, 7.0615, 7.0599, 7.0634, 7.0619, 7.0604, 7.0643, 7.0628, 7.0619, 7.0604, 7.0587, 7.0577, 7.0568, 7.0561, 7.0551, 7.0539, 7.0572, 7.0605, 7.06, 7.0591, 7.0577, 7.0564, 7.0554, 7.0539, 7.0577, 7.0614, 7.0603, 7.0587, 7.0575, 7.0525, 7.0476, 7.0514, 7.05, 7.0494, 7.048, 7.0513, 7.0498, 7.0487, 7.0475, 7.0512, 7.0548, 7.0584, 7.0533, 7.0528, 7.0521, 7.0521, 7.0551, 7.0501, 7.0485, 7.0471, 7.0461, 7.0456, 7.0444, 7.0476, 7.0509, 7.0496, 7.054, 7.0532, 7.0517, 7.0501, 7.0488, 7.0482, 7.0514, 7.0504, 7.0536, 7.0573, 7.0558, 7.0546, 7.0543, 7.05, 7.0578, 7.0564, 7.0557, 7.0541, 7.0534, 7.0523, 7.052, 7.0507, 7.0517, 7.052700000000001, 7.0558, 7.0597, 7.060700000000001, 7.061700000000001, 7.062700000000001, 7.0624, 7.0662, 7.0654, 7.0654, 7.0642, 7.0627, 7.0614, 7.0607, 7.0604, 7.0597, 7.0582, 7.0576, 7.0564, 7.0561, 7.0551, 7.0535, 7.0525, 7.051, 7.0541, 7.0527, 7.0523, 7.0558, 7.0558, 7.0544, 7.054, 7.0537, 7.0535, 7.0481, 7.047, 7.0474, 7.0468, 7.0463, 7.0456, 7.045, 7.0437, 7.0434, 7.042, 7.0407, 7.0392, 7.0345, 7.0334, 7.0281, 7.0268, 7.0262, 7.0247, 7.0233, 7.0228, 7.0215, 7.0205, 7.0196, 7.0189, 7.0176, 7.0172, 7.0158, 7.0168, 7.0178, 7.0166, 7.0157, 7.0148, 7.01, 7.0089, 7.0118, 7.0108, 7.0104, 7.0095, 7.0081, 7.0069, 7.0102, 7.0135, 7.0123, 7.0151, 7.0143, 7.0095, 7.0047, 7.004, 7.0032, 7.0064, 7.0074000000000005, 7.0061, 7.0097, 7.0098, 7.0176, 7.0161, 7.0161, 7.0171, 7.0181000000000004, 7.0174, 7.0344, 7.0341, 7.0334, 7.0326, 7.0315, 7.0305, 7.0297, 7.0289, 7.0279, 7.0427, 7.0468, 7.0459, 7.045, 7.0402, 7.0438, 7.043, 7.0464, 7.0451, 7.0444, 7.048, 7.0472, 7.046, 7.0418, 7.0418, 7.0451, 7.044, 7.0429, 7.0479, 7.0467, 7.0455, 7.0457, 7.0488, 7.0478, 7.0511, 7.0502, 7.0489, 7.0447, 7.0399, 7.0395, 7.0429, 7.042, 7.037, 7.032, 7.0269, 7.0263, 7.0299, 7.0287, 7.0444, 7.0441, 7.0437, 7.0402, 7.0431, 7.0423, 7.0418, 7.0417, 7.0426, 7.0455, 7.0448, 7.0436, 7.0437, 7.0437, 7.0389, 7.0416, 7.0409, 7.0408, 7.0411, 7.0398, 7.0428, 7.0416, 7.0404, 7.0397, 7.0431, 7.042, 7.041, 7.0411, 7.0366, 7.0396, 7.0404, 7.0437, 7.0428, 7.046, 7.0451, 7.0443, 7.0441, 7.0467, 7.0465, 7.0494, 7.0527, 7.0525, 7.0478, 7.0467, 7.0459, 7.0455, 7.0444, 7.0438, 7.0432, 7.0422, 7.041, 7.0404, 7.0362, 7.035, 7.0345, 7.0333, 7.0332, 7.0321, 7.0317, 7.0307, 7.0309, 7.0303, 7.033, 7.0327, 7.0319, 7.0311, 7.0307, 7.0296, 7.030600000000001, 7.031600000000001, 7.0351, 7.034, 7.0327, 7.0316, 7.0308, 7.0297, 7.0286, 7.0284, 7.0284, 7.0242, 7.0194, 7.0155, 7.015, 7.0178, 7.017, 7.016, 7.0151, 7.015, 7.0148, 7.0155, 7.0115, 7.0143, 7.0172, 7.0167, 7.0156, 7.0185, 7.0174, 7.0129, 7.0117, 7.0105, 7.0095, 7.0084, 7.0073, 7.0101, 7.0089, 7.0084, 7.0079, 7.0069, 7.0056, 7.0049, 7.0038, 7.0027, 7.0052, 7.0044, 7.0032, 7.0024, 7.0013, 7.0001, 6.9992, 6.9985, 6.9981, 6.9973, 6.9962, 6.9959, 6.9948, 6.9937, 6.993, 6.992, 6.991, 6.9903, 6.9896, 6.9923, 6.9921, 6.991, 6.9941, 6.9942, 6.9969, 6.9968, 6.9964, 6.996, 6.9987, 6.9977, 6.9969, 6.9998, 6.999, 7.0017, 7.0014, 7.0006, 6.9994, 6.9958, 6.9946, 6.9975, 6.9976, 6.9971, 6.9959, 6.9952, 6.998, 6.9968, 6.9998, 6.999, 6.9985, 7.0011, 7.0036, 7.0033, 7.0061, 7.0017, 6.998, 6.9975, 6.9976, 6.9966, 6.9969, 6.9959, 6.995, 6.9944, 6.9935, 6.9965, 6.9993, 6.9984, 6.9978, 6.9971, 6.9967, 7.0048, 7.0008, 6.9968, 6.9927, 6.9922, 6.9955, 6.9981, 6.997, 6.9962, 6.9988, 6.9978, 6.9977, 6.9944, 6.9948, 6.9943, 6.9937, 6.994, 6.993, 6.9921, 6.9913, 6.9914, 6.9914, 6.9939, 7.0078, 7.0071, 7.0077, 7.0071, 7.0063, 7.0054, 7.005, 7.004, 7.0039, 7.0031, 7.0026, 7.0058, 7.0066, 7.0264, 7.0254, 7.0279, 7.0304, 7.0298, 7.0291, 7.0281, 7.0277, 7.0266, 7.0295, 7.032, 7.0315, 7.0305, 7.0305, 7.0299, 7.0414, 7.0406, 7.0395, 7.0418, 7.0407, 7.04, 7.0389, 7.0384, 7.0377, 7.0366, 7.0357, 7.0351, 7.0376, 7.0367, 7.0362, 7.0352, 7.0379, 7.0369, 7.0363, 7.0361, 7.0459, 7.0453, 7.0446, 7.045, 7.0493, 7.0485, 7.0564, 7.0591, 7.0617, 7.0609, 7.0606, 7.0597, 7.0597, 7.0591, 7.0583, 7.0573, 7.0571, 7.0582, 7.0605, 7.0626, 7.0621, 7.0647, 7.0637, 7.0664, 7.0657, 7.0654, 7.0651, 7.0645, 7.0636, 7.0666, 7.0691, 7.0685, 7.0678, 7.0702, 7.0726, 7.072, 7.071, 7.0706, 7.0696, 7.0687, 7.0676, 7.0665, 7.0659, 7.0649, 7.0639, 7.0634, 7.0629, 7.0653, 7.0642, 7.0631, 7.0622, 7.0612, 7.0602, 7.0592, 7.0617, 7.0606, 7.0596, 7.0585, 7.0608, 7.0598, 7.062, 7.0583, 7.0576, 7.0599, 7.0589, 7.058, 7.057, 7.0592, 7.0617, 7.0612, 7.0602, 7.0625, 7.0654, 7.0647, 7.0655, 7.0645, 7.0666, 7.0659, 7.0648, 7.0706, 7.07, 7.0689, 7.0679, 7.0668, 7.066, 7.0681, 7.067, 7.067, 7.0664, 7.0653, 7.065, 7.0679, 7.0678, 7.0681, 7.0704, 7.0733, 7.0744, 7.0745, 7.0742, 7.0733, 7.0735, 7.0726, 7.0717, 7.0713, 7.0707, 7.0737, 7.0734, 7.0725, 7.0716, 7.0742, 7.0733, 7.073, 7.0727, 7.0725, 7.0747, 7.0789, 7.0778, 7.0773, 7.0801, 7.0823, 7.0845, 7.0838, 7.0828, 7.0851, 7.0873, 7.0897, 7.0921, 7.0915, 7.0905, 7.0897, 7.0886, 7.0878, 7.0867, 7.0856, 7.0848, 7.0839, 7.0869, 7.0861, 7.0852, 7.0847, 7.0838, 7.0861, 7.0858, 7.0853, 7.085, 7.084, 7.0831, 7.083, 7.091, 7.0904, 7.0894, 7.0888, 7.0882, 7.0906, 7.0928, 7.0922, 7.0914, 7.0903, 7.0897, 7.0921, 7.0946, 7.094, 7.093, 7.0924, 7.0918, 7.091, 7.0902, 7.0897, 7.0891, 7.0884, 7.0882, 7.0877, 7.0869, 7.0961, 7.0957, 7.0946, 7.0938, 7.0928, 7.0927, 7.0918, 7.0887, 7.0915, 7.091, 7.0911, 7.0905, 7.0931, 7.0953, 7.0944, 7.0952, 7.0942, 7.0923, 7.092, 7.0912, 7.0904, 7.0927, 7.095, 7.0952, 7.0949, 7.0944, 7.0936, 7.0902, 7.0894, 7.0894, 7.0887, 7.0878, 7.0868, 7.0894, 7.0888, 7.0885, 7.0883, 7.0908, 7.09, 7.089, 7.0896, 7.0888, 7.0904, 7.0897, 7.0919, 7.0909, 7.093, 7.092, 7.0911, 7.0875, 7.0897, 7.0887, 7.0878, 7.0899, 7.089, 7.1004, 7.0994, 7.0988, 7.0979, 7.0969, 7.0994, 7.0988, 7.0983, 7.0975, 7.0967, 7.0982, 7.098, 7.1004, 7.1, 7.0998, 7.1021, 7.1041, 7.1031, 7.1029, 7.1052, 7.1047, 7.1046, 7.104, 7.1031, 7.1055, 7.1048, 7.1039, 7.1034, 7.1061, 7.1053, 7.1045, 7.1037, 7.1058, 7.1049, 7.1043, 7.1008, 7.1002, 7.0997, 7.0988, 7.1008, 7.1003, 7.0993, 7.0986, 7.0979, 7.0969, 7.0965, 7.0956, 7.0952, 7.0944, 7.0966, 7.0987, 7.1042, 7.1039, 7.106, 7.1051, 7.1072, 7.1068, 7.1061, 7.1052, 7.1044, 7.1068, 7.1088, 7.1078, 7.1101, 7.1093, 7.1085, 7.1079, 7.1071, 7.1042, 7.1033, 7.1024, 7.1015, 7.1005, 7.0998, 7.099, 7.0988, 7.101, 7.1006, 7.1029, 7.1022, 7.1047, 7.1047, 7.1069, 7.1092, 7.1086, 7.1077, 7.11, 7.1104, 7.1096, 7.1129, 7.1139, 7.1131, 7.1136, 7.1128, 7.1121, 7.1113, 7.1105, 7.1098, 7.1121, 7.1118, 7.1111, 7.1105, 7.1097, 7.1089, 7.1079, 7.1074, 7.1069, 7.1063, 7.1086, 7.1079, 7.1075, 7.1099, 7.1115, 7.1108, 7.11, 7.1121, 7.1144, 7.1163, 7.1159, 7.1182, 7.1205, 7.1225, 7.1223, 7.1243, 7.1241, 7.1234, 7.1238, 7.1234, 7.1226, 7.1218, 7.124, 7.1233, 7.1233, 7.1224, 7.1248, 7.1241, 7.1262, 7.1253, 7.1245, 7.1268, 7.1292, 7.1292, 7.1302, 7.1295, 7.1291, 7.1284, 7.1308, 7.1305, 7.1296, 7.1291, 7.1263, 7.1256, 7.1251, 7.1272, 7.1266, 7.1284, 7.1275, 7.1296, 7.1291, 7.1284, 7.1303, 7.1324, 7.1315, 7.131, 7.1329, 7.132, 7.1315, 7.1309, 7.1302, 7.1294, 7.1293, 7.1284, 7.1278, 7.1274, 7.1296, 7.1266, 7.1236, 7.1247, 7.1268, 7.1281, 7.1283, 7.1275, 7.13, 7.1294, 7.1291, 7.1308, 7.1302, 7.1324, 7.1344, 7.1341, 7.1332, 7.1327, 7.1353, 7.1346, 7.1337, 7.1335, 7.1357, 7.1349, 7.1343, 7.1334, 7.1352, 7.1374, 7.1394, 7.1414, 7.1407, 7.1405, 7.1399, 7.139, 7.139, 7.1387, 7.1407, 7.1404, 7.1423, 7.1424, 7.1415, 7.1408, 7.1399, 7.1395, 7.1399, 7.14, 7.1397, 7.1392, 7.1386, 7.1378, 7.137, 7.1365, 7.1388, 7.1387, 7.1403, 7.1422, 7.1414, 7.1412, 7.1408, 7.1402, 7.1401, 7.1422, 7.1413, 7.1407, 7.1424, 7.1416, 7.1415, 7.141, 7.1409, 7.1402, 7.1427, 7.145, 7.1447, 7.144, 7.1463, 7.1455, 7.145, 7.1442, 7.1435, 7.1433, 7.1429, 7.1422, 7.1417, 7.1408, 7.1399, 7.1394, 7.1387, 7.1378, 7.137, 7.1365, 7.1357, 7.1351, 7.1348, 7.1344, 7.1342, 7.1334, 7.1327, 7.1298, 7.1292, 7.1286, 7.1278, 7.127, 7.1262, 7.1257, 7.1256, 7.1249, 7.1269, 7.124, 7.1234, 7.123, 7.1226, 7.1219, 7.1243, 7.1239, 7.1232, 7.1225, 7.1244, 7.1288, 7.128, 7.1273, 7.1264, 7.1258, 7.1249, 7.1242, 7.1264, 7.1258, 7.1279, 7.1299, 7.1321, 7.1314, 7.131, 7.1331, 7.1326, 7.1345, 7.1337, 7.1355, 7.1373, 7.1364, 7.1356, 7.1378, 7.137, 7.1362, 7.1354, 7.1346, 7.134, 7.1332, 7.1328, 7.1297, 7.1297, 7.1267, 7.1264, 7.1256, 7.1248, 7.1247, 7.1242, 7.1234, 7.1225, 7.1195, 7.1212, 7.1205, 7.1202, 7.1172, 7.1167, 7.1158, 7.1127, 7.1119, 7.1118, 7.1111, 7.1107, 7.1129, 7.1125, 7.1122, 7.1115, 7.1108, 7.1101, 7.1096, 7.1093, 7.111, 7.1111, 7.1129, 7.1124, 7.1115, 7.1107, 7.1124, 7.112, 7.1117, 7.1111, 7.1105, 7.1147, 7.1191, 7.1183, 7.1178, 7.117, 7.1186, 7.1182, 7.1173, 7.1192, 7.1189, 7.1182, 7.1225, 7.1221, 7.1213, 7.1206, 7.1223, 7.1215, 7.1207, 7.1181, 7.1173, 7.117, 7.119, 7.1182, 7.1174, 7.1166, 7.1162, 7.1181, 7.1199, 7.1173, 7.1165, 7.1156, 7.1151, 7.1145, 7.1116, 7.1113, 7.113, 7.1148, 7.1143, 7.1139, 7.1163, 7.1158, 7.1186, 7.1186, 7.118, 7.1173, 7.1165, 7.1163, 7.1159, 7.1153, 7.1152, 7.1169, 7.1166, 7.1159, 7.1153, 7.1147, 7.1141, 7.1134, 7.1126, 7.1123, 7.114, 7.1132, 7.1126, 7.112, 7.1113, 7.1105, 7.1123, 7.112, 7.1141, 7.1135, 7.1132, 7.1132, 7.1125, 7.1125, 7.1141, 7.1134, 7.1126, 7.1122, 7.1139, 7.1156, 7.1148, 7.1143, 7.1139, 7.1156, 7.1159, 7.1152, 7.1146, 7.1142, 7.1136, 7.1156, 7.115, 7.1146, 7.114, 7.1136, 7.1133, 7.1127, 7.112, 7.1113, 7.1109, 7.1103, 7.1098, 7.1099, 7.1096, 7.1095, 7.1091, 7.1069, 7.1087, 7.1081, 7.1074, 7.1067, 7.1084, 7.1076, 7.1069, 7.1063, 7.1055, 7.1054, 7.1048, 7.104, 7.1032, 7.1026, 7.1022, 7.1015, 7.101, 7.1003, 7.0997, 7.0992, 7.0991, 7.0985, 7.0979, 7.0982, 7.0975, 7.0969, 7.0968, 7.0985, 7.0981, 7.0953, 7.0948, 7.0943, 7.0936, 7.0932, 7.0929, 7.0922, 7.0915, 7.0932, 7.0925, 7.0925, 7.0921, 7.0916, 7.0908, 7.0903, 7.0896, 7.0889, 7.0884, 7.0878, 7.0876, 7.0868, 7.0861, 7.0858, 7.0876, 7.0895, 7.0912, 7.0905, 7.0898, 7.0916, 7.0914, 7.0909, 7.0903, 7.0876, 7.0852, 7.0845, 7.0838, 7.0832, 7.0825, 7.0818, 7.0813, 7.0806, 7.0845, 7.0861, 7.0857, 7.085, 7.0866, 7.0859, 7.0855, 7.0854, 7.0872, 7.0865, 7.0862, 7.0855, 7.0848, 7.0863, 7.0857, 7.0851, 7.0849, 7.0864, 7.0856, 7.085, 7.0845, 7.084, 7.0834, 7.0832, 7.0857, 7.0853, 7.0848, 7.0845, 7.0839, 7.0833, 7.0829, 7.0828, 7.0823, 7.0818, 7.0834, 7.083, 7.0828, 7.083, 7.0828, 7.0844, 7.0819, 7.0813, 7.0806, 7.0799, 7.0794, 7.0788, 7.0806, 7.0822, 7.0842, 7.0837, 7.0834, 7.0827, 7.082, 7.0814, 7.0807, 7.0803, 7.0796, 7.0798, 7.0795, 7.0792, 7.0785, 7.0781, 7.0774, 7.0767, 7.0762, 7.0755, 7.0754, 7.0752, 7.0749, 7.0744, 7.0741, 7.0736, 7.0753, 7.0753, 7.0745, 7.0738, 7.0736, 7.076, 7.0754, 7.0748, 7.0742, 7.0735, 7.0731, 7.0751, 7.0746, 7.0744, 7.0751, 7.0769, 7.0765, 7.0758, 7.0753, 7.0747, 7.0745, 7.0719, 7.0719, 7.0717, 7.0737, 7.0718, 7.0715, 7.0708, 7.0702, 7.0698, 7.0692, 7.0688, 7.0703, 7.0696, 7.0713, 7.0709, 7.0701, 7.0699, 7.0694, 7.0688, 7.0706, 7.0703, 7.0702, 7.0699, 7.0699, 7.0696, 7.0689, 7.0706, 7.0722, 7.0717, 7.0712, 7.0728, 7.0721, 7.0715, 7.0709, 7.0725, 7.072, 7.0714, 7.0707, 7.0723, 7.072, 7.0735, 7.0728, 7.0727, 7.0721, 7.0737, 7.073, 7.0709, 7.0682, 7.0699, 7.0694, 7.071, 7.0704, 7.0698, 7.0694, 7.0692, 7.0708, 7.0702, 7.072, 7.0714, 7.0728, 7.0724, 7.0699, 7.0695, 7.0691, 7.0711, 7.0704, 7.0719, 7.0695, 7.0711, 7.0704, 7.072, 7.0736, 7.0731, 7.0747, 7.0744, 7.0739, 7.0755, 7.0751, 7.0752, 7.0752, 7.0768, 7.0763, 7.0778, 7.0771, 7.0769, 7.0764, 7.0766, 7.0759, 7.0774, 7.0749, 7.0743, 7.0737, 7.0731, 7.0724, 7.0699, 7.0693, 7.069, 7.0683, 7.0678, 7.0677, 7.0674, 7.0668, 7.0663, 7.0656, 7.0655, 7.0652, 7.0649, 7.0646, 7.0662, 7.0657, 7.0654, 7.065, 7.0645, 7.0639, 7.0634, 7.0629, 7.0625, 7.0619, 7.0616, 7.0614, 7.0608, 7.0606, 7.0601, 7.0617, 7.062, 7.062, 7.0638, 7.0658, 7.0676, 7.0669, 7.0695, 7.069, 7.0685, 7.0747, 7.0741, 7.0741, 7.0735, 7.0716, 7.071, 7.0707, 7.0706, 7.0701, 7.068, 7.0678, 7.0675, 7.0673, 7.0671, 7.0669, 7.0662, 7.0675, 7.0675, 7.0676, 7.0712, 7.0707, 7.072, 7.0736, 7.0713, 7.0729, 7.0723, 7.072, 7.0716, 7.0711, 7.0706, 7.0702, 7.0695, 7.071, 7.0705, 7.0721, 7.0717, 7.071, 7.0688, 7.0703, 7.0697, 7.0695, 7.0696, 7.0691, 7.0686, 7.0681, 7.0676, 7.0693, 7.0687, 7.0701, 7.0696, 7.0694, 7.0689, 7.0689, 7.0684, 7.0678, 7.0681, 7.0674, 7.067, 7.0684, 7.068, 7.0675, 7.0652, 7.0645, 7.064, 7.0634, 7.061, 7.061, 7.0603, 7.0601, 7.0596, 7.0591, 7.0588, 7.0583, 7.058, 7.0578, 7.0572, 7.0566, 7.0561, 7.0581, 7.0586, 7.0581, 7.0575, 7.0589, 7.0594, 7.0589, 7.0587, 7.058, 7.0581, 7.056, 7.0554, 7.0555, 7.055, 7.0545, 7.056, 7.0538, 7.0536, 7.0531, 7.0529, 7.0524, 7.0548, 7.0564, 7.0558, 7.0553, 7.0547, 7.0565, 7.0581, 7.0588, 7.0585, 7.0583, 7.0579, 7.0574, 7.0569, 7.0584, 7.0578, 7.0594, 7.0589, 7.0569, 7.0584, 7.0599, 7.0595, 7.0589, 7.0589, 7.0585, 7.06, 7.0595, 7.0608, 7.0622, 7.0617, 7.0613, 7.0608, 7.0603, 7.0618, 7.0651, 7.0648, 7.0662, 7.066, 7.0653, 7.0649, 7.0646, 7.0627, 7.0624, 7.064, 7.0636, 7.0651, 7.0649, 7.0658, 7.0653, 7.0649, 7.0707, 7.0702, 7.0697, 7.0692, 7.069, 7.0705, 7.0702, 7.0696, 7.0691, 7.0686, 7.0682, 7.0675, 7.0691, 7.0686, 7.0701, 7.0696, 7.0692, 7.0709, 7.0722, 7.0716, 7.0712, 7.0712, 7.0709, 7.0703, 7.0699, 7.0712, 7.0706, 7.0703, 7.0697, 7.069, 7.0684, 7.0681, 7.0678, 7.0692, 7.0689, 7.0685, 7.0681, 7.0675, 7.0673, 7.0688, 7.0686, 7.07, 7.0697, 7.0715, 7.0733, 7.0749, 7.0745, 7.0741, 7.0737, 7.0732, 7.0728, 7.0727, 7.0745, 7.0743, 7.0739, 7.0738, 7.0734, 7.0732, 7.0727, 7.0723, 7.0718, 7.0712, 7.0707, 7.0723, 7.0718, 7.0713, 7.0708, 7.0703, 7.0699, 7.0699, 7.0694, 7.069, 7.0684, 7.0677, 7.0693, 7.0691, 7.0687, 7.0682, 7.0675, 7.0712, 7.0709, 7.0703, 7.0698, 7.0696, 7.069, 7.0687, 7.0704, 7.0699, 7.0751, 7.0745, 7.0739, 7.0738, 7.0733, 7.0747, 7.0744, 7.0742, 7.0736, 7.0736, 7.073, 7.073, 7.0725, 7.0719, 7.0714, 7.0709, 7.0711, 7.0705, 7.072, 7.0737, 7.0733, 7.0727, 7.0722, 7.0719, 7.0713, 7.0691, 7.067, 7.0683, 7.0678, 7.0674, 7.0709, 7.0707, 7.0701, 7.0697, 7.0694, 7.0687, 7.07, 7.0697, 7.0694, 7.0689, 7.0683, 7.0682, 7.0679, 7.0673, 7.0687, 7.0682, 7.0679, 7.0678, 7.0673, 7.0687, 7.0683, 7.0677, 7.0691, 7.0685, 7.0679, 7.0675, 7.0668, 7.0681, 7.0676, 7.069, 7.0688, 7.0702, 7.07, 7.0722, 7.0736, 7.0736, 7.0771, 7.0782, 7.0777, 7.0771, 7.0765, 7.076, 7.0755, 7.0751, 7.0745, 7.0741, 7.0735, 7.0732, 7.0745, 7.0739, 7.0752, 7.073, 7.0727, 7.0722, 7.072, 7.0714, 7.0708, 7.0739, 7.0755, 7.0749, 7.0762, 7.0757, 7.0755, 7.0749, 7.0745, 7.0742, 7.074, 7.0739, 7.0735, 7.0733, 7.0728, 7.0726, 7.0741, 7.0736, 7.0735, 7.0748, 7.0746, 7.074, 7.0754, 7.0749, 7.0727, 7.0724, 7.0738, 7.0735, 7.0729, 7.0726, 7.072, 7.0715, 7.0696, 7.0713, 7.0707, 7.0702, 7.0697, 7.0696, 7.0713, 7.0707, 7.0707, 7.0707, 7.0704, 7.0719, 7.07, 7.0694, 7.0694, 7.0688, 7.0703, 7.0698, 7.0694, 7.0689, 7.0686, 7.0668, 7.0662, 7.0657, 7.0652, 7.0648, 7.0648, 7.0644, 7.0642, 7.0655, 7.0652, 7.0648, 7.0645, 7.0641, 7.0637, 7.064, 7.0635, 7.0647, 7.0659, 7.0673, 7.0653, 7.0647, 7.0643, 7.064, 7.0634, 7.0647, 7.0642, 7.0644, 7.0641, 7.0639, 7.0638, 7.0633, 7.0632, 7.063, 7.0628, 7.0622, 7.0619, 7.0616, 7.061, 7.0606, 7.0604, 7.062, 7.0656, 7.0705, 7.0701, 7.0695, 7.0692, 7.069, 7.0706, 7.0706, 7.0706, 7.0707, 7.0701, 7.0695, 7.0689, 7.0687, 7.0681, 7.0679, 7.0692, 7.0671, 7.0666, 7.0661, 7.0658, 7.0656, 7.0652, 7.0649, 7.0643, 7.0638, 7.0651, 7.0653, 7.0651, 7.0665, 7.0681, 7.0679, 7.0673, 7.0669, 7.0669, 7.0664, 7.066, 7.0674, 7.0671, 7.0666, 7.066, 7.0661, 7.066, 7.064, 7.0636, 7.0636, 7.0634, 7.0629, 7.0627, 7.0622, 7.0623, 7.0618, 7.0616, 7.0595, 7.0591, 7.059, 7.0587, 7.0582, 7.0577, 7.0571, 7.0567, 7.0566, 7.058, 7.0576, 7.0572, 7.0567, 7.0562, 7.0558, 7.0555, 7.0559, 7.0571, 7.0572, 7.0567, 7.0565, 7.0561, 7.0557, 7.0568, 7.0566, 7.0561, 7.0556, 7.055, 7.0546, 7.054, 7.0535, 7.0515, 7.0511, 7.0506, 7.0518, 7.053, 7.0526, 7.0525, 7.052, 7.0515, 7.0509, 7.0506, 7.0501, 7.0496, 7.0506, 7.0504, 7.0498, 7.0499, 7.0494, 7.049, 7.0487, 7.05, 7.0502, 7.0515, 7.0511, 7.0506, 7.0519, 7.0515, 7.051, 7.0523, 7.0536, 7.0516, 7.0529, 7.0524, 7.052, 7.0516, 7.0513, 7.0509, 7.0505, 7.05, 7.0513, 7.0514, 7.051, 7.0524, 7.0536, 7.055, 7.0548, 7.0548, 7.0561, 7.0557, 7.0571, 7.0588, 7.0586, 7.0599, 7.0593, 7.0591, 7.0588, 7.0584, 7.0581, 7.0578, 7.0573, 7.0569, 7.0565, 7.0564, 7.0564, 7.056, 7.0558, 7.0554, 7.0555, 7.0552, 7.0566, 7.0564, 7.0574, 7.058400000000001, 7.058, 7.0577, 7.0572, 7.0572, 7.0569, 7.0583, 7.0596, 7.061, 7.0605, 7.0603, 7.0599, 7.0595, 7.059, 7.0584, 7.0598, 7.0612, 7.0608, 7.0606, 7.0604, 7.0605, 7.0601, 7.0596, 7.0611, 7.0621, 7.0617, 7.0629, 7.0625, 7.0653, 7.065, 7.0648, 7.0649, 7.0645, 7.0655, 7.0668, 7.0663, 7.0659, 7.0657, 7.0656, 7.065, 7.0646, 7.0641, 7.0638, 7.0637, 7.0649, 7.0645, 7.0643, 7.0644, 7.064, 7.0653, 7.0652, 7.0652, 7.0647, 7.0643, 7.0658, 7.067, 7.0665, 7.0663, 7.0658, 7.0657, 7.0652, 7.0654, 7.065, 7.0644, 7.064, 7.0635, 7.0648, 7.0652, 7.0654, 7.065, 7.0645, 7.0643, 7.065300000000001, 7.066300000000001, 7.0658, 7.0653, 7.0672, 7.0674, 7.0669, 7.0666, 7.0664, 7.066, 7.0655, 7.0673, 7.0669, 7.0664, 7.0666, 7.0661, 7.0656, 7.0653, 7.0653, 7.0665, 7.0693, 7.069, 7.0688, 7.07, 7.0695, 7.0706, 7.0718, 7.0713, 7.0709, 7.0722, 7.0717, 7.0715, 7.0748, 7.0744, 7.0739, 7.0737, 7.0732, 7.0744, 7.0741, 7.0754, 7.075, 7.0746, 7.0742, 7.074, 7.0738, 7.0735, 7.0738, 7.0751, 7.0749, 7.075, 7.0762, 7.0759, 7.0755, 7.0753, 7.0752, 7.0748, 7.0744, 7.0755, 7.0755, 7.0749, 7.0745, 7.0742, 7.0741, 7.0736, 7.0734, 7.073, 7.0724, 7.0721, 7.0718, 7.0713, 7.0694, 7.0689, 7.07, 7.0696, 7.0708, 7.0718000000000005, 7.073, 7.0728, 7.0724, 7.0721, 7.0715, 7.0714, 7.0727, 7.0724, 7.0719, 7.0733, 7.0734, 7.0748, 7.0748, 7.0808, 7.0806, 7.0789, 7.0787, 7.0783, 7.0779, 7.0776, 7.0771, 7.0768, 7.0767, 7.0806, 7.0801, 7.0798, 7.081, 7.0823, 7.0836, 7.0832, 7.0831, 7.0844, 7.084, 7.0837, 7.0833, 7.0831, 7.0826, 7.0838, 7.085, 7.0863, 7.0865, 7.0867, 7.0863, 7.086, 7.0856, 7.0851, 7.0847, 7.0858, 7.0855, 7.0866, 7.0862, 7.0857, 7.0872, 7.0891, 7.089, 7.0886, 7.0881, 7.0893, 7.0904, 7.0899, 7.0895, 7.089, 7.0886, 7.0881, 7.0927, 7.0957, 7.0968, 7.0964, 7.096, 7.0957, 7.0956, 7.0952, 7.095, 7.0948, 7.0944, 7.0956, 7.0952, 7.0949, 7.0946, 7.0941, 7.0936, 7.0947, 7.0944, 7.0955, 7.0951, 7.0949, 7.0961, 7.0956, 7.0955, 7.0953, 7.0949, 7.0947, 7.0945, 7.0943, 7.0938, 7.0934, 7.0929, 7.091, 7.0891, 7.0889, 7.09, 7.09, 7.0897, 7.0893, 7.0889, 7.089, 7.0888, 7.0885, 7.0882, 7.0879, 7.0876, 7.0872, 7.0883, 7.088, 7.0892, 7.0887, 7.0883, 7.0884, 7.0879, 7.0875, 7.0874, 7.0873, 7.0869, 7.0864, 7.0859, 7.0854, 7.0853, 7.085, 7.0846, 7.0857, 7.0839, 7.0854, 7.0852, 7.0865, 7.0863, 7.0861, 7.0857, 7.0853, 7.0849, 7.0845, 7.084, 7.0852, 7.0851, 7.0865, 7.0877, 7.0892, 7.0888, 7.0884, 7.0882, 7.0893, 7.0888, 7.0906, 7.0905, 7.0903, 7.0916, 7.0911, 7.0906, 7.0927, 7.0922, 7.0917, 7.0914, 7.0909, 7.092, 7.0915, 7.0911, 7.0907, 7.0889, 7.0902, 7.0899, 7.0895, 7.091, 7.0908, 7.0904, 7.0902, 7.0901, 7.09, 7.0913, 7.0909, 7.0919, 7.0915, 7.0914, 7.0898, 7.0893, 7.0902, 7.0915, 7.0911, 7.0907, 7.0904, 7.0934, 7.0929, 7.0929, 7.0939, 7.0935, 7.0932, 7.093, 7.0914, 7.0912, 7.0907, 7.0902, 7.0902, 7.09, 7.0898, 7.0895, 7.0893, 7.0892, 7.0889, 7.0888, 7.0886, 7.0898, 7.0883, 7.0893, 7.0889, 7.0885, 7.0882, 7.0878, 7.0876, 7.0872, 7.087, 7.0867, 7.0863, 7.0868, 7.0864, 7.0876, 7.0872, 7.0868, 7.0881, 7.0893, 7.0889, 7.0917, 7.0913, 7.0909, 7.0904, 7.0899, 7.0895, 7.0906, 7.0906, 7.0901, 7.0896, 7.0892, 7.0888, 7.0885, 7.0881, 7.0909, 7.0904, 7.0901, 7.0899, 7.091, 7.0907, 7.0921, 7.0937, 7.0951, 7.0948, 7.0961, 7.096, 7.0973, 7.0972, 7.0967, 7.0997, 7.0993, 7.0978, 7.0974, 7.097, 7.0966, 7.0963, 7.0966, 7.0962, 7.0958, 7.0953, 7.0949, 7.0962, 7.0974, 7.0971, 7.0985, 7.098, 7.0992, 7.099, 7.1001, 7.1001, 7.1002, 7.1019, 7.103, 7.1029, 7.1024, 7.1023, 7.1007, 7.1004, 7.1041, 7.1025, 7.1009, 7.0991, 7.0988, 7.0988, 7.0983, 7.0979, 7.0977, 7.0988, 7.1, 7.0997, 7.1023, 7.1019, 7.1019, 7.1015, 7.1028, 7.1023, 7.1019, 7.1028, 7.1028, 7.1026, 7.1023, 7.1023, 7.1018, 7.1015, 7.1013, 7.1015, 7.1025, 7.1023, 7.1033, 7.1029, 7.1024, 7.102, 7.1015, 7.1013, 7.1008, 7.1004, 7.1001, 7.1002, 7.1001, 7.0996, 7.1007, 7.1002, 7.0985, 7.098, 7.0989, 7.0987, 7.0982, 7.0977, 7.0988, 7.0998, 7.0994, 7.099, 7.1001, 7.1013, 7.1008, 7.1005, 7.1015, 7.1011, 7.1023, 7.102, 7.1015, 7.1011, 7.1007, 7.1003, 7.0999, 7.0998, 7.1009, 7.1004, 7.0999, 7.0983, 7.0981, 7.0981, 7.0979, 7.0977, 7.0973, 7.0968, 7.0965, 7.0961, 7.0971, 7.0997, 7.0995, 7.0991, 7.0973, 7.0969, 7.0965, 7.0961, 7.0973, 7.0973, 7.097, 7.0967, 7.0978, 7.0976, 7.0989, 7.0986, 7.0984, 7.098, 7.0963, 7.0963, 7.0976, 7.0972, 7.0969, 7.0966, 7.0962, 7.0958, 7.0958, 7.0957, 7.0956, 7.0966, 7.0962, 7.0976, 7.0972, 7.0968, 7.095, 7.0959, 7.0955, 7.0953, 7.0949, 7.0946, 7.093, 7.0931, 7.0914, 7.0912, 7.0924, 7.092, 7.0923, 7.0906, 7.0902, 7.0919, 7.0915, 7.0916, 7.0912, 7.091, 7.0921, 7.0919, 7.093, 7.0931, 7.0929, 7.0927, 7.0924, 7.0936, 7.0919, 7.0966, 7.0962, 7.0961, 7.0958, 7.0955, 7.095, 7.0947, 7.0958, 7.0956, 7.0955, 7.0955, 7.0951, 7.0947, 7.0943, 7.094, 7.0938, 7.0951, 7.0947, 7.0942, 7.0938, 7.0921, 7.0917, 7.0928, 7.0924, 7.0921, 7.0918, 7.0938, 7.0936, 7.0931, 7.0927, 7.0937, 7.0934, 7.0929, 7.0912, 7.0908, 7.0904, 7.0901, 7.0899, 7.0898, 7.091, 7.0905, 7.09, 7.0895, 7.0891, 7.0888, 7.0885, 7.088, 7.0877, 7.0873, 7.0883, 7.088, 7.0877, 7.0873, 7.0872, 7.087, 7.0868, 7.0877, 7.0874, 7.0873, 7.0884, 7.0869, 7.0852, 7.0848, 7.0843, 7.0838, 7.0834, 7.0832, 7.0829, 7.0826, 7.0822, 7.0819, 7.0844, 7.0829, 7.0825, 7.082, 7.082, 7.0816, 7.0813, 7.0824, 7.0835, 7.0832, 7.0829, 7.0827, 7.0824, 7.0824, 7.0837, 7.0833, 7.0843, 7.0841, 7.0853, 7.0851, 7.0847, 7.0858, 7.0855, 7.0865, 7.0865, 7.0863, 7.0849, 7.0847, 7.0848, 7.0848, 7.0844, 7.084, 7.084, 7.0836, 7.0847, 7.0844, 7.084, 7.0835, 7.0832, 7.0829, 7.0825, 7.0823, 7.0819, 7.0818, 7.0815, 7.0814, 7.0825, 7.0835, 7.0833, 7.0829, 7.0826, 7.0824, 7.0824, 7.082, 7.0817, 7.0813, 7.0823, 7.082, 7.0816, 7.0812, 7.081, 7.0806, 7.0815, 7.0812, 7.081, 7.0808, 7.0806, 7.0817, 7.0815, 7.0813, 7.081, 7.082, 7.0816, 7.0802, 7.0787, 7.0782, 7.0781, 7.0793, 7.0804, 7.0803, 7.0801, 7.0799, 7.081, 7.0863, 7.0873, 7.0872, 7.0868, 7.0855, 7.0856, 7.0855, 7.0856, 7.0865, 7.0877, 7.0873, 7.0874, 7.0858, 7.0854, 7.0853, 7.0848, 7.0844, 7.0843, 7.0854, 7.0851, 7.0836, 7.0846, 7.0842, 7.084, 7.0839, 7.0848, 7.0845, 7.0844, 7.0842, 7.0839, 7.0835, 7.0822, 7.0807, 7.082, 7.0836, 7.0833, 7.083, 7.0827, 7.0811, 7.0822, 7.0821, 7.0817, 7.0813, 7.0809, 7.0818, 7.0803, 7.08, 7.0813, 7.0811, 7.0807, 7.0805, 7.0804, 7.0801, 7.0796, 7.0793, 7.0803, 7.0848, 7.0846, 7.0844, 7.0842, 7.0838, 7.0835, 7.0834, 7.0829, 7.0827, 7.0823, 7.0819, 7.0828, 7.0839, 7.0837, 7.0833, 7.0829, 7.0826, 7.0821, 7.0818, 7.083, 7.0814, 7.0812, 7.0809, 7.0805, 7.0801, 7.0801, 7.0811, 7.0808, 7.0842, 7.0826, 7.0824, 7.0834, 7.0832, 7.0828, 7.0813, 7.0813, 7.0811, 7.082, 7.0818, 7.083, 7.0828, 7.0826, 7.0822, 7.082, 7.0816, 7.0812, 7.0809, 7.0809, 7.0807, 7.0812, 7.0809, 7.0807, 7.0804, 7.0801, 7.0799, 7.0795, 7.0792, 7.0789, 7.0787, 7.0798, 7.081, 7.0808, 7.0818, 7.0804, 7.0802, 7.0802, 7.0819, 7.0817, 7.0814, 7.0811, 7.0809, 7.0821, 7.0817, 7.0828, 7.0837, 7.0834, 7.0831, 7.0828, 7.0812, 7.0797, 7.0784, 7.078, 7.0776, 7.0773, 7.077, 7.078, 7.0791, 7.079, 7.0786, 7.0785, 7.0781, 7.0779, 7.0777, 7.0774, 7.0785, 7.0785, 7.0781, 7.078, 7.0777, 7.0773, 7.0769, 7.0767, 7.0763, 7.0762, 7.0758, 7.0755, 7.0751, 7.0749, 7.0749, 7.0746, 7.0756, 7.0752, 7.0751, 7.0749, 7.0745, 7.0744, 7.0744, 7.0754, 7.075, 7.0762, 7.0762, 7.0761, 7.077, 7.0765, 7.0761, 7.076, 7.076, 7.0756, 7.0743, 7.0754, 7.0765, 7.0775, 7.0759, 7.077, 7.0779, 7.0775, 7.0771, 7.077, 7.0768, 7.0766, 7.0765, 7.0765, 7.0761, 7.0757, 7.0743, 7.0742, 7.0739, 7.0725, 7.0723, 7.071, 7.0706, 7.0705, 7.0708, 7.0738, 7.0734, 7.073, 7.0728, 7.0724, 7.0721, 7.0731, 7.0729, 7.074, 7.0738, 7.0734, 7.0719, 7.0717, 7.0726, 7.0736, 7.0736, 7.0732, 7.0729, 7.0725, 7.0735, 7.0733, 7.0733, 7.0733, 7.0732, 7.0732, 7.0728, 7.0757, 7.0754, 7.0752, 7.0749, 7.0745, 7.0746, 7.0743, 7.074, 7.0737, 7.0733, 7.0742, 7.0767, 7.0752, 7.0736, 7.0732, 7.0741, 7.0737, 7.0735, 7.0744, 7.0753, 7.075, 7.0746, 7.0755, 7.0751, 7.0747, 7.0743, 7.074, 7.0749, 7.0745, 7.0754, 7.075, 7.0746, 7.0742, 7.0738, 7.0735, 7.0731, 7.0731, 7.0727, 7.0723, 7.0722, 7.0722, 7.072, 7.073, 7.0726, 7.0723, 7.0719, 7.0715, 7.0711, 7.071, 7.0719, 7.0728, 7.0727, 7.0712, 7.0708, 7.0717, 7.0728, 7.0725, 7.0734, 7.0731, 7.0742, 7.0739, 7.0736, 7.0733, 7.073, 7.0726, 7.0724, 7.0723, 7.072, 7.0729, 7.0728, 7.0726, 7.0765, 7.0767, 7.0764, 7.0761, 7.0759, 7.0769, 7.0766, 7.0765, 7.0761, 7.0759, 7.0758, 7.0754, 7.075, 7.0747, 7.0745, 7.0741, 7.0737, 7.0733, 7.0729, 7.0728, 7.0738, 7.0737, 7.0748, 7.0745, 7.0746, 7.0744, 7.0742, 7.0742, 7.0738, 7.0726, 7.0723, 7.072, 7.0719, 7.0715, 7.0711, 7.0707, 7.0716, 7.0713, 7.0708, 7.0707, 7.0717, 7.0725, 7.0723, 7.072, 7.0705, 7.0701, 7.0712, 7.0709, 7.0707, 7.0716, 7.0713, 7.073, 7.0743, 7.0742, 7.0743, 7.074, 7.0736, 7.0735, 7.0734, 7.0732, 7.0729, 7.074, 7.0736, 7.0748, 7.0757, 7.0756, 7.0753, 7.0751, 7.076, 7.0758, 7.0767, 7.0767, 7.0777, 7.0774, 7.0771, 7.0769, 7.0767, 7.0765, 7.0762, 7.0759, 7.0757, 7.0756, 7.0765, 7.0762, 7.0761, 7.0759, 7.0756, 7.0755, 7.0766, 7.0762, 7.0762, 7.0759, 7.0756, 7.0754, 7.075, 7.0759, 7.0757, 7.0745, 7.0741, 7.0737, 7.0733, 7.073, 7.0729, 7.0726, 7.0722, 7.0722, 7.0718, 7.0714, 7.071, 7.0706, 7.0702, 7.0698, 7.0697, 7.0706, 7.0716, 7.0726, 7.0724, 7.072, 7.0717, 7.0726, 7.0722, 7.0733, 7.0731, 7.0729, 7.0729, 7.0738, 7.0735, 7.0732, 7.073, 7.0727, 7.0724, 7.0732, 7.0729, 7.0726, 7.0722, 7.072, 7.0718, 7.0715, 7.0712, 7.071, 7.0707, 7.0704, 7.0702, 7.0698, 7.0694, 7.0697, 7.0694, 7.0715, 7.0716, 7.0713, 7.0715, 7.0715, 7.0711, 7.0719, 7.0715, 7.0711, 7.0707, 7.0693, 7.0689, 7.0687, 7.0684, 7.068, 7.0666, 7.0664, 7.066, 7.0682, 7.0679, 7.0675, 7.0675, 7.0679, 7.0688, 7.0687, 7.0698, 7.0697, 7.0694, 7.0703, 7.0701, 7.0712, 7.0709, 7.0718, 7.0716, 7.0713, 7.0711, 7.0707, 7.0716, 7.0714, 7.0711, 7.0723, 7.0719, 7.0718, 7.0715, 7.0712, 7.0708, 7.0711, 7.071, 7.0707, 7.0705, 7.0704, 7.0701, 7.0697, 7.0706, 7.0703, 7.0701, 7.0702, 7.07, 7.0699, 7.0697, 7.0685, 7.0686, 7.0683, 7.068, 7.0677, 7.0674, 7.0687, 7.069, 7.0687, 7.0677, 7.0674, 7.0691, 7.0695, 7.0691, 7.0687, 7.0684, 7.0695, 7.0691, 7.0689, 7.0699, 7.0696, 7.0705, 7.0702, 7.071, 7.0696, 7.0692, 7.069, 7.0698, 7.0694, 7.0692, 7.0691, 7.0688, 7.0697, 7.0706, 7.0716, 7.0714, 7.0713, 7.071, 7.0745, 7.0741, 7.0751, 7.0747, 7.0735, 7.0745, 7.0732, 7.073, 7.0727, 7.0724, 7.0711, 7.0698, 7.0687, 7.0687, 7.0683, 7.0693, 7.0703, 7.0702, 7.0711, 7.0709, 7.0707, 7.0705, 7.0702, 7.0702, 7.071, 7.0719, 7.0741, 7.0739, 7.0737, 7.0733, 7.0729, 7.0718, 7.0705, 7.0693, 7.069, 7.0686, 7.0682, 7.0678, 7.0674, 7.0674, 7.0674, 7.0672, 7.067, 7.0667, 7.0664, 7.065, 7.0658, 7.0666, 7.0662, 7.0672, 7.0669, 7.0667, 7.0666, 7.0663, 7.0662, 7.0661, 7.0669, 7.0667, 7.0653, 7.0651, 7.0651, 7.0667, 7.0664, 7.0661, 7.0665, 7.0662, 7.066, 7.0646, 7.0634, 7.0631, 7.0628, 7.0626, 7.0627, 7.0623, 7.0622, 7.0623, 7.0621, 7.0617, 7.0614, 7.0612, 7.0608, 7.0606, 7.0615, 7.0614, 7.061, 7.0606, 7.0604, 7.06, 7.0598, 7.0599, 7.0597, 7.0594, 7.0593, 7.0593, 7.0591, 7.0577, 7.0576, 7.0586, 7.0586, 7.0583, 7.0593, 7.0592, 7.0592, 7.0592, 7.058, 7.0578, 7.058, 7.0578, 7.0578, 7.0577, 7.0586, 7.0575, 7.0563, 7.0562, 7.0562, 7.0573, 7.0572, 7.0559, 7.057, 7.0567, 7.0565, 7.0576, 7.0574, 7.0571, 7.0567, 7.0565, 7.0554, 7.0551, 7.0547, 7.0545, 7.0544, 7.0548, 7.0548, 7.057, 7.0579, 7.0576, 7.0585, 7.0581, 7.0578, 7.0577, 7.0586, 7.0598, 7.0594, 7.0604, 7.0613, 7.0609, 7.0609, 7.0606, 7.0606, 7.0604, 7.0614, 7.0624, 7.0632, 7.0642, 7.064, 7.0627, 7.0627, 7.0626, 7.0623, 7.0632, 7.0642, 7.0639, 7.0639, 7.0638, 7.0634, 7.0632, 7.063, 7.064, 7.0649, 7.0657, 7.0653, 7.0649, 7.0647, 7.0645, 7.0643, 7.0639, 7.0637, 7.0636, 7.0645, 7.0642, 7.064, 7.0638, 7.0647, 7.0645, 7.0642, 7.0638, 7.0648, 7.0644, 7.0642, 7.0639, 7.0638, 7.0635, 7.0633, 7.0631, 7.0628, 7.0637, 7.0645, 7.0643, 7.0641, 7.0638, 7.0636, 7.0634, 7.062, 7.0628, 7.0626, 7.0622, 7.0619, 7.0616, 7.0614, 7.0613, 7.061, 7.061, 7.0607, 7.0613, 7.0612, 7.0608, 7.0606, 7.0606, 7.0603, 7.0612, 7.0611, 7.0608, 7.0606, 7.0605, 7.0592, 7.0591, 7.0596, 7.0592, 7.0589, 7.0577, 7.0574, 7.0571, 7.0567, 7.0559, 7.0555, 7.0555, 7.0552, 7.055, 7.0547, 7.0544, 7.0541, 7.0538, 7.0537, 7.0535, 7.0534, 7.0544, 7.0541, 7.0537, 7.0534, 7.0549, 7.0546, 7.0535, 7.0531, 7.0528, 7.0525, 7.0523, 7.0533, 7.0531, 7.053, 7.0517, 7.0521, 7.0518, 7.0515, 7.0519, 7.0516, 7.0514, 7.0513, 7.0511, 7.0507, 7.0506, 7.0513, 7.051, 7.052, 7.0517, 7.0514, 7.0511, 7.0519, 7.0516, 7.0514, 7.0511, 7.0508, 7.0496, 7.0493, 7.049, 7.0489, 7.0487, 7.0485, 7.0494, 7.050400000000001, 7.0514, 7.053, 7.0538, 7.0547, 7.0545, 7.0546, 7.0545, 7.0532, 7.0529, 7.0538, 7.0536, 7.0534, 7.0532, 7.0529, 7.0527, 7.0524, 7.0537, 7.0537, 7.0535, 7.0544, 7.0541, 7.0538, 7.0535, 7.0545, 7.0541, 7.0537, 7.0535, 7.0532, 7.0557, 7.0555, 7.0552, 7.055, 7.0546, 7.0544, 7.0542, 7.0538, 7.0547, 7.0544, 7.0543, 7.0551, 7.0559, 7.0556, 7.0546, 7.0544, 7.0542, 7.0541, 7.0527, 7.0525, 7.0523, 7.052, 7.0517, 7.0515, 7.0513, 7.051, 7.052, 7.0517, 7.052700000000001, 7.0524, 7.0532, 7.0529, 7.0527, 7.0526, 7.0524, 7.0521, 7.0518, 7.0516, 7.0513, 7.0511, 7.052, 7.0517, 7.0513, 7.0509, 7.0507, 7.0504, 7.05, 7.0508, 7.0506, 7.0516000000000005, 7.0513, 7.051, 7.0507, 7.0517, 7.052700000000001, 7.053700000000001, 7.0534, 7.0531, 7.0528, 7.0524, 7.0532, 7.0531, 7.0527, 7.0525, 7.0521, 7.053, 7.053, 7.0527, 7.0524, 7.0521, 7.0518, 7.0515, 7.0511, 7.0511, 7.0507, 7.0504, 7.0501, 7.0488, 7.0485, 7.0482, 7.048, 7.0489, 7.0476, 7.0473, 7.0473, 7.0487, 7.0496, 7.0494, 7.0493, 7.0501, 7.0499, 7.0498, 7.0496, 7.0493, 7.049, 7.0486, 7.0474, 7.047, 7.0469, 7.0498, 7.0497, 7.0495, 7.0504, 7.051, 7.0507, 7.0506, 7.0493, 7.049, 7.0488, 7.0486, 7.0475, 7.0473, 7.0471, 7.0459, 7.0458, 7.0466, 7.0464, 7.0474000000000006, 7.048400000000001, 7.0494, 7.0491, 7.0487, 7.0485, 7.0494, 7.0493, 7.0492, 7.0491, 7.048, 7.0478, 7.0488, 7.0498, 7.0495, 7.0506, 7.0505, 7.0514, 7.0512, 7.0509, 7.0506, 7.0504, 7.0504, 7.0502, 7.0499, 7.0507, 7.0504, 7.0501, 7.0497, 7.0494, 7.0492, 7.0499, 7.0496, 7.0505, 7.0525, 7.0525, 7.0521, 7.0518, 7.0515, 7.0503, 7.05, 7.0501, 7.0501, 7.0498, 7.0496, 7.0493, 7.049, 7.0488, 7.0485, 7.0495, 7.0505, 7.051500000000001, 7.0513, 7.0511, 7.051, 7.0508, 7.0518, 7.0517, 7.0515, 7.0523, 7.0525, 7.0523, 7.0525, 7.0514, 7.0503, 7.0491, 7.0489, 7.0478, 7.0476, 7.0473, 7.0473, 7.0462, 7.0458, 7.0456, 7.0454, 7.0462, 7.046, 7.0459, 7.0456, 7.0443, 7.0442, 7.045, 7.0449, 7.0449, 7.0458, 7.0468, 7.0457, 7.0454, 7.0452, 7.0451, 7.0461, 7.0486, 7.049600000000001, 7.0495, 7.0492, 7.0481, 7.0478, 7.0475, 7.0472, 7.0482000000000005, 7.049200000000001, 7.0502, 7.0502, 7.0502, 7.0502, 7.05, 7.0497, 7.0494, 7.0494, 7.0504, 7.0512, 7.052, 7.0518, 7.0516, 7.0526, 7.0525, 7.0535000000000005, 7.0535, 7.0533, 7.0541, 7.0548, 7.056, 7.0558, 7.0555, 7.0553, 7.0562, 7.0558, 7.0573, 7.0571, 7.058, 7.0578, 7.0576, 7.0574, 7.0574, 7.057, 7.0577, 7.0574, 7.0563, 7.0562, 7.055, 7.0548, 7.0546, 7.0546, 7.0544, 7.0545, 7.0543, 7.0531, 7.0519, 7.0516, 7.0516, 7.0514, 7.0512, 7.0511, 7.0521, 7.053100000000001, 7.053, 7.0538, 7.0536, 7.0534, 7.0532, 7.0541, 7.0542, 7.0563, 7.0571, 7.0569, 7.0556, 7.0554, 7.0553, 7.0552, 7.055, 7.0548, 7.0555, 7.0554, 7.0555, 7.0555, 7.0564, 7.0594, 7.0583, 7.0579, 7.0575, 7.0573, 7.0572, 7.0569, 7.0559, 7.0585, 7.0583, 7.058, 7.0578, 7.0575, 7.0573, 7.0572, 7.057, 7.0559, 7.0558, 7.0556, 7.0565, 7.0564, 7.0562, 7.0559, 7.0557, 7.0554, 7.0553, 7.0562, 7.0572, 7.0581, 7.059, 7.0591, 7.0588, 7.0587, 7.0574, 7.0572, 7.0581, 7.0621, 7.0619, 7.0618, 7.0616, 7.0624, 7.0621, 7.0621, 7.063, 7.0637, 7.0634, 7.0633, 7.0632, 7.063, 7.0639, 7.0638, 7.0635, 7.0635, 7.0633, 7.063, 7.0629, 7.0637, 7.0656, 7.0654, 7.0651, 7.0674, 7.0682, 7.068, 7.0678, 7.0676, 7.0675, 7.0673, 7.0674, 7.0671, 7.0668, 7.0676, 7.0674, 7.0671, 7.0669, 7.0656, 7.0655, 7.0652, 7.066, 7.0657, 7.0658, 7.066, 7.0665, 7.0663, 7.066, 7.0657, 7.0655, 7.0653, 7.065, 7.0648, 7.0646, 7.0643, 7.065, 7.0647, 7.0645, 7.0642, 7.0649, 7.0662, 7.0652, 7.0672, 7.0671, 7.0669, 7.0669, 7.0667, 7.0654, 7.0642, 7.065, 7.0647, 7.0646, 7.0654, 7.0652, 7.0652, 7.065, 7.0647, 7.0645, 7.0642, 7.0649, 7.0647, 7.0646, 7.0643, 7.0643, 7.0641, 7.064, 7.0637, 7.0635, 7.0633, 7.063, 7.0628, 7.0646, 7.0643, 7.066, 7.0657, 7.0656, 7.0646, 7.0654, 7.0651, 7.0652, 7.0649, 7.0646, 7.0644, 7.0641, 7.0639, 7.0636, 7.0634, 7.0624, 7.0623, 7.062, 7.0617, 7.0627, 7.063700000000001, 7.0659, 7.0657, 7.0665, 7.0663, 7.0672, 7.0669, 7.0666, 7.0676, 7.0674, 7.0663, 7.0671, 7.0668, 7.0665, 7.0662, 7.0659, 7.0658, 7.0655, 7.0652, 7.0651, 7.066, 7.0659, 7.0668, 7.0667, 7.0664, 7.0653, 7.0661, 7.0662, 7.066, 7.0657, 7.0655, 7.0665000000000004, 7.0662, 7.066, 7.0659, 7.0658, 7.0656, 7.0654, 7.0652, 7.065, 7.0648, 7.0646, 7.0644, 7.0641, 7.0629, 7.0627, 7.0625, 7.0623, 7.0622, 7.062, 7.0629, 7.0627, 7.0616, 7.0614, 7.0623, 7.062, 7.0617, 7.0614, 7.0621, 7.0618, 7.0616, 7.0614, 7.0622, 7.063, 7.0638, 7.0645, 7.0642, 7.065, 7.0647, 7.0644, 7.0642, 7.0639, 7.0636, 7.0633, 7.0631, 7.0629, 7.0626, 7.0625, 7.0625, 7.0623, 7.062, 7.0619, 7.0607, 7.0614, 7.0612, 7.0619, 7.0619, 7.0608, 7.0606, 7.0603, 7.06, 7.061, 7.062, 7.0642, 7.0652, 7.065, 7.0657, 7.0667, 7.0664, 7.0661, 7.0671, 7.0668, 7.0666, 7.0668, 7.0677, 7.0674, 7.0671, 7.0668, 7.0666, 7.0673, 7.0671, 7.0669, 7.0666, 7.0676000000000005, 7.068600000000001, 7.069600000000001, 7.0693, 7.0702, 7.0699, 7.0696, 7.0693, 7.0693, 7.069, 7.0687, 7.0686, 7.0694, 7.0683, 7.0681, 7.068, 7.0678, 7.0676, 7.0674, 7.0671, 7.0681, 7.0684, 7.0681, 7.0678, 7.0675, 7.0672, 7.0669, 7.0666, 7.0665, 7.0662, 7.0661, 7.066, 7.0657, 7.0654, 7.0669, 7.0666, 7.0664, 7.0661, 7.0658, 7.0655, 7.0654, 7.0653, 7.065, 7.0658, 7.066800000000001, 7.0665, 7.0675, 7.0685, 7.0684, 7.0684, 7.0681, 7.0678, 7.0676, 7.0686, 7.0683, 7.0693, 7.07, 7.0699, 7.0696, 7.0692, 7.0699, 7.0706, 7.0704, 7.0704, 7.0701, 7.0711, 7.0703, 7.0713, 7.0711, 7.0709, 7.0718, 7.0717, 7.0715, 7.072500000000001, 7.073500000000001, 7.0769, 7.0768, 7.0766, 7.0764, 7.0763, 7.0771, 7.077, 7.0767, 7.0764, 7.0761, 7.0759, 7.0757, 7.0755, 7.0753, 7.075, 7.0748, 7.0756, 7.0764, 7.0762, 7.076, 7.0757, 7.0754, 7.0771, 7.0769, 7.077, 7.0768, 7.0765, 7.0772, 7.0769, 7.0768, 7.0777, 7.0776, 7.0773, 7.077, 7.0767, 7.0764, 7.0762, 7.0759, 7.0757, 7.0756, 7.0766, 7.0764, 7.0761, 7.0761, 7.0758, 7.0766, 7.0764, 7.0762, 7.0761, 7.0749, 7.0746, 7.0745, 7.0742, 7.075, 7.0748, 7.0747, 7.0744, 7.0741, 7.0749, 7.0749, 7.0758, 7.0756, 7.0753, 7.075, 7.0757, 7.0755, 7.0754, 7.0751, 7.0751, 7.0749, 7.0748, 7.0738, 7.0746, 7.0745, 7.0744, 7.0754, 7.0752, 7.075, 7.0758, 7.0755, 7.0762, 7.076, 7.0758, 7.0755, 7.0752, 7.075, 7.0748, 7.0746, 7.0753, 7.0753, 7.0772, 7.078, 7.0779, 7.078, 7.0778, 7.0785, 7.0782, 7.0784, 7.0781, 7.0781, 7.0782, 7.083, 7.0829, 7.0838, 7.0835, 7.0832, 7.083, 7.0827, 7.0825, 7.0823, 7.0821, 7.082, 7.0818, 7.0825, 7.0824, 7.0821, 7.082, 7.0818, 7.0817, 7.0824, 7.0823, 7.0821, 7.082, 7.082, 7.0819, 7.0817, 7.0816, 7.0816, 7.0824, 7.0831, 7.0828, 7.0836, 7.0844, 7.0841, 7.0849, 7.0857, 7.0857, 7.0854, 7.0851, 7.0858, 7.0855, 7.0852, 7.0851, 7.085, 7.0849, 7.0847, 7.0854, 7.0861, 7.0859, 7.0856, 7.0854, 7.0853, 7.0842, 7.084, 7.0838, 7.0835, 7.0833, 7.0831, 7.0828, 7.0828, 7.0826, 7.0833, 7.0831, 7.0838, 7.0852, 7.085, 7.0847, 7.0844, 7.0841, 7.0838, 7.0836, 7.0834, 7.0831, 7.0839, 7.0838, 7.0835, 7.0834, 7.0851, 7.0851, 7.0849, 7.0847, 7.0845, 7.0843, 7.0842, 7.084, 7.0843, 7.0841, 7.0847, 7.0844, 7.0841, 7.0839, 7.0836, 7.0835, 7.0833, 7.0832, 7.084, 7.0838, 7.0836, 7.0837, 7.0834, 7.0842, 7.085, 7.0849, 7.0857, 7.0865, 7.0863, 7.0861, 7.0859, 7.0856, 7.0855, 7.0853, 7.0861, 7.0858, 7.0859, 7.0858, 7.0856, 7.0853, 7.0852, 7.085, 7.0847, 7.0845, 7.0842, 7.0852, 7.085, 7.0851, 7.0849, 7.0848, 7.0856, 7.0848, 7.0856, 7.0864, 7.0862, 7.0859, 7.0858, 7.0855, 7.0854, 7.0853, 7.0863, 7.0862, 7.0869, 7.0866, 7.0873, 7.088, 7.0879, 7.0877, 7.0885, 7.0882, 7.088, 7.0877, 7.0875, 7.0874, 7.0871, 7.0868, 7.0876, 7.0875, 7.0872, 7.0882, 7.0872, 7.0869, 7.0866, 7.0865, 7.0863, 7.086, 7.0859, 7.0866, 7.0864, 7.0863, 7.0871, 7.0868, 7.0859, 7.0867, 7.0864, 7.0862, 7.086, 7.0859, 7.0866, 7.0874, 7.0889, 7.0887, 7.0891, 7.0891, 7.0883, 7.0883, 7.0882, 7.089, 7.0889, 7.0887, 7.0886, 7.0885, 7.0883, 7.088, 7.0878, 7.0875, 7.0873, 7.0872, 7.087, 7.0867, 7.0856, 7.0854, 7.0851, 7.0848, 7.0846, 7.0845, 7.0843, 7.0841, 7.083, 7.083, 7.0827, 7.0848, 7.0848, 7.0845, 7.0843, 7.0849, 7.0853, 7.0863000000000005, 7.0861, 7.0858, 7.0856, 7.0854, 7.0851, 7.084, 7.085, 7.086, 7.087000000000001, 7.0869, 7.0868, 7.0865, 7.0865, 7.0873, 7.0873, 7.0871, 7.0868, 7.0866, 7.0863, 7.086, 7.0858, 7.0855, 7.0853, 7.0853, 7.085, 7.0847, 7.0845, 7.0843, 7.084, 7.0837, 7.0835, 7.0834, 7.0823, 7.0821, 7.0821, 7.0818, 7.0815, 7.0834, 7.0832, 7.083, 7.0827, 7.0824, 7.0821, 7.0818, 7.0815, 7.0814, 7.0811, 7.0808, 7.0802, 7.0791, 7.078, 7.0777, 7.0777, 7.0785, 7.0782, 7.0781, 7.0778, 7.0788, 7.0785, 7.0795, 7.0801, 7.0809, 7.0806, 7.0803, 7.0803, 7.0802, 7.0799, 7.080900000000001, 7.0807, 7.0804, 7.0802, 7.0809, 7.0806, 7.0805, 7.0803, 7.0793, 7.0792, 7.0798, 7.0796, 7.0804, 7.0801, 7.0798, 7.0795, 7.080500000000001, 7.0804, 7.0801, 7.08, 7.0798, 7.0797, 7.0794, 7.0804, 7.0802, 7.0799, 7.0796, 7.0803, 7.0829, 7.0826, 7.0824, 7.0834, 7.0831, 7.0838, 7.0836, 7.0838, 7.0844, 7.0842, 7.084, 7.0837, 7.0834, 7.0832, 7.0842, 7.084, 7.0837, 7.0835, 7.0832, 7.0829, 7.0828, 7.0825, 7.0824, 7.083, 7.0827, 7.0824, 7.0821, 7.0819, 7.0826, 7.0825, 7.0816, 7.0813, 7.082, 7.0818, 7.0816, 7.0823, 7.0821, 7.0831, 7.0841, 7.085100000000001, 7.085, 7.0849, 7.0856, 7.0872, 7.087, 7.0859, 7.0858, 7.0849, 7.0848, 7.0845, 7.0852, 7.085, 7.0848, 7.0846, 7.0853, 7.0861, 7.0859, 7.0866, 7.0863, 7.0862, 7.0859, 7.0865, 7.0854, 7.0851, 7.0851, 7.0849, 7.0848, 7.0846, 7.0845, 7.0843, 7.0853, 7.0851, 7.0848, 7.0846, 7.0843, 7.0849, 7.0856, 7.0855, 7.086, 7.0857, 7.0856, 7.0863, 7.087, 7.0867, 7.0866, 7.0864, 7.0861, 7.0859, 7.0857, 7.0867, 7.0874, 7.0871, 7.0869, 7.087, 7.0868, 7.0866, 7.0876, 7.0886000000000005, 7.089600000000001, 7.0888, 7.0887, 7.0886, 7.0884, 7.0882, 7.088, 7.0886, 7.0883, 7.088, 7.0877, 7.0874, 7.0872, 7.087, 7.0867, 7.0866, 7.0876, 7.0874, 7.0872, 7.0869, 7.0867, 7.0864, 7.0862, 7.086, 7.0863, 7.0853, 7.0843, 7.0842, 7.084, 7.0838, 7.0836, 7.0833, 7.0831, 7.0829, 7.0836, 7.0825, 7.0823, 7.0821, 7.0818, 7.0815, 7.0812, 7.0811, 7.081, 7.0808, 7.0805, 7.0803, 7.0801, 7.0807, 7.0807, 7.0814, 7.0812, 7.081, 7.0808, 7.0807, 7.0814, 7.0812, 7.0801, 7.08, 7.0799, 7.0796, 7.0794, 7.0791, 7.0789, 7.0779, 7.0785, 7.0785, 7.0791, 7.0798, 7.0805, 7.0803, 7.0792, 7.0789, 7.0786, 7.0784, 7.0791, 7.0789, 7.0787, 7.0784, 7.079400000000001, 7.0792, 7.0802000000000005, 7.0801, 7.0809, 7.0809, 7.0807, 7.0806, 7.0814, 7.0813, 7.0814, 7.0804, 7.0803, 7.0803, 7.0802, 7.08, 7.0799, 7.0801, 7.0799, 7.0806, 7.0805, 7.0805, 7.0813, 7.0811, 7.081, 7.0818, 7.0816, 7.0814, 7.0814, 7.0822, 7.0823, 7.0821, 7.0819, 7.0818, 7.0826, 7.0824, 7.0823, 7.0821, 7.0829, 7.0819, 7.0829, 7.083900000000001, 7.084900000000001, 7.085900000000001, 7.0857, 7.0857, 7.0865, 7.0863, 7.086, 7.0868, 7.0867, 7.0866, 7.0866, 7.0864, 7.0862, 7.0859, 7.0866, 7.0876, 7.0886000000000005, 7.0877, 7.0875, 7.0872, 7.0869, 7.0869, 7.0866, 7.0863, 7.0861, 7.0859, 7.0869, 7.0867, 7.0858, 7.0866, 7.0865, 7.0863, 7.0871, 7.0868, 7.0867, 7.0875, 7.0865, 7.0872, 7.0879, 7.0877, 7.0875, 7.0883, 7.0881, 7.0881, 7.0878, 7.0875, 7.0874, 7.0873, 7.0873, 7.0871, 7.086, 7.0859, 7.0866, 7.0865, 7.0864, 7.0863, 7.086, 7.086, 7.0859, 7.0856, 7.0853, 7.086, 7.0858, 7.0857, 7.0866, 7.0856, 7.0858, 7.0856, 7.0863, 7.0863, 7.0861, 7.086, 7.0866, 7.0864, 7.0872, 7.0863, 7.0861, 7.086, 7.087000000000001, 7.0877, 7.0887, 7.089700000000001, 7.0895, 7.0903, 7.0901, 7.0899, 7.0897, 7.0894, 7.0892, 7.0892, 7.0882, 7.0881, 7.088, 7.0878, 7.0876, 7.0874, 7.0872, 7.088, 7.0877, 7.0875, 7.0873, 7.0871, 7.0877, 7.0874, 7.0872, 7.087, 7.0872, 7.087, 7.087, 7.0877, 7.0875, 7.0872, 7.0861, 7.0858, 7.0855, 7.0895, 7.0892, 7.089, 7.0889, 7.0886, 7.0896, 7.0895, 7.0892, 7.089, 7.0887, 7.0886, 7.0883, 7.088, 7.0877, 7.0875, 7.0881, 7.0887, 7.09, 7.0898, 7.0896, 7.0894, 7.090400000000001, 7.0911, 7.091, 7.0908, 7.0905, 7.0912, 7.0918, 7.0919, 7.0925, 7.0922, 7.092, 7.0918, 7.0915, 7.0914, 7.0911, 7.091, 7.0907, 7.0904, 7.091, 7.0916, 7.0915, 7.0913, 7.0911, 7.0918, 7.0926, 7.0926, 7.0933, 7.0943000000000005, 7.0959, 7.0957, 7.0946, 7.0952, 7.0951, 7.0966, 7.0963, 7.096, 7.0957, 7.0964, 7.097, 7.0968, 7.0966, 7.0973, 7.0973, 7.098, 7.0979, 7.0978, 7.0985, 7.0982, 7.0979, 7.098, 7.0978, 7.0977, 7.0976, 7.0974, 7.0972, 7.0969, 7.0968, 7.0968, 7.0966, 7.0964, 7.0972, 7.097, 7.098000000000001, 7.0977, 7.0975, 7.0975, 7.0973, 7.0982, 7.0981, 7.0978, 7.0976, 7.0974, 7.0974, 7.0972, 7.097, 7.0968, 7.0966, 7.0958, 7.0955, 7.0964, 7.0954, 7.0962, 7.0962, 7.0959, 7.0966, 7.0972, 7.0973, 7.0972, 7.0979, 7.0987, 7.0985, 7.0991, 7.0989, 7.0987, 7.0987, 7.0985, 7.0985, 7.0983, 7.0982, 7.0988, 7.0985, 7.0983, 7.0982, 7.0981, 7.098, 7.0981, 7.0987, 7.0993, 7.099, 7.0988, 7.0987, 7.0985, 7.0984, 7.0981, 7.098, 7.0986, 7.0992, 7.099, 7.0981, 7.0972, 7.0969, 7.0979, 7.0978, 7.0978, 7.0977, 7.0977, 7.098, 7.0978, 7.0977, 7.0974, 7.0974, 7.0973, 7.0971, 7.0969, 7.0969, 7.0967, 7.0966, 7.0976, 7.0986, 7.0984, 7.0982, 7.0981, 7.0972, 7.097, 7.0976, 7.0976, 7.0974, 7.0973, 7.097, 7.0967, 7.0973, 7.0973, 7.0971, 7.0969, 7.097, 7.0976, 7.0974, 7.0972, 7.0969, 7.0976, 7.0975, 7.0985000000000005, 7.1001, 7.0999, 7.0996, 7.0994, 7.0993, 7.0993, 7.0983, 7.098, 7.0978, 7.0977, 7.0988, 7.1, 7.0998, 7.0996, 7.0995, 7.0994, 7.0992, 7.0989, 7.099900000000001, 7.0998, 7.0995, 7.1024, 7.1055, 7.1061, 7.1061, 7.1058, 7.1057, 7.1047, 7.1045, 7.1042, 7.104, 7.1039, 7.1037, 7.1035, 7.1041, 7.1039, 7.1037, 7.1043, 7.1041, 7.1038, 7.1036, 7.1026, 7.1033, 7.104, 7.1047, 7.1045, 7.1043, 7.1041, 7.104, 7.1038, 7.1036, 7.1034, 7.1032, 7.1031, 7.103, 7.1036, 7.1034, 7.1031, 7.1028, 7.1035, 7.1032, 7.1038, 7.1035, 7.1066, 7.1064, 7.1064, 7.107, 7.1068, 7.1067, 7.1066, 7.1064, 7.1063, 7.1061, 7.1054, 7.1051, 7.1051, 7.1058, 7.1056, 7.1054, 7.106, 7.1058, 7.106, 7.1081, 7.1078, 7.1084, 7.1082, 7.1081, 7.1087, 7.1085, 7.1082, 7.1108, 7.1105, 7.1103, 7.1101, 7.1098, 7.1096, 7.1102, 7.1101, 7.1107, 7.1106, 7.1129, 7.1126, 7.1124, 7.1122, 7.1128, 7.1126, 7.1123, 7.112, 7.1117, 7.1114, 7.1111, 7.1109, 7.1115, 7.1121, 7.1129, 7.1128, 7.1126, 7.1132, 7.1122, 7.112, 7.112, 7.1118, 7.1126, 7.1126, 7.1116, 7.1106, 7.1105, 7.1116, 7.1114, 7.1113, 7.1119, 7.1118, 7.1118, 7.1117, 7.1115, 7.1112, 7.111, 7.1111, 7.1117, 7.1107, 7.1104, 7.1101, 7.1108, 7.1106, 7.1113, 7.1111, 7.1109, 7.1107, 7.1106, 7.1105, 7.1103, 7.111, 7.1108, 7.1106, 7.1104, 7.1102, 7.11, 7.1099, 7.1097, 7.1104, 7.1101, 7.1114, 7.1112, 7.1111, 7.111, 7.111, 7.1108, 7.1106, 7.1104, 7.1094, 7.1093, 7.1091, 7.1088, 7.1086, 7.1084, 7.1083, 7.108, 7.1084, 7.1089, 7.1086, 7.1076, 7.1074, 7.1072, 7.1069, 7.1076, 7.1068, 7.1074, 7.1076, 7.1069, 7.1074, 7.1073, 7.1073, 7.1064, 7.1062, 7.1054, 7.1053, 7.1051, 7.105, 7.1059, 7.1057, 7.1054, 7.1053, 7.1052, 7.1051, 7.105, 7.1047, 7.1045, 7.1043, 7.1041, 7.1039, 7.1038, 7.1036, 7.1037, 7.1036, 7.1042, 7.104, 7.1046, 7.1052, 7.1058, 7.1056, 7.1055, 7.1053, 7.1052, 7.1052, 7.1049, 7.1047, 7.1054, 7.1052, 7.1052, 7.105, 7.1056, 7.1054, 7.1053, 7.1052, 7.1049, 7.1055, 7.1055, 7.1062, 7.1061, 7.1068, 7.1066, 7.1064, 7.1061, 7.106, 7.1058, 7.1055, 7.1053, 7.1052, 7.1049, 7.1047, 7.1072, 7.108, 7.1078, 7.1076, 7.1075, 7.1073, 7.107, 7.1068, 7.1067, 7.1065, 7.1063, 7.106, 7.1058, 7.1055, 7.1053, 7.1051, 7.1057, 7.1056, 7.1054, 7.1052, 7.1049, 7.1055, 7.1054, 7.1051, 7.1051, 7.1048, 7.1045, 7.1042, 7.1041, 7.1039, 7.1045, 7.1051, 7.1049, 7.1047, 7.1045, 7.1051, 7.1057, 7.1063, 7.1063, 7.1069, 7.1075, 7.1074, 7.1073, 7.1071, 7.1068, 7.1066, 7.1072, 7.1069, 7.1066, 7.1063, 7.1062, 7.106, 7.1058, 7.1064, 7.1061, 7.1067, 7.1065, 7.1064, 7.1065, 7.1063, 7.106, 7.1057, 7.1057, 7.1062, 7.106, 7.1066, 7.1065, 7.1063, 7.1061, 7.1059, 7.1057, 7.1063, 7.1061, 7.1067, 7.1064, 7.1063, 7.1061, 7.1059, 7.1059, 7.1057, 7.1056, 7.1054, 7.106, 7.1075, 7.1074, 7.1072, 7.1078, 7.1075, 7.1073, 7.1073, 7.1071, 7.1069, 7.1075, 7.1073, 7.1071, 7.1068, 7.1074, 7.1073, 7.1071, 7.1069, 7.1068, 7.1066, 7.1063, 7.1061, 7.1068, 7.1066, 7.1067, 7.1068, 7.1075, 7.1073, 7.1072, 7.1078, 7.1075, 7.1081, 7.1079, 7.1078, 7.1076, 7.1074, 7.1081, 7.1088, 7.1088, 7.1088, 7.1086, 7.1084, 7.1082, 7.1079, 7.1081, 7.108, 7.1077, 7.1076, 7.1074, 7.1072, 7.107, 7.1076, 7.1073, 7.1072, 7.107, 7.1069, 7.1066, 7.1073, 7.1071, 7.1077, 7.1076, 7.1075, 7.1074, 7.1073, 7.1074, 7.1072, 7.1078, 7.1075, 7.1072, 7.107, 7.1068, 7.1066, 7.1063, 7.1053, 7.1051, 7.1049, 7.1056, 7.1054, 7.1059, 7.1065, 7.1065, 7.1064, 7.1061, 7.1059, 7.1065, 7.1063, 7.1069, 7.1069, 7.1067, 7.1064, 7.1062, 7.106, 7.1058, 7.1057, 7.1055, 7.1054, 7.1051, 7.1049, 7.1048, 7.1046, 7.1044, 7.1043, 7.1049, 7.1046, 7.1044, 7.1043, 7.104, 7.1037, 7.1035, 7.1032, 7.103, 7.1029, 7.1026, 7.1024, 7.1022, 7.1019, 7.1017, 7.1014, 7.1013, 7.1011, 7.1008, 7.1006, 7.1006, 7.1003, 7.1008, 7.1006, 7.1012, 7.101, 7.1008, 7.1006, 7.1012, 7.101, 7.1016, 7.1014, 7.1012, 7.1018, 7.1015, 7.1013, 7.1019, 7.1025, 7.1023, 7.1021, 7.1018, 7.1016, 7.1021, 7.1018, 7.1017, 7.1039, 7.1036, 7.1041, 7.1039, 7.1037, 7.1035, 7.104, 7.1038, 7.1048, 7.1054, 7.1062, 7.1067, 7.1065, 7.1063, 7.1061, 7.1059, 7.1065, 7.1063, 7.1069, 7.1082, 7.108, 7.1078, 7.1076, 7.1082, 7.1088, 7.1086, 7.1091, 7.1089, 7.1094, 7.1092, 7.1089, 7.1103, 7.1101, 7.1098, 7.1096, 7.1093, 7.1092, 7.1091, 7.109, 7.1088, 7.1093, 7.1092, 7.1091, 7.1089, 7.1088, 7.1087, 7.1085, 7.1083, 7.1088, 7.1085, 7.1092, 7.109, 7.1081, 7.1078, 7.1076, 7.1075, 7.1081, 7.1081, 7.1078, 7.1076, 7.1073, 7.1071, 7.1072, 7.1077, 7.1075, 7.1073, 7.1072, 7.107, 7.1067, 7.1066, 7.1072, 7.1078, 7.1084, 7.1083, 7.1081, 7.1079, 7.1085, 7.1091, 7.1088, 7.1086, 7.1085, 7.1083, 7.1081, 7.1086, 7.1085, 7.1091, 7.1089, 7.1079, 7.1077, 7.1079, 7.1077, 7.1076, 7.1074, 7.108, 7.1077, 7.1074, 7.1073, 7.108, 7.1078, 7.1083, 7.1089, 7.1087, 7.1084, 7.1082, 7.108, 7.1072, 7.1071, 7.107, 7.1068, 7.1065, 7.1063, 7.1062, 7.1061, 7.1059, 7.1057, 7.1055, 7.1052, 7.1049, 7.1047, 7.1052, 7.1049, 7.1047, 7.1045, 7.1043, 7.1041, 7.1039, 7.1045, 7.1044, 7.105, 7.1048, 7.1046, 7.1044, 7.1042, 7.1048, 7.1046, 7.1043, 7.104, 7.1037, 7.1035, 7.1033, 7.1031, 7.1029, 7.1027, 7.1024, 7.1021, 7.1018, 7.1016, 7.1021, 7.1018, 7.1016, 7.1014, 7.1012, 7.1011, 7.101, 7.1009, 7.1007, 7.1005, 7.1003, 7.1001, 7.0999, 7.0996, 7.0995, 7.0992, 7.0991, 7.0989, 7.0987, 7.0985, 7.0984, 7.0983, 7.0981, 7.0979, 7.0977, 7.0975, 7.0981, 7.0987, 7.0985, 7.0984, 7.0983, 7.0989, 7.0995, 7.0993, 7.0991, 7.0991, 7.0989, 7.0988, 7.0979, 7.0977, 7.0976, 7.0982, 7.1003, 7.1, 7.0998, 7.0996, 7.0996, 7.0993, 7.0991, 7.0997, 7.1002, 7.1001, 7.1, 7.1005, 7.1003, 7.1001, 7.0999, 7.0997, 7.0994, 7.0993, 7.0992, 7.099, 7.0988, 7.0987, 7.0985, 7.0983, 7.0981, 7.0987, 7.0985, 7.0984, 7.0982, 7.0988, 7.0986, 7.0984, 7.0983, 7.098, 7.0978, 7.0976, 7.0975, 7.0972, 7.097, 7.0968, 7.0966, 7.0964, 7.0956, 7.0954, 7.0952, 7.095, 7.0948, 7.0946, 7.0945, 7.095, 7.0948, 7.0946, 7.0943, 7.0941, 7.0938, 7.0936, 7.0934, 7.0932, 7.0938, 7.0937, 7.0936, 7.0934, 7.0932, 7.0938]}
rtt3_3_7 = {'192.168.122.110': [5.2388, 5.4433, 7.0155, 6.5603, 5.4421, 5.3728, 11.641, 5.3391, 5.435, 10.9997, 11.8551, 11.5151, 6.9098, 12.0642, 6.7289, 5.3, 6.3479, 6.5086, 11.3838, 11.0455, 11.0993, 6.2485, 11.4717, 16.7754, 22.5713, 11.9507, 10.9334, 5.9247, 5.291, 5.7919, 5.4553, 27.4947, 7.3345, 6.4623, 11.1313, 1.2891, 10.7551, 5.4989, 9.2244, 5.4805, 6.2215, 6.995, 11.2319, 6.315, 5.6748, 12.167, 5.7757, 5.4562, 12.7389, 10.7751, 6.3694, 6.9602, 6.4433, 10.6719, 5.2528, 5.4719, 7.5023, 5.6083, 11.1244, 7.9732, 5.9314, 5.758, 6.3241, 5.533, 5.3136, 10.7737, 5.5437, 10.776, 16.7105, 11.2188, 10.6356, 5.5234, 13.2096, 16.3381, 6.65, 1.2813, 6.8445, 5.9819, 5.507, 5.5413, 6.9244, 5.5563, 5.5099, 7.6375, 11.4632, 5.3592, 5.568, 7.0393, 10.5255, 6.8815, 12.3241, 10.7372, 11.4446, 5.5606, 5.6145, 6.6857, 5.7464, 5.4443, 5.6829, 5.5797, 5.605, 7.4263, 5.1689, 6.3493, 5.6915, 5.6269, 5.687, 7.7257, 6.8002, 7.5409, 5.532, 6.0496, 5.9323, 10.9041, 5.8842, 6.2268, 5.4362, 5.3744, 5.6336, 6.9866, 16.722, 5.5046, 6.7134, 11.1098, 5.8563, 5.5442, 6.8204, 5.2915, 11.4224, 5.8286, 5.7628, 11.317, 1.2736, 6.2768, 6.8448, 1.6892, 16.2539, 6.8991, 16.1133, 6.0289, 6.1121, 5.2555, 6.7492, 11.4133, 6.366, 5.9338, 5.8491, 5.4648, 7.9665, 6.8212, 15.5544, 7.5064, 5.5168, 7.4508, 5.4104, 5.6021, 8.1027, 11.7114, 5.8684, 6.242, 6.2561, 5.6491, 6.9058, 5.3301, 6.8181, 5.6722, 11.1685, 5.6317, 5.7731, 6.8214, 6.6419, 7.5991, 5.4026, 5.46, 10.2775, 7.6773, 11.8058, 11.6754, 7.5047, 11.8182, 5.5923, 17.7414, 10.9208, 5.9214, 7.3168, 6.6833, 1.5635, 7.7052, 7.4069, 6.6664, 5.332, 6.1166, 6.4912, 5.6918, 5.4166, 5.6889, 16.4354, 8.0442, 6.2854, 5.3158, 6.3741, 7.232, 5.8339, 10.946, 5.8181, 5.393, 5.7056, 5.5215, 5.6686, 11.4727, 1.3468, 7.1745, 5.7955, 1.1344, 6.5761, 6.8412, 5.8, 16.1064, 11.3978, 1.5392, 5.692, 6.6266, 5.6398, 5.7635, 5.7881, 11.2145, 11.6069, 11.7283, 5.6911, 5.9001, 11.7183, 6.9132, 5.9931, 5.2867, 5.6686, 11.0338, 11.1926, 6.1214, 6.4697, 5.8239, 11.3006, 11.7447, 13.8435, 7.0646, 0.8659, 6.331, 6.1426, 5.4569, 6.0606, 5.7201, 7.8123, 27.7491, 5.5499, 5.4929, 11.2758, 5.8088, 16.8662, 5.5845, 5.5852, 5.641, 11.9231, 10.8507, 6.7849, 7.2117, 5.9392, 11.3227, 10.7687, 6.2244, 6.9361, 5.8966, 5.7125, 6.9833, 6.8352, 7.73, 12.1, 5.5454, 5.877, 6.8171, 5.4493, 9.0611, 6.0546, 7.0574, 5.924, 11.2667, 6.1433, 5.3072, 5.2378, 5.9721, 10.8292, 11.8794, 6.8305, 5.6813, 6.2511, 7.8499, 1.1349, 7.6141, 7.5495, 11.3928, 5.3337, 17.5736, 5.6877, 7.3726, 11.2448, 10.9897, 5.6207, 5.6415, 11.8029, 6.8145, 5.5368, 10.8728, 5.5785, 16.319, 10.854, 6.4788, 12.1739, 7.6673, 6.7666, 5.5509, 5.2369, 5.4691, 7.5696, 5.7557, 7.3295, 7.0021, 5.7807, 7.1948, 22.0563, 16.4232, 6.953, 1.6928, 5.6894, 6.8467, 5.538, 5.3163, 5.3232, 5.3945, 5.7094, 7.1735, 5.2273, 6.098, 10.6616, 5.4564, 6.8247, 12.2154, 11.9023, 6.4051, 1.2546, 1.0288, 11.1558, 5.2373, 11.3192, 5.6264, 34.7512, 5.6186, 25.5945, 6.1169, 7.9339, 6.7875, 10.9925, 5.482, 10.4346, 7.4272, 11.2958, 11.9202, 5.5809, 6.4466, 43.1428, 5.7905, 5.6512, 7.0233], '192.168.122.116': [10.8531, 10.7524, 5.8603, 5.8658, 11.117, 9.7995, 10.946, 6.5145, 6.2158, 5.9488, 6.428, 7.2966, 11.0748, 5.9793, 5.8794, 6.9299, 5.815, 22.6681, 5.409, 5.4555, 5.4536, 7.0446, 5.497, 6.6371, 5.6152, 13.1485, 6.5427, 11.7216, 6.0301, 6.5179, 5.2421, 6.3634, 5.8236, 6.5284, 6.3813, 0.7796, 10.6466, 6.9897, 10.7968, 11.3049, 6.6838, 5.6593, 6.0093, 17.7495, 5.9164, 11.8682, 5.5773, 10.7937, 6.3822, 6.4991, 6.7072, 7.2882, 5.5771, 16.7518, 6.0754, 5.3136, 6.5913, 6.7289, 13.335, 12.0616, 5.8103, 11.7335, 17.5676, 7.4, 6.4032, 10.8793, 5.5394, 10.9603, 11.5051, 7.0314, 6.1786, 7.0937, 10.8054, 6.0484, 6.1665, 1.1098, 16.6662, 6.4588, 5.2378, 11.4896, 5.7719, 5.7197, 5.4841, 7.2687, 11.1613, 7.2827, 5.61, 5.3577, 7.0069, 17.0069, 6.8214, 6.0971, 5.954, 12.5804, 6.2528, 5.6157, 11.9147, 5.6114, 11.2882, 5.8329, 6.2747, 7.7543, 5.3391, 5.7108, 5.687, 6.7191, 11.7009, 7.2224, 6.3448, 16.5536, 6.9652, 7.0856, 5.532, 5.739, 5.7409, 5.4905, 11.3535, 10.7496, 5.5814, 5.5854, 10.8371, 6.767, 5.718, 5.8806, 5.2378, 16.5951, 11.0376, 10.3681, 5.4321, 6.0196, 6.4216, 6.1307, 0.7277, 5.2412, 6.3543, 1.4486, 7.4322, 6.5835, 10.4589, 11.1015, 6.3281, 5.6665, 6.8502, 11.0362, 6.4027, 5.3899, 6.7627, 6.0954, 10.7143, 11.8392, 5.4801, 6.4619, 6.4137, 14.9539, 6.3059, 5.703, 7.0, 8.8913, 11.4446, 22.7025, 11.2927, 5.7812, 6.0675, 5.465, 21.0042, 5.4159, 6.6719, 6.5796, 6.6466, 6.1553, 6.2652, 5.5544, 6.4495, 6.0246, 11.6293, 11.1773, 11.6305, 5.7602, 13.2647, 5.8062, 5.7654, 5.7008, 11.5736, 5.888, 11.3292, 16.6125, 1.224, 6.3455, 5.5683, 5.6357, 6.0, 11.3668, 5.7201, 6.4778, 10.7505, 11.3924, 5.825, 18.1005, 10.8926, 7.0364, 5.4338, 11.7359, 5.8897, 5.9738, 7.6573, 10.6184, 22.1467, 5.4629, 11.0793, 11.6806, 0.9422, 6.5591, 6.5718, 0.7887, 5.7459, 6.3496, 5.4677, 5.9443, 6.434, 1.0395, 11.5511, 6.773, 5.8959, 7.3459, 5.3461, 6.5048, 6.1405, 12.4984, 11.2236, 6.9249, 5.6996, 6.6173, 6.4735, 6.5486, 5.681, 5.6291, 5.8482, 5.7743, 6.4833, 5.5287, 5.4355, 5.5614, 14.957, 5.9664, 0.6773, 5.4269, 5.3108, 5.9118, 7.2408, 6.109, 7.025, 5.3513, 7.4432, 5.6438, 11.4625, 5.5523, 11.2646, 6.2239, 6.5565, 5.6739, 6.3682, 5.3658, 6.1567, 5.7864, 7.2503, 5.6312, 6.0532, 7.2255, 6.9692, 6.0632, 11.2827, 6.9852, 6.4521, 5.5094, 7.2672, 7.7846, 6.0546, 7.206, 6.1042, 6.1572, 11.4706, 6.0515, 6.1119, 5.6801, 7.1461, 5.8498, 10.5116, 11.26, 7.1275, 6.0086, 5.5919, 5.8596, 5.9409, 6.0449, 1.0252, 5.7704, 13.2334, 5.676, 5.2874, 6.1364, 10.6368, 5.9221, 7.483, 11.2021, 5.7528, 12.3663, 6.7708, 6.0816, 11.8949, 5.6465, 5.599, 6.4547, 6.5062, 10.8459, 5.2631, 5.7085, 11.3747, 5.9514, 5.6217, 5.6059, 5.7499, 6.285, 5.7149, 11.4491, 6.2125, 5.6865, 5.4655, 5.3525, 7.0031, 1.2174, 5.5296, 6.4001, 5.7976, 11.441, 5.2791, 5.4622, 5.7878, 6.9144, 5.5618, 6.5763, 0.9229, 5.9075, 6.4864, 12.9092, 5.6798, 7.1561, 0.8206, 0.669, 5.7797, 11.3914, 6.248, 11.7266, 6.2981, 11.3108, 11.1399, 5.2998, 5.9707, 7.2529, 6.1648, 6.2633, 12.3034, 6.7012, 6.6564, 22.5561, 5.2712, 6.4418, 5.6446, 11.6303, 5.9202, 6.2373], '192.168.122.115': [10.3974, 11.1511, 5.5087, 5.3916, 5.3761, 5.7771, 5.564, 11.0018, 6.5818, 5.8043, 12.8541, 33.7372, 5.4612, 6.0349, 5.893, 5.5678, 5.5451, 5.4977, 5.4002, 10.6888, 7.026, 5.4729, 5.3725, 22.1982, 10.8097, 12.023, 5.3771, 10.9732, 6.151, 10.906, 21.7915, 5.3945, 6.6848, 6.52, 5.3816, 0.7801, 5.2223, 11.6832, 5.4047, 17.0112, 11.2011, 6.3024, 5.3263, 6.5851, 5.336, 5.9061, 12.8682, 5.4727, 10.6926, 11.102, 6.043, 5.2683, 6.2702, 11.4956, 5.5974, 11.2162, 6.1362, 5.3287, 6.1207, 5.827, 6.1033, 16.2861, 10.5495, 5.897, 11.9617, 5.4746, 16.4146, 6.2742, 6.0933, 6.2871, 10.8199, 6.892, 6.6166, 6.1877, 5.6098, 1.4927, 11.0703, 6.7747, 5.2965, 10.618, 6.5916, 11.3618, 5.5435, 6.7551, 5.3203, 11.3122, 6.4781, 5.3251, 6.0415, 11.4727, 12.2428, 7.0965, 5.7054, 5.4283, 6.295, 5.4655, 5.7278, 5.8417, 5.8413, 5.193, 6.2571, 5.8894, 6.0108, 11.5728, 5.4054, 6.4411, 6.4089, 27.6015, 6.3267, 5.2977, 6.9938, 7.2823, 11.1139, 5.6984, 6.0256, 5.8658, 5.7943, 5.5127, 11.1332, 5.7027, 5.8455, 5.7058, 5.5749, 5.9917, 6.6381, 16.5377, 6.1154, 11.1699, 6.5548, 11.4317, 6.0413, 6.7215, 1.4224, 5.2776, 5.9328, 1.4577, 5.6791, 6.7196, 5.7805, 5.8517, 6.3164, 31.4083, 5.3904, 6.196, 5.559, 5.7585, 6.6195, 5.97, 11.2066, 5.4829, 5.3427, 5.3408, 11.0164, 11.9345, 17.5366, 6.0551, 6.3317, 11.2567, 5.182, 5.4142, 6.5789, 6.7596, 5.6624, 10.7846, 5.7209, 5.399, 10.8137, 5.8441, 17.9117, 5.8496, 6.4836, 5.6732, 5.4913, 5.9352, 5.6922, 11.0729, 5.8217, 7.0937, 6.5098, 5.8026, 5.6558, 10.8254, 5.6446, 6.0451, 5.718, 5.5821, 1.0123, 21.3721, 6.0718, 22.4407, 5.2898, 6.5024, 11.2162, 5.3334, 10.828, 5.4317, 34.1008, 7.0131, 6.6698, 16.1428, 5.4398, 11.9534, 5.9896, 5.3954, 5.7185, 6.3546, 5.7971, 6.9933, 6.2001, 6.9668, 1.1828, 6.1173, 10.901, 0.8614, 10.8476, 21.4326, 10.8705, 5.3887, 5.6376, 1.1027, 6.0034, 11.0693, 6.3338, 12.7001, 11.0564, 6.3772, 7.4663, 17.8158, 5.4767, 5.6341, 6.4509, 5.4674, 5.7988, 5.6837, 5.5292, 10.6184, 22.4423, 6.3887, 7.009, 10.9634, 11.5261, 10.7961, 11.3194, 5.4462, 11.7998, 10.6583, 5.5566, 10.8483, 5.9578, 12.8803, 7.7899, 6.3171, 17.8623, 6.3946, 11.8437, 5.594, 11.1899, 17.0844, 5.7633, 5.8231, 6.4039, 5.4052, 6.4564, 5.5904, 5.6746, 5.7087, 5.506, 6.4318, 6.016, 6.3648, 10.5391, 6.8941, 11.6134, 17.8618, 5.7814, 23.4284, 16.9454, 5.9586, 6.2232, 7.1707, 5.6324, 10.7453, 6.1901, 6.4378, 6.3753, 5.6427, 5.2345, 16.6268, 6.6493, 6.2268, 6.855, 32.6605, 11.4713, 11.9648, 0.9789, 5.8453, 10.6678, 6.0382, 5.7461, 10.6041, 5.3246, 11.3642, 6.9528, 6.5649, 5.7018, 6.5305, 12.5968, 11.3621, 6.2919, 5.8253, 5.7669, 6.0675, 6.3148, 5.9416, 12.073, 6.4397, 11.2393, 5.8043, 10.5035, 6.1371, 11.4613, 5.4095, 6.1755, 5.9245, 5.4474, 6.2411, 5.5273, 5.3983, 6.1913, 2.3687, 5.4109, 6.4483, 5.3768, 6.2547, 5.2259, 6.8927, 5.3873, 5.5513, 10.8938, 10.9465, 1.5767, 6.1369, 5.3144, 6.0983, 6.187, 5.8024, 0.8879, 0.8163, 5.4214, 6.1045, 10.9758, 11.7674, 5.8844, 6.5312, 6.2337, 11.4987, 6.0923, 5.6376, 6.1407, 12.5577, 12.9366, 7.3297, 6.983, 6.166, 6.2778, 6.0458, 11.0226, 12.0902, 6.0067, 5.9164], '192.168.122.114': [10.4489, 10.7803, 16.381, 10.9882, 5.5413, 5.1689, 5.5003, 8.1007, 5.5199, 5.4867, 6.916, 6.9847, 17.1895, 6.0177, 11.5924, 6.9783, 11.3153, 5.4812, 10.8094, 5.5566, 7.2596, 5.8739, 5.4393, 5.2648, 6.2852, 5.6968, 6.2115, 5.5614, 10.9997, 5.4877, 10.6819, 11.3363, 6.69, 5.4502, 5.5175, 0.6456, 10.4163, 5.8632, 5.8134, 6.3725, 5.3284, 5.4128, 5.7294, 5.7039, 6.5453, 5.8737, 6.1922, 10.6063, 5.8992, 6.4583, 6.1216, 6.4375, 5.9149, 6.6051, 5.5447, 5.7085, 5.9052, 5.6753, 11.1096, 5.7333, 5.8451, 6.2153, 6.2292, 5.4529, 11.6994, 5.4281, 10.8695, 11.2877, 10.9103, 6.8679, 5.4278, 6.1524, 5.7347, 5.5039, 6.1603, 1.4985, 6.1808, 7.1588, 10.8552, 6.2256, 6.6183, 6.4695, 5.435, 5.4607, 11.338, 5.7228, 21.776, 6.5277, 5.1713, 5.8601, 6.0229, 6.784, 5.2333, 5.3985, 11.3547, 5.4612, 5.9867, 6.2356, 11.229, 5.7087, 12.0399, 18.1835, 10.7539, 5.8029, 16.9404, 5.502, 11.1563, 10.7632, 5.686, 6.7577, 5.8835, 5.3813, 11.0483, 5.6591, 11.5688, 6.4406, 11.1597, 5.6975, 6.6807, 17.725, 5.95, 10.9899, 10.6659, 12.3746, 11.5502, 5.3604, 7.1599, 5.8308, 11.4679, 5.8937, 11.7056, 6.2201, 1.1525, 5.5001, 5.466, 1.2519, 11.0888, 5.8072, 10.5112, 5.4586, 11.2875, 5.7793, 5.6491, 10.9191, 6.5084, 5.4793, 6.82, 6.1383, 11.5538, 5.7652, 5.4774, 5.9052, 5.4989, 10.0198, 11.1864, 5.6326, 5.6326, 6.2897, 6.4855, 11.7888, 10.9735, 6.7608, 5.4944, 11.0996, 5.3337, 5.3782, 11.4236, 6.8042, 6.4206, 5.7967, 6.7124, 6.6428, 5.4822, 7.3771, 10.632, 6.1831, 17.576, 6.3229, 6.3758, 10.7298, 11.0819, 11.2736, 5.3439, 5.3029, 5.6813, 6.1457, 0.9024, 28.4605, 5.3937, 5.6367, 5.2824, 6.3722, 5.4414, 6.2268, 5.9383, 5.5954, 12.4598, 11.8272, 11.1277, 11.2367, 5.4317, 5.7163, 5.7182, 16.0902, 11.1499, 5.3596, 5.5282, 6.1822, 5.7664, 6.9165, 1.2047, 5.3985, 6.0568, 0.7119, 11.0784, 5.6324, 5.3313, 5.6422, 11.4467, 1.1137, 6.2344, 6.0899, 5.5981, 5.8596, 5.5366, 6.4065, 6.5825, 7.5428, 7.4949, 7.6067, 7.2649, 6.1491, 5.5182, 5.2252, 7.277, 6.9935, 7.154, 6.5713, 6.6075, 10.8311, 6.8769, 11.2884, 6.1548, 5.4593, 5.7316, 5.4135, 5.4965, 6.1243, 5.383, 6.1018, 7.884, 6.2716, 5.3883, 6.4244, 7.3159, 11.1284, 5.5463, 5.8167, 7.0591, 5.3995, 11.9278, 5.5037, 11.2803, 11.6563, 6.0143, 6.0215, 5.3065, 5.8081, 5.867, 5.9478, 7.4654, 11.3823, 6.5296, 6.3491, 7.7631, 5.3735, 7.2069, 5.5032, 5.352, 11.6551, 7.6864, 5.2607, 11.4069, 6.6097, 12.1942, 5.7287, 6.2802, 5.6729, 6.5417, 6.6419, 8.1272, 11.0178, 10.1736, 5.7821, 0.8688, 11.4148, 11.6496, 11.1573, 5.7032, 11.0395, 11.6115, 11.3802, 17.8931, 6.4483, 6.2227, 11.3361, 5.4922, 5.9893, 5.9352, 7.544, 6.3498, 5.5289, 5.98, 6.2156, 10.8373, 6.1657, 5.6083, 5.3704, 5.543, 10.1516, 6.6109, 5.4295, 13.7174, 5.574, 11.4031, 10.6568, 6.175, 6.5868, 6.3381, 1.6778, 11.0471, 5.5039, 5.9721, 17.3283, 10.5386, 10.9906, 6.7623, 11.2102, 5.4636, 10.8218, 0.9532, 6.0098, 6.3615, 16.8991, 11.6906, 5.5892, 0.8531, 0.7539, 5.8954, 5.8863, 5.6207, 6.542, 6.007, 7.5216, 6.701, 6.5527, 6.0179, 5.9373, 7.2637, 5.9168, 5.9514, 5.8165, 5.9845, 5.5742, 5.5041, 5.5158, 6.7093, 7.411, 6.067, 5.9874], '192.168.122.112': [6.0618, 10.9851, 5.26, 10.9019, 10.8457, 10.9642, 6.8114, 6.0663, 10.9932, 5.4545, 5.5363, 5.5163, 5.6481, 7.9713, 5.8336, 7.1247, 5.6911, 6.0601, 10.9556, 11.3385, 6.9559, 6.4495, 10.86, 10.8666, 10.8168, 6.0654, 5.6856, 10.9799, 5.4605, 7.5908, 5.7404, 6.8591, 10.9026, 7.3245, 10.9916, 0.936, 21.2152, 6.3415, 5.5857, 5.8475, 11.5535, 6.3457, 5.9562, 6.6724, 11.2653, 11.0035, 6.1111, 11.4563, 5.8918, 5.2915, 6.0923, 5.9609, 5.8501, 5.5084, 11.0111, 5.3818, 11.0378, 6.7191, 5.4708, 11.3928, 5.4908, 5.4967, 5.4243, 5.8911, 5.5361, 5.4576, 6.561, 5.4502, 5.4519, 5.6727, 5.3661, 17.0002, 5.8947, 10.9582, 11.8344, 0.8068, 5.4953, 5.8455, 10.9534, 5.4817, 12.558, 5.3728, 5.9814, 5.4743, 5.7926, 11.3292, 6.3844, 5.5954, 6.1018, 5.7588, 6.3617, 5.3015, 5.3017, 5.7759, 11.245, 5.8973, 6.1214, 5.6589, 6.2435, 6.1877, 11.2257, 12.2945, 5.3771, 5.7237, 6.2401, 6.9187, 5.7631, 6.3775, 6.3508, 10.9839, 12.0635, 7.329, 11.0662, 10.8323, 5.3909, 5.4591, 10.9396, 5.4519, 6.7236, 5.5292, 11.6112, 5.7182, 5.2536, 5.8243, 10.7725, 5.2729, 5.6162, 5.796, 6.4478, 5.8496, 5.8243, 6.6895, 1.0543, 6.0995, 5.4686, 1.4307, 6.3696, 5.7979, 10.483, 5.4562, 6.2995, 5.7504, 5.631, 6.376, 5.6782, 5.5597, 6.6187, 5.2724, 6.5949, 6.4387, 5.2781, 6.5174, 5.5027, 11.2646, 5.5766, 6.0883, 11.3075, 5.8384, 5.2845, 10.9963, 5.7082, 6.0723, 6.3639, 10.9522, 5.4245, 5.7845, 17.8878, 6.2926, 11.9917, 5.4176, 6.6035, 10.8509, 5.2402, 6.5951, 5.4684, 5.2986, 11.3347, 6.3386, 11.5094, 5.7857, 11.3201, 6.4077, 5.578, 6.6476, 6.6221, 11.0631, 1.3695, 5.6205, 17.0121, 6.2304, 6.1665, 6.5057, 16.1018, 11.2128, 5.7454, 5.4326, 22.5103, 5.6512, 5.4586, 11.2121, 11.1091, 5.6233, 5.8897, 16.4106, 5.393, 11.2033, 6.2366, 6.0399, 5.4471, 11.4424, 1.0202, 5.6283, 17.2992, 0.7684, 16.9482, 5.3551, 5.7743, 5.6174, 12.3036, 1.4734, 5.4417, 11.5414, 11.2484, 6.8698, 6.4347, 5.758, 5.3482, 6.7546, 6.5749, 11.2541, 5.7054, 6.8274, 11.0314, 11.0431, 6.8004, 5.6019, 6.4485, 5.8787, 6.3293, 5.753, 16.6066, 6.6357, 10.9019, 7.3211, 5.6896, 5.4829, 5.5366, 5.9249, 6.5999, 5.4047, 12.1717, 10.8616, 6.2647, 5.5499, 11.559, 6.3698, 12.4667, 5.8758, 5.729, 28.8577, 6.0003, 5.4946, 5.6486, 5.8675, 7.2062, 5.408, 21.7581, 11.0831, 11.5395, 17.3466, 7.2842, 7.2482, 5.5559, 21.7774, 18.0526, 7.0705, 5.456, 6.2888, 13.9532, 7.1385, 5.456, 5.6975, 5.3554, 5.9173, 6.1808, 5.4982, 6.0294, 16.2745, 6.7163, 5.5003, 5.6663, 6.1717, 6.0408, 6.2938, 1.1594, 10.8345, 6.2051, 11.3957, 6.7513, 11.1198, 10.9231, 5.8341, 5.5878, 5.7378, 5.8298, 6.7174, 5.6045, 6.6559, 10.9327, 11.517, 5.7693, 6.4249, 6.0079, 5.6477, 17.1647, 6.7184, 5.7364, 11.3196, 42.81, 5.5616, 7.7014, 6.1951, 12.1655, 11.2078, 11.3623, 10.5209, 5.9271, 5.5811, 6.6969, 0.9401, 6.5053, 7.0777, 10.8664, 5.6782, 10.4337, 5.7213, 10.7651, 7.0138, 6.0217, 5.6818, 0.8769, 5.367, 17.5526, 5.7499, 5.9345, 6.8777, 0.8366, 0.628, 12.5134, 6.7036, 6.8593, 7.324, 6.3529, 6.9549, 6.1672, 5.599, 28.3144, 6.0043, 5.4278, 5.7814, 5.9698, 6.0427, 5.4996, 10.987, 6.7179, 6.1805, 5.8181, 5.594, 6.0523, 5.8312], '192.168.122.111': [5.9037, 5.4209, 6.0349, 11.0233, 5.6696, 11.3368, 6.5968, 10.9818, 11.1513, 6.1493, 6.1913, 11.0457, 6.7141, 10.9217, 5.5995, 5.6496, 5.564, 6.5258, 11.4851, 7.287, 6.4394, 10.9262, 5.3236, 5.3205, 6.3756, 8.0075, 5.4955, 5.8362, 6.8159, 6.042, 5.6555, 6.3739, 6.2749, 7.025, 6.3019, 0.6337, 10.4105, 5.7371, 6.4738, 6.0098, 5.861, 5.3244, 17.8185, 11.6177, 11.3404, 6.5787, 6.9323, 5.8489, 5.9857, 10.8488, 5.4936, 6.3641, 5.8174, 6.0856, 5.4328, 11.8861, 6.8629, 5.3146, 5.5611, 5.9788, 6.3994, 5.6446, 11.6725, 5.7955, 6.1529, 5.5571, 10.8871, 16.4709, 5.3792, 7.0403, 10.9119, 6.0599, 16.8724, 11.1275, 11.3108, 0.6866, 5.5206, 10.999, 5.3446, 5.3444, 6.4447, 11.1456, 6.1262, 5.451, 5.9812, 6.3252, 11.4946, 5.6424, 5.9683, 11.2047, 5.8782, 10.7894, 5.286, 5.6894, 6.485, 5.3654, 11.3795, 12.1324, 5.3413, 5.6322, 5.3453, 23.2992, 5.7278, 5.7645, 5.6837, 5.3318, 11.6909, 6.346, 18.3654, 5.4772, 5.7955, 11.9202, 5.3871, 5.4007, 10.932, 5.6772, 10.7791, 5.9805, 5.7023, 6.0916, 11.4734, 5.563, 11.4114, 5.7981, 5.7559, 5.2795, 11.0681, 5.8341, 6.2773, 6.6507, 5.3704, 5.9826, 1.116, 11.7626, 10.8967, 1.3287, 5.4848, 6.9036, 6.2973, 5.7027, 6.9196, 5.7902, 5.5974, 10.8924, 6.6075, 5.2118, 8.6989, 11.2538, 5.6865, 5.4655, 6.3939, 5.4069, 16.5529, 11.0292, 11.8096, 7.2966, 10.9403, 11.1547, 5.3425, 7.2312, 5.4867, 5.7571, 10.4945, 10.7548, 5.5413, 6.0203, 10.5956, 11.2212, 6.1252, 5.7278, 6.1569, 6.8645, 5.9295, 6.5508, 5.3508, 6.3345, 5.7881, 5.621, 5.6479, 6.9633, 5.3575, 5.5308, 6.1116, 5.8532, 11.2817, 11.0223, 1.2474, 5.6269, 5.4538, 5.3291, 12.2645, 23.9315, 10.9444, 5.4166, 0.6378, 6.4642, 5.9552, 6.1712, 6.3629, 5.7585, 11.029, 11.7192, 6.3472, 11.039, 7.4382, 5.8818, 5.439, 6.4704, 6.1777, 5.5227, 1.0703, 11.26, 5.6143, 0.9089, 6.789, 5.399, 5.3544, 5.7399, 7.0722, 1.2167, 5.2893, 6.042, 5.939, 22.3706, 5.6853, 5.8606, 6.9072, 7.3037, 5.6884, 5.5976, 5.4886, 7.0405, 6.5231, 6.0716, 10.7684, 10.6194, 23.1402, 5.6598, 6.5789, 10.8552, 5.7135, 6.3932, 6.14, 17.5409, 6.4964, 5.9905, 0.7505, 10.7884, 6.5892, 5.5082, 7.1456, 11.9483, 10.9482, 5.4152, 6.8574, 17.2222, 13.2258, 11.8139, 11.425, 5.6801, 6.5789, 6.7015, 6.3004, 11.0512, 5.3618, 5.4002, 10.9987, 7.8056, 5.6748, 11.4105, 11.1072, 7.7014, 6.0761, 6.1624, 17.9379, 5.3718, 11.4222, 7.4549, 6.3386, 7.8483, 5.6581, 6.7167, 6.0918, 5.7364, 6.2153, 5.6171, 16.0201, 6.0191, 5.9953, 11.2419, 6.7358, 6.1624, 5.842, 5.9175, 6.8717, 5.7569, 6.2478, 5.5127, 6.4793, 11.4799, 5.6243, 11.1144, 6.9699, 11.0719, 5.6906, 11.6773, 5.3313, 10.4933, 5.4018, 11.4686, 6.5236, 5.5985, 6.4702, 6.4681, 5.27, 7.0326, 6.9818, 5.564, 10.1678, 6.5007, 22.8994, 7.2749, 6.5916, 11.4729, 11.1618, 5.5809, 6.542, 6.3565, 10.6859, 1.2071, 6.9447, 11.0695, 5.8746, 5.3501, 5.2588, 22.825, 6.4828, 5.9085, 5.9936, 6.8593, 0.7582, 5.2826, 11.0052, 6.9535, 6.8152, 6.1698, 0.7641, 0.6843, 6.701, 5.3625, 6.9404, 16.5465, 11.2402, 11.3964, 5.9674, 6.093, 5.4255, 11.3039, 7.5178, 6.8996, 6.0964, 7.8919, 13.4029, 6.6471, 5.9421, 6.7453, 7.0689, 5.5723, 5.3899, 5.2381]}
cpu3_3_7 = [15.6, 34.3, 0.6, 0.4, 0.7, 1.7, 0.4, 0.3, 0.9, 0.6, 0.1, 0.6, 0.5, 5.6, 4.2, 1.1, 1.2, 0.3, 0.2, 0.0, 0.0, 2.0, 2.2, 0.8, 0.8, 2.5, 0.5, 0.1, 0.6, 0.4, 0.3, 1.9, 1.7, 0.4, 0.1, 0.8, 0.6, 0.2, 0.2, 6.8, 6.9, 0.1, 0.7, 0.0, 0.3, 0.6, 0.7, 0.5, 1.3, 1.6, 4.3, 3.4, 1.3, 0.2, 2.4, 0.7, 1.6, 0.3, 0.9, 0.1, 0.4, 0.0, 1.3, 1.3, 0.9, 0.6, 0.2, 3.7, 2.5, 0.1, 0.5, 1.5, 0.7, 0.8, 4.2, 5.1, 0.4, 2.1, 0.8, 0.9, 0.5, 0.6, 2.3, 1.1, 3.1, 3.1, 0.5, 0.0, 0.5, 2.0, 0.4, 0.5, 0.4, 1.0, 1.1, 0.2, 0.0, 0.1, 0.3, 0.7, 0.6, 0.4, 0.6, 0.2, 0.7, 1.0, 1.9, 0.2, 3.2, 2.6, 0.3, 1.9, 1.7, 0.2, 0.7, 0.0, 0.6, 0.6, 0.5, 1.0, 0.7, 0.2, 1.6, 2.0, 1.7, 3.0, 1.9, 1.2, 0.7, 0.7, 0.2, 0.0, 0.5, 0.6, 1.3, 0.4, 0.3, 0.4, 0.6, 0.8, 0.4, 0.1, 0.4, 0.5, 0.6, 1.7, 2.1, 2.2, 1.2, 1.4, 1.4, 2.2, 0.3, 1.0, 1.0, 0.9, 2.5, 1.0, 0.6, 0.5, 1.9, 2.2, 1.6, 1.1, 0.1, 0.2, 0.2, 1.0, 0.3, 0.7, 1.7, 0.5, 1.1, 0.6, 0.4, 0.1, 0.1, 0.6, 1.4, 2.0, 0.7, 0.7, 0.0, 1.1, 0.5, 0.9, 0.1, 0.5, 0.8, 0.4, 0.0, 0.7, 1.0, 0.3, 2.1, 1.9, 0.8, 1.2, 0.5, 0.9, 2.0, 2.2, 0.2, 2.3, 1.5, 0.7, 1.1, 0.3, 0.2, 1.3, 1.9, 0.4, 0.2, 0.3, 0.2, 1.7, 0.5, 0.8, 0.3, 0.6, 1.3, 1.7, 0.3, 0.7, 0.4, 1.8, 2.6, 0.4, 2.1, 3.5, 0.9, 0.3, 2.2, 2.2, 1.4, 0.9, 0.4, 0.2, 0.4, 0.6, 0.2, 1.1, 0.4, 1.4, 0.6, 1.1, 3.0, 2.1, 1.1, 0.9, 0.3, 0.8, 0.4, 0.4, 0.4, 1.1, 5.6, 6.6, 0.4, 1.4, 1.2, 0.4, 1.0, 3.2, 2.1, 0.9, 1.3, 2.0, 0.3, 0.5, 0.3, 0.4, 0.8, 1.2, 0.3, 0.4, 1.6, 1.1, 1.3, 0.4, 0.0, 0.2, 0.0, 1.7, 0.1, 1.4, 1.7, 0.3, 0.6, 3.1, 2.7, 0.1, 1.1, 0.3, 1.1, 0.3, 0.7, 0.2, 1.3, 0.3, 1.0, 0.6, 0.8, 2.6, 3.5, 0.6, 1.3, 0.6, 1.8, 1.9, 2.1, 1.1, 1.5, 1.6, 1.1, 1.0, 0.1, 0.5, 0.3, 2.3, 2.6, 1.2, 2.2, 0.5, 0.1, 0.2, 9.5, 12.4, 3.4, 0.7, 4.0, 0.7, 3.0, 0.7, 1.6, 0.5, 4.1, 0.5, 0.1, 1.2, 1.1, 0.9, 2.1, 1.5, 1.6, 2.0, 0.1, 1.1, 1.2, 2.0, 1.3, 2.4, 2.0, 0.0, 0.9, 2.0, 2.7, 1.3, 1.6, 1.9, 0.8, 0.1, 0.3, 1.4, 1.8, 3.0, 1.5, 0.5, 0.1, 0.4]
off_mec3_3_7 = 369
off_cloud3_3_7 = 403
inward_mec3_3_7 = 510
loc3_3_7 = 530
deadlock3_3_7 = [6]
memory3_3_7 = [0.2178, 0.2181, 0.2183, 0.2184, 0.2185, 0.2186, 0.2187, 0.2188, 0.2188, 0.2188, 0.2188, 0.2189, 0.219, 0.219, 0.219, 0.219, 0.219, 0.219, 0.2191, 0.2191, 0.2192, 0.2192, 0.2193, 0.2193, 0.2194, 0.2194, 0.2194, 0.2194, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2197, 0.2197, 0.2197, 0.2199, 0.2199, 0.2199, 0.2199, 0.2199, 0.2203, 0.2204, 0.2205, 0.2205, 0.2206, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.221, 0.221, 0.221, 0.221, 0.221, 0.221, 0.221, 0.221, 0.2212, 0.2212, 0.2212, 0.2213, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2216, 0.2217, 0.2217, 0.2217, 0.2217, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2219, 0.2219, 0.2219, 0.222, 0.222, 0.222, 0.222, 0.2221, 0.2221, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2223, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2227, 0.2227, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.223, 0.2231, 0.2232, 0.2232, 0.2232, 0.2233, 0.2233, 0.2233, 0.2233, 0.2233, 0.2233, 0.2233, 0.2233, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2235, 0.2236, 0.2236, 0.2237, 0.2237, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.224, 0.224, 0.2241, 0.2241, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2243, 0.2243, 0.2243, 0.2243, 0.2244, 0.2244, 0.2244, 0.2244, 0.2245, 0.2245, 0.2245, 0.2245, 0.2246, 0.2246, 0.2246, 0.2246, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2253, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2255, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2264, 0.2264, 0.2264, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2267, 0.2267, 0.2267, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.2272, 0.2273, 0.2273, 0.2273, 0.2273, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2276, 0.2276, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2278, 0.2278, 0.2278, 0.2278, 0.2278, 0.2278, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2281, 0.2281, 0.2281, 0.2281, 0.2282, 0.2282, 0.2283, 0.2283, 0.2285, 0.2286, 0.2286, 0.2286]
task_received3_3_7 = 1302
sent_t3_3_7 = {'124': 424, '126': 477, '125': 400}
cooperate3_3_7 = {'mec': 368, 'cloud': 403}
task_record3_3_7 = {'t3.113.124.781.655': 'mec'}
outward_mec3_3_7 = 67
offload_check3_3_7 = []
timed_out_tasks3_3_7 = 0 | wt3_3_7 = {'192.168.122.110': [5.3551, 8.3352, 7.3783, 6.9324, 6.6606, 6.4673, 6.5077, 6.6393, 7.3012, 7.1319, 6.7323, 6.3639, 6.33, 6.6602, 6.9711, 6.8935, 7.1543, 7.3671, 7.2675, 7.223, 7.1379, 7.3225, 7.2638, 7.4282, 7.435, 7.3821, 7.5459, 7.4728, 7.4688, 7.4658, 7.3986, 7.347, 7.4649, 7.4186, 7.4119, 7.358, 7.3216, 7.3293, 7.4145, 7.3954, 7.3986, 7.3596, 7.3364, 7.3243, 7.411, 7.3719, 7.3574, 7.3301, 7.3179, 7.3856, 7.3547, 7.3178, 7.2821, 7.2477, 7.2416, 7.2305, 7.2017, 7.1679, 7.2313, 7.2228, 7.2006, 7.1695, 7.1567, 7.1309, 7.1868, 7.2391, 7.2265, 7.2816, 7.3295, 7.325, 7.3876, 7.365, 7.3474, 7.3721, 7.4419, 7.4331, 7.4142, 7.4177, 7.393, 7.447, 7.4236, 7.3969, 7.4034, 7.384, 7.3894, 7.3673, 7.4125, 7.4083, 7.404, 7.3883, 7.3706, 7.3558, 7.3448, 7.3287, 7.3181, 7.3544, 7.3439, 7.3419, 7.3233, 7.304, 7.3442, 7.3357, 7.3327, 7.3148, 7.2982, 7.2859, 7.2686, 7.2655, 7.2632, 7.2493, 7.239, 7.2229, 7.2081, 7.1923, 7.1897, 7.1765, 7.1731, 7.1694, 7.1536, 7.1417, 7.1329, 7.0821, 7.0789, 7.1101, 7.1407, 7.1348, 7.1206, 7.1088, 7.0678, 7.0536, 7.044, 7.0748, 7.0656, 7.0572, 7.0858, 7.1107, 7.1164, 7.1057, 7.132, 7.1261, 7.1156, 7.1084, 7.097, 7.1251, 7.2267, 7.2762, 7.2679, 7.2567, 7.305, 7.3736, 7.4014, 7.3891, 7.4139, 7.3767, 7.3698, 7.3589, 7.3605, 7.3554, 7.3503, 7.372, 7.3669, 7.3583, 7.3625, 7.3536, 7.3412, 7.329, 7.3168, 7.315, 7.3049, 7.2964, 7.2915, 7.2864, 7.308, 7.2979, 7.3176, 7.3116, 7.301, 7.2939, 7.2884, 7.2797, 7.2761, 7.3008, 7.3069, 7.3286, 7.3461, 7.3447, 7.3423, 7.338, 7.3554, 7.346, 7.3361, 7.3259, 7.3257, 7.3186, 7.3156, 7.3103, 7.3008, 7.2979, 7.2968, 7.3153, 7.3062, 7.3046, 7.3006, 7.2692, 7.2634, 7.2592, 7.2541, 7.2465, 7.2371, 7.2331, 7.225, 7.2167, 7.2122, 7.2082, 7.2078, 7.1996, 7.1916, 7.1847, 7.1821, 7.178, 7.1547, 7.1496, 7.1462, 7.1227, 7.1171, 7.112, 7.1103, 7.1273, 7.1249, 7.1177, 7.1108, 7.1051, 7.2225, 7.2162, 7.2112, 7.2053, 7.2044, 7.1973, 7.2664, 7.261, 7.256, 7.2745, 7.2688, 7.2618, 7.2605, 7.2648, 7.2597, 7.2776, 7.2734, 7.2671, 7.2621, 7.2603, 7.2584, 7.254, 7.2689, 7.2623, 7.2573, 7.2545, 7.2474, 7.242, 7.2561, 7.2829, 7.2777, 7.2723, 7.2649, 7.2579, 7.2359, 7.2339, 7.2312, 7.2453, 7.2405, 7.2415, 7.2341, 7.2288, 7.2235, 7.2205, 7.2176, 7.2118, 7.2091, 7.2084, 7.2215, 7.2161, 7.2168, 7.2335, 7.2286, 7.244, 7.2408, 7.2354, 7.2553, 7.2539, 7.2865, 7.2824, 7.299, 7.3339, 7.3277, 7.3227, 7.3179, 7.3462, 7.3459, 7.3412, 7.3358, 7.3392, 7.3518, 7.3644, 7.3602, 7.3593, 7.3543, 7.3554, 7.3533, 7.3498, 7.3471, 7.341, 7.3372, 7.3311, 7.3295, 7.3303, 7.3295, 7.3248, 7.3243, 7.3241, 7.3203, 7.3314, 7.3425, 7.3408, 7.3517, 7.3646, 7.3624, 7.3606, 7.3715, 7.3655, 7.3595, 7.3532, 7.3599, 7.3718, 7.3855, 7.3793, 7.3758, 7.3879, 7.3873, 7.3819, 7.38, 7.3753, 7.3695, 7.354, 7.3507, 7.3563, 7.3508, 7.3524, 7.3495, 7.3445, 7.3418, 7.3368, 7.351, 7.3466, 7.3562, 7.3534, 7.3634, 7.3731, 7.3721, 7.3959, 7.3948, 7.3965, 7.3926, 7.3915, 7.4055, 7.4165, 7.4115, 7.4084, 7.4075, 7.4171, 7.4117, 7.4094, 7.4174, 7.4156, 7.4133, 7.4105, 7.4057, 7.4158, 7.4111, 7.4076, 7.4055, 7.4008, 7.4003, 7.3983, 7.4074, 7.4079, 7.4034, 7.3993, 7.3976, 7.4077, 7.4028, 7.3973, 7.4066, 7.4031, 7.3986, 7.3965, 7.4049, 7.4132, 7.4079, 7.4054, 7.4138, 7.4116, 7.4102, 7.4071, 7.4021, 7.4109, 7.4063, 7.4051, 7.4028, 7.411, 7.4068, 7.4021, 7.3973, 7.4055, 7.4084, 7.4183, 7.4172, 7.4145, 7.4095, 7.4074, 7.418, 7.4272, 7.4227, 7.4183, 7.4137, 7.409, 7.4051, 7.403, 7.411, 7.4063, 7.4038, 7.4014, 7.3988, 7.3958, 7.3819, 7.3794, 7.3757, 7.3743, 7.3745, 7.3718, 7.3806, 7.3885, 7.3886, 7.3985, 7.4079, 7.4053, 7.416, 7.4258, 7.4365, 7.4348, 7.4322, 7.4416, 7.4507, 7.4474, 7.4567, 7.4526, 7.4483, 7.445, 7.4425, 7.4392, 7.4369, 7.4337, 7.4242, 7.421, 7.4166, 7.4242, 7.4335, 7.4306, 7.438, 7.4407, 7.4368, 7.4443, 7.4518, 7.4494, 7.4451, 7.4409, 7.438, 7.4467, 7.4448, 7.4402, 7.4362, 7.4344, 7.4302, 7.4485, 7.4473, 7.4773, 7.4857, 7.4827, 7.4797, 7.5021, 7.4987, 7.4953, 7.5151, 7.511, 7.5086, 7.5052, 7.5023, 7.5008, 7.499, 7.4955, 7.4936, 7.4896, 7.4965, 7.4953, 7.4927, 7.4915, 7.487, 7.4833, 7.4793, 7.4783, 7.4848, 7.4805, 7.4786, 7.4874, 7.4848, 7.4821, 7.4787, 7.4758, 7.4717, 7.4723, 7.4688, 7.4652, 7.4639, 7.4707, 7.4673, 7.464, 7.4606, 7.4982, 7.4942, 7.4906, 7.4892, 7.4954, 7.4933, 7.5007, 7.4999, 7.4982, 7.4941, 7.4915, 7.4884, 7.4866, 7.4825, 7.4788, 7.4853, 7.4919, 7.4881, 7.4844, 7.4805, 7.4766, 7.4825, 7.4825, 7.4788, 7.4782, 7.477, 7.4736, 7.4702, 7.4674, 7.4828, 7.4803, 7.4772, 7.4736, 7.4807, 7.4774, 7.478, 7.4764, 7.473, 7.4714, 7.4682, 7.4827, 7.4944, 7.4917, 7.4823, 7.4925, 7.4918, 7.4981, 7.5039, 7.5008, 7.4972, 7.4965, 7.494, 7.4933, 7.492, 7.4891, 7.4858, 7.4827, 7.4815, 7.4871, 7.4858, 7.492, 7.4898, 7.4956, 7.4919, 7.4884, 7.4846, 7.4815, 7.4803, 7.477, 7.4775, 7.4761, 7.4809, 7.4698, 7.4695, 7.4696, 7.4719, 7.4702, 7.4677, 7.4652, 7.462, 7.4593, 7.4583, 7.4641, 7.4608, 7.4598, 7.4579, 7.455, 7.5032, 7.5091, 7.5054, 7.4953, 7.4918, 7.4898, 7.4955, 7.4925, 7.5069, 7.5033, 7.5054, 7.5458, 7.5425, 7.5395, 7.5392, 7.5375, 7.5342, 7.5308, 7.5301, 7.528, 7.5175, 7.515, 7.5237, 7.5298, 7.528, 7.5247, 7.5227, 7.5276, 7.5265, 7.5232, 7.5211, 7.5273, 7.5242, 7.5333, 7.5305, 7.5276, 7.5256, 7.5236, 7.5207, 7.5257, 7.525, 7.5217, 7.5203, 7.5184, 7.5166, 7.5218, 7.5132, 7.5123, 7.5102, 7.5115, 7.513, 7.5105, 7.5076, 7.5046, 7.5017, 7.508, 7.5054, 7.5028, 7.5003, 7.4995, 7.4964, 7.4932, 7.4913, 7.4964, 7.4943, 7.4924, 7.4892, 7.487, 7.4846, 7.484, 7.4924, 7.4929, 7.5025, 7.4999, 7.4968, 7.494, 7.4999, 7.497, 7.5019, 7.4999, 7.4973, 7.4978, 7.4956, 7.4928, 7.4986, 7.492, 7.489, 7.4871, 7.4849, 7.4829, 7.4831, 7.4883, 7.4851, 7.4833, 7.4809, 7.4799, 7.4776, 7.4821, 7.4897, 7.4946, 7.4921, 7.4892, 7.4877, 7.4872, 7.4847, 7.4894, 7.4865, 7.4912, 7.4898, 7.4868, 7.4909, 7.4903, 7.4957, 7.4931, 7.4933, 7.4923, 7.4905, 7.4888, 7.4938, 7.491, 7.4882, 7.493, 7.4986, 7.4959, 7.5008, 7.5058, 7.5029, 7.5005, 7.4975, 7.4965, 7.4962, 7.4934, 7.4931, 7.4918, 7.4896, 7.4957, 7.494, 7.4928, 7.4902, 7.4967, 7.5016, 7.5063, 7.5049, 7.5021, 7.4993, 7.498, 7.4964, 7.4945, 7.4934, 7.4924, 7.4969, 7.4958, 7.5015, 7.5061, 7.5046, 7.503, 7.5034, 7.5073, 7.5114, 7.5127, 7.5196, 7.5168, 7.5215, 7.5187, 7.5167, 7.514, 7.5112, 7.5091, 7.5083, 7.5057, 7.5031, 7.5082, 7.5072, 7.5059, 7.5209, 7.5182, 7.5247, 7.5164, 7.5181, 7.5114, 7.5092, 7.5099, 7.5078, 7.5131, 7.5122, 7.5114, 7.5111, 7.5156, 7.5193, 7.5176, 7.5149, 7.5122, 7.5101, 7.5182, 7.5171, 7.5098, 7.507, 7.5055, 7.5038, 7.5079, 7.5056, 7.5032, 7.5006, 7.4998, 7.4986, 7.5028, 7.4956, 7.5003, 7.5048, 7.5025, 7.5011, 7.5002, 7.5053, 7.5042, 7.5025, 7.5025, 7.5006, 7.4987, 7.4985, 7.4963, 7.4892, 7.4868, 7.4921, 7.4899, 7.4877, 7.4872, 7.4865, 7.4852, 7.483, 7.4818, 7.4819, 7.48, 7.4845, 7.4892, 7.4927, 7.4919, 7.4896, 7.485, 7.489, 7.4867, 7.4911, 7.4951, 7.4997, 7.4971, 7.4949, 7.4938, 7.4914, 7.4913, 7.4909, 7.4897, 7.4872, 7.4853, 7.4832, 7.4881, 7.4862, 7.4842, 7.4824, 7.4817, 7.4798, 7.4808, 7.4786, 7.4914, 7.4847, 7.4826, 7.4829, 7.4806, 7.4841, 7.4822, 7.4799, 7.4732, 7.4894, 7.4882, 7.4898, 7.4876, 7.4923, 7.4911, 7.4949, 7.4992, 7.497, 7.4955, 7.4933, 7.4914, 7.496, 7.5005, 7.4983, 7.4971, 7.4957, 7.4943, 7.4919, 7.496, 7.5006, 7.5009, 7.4987, 7.498, 7.5021, 7.5126, 7.511, 7.5044, 7.498, 7.4917, 7.4897, 7.4937, 7.4975, 7.5027, 7.5068, 7.5049, 7.5041, 7.5026, 7.5061, 7.5094, 7.5074, 7.5116, 7.5157, 7.5191, 7.5168, 7.5152, 7.5153, 7.5131, 7.5115, 7.5103, 7.5086, 7.5078, 7.5127, 7.5112, 7.5127, 7.5106, 7.5085, 7.5074, 7.5074, 7.5053, 7.5057, 7.5039, 7.5015, 7.4994, 7.5031, 7.5064, 7.5062, 7.5041, 7.5023, 7.502, 7.5005, 7.5043, 7.5025, 7.5002, 7.4996, 7.4988, 7.5024, 7.5001, 7.4994, 7.4972, 7.4907, 7.4885, 7.488, 7.4922, 7.4955, 7.4892, 7.4872, 7.4866, 7.4869, 7.4854, 7.4838, 7.4847, 7.4832, 7.4816, 7.4794, 7.4834, 7.478, 7.4762, 7.4754, 7.4736, 7.4681, 7.4665, 7.4654, 7.4643, 7.4623, 7.4615, 7.4593, 7.4572, 7.4562, 7.4545, 7.4531, 7.4566, 7.4546, 7.4591, 7.4571, 7.4567, 7.4548, 7.4535, 7.4514, 7.4494, 7.4483, 7.4471, 7.4455, 7.4454, 7.4441, 7.4425, 7.4426, 7.4407, 7.4394, 7.4382, 7.4376, 7.4362, 7.4358, 7.434, 7.4322, 7.4354, 7.4333, 7.4316, 7.431, 7.4292, 7.4334, 7.4327, 7.4321, 7.4463, 7.4458, 7.4497, 7.4492, 7.4437, 7.4483, 7.4477, 7.449, 7.4471, 7.4521, 7.4556, 7.4538, 7.4477, 7.4475, 7.4472, 7.4566, 7.4551, 7.4542, 7.4532, 7.4561, 7.4556, 7.4541, 7.4521, 7.4559, 7.4547, 7.4576, 7.4559, 7.4542, 7.4528, 7.4538, 7.4517, 7.4463, 7.4406, 7.444, 7.4425, 7.4409, 7.439, 7.437, 7.4308, 7.4406, 7.4394, 7.4375, 7.4355, 7.4388, 7.4376, 7.4411, 7.4393, 7.4377, 7.4359, 7.4351, 7.4333, 7.4386, 7.4334, 7.4279, 7.4262, 7.4211, 7.4204, 7.4188, 7.419, 7.4182, 7.4165, 7.411, 7.4098, 7.4091, 7.4074, 7.4065, 7.4008, 7.3996, 7.398, 7.3971, 7.3964, 7.4006, 7.3993, 7.4036, 7.4047, 7.4042, 7.4034, 7.4036, 7.3985, 7.3967, 7.3963, 7.3949, 7.3937, 7.3919, 7.3901, 7.3897, 7.3887, 7.3889, 7.3919, 7.3915, 7.3917, 7.3913, 7.3899, 7.3949, 7.3953, 7.3935, 7.3916, 7.3898, 7.3929, 7.3966, 7.3964, 7.396, 7.3942, 7.3925, 7.3916, 7.3899, 7.3896, 7.389, 7.3885, 7.3835, 7.3816, 7.3799, 7.3786, 7.3872, 7.3866, 7.3901, 7.3906, 7.3891, 7.3873, 7.3866, 7.3859, 7.3844, 7.3835, 7.3829, 7.3773, 7.3762, 7.3745, 7.3906, 7.3908, 7.3904, 7.3895, 7.3879, 7.3876, 7.3874, 7.3903, 7.3892, 7.3922, 7.3913, 7.3947, 7.3929, 7.3912, 7.3941, 7.3933, 7.3916, 7.3899, 7.3881, 7.3864, 7.3894, 7.3878, 7.3861, 7.3844, 7.3835, 7.3833, 7.379, 7.3775, 7.3761, 7.3793, 7.3787, 7.3781, 7.3763, 7.3714, 7.3701, 7.3692, 7.3722, 7.3712, 7.3695, 7.368, 7.368, 7.3664, 7.3661, 7.3619, 7.3601, 7.3587, 7.3572, 7.3562, 7.3555, 7.3545, 7.3538, 7.3522, 7.352, 7.3511, 7.3503, 7.35, 7.3484, 7.3467, 7.3457, 7.344, 7.344, 7.3428, 7.3411, 7.3425, 7.3408, 7.3401, 7.3384, 7.3415, 7.3407, 7.3391, 7.3419, 7.3403, 7.3472, 7.3462, 7.349, 7.3519, 7.3512, 7.3507, 7.3506, 7.3491, 7.3523, 7.3517, 7.3547, 7.3575, 7.3561, 7.3589, 7.3574, 7.3563, 7.3593, 7.3577, 7.3564, 7.3549, 7.3503, 7.3461, 7.3423, 7.342, 7.3376, 7.3361, 7.3371, 7.3364, 7.3353, 7.3343, 7.3369, 7.3411, 7.3398, 7.3385, 7.3412, 7.3397, 7.3391, 7.338, 7.3379, 7.3407, 7.3399, 7.339, 7.339, 7.342, 7.3416, 7.3404, 7.34, 7.343, 7.3424, 7.3421, 7.3452, 7.3482, 7.3474, 7.3468, 7.347, 7.3458, 7.3449, 7.3441, 7.3471, 7.3455, 7.344, 7.3433, 7.346, 7.3451, 7.3445, 7.3474, 7.3462, 7.346, 7.3489, 7.3477, 7.347, 7.3454, 7.3447, 7.3448, 7.3479, 7.3484, 7.348, 7.3466, 7.3451, 7.3443, 7.3429, 7.3413, 7.341, 7.3402, 7.339, 7.3384, 7.3372, 7.3362, 7.3347, 7.3339, 7.3364, 7.339, 7.3418, 7.3403, 7.3388, 7.3381, 7.3408, 7.3397, 7.3398, 7.3389, 7.3376, 7.337, 7.3356, 7.3353, 7.3383, 7.337, 7.3356, 7.3382, 7.337, 7.3354, 7.3433, 7.3422, 7.3411, 7.3411, 7.3404, 7.3431, 7.3455, 7.3439, 7.3509, 7.3497, 7.354, 7.3626, 7.3612, 7.3654, 7.3641, 7.3626, 7.3652, 7.3642, 7.3668, 7.3666, 7.3692, 7.368, 7.3667, 7.3653, 7.3643, 7.3629, 7.3625, 7.3614, 7.3608, 7.3636, 7.3621, 7.361, 7.3595, 7.3583, 7.3568, 7.3556, 7.3625, 7.3673, 7.3791, 7.3788, 7.3817, 7.3839, 7.3834, 7.3825, 7.3851, 7.3838, 7.3795, 7.3789, 7.3778, 7.377, 7.3796, 7.3786, 7.3772, 7.3798, 7.3788, 7.3788, 7.3777, 7.3767, 7.3756, 7.3875, 7.3903, 7.389, 7.3917, 7.3904, 7.393, 7.3919, 7.3906, 7.3901, 7.3892, 7.3886, 7.3875, 7.386, 7.3859, 7.3847, 7.3835, 7.3821, 7.3811, 7.3806, 7.3801, 7.3791, 7.3779, 7.3768, 7.3765, 7.3755, 7.3781, 7.3809, 7.3842, 7.3882, 7.3928, 7.3915, 7.39, 7.389, 7.3918, 7.391, 7.3898, 7.3885, 7.3877, 7.387, 7.3864, 7.385, 7.3838, 7.3859, 7.3847, 7.3835, 7.3862, 7.3851, 7.384, 7.3826, 7.3817, 7.3813, 7.3807, 7.3794, 7.3818, 7.3811, 7.3796, 7.3785, 7.3778, 7.3769, 7.3762, 7.3766, 7.3802, 7.379, 7.3779, 7.3768, 7.3766, 7.3756, 7.3748, 7.374, 7.3728, 7.3723, 7.372, 7.371, 7.375, 7.3736, 7.3769, 7.3758, 7.3744, 7.3776, 7.3807, 7.3808, 7.3798, 7.3822, 7.3815, 7.3843, 7.3846, 7.3837, 7.3837, 7.3827, 7.3814, 7.3806, 7.3803, 7.3791, 7.3813, 7.3808, 7.38, 7.3791, 7.3777, 7.3783, 7.3783, 7.3783, 7.3778, 7.3734, 7.3721, 7.3716, 7.3737, 7.3731, 7.3719, 7.3716, 7.3705, 7.3707, 7.3694, 7.3682, 7.3671, 7.3704, 7.3694, 7.3689, 7.3676, 7.3663, 7.3652, 7.364, 7.3628, 7.3617, 7.3612, 7.3601, 7.3588, 7.3645, 7.3635, 7.3624, 7.3582, 7.3571, 7.3539, 7.3547, 7.3534, 7.3523, 7.3527, 7.3549, 7.3537, 7.3527, 7.3554, 7.3543, 7.3533, 7.3523, 7.3511, 7.3482, 7.347, 7.3494, 7.3491, 7.3479, 7.3501, 7.3491, 7.348, 7.3469, 7.3464, 7.3454, 7.3455, 7.3443, 7.3441, 7.343, 7.3424, 7.3449, 7.3448, 7.3435, 7.3433, 7.3428, 7.3424, 7.3424, 7.345, 7.344, 7.343, 7.3417, 7.3406, 7.3431, 7.3419, 7.341, 7.3399, 7.339, 7.3384, 7.3382, 7.341, 7.3397, 7.3392, 7.3382, 7.3371, 7.3358, 7.3348, 7.3338, 7.3334, 7.3328, 7.3315, 7.3303, 7.3291, 7.3278, 7.3265, 7.3253, 7.3243, 7.3268, 7.3263, 7.3263, 7.3393, 7.3383, 7.3371, 7.3367, 7.3332, 7.3365, 7.3389, 7.3387, 7.3381, 7.3375, 7.3399, 7.3425, 7.3423, 7.3448, 7.3442, 7.3432, 7.3455, 7.3443, 7.3433, 7.3427, 7.3417, 7.344, 7.3501, 7.35, 7.3499, 7.3489, 7.3484, 7.3479, 7.3471, 7.3464, 7.3461, 7.3464, 7.3459, 7.3449, 7.3438, 7.3426, 7.3419, 7.3413, 7.3403, 7.3465, 7.3459, 7.3448, 7.3445, 7.3436, 7.3424, 7.3416, 7.344, 7.3429, 7.3425, 7.3435, 7.3431, 7.3461, 7.3438, 7.343, 7.3455, 7.3444, 7.344, 7.3439, 7.3428, 7.3418, 7.3408, 7.3432, 7.3428, 7.3428, 7.3428, 7.342, 7.3416, 7.3413, 7.3403, 7.3425, 7.3413, 7.3403, 7.3401, 7.3396, 7.3396, 7.3415, 7.3436, 7.343, 7.342, 7.3444, 7.3497, 7.3487, 7.3482, 7.3479, 7.3467, 7.3456, 7.3458, 7.3452, 7.3454, 7.3442, 7.3472, 7.3475, 7.3443, 7.3466, 7.3464, 7.3463, 7.3485, 7.348, 7.3479, 7.3486, 7.3482, 7.3504, 7.3504, 7.3528, 7.3521, 7.3543, 7.3532, 7.3523, 7.3517, 7.3509, 7.3505, 7.3526, 7.3513, 7.3501, 7.349, 7.348, 7.3501, 7.3489, 7.3479, 7.3467, 7.346, 7.345, 7.3471, 7.3469, 7.3462, 7.3458, 7.3447, 7.3471, 7.3468, 7.3465, 7.3456, 7.3479, 7.3501, 7.349, 7.348, 7.3538, 7.353, 7.3527, 7.3517, 7.3543, 7.3657, 7.3677, 7.3668, 7.3723, 7.3726, 7.3717, 7.3717, 7.3706, 7.3697, 7.3691, 7.371, 7.3702, 7.3694, 7.3688, 7.3686, 7.3684, 7.3685, 7.3679, 7.3668, 7.367, 7.369, 7.3709, 7.3699, 7.3689, 7.3679, 7.3674, 7.3663, 7.3651, 7.3649, 7.3638, 7.3637, 7.3626, 7.3678, 7.3698, 7.369, 7.3664, 7.3693, 7.3696, 7.3719, 7.371, 7.3699, 7.3692, 7.3685, 7.3675, 7.3664, 7.363, 7.362, 7.361, 7.3599, 7.3594, 7.3585, 7.3581, 7.357, 7.3591, 7.3585, 7.3576, 7.3566, 7.3556, 7.3546, 7.354, 7.3618, 7.3638, 7.3627, 7.3617, 7.3608, 7.3599, 7.3589, 7.3578, 7.3572, 7.3562, 7.3557, 7.358, 7.357, 7.3565, 7.3555, 7.3544, 7.3538, 7.3504, 7.3541, 7.3531, 7.3526, 7.3515, 7.3504, 7.3494, 7.3488, 7.3486, 7.3479, 7.3477, 7.3444, 7.3433, 7.352, 7.3516, 7.3513, 7.3536, 7.3528, 7.3534, 7.3552, 7.3561, 7.3559, 7.3559, 7.3555, 7.355, 7.3543, 7.3533, 7.3526, 7.3518, 7.3509, 7.3499, 7.3488, 7.3486, 7.3475, 7.3466, 7.3486, 7.3505, 7.3505, 7.3495, 7.3487, 7.3483, 7.3482, 7.35, 7.3517, 7.3486, 7.3482, 7.3477, 7.3468, 7.3487, 7.3476, 7.3466, 7.3455, 7.3421, 7.3412, 7.3402, 7.3392, 7.3382, 7.3373, 7.3347, 7.334, 7.3358, 7.3353, 7.3344, 7.3335, 7.3326, 7.332, 7.3309, 7.3302, 7.3291, 7.3289, 7.331, 7.33, 7.329, 7.328, 7.327, 7.3261, 7.3254, 7.3243, 7.3264, 7.3284, 7.3274, 7.3275, 7.3324, 7.3345, 7.3337, 7.3335, 7.3326, 7.3318, 7.3316, 7.3319, 7.332, 7.3318, 7.331, 7.3303, 7.3299, 7.332, 7.334, 7.3332, 7.3325, 7.3327, 7.3348, 7.3342, 7.3344, 7.3362, 7.3353, 7.3358, 7.3379, 7.337, 7.3361, 7.3353, 7.3345, 7.3345, 7.3363, 7.3356, 7.335, 7.3342, 7.3389, 7.3379, 7.3369, 7.3389, 7.3387, 7.3385, 7.3378, 7.3369, 7.3363, 7.3359, 7.335, 7.3347, 7.3337, 7.3334, 7.3324, 7.3319, 7.3311, 7.3303, 7.33, 7.332, 7.3344, 7.3342, 7.3332, 7.335, 7.3343, 7.3332, 7.3326, 7.3372, 7.3424, 7.3421, 7.3412, 7.343, 7.3536, 7.3526, 7.352, 7.351, 7.35, 7.3495, 7.3512, 7.3512, 7.3529, 7.3519, 7.3519, 7.3515, 7.3512, 7.3505, 7.3503, 7.3493, 7.3494, 7.3487, 7.3505, 7.3529, 7.3531, 7.3524, 7.3543, 7.3513, 7.3487, 7.348, 7.3497, 7.3495, 7.3513, 7.3511, 7.3503, 7.3495, 7.3512, 7.3503, 7.3495, 7.3493, 7.3485, 7.3476, 7.3469, 7.3468, 7.3489, 7.3481, 7.347, 7.3491, 7.3492, 7.3486, 7.3536, 7.3556, 7.3554, 7.3574, 7.3566, 7.3567, 7.3565, 7.3587, 7.3583, 7.3575, 7.3567, 7.3564, 7.3583, 7.3603, 7.3602, 7.3626, 7.3619, 7.3609, 7.3602, 7.3594, 7.3584, 7.358, 7.3597, 7.359, 7.358, 7.3579, 7.3573, 7.359, 7.3609, 7.361, 7.3607, 7.3604, 7.3622, 7.3641, 7.3659, 7.3654, 7.3653, 7.3648, 7.364, 7.363, 7.3621, 7.3613, 7.3609, 7.3606, 7.3598, 7.3592, 7.3612, 7.3603, 7.3593, 7.3592, 7.3583, 7.3575, 7.3593, 7.3585, 7.3603, 7.3593, 7.3586, 7.3586, 7.3606, 7.3602, 7.3592, 7.3584, 7.3578, 7.3586, 7.3603, 7.36, 7.3592, 7.3583, 7.3604, 7.3609, 7.361, 7.3601, 7.3594, 7.3586, 7.3579, 7.3573, 7.3566, 7.3557, 7.3549, 7.3541, 7.3537, 7.3532, 7.3532, 7.3535, 7.3526, 7.3544, 7.356, 7.3558, 7.3548, 7.3567, 7.3563, 7.3554, 7.355, 7.3569, 7.3561, 7.3579, 7.3572, 7.3594, 7.3591, 7.3581, 7.3617, 7.3609, 7.3602, 7.3594, 7.3586, 7.3581, 7.3574, 7.3568, 7.3584, 7.3582, 7.3557, 7.3531, 7.3523, 7.3516, 7.3513, 7.3508, 7.3505, 7.3522, 7.3517, 7.3516, 7.3508, 7.3505, 7.3496, 7.3487, 7.3457, 7.3462, 7.3457, 7.3427, 7.3418, 7.3434, 7.343, 7.3423, 7.3418, 7.3409, 7.3427, 7.34, 7.3395, 7.3393, 7.3409, 7.3407, 7.3407, 7.3406, 7.3401, 7.3393, 7.3383, 7.34, 7.3393, 7.341, 7.3412, 7.3412, 7.3404, 7.3399, 7.3417, 7.3437, 7.3455, 7.3447, 7.3465, 7.3457, 7.3475, 7.3466, 7.3458, 7.3452, 7.3442, 7.3435, 7.3426, 7.3426, 7.3446, 7.3445, 7.344, 7.3436, 7.3434, 7.3455, 7.3428, 7.3419, 7.341, 7.3402, 7.3372, 7.3367, 7.3383, 7.3381, 7.3382, 7.3378, 7.3373, 7.3364, 7.3361, 7.3377, 7.3371, 7.3365, 7.3356, 7.3348, 7.3341, 7.3336, 7.3333, 7.3324, 7.3315, 7.3306, 7.3302, 7.3306, 7.3298, 7.3271, 7.3264, 7.3259, 7.3253, 7.327, 7.3263, 7.3259, 7.3278, 7.3275, 7.3268, 7.3265, 7.3283, 7.3258, 7.325, 7.3231, 7.3249, 7.3265, 7.328, 7.3271, 7.3264, 7.3257, 7.325, 7.3246, 7.3248, 7.3239, 7.3303, 7.3296, 7.3286, 7.3283, 7.3274, 7.3272, 7.3278, 7.3295, 7.3312, 7.3303, 7.3301, 7.3292, 7.3287, 7.3278, 7.3276, 7.3276, 7.3272, 7.3265, 7.3258, 7.3253, 7.3245, 7.3264, 7.3264, 7.3257, 7.325, 7.3244, 7.3263, 7.3265, 7.3281, 7.3278, 7.327, 7.3262, 7.3253, 7.3245, 7.3262, 7.3254, 7.3246, 7.3238, 7.324, 7.324, 7.3234, 7.3273, 7.3267, 7.3262, 7.3255, 7.3271, 7.3285, 7.328, 7.3295, 7.331, 7.3303, 7.3302, 7.3308, 7.3324, 7.3381, 7.3379, 7.3374, 7.3371, 7.3363, 7.3365, 7.3357, 7.3375, 7.3367, 7.3361, 7.3352, 7.3344, 7.334, 7.3332, 7.3326, 7.3324, 7.3321, 7.3339, 7.3332, 7.3369, 7.3365, 7.3356, 7.3349, 7.3366, 7.3357, 7.3349, 7.335, 7.3341, 7.3333, 7.3326, 7.3324, 7.3316, 7.3309, 7.33, 7.3297, 7.329, 7.3291, 7.3282, 7.3276, 7.3269, 7.3283, 7.3277, 7.3274, 7.3265, 7.3261, 7.3275, 7.327, 7.327, 7.3288, 7.328, 7.3272, 7.3267, 7.3283, 7.3297, 7.3292, 7.3284, 7.3279, 7.3274, 7.3275, 7.3268, 7.3261, 7.3257, 7.3252, 7.3268, 7.3284, 7.3335, 7.334, 7.336, 7.3357, 7.3372, 7.3367, 7.3382, 7.3382, 7.3376, 7.3374, 7.3392, 7.3384, 7.3384, 7.338, 7.3395, 7.3389, 7.3382, 7.3399, 7.3393, 7.3408, 7.3407, 7.3426, 7.3424, 7.3416, 7.3433, 7.3434, 7.3452, 7.3444, 7.3437, 7.3433, 7.3429, 7.3422, 7.3417, 7.3414, 7.3407, 7.3405, 7.3419, 7.3435, 7.3442, 7.3443, 7.349, 7.3483, 7.3535, 7.3549, 7.3541, 7.3559, 7.3553, 7.3572, 7.3564, 7.3625, 7.3618, 7.3618, 7.3634, 7.3651, 7.3646, 7.3645, 7.3659, 7.3652, 7.3667, 7.3664, 7.3657, 7.3655, 7.3648, 7.3663, 7.3658, 7.3656, 7.3652, 7.3644, 7.3659, 7.3651, 7.3649, 7.3641, 7.3635, 7.3632, 7.3646, 7.3641, 7.3635, 7.3631, 7.3669, 7.3667, 7.3667, 7.3667, 7.366, 7.3652, 7.3645, 7.3637, 7.3629, 7.3624, 7.3616, 7.3608, 7.36, 7.3615, 7.3607, 7.3601, 7.3617, 7.361, 7.3603, 7.3595, 7.3633, 7.3631, 7.363, 7.3622, 7.3623, 7.3619, 7.3634, 7.3626, 7.3643, 7.3639, 7.3631, 7.3625, 7.3617, 7.3611, 7.3619, 7.3624, 7.3616, 7.3594, 7.3621, 7.3613, 7.3607, 7.3663, 7.3658, 7.3653, 7.3646, 7.3639, 7.3633, 7.3627, 7.3623, 7.362, 7.3613, 7.3605, 7.3597, 7.362, 7.3613, 7.3629, 7.3621, 7.3615, 7.3607, 7.3604, 7.3601, 7.3597, 7.359, 7.3638, 7.3631, 7.3623, 7.3619, 7.3633, 7.365, 7.3643, 7.3636, 7.3631, 7.3629, 7.3625, 7.3618, 7.3632, 7.3646, 7.3644, 7.3636, 7.3632, 7.3625, 7.3641, 7.3639, 7.3639, 7.3636, 7.3633, 7.3653, 7.365, 7.3663, 7.3662, 7.3654, 7.3646, 7.3664, 7.3658, 7.3657, 7.365, 7.3646, 7.3641, 7.3656, 7.3649, 7.3646, 7.366, 7.3654, 7.3668, 7.3661, 7.3659, 7.3673, 7.3687, 7.3681, 7.3673, 7.3697, 7.3691, 7.3686, 7.3681, 7.3737, 7.3731, 7.3747, 7.3761, 7.3754, 7.375, 7.3764, 7.3758, 7.3771, 7.3766, 7.3779, 7.3772, 7.3764, 7.3758, 7.3761, 7.3778, 7.3777, 7.3769, 7.3762, 7.3777, 7.3779, 7.3794, 7.3789, 7.3786, 7.3778, 7.3772, 7.3766, 7.3782, 7.378, 7.376, 7.3754, 7.3746, 7.3762, 7.3755, 7.3747, 7.374, 7.3736, 7.3728, 7.3721, 7.3715, 7.3708, 7.3704, 7.37, 7.3716, 7.3708, 7.3704, 7.3697, 7.369, 7.3703, 7.3696, 7.3689, 7.3681, 7.3659, 7.3652, 7.3649, 7.3647, 7.3655, 7.3694, 7.3689, 7.3705, 7.3719, 7.3713, 7.371, 7.3705, 7.3703, 7.3697, 7.3691, 7.3691, 7.3684, 7.3678, 7.3679, 7.3676, 7.369, 7.3688, 7.3691, 7.3683, 7.3677, 7.3673, 7.3668, 7.3646, 7.3645, 7.3659, 7.3652, 7.3648, 7.3645, 7.3638, 7.3634, 7.3631, 7.3631, 7.3645, 7.3657, 7.3651, 7.3645, 7.3638, 7.3632, 7.3684, 7.3698, 7.369, 7.3686, 7.3681, 7.3673, 7.3671, 7.3671, 7.3684, 7.3677, 7.3669, 7.3661, 7.3657, 7.3652, 7.3666, 7.3646, 7.3643, 7.3656, 7.3652, 7.3654, 7.3649, 7.3646, 7.3644, 7.3638, 7.3635, 7.3628, 7.3621, 7.3613, 7.3608, 7.3622, 7.3616, 7.3613, 7.3635, 7.3633, 7.3676, 7.367, 7.3665, 7.3658, 7.3653, 7.3648, 7.364, 7.3634, 7.3631, 7.3629, 7.3626, 7.3641, 7.3644, 7.364, 7.3639, 7.3657, 7.3649, 7.3664, 7.3663, 7.366, 7.3674, 7.3672, 7.3667, 7.3662, 7.3655, 7.3652, 7.3666, 7.3664, 7.3658, 7.365, 7.3648, 7.3643, 7.3636, 7.3635, 7.3629, 7.3622, 7.3616, 7.3612, 7.3624, 7.3638, 7.3637, 7.3633, 7.3627, 7.362, 7.3637, 7.3636, 7.3629, 7.3629, 7.3642, 7.364, 7.3654, 7.3657, 7.365, 7.3662, 7.366, 7.37, 7.3698, 7.3725, 7.3721, 7.3714, 7.3712, 7.3743, 7.3737, 7.3713, 7.3706, 7.37, 7.3712, 7.3689, 7.3688, 7.3681, 7.3678, 7.3674, 7.3688, 7.3692, 7.3686, 7.3681, 7.3673, 7.3667, 7.3773, 7.3766, 7.3759, 7.3792, 7.3791, 7.3804, 7.3799, 7.3792, 7.3785, 7.3779, 7.3792, 7.3787, 7.3782, 7.3782, 7.3795, 7.381, 7.3802, 7.3799, 7.3792, 7.3785, 7.3797, 7.3793, 7.3806, 7.3798, 7.3794, 7.3792, 7.3807, 7.3823, 7.3816, 7.3809, 7.3823, 7.3821, 7.3834, 7.3828, 7.3842, 7.3835, 7.3828, 7.382, 7.3819, 7.3833, 7.386, 7.3853, 7.3849, 7.385, 7.3845, 7.3839, 7.3832, 7.3824, 7.3833, 7.3829, 7.3823, 7.3838, 7.3832, 7.3864, 7.3863, 7.3863, 7.3883, 7.3876, 7.3869, 7.3862, 7.3855, 7.3848, 7.385, 7.3844, 7.3859, 7.3853, 7.3868, 7.3869, 7.3865, 7.3859, 7.3872, 7.3864, 7.3879, 7.3873, 7.3866, 7.3866, 7.3859, 7.3853, 7.3865, 7.3895, 7.3894, 7.3887, 7.389, 7.3905, 7.3919, 7.3917, 7.3914, 7.3925, 7.3918, 7.393, 7.3926, 7.394, 7.3938, 7.3932, 7.3947, 7.3941, 7.3955, 7.395, 7.3947, 7.3962, 7.3956, 7.395, 7.3948, 7.3944, 7.3945, 7.3941, 7.3935, 7.3929, 7.3943, 7.3944, 7.3938, 7.3932, 7.3926, 7.3972, 7.3972, 7.3965, 7.3958, 7.3955, 7.3955, 7.3952, 7.3951, 7.3945, 7.3939, 7.3966, 7.396, 7.3956, 7.395, 7.3943, 7.3937, 7.3931, 7.3927, 7.3921, 7.3935, 7.3937, 7.3954, 7.3965, 7.3959, 7.3957, 7.397, 7.3964, 7.396, 7.3957, 7.3951, 7.3945, 7.3939, 7.3932, 7.3945, 7.3957, 7.3954, 7.3947, 7.3941, 7.3935, 7.3946, 7.3944, 7.3938, 7.3932, 7.3926, 7.3919, 7.3951, 7.3945, 7.3959, 7.3957, 7.3936, 7.3929, 7.3924, 7.3919, 7.3899, 7.3913, 7.3916, 7.3956, 7.4049, 7.4064, 7.4064, 7.4075, 7.4069, 7.408, 7.4074, 7.4071, 7.4064, 7.4076, 7.4069, 7.4065, 7.4059, 7.4071, 7.4049, 7.4062, 7.4075, 7.4069, 7.4064, 7.4077, 7.407, 7.4067, 7.4061, 7.4061, 7.4055, 7.4049, 7.4029, 7.4023, 7.4021, 7.4037, 7.4031, 7.4045, 7.404, 7.4042, 7.4042, 7.4054, 7.4084, 7.4079, 7.4075, 7.4068, 7.4068, 7.4064, 7.4058, 7.4051, 7.4052, 7.4065, 7.4076, 7.4074, 7.4073, 7.4068, 7.4065, 7.4062, 7.4056, 7.4053, 7.405, 7.4043, 7.4039, 7.4053, 7.4068, 7.4069, 7.4062, 7.4041, 7.404, 7.4036, 7.4051, 7.4049, 7.4043, 7.4055, 7.4035, 7.403, 7.4025, 7.402, 7.4013, 7.3995, 7.3991, 7.3972, 7.395, 7.3944, 7.3938, 7.3949, 7.3944, 7.3941, 7.3941, 7.3935, 7.3929, 7.3927, 7.3922, 7.3918, 7.3912, 7.3909, 7.389, 7.3889, 7.3884, 7.3882, 7.3876, 7.3873, 7.3871, 7.3864, 7.3844, 7.3839, 7.3834, 7.383, 7.3826, 7.3819, 7.3813, 7.3809, 7.3808, 7.3822, 7.3819, 7.3814, 7.3796, 7.3792, 7.3787, 7.3781, 7.3776, 7.3788, 7.3801, 7.3814, 7.3793, 7.3787, 7.3799, 7.3796, 7.38, 7.3794, 7.3807, 7.3805, 7.3801, 7.3797, 7.3809, 7.3804, 7.3819, 7.3835, 7.3829, 7.3823, 7.3836, 7.3831, 7.3825, 7.3838, 7.3834, 7.3846, 7.3839, 7.3833, 7.383, 7.3828, 7.3822, 7.3816, 7.3828, 7.3822, 7.3823, 7.3834, 7.3829, 7.3824, 7.3817, 7.3811, 7.3829, 7.3823, 7.3823, 7.3817, 7.3814, 7.3811, 7.3805, 7.3803, 7.3797, 7.3791, 7.377, 7.3766, 7.376, 7.3777, 7.379, 7.3784, 7.3778, 7.3772, 7.3753, 7.3747, 7.3742, 7.3741, 7.3739, 7.3741, 7.3745, 7.3739, 7.3719, 7.3701, 7.3682, 7.3677, 7.368, 7.3693, 7.3688, 7.37, 7.3694, 7.3705, 7.37, 7.3714, 7.3712, 7.3707, 7.3701, 7.3699, 7.3694, 7.3688, 7.37, 7.3713, 7.3706, 7.3703, 7.3696, 7.3693, 7.3705, 7.3699, 7.3698, 7.3727, 7.3726, 7.372, 7.3714, 7.3707, 7.3704, 7.37, 7.3697, 7.3693, 7.3688, 7.3688, 7.3683, 7.3677, 7.3675, 7.3721, 7.3703, 7.37, 7.3703, 7.3699, 7.3695, 7.3711, 7.3707, 7.3703, 7.3714, 7.3711, 7.3705, 7.37, 7.3699, 7.3696, 7.369, 7.3684, 7.3679, 7.3673, 7.3671, 7.3667, 7.3661, 7.3655, 7.3652, 7.3649, 7.3645, 7.3656, 7.3655, 7.3667, 7.3679, 7.3673, 7.3667, 7.366, 7.3655, 7.3652, 7.3647, 7.3643, 7.3637, 7.3631, 7.3613, 7.3607, 7.3605, 7.3599, 7.3597, 7.3593, 7.3587, 7.3583, 7.358, 7.3577, 7.3572, 7.3566, 7.3563, 7.3558, 7.3556, 7.3551, 7.3548, 7.3543, 7.3538, 7.3535, 7.3532, 7.353, 7.3526, 7.3522, 7.3535, 7.3534, 7.3531, 7.3562, 7.3556, 7.3567, 7.3588, 7.3573, 7.3587, 7.3599, 7.3609, 7.3621, 7.3603, 7.3601, 7.3599, 7.3593, 7.3589, 7.3584, 7.3581, 7.3576, 7.3576, 7.357, 7.3591, 7.3585, 7.358, 7.3581, 7.3577, 7.3557, 7.3553, 7.3547, 7.3545, 7.3556, 7.3567, 7.3562, 7.3558, 7.3556, 7.3552, 7.3547, 7.356, 7.3554, 7.3555, 7.355, 7.3562, 7.356, 7.3554, 7.3551, 7.3545, 7.3541, 7.354, 7.3534, 7.3528, 7.3522, 7.3521, 7.3514, 7.3524, 7.3518, 7.3512, 7.3526, 7.3521, 7.3503, 7.3499, 7.3494, 7.3522, 7.3519, 7.353, 7.354, 7.3534, 7.353, 7.3528, 7.3524, 7.3523, 7.3536, 7.3535, 7.3529, 7.3523, 7.3517, 7.3497, 7.351, 7.3524, 7.3518, 7.353, 7.3526, 7.3538, 7.3548, 7.3544, 7.354, 7.3535, 7.3534, 7.3536, 7.355, 7.3547, 7.3547, 7.3541, 7.3552, 7.3568, 7.3564, 7.3558, 7.3552, 7.3551, 7.3545, 7.3545, 7.3546, 7.3545, 7.3544, 7.3543, 7.3555, 7.3566, 7.358, 7.3575, 7.3569, 7.3564, 7.3548, 7.3545, 7.354, 7.354, 7.3538, 7.3534, 7.3528, 7.3526, 7.3538, 7.3536, 7.3548, 7.3545, 7.3539, 7.3538, 7.3536, 7.3532, 7.3527, 7.353, 7.3527, 7.3524, 7.3522, 7.3519, 7.3515, 7.3509, 7.3505, 7.3516, 7.3513, 7.3512, 7.3522, 7.3517, 7.3512, 7.3506, 7.3502, 7.3499, 7.3494, 7.3474, 7.3468, 7.3464, 7.3463, 7.3463, 7.3459, 7.3455, 7.3457, 7.3452, 7.3446, 7.3441, 7.3437, 7.3417, 7.3418, 7.3428, 7.3424, 7.3422, 7.3422, 7.342, 7.3416, 7.3429, 7.344, 7.3457, 7.3452, 7.3449, 7.345, 7.3445, 7.3441, 7.3424, 7.3409, 7.3404, 7.3399, 7.3399, 7.338, 7.3374, 7.3355, 7.3366, 7.3348, 7.3342, 7.3352, 7.3347, 7.3359, 7.3371, 7.3367, 7.3364, 7.3398, 7.3392, 7.3386, 7.3384, 7.3397, 7.3396, 7.3393, 7.3395, 7.3391, 7.3388, 7.3386, 7.338, 7.3364, 7.3345, 7.334, 7.3349, 7.3344, 7.3354, 7.335, 7.3333, 7.3343, 7.334, 7.3338, 7.3333, 7.333, 7.3327, 7.3321, 7.3317, 7.3312, 7.3306, 7.3316, 7.3312, 7.3328, 7.3358, 7.3353, 7.3351, 7.3346, 7.3341, 7.3354, 7.3349, 7.3349, 7.3343, 7.3338, 7.3349, 7.3343, 7.3342, 7.3352, 7.3363, 7.3361, 7.3358, 7.3354, 7.3353, 7.3348, 7.3358, 7.3371, 7.3412, 7.341, 7.3422, 7.342, 7.3417, 7.3412, 7.3411, 7.3423, 7.3421, 7.3406, 7.3401, 7.3383, 7.3377, 7.3377, 7.3372, 7.3384, 7.3383, 7.3368, 7.3363, 7.3358, 7.3371, 7.3371, 7.3367, 7.3362, 7.3363, 7.3359, 7.3392, 7.3394, 7.3401, 7.34, 7.3399, 7.3394, 7.3392, 7.3388, 7.3383, 7.338, 7.3376, 7.3388, 7.34, 7.3409, 7.3409, 7.3404, 7.3399, 7.3395, 7.3394, 7.3395, 7.3395, 7.3392, 7.3389, 7.3387, 7.3382, 7.3377, 7.3388, 7.3382, 7.3377, 7.3374, 7.3384, 7.3396, 7.3396, 7.3391, 7.3389, 7.3388, 7.3397, 7.3391, 7.339, 7.3386, 7.3395, 7.339, 7.3401, 7.3413, 7.3408, 7.3403, 7.3399, 7.3394, 7.3381, 7.3376, 7.3371, 7.341, 7.3406, 7.3417, 7.3412, 7.3408, 7.3404, 7.34, 7.3396, 7.3394, 7.3409, 7.3407, 7.3408, 7.3405, 7.3404, 7.3398, 7.3393, 7.3399, 7.3383, 7.3381, 7.3377, 7.3372, 7.3371, 7.337, 7.3369, 7.3378, 7.3373, 7.3369, 7.3355, 7.335, 7.3344, 7.3327, 7.3324, 7.332, 7.3332, 7.3328, 7.3323, 7.3318, 7.3315, 7.331, 7.3306, 7.3315, 7.3313, 7.3308, 7.3305, 7.3303, 7.3305, 7.3304, 7.3305, 7.3316, 7.3316, 7.3297, 7.3293, 7.3305, 7.3303, 7.3299, 7.3293, 7.329, 7.33, 7.3295, 7.331, 7.3308, 7.3304, 7.3303, 7.3298, 7.3293, 7.3289, 7.3284, 7.3281, 7.3275, 7.3272, 7.3267, 7.3253, 7.3236, 7.3233, 7.3228, 7.3225, 7.3223, 7.3218, 7.3215, 7.3211, 7.3206, 7.3201, 7.3199, 7.3209, 7.3204, 7.3198, 7.3193, 7.3188, 7.3186, 7.3184, 7.3183, 7.3195, 7.3208, 7.3219, 7.3202, 7.3198, 7.3193, 7.322, 7.3218, 7.3215, 7.3212, 7.3207, 7.3207, 7.3217, 7.3219, 7.3215, 7.3212, 7.3209, 7.3208, 7.3221, 7.3217, 7.3212, 7.321, 7.3205, 7.3203, 7.3198, 7.3194, 7.3193, 7.3191, 7.3201, 7.3204, 7.3199, 7.3196, 7.3207, 7.3203, 7.3202, 7.32, 7.3199, 7.3183, 7.3178, 7.3175, 7.3185, 7.3183, 7.3183, 7.3178, 7.3175, 7.3173, 7.3168, 7.3168, 7.3163, 7.3158, 7.3154, 7.3152, 7.3148, 7.3159, 7.3199, 7.3194, 7.3189, 7.3184, 7.3182, 7.3177, 7.3176, 7.3171, 7.3166, 7.3177, 7.3188, 7.3188, 7.3184, 7.3179, 7.3179, 7.3174, 7.3184, 7.3181, 7.3176, 7.3185, 7.3195, 7.3193, 7.3203, 7.3199, 7.32, 7.3198, 7.3183, 7.3183, 7.3182, 7.3178, 7.3175, 7.3172, 7.3183, 7.3179, 7.318, 7.319, 7.32, 7.3195, 7.3206, 7.3206, 7.3201, 7.3196, 7.3199, 7.3196, 7.3207, 7.3208, 7.3204, 7.3202, 7.3186, 7.3169, 7.3168, 7.3184, 7.3179, 7.3173, 7.3173, 7.3167, 7.3163, 7.3164, 7.3163, 7.3159, 7.3158, 7.3153, 7.3148, 7.3146, 7.3144, 7.3141, 7.3137, 7.3132, 7.3127, 7.3129, 7.3153, 7.315, 7.3182, 7.3177, 7.3189, 7.3189, 7.3184, 7.3181, 7.3177, 7.3175, 7.3185, 7.3179, 7.3177, 7.3172, 7.3171, 7.3183, 7.3179, 7.3177, 7.3172, 7.3168, 7.3164, 7.3174, 7.3171, 7.3166, 7.3176, 7.3171, 7.3168, 7.3165, 7.3165, 7.3164, 7.3164, 7.3174, 7.3208, 7.3218, 7.3214, 7.3209, 7.3265, 7.3274, 7.3269, 7.3266, 7.3261, 7.3256, 7.3242, 7.324, 7.3236, 7.3232, 7.3232, 7.3232, 7.3227, 7.3245, 7.3277, 7.3279, 7.3277, 7.3294, 7.3291, 7.3287, 7.3297, 7.3307, 7.3302, 7.3299, 7.3294, 7.3292, 7.3287, 7.3282, 7.3284, 7.3294, 7.3303, 7.3299, 7.3296, 7.3291, 7.3288, 7.3287, 7.3298, 7.3294, 7.3289, 7.3284, 7.328, 7.3279, 7.328, 7.3278, 7.3277, 7.3275, 7.3271, 7.3272, 7.3268, 7.3264, 7.3281, 7.3278, 7.3289, 7.3284, 7.3296, 7.3292, 7.3294, 7.3292, 7.3288, 7.3286, 7.3282, 7.3282, 7.3293, 7.3291, 7.3302, 7.3299, 7.3295, 7.3306, 7.3305, 7.3303, 7.3301, 7.3296, 7.3294, 7.3298, 7.3293, 7.3289, 7.3288, 7.3283, 7.3267, 7.3265, 7.3262, 7.3265, 7.326, 7.3255, 7.3253, 7.3248, 7.3234, 7.3231, 7.3227, 7.3225, 7.3227, 7.3225, 7.3211, 7.3206, 7.3207, 7.3207, 7.3203, 7.3199, 7.3197, 7.3193, 7.3191, 7.3188, 7.3202, 7.3218, 7.3216, 7.3211, 7.3197, 7.3194, 7.3178, 7.3175, 7.3171, 7.3168, 7.3177, 7.3162, 7.316, 7.317, 7.318, 7.319, 7.3188, 7.3198, 7.3208, 7.3204, 7.3214, 7.3224, 7.3222, 7.3233, 7.3228, 7.3239, 7.3239, 7.3236, 7.3233, 7.322, 7.3208, 7.3204, 7.3199, 7.3196, 7.3193, 7.3188, 7.3185, 7.3181, 7.3177, 7.3173, 7.3184, 7.318, 7.3175, 7.3177, 7.3173, 7.317, 7.3167, 7.3169, 7.3166, 7.3164, 7.316, 7.3157, 7.3212, 7.3221, 7.3222, 7.3231, 7.324, 7.3235, 7.3234, 7.3229, 7.3214, 7.321, 7.3206, 7.3204, 7.3205, 7.3205, 7.3201, 7.3196, 7.3181, 7.3194, 7.3205, 7.32, 7.321, 7.3207, 7.3202, 7.3199, 7.3208, 7.3206, 7.3203, 7.32, 7.3211, 7.321, 7.3208, 7.3204, 7.3202, 7.3197, 7.3209, 7.3206, 7.3203, 7.3201, 7.3198, 7.3196, 7.3193, 7.3231, 7.3228, 7.3225, 7.3234, 7.323, 7.3214, 7.3225, 7.3236, 7.3233, 7.3232, 7.3228, 7.3235, 7.3233, 7.3244, 7.324, 7.3239, 7.3228, 7.3226, 7.3237, 7.3247, 7.3243, 7.3252, 7.325, 7.3259, 7.3267, 7.3267, 7.3278, 7.3287, 7.3272, 7.3267, 7.3262, 7.3263, 7.326, 7.3259, 7.3256, 7.3268, 7.3264, 7.3263, 7.3261, 7.3271, 7.3268, 7.3278, 7.3305, 7.329, 7.3287, 7.3273, 7.3268, 7.3264, 7.3261, 7.3256, 7.3242, 7.3237, 7.3233, 7.3234, 7.3231, 7.3241, 7.3237, 7.3237, 7.3233, 7.3232, 7.3228, 7.3237, 7.3233, 7.3228, 7.3237, 7.3236, 7.3235, 7.3244, 7.3244, 7.3239, 7.3235, 7.3232, 7.3229, 7.3226, 7.3225, 7.3235, 7.3246, 7.3245, 7.3241, 7.325, 7.3263, 7.3258, 7.3254, 7.3251, 7.326, 7.3269, 7.3265, 7.3267, 7.3262, 7.3257, 7.3254, 7.3249, 7.3248, 7.3251, 7.3251, 7.3247, 7.3246, 7.3243, 7.3241, 7.3251, 7.3274, 7.33, 7.3312, 7.3321, 7.3317, 7.3315, 7.3313, 7.3308, 7.3308, 7.3304, 7.3302, 7.3318, 7.3314, 7.3311, 7.337, 7.3368, 7.3354, 7.335, 7.3349, 7.3349, 7.3335, 7.3331, 7.3341, 7.3336, 7.3334, 7.333, 7.334, 7.3338, 7.3378, 7.3375, 7.3386, 7.3384, 7.3382, 7.3378, 7.3365, 7.3361, 7.3358, 7.3355, 7.3364, 7.3359, 7.3344, 7.334, 7.334, 7.3335, 7.3333, 7.3328, 7.3326, 7.3325, 7.3321, 7.333, 7.3325, 7.3321, 7.3316, 7.3312, 7.3322, 7.3322, 7.3323, 7.3318, 7.3343, 7.3339, 7.3325, 7.3321, 7.3317, 7.3312, 7.3308, 7.3305, 7.33, 7.3298, 7.3297, 7.33, 7.3296, 7.3308, 7.3304, 7.3299, 7.331, 7.331, 7.332, 7.3307, 7.3306, 7.3301, 7.3296, 7.3291, 7.3277, 7.3286, 7.3281, 7.3277, 7.3276, 7.3289, 7.3287, 7.3285, 7.3284, 7.328, 7.3276, 7.3272, 7.3268, 7.3253, 7.3249, 7.3247, 7.3256, 7.3264, 7.326, 7.3269, 7.3277, 7.3275, 7.3284, 7.3282, 7.3278, 7.3279, 7.3277, 7.3292, 7.3288, 7.3284, 7.3282, 7.3294, 7.329, 7.3286, 7.3282, 7.3281, 7.3277, 7.3275, 7.3284, 7.3282, 7.3281, 7.3283, 7.328, 7.3292, 7.3289, 7.3299, 7.3296, 7.3305, 7.3301, 7.3297, 7.3293, 7.3289, 7.3287, 7.3283, 7.3293, 7.3291, 7.3376, 7.3385, 7.3383, 7.3382, 7.338, 7.3378, 7.3397, 7.3393, 7.3401, 7.3409, 7.3406, 7.3402, 7.3389, 7.3375, 7.3384, 7.3395, 7.3391, 7.3378, 7.3377, 7.3363, 7.336, 7.337, 7.3368, 7.3367, 7.3367, 7.3363, 7.3363, 7.3361, 7.3357, 7.3354, 7.3353, 7.3349, 7.3344, 7.3353, 7.3339, 7.3335, 7.3331, 7.3339, 7.3335, 7.3332, 7.3318, 7.3315, 7.3315, 7.3311, 7.3306, 7.3316, 7.3316, 7.3311, 7.3309, 7.3305, 7.3303, 7.3313, 7.3299, 7.3308, 7.3304, 7.3304, 7.3291, 7.3276, 7.3272, 7.3269, 7.3265, 7.3274, 7.3284, 7.3282, 7.328, 7.3288, 7.3286, 7.3281, 7.3277, 7.3273, 7.3281, 7.3279, 7.3275, 7.3273, 7.3258, 7.3257, 7.3266, 7.3265, 7.3265, 7.3262, 7.3263, 7.3262, 7.326, 7.3268, 7.3265, 7.326, 7.3258, 7.3256, 7.3255, 7.3251, 7.3247, 7.3247, 7.3233, 7.3231, 7.3226, 7.3223, 7.3223, 7.3223, 7.3222, 7.3219, 7.322, 7.3218, 7.3216, 7.3228, 7.3226, 7.3224, 7.3219, 7.3218, 7.322, 7.3258, 7.3267, 7.3263, 7.3249, 7.3248, 7.3246, 7.3243, 7.3244, 7.3254, 7.3255, 7.3314, 7.331, 7.3308, 7.3305, 7.3304, 7.3305, 7.3305, 7.3303, 7.3298, 7.3295, 7.3294, 7.3292, 7.3304, 7.3301, 7.3301, 7.3306, 7.3304, 7.3301, 7.3302, 7.33, 7.3298, 7.3299, 7.3299, 7.3308, 7.3305, 7.3306, 7.3305, 7.3314, 7.3316, 7.3313, 7.3324, 7.3321, 7.3318, 7.3326, 7.3312, 7.33, 7.3297, 7.3284, 7.3294, 7.3303, 7.33, 7.331, 7.3309, 7.3306, 7.3305, 7.3292, 7.329, 7.3286, 7.3322, 7.332, 7.3318, 7.3304, 7.329, 7.329, 7.329, 7.3289, 7.3285, 7.3281, 7.3268, 7.3264, 7.3264, 7.3251, 7.3247, 7.3243, 7.3243, 7.3251, 7.3247, 7.3246, 7.3243, 7.3238, 7.3236, 7.3232, 7.3217, 7.3217, 7.3214, 7.321, 7.3205, 7.3202, 7.3189, 7.319, 7.3187, 7.3183, 7.3179, 7.3178, 7.3174, 7.3183, 7.3183, 7.3182, 7.318, 7.3176, 7.3174, 7.3175, 7.3174, 7.3172, 7.3169, 7.3165, 7.3174, 7.3172, 7.3168, 7.3166, 7.3163, 7.3161, 7.3148, 7.3146, 7.3142, 7.3151, 7.3159, 7.3157, 7.3165, 7.3162, 7.3148, 7.3147, 7.3155, 7.3153, 7.3149, 7.3157, 7.3156, 7.3153, 7.3149, 7.3145, 7.3145, 7.3143, 7.3139, 7.3136, 7.3135, 7.3146, 7.3155, 7.3164, 7.316, 7.316, 7.3164, 7.3151, 7.3139, 7.3126, 7.3125, 7.3123, 7.3118, 7.3127, 7.3126, 7.3124, 7.3133, 7.3144, 7.314, 7.3138, 7.3149, 7.3145, 7.3142, 7.3137, 7.3133, 7.3131, 7.3127, 7.3125, 7.3121, 7.3118, 7.3114, 7.311, 7.3106, 7.3106, 7.3104, 7.3099, 7.3107, 7.3104, 7.3103, 7.3101, 7.3099, 7.3096, 7.3092, 7.3093, 7.3094, 7.3115, 7.3123, 7.3125, 7.3123, 7.3119, 7.3117, 7.3113, 7.3121, 7.3108, 7.3103, 7.3099, 7.3095, 7.3092, 7.3088, 7.3084, 7.3103, 7.31, 7.3109, 7.3111, 7.3107, 7.3122, 7.3119, 7.3119, 7.3135, 7.3132, 7.3131, 7.3139, 7.3136, 7.3132, 7.314, 7.3149, 7.3156, 7.3165, 7.3167, 7.3166, 7.3164, 7.3173, 7.3169, 7.3165, 7.3161, 7.3157, 7.3153, 7.3152, 7.3149, 7.315, 7.3151, 7.3147, 7.3147, 7.3145, 7.3144, 7.3143, 7.314, 7.314, 7.3136, 7.3133, 7.3143, 7.3139, 7.3137, 7.3133, 7.3149, 7.3156, 7.3152, 7.3164, 7.3165, 7.3161, 7.317, 7.3168, 7.3166, 7.3162, 7.316, 7.3156, 7.3154, 7.3151, 7.315, 7.3149, 7.3147, 7.3158, 7.3157, 7.3145, 7.3132, 7.3141, 7.3139, 7.3135, 7.3143, 7.315, 7.3171, 7.3167, 7.3176, 7.3171, 7.317, 7.3222, 7.3218, 7.3215, 7.3211, 7.3219, 7.3217, 7.3226, 7.3222, 7.3244, 7.3241, 7.3249, 7.3247, 7.3254, 7.3253, 7.3255, 7.3251, 7.325, 7.3262, 7.327, 7.3268, 7.3264, 7.3261, 7.3258, 7.3255, 7.3263, 7.3262, 7.3264, 7.3262, 7.3258, 7.3254, 7.3253, 7.3251, 7.3289, 7.3286, 7.3293, 7.3302, 7.3303, 7.3299, 7.3296, 7.3304, 7.3312, 7.3309, 7.3317, 7.3314, 7.3311, 7.3319, 7.3327, 7.3327, 7.3323, 7.3322, 7.332, 7.3318, 7.3314, 7.3311, 7.3308, 7.3308, 7.3306, 7.3306, 7.3302, 7.3299, 7.331, 7.331, 7.3308, 7.3316, 7.3325, 7.3321, 7.3319, 7.3318, 7.3325, 7.3321, 7.3318, 7.3314, 7.3321, 7.333, 7.333, 7.3327, 7.3326, 7.3334, 7.3333, 7.3329, 7.3329, 7.3346, 7.3353, 7.3351, 7.3348, 7.3358, 7.3366, 7.3363, 7.3362, 7.3359, 7.3357, 7.3356, 7.3354, 7.335, 7.3346, 7.3354, 7.3352, 7.3348, 7.3344, 7.3356, 7.3352, 7.3352, 7.3352, 7.3361, 7.3358, 7.3359, 7.3355, 7.3343, 7.334, 7.3336, 7.3334, 7.3343, 7.334, 7.3337, 7.3336, 7.3332, 7.3339, 7.3337, 7.3333, 7.3329, 7.3328, 7.3337, 7.3334, 7.3333, 7.3332, 7.3329, 7.3325, 7.3325, 7.3322, 7.3319, 7.3318, 7.3316, 7.3313, 7.3313, 7.3311, 7.3307, 7.3306, 7.3304, 7.3304, 7.3301, 7.3309, 7.3308, 7.3315, 7.3313, 7.3312, 7.3309, 7.3306, 7.3304, 7.33, 7.3287, 7.3283, 7.3281, 7.3277, 7.3277, 7.3275, 7.3271, 7.3269, 7.3268, 7.3268, 7.3264, 7.3263, 7.326, 7.3262, 7.3259, 7.3267, 7.3264, 7.3262, 7.326, 7.3257, 7.3257, 7.3256, 7.3264, 7.3263, 7.3263, 7.3271, 7.327, 7.3268, 7.3266, 7.3266, 7.3262, 7.3261, 7.3257, 7.3255, 7.3253, 7.3249, 7.3246, 7.3245, 7.3253, 7.3251, 7.3258, 7.3267, 7.3264, 7.326, 7.325, 7.3258, 7.3256, 7.3252, 7.3249, 7.3252, 7.3241, 7.3238, 7.3246, 7.3243, 7.3243, 7.3255, 7.3251, 7.3254, 7.3242, 7.324, 7.3238, 7.3248, 7.3244, 7.3241, 7.3239, 7.3237, 7.3245, 7.3254, 7.3263, 7.326, 7.3257, 7.3254, 7.3251, 7.3261, 7.327, 7.3269, 7.3266, 7.3264, 7.3262, 7.3259, 7.3256, 7.3266, 7.3264, 7.3272, 7.3271, 7.328, 7.3276, 7.3287, 7.3296, 7.3296, 7.3293, 7.3294, 7.3293, 7.3294, 7.3293, 7.3303, 7.3312, 7.3309, 7.3306, 7.3304, 7.33, 7.33, 7.3298, 7.3307, 7.3305, 7.3313, 7.3309, 7.332, 7.3316, 7.3323, 7.3319, 7.3315, 7.3314, 7.3311, 7.3319, 7.3331, 7.3329, 7.335, 7.3351, 7.3351, 7.3349, 7.3348, 7.3346, 7.3345, 7.3342, 7.3341, 7.3348, 7.3345, 7.3342, 7.3338, 7.3336, 7.3334, 7.3331, 7.3343, 7.3339, 7.3336, 7.3333, 7.3331, 7.3328, 7.3335, 7.3344, 7.3342, 7.3353, 7.3349, 7.3345, 7.3342, 7.3342, 7.3338, 7.3335, 7.3334, 7.333, 7.3331, 7.3327, 7.3323, 7.3333, 7.3344, 7.3341, 7.334, 7.3337, 7.3356, 7.3363, 7.3359, 7.3357, 7.3366, 7.3366, 7.3364, 7.336, 7.3403, 7.3423, 7.3419, 7.3415, 7.3412, 7.3419, 7.3416, 7.3413, 7.3409, 7.3406, 7.3403, 7.34, 7.3399, 7.3395, 7.3403, 7.3402, 7.3398, 7.3397, 7.3393, 7.3393, 7.339, 7.3386, 7.3383, 7.338, 7.338, 7.3369, 7.3368, 7.3368, 7.3377, 7.3376, 7.3382, 7.3379, 7.3376, 7.3376, 7.3375, 7.3371, 7.3368, 7.3364, 7.336, 7.3358, 7.3354, 7.335, 7.3346, 7.3344, 7.3342, 7.334, 7.334, 7.3336, 7.3332, 7.3328, 7.3335, 7.3334, 7.3331, 7.3327, 7.3323, 7.3319, 7.3315, 7.3312, 7.3308, 7.3304, 7.3303, 7.33, 7.3288, 7.3306, 7.3302, 7.3303, 7.3301, 7.3352, 7.3348, 7.3367, 7.3375, 7.3371, 7.3367, 7.3374, 7.3372, 7.337, 7.339, 7.3387, 7.3387, 7.3385, 7.3383, 7.339, 7.3386, 7.3384, 7.3382, 7.3379, 7.3378, 7.3377, 7.3373, 7.337, 7.3382, 7.3414, 7.3411, 7.3407, 7.3405, 7.3403, 7.34, 7.3417, 7.3414, 7.3412, 7.3413, 7.3414, 7.3411, 7.341, 7.3407, 7.3414, 7.3412, 7.3409, 7.3405, 7.3402, 7.3405, 7.3401, 7.3397, 7.3395, 7.3391, 7.3389, 7.3385, 7.3382, 7.339, 7.3386, 7.3394, 7.339, 7.3386, 7.3383, 7.3372, 7.337, 7.3367, 7.3365, 7.3363, 7.3361, 7.3358, 7.3354, 7.3355, 7.3353, 7.3351, 7.3351, 7.3348, 7.3345, 7.3343, 7.334, 7.3339, 7.3347, 7.3345, 7.3341, 7.3338, 7.3335, 7.3331, 7.3339, 7.3335, 7.3333, 7.3334, 7.3331, 7.333, 7.3328, 7.3326, 7.3323, 7.3324, 7.3323, 7.3319, 7.3315, 7.3313, 7.3309, 7.3305, 7.3312, 7.3319, 7.3316, 7.3314, 7.3311, 7.3308, 7.3306, 7.3302, 7.33, 7.3298, 7.3294, 7.3301, 7.33, 7.3307, 7.3303, 7.3299, 7.3306, 7.3302, 7.3309, 7.3298, 7.3306, 7.3313, 7.3314, 7.331, 7.3306, 7.3302, 7.3298, 7.3305, 7.3311, 7.3313, 7.331, 7.3297, 7.3285, 7.3281, 7.3288, 7.3289, 7.3295, 7.3293, 7.3289, 7.3285, 7.3291, 7.328, 7.3286, 7.3286, 7.3294, 7.329, 7.3288, 7.3287, 7.3284, 7.3283, 7.3279, 7.3287, 7.3286, 7.3288, 7.3286, 7.3282, 7.3279, 7.3268, 7.3265, 7.3264, 7.3261, 7.3259, 7.3247, 7.3254, 7.3251, 7.3259, 7.3256, 7.3252, 7.3249, 7.3237, 7.3236, 7.3235, 7.3235, 7.3233, 7.3223, 7.3221, 7.3217, 7.3213, 7.321, 7.3228, 7.3225, 7.3222, 7.3221, 7.323, 7.3239, 7.3237, 7.3234, 7.3233, 7.3225, 7.3224, 7.3223, 7.3219, 7.3216, 7.3222, 7.3219, 7.3207, 7.3204, 7.3201, 7.3202, 7.3202, 7.3199, 7.3196, 7.3196, 7.3194, 7.3194, 7.3193, 7.3193, 7.3189, 7.3177, 7.3184, 7.3193, 7.3191, 7.3188, 7.3187, 7.3185, 7.3181, 7.3171, 7.317, 7.317, 7.3169, 7.3168, 7.3168, 7.3165, 7.3162, 7.3159, 7.3167, 7.3186, 7.3183, 7.318, 7.3197, 7.3186, 7.3184, 7.3196, 7.3193, 7.3192, 7.3189, 7.3187, 7.3185, 7.3192, 7.3189, 7.3185, 7.3184, 7.3182, 7.3179, 7.3176, 7.3177, 7.3184, 7.3172, 7.317, 7.3177, 7.3173, 7.317, 7.3171, 7.3179, 7.3177, 7.3174, 7.3172, 7.3169, 7.3167, 7.3174, 7.3171, 7.3178, 7.3179, 7.3187, 7.3184, 7.3192, 7.3189, 7.3177, 7.3175, 7.3183, 7.3184, 7.3183, 7.3181, 7.317, 7.3158, 7.3156, 7.3153, 7.3172, 7.3169, 7.3168, 7.3168, 7.3171, 7.317, 7.3177, 7.3177, 7.3175, 7.3174, 7.3182, 7.3189, 7.3186, 7.3183, 7.3181, 7.317, 7.3169, 7.3177, 7.3175, 7.3172, 7.3169, 7.3166, 7.3164, 7.3163, 7.3161, 7.3157, 7.3155, 7.3154, 7.3152, 7.3149, 7.3146, 7.3145, 7.3154, 7.3153, 7.3152, 7.3152, 7.3142, 7.3149, 7.3145, 7.3188, 7.3195, 7.3194, 7.3191, 7.3187, 7.3185, 7.3182, 7.3182, 7.3212, 7.3208, 7.3214, 7.321, 7.3208, 7.3216, 7.3214, 7.3221, 7.3221, 7.3218, 7.3214, 7.3212, 7.3209, 7.3216, 7.3213, 7.3212, 7.3209, 7.3208, 7.3205, 7.3205, 7.3202, 7.321, 7.3206, 7.3225, 7.3223, 7.3221, 7.322, 7.3227, 7.3224, 7.322, 7.3227, 7.3224, 7.3222, 7.3222, 7.322, 7.3216, 7.3222, 7.322, 7.3218, 7.3224, 7.3232, 7.3239, 7.3241, 7.3239, 7.3235, 7.3232, 7.3231, 7.3227, 7.3225, 7.3232, 7.3239, 7.3237, 7.3234, 7.3241, 7.3245, 7.3242, 7.324, 7.3237, 7.3245, 7.3243, 7.3285, 7.3282, 7.33, 7.329, 7.3288, 7.3285, 7.3285, 7.3284, 7.3283, 7.3282, 7.3282, 7.3279, 7.3279, 7.3275, 7.3273, 7.327, 7.3267, 7.3257, 7.3264, 7.3264, 7.326, 7.3261, 7.326, 7.3267, 7.3255, 7.3252, 7.3249, 7.3246, 7.3264, 7.3264, 7.3268, 7.3265, 7.3263, 7.327, 7.3268, 7.3266, 7.3264, 7.3272, 7.3269, 7.3267, 7.3273, 7.3272, 7.3269, 7.3268, 7.3276, 7.3274, 7.3272, 7.3268, 7.3257, 7.3246, 7.3234, 7.3241, 7.3238, 7.3237, 7.3234, 7.3231, 7.323, 7.3229, 7.3236, 7.3243, 7.3242, 7.3241, 7.3237, 7.3235, 7.3231, 7.324, 7.3247, 7.3244, 7.3244, 7.3245, 7.3233, 7.3231, 7.3227, 7.3226, 7.3223, 7.3221, 7.322, 7.3217, 7.3215, 7.3212, 7.3211, 7.3208, 7.3206, 7.3213, 7.321, 7.3208, 7.3205, 7.3204, 7.3207, 7.3215, 7.3222, 7.322, 7.3216, 7.3215, 7.3212, 7.3209, 7.3206, 7.3204, 7.3201, 7.3198, 7.3194, 7.3196, 7.3192, 7.319, 7.3191, 7.3188, 7.3187, 7.3187, 7.3184, 7.3192, 7.3191, 7.3188, 7.3185, 7.3184, 7.3181, 7.317, 7.3177, 7.3174, 7.3175, 7.3177, 7.3184, 7.3183, 7.3181, 7.3178, 7.3175, 7.3174, 7.3181, 7.317, 7.3176, 7.3186, 7.3185, 7.3182, 7.3179, 7.3186, 7.3185, 7.3184, 7.3172, 7.3179, 7.3185, 7.3192, 7.3188, 7.3185, 7.3183, 7.3179, 7.3176, 7.3172, 7.317, 7.3171, 7.3168, 7.3168, 7.3175, 7.3172, 7.3169, 7.3176, 7.3174, 7.3171, 7.3177, 7.3174, 7.3172, 7.3162, 7.316, 7.3157, 7.3167, 7.3164, 7.3163, 7.316, 7.3159, 7.3156, 7.3155, 7.3153, 7.3153, 7.3149, 7.3146, 7.3147, 7.3144, 7.3143, 7.3141, 7.3141, 7.3139, 7.3136, 7.3133, 7.313, 7.3127, 7.3123, 7.3131, 7.3128, 7.3125, 7.3122, 7.312, 7.3117, 7.3114, 7.311, 7.3109, 7.3106, 7.3102, 7.3098, 7.3095, 7.3092, 7.309, 7.309, 7.3107, 7.3107, 7.3104, 7.3103, 7.3101, 7.309, 7.3089, 7.3092, 7.31, 7.3107, 7.3106, 7.3114, 7.3154, 7.3166, 7.3162, 7.316, 7.3159, 7.3159, 7.3157, 7.3155, 7.3152, 7.3152, 7.3152, 7.315, 7.3147, 7.3146, 7.3143, 7.3141, 7.3141, 7.3137, 7.3134, 7.3132, 7.3139, 7.314, 7.3137, 7.3144, 7.3143, 7.3144, 7.3183, 7.318, 7.3205, 7.3203, 7.32, 7.32, 7.3197, 7.3204, 7.3193, 7.319, 7.3188, 7.3187, 7.3187, 7.3185, 7.3182, 7.3184, 7.3181, 7.3178, 7.3175, 7.3172, 7.3168, 7.3165, 7.3163, 7.317, 7.3176, 7.3173, 7.3171, 7.3168, 7.3164, 7.3163, 7.317, 7.3169, 7.3168, 7.3165, 7.3166, 7.3162, 7.316, 7.3157, 7.3184, 7.3183, 7.318, 7.3177, 7.3176, 7.3183, 7.318, 7.3177, 7.3175, 7.3172, 7.3169, 7.3166, 7.3165, 7.3164, 7.3171, 7.3169, 7.3168, 7.3165, 7.3162, 7.3159, 7.3158, 7.3155, 7.3162, 7.3159, 7.3158, 7.3165, 7.3164, 7.3161, 7.3158, 7.3155, 7.3161, 7.316, 7.3157, 7.3156, 7.3153, 7.3151, 7.3147, 7.3144, 7.3144, 7.3143, 7.3142, 7.315, 7.3151, 7.3157, 7.3154, 7.3151, 7.3158, 7.3148, 7.3147, 7.3146, 7.3143, 7.3144, 7.3141, 7.3138, 7.3136, 7.3133, 7.313, 7.3126, 7.3125, 7.3122, 7.3119, 7.3118, 7.3115, 7.3112, 7.3109, 7.3106, 7.3102, 7.311, 7.3109, 7.3108, 7.3104, 7.3101, 7.3098, 7.3097, 7.3096, 7.3095, 7.3092, 7.3089, 7.3086, 7.3084, 7.3082, 7.3079, 7.3078, 7.3076, 7.3073, 7.307, 7.3076, 7.3073, 7.307, 7.3067, 7.3064, 7.3064, 7.3063, 7.306, 7.3057, 7.3064, 7.3061, 7.3058, 7.3055, 7.3062, 7.3061, 7.3059, 7.3056, 7.3053, 7.3059, 7.3059, 7.3056, 7.3055, 7.3054, 7.3051, 7.3049, 7.3056, 7.3063, 7.3062, 7.3068, 7.3075, 7.3081, 7.3087, 7.3086, 7.3083, 7.308, 7.3077, 7.3075, 7.3072, 7.3078, 7.3077, 7.3074, 7.307, 7.3067, 7.3064, 7.3062, 7.3069, 7.3068, 7.3065, 7.3062, 7.3061, 7.306, 7.3076, 7.3073, 7.307, 7.3076, 7.3074, 7.3074, 7.3081, 7.3077, 7.3074, 7.3081, 7.3077, 7.3074, 7.3072, 7.307, 7.3067, 7.3064, 7.3072, 7.307, 7.3067, 7.3067, 7.3066, 7.3065, 7.3072, 7.308, 7.3077, 7.3076, 7.3073, 7.3071, 7.3071, 7.307, 7.3105, 7.3104, 7.3101, 7.3134, 7.3134, 7.3131, 7.3138, 7.3138, 7.3135, 7.3141, 7.314, 7.3141, 7.314, 7.314, 7.3137, 7.3134, 7.3134, 7.3134, 7.3131, 7.3137, 7.3136, 7.3134, 7.3141, 7.314, 7.3147, 7.3144, 7.3151, 7.3148, 7.3145, 7.3142, 7.3139, 7.3136, 7.3142, 7.3141, 7.3138, 7.3135, 7.3132, 7.3131, 7.313, 7.3127, 7.3124, 7.3131, 7.3129, 7.3145, 7.3142, 7.3141, 7.314, 7.3147, 7.3154, 7.3214, 7.3212, 7.3219, 7.3219, 7.3226, 7.3225, 7.3222, 7.322, 7.3217, 7.3214, 7.3212, 7.321, 7.3215, 7.3213, 7.3212, 7.3211, 7.3207, 7.3213, 7.321, 7.321, 7.3207, 7.3206, 7.3205, 7.3203, 7.32, 7.3203, 7.3201, 7.3207, 7.3206, 7.3205, 7.3203, 7.3204, 7.321, 7.3216, 7.3216, 7.3214, 7.3213, 7.321, 7.3216, 7.3223, 7.323, 7.323, 7.3228, 7.3226, 7.3223, 7.3223, 7.3222, 7.3221, 7.3218, 7.3224, 7.323, 7.3236, 7.3233, 7.3232, 7.3238, 7.3244, 7.3242, 7.324, 7.3237, 7.3234, 7.3232, 7.3229, 7.3235, 7.3232, 7.3229, 7.3227, 7.3226, 7.3224, 7.3221, 7.3228, 7.3237, 7.3235, 7.3235, 7.3232, 7.3231, 7.3238, 7.3238, 7.3237, 7.3243, 7.324, 7.3246, 7.3252, 7.3249, 7.3256, 7.3253, 7.3259, 7.3258, 7.3255, 7.3262, 7.3259, 7.3258, 7.3265, 7.3263, 7.3262, 7.3269, 7.3266, 7.3264, 7.327, 7.3276, 7.3273, 7.327, 7.3267, 7.3275, 7.3272, 7.3269, 7.3275, 7.3282, 7.3279, 7.3285, 7.3292, 7.3289, 7.3286, 7.3284, 7.329, 7.3287, 7.3285, 7.3301, 7.3302, 7.33, 7.3307, 7.3298, 7.3297, 7.3295, 7.3292, 7.3298, 7.3305, 7.3311, 7.3318, 7.3317, 7.3315, 7.3321, 7.332, 7.3326, 7.3325, 7.3326, 7.3325, 7.3322, 7.3319, 7.3318, 7.3315, 7.3312, 7.3312, 7.3311, 7.3316, 7.3322, 7.3319, 7.3316, 7.3323, 7.3322, 7.3321, 7.3318, 7.3317, 7.3324, 7.3324, 7.3322, 7.332, 7.3309, 7.3306, 7.3305, 7.3303, 7.331, 7.3316, 7.3313, 7.3313, 7.3311, 7.3312, 7.3311, 7.331, 7.3327, 7.3333, 7.333, 7.3328, 7.3325, 7.3322, 7.3321, 7.3322, 7.3319, 7.3316, 7.3313, 7.3312, 7.3309, 7.3306, 7.3314, 7.3312, 7.331, 7.3308, 7.3314, 7.3313, 7.3311, 7.3317, 7.3314, 7.3311, 7.3308, 7.3308, 7.3307, 7.3306, 7.3303, 7.3327, 7.3326, 7.3332, 7.3331, 7.3329, 7.3328, 7.3328, 7.3327, 7.3325, 7.3314, 7.3312, 7.3309, 7.3311, 7.3309, 7.3318, 7.3323, 7.332, 7.3329, 7.3329, 7.3326, 7.3326, 7.3327, 7.3325, 7.3331, 7.333, 7.3335, 7.3334, 7.334, 7.3338, 7.3336, 7.3342, 7.3348, 7.3348, 7.3345, 7.3342, 7.3339, 7.3345, 7.335, 7.3385, 7.3391, 7.3388, 7.3386, 7.3385, 7.3382, 7.3379, 7.3385, 7.3382, 7.3388, 7.3394, 7.3399, 7.3396, 7.3394, 7.34, 7.3415, 7.3412, 7.3409, 7.3407, 7.3405, 7.3403, 7.3393, 7.3391, 7.3398, 7.3401, 7.34, 7.3397, 7.3396, 7.3399, 7.3401, 7.3399, 7.3397, 7.3404, 7.341, 7.3408, 7.3414, 7.3421, 7.3418, 7.3425, 7.3422, 7.3422, 7.3421, 7.342, 7.3426, 7.3423, 7.3429, 7.3435, 7.3432, 7.3429, 7.3427, 7.3428, 7.3425, 7.3431, 7.3446], '192.168.122.111': [5.3396, 6.1361, 8.7935, 7.9497, 7.4503, 7.3561, 7.1921, 7.7341, 7.6337, 7.4372, 7.3846, 7.3117, 7.304, 7.1838, 7.1132, 7.1652, 7.1187, 7.0822, 7.0341, 6.9429, 7.1262, 7.1084, 7.0508, 7.0156, 7.1982, 7.1259, 7.0986, 7.4638, 7.4031, 7.3407, 7.2778, 7.2686, 7.3749, 7.3374, 7.4347, 7.3994, 7.3477, 7.3071, 7.2658, 7.2374, 7.1998, 7.1585, 7.3126, 7.5427, 7.5099, 7.4644, 7.5339, 7.6007, 7.6667, 7.6332, 7.5929, 7.5486, 7.5087, 7.4784, 7.4549, 7.4185, 7.4074, 7.3024, 7.2885, 7.2566, 7.2303, 7.211, 7.2744, 7.2736, 7.3355, 7.389, 7.3586, 7.3387, 7.3142, 7.2921, 7.2791, 7.2604, 7.2668, 7.2445, 7.2494, 7.2359, 7.29, 7.2634, 7.2426, 7.1627, 7.1517, 7.2616, 7.2404, 7.2467, 7.2321, 7.2138, 7.1918, 7.1739, 7.1641, 7.1488, 7.1302, 7.1099, 7.0905, 7.0232, 7.0051, 7.0425, 7.024, 7.0075, 7.0459, 7.0293, 7.0672, 7.0598, 7.0442, 7.0373, 7.0315, 7.0177, 7.0566, 7.0412, 7.0375, 7.0237, 7.0218, 7.0587, 7.0517, 7.0009, 6.9865, 6.9764, 6.9841, 7.0626, 7.048, 7.0377, 7.0348, 7.0209, 7.0107, 7.0422, 7.0298, 7.0246, 7.0126, 7.041, 7.0294, 7.02, 7.0524, 7.0831, 7.0796, 7.0693, 7.0288, 7.023, 7.0173, 7.0111, 7.009, 6.9986, 6.9951, 6.9521, 6.9483, 6.9512, 6.981, 6.9753, 6.9653, 6.993, 6.9843, 6.9749, 6.9818, 6.9741, 6.9654, 6.9573, 6.9568, 6.9492, 6.9444, 6.939, 6.9345, 6.9575, 6.9504, 6.9435, 6.9415, 6.9353, 6.9685, 6.9702, 6.9642, 6.9869, 6.9769, 6.9731, 6.9976, 6.995, 6.9589, 6.9801, 6.9768, 6.9758, 6.9983, 6.9972, 7.0177, 7.0115, 7.0069, 7.0098, 7.0043, 7.0468, 7.0385, 7.0326, 7.0966, 7.1179, 7.1132, 7.1047, 7.0787, 7.0701, 7.066, 7.0871, 7.0791, 7.0716, 7.1226, 7.1165, 7.111, 7.1047, 7.0967, 7.0889, 7.0864, 7.1055, 7.1015, 7.0934, 7.1152, 7.1084, 7.1015, 7.0996, 7.0948, 7.0985, 7.0924, 7.0907, 7.0846, 7.0795, 7.0793, 7.075, 7.093, 7.0687, 7.0619, 7.0795, 7.0724, 7.0704, 7.0644, 7.0636, 7.0801, 7.0734, 7.0667, 7.0483, 7.0411, 7.0345, 7.0296, 7.0467, 7.0403, 7.0372, 7.0343, 7.0311, 7.0299, 7.0355, 7.0323, 7.0262, 7.0192, 7.0263, 7.0199, 7.0165, 7.0143, 7.0079, 7.0225, 7.0414, 7.0359, 7.0299, 7.0234, 7.0208, 7.0201, 7.0366, 7.037, 7.0324, 7.0283, 7.0244, 7.0418, 7.0375, 7.0336, 7.0502, 7.0479, 7.0422, 7.0378, 7.0311, 7.0483, 7.0443, 7.038, 7.0316, 7.0488, 7.0438, 7.0577, 7.0563, 7.0513, 7.0496, 7.0476, 7.0474, 7.045, 7.042, 7.0371, 7.0511, 7.0472, 7.0423, 7.0386, 7.0321, 7.0301, 7.0242, 7.024, 7.0211, 7.0349, 7.0516, 7.0842, 7.0795, 7.0758, 7.0723, 7.0671, 7.062, 7.0565, 7.0504, 7.0447, 7.0434, 7.0899, 7.1056, 7.1217, 7.1185, 7.0974, 7.093, 7.0884, 7.1014, 7.0982, 7.0947, 7.0934, 7.104, 7.0999, 7.0942, 7.0908, 7.0871, 7.0814, 7.0781, 7.1044, 7.1001, 7.1115, 7.126, 7.1376, 7.1351, 7.1309, 7.128, 7.1226, 7.1178, 7.1129, 7.1264, 7.1213, 7.1045, 7.0996, 7.0963, 7.0922, 7.0881, 7.0863, 7.0985, 7.0936, 7.1043, 7.1174, 7.129, 7.1257, 7.1365, 7.1317, 7.1301, 7.1271, 7.1242, 7.1209, 7.1313, 7.1269, 7.1382, 7.1367, 7.1337, 7.146, 7.1442, 7.1746, 7.1756, 7.1733, 7.1685, 7.1924, 7.2027, 7.2003, 7.2246, 7.2212, 7.2324, 7.2284, 7.2254, 7.226, 7.2211, 7.2174, 7.2134, 7.2229, 7.2103, 7.2078, 7.2057, 7.2015, 7.1983, 7.1955, 7.1913, 7.1891, 7.1858, 7.1812, 7.1785, 7.174, 7.1696, 7.1654, 7.1631, 7.1589, 7.1895, 7.1853, 7.1807, 7.1784, 7.2338, 7.2298, 7.2511, 7.2494, 7.248, 7.2436, 7.2421, 7.2515, 7.2495, 7.2447, 7.2412, 7.2494, 7.259, 7.2555, 7.2523, 7.2892, 7.2847, 7.2931, 7.302, 7.3133, 7.3092, 7.3062, 7.3034, 7.299, 7.2979, 7.2933, 7.3022, 7.2978, 7.2932, 7.3014, 7.2967, 7.3055, 7.3018, 7.3027, 7.2996, 7.2948, 7.3051, 7.3007, 7.3123, 7.3085, 7.3102, 7.3057, 7.3026, 7.2985, 7.3065, 7.316, 7.3237, 7.3214, 7.3172, 7.3147, 7.3188, 7.3188, 7.315, 7.3113, 7.3067, 7.3139, 7.3109, 7.3183, 7.3147, 7.3105, 7.3183, 7.3215, 7.3181, 7.3164, 7.3119, 7.3371, 7.3332, 7.3417, 7.3409, 7.3394, 7.3365, 7.3349, 7.3324, 7.3285, 7.3626, 7.3581, 7.3543, 7.3552, 7.352, 7.354, 7.3507, 7.3468, 7.3444, 7.3425, 7.3397, 7.3478, 7.3491, 7.3576, 7.3538, 7.3589, 7.355, 7.3521, 7.3601, 7.361, 7.3578, 7.3579, 7.3554, 7.3542, 7.3592, 7.3556, 7.3539, 7.3513, 7.3485, 7.3445, 7.3532, 7.3503, 7.359, 7.3559, 7.3629, 7.3598, 7.3571, 7.3542, 7.3515, 7.349, 7.3457, 7.3416, 7.3393, 7.3369, 7.3342, 7.3333, 7.3327, 7.3414, 7.3406, 7.3486, 7.3562, 7.3542, 7.3505, 7.3484, 7.35, 7.348, 7.3455, 7.3417, 7.3403, 7.3468, 7.3463, 7.3465, 7.3438, 7.3509, 7.3517, 7.3584, 7.3558, 7.3523, 7.3509, 7.3575, 7.3541, 7.3505, 7.3477, 7.3449, 7.3511, 7.3506, 7.3495, 7.346, 7.3461, 7.3441, 7.3442, 7.3407, 7.3381, 7.3363, 7.3351, 7.3417, 7.3395, 7.3396, 7.3371, 7.3348, 7.3313, 7.3278, 7.3284, 7.3251, 7.3245, 7.3138, 7.3113, 7.3083, 7.3159, 7.3143, 7.3122, 7.3101, 7.3082, 7.3061, 7.3049, 7.3015, 7.3075, 7.3143, 7.3109, 7.3084, 7.3143, 7.3107, 7.3079, 7.3061, 7.3173, 7.3143, 7.3212, 7.3364, 7.3336, 7.332, 7.3389, 7.3386, 7.3413, 7.3383, 7.3387, 7.3442, 7.3738, 7.3702, 7.3681, 7.3652, 7.3643, 7.3627, 7.3595, 7.3579, 7.3573, 7.3633, 7.3615, 7.3704, 7.3683, 7.3827, 7.3796, 7.3762, 7.3741, 7.3713, 7.3682, 7.3655, 7.3624, 7.3591, 7.3567, 7.3535, 7.3502, 7.3476, 7.3464, 7.3518, 7.3491, 7.3543, 7.3516, 7.3487, 7.3461, 7.3435, 7.3487, 7.3455, 7.3511, 7.3489, 7.3464, 7.3455, 7.3432, 7.3488, 7.3467, 7.3438, 7.3493, 7.3462, 7.3511, 7.3565, 7.3625, 7.3683, 7.3668, 7.3637, 7.3608, 7.3516, 7.3492, 7.3548, 7.3522, 7.3505, 7.3585, 7.3681, 7.3666, 7.3641, 7.3779, 7.3713, 7.3631, 7.3608, 7.358, 7.3556, 7.3552, 7.3548, 7.3522, 7.3581, 7.3571, 7.3635, 7.3686, 7.3657, 7.3711, 7.369, 7.3659, 7.3628, 7.3618, 7.3595, 7.3565, 7.3537, 7.352, 7.349, 7.3471, 7.3447, 7.3421, 7.3401, 7.3395, 7.3461, 7.3438, 7.3411, 7.339, 7.3367, 7.3367, 7.3352, 7.3325, 7.3377, 7.3366, 7.3339, 7.3327, 7.33, 7.3273, 7.3328, 7.3386, 7.3443, 7.3431, 7.3403, 7.3387, 7.3384, 7.3404, 7.3396, 7.3385, 7.3373, 7.3345, 7.3358, 7.3338, 7.3314, 7.3298, 7.3277, 7.3254, 7.3232, 7.321, 7.3194, 7.3178, 7.3152, 7.3129, 7.3106, 7.3163, 7.3156, 7.3206, 7.3253, 7.3233, 7.3208, 7.3185, 7.3188, 7.3247, 7.3227, 7.3361, 7.3352, 7.337, 7.3426, 7.3403, 7.3339, 7.3332, 7.3312, 7.3309, 7.3282, 7.3332, 7.3314, 7.3367, 7.3413, 7.339, 7.3363, 7.3343, 7.3331, 7.338, 7.3421, 7.34, 7.3383, 7.3363, 7.3339, 7.3315, 7.3299, 7.3288, 7.3263, 7.3238, 7.3215, 7.3266, 7.3239, 7.3224, 7.3323, 7.3372, 7.3424, 7.3399, 7.3377, 7.3354, 7.333, 7.3373, 7.3348, 7.3327, 7.3319, 7.3371, 7.3417, 7.3395, 7.3377, 7.3354, 7.3328, 7.3317, 7.3244, 7.3224, 7.3222, 7.3197, 7.3268, 7.3314, 7.3335, 7.3324, 7.3315, 7.3297, 7.3338, 7.3318, 7.3301, 7.3276, 7.3208, 7.3186, 7.3167, 7.3145, 7.3121, 7.3121, 7.3165, 7.3141, 7.3183, 7.3159, 7.3202, 7.3245, 7.3219, 7.3206, 7.3186, 7.323, 7.3231, 7.3206, 7.3189, 7.3238, 7.3214, 7.3192, 7.3175, 7.3154, 7.3148, 7.3128, 7.3109, 7.3095, 7.3141, 7.3125, 7.3105, 7.3104, 7.309, 7.3078, 7.3124, 7.3119, 7.3097, 7.3075, 7.3064, 7.3043, 7.3083, 7.3134, 7.3126, 7.3102, 7.3091, 7.307, 7.3052, 7.304, 7.3085, 7.3066, 7.3042, 7.3087, 7.3133, 7.3176, 7.3222, 7.3203, 7.3182, 7.3228, 7.3207, 7.3201, 7.3179, 7.3224, 7.3206, 7.3255, 7.3236, 7.3215, 7.3263, 7.331, 7.3299, 7.3277, 7.3259, 7.336, 7.3292, 7.3278, 7.3261, 7.325, 7.3297, 7.3287, 7.3331, 7.3309, 7.3289, 7.3335, 7.3311, 7.3314, 7.3297, 7.328, 7.3258, 7.3247, 7.3225, 7.3205, 7.3195, 7.3176, 7.3159, 7.3137, 7.3116, 7.3105, 7.309, 7.308, 7.3067, 7.305, 7.3057, 7.3043, 7.3045, 7.3032, 7.3018, 7.2998, 7.3042, 7.3025, 7.2955, 7.2973, 7.2954, 7.2997, 7.2992, 7.2987, 7.2983, 7.2973, 7.3023, 7.3001, 7.2979, 7.296, 7.2949, 7.2944, 7.294, 7.292, 7.2904, 7.29, 7.2883, 7.2863, 7.2847, 7.2787, 7.2768, 7.2748, 7.273, 7.2716, 7.2704, 7.2696, 7.2676, 7.2673, 7.2682, 7.2686, 7.2667, 7.2648, 7.2629, 7.2615, 7.2603, 7.259, 7.2576, 7.2561, 7.255, 7.2536, 7.2522, 7.2456, 7.2449, 7.2432, 7.2419, 7.2409, 7.2403, 7.2396, 7.2377, 7.2361, 7.2346, 7.2385, 7.2378, 7.2417, 7.2407, 7.2398, 7.2384, 7.2367, 7.2363, 7.2356, 7.2342, 7.2331, 7.2382, 7.238, 7.2376, 7.2362, 7.2343, 7.2333, 7.2316, 7.2297, 7.2236, 7.2221, 7.2215, 7.2206, 7.2245, 7.2241, 7.2242, 7.2275, 7.2264, 7.2264, 7.2302, 7.2287, 7.2288, 7.2277, 7.2271, 7.2254, 7.2235, 7.2225, 7.2214, 7.2197, 7.2183, 7.2173, 7.2172, 7.2163, 7.22, 7.219, 7.2175, 7.2214, 7.22, 7.2239, 7.2224, 7.229, 7.2276, 7.2284, 7.2276, 7.2262, 7.2243, 7.2243, 7.228, 7.2313, 7.2294, 7.2276, 7.2273, 7.2256, 7.2247, 7.223, 7.2218, 7.2199, 7.2188, 7.2173, 7.2214, 7.2154, 7.2151, 7.2142, 7.2123, 7.2111, 7.2143, 7.2127, 7.2171, 7.2115, 7.2054, 7.2044, 7.2082, 7.2019, 7.2055, 7.204, 7.2026, 7.2012, 7.1999, 7.1983, 7.1965, 7.2009, 7.1995, 7.199, 7.1977, 7.1961, 7.1996, 7.1983, 7.2029, 7.2018, 7.2052, 7.2036, 7.2022, 7.2004, 7.1998, 7.1984, 7.1978, 7.1961, 7.1956, 7.1991, 7.203, 7.202, 7.2018, 7.2004, 7.2, 7.1993, 7.1979, 7.1975, 7.1959, 7.1945, 7.1934, 7.1922, 7.1909, 7.1895, 7.1881, 7.1871, 7.1864, 7.1853, 7.1892, 7.1927, 7.1874, 7.1816, 7.1814, 7.1797, 7.1793, 7.1827, 7.1822, 7.1811, 7.1795, 7.1827, 7.1862, 7.1895, 7.1928, 7.1917, 7.1863, 7.1846, 7.1829, 7.1862, 7.1847, 7.183, 7.1812, 7.1797, 7.1784, 7.1776, 7.1764, 7.1758, 7.1742, 7.1727, 7.1711, 7.1747, 7.1784, 7.1738, 7.1782, 7.183, 7.1771, 7.1768, 7.1752, 7.1736, 7.1728, 7.1725, 7.1714, 7.1699, 7.1683, 7.1672, 7.1659, 7.1653, 7.1921, 7.1906, 7.1938, 7.1972, 7.1967, 7.1952, 7.1986, 7.1982, 7.1993, 7.1981, 7.197, 7.2055, 7.2044, 7.203, 7.2016, 7.201, 7.2002, 7.1987, 7.1974, 7.2009, 7.2006, 7.1991, 7.1974, 7.1975, 7.201, 7.2042, 7.2072, 7.206, 7.2055, 7.2043, 7.2027, 7.2011, 7.1996, 7.198, 7.1965, 7.195, 7.1981, 7.2011, 7.2002, 7.1999, 7.1982, 7.1967, 7.1951, 7.1981, 7.1965, 7.1949, 7.1897, 7.1887, 7.1833, 7.1819, 7.1805, 7.1835, 7.1818, 7.1809, 7.1797, 7.1785, 7.1773, 7.1759, 7.175, 7.1736, 7.1773, 7.1762, 7.1746, 7.1742, 7.169, 7.1675, 7.1664, 7.166, 7.1652, 7.1641, 7.1628, 7.1614, 7.16, 7.1585, 7.1575, 7.156, 7.1548, 7.1495, 7.1448, 7.14, 7.1392, 7.1377, 7.1363, 7.1365, 7.1356, 7.1341, 7.1336, 7.1324, 7.1314, 7.13, 7.133, 7.141, 7.1443, 7.143, 7.1428, 7.1418, 7.1405, 7.1396, 7.1386, 7.1377, 7.1364, 7.1366, 7.1354, 7.135, 7.1306, 7.136, 7.1367, 7.1356, 7.1343, 7.1339, 7.1326, 7.1368, 7.1361, 7.1348, 7.1337, 7.1322, 7.1309, 7.1304, 7.1294, 7.1245, 7.1233, 7.1225, 7.1264, 7.1262, 7.1256, 7.1246, 7.1206, 7.1161, 7.1151, 7.1141, 7.1131, 7.1088, 7.1041, 7.0997, 7.0994, 7.098, 7.098, 7.097, 7.0958, 7.0945, 7.0933, 7.0926, 7.092, 7.0912, 7.0911, 7.0907, 7.0902, 7.0976, 7.0969, 7.0967, 7.0919, 7.091, 7.0908, 7.0903, 7.0898, 7.089, 7.0923, 7.0917, 7.0945, 7.0936, 7.0928, 7.1011, 7.1006, 7.0998, 7.0988, 7.0986, 7.094, 7.0929, 7.0917, 7.0946, 7.0943, 7.0935, 7.0966, 7.0952, 7.0938, 7.093, 7.096, 7.0963, 7.0955, 7.0956, 7.0951, 7.0939, 7.0931, 7.0956, 7.1037, 7.1071, 7.1062, 7.1056, 7.1056, 7.1046, 7.1034, 7.1063, 7.1054, 7.104, 7.1028, 7.1059, 7.105, 7.1041, 7.1029, 7.1021, 7.102, 7.1007, 7.0995, 7.0986, 7.0975, 7.0966, 7.1079, 7.1109, 7.1097, 7.1085, 7.1072, 7.1064, 7.1052, 7.104, 7.1036, 7.1024, 7.0978, 7.0936, 7.0891, 7.0846, 7.0834, 7.0829, 7.0857, 7.0846, 7.0847, 7.0841, 7.083, 7.0856, 7.0848, 7.0846, 7.0833, 7.082, 7.0818, 7.0809, 7.0803, 7.079, 7.0779, 7.0775, 7.0762, 7.0754, 7.0744, 7.0734, 7.0721, 7.0709, 7.0737, 7.0724, 7.0711, 7.0701, 7.0727, 7.0715, 7.0743, 7.073, 7.0758, 7.0749, 7.0741, 7.0737, 7.0726, 7.0752, 7.0746, 7.0751, 7.0742, 7.0734, 7.0727, 7.0916, 7.0905, 7.0934, 7.0927, 7.0915, 7.0903, 7.0893, 7.0881, 7.0872, 7.0869, 7.0895, 7.0885, 7.0913, 7.0902, 7.0894, 7.0884, 7.0874, 7.0865, 7.0895, 7.0921, 7.0911, 7.0941, 7.094, 7.0938, 7.0934, 7.0893, 7.0885, 7.0874, 7.0903, 7.0891, 7.085, 7.0838, 7.0865, 7.086, 7.0848, 7.0836, 7.0824, 7.0816, 7.0843, 7.0834, 7.0863, 7.0855, 7.0817, 7.0778, 7.0776, 7.0769, 7.0764, 7.0754, 7.0743, 7.0737, 7.0728, 7.0727, 7.072, 7.071, 7.0832, 7.0826, 7.0892, 7.0955, 7.0943, 7.0971, 7.0931, 7.0891, 7.0851, 7.0886, 7.088, 7.0872, 7.0983, 7.1012, 7.1011, 7.1007, 7.0997, 7.1005, 7.1034, 7.1023, 7.1014, 7.1004, 7.1001, 7.0995, 7.099, 7.098, 7.0975, 7.0963, 7.0954, 7.0943, 7.0932, 7.0921, 7.0916, 7.094, 7.0935, 7.0925, 7.0921, 7.0912, 7.0937, 7.0928, 7.0918, 7.0959, 7.0952, 7.0949, 7.0948, 7.0938, 7.0937, 7.0998, 7.1003, 7.1029, 7.1022, 7.1059, 7.1047, 7.1044, 7.1033, 7.1029, 7.1024, 7.1019, 7.1014, 7.1005, 7.1001, 7.0993, 7.0992, 7.0992, 7.0984, 7.0974, 7.0968, 7.0959, 7.1018, 7.1007, 7.0998, 7.0988, 7.099, 7.0982, 7.1011, 7.1002, 7.0998, 7.0987, 7.0978, 7.097, 7.0996, 7.0988, 7.0981, 7.097, 7.0973, 7.0966, 7.0962, 7.0952, 7.0945, 7.0971, 7.0971, 7.0963, 7.0954, 7.0944, 7.0932, 7.0921, 7.0921, 7.091, 7.0907, 7.0896, 7.0898, 7.089, 7.0914, 7.0942, 7.0966, 7.0993, 7.0987, 7.0977, 7.0972, 7.0968, 7.0963, 7.0954, 7.0946, 7.0938, 7.0931, 7.0924, 7.0926, 7.0915, 7.0944, 7.0934, 7.0925, 7.0957, 7.095, 7.0939, 7.0967, 7.0956, 7.0977, 7.0969, 7.0965, 7.0956, 7.0949, 7.0943, 7.0934, 7.0925, 7.0918, 7.0909, 7.0899, 7.0923, 7.0916, 7.1012, 7.1001, 7.1025, 7.0988, 7.0977, 7.0967, 7.0957, 7.0947, 7.0944, 7.0969, 7.0958, 7.0955, 7.098, 7.0974, 7.0969, 7.0959, 7.0955, 7.0944, 7.0973, 7.0962, 7.0953, 7.0943, 7.0932, 7.0924, 7.0914, 7.0967, 7.0958, 7.1002, 7.1068, 7.1062, 7.1058, 7.1054, 7.1049, 7.1039, 7.1068, 7.1064, 7.1091, 7.1122, 7.1113, 7.1143, 7.1136, 7.1129, 7.1121, 7.1113, 7.1104, 7.1127, 7.1116, 7.1106, 7.1098, 7.1087, 7.1083, 7.1074, 7.1123, 7.1149, 7.1144, 7.1138, 7.1132, 7.1121, 7.1114, 7.1111, 7.1107, 7.1096, 7.1088, 7.1087, 7.1076, 7.1076, 7.1134, 7.1098, 7.1091, 7.1113, 7.1112, 7.1105, 7.1108, 7.1104, 7.1096, 7.1088, 7.108, 7.1072, 7.1096, 7.1085, 7.1081, 7.107, 7.1065, 7.1086, 7.1075, 7.1065, 7.1064, 7.1059, 7.1049, 7.1041, 7.1068, 7.1089, 7.1085, 7.1075, 7.1068, 7.1061, 7.1055, 7.1057, 7.1048, 7.1042, 7.1031, 7.1024, 7.1015, 7.1042, 7.1067, 7.1097, 7.1119, 7.1111, 7.11, 7.1123, 7.1121, 7.1149, 7.1176, 7.1169, 7.1169, 7.1194, 7.1163, 7.1202, 7.1198, 7.117, 7.1163, 7.1154, 7.1149, 7.1155, 7.1174, 7.1173, 7.1166, 7.1156, 7.1148, 7.1151, 7.1144, 7.1148, 7.1144, 7.1133, 7.1126, 7.1119, 7.1114, 7.1104, 7.1103, 7.1096, 7.1089, 7.1082, 7.1074, 7.1042, 7.1034, 7.1027, 7.1018, 7.1016, 7.1036, 7.1032, 7.1023, 7.1044, 7.1037, 7.1039, 7.1058, 7.1048, 7.1039, 7.1033, 7.1025, 7.1021, 7.1043, 7.1068, 7.1089, 7.1081, 7.1077, 7.1068, 7.1033, 7.1025, 7.1025, 7.1017, 7.1012, 7.1004, 7.0999, 7.1021, 7.1016, 7.1011, 7.1067, 7.1063, 7.1053, 7.1042, 7.1065, 7.1089, 7.1079, 7.1076, 7.1072, 7.1063, 7.1058, 7.108, 7.1073, 7.1066, 7.1092, 7.1084, 7.1078, 7.1102, 7.11, 7.1091, 7.1113, 7.1108, 7.1107, 7.11, 7.1091, 7.1115, 7.111, 7.11, 7.1096, 7.1091, 7.1089, 7.1088, 7.1115, 7.1107, 7.1129, 7.1119, 7.1118, 7.1143, 7.1164, 7.116, 7.1152, 7.1143, 7.1134, 7.1126, 7.1121, 7.1116, 7.1109, 7.1103, 7.1126, 7.1153, 7.1144, 7.1167, 7.1159, 7.1149, 7.1144, 7.1136, 7.1127, 7.113, 7.1124, 7.1145, 7.1138, 7.1138, 7.113, 7.1095, 7.1091, 7.1091, 7.1087, 7.1077, 7.1071, 7.1074, 7.1067, 7.1062, 7.1061, 7.1053, 7.1045, 7.1043, 7.104, 7.103, 7.103, 7.1021, 7.1015, 7.1008, 7.1001, 7.0994, 7.0992, 7.099, 7.1013, 7.101, 7.1003, 7.0994, 7.1015, 7.1009, 7.1001, 7.0998, 7.099, 7.0981, 7.0977, 7.0969, 7.0963, 7.0956, 7.0983, 7.0977, 7.097, 7.0965, 7.0955, 7.0951, 7.0944, 7.0937, 7.0934, 7.0925, 7.0919, 7.0916, 7.0908, 7.093, 7.095, 7.0942, 7.0932, 7.0927, 7.0947, 7.0939, 7.0934, 7.0929, 7.0924, 7.0915, 7.091, 7.0961, 7.0964, 7.0955, 7.0949, 7.0941, 7.0934, 7.0955, 7.0946, 7.0937, 7.093, 7.1017, 7.1011, 7.1007, 7.1036, 7.1036, 7.1055, 7.1122, 7.1102, 7.1109, 7.1127, 7.1122, 7.1143, 7.1139, 7.1132, 7.1126, 7.1094, 7.1087, 7.1104, 7.113, 7.1131, 7.115, 7.1144, 7.1136, 7.1128, 7.1121, 7.1112, 7.1108, 7.1099, 7.109, 7.1109, 7.1099, 7.1094, 7.1085, 7.108, 7.1071, 7.1091, 7.1086, 7.1105, 7.1099, 7.1093, 7.1063, 7.1031, 7.1025, 7.1023, 7.1018, 7.1039, 7.1031, 7.1028, 7.1027, 7.1019, 7.1011, 7.101, 7.1008, 7.1033, 7.1026, 7.1022, 7.1017, 7.1009, 7.1004, 7.0997, 7.1002, 7.1026, 7.0993, 7.1014, 7.1004, 7.0997, 7.102, 7.104, 7.1032, 7.1051, 7.1042, 7.1035, 7.1029, 7.1021, 7.1015, 7.1015, 7.101, 7.1029, 7.1048, 7.1044, 7.1036, 7.1028, 7.1026, 7.1017, 7.1009, 7.1002, 7.1, 7.0992, 7.0987, 7.1011, 7.1003, 7.1, 7.1062, 7.1055, 7.1074, 7.1073, 7.1091, 7.1086, 7.1083, 7.1075, 7.1067, 7.1061, 7.1057, 7.1052, 7.1044, 7.1037, 7.104, 7.1041, 7.1037, 7.1028, 7.1024, 7.1015, 7.1017, 7.1035, 7.103, 7.1021, 7.1014, 7.101, 7.1031, 7.1026, 7.1023, 7.1015, 7.101, 7.1005, 7.1001, 7.0997, 7.0989, 7.0962, 7.0954, 7.0934, 7.0972, 7.1004, 7.098, 7.0972, 7.0968, 7.0959, 7.0954, 7.0952, 7.0949, 7.0947, 7.0967, 7.0963, 7.0955, 7.0949, 7.0942, 7.0911, 7.0905, 7.0925, 7.0918, 7.0913, 7.0906, 7.0899, 7.0892, 7.091, 7.0903, 7.0921, 7.0912, 7.0906, 7.0924, 7.0921, 7.0914, 7.0907, 7.1026, 7.1021, 7.1018, 7.101, 7.1006, 7.0999, 7.0992, 7.0961, 7.0952, 7.0947, 7.0939, 7.0935, 7.0932, 7.0924, 7.0919, 7.091, 7.0906, 7.0898, 7.0895, 7.0887, 7.0879, 7.0872, 7.0864, 7.0859, 7.083, 7.0822, 7.0792, 7.0785, 7.0777, 7.0774, 7.0766, 7.0759, 7.0754, 7.0753, 7.0729, 7.0725, 7.0734, 7.0725, 7.0696, 7.0691, 7.0686, 7.0659, 7.0678, 7.0673, 7.0668, 7.0695, 7.0702, 7.0721, 7.0742, 7.0764, 7.0757, 7.0751, 7.0745, 7.0741, 7.0734, 7.073, 7.0724, 7.0726, 7.0718, 7.0757, 7.0753, 7.0745, 7.0739, 7.0731, 7.0724, 7.0744, 7.0791, 7.0784, 7.078, 7.0772, 7.0792, 7.0786, 7.0778, 7.0771, 7.0768, 7.0766, 7.0764, 7.074, 7.0759, 7.0735, 7.071, 7.0711, 7.0704, 7.0727, 7.0747, 7.0748, 7.0765, 7.077500000000001, 7.0767, 7.0785, 7.0777, 7.0748, 7.0745, 7.0737, 7.0729, 7.0721, 7.0713, 7.0713, 7.073, 7.0723, 7.0741, 7.0735, 7.073, 7.0723, 7.0721, 7.0713, 7.0706, 7.0699, 7.0755, 7.0753, 7.0746, 7.0756000000000006, 7.076600000000001, 7.0783, 7.0801, 7.0793, 7.0785, 7.078, 7.0775, 7.0791, 7.0822, 7.0839, 7.0833, 7.0825, 7.0831, 7.0823, 7.0818, 7.0815, 7.081, 7.0804, 7.0821, 7.0816, 7.0808, 7.0801, 7.0793, 7.0789, 7.0787, 7.0787, 7.0781, 7.0773, 7.0766, 7.0764, 7.076, 7.0756, 7.0773, 7.0766, 7.0784, 7.0828, 7.0825, 7.0824, 7.082, 7.0817, 7.0811, 7.083, 7.0824, 7.0823, 7.0841, 7.0844, 7.0837, 7.0835, 7.0828, 7.0821, 7.0841, 7.0838, 7.0832, 7.0805, 7.0863, 7.0885, 7.0879, 7.0853, 7.0845, 7.0843, 7.0845, 7.0837, 7.0841, 7.0836, 7.0913, 7.0919, 7.0918, 7.0911, 7.0908, 7.0926, 7.0946, 7.0964, 7.0958, 7.0954, 7.0951, 7.0944, 7.0964, 7.0962, 7.0954, 7.0929, 7.0923, 7.092, 7.0917, 7.0934, 7.0928, 7.096, 7.0953, 7.0949, 7.0921, 7.0913, 7.0941, 7.0936, 7.0929, 7.0922, 7.0915, 7.0908, 7.0902, 7.0921, 7.0915, 7.0912, 7.0906, 7.0904, 7.0899, 7.0915, 7.0911, 7.0906, 7.09, 7.0897, 7.0913, 7.0906, 7.0947, 7.094, 7.0933, 7.0927, 7.0925, 7.0922, 7.0917, 7.0911, 7.0907, 7.0904, 7.0882, 7.086, 7.0879, 7.0874, 7.0867, 7.0861, 7.0856, 7.0855, 7.0848, 7.0841, 7.0834, 7.0827, 7.0819, 7.0814, 7.0811, 7.0808, 7.0803, 7.0823, 7.0821, 7.0814, 7.0814, 7.0832, 7.0826, 7.0821, 7.0815, 7.0816, 7.0809, 7.0803, 7.0798, 7.0791, 7.0795, 7.0789, 7.0782, 7.0774, 7.0797, 7.0792, 7.079, 7.0806, 7.0804, 7.0799, 7.0792, 7.0786, 7.0779, 7.0774, 7.0771, 7.0766, 7.0738, 7.0734, 7.0727, 7.0724, 7.0721, 7.0738, 7.0738, 7.0735, 7.0731, 7.0749, 7.0764, 7.0763, 7.0785, 7.0782, 7.0779, 7.0772, 7.0767, 7.0785, 7.0801, 7.0798, 7.0794, 7.0789, 7.0786, 7.076, 7.0752, 7.0771, 7.0769, 7.0765, 7.0757, 7.0752, 7.0747, 7.0742, 7.0737, 7.0732, 7.0724, 7.074, 7.0733, 7.0726, 7.0719, 7.0712, 7.0732, 7.0726, 7.072, 7.0713, 7.0707, 7.07, 7.0699, 7.0694, 7.071, 7.0703, 7.0696, 7.0672, 7.0667, 7.0661, 7.0654, 7.0648, 7.0643, 7.0658, 7.0632, 7.0606, 7.0622, 7.0617, 7.0612, 7.0743, 7.0758, 7.0755, 7.0772, 7.0767, 7.0762, 7.0756, 7.0752, 7.0751, 7.0766, 7.0782, 7.0779, 7.0775, 7.0768, 7.0762, 7.0756, 7.0754, 7.0749, 7.0743, 7.0736, 7.0731, 7.0727, 7.0723, 7.0716, 7.0709, 7.0706, 7.0699, 7.0699, 7.0718, 7.0717, 7.071, 7.0702, 7.0716, 7.0713, 7.071, 7.0705, 7.0703, 7.0679, 7.0655, 7.0648, 7.0664, 7.0662, 7.0655, 7.065, 7.0644, 7.066, 7.0678, 7.0671, 7.0687, 7.0685, 7.0678, 7.0671, 7.0648, 7.0641, 7.0657, 7.0757, 7.0755, 7.0748, 7.0742, 7.0736, 7.0732, 7.0749, 7.0745, 7.0763, 7.0758, 7.0774, 7.0768, 7.0784, 7.0759, 7.0774, 7.077, 7.0767, 7.0781, 7.0796, 7.0791, 7.0786, 7.0801, 7.0798, 7.0792, 7.0808, 7.0801, 7.0777, 7.0773, 7.0775, 7.0769, 7.0767, 7.0745, 7.0742, 7.078, 7.0779, 7.0772, 7.0766, 7.0741, 7.0757, 7.0753, 7.0752, 7.0747, 7.0741, 7.074, 7.074, 7.0755, 7.0748, 7.0745, 7.0765, 7.0761, 7.0757, 7.0752, 7.0747, 7.0763, 7.0758, 7.0753, 7.0749, 7.0762, 7.0756, 7.0754, 7.0748, 7.0741, 7.0739, 7.0733, 7.0778, 7.0794, 7.0788, 7.0811, 7.0805, 7.0785, 7.0808, 7.0803, 7.0802, 7.0799, 7.0793, 7.0786, 7.0781, 7.0779, 7.0777, 7.0776, 7.0776, 7.0774, 7.0771, 7.0765, 7.0762, 7.0758, 7.0754, 7.0748, 7.0842, 7.0859, 7.0855, 7.0848, 7.0842, 7.0836, 7.0829, 7.0828, 7.0825, 7.0839, 7.0832, 7.0831, 7.0825, 7.0823, 7.0837, 7.0855, 7.0855, 7.0857, 7.0856, 7.0882, 7.0877, 7.0872, 7.0866, 7.0861, 7.0856, 7.0854, 7.0847, 7.084, 7.0834, 7.0832, 7.0846, 7.0844, 7.0859, 7.0854, 7.0848, 7.0842, 7.0838, 7.0832, 7.0828, 7.0845, 7.0843, 7.0836, 7.085, 7.0863, 7.084, 7.0835, 7.0829, 7.0826, 7.0825, 7.0825, 7.0818, 7.0812, 7.0828, 7.0825, 7.0818, 7.0811, 7.0804, 7.0818, 7.0811, 7.0806, 7.0822, 7.0816, 7.0809, 7.0808, 7.0804, 7.0797, 7.0793, 7.0768, 7.0761, 7.0758, 7.0756, 7.077, 7.0763, 7.0756, 7.0733, 7.0728, 7.0723, 7.0718, 7.0713, 7.0708, 7.0725, 7.0725, 7.0729, 7.0724, 7.0723, 7.0721, 7.0716, 7.0699, 7.0722, 7.0723, 7.072, 7.0722, 7.0719, 7.0714, 7.0693, 7.0692, 7.0707, 7.0703, 7.0721, 7.0715, 7.0709, 7.0704, 7.072, 7.0737, 7.0732, 7.0729, 7.0724, 7.072, 7.0716, 7.0714, 7.0709, 7.0723, 7.0719, 7.0716, 7.0711, 7.0705, 7.07, 7.0698, 7.0677, 7.0692, 7.0686, 7.0701, 7.0696, 7.0691, 7.0692, 7.0707, 7.0702, 7.0697, 7.071, 7.0705, 7.0721, 7.0715, 7.0728, 7.0721, 7.0735, 7.0731, 7.0764, 7.0758, 7.0753, 7.0747, 7.0762, 7.0775, 7.0769, 7.0765, 7.076, 7.0773, 7.0766, 7.0761, 7.0755, 7.0749, 7.0747, 7.074, 7.0737, 7.0736, 7.0752, 7.0747, 7.0762, 7.0763, 7.0762, 7.076, 7.0758, 7.0772, 7.0766, 7.0763, 7.0759, 7.0759, 7.0735, 7.0733, 7.075, 7.0746, 7.0741, 7.0755, 7.0752, 7.077, 7.075, 7.0748, 7.0741, 7.0737, 7.0732, 7.0725, 7.0722, 7.0737, 7.0733, 7.0734, 7.0729, 7.0744, 7.0739, 7.0736, 7.0735, 7.0735, 7.0732, 7.0731, 7.0725, 7.0721, 7.0722, 7.0721, 7.0721, 7.0715, 7.0733, 7.0727, 7.0723, 7.0718, 7.0732, 7.0729, 7.0725, 7.072, 7.0715, 7.071, 7.0709, 7.0725, 7.0788, 7.077, 7.0766, 7.0766, 7.0764, 7.076, 7.0851, 7.0847, 7.0842, 7.0858, 7.0853, 7.0869, 7.0876, 7.087, 7.0869, 7.0866, 7.0863, 7.0858, 7.0853, 7.0849, 7.0845, 7.0843, 7.0837, 7.0816, 7.0795, 7.0773, 7.0768, 7.0764, 7.0759, 7.0761, 7.0816, 7.0811, 7.0826, 7.0821, 7.0819, 7.0832, 7.0826, 7.0824, 7.0822, 7.0819, 7.0813, 7.0808, 7.0822, 7.0849, 7.085, 7.0845, 7.0846, 7.0841, 7.0857, 7.0852, 7.0851, 7.0848, 7.0844, 7.0839, 7.0834, 7.0832, 7.0828, 7.0825, 7.0849, 7.083, 7.0814, 7.0808, 7.0804, 7.0798, 7.0794, 7.0807, 7.0802, 7.0799, 7.0793, 7.0807, 7.0805, 7.0799, 7.0796, 7.0811, 7.0808, 7.0805, 7.08, 7.0797, 7.0793, 7.0788, 7.0782, 7.0776, 7.0789, 7.0784, 7.0778, 7.0775, 7.0792, 7.0786, 7.0783, 7.0777, 7.0791, 7.0787, 7.0782, 7.0795, 7.079, 7.0789, 7.0786, 7.0781, 7.0778, 7.0793, 7.0794, 7.0789, 7.0804, 7.08, 7.0815, 7.0828, 7.0824, 7.082, 7.0814, 7.0811, 7.0805, 7.08, 7.0797, 7.0791, 7.0787, 7.08, 7.0798, 7.0795, 7.079, 7.0788, 7.0783, 7.078, 7.0775, 7.0769, 7.0769, 7.0764, 7.0764, 7.0761, 7.0759, 7.074, 7.0721, 7.0735, 7.0731, 7.0746, 7.0745, 7.0743, 7.0756, 7.075, 7.075, 7.0749, 7.0761, 7.0756, 7.0754, 7.075, 7.0764, 7.0763, 7.0759, 7.0754, 7.0772, 7.0768, 7.0782, 7.078, 7.0777, 7.079, 7.0784, 7.0778, 7.0774, 7.0786, 7.0784, 7.0764, 7.0762, 7.0757, 7.0752, 7.0747, 7.0761, 7.0759, 7.0754, 7.075, 7.0745, 7.0743, 7.0743, 7.0767, 7.0762, 7.0756, 7.0757, 7.0752, 7.0748, 7.0744, 7.0739, 7.0735, 7.073, 7.0726, 7.0721, 7.0717, 7.0712, 7.0707, 7.0702, 7.0696, 7.0696, 7.0691, 7.069, 7.0689, 7.0683, 7.0697, 7.0697, 7.0693, 7.074, 7.0754, 7.075, 7.0745, 7.0743, 7.0738, 7.0733, 7.0731, 7.0746, 7.0787, 7.0781, 7.0778, 7.0772, 7.0766, 7.076, 7.0743, 7.0743, 7.0737, 7.0733, 7.0728, 7.0727, 7.0721, 7.072, 7.0715, 7.071, 7.0725, 7.072, 7.0717, 7.0713, 7.0693, 7.0692, 7.0732, 7.0749, 7.0745, 7.0741, 7.0793, 7.0789, 7.0783, 7.0778, 7.0774, 7.0757, 7.0755, 7.0768, 7.0765, 7.0745, 7.074, 7.0737, 7.0732, 7.0728, 7.0724, 7.0737, 7.0749, 7.0743, 7.0755, 7.0766, 7.0761, 7.0773, 7.0785, 7.078, 7.0775, 7.0788, 7.0786, 7.0765, 7.076, 7.0757, 7.076, 7.0768, 7.0765, 7.0761, 7.0757, 7.0752, 7.0749, 7.0763, 7.0765, 7.0787, 7.0786, 7.0785, 7.0782, 7.0779, 7.0773, 7.0769, 7.0782, 7.0795, 7.079, 7.0786, 7.0798, 7.0812, 7.0809, 7.0808, 7.0804, 7.0801, 7.0812, 7.0807, 7.0809, 7.0804, 7.0801, 7.0795, 7.0807, 7.0811, 7.0823, 7.0818, 7.0832, 7.0814, 7.0833, 7.0829, 7.0824, 7.0819, 7.0817, 7.0838, 7.0835, 7.0855, 7.0904, 7.0884, 7.088, 7.0878, 7.0893, 7.0892, 7.0888, 7.0901, 7.0896, 7.0894, 7.0889, 7.0884, 7.0879, 7.0873, 7.0868, 7.0868, 7.0864, 7.0859, 7.0857, 7.087, 7.0884, 7.0883, 7.0879, 7.0874, 7.0869, 7.0864, 7.0862, 7.0863, 7.0865, 7.0862, 7.0857, 7.0868, 7.0868, 7.0863, 7.0862, 7.0877, 7.0911, 7.0928, 7.0924, 7.0922, 7.0917, 7.0912, 7.0909, 7.0904, 7.0899, 7.0895, 7.0891, 7.0903, 7.0917, 7.0932, 7.0926, 7.0924, 7.0919, 7.0916, 7.091, 7.0922, 7.0921, 7.0917, 7.0932, 7.0929, 7.0941, 7.0937, 7.0937, 7.0951, 7.0964, 7.0961, 7.0956, 7.0967, 7.0962, 7.0959, 7.0955, 7.095, 7.0946, 7.0943, 7.0939, 7.0936, 7.0948, 7.0947, 7.0959, 7.0954, 7.099, 7.0973, 7.097, 7.0965, 7.0961, 7.0956, 7.1005, 7.1003, 7.1004, 7.1001, 7.0998, 7.0993, 7.1006, 7.1018, 7.1014, 7.1012, 7.101, 7.1022, 7.1022, 7.1035, 7.1048, 7.1044, 7.1042, 7.1036, 7.1117, 7.1113, 7.1125, 7.1139, 7.1136, 7.1133, 7.1129, 7.1127, 7.114, 7.1135, 7.1132, 7.1126, 7.113, 7.1126, 7.1121, 7.1129, 7.1141, 7.1136, 7.1132, 7.1128, 7.114, 7.1134, 7.1146, 7.1142, 7.1139, 7.114, 7.1138, 7.1139, 7.1135, 7.1135, 7.1131, 7.1146, 7.1141, 7.1154, 7.115, 7.1145, 7.1141, 7.1139, 7.1134, 7.1146, 7.1143, 7.1139, 7.1134, 7.1116, 7.1128, 7.1124, 7.1135, 7.1131, 7.1126, 7.114, 7.1141, 7.1137, 7.1132, 7.1143, 7.1141, 7.1136, 7.1149, 7.1143, 7.1139, 7.115, 7.1147, 7.1143, 7.1155, 7.1151, 7.1163, 7.1158, 7.1154, 7.1149, 7.1162, 7.1244, 7.1244, 7.125, 7.1246, 7.124, 7.1242, 7.1272, 7.1266, 7.1278, 7.1274, 7.1302, 7.1297, 7.1308, 7.1305, 7.1316, 7.1313, 7.131, 7.1323, 7.132, 7.1314, 7.131, 7.1305, 7.1301, 7.1296, 7.1295, 7.129, 7.1286, 7.1288, 7.1299, 7.1293, 7.1289, 7.1285, 7.1279, 7.1277, 7.1275, 7.1271, 7.1268, 7.1264, 7.1262, 7.126, 7.1255, 7.1252, 7.1248, 7.1247, 7.1245, 7.1241, 7.1239, 7.1235, 7.1231, 7.1227, 7.1222, 7.1219, 7.1232, 7.1235, 7.1234, 7.123, 7.1241, 7.1239, 7.1236, 7.1233, 7.1228, 7.1224, 7.122, 7.1215, 7.1211, 7.1207, 7.122, 7.1231, 7.1242, 7.1253, 7.1264, 7.1261, 7.1259, 7.1258, 7.1269, 7.1264, 7.1261, 7.1263, 7.126, 7.1256, 7.1253, 7.1249, 7.1245, 7.124, 7.1236, 7.1232, 7.1227, 7.1238, 7.1249, 7.1243, 7.1239, 7.125, 7.1246, 7.124, 7.1235, 7.1235, 7.123, 7.1229, 7.1226, 7.1223, 7.1221, 7.1232, 7.123, 7.1212, 7.1224, 7.1219, 7.1215, 7.1213, 7.1194, 7.1189, 7.1188, 7.1199, 7.1196, 7.1191, 7.1202, 7.1197, 7.1192, 7.1188, 7.1186, 7.1183, 7.1178, 7.1175, 7.117, 7.1151, 7.1132, 7.1143, 7.114, 7.1137, 7.1132, 7.1116, 7.1111, 7.111, 7.1106, 7.1102, 7.1114, 7.1118, 7.1131, 7.1199, 7.1194, 7.1206, 7.1201, 7.1197, 7.1192, 7.1191, 7.1189, 7.1187, 7.1183, 7.1179, 7.1176, 7.1174, 7.1198, 7.1195, 7.1206, 7.1201, 7.12, 7.12, 7.1196, 7.1194, 7.1191, 7.1187, 7.1183, 7.1184, 7.1184, 7.1184, 7.1179, 7.1176, 7.1177, 7.1177, 7.1176, 7.1173, 7.1172, 7.1167, 7.1162, 7.1157, 7.117, 7.1166, 7.1163, 7.1159, 7.1154, 7.1167, 7.1163, 7.116, 7.1156, 7.1152, 7.1149, 7.1144, 7.117, 7.1166, 7.1148, 7.113, 7.1125, 7.1121, 7.1118, 7.1114, 7.1108, 7.1105, 7.1118, 7.1114, 7.111, 7.1122, 7.1118, 7.113, 7.1142, 7.1124, 7.112, 7.1116, 7.1116, 7.1114, 7.1126, 7.1138, 7.1134, 7.1134, 7.1145, 7.1143, 7.1155, 7.1154, 7.1149, 7.1153, 7.1153, 7.1148, 7.1144, 7.1157, 7.1142, 7.114, 7.1135, 7.1147, 7.1144, 7.1141, 7.1136, 7.1131, 7.1127, 7.114, 7.1137, 7.1132, 7.1128, 7.114, 7.1151, 7.1146, 7.1144, 7.1142, 7.1138, 7.1152, 7.1148, 7.1146, 7.1128, 7.1124, 7.1142, 7.1139, 7.1136, 7.1132, 7.1128, 7.1125, 7.1121, 7.112, 7.1115, 7.1127, 7.1125, 7.1124, 7.1119, 7.1114, 7.1128, 7.1158, 7.1171, 7.1168, 7.1164, 7.1174, 7.1175, 7.1187, 7.1182, 7.1178, 7.1179, 7.1174, 7.1171, 7.117, 7.1166, 7.1162, 7.1163, 7.116, 7.1157, 7.1152, 7.115, 7.1146, 7.1142, 7.1137, 7.1151, 7.1147, 7.1159, 7.1142, 7.1138, 7.1134, 7.113, 7.1127, 7.1122, 7.1121, 7.1119, 7.1105, 7.1103, 7.1102, 7.1084, 7.108, 7.1079, 7.1092, 7.1088, 7.1099, 7.1098, 7.1093, 7.1089, 7.1072, 7.1085, 7.1081, 7.1077, 7.1072, 7.107, 7.1065, 7.1064, 7.1074, 7.1086, 7.1081, 7.1082, 7.1094, 7.1104, 7.109, 7.1089, 7.1087, 7.1083, 7.1079, 7.1074, 7.1069, 7.1079, 7.1074, 7.1072, 7.107, 7.1065, 7.1061, 7.1073, 7.1068, 7.1053, 7.1036, 7.1047, 7.1043, 7.1043, 7.1039, 7.105, 7.1047, 7.1046, 7.1044, 7.1054, 7.1049, 7.1044, 7.1039, 7.1035, 7.1031, 7.1027, 7.1022, 7.1033, 7.1031, 7.1042, 7.1053, 7.1065, 7.1076, 7.1072, 7.1067, 7.1068, 7.1066, 7.1062, 7.1059, 7.1054, 7.1049, 7.1076, 7.1071, 7.1071, 7.1068, 7.1079, 7.1077, 7.1073, 7.1077, 7.1072, 7.1069, 7.1079, 7.109, 7.109, 7.1086, 7.1082, 7.1094, 7.1091, 7.1088, 7.1087, 7.1099, 7.1096, 7.1106, 7.1102, 7.11, 7.1097, 7.1092, 7.1087, 7.1099, 7.1095, 7.1091, 7.1074, 7.1072, 7.1084, 7.108, 7.1091, 7.1087, 7.107, 7.1066, 7.1068, 7.1064, 7.106, 7.1056, 7.1052, 7.1048, 7.1032, 7.1042, 7.1038, 7.1023, 7.102, 7.1015, 7.1012, 7.1023, 7.1034, 7.1037, 7.1048, 7.1046, 7.1042, 7.1039, 7.1037, 7.1033, 7.1044, 7.1042, 7.104, 7.1039, 7.105, 7.1048, 7.1031, 7.1028, 7.104, 7.1051, 7.1046, 7.1057, 7.1067, 7.1066, 7.1077, 7.109, 7.1088, 7.1101, 7.1097, 7.1109, 7.1105, 7.1088, 7.1084, 7.1082, 7.1093, 7.1088, 7.1087, 7.1082, 7.1093, 7.1089, 7.1085, 7.1081, 7.1079, 7.1075, 7.1075, 7.107, 7.1066, 7.1064, 7.1064, 7.1047, 7.1042, 7.1037, 7.1068, 7.108, 7.109, 7.1089, 7.1098, 7.1128, 7.1126, 7.1122, 7.1135, 7.1132, 7.1129, 7.1128, 7.1127, 7.1127, 7.1125, 7.1121, 7.1132, 7.113, 7.1126, 7.1142, 7.1141, 7.1124, 7.111, 7.1121, 7.1117, 7.1117, 7.1103, 7.1101, 7.1098, 7.1094, 7.1104, 7.1099, 7.1082, 7.1078, 7.1089, 7.1087, 7.1082, 7.1092, 7.1088, 7.1098, 7.11, 7.1096, 7.1094, 7.1091, 7.1088, 7.1084, 7.1097, 7.1093, 7.1091, 7.11, 7.1096, 7.1092, 7.1102, 7.1098, 7.1111, 7.1107, 7.1118, 7.1114, 7.1098, 7.111, 7.1106, 7.1102, 7.1099, 7.1099, 7.1096, 7.1107, 7.1103, 7.1115, 7.1125, 7.1121, 7.1131, 7.1127, 7.1138, 7.117, 7.1171, 7.1172, 7.1172, 7.1169, 7.1175, 7.1171, 7.1169, 7.1166, 7.1198, 7.1195, 7.1204, 7.1188, 7.1198, 7.1194, 7.1192, 7.1205, 7.1201, 7.1246, 7.1267, 7.1269, 7.1267, 7.1255, 7.1251, 7.125, 7.1252, 7.1235, 7.1218, 7.1216, 7.1217, 7.1227, 7.1223, 7.122, 7.1216, 7.1212, 7.1207, 7.119, 7.1188, 7.12, 7.1198, 7.1208, 7.1204, 7.1202, 7.1198, 7.1196, 7.1192, 7.119, 7.123, 7.1226, 7.1222, 7.1232, 7.1228, 7.1228, 7.1224, 7.122, 7.1216, 7.1217, 7.1214, 7.1199, 7.1186, 7.1183, 7.118, 7.1178, 7.1174, 7.1173, 7.1172, 7.117, 7.1169, 7.1165, 7.1176, 7.1179, 7.1175, 7.1185, 7.1184, 7.1179, 7.1203, 7.1187, 7.117, 7.1153, 7.1163, 7.1162, 7.1158, 7.1156, 7.1167, 7.1151, 7.1148, 7.1146, 7.1161, 7.1162, 7.1158, 7.1167, 7.1178, 7.1174, 7.1163, 7.1173, 7.1171, 7.1167, 7.1162, 7.1161, 7.1171, 7.1169, 7.1167, 7.1175, 7.1171, 7.117, 7.1165, 7.116, 7.1169, 7.1167, 7.1165, 7.1162, 7.1158, 7.1171, 7.1156, 7.1151, 7.1148, 7.1145, 7.1142, 7.1138, 7.1137, 7.1133, 7.1129, 7.1125, 7.1121, 7.1117, 7.1114, 7.1112, 7.1111, 7.1109, 7.1105, 7.1114, 7.111, 7.1105, 7.1104, 7.1103, 7.1099, 7.1109, 7.1106, 7.1102, 7.11, 7.111, 7.1108, 7.1105, 7.1103, 7.1104, 7.1114, 7.1099, 7.1096, 7.1093, 7.1104, 7.1101, 7.1112, 7.111, 7.111, 7.1109, 7.1096, 7.1096, 7.1092, 7.1102, 7.1086, 7.1073, 7.1084, 7.1084, 7.108, 7.1077, 7.1076, 7.108, 7.1075, 7.1072, 7.1068, 7.1065, 7.1064, 7.1062, 7.1062, 7.1059, 7.1055, 7.1041, 7.1026, 7.1036, 7.1034, 7.1032, 7.1028, 7.1027, 7.1023, 7.1033, 7.103, 7.1041, 7.1052, 7.105, 7.1046, 7.1057, 7.1054, 7.105, 7.1046, 7.1056, 7.1052, 7.1051, 7.1047, 7.1045, 7.1054, 7.1053, 7.1063, 7.1062, 7.1062, 7.1059, 7.1065, 7.1062, 7.106, 7.1055, 7.1065, 7.1063, 7.1073, 7.107, 7.1066, 7.1076, 7.1072, 7.1081, 7.1077, 7.1087, 7.1085, 7.1069, 7.1054, 7.105, 7.1049, 7.1033, 7.103, 7.1027, 7.1026, 7.1011, 7.102, 7.1016, 7.1013, 7.1009, 7.1005, 7.1001, 7.0987, 7.0983, 7.0983, 7.098, 7.0989, 7.0987, 7.0983, 7.098, 7.0976, 7.0986, 7.0972, 7.0981, 7.0982, 7.0981, 7.0977, 7.0973, 7.0972, 7.0971, 7.0981, 7.1003, 7.1, 7.0996, 7.0992, 7.099, 7.0988, 7.0986, 7.0996, 7.0993, 7.1004, 7.099, 7.0986, 7.0983, 7.098, 7.0976, 7.0972, 7.0969, 7.0967, 7.0965, 7.0975, 7.0984, 7.0982, 7.098, 7.0979, 7.0978, 7.0987, 7.0983, 7.098, 7.0989, 7.0999, 7.0997, 7.0993, 7.0989, 7.0987, 7.0983, 7.0981, 7.0979, 7.0975, 7.096, 7.0996, 7.101, 7.1006, 7.1002, 7.0998, 7.0995, 7.0991, 7.0988, 7.0987, 7.0986, 7.0985, 7.0982, 7.0979, 7.0989, 7.0986, 7.0983, 7.0983, 7.0982, 7.0991, 7.0987, 7.0998, 7.0996, 7.0992, 7.099, 7.0998, 7.0996, 7.1005, 7.1001, 7.0997, 7.0993, 7.1003, 7.1, 7.0997, 7.0982, 7.0982, 7.0979, 7.0976, 7.0985, 7.0995, 7.0997, 7.101, 7.1007, 7.1006, 7.1003, 7.1001, 7.0997, 7.0993, 7.0991, 7.0989, 7.0999, 7.0995, 7.0992, 7.1002, 7.1, 7.0996, 7.0992, 7.0994, 7.1005, 7.1002, 7.0999, 7.0996, 7.0992, 7.1002, 7.1, 7.0996, 7.0992, 7.0989, 7.0988, 7.0984, 7.0997, 7.0995, 7.098, 7.0991, 7.0987, 7.0983, 7.0979, 7.0978, 7.0974, 7.097, 7.0966, 7.0962, 7.0959, 7.0956, 7.0952, 7.0948, 7.0945, 7.0945, 7.0941, 7.0926, 7.0924, 7.092, 7.0916, 7.0913, 7.0913, 7.0915, 7.0913, 7.0923, 7.0932, 7.093, 7.0926, 7.0911, 7.0908, 7.0904, 7.09, 7.0899, 7.0916, 7.0915, 7.095, 7.0949, 7.0948, 7.0958, 7.0954, 7.0951, 7.0949, 7.0957, 7.0954, 7.0951, 7.0948, 7.0947, 7.0945, 7.0968, 7.0965, 7.0989, 7.0986, 7.0997, 7.0994, 7.0993, 7.0978, 7.0975, 7.0987, 7.0983, 7.0979, 7.0976, 7.0986, 7.0985, 7.0983, 7.0993, 7.0991, 7.0988, 7.0985, 7.1006, 7.1003, 7.1, 7.0996, 7.0994, 7.0996, 7.0993, 7.0992, 7.0991, 7.0988, 7.0997, 7.0994, 7.1002, 7.0999, 7.0997, 7.0995, 7.1005, 7.1002, 7.0999, 7.1009, 7.1018, 7.1017, 7.1013, 7.1009, 7.101, 7.1006, 7.1005, 7.1002, 7.0999, 7.0997, 7.0994, 7.0992, 7.0988, 7.0997, 7.0993, 7.1014, 7.101, 7.102, 7.1017, 7.1015, 7.1012, 7.1022, 7.1021, 7.1018, 7.1021, 7.1018, 7.1015, 7.1014, 7.1015, 7.1011, 7.0998, 7.0996, 7.0994, 7.0991, 7.0988, 7.1022, 7.1031, 7.1028, 7.1028, 7.1026, 7.1024, 7.102, 7.1017, 7.1025, 7.1021, 7.1018, 7.1027, 7.1023, 7.102, 7.1018, 7.1014, 7.1023, 7.1021, 7.1019, 7.1015, 7.1011, 7.1021, 7.1019, 7.1015, 7.1023, 7.1009, 7.1005, 7.1002, 7.101, 7.1006, 7.1014, 7.101, 7.1007, 7.1006, 7.1005, 7.1003, 7.1, 7.0999, 7.0998, 7.0995, 7.0992, 7.0992, 7.1001, 7.0997, 7.1006, 7.1003, 7.1, 7.1009, 7.1005, 7.1001, 7.0998, 7.0994, 7.0991, 7.0987, 7.0986, 7.0986, 7.0984, 7.0983, 7.0984, 7.098, 7.0977, 7.0974, 7.0973, 7.0971, 7.0969, 7.0966, 7.0963, 7.096, 7.0958, 7.0955, 7.0953, 7.095, 7.095, 7.096, 7.096, 7.0959, 7.0948, 7.0945, 7.0954, 7.0953, 7.0964, 7.0972, 7.097, 7.0967, 7.0966, 7.0964, 7.0962, 7.0958, 7.0956, 7.0955, 7.0979, 7.0976, 7.0975, 7.0985, 7.0981, 7.0977, 7.0973, 7.097, 7.0979, 7.0976, 7.0962, 7.0961, 7.0958, 7.0966, 7.0974, 7.097, 7.0967, 7.0966, 7.0963, 7.0961, 7.0958, 7.0968, 7.0966, 7.0975, 7.0984, 7.098, 7.0988, 7.0988, 7.0986, 7.0984, 7.0981, 7.0966, 7.0988, 7.1024, 7.101, 7.0996, 7.0994, 7.099, 7.0988, 7.0984, 7.0981, 7.0977, 7.0973, 7.0982, 7.0978, 7.0974, 7.0984, 7.098, 7.0978, 7.0976, 7.0974, 7.097, 7.0967, 7.0966, 7.0962, 7.0958, 7.0944, 7.0932, 7.0921, 7.093, 7.0928, 7.0924, 7.092, 7.0918, 7.0917, 7.0919, 7.0915, 7.0914, 7.0911, 7.0911, 7.0909, 7.0905, 7.0901, 7.0898, 7.0894, 7.089, 7.0889, 7.0886, 7.0884, 7.0882, 7.0878, 7.0874, 7.0871, 7.0868, 7.0864, 7.0861, 7.0857, 7.0871, 7.0868, 7.0865, 7.0862, 7.0873, 7.0872, 7.0872, 7.0871, 7.0859, 7.0856, 7.0853, 7.0851, 7.0838, 7.0836, 7.0835, 7.0832, 7.0829, 7.083, 7.0828, 7.0826, 7.0827, 7.0823, 7.0823, 7.0821, 7.0831, 7.0829, 7.0827, 7.0874, 7.0874, 7.0926, 7.0922, 7.0918, 7.0916, 7.0913, 7.0923, 7.091, 7.0908, 7.0906, 7.0906, 7.0903, 7.0899, 7.0896, 7.0882, 7.0882, 7.0884, 7.0881, 7.0888, 7.0885, 7.0871, 7.0858, 7.0855, 7.0866, 7.0863, 7.0859, 7.0846, 7.0845, 7.0843, 7.0832, 7.0843, 7.0842, 7.0841, 7.0842, 7.0842, 7.0832, 7.0828, 7.0824, 7.0821, 7.0823, 7.0821, 7.0819, 7.0808, 7.0806, 7.0817, 7.0815, 7.0813, 7.081, 7.082, 7.0816, 7.0813, 7.0811, 7.0808, 7.0816, 7.0824, 7.0834, 7.0822, 7.0834, 7.0835, 7.0833, 7.0841, 7.0831, 7.083, 7.0826, 7.0824, 7.0821, 7.0818, 7.0817, 7.0815, 7.0811, 7.0807, 7.0804, 7.0814, 7.081, 7.0811, 7.0809, 7.0806, 7.0802, 7.0811, 7.0809, 7.0805, 7.0803, 7.0811, 7.082, 7.0817, 7.0813, 7.081, 7.0806, 7.0815, 7.0811, 7.0809, 7.0805, 7.0804, 7.08, 7.0796, 7.0793, 7.0793, 7.0791, 7.0787, 7.0784, 7.0783, 7.0792, 7.0789, 7.0787, 7.0785, 7.0793, 7.08, 7.0808, 7.0804, 7.08, 7.0796, 7.0796, 7.0792, 7.079, 7.0788, 7.0787, 7.0784, 7.0784, 7.0783, 7.078, 7.0776, 7.0773, 7.077, 7.0767, 7.0776, 7.0775, 7.0784, 7.0783, 7.0782, 7.0779, 7.0779, 7.0776, 7.0785, 7.0795, 7.0795, 7.0791, 7.0789, 7.0776, 7.0764, 7.0775, 7.0773, 7.0782, 7.0791, 7.0789, 7.0788, 7.0784, 7.0793, 7.079, 7.0788, 7.0785, 7.0783, 7.0781, 7.0779, 7.0778, 7.0776, 7.0765, 7.0763, 7.0759, 7.0755, 7.0752, 7.076, 7.0757, 7.0754, 7.0752, 7.0761, 7.0759, 7.0767, 7.0763, 7.0761, 7.0759, 7.0761, 7.0758, 7.0756, 7.0753, 7.0764, 7.0761, 7.0758, 7.0757, 7.0755, 7.0776, 7.0773, 7.0787, 7.0786, 7.0785, 7.0806, 7.0803, 7.0804, 7.0801, 7.0799, 7.0797, 7.0796, 7.0792, 7.0801, 7.0798, 7.0806, 7.0804, 7.08, 7.0786, 7.0783, 7.078, 7.0782, 7.0792, 7.0789, 7.0797, 7.0796, 7.0794, 7.0791, 7.0788, 7.0809, 7.0806, 7.0803, 7.08, 7.0797, 7.0807, 7.0805, 7.0794, 7.0791, 7.0788, 7.0776, 7.0774, 7.0772, 7.077, 7.0766, 7.0763, 7.076, 7.0757, 7.0766, 7.0762, 7.076, 7.0757, 7.0744, 7.0742, 7.075, 7.074, 7.0737, 7.0724, 7.0722, 7.0722, 7.0719, 7.0728, 7.0725, 7.0722, 7.0732, 7.0729, 7.0738, 7.0737, 7.0736, 7.0733, 7.0731, 7.0729, 7.0728, 7.0736, 7.0734, 7.0742, 7.075, 7.0747, 7.0744, 7.0743, 7.0742, 7.0739, 7.074, 7.0737, 7.0757, 7.0754, 7.0751, 7.0748, 7.0755, 7.0752, 7.0758, 7.0765, 7.0763, 7.0759, 7.0755, 7.0754, 7.0754, 7.0751, 7.0749, 7.0757, 7.0756, 7.0753, 7.0752, 7.0753, 7.0751, 7.0748, 7.0745, 7.0753, 7.0751, 7.0749, 7.0737, 7.0725, 7.0725, 7.0733, 7.073, 7.0718, 7.0718, 7.0714, 7.0714, 7.0703, 7.0712, 7.072, 7.0717, 7.0727, 7.0723, 7.072, 7.0719, 7.0717, 7.0737, 7.0736, 7.0733, 7.0741, 7.0741, 7.0738, 7.0748, 7.0747, 7.0745, 7.0755, 7.0752, 7.0756, 7.0752, 7.076, 7.0749, 7.0747, 7.0743, 7.0752, 7.074, 7.074, 7.0737, 7.0741, 7.0741, 7.0738, 7.0735, 7.0746, 7.0743, 7.0752, 7.074, 7.0727, 7.0724, 7.0722, 7.072, 7.0718, 7.0716, 7.0713, 7.071, 7.0708, 7.0706, 7.0702, 7.07, 7.0698, 7.0697, 7.0704, 7.0702, 7.0698, 7.0694, 7.069, 7.069, 7.0687, 7.0684, 7.068, 7.0677, 7.0673, 7.0671, 7.0658, 7.0656, 7.0652, 7.0648, 7.0645, 7.0642, 7.0672, 7.0679, 7.0677, 7.0686, 7.0683, 7.068, 7.0678, 7.0674, 7.067, 7.0683, 7.0681, 7.0679, 7.0687, 7.0683, 7.067, 7.0659, 7.0649, 7.0635, 7.0634, 7.0622, 7.0629, 7.0629, 7.0641, 7.064, 7.0638, 7.0635, 7.0631, 7.0639, 7.0636, 7.0635, 7.0623, 7.0632, 7.0629, 7.0627, 7.0625, 7.0624, 7.0632, 7.0641, 7.0651, 7.0648, 7.0661, 7.066, 7.0659, 7.0666, 7.0662, 7.0661, 7.0658, 7.0655, 7.0653, 7.0651, 7.0649, 7.0653, 7.0651, 7.0651, 7.0648, 7.065, 7.066, 7.0657, 7.0656, 7.0653, 7.0675, 7.0673, 7.0674, 7.0671, 7.0669, 7.0667, 7.0667, 7.0663, 7.066, 7.0667, 7.0663, 7.0651, 7.0648, 7.0648, 7.0656, 7.0654, 7.0654, 7.0652, 7.065, 7.0657, 7.0647, 7.0654, 7.0662, 7.066, 7.0657, 7.0654, 7.0653, 7.0651, 7.0649, 7.0637, 7.0645, 7.0646, 7.0647, 7.0656, 7.0655, 7.0675, 7.0673, 7.0683, 7.068, 7.0677, 7.0675, 7.0687, 7.0686, 7.0674, 7.0671, 7.067, 7.0657, 7.0666, 7.0666, 7.0664, 7.066, 7.0656, 7.0669, 7.0668, 7.0675, 7.0675, 7.0673, 7.0683, 7.0682, 7.0679, 7.0676, 7.0674, 7.0662, 7.066, 7.0657, 7.0657, 7.0654, 7.0651, 7.0648, 7.0647, 7.0644, 7.0633, 7.063, 7.0629, 7.0627, 7.0625, 7.0627, 7.0624, 7.0631, 7.0628, 7.0625, 7.0623, 7.0622, 7.062, 7.062, 7.0619, 7.0619, 7.0616, 7.0612, 7.061, 7.0608, 7.0606, 7.0614, 7.0612, 7.062, 7.0622, 7.063, 7.0627, 7.0635, 7.0633, 7.063, 7.0644, 7.0641, 7.0639, 7.0636, 7.0634, 7.0634, 7.0642, 7.0639, 7.0647, 7.0655, 7.0653, 7.0652, 7.066, 7.0657, 7.0654, 7.0653, 7.065, 7.0658, 7.0658, 7.0655, 7.0663, 7.0671, 7.0668, 7.0675, 7.0672, 7.0682, 7.0681, 7.0678, 7.0676, 7.0673, 7.0671, 7.0679, 7.0689, 7.0688, 7.0687, 7.0695, 7.0695, 7.0702, 7.069, 7.0689, 7.0687, 7.0688, 7.0696, 7.0694, 7.0703, 7.0701, 7.0698, 7.0707, 7.0705, 7.0702, 7.0701, 7.07, 7.0698, 7.0697, 7.0688, 7.0695, 7.0691, 7.0679, 7.0678, 7.0688, 7.0686, 7.0673, 7.0671, 7.0668, 7.0676, 7.0673, 7.067, 7.0678, 7.0675, 7.0673, 7.0673, 7.0671, 7.067, 7.0667, 7.0664, 7.0673, 7.067, 7.0667, 7.0665, 7.0665, 7.0665, 7.0665, 7.0662, 7.0662, 7.066, 7.0657, 7.0657, 7.0654, 7.0652, 7.0682, 7.0704, 7.0712, 7.0725, 7.0724, 7.0724, 7.0721, 7.0718, 7.0715, 7.0713, 7.0711, 7.0708, 7.0717, 7.0706, 7.0703, 7.0701, 7.0698, 7.0695, 7.0692, 7.0742, 7.0762, 7.0761, 7.0758, 7.0755, 7.0763, 7.0762, 7.0761, 7.0759, 7.0746, 7.0746, 7.0744, 7.0742, 7.0741, 7.0739, 7.0738, 7.0745, 7.0743, 7.0741, 7.0739, 7.0738, 7.0736, 7.0733, 7.074, 7.0748, 7.0747, 7.0745, 7.0743, 7.0743, 7.0741, 7.0739, 7.0736, 7.0733, 7.0752, 7.0749, 7.0738, 7.0737, 7.0744, 7.0742, 7.075, 7.0747, 7.0755, 7.0752, 7.0748, 7.0746, 7.0754, 7.0752, 7.0759, 7.0767, 7.0764, 7.0773, 7.0772, 7.077, 7.0778, 7.0775, 7.0773, 7.077, 7.0767, 7.0765, 7.0764, 7.0761, 7.0758, 7.0765, 7.0764, 7.0752, 7.075, 7.0747, 7.0746, 7.0765, 7.0774, 7.0772, 7.077, 7.0777, 7.0774, 7.0772, 7.077, 7.0767, 7.0768, 7.0766, 7.0764, 7.0765, 7.0788, 7.0785, 7.0782, 7.078, 7.0777, 7.0774, 7.0781, 7.0778, 7.0775, 7.0773, 7.0782, 7.0789, 7.0788, 7.0795, 7.0802, 7.0803, 7.0802, 7.0799, 7.0796, 7.0795, 7.0793, 7.0806, 7.0807, 7.0804, 7.0819, 7.0827, 7.0817, 7.0817, 7.0814, 7.0821, 7.0819, 7.0816, 7.0813, 7.0813, 7.0811, 7.0818, 7.0816, 7.0814, 7.0811, 7.0808, 7.0806, 7.0813, 7.0812, 7.0809, 7.0807, 7.0804, 7.0811, 7.0819, 7.0827, 7.0828, 7.0828, 7.0825, 7.0822, 7.0822, 7.0821, 7.0822, 7.082, 7.0818, 7.0815, 7.0813, 7.0831, 7.0829, 7.0828, 7.0827, 7.0827, 7.0833, 7.0832, 7.0833, 7.0833, 7.0831, 7.0838, 7.0845, 7.0842, 7.084, 7.0837, 7.0836, 7.0836, 7.0834, 7.0831, 7.0828, 7.0835, 7.0832, 7.0839, 7.0846, 7.0843, 7.0841, 7.0838, 7.0835, 7.0833, 7.0841, 7.0838, 7.0835, 7.0832, 7.0831, 7.0829, 7.083, 7.0827, 7.0824, 7.0821, 7.0819, 7.0816, 7.0814, 7.0822, 7.0819, 7.0807, 7.0804, 7.0812, 7.082, 7.082, 7.0827, 7.0826, 7.0823, 7.083, 7.0829, 7.0827, 7.0825, 7.0823, 7.0821, 7.082, 7.0818, 7.0826, 7.0823, 7.082, 7.0819, 7.0818, 7.0815, 7.0814, 7.0822, 7.0819, 7.0817, 7.0815, 7.0822, 7.0819, 7.0818, 7.0815, 7.0814, 7.0811, 7.0809, 7.0807, 7.0804, 7.0801, 7.0808, 7.0807, 7.0806, 7.0804, 7.0801, 7.0802, 7.0802, 7.0801, 7.0798, 7.0805, 7.0803, 7.08, 7.0808, 7.0806, 7.0802, 7.08, 7.0799, 7.0798, 7.0796, 7.0794, 7.0825, 7.0823, 7.082, 7.0818, 7.0817, 7.0824, 7.0821, 7.0819, 7.0817, 7.0814, 7.0812, 7.0853, 7.089, 7.0887, 7.0894, 7.0892, 7.0889, 7.0886, 7.0893, 7.0901, 7.0909, 7.091, 7.0901, 7.09, 7.0897, 7.0894, 7.0893, 7.089, 7.0889, 7.0887, 7.0887, 7.0876, 7.0884, 7.0883, 7.0882, 7.0879, 7.0887, 7.0895, 7.0884, 7.0883, 7.0881, 7.0889, 7.0887, 7.0886, 7.0883, 7.088, 7.0878, 7.0906, 7.0943, 7.096, 7.0958, 7.0974, 7.0971, 7.0977, 7.0992, 7.099, 7.0998, 7.1004, 7.1012, 7.1011, 7.101, 7.101, 7.0999, 7.0988, 7.0985, 7.0982, 7.0979, 7.0977, 7.0975, 7.0972, 7.0969, 7.0966, 7.0966, 7.0964, 7.0961, 7.0958, 7.0959, 7.0956, 7.0965, 7.0974, 7.0972, 7.0969, 7.0967, 7.0967, 7.0974, 7.0996, 7.0995, 7.1003, 7.1003, 7.1002, 7.1002, 7.1, 7.0997, 7.1005, 7.1003, 7.1, 7.0999, 7.1009, 7.1007, 7.1005, 7.1002, 7.1002, 7.0999, 7.0997, 7.0994, 7.0991, 7.0997, 7.0994, 7.1007, 7.1006, 7.1006, 7.1003, 7.1, 7.1013, 7.1011, 7.1008, 7.1006, 7.1003, 7.1002, 7.1009, 7.1008, 7.1005, 7.1004, 7.1004, 7.1003, 7.1011, 7.1011, 7.101, 7.1007, 7.1006, 7.1005, 7.1003, 7.103, 7.1027, 7.1025, 7.1024, 7.1023, 7.1022, 7.1024, 7.1032, 7.1049, 7.1046, 7.1053, 7.1051, 7.1056, 7.1053, 7.1051, 7.1059, 7.1057, 7.1056, 7.1054, 7.1051, 7.1059, 7.1057, 7.1065, 7.1072, 7.1069, 7.1066, 7.1074, 7.1077, 7.1076, 7.1073, 7.108, 7.1077, 7.1075, 7.1084, 7.1082, 7.1079, 7.1077, 7.1074, 7.1082, 7.1081, 7.111, 7.1108, 7.1098, 7.1097, 7.1104, 7.1112, 7.111, 7.1107, 7.1106, 7.1112, 7.1109, 7.1106, 7.1103, 7.111, 7.1107, 7.1106, 7.1113, 7.111, 7.1099, 7.1098, 7.1095, 7.1093, 7.1092, 7.109, 7.1087, 7.109, 7.1081, 7.107, 7.1067, 7.1074, 7.1071, 7.1078, 7.1087, 7.1095, 7.1097, 7.1096, 7.1093, 7.1091, 7.1088, 7.1087, 7.1085, 7.1085, 7.1089, 7.1087, 7.1095, 7.1093, 7.1092, 7.1089, 7.1087, 7.1087, 7.1085, 7.1083, 7.108, 7.1077, 7.1076, 7.1074, 7.108, 7.1078, 7.1075, 7.1073, 7.108, 7.1077, 7.1074, 7.1064, 7.1071, 7.1069, 7.1076, 7.1073, 7.108, 7.1077, 7.1076, 7.1073, 7.107, 7.1067, 7.1065, 7.1062, 7.1059, 7.1058, 7.1055, 7.1052, 7.1041, 7.103, 7.1038, 7.1035, 7.1032, 7.1031, 7.1028, 7.1026, 7.1023, 7.1022, 7.1021, 7.1019, 7.1026, 7.1026, 7.1032, 7.1039, 7.1048, 7.1045, 7.1044, 7.1051, 7.1049, 7.1066, 7.1064, 7.1055, 7.1062, 7.1083, 7.108, 7.1077, 7.1075, 7.1075, 7.1072, 7.1071, 7.1078, 7.1076, 7.1084, 7.1081, 7.108, 7.1078, 7.1076, 7.1073, 7.1081, 7.1078, 7.1084, 7.1114, 7.1121, 7.1119, 7.1116, 7.1116, 7.1115, 7.1112, 7.111, 7.1107, 7.1104, 7.1111, 7.1108, 7.1124, 7.1121, 7.1121, 7.1118, 7.1117, 7.1115, 7.1122, 7.1122, 7.1129, 7.1127, 7.1124, 7.1122, 7.1121, 7.1129, 7.1136, 7.1126, 7.1124, 7.1125, 7.1123, 7.1122, 7.1121, 7.113, 7.1137, 7.1135, 7.1135, 7.1134, 7.1132, 7.1141, 7.1139, 7.1128, 7.1129, 7.1128, 7.1136, 7.1143, 7.1142, 7.115, 7.1149, 7.1147, 7.1144, 7.1142, 7.114, 7.1146, 7.1153, 7.115, 7.1148, 7.1155, 7.1152, 7.1159, 7.1165, 7.1172, 7.1169, 7.1167, 7.1165, 7.1163, 7.116, 7.1158, 7.1157, 7.1155, 7.1152, 7.116, 7.1159, 7.1151, 7.1158, 7.1155, 7.1154, 7.1161, 7.1159, 7.116, 7.1167, 7.1164, 7.1164, 7.1163, 7.1163, 7.1161, 7.116, 7.115, 7.115, 7.1148, 7.1145, 7.1152, 7.115, 7.1149, 7.1149, 7.1147, 7.1145, 7.1143, 7.114, 7.1137, 7.1136, 7.1133, 7.113, 7.1128, 7.1125, 7.1124, 7.1121, 7.1128, 7.1126, 7.1125, 7.1115, 7.1112, 7.1111, 7.1108, 7.1106, 7.1103, 7.1101, 7.1112, 7.1129, 7.1136, 7.1125, 7.1125, 7.1122, 7.1129, 7.1127, 7.1125, 7.1125, 7.1131, 7.1129, 7.1126, 7.1125, 7.1125, 7.1123, 7.1121, 7.1118, 7.1107, 7.1105, 7.1103, 7.1101, 7.1099, 7.1089, 7.1078, 7.1085, 7.1084, 7.1082, 7.1089, 7.109, 7.1087, 7.1077, 7.1075, 7.1075, 7.1074, 7.1071, 7.1069, 7.1059, 7.1058, 7.1056, 7.1054, 7.1061, 7.1059, 7.1067, 7.1065, 7.1065, 7.1062, 7.106, 7.1058, 7.1058, 7.1056, 7.1054, 7.1053, 7.105, 7.1049, 7.1046, 7.1053, 7.1051, 7.1041, 7.1039, 7.1036, 7.1025, 7.1031, 7.1029, 7.1026, 7.1024, 7.1021, 7.1031, 7.1032, 7.1032, 7.103, 7.1031, 7.1029, 7.1027, 7.1025, 7.1023, 7.1031, 7.1028, 7.1027, 7.1035, 7.1043, 7.1051, 7.105, 7.105, 7.1048, 7.1046, 7.1044, 7.105, 7.1047, 7.1046, 7.1044, 7.1033, 7.1052, 7.105, 7.1048, 7.1047, 7.1036, 7.1069, 7.1069, 7.1077, 7.1078, 7.1075, 7.1072, 7.1079, 7.1078, 7.1078, 7.1076, 7.1075, 7.1073, 7.1078, 7.1078, 7.1077, 7.1076, 7.1066, 7.1064, 7.1071, 7.1069, 7.1066, 7.1065, 7.1062, 7.107, 7.1069, 7.1067, 7.1074, 7.1073, 7.108, 7.1079, 7.1086, 7.1084, 7.1083, 7.1082, 7.1088, 7.1086, 7.1083, 7.1099, 7.1096, 7.1095, 7.1103, 7.1104, 7.1111, 7.111, 7.1107, 7.1098, 7.1089, 7.1086, 7.1086, 7.1086, 7.1092, 7.1091, 7.1097, 7.1097, 7.1095, 7.1094, 7.1084, 7.1091, 7.109, 7.1089, 7.1086, 7.1085, 7.1083, 7.1082, 7.1081, 7.1078, 7.1075, 7.1075, 7.1064, 7.1062, 7.1061, 7.1068, 7.1084, 7.1083, 7.1074, 7.1066, 7.1055, 7.1054, 7.1061, 7.1059, 7.1068, 7.1076, 7.1074, 7.1072, 7.1069, 7.1067, 7.1065, 7.1062, 7.1062, 7.106, 7.1059, 7.105, 7.105, 7.1047, 7.1044, 7.1041, 7.1048, 7.1046, 7.1043, 7.104, 7.1037, 7.1034, 7.1054, 7.106, 7.1058, 7.1058, 7.1056, 7.1053, 7.105, 7.1092, 7.1089, 7.1086, 7.1093, 7.1091, 7.1098, 7.1097, 7.1095, 7.1096, 7.1093, 7.1091, 7.1098, 7.1089, 7.1088, 7.1094, 7.1093, 7.109, 7.1089, 7.1096, 7.1093, 7.109, 7.1097, 7.1096, 7.1094, 7.1091, 7.109, 7.1088, 7.1086, 7.1093, 7.112, 7.1118, 7.1117, 7.1114, 7.1121, 7.1129, 7.1129, 7.1128, 7.1125, 7.1123, 7.1123, 7.1122, 7.1121, 7.1137, 7.1137, 7.1136, 7.1135, 7.1143, 7.1155, 7.1162, 7.1159, 7.1159, 7.1156, 7.1153, 7.1151, 7.1158, 7.1165, 7.1171, 7.1171, 7.1168, 7.1176, 7.1174, 7.1172, 7.1169, 7.1166, 7.1164, 7.1155, 7.1153, 7.115, 7.1166, 7.1173, 7.1197, 7.1194, 7.1198, 7.1205, 7.1203, 7.1202, 7.12, 7.1197, 7.1196, 7.1204, 7.1204, 7.1194, 7.1192, 7.1192, 7.119, 7.1187, 7.1187, 7.1184, 7.12, 7.1199, 7.1197, 7.1195, 7.1196, 7.1203, 7.1202, 7.1201, 7.1198, 7.1195, 7.1195, 7.1192, 7.1189, 7.1188, 7.1186, 7.1185, 7.1182, 7.1179, 7.1176, 7.1173, 7.1171, 7.1173, 7.118, 7.1177, 7.1184, 7.119, 7.1187, 7.1195, 7.1194, 7.1195, 7.1194, 7.1184, 7.1175, 7.1166, 7.1166, 7.1163, 7.1163, 7.116, 7.1159, 7.116, 7.1158, 7.1155, 7.1162, 7.1159, 7.1158, 7.1156, 7.1155, 7.118, 7.1177, 7.1183, 7.1181, 7.118, 7.1179, 7.1176, 7.1174, 7.1172, 7.1169, 7.1175, 7.1173, 7.1174, 7.1174, 7.1172, 7.1181, 7.1189, 7.1187, 7.1186, 7.1193, 7.12, 7.1198, 7.1205, 7.1222, 7.1222, 7.122, 7.1217, 7.1216, 7.1223, 7.1221, 7.122, 7.1218, 7.1224, 7.1231, 7.1238, 7.1254, 7.1254, 7.126, 7.1259, 7.1266, 7.1264, 7.1262, 7.1259, 7.1265, 7.1272, 7.1286, 7.1294, 7.1291, 7.1289, 7.1286, 7.1284, 7.129, 7.128, 7.1277, 7.1275, 7.1272, 7.1261, 7.1267, 7.1273, 7.1279, 7.1278, 7.1275, 7.1273, 7.127, 7.1267, 7.1282, 7.128, 7.1287, 7.1294, 7.1291, 7.1288, 7.1287, 7.1284, 7.1281, 7.127, 7.1267, 7.1265, 7.1262, 7.1259, 7.1258, 7.1255, 7.1253, 7.125, 7.1248, 7.1246, 7.1244, 7.1243, 7.1242, 7.1239, 7.1237, 7.1243, 7.1241, 7.1239, 7.1239, 7.1238, 7.1237, 7.1237, 7.1234, 7.1225, 7.1222, 7.1221, 7.1221, 7.1219, 7.1218, 7.1215, 7.1213, 7.121, 7.1207, 7.1204, 7.121, 7.1211, 7.1209, 7.1206, 7.1204, 7.123, 7.1248, 7.1246, 7.1238, 7.1238, 7.1235, 7.1235, 7.1233, 7.123, 7.1227, 7.1225, 7.1223, 7.1222, 7.122, 7.1218, 7.1216, 7.1214, 7.1213, 7.1213, 7.1213, 7.1214, 7.1213, 7.1212, 7.1209, 7.1206, 7.1205, 7.1202, 7.1199, 7.1197, 7.1203, 7.1201, 7.1199, 7.1197, 7.1238, 7.1238, 7.1236, 7.1234, 7.1224, 7.1222, 7.122, 7.1217, 7.1225, 7.123, 7.1228, 7.1226, 7.1233, 7.1231, 7.1229, 7.1228, 7.1228, 7.1227, 7.1217, 7.1215, 7.1213, 7.1212, 7.121, 7.1208, 7.1214, 7.1214, 7.1229, 7.1229, 7.1244, 7.1243, 7.1241, 7.1239, 7.1239, 7.1238, 7.1246, 7.1252, 7.1251, 7.1249, 7.1249, 7.1247, 7.1246, 7.1244, 7.1243, 7.1242, 7.1293, 7.129, 7.129, 7.1288, 7.1278, 7.1276, 7.1274, 7.1273, 7.1272, 7.127, 7.1269, 7.1267, 7.1265, 7.1262, 7.1259, 7.125, 7.1248, 7.1246, 7.1252, 7.125, 7.1249, 7.1246, 7.1278, 7.1294, 7.1293, 7.1292, 7.1289, 7.128, 7.1279, 7.1277, 7.1284, 7.1282, 7.1281, 7.1279, 7.1278, 7.1275, 7.1274, 7.1271, 7.1269, 7.1269, 7.1275, 7.1273, 7.1271, 7.1269, 7.1276, 7.1274, 7.1272, 7.1269, 7.1267, 7.1266, 7.1264, 7.1263, 7.1261, 7.1261, 7.1259, 7.1265, 7.1262, 7.126, 7.126, 7.1259, 7.1265, 7.1262, 7.126, 7.1266, 7.1264, 7.1262, 7.126, 7.1259, 7.1259, 7.1258, 7.1257, 7.1255, 7.1253, 7.1275, 7.1274, 7.1274, 7.1274, 7.1272, 7.1269, 7.1259, 7.1256, 7.1256, 7.1253, 7.125, 7.1257, 7.1256, 7.1254, 7.1252, 7.1258, 7.1255, 7.1254, 7.1251, 7.1249, 7.1256, 7.1254, 7.1251, 7.1249, 7.1246, 7.1245, 7.1252, 7.1259, 7.1256, 7.1253, 7.1252, 7.1249, 7.1247, 7.1244, 7.1242, 7.124, 7.1237, 7.1238, 7.1235, 7.1232, 7.123, 7.1229, 7.1226, 7.1225, 7.1222, 7.122, 7.1218, 7.1215, 7.1214, 7.1211, 7.1208, 7.1206, 7.1211, 7.121, 7.1217, 7.1215, 7.1213, 7.1211, 7.1225, 7.1222, 7.122, 7.1218, 7.1215, 7.1213, 7.1211, 7.1217, 7.1214, 7.1211, 7.1217, 7.1214, 7.122, 7.122, 7.1217, 7.1216, 7.1222, 7.122, 7.1227, 7.1225, 7.1223, 7.1222, 7.122, 7.1218, 7.1224, 7.123, 7.1237, 7.1243, 7.1241, 7.1238, 7.1235, 7.1234, 7.1231, 7.1228, 7.1228, 7.1247, 7.1246, 7.1243, 7.124, 7.1238, 7.1236, 7.1235, 7.1233, 7.1231, 7.1229, 7.1235, 7.1232, 7.1229, 7.1235, 7.1241, 7.124, 7.124, 7.1239, 7.1238, 7.1245, 7.1243, 7.124, 7.124, 7.1238, 7.1244, 7.1241, 7.124, 7.1238, 7.1235, 7.1233, 7.1239, 7.1238, 7.1235, 7.1233, 7.1234, 7.1232, 7.1223, 7.1222, 7.122, 7.1221, 7.1219, 7.1217, 7.1223, 7.1221, 7.1218, 7.122, 7.1218, 7.1224, 7.1222, 7.1219, 7.1218, 7.1216, 7.1224, 7.123, 7.1228, 7.1234, 7.1232, 7.1231, 7.1228, 7.1226, 7.1225, 7.1223, 7.1221, 7.1218, 7.1224, 7.1223, 7.123, 7.1228, 7.1228, 7.1226, 7.1226, 7.1225, 7.1224, 7.1222, 7.1227, 7.1233, 7.1239, 7.1237, 7.1234, 7.1239, 7.1262, 7.1259, 7.1259, 7.1257, 7.1257, 7.1263, 7.1261, 7.1266, 7.1264, 7.1263, 7.1261, 7.126, 7.1258, 7.1264, 7.1263, 7.1262, 7.1261, 7.126, 7.126, 7.1258, 7.1264, 7.1262, 7.126, 7.1257, 7.1263, 7.1262, 7.126, 7.1266, 7.1263, 7.1269, 7.1269, 7.1275, 7.1281, 7.1279, 7.1278, 7.1276, 7.1281, 7.1286, 7.1285, 7.1282, 7.128, 7.1277, 7.1275, 7.1273, 7.1271, 7.1271, 7.1276, 7.1273, 7.1272, 7.127, 7.1267, 7.1264, 7.1261, 7.1259, 7.1265, 7.1263, 7.1269, 7.1266, 7.1264, 7.1262, 7.1268, 7.1269, 7.1274, 7.128, 7.1286, 7.1291, 7.1288, 7.1285, 7.1291, 7.1284, 7.1289, 7.1287, 7.1285, 7.1282, 7.128, 7.1286, 7.1283, 7.1297, 7.1304, 7.1309, 7.1306, 7.1305, 7.1302, 7.1316, 7.1313, 7.1311, 7.1324, 7.1323, 7.1337, 7.1335, 7.1341, 7.1339, 7.1338, 7.1344, 7.1343, 7.1343, 7.1342, 7.134, 7.1346, 7.1344, 7.1343, 7.134, 7.1347, 7.1346, 7.1361, 7.1353, 7.1351, 7.1349, 7.1347, 7.1347, 7.1347, 7.1345, 7.1344, 7.1342, 7.1365, 7.1363, 7.137, 7.1367, 7.1388, 7.1386, 7.1384, 7.1383, 7.1381, 7.1379, 7.1377, 7.1384, 7.1391, 7.139, 7.1396, 7.1406, 7.142, 7.1429, 7.1428, 7.1426, 7.1424, 7.1422, 7.1428, 7.1426, 7.1423, 7.1421, 7.1419, 7.1417, 7.1415, 7.1412, 7.141, 7.1408, 7.1414, 7.1413, 7.1411, 7.1409, 7.1415, 7.1414, 7.142, 7.1418, 7.1425, 7.1423, 7.1421, 7.1428, 7.1426, 7.1424, 7.1424, 7.1422, 7.1419, 7.1418, 7.1424, 7.1423, 7.1421, 7.1426, 7.1423, 7.142, 7.1425, 7.1431, 7.1428, 7.1425, 7.1423, 7.143, 7.1427, 7.1426, 7.1425, 7.1422, 7.142, 7.1417, 7.1415, 7.1412, 7.141, 7.1416, 7.1413, 7.1418, 7.1416, 7.1414, 7.1412, 7.1417, 7.1415, 7.1414, 7.1412, 7.141, 7.1408, 7.1405, 7.1411, 7.1417, 7.1423, 7.1421, 7.142, 7.1425, 7.1422, 7.1422, 7.142, 7.1419, 7.1416, 7.1422, 7.142, 7.1417, 7.1415, 7.1414, 7.1411, 7.141, 7.1409, 7.1414, 7.1412, 7.1411, 7.1417, 7.1422, 7.142, 7.1425, 7.143, 7.1427, 7.1424, 7.1421, 7.1419, 7.1424, 7.1421, 7.1421, 7.1422, 7.142, 7.1419, 7.1417, 7.1416, 7.1413, 7.1412, 7.1409, 7.1406, 7.1404, 7.1401, 7.1398, 7.1395, 7.1393, 7.1399, 7.1397, 7.1395, 7.1394, 7.1399, 7.1398, 7.1397, 7.1394, 7.1392, 7.1391, 7.1388, 7.1387, 7.1385, 7.1391, 7.1391, 7.1389, 7.1396, 7.1397, 7.1403, 7.1403, 7.1403, 7.14, 7.1398, 7.1397, 7.1396, 7.1396, 7.1396, 7.1393, 7.1392, 7.1391, 7.1396, 7.1393, 7.14, 7.1398, 7.1396, 7.1402, 7.1402, 7.14, 7.1399, 7.1397, 7.1394, 7.1392, 7.1398, 7.1395, 7.1404, 7.1403, 7.1401, 7.1407, 7.1405, 7.1411, 7.141, 7.1409, 7.1407, 7.1406, 7.1413, 7.1413, 7.1411, 7.1409, 7.1408, 7.1414, 7.1413, 7.1412, 7.1412, 7.1424, 7.143, 7.1435, 7.1434, 7.1432, 7.143, 7.143, 7.143, 7.1428, 7.1457, 7.1459], '192.168.122.112': [7.2057, 6.3115, 7.8788, 10.7917, 9.8209, 9.1824, 8.7552, 8.5912, 8.2145, 8.1502, 7.5152, 7.8037, 7.6663, 7.5439, 7.4464, 7.3309, 7.5193, 7.4431, 7.3423, 7.2529, 7.2863, 7.226, 7.6526, 7.6404, 7.7952, 8.6162, 8.5209, 8.4446, 8.3711, 8.285, 8.3726, 8.3167, 8.5698, 8.5016, 8.4313, 8.4965, 8.4139, 8.4875, 8.4151, 8.3548, 8.2801, 8.2132, 8.1485, 8.0957, 8.178, 8.1412, 8.227, 8.1717, 8.1213, 8.0656, 8.2316, 8.2879, 8.2334, 8.0955, 8.0482, 7.9992, 7.9581, 7.9156, 7.878, 7.8409, 7.8052, 7.8582, 7.8246, 7.7915, 7.7673, 7.7337, 7.7806, 7.8319, 7.7423, 7.7072, 7.7535, 7.725, 7.6946, 7.6609, 7.636, 7.6047, 7.5752, 7.4869, 7.4657, 7.4459, 7.421, 7.4002, 7.3853, 7.3626, 7.3454, 7.3263, 7.3059, 7.2895, 7.2686, 7.2464, 7.2266, 7.2095, 7.2475, 7.2271, 7.2626, 7.2517, 7.2362, 7.2173, 7.2004, 7.2068, 7.1937, 7.2309, 7.2669, 7.2518, 7.2866, 7.3238, 7.3157, 7.3046, 7.289, 7.2805, 7.2672, 7.2137, 7.1969, 7.1813, 7.1647, 7.1534, 7.1495, 7.1366, 7.1368, 7.122, 7.154, 7.1847, 7.1731, 7.158, 7.1461, 7.132, 7.124, 7.1166, 7.1093, 7.1033, 7.0915, 7.0429, 7.0391, 7.0295, 7.0183, 7.0085, 6.9983, 6.9885, 6.9778, 6.9353, 6.9264, 6.9993, 6.999, 6.9979, 7.0717, 7.0614, 7.0569, 7.0446, 7.071, 7.0623, 7.0583, 7.0832, 7.1107, 7.1068, 7.0977, 7.0978, 7.0873, 7.0792, 7.0789, 7.0769, 7.0699, 7.0656, 7.0589, 7.0491, 7.0432, 7.0685, 7.0669, 7.0642, 7.064, 7.0854, 7.0757, 7.0658, 7.032, 7.0229, 7.0128, 7.0035, 6.9964, 6.9872, 7.0777, 7.0708, 7.0695, 7.0612, 7.0518, 7.0492, 7.0417, 7.0639, 7.0549, 7.0453, 7.0407, 7.0359, 7.033, 7.0248, 7.0161, 7.0118, 7.0067, 7.0274, 7.0246, 7.0169, 7.0376, 7.0583, 7.0505, 7.0434, 7.0642, 7.0579, 7.0508, 7.0484, 7.0665, 7.0852, 7.0784, 7.0722, 7.0644, 7.191, 7.1862, 7.1778, 7.1702, 7.1654, 7.1833, 7.1773, 7.1724, 7.1698, 7.1641, 7.1566, 7.1517, 7.1227, 7.1416, 7.1342, 7.1318, 7.1262, 7.124, 7.097, 7.1145, 7.1301, 7.1233, 7.1161, 7.1317, 7.148, 7.1435, 7.1363, 7.1324, 7.1277, 7.1272, 7.1433, 7.1801, 7.1749, 7.1699, 7.1712, 7.1754, 7.1756, 7.1786, 7.194, 7.2104, 7.2041, 7.1974, 7.1934, 7.1908, 7.1872, 7.1842, 7.1847, 7.1814, 7.1768, 7.1703, 7.1685, 7.1668, 7.1629, 7.1567, 7.1726, 7.1689, 7.1685, 7.1632, 7.161, 7.1586, 7.1747, 7.1708, 7.1659, 7.1636, 7.1576, 7.1722, 7.1674, 7.167, 7.1603, 7.1553, 7.1505, 7.1448, 7.1446, 7.1236, 7.1372, 7.151, 7.1487, 7.1622, 7.1585, 7.1554, 7.1525, 7.1466, 7.1418, 7.1419, 7.1419, 7.1357, 7.1314, 7.1446, 7.1578, 7.1523, 7.1466, 7.1961, 7.1901, 7.1972, 7.1933, 7.1881, 7.184, 7.1994, 7.215, 7.2108, 7.1897, 7.2057, 7.2208, 7.2144, 7.2243, 7.2179, 7.2305, 7.2257, 7.2217, 7.251, 7.2516, 7.2621, 7.2559, 7.3205, 7.3177, 7.3128, 7.3084, 7.3028, 7.3134, 7.3074, 7.3088, 7.305, 7.2992, 7.2953, 7.3075, 7.305, 7.2995, 7.2935, 7.2876, 7.2982, 7.2927, 7.3036, 7.3002, 7.2941, 7.2884, 7.2834, 7.2775, 7.2735, 7.2689, 7.2796, 7.2759, 7.2709, 7.2674, 7.2643, 7.2586, 7.2557, 7.2523, 7.2469, 7.2415, 7.2362, 7.2493, 7.2509, 7.2517, 7.2633, 7.2587, 7.2538, 7.2506, 7.2463, 7.2418, 7.2462, 7.2443, 7.2273, 7.2376, 7.2336, 7.2285, 7.2241, 7.2203, 7.2159, 7.2162, 7.1993, 7.1967, 7.1916, 7.1897, 7.1867, 7.1831, 7.1793, 7.1829, 7.1797, 7.1754, 7.2004, 7.1975, 7.1959, 7.1926, 7.1892, 7.1861, 7.1821, 7.1945, 7.1901, 7.1895, 7.1846, 7.194, 7.19, 7.1883, 7.2104, 7.2201, 7.2163, 7.2251, 7.2227, 7.2308, 7.2276, 7.24, 7.2368, 7.2454, 7.271, 7.268, 7.2661, 7.2755, 7.2709, 7.2666, 7.2632, 7.2589, 7.2542, 7.2515, 7.2488, 7.2448, 7.2536, 7.2515, 7.248, 7.2448, 7.2455, 7.2552, 7.2627, 7.2606, 7.2736, 7.2614, 7.2575, 7.2555, 7.2413, 7.2558, 7.264, 7.2615, 7.258, 7.2654, 7.275, 7.2724, 7.2803, 7.2783, 7.2821, 7.2903, 7.2882, 7.2859, 7.2947, 7.2933, 7.2907, 7.2999, 7.2955, 7.3159, 7.3154, 7.3112, 7.3084, 7.3056, 7.3027, 7.2985, 7.2986, 7.2945, 7.3027, 7.3331, 7.329, 7.3249, 7.3327, 7.3192, 7.3268, 7.3343, 7.3304, 7.329, 7.3253, 7.3212, 7.3171, 7.3145, 7.314, 7.3101, 7.3085, 7.3074, 7.3059, 7.3037, 7.3005, 7.2966, 7.294, 7.3022, 7.3144, 7.3104, 7.3064, 7.3151, 7.3155, 7.3146, 7.3108, 7.3069, 7.3152, 7.3121, 7.3125, 7.3097, 7.3172, 7.3251, 7.3235, 7.3321, 7.3434, 7.3398, 7.3376, 7.3339, 7.3333, 7.3207, 7.3183, 7.3179, 7.316, 7.3138, 7.3134, 7.3112, 7.3099, 7.3074, 7.305, 7.3015, 7.3033, 7.3026, 7.2989, 7.2957, 7.2837, 7.28, 7.278, 7.2746, 7.2723, 7.2721, 7.2693, 7.2667, 7.2731, 7.2817, 7.2781, 7.2787, 7.2769, 7.2738, 7.2704, 7.2669, 7.2635, 7.2619, 7.2585, 7.2552, 7.2533, 7.2531, 7.251, 7.2486, 7.2466, 7.2445, 7.235, 7.2332, 7.2297, 7.2277, 7.2259, 7.2225, 7.2215, 7.2207, 7.2196, 7.2162, 7.2236, 7.2211, 7.2179, 7.2171, 7.2144, 7.2115, 7.2092, 7.2201, 7.2171, 7.2144, 7.2126, 7.2029, 7.2229, 7.2201, 7.2421, 7.2595, 7.2582, 7.2573, 7.2458, 7.2518, 7.2486, 7.2468, 7.2444, 7.2416, 7.2411, 7.2403, 7.247, 7.2444, 7.2426, 7.2402, 7.2376, 7.2357, 7.2431, 7.2397, 7.2456, 7.2431, 7.2403, 7.2467, 7.2446, 7.2433, 7.241, 7.2472, 7.2538, 7.2508, 7.2499, 7.2519, 7.2674, 7.3008, 7.2976, 7.3035, 7.3003, 7.2979, 7.297, 7.2959, 7.2932, 7.2906, 7.2877, 7.2884, 7.2871, 7.2848, 7.2904, 7.2881, 7.285, 7.2847, 7.2915, 7.29, 7.2873, 7.2859, 7.2837, 7.2812, 7.2786, 7.2761, 7.2756, 7.2749, 7.2718, 7.269, 7.2666, 7.265, 7.2627, 7.2597, 7.2684, 7.2668, 7.2785, 7.277, 7.2742, 7.272, 7.2705, 7.2681, 7.2654, 7.2633, 7.2616, 7.2674, 7.2747, 7.2737, 7.2719, 7.2693, 7.2675, 7.2645, 7.2621, 7.2599, 7.257, 7.2554, 7.2619, 7.2592, 7.2649, 7.2622, 7.2602, 7.2572, 7.2547, 7.2524, 7.2593, 7.2585, 7.261, 7.2585, 7.2556, 7.2537, 7.2516, 7.2501, 7.2501, 7.2555, 7.2552, 7.2529, 7.2503, 7.2477, 7.2454, 7.2511, 7.2484, 7.2544, 7.2518, 7.2494, 7.2481, 7.2474, 7.2452, 7.2432, 7.2486, 7.2469, 7.2386, 7.2357, 7.234, 7.2399, 7.2559, 7.2615, 7.2588, 7.2562, 7.256, 7.2539, 7.2514, 7.2566, 7.2545, 7.2535, 7.2611, 7.259, 7.2579, 7.2639, 7.2624, 7.2604, 7.2664, 7.2636, 7.2617, 7.2609, 7.2587, 7.2576, 7.2635, 7.2626, 7.2608, 7.2588, 7.2565, 7.2616, 7.2668, 7.2644, 7.2621, 7.2607, 7.2584, 7.2564, 7.2543, 7.2598, 7.2579, 7.2557, 7.2544, 7.2522, 7.2514, 7.2564, 7.2616, 7.2605, 7.2592, 7.2649, 7.2874, 7.2948, 7.2923, 7.2905, 7.2891, 7.2867, 7.2858, 7.284, 7.282, 7.2805, 7.2787, 7.2835, 7.2814, 7.2872, 7.2852, 7.2842, 7.2816, 7.2807, 7.2781, 7.2755, 7.2809, 7.2783, 7.2757, 7.2734, 7.2782, 7.276, 7.2739, 7.273, 7.2705, 7.2832, 7.2828, 7.2806, 7.2785, 7.2772, 7.2759, 7.2738, 7.2716, 7.2694, 7.2674, 7.2651, 7.2571, 7.2547, 7.259, 7.2595, 7.2522, 7.2506, 7.2493, 7.2482, 7.247, 7.2446, 7.2427, 7.2411, 7.2397, 7.2388, 7.2385, 7.2442, 7.2427, 7.2413, 7.239, 7.238, 7.2372, 7.2349, 7.2331, 7.2308, 7.229, 7.2265, 7.2309, 7.2353, 7.2393, 7.2372, 7.2349, 7.2328, 7.2305, 7.2286, 7.2278, 7.2263, 7.2252, 7.2232, 7.2282, 7.2284, 7.2262, 7.2246, 7.2233, 7.2229, 7.2207, 7.2196, 7.2181, 7.2162, 7.2143, 7.2254, 7.2233, 7.2221, 7.2223, 7.2231, 7.2222, 7.2209, 7.2196, 7.2185, 7.2172, 7.2153, 7.22, 7.2246, 7.223, 7.2218, 7.2195, 7.2181, 7.2162, 7.2142, 7.213, 7.2118, 7.2172, 7.2157, 7.2202, 7.2131, 7.2113, 7.2094, 7.2077, 7.2002, 7.1982, 7.1965, 7.1944, 7.1926, 7.191, 7.19, 7.1882, 7.1868, 7.1854, 7.1846, 7.1885, 7.1873, 7.1852, 7.184, 7.185, 7.1847, 7.1829, 7.1812, 7.1791, 7.1836, 7.1818, 7.1861, 7.1854, 7.1896, 7.1941, 7.1925, 7.191, 7.1953, 7.1936, 7.1916, 7.1955, 7.1993, 7.2029, 7.2012, 7.2006, 7.1991, 7.1988, 7.1978, 7.1971, 7.195, 7.1936, 7.193, 7.1926, 7.1909, 7.1961, 7.1951, 7.1933, 7.1916, 7.1965, 7.1963, 7.2012, 7.1993, 7.2036, 7.2078, 7.2061, 7.2043, 7.2024, 7.2063, 7.2051, 7.2169, 7.2155, 7.2141, 7.2123, 7.2105, 7.209, 7.208, 7.2069, 7.2051, 7.204, 7.203, 7.2019, 7.1952, 7.1987, 7.1968, 7.1952, 7.1939, 7.1935, 7.1933, 7.1913, 7.1911, 7.1899, 7.1885, 7.1882, 7.1884, 7.1866, 7.1857, 7.184, 7.2199, 7.219, 7.2236, 7.2286, 7.227, 7.2256, 7.2252, 7.219, 7.2174, 7.2226, 7.2274, 7.2261, 7.2246, 7.2228, 7.2224, 7.2212, 7.2205, 7.2188, 7.2172, 7.2157, 7.215, 7.2087, 7.2081, 7.2075, 7.2057, 7.21, 7.2102, 7.2103, 7.2093, 7.2075, 7.2057, 7.2094, 7.2081, 7.2066, 7.2105, 7.2094, 7.2034, 7.2072, 7.2063, 7.205, 7.2043, 7.2026, 7.2021, 7.202, 7.201, 7.1996, 7.2037, 7.2023, 7.2016, 7.1998, 7.1988, 7.1977, 7.1975, 7.1978, 7.196, 7.1951, 7.1992, 7.1994, 7.2033, 7.2021, 7.2003, 7.1988, 7.1971, 7.1962, 7.1913, 7.1901, 7.1923, 7.1905, 7.1887, 7.187, 7.1857, 7.1899, 7.1944, 7.1932, 7.1915, 7.1914, 7.1964, 7.2019, 7.2005, 7.1991, 7.1976, 7.196, 7.1993, 7.2029, 7.2015, 7.1957, 7.1949, 7.193, 7.1964, 7.1955, 7.1946, 7.1943, 7.1934, 7.1872, 7.1812, 7.1795, 7.1821, 7.1806, 7.1805, 7.1792, 7.1832, 7.1867, 7.1849, 7.1839, 7.1821, 7.1928, 7.191, 7.1893, 7.188, 7.1868, 7.1857, 7.1842, 7.1832, 7.1815, 7.1802, 7.1791, 7.1828, 7.1817, 7.1806, 7.1789, 7.1772, 7.1761, 7.18, 7.1811, 7.1794, 7.1786, 7.177, 7.1753, 7.1789, 7.1777, 7.1761, 7.1759, 7.1748, 7.1733, 7.1769, 7.1804, 7.1789, 7.1773, 7.1762, 7.1797, 7.1781, 7.1819, 7.1807, 7.175, 7.1698, 7.1686, 7.168, 7.1717, 7.1756, 7.1748, 7.1731, 7.1714, 7.1743, 7.1734, 7.1717, 7.1711, 7.1656, 7.1644, 7.1627, 7.1621, 7.161, 7.1599, 7.1589, 7.1625, 7.1612, 7.1744, 7.1738, 7.1726, 7.1712, 7.1713, 7.1712, 7.1704, 7.1738, 7.1724, 7.1713, 7.1744, 7.173, 7.1761, 7.1793, 7.1777, 7.1761, 7.179, 7.1735, 7.1729, 7.1722, 7.1706, 7.1739, 7.1726, 7.1711, 7.1696, 7.1682, 7.1673, 7.1667, 7.1695, 7.1686, 7.1671, 7.1661, 7.1652, 7.1649, 7.1639, 7.1632, 7.1626, 7.1613, 7.1613, 7.1599, 7.1589, 7.1576, 7.1607, 7.1593, 7.1579, 7.1609, 7.1639, 7.163, 7.1616, 7.1601, 7.1587, 7.1572, 7.1606, 7.1596, 7.1592, 7.1585, 7.1573, 7.1521, 7.1519, 7.1552, 7.1545, 7.1538, 7.1615, 7.1646, 7.163, 7.1619, 7.1605, 7.1728, 7.1713, 7.1757, 7.1749, 7.1701, 7.1692, 7.1688, 7.1678, 7.1666, 7.1672, 7.1662, 7.1726, 7.1721, 7.1711, 7.17, 7.1684, 7.1721, 7.1719, 7.1799, 7.1787, 7.1779, 7.1776, 7.1765, 7.1751, 7.1742, 7.1732, 7.1723, 7.1717, 7.1708, 7.1653, 7.1605, 7.1555, 7.1542, 7.169, 7.172, 7.1713, 7.1698, 7.1739, 7.1735, 7.1722, 7.1706, 7.1731, 7.1716, 7.1704, 7.1692, 7.1726, 7.1712, 7.1701, 7.1731, 7.1718, 7.1717, 7.1749, 7.1738, 7.1725, 7.1676, 7.1665, 7.1656, 7.1609, 7.1598, 7.163, 7.1663, 7.1655, 7.165, 7.1677, 7.1666, 7.1653, 7.1606, 7.1637, 7.1667, 7.1661, 7.1655, 7.1656, 7.165, 7.1637, 7.1624, 7.1577, 7.1617, 7.1609, 7.1594, 7.158, 7.1611, 7.156, 7.1512, 7.1552, 7.1548, 7.1539, 7.1539, 7.1488, 7.1437, 7.1445, 7.143, 7.1422, 7.1415, 7.1402, 7.1394, 7.1387, 7.1373, 7.1367, 7.1396, 7.1426, 7.1423, 7.141, 7.1397, 7.1385, 7.1381, 7.1558, 7.1586, 7.1576, 7.1605, 7.1597, 7.1584, 7.1575, 7.1616, 7.1658, 7.1656, 7.1643, 7.1629, 7.1675, 7.1662, 7.1655, 7.1664, 7.1742, 7.1776, 7.173, 7.1717, 7.1706, 7.1733, 7.1764, 7.1755, 7.1749, 7.1743, 7.1737, 7.181, 7.1801, 7.1789, 7.1778, 7.181, 7.1762, 7.1748, 7.1735, 7.1772, 7.1765, 7.1761, 7.1747, 7.1738, 7.1726, 7.1754, 7.1746, 7.1699, 7.1693, 7.1685, 7.1672, 7.1678, 7.1673, 7.166, 7.1654, 7.165, 7.1637, 7.1626, 7.1622, 7.1705, 7.171, 7.1697, 7.1688, 7.1715, 7.1703, 7.1701, 7.1687, 7.1673, 7.1701, 7.1688, 7.1675, 7.1662, 7.1615, 7.1567, 7.1525, 7.1481, 7.1508, 7.1537, 7.1527, 7.1516, 7.1509, 7.1503, 7.1491, 7.1483, 7.1475, 7.1427, 7.142, 7.1418, 7.1407, 7.1398, 7.1389, 7.1383, 7.1378, 7.1407, 7.1394, 7.138, 7.1409, 7.1397, 7.1353, 7.1419, 7.1415, 7.1408, 7.1401, 7.1426, 7.1413, 7.1419, 7.1408, 7.1434, 7.1426, 7.1419, 7.1411, 7.1405, 7.1404, 7.1391, 7.1387, 7.1375, 7.1365, 7.1352, 7.134, 7.1367, 7.1361, 7.1427, 7.1453, 7.1441, 7.1429, 7.1453, 7.1483, 7.1513, 7.15, 7.1494, 7.1482, 7.147, 7.1464, 7.1459, 7.1446, 7.1436, 7.1427, 7.1419, 7.1412, 7.1405, 7.1399, 7.1394, 7.1387, 7.1384, 7.1372, 7.1362, 7.143, 7.1392, 7.1421, 7.1414, 7.1521, 7.1509, 7.152, 7.1516, 7.157, 7.1571, 7.1565, 7.1628, 7.1629, 7.1588, 7.1616, 7.1683, 7.1709, 7.1698, 7.1688, 7.168, 7.1712, 7.1704, 7.1701, 7.169, 7.1686, 7.1675, 7.1666, 7.1654, 7.1681, 7.168, 7.164, 7.164, 7.1632, 7.162, 7.1647, 7.1645, 7.1637, 7.1633, 7.1628, 7.1657, 7.1684, 7.1679, 7.1668, 7.1658, 7.1652, 7.164, 7.1669, 7.1659, 7.1682, 7.1674, 7.1668, 7.166, 7.1649, 7.1638, 7.1627, 7.1617, 7.161, 7.1599, 7.1587, 7.1577, 7.1567, 7.1559, 7.1585, 7.1574, 7.1564, 7.1558, 7.1547, 7.1542, 7.1569, 7.1563, 7.1554, 7.1552, 7.1539, 7.1531, 7.1554, 7.1543, 7.1531, 7.1523, 7.1516, 7.1504, 7.1493, 7.1517, 7.1513, 7.1538, 7.1557, 7.1549, 7.1541, 7.1531, 7.1524, 7.1518, 7.151, 7.155, 7.1542, 7.1534, 7.1526, 7.1544, 7.1535, 7.1562, 7.1614, 7.1607, 7.1633, 7.1625, 7.1651, 7.1639, 7.1636, 7.1628, 7.1653, 7.1642, 7.1668, 7.1693, 7.1686, 7.1712, 7.1704, 7.1692, 7.168, 7.1674, 7.1663, 7.1661, 7.1685, 7.1686, 7.168, 7.1703, 7.1691, 7.1684, 7.1679, 7.1677, 7.1671, 7.1659, 7.1648, 7.164, 7.1635, 7.1641, 7.1636, 7.1624, 7.1618, 7.1608, 7.1632, 7.1672, 7.1695, 7.1696, 7.1689, 7.1682, 7.1706, 7.1729, 7.1719, 7.171, 7.1706, 7.1737, 7.1731, 7.1725, 7.1715, 7.1711, 7.1708, 7.1732, 7.1758, 7.1717, 7.1712, 7.1702, 7.1697, 7.1719, 7.1707, 7.1762, 7.1751, 7.1744, 7.1703, 7.1726, 7.1721, 7.1746, 7.1735, 7.1725, 7.1719, 7.1711, 7.171, 7.1707, 7.1701, 7.169, 7.1718, 7.1707, 7.1703, 7.1729, 7.1718, 7.1741, 7.1731, 7.1722, 7.1744, 7.1743, 7.1733, 7.1762, 7.1752, 7.1755, 7.1755, 7.1744, 7.1737, 7.1761, 7.1753, 7.1751, 7.1777, 7.1802, 7.1796, 7.1787, 7.1779, 7.177, 7.1765, 7.1763, 7.176, 7.1785, 7.1776, 7.1767, 7.1836, 7.183, 7.1825, 7.1816, 7.1812, 7.1804, 7.1795, 7.179, 7.178, 7.1805, 7.1834, 7.1856, 7.1849, 7.1839, 7.1863, 7.1852, 7.1847, 7.1836, 7.1825, 7.1824, 7.1849, 7.184, 7.1833, 7.1825, 7.1817, 7.1808, 7.1829, 7.185, 7.184, 7.1829, 7.1818, 7.1841, 7.1831, 7.1823, 7.1846, 7.1868, 7.1858, 7.1884, 7.1873, 7.1863, 7.1861, 7.185, 7.1843, 7.1833, 7.183, 7.182, 7.1785, 7.1806, 7.1803, 7.1793, 7.1787, 7.1747, 7.174, 7.1738, 7.1729, 7.1734, 7.1727, 7.1721, 7.1714, 7.1708, 7.1707, 7.1696, 7.1685, 7.1645, 7.1639, 7.1633, 7.1656, 7.1649, 7.1641, 7.1634, 7.1659, 7.1652, 7.1651, 7.1646, 7.1643, 7.1636, 7.1635, 7.1628, 7.1622, 7.1615, 7.1608, 7.1601, 7.1594, 7.1587, 7.161, 7.1603, 7.1595, 7.1586, 7.1578, 7.157, 7.1532, 7.1525, 7.1548, 7.1541, 7.1534, 7.1527, 7.1519, 7.1513, 7.1543, 7.1543, 7.1533, 7.1558, 7.1524, 7.152, 7.1511, 7.1503, 7.1523, 7.1516, 7.1538, 7.153, 7.1528, 7.1521, 7.1514, 7.1512, 7.1502, 7.1526, 7.1518, 7.1513, 7.1506, 7.1561, 7.1566, 7.1557, 7.1552, 7.1587, 7.158, 7.1543, 7.1537, 7.1526, 7.1519, 7.1513, 7.1504, 7.1467, 7.1464, 7.1488, 7.148, 7.1471, 7.1463, 7.1458, 7.1479, 7.1481, 7.148, 7.1481, 7.1505, 7.1496, 7.1488, 7.1477, 7.147, 7.1464, 7.1463, 7.1461, 7.1454, 7.1446, 7.1437, 7.1458, 7.1451, 7.1446, 7.1439, 7.1434, 7.1425, 7.1416, 7.144, 7.143, 7.1422, 7.1419, 7.1415, 7.1468, 7.1462, 7.1454, 7.1444, 7.1438, 7.1429, 7.145, 7.1446, 7.1437, 7.1428, 7.1447, 7.1476, 7.1469, 7.1461, 7.1518, 7.1511, 7.1502, 7.1523, 7.1513, 7.1511, 7.1534, 7.1527, 7.1519, 7.1541, 7.1534, 7.1557, 7.1552, 7.1543, 7.1535, 7.1533, 7.1525, 7.1545, 7.1568, 7.1559, 7.1549, 7.1539, 7.1534, 7.1532, 7.153, 7.1522, 7.1514, 7.1507, 7.1506, 7.1497, 7.1522, 7.1519, 7.1521, 7.1515, 7.1508, 7.1501, 7.1499, 7.1497, 7.1487, 7.1479, 7.1469, 7.1463, 7.1453, 7.1447, 7.144, 7.1462, 7.1453, 7.1449, 7.1442, 7.1465, 7.1487, 7.1482, 7.1474, 7.1464, 7.1486, 7.1489, 7.1479, 7.147, 7.1462, 7.1459, 7.1479, 7.1471, 7.1463, 7.1456, 7.1452, 7.1474, 7.1465, 7.1461, 7.1453, 7.1444, 7.1434, 7.1454, 7.1452, 7.1444, 7.1462, 7.1481, 7.1471, 7.149, 7.1512, 7.1506, 7.1497, 7.149, 7.1483, 7.1449, 7.1447, 7.147, 7.1464, 7.1456, 7.1448, 7.147, 7.1462, 7.1456, 7.1452, 7.1446, 7.1471, 7.1461, 7.1455, 7.1454, 7.1446, 7.1441, 7.1444, 7.1414, 7.1433, 7.1427, 7.1423, 7.1421, 7.1443, 7.1437, 7.1433, 7.143, 7.1424, 7.1446, 7.1443, 7.1435, 7.1426, 7.1417, 7.141, 7.1405, 7.1396, 7.1397, 7.1395, 7.1394, 7.1412, 7.1405, 7.14, 7.1393, 7.1362, 7.1331, 7.1299, 7.1292, 7.1331, 7.1322, 7.1319, 7.1313, 7.1312, 7.1333, 7.1331, 7.1325, 7.1323, 7.1346, 7.1344, 7.1341, 7.134, 7.1332, 7.1326, 7.1327, 7.1325, 7.1318, 7.1317, 7.1311, 7.1304, 7.1306, 7.1304, 7.1323, 7.1342, 7.1345, 7.1338, 7.136, 7.1354, 7.1345, 7.1343, 7.1337, 7.1357, 7.1352, 7.1352, 7.1345, 7.134, 7.1359, 7.1356, 7.1349, 7.1346, 7.1363, 7.136, 7.138, 7.1401, 7.14, 7.1392, 7.1384, 7.1376, 7.1371, 7.1365, 7.1333, 7.1332, 7.1327, 7.1326, 7.1318, 7.1313, 7.131, 7.1303, 7.1298, 7.1293, 7.1285, 7.128, 7.1303, 7.1295, 7.1293, 7.1284, 7.128, 7.1277, 7.1278, 7.127, 7.127, 7.1292, 7.1315, 7.1312, 7.1317, 7.1311, 7.1307, 7.1301, 7.1293, 7.1286, 7.1282, 7.1249, 7.1277, 7.1295, 7.1288, 7.1289, 7.1284, 7.1333, 7.1326, 7.1321, 7.1313, 7.1305, 7.1298, 7.1292, 7.1259, 7.1254, 7.125, 7.1244, 7.1288, 7.1283, 7.1277, 7.1272, 7.1266, 7.1259, 7.1281, 7.1299, 7.1293, 7.1286, 7.1277, 7.1269, 7.1263, 7.1281, 7.1275, 7.1292, 7.1312, 7.1305, 7.1297, 7.1289, 7.1281, 7.1274, 7.1267, 7.126, 7.1253, 7.1247, 7.124, 7.1238, 7.1233, 7.1225, 7.122, 7.1212, 7.123, 7.1224, 7.1221, 7.1213, 7.1232, 7.1225, 7.1217, 7.1211, 7.1208, 7.1205, 7.1197, 7.1189, 7.1181, 7.115, 7.112, 7.1112, 7.1083, 7.1079, 7.1075, 7.1066, 7.1067, 7.1064, 7.1061, 7.1056, 7.1048, 7.1065, 7.106, 7.103, 7.1024, 7.1019, 7.0988, 7.0979, 7.0981, 7.1001, 7.0997, 7.0998, 7.0991, 7.0983, 7.0975, 7.0992, 7.0988, 7.0983, 7.098, 7.0974, 7.0973, 7.0948, 7.0946, 7.0941, 7.0959, 7.0956, 7.0951, 7.0949, 7.0943, 7.0961, 7.0953, 7.0947, 7.0944, 7.0938, 7.093, 7.0958, 7.0954, 7.0977, 7.0971, 7.0967, 7.0965, 7.0982, 7.1002, 7.0994, 7.0988, 7.0985, 7.0977, 7.095, 7.095, 7.0995, 7.1, 7.0992, 7.0986, 7.0979, 7.0973, 7.0977, 7.0969, 7.0966, 7.0966, 7.0966, 7.0959, 7.0951, 7.0924, 7.0916, 7.091, 7.0907, 7.0901, 7.0902, 7.0897, 7.0889, 7.0889, 7.0883, 7.0951, 7.0972, 7.0968, 7.0987, 7.1004, 7.0996, 7.0995, 7.0989, 7.0985, 7.1054, 7.1047, 7.1041, 7.1033, 7.1056, 7.1081, 7.1074, 7.1067, 7.106, 7.1056, 7.1051, 7.105, 7.1048, 7.1041, 7.1111, 7.1105, 7.1101, 7.1095, 7.112, 7.1113, 7.1107, 7.1112, 7.1105, 7.1127, 7.1121, 7.1121, 7.1113, 7.1107, 7.11, 7.1119, 7.1116, 7.1135, 7.1129, 7.1124, 7.1143, 7.1141, 7.1161, 7.1156, 7.115, 7.1143, 7.1139, 7.1132, 7.1128, 7.112, 7.1116, 7.111, 7.1106, 7.1099, 7.107, 7.1063, 7.1058, 7.1058, 7.1074, 7.1092, 7.1084, 7.108, 7.1097, 7.1094, 7.1092, 7.1086, 7.1086, 7.1083, 7.1076, 7.1068, 7.1075, 7.1092, 7.1109, 7.1109, 7.1104, 7.1102, 7.1096, 7.1094, 7.1088, 7.108, 7.1098, 7.109, 7.1083, 7.1075, 7.1068, 7.1061, 7.1053, 7.1025, 7.1018, 7.1034, 7.103, 7.1025, 7.1018, 7.101, 7.103, 7.1023, 7.1017, 7.1013, 7.1008, 7.1001, 7.0993, 7.0986, 7.0978, 7.0971, 7.0968, 7.0961, 7.0955, 7.095, 7.0949, 7.0942, 7.0945, 7.0942, 7.0934, 7.093, 7.0926, 7.0923, 7.0915, 7.0888, 7.0863, 7.0856, 7.0875, 7.0868, 7.0863, 7.0858, 7.0859, 7.0852, 7.0869, 7.0862, 7.0912, 7.0928, 7.0925, 7.0944, 7.0937, 7.093, 7.0934, 7.093, 7.0923, 7.0937, 7.0953, 7.0948, 7.0944, 7.096, 7.0954, 7.0971, 7.0967, 7.0959, 7.0976, 7.0973, 7.0969, 7.0963, 7.0958, 7.0953, 7.0946, 7.0941, 7.0959, 7.0938, 7.0957, 7.0985, 7.1012, 7.1005, 7.1003, 7.0997, 7.0999, 7.1019, 7.1024, 7.1016, 7.1016, 7.101, 7.1004, 7.0997, 7.0995, 7.0989, 7.1005, 7.0999, 7.1017, 7.1011, 7.1004, 7.1004, 7.1001, 7.0999, 7.0997, 7.1013, 7.1031, 7.1026, 7.1023, 7.1, 7.0993, 7.0986, 7.0984, 7.0979, 7.098, 7.0984, 7.0981, 7.0976, 7.0971, 7.0965, 7.0962, 7.0955, 7.0951, 7.0944, 7.0936, 7.0928, 7.0944, 7.0963, 7.0961, 7.0977, 7.0972, 7.0965, 7.0958, 7.0977, 7.0975, 7.0971, 7.0944, 7.0939, 7.0932, 7.0924, 7.0919, 7.0914, 7.0941, 7.0916, 7.089, 7.0883, 7.0878, 7.0896, 7.0893, 7.0911, 7.0906, 7.0922, 7.0916, 7.091, 7.0906, 7.0901, 7.0894, 7.0911, 7.0914, 7.0929, 7.0928, 7.0902, 7.0895, 7.0892, 7.0889, 7.0883, 7.0898, 7.0893, 7.0866, 7.0859, 7.0857, 7.0852, 7.0868, 7.0885, 7.09, 7.0895, 7.0889, 7.0885, 7.0879, 7.0875, 7.087, 7.0862, 7.0855, 7.0852, 7.0846, 7.0842, 7.0818, 7.0793, 7.0786, 7.078, 7.078, 7.0775, 7.0772, 7.0792, 7.0809, 7.0802, 7.0805, 7.08, 7.0794, 7.0769, 7.0762, 7.0764, 7.0757, 7.0773, 7.0769, 7.0766, 7.076, 7.0739, 7.0733, 7.073, 7.073, 7.0725, 7.0721, 7.0714, 7.0692, 7.069, 7.0687, 7.0703, 7.0696, 7.0689, 7.0685, 7.0681, 7.0678, 7.0673, 7.0673, 7.067, 7.0666, 7.0659, 7.0675, 7.0668, 7.0662, 7.0656, 7.0633, 7.0628, 7.0626, 7.0623, 7.0617, 7.0617, 7.0611, 7.0607, 7.06, 7.0621, 7.0615, 7.0609, 7.063, 7.0634, 7.0645, 7.0711, 7.0729, 7.0724, 7.0717, 7.0699, 7.0702, 7.0769, 7.0776, 7.0775, 7.0774, 7.077, 7.0766, 7.0784, 7.0779, 7.0777, 7.0774, 7.0771, 7.0764, 7.076, 7.0753, 7.0769, 7.0786, 7.0801, 7.0794, 7.0787, 7.0781, 7.0777, 7.0784, 7.0777, 7.0792, 7.0828, 7.0803, 7.0821, 7.0815, 7.0816, 7.0811, 7.0804, 7.0801, 7.08, 7.0798, 7.0792, 7.0786, 7.0779, 7.0773, 7.0766, 7.0781, 7.0775, 7.0791, 7.0805, 7.0803, 7.0797, 7.079, 7.0804, 7.0803, 7.082, 7.0816, 7.0832, 7.0827, 7.0803, 7.0804, 7.0821, 7.0821, 7.0821, 7.0835, 7.0851, 7.0849, 7.0866, 7.0861, 7.0858, 7.0853, 7.0848, 7.0841, 7.0838, 7.0853, 7.0847, 7.0841, 7.0834, 7.0849, 7.0846, 7.0842, 7.0838, 7.0813, 7.0806, 7.0803, 7.0799, 7.0793, 7.0769, 7.0783, 7.0776, 7.0774, 7.0769, 7.0785, 7.0786, 7.0801, 7.0794, 7.0787, 7.0802, 7.0799, 7.0797, 7.0794, 7.0787, 7.0781, 7.0799, 7.0793, 7.0787, 7.0781, 7.0758, 7.0751, 7.0747, 7.0743, 7.0739, 7.0735, 7.0736, 7.0714, 7.0708, 7.0703, 7.0719, 7.0722, 7.0717, 7.0693, 7.0689, 7.0691, 7.069, 7.0685, 7.0681, 7.0676, 7.067, 7.0663, 7.066, 7.0654, 7.0653, 7.0647, 7.0662, 7.0657, 7.0637, 7.0635, 7.0632, 7.0627, 7.0626, 7.0641, 7.0635, 7.0631, 7.0646, 7.0643, 7.064, 7.0635, 7.0631, 7.0625, 7.0638, 7.0637, 7.0641, 7.0638, 7.0652, 7.067, 7.0686, 7.0681, 7.0679, 7.0656, 7.0634, 7.065, 7.0644, 7.0637, 7.0635, 7.0632, 7.0646, 7.0641, 7.0657, 7.0651, 7.0647, 7.0645, 7.0643, 7.064, 7.0658, 7.0675, 7.0694, 7.071, 7.0724, 7.0719, 7.0736, 7.073, 7.0725, 7.0738, 7.0735, 7.0733, 7.0727, 7.072, 7.0715, 7.0749, 7.0743, 7.0737, 7.0733, 7.073, 7.0729, 7.0742, 7.0736, 7.0749, 7.0746, 7.076, 7.0775, 7.0771, 7.0766, 7.0761, 7.0775, 7.0769, 7.0765, 7.0761, 7.0758, 7.0774, 7.0773, 7.0769, 7.0763, 7.0759, 7.0755, 7.0751, 7.0767, 7.0762, 7.0756, 7.0757, 7.0754, 7.0752, 7.0745, 7.0741, 7.0734, 7.073, 7.0728, 7.073, 7.0724, 7.0718, 7.0714, 7.0713, 7.0711, 7.0707, 7.0701, 7.0695, 7.069, 7.0686, 7.0682, 7.0745, 7.0742, 7.074, 7.0735, 7.0733, 7.0792, 7.0788, 7.0784, 7.0779, 7.0774, 7.0768, 7.0763, 7.0762, 7.0755, 7.0777, 7.077, 7.0764, 7.0761, 7.0775, 7.0788, 7.0784, 7.0778, 7.0773, 7.0768, 7.0763, 7.0757, 7.077, 7.0765, 7.0779, 7.0776, 7.0771, 7.0766, 7.0781, 7.0797, 7.0791, 7.0786, 7.0782, 7.0798, 7.0793, 7.079, 7.0788, 7.079, 7.0769, 7.075, 7.0764, 7.0759, 7.0758, 7.0753, 7.0747, 7.0741, 7.0739, 7.0737, 7.0751, 7.0745, 7.0739, 7.0738, 7.0753, 7.0747, 7.0741, 7.0754, 7.075, 7.0765, 7.0766, 7.0764, 7.0758, 7.0756, 7.0751, 7.0766, 7.0762, 7.0761, 7.0755, 7.077, 7.0763, 7.0757, 7.0771, 7.0765, 7.0782, 7.0776, 7.0777, 7.0772, 7.0769, 7.0765, 7.076, 7.0775, 7.0804, 7.0817, 7.0811, 7.0827, 7.0822, 7.0836, 7.0831, 7.0829, 7.0827, 7.0823, 7.0817, 7.0815, 7.0813, 7.0809, 7.0807, 7.0802, 7.0796, 7.079, 7.0803, 7.0797, 7.0813, 7.0829, 7.0825, 7.0824, 7.0822, 7.0816, 7.0833, 7.0828, 7.0822, 7.0817, 7.0817, 7.0831, 7.0847, 7.0843, 7.0842, 7.0848, 7.0843, 7.0839, 7.0837, 7.0839, 7.0834, 7.0847, 7.0861, 7.0856, 7.0852, 7.0846, 7.0843, 7.0845, 7.0847, 7.0867, 7.0918, 7.0913, 7.0931, 7.0927, 7.0934, 7.0929, 7.0927, 7.0923, 7.0937, 7.0933, 7.0931, 7.0927, 7.0907, 7.0903, 7.0897, 7.0892, 7.0886, 7.0886, 7.088, 7.0894, 7.091, 7.0925, 7.0922, 7.0917, 7.0911, 7.0908, 7.0903, 7.0902, 7.0899, 7.0911, 7.0906, 7.0903, 7.0916, 7.0912, 7.091, 7.0907, 7.0904, 7.0903, 7.09, 7.0896, 7.0877, 7.0874, 7.087, 7.0871, 7.0865, 7.0878, 7.0893, 7.0891, 7.0891, 7.0887, 7.0883, 7.0878, 7.0872, 7.0867, 7.0862, 7.0856, 7.0851, 7.0846, 7.0842, 7.0836, 7.0831, 7.0843, 7.0842, 7.0836, 7.0843, 7.0857, 7.0851, 7.0861, 7.0855, 7.0851, 7.0867, 7.0881, 7.0894, 7.0907, 7.0907, 7.0938, 7.0941, 7.0935, 7.0931, 7.0927, 7.094, 7.0923, 7.0936, 7.0949, 7.0973, 7.0986, 7.098, 7.0976, 7.0973, 7.0967, 7.0963, 7.096, 7.0973, 7.0986, 7.0982, 7.0977, 7.0992, 7.1004, 7.1, 7.0994, 7.0989, 7.0984, 7.0981, 7.0977, 7.0991, 7.1004, 7.0999, 7.0979, 7.0975, 7.0971, 7.0965, 7.0962, 7.0967, 7.0962, 7.0956, 7.0954, 7.0949, 7.0929, 7.0927, 7.0939, 7.0934, 7.093, 7.0936, 7.0949, 7.0947, 7.0942, 7.0982, 7.0996, 7.0991, 7.0985, 7.0981, 7.0981, 7.098, 7.0975, 7.0972, 7.0984, 7.0981, 7.0979, 7.0994, 7.1005, 7.1002, 7.0997, 7.0994, 7.0989, 7.0984, 7.0997, 7.0991, 7.099, 7.1004, 7.0984, 7.0978, 7.0975, 7.0969, 7.0966, 7.0962, 7.0974, 7.0986, 7.0982, 7.0977, 7.0974, 7.0969, 7.0963, 7.0959, 7.0953, 7.0951, 7.0947, 7.0942, 7.0938, 7.0987, 7.0982, 7.0984, 7.0984, 7.0997, 7.1, 7.0996, 7.1026, 7.1022, 7.1017, 7.1011, 7.0992, 7.1003, 7.1, 7.0994, 7.1009, 7.1003, 7.0997, 7.0993, 7.0987, 7.0967, 7.0962, 7.0957, 7.0955, 7.0968, 7.0963, 7.0958, 7.0954, 7.095, 7.0944, 7.0956, 7.095, 7.0962, 7.096, 7.0955, 7.0967, 7.0979, 7.0977, 7.0989, 7.0985, 7.0981, 7.0978, 7.0973, 7.0973, 7.0988, 7.0983, 7.0995, 7.0997, 7.0995, 7.0996, 7.0992, 7.0988, 7.1012, 7.1015, 7.1028, 7.1041, 7.1039, 7.1036, 7.1035, 7.1031, 7.1028, 7.1025, 7.102, 7.1032, 7.1026, 7.102, 7.1017, 7.103, 7.1025, 7.1021, 7.1017, 7.1023, 7.1022, 7.1034, 7.1033, 7.1045, 7.1039, 7.105, 7.1045, 7.1043, 7.1041, 7.1036, 7.1034, 7.103, 7.1025, 7.102, 7.1054, 7.1051, 7.1046, 7.1042, 7.1037, 7.1032, 7.1045, 7.1055, 7.1054, 7.1049, 7.1061, 7.1061, 7.1056, 7.1052, 7.1047, 7.1041, 7.1039, 7.1035, 7.103, 7.1025, 7.1023, 7.1018, 7.1013, 7.1008, 7.1006, 7.1017, 7.0997, 7.1009, 7.1004, 7.0999, 7.0996, 7.099, 7.0985, 7.0981, 7.0961, 7.0957, 7.0986, 7.0982, 7.0987, 7.0999, 7.0995, 7.0991, 7.0989, 7.0985, 7.0982, 7.0979, 7.0974, 7.0968, 7.0963, 7.0958, 7.0952, 7.0965, 7.096, 7.0955, 7.0955, 7.0967, 7.0996, 7.0995, 7.0989, 7.0987, 7.0986, 7.0982, 7.098, 7.0975, 7.0969, 7.0969, 7.0997, 7.0993, 7.099, 7.1002, 7.0998, 7.0993, 7.0988, 7.0984, 7.0983, 7.0979, 7.1007, 7.101, 7.1006, 7.1004, 7.1017, 7.1016, 7.1028, 7.1023, 7.1019, 7.1015, 7.101, 7.1007, 7.1002, 7.1013, 7.1009, 7.1005, 7.1, 7.1013, 7.1042, 7.1041, 7.1036, 7.103, 7.1025, 7.1021, 7.1017, 7.1014, 7.1008, 7.1023, 7.1018, 7.1015, 7.1009, 7.1022, 7.1019, 7.1033, 7.103, 7.1027, 7.1024, 7.1019, 7.1016, 7.1011, 7.1008, 7.1006, 7.1001, 7.1008, 7.1005, 7.1002, 7.0997, 7.0993, 7.0992, 7.0987, 7.1, 7.1003, 7.0998, 7.1009, 7.1004, 7.1003, 7.0997, 7.0992, 7.0987, 7.1001, 7.0996, 7.0995, 7.0996, 7.0992, 7.0987, 7.1, 7.0996, 7.0992, 7.1004, 7.1002, 7.1015, 7.1013, 7.1026, 7.1022, 7.1018, 7.1014, 7.1009, 7.1008, 7.1006, 7.1004, 7.0999, 7.0994, 7.0993, 7.0989, 7.0985, 7.098, 7.0976, 7.0972, 7.0972, 7.0971, 7.0968, 7.0963, 7.0961, 7.0958, 7.0956, 7.0953, 7.0966, 7.0962, 7.0957, 7.0952, 7.0949, 7.0944, 7.0957, 7.0969, 7.0982, 7.098, 7.0976, 7.0989, 7.0985, 7.0982, 7.0977, 7.0973, 7.097, 7.0967, 7.0963, 7.0958, 7.0954, 7.0939, 7.0942, 7.0953, 7.0949, 7.0948, 7.0946, 7.0943, 7.0942, 7.0937, 7.0933, 7.0914, 7.0913, 7.0925, 7.0923, 7.0905, 7.0901, 7.0901, 7.0896, 7.0893, 7.0889, 7.0873, 7.0889, 7.0884, 7.0881, 7.0893, 7.0891, 7.089, 7.0903, 7.0898, 7.0894, 7.0906, 7.0904, 7.0899, 7.091, 7.0934, 7.0916, 7.0897, 7.0892, 7.0889, 7.0886, 7.0886, 7.0881, 7.0878, 7.0874, 7.087, 7.0868, 7.088, 7.0878, 7.0873, 7.0885, 7.088, 7.0876, 7.0871, 7.0867, 7.0864, 7.0859, 7.0854, 7.0853, 7.0854, 7.0852, 7.0847, 7.0843, 7.0838, 7.0833, 7.0828, 7.0826, 7.0824, 7.0822, 7.0826, 7.0821, 7.0816, 7.0816, 7.0811, 7.0807, 7.0805, 7.0804, 7.0801, 7.0832, 7.0831, 7.0826, 7.0842, 7.0843, 7.0848, 7.0844, 7.0841, 7.0852, 7.0857, 7.0852, 7.0865, 7.0867, 7.0891, 7.0907, 7.0903, 7.0898, 7.0896, 7.0893, 7.0889, 7.0888, 7.0886, 7.087, 7.0855, 7.0856, 7.0854, 7.0871, 7.0867, 7.0879, 7.0879, 7.0875, 7.0871, 7.0883, 7.0879, 7.0875, 7.0872, 7.0854, 7.085, 7.0864, 7.0862, 7.0875, 7.0871, 7.0866, 7.0862, 7.0858, 7.084, 7.0916, 7.0911, 7.0907, 7.0903, 7.0898, 7.0893, 7.0891, 7.0922, 7.0918, 7.0915, 7.091, 7.0894, 7.089, 7.0886, 7.0882, 7.0881, 7.0878, 7.0874, 7.0871, 7.0858, 7.0854, 7.085, 7.0846, 7.0858, 7.0854, 7.0836, 7.0831, 7.086, 7.0857, 7.0868, 7.0867, 7.085, 7.0845, 7.0843, 7.0839, 7.0836, 7.0833, 7.0833, 7.083, 7.0825, 7.0823, 7.0824, 7.0821, 7.0816, 7.0815, 7.081, 7.081, 7.0806, 7.0819, 7.0831, 7.0829, 7.0825, 7.0821, 7.0817, 7.0816, 7.08, 7.0801, 7.0799, 7.0802, 7.0797, 7.0808, 7.0806, 7.0804, 7.0801, 7.0814, 7.0809, 7.0807, 7.0806, 7.0805, 7.0806, 7.0805, 7.0804, 7.0823, 7.0805, 7.0803, 7.0814, 7.0844, 7.0857, 7.0855, 7.0854, 7.0837, 7.085, 7.0846, 7.0829, 7.0813, 7.0795, 7.0795, 7.0806, 7.0805, 7.0801, 7.08, 7.0798, 7.0796, 7.0793, 7.0792, 7.0806, 7.0805, 7.0805, 7.0803, 7.0801, 7.0798, 7.0781, 7.0777, 7.0789, 7.0785, 7.078, 7.0781, 7.0779, 7.0774, 7.0785, 7.0781, 7.078, 7.0806, 7.0817, 7.0812, 7.0807, 7.0802, 7.0812, 7.0809, 7.082, 7.0818, 7.0815, 7.0811, 7.0808, 7.0803, 7.0802, 7.0799, 7.0825, 7.0886, 7.0885, 7.0911, 7.0914, 7.0912, 7.0908, 7.0905, 7.0901, 7.0898, 7.0895, 7.0908, 7.0903, 7.09, 7.0896, 7.0892, 7.0887, 7.0885, 7.0881, 7.0877, 7.0872, 7.087, 7.0866, 7.0861, 7.0871, 7.0868, 7.0866, 7.0861, 7.0872, 7.0883, 7.0879, 7.089, 7.0885, 7.0882, 7.0893, 7.0889, 7.0885, 7.0896, 7.0891, 7.0873, 7.087, 7.0883, 7.0884, 7.0882, 7.088, 7.0877, 7.0873, 7.0869, 7.0871, 7.087, 7.0867, 7.0866, 7.0861, 7.0858, 7.0857, 7.0867, 7.0866, 7.0872, 7.0867, 7.0862, 7.0859, 7.0855, 7.0839, 7.085, 7.0833, 7.083, 7.0841, 7.0852, 7.0835, 7.0832, 7.0844, 7.084, 7.0836, 7.0833, 7.0858, 7.084, 7.0823, 7.0819, 7.0829, 7.0812, 7.0807, 7.0803, 7.08, 7.0797, 7.0809, 7.0805, 7.0801, 7.0812, 7.0813, 7.0809, 7.0807, 7.0803, 7.0814, 7.0825, 7.0823, 7.0834, 7.0835, 7.0846, 7.0859, 7.0855, 7.0854, 7.0855, 7.0851, 7.0847, 7.0844, 7.0841, 7.0854, 7.0853, 7.0849, 7.0846, 7.0844, 7.0842, 7.0883, 7.0895, 7.0894, 7.0893, 7.089, 7.0887, 7.0897, 7.0895, 7.0894, 7.0889, 7.0886, 7.0881, 7.0879, 7.0889, 7.0884, 7.0895, 7.0905, 7.0902, 7.0898, 7.0893, 7.0891, 7.0887, 7.0882, 7.0865, 7.0861, 7.0858, 7.0854, 7.0854, 7.085, 7.0845, 7.0848, 7.0847, 7.0845, 7.0858, 7.0853, 7.0851, 7.0852, 7.0837, 7.0834, 7.0831, 7.0828, 7.0824, 7.082, 7.083, 7.0812, 7.0794, 7.0779, 7.0775, 7.0771, 7.0769, 7.0764, 7.0774, 7.077, 7.0767, 7.0766, 7.0764, 7.076, 7.0771, 7.0754, 7.0755, 7.075, 7.0747, 7.0745, 7.0743, 7.0739, 7.0739, 7.0735, 7.0732, 7.0728, 7.0757, 7.0753, 7.0751, 7.0751, 7.0747, 7.0745, 7.0742, 7.0739, 7.0735, 7.0734, 7.0731, 7.0729, 7.0728, 7.0726, 7.071, 7.0694, 7.069, 7.07, 7.0701, 7.0699, 7.0694, 7.0696, 7.0692, 7.0688, 7.0684, 7.0698, 7.0696, 7.0694, 7.0695, 7.0691, 7.0691, 7.0704, 7.0705, 7.0701, 7.0713, 7.0712, 7.0709, 7.0706, 7.0717, 7.0716, 7.07, 7.0696, 7.0695, 7.0694, 7.0692, 7.0717, 7.0717, 7.0712, 7.0709, 7.0705, 7.0716, 7.0713, 7.0709, 7.0706, 7.0703, 7.0686, 7.0697, 7.0708, 7.0706, 7.0702, 7.0699, 7.0695, 7.0694, 7.0679, 7.0679, 7.0681, 7.0677, 7.0681, 7.0692, 7.069, 7.0686, 7.0685, 7.0684, 7.0695, 7.0693, 7.0691, 7.0687, 7.0684, 7.0698, 7.0683, 7.067, 7.0665, 7.0666, 7.0676, 7.0659, 7.0658, 7.0642, 7.0641, 7.0624, 7.0621, 7.0617, 7.0612, 7.0608, 7.0606, 7.0602, 7.0601, 7.0598, 7.0595, 7.0592, 7.0575, 7.0559, 7.0543, 7.0547, 7.0543, 7.0546, 7.0572, 7.0591, 7.0576, 7.0574, 7.057, 7.0581, 7.0592, 7.0591, 7.0588, 7.0584, 7.0612, 7.0623, 7.0634, 7.0645, 7.0642, 7.0639, 7.0637, 7.0635, 7.0645, 7.0641, 7.0639, 7.068, 7.0689, 7.0685, 7.0695, 7.069, 7.0688, 7.0684, 7.0679, 7.0675, 7.0672, 7.0668, 7.0664, 7.0648, 7.0647, 7.0656, 7.0666, 7.0663, 7.0673, 7.0668, 7.0664, 7.0661, 7.0657, 7.0654, 7.0649, 7.0646, 7.0642, 7.0638, 7.0648, 7.0643, 7.0639, 7.0665, 7.0662, 7.0661, 7.0657, 7.0655, 7.0665000000000004, 7.0665, 7.0663, 7.0674, 7.0686, 7.0683, 7.0695, 7.0704, 7.07, 7.0711, 7.0708, 7.0721, 7.0717, 7.073, 7.073, 7.0726, 7.0721, 7.0717, 7.0714, 7.0726, 7.0736, 7.0734, 7.0731, 7.0728, 7.0728, 7.0724, 7.0721, 7.0706, 7.0703, 7.0712, 7.071, 7.0705, 7.0701, 7.0701, 7.0696, 7.0691, 7.0689, 7.0694, 7.0703, 7.07, 7.0697, 7.0694, 7.0704, 7.0688, 7.069800000000001, 7.0682, 7.067, 7.0666, 7.0663, 7.0673, 7.0669, 7.0667, 7.0666, 7.0664, 7.066, 7.0658, 7.0653, 7.0648, 7.0644, 7.064, 7.0636, 7.0633, 7.0629, 7.064, 7.0635, 7.0632, 7.063, 7.0641, 7.0637, 7.0634, 7.0631, 7.0629, 7.0627, 7.0628, 7.0625, 7.0622, 7.0619, 7.0615, 7.0613, 7.0624, 7.062, 7.063, 7.0627, 7.0622, 7.0631, 7.0627, 7.0624, 7.063400000000001, 7.063, 7.0626, 7.061, 7.0595, 7.0592, 7.0588, 7.0589, 7.0585, 7.0585, 7.0597, 7.0583, 7.0568, 7.0581, 7.0592, 7.0589, 7.0575, 7.0575, 7.0559, 7.056900000000001, 7.0565, 7.0566, 7.0563, 7.056, 7.0557, 7.0553, 7.0549, 7.0547, 7.0552, 7.0549, 7.055, 7.0538, 7.0537, 7.0533, 7.0532, 7.053, 7.0539, 7.0537, 7.0533, 7.0543000000000005, 7.054, 7.0535, 7.0534, 7.0531, 7.0528, 7.0524, 7.052, 7.0517, 7.0515, 7.0526, 7.0524, 7.0522, 7.0518, 7.0515, 7.0517, 7.0513, 7.0527, 7.0514, 7.0511, 7.0521, 7.052, 7.0517, 7.0514, 7.051, 7.0506, 7.0503, 7.05, 7.0496, 7.0494, 7.0502, 7.0498, 7.0522, 7.0519, 7.0529, 7.0539, 7.0535, 7.0532, 7.0528, 7.0513, 7.0509, 7.0505, 7.0501, 7.0497, 7.0495, 7.0506, 7.0511, 7.0509, 7.0507, 7.0503, 7.0499, 7.0496, 7.0493, 7.0489, 7.0498, 7.0507, 7.0505, 7.0502, 7.0499, 7.0495, 7.0491, 7.0477, 7.0476, 7.0472, 7.0468, 7.0464, 7.046, 7.0469, 7.0465, 7.0467, 7.0465, 7.0464, 7.0462, 7.0458, 7.0462, 7.0475, 7.048500000000001, 7.0483, 7.048, 7.0478, 7.0487, 7.0487, 7.0484, 7.0482, 7.0479, 7.0476, 7.0475, 7.0473, 7.0471, 7.0468, 7.0465, 7.0475, 7.048500000000001, 7.049500000000001, 7.0492, 7.0491, 7.049, 7.050000000000001, 7.0497, 7.0493, 7.0489, 7.0487, 7.0484, 7.0494, 7.0491, 7.0501, 7.0499, 7.051, 7.0507, 7.0516, 7.0527, 7.054, 7.0537, 7.0533, 7.0531, 7.0527, 7.0538, 7.0538, 7.0535, 7.0532, 7.0529, 7.0539000000000005, 7.0537, 7.0533, 7.053, 7.054, 7.0537, 7.0533, 7.0518, 7.0517, 7.0528, 7.053800000000001, 7.054800000000001, 7.0558, 7.0554, 7.0553, 7.0539, 7.0535, 7.0531, 7.053, 7.0539, 7.0535, 7.0532, 7.054200000000001, 7.0538, 7.0534, 7.053, 7.0575, 7.0571, 7.0568, 7.0576, 7.0576, 7.0573, 7.057, 7.0566, 7.0575, 7.0585, 7.0582, 7.058, 7.0576, 7.0584, 7.0593, 7.0589, 7.0587, 7.0584, 7.057, 7.0567, 7.0578, 7.0574, 7.0572, 7.0568, 7.0565, 7.0562, 7.0571, 7.0583, 7.058, 7.0579, 7.0576, 7.0586, 7.0582, 7.0579, 7.059, 7.0588, 7.0585, 7.0582, 7.058, 7.0589, 7.0585, 7.0582, 7.0579, 7.0578, 7.0574, 7.058400000000001, 7.0581, 7.0578, 7.0575, 7.0573, 7.057, 7.0569, 7.0578, 7.059, 7.0588, 7.0591, 7.0589, 7.0586, 7.0583, 7.0582, 7.0578, 7.0588, 7.0598, 7.0597, 7.0593, 7.0592, 7.0592, 7.0589, 7.0587, 7.0583, 7.0581, 7.0577, 7.0587, 7.0597, 7.0583, 7.0606, 7.0604, 7.0601, 7.0598, 7.0607, 7.0617, 7.0615, 7.0611, 7.0608, 7.0607, 7.0603, 7.06, 7.061, 7.0606, 7.0592, 7.0588, 7.0587, 7.0596, 7.0595, 7.0605, 7.0605, 7.0602, 7.0599, 7.0596, 7.0593, 7.0591, 7.0591, 7.0589, 7.0585, 7.0584, 7.0593, 7.0603, 7.0601, 7.0632, 7.0642, 7.0638, 7.0637, 7.0634, 7.0631, 7.0629, 7.0625, 7.0621, 7.0623, 7.0608, 7.0604, 7.0602, 7.06, 7.0597, 7.0594, 7.0609, 7.062, 7.0644, 7.0641, 7.0689, 7.07, 7.0698, 7.0695, 7.0693, 7.0689, 7.0691, 7.0687, 7.0683, 7.068, 7.0677, 7.0676, 7.0677, 7.0676, 7.0672, 7.0669, 7.0668, 7.0666, 7.0662, 7.0663, 7.0663, 7.0659, 7.0658, 7.0655, 7.0656, 7.0653, 7.0664, 7.0676, 7.0676, 7.0676, 7.0674, 7.0673, 7.067, 7.0671, 7.0667, 7.0676, 7.0674, 7.0672, 7.0669, 7.0666, 7.0663, 7.0659, 7.0646, 7.0645, 7.0656, 7.0667, 7.0679, 7.0676, 7.0685, 7.0682, 7.0691, 7.0689, 7.0698, 7.0695, 7.0691, 7.069, 7.0686, 7.0695, 7.0692, 7.0691, 7.0689, 7.0688, 7.0685, 7.0681, 7.0678, 7.0687, 7.0675, 7.0673, 7.0669, 7.0666, 7.0665, 7.0673, 7.0659, 7.0656, 7.0653, 7.0664, 7.066, 7.0665, 7.0664, 7.0665, 7.0661, 7.0658, 7.0656, 7.0655, 7.0652, 7.0649, 7.0636, 7.0633, 7.062, 7.0617, 7.0627, 7.0624, 7.0611, 7.0598, 7.0608, 7.0605, 7.0614, 7.0612, 7.0609, 7.0607, 7.0603, 7.0613, 7.061, 7.0609, 7.0607, 7.0606, 7.0603, 7.0599, 7.0595, 7.0593, 7.059, 7.0589, 7.0585, 7.0581, 7.0568, 7.0555, 7.0542, 7.0539, 7.0537, 7.0536, 7.0535, 7.0534, 7.0531, 7.054, 7.0537, 7.0536, 7.0533, 7.0531, 7.0532, 7.0531, 7.0531, 7.0528, 7.0525, 7.0523, 7.0519, 7.0529, 7.0552, 7.055, 7.0564, 7.0561, 7.0559, 7.0557, 7.0554, 7.0562, 7.0561, 7.0557, 7.0554, 7.0555, 7.0552, 7.0564, 7.0575, 7.0571, 7.0558, 7.0555, 7.0552, 7.0548, 7.0548, 7.0557, 7.0567, 7.0563, 7.0563, 7.0572, 7.057, 7.0566, 7.0563, 7.0562, 7.0559, 7.0556, 7.0552, 7.0549, 7.0559, 7.0557, 7.0555, 7.0566, 7.0563, 7.0562, 7.0573, 7.0571, 7.0571, 7.0557, 7.0557, 7.0567, 7.0577000000000005, 7.0583, 7.0582, 7.0591, 7.0605, 7.0603, 7.0602, 7.0616, 7.0619, 7.063, 7.0644, 7.0641, 7.064, 7.0627, 7.0626, 7.0625, 7.0622, 7.0619, 7.0605, 7.0592, 7.0589, 7.0575, 7.0573, 7.057, 7.058, 7.0577, 7.0575, 7.0562, 7.0562, 7.0561, 7.0559, 7.0556, 7.0556, 7.0554, 7.0541, 7.055, 7.0548, 7.0544, 7.0542, 7.0538, 7.0535, 7.0535, 7.0535, 7.0532, 7.053, 7.0539, 7.0536, 7.0535, 7.0522, 7.0521, 7.0518, 7.0515, 7.0512, 7.0509, 7.0495, 7.0481, 7.0477, 7.0475, 7.0475, 7.0472, 7.047, 7.0468, 7.0464, 7.0464, 7.0472, 7.0481, 7.0478, 7.0486, 7.0484, 7.0481, 7.048, 7.0488, 7.0485, 7.0485, 7.0483, 7.0479, 7.0479, 7.0477, 7.0476, 7.0473, 7.047, 7.0456, 7.0454, 7.0451, 7.0449, 7.0445, 7.0442, 7.0441, 7.0439, 7.044, 7.0437, 7.0434, 7.0448, 7.0447, 7.0446, 7.0443, 7.0439, 7.0436, 7.0434, 7.0432, 7.0433, 7.0446, 7.0445, 7.0443, 7.0444, 7.0465, 7.0463, 7.0461, 7.047, 7.0467, 7.0467, 7.0465, 7.0473, 7.047, 7.0479, 7.0478, 7.0486, 7.0483, 7.049300000000001, 7.050300000000001, 7.0504, 7.0514, 7.0527, 7.0515, 7.0513, 7.0521, 7.0518, 7.0506, 7.0503, 7.0504, 7.0495, 7.0504, 7.05, 7.0497, 7.0494, 7.0491, 7.05, 7.0497, 7.0495, 7.0492, 7.0503, 7.0502, 7.0501, 7.0511, 7.0508, 7.0507, 7.0504, 7.0502, 7.0511, 7.051, 7.0507, 7.0505, 7.0513, 7.0509, 7.0506, 7.0504, 7.0502, 7.0488, 7.0484, 7.0481, 7.0479, 7.0475, 7.0475, 7.0473, 7.0471, 7.047, 7.0466, 7.0475, 7.048500000000001, 7.0492, 7.049, 7.0487, 7.0497, 7.0495, 7.0505, 7.0503, 7.0511, 7.0508, 7.0505, 7.0503, 7.05, 7.0501, 7.0497, 7.0493, 7.049, 7.0487, 7.0495, 7.0505, 7.0515, 7.0512, 7.051, 7.052, 7.0519, 7.0518, 7.0514, 7.0501, 7.05, 7.0498, 7.0487, 7.0483, 7.0481, 7.049, 7.0488, 7.0485, 7.0484, 7.0481, 7.0478, 7.0474, 7.0471, 7.0469, 7.0478, 7.0475, 7.0472, 7.0469, 7.0465, 7.0463, 7.0463, 7.0471, 7.047, 7.0469, 7.0466, 7.0476, 7.0486, 7.049600000000001, 7.050600000000001, 7.051600000000001, 7.0513, 7.0511, 7.0508, 7.0505, 7.0514, 7.0511, 7.0507, 7.0494, 7.0492, 7.0488, 7.0496, 7.0494, 7.0483, 7.048, 7.0488, 7.0496, 7.0492, 7.0491, 7.0501000000000005, 7.051100000000001, 7.0508, 7.0505, 7.0514, 7.0524000000000004, 7.0521, 7.0531, 7.0528, 7.0537, 7.0535, 7.0544, 7.0541, 7.0538, 7.0534, 7.0531, 7.0528, 7.0525, 7.0523, 7.052, 7.0528, 7.0524, 7.0521, 7.0517, 7.0513, 7.051, 7.0520000000000005, 7.0517, 7.0525, 7.0521, 7.053100000000001, 7.0527, 7.0535, 7.0531, 7.0527, 7.0524, 7.0522, 7.0519, 7.052, 7.0517, 7.0513, 7.051, 7.0507, 7.0504, 7.0501, 7.05, 7.0499, 7.0507, 7.0506, 7.0516000000000005, 7.0513, 7.051, 7.0497, 7.0485, 7.0494, 7.0494, 7.0482, 7.0489, 7.0499, 7.0496, 7.0494, 7.0491, 7.0488, 7.0486, 7.0486, 7.0487, 7.0487, 7.0507, 7.0529, 7.0549, 7.0547, 7.0544, 7.0541, 7.0548, 7.0547, 7.0544, 7.0542, 7.0539, 7.0525, 7.0523, 7.0531, 7.0541, 7.0529, 7.0538, 7.0525, 7.0523, 7.0521, 7.0519, 7.0517, 7.0515, 7.0512, 7.0508, 7.0505, 7.0514, 7.0511, 7.051, 7.0519, 7.0507, 7.0504, 7.0513, 7.0532, 7.0529, 7.0528, 7.0525, 7.0523, 7.0521, 7.0518, 7.0515, 7.0513, 7.051, 7.0507, 7.0506, 7.0503, 7.0511, 7.0519, 7.0519, 7.0527, 7.053, 7.0537, 7.0545, 7.0545, 7.0542, 7.0529, 7.0526, 7.0523, 7.0531, 7.0529, 7.0525, 7.0512, 7.051, 7.0508, 7.0507, 7.0504, 7.0501, 7.0502, 7.0499, 7.0498, 7.0497, 7.0494, 7.0494, 7.0482, 7.047, 7.0457, 7.0455, 7.0442, 7.0441, 7.0439, 7.0427, 7.0425, 7.0434, 7.0464, 7.0461, 7.0459, 7.0475, 7.0496, 7.0501, 7.0514, 7.0513, 7.0511, 7.0509, 7.0507, 7.0505, 7.0522, 7.0532, 7.0529, 7.0527, 7.0525, 7.0521, 7.0529, 7.0537, 7.0545, 7.0543, 7.054, 7.0538, 7.0536, 7.0533, 7.0532, 7.0532, 7.0533, 7.0529, 7.0539, 7.0536, 7.0535, 7.0533, 7.0529, 7.0526, 7.0523, 7.052, 7.0517, 7.052700000000001, 7.0524, 7.0522, 7.0519, 7.0529, 7.0529, 7.0527, 7.0536, 7.0532, 7.0528, 7.0526, 7.0535, 7.0532, 7.0531, 7.0529, 7.0527, 7.0535, 7.0534, 7.0536, 7.0525, 7.0526, 7.0524, 7.0561, 7.0558, 7.0558, 7.056, 7.0549, 7.0538, 7.0536, 7.0534, 7.0532, 7.0541, 7.0538, 7.0535, 7.0535, 7.0534, 7.0532, 7.0531, 7.0528, 7.0515, 7.0512, 7.0509, 7.0518, 7.0507, 7.0503, 7.0501, 7.0498, 7.0508, 7.0505, 7.0502, 7.05, 7.0499, 7.0501, 7.05, 7.0496, 7.0484, 7.0491, 7.0488, 7.0498, 7.0496, 7.0495, 7.0504, 7.0497, 7.0507, 7.0506, 7.0516000000000005, 7.0515, 7.0523, 7.0531, 7.0528, 7.0525, 7.0535000000000005, 7.0533, 7.0543000000000005, 7.0541, 7.053, 7.0528, 7.0528, 7.0525, 7.0523, 7.0531, 7.0519, 7.052, 7.0517, 7.0514, 7.0511, 7.0509, 7.051900000000001, 7.0517, 7.0515, 7.0515, 7.0525, 7.0524, 7.0513, 7.0512, 7.051, 7.0520000000000005, 7.0518, 7.0534, 7.0532, 7.054, 7.0537, 7.0534, 7.0532, 7.053, 7.0528, 7.0528, 7.0525, 7.0533, 7.0531, 7.0539, 7.0536, 7.0545, 7.0543, 7.054, 7.0538, 7.0536, 7.0535, 7.0552, 7.0562000000000005, 7.056, 7.0571, 7.0569, 7.0581, 7.0603, 7.06, 7.0598, 7.0596, 7.0593, 7.0597, 7.0604, 7.0614, 7.0611, 7.0608, 7.0606, 7.0604, 7.0602, 7.0599, 7.0596, 7.0593, 7.0602, 7.061, 7.061, 7.0618, 7.0615, 7.0613, 7.0612, 7.062, 7.0619, 7.0626, 7.0634, 7.0631, 7.0639, 7.0638, 7.0636, 7.0645, 7.0644, 7.0654, 7.0658, 7.0656, 7.0653, 7.0651, 7.0651, 7.0639, 7.0628, 7.0625, 7.0621, 7.062, 7.0618, 7.0615, 7.0613, 7.0611, 7.0609, 7.0606, 7.0595, 7.0593, 7.0593, 7.059, 7.0587, 7.0584, 7.0582, 7.059, 7.0588, 7.0586, 7.0586, 7.0583, 7.0582, 7.0579, 7.0576, 7.0574, 7.0572, 7.0571, 7.0569, 7.0566, 7.0565, 7.0565, 7.0562, 7.0561, 7.0585, 7.0584, 7.0586, 7.0596000000000005, 7.060600000000001, 7.061600000000001, 7.0615, 7.0612, 7.061, 7.0628, 7.0637, 7.0644, 7.0642, 7.0632, 7.063, 7.0638, 7.0646, 7.0643, 7.065300000000001, 7.065, 7.0638, 7.0635, 7.0634, 7.0632, 7.064, 7.0648, 7.0651, 7.065, 7.0658, 7.0668, 7.0687, 7.0695, 7.0692, 7.0691, 7.0679, 7.0678, 7.0675, 7.0673, 7.0671, 7.0668, 7.0667, 7.0674, 7.0672, 7.0671, 7.0678, 7.0679, 7.0676, 7.0673, 7.0671, 7.0679, 7.0679, 7.0677, 7.0685, 7.0684, 7.0681, 7.0679, 7.0688, 7.0685, 7.0684, 7.0682, 7.0679, 7.0667, 7.0667, 7.0666, 7.0674, 7.0672, 7.0672, 7.0672, 7.0672, 7.0663, 7.0693, 7.069, 7.0688, 7.0685, 7.0684, 7.0687, 7.0727, 7.0724, 7.0721, 7.0729, 7.0726, 7.0738, 7.0736, 7.0734, 7.0731, 7.0756, 7.0754, 7.0752, 7.075, 7.0739, 7.0739, 7.0747, 7.0755, 7.0752, 7.075, 7.0748, 7.0745, 7.0744, 7.0741, 7.0738, 7.0738, 7.0735, 7.0733, 7.0732, 7.0743, 7.0743, 7.0741, 7.074, 7.0738, 7.0735, 7.0731, 7.0738, 7.0737, 7.0744, 7.0741, 7.0749, 7.0758, 7.0756, 7.0763, 7.0761, 7.0749, 7.0746, 7.0743, 7.075, 7.0748, 7.0745, 7.0742, 7.0749, 7.0756, 7.0753, 7.075, 7.0748, 7.0747, 7.0745, 7.0748, 7.0745, 7.0743, 7.075, 7.075, 7.0748, 7.0746, 7.0744, 7.0741, 7.0748, 7.0745, 7.0744, 7.0741, 7.0751, 7.0749, 7.0746, 7.0743, 7.075, 7.0747, 7.0744, 7.0741, 7.0739, 7.0736, 7.0745, 7.0742, 7.075, 7.075, 7.0747, 7.0755, 7.0753, 7.0751, 7.0748, 7.0746, 7.0743, 7.0741, 7.0741, 7.0766, 7.0774, 7.0771, 7.0768, 7.0765, 7.0772, 7.0772, 7.077, 7.0767, 7.0764, 7.0761, 7.0764, 7.0762, 7.0759, 7.0756, 7.0753, 7.0753, 7.075, 7.075, 7.0747, 7.0755, 7.0753, 7.0751, 7.0751, 7.0749, 7.0756, 7.0766, 7.0763, 7.0771, 7.0769, 7.0767, 7.0768, 7.0765, 7.0764, 7.0763, 7.077, 7.0767, 7.0773, 7.0771, 7.0769, 7.0767, 7.0776, 7.0774, 7.0771, 7.0768, 7.0765, 7.0763, 7.0771, 7.0769, 7.0767, 7.0764, 7.0762, 7.0761, 7.076, 7.0758, 7.0755, 7.0753, 7.075, 7.0749, 7.0748, 7.0745, 7.0753, 7.0761, 7.0769, 7.0766, 7.0773, 7.077, 7.0768, 7.0775, 7.0795, 7.0793, 7.0792, 7.0791, 7.0789, 7.0788, 7.0796, 7.0805, 7.0805, 7.0802, 7.08, 7.0797, 7.0804, 7.0801, 7.0799, 7.0806, 7.0813, 7.081, 7.0809, 7.081, 7.0807, 7.0815, 7.0813, 7.0811, 7.0811, 7.0802, 7.08, 7.0797, 7.0806, 7.0804, 7.081, 7.0809, 7.0808, 7.0805, 7.0804, 7.0803, 7.0802, 7.08, 7.0807, 7.0831, 7.0839, 7.0838, 7.0849, 7.0858, 7.0882, 7.088, 7.0877, 7.0874, 7.0871, 7.0869, 7.0868, 7.0866, 7.0865, 7.0864, 7.0861, 7.0858, 7.0855, 7.0852, 7.085, 7.0849, 7.0857, 7.0865, 7.0862, 7.0862, 7.0859, 7.0856, 7.0863, 7.0861, 7.0858, 7.0856, 7.0857, 7.0854, 7.0842, 7.0842, 7.0839, 7.0836, 7.0834, 7.0831, 7.0828, 7.0825, 7.0822, 7.0822, 7.0828, 7.0828, 7.0825, 7.0822, 7.0829, 7.0827, 7.0834, 7.0832, 7.084, 7.0837, 7.0835, 7.0833, 7.083, 7.0827, 7.0834, 7.0837, 7.0836, 7.0845, 7.0843, 7.0852, 7.085, 7.0849, 7.0848, 7.0855, 7.0853, 7.0851, 7.0849, 7.0846, 7.0845, 7.0843, 7.0841, 7.0839, 7.0836, 7.0834, 7.084, 7.0837, 7.0834, 7.0832, 7.0831, 7.083, 7.0828, 7.0825, 7.0833, 7.083, 7.0829, 7.0829, 7.0827, 7.0826, 7.0824, 7.0822, 7.0819, 7.0827, 7.0824, 7.0825, 7.0823, 7.0822, 7.082, 7.0828, 7.0827, 7.0827, 7.0825, 7.0834, 7.0832, 7.083, 7.0829, 7.0827, 7.0835, 7.0843, 7.0847, 7.0845, 7.0844, 7.0842, 7.084, 7.0847, 7.0844, 7.0842, 7.0839, 7.0836, 7.0836, 7.0844, 7.0854, 7.0855, 7.0854, 7.0862, 7.0861, 7.086, 7.086, 7.0858, 7.0849, 7.0846, 7.0845, 7.0844, 7.0852, 7.085, 7.0847, 7.0857, 7.0854, 7.0851, 7.086, 7.0858, 7.0869, 7.087, 7.0867, 7.0865, 7.0862, 7.086, 7.0858, 7.0856, 7.0853, 7.0852, 7.0849, 7.0857, 7.0855, 7.0854, 7.0852, 7.0851, 7.0884, 7.0883, 7.0872, 7.0871, 7.0868, 7.0866, 7.0864, 7.0864, 7.0861, 7.0861, 7.0858, 7.0855, 7.0852, 7.086200000000001, 7.087200000000001, 7.0869, 7.0866, 7.0863, 7.0861, 7.0858, 7.0856, 7.0856, 7.0872, 7.087, 7.0867, 7.0869, 7.0866, 7.087, 7.0877, 7.0876, 7.0884, 7.0887, 7.0895, 7.0893, 7.0891, 7.089, 7.0897, 7.0895, 7.0895, 7.0892, 7.088, 7.0881, 7.088, 7.0877, 7.0875, 7.0873, 7.0871, 7.087, 7.0872, 7.0879, 7.0879, 7.0877, 7.0876, 7.0874, 7.0872, 7.0869, 7.0866, 7.0864, 7.0861, 7.0859, 7.0848, 7.0845, 7.0842, 7.0841, 7.0839, 7.0837, 7.0835, 7.0835, 7.0832, 7.0829, 7.0835, 7.0832, 7.0839, 7.0836, 7.0833, 7.083, 7.0819, 7.0808, 7.0815, 7.0822, 7.0821, 7.0819, 7.0826, 7.0825, 7.0823, 7.082, 7.0828, 7.0826, 7.0823, 7.0822, 7.0829, 7.0835, 7.0832, 7.0839, 7.0836, 7.0842, 7.0839, 7.0836, 7.0837, 7.0835, 7.0833, 7.0832, 7.0829, 7.0826, 7.0824, 7.0832, 7.084, 7.0837, 7.0835, 7.0834, 7.0831, 7.0838, 7.0835, 7.0836, 7.0865, 7.0863, 7.086, 7.0867, 7.0865, 7.0862, 7.0871, 7.0869, 7.0867, 7.0864, 7.0861, 7.0868, 7.0865, 7.0862, 7.086, 7.0859, 7.0856, 7.0855, 7.0852, 7.0851, 7.085, 7.0849, 7.0847, 7.0854, 7.0851, 7.0848, 7.0845, 7.0834, 7.084, 7.0847, 7.0854, 7.0852, 7.085, 7.0848, 7.0848, 7.0847, 7.0844, 7.0842, 7.084, 7.0837, 7.0835, 7.0834, 7.0842, 7.0843, 7.085, 7.0857, 7.0855, 7.0854, 7.0852, 7.0859, 7.0857, 7.0854, 7.0853, 7.086, 7.0858, 7.0858, 7.0857, 7.0855, 7.0853, 7.085, 7.0839, 7.0836, 7.0833, 7.084300000000001, 7.085, 7.0847, 7.0844, 7.0842, 7.0841, 7.0848, 7.0855, 7.0854, 7.0852, 7.0849, 7.0847, 7.0853, 7.0859, 7.0866, 7.0863, 7.086, 7.0857, 7.0867, 7.0884, 7.0881, 7.0879, 7.0877, 7.0875, 7.0881, 7.0872, 7.0882000000000005, 7.089200000000001, 7.090200000000001, 7.0891, 7.0888, 7.0886, 7.0885, 7.0883, 7.0889, 7.0886, 7.0893, 7.089, 7.0887, 7.0892, 7.089, 7.0887, 7.0894, 7.0892, 7.089, 7.0897, 7.0904, 7.0903, 7.0903, 7.0902, 7.09, 7.0889, 7.0877, 7.0874, 7.0871, 7.0868, 7.0866, 7.0863, 7.0862, 7.0861, 7.0858, 7.0847, 7.0844, 7.085, 7.0857, 7.0855, 7.0854, 7.0851, 7.0848, 7.0848, 7.0846, 7.0845, 7.0844, 7.0841, 7.0838, 7.0835, 7.0853, 7.0851, 7.085, 7.0848, 7.0845, 7.0834, 7.0832, 7.0832, 7.0832, 7.083, 7.0829, 7.0828, 7.0817, 7.0806, 7.0803, 7.0801, 7.08, 7.0798, 7.0797, 7.0787, 7.0785, 7.0783, 7.0781, 7.0782, 7.0799, 7.0798, 7.0797, 7.0795, 7.0793, 7.0791, 7.0799, 7.0798, 7.0796, 7.0793, 7.0803, 7.081300000000001, 7.082300000000001, 7.0833, 7.0833, 7.0831, 7.084, 7.0841, 7.0847, 7.0837, 7.0837, 7.0837, 7.0845, 7.0844, 7.0842, 7.084, 7.0838, 7.0852, 7.086, 7.0857, 7.0855, 7.0862, 7.0859, 7.0848, 7.0846, 7.0855, 7.0863, 7.0863, 7.0861, 7.0858, 7.0858, 7.0856, 7.0854, 7.0854, 7.0862, 7.0862, 7.086, 7.0858, 7.0855, 7.0853, 7.0854, 7.0861, 7.086, 7.0866, 7.0863, 7.0873, 7.0883, 7.0873, 7.0871, 7.0868, 7.0868, 7.0865, 7.0862, 7.0859, 7.0856, 7.086600000000001, 7.0864, 7.087400000000001, 7.0864, 7.0861, 7.0863, 7.0869, 7.0868, 7.0865, 7.0864, 7.0853, 7.085, 7.0848, 7.0847, 7.0845, 7.0852, 7.085, 7.0849, 7.0846, 7.0845, 7.0843, 7.0841, 7.0841, 7.085100000000001, 7.086100000000001, 7.0869, 7.0877, 7.0885, 7.0883, 7.089, 7.0897, 7.0904, 7.0905, 7.0907, 7.0905, 7.0902, 7.0908, 7.0906, 7.0904, 7.0894, 7.0885, 7.0891, 7.0889, 7.0896, 7.0894, 7.0891, 7.0899, 7.0897, 7.0895, 7.0884, 7.0882, 7.0882, 7.0898, 7.0898, 7.0896, 7.0894, 7.0891, 7.0889, 7.0887, 7.0884, 7.0873, 7.0865, 7.0864, 7.0871, 7.0878, 7.0876, 7.0874, 7.088, 7.0879, 7.0869, 7.0868, 7.0867, 7.0881, 7.088, 7.0878, 7.0876, 7.0873, 7.087, 7.087, 7.0867, 7.0856, 7.0854, 7.0852, 7.0849, 7.0847, 7.0845, 7.0844, 7.0868, 7.0878000000000005, 7.088800000000001, 7.0886, 7.0885, 7.0883, 7.0886, 7.0885, 7.0884, 7.0882, 7.088, 7.0877, 7.0876, 7.0875, 7.0881, 7.0882, 7.0888, 7.0898, 7.090800000000001, 7.0905, 7.0902, 7.0901, 7.0899, 7.0905, 7.0903, 7.09, 7.0898, 7.0897, 7.0903, 7.0902, 7.0908, 7.0908, 7.0906, 7.0904, 7.0903, 7.0911, 7.0918, 7.0915, 7.0912, 7.0918, 7.0916, 7.0926, 7.0923, 7.0929, 7.0936, 7.0934, 7.094, 7.095, 7.0951, 7.0958, 7.0956, 7.0955, 7.0953, 7.0952, 7.095, 7.0951, 7.095, 7.0947, 7.0946, 7.0944, 7.0942, 7.094, 7.0939, 7.0945, 7.0943, 7.0949, 7.0946, 7.0945, 7.0943, 7.0953, 7.0963, 7.096, 7.0957, 7.0955, 7.0953, 7.0951, 7.0948, 7.0955, 7.096500000000001, 7.097500000000001, 7.0983, 7.098, 7.0981, 7.0978, 7.0976, 7.0974, 7.0973, 7.097, 7.096, 7.0957, 7.0957, 7.0955, 7.0954, 7.0953, 7.095, 7.0949, 7.0956, 7.0945, 7.0944, 7.0944, 7.0943, 7.094, 7.0937, 7.0934, 7.0931, 7.0932, 7.094200000000001, 7.0939, 7.0938, 7.0945, 7.0942, 7.0952, 7.0962000000000005, 7.0959, 7.0966, 7.0964, 7.0972, 7.097, 7.0968, 7.0967, 7.0965, 7.0963, 7.0961, 7.0959, 7.0958, 7.0955, 7.0953, 7.0951, 7.0949, 7.0956, 7.0954, 7.0951, 7.0957, 7.0963, 7.0965, 7.0971, 7.0961, 7.0951, 7.0941, 7.094, 7.0939, 7.0936, 7.0934, 7.0933, 7.094, 7.0937, 7.0935, 7.0934, 7.0932, 7.0932, 7.0932, 7.093, 7.0954, 7.0964, 7.0974, 7.098400000000001, 7.0983, 7.0981, 7.0988, 7.0986, 7.0985, 7.0984, 7.099, 7.099, 7.0989, 7.0989, 7.0987, 7.0986, 7.0984, 7.099, 7.0988, 7.0988, 7.0994, 7.0991, 7.099, 7.0989, 7.0988, 7.0989, 7.0987, 7.0987, 7.0985, 7.0995, 7.0994, 7.0993, 7.0993, 7.0993, 7.0991, 7.0997, 7.0995, 7.0992, 7.0989, 7.0995, 7.0993, 7.1011, 7.1009, 7.1008, 7.1007, 7.1026, 7.1016, 7.1014, 7.1011, 7.1008, 7.1007, 7.1005, 7.1039, 7.1037, 7.1043, 7.1041, 7.1031, 7.1028, 7.1025, 7.1025, 7.1024, 7.1023, 7.102, 7.1017, 7.1015, 7.1014, 7.1012, 7.101, 7.102, 7.102, 7.1018, 7.1016, 7.1016, 7.1014, 7.1012, 7.1013, 7.1011, 7.1011, 7.101, 7.1008, 7.1006, 7.1012, 7.1011, 7.1011, 7.1008, 7.1016, 7.1014, 7.1012, 7.1009, 7.0999, 7.0997, 7.0995, 7.0994, 7.0992, 7.0991, 7.0997, 7.0996, 7.0995, 7.0993, 7.0991, 7.0996, 7.0993, 7.0991, 7.1011, 7.1011, 7.1018, 7.1017, 7.1016, 7.1022, 7.1022, 7.1021, 7.1027, 7.1024, 7.1021, 7.1031, 7.104100000000001, 7.1039, 7.1038, 7.1044, 7.1045, 7.1042, 7.1041, 7.1049, 7.1051, 7.1049, 7.1046, 7.1045, 7.1044, 7.105, 7.1048, 7.1054, 7.1054, 7.1052, 7.1052, 7.1066, 7.1071, 7.107, 7.1068, 7.1075, 7.1065, 7.1057, 7.1055, 7.1053, 7.1055, 7.1053, 7.1051, 7.105, 7.1057, 7.1055, 7.1055, 7.1052, 7.1051, 7.1048, 7.104, 7.1042, 7.104, 7.1038, 7.1037, 7.1034, 7.1033, 7.1032, 7.103, 7.1037, 7.1047, 7.105700000000001, 7.109, 7.1089, 7.1087, 7.1085, 7.1083, 7.109, 7.1088, 7.1087, 7.1085, 7.1084, 7.1082, 7.108, 7.1078, 7.1086, 7.1083, 7.1082, 7.1088, 7.1086, 7.1083, 7.1084, 7.1082, 7.1081, 7.1079, 7.1078, 7.1086, 7.1083, 7.1083, 7.108, 7.1086, 7.1077, 7.1075, 7.1077, 7.1083, 7.108, 7.1078, 7.1075, 7.1072, 7.1071, 7.1069, 7.1067, 7.1065, 7.1056, 7.1062, 7.1059, 7.1057, 7.1056, 7.1062, 7.1059, 7.1058, 7.1064, 7.1061, 7.1067, 7.1065, 7.1064, 7.107, 7.1076, 7.1082, 7.1081, 7.1079, 7.1077, 7.1083, 7.108, 7.1078, 7.1076, 7.1075, 7.1074, 7.1072, 7.107, 7.1069, 7.1067, 7.1065, 7.1064, 7.1062, 7.1061, 7.106, 7.1058, 7.1056, 7.1054, 7.106, 7.1066, 7.1064, 7.1062, 7.106, 7.1058, 7.1056, 7.1054, 7.1052, 7.1051, 7.1049, 7.1047, 7.1054, 7.1052, 7.105, 7.1041, 7.104, 7.1039, 7.1045, 7.1051, 7.1049, 7.1046, 7.1053, 7.105, 7.1047, 7.1053, 7.1051, 7.105, 7.1047, 7.1044, 7.1041, 7.1038, 7.1037, 7.1036, 7.1033, 7.1032, 7.1034, 7.1034, 7.1032, 7.1034, 7.1043, 7.1045, 7.1043, 7.1041, 7.1051, 7.1052, 7.1051, 7.1057, 7.1056, 7.1062, 7.1061, 7.106, 7.1058, 7.1058, 7.1057, 7.1056, 7.1055, 7.1053, 7.1059, 7.1065, 7.1063, 7.1061, 7.1058, 7.1057, 7.1063, 7.1062, 7.106, 7.1058, 7.1064, 7.1061, 7.1061, 7.1061, 7.1061, 7.1067, 7.1065, 7.1072, 7.1071, 7.107, 7.1076, 7.1073, 7.107, 7.1068, 7.1068, 7.1065, 7.1063, 7.106, 7.1059, 7.1065, 7.1063, 7.1069, 7.1075, 7.1072, 7.107, 7.1068, 7.1067, 7.1064, 7.1061, 7.106, 7.1059, 7.1056, 7.1062, 7.1059, 7.1057, 7.1063, 7.1069, 7.1066, 7.1065, 7.1064, 7.1062, 7.1068, 7.1067, 7.1065, 7.1063, 7.1061, 7.1059, 7.1057, 7.1054, 7.1054, 7.1052, 7.105, 7.1049, 7.1047, 7.1046, 7.1044, 7.1043, 7.1043, 7.1042, 7.1048, 7.1054, 7.1053, 7.105, 7.1049, 7.1048, 7.1046, 7.1047, 7.1047, 7.1047, 7.1046, 7.1044, 7.1043, 7.1042, 7.104, 7.1039, 7.1046, 7.1044, 7.1042, 7.104, 7.1039, 7.1038, 7.1044, 7.1043, 7.1042, 7.1039, 7.1037, 7.1035, 7.1033, 7.104, 7.1049, 7.1048, 7.1046, 7.1043, 7.1043, 7.1042, 7.1042, 7.104, 7.1037, 7.1034, 7.1031, 7.1029, 7.1035, 7.1035, 7.1042, 7.1042, 7.1048, 7.1046, 7.1048, 7.1039, 7.1045, 7.1043, 7.1041, 7.1039, 7.1044, 7.1042, 7.1049, 7.1048, 7.1047, 7.1045, 7.1051, 7.1048, 7.1047, 7.1046, 7.1052, 7.105, 7.105, 7.1049, 7.105, 7.1047, 7.1046, 7.1044, 7.1042, 7.1047, 7.1054, 7.1052, 7.1049, 7.1049, 7.1048, 7.1045, 7.1049, 7.1047, 7.1046, 7.1061, 7.1067, 7.1067, 7.1068, 7.1067, 7.1065, 7.1072, 7.1069, 7.1069, 7.1067, 7.1065, 7.1082, 7.1082, 7.1082, 7.1075, 7.1073, 7.1092, 7.109, 7.1088, 7.1099, 7.1097, 7.1095, 7.1094, 7.1099, 7.11, 7.1097, 7.1096, 7.1115, 7.1124, 7.1122, 7.1129, 7.1127, 7.1125, 7.1124, 7.1149, 7.1147, 7.1145, 7.1153, 7.1151, 7.1149, 7.1156, 7.1156, 7.1181, 7.1208, 7.1205, 7.121, 7.1208, 7.1206, 7.1213, 7.1223, 7.1229, 7.1226, 7.1224, 7.1222, 7.1219, 7.1228, 7.1233, 7.1232, 7.123, 7.1227, 7.1233, 7.123, 7.1228, 7.1227, 7.1225, 7.1234, 7.1234, 7.1242, 7.1241, 7.1261, 7.1267, 7.1266, 7.1264, 7.1262, 7.126, 7.1257, 7.1254, 7.1251, 7.1256, 7.1254, 7.126, 7.1258, 7.1256, 7.1262, 7.1259, 7.1264, 7.1261, 7.1259, 7.1256, 7.1262, 7.1261, 7.1259, 7.1257, 7.1254, 7.1252, 7.125, 7.1248, 7.1254, 7.1253, 7.1251, 7.125, 7.1249, 7.1255, 7.1253, 7.1252, 7.1257, 7.1255, 7.1263, 7.127, 7.127, 7.1268, 7.1282, 7.128, 7.1278, 7.1294, 7.1292, 7.129, 7.1288, 7.128, 7.1289, 7.1296, 7.1314, 7.1313, 7.131, 7.131, 7.1307, 7.1305, 7.1302, 7.1326, 7.1323, 7.1359, 7.1366, 7.1373, 7.1371, 7.137, 7.1369, 7.1367, 7.1365, 7.137, 7.1368, 7.1367, 7.1364, 7.1363, 7.1369, 7.1367, 7.1364, 7.1361, 7.1359, 7.1356, 7.1353, 7.1351, 7.1349, 7.1346, 7.1345, 7.1351, 7.1348, 7.1346, 7.1343, 7.1341, 7.1339, 7.1337, 7.1334, 7.1339, 7.1337, 7.1335, 7.1336, 7.1335, 7.1333, 7.1339, 7.1337, 7.1335, 7.1334, 7.134, 7.1338, 7.1344, 7.135, 7.1348, 7.1346, 7.1352, 7.135, 7.1347, 7.1345, 7.135, 7.1348, 7.1346, 7.1351, 7.1348, 7.1345, 7.1343, 7.1341, 7.1338, 7.1335, 7.134, 7.1337, 7.1334, 7.1332, 7.1329, 7.1335, 7.1332, 7.1329, 7.1326, 7.1324, 7.1329, 7.1327, 7.1332, 7.1329, 7.1326, 7.1323, 7.1321, 7.1326, 7.1324, 7.1314, 7.1319, 7.1318, 7.1316, 7.1313, 7.1319, 7.1318, 7.1324, 7.133, 7.1328, 7.1343, 7.1334, 7.1331, 7.1322, 7.1313, 7.1311, 7.131, 7.1308, 7.1306, 7.1304, 7.1302, 7.1301, 7.1298, 7.1296, 7.1302, 7.1301, 7.1307, 7.1304, 7.1301, 7.1299, 7.1298, 7.1304, 7.1301, 7.13, 7.1298, 7.1296, 7.1293, 7.1291, 7.129, 7.1288, 7.1287, 7.1285, 7.1282, 7.1295, 7.1293, 7.1291, 7.1289, 7.1289, 7.1288, 7.1302, 7.13, 7.1307, 7.1314, 7.1312, 7.1311, 7.131, 7.1308, 7.1306, 7.1303, 7.1309, 7.1307, 7.1305, 7.1311], '192.168.122.114': [6.0153, 5.7533, 7.5716, 8.4394, 7.8914, 7.6347, 7.5224, 7.3214, 7.1851, 7.627, 7.5463, 7.3739, 7.2576, 7.2155, 7.5487, 7.4595, 7.3862, 7.6098, 7.5682, 7.4751, 7.404, 7.3719, 7.29, 7.4608, 7.3801, 7.3053, 7.2653, 7.4213, 7.3612, 7.3248, 7.3264, 7.2988, 7.246, 7.1928, 7.1667, 7.1271, 7.1002, 6.9852, 6.95, 6.9186, 6.8866, 6.8562, 6.862, 6.8321, 6.8049, 6.7757, 6.7466, 6.624, 6.6105, 6.5964, 6.7231, 6.7248, 6.7981, 6.7991, 6.8001000000000005, 6.8828, 6.857, 6.8526, 6.8443, 6.8212, 6.8043, 6.8768, 6.8588, 6.7736, 6.7766, 6.7597, 6.7381, 6.7193, 6.7118, 6.6914, 6.7438, 6.7366, 6.735, 6.7347, 6.7904, 6.7872, 6.7729, 6.7557, 6.7445, 6.7261, 6.7087, 6.7098, 6.7096, 6.7038, 6.6957, 6.6796, 6.6681, 6.7313, 6.7754, 6.7657, 6.7573, 6.7434, 6.7898, 6.8553, 6.8436, 6.8389, 6.8799, 6.9295, 6.9679, 6.9638, 6.9482, 6.9425, 6.9265, 6.9128, 6.898, 6.8917, 6.8382, 6.8331, 6.8199, 6.807, 6.7937, 6.7814, 6.77, 6.7653, 6.753, 6.7613, 6.7559, 6.7537, 6.7511, 6.7541, 6.7499, 6.7416, 6.7311, 6.7197, 6.708, 6.7087, 6.666, 6.6566, 6.6487, 6.6417, 6.6724, 6.6705, 6.6617, 6.6206, 6.6116, 6.6062, 6.5986, 6.5888, 6.5828, 6.5842, 6.6154, 6.6443, 6.6405, 6.6678, 6.663, 6.6558, 6.6519, 6.6533, 6.6498, 6.6485, 6.643, 6.6366, 6.6295, 6.6384, 6.6763, 6.6405, 6.6355, 6.6649, 6.6602, 6.6606, 6.6856, 6.6899, 6.6918, 6.6854, 6.6767, 6.645, 6.6751, 6.6694, 6.666, 6.6783, 6.6492, 6.6514, 6.7255, 6.7543, 6.749, 6.7412, 6.7366, 6.7298, 6.7232, 6.7194, 6.7148, 6.709, 6.7936, 6.7868, 6.7801, 6.7737, 6.7718, 6.7643, 6.7674, 6.7634, 6.7572, 6.7532, 6.7471, 6.7407, 6.7378, 6.732, 6.7287, 6.7516, 6.7478, 6.747, 6.7707, 6.7957, 6.8258, 6.8435, 6.838, 6.8312, 6.8303, 6.8274, 6.8292, 6.8274, 6.8028, 6.7963, 6.7916, 6.7875, 6.8078, 6.8015, 6.7982, 6.8173, 6.811, 6.8295, 6.8229, 6.8217, 6.7973, 6.7918, 6.7891, 6.787, 6.7832, 6.8016, 6.7964, 6.815, 6.8084, 6.8049, 6.8236, 6.8177, 6.8118, 6.8069, 6.804, 6.8006, 6.8225, 6.8402, 6.8383, 6.8394, 6.835, 6.8361, 6.8348, 6.83, 6.8466, 6.8527, 6.8505, 6.8445, 6.8614, 6.8555, 6.8522, 6.8536, 6.8539, 6.8481, 6.8447, 6.8415, 6.837, 6.8553, 6.8691, 6.888, 6.8835, 6.8794, 6.8757, 6.8901, 6.8872, 6.8833, 6.8776, 6.9081, 6.904, 6.9032, 6.9195, 6.9173, 6.9153, 6.9112, 6.8917, 6.8906, 6.8889, 6.8846, 6.8863, 6.8817, 6.8817, 6.8813, 6.8814, 6.8957, 6.8942, 6.8884, 6.8828, 6.8974, 6.8955, 6.8909, 6.8894, 6.8848, 6.8843, 6.8807, 6.8773, 6.8739, 6.8912, 6.892200000000001, 6.893200000000001, 6.894200000000001, 6.895200000000002, 6.9073, 6.9071, 6.9205, 6.9011, 6.9006, 6.8968, 6.9104, 6.9049, 6.9188, 6.9344, 6.9354000000000005, 6.9317, 6.9289, 6.9424, 6.9415, 6.939, 6.9339, 6.9289, 6.9242, 6.9526, 6.951, 6.9477, 6.9432, 6.9387, 6.9377, 6.9357, 6.9307, 6.9428, 6.9414, 6.9369, 6.9494, 6.9459, 6.9476, 6.9444, 6.9397, 7.0937, 7.0773, 7.0725, 7.0865, 7.085, 7.0827, 7.0778, 7.0761, 7.0752, 7.0863, 7.0832, 7.0944, 7.0916, 7.0889, 7.0876, 7.0833, 7.0823, 7.0798, 7.077, 7.0754, 7.0888, 7.1013, 7.0975, 7.0945, 7.0907, 7.0888, 7.1004, 7.0958, 7.092, 7.1019, 7.086, 7.0821, 7.0793, 7.0794, 7.0763, 7.0736, 7.0833, 7.0841, 7.0817, 7.0772, 7.0741, 7.071, 7.0692, 7.0647, 7.0613, 7.0567, 7.0539, 7.0499, 7.0594, 7.0549, 7.0644, 7.0604, 7.0705, 7.0571, 7.0552, 7.0533, 7.0625, 7.0609, 7.0714, 7.0679, 7.0661, 7.0752, 7.074, 7.0702, 7.0798, 7.088, 7.0838, 7.0929, 7.1023, 7.0986, 7.1083, 7.1064, 7.1033, 7.1037, 7.1011, 7.097, 7.0931, 7.0901, 7.088, 7.0861, 7.0953, 7.0921, 7.0907, 7.0905, 7.0873, 7.0848, 7.0826, 7.0821, 7.0785, 7.0771, 7.0736, 7.0828, 7.0792, 7.079, 7.0767, 7.0736, 7.0831, 7.0823, 7.0792, 7.0793, 7.0783, 7.0899, 7.092, 7.1003, 7.1005, 7.0964, 7.0928, 7.089, 7.0861, 7.0937, 7.091, 7.0885, 7.0858, 7.0821, 7.0781, 7.0871, 7.0833, 7.0817, 7.0781, 7.0861, 7.0844, 7.0808, 7.0897, 7.0858, 7.0938, 7.0901, 7.0864, 7.0827, 7.0801, 7.0821, 7.0808, 7.0888, 7.0857, 7.0822, 7.0911, 7.119, 7.1201, 7.1167, 7.1239, 7.1224, 7.12, 7.1164, 7.1127, 7.1116, 7.1129, 7.1104, 7.1178, 7.1153, 7.1226, 7.1213, 7.118, 7.1145, 7.111, 7.1073, 7.1089, 7.1061, 7.1052, 7.1132, 7.1204, 7.1079, 7.1062, 7.1154, 7.1136, 7.1102, 7.1067, 7.1043, 7.1135, 7.1111, 7.1207, 7.1204, 7.1193, 7.1157, 7.1126, 7.1114, 7.1088, 7.1068, 7.1057, 7.121, 7.1187, 7.118, 7.1177, 7.1263, 7.1228, 7.1219, 7.1293, 7.1287, 7.1362, 7.134, 7.1354, 7.135, 7.1329, 7.1301, 7.1306, 7.1286, 7.1369, 7.1392, 7.1402, 7.1373, 7.137, 7.1363, 7.1338, 7.1405, 7.1416, 7.1405, 7.1387, 7.1359, 7.1344, 7.1313, 7.1287, 7.1272, 7.1246, 7.1348, 7.1328, 7.1401, 7.139, 7.1371, 7.1337, 7.1307, 7.1288, 7.127, 7.1253, 7.1229, 7.1229, 7.1202, 7.1272, 7.1256, 7.1233, 7.1227, 7.1197, 7.1176, 7.1146, 7.1207, 7.1185, 7.116, 7.1127, 7.1112, 7.1088, 7.1147, 7.1125, 7.1124, 7.1096, 7.1078, 7.1143, 7.1117, 7.1111, 7.112, 7.1113, 7.112, 7.1104, 7.1079, 7.1072, 7.1047, 7.1022, 7.1007, 7.0982, 7.105, 7.1037, 7.1005, 7.0985, 7.0968, 7.0939, 7.1442, 7.1424, 7.1481, 7.1463, 7.145, 7.142, 7.139, 7.1394, 7.1386, 7.145, 7.1511, 7.1484, 7.1456, 7.1442, 7.1416, 7.14, 7.1369, 7.136, 7.135, 7.1333, 7.1318, 7.154, 7.1517, 7.1501, 7.1489, 7.1549, 7.156, 7.1535, 7.1521, 7.1492, 7.147, 7.1445, 7.1421, 7.1398, 7.1373, 7.1344, 7.1323, 7.1309, 7.1287, 7.1276, 7.1387, 7.1359, 7.1349, 7.1322, 7.1309, 7.1288, 7.1345, 7.1404, 7.1377, 7.1357, 7.1337, 7.1328, 7.13, 7.1358, 7.126, 7.1234, 7.1225, 7.1203, 7.1174, 7.1151, 7.1131, 7.1128, 7.1111, 7.1166, 7.1142, 7.1128, 7.1113, 7.1103, 7.1171, 7.1163, 7.1216, 7.1275, 7.1248, 7.1319, 7.1299, 7.128, 7.1337, 7.1314, 7.1299, 7.1363, 7.142, 7.1407, 7.141, 7.1399, 7.1386, 7.1409, 7.1398, 7.1385, 7.1359, 7.134, 7.1315, 7.1381, 7.1354, 7.1487, 7.1462, 7.1437, 7.1417, 7.1332, 7.1458, 7.165, 7.1637, 7.2035, 7.2025, 7.2013, 7.2003, 7.198, 7.1959, 7.1963, 7.1955, 7.1938, 7.1931, 7.1925, 7.1905, 7.1885, 7.1825, 7.1837, 7.1891, 7.1879, 7.1853, 7.186, 7.2145, 7.2131, 7.2112, 7.2092, 7.2072, 7.2062, 7.2041, 7.2019, 7.1997, 7.1919, 7.1912, 7.1887, 7.1861, 7.184, 7.182, 7.1805, 7.1782, 7.1769, 7.1747, 7.1757, 7.1736, 7.1715, 7.1767, 7.1747, 7.1739, 7.1792, 7.1778, 7.1767, 7.1752, 7.1734, 7.1715, 7.1771, 7.1766, 7.1745, 7.1736, 7.1727, 7.1774, 7.1767, 7.1747, 7.1722, 7.1712, 7.1699, 7.1747, 7.174, 7.1787, 7.1764, 7.174, 7.1715, 7.1696, 7.1679, 7.1665, 7.1788, 7.1832, 7.1863, 7.1845, 7.1902, 7.1898, 7.1883, 7.1936, 7.1916, 7.1892, 7.1944, 7.1986, 7.1966, 7.1953, 7.2005, 7.1984, 7.2039, 7.2018, 7.2061, 7.204, 7.2022, 7.1946, 7.1922, 7.1898, 7.1875, 7.1859, 7.1835, 7.1811, 7.1858, 7.1834, 7.1819, 7.1869, 7.1912, 7.189, 7.1938, 7.1925, 7.1849, 7.1828, 7.1877, 7.1922, 7.1964, 7.2016, 7.2059, 7.2044, 7.216, 7.2141, 7.2186, 7.2111, 7.2088, 7.2074, 7.2054, 7.2041, 7.2031, 7.2029, 7.2012, 7.2001, 7.205, 7.2097, 7.2077, 7.2054, 7.2047, 7.2026, 7.202, 7.2005, 7.1997, 7.1978, 7.1982, 7.2029, 7.2026, 7.2073, 7.2115, 7.2096, 7.2077, 7.2054, 7.2101, 7.2091, 7.207, 7.2115, 7.2098, 7.2089, 7.2073, 7.2056, 7.2037, 7.2021, 7.1999, 7.1985, 7.1963, 7.1949, 7.1928, 7.1915, 7.1903, 7.1887, 7.1873, 7.1861, 7.1859, 7.1841, 7.1823, 7.1867, 7.1917, 7.1957, 7.194, 7.1922, 7.1963, 7.1887, 7.1989, 7.1981, 7.2044, 7.2092, 7.207, 7.2062, 7.204, 7.2024, 7.207, 7.2049, 7.2028, 7.2011, 7.1991, 7.2033, 7.2026, 7.2021, 7.2006, 7.1998, 7.1978, 7.1968, 7.1963, 7.1956, 7.1944, 7.1924, 7.1906, 7.1893, 7.1883, 7.1872, 7.1863, 7.1848, 7.1833, 7.1812, 7.1796, 7.1798, 7.184, 7.1824, 7.1812, 7.1794, 7.1775, 7.1765, 7.1749, 7.1749, 7.1739, 7.1724, 7.1708, 7.1699, 7.1691, 7.1681, 7.1673, 7.1655, 7.1651, 7.1695, 7.1684, 7.1672, 7.1708, 7.1695, 7.1678, 7.1659, 7.1589, 7.1573, 7.1558, 7.1544, 7.1588, 7.1577, 7.1564, 7.1546, 7.1537, 7.1582, 7.1567, 7.1554, 7.1537, 7.1523, 7.1515, 7.1503, 7.1489, 7.1477, 7.1464, 7.141, 7.135, 7.134, 7.1322, 7.1309, 7.1358, 7.1343, 7.1337, 7.1324, 7.1308, 7.1305, 7.1305, 7.129, 7.1278, 7.1264, 7.1253, 7.1243, 7.1237, 7.1227, 7.1266, 7.1308, 7.1293, 7.1275, 7.132, 7.1357, 7.1347, 7.133, 7.1325, 7.1318, 7.1307, 7.129, 7.1274, 7.1256, 7.1257, 7.1239, 7.1223, 7.1213, 7.1209, 7.1202, 7.1196, 7.1183, 7.1174, 7.117, 7.1167, 7.1211, 7.12, 7.1184, 7.1181, 7.1165, 7.1154, 7.1151, 7.1192, 7.1178, 7.1167, 7.1155, 7.114, 7.1138, 7.1177, 7.1216, 7.1204, 7.1241, 7.1278, 7.1267, 7.1279, 7.1318, 7.1308, 7.1292, 7.1334, 7.1326, 7.1476, 7.1465, 7.1457, 7.145, 7.149, 7.1481, 7.1475, 7.1463, 7.1446, 7.143, 7.1423, 7.146, 7.1494, 7.1492, 7.1483, 7.147, 7.1411, 7.1352, 7.1292, 7.1277, 7.1272, 7.1214, 7.1253, 7.1256, 7.1245, 7.1248, 7.124, 7.1279, 7.1264, 7.1299, 7.1336, 7.132, 7.1354, 7.1388, 7.1371, 7.1372, 7.1412, 7.1395, 7.1382, 7.1426, 7.1417, 7.1401, 7.1401, 7.1388, 7.1376, 7.136, 7.1344, 7.1328, 7.1319, 7.1315, 7.1311, 7.1299, 7.1283, 7.127, 7.1261, 7.1256, 7.124, 7.123, 7.1229, 7.1216, 7.1255, 7.1293, 7.1285, 7.1275, 7.1259, 7.1244, 7.1234, 7.1224, 7.1174, 7.112, 7.1111, 7.1095, 7.1127, 7.1111, 7.1108, 7.1097, 7.1084, 7.1069, 7.1058, 7.1086, 7.108, 7.1066, 7.1014, 7.1006, 7.0993, 7.0981, 7.0966, 7.095, 7.0949, 7.0944, 7.0982, 7.0969, 7.0954, 7.094, 7.0926, 7.0927, 7.0915, 7.0953, 7.0946, 7.0933, 7.0932, 7.093, 7.0924, 7.0964, 7.096, 7.0953, 7.0938, 7.0972, 7.0958, 7.091, 7.09, 7.0943, 7.0934, 7.0929, 7.092, 7.0906, 7.0895, 7.0889, 7.093, 7.0965, 7.1017, 7.1006, 7.1043, 7.1038, 7.0984, 7.098, 7.0974, 7.0964, 7.095, 7.0987, 7.1019, 7.1003, 7.0947, 7.0936, 7.0968, 7.0985, 7.0979, 7.0971, 7.0956, 7.0954, 7.099, 7.0975, 7.0978, 7.0964, 7.0909, 7.0908, 7.0896, 7.0881, 7.0874, 7.0907, 7.0901, 7.0897, 7.0892, 7.0881, 7.0881, 7.0875, 7.0823, 7.081, 7.0756, 7.0752, 7.0746, 7.0732, 7.0719, 7.0704, 7.0691, 7.0679, 7.0665, 7.0651, 7.0637, 7.0632, 7.0626, 7.0617, 7.0606, 7.0591, 7.0542, 7.0531, 7.0521, 7.0512, 7.0497, 7.0483, 7.0473, 7.0459, 7.0444, 7.0434, 7.0423, 7.043, 7.0427, 7.046, 7.0407, 7.0356, 7.0385, 7.0415, 7.0405, 7.0395, 7.0386, 7.0372, 7.0358, 7.0361, 7.0365, 7.0355, 7.0314, 7.0349, 7.0395, 7.0389, 7.0376, 7.0409, 7.0408, 7.0404, 7.0393, 7.0386, 7.0374, 7.0414, 7.04, 7.0435, 7.0389, 7.0378, 7.0371, 7.0322, 7.0314, 7.0302, 7.029, 7.0283, 7.0234, 7.022, 7.0217, 7.0204, 7.0193, 7.0185, 7.0174, 7.017, 7.012, 7.0109, 7.0142, 7.0139, 7.0137, 7.0177, 7.017, 7.0125, 7.0111, 7.0103, 7.0094, 7.0043, 6.9992, 7.0002, 6.9955, 6.9945, 6.9982, 6.9977, 7.0011, 6.9999, 6.9993, 6.9983, 6.9982, 6.9971, 7.0004, 6.9994, 7.003, 7.0024, 7.0021, 7.0011, 7.0004, 7.0002, 7.0155, 7.0143, 7.0132, 7.0121, 7.0116, 7.0152, 7.0141, 7.0174, 7.0167, 7.0161, 7.0188, 7.0175, 7.0172, 7.0207, 7.0209, 7.0207, 7.0165, 7.0196, 7.0226, 7.0215, 7.0214, 7.0209, 7.0203, 7.0235, 7.0267, 7.0298, 7.0329, 7.0324, 7.0323, 7.0314, 7.0308, 7.034, 7.0372, 7.038200000000001, 7.037, 7.0322, 7.0316, 7.0304, 7.0292, 7.0284, 7.0273, 7.0307, 7.0298, 7.0295, 7.0283, 7.0273, 7.0303, 7.0294, 7.0281, 7.027, 7.0280000000000005, 7.0268, 7.03, 7.0296, 7.0286, 7.028, 7.0268, 7.0255, 7.0265, 7.0369, 7.0358, 7.0351, 7.034, 7.0327, 7.0322, 7.0312, 7.0269, 7.0298, 7.0286, 7.0243, 7.02, 7.0155, 7.0108, 7.0104, 7.0104, 7.0096, 7.0087, 7.0075, 7.0102, 7.0102, 7.0091, 7.0088, 7.0075, 7.0028, 7.0019, 7.0007, 7.004, 7.003, 7.002, 7.0012, 6.997, 6.9964, 6.9965, 6.9954, 6.9941, 6.9933, 6.9921, 6.9922, 6.9915, 6.9904, 6.9896, 6.9925, 6.9913, 6.9907, 6.9938, 6.9927, 6.9926, 6.9886, 6.989, 6.992, 6.9912, 6.9948, 6.991, 6.9902, 6.9901, 6.9889, 6.9919, 6.9908, 6.9935, 6.9924, 6.9913, 6.9903, 6.9892, 6.9887, 6.9875, 6.9873, 6.9871, 6.9865, 6.9857, 6.9858, 6.9847, 6.9849, 6.9877, 6.988700000000001, 6.9879, 6.991, 6.9898, 6.9888, 6.9877, 6.9866, 6.9856, 6.9855, 6.9844, 6.9836, 6.983, 6.9862, 6.9855, 6.9844, 6.9835, 6.9834, 6.9826, 6.982, 6.9811, 6.9805, 6.9798, 6.9787, 6.9814, 6.9777, 6.9736, 6.9739, 6.9694, 6.9684, 6.9674, 6.9666, 6.9662, 6.9672, 6.9682, 6.9672, 6.9701, 6.9694, 6.9691, 6.9769, 6.9758, 6.979, 6.9817, 6.9809, 6.977, 6.973, 6.9687, 6.9681, 6.9671, 6.9662, 6.9656, 6.9646, 6.9642, 6.9604, 6.9631, 6.9623, 6.9581, 6.9574, 6.9566, 6.9557, 6.9546, 6.9546, 6.954, 6.953, 6.9523, 6.9534, 6.9524, 6.9523, 6.9514, 6.9505, 6.9535, 6.9526, 6.9517, 6.9507, 6.9495, 6.9486, 6.9477, 6.9466, 6.9495, 6.9489, 6.9478, 6.9467, 6.9477, 6.9468, 6.9463, 6.949, 6.95, 6.9510000000000005, 6.95, 6.9502, 6.949, 6.948, 6.9474, 6.947, 6.9464, 6.9491, 6.948, 6.9469, 6.9462, 6.9459, 6.9419, 6.942, 6.9443, 6.9442, 6.9432, 6.9455, 6.9488, 6.9482, 6.9487, 6.9478, 6.9474, 6.9471, 6.9496, 6.9486, 6.948, 6.9473, 6.9463, 6.9453, 6.9443, 6.9435, 6.9428, 6.9427, 6.9421, 6.9457, 6.9447, 6.9446, 6.9436, 6.9425, 6.9418, 6.9408, 6.9399, 6.943, 6.9423, 6.9419, 6.941, 6.9407, 6.9432, 6.9442, 6.947, 6.9461, 6.9503, 6.9556, 6.9554, 6.9545, 6.9536, 6.956, 6.9622, 6.9717, 6.9712, 6.9702, 6.9692, 6.9691, 6.968, 6.9679, 6.967, 6.9696, 6.9692, 6.9695, 6.9689, 6.9683, 6.9711, 6.9702, 6.9696, 6.9688, 6.9685, 6.9677, 6.967, 6.9664, 6.9659, 6.965, 6.9648, 6.9643, 6.9684, 6.9728, 6.9756, 6.9746, 6.9706, 6.9696, 6.9688, 6.9714, 6.9705, 6.9695, 6.9795, 6.9805, 6.9815000000000005, 6.9805, 6.9798, 6.9788, 6.9789, 6.9782, 6.9773, 6.9763, 6.9753, 6.9753, 6.9746, 6.9739, 6.9729, 6.9739, 6.974900000000001, 6.974, 6.9731, 6.9721, 6.9712, 6.9702, 6.9728, 6.972, 6.9753, 6.9789, 6.9757, 6.976, 6.9771, 6.9831, 6.9832, 6.9865, 6.9857, 6.9879, 6.9907, 6.9898, 6.9897, 6.9907, 6.9932, 6.9965, 6.996, 6.9987, 6.9984, 7.001, 7.0004, 7.0013, 7.0043, 7.0036, 7.0027, 7.0026, 7.0036000000000005, 7.0062, 7.0059, 7.0051, 7.0052, 7.0049, 7.0045, 7.0037, 7.0044, 7.0072, 7.0068, 7.0072, 7.0069, 7.0061, 7.0064, 7.0089, 7.0081, 7.0072, 7.0065, 7.0059, 7.005, 7.0041, 7.004, 7.003, 7.0056, 7.002, 7.006, 7.0087, 7.0083, 7.0078, 7.0105, 7.0102, 7.0093, 7.0092, 7.0088, 7.0085, 7.0082, 7.0107, 7.0102, 7.0098, 7.0097, 7.0094, 7.0091, 7.0083, 7.0083, 7.0095, 7.0088, 7.0091, 7.0098, 7.0088, 7.0083, 7.0073, 7.0083, 7.0093000000000005, 7.0088, 7.0078, 7.0103, 7.0125, 7.015, 7.0144, 7.0154000000000005, 7.016400000000001, 7.0154, 7.018, 7.019, 7.0200000000000005, 7.0235, 7.0229, 7.0223, 7.0244, 7.0239, 7.0229, 7.0223, 7.0245, 7.0271, 7.0263, 7.0261, 7.0255, 7.025, 7.0242, 7.024, 7.0303, 7.0298, 7.0327, 7.0354, 7.0348, 7.0341, 7.0336, 7.0331, 7.0328, 7.0329, 7.0351, 7.0373, 7.0393, 7.0389, 7.0414, 7.0406, 7.0371, 7.0366, 7.0357, 7.0367, 7.0377, 7.037, 7.0362, 7.0359, 7.0352, 7.0347, 7.0339, 7.0332, 7.0296, 7.0289, 7.0308, 7.0311, 7.0308, 7.0298, 7.0295, 7.0286, 7.0281, 7.0275, 7.0269, 7.0262, 7.0288, 7.0287, 7.0278, 7.0288, 7.0281, 7.0276, 7.0297, 7.0319, 7.0309, 7.0301, 7.0352, 7.0317, 7.031, 7.0301, 7.0293, 7.0285, 7.0277, 7.028700000000001, 7.0345, 7.035500000000001, 7.0347, 7.0341, 7.0332, 7.0324, 7.0317, 7.0315, 7.0309, 7.03, 7.031000000000001, 7.0303, 7.0303, 7.0295, 7.0316, 7.0342, 7.0339, 7.0331, 7.0326, 7.0318, 7.0348, 7.0372, 7.0364, 7.0359, 7.0352, 7.0347, 7.037, 7.0361, 7.0361, 7.0353, 7.0348, 7.0411, 7.0411, 7.0405, 7.0426, 7.0421, 7.0412, 7.0407, 7.041, 7.0406, 7.0398, 7.0389, 7.038, 7.04, 7.039, 7.0382, 7.0402, 7.0395, 7.0388, 7.0413, 7.0406, 7.04, 7.042, 7.0416, 7.0412, 7.0431, 7.0452, 7.0447, 7.044, 7.045, 7.046, 7.0482, 7.0476, 7.0472, 7.0491, 7.0486, 7.0479, 7.0484, 7.0478, 7.0502, 7.0533, 7.0528, 7.0523, 7.0516, 7.054, 7.0539, 7.0531, 7.0554, 7.0576, 7.0569, 7.0562, 7.0554, 7.0607, 7.0603, 7.0598, 7.0601, 7.0599, 7.0592, 7.0588, 7.0579, 7.0571, 7.0564, 7.0557, 7.0558, 7.0553, 7.0575, 7.0567, 7.056, 7.0553, 7.0552, 7.0548, 7.0544, 7.0537, 7.0532, 7.0526, 7.0521, 7.0514, 7.0507, 7.0501, 7.0492, 7.0485, 7.0477, 7.047, 7.0465, 7.0458, 7.0456, 7.0448, 7.044, 7.045, 7.046, 7.0519, 7.0517, 7.0536, 7.0528, 7.0551, 7.0545, 7.0537, 7.0529, 7.0528, 7.0523, 7.0545, 7.0542, 7.0534, 7.0529, 7.053, 7.0529, 7.0522, 7.0518, 7.0515, 7.051, 7.0531, 7.0553, 7.0563, 7.057300000000001, 7.0569, 7.0562, 7.0554, 7.0552, 7.0546, 7.0569, 7.057, 7.0562, 7.0556, 7.0547, 7.0539, 7.0531, 7.0523, 7.0514, 7.0507, 7.0505, 7.05, 7.0495, 7.0488, 7.0483, 7.0484, 7.0487, 7.0563, 7.0565, 7.0562, 7.0581, 7.0583, 7.0574, 7.0576, 7.0573, 7.0572, 7.0594, 7.0613, 7.0609, 7.063, 7.0622, 7.0594, 7.0564, 7.0559, 7.0553, 7.0572, 7.0593, 7.059, 7.0586, 7.0584, 7.0579, 7.0575, 7.0566, 7.0564, 7.0563, 7.0564, 7.0557, 7.055, 7.0545, 7.0565, 7.0585, 7.0583, 7.058, 7.0575, 7.0572, 7.0564, 7.056, 7.0552, 7.0552, 7.0571, 7.0566, 7.0559, 7.0554, 7.0548, 7.0548, 7.0545, 7.0538, 7.0582, 7.0716, 7.0711, 7.0703, 7.0697, 7.0702, 7.0697, 7.069, 7.0687, 7.0679, 7.068, 7.0676, 7.0695, 7.069, 7.0684, 7.0677, 7.0677, 7.067, 7.0645, 7.0643, 7.0636, 7.0629, 7.0622, 7.0645, 7.0667, 7.0662, 7.068, 7.0677, 7.0669, 7.0661, 7.0656, 7.0654, 7.0692, 7.070200000000001, 7.071200000000001, 7.0708, 7.0705, 7.0701, 7.0721, 7.0713, 7.0705, 7.0703, 7.0695, 7.0741, 7.0737, 7.0759, 7.0781, 7.0781, 7.0801, 7.0818, 7.0838, 7.083, 7.0827, 7.0823, 7.0818, 7.0837, 7.0829, 7.0821, 7.0841, 7.0862, 7.0881, 7.0874, 7.0844, 7.0836, 7.0831, 7.0841, 7.085100000000001, 7.0848, 7.0842, 7.0845, 7.0838, 7.0857, 7.0856, 7.0851, 7.0843, 7.0838, 7.0829, 7.0824, 7.0821, 7.0813, 7.0806, 7.0798, 7.0791, 7.0808, 7.0801, 7.0792, 7.0785, 7.0777, 7.0771, 7.0763, 7.0756, 7.0778, 7.0775, 7.0768, 7.076, 7.0756, 7.0748, 7.0741, 7.0733, 7.0724, 7.0716, 7.0711, 7.0712, 7.0704, 7.0723, 7.0716, 7.0718, 7.071, 7.0728, 7.0758, 7.075, 7.0742, 7.0739, 7.0732, 7.075, 7.0742, 7.0712, 7.0705, 7.0723, 7.0753, 7.0745, 7.0743, 7.0742, 7.0733, 7.0727, 7.0727, 7.0697, 7.0672, 7.0668, 7.0664, 7.0786, 7.078, 7.0858, 7.0865, 7.0865, 7.087, 7.0864, 7.0858, 7.0855, 7.0852, 7.0846, 7.0843, 7.0838, 7.0808, 7.0801, 7.0823, 7.0819, 7.0813, 7.0808, 7.0827, 7.0824, 7.0818, 7.0816, 7.0813, 7.0808, 7.0805, 7.0823, 7.0822, 7.0816, 7.0814, 7.081, 7.0829, 7.0825, 7.0818, 7.0811, 7.0804, 7.0803, 7.0821, 7.082, 7.0791, 7.0784, 7.0802, 7.0797, 7.0796, 7.0794, 7.079, 7.0784, 7.0778, 7.0774, 7.0771, 7.0772, 7.0764, 7.0757, 7.0755, 7.0751, 7.0752, 7.0746, 7.0765, 7.0762, 7.0779, 7.0772, 7.0764, 7.0782, 7.0774, 7.0768, 7.0785, 7.0778, 7.0771, 7.077, 7.0764, 7.0782, 7.0778, 7.0771, 7.0768, 7.0785, 7.0777, 7.077, 7.0762, 7.0772, 7.0766, 7.076, 7.0761, 7.0758, 7.0777, 7.0772, 7.0767, 7.0765, 7.076, 7.0762, 7.0782, 7.0802, 7.0798, 7.0795, 7.0791, 7.0808, 7.0805, 7.08, 7.0793, 7.0789, 7.0783, 7.0777, 7.0795, 7.0789, 7.0784, 7.0777, 7.0773, 7.0766, 7.0765, 7.0763, 7.076, 7.0754, 7.0747, 7.0757, 7.0755, 7.0749, 7.0745, 7.0738, 7.0736, 7.0731, 7.073, 7.0749, 7.0743, 7.0761, 7.0754, 7.073, 7.0726, 7.0719, 7.0713, 7.0706, 7.0701, 7.0694, 7.069, 7.0687, 7.0704, 7.0697, 7.069, 7.0708, 7.0725, 7.0764, 7.0781, 7.0774, 7.0767, 7.0762, 7.0756, 7.0748, 7.0741, 7.0758, 7.0756, 7.075, 7.0722, 7.0719, 7.0713, 7.0707, 7.07, 7.0717, 7.0711, 7.0706, 7.0723, 7.07, 7.0677, 7.0669, 7.0665, 7.067, 7.0667, 7.0686, 7.0696, 7.0689, 7.0684, 7.0677, 7.067, 7.0663, 7.0655, 7.0651, 7.0646, 7.0643, 7.0639, 7.0632, 7.0626, 7.0644, 7.0637, 7.0641, 7.0633, 7.0631, 7.0649, 7.0642, 7.0635, 7.0631, 7.0649, 7.0659, 7.0669, 7.0662, 7.0655, 7.0649, 7.0645, 7.0618, 7.059, 7.0583, 7.0576, 7.0586, 7.0596000000000005, 7.0591, 7.0586, 7.0579, 7.0596, 7.0592, 7.0608, 7.0601, 7.0596, 7.059, 7.0582, 7.0574, 7.058400000000001, 7.059400000000001, 7.0587, 7.056, 7.0581, 7.0577, 7.0587, 7.0605, 7.0597, 7.059, 7.0607, 7.0651, 7.065, 7.065, 7.065, 7.0645, 7.0638, 7.0655, 7.0656, 7.0653, 7.0652, 7.0671, 7.0669, 7.0684, 7.0702, 7.072, 7.0717, 7.071, 7.0703, 7.0698, 7.0693, 7.069, 7.0704, 7.0721, 7.0695, 7.0688, 7.0704, 7.0701, 7.0695, 7.0691, 7.0684, 7.0676, 7.0669, 7.0666, 7.0665, 7.0665, 7.0661, 7.0654, 7.0653, 7.0646, 7.0645, 7.0642, 7.064, 7.0668, 7.0672, 7.0688, 7.066, 7.0678, 7.0676, 7.0669, 7.0668, 7.0668, 7.067, 7.0664, 7.0656, 7.0675, 7.0671, 7.0668, 7.0663, 7.0678, 7.0674, 7.0668, 7.0661, 7.0657, 7.0674, 7.0671, 7.0667, 7.0665, 7.0659, 7.0655, 7.0653, 7.065, 7.0646, 7.062, 7.0616, 7.0622, 7.0621, 7.0599, 7.0594, 7.0588, 7.0565, 7.0575, 7.0551, 7.0546, 7.0539, 7.0549, 7.0544, 7.0541, 7.0537, 7.0533, 7.0527, 7.052, 7.0516, 7.0512, 7.0508, 7.0501, 7.0499, 7.0514, 7.051, 7.0507, 7.0502, 7.0495, 7.0512, 7.0508, 7.0523, 7.052, 7.0513, 7.0508, 7.0505, 7.051500000000001, 7.0508, 7.0505, 7.0521, 7.0514, 7.0533, 7.0531, 7.0526, 7.0524, 7.0522, 7.0516, 7.0511, 7.051, 7.0503, 7.0505, 7.0498, 7.0515, 7.0509, 7.0509, 7.0485, 7.046, 7.0453, 7.0473, 7.0471, 7.0469, 7.0467, 7.0482, 7.0478, 7.0475, 7.0488, 7.0482, 7.0476, 7.0476, 7.0469, 7.0444, 7.044, 7.0455, 7.0462, 7.0457, 7.0453, 7.0447, 7.0422, 7.0417, 7.0412, 7.0406, 7.0406, 7.0401, 7.0398, 7.0415, 7.0425, 7.0421, 7.0438, 7.0431, 7.0424, 7.0419, 7.0435, 7.045, 7.045, 7.0448, 7.0443, 7.044, 7.0438, 7.0432, 7.0426, 7.0419, 7.0417, 7.0434, 7.041, 7.0405, 7.0402, 7.0428, 7.0428, 7.0465, 7.0461, 7.0496, 7.05, 7.05, 7.0479, 7.0494, 7.049, 7.0486, 7.048, 7.0474, 7.0471, 7.0465, 7.0463, 7.0456, 7.0456, 7.0449, 7.0442, 7.0457, 7.0454, 7.0448, 7.0466, 7.0461, 7.0454, 7.047, 7.0486, 7.0479, 7.0484, 7.0504, 7.0498, 7.0493, 7.0508, 7.0501, 7.0496, 7.0493, 7.0486, 7.05, 7.0496, 7.0512, 7.0527, 7.052, 7.0515, 7.0491, 7.0484, 7.0479, 7.048, 7.0498, 7.0492, 7.0487, 7.0482, 7.0476, 7.0474, 7.0468, 7.0483, 7.0499, 7.0494, 7.0472, 7.047, 7.0465, 7.0459, 7.0452, 7.0446, 7.044, 7.0434, 7.0431, 7.0429, 7.0446, 7.0443, 7.0422, 7.0418, 7.0412, 7.0409, 7.0404, 7.0421, 7.0415, 7.041, 7.0404, 7.044, 7.0457, 7.0452, 7.0446, 7.0461, 7.0437, 7.0431, 7.0424, 7.0439, 7.0433, 7.0427, 7.0421, 7.0452, 7.0448, 7.0442, 7.0459, 7.0453, 7.0449, 7.0445, 7.0441, 7.0437, 7.043, 7.0424, 7.0418, 7.0397, 7.0392, 7.0386, 7.0399, 7.0393, 7.0387, 7.0381, 7.0385, 7.0402, 7.0398, 7.0394, 7.0411, 7.0404, 7.0398, 7.0412, 7.0408, 7.0423, 7.0416, 7.041, 7.0404, 7.0397, 7.0391, 7.0367, 7.0363, 7.0379, 7.0463, 7.0477, 7.0471, 7.0488, 7.0464, 7.0457, 7.0454, 7.0485, 7.0483, 7.0479, 7.0475, 7.0455, 7.045, 7.0445, 7.0439, 7.0434, 7.0428, 7.0424, 7.042, 7.0436, 7.0432, 7.0429, 7.0426, 7.0425, 7.0421, 7.0419, 7.0414, 7.041, 7.0407, 7.0408, 7.0406, 7.0402, 7.0396, 7.0393, 7.0388, 7.0382, 7.0378, 7.0376, 7.0371, 7.0367, 7.0364, 7.0361, 7.0358, 7.0449, 7.0443, 7.046, 7.0456, 7.0457, 7.0433, 7.0412, 7.0408, 7.0406, 7.0401, 7.0418, 7.0434, 7.0432, 7.0427, 7.0422, 7.0426, 7.044, 7.0437, 7.0434, 7.0428, 7.0424, 7.0426, 7.0423, 7.0418, 7.0412, 7.0418, 7.0431, 7.0427, 7.0424, 7.0417, 7.0412, 7.0429, 7.0423, 7.0421, 7.0418, 7.0437, 7.0433, 7.0429, 7.0427, 7.0424, 7.0419, 7.0433, 7.0432, 7.0447, 7.0446, 7.0443, 7.0438, 7.0437, 7.045, 7.0445, 7.0459, 7.0475, 7.0469, 7.0486, 7.0487, 7.0484, 7.0478, 7.0474, 7.047, 7.0465, 7.0464, 7.048, 7.0479, 7.051, 7.0507, 7.0502, 7.0504, 7.0499, 7.0586, 7.0581, 7.0595, 7.0589, 7.0584, 7.0582, 7.0578, 7.0573, 7.0569, 7.0567, 7.0584, 7.0583, 7.0577, 7.0573, 7.0568, 7.0563, 7.0566, 7.0562, 7.0561, 7.0556, 7.0555, 7.0552, 7.0549, 7.0547, 7.0541, 7.0537, 7.0535, 7.0549, 7.0544, 7.0546, 7.0542, 7.0537, 7.0514, 7.0509, 7.0505, 7.0519, 7.0515, 7.0528, 7.0522, 7.0517, 7.0514, 7.0511, 7.0513, 7.0508, 7.0523, 7.0517, 7.0529, 7.0523, 7.0518, 7.0513, 7.0507, 7.054, 7.0537, 7.0534, 7.0529, 7.0542, 7.0539, 7.0535, 7.0513, 7.0492, 7.0486, 7.0481, 7.0493, 7.0503, 7.0513, 7.0508, 7.0508, 7.0506, 7.0502, 7.0498, 7.0495, 7.0493, 7.0488, 7.0501, 7.05, 7.0496, 7.0493, 7.049, 7.0489, 7.0487, 7.0483, 7.0477, 7.0492, 7.0505, 7.0499, 7.0497, 7.0494, 7.0507, 7.0504, 7.05, 7.0494, 7.050400000000001, 7.0516, 7.0514, 7.0508, 7.0521, 7.0518, 7.0513, 7.0511, 7.0506, 7.0502, 7.056, 7.0558, 7.0556, 7.055, 7.0544, 7.054, 7.0538, 7.0532, 7.0526, 7.0522, 7.0517, 7.0516, 7.0511, 7.0506, 7.0485, 7.0481, 7.0477, 7.0509, 7.0505, 7.0538, 7.0537, 7.0552, 7.0551, 7.0547, 7.055700000000001, 7.056700000000001, 7.057700000000001, 7.0595, 7.0591, 7.0593, 7.0592, 7.0589, 7.0585, 7.058, 7.0574, 7.057, 7.0567, 7.0562, 7.0558, 7.0564, 7.0563, 7.0559, 7.0557, 7.0553, 7.055, 7.0545, 7.054, 7.0555, 7.0588, 7.0584, 7.0609, 7.0603, 7.06, 7.0594, 7.0588, 7.0602, 7.0602, 7.06, 7.0595, 7.059, 7.0603, 7.06, 7.0594, 7.0591, 7.059, 7.0584, 7.0579, 7.0576, 7.0555, 7.0568, 7.0563, 7.056, 7.0574, 7.0571, 7.0567, 7.0562, 7.0557, 7.0557, 7.0535, 7.0531, 7.0528, 7.0526, 7.0524, 7.0534, 7.0529, 7.0539000000000005, 7.057, 7.0564, 7.056, 7.0554, 7.055, 7.0559, 7.0557, 7.0556, 7.0569, 7.057, 7.0564, 7.0567, 7.0548, 7.0562, 7.0575, 7.0575, 7.0572, 7.0573, 7.058, 7.0576, 7.057, 7.0565, 7.0562, 7.0557, 7.0552, 7.0566, 7.0563, 7.0559, 7.0557, 7.0552, 7.0566, 7.0549, 7.0528, 7.0524, 7.0569, 7.0567, 7.0579, 7.0573, 7.0568, 7.0564, 7.0566, 7.0568, 7.059, 7.0587, 7.0581, 7.0577, 7.0575, 7.0571, 7.0568, 7.0565, 7.0575, 7.0585, 7.058, 7.0576, 7.0574, 7.0575, 7.059, 7.0586, 7.0582, 7.0578, 7.0573, 7.0568, 7.0604, 7.06, 7.0599, 7.0594, 7.0591, 7.061, 7.0606, 7.0602, 7.0601, 7.0599, 7.0598, 7.0592, 7.0588, 7.0585, 7.0598, 7.0594, 7.059, 7.0585, 7.0564, 7.0578, 7.0573, 7.0587, 7.0583, 7.0577, 7.0571, 7.0567, 7.0582, 7.0577, 7.0576, 7.0573, 7.057, 7.0552, 7.0566, 7.0567, 7.0562, 7.0558, 7.0553, 7.0548, 7.0545, 7.0541, 7.0537, 7.0535, 7.0535, 7.0557, 7.0554, 7.0553, 7.0548, 7.0543, 7.0522, 7.0535, 7.0547, 7.0543, 7.0538, 7.0551, 7.0565, 7.0564, 7.0563, 7.0576, 7.0587, 7.0567, 7.0565, 7.0561, 7.0556, 7.055, 7.0546, 7.0558, 7.0588, 7.0601, 7.0597, 7.0593, 7.0589, 7.0601, 7.0595, 7.0608, 7.0621, 7.0617, 7.0629, 7.0626, 7.064, 7.0652, 7.0646, 7.0659, 7.0671, 7.0665, 7.0661, 7.0674, 7.0672, 7.0666, 7.066, 7.064, 7.0635, 7.0632, 7.063, 7.0641, 7.0636, 7.0636, 7.0635, 7.0633, 7.0627, 7.0642, 7.0638, 7.0633, 7.0628, 7.064, 7.0653, 7.0648, 7.0644, 7.064, 7.0641, 7.0646, 7.0642, 7.0637, 7.0638, 7.0633, 7.0631, 7.0642, 7.0639, 7.0634, 7.063, 7.0625, 7.062, 7.0633, 7.0634, 7.0629, 7.0625, 7.0622, 7.0617, 7.0611, 7.0606, 7.0602, 7.0652, 7.0647, 7.0642, 7.0637, 7.0634, 7.0632, 7.0629, 7.0642, 7.0636, 7.0631, 7.0642, 7.0638, 7.0634, 7.0662, 7.0659, 7.0661, 7.0657, 7.067, 7.0667, 7.0666, 7.068, 7.0692, 7.0687, 7.0686, 7.0682, 7.0697, 7.0696, 7.0708, 7.0722, 7.0716, 7.0712, 7.0708, 7.0703, 7.0697, 7.0695, 7.0695, 7.0694, 7.0688, 7.0683, 7.0678, 7.069, 7.0687, 7.0683, 7.068, 7.0692, 7.069, 7.0686, 7.0699, 7.0711, 7.0723, 7.0719, 7.0715, 7.071, 7.0705, 7.07, 7.0695, 7.0707, 7.0704, 7.0699, 7.0694, 7.0705, 7.0702, 7.0696, 7.0691, 7.0705, 7.0702, 7.0682, 7.0678, 7.0675, 7.0673, 7.0668, 7.0667, 7.0662, 7.0657, 7.0652, 7.0648, 7.0644, 7.0639, 7.0637, 7.0634, 7.0629, 7.0642, 7.0637, 7.0649, 7.0644, 7.0657, 7.0655, 7.0667, 7.0665, 7.0678, 7.0673, 7.067, 7.0665, 7.0662, 7.0658, 7.0653, 7.0665, 7.066, 7.0675, 7.0671, 7.0672, 7.0677, 7.0672, 7.0684, 7.0679, 7.0677, 7.0672, 7.0667, 7.0663, 7.066, 7.0658, 7.0653, 7.0634, 7.0629, 7.0641, 7.0653, 7.0677, 7.0688, 7.0683, 7.0677, 7.0675, 7.0679, 7.0678, 7.0677, 7.0675, 7.0674, 7.0674, 7.0669, 7.0666, 7.0693, 7.0703000000000005, 7.0717, 7.0718, 7.0713, 7.0711, 7.0708, 7.0719, 7.0713, 7.0708, 7.0704, 7.0707, 7.0703, 7.0713, 7.0762, 7.0774, 7.0774, 7.0775, 7.0776, 7.0771, 7.0769, 7.0786, 7.0783, 7.0797, 7.0793, 7.0788, 7.0785, 7.0785, 7.0769, 7.0828, 7.0859, 7.0856, 7.087, 7.0868, 7.0867, 7.0861, 7.086, 7.0857, 7.087, 7.0867, 7.0867, 7.0882, 7.0881, 7.0878, 7.0874, 7.087, 7.0866, 7.0863, 7.0858, 7.087, 7.0867, 7.0865, 7.0876, 7.0873, 7.0868, 7.0865, 7.0866, 7.0879, 7.0875, 7.0873, 7.0868, 7.0868, 7.0864, 7.086, 7.0857, 7.0856, 7.0854, 7.0851, 7.0849, 7.0844, 7.0843, 7.0841, 7.084, 7.0835, 7.0831, 7.0828, 7.0825, 7.0825, 7.0822, 7.0818, 7.082, 7.0836, 7.0832, 7.083, 7.0828, 7.0841, 7.0839, 7.0837, 7.0833, 7.083, 7.0842, 7.0839, 7.085, 7.0861, 7.0857, 7.0852, 7.085, 7.0846, 7.0842, 7.0838, 7.0835, 7.0833, 7.0846, 7.0841, 7.0837, 7.0832, 7.0827, 7.0824, 7.0806, 7.0802, 7.08, 7.0812, 7.0812, 7.0808, 7.0821, 7.0817, 7.0813, 7.0795, 7.0794, 7.0792, 7.0789, 7.0799, 7.0795, 7.079, 7.0787, 7.0784, 7.0779, 7.0778, 7.0774, 7.0773, 7.077, 7.0751, 7.0791, 7.0786, 7.0786, 7.0784, 7.0767, 7.0762, 7.0757, 7.0753, 7.0766, 7.0764, 7.0762, 7.0746, 7.0741, 7.074, 7.075, 7.0826, 7.0823, 7.0818, 7.0814, 7.081, 7.0805, 7.0816, 7.0811, 7.0806, 7.0803, 7.0799, 7.0794, 7.0791, 7.0786, 7.0782, 7.0778, 7.0773, 7.0769, 7.078, 7.079, 7.0789, 7.08, 7.081, 7.082000000000001, 7.082, 7.082, 7.0816, 7.0829, 7.0826, 7.0821, 7.0832, 7.0845, 7.0841, 7.0836, 7.0831, 7.0827, 7.081, 7.0806, 7.0819, 7.0816, 7.0829, 7.0825, 7.0826, 7.0841, 7.0838, 7.0835, 7.0835, 7.0846, 7.0844, 7.0841, 7.0823, 7.0806, 7.0818, 7.0815, 7.0826, 7.0825, 7.0822, 7.0819, 7.0816, 7.0815, 7.0815, 7.0814, 7.0813, 7.081, 7.082000000000001, 7.0815, 7.0799, 7.0809, 7.0805, 7.0816, 7.0811, 7.0808, 7.0808, 7.0803, 7.0787, 7.0799, 7.081, 7.0806, 7.0805, 7.0817, 7.0815, 7.0811, 7.0807, 7.0806, 7.0803, 7.0787, 7.0799, 7.0797, 7.0809, 7.0805, 7.0802, 7.0814, 7.0818, 7.0816, 7.0813, 7.0809, 7.0806, 7.0802, 7.0798, 7.0794, 7.0791, 7.0786, 7.0782, 7.0792, 7.0788, 7.0802, 7.0815, 7.0811, 7.0793, 7.0788, 7.0817, 7.0816, 7.0816, 7.0816, 7.0815, 7.0825, 7.0821, 7.0818, 7.0819, 7.0815, 7.0815, 7.0812, 7.0812, 7.0807, 7.0804, 7.0816, 7.0811, 7.0825, 7.0821, 7.0833, 7.0831, 7.0826, 7.0821, 7.0817, 7.0813, 7.0809, 7.0806, 7.0802, 7.0798, 7.0797, 7.0799, 7.0799, 7.0796, 7.0794, 7.079, 7.0785, 7.0797, 7.0794, 7.079, 7.0785, 7.0784, 7.0769, 7.0767, 7.0766, 7.0768, 7.0764, 7.0759, 7.0768, 7.0751, 7.0747, 7.0746, 7.0728, 7.0712, 7.0708, 7.0705, 7.0702, 7.0698, 7.0693, 7.0693, 7.069, 7.07, 7.0698, 7.0708, 7.0751, 7.0746, 7.0745, 7.074, 7.0737, 7.0734, 7.0745, 7.0742, 7.0728, 7.0726, 7.0723, 7.0719, 7.0714, 7.071, 7.0707, 7.0705, 7.0703, 7.0714, 7.0712, 7.0708, 7.0705, 7.0702, 7.07, 7.0696, 7.0681, 7.0678, 7.0674, 7.0675, 7.067, 7.0659, 7.0663, 7.0703, 7.07, 7.0712, 7.0711, 7.0708, 7.0707, 7.0717, 7.0713, 7.071, 7.0725, 7.0723, 7.0719, 7.0717, 7.0714, 7.0709, 7.0705, 7.07, 7.0698, 7.0696, 7.0693, 7.0703, 7.0699, 7.0696, 7.0693, 7.0689, 7.0685, 7.0681, 7.0691, 7.0688, 7.0701, 7.0712, 7.0708, 7.0707, 7.0709, 7.0706, 7.0716, 7.0712, 7.0711, 7.0724, 7.0734, 7.0745, 7.0841, 7.0851, 7.0848, 7.0845, 7.0842, 7.0837, 7.0838, 7.0834, 7.0831, 7.0828, 7.0839, 7.0836, 7.0832, 7.0843, 7.084, 7.0835, 7.083, 7.0829, 7.083900000000001, 7.084900000000001, 7.0845, 7.0844, 7.084, 7.0837, 7.0834, 7.0834, 7.0829, 7.0827, 7.081, 7.0819, 7.0802, 7.0799, 7.081, 7.0807, 7.0791, 7.0787, 7.0782, 7.0778, 7.0789, 7.0799, 7.0795, 7.0791, 7.0775, 7.0771, 7.078, 7.0764, 7.076, 7.0759, 7.0769, 7.0778, 7.0775, 7.0773, 7.0772, 7.0771, 7.0783, 7.0781, 7.078, 7.0778, 7.0777, 7.0775, 7.0774, 7.0771, 7.0766, 7.0762, 7.0759, 7.0755, 7.0756, 7.0757, 7.0756, 7.0752, 7.0751, 7.0762, 7.0774, 7.0771, 7.0769, 7.0766, 7.0765, 7.0763, 7.0758, 7.0753, 7.0751, 7.0761, 7.0763, 7.076, 7.0757, 7.0767, 7.0765, 7.0765, 7.0762, 7.0758, 7.0755, 7.0832, 7.0828, 7.0824, 7.0833, 7.0832, 7.0842, 7.0837, 7.0847, 7.0859, 7.0869, 7.0866, 7.0862, 7.0861, 7.0858, 7.0869, 7.0867, 7.0877, 7.089, 7.09, 7.0899, 7.0909, 7.0919, 7.0915, 7.0911, 7.0907, 7.0904, 7.0901, 7.0901, 7.0896, 7.0879, 7.089, 7.0887, 7.0871, 7.0855, 7.0851, 7.0847, 7.0843, 7.0853, 7.0849, 7.0847, 7.0846, 7.0856, 7.0855, 7.0853, 7.0839, 7.0836, 7.0874, 7.0884, 7.0882, 7.0879, 7.0889, 7.0889, 7.0885, 7.0884, 7.0881, 7.0892, 7.089, 7.0887, 7.0896, 7.0892, 7.0902, 7.0898, 7.0897, 7.0895, 7.0894, 7.0904, 7.09, 7.0896, 7.0892, 7.0876, 7.0859, 7.087, 7.0881, 7.0878, 7.0875, 7.0885, 7.0881, 7.0876, 7.0873, 7.0869, 7.087, 7.0867, 7.0877, 7.0875, 7.0871, 7.0868, 7.0867, 7.0876, 7.0872, 7.0902, 7.0897, 7.0893, 7.089, 7.0886, 7.0882, 7.0878, 7.0874, 7.0871, 7.0867, 7.0877, 7.0876, 7.0873, 7.0871, 7.0867, 7.0864, 7.086, 7.0871, 7.0868, 7.0863, 7.0885, 7.0885, 7.0882, 7.0881, 7.0877, 7.0875, 7.0871, 7.0867, 7.0865, 7.0875, 7.0874, 7.0859, 7.0855, 7.0876, 7.0874, 7.0872, 7.0868, 7.0851, 7.0848, 7.0845, 7.0855, 7.0855, 7.0865, 7.0875, 7.0882, 7.0879, 7.0875, 7.0873, 7.0872, 7.0871, 7.0867, 7.0863, 7.086, 7.0848, 7.0858, 7.0867, 7.0865, 7.0849, 7.0859, 7.0845, 7.0841, 7.0825, 7.0824, 7.0821, 7.0818, 7.0829, 7.0832, 7.0853, 7.0872, 7.0868, 7.0865, 7.0849, 7.0832, 7.0826, 7.085, 7.0862, 7.086, 7.0857, 7.0867, 7.0851, 7.0848, 7.0844, 7.0841, 7.0852, 7.0848, 7.0858, 7.0869, 7.088, 7.0876, 7.0872, 7.087, 7.0867, 7.0877, 7.0873, 7.0874, 7.0871, 7.088, 7.0878, 7.0887, 7.087, 7.0894, 7.089, 7.0888, 7.0884, 7.0882, 7.0893, 7.089, 7.0886, 7.0884, 7.088, 7.0876, 7.0873, 7.087, 7.0867, 7.0863, 7.0859, 7.0868, 7.0854, 7.0853, 7.0851, 7.0849, 7.0845, 7.0842, 7.0838, 7.0834, 7.0833, 7.0856, 7.0854, 7.0853, 7.0865, 7.086, 7.0857, 7.0868, 7.0865, 7.0876, 7.0873, 7.0857, 7.0868, 7.0865, 7.0874, 7.0885, 7.0896, 7.0911, 7.0907, 7.0891, 7.0887, 7.0884, 7.0882, 7.0877, 7.0875, 7.0876, 7.0877, 7.0875, 7.0861, 7.0858, 7.0856, 7.0852, 7.0848, 7.0846, 7.0832, 7.0832, 7.0828, 7.0824, 7.082, 7.0817, 7.0827, 7.0823, 7.082, 7.083, 7.0826, 7.0823, 7.0818, 7.0816, 7.0826, 7.0811, 7.0795, 7.0794, 7.0792, 7.079, 7.0799, 7.0796, 7.0805, 7.0801, 7.0798, 7.0795, 7.0795, 7.0793, 7.079, 7.0786, 7.0774, 7.0784, 7.0794, 7.079, 7.08, 7.0798, 7.0794, 7.079, 7.0788, 7.0784, 7.078, 7.0777, 7.0775, 7.0784, 7.0793, 7.0791, 7.0788, 7.0784, 7.0781, 7.0782, 7.0779, 7.0775, 7.0771, 7.0768, 7.0752, 7.075, 7.0746, 7.0742, 7.0738, 7.0723, 7.0719, 7.0715, 7.0713, 7.0712, 7.0709, 7.0707, 7.0692, 7.0689, 7.0686, 7.0685, 7.0682, 7.0679, 7.0675, 7.0676, 7.0662, 7.0671, 7.068, 7.0678, 7.068, 7.0676, 7.0672, 7.0669, 7.0654, 7.0651, 7.0647, 7.0632, 7.0629, 7.0627, 7.0627, 7.0637, 7.0647, 7.0643, 7.0639, 7.0647, 7.0644, 7.0641, 7.0637, 7.0635, 7.0632, 7.0628, 7.0625, 7.0634, 7.0631, 7.0629, 7.0626, 7.0634, 7.0643, 7.0653, 7.0649, 7.0633, 7.0631, 7.0628, 7.0624, 7.0633, 7.063, 7.0629, 7.0629, 7.0625, 7.0622, 7.0621, 7.0617, 7.0613, 7.0623, 7.0632, 7.0629, 7.0639, 7.0635, 7.0639, 7.0635, 7.0632, 7.0617, 7.0626, 7.0623, 7.062, 7.0634, 7.0621, 7.0607, 7.0603, 7.0599, 7.0608, 7.0607, 7.0605, 7.0601, 7.0611, 7.0609, 7.0609, 7.0605, 7.0614, 7.0623, 7.0619, 7.0618, 7.0615, 7.0611, 7.0621, 7.0623, 7.0619, 7.0616, 7.0612, 7.0608, 7.0607, 7.0604, 7.0643, 7.0652, 7.0649, 7.0658, 7.0667, 7.0677, 7.0673, 7.0669, 7.0666, 7.0665, 7.0664, 7.0674, 7.0683, 7.068, 7.0677, 7.0675, 7.0671, 7.0667, 7.0663, 7.0659, 7.0655, 7.0652, 7.0661, 7.0657, 7.0684, 7.0682, 7.0697, 7.0694, 7.069, 7.0686, 7.0685, 7.0682, 7.0706, 7.071, 7.0708, 7.0706, 7.0702, 7.0699, 7.0709, 7.0724, 7.072, 7.0721, 7.0718, 7.0715, 7.0712, 7.071, 7.0707, 7.0717, 7.0714, 7.071, 7.0694, 7.0692, 7.0701, 7.0686, 7.0683, 7.068, 7.0677, 7.0698, 7.0695, 7.0693, 7.0692, 7.0689, 7.0685, 7.0681, 7.0678, 7.0674, 7.0672, 7.0668, 7.0664, 7.0662, 7.0658, 7.0655, 7.0652, 7.0661, 7.0671, 7.0656, 7.0652, 7.0648, 7.0675, 7.0672, 7.0669, 7.0665, 7.0661, 7.0657, 7.0657, 7.0654, 7.0663, 7.0672, 7.0682, 7.0667, 7.0676, 7.0672, 7.0682, 7.0681, 7.0678, 7.0679, 7.0677, 7.0687, 7.0684, 7.0681, 7.0679, 7.0675, 7.0674, 7.0671, 7.0669, 7.0665, 7.0676, 7.0687, 7.0695, 7.0692, 7.0688, 7.0684, 7.0681, 7.0677, 7.0673, 7.0671, 7.0668, 7.0664, 7.066, 7.067, 7.0669, 7.0666, 7.0667, 7.0666, 7.0663, 7.066, 7.0658, 7.0657, 7.0644, 7.0642, 7.0641, 7.0638, 7.0634, 7.063, 7.0627, 7.0624, 7.062, 7.0616, 7.0612, 7.061, 7.0606, 7.0603, 7.06, 7.0597, 7.0597, 7.0594, 7.059, 7.0599, 7.0608, 7.0605, 7.0601, 7.061100000000001, 7.0609, 7.0609, 7.0618, 7.0617, 7.0627, 7.0623, 7.062, 7.0617, 7.0603, 7.06, 7.0597, 7.0606, 7.0603, 7.0613, 7.0615, 7.0613, 7.061, 7.0609, 7.0618, 7.0614, 7.0613, 7.0609, 7.0607, 7.0603, 7.0601, 7.0598, 7.0594, 7.0604, 7.0605, 7.0615, 7.0611, 7.0621, 7.0619, 7.0607, 7.0605, 7.0602, 7.0599, 7.0599, 7.0629, 7.0617, 7.0613, 7.0612, 7.0621, 7.0629, 7.0616, 7.0615, 7.0614, 7.0611, 7.0608, 7.0607, 7.0616, 7.0613, 7.0612, 7.0638, 7.0635, 7.0631, 7.0647, 7.0644, 7.0643, 7.0642, 7.064, 7.0649, 7.0647, 7.0645, 7.0643, 7.0641, 7.0638, 7.0636, 7.0633, 7.063, 7.0628, 7.0638, 7.0637, 7.0636, 7.0633, 7.0643, 7.064, 7.065, 7.0647, 7.0671, 7.0669, 7.0681, 7.0678, 7.0676, 7.0674, 7.0671, 7.0671, 7.0671, 7.0669, 7.0665, 7.0661, 7.0647, 7.0646, 7.0644, 7.0642, 7.0639, 7.0637, 7.0634, 7.0633, 7.0634, 7.063, 7.0626, 7.0626, 7.0624, 7.0623, 7.0633, 7.063, 7.0627, 7.0629, 7.0648, 7.0662, 7.0659, 7.0658, 7.0655, 7.0656, 7.0677, 7.0673, 7.067, 7.0656, 7.0654, 7.065, 7.066000000000001, 7.067, 7.0666, 7.0663, 7.0659, 7.0656, 7.0652, 7.065, 7.065, 7.0649, 7.0649, 7.0648, 7.0645, 7.0641, 7.065, 7.0647, 7.0656, 7.0652, 7.0661, 7.0657, 7.0664, 7.0663, 7.0651, 7.0638, 7.0636, 7.0633, 7.0621, 7.0609, 7.0607, 7.0595, 7.0591, 7.0589, 7.0585, 7.0613, 7.0611, 7.061, 7.0608, 7.0605, 7.0606, 7.0603, 7.06, 7.0599, 7.0608, 7.0594, 7.0581, 7.0567, 7.0578, 7.0618, 7.062, 7.0616, 7.0614, 7.0611, 7.0608, 7.0606, 7.0602, 7.0599, 7.0588, 7.0597, 7.0608, 7.0609, 7.0607, 7.0603, 7.0599, 7.0595, 7.0592, 7.06, 7.06, 7.0596, 7.0593, 7.0591, 7.059, 7.0609, 7.0606, 7.0604, 7.06, 7.06, 7.0611, 7.0621, 7.0621, 7.0619, 7.0616, 7.0614, 7.0602, 7.0602, 7.06, 7.0596, 7.0582, 7.0578, 7.0577, 7.0574, 7.0572, 7.0581, 7.0577, 7.0586, 7.0598, 7.0599, 7.0606, 7.0616, 7.0624, 7.0621, 7.0617, 7.0628, 7.0626, 7.0636, 7.0635, 7.0646, 7.0645, 7.0632, 7.0631, 7.0628, 7.0629, 7.064, 7.0648, 7.0645, 7.0642, 7.0651, 7.0661, 7.0662, 7.065, 7.0646, 7.0644, 7.0649, 7.0636, 7.0634, 7.0644, 7.0643, 7.0639, 7.0625, 7.0623, 7.0621, 7.0608, 7.0605, 7.0603, 7.0601, 7.0598, 7.0595, 7.0603, 7.0599, 7.0599, 7.0599, 7.0595, 7.0593, 7.059, 7.0588, 7.0576, 7.0574, 7.0572, 7.0581, 7.0579, 7.0576, 7.0572, 7.0582, 7.0581, 7.058, 7.0578, 7.0575, 7.0571, 7.0567, 7.0563, 7.056, 7.0559, 7.0556, 7.0553, 7.0551, 7.0537, 7.0524, 7.0522, 7.0528, 7.0537, 7.0545, 7.0543, 7.0539, 7.0537, 7.0536, 7.0534, 7.0533, 7.053, 7.0527, 7.0526, 7.0539, 7.0535, 7.0533, 7.053, 7.054, 7.0538, 7.0534, 7.0533, 7.0531, 7.0528, 7.0526, 7.0523, 7.0519, 7.0505, 7.0514, 7.0527, 7.0539, 7.0537, 7.0534, 7.0543, 7.0542, 7.0539, 7.0536, 7.0535, 7.0533, 7.0531, 7.0529, 7.0531, 7.0527, 7.0524, 7.0523, 7.0531, 7.053, 7.0529, 7.0564, 7.056, 7.0557, 7.0567, 7.0565, 7.0574, 7.057, 7.057, 7.0567, 7.0576, 7.0574, 7.0577, 7.0574, 7.0584, 7.0581, 7.059, 7.0577, 7.0565, 7.0562, 7.0558, 7.0558, 7.0547, 7.0544, 7.0543, 7.0542, 7.053, 7.0527, 7.0524, 7.051, 7.0519, 7.0528, 7.0525, 7.0522, 7.0519, 7.0518, 7.0515, 7.0512, 7.0508, 7.0505, 7.0513, 7.0509, 7.0506, 7.0504, 7.0492, 7.0491, 7.048, 7.048, 7.0488, 7.0496, 7.0492, 7.049, 7.0479, 7.0487, 7.0485, 7.0482, 7.0478, 7.0489, 7.05, 7.0498, 7.0498, 7.0495, 7.0493, 7.0492, 7.0489, 7.0486, 7.0485, 7.0495, 7.0492, 7.0499, 7.0498, 7.0508, 7.0508, 7.0507, 7.0505, 7.0503, 7.0511, 7.0508, 7.0555, 7.0552, 7.0548, 7.0546, 7.0555, 7.0555, 7.0554, 7.0542, 7.0557, 7.0561, 7.0557, 7.0554, 7.0566, 7.0563, 7.0564, 7.0563, 7.0571, 7.0571, 7.0567, 7.0564, 7.0561, 7.0559, 7.0556, 7.0552, 7.0549, 7.0547, 7.0544, 7.0552, 7.056, 7.0568, 7.0566, 7.0581, 7.0579, 7.0594, 7.0591, 7.0588, 7.0587, 7.0596, 7.0592, 7.0589, 7.0579, 7.0575, 7.0572, 7.057, 7.0568, 7.0565, 7.0562, 7.056, 7.0559, 7.0558, 7.0555, 7.0553, 7.0562, 7.0559, 7.0578, 7.0589, 7.0602, 7.06, 7.0598, 7.0599, 7.0596, 7.0594, 7.0625, 7.0622, 7.0619, 7.0616, 7.0616, 7.0613, 7.0614, 7.0611, 7.0609, 7.0617, 7.0615, 7.0623, 7.0619, 7.0616, 7.0625, 7.0633, 7.063, 7.0629, 7.0625, 7.0624, 7.0622, 7.062, 7.0617, 7.0614, 7.0621, 7.0621, 7.0618, 7.0614, 7.061, 7.0607, 7.0604, 7.0601, 7.0588, 7.0587, 7.0585, 7.0584, 7.0581, 7.0569, 7.0569, 7.0577, 7.0564, 7.0563, 7.0562, 7.057, 7.0569, 7.0566, 7.0564, 7.0561, 7.056, 7.0568, 7.0576, 7.0573, 7.057, 7.0593, 7.058, 7.058, 7.0578, 7.0577, 7.0575, 7.0562, 7.0571, 7.0568, 7.0564, 7.0561, 7.057, 7.0557, 7.0565, 7.0562, 7.0559, 7.0567, 7.0566, 7.0563, 7.0561, 7.0569, 7.0577, 7.0574, 7.0571, 7.0573, 7.056, 7.0558, 7.0555, 7.0563, 7.0571, 7.0568, 7.0565, 7.0562, 7.0559, 7.0572, 7.057, 7.0568, 7.0577, 7.0574, 7.0572, 7.057, 7.0582, 7.0594, 7.0602, 7.0621, 7.0618, 7.0626, 7.0623, 7.0619, 7.0615, 7.0611, 7.0608, 7.0595, 7.0591, 7.0588, 7.0596, 7.0593, 7.059, 7.0588, 7.0595, 7.0614, 7.0622, 7.0621, 7.0617, 7.0626, 7.0622, 7.0622, 7.062, 7.0618, 7.0617, 7.0626, 7.0624, 7.0611, 7.0599, 7.0586, 7.0584, 7.0581, 7.0568, 7.0576, 7.0573, 7.0575, 7.0572, 7.0572, 7.0572, 7.0571, 7.0569, 7.0568, 7.0556, 7.0555, 7.0564, 7.0561, 7.0559, 7.0556, 7.0555, 7.0554, 7.0553, 7.0562, 7.0559, 7.0557, 7.0555, 7.0553, 7.0552, 7.0551, 7.0548, 7.0535, 7.0544, 7.0542, 7.0551, 7.0548, 7.0547, 7.0546, 7.0545, 7.0541, 7.0538, 7.0536, 7.0545, 7.0542, 7.054, 7.0538, 7.0534, 7.0531, 7.053, 7.0527, 7.0524, 7.0521, 7.052, 7.0519, 7.0519, 7.0516, 7.0514, 7.0524000000000004, 7.0522, 7.0519, 7.0519, 7.0515, 7.0515, 7.0514, 7.0513, 7.0511, 7.0509, 7.0498, 7.0496, 7.0493, 7.049, 7.0487, 7.0489, 7.0487, 7.0474, 7.0463, 7.0473, 7.0471, 7.048100000000001, 7.049, 7.0488, 7.0486, 7.0483, 7.049300000000001, 7.050300000000001, 7.0514, 7.0524000000000004, 7.0523, 7.0521, 7.053, 7.0528, 7.0528, 7.0526, 7.0525, 7.0523, 7.0522, 7.0522, 7.0509, 7.0508, 7.0495, 7.0493, 7.0503, 7.0513, 7.0513, 7.0522, 7.0519, 7.0516, 7.0513, 7.051, 7.0508, 7.0516, 7.0514, 7.0517, 7.0523, 7.052, 7.0529, 7.0517, 7.0514, 7.0541, 7.0538, 7.0549, 7.0548, 7.0557, 7.0554, 7.0553, 7.0541, 7.0545, 7.0553, 7.055, 7.0548, 7.0559, 7.0549, 7.0546, 7.0544, 7.0542, 7.054, 7.0548, 7.0547, 7.0556, 7.0555, 7.0552, 7.0551, 7.055, 7.0548, 7.0546, 7.0542, 7.0539, 7.0536, 7.0566, 7.0574, 7.0584, 7.0582, 7.0579, 7.0576, 7.0573, 7.057, 7.0568, 7.0566, 7.0565, 7.0562, 7.0559, 7.0567, 7.0566, 7.0563, 7.0563, 7.056, 7.0567, 7.0564, 7.0561, 7.0562, 7.056, 7.0568, 7.0565, 7.0573, 7.0572, 7.0569, 7.0579, 7.0577, 7.0575, 7.0574, 7.0581, 7.0579, 7.0577, 7.0585, 7.0582, 7.0581, 7.059, 7.0587, 7.0584, 7.0584, 7.058, 7.0577, 7.0619, 7.0619, 7.0619, 7.0619, 7.0616, 7.0614, 7.0612, 7.0619, 7.0616, 7.0623, 7.0621, 7.063, 7.0653, 7.065, 7.0649, 7.0647, 7.0657000000000005, 7.0667, 7.0674, 7.0671, 7.0679, 7.0676, 7.0663, 7.0651, 7.0652, 7.0659, 7.0656, 7.0663, 7.0663, 7.0661, 7.0659, 7.0657, 7.0655, 7.0663, 7.066, 7.0657, 7.0655, 7.0653, 7.0681, 7.0678, 7.0676, 7.0673, 7.0671, 7.0668, 7.0665, 7.0662, 7.0659, 7.0656, 7.0655, 7.0674, 7.0671, 7.0668, 7.0665, 7.0664, 7.0662, 7.0659, 7.0661, 7.0658, 7.0655, 7.0654, 7.0651, 7.0648, 7.0645, 7.0643, 7.0641, 7.0638, 7.0626, 7.0624, 7.0621, 7.063, 7.0628, 7.0638000000000005, 7.0635, 7.064500000000001, 7.065500000000001, 7.0653, 7.0641, 7.064, 7.0649, 7.0657, 7.0659, 7.0667, 7.0664, 7.0663, 7.0662, 7.0663, 7.0661, 7.0659, 7.0667, 7.0668, 7.0656, 7.0654, 7.0661, 7.0659, 7.0656, 7.0654, 7.0654, 7.0652, 7.065, 7.0657, 7.0664, 7.0665, 7.0662, 7.0677, 7.0678, 7.0691, 7.0688, 7.0686, 7.0691, 7.069, 7.0688, 7.0696, 7.0687, 7.0684, 7.0692, 7.0683, 7.0681, 7.0678, 7.0675, 7.0672, 7.0669, 7.0668, 7.0672, 7.067, 7.0667, 7.0664, 7.068, 7.0696, 7.0693, 7.069, 7.0698, 7.0705, 7.0702, 7.0699, 7.0696, 7.0693, 7.07, 7.0698, 7.0696, 7.0693, 7.0691, 7.0689, 7.0698, 7.0695, 7.0696, 7.0705, 7.0702, 7.0692, 7.0691, 7.0688, 7.0686, 7.0683, 7.069, 7.0687, 7.0686, 7.0683, 7.068, 7.0677, 7.0679, 7.0677, 7.0674, 7.0671, 7.0679, 7.0687, 7.0693, 7.0691, 7.0698, 7.0695, 7.0703, 7.0755, 7.0751, 7.0748, 7.0756, 7.0753, 7.075, 7.0758, 7.0767, 7.0766, 7.0754, 7.0751, 7.075, 7.0757, 7.0756, 7.0753, 7.075, 7.0748, 7.0755, 7.0754, 7.0751, 7.0749, 7.0747, 7.0745, 7.0743, 7.0741, 7.0738, 7.0726, 7.0724, 7.0721, 7.0717, 7.0722, 7.0721, 7.0719, 7.0718, 7.0716, 7.0713, 7.0711, 7.0709, 7.0706, 7.0703, 7.0701, 7.073, 7.0731, 7.0729, 7.0727, 7.0726, 7.0723, 7.072, 7.0721, 7.0728, 7.0726, 7.0725, 7.0723, 7.072, 7.0728, 7.0736, 7.0733, 7.073, 7.0738, 7.0736, 7.0745, 7.0742, 7.0739, 7.0736, 7.0733, 7.0732, 7.073, 7.0727, 7.0724, 7.0722, 7.0719, 7.0719, 7.0717, 7.0727, 7.0735, 7.0732, 7.0731, 7.0728, 7.0726, 7.0723, 7.0721, 7.0721, 7.0718, 7.0715, 7.0722, 7.0721, 7.0728, 7.0738, 7.0747, 7.0745, 7.0743, 7.074, 7.0737, 7.0734, 7.0732, 7.0742, 7.0739, 7.0749, 7.0746, 7.0753, 7.0761, 7.0769, 7.0766, 7.0763, 7.0761, 7.077, 7.077, 7.0767, 7.0764, 7.0763, 7.0763, 7.0761, 7.0769, 7.0767, 7.0765, 7.0763, 7.0761, 7.0759, 7.0757, 7.0756, 7.0755, 7.0752, 7.074, 7.0738, 7.0735, 7.0732, 7.0729, 7.0728, 7.0726, 7.0724, 7.0713, 7.071, 7.0707, 7.0715, 7.072500000000001, 7.0734, 7.0741, 7.074, 7.074, 7.074, 7.074, 7.074, 7.0737, 7.0747, 7.0757, 7.0775, 7.0772, 7.077, 7.0767, 7.0764, 7.0766, 7.0765, 7.0766, 7.0763, 7.0762, 7.0759, 7.0759, 7.0774, 7.0771, 7.0769, 7.0768, 7.0766, 7.0763, 7.0762, 7.0762, 7.077, 7.0768, 7.0766, 7.0785, 7.0783, 7.078, 7.0777, 7.0784, 7.0786, 7.0785, 7.0792, 7.079, 7.0789, 7.0788, 7.0785, 7.0793, 7.0791, 7.0789, 7.0789, 7.0799, 7.0796, 7.0804, 7.0801, 7.0798, 7.0798, 7.0798, 7.0805, 7.0802, 7.08, 7.0798, 7.0795, 7.0801, 7.0798, 7.0816, 7.0826, 7.0825, 7.0822, 7.083, 7.0827, 7.0826, 7.0823, 7.082, 7.0819, 7.0818, 7.0817, 7.0816, 7.0815, 7.0814, 7.0813, 7.0801, 7.0798, 7.0796, 7.0793, 7.0799, 7.0797, 7.0795, 7.0792, 7.0789, 7.0786, 7.0785, 7.0782, 7.0779, 7.0789, 7.0786, 7.0783, 7.078, 7.077, 7.0758, 7.0778, 7.0776, 7.0782, 7.0781, 7.0788, 7.0796, 7.0806000000000004, 7.0803, 7.0802, 7.0799, 7.0796, 7.0794, 7.0794, 7.0792, 7.0791, 7.0791, 7.0789, 7.0787, 7.0794, 7.0793, 7.0792, 7.0792, 7.0792, 7.0791, 7.0789, 7.0797, 7.0796, 7.0795, 7.0793, 7.0791, 7.079, 7.0798, 7.0797, 7.0799, 7.0798, 7.0808, 7.0818, 7.0826, 7.0824, 7.0824, 7.0822, 7.0821, 7.0828, 7.0826, 7.0824, 7.0821, 7.082, 7.0818, 7.0825, 7.0832, 7.0831, 7.083, 7.0829, 7.0827, 7.0825, 7.0824, 7.0822, 7.0839, 7.0836, 7.0844, 7.0841, 7.0839, 7.0838, 7.0836, 7.0843, 7.084, 7.0837, 7.0834, 7.0831, 7.0829, 7.0826, 7.083600000000001, 7.0853, 7.0863000000000005, 7.0862, 7.086, 7.0857, 7.0857, 7.0865, 7.0863, 7.0861, 7.0879, 7.0878, 7.0875, 7.0883, 7.088, 7.0879, 7.0889, 7.0887, 7.089, 7.0888, 7.0885, 7.0882, 7.088, 7.0878, 7.0875, 7.0874, 7.0872, 7.088, 7.0877, 7.0875, 7.0875, 7.0873, 7.087, 7.0869, 7.0877, 7.0875, 7.0883, 7.0882, 7.0874, 7.0871, 7.087, 7.0877, 7.0885, 7.0894, 7.0891, 7.0898, 7.0915, 7.0912, 7.0909, 7.0907, 7.0905, 7.0903, 7.091, 7.0909, 7.0906, 7.0903, 7.09, 7.0899, 7.0906, 7.0905, 7.0902, 7.089, 7.0888, 7.0887, 7.0893, 7.0892, 7.0898, 7.091, 7.0907, 7.0906, 7.0905, 7.0913, 7.0911, 7.0911, 7.0911, 7.092, 7.0909, 7.0909, 7.0917, 7.0916, 7.0923, 7.0923, 7.0922, 7.092, 7.0921, 7.0918, 7.0918, 7.0915, 7.0912, 7.0909, 7.0906, 7.0903, 7.0901, 7.0899, 7.0899, 7.0896, 7.0903, 7.09, 7.0889, 7.0887, 7.0884, 7.0892, 7.0908, 7.0905, 7.0903, 7.091, 7.0925, 7.0923, 7.092, 7.0927, 7.0924, 7.0921, 7.0918, 7.0915, 7.0933, 7.0932, 7.0921, 7.0911, 7.091, 7.0917, 7.0928, 7.0934, 7.0931, 7.0928, 7.0926, 7.0933, 7.093, 7.0927, 7.0925, 7.0933, 7.093, 7.0928, 7.0925, 7.0923, 7.0921, 7.0918, 7.0917, 7.0924, 7.0922, 7.092, 7.0917, 7.0925, 7.0924, 7.0923, 7.0921, 7.0919, 7.0917, 7.0925, 7.0933, 7.0931, 7.0937, 7.0934, 7.0931, 7.093, 7.0937, 7.0936, 7.0953, 7.095, 7.0941, 7.0946, 7.0952, 7.0959, 7.0956, 7.0953, 7.0951, 7.0948, 7.0945, 7.0944, 7.0941, 7.0938, 7.0937, 7.0936, 7.0933, 7.094, 7.0939, 7.0939, 7.0937, 7.0934, 7.0931, 7.0929, 7.0929, 7.0926, 7.0923, 7.0929, 7.0919, 7.0916, 7.0913, 7.091, 7.0907, 7.0913, 7.091, 7.0907, 7.0904, 7.0902, 7.0909, 7.0906, 7.0904, 7.0902, 7.0892, 7.0898, 7.0905, 7.0903, 7.091, 7.0912, 7.091, 7.094, 7.0937, 7.0936, 7.0933, 7.0932, 7.0931, 7.0938, 7.0935, 7.0934, 7.094, 7.0939, 7.0937, 7.0934, 7.0941, 7.0948, 7.0945, 7.0942, 7.094, 7.0947, 7.0944, 7.0942, 7.0942, 7.0941, 7.0939, 7.0937, 7.0934, 7.0931, 7.0931, 7.093, 7.0929, 7.0936, 7.0926, 7.0933, 7.0931, 7.0939, 7.095, 7.0947, 7.0954, 7.0951, 7.095, 7.0943, 7.0977, 7.0974, 7.0972, 7.0973, 7.097, 7.0967, 7.0973, 7.0971, 7.0977, 7.0975, 7.0976, 7.0976, 7.0973, 7.097, 7.0969, 7.0966, 7.0964, 7.0961, 7.096, 7.0959, 7.0958, 7.0957, 7.0948, 7.0955, 7.0961, 7.0958, 7.0965, 7.0965, 7.0971, 7.0968, 7.0966, 7.0956, 7.0953, 7.0951, 7.0982, 7.0981, 7.098, 7.0979, 7.0981, 7.0988, 7.0987, 7.0994, 7.1, 7.1007, 7.1004, 7.1001, 7.1, 7.0998, 7.0995, 7.1002, 7.0999, 7.0999, 7.0989, 7.0996, 7.0993, 7.0991, 7.099, 7.0988, 7.0995, 7.1003, 7.0992, 7.0998, 7.0996, 7.1015, 7.1027, 7.1024, 7.1024, 7.1015, 7.1012, 7.101, 7.1009, 7.1012, 7.101, 7.1008, 7.1025, 7.1024, 7.1032, 7.104, 7.1046, 7.1045, 7.1042, 7.106, 7.1058, 7.1055, 7.1045, 7.1045, 7.1042, 7.104, 7.1049, 7.1048, 7.1046, 7.1038, 7.1064, 7.1061, 7.1058, 7.1058, 7.1056, 7.1056, 7.1064, 7.107, 7.1068, 7.1067, 7.1065, 7.1064, 7.1062, 7.106, 7.1059, 7.1056, 7.1086, 7.1084, 7.1081, 7.1079, 7.1077, 7.1084, 7.1092, 7.1091, 7.1098, 7.1104, 7.1102, 7.11, 7.1097, 7.1126, 7.1124, 7.1131, 7.1138, 7.1136, 7.1126, 7.1125, 7.1131, 7.1131, 7.1128, 7.1125, 7.1123, 7.112, 7.1135, 7.1125, 7.1125, 7.1123, 7.1121, 7.1118, 7.1117, 7.1115, 7.1113, 7.1111, 7.1109, 7.1098, 7.1087, 7.1085, 7.1083, 7.1084, 7.1084, 7.1083, 7.108, 7.1079, 7.1078, 7.1075, 7.1072, 7.1071, 7.1075, 7.1073, 7.107, 7.1068, 7.1065, 7.1064, 7.1061, 7.1059, 7.1056, 7.1056, 7.1053, 7.1052, 7.1051, 7.1058, 7.1048, 7.1037, 7.1042, 7.1045, 7.1061, 7.1058, 7.1056, 7.1053, 7.1052, 7.1058, 7.1049, 7.1048, 7.1046, 7.1054, 7.1052, 7.1053, 7.1054, 7.1053, 7.1051, 7.1049, 7.1047, 7.1045, 7.1035, 7.1032, 7.103, 7.1038, 7.1064, 7.1061, 7.1059, 7.1057, 7.1061, 7.1059, 7.1057, 7.1058, 7.1057, 7.1065, 7.1062, 7.1069, 7.1078, 7.1076, 7.1074, 7.1087, 7.1094, 7.1091, 7.1083, 7.1089, 7.1086, 7.1084, 7.1082, 7.1079, 7.1077, 7.111, 7.1128, 7.1127, 7.1126, 7.1126, 7.1132, 7.1129, 7.113, 7.1127, 7.1133, 7.113, 7.1127, 7.1125, 7.1123, 7.112, 7.1117, 7.1125, 7.1136, 7.1135, 7.1133, 7.113, 7.1127, 7.1124, 7.1122, 7.1113, 7.111, 7.1111, 7.1111, 7.1109, 7.1108, 7.1109, 7.1109, 7.1107, 7.1114, 7.1116, 7.1114, 7.1121, 7.1121, 7.112, 7.1118, 7.1116, 7.1113, 7.1112, 7.1103, 7.1119, 7.1143, 7.114, 7.1137, 7.1134, 7.1131, 7.1137, 7.1135, 7.1134, 7.1131, 7.1135, 7.1132, 7.113, 7.1127, 7.1125, 7.1123, 7.1122, 7.112, 7.1117, 7.1114, 7.112, 7.1117, 7.1123, 7.1122, 7.1121, 7.1118, 7.1116, 7.1114, 7.1112, 7.111, 7.1107, 7.1107, 7.111, 7.1108, 7.1106, 7.1096, 7.1094, 7.11, 7.1107, 7.1114, 7.1114, 7.112, 7.1126, 7.1123, 7.1122, 7.1121, 7.1118, 7.1116, 7.1122, 7.1119, 7.1109, 7.1107, 7.1107, 7.1104, 7.1103, 7.1102, 7.1109, 7.1107, 7.1106, 7.1105, 7.1112, 7.1109, 7.1117, 7.1115, 7.1122, 7.1121, 7.112, 7.1127, 7.1127, 7.1124, 7.1122, 7.1119, 7.1117, 7.1114, 7.1111, 7.1108, 7.1107, 7.1104, 7.1111, 7.111, 7.1108, 7.1106, 7.1106, 7.1104, 7.1111, 7.111, 7.1108, 7.1107, 7.1098, 7.1088, 7.1094, 7.1093, 7.1091, 7.1089, 7.1087, 7.1085, 7.1092, 7.1099, 7.1097, 7.1104, 7.1101, 7.1099, 7.1097, 7.1095, 7.1101, 7.1099, 7.1105, 7.1105, 7.1103, 7.1101, 7.1101, 7.1102, 7.11, 7.1098, 7.1095, 7.1092, 7.1098, 7.1106, 7.1106, 7.1104, 7.1103, 7.1102, 7.1113, 7.1111, 7.1118, 7.1115, 7.1113, 7.1121, 7.1144, 7.1142, 7.114, 7.1137, 7.1135, 7.1136, 7.1133, 7.114, 7.1146, 7.1145, 7.1142, 7.1139, 7.1138, 7.1135, 7.1133, 7.113, 7.1128, 7.1133, 7.1131, 7.113, 7.1127, 7.1125, 7.1123, 7.112, 7.1119, 7.1116, 7.1106, 7.1104, 7.1102, 7.1099, 7.1105, 7.1103, 7.1101, 7.1107, 7.1105, 7.1103, 7.11, 7.1099, 7.1097, 7.1095, 7.1092, 7.1091, 7.1088, 7.1095, 7.1092, 7.1091, 7.1089, 7.1088, 7.1087, 7.1084, 7.1082, 7.108, 7.1078, 7.1076, 7.1073, 7.1079, 7.1078, 7.1076, 7.1074, 7.108, 7.1078, 7.1084, 7.1082, 7.1088, 7.1085, 7.1091, 7.1106, 7.1104, 7.1111, 7.1109, 7.1115, 7.1114, 7.1105, 7.1104, 7.1102, 7.1099, 7.1096, 7.1094, 7.1093, 7.109, 7.1087, 7.1091, 7.1089, 7.1095, 7.1092, 7.1098, 7.1095, 7.1093, 7.1099, 7.1096, 7.1095, 7.1086, 7.1085, 7.1091, 7.1091, 7.1088, 7.1086, 7.1086, 7.1083, 7.1083, 7.1081, 7.1078, 7.1084, 7.109, 7.1089, 7.1088, 7.1095, 7.1101, 7.1091, 7.109, 7.1088, 7.1087, 7.1086, 7.1093, 7.1098, 7.1104, 7.1112, 7.1123, 7.1123, 7.1121, 7.1118, 7.1139, 7.1139, 7.1156, 7.1155, 7.1145, 7.1153, 7.1152, 7.1159, 7.1157, 7.1156, 7.1155, 7.1153, 7.1153, 7.1161, 7.1159, 7.1157, 7.1165, 7.1163, 7.1153, 7.1147, 7.1145, 7.1142, 7.1142, 7.1152, 7.115, 7.1142, 7.1149, 7.1147, 7.1155, 7.1153, 7.1151, 7.1151, 7.1158, 7.1156, 7.1156, 7.1162, 7.1162, 7.1168, 7.1165, 7.1162, 7.1171, 7.1169, 7.1168, 7.1165, 7.1166, 7.1172, 7.1179, 7.1178, 7.1176, 7.1167, 7.1173, 7.117, 7.1171, 7.1168, 7.1165, 7.1172, 7.117, 7.1168, 7.1167, 7.1164, 7.1172, 7.1163, 7.1161, 7.1167, 7.1164, 7.1162, 7.1159, 7.1156, 7.1155, 7.1153, 7.1159, 7.1166, 7.1174, 7.1164, 7.117, 7.1167, 7.1165, 7.1164, 7.1161, 7.1158, 7.1155, 7.1153, 7.1151, 7.1157, 7.1157, 7.1155, 7.1156, 7.1154, 7.1154, 7.116, 7.1159, 7.1156, 7.1155, 7.1161, 7.1158, 7.1156, 7.1154, 7.1153, 7.1151, 7.115, 7.115, 7.1156, 7.1162, 7.116, 7.1158, 7.1157, 7.1157, 7.1156, 7.1154, 7.1153, 7.1151, 7.1148, 7.1155, 7.1161, 7.1159, 7.1157, 7.1156, 7.1153, 7.116, 7.1166, 7.1163, 7.1161, 7.1159, 7.1158, 7.1156, 7.1147, 7.1138, 7.1135, 7.1136, 7.1134, 7.1132, 7.1135, 7.1133, 7.1132, 7.1139, 7.1146, 7.1144, 7.1143, 7.1149, 7.1147, 7.1153, 7.1159, 7.1157, 7.1165, 7.1164, 7.1163, 7.1161, 7.1167, 7.1165, 7.1163, 7.1161, 7.1161, 7.1159, 7.1157, 7.1155, 7.1153, 7.1152, 7.1158, 7.1165, 7.1164, 7.1163, 7.1169, 7.1167, 7.1164, 7.1161, 7.1159, 7.1159, 7.1158, 7.1157, 7.1155, 7.1152, 7.1151, 7.115, 7.1148, 7.1146, 7.1144, 7.1143, 7.1142, 7.1139, 7.1137, 7.1134, 7.1132, 7.1139, 7.1145, 7.1143, 7.114, 7.1138, 7.1137, 7.1136, 7.1137, 7.1135, 7.1133, 7.1131, 7.113, 7.113, 7.1136, 7.1142, 7.114, 7.1138, 7.1144, 7.1142, 7.1148, 7.1147, 7.1153, 7.1152, 7.1157, 7.1156, 7.1161, 7.1158, 7.1157, 7.1154, 7.116, 7.1167, 7.1164, 7.1161, 7.1158, 7.1156, 7.1154, 7.116, 7.1157, 7.1155, 7.1161, 7.1158, 7.1155, 7.1152, 7.1151, 7.1149, 7.1155, 7.1154, 7.1152, 7.1151, 7.115, 7.1157, 7.1155, 7.1161, 7.1159, 7.1166, 7.1172, 7.1172, 7.1179, 7.1179, 7.1178, 7.1176, 7.1182, 7.1181, 7.1178, 7.1184, 7.119, 7.1196, 7.1194, 7.1192, 7.1191, 7.1188, 7.1187, 7.1185, 7.1191, 7.1197, 7.1195, 7.1192, 7.119, 7.1188, 7.1185, 7.1183, 7.1181, 7.1183, 7.1189, 7.1191, 7.1198, 7.1196, 7.1194, 7.1202, 7.1217, 7.1215, 7.1213, 7.1212, 7.121, 7.1208, 7.1207, 7.1213, 7.1219, 7.1217, 7.1214, 7.1213, 7.1211, 7.121, 7.1207, 7.1214, 7.1222, 7.1221, 7.122, 7.1226, 7.1233, 7.1251, 7.1249, 7.1248, 7.1247, 7.1244, 7.1241, 7.1239, 7.1245, 7.1243, 7.1241, 7.1238, 7.1235, 7.1233, 7.1232, 7.123, 7.1229, 7.1226, 7.1225, 7.1223, 7.1221, 7.1219, 7.1216, 7.1215, 7.122, 7.1218, 7.1215, 7.1213, 7.1211, 7.121, 7.1208, 7.1206, 7.1204, 7.121, 7.1208, 7.1214, 7.1212, 7.121, 7.1208, 7.1206, 7.1205, 7.1204, 7.1202, 7.1199, 7.1197, 7.1202, 7.1199, 7.1196, 7.1194, 7.1193, 7.119, 7.1196, 7.1194, 7.1191, 7.119, 7.1188, 7.1186, 7.1185, 7.1183, 7.118, 7.1186, 7.1185, 7.1191, 7.1197, 7.1203, 7.1209, 7.1206, 7.1203, 7.12, 7.1214, 7.1211, 7.121, 7.1217, 7.1215, 7.1239, 7.1237, 7.1235, 7.1241, 7.1239, 7.1236, 7.1234, 7.1232, 7.1231, 7.1231, 7.1228, 7.1226, 7.1223, 7.1221, 7.1221, 7.122, 7.1218, 7.1216, 7.1222, 7.1221, 7.1226, 7.1224, 7.1221, 7.122, 7.1218, 7.1216, 7.1214, 7.122, 7.122, 7.1218, 7.1216, 7.1222, 7.1236, 7.1235, 7.1227, 7.1247, 7.1245, 7.1259, 7.128, 7.1285, 7.1282, 7.1296, 7.1317, 7.1323, 7.1322, 7.1337, 7.1332, 7.1337, 7.1343, 7.1341, 7.1339, 7.1338, 7.1345, 7.1351, 7.1358, 7.1356, 7.1354, 7.1357, 7.1363, 7.1362, 7.136, 7.1358, 7.1356, 7.1354, 7.136, 7.1359, 7.1358, 7.1364, 7.1364, 7.1362, 7.1368, 7.1368, 7.1378, 7.1377, 7.1376, 7.1381, 7.1381, 7.1378, 7.1376, 7.1376, 7.1375, 7.1373, 7.1373, 7.1371, 7.1378, 7.1376, 7.1375, 7.1381, 7.1389, 7.1388, 7.1388, 7.1401, 7.14, 7.1398, 7.1397, 7.1395, 7.1393, 7.1392, 7.1399, 7.1421, 7.1425, 7.1424, 7.1422, 7.142, 7.1434, 7.1433, 7.1431, 7.1428, 7.1427, 7.1425, 7.1423, 7.1421, 7.1427, 7.1425, 7.1423, 7.142, 7.1418, 7.1415, 7.1412, 7.1417, 7.1414, 7.1412, 7.1409, 7.1408, 7.1406, 7.1403, 7.14, 7.1398, 7.1396, 7.1394, 7.14, 7.1405, 7.1411, 7.1409, 7.1406, 7.1404, 7.1403, 7.1408, 7.1405, 7.141, 7.1408, 7.1407, 7.1404, 7.1409, 7.1408, 7.1405, 7.1403, 7.1403, 7.14, 7.1399, 7.1397, 7.1409, 7.1407, 7.1405, 7.1399, 7.1396, 7.1402, 7.1401, 7.14, 7.1399, 7.1402, 7.1395, 7.1394, 7.1407, 7.1406, 7.1406, 7.1412, 7.1417, 7.1414, 7.1413, 7.1414, 7.1412, 7.1422, 7.1428, 7.1428, 7.143, 7.1428, 7.1426, 7.1432, 7.1438, 7.1429, 7.1426, 7.1425, 7.1423, 7.1421, 7.1419, 7.1417, 7.1423, 7.1422, 7.1421, 7.1419, 7.1416, 7.1415, 7.1412, 7.141, 7.1409, 7.1408, 7.1407, 7.1404, 7.1403, 7.1401, 7.1399, 7.1397, 7.1402, 7.1399, 7.1404, 7.1402, 7.141, 7.1408, 7.1399, 7.1397, 7.1402, 7.14, 7.1397, 7.1394, 7.1392, 7.1389, 7.1387, 7.1393, 7.1398, 7.1397, 7.1395, 7.1392, 7.139, 7.1388, 7.1402, 7.14, 7.1407, 7.1405, 7.1431, 7.1428, 7.1426, 7.1421, 7.1419, 7.1417, 7.1435, 7.1454, 7.1452, 7.1444, 7.1444, 7.1435, 7.1435, 7.1434, 7.1431, 7.1438, 7.1437, 7.1436], '192.168.122.115': [5.9352, 6.1211, 7.1009, 6.8111, 6.5188, 6.317, 6.2595, 6.8821, 7.4631, 7.4177, 7.275, 7.1266, 7.0403, 6.9706, 6.8906, 6.9, 6.889, 6.8577, 6.848, 7.0694, 7.0121, 7.177, 7.1077, 7.3183, 7.2713, 7.6153, 7.7381, 7.6743, 7.6138, 7.7304, 7.6506, 7.6052, 7.5637, 7.5089, 7.5221, 7.4627, 7.4081, 7.3593, 7.4391, 7.3991, 7.4741, 7.9225, 7.8685, 7.8321, 7.6738, 7.6198, 7.6882, 7.6417, 7.5997, 7.5575, 7.5231, 7.4816, 7.4401, 7.4075, 7.3722, 7.3373, 7.3095, 7.2762, 7.3322, 7.3104, 7.2764, 7.2555, 7.2383, 7.2177, 7.198, 7.1796, 7.2446, 7.2221, 7.284, 7.2618, 7.2482, 7.2404, 7.3156, 7.2923, 7.2781, 7.26, 7.2501, 7.225, 7.2023, 7.1838, 7.1652, 7.151, 7.1418, 7.1312, 7.1219, 7.1065, 7.0862, 7.0798, 7.122, 7.1082, 7.0885, 7.1283, 7.1101, 7.0929, 7.0767, 7.0588, 7.0423, 7.0302, 7.0156, 7.0042, 7.0504, 7.0331, 7.0168, 6.9999, 6.9478, 6.9315, 6.9163, 6.9111, 6.8956, 6.8806, 6.8712, 6.9059, 6.8976, 6.8831, 6.9196, 6.9174, 6.9065, 6.8995, 6.894, 6.9294, 6.9195, 6.9102, 6.8971, 6.9339, 6.8873, 6.844, 6.8358, 6.8354, 6.8229, 6.8147, 6.8096, 6.8443, 6.8364, 6.836, 6.8297, 6.8217, 6.8561, 6.8837, 6.8798, 6.9096, 6.9001, 6.9389, 6.9304, 6.9258, 6.929, 6.9322, 6.9222, 6.9518, 6.9473, 6.937, 6.9663, 6.9597, 6.9534, 6.9525, 6.942, 6.9663, 6.9559, 6.949, 6.943, 6.9428, 6.9402, 6.9311, 6.926, 6.89, 6.8802, 6.8712, 6.8993, 6.8939, 6.8888, 6.88, 6.9038, 6.8685, 6.8922, 6.8862, 6.8793, 6.8519, 6.8439, 6.8404, 6.8321, 6.8559, 6.8484, 6.8423, 6.8419, 6.8364, 6.8337, 6.859, 6.8519, 6.8716, 6.868, 6.8615, 6.8613, 6.8544, 6.8477, 6.8695, 6.8613, 6.8567, 6.8552, 6.8473, 6.8703, 6.9212, 6.9198, 7.0557, 7.0534, 7.0477, 7.0427, 7.0619, 7.0826, 7.0998, 7.0952, 7.1139, 7.132, 7.1261, 7.1463, 7.142, 7.1349, 7.1324, 7.127, 7.1223, 7.1239, 7.0997, 7.0711, 7.0666, 7.0603, 7.0532, 7.0709, 7.0651, 7.0824, 7.0755, 7.0684, 7.062, 7.0558, 7.0723, 7.0693, 7.0621, 7.0604, 7.0604, 7.0527, 7.1631, 7.1555, 7.1521, 7.1458, 7.1504, 7.1466, 7.1657, 7.1591, 7.1628, 7.1585, 7.1555, 7.1494, 7.143, 7.1385, 7.1549, 7.1482, 7.1661, 7.1822, 7.1764, 7.1775, 7.1742, 7.1708, 7.1649, 7.161, 7.1586, 7.1546, 7.1486, 7.1419, 7.1394, 7.1385, 7.1339, 7.1327, 7.1279, 7.1274, 7.1228, 7.1171, 7.1135, 7.1301, 7.1263, 7.1057, 7.1032, 7.117, 7.1112, 7.1071, 7.1108, 7.1078, 7.1239, 7.119, 7.1345, 7.1481, 7.1432, 7.1572, 7.1564, 7.1543, 7.1524, 7.1554, 7.1535, 7.1566, 7.1917, 7.2145, 7.2104, 7.211, 7.223, 7.2192, 7.2148, 7.1942, 7.1904, 7.187, 7.1828, 7.177, 7.1706, 7.1849, 7.1836, 7.198, 7.1943, 7.1898, 7.1906, 7.2025, 7.1963, 7.2078, 7.2055, 7.2025, 7.2021, 7.1964, 7.1937, 7.1884, 7.1995, 7.1947, 7.2062, 7.2024, 7.2034, 7.2033, 7.202, 7.2005, 7.2322, 7.243, 7.2529, 7.2529, 7.2474, 7.245, 7.245, 7.2554, 7.2499, 7.2476, 7.2457, 7.2399, 7.2343, 7.2292, 7.2399, 7.236, 7.2308, 7.2293, 7.2241, 7.234, 7.2311, 7.2431, 7.2396, 7.2524, 7.2645, 7.2621, 7.2597, 7.255, 7.2657, 7.263, 7.2605, 7.2568, 7.2576, 7.2555, 7.2549, 7.2498, 7.2479, 7.2471, 7.2433, 7.2532, 7.2359, 7.2342, 7.2306, 7.2268, 7.2222, 7.217, 7.2126, 7.2229, 7.2186, 7.294, 7.301, 7.2974, 7.3071, 7.3044, 7.2992, 7.2946, 7.2904, 7.291, 7.2992, 7.2941, 7.2891, 7.2888, 7.2845, 7.2938, 7.3414, 7.3367, 7.3318, 7.3406, 7.3359, 7.3444, 7.3398, 7.3347, 7.3308, 7.3301, 7.3389, 7.3348, 7.3298, 7.34, 7.3497, 7.3472, 7.3442, 7.3521, 7.3477, 7.344, 7.3442, 7.3669, 7.3635, 7.3728, 7.3682, 7.3654, 7.3743, 7.3831, 7.3786, 7.3739, 7.3696, 7.3654, 7.375, 7.371, 7.3673, 7.3632, 7.3586, 7.3681, 7.364, 7.3661, 7.3615, 7.3568, 7.3548, 7.3505, 7.3462, 7.357, 7.3526, 7.3758, 7.3725, 7.3689, 7.3676, 7.3631, 7.3595, 7.3674, 7.3695, 7.3662, 7.3631, 7.3717, 7.3672, 7.3723, 7.3682, 7.3679, 7.3908, 7.4028, 7.3988, 7.3893, 7.3851, 7.382, 7.3799, 7.3762, 7.3868, 7.3864, 7.3836, 7.4017, 7.3974, 7.4051, 7.4039, 7.4112, 7.4203, 7.4194, 7.4227, 7.4195, 7.4163, 7.4135, 7.4095, 7.4094, 7.4075, 7.4152, 7.4163, 7.4119, 7.4098, 7.4164, 7.4163, 7.4124, 7.4093, 7.4054, 7.4123, 7.3992, 7.3968, 7.3962, 7.3936, 7.4005, 7.3991, 7.3951, 7.4028, 7.3999, 7.3969, 7.3932, 7.3904, 7.3888, 7.3862, 7.3857, 7.3867, 7.3843, 7.385, 7.3824, 7.4076, 7.4281, 7.4262, 7.4234, 7.4223, 7.4208, 7.4168, 7.4138, 7.4115, 7.4078, 7.4041, 7.3938, 7.4004, 7.3962, 7.4024, 7.4098, 7.4061, 7.4033, 7.4012, 7.3987, 7.396, 7.3944, 7.4018, 7.4017, 7.398, 7.3944, 7.3935, 7.3911, 7.3889, 7.3876, 7.3953, 7.3914, 7.3888, 7.3879, 7.3946, 7.4015, 7.3989, 7.3967, 7.4029, 7.3907, 7.3881, 7.3953, 7.392, 7.3898, 7.3961, 7.3937, 7.3915, 7.3898, 7.3885, 7.3852, 7.3814, 7.3803, 7.3797, 7.3863, 7.3843, 7.383, 7.3806, 7.3771, 7.3752, 7.3815, 7.3781, 7.3774, 7.3753, 7.3819, 7.38, 7.3775, 7.3757, 7.3722, 7.3686, 7.3653, 7.3621, 7.3603, 7.3574, 7.3544, 7.3597, 7.3563, 7.355, 7.3553, 7.3524, 7.3489, 7.3492, 7.3464, 7.3439, 7.3503, 7.3512, 7.3492, 7.3461, 7.3433, 7.3398, 7.3374, 7.335, 7.3328, 7.3317, 7.3294, 7.3353, 7.3413, 7.3398, 7.3457, 7.3451, 7.3419, 7.3397, 7.3457, 7.3433, 7.35, 7.3392, 7.3389, 7.3357, 7.3324, 7.3705, 7.3703, 7.3684, 7.3656, 7.3629, 7.3604, 7.3581, 7.3554, 7.353, 7.3509, 7.3493, 7.3466, 7.3522, 7.3497, 7.3472, 7.3467, 7.3364, 7.3263, 7.3251, 7.3264, 7.3237, 7.3221, 7.322, 7.3199, 7.3167, 7.3307, 7.3292, 7.3268, 7.3185, 7.3167, 7.3079, 7.3051, 7.3035, 7.3014, 7.2991, 7.3049, 7.3027, 7.3005, 7.2986, 7.2976, 7.2963, 7.304, 7.3011, 7.298, 7.2973, 7.2949, 7.2932, 7.2989, 7.3064, 7.3144, 7.3123, 7.3097, 7.3081, 7.3135, 7.3121, 7.3122, 7.3178, 7.3238, 7.321, 7.3183, 7.3242, 7.3227, 7.3281, 7.3253, 7.3247, 7.3231, 7.3227, 7.3293, 7.3348, 7.3319, 7.3291, 7.3277, 7.3191, 7.3162, 7.336, 7.3336, 7.331, 7.3362, 7.3344, 7.3406, 7.3402, 7.3378, 7.3396, 7.3455, 7.3427, 7.3414, 7.3387, 7.3363, 7.334, 7.3317, 7.3289, 7.3271, 7.3251, 7.3241, 7.3217, 7.3222, 7.32, 7.325, 7.3229, 7.3225, 7.3233, 7.3214, 7.3198, 7.3173, 7.3154, 7.3126, 7.319, 7.3165, 7.3139, 7.3125, 7.3184, 7.3161, 7.3212, 7.3198, 7.3194, 7.3257, 7.3238, 7.3212, 7.3201, 7.3259, 7.3174, 7.3149, 7.3193, 7.3175, 7.3159, 7.3145, 7.3122, 7.3103, 7.308, 7.3061, 7.3042, 7.3016, 7.2998, 7.3052, 7.3028, 7.3022, 7.2996, 7.2982, 7.2957, 7.2946, 7.2998, 7.2974, 7.2961, 7.2938, 7.2923, 7.29, 7.295, 7.2932, 7.2914, 7.2906, 7.2966, 7.2949, 7.2927, 7.2918, 7.2905, 7.2882, 7.2931, 7.2915, 7.2975, 7.3132, 7.3116, 7.3471, 7.3446, 7.3637, 7.3721, 7.3646, 7.3628, 7.3607, 7.365, 7.3823, 7.3995, 7.3968, 7.4013, 7.3991, 7.4036, 7.4016, 7.4002, 7.3989, 7.3969, 7.3947, 7.387, 7.3845, 7.3822, 7.3796, 7.3782, 7.3763, 7.3744, 7.373, 7.3705, 7.3685, 7.3662, 7.3703, 7.3679, 7.3655, 7.3629, 7.3612, 7.3589, 7.3567, 7.3544, 7.3532, 7.3506, 7.3504, 7.3484, 7.3469, 7.3468, 7.3445, 7.343, 7.3406, 7.3382, 7.336, 7.3404, 7.3394, 7.3372, 7.3421, 7.3406, 7.3388, 7.338, 7.3357, 7.3338, 7.3321, 7.3298, 7.328, 7.3273, 7.3282, 7.3327, 7.332, 7.3369, 7.3353, 7.3337, 7.3336, 7.3375, 7.3359, 7.3349, 7.333, 7.3313, 7.3293, 7.3286, 7.3265, 7.3243, 7.329, 7.3284, 7.3268, 7.325, 7.3232, 7.3213, 7.3263, 7.3246, 7.325, 7.3227, 7.3222, 7.3207, 7.3134, 7.3118, 7.3159, 7.3136, 7.3123, 7.3105, 7.3084, 7.3065, 7.3109, 7.3149, 7.3138, 7.314, 7.3125, 7.3115, 7.3099, 7.3142, 7.3138, 7.3127, 7.3107, 7.3088, 7.3071, 7.3066, 7.3108, 7.3157, 7.3134, 7.3124, 7.3103, 7.3142, 7.3126, 7.3121, 7.3105, 7.3084, 7.3131, 7.3111, 7.3096, 7.314, 7.3132, 7.3119, 7.3162, 7.3143, 7.3183, 7.3167, 7.315, 7.3128, 7.3117, 7.31, 7.3144, 7.3126, 7.3114, 7.3112, 7.3102, 7.3275, 7.3257, 7.3238, 7.3223, 7.3286, 7.335, 7.3299, 7.3294, 7.3287, 7.3274, 7.3255, 7.3242, 7.3285, 7.3273, 7.3259, 7.33, 7.3288, 7.3327, 7.3308, 7.3291, 7.3332, 7.3334, 7.3313, 7.3302, 7.3348, 7.3345, 7.3422, 7.3356, 7.3344, 7.3328, 7.3319, 7.3303, 7.3292, 7.3275, 7.3257, 7.324, 7.328, 7.3269, 7.3252, 7.3242, 7.3224, 7.3203, 7.3193, 7.3177, 7.3163, 7.3203, 7.325, 7.3272, 7.322, 7.3258, 7.3264, 7.3245, 7.3235, 7.3216, 7.3202, 7.3191, 7.3178, 7.3226, 7.3265, 7.3252, 7.3292, 7.3279, 7.3272, 7.3211, 7.3203, 7.3188, 7.3181, 7.3216, 7.3201, 7.3183, 7.322, 7.3202, 7.3191, 7.3173, 7.3155, 7.3136, 7.3118, 7.3163, 7.3159, 7.3145, 7.3187, 7.3179, 7.3162, 7.3152, 7.3146, 7.3127, 7.3162, 7.3145, 7.3183, 7.3174, 7.3157, 7.314, 7.3121, 7.312, 7.3103, 7.3088, 7.3087, 7.309, 7.308, 7.307, 7.3051, 7.3083, 7.3114, 7.3098, 7.3087, 7.3075, 7.3116, 7.3112, 7.3146, 7.3139, 7.3128, 7.3117, 7.31, 7.3038, 7.2979, 7.2915, 7.29, 7.2936, 7.2874, 7.2906, 7.2891, 7.2879, 7.2873, 7.2861, 7.2844, 7.2833, 7.2825, 7.2808, 7.2798, 7.2836, 7.2824, 7.281, 7.2849, 7.2838, 7.2923, 7.2906, 7.294, 7.2927, 7.296, 7.2953, 7.2946, 7.2928, 7.2911, 7.2904, 7.2898, 7.2895, 7.2885, 7.2922, 7.2912, 7.2895, 7.288, 7.2876, 7.286, 7.2843, 7.2825, 7.2806, 7.2788, 7.2775, 7.2807, 7.2843, 7.2835, 7.2822, 7.2857, 7.284, 7.2832, 7.2826, 7.2771, 7.2718, 7.2708, 7.2691, 7.2687, 7.2785, 7.2768, 7.2751, 7.2736, 7.2721, 7.2705, 7.2736, 7.2737, 7.273, 7.2715, 7.2699, 7.274, 7.2722, 7.2755, 7.2745, 7.2729, 7.2716, 7.27, 7.2702, 7.2694, 7.2676, 7.266, 7.2646, 7.263, 7.2621, 7.2603, 7.2587, 7.2571, 7.2554, 7.2539, 7.2534, 7.2521, 7.2511, 7.2509, 7.2505, 7.2537, 7.2522, 7.2554, 7.2549, 7.2544, 7.2537, 7.2528, 7.2513, 7.2505, 7.2537, 7.2521, 7.2508, 7.2514, 7.2507, 7.2493, 7.2481, 7.2519, 7.2556, 7.2596, 7.2653, 7.2643, 7.2593, 7.2622, 7.2618, 7.2651, 7.2638, 7.2625, 7.2655, 7.2684, 7.2674, 7.2659, 7.2644, 7.2633, 7.2622, 7.2613, 7.2599, 7.2632, 7.2624, 7.2655, 7.2641, 7.2625, 7.261, 7.2603, 7.2634, 7.2625, 7.2632, 7.2584, 7.2567, 7.2604, 7.2599, 7.2586, 7.2573, 7.256, 7.2507, 7.2462, 7.2542, 7.2533, 7.2562, 7.2599, 7.2586, 7.2575, 7.2562, 7.2564, 7.2514, 7.2548, 7.2537, 7.2525, 7.2513, 7.25, 7.2486, 7.2475, 7.2459, 7.2448, 7.248, 7.2463, 7.2459, 7.2459, 7.2411, 7.2395, 7.2389, 7.2379, 7.2409, 7.2438, 7.2425, 7.2454, 7.2438, 7.2429, 7.2447, 7.2434, 7.2467, 7.2458, 7.2443, 7.2438, 7.2425, 7.2414, 7.2408, 7.2394, 7.2388, 7.242, 7.2407, 7.2356, 7.2383, 7.2382, 7.2334, 7.2369, 7.2367, 7.2352, 7.2382, 7.2414, 7.2401, 7.2388, 7.2374, 7.2326, 7.2313, 7.2299, 7.2294, 7.2279, 7.2274, 7.2261, 7.2247, 7.2273, 7.2264, 7.2254, 7.2248, 7.2242, 7.2233, 7.2183, 7.2138, 7.2216, 7.2209, 7.2199, 7.2186, 7.2137, 7.2092, 7.2082, 7.2045, 7.2042, 7.2034, 7.2027, 7.2018, 7.2009, 7.1999, 7.1993, 7.1979, 7.1973, 7.1959, 7.1949, 7.1936, 7.1922, 7.195, 7.1936, 7.1922, 7.1921, 7.1907, 7.1902, 7.1895, 7.1881, 7.1874, 7.1861, 7.186, 7.1852, 7.1841, 7.184, 7.1879, 7.1868, 7.1866, 7.1857, 7.186, 7.1863, 7.1849, 7.188, 7.1947, 7.1976, 7.1973, 7.1959, 7.1946, 7.1993, 7.2078, 7.2068, 7.2065, 7.2066, 7.2097, 7.2137, 7.217, 7.2156, 7.2142, 7.2136, 7.2127, 7.216, 7.2147, 7.2134, 7.212, 7.2117, 7.2108, 7.2094, 7.2086, 7.2115, 7.2144, 7.2131, 7.2118, 7.2111, 7.2103, 7.2091, 7.2077, 7.2073, 7.2066, 7.2022, 7.2009, 7.1997, 7.1987, 7.1974, 7.2005, 7.2034, 7.2026, 7.2054, 7.2014, 7.1978, 7.1935, 7.1925, 7.1913, 7.19, 7.1932, 7.1923, 7.1912, 7.194, 7.1931, 7.1922, 7.1908, 7.1866, 7.1869, 7.1862, 7.1859, 7.1886, 7.1915, 7.1902, 7.186, 7.1888, 7.1878, 7.1864, 7.185, 7.184, 7.1827, 7.1814, 7.1842, 7.1828, 7.1815, 7.1811, 7.1798, 7.1787, 7.1774, 7.1767, 7.1755, 7.1743, 7.1738, 7.1764, 7.1752, 7.1741, 7.1734, 7.176, 7.1789, 7.1776, 7.1803, 7.1793, 7.1787, 7.1782, 7.1771, 7.1797, 7.1784, 7.1772, 7.1767, 7.1763, 7.1753, 7.1744, 7.1771, 7.1761, 7.1751, 7.1738, 7.1766, 7.1753, 7.1781, 7.1771, 7.1799, 7.1826, 7.1817, 7.1806, 7.1833, 7.1831, 7.1823, 7.1817, 7.1845, 7.1843, 7.1834, 7.1831, 7.182, 7.1807, 7.1802, 7.1792, 7.1786, 7.1779, 7.1766, 7.1724, 7.1685, 7.1673, 7.1667, 7.1696, 7.1692, 7.168, 7.1678, 7.167, 7.1661, 7.1659, 7.1685, 7.1714, 7.1703, 7.1692, 7.1803, 7.1798, 7.1824, 7.178, 7.1742, 7.1796, 7.1799, 7.1868, 7.1859, 7.1849, 7.1837, 7.1825, 7.1818, 7.1815, 7.1841, 7.1799, 7.1794, 7.179, 7.1785, 7.1773, 7.1764, 7.1763, 7.1756, 7.1745, 7.1736, 7.1725, 7.1713, 7.174, 7.1735, 7.1725, 7.1719, 7.1717, 7.1707, 7.1695, 7.1728, 7.1717, 7.1743, 7.1733, 7.1723, 7.171, 7.1708, 7.1699, 7.1693, 7.1686, 7.1718, 7.1709, 7.1697, 7.172, 7.1709, 7.1699, 7.1693, 7.1681, 7.1676, 7.1664, 7.1652, 7.1684, 7.1674, 7.1664, 7.1652, 7.1612, 7.1617, 7.1608, 7.1634, 7.1628, 7.1619, 7.1643, 7.1634, 7.1632, 7.1621, 7.1674, 7.1666, 7.1655, 7.1642, 7.1766, 7.1755, 7.1763, 7.176, 7.1749, 7.1756, 7.1745, 7.1745, 7.1734, 7.1759, 7.1752, 7.1739, 7.1763, 7.1751, 7.1738, 7.1727, 7.1718, 7.1743, 7.1732, 7.1722, 7.1717, 7.1747, 7.1738, 7.1765, 7.1755, 7.1748, 7.1749, 7.1774, 7.1762, 7.1753, 7.1777, 7.1741, 7.1732, 7.1722, 7.1748, 7.1737, 7.1761, 7.1755, 7.1782, 7.1775, 7.1763, 7.1755, 7.1743, 7.1768, 7.1793, 7.1816, 7.1841, 7.183, 7.1822, 7.181, 7.1799, 7.1791, 7.178, 7.1769, 7.1793, 7.1782, 7.1771, 7.1766, 7.1791, 7.1814, 7.1846, 7.1836, 7.1826, 7.1814, 7.1807, 7.1796, 7.1786, 7.1776, 7.1769, 7.1731, 7.1758, 7.1757, 7.1757, 7.1747, 7.1742, 7.1738, 7.173, 7.1732, 7.1721, 7.1716, 7.1711, 7.1737, 7.1738, 7.1764, 7.1796, 7.1785, 7.1779, 7.1773, 7.1763, 7.1796, 7.1788, 7.1777, 7.1807, 7.1805, 7.1831, 7.1819, 7.1814, 7.1807, 7.1839, 7.183, 7.182, 7.1814, 7.181, 7.1832, 7.1864, 7.1934, 7.1924, 7.1919, 7.1907, 7.1899, 7.189, 7.1913, 7.1906, 7.1894, 7.1959, 7.1955, 7.1962, 7.1953, 7.1943, 7.1934, 7.193, 7.1921, 7.1914, 7.1972, 7.1969, 7.1958, 7.1956, 7.195, 7.1947, 7.1941, 7.1932, 7.1926, 7.1916, 7.1915, 7.1904, 7.1894, 7.1887, 7.1907, 7.1896, 7.1886, 7.1848, 7.1836, 7.1825, 7.1816, 7.1805, 7.1826, 7.1818, 7.1807, 7.18, 7.1788, 7.1783, 7.1779, 7.1774, 7.1763, 7.1754, 7.1747, 7.1736, 7.1728, 7.1691, 7.1721, 7.1711, 7.1705, 7.17, 7.1696, 7.1686, 7.169, 7.169, 7.1682, 7.1675, 7.1695, 7.1694, 7.1691, 7.1727, 7.1738, 7.1774, 7.1767, 7.176, 7.1756, 7.173, 7.1722, 7.1715, 7.1738, 7.1739, 7.1738, 7.173, 7.1723, 7.1745, 7.1741, 7.1733, 7.1756, 7.1756, 7.1746, 7.1738, 7.1733, 7.1729, 7.1751, 7.1748, 7.1768, 7.1788, 7.1811, 7.181, 7.1772, 7.1769, 7.1764, 7.1755, 7.1744, 7.1735, 7.1726, 7.1716, 7.1713, 7.1706, 7.1696, 7.1691, 7.1657, 7.1653, 7.1642, 7.1677, 7.167, 7.166, 7.165, 7.1642, 7.1662, 7.1651, 7.1641, 7.1635, 7.1624, 7.1618, 7.1615, 7.1607, 7.1599, 7.1623, 7.1619, 7.161, 7.1605, 7.1627, 7.1625, 7.1624, 7.1617, 7.1613, 7.1608, 7.1599, 7.159, 7.1587, 7.1579, 7.16, 7.1592, 7.1614, 7.1607, 7.1599, 7.1593, 7.1585, 7.1577, 7.157, 7.1564, 7.1576, 7.1566, 7.1556, 7.1579, 7.1589, 7.1613, 7.1608, 7.1599, 7.1593, 7.162, 7.1613, 7.1608, 7.1601, 7.1599, 7.1594, 7.1618, 7.1608, 7.1605, 7.1629, 7.1624, 7.1614, 7.1607, 7.1602, 7.1593, 7.1582, 7.1574, 7.1573, 7.1563, 7.1557, 7.1552, 7.1543, 7.1564, 7.1554, 7.1575, 7.1569, 7.1563, 7.1588, 7.1579, 7.1572, 7.1567, 7.1564, 7.1612, 7.1633, 7.1623, 7.1643, 7.1666, 7.1661, 7.1654, 7.1703, 7.1729, 7.1721, 7.1741, 7.1739, 7.1732, 7.1722, 7.1715, 7.1709, 7.17, 7.1693, 7.1722, 7.1717, 7.1713, 7.1705, 7.1728, 7.1719, 7.1716, 7.1738, 7.1736, 7.1727, 7.1717, 7.1712, 7.1732, 7.1725, 7.1724, 7.1717, 7.1716, 7.1712, 7.1733, 7.1727, 7.178, 7.18, 7.1793, 7.1814, 7.1806, 7.18, 7.1792, 7.1787, 7.1809, 7.1802, 7.1796, 7.1786, 7.1779, 7.1799, 7.1821, 7.1816, 7.1808, 7.1798, 7.1818, 7.1808, 7.1805, 7.1801, 7.1819, 7.1812, 7.1804, 7.1798, 7.177, 7.1761, 7.1753, 7.1746, 7.1743, 7.1738, 7.1734, 7.173, 7.1749, 7.1742, 7.1734, 7.1736, 7.1735, 7.1726, 7.1725, 7.1774, 7.177, 7.1769, 7.1763, 7.1754, 7.1746, 7.1738, 7.1731, 7.1724, 7.1715, 7.1718, 7.171, 7.1708, 7.1704, 7.1696, 7.1694, 7.1687, 7.1682, 7.1676, 7.1702, 7.1696, 7.1687, 7.171, 7.17, 7.1693, 7.1687, 7.1681, 7.1678, 7.1669, 7.1659, 7.1653, 7.1674, 7.1665, 7.1658, 7.1678, 7.1672, 7.1663, 7.1657, 7.1676, 7.1677, 7.1667, 7.1634, 7.1601, 7.1623, 7.1614, 7.1606, 7.1599, 7.1595, 7.1592, 7.1613, 7.1609, 7.16, 7.1597, 7.1589, 7.1607, 7.163, 7.1654, 7.1648, 7.1641, 7.1637, 7.1632, 7.1626, 7.162, 7.1617, 7.1608, 7.1599, 7.1593, 7.1587, 7.158, 7.1601, 7.162, 7.164, 7.1634, 7.1626, 7.1645, 7.1642, 7.164, 7.1631, 7.1623, 7.1621, 7.1613, 7.1605, 7.1609, 7.1629, 7.1621, 7.1617, 7.161, 7.1602, 7.1625, 7.1619, 7.1612, 7.1606, 7.1599, 7.1592, 7.1583, 7.1575, 7.1567, 7.1559, 7.1552, 7.1544, 7.1547, 7.154, 7.1548, 7.1539, 7.1534, 7.1558, 7.1582, 7.1575, 7.1566, 7.1587, 7.1606, 7.1602, 7.1598, 7.1597, 7.1589, 7.158, 7.1577, 7.1569, 7.156, 7.1555, 7.1554, 7.1577, 7.1571, 7.1592, 7.1613, 7.1626, 7.1621, 7.1618, 7.1612, 7.1604, 7.1599, 7.1591, 7.161, 7.1606, 7.1598, 7.1592, 7.1588, 7.1559, 7.1552, 7.1544, 7.1536, 7.1529, 7.1604, 7.1597, 7.1589, 7.1584, 7.1604, 7.1597, 7.1589, 7.1583, 7.1601, 7.1594, 7.1589, 7.1581, 7.1572, 7.1565, 7.1558, 7.1549, 7.1568, 7.1561, 7.1578, 7.1579, 7.1571, 7.1564, 7.1557, 7.1577, 7.1574, 7.1567, 7.1561, 7.1557, 7.155, 7.1546, 7.1539, 7.1531, 7.1523, 7.1515, 7.1506, 7.1498, 7.1516, 7.1508, 7.15, 7.1492, 7.1509, 7.1528, 7.1519, 7.1536, 7.1554, 7.1547, 7.1539, 7.1508, 7.1499, 7.1496, 7.149, 7.1538, 7.1533, 7.1525, 7.1528, 7.1526, 7.152, 7.1537, 7.1565, 7.1562, 7.1561, 7.1552, 7.1543, 7.1512, 7.1506, 7.15, 7.1493, 7.1487, 7.1487, 7.1479, 7.1473, 7.1466, 7.146, 7.1452, 7.1446, 7.1441, 7.1435, 7.1435, 7.1428, 7.1424, 7.1444, 7.1444, 7.1462, 7.1455, 7.1447, 7.1438, 7.1432, 7.1427, 7.1445, 7.1463, 7.1455, 7.1475, 7.1467, 7.1463, 7.1457, 7.1453, 7.1445, 7.1438, 7.1432, 7.1425, 7.1427, 7.1419, 7.1437, 7.1434, 7.1433, 7.1428, 7.1423, 7.1415, 7.1407, 7.1402, 7.142, 7.1438, 7.143, 7.1423, 7.1393, 7.1386, 7.1382, 7.1429, 7.1425, 7.1397, 7.1391, 7.1387, 7.1379, 7.1396, 7.1391, 7.1387, 7.138, 7.1376, 7.1375, 7.1367, 7.1361, 7.1354, 7.1346, 7.1371, 7.1369, 7.1364, 7.1356, 7.135, 7.1342, 7.1334, 7.1333, 7.1324, 7.1342, 7.1344, 7.1337, 7.133, 7.1322, 7.1319, 7.1318, 7.1313, 7.1333, 7.1354, 7.1351, 7.135, 7.1342, 7.1335, 7.1328, 7.1321, 7.1314, 7.1332, 7.133, 7.1322, 7.1315, 7.1313, 7.1315, 7.1308, 7.1328, 7.1323, 7.1342, 7.1335, 7.1331, 7.1328, 7.1345, 7.1364, 7.1358, 7.1354, 7.1345, 7.1362, 7.1356, 7.135, 7.1342, 7.1337, 7.1333, 7.1353, 7.1371, 7.1367, 7.1359, 7.1331, 7.1325, 7.1324, 7.1317, 7.1356, 7.1351, 7.1344, 7.1336, 7.1335, 7.1327, 7.132, 7.1338, 7.1332, 7.1348, 7.134, 7.1332, 7.1324, 7.1319, 7.1318, 7.132, 7.1317, 7.131, 7.1311, 7.1305, 7.1276, 7.127, 7.1264, 7.1258, 7.1275, 7.1268, 7.1283, 7.1382, 7.1378, 7.1371, 7.1343, 7.1336, 7.1331, 7.1325, 7.1317, 7.1315, 7.1308, 7.1304, 7.1298, 7.1295, 7.1288, 7.128, 7.1276, 7.127, 7.1274, 7.1292, 7.1285, 7.1299, 7.1292, 7.1314, 7.1308, 7.1303, 7.1305, 7.1354, 7.1349, 7.1325, 7.1317, 7.131, 7.1303, 7.13, 7.1322, 7.1339, 7.1355, 7.135, 7.1346, 7.1344, 7.1338, 7.1355, 7.1373, 7.1381, 7.1374, 7.1371, 7.1363, 7.1355, 7.1352, 7.1345, 7.134, 7.1337, 7.1337, 7.1335, 7.1331, 7.1323, 7.134, 7.1359, 7.1353, 7.1345, 7.1392, 7.1398, 7.1396, 7.1414, 7.1407, 7.1425, 7.1423, 7.1417, 7.1411, 7.1405, 7.1421, 7.1438, 7.1453, 7.1447, 7.144, 7.1459, 7.1453, 7.1446, 7.1441, 7.1434, 7.143, 7.1446, 7.1439, 7.1456, 7.1448, 7.1463, 7.1456, 7.1472, 7.147, 7.1486, 7.1502, 7.1516, 7.1513, 7.1506, 7.1506, 7.1499, 7.1494, 7.151, 7.1503, 7.15, 7.1493, 7.1486, 7.1502, 7.1499, 7.1473, 7.1489, 7.1481, 7.1501, 7.1496, 7.1513, 7.1506, 7.1503, 7.1495, 7.1488, 7.1483, 7.1476, 7.147, 7.1462, 7.1457, 7.145, 7.1466, 7.1462, 7.1477, 7.1471, 7.1466, 7.1461, 7.1457, 7.1449, 7.1465, 7.1481, 7.1476, 7.1469, 7.1443, 7.1438, 7.143, 7.1424, 7.1439, 7.1454, 7.1451, 7.1428, 7.1422, 7.1417, 7.142, 7.1416, 7.1408, 7.1424, 7.1418, 7.1414, 7.1409, 7.1402, 7.1437, 7.1451, 7.1451, 7.1444, 7.1459, 7.1454, 7.1448, 7.145, 7.1466, 7.1462, 7.1455, 7.1451, 7.1448, 7.1466, 7.1463, 7.1461, 7.1481, 7.1474, 7.1466, 7.146, 7.1452, 7.1444, 7.1442, 7.1437, 7.1431, 7.1446, 7.1465, 7.1462, 7.1458, 7.1472, 7.1472, 7.1489, 7.1492, 7.1466, 7.1486, 7.1479, 7.1475, 7.1472, 7.1486, 7.1481, 7.1475, 7.1471, 7.1466, 7.1458, 7.1457, 7.1471, 7.1467, 7.1482, 7.1475, 7.1468, 7.1465, 7.1458, 7.1474, 7.1476, 7.1492, 7.1485, 7.148, 7.1476, 7.1468, 7.1462, 7.1479, 7.1456, 7.145, 7.1449, 7.1448, 7.1442, 7.1439, 7.1432, 7.1425, 7.1419, 7.1414, 7.1409, 7.1406, 7.1402, 7.1401, 7.1395, 7.139, 7.1406, 7.1426, 7.1401, 7.144, 7.1433, 7.1429, 7.1462, 7.1477, 7.1494, 7.1488, 7.1484, 7.1479, 7.1473, 7.1488, 7.1482, 7.1476, 7.1472, 7.1468, 7.1444, 7.1438, 7.1431, 7.1426, 7.1421, 7.1417, 7.1414, 7.1407, 7.1405, 7.1402, 7.1397, 7.139, 7.1406, 7.1399, 7.1394, 7.1388, 7.1385, 7.138, 7.1375, 7.1371, 7.1364, 7.1357, 7.135, 7.1363, 7.1361, 7.1376, 7.1369, 7.1364, 7.1367, 7.1384, 7.1378, 7.1371, 7.1367, 7.1361, 7.1335, 7.131, 7.1305, 7.1298, 7.1291, 7.1286, 7.1279, 7.1272, 7.1287, 7.1283, 7.1279, 7.1275, 7.1268, 7.1261, 7.1256, 7.1249, 7.1263, 7.1263, 7.1258, 7.1253, 7.1249, 7.1245, 7.1239, 7.1235, 7.1211, 7.1206, 7.122, 7.1217, 7.1211, 7.1204, 7.1199, 7.1196, 7.1193, 7.1189, 7.1207, 7.1201, 7.1197, 7.119, 7.1165, 7.1166, 7.1168, 7.1163, 7.1161, 7.1196, 7.119, 7.1205, 7.1201, 7.1176, 7.117, 7.1186, 7.1201, 7.1182, 7.1175, 7.1189, 7.1202, 7.1195, 7.1209, 7.1184, 7.1178, 7.1174, 7.1167, 7.1162, 7.1156, 7.1149, 7.1146, 7.1143, 7.1138, 7.1164, 7.1157, 7.1152, 7.1154, 7.1174, 7.1172, 7.117, 7.1167, 7.116, 7.1154, 7.1152, 7.1183, 7.1178, 7.119, 7.1187, 7.1201, 7.1194, 7.1191, 7.1205, 7.12, 7.1196, 7.1192, 7.1189, 7.1183, 7.1176, 7.1171, 7.1187, 7.1182, 7.1177, 7.1174, 7.1189, 7.1187, 7.1185, 7.1181, 7.1178, 7.1179, 7.1173, 7.117, 7.117, 7.1186, 7.1163, 7.1156, 7.116, 7.1154, 7.117, 7.1186, 7.1183, 7.1176, 7.1174, 7.1169, 7.1163, 7.1158, 7.1152, 7.1169, 7.1165, 7.1163, 7.1158, 7.1152, 7.1146, 7.1144, 7.1142, 7.1137, 7.1131, 7.1125, 7.1102, 7.11, 7.1119, 7.1116, 7.1112, 7.1108, 7.1103, 7.11, 7.1096, 7.109, 7.1086, 7.108, 7.1078, 7.1076, 7.1071, 7.1066, 7.1059, 7.1055, 7.1051, 7.1049, 7.1044, 7.1061, 7.1059, 7.1052, 7.1065, 7.1062, 7.1078, 7.1072, 7.1065, 7.1058, 7.1051, 7.1065, 7.108, 7.1094, 7.1088, 7.1085, 7.1079, 7.1075, 7.1068, 7.1083, 7.1098, 7.1095, 7.1103, 7.1098, 7.1093, 7.1092, 7.1091, 7.1088, 7.1087, 7.1085, 7.1079, 7.1076, 7.1091, 7.1087, 7.1081, 7.1075, 7.107, 7.1063, 7.108, 7.1066, 7.1061, 7.1056, 7.1051, 7.1047, 7.1042, 7.1038, 7.1033, 7.1028, 7.1027, 7.1021, 7.1037, 7.1036, 7.1035, 7.1029, 7.1025, 7.1042, 7.1056, 7.1051, 7.1045, 7.1038, 7.1032, 7.1026, 7.102, 7.1034, 7.1028, 7.1023, 7.1051, 7.1049, 7.1063, 7.1059, 7.1052, 7.1051, 7.1031, 7.1025, 7.1069, 7.1064, 7.1058, 7.1072, 7.1067, 7.1061, 7.1056, 7.1051, 7.1067, 7.106, 7.1055, 7.1053, 7.1049, 7.1062, 7.1062, 7.1063, 7.1076, 7.1071, 7.1069, 7.1065, 7.1122, 7.1116, 7.1112, 7.1105, 7.11, 7.1098, 7.1076, 7.1056, 7.1054, 7.105, 7.1047, 7.1045, 7.1039, 7.1036, 7.1035, 7.1029, 7.1025, 7.1021, 7.1019, 7.1012, 7.1006, 7.1006, 7.1, 7.1002, 7.0998, 7.0992, 7.0987, 7.0983, 7.0977, 7.0977, 7.0971, 7.0971, 7.0968, 7.0969, 7.0963, 7.0957, 7.0954, 7.0948, 7.0942, 7.0956, 7.097, 7.0966, 7.098, 7.0974, 7.0968, 7.0982, 7.0997, 7.099, 7.0986, 7.0982, 7.0995, 7.0988, 7.0986, 7.0981, 7.0995, 7.1007, 7.1031, 7.1044, 7.104, 7.1034, 7.1031, 7.103, 7.1027, 7.1026, 7.102, 7.1014, 7.1008, 7.1003, 7.0999, 7.1013, 7.1007, 7.1005, 7.1003, 7.1005, 7.1, 7.1014, 7.1009, 7.1023, 7.1017, 7.1031, 7.1029, 7.1027, 7.1023, 7.102, 7.1015, 7.1012, 7.1007, 7.1004, 7.0998, 7.0992, 7.1015, 7.1012, 7.1007, 7.1001, 7.0997, 7.0994, 7.1007, 7.1003, 7.1001, 7.0996, 7.0994, 7.0988, 7.0985, 7.098, 7.1001, 7.0995, 7.0992, 7.0971, 7.0969, 7.1003, 7.0997, 7.102, 7.1029, 7.1026, 7.1021, 7.1016, 7.1031, 7.1012, 7.1008, 7.1007, 7.1002, 7.0997, 7.0994, 7.0988, 7.0982, 7.0979, 7.0975, 7.0969, 7.0964, 7.0976, 7.0974, 7.097, 7.0969, 7.0963, 7.0976, 7.097, 7.095, 7.0947, 7.0944, 7.0939, 7.0936, 7.0932, 7.0926, 7.0925, 7.0922, 7.0918, 7.0913, 7.0908, 7.0905, 7.0899, 7.0893, 7.0891, 7.089, 7.0888, 7.0899, 7.0894, 7.0889, 7.0884, 7.0879, 7.0876, 7.0871, 7.0866, 7.086, 7.0854, 7.0848, 7.0845, 7.084, 7.0835, 7.0848, 7.0842, 7.0838, 7.0834, 7.0829, 7.0826, 7.0826, 7.0839, 7.0852, 7.0833, 7.0831, 7.0829, 7.0824, 7.0839, 7.0833, 7.083, 7.0846, 7.0841, 7.0836, 7.0832, 7.0827, 7.0833, 7.0828, 7.0827, 7.0826, 7.0824, 7.082, 7.084, 7.0835, 7.0849, 7.0843, 7.0839, 7.0852, 7.0865, 7.0867, 7.0865, 7.086, 7.0857, 7.0854, 7.085, 7.0847, 7.0843, 7.0839, 7.0851, 7.0848, 7.0827, 7.0825, 7.0821, 7.0833, 7.0847, 7.0842, 7.0856, 7.0854, 7.0852, 7.0866, 7.0861, 7.0857, 7.0852, 7.0851, 7.0845, 7.0842, 7.0837, 7.0833, 7.0831, 7.0826, 7.0821, 7.0818, 7.0797, 7.0794, 7.0793, 7.0788, 7.0801, 7.0798, 7.0809, 7.0803, 7.0801, 7.0796, 7.0812, 7.0811, 7.0807, 7.0803, 7.0803, 7.0799, 7.0795, 7.0789, 7.0786, 7.0786, 7.078, 7.0778, 7.0774, 7.077, 7.0765, 7.0777, 7.0774, 7.0769, 7.0767, 7.0763, 7.0761, 7.0755, 7.075, 7.0745, 7.0756, 7.0751, 7.0745, 7.0743, 7.0758, 7.0738, 7.0735, 7.0733, 7.0728, 7.0725, 7.0721, 7.0736, 7.0731, 7.0743, 7.0756, 7.0752, 7.0747, 7.076, 7.0754, 7.0749, 7.0745, 7.0739, 7.0751, 7.0749, 7.0763, 7.076, 7.0759, 7.0757, 7.0756, 7.0754, 7.0754, 7.075, 7.0745, 7.0741, 7.0739, 7.0752, 7.0754, 7.0802, 7.0816, 7.0846, 7.0845, 7.0839, 7.0835, 7.083, 7.0843, 7.0838, 7.0836, 7.0832, 7.0827, 7.084, 7.0843, 7.084, 7.0835, 7.0836, 7.0831, 7.0844, 7.0858, 7.0854, 7.0851, 7.0848, 7.0845, 7.0843, 7.0839, 7.0833, 7.0828, 7.0826, 7.0822, 7.0825, 7.0821, 7.082, 7.0815, 7.0811, 7.0842, 7.0827, 7.0822, 7.082, 7.0819, 7.0815, 7.0828, 7.0828, 7.0822, 7.082, 7.0814, 7.0827, 7.0823, 7.0819, 7.083, 7.0824, 7.082, 7.0815, 7.0817, 7.0812, 7.0809, 7.0821, 7.0815, 7.0809, 7.0804, 7.0799, 7.0796, 7.0794, 7.0817, 7.0817, 7.0813, 7.0809, 7.0807, 7.0807, 7.0808, 7.0819, 7.0817, 7.0829, 7.0825, 7.0826, 7.0823, 7.0818, 7.083, 7.0859, 7.0857, 7.0852, 7.0847, 7.0845, 7.084, 7.0836, 7.0831, 7.0826, 7.084, 7.0835, 7.0831, 7.0827, 7.0839, 7.0851, 7.0846, 7.0841, 7.0839, 7.0836, 7.0849, 7.0847, 7.0847, 7.0843, 7.0838, 7.0834, 7.0829, 7.0825, 7.0823, 7.0852, 7.0849, 7.0845, 7.084, 7.0839, 7.0834, 7.0832, 7.0845, 7.0841, 7.0836, 7.0831, 7.083, 7.0831, 7.0855, 7.0851, 7.085, 7.0848, 7.0878, 7.0858, 7.0853, 7.0849, 7.085, 7.0844, 7.0845, 7.0841, 7.0842, 7.0836, 7.0831, 7.0825, 7.0819, 7.0813, 7.0824, 7.0837, 7.0833, 7.0844, 7.0838, 7.0834, 7.0834, 7.0831, 7.0844, 7.0841, 7.086, 7.0894, 7.0906, 7.0912, 7.0916, 7.0911, 7.0912, 7.0911, 7.0908, 7.0905, 7.0916, 7.0915, 7.0915, 7.091, 7.0904, 7.0914, 7.0927, 7.0922, 7.0919, 7.0933, 7.0947, 7.0943, 7.0937, 7.0934, 7.0929, 7.0926, 7.0923, 7.0919, 7.0914, 7.0911, 7.0925, 7.0938, 7.0938, 7.0934, 7.093, 7.094, 7.0953, 7.0968, 7.0964, 7.0978, 7.0974, 7.0988, 7.1002, 7.1003, 7.1014, 7.1029, 7.1044, 7.1042, 7.104, 7.1035, 7.1036, 7.1035, 7.1047, 7.1043, 7.1043, 7.1039, 7.1054, 7.1051, 7.1063, 7.1074, 7.1068, 7.1065, 7.1061, 7.106, 7.1071, 7.1066, 7.1062, 7.1058, 7.1056, 7.1052, 7.1067, 7.108, 7.1075, 7.1071, 7.1067, 7.108, 7.1075, 7.107, 7.1067, 7.1063, 7.1058, 7.1052, 7.1046, 7.1042, 7.1038, 7.1035, 7.1031, 7.103, 7.104, 7.104, 7.1038, 7.1037, 7.1034, 7.1031, 7.103, 7.1028, 7.1024, 7.1007, 7.1003, 7.0998, 7.0993, 7.0995, 7.0991, 7.0986, 7.0984, 7.0983, 7.098, 7.0977, 7.0972, 7.0968, 7.098, 7.1007, 7.1092, 7.1091, 7.1087, 7.1082, 7.1079, 7.1077, 7.1072, 7.1083, 7.1081, 7.1092, 7.1092, 7.1103, 7.1099, 7.1094, 7.109, 7.1072, 7.1082, 7.1078, 7.1073, 7.1085, 7.108, 7.108, 7.1075, 7.1119, 7.1114, 7.1109, 7.1125, 7.1121, 7.112, 7.1115, 7.111, 7.1121, 7.1134, 7.113, 7.1125, 7.1123, 7.1117, 7.1115, 7.1126, 7.1122, 7.1133, 7.113, 7.1127, 7.1125, 7.112, 7.1132, 7.1144, 7.1139, 7.1134, 7.1129, 7.1124, 7.1123, 7.1119, 7.113, 7.1128, 7.1124, 7.1122, 7.1149, 7.1163, 7.1159, 7.1188, 7.1184, 7.1182, 7.1166, 7.1162, 7.1158, 7.1154, 7.115, 7.1145, 7.114, 7.1138, 7.1119, 7.1131, 7.1127, 7.1122, 7.1131, 7.1143, 7.1138, 7.1151, 7.1147, 7.1158, 7.1154, 7.1149, 7.1144, 7.1143, 7.1188, 7.1193, 7.1211, 7.1213, 7.1211, 7.1207, 7.1205, 7.1203, 7.1185, 7.1197, 7.1195, 7.1191, 7.1186, 7.1182, 7.1209, 7.1205, 7.1202, 7.1198, 7.1196, 7.1191, 7.1175, 7.1187, 7.1183, 7.1181, 7.1178, 7.1174, 7.117, 7.1166, 7.1164, 7.1161, 7.1158, 7.1154, 7.1149, 7.1146, 7.1143, 7.1141, 7.1137, 7.1132, 7.1129, 7.1157, 7.1156, 7.1152, 7.1138, 7.1134, 7.1132, 7.116, 7.1171, 7.119, 7.1186, 7.1185, 7.1181, 7.1179, 7.1175, 7.1189, 7.1203, 7.1199, 7.1194, 7.119, 7.12, 7.1198, 7.1195, 7.1193, 7.1189, 7.1186, 7.1183, 7.1195, 7.1178, 7.1175, 7.1175, 7.117, 7.1166, 7.1161, 7.1156, 7.1166, 7.1163, 7.116, 7.1156, 7.1157, 7.1154, 7.1151, 7.1148, 7.1144, 7.1145, 7.1168, 7.1165, 7.1149, 7.1147, 7.1157, 7.1152, 7.1168, 7.1164, 7.116, 7.1162, 7.1158, 7.1156, 7.1138, 7.1121, 7.1121, 7.1116, 7.1113, 7.1109, 7.1121, 7.1132, 7.1128, 7.1125, 7.1136, 7.1145, 7.1141, 7.1137, 7.1134, 7.1146, 7.1142, 7.1152, 7.1147, 7.1142, 7.114, 7.1136, 7.1132, 7.1128, 7.1126, 7.1123, 7.1107, 7.1106, 7.1101, 7.1097, 7.1095, 7.109, 7.1085, 7.108, 7.1077, 7.1072, 7.1067, 7.1063, 7.1074, 7.107, 7.107, 7.1065, 7.1109, 7.112, 7.1134, 7.1131, 7.1127, 7.1124, 7.112, 7.1115, 7.1114, 7.1111, 7.1106, 7.1104, 7.1101, 7.1096, 7.1091, 7.1086, 7.1082, 7.108, 7.1077, 7.1073, 7.1069, 7.1081, 7.1078, 7.1073, 7.1068, 7.1063, 7.1059, 7.1042, 7.104, 7.1035, 7.1031, 7.1028, 7.1038, 7.1036, 7.1032, 7.1028, 7.1054, 7.1052, 7.1051, 7.1048, 7.1049, 7.1031, 7.1042, 7.1038, 7.1034, 7.103, 7.1025, 7.1025, 7.1021, 7.1018, 7.1014, 7.101, 7.1005, 7.1001, 7.1, 7.0996, 7.0995, 7.0993, 7.099, 7.0986, 7.0982, 7.098, 7.0977, 7.0974, 7.0957, 7.0953, 7.0949, 7.0945, 7.0955, 7.0952, 7.0965, 7.0961, 7.0957, 7.0968, 7.0964, 7.096, 7.0957, 7.0955, 7.0952, 7.0948, 7.0932, 7.093, 7.0929, 7.0925, 7.0921, 7.0933, 7.093, 7.0926, 7.0923, 7.0922, 7.0918, 7.0929, 7.0941, 7.0939, 7.0935, 7.093, 7.0928, 7.0924, 7.0921, 7.092, 7.0932, 7.0929, 7.0926, 7.0922, 7.0934, 7.0933, 7.0929, 7.094, 7.0953, 7.0949, 7.0945, 7.0944, 7.094, 7.0936, 7.0937, 7.0934, 7.093, 7.0925, 7.0927, 7.0923, 7.0907, 7.0902, 7.0898, 7.0899, 7.0898, 7.0898, 7.0914, 7.0912, 7.0964, 7.096, 7.097, 7.1018, 7.1014, 7.1009, 7.1019, 7.1015, 7.1025, 7.1008, 7.101, 7.1009, 7.1019, 7.1029, 7.1025, 7.1021, 7.1018, 7.1018, 7.1014, 7.1024, 7.1035, 7.1031, 7.1026, 7.1022, 7.1018, 7.1017, 7.1016, 7.1014, 7.101, 7.1007, 7.1017, 7.1001, 7.0984, 7.0968, 7.1007, 7.1017, 7.1013, 7.1012, 7.1007, 7.1005, 7.1002, 7.0999, 7.0995, 7.0983, 7.0981, 7.0976, 7.0988, 7.0984, 7.098, 7.0978, 7.0974, 7.097, 7.0967, 7.0966, 7.0962, 7.0975, 7.0973, 7.0969, 7.0967, 7.0963, 7.0959, 7.0955, 7.0967, 7.0978, 7.0973, 7.0971, 7.0969, 7.0965, 7.095, 7.096, 7.0956, 7.0953, 7.0952, 7.0949, 7.0959, 7.0957, 7.0952, 7.0948, 7.0946, 7.0944, 7.0941, 7.094, 7.0936, 7.0933, 7.0935, 7.0932, 7.0943, 7.094, 7.0936, 7.0934, 7.095, 7.0947, 7.0943, 7.094, 7.0924, 7.092, 7.0919, 7.0918, 7.0916, 7.0917, 7.0914, 7.0911, 7.0908, 7.0907, 7.0904, 7.0915, 7.0915, 7.0924, 7.0924, 7.0922, 7.0947, 7.0945, 7.0941, 7.0938, 7.0933, 7.093, 7.0915, 7.0927, 7.0923, 7.0934, 7.093, 7.0927, 7.0925, 7.0923, 7.092, 7.0918, 7.0914, 7.0911, 7.0914, 7.0924, 7.0919, 7.0915, 7.0912, 7.0911, 7.0907, 7.0904, 7.0899, 7.0897, 7.0881, 7.0865, 7.086, 7.0859, 7.0857, 7.0853, 7.0851, 7.086, 7.0843, 7.0843, 7.0839, 7.0835, 7.0833, 7.083, 7.084, 7.0836, 7.0832, 7.0833, 7.0829, 7.0813, 7.0798, 7.0794, 7.079, 7.08, 7.0796, 7.0794, 7.0806, 7.0817, 7.0803, 7.0813, 7.0809, 7.0819, 7.0818, 7.0816, 7.0802, 7.0798, 7.0797, 7.0808, 7.0808, 7.0807, 7.0806, 7.0816, 7.0812, 7.0809, 7.0806, 7.0802, 7.0818, 7.0828, 7.0827, 7.0829, 7.0827, 7.0823, 7.0822, 7.0826, 7.0836, 7.0834, 7.0817, 7.0813, 7.081, 7.0835, 7.0831, 7.0843, 7.0855, 7.0851, 7.0851, 7.086, 7.0855, 7.0864, 7.0861, 7.087, 7.0866, 7.0864, 7.0862, 7.0857, 7.0853, 7.085, 7.0848, 7.0832, 7.0842, 7.0838, 7.0836, 7.0833, 7.0845, 7.0849, 7.0851, 7.0879, 7.0874, 7.0871, 7.088, 7.0863, 7.0859, 7.0855, 7.0851, 7.0868, 7.0865, 7.0867, 7.0864, 7.0861, 7.0857, 7.0868, 7.0863, 7.0862, 7.0859, 7.0855, 7.0841, 7.0837, 7.0835, 7.0836, 7.0833, 7.0829, 7.0828, 7.0838, 7.0833, 7.0844, 7.084, 7.0849, 7.0846, 7.0841, 7.0837, 7.0847, 7.0831, 7.0815, 7.0812, 7.0808, 7.0818, 7.0814, 7.081, 7.0806, 7.0805, 7.0805, 7.0814, 7.0826, 7.0822, 7.0818, 7.0829, 7.0828, 7.0828, 7.0824, 7.082, 7.083, 7.0827, 7.0824, 7.082, 7.0818, 7.0814, 7.0825, 7.0813, 7.0797, 7.0799, 7.0786, 7.0782, 7.0777, 7.0774, 7.0774, 7.0772, 7.0784, 7.0781, 7.0778, 7.0776, 7.0785, 7.0783, 7.0767, 7.0753, 7.0751, 7.0747, 7.0757, 7.0756, 7.0755, 7.074, 7.0725, 7.0721, 7.0717, 7.0728, 7.0712, 7.0709, 7.0709, 7.0719, 7.0754, 7.0752, 7.0753, 7.0763, 7.0772, 7.0768, 7.0764, 7.075, 7.0773, 7.0769, 7.0754, 7.0751, 7.076, 7.0756, 7.0793, 7.0788, 7.0785, 7.0782, 7.078, 7.0777, 7.0776, 7.0774, 7.0771, 7.0774, 7.0784, 7.0782, 7.0793, 7.0805, 7.0802, 7.0805, 7.0802, 7.0816, 7.0801, 7.0786, 7.0783, 7.0779, 7.0777, 7.0779, 7.0789, 7.0785, 7.0795, 7.0791, 7.0789, 7.0798, 7.0807, 7.0805, 7.0815, 7.0817, 7.0813, 7.0811, 7.0836, 7.0836, 7.0836, 7.0834, 7.0844, 7.0843, 7.0839, 7.0835, 7.082, 7.0816, 7.0812, 7.0823, 7.0821, 7.0818, 7.0814, 7.0811, 7.081, 7.0807, 7.0804, 7.0814, 7.081, 7.0806, 7.0803, 7.0799, 7.0796, 7.0792, 7.0792, 7.0791, 7.0788, 7.0784, 7.0793, 7.0789, 7.0789, 7.0785, 7.0794, 7.0791, 7.0788, 7.0784, 7.0781, 7.0779, 7.0776, 7.0772, 7.078, 7.0777, 7.0787, 7.0784, 7.078, 7.0777, 7.0774, 7.0758, 7.0757, 7.0755, 7.0751, 7.0748, 7.0748, 7.0745, 7.0744, 7.0732, 7.0744, 7.0743, 7.0739, 7.0749, 7.0751, 7.0762, 7.0759, 7.0755, 7.0753, 7.075, 7.0762, 7.0771, 7.077, 7.0768, 7.0766, 7.0765, 7.0761, 7.0772, 7.077, 7.0767, 7.0766, 7.0777, 7.0774, 7.0761, 7.0771, 7.0769, 7.0766, 7.0766, 7.0752, 7.0748, 7.0758, 7.0754, 7.0738, 7.0734, 7.0731, 7.0727, 7.0724, 7.072, 7.072, 7.0718, 7.073, 7.0755, 7.0752, 7.0748, 7.0746, 7.073, 7.074, 7.0749, 7.0747, 7.0743, 7.0762, 7.0771, 7.077, 7.077, 7.0767, 7.0777, 7.0773, 7.0769, 7.0765, 7.0762, 7.076, 7.0769, 7.0769, 7.0754, 7.0752, 7.075, 7.0746, 7.0743, 7.074, 7.0739, 7.0749, 7.0746, 7.0742, 7.0728, 7.0727, 7.0724, 7.0722, 7.0718, 7.0715, 7.0712, 7.0712, 7.0714, 7.071, 7.0707, 7.0704, 7.0706, 7.0704, 7.0701, 7.0697, 7.0694, 7.0693, 7.069, 7.0687, 7.069, 7.0687, 7.0697, 7.0694, 7.0681, 7.0678, 7.0687, 7.0684, 7.0681, 7.068, 7.0676, 7.0675, 7.0672, 7.0669, 7.0665, 7.0664, 7.0662, 7.0658, 7.0655, 7.0652, 7.0649, 7.0646, 7.0644, 7.0654, 7.0651, 7.065, 7.0658, 7.0669, 7.0666, 7.0663, 7.066, 7.0658, 7.0656, 7.0654, 7.0662, 7.0659, 7.0657, 7.0656, 7.0654, 7.0652, 7.0648, 7.0634, 7.0631, 7.0627, 7.0637, 7.0634, 7.0643, 7.064, 7.065, 7.0646, 7.0646, 7.0646, 7.0668, 7.0664, 7.0663, 7.0661, 7.067, 7.0668, 7.0669, 7.0667, 7.0675, 7.0673, 7.0693, 7.0702, 7.0703, 7.07, 7.0698, 7.0694, 7.069, 7.0686, 7.0673, 7.067, 7.0666, 7.0662, 7.0671, 7.0659, 7.0656, 7.0654, 7.065, 7.066, 7.0656, 7.0653, 7.0649, 7.0645, 7.0642, 7.0641, 7.064, 7.0636, 7.0645, 7.0642, 7.0638, 7.0642, 7.0664, 7.0661, 7.0659, 7.066, 7.066, 7.0658, 7.0657, 7.0655, 7.0663, 7.0661, 7.0658, 7.0654, 7.0652, 7.065, 7.0659, 7.0695, 7.0694, 7.0691, 7.0689, 7.0686, 7.0683, 7.068, 7.0679, 7.0677, 7.0686, 7.0682, 7.0703, 7.07, 7.0699, 7.0698, 7.0695, 7.0694, 7.0698, 7.0697, 7.0693, 7.0692, 7.069, 7.0688, 7.0686, 7.0682, 7.0678, 7.0702, 7.0699, 7.0696, 7.0693, 7.0691, 7.0691, 7.0692, 7.0691, 7.0691, 7.0691, 7.0679, 7.0679, 7.0688, 7.0686, 7.0682, 7.0679, 7.0675, 7.0672, 7.0668, 7.0667, 7.0665, 7.0674, 7.0683, 7.0693, 7.069, 7.0689, 7.0685, 7.0682, 7.068, 7.0677, 7.0676, 7.0684, 7.0683, 7.0696, 7.0683, 7.0679, 7.0678, 7.0675, 7.0672, 7.0672, 7.0669, 7.0668, 7.0664, 7.0661, 7.0661, 7.0658, 7.0655, 7.0655, 7.0652, 7.065, 7.066, 7.0658, 7.0655, 7.0664, 7.0661, 7.0673, 7.0659, 7.0646, 7.0656, 7.0655, 7.0655, 7.0651, 7.0649, 7.0646, 7.0644, 7.0642, 7.0639, 7.0638, 7.0635, 7.0623, 7.0621, 7.0619, 7.0619, 7.0616, 7.0617, 7.0614, 7.0612, 7.061, 7.0608, 7.0606, 7.0593, 7.0603, 7.0604, 7.06, 7.0599, 7.061, 7.0608, 7.0608, 7.0616, 7.0627, 7.0625, 7.0621, 7.0608, 7.0605, 7.0603, 7.0613, 7.06, 7.0597, 7.0585, 7.0588, 7.0586, 7.0589, 7.0587, 7.0585, 7.0582, 7.0587, 7.0587, 7.0584, 7.0572, 7.0588, 7.0592, 7.06, 7.0598, 7.0595, 7.0592, 7.0602, 7.0602, 7.0613, 7.0609, 7.0608, 7.0594, 7.0594, 7.0594, 7.0592, 7.059, 7.0587, 7.0598, 7.0584, 7.0582, 7.0592, 7.0591, 7.0589, 7.0587, 7.0583, 7.0569, 7.0557, 7.0554, 7.0565, 7.0563, 7.0561, 7.0548, 7.0545, 7.0556, 7.0544, 7.0541, 7.0538, 7.0534, 7.0532, 7.054, 7.0538, 7.0535, 7.0533, 7.0541, 7.0537, 7.0546, 7.0542, 7.0539, 7.054, 7.0537, 7.0537, 7.0533, 7.0534, 7.0544, 7.0541, 7.0551, 7.0547, 7.0545, 7.0554, 7.055, 7.0547, 7.0544, 7.0542, 7.0541, 7.0537, 7.0533, 7.0531, 7.0529, 7.0516, 7.0502, 7.0511, 7.0519, 7.0516, 7.0513, 7.0509, 7.0506, 7.0506, 7.0503, 7.0523, 7.0549, 7.0538, 7.0535, 7.0531, 7.0529, 7.0516, 7.0513, 7.0511, 7.051, 7.0506, 7.0504, 7.0515, 7.0515, 7.0523, 7.052, 7.0517, 7.0513, 7.0523, 7.052, 7.0516, 7.0514, 7.0524, 7.052, 7.0518, 7.0516, 7.0513, 7.0509, 7.0508, 7.0516, 7.0513, 7.0513, 7.0512, 7.0508, 7.0525, 7.0522, 7.052, 7.0519, 7.0527, 7.0528, 7.0524, 7.0521, 7.0517, 7.0514, 7.0523, 7.0521, 7.0517, 7.0515, 7.0512, 7.0511, 7.0511, 7.0511, 7.0507, 7.0504, 7.0501, 7.0499, 7.0486, 7.0473, 7.0473, 7.047, 7.0468, 7.0455, 7.0452, 7.0451, 7.0447, 7.0434, 7.043, 7.043, 7.0429, 7.0438, 7.0437, 7.0434, 7.0432, 7.0443, 7.0441, 7.045100000000001, 7.046100000000001, 7.047100000000001, 7.048100000000002, 7.0492, 7.0492, 7.0502, 7.0501, 7.05, 7.05, 7.0499, 7.0496, 7.0507, 7.0503, 7.0499, 7.0496, 7.0493, 7.0479, 7.0476, 7.0486, 7.0483, 7.0479, 7.0487, 7.0485, 7.0481, 7.0479, 7.0466, 7.0464, 7.0461, 7.046, 7.047000000000001, 7.0482, 7.0479, 7.0478, 7.0488, 7.0498, 7.0495, 7.0505, 7.0514, 7.0522, 7.0522, 7.0519, 7.0516, 7.0514, 7.0515, 7.0512, 7.0509, 7.0506, 7.0503, 7.0502, 7.0501, 7.0498, 7.050800000000001, 7.0506, 7.0502, 7.0499, 7.0497, 7.0494, 7.0502, 7.0501, 7.0498, 7.05, 7.0498, 7.0485, 7.0482, 7.0478, 7.0476, 7.0473, 7.047, 7.0466, 7.0476, 7.0532, 7.0529, 7.0527, 7.0535, 7.0531, 7.0528, 7.0526, 7.0542, 7.055, 7.0546, 7.0547, 7.0544, 7.0541, 7.0537, 7.0534, 7.0531, 7.0528, 7.0538, 7.0555, 7.0552, 7.0549, 7.0545, 7.0533, 7.053, 7.055, 7.0547, 7.0579, 7.0577, 7.0573, 7.0581, 7.059, 7.0589, 7.0586, 7.0582, 7.058, 7.0591, 7.06, 7.0597, 7.0605, 7.0602, 7.0599, 7.0598, 7.0596, 7.0593, 7.0592, 7.0588, 7.0586, 7.0597, 7.0595, 7.0592, 7.059, 7.0588, 7.0596, 7.0594, 7.0591, 7.0589, 7.0587, 7.0585, 7.0594, 7.0602, 7.0601, 7.0601, 7.0598, 7.0605, 7.0603, 7.0599, 7.0586, 7.0583, 7.0592, 7.0591, 7.0588, 7.0596, 7.0595, 7.0592, 7.06, 7.0608, 7.0605, 7.0607, 7.0595, 7.0595, 7.0593, 7.0608, 7.0597, 7.0595, 7.0594, 7.0591, 7.0591, 7.0588, 7.0585, 7.0582, 7.0579, 7.0576, 7.0574, 7.0571, 7.0568, 7.0567, 7.0565, 7.0563, 7.0571, 7.0568, 7.0565, 7.0562, 7.056, 7.0558, 7.0545, 7.0532, 7.0529, 7.0527, 7.0523, 7.052, 7.0517, 7.0503, 7.0501, 7.0498, 7.0495, 7.0492, 7.0507, 7.0505, 7.0502, 7.0498, 7.0496, 7.0498, 7.0495, 7.0498, 7.0494, 7.0491, 7.05, 7.0498, 7.05, 7.0497, 7.0494, 7.0491, 7.0489, 7.0486, 7.0483, 7.0483, 7.0481, 7.0491, 7.0489, 7.0497, 7.0495, 7.0492, 7.0491, 7.0489, 7.0486, 7.0494, 7.0491, 7.0501, 7.05, 7.0496, 7.0494, 7.0494, 7.0526, 7.0523, 7.0521, 7.0531, 7.055, 7.0548, 7.0546, 7.0554, 7.0562, 7.0559, 7.0557, 7.0555, 7.0563, 7.0561, 7.0559, 7.0557, 7.0545, 7.0533, 7.052, 7.0518, 7.0527, 7.0516, 7.0514, 7.0511, 7.0508, 7.0516, 7.0524, 7.0522, 7.0519, 7.0518, 7.0515, 7.0502, 7.0511, 7.052, 7.0529, 7.0539, 7.0539, 7.0538, 7.0534, 7.0531, 7.054, 7.054, 7.0538, 7.0536, 7.0532, 7.053, 7.053, 7.0529, 7.0527, 7.0524, 7.0523, 7.0532, 7.052, 7.0524, 7.0521, 7.0518, 7.0515, 7.0524, 7.0521, 7.0522, 7.0532, 7.0532, 7.0533, 7.0533, 7.0531, 7.0518, 7.0516, 7.0513, 7.052300000000001, 7.053300000000001, 7.053, 7.0528, 7.0528, 7.0526, 7.0522, 7.0519, 7.0529, 7.0527, 7.0524, 7.0523, 7.0522, 7.0532, 7.0538, 7.0536, 7.0533, 7.0531, 7.052, 7.0516, 7.0514, 7.0523, 7.0521, 7.0518, 7.0526, 7.0513, 7.0503, 7.0515, 7.0516, 7.0512, 7.051, 7.0519, 7.0516, 7.0514, 7.0514, 7.0512, 7.051, 7.0509, 7.0507, 7.0505, 7.0504, 7.0514, 7.0511, 7.0511, 7.0508, 7.0517, 7.0516, 7.0526, 7.0524, 7.0522, 7.0518, 7.0516, 7.0514, 7.0512, 7.0519, 7.0507, 7.0503, 7.0499, 7.0498, 7.0509, 7.0509, 7.0506, 7.0527, 7.0524, 7.0532, 7.0529, 7.0526, 7.0536, 7.0556, 7.0566, 7.0563, 7.056, 7.0569, 7.0569, 7.0556, 7.0553, 7.0551, 7.0549, 7.0556, 7.0564, 7.0561, 7.056, 7.0557, 7.0566, 7.0565, 7.0563, 7.0551, 7.0548, 7.0545, 7.0542, 7.0549, 7.0548, 7.0546, 7.0553, 7.0552, 7.0551, 7.055, 7.0548, 7.0552, 7.055, 7.0547, 7.0544, 7.0543, 7.054, 7.0537, 7.0535, 7.0533, 7.0554, 7.0551, 7.0548, 7.0566, 7.0565, 7.0582, 7.0588, 7.0596, 7.0604, 7.0601, 7.0601, 7.06, 7.0597, 7.0605, 7.0602, 7.061, 7.0607, 7.0605, 7.0603, 7.0609, 7.0607, 7.0606, 7.0603, 7.0611, 7.0609, 7.0607, 7.0671, 7.0669, 7.0669, 7.0667, 7.0663, 7.0663, 7.0652, 7.0651, 7.0649, 7.0656, 7.0653, 7.0652, 7.065, 7.0661, 7.0658, 7.0656, 7.0653, 7.0653, 7.065, 7.0638, 7.0625, 7.0623, 7.062, 7.0617, 7.0625, 7.0623, 7.0698, 7.0707, 7.0708, 7.0706, 7.0705, 7.0703, 7.0711, 7.0708, 7.0715, 7.0712, 7.072, 7.0718, 7.0716, 7.0717, 7.0716, 7.0714, 7.0711, 7.0708, 7.0705, 7.0702, 7.0702, 7.0699, 7.0698, 7.0695, 7.0693, 7.0692, 7.0692, 7.0699, 7.0696, 7.0707, 7.0704, 7.0701, 7.0698, 7.0728, 7.0725, 7.0724, 7.0712, 7.071, 7.0707, 7.0705, 7.0703, 7.0701, 7.0712, 7.0709, 7.0707, 7.0705, 7.0703, 7.0701, 7.0701, 7.07, 7.0698, 7.0697, 7.0694, 7.0694, 7.0703, 7.0701, 7.0689, 7.0686, 7.0685, 7.0694, 7.0692, 7.069, 7.069, 7.0688, 7.0685, 7.0682, 7.0691, 7.0691, 7.07, 7.0697, 7.0705, 7.0703, 7.0701, 7.0699, 7.0698, 7.0705, 7.0702, 7.0709, 7.0707, 7.0704, 7.0701, 7.0698, 7.0708, 7.0697, 7.0699, 7.0698, 7.0706, 7.0715, 7.0716, 7.0713, 7.0722, 7.0721, 7.0718, 7.0717, 7.0706, 7.0703, 7.0691, 7.0688, 7.0686, 7.0684, 7.0692, 7.069, 7.0689, 7.0687, 7.0684, 7.0692, 7.069, 7.0689, 7.0688, 7.0696, 7.0693, 7.0692, 7.07, 7.0699, 7.0698, 7.0695, 7.0692, 7.0689, 7.0686, 7.0683, 7.0694, 7.0702, 7.07, 7.0697, 7.0694, 7.071, 7.0717, 7.0725, 7.0732, 7.0729, 7.0729, 7.0727, 7.0735, 7.0734, 7.0732, 7.0731, 7.0728, 7.0736, 7.0744, 7.0741, 7.0738, 7.0737, 7.0737, 7.0734, 7.0734, 7.0731, 7.0729, 7.0727, 7.0725, 7.0723, 7.072, 7.0717, 7.0714, 7.0711, 7.0709, 7.0707, 7.0707, 7.0716, 7.0714, 7.0722, 7.072, 7.0718, 7.0715, 7.0703, 7.07, 7.0707, 7.0704, 7.0702, 7.07, 7.0702, 7.07, 7.0697, 7.072, 7.0721, 7.0744, 7.0748, 7.0746, 7.0744, 7.0742, 7.074, 7.0737, 7.0736, 7.0734, 7.0742, 7.0739, 7.0742, 7.0741, 7.074, 7.0737, 7.0737, 7.0736, 7.0733, 7.0733, 7.073, 7.0727, 7.0724, 7.0731, 7.0739, 7.0737, 7.0736, 7.0734, 7.0732, 7.0731, 7.0729, 7.0727, 7.0724, 7.0724, 7.0722, 7.072, 7.0718, 7.0728, 7.0727, 7.0734, 7.0745, 7.0743, 7.074, 7.0739, 7.0745, 7.0742, 7.074, 7.0738, 7.0745, 7.0742, 7.075, 7.0747, 7.0745, 7.0742, 7.0741, 7.0739, 7.0736, 7.0746, 7.0756000000000006, 7.0766, 7.0763, 7.0762, 7.0769, 7.0769, 7.0767, 7.0764, 7.0752, 7.0749, 7.0758, 7.0755, 7.0752, 7.0751, 7.0748, 7.0746, 7.0744, 7.0734, 7.0732, 7.073, 7.0728, 7.0737, 7.0735, 7.0741, 7.0753, 7.0751, 7.0759, 7.0759, 7.0756, 7.0763, 7.0753, 7.075, 7.0748, 7.0745, 7.0744, 7.0743, 7.0741, 7.0739, 7.0747, 7.0745, 7.0741, 7.0751, 7.0748, 7.0755, 7.0753, 7.0751, 7.0764, 7.0761, 7.0767, 7.0765, 7.0762, 7.0759, 7.0756, 7.0754, 7.0763, 7.0761, 7.0769, 7.0767, 7.0764, 7.0771, 7.076, 7.0758, 7.0755, 7.0753, 7.0751, 7.0759, 7.0769, 7.0779000000000005, 7.0777, 7.0775, 7.0774, 7.0784, 7.0784, 7.0782, 7.0779, 7.0776, 7.078600000000001, 7.079600000000001, 7.0804, 7.0802, 7.0801, 7.08, 7.0797, 7.0794, 7.0791, 7.0789, 7.0787, 7.0784, 7.0784, 7.0781, 7.079, 7.0791, 7.0793, 7.0803, 7.0801, 7.0798, 7.0798, 7.0797, 7.0795, 7.0792, 7.079, 7.08, 7.0797, 7.0807, 7.0805, 7.0804, 7.0803, 7.0801, 7.0809, 7.0817, 7.0816, 7.0814, 7.0811, 7.0808, 7.0805, 7.0812, 7.0811, 7.0809, 7.0806, 7.0803, 7.0802, 7.0801, 7.0799, 7.0807, 7.0804, 7.0803, 7.0803, 7.08, 7.0799, 7.0806, 7.0883, 7.088, 7.0868, 7.0865, 7.0855, 7.0872, 7.0871, 7.0869, 7.0866, 7.0873, 7.087, 7.0869, 7.0869, 7.0866, 7.0864, 7.0864, 7.0862, 7.086, 7.0859, 7.0856, 7.0854, 7.0852, 7.0849, 7.0857, 7.0865, 7.0864, 7.0862, 7.086, 7.0869, 7.0867, 7.0878, 7.0875, 7.0872, 7.0872, 7.0872, 7.0869, 7.0867, 7.0864, 7.0865, 7.0865, 7.0863, 7.0871, 7.087, 7.087, 7.0871, 7.0879, 7.0877, 7.0875, 7.0873, 7.087, 7.0868, 7.0868, 7.0867, 7.0868, 7.0878, 7.0875, 7.0881, 7.0878, 7.088, 7.0878, 7.0876, 7.0875, 7.0873, 7.087, 7.0867, 7.0885, 7.0885, 7.0883, 7.088, 7.0879, 7.0876, 7.0873, 7.087, 7.0869, 7.0869, 7.0876, 7.0874, 7.0871, 7.0868, 7.0866, 7.0864, 7.0872, 7.087, 7.0867, 7.0876, 7.0874, 7.0872, 7.0872, 7.0871, 7.0868, 7.0867, 7.0864, 7.0861, 7.086, 7.0868, 7.0876, 7.0888, 7.0886, 7.0896, 7.0894, 7.0901, 7.0901, 7.0899, 7.0898, 7.0897, 7.0896, 7.0895, 7.0893, 7.09, 7.0897, 7.0898, 7.0899, 7.0897, 7.0895, 7.0892, 7.0918, 7.0944, 7.0942, 7.0941, 7.0938, 7.0935, 7.0943, 7.095, 7.0957, 7.0955, 7.0953, 7.095, 7.095, 7.0948, 7.0947, 7.0944, 7.0932, 7.0929, 7.0936, 7.0943, 7.095, 7.0947, 7.0944, 7.0943, 7.0941, 7.0938, 7.0936, 7.0944, 7.0944, 7.0942, 7.0939, 7.0937, 7.0935, 7.0932, 7.0939, 7.0946, 7.0955, 7.0963, 7.096, 7.0957, 7.0954, 7.0951, 7.0949, 7.0946, 7.0943, 7.094, 7.0947, 7.0945, 7.0942, 7.0949, 7.0946, 7.0943, 7.0941, 7.0939, 7.0936, 7.0933, 7.0931, 7.0928, 7.0927, 7.0935, 7.0933, 7.0931, 7.0929, 7.0927, 7.0924, 7.0921, 7.0939, 7.0945, 7.0942, 7.0941, 7.093, 7.0919, 7.0936, 7.0933, 7.0931, 7.0932, 7.0931, 7.0929, 7.0926, 7.0923, 7.0924, 7.0921, 7.092, 7.0939, 7.0937, 7.0934, 7.0931, 7.093, 7.0935, 7.0944, 7.0942, 7.0942, 7.0949, 7.0947, 7.0945, 7.0943, 7.095, 7.0947, 7.0954, 7.0953, 7.0961, 7.0959, 7.0965, 7.0972, 7.098, 7.0987, 7.0978, 7.0975, 7.0972, 7.0969, 7.0968, 7.0974, 7.0974, 7.0971, 7.0962, 7.096, 7.0958, 7.0956, 7.0968, 7.0966, 7.0963, 7.0962, 7.0959, 7.0957, 7.0964, 7.0961, 7.0968, 7.0967, 7.0975, 7.0973, 7.098, 7.0978, 7.0978, 7.0976, 7.0984, 7.0982, 7.0979, 7.0976, 7.0974, 7.0971, 7.097, 7.0968, 7.0965, 7.0962, 7.0969, 7.0958, 7.0955, 7.0953, 7.0961, 7.0968, 7.0966, 7.0964, 7.0962, 7.096, 7.0958, 7.0955, 7.0953, 7.0951, 7.0949, 7.0946, 7.0955, 7.0952, 7.095, 7.0947, 7.0946, 7.0954, 7.0951, 7.0948, 7.0955, 7.0952, 7.0949, 7.0957, 7.0965, 7.0963, 7.099, 7.0989, 7.0996, 7.1003, 7.1011, 7.1008, 7.1005, 7.1002, 7.1, 7.1007, 7.1004, 7.1003, 7.1028, 7.1025, 7.1023, 7.1013, 7.1014, 7.1011, 7.1008, 7.1006, 7.1005, 7.1002, 7.1, 7.0997, 7.1004, 7.1002, 7.0999, 7.0996, 7.0993, 7.0992, 7.0989, 7.0987, 7.0984, 7.0981, 7.0978, 7.0967, 7.0957, 7.0958, 7.0955, 7.0962, 7.0969, 7.0966, 7.0964, 7.0962, 7.0951, 7.0958, 7.0964, 7.098, 7.0988, 7.0987, 7.0984, 7.0982, 7.0983, 7.0982, 7.0981, 7.0978, 7.0975, 7.0973, 7.0971, 7.0978, 7.0985, 7.0983, 7.0991, 7.0981, 7.0988, 7.0992, 7.0992, 7.0999, 7.0989, 7.0986, 7.0984, 7.0981, 7.0981, 7.0988, 7.0987, 7.0976, 7.0975, 7.0982, 7.0981, 7.0979, 7.0979, 7.0987, 7.0985, 7.0985, 7.0984, 7.0982, 7.0979, 7.0986, 7.0985, 7.0982, 7.0989, 7.0988, 7.0986, 7.0984, 7.1001, 7.0999, 7.101, 7.1009, 7.1008, 7.0997, 7.0994, 7.0992, 7.0991, 7.0997, 7.0994, 7.0992, 7.1, 7.0998, 7.0996, 7.0993, 7.0991, 7.0989, 7.098, 7.0977, 7.0975, 7.0982, 7.0981, 7.0979, 7.0976, 7.0967, 7.0964, 7.0963, 7.0961, 7.0959, 7.0966, 7.0966, 7.0965, 7.0963, 7.096, 7.0959, 7.0966, 7.0965, 7.0964, 7.0954, 7.0952, 7.0949, 7.0946, 7.0943, 7.094, 7.0946, 7.0943, 7.0941, 7.093, 7.0931, 7.0938, 7.0935, 7.0932, 7.0929, 7.0927, 7.0918, 7.0936, 7.0933, 7.093, 7.0929, 7.0926, 7.0959, 7.0957, 7.0963, 7.0971, 7.0991, 7.0992, 7.099, 7.0987, 7.0985, 7.0982, 7.0982, 7.098, 7.0978, 7.0976, 7.0975, 7.0973, 7.0971, 7.0978, 7.0975, 7.0972, 7.0978, 7.0976, 7.0973, 7.0979, 7.0969, 7.0958, 7.0955, 7.0954, 7.0951, 7.0948, 7.0945, 7.0953, 7.0959, 7.0964, 7.0955, 7.0953, 7.0963, 7.0961, 7.0958, 7.0956, 7.0963, 7.0962, 7.0959, 7.0966, 7.0963, 7.0961, 7.0952, 7.0949, 7.0946, 7.0954, 7.097, 7.0977, 7.0969, 7.0967, 7.0974, 7.0973, 7.097, 7.0969, 7.0975, 7.0973, 7.098, 7.099, 7.0989, 7.0987, 7.0993, 7.099, 7.0987, 7.0976, 7.1011, 7.101, 7.1008, 7.1007, 7.1004, 7.1003, 7.101, 7.1008, 7.1006, 7.1004, 7.1001, 7.0998, 7.0995, 7.0992, 7.099, 7.0989, 7.0988, 7.0987, 7.0993, 7.0993, 7.0991, 7.0989, 7.0997, 7.0994, 7.1001, 7.0999, 7.1006, 7.1006, 7.1004, 7.1011, 7.1009, 7.1006, 7.1003, 7.1001, 7.0998, 7.0995, 7.0992, 7.0989, 7.0996, 7.0993, 7.1, 7.0997, 7.0994, 7.0992, 7.099, 7.1011, 7.1001, 7.0999, 7.0997, 7.0994, 7.0991, 7.0997, 7.0996, 7.0994, 7.0991, 7.0988, 7.0985, 7.0982, 7.0989, 7.099, 7.0988, 7.0986, 7.0986, 7.0994, 7.1031, 7.1037, 7.1034, 7.1042, 7.1039, 7.1045, 7.1042, 7.104, 7.1047, 7.1046, 7.1062, 7.106, 7.1057, 7.1063, 7.1061, 7.106, 7.1058, 7.1065, 7.1054, 7.1061, 7.1059, 7.1056, 7.1053, 7.105, 7.1048, 7.1066, 7.1075, 7.1082, 7.1081, 7.1078, 7.1076, 7.1073, 7.1072, 7.1065, 7.1063, 7.106, 7.1057, 7.1086, 7.1084, 7.11, 7.1106, 7.1105, 7.1105, 7.1112, 7.111, 7.1108, 7.1106, 7.1105, 7.1113, 7.111, 7.1109, 7.1115, 7.1121, 7.1119, 7.1118, 7.1115, 7.1113, 7.1119, 7.1116, 7.1114, 7.1112, 7.112, 7.1118, 7.1159, 7.1158, 7.1155, 7.1163, 7.116, 7.1158, 7.1155, 7.1145, 7.1135, 7.1133, 7.1131, 7.1152, 7.115, 7.1148, 7.1139, 7.1139, 7.1139, 7.1137, 7.1134, 7.1127, 7.1125, 7.1133, 7.1132, 7.113, 7.1136, 7.1134, 7.1131, 7.1137, 7.1136, 7.1133, 7.1132, 7.1131, 7.1128, 7.1127, 7.1134, 7.1131, 7.1132, 7.113, 7.1146, 7.1144, 7.1135, 7.1133, 7.1134, 7.1132, 7.1138, 7.1136, 7.1135, 7.1133, 7.113, 7.1127, 7.1134, 7.1133, 7.1139, 7.1136, 7.1133, 7.1132, 7.1129, 7.1126, 7.1133, 7.1139, 7.1137, 7.1143, 7.114, 7.1139, 7.1138, 7.1135, 7.1142, 7.1139, 7.1136, 7.1142, 7.1139, 7.1146, 7.1146, 7.1143, 7.1141, 7.1139, 7.1136, 7.1134, 7.1169, 7.1169, 7.1166, 7.1165, 7.1163, 7.1169, 7.1169, 7.1167, 7.1167, 7.1166, 7.1165, 7.1171, 7.1171, 7.117, 7.1177, 7.1175, 7.1173, 7.1171, 7.1169, 7.1173, 7.118, 7.1178, 7.1175, 7.1172, 7.1178, 7.1177, 7.1183, 7.118, 7.1186, 7.1192, 7.1201, 7.1203, 7.121, 7.1208, 7.12, 7.1206, 7.1212, 7.1219, 7.1209, 7.1207, 7.1204, 7.121, 7.1209, 7.1208, 7.1205, 7.1204, 7.1202, 7.1201, 7.1199, 7.1206, 7.1204, 7.1201, 7.1207, 7.1204, 7.1285, 7.1282, 7.1281, 7.1284, 7.1282, 7.1281, 7.1297, 7.1296, 7.1293, 7.1294, 7.1292, 7.129, 7.1299, 7.1297, 7.1294, 7.13, 7.1298, 7.1305, 7.1302, 7.1308, 7.1307, 7.1304, 7.1302, 7.1299, 7.1298, 7.1295, 7.1295, 7.1301, 7.1299, 7.1297, 7.1299, 7.1297, 7.1303, 7.1293, 7.1285, 7.1325, 7.1323, 7.132, 7.1326, 7.1324, 7.1322, 7.132, 7.1328, 7.1327, 7.1334, 7.1331, 7.133, 7.1327, 7.1317, 7.1316, 7.1315, 7.1312, 7.131, 7.1308, 7.1308, 7.1305, 7.1304, 7.1302, 7.1309, 7.1306, 7.1305, 7.1303, 7.131, 7.1307, 7.1305, 7.1304, 7.1301, 7.1299, 7.1305, 7.1302, 7.131, 7.131, 7.1303, 7.1313, 7.1319, 7.1326, 7.1358, 7.1348, 7.1346, 7.1343, 7.134, 7.1338, 7.1336, 7.1342, 7.134, 7.1338, 7.1344, 7.1341, 7.1331, 7.1329, 7.1335, 7.1333, 7.133, 7.1327, 7.1324, 7.1323, 7.1322, 7.132, 7.1318, 7.1316, 7.1306, 7.1305, 7.1304, 7.1303, 7.1302, 7.13, 7.1307, 7.1304, 7.1306, 7.1305, 7.1311, 7.1318, 7.1315, 7.1314, 7.132, 7.1319, 7.1318, 7.1315, 7.1313, 7.1311, 7.1309, 7.1315, 7.1314, 7.1312, 7.1319, 7.1317, 7.1314, 7.132, 7.1326, 7.1324, 7.1321, 7.1318, 7.1323, 7.1321, 7.1328, 7.1334, 7.1333, 7.133, 7.1328, 7.1326, 7.1324, 7.133, 7.1328, 7.1334, 7.1341, 7.1339, 7.1337, 7.1343, 7.1349, 7.1348, 7.1354, 7.1353, 7.1344, 7.1342, 7.1339, 7.1345, 7.1344, 7.1341, 7.134, 7.1339, 7.1338, 7.1336, 7.1334, 7.134, 7.1337, 7.1335, 7.1333, 7.1331, 7.1331, 7.1328, 7.1325, 7.1324, 7.1323, 7.1329, 7.1326, 7.1326, 7.1325, 7.1323, 7.1329, 7.134, 7.134, 7.1337, 7.1335, 7.1333, 7.1333, 7.1328, 7.1326, 7.1342, 7.1335, 7.1339, 7.1336, 7.1335, 7.1332, 7.1329, 7.1328, 7.1326, 7.1325, 7.1322, 7.1321, 7.132, 7.1327, 7.1324, 7.133, 7.1328, 7.1334, 7.1332, 7.1331, 7.1329, 7.1326, 7.1332, 7.133, 7.1327, 7.1326, 7.1324, 7.133, 7.1331, 7.1338, 7.1337, 7.1334, 7.1332, 7.1331, 7.1329, 7.1327, 7.1326, 7.1325, 7.1322, 7.1321, 7.1318, 7.1316, 7.1323, 7.1322, 7.132, 7.1318, 7.1316, 7.1314, 7.1311, 7.1316, 7.1313, 7.131, 7.1307, 7.1304, 7.131, 7.1316, 7.1314, 7.1312, 7.1309, 7.1307, 7.1306, 7.1312, 7.131, 7.1308, 7.1306, 7.1304, 7.1311, 7.1309, 7.1307, 7.1306, 7.1304, 7.1303, 7.1301, 7.1304, 7.1302, 7.1299, 7.1297, 7.1295, 7.1292, 7.1289, 7.1288, 7.1286, 7.1283, 7.1281, 7.1287, 7.1286, 7.1284, 7.1275, 7.1273, 7.1271, 7.1278, 7.1276, 7.1282, 7.1279, 7.1277, 7.1275, 7.1274, 7.1272, 7.127, 7.1269, 7.1275, 7.1281, 7.1278, 7.1278, 7.1276, 7.1274, 7.1272, 7.1269, 7.1266, 7.1273, 7.1279, 7.1279, 7.1278, 7.1277, 7.1274, 7.1272, 7.1278, 7.1276, 7.1275, 7.1281, 7.1287, 7.1285, 7.1292, 7.1291, 7.1288, 7.1294, 7.1292, 7.129, 7.129, 7.128, 7.1287, 7.1313, 7.1323, 7.1322, 7.1319, 7.1316, 7.1339, 7.1337, 7.1337, 7.1337, 7.1337, 7.1337, 7.1343, 7.1341, 7.1342, 7.134, 7.1337, 7.1343, 7.1341, 7.1351, 7.1361, 7.136, 7.1359, 7.1357, 7.1372, 7.137, 7.1377, 7.1376, 7.1382, 7.138, 7.138, 7.1392, 7.139, 7.1396, 7.1398, 7.1409, 7.1415, 7.1421, 7.1419, 7.1416, 7.1414, 7.1428, 7.1426, 7.1425, 7.1424, 7.1422, 7.1422, 7.1419, 7.1416, 7.1413, 7.1419, 7.1416, 7.1422, 7.142, 7.1418, 7.1415, 7.1413, 7.141, 7.141, 7.1407, 7.1404, 7.1401, 7.1406, 7.142, 7.1426, 7.1424, 7.1429, 7.1438, 7.1443, 7.1441, 7.145, 7.1455, 7.1453, 7.1452, 7.1457, 7.1454, 7.1459, 7.1464, 7.1461, 7.1466, 7.1463, 7.146, 7.1466, 7.1472, 7.1478, 7.1476, 7.1482, 7.148, 7.149, 7.149, 7.1489, 7.1503, 7.15, 7.1498, 7.1496, 7.1493, 7.149, 7.1489, 7.1488, 7.1486, 7.1478, 7.1476, 7.1473, 7.1471, 7.1468, 7.1466, 7.1463, 7.1461, 7.1458, 7.1455, 7.1452, 7.145, 7.1448, 7.1446, 7.1443, 7.144, 7.1446, 7.1443, 7.1448, 7.1462, 7.1461, 7.1458, 7.1456, 7.1453, 7.1459, 7.1457, 7.1455, 7.1452, 7.1449, 7.1447, 7.1453, 7.1451, 7.1474, 7.1479, 7.1477, 7.1475, 7.1481, 7.1479, 7.1485, 7.1483, 7.1481, 7.1478, 7.1483, 7.148, 7.1477, 7.1474, 7.1471, 7.1468, 7.1466, 7.1472, 7.147, 7.1468, 7.1482, 7.1479, 7.1477, 7.1476, 7.1474, 7.1472, 7.147, 7.147, 7.1469, 7.1467, 7.1466, 7.1464, 7.1461, 7.1468, 7.1466, 7.1463, 7.146, 7.1459, 7.1458, 7.1456, 7.1462, 7.146, 7.1451, 7.1456, 7.1453, 7.145, 7.1447, 7.1445, 7.145, 7.1447, 7.1445, 7.1443, 7.1448, 7.1448, 7.1453, 7.1459, 7.1458, 7.1456, 7.1461, 7.1459, 7.1457, 7.1454, 7.1452, 7.1459, 7.1458, 7.1463, 7.1461, 7.1459, 7.1457, 7.1463, 7.1461, 7.1466, 7.1472, 7.1478, 7.1475, 7.1481, 7.1479, 7.1477, 7.1475, 7.1472, 7.1469, 7.1466, 7.1464, 7.1469, 7.1466, 7.1463, 7.1461, 7.1458, 7.1455, 7.1454, 7.1451, 7.1448, 7.1446, 7.1444, 7.1442, 7.144, 7.1445, 7.145, 7.1448, 7.1447, 7.1447, 7.1444, 7.1441, 7.144, 7.1438, 7.1435, 7.1435, 7.1432, 7.1429, 7.1426, 7.144, 7.1437, 7.1434, 7.1431, 7.1429, 7.1428, 7.1433, 7.1431, 7.1431, 7.1431, 7.1429, 7.1429, 7.1427, 7.1421, 7.1419, 7.1417, 7.1415, 7.1413, 7.1419, 7.1417, 7.1423, 7.1421, 7.1418, 7.1416, 7.1414, 7.1413, 7.141, 7.1408, 7.1406, 7.1405, 7.1403, 7.1408, 7.1405, 7.1403, 7.1402, 7.1415, 7.1421, 7.1419, 7.1418, 7.1415, 7.1412, 7.141, 7.1407, 7.1404, 7.1409, 7.1415, 7.1413, 7.1417, 7.1415, 7.1414, 7.1412, 7.1417, 7.1416, 7.1422, 7.1419, 7.1425, 7.1431, 7.1429, 7.1427, 7.1425, 7.1423, 7.142, 7.1419, 7.1417, 7.1422, 7.1421, 7.1419], '192.168.122.116': [5.9617, 5.9982, 5.9619, 5.8497, 5.9425, 5.9592, 6.8373, 6.7094, 6.5564, 6.5333, 6.4667, 6.4082, 6.4734, 6.4088, 6.3411, 6.2818, 6.5866, 6.5144, 6.4596, 6.4134, 6.3812, 6.6004, 6.5681, 6.5279, 6.5626, 6.7215, 6.7173, 6.6742, 6.6618, 6.6182, 6.7603, 6.7475, 6.7537, 6.7753, 6.9039, 7.011, 6.964, 7.0648, 7.0429, 7.153, 7.1273, 7.1225, 7.0832, 7.0448, 7.0052, 6.9702, 6.9371, 6.9031, 6.8802, 6.8597, 6.8371, 6.8299, 6.8018, 6.7987, 6.7864, 6.7681, 6.751, 6.7307, 6.7127, 6.695, 6.7644, 6.8464, 6.7525, 6.7368, 6.7225, 6.7118, 6.7049, 6.7137, 6.7715, 6.7545, 6.7409, 6.7349, 6.7145, 6.695, 6.6951, 6.6833, 6.6672, 6.6626, 6.6518, 6.6359, 6.6907, 6.677, 6.6816, 6.885, 6.9334, 6.9166, 6.9019, 6.8861, 6.8753, 6.878, 6.8648, 6.8658, 6.9133, 6.9019, 6.8948, 6.8817, 6.8742, 6.8215, 6.8167, 6.8119, 6.7988, 6.7911, 6.7973, 6.7864, 6.7731, 6.766, 6.7546, 6.75, 6.7443, 6.7818, 6.7701, 6.8039, 6.8397, 6.843, 6.8339, 6.829, 6.82, 6.8252, 6.8138, 6.801, 6.789, 6.7839, 6.8259, 6.8624, 6.8538, 6.8413, 6.8308, 6.8332, 6.8624, 6.894, 6.9296, 6.9208, 6.9186, 6.9153, 6.9085, 6.8959, 6.8905, 6.9189, 6.9147, 6.9071, 6.8985, 6.8874, 6.913, 6.904, 6.8963, 6.8975, 6.8961, 6.8985, 6.8914, 6.8901, 6.8828, 6.875, 6.8751, 6.8689, 6.8292, 6.8224, 6.8201, 6.8107, 6.809, 6.8133, 6.8048, 6.8004, 6.7915, 6.7878, 6.7788, 6.7761, 6.7719, 6.7676, 6.7629, 6.7565, 6.7524, 6.7448, 6.7406, 6.7343, 6.727, 6.7194, 6.7182, 6.7165, 6.7143, 6.7119, 6.7088, 6.7034, 6.7281, 6.7342, 6.7283, 6.7247, 6.7195, 6.7429, 6.7369, 6.732, 6.7268, 6.7278, 6.728800000000001, 6.7504, 6.7469, 6.74, 6.7605, 6.7706, 6.7723, 6.7684, 6.761, 6.7845, 6.8054, 6.8038, 6.7972, 6.816, 6.8117, 6.812, 6.8085, 6.8021, 6.7961, 6.7906, 6.7836, 6.8025, 6.8226, 6.7967, 6.793, 6.7885, 6.7824, 6.7781, 6.779100000000001, 6.7796, 6.7739, 6.7728, 6.7917, 6.7872, 6.7654, 6.7598, 6.7832, 6.7802, 6.7812, 6.7822000000000005, 6.7818, 6.7978, 6.7918, 6.7896, 6.7851, 6.78, 6.7764, 6.7706, 6.7863, 6.7869, 6.7814, 6.7787, 6.7956, 6.7932, 6.8116, 6.8086, 6.8065, 6.8022, 6.821, 6.8396, 6.8379, 6.8369, 6.8366, 6.833, 6.8269, 6.8429, 6.8384, 6.8573, 6.8793, 6.8755, 6.8745, 6.8851, 6.8811, 6.8794, 6.875, 6.8787, 6.8779, 6.8749, 6.8711, 6.8679, 6.8636, 6.8435, 6.8393, 6.8566, 6.8514, 6.8485, 6.8454, 6.8398, 6.8552, 6.8506, 6.8468, 6.8462, 6.8445, 6.8455, 6.8499, 6.8444, 6.8444, 6.859, 6.8568, 6.8551, 6.891, 6.8875, 6.8879, 6.9453, 6.9593, 6.9543, 6.9568, 6.959, 6.9423, 6.939, 6.9359, 6.9376, 6.954, 6.9504, 6.9449, 6.9406, 6.9364, 6.949, 6.9489, 6.9455, 6.9424, 6.944, 6.9461, 6.9425, 6.9565, 6.952, 6.9483, 6.9434, 6.9402, 6.9359, 6.9329, 6.9285, 6.9246, 6.9277, 6.9232, 6.9186, 6.9141, 6.9274, 6.9284, 6.9244, 6.9064, 6.9022, 6.8985, 6.8943, 6.9065, 6.9176, 6.915, 6.9102, 6.9231, 6.9183, 6.9141, 6.9105, 6.9064, 6.9103, 6.9214, 6.9169, 6.9131, 6.9107, 6.9073, 6.9195, 6.9175, 6.9314, 6.9271, 6.941, 6.9518, 6.9477, 6.9479, 6.9438, 6.942, 6.946, 6.9429, 6.9283, 6.9268, 6.9384, 6.9496, 6.9489, 6.9445, 6.9428, 6.9268, 6.9227, 6.9212, 6.9175, 6.9144, 6.9101, 6.9202, 6.9295, 6.9299, 6.9294, 6.9396, 6.9502, 6.9463, 6.9446, 6.9548, 6.9517, 6.9476, 6.948, 6.9443, 6.9409, 6.938, 6.9374, 6.9368, 6.9344, 6.9549, 6.9652, 6.964, 6.9609, 6.9614, 6.962, 6.9581, 6.9543, 6.9526, 6.9513, 6.9617, 6.9617, 6.9576, 6.9579, 6.9718, 6.9695, 6.9673, 6.964, 6.9605, 6.9567, 6.9559, 6.9522, 6.9624, 6.9592, 6.955, 6.9513, 6.9482, 6.9574, 6.9684, 6.9681, 6.9789, 6.9763, 6.9736, 6.9836, 6.983, 6.9805, 6.99, 6.9876, 6.9841, 6.9806, 6.9778, 6.9759, 6.9725, 6.9697, 6.9685, 6.9647, 6.9609, 6.9583, 6.9442, 6.9565, 6.9546, 6.9521, 6.9531, 6.9541, 6.963, 6.971, 6.972, 6.9804, 6.977, 6.9752, 6.9839, 6.981, 6.9801, 6.9785, 6.9768, 6.9976, 6.9954, 6.9919, 6.9943, 6.9907, 6.9871, 6.9848, 6.9834, 6.9801, 6.9879, 6.9847, 6.9812, 6.9792, 6.9761, 6.974, 6.9822, 6.9793, 6.9879, 6.9853, 6.9836, 6.9811, 6.978, 6.9775, 6.9743, 6.9726, 6.9725, 6.9813, 6.9781, 6.9763, 6.9842, 6.9819, 6.9788, 6.9755, 6.9845, 6.9838, 6.9807, 6.9948, 7.0179, 7.019, 7.0333, 7.0343, 7.043, 7.0534, 7.0513, 7.05, 7.0464, 7.0436, 7.0403, 7.0384, 7.0363, 7.0463, 7.0441, 7.0422, 7.0505, 7.0494, 7.0493, 7.0478, 7.0474, 7.0579, 7.0673, 7.0665, 7.0643, 7.0642, 7.0628, 7.0705, 7.0696, 7.0689, 7.0657, 7.0639, 7.0622, 7.0626, 7.0618, 7.0697, 7.0668, 7.0639, 7.0609, 7.0596, 7.0591, 7.0594, 7.0497, 7.0473, 7.0372, 7.0345, 7.035500000000001, 7.0423, 7.0396, 7.0381, 7.0453, 7.0525, 7.0592, 7.0561, 7.0451, 7.0527, 7.0511, 7.0685, 7.0755, 7.0826, 7.1004, 7.1014, 7.1024, 7.1, 7.0985, 7.0983, 7.0973, 7.0943, 7.1014, 7.0984, 7.0952, 7.092, 7.0804, 7.0784, 7.0758, 7.0735, 7.0725, 7.0693, 7.0678, 7.0769, 7.0748, 7.0729, 7.0709, 7.0683, 7.0654, 7.0641, 7.0625, 7.0609, 7.0593, 7.0562, 7.054, 7.0528, 7.05, 7.0485, 7.0464, 7.053, 7.0506, 7.049, 7.0476, 7.0486, 7.0465, 7.0435, 7.0494, 7.0479, 7.0547, 7.0519, 7.0517, 7.0498, 7.0491, 7.047, 7.054, 7.0513, 7.0505, 7.048, 7.049, 7.0464, 7.0442, 7.0424, 7.0397, 7.0471, 7.0464, 7.0474000000000006, 7.0456, 7.0435, 7.0492, 7.0486, 7.0559, 7.0711, 7.0683, 7.0752, 7.0731, 7.071, 7.0705, 7.0769, 7.0747, 7.0732, 7.0704, 7.0615, 7.0602, 7.059, 7.0578, 7.0642, 7.0712, 7.0862, 7.0861, 7.0842, 7.0751, 7.073, 7.0707, 7.0681, 7.0655, 7.0716, 7.0701, 7.0691, 7.068, 7.067, 7.0646, 7.062, 7.0521, 7.05, 7.0473, 7.0467, 7.0524, 7.0511, 7.0497, 7.0485, 7.0627, 7.06, 7.0588, 7.0567, 7.0554, 7.0533, 7.0512, 7.0505, 7.0485, 7.0466, 7.0445, 7.0426, 7.0402, 7.0384, 7.0378, 7.0353, 7.0411, 7.0395, 7.0387, 7.0442, 7.0423, 7.0413, 7.0464, 7.046, 7.0457, 7.0513, 7.0496, 7.0485, 7.0463, 7.044, 7.0425, 7.0411, 7.0405, 7.046, 7.0516, 7.05, 7.0478, 7.0393, 7.0376, 7.0599, 7.0653, 7.0641, 7.0556, 7.0554, 7.0562, 7.0548, 7.0525, 7.0506, 7.0494, 7.0538, 7.0543, 7.0522, 7.0586, 7.0572, 7.0554, 7.0467, 7.0532, 7.0513, 7.0494, 7.0546, 7.0542, 7.0524, 7.0526, 7.0504, 7.0489, 7.0498, 7.0627, 7.0606, 7.0604, 7.0585, 7.0581, 7.0568, 7.0551, 7.0535, 7.0535, 7.0526, 7.0532, 7.0551, 7.0556, 7.0539, 7.0549, 7.0541, 7.0551, 7.0531, 7.0524, 7.0507, 7.0557, 7.0548, 7.053, 7.0447, 7.0627, 7.0684, 7.0666, 7.0653, 7.0631, 7.0612, 7.0592, 7.0572, 7.0551, 7.0539, 7.0521, 7.0505, 7.0496, 7.0542, 7.0597, 7.0577, 7.056, 7.0618, 7.0606, 7.0589, 7.0582, 7.0576, 7.0817, 7.0798, 7.0853, 7.0839, 7.0885, 7.0873, 7.0851, 7.0844, 7.089, 7.0878, 7.086, 7.084, 7.0824, 7.0815, 7.0794, 7.0773, 7.0759, 7.0738, 7.0782, 7.0771, 7.0882, 7.0815, 7.0734, 7.0726, 7.0717, 7.0697, 7.068, 7.0658, 7.0707, 7.0691, 7.074, 7.0738, 7.0736, 7.0716, 7.0702, 7.0681, 7.073, 7.0653, 7.0632, 7.0621, 7.0602, 7.0648, 7.0639, 7.0625, 7.0606, 7.0599, 7.0581, 7.0562, 7.0607, 7.0597, 7.0596, 7.0578, 7.0571, 7.0624, 7.0672, 7.0659, 7.065, 7.063, 7.0638, 7.062, 7.0603, 7.0584, 7.0573, 7.0559, 7.0544, 7.0525, 7.0506, 7.0493, 7.0485, 7.048, 7.0459, 7.0443, 7.0424, 7.0405, 7.0388, 7.0373, 7.036, 7.034, 7.0329, 7.0322, 7.0312, 7.0296, 7.0279, 7.0269, 7.0375, 7.0364, 7.0354, 7.0337, 7.032, 7.0367, 7.0358, 7.0349, 7.0331, 7.0312, 7.0293, 7.0286, 7.033, 7.0312, 7.0361, 7.0349, 7.035900000000001, 7.034, 7.0324, 7.0311, 7.0242, 7.0237, 7.0221, 7.022, 7.0201, 7.02, 7.0195, 7.0189, 7.0183, 7.0231, 7.0226, 7.0213, 7.0195, 7.0182, 7.0238, 7.022, 7.0207, 7.0199, 7.018, 7.0165, 7.017, 7.0211, 7.0197, 7.018, 7.0179, 7.016, 7.0143, 7.013, 7.0129, 7.0125, 7.011, 7.0151, 7.0144, 7.0138, 7.0122, 7.0114, 7.0107, 7.0102, 7.0107, 7.0107, 7.0099, 7.0145, 7.0129, 7.0173, 7.0154, 7.0204, 7.0201, 7.021100000000001, 7.0261, 7.0196, 7.0187, 7.0169, 7.0157, 7.0145, 7.0127, 7.0117, 7.0102, 7.0147, 7.0145, 7.0136, 7.0122, 7.006, 7.0044, 7.0029, 7.0026, 7.0021, 7.0012, 7.0016, 7.006, 7.006, 7.0046, 7.0034, 7.002, 7.0004, 6.9999, 6.9999, 7.000900000000001, 7.0057, 7.0045, 7.0087, 7.014, 7.0123, 7.0112, 7.0115, 7.012, 7.0115, 7.0108, 7.011, 7.0092, 7.009, 7.0075, 7.0081, 7.0068, 7.0054, 7.0038, 7.0041, 7.0082, 7.0074, 7.0058, 7.0097, 7.0081, 7.0123, 7.0116, 7.01, 7.0091, 7.0074, 7.0059, 7.0068, 7.0115, 7.0123, 7.0113, 7.0155, 7.0141, 7.013, 7.012, 7.0343, 7.041, 7.0403, 7.0398, 7.0438, 7.0491, 7.0475, 7.0462, 7.0452, 7.044, 7.0565, 7.0549, 7.0547, 7.0638, 7.0623, 7.061, 7.0652, 7.0645, 7.0635, 7.0623, 7.0608, 7.0648, 7.0661, 7.0604, 7.0606, 7.059, 7.0584, 7.0626, 7.0619, 7.0603, 7.0642, 7.0687, 7.0674, 7.0714, 7.0701, 7.0736, 7.0777, 7.0762, 7.0763, 7.075, 7.0737, 7.0732, 7.074, 7.0728, 7.0732, 7.0728, 7.0766, 7.075, 7.0734, 7.0723, 7.0761, 7.0706, 7.0649, 7.0589, 7.0589, 7.0582, 7.053, 7.0517, 7.0502, 7.0491, 7.048, 7.0466, 7.0453, 7.0442, 7.0488, 7.0488, 7.0498, 7.0492, 7.0481, 7.0472, 7.0508, 7.0497, 7.0487, 7.0497000000000005, 7.050700000000001, 7.0598, 7.0538, 7.0548, 7.0634, 7.063, 7.0615, 7.0599, 7.0634, 7.0619, 7.0604, 7.0643, 7.0628, 7.0619, 7.0604, 7.0587, 7.0577, 7.0568, 7.0561, 7.0551, 7.0539, 7.0572, 7.0605, 7.06, 7.0591, 7.0577, 7.0564, 7.0554, 7.0539, 7.0577, 7.0614, 7.0603, 7.0587, 7.0575, 7.0525, 7.0476, 7.0514, 7.05, 7.0494, 7.048, 7.0513, 7.0498, 7.0487, 7.0475, 7.0512, 7.0548, 7.0584, 7.0533, 7.0528, 7.0521, 7.0521, 7.0551, 7.0501, 7.0485, 7.0471, 7.0461, 7.0456, 7.0444, 7.0476, 7.0509, 7.0496, 7.054, 7.0532, 7.0517, 7.0501, 7.0488, 7.0482, 7.0514, 7.0504, 7.0536, 7.0573, 7.0558, 7.0546, 7.0543, 7.05, 7.0578, 7.0564, 7.0557, 7.0541, 7.0534, 7.0523, 7.052, 7.0507, 7.0517, 7.052700000000001, 7.0558, 7.0597, 7.060700000000001, 7.061700000000001, 7.062700000000001, 7.0624, 7.0662, 7.0654, 7.0654, 7.0642, 7.0627, 7.0614, 7.0607, 7.0604, 7.0597, 7.0582, 7.0576, 7.0564, 7.0561, 7.0551, 7.0535, 7.0525, 7.051, 7.0541, 7.0527, 7.0523, 7.0558, 7.0558, 7.0544, 7.054, 7.0537, 7.0535, 7.0481, 7.047, 7.0474, 7.0468, 7.0463, 7.0456, 7.045, 7.0437, 7.0434, 7.042, 7.0407, 7.0392, 7.0345, 7.0334, 7.0281, 7.0268, 7.0262, 7.0247, 7.0233, 7.0228, 7.0215, 7.0205, 7.0196, 7.0189, 7.0176, 7.0172, 7.0158, 7.0168, 7.0178, 7.0166, 7.0157, 7.0148, 7.01, 7.0089, 7.0118, 7.0108, 7.0104, 7.0095, 7.0081, 7.0069, 7.0102, 7.0135, 7.0123, 7.0151, 7.0143, 7.0095, 7.0047, 7.004, 7.0032, 7.0064, 7.0074000000000005, 7.0061, 7.0097, 7.0098, 7.0176, 7.0161, 7.0161, 7.0171, 7.0181000000000004, 7.0174, 7.0344, 7.0341, 7.0334, 7.0326, 7.0315, 7.0305, 7.0297, 7.0289, 7.0279, 7.0427, 7.0468, 7.0459, 7.045, 7.0402, 7.0438, 7.043, 7.0464, 7.0451, 7.0444, 7.048, 7.0472, 7.046, 7.0418, 7.0418, 7.0451, 7.044, 7.0429, 7.0479, 7.0467, 7.0455, 7.0457, 7.0488, 7.0478, 7.0511, 7.0502, 7.0489, 7.0447, 7.0399, 7.0395, 7.0429, 7.042, 7.037, 7.032, 7.0269, 7.0263, 7.0299, 7.0287, 7.0444, 7.0441, 7.0437, 7.0402, 7.0431, 7.0423, 7.0418, 7.0417, 7.0426, 7.0455, 7.0448, 7.0436, 7.0437, 7.0437, 7.0389, 7.0416, 7.0409, 7.0408, 7.0411, 7.0398, 7.0428, 7.0416, 7.0404, 7.0397, 7.0431, 7.042, 7.041, 7.0411, 7.0366, 7.0396, 7.0404, 7.0437, 7.0428, 7.046, 7.0451, 7.0443, 7.0441, 7.0467, 7.0465, 7.0494, 7.0527, 7.0525, 7.0478, 7.0467, 7.0459, 7.0455, 7.0444, 7.0438, 7.0432, 7.0422, 7.041, 7.0404, 7.0362, 7.035, 7.0345, 7.0333, 7.0332, 7.0321, 7.0317, 7.0307, 7.0309, 7.0303, 7.033, 7.0327, 7.0319, 7.0311, 7.0307, 7.0296, 7.030600000000001, 7.031600000000001, 7.0351, 7.034, 7.0327, 7.0316, 7.0308, 7.0297, 7.0286, 7.0284, 7.0284, 7.0242, 7.0194, 7.0155, 7.015, 7.0178, 7.017, 7.016, 7.0151, 7.015, 7.0148, 7.0155, 7.0115, 7.0143, 7.0172, 7.0167, 7.0156, 7.0185, 7.0174, 7.0129, 7.0117, 7.0105, 7.0095, 7.0084, 7.0073, 7.0101, 7.0089, 7.0084, 7.0079, 7.0069, 7.0056, 7.0049, 7.0038, 7.0027, 7.0052, 7.0044, 7.0032, 7.0024, 7.0013, 7.0001, 6.9992, 6.9985, 6.9981, 6.9973, 6.9962, 6.9959, 6.9948, 6.9937, 6.993, 6.992, 6.991, 6.9903, 6.9896, 6.9923, 6.9921, 6.991, 6.9941, 6.9942, 6.9969, 6.9968, 6.9964, 6.996, 6.9987, 6.9977, 6.9969, 6.9998, 6.999, 7.0017, 7.0014, 7.0006, 6.9994, 6.9958, 6.9946, 6.9975, 6.9976, 6.9971, 6.9959, 6.9952, 6.998, 6.9968, 6.9998, 6.999, 6.9985, 7.0011, 7.0036, 7.0033, 7.0061, 7.0017, 6.998, 6.9975, 6.9976, 6.9966, 6.9969, 6.9959, 6.995, 6.9944, 6.9935, 6.9965, 6.9993, 6.9984, 6.9978, 6.9971, 6.9967, 7.0048, 7.0008, 6.9968, 6.9927, 6.9922, 6.9955, 6.9981, 6.997, 6.9962, 6.9988, 6.9978, 6.9977, 6.9944, 6.9948, 6.9943, 6.9937, 6.994, 6.993, 6.9921, 6.9913, 6.9914, 6.9914, 6.9939, 7.0078, 7.0071, 7.0077, 7.0071, 7.0063, 7.0054, 7.005, 7.004, 7.0039, 7.0031, 7.0026, 7.0058, 7.0066, 7.0264, 7.0254, 7.0279, 7.0304, 7.0298, 7.0291, 7.0281, 7.0277, 7.0266, 7.0295, 7.032, 7.0315, 7.0305, 7.0305, 7.0299, 7.0414, 7.0406, 7.0395, 7.0418, 7.0407, 7.04, 7.0389, 7.0384, 7.0377, 7.0366, 7.0357, 7.0351, 7.0376, 7.0367, 7.0362, 7.0352, 7.0379, 7.0369, 7.0363, 7.0361, 7.0459, 7.0453, 7.0446, 7.045, 7.0493, 7.0485, 7.0564, 7.0591, 7.0617, 7.0609, 7.0606, 7.0597, 7.0597, 7.0591, 7.0583, 7.0573, 7.0571, 7.0582, 7.0605, 7.0626, 7.0621, 7.0647, 7.0637, 7.0664, 7.0657, 7.0654, 7.0651, 7.0645, 7.0636, 7.0666, 7.0691, 7.0685, 7.0678, 7.0702, 7.0726, 7.072, 7.071, 7.0706, 7.0696, 7.0687, 7.0676, 7.0665, 7.0659, 7.0649, 7.0639, 7.0634, 7.0629, 7.0653, 7.0642, 7.0631, 7.0622, 7.0612, 7.0602, 7.0592, 7.0617, 7.0606, 7.0596, 7.0585, 7.0608, 7.0598, 7.062, 7.0583, 7.0576, 7.0599, 7.0589, 7.058, 7.057, 7.0592, 7.0617, 7.0612, 7.0602, 7.0625, 7.0654, 7.0647, 7.0655, 7.0645, 7.0666, 7.0659, 7.0648, 7.0706, 7.07, 7.0689, 7.0679, 7.0668, 7.066, 7.0681, 7.067, 7.067, 7.0664, 7.0653, 7.065, 7.0679, 7.0678, 7.0681, 7.0704, 7.0733, 7.0744, 7.0745, 7.0742, 7.0733, 7.0735, 7.0726, 7.0717, 7.0713, 7.0707, 7.0737, 7.0734, 7.0725, 7.0716, 7.0742, 7.0733, 7.073, 7.0727, 7.0725, 7.0747, 7.0789, 7.0778, 7.0773, 7.0801, 7.0823, 7.0845, 7.0838, 7.0828, 7.0851, 7.0873, 7.0897, 7.0921, 7.0915, 7.0905, 7.0897, 7.0886, 7.0878, 7.0867, 7.0856, 7.0848, 7.0839, 7.0869, 7.0861, 7.0852, 7.0847, 7.0838, 7.0861, 7.0858, 7.0853, 7.085, 7.084, 7.0831, 7.083, 7.091, 7.0904, 7.0894, 7.0888, 7.0882, 7.0906, 7.0928, 7.0922, 7.0914, 7.0903, 7.0897, 7.0921, 7.0946, 7.094, 7.093, 7.0924, 7.0918, 7.091, 7.0902, 7.0897, 7.0891, 7.0884, 7.0882, 7.0877, 7.0869, 7.0961, 7.0957, 7.0946, 7.0938, 7.0928, 7.0927, 7.0918, 7.0887, 7.0915, 7.091, 7.0911, 7.0905, 7.0931, 7.0953, 7.0944, 7.0952, 7.0942, 7.0923, 7.092, 7.0912, 7.0904, 7.0927, 7.095, 7.0952, 7.0949, 7.0944, 7.0936, 7.0902, 7.0894, 7.0894, 7.0887, 7.0878, 7.0868, 7.0894, 7.0888, 7.0885, 7.0883, 7.0908, 7.09, 7.089, 7.0896, 7.0888, 7.0904, 7.0897, 7.0919, 7.0909, 7.093, 7.092, 7.0911, 7.0875, 7.0897, 7.0887, 7.0878, 7.0899, 7.089, 7.1004, 7.0994, 7.0988, 7.0979, 7.0969, 7.0994, 7.0988, 7.0983, 7.0975, 7.0967, 7.0982, 7.098, 7.1004, 7.1, 7.0998, 7.1021, 7.1041, 7.1031, 7.1029, 7.1052, 7.1047, 7.1046, 7.104, 7.1031, 7.1055, 7.1048, 7.1039, 7.1034, 7.1061, 7.1053, 7.1045, 7.1037, 7.1058, 7.1049, 7.1043, 7.1008, 7.1002, 7.0997, 7.0988, 7.1008, 7.1003, 7.0993, 7.0986, 7.0979, 7.0969, 7.0965, 7.0956, 7.0952, 7.0944, 7.0966, 7.0987, 7.1042, 7.1039, 7.106, 7.1051, 7.1072, 7.1068, 7.1061, 7.1052, 7.1044, 7.1068, 7.1088, 7.1078, 7.1101, 7.1093, 7.1085, 7.1079, 7.1071, 7.1042, 7.1033, 7.1024, 7.1015, 7.1005, 7.0998, 7.099, 7.0988, 7.101, 7.1006, 7.1029, 7.1022, 7.1047, 7.1047, 7.1069, 7.1092, 7.1086, 7.1077, 7.11, 7.1104, 7.1096, 7.1129, 7.1139, 7.1131, 7.1136, 7.1128, 7.1121, 7.1113, 7.1105, 7.1098, 7.1121, 7.1118, 7.1111, 7.1105, 7.1097, 7.1089, 7.1079, 7.1074, 7.1069, 7.1063, 7.1086, 7.1079, 7.1075, 7.1099, 7.1115, 7.1108, 7.11, 7.1121, 7.1144, 7.1163, 7.1159, 7.1182, 7.1205, 7.1225, 7.1223, 7.1243, 7.1241, 7.1234, 7.1238, 7.1234, 7.1226, 7.1218, 7.124, 7.1233, 7.1233, 7.1224, 7.1248, 7.1241, 7.1262, 7.1253, 7.1245, 7.1268, 7.1292, 7.1292, 7.1302, 7.1295, 7.1291, 7.1284, 7.1308, 7.1305, 7.1296, 7.1291, 7.1263, 7.1256, 7.1251, 7.1272, 7.1266, 7.1284, 7.1275, 7.1296, 7.1291, 7.1284, 7.1303, 7.1324, 7.1315, 7.131, 7.1329, 7.132, 7.1315, 7.1309, 7.1302, 7.1294, 7.1293, 7.1284, 7.1278, 7.1274, 7.1296, 7.1266, 7.1236, 7.1247, 7.1268, 7.1281, 7.1283, 7.1275, 7.13, 7.1294, 7.1291, 7.1308, 7.1302, 7.1324, 7.1344, 7.1341, 7.1332, 7.1327, 7.1353, 7.1346, 7.1337, 7.1335, 7.1357, 7.1349, 7.1343, 7.1334, 7.1352, 7.1374, 7.1394, 7.1414, 7.1407, 7.1405, 7.1399, 7.139, 7.139, 7.1387, 7.1407, 7.1404, 7.1423, 7.1424, 7.1415, 7.1408, 7.1399, 7.1395, 7.1399, 7.14, 7.1397, 7.1392, 7.1386, 7.1378, 7.137, 7.1365, 7.1388, 7.1387, 7.1403, 7.1422, 7.1414, 7.1412, 7.1408, 7.1402, 7.1401, 7.1422, 7.1413, 7.1407, 7.1424, 7.1416, 7.1415, 7.141, 7.1409, 7.1402, 7.1427, 7.145, 7.1447, 7.144, 7.1463, 7.1455, 7.145, 7.1442, 7.1435, 7.1433, 7.1429, 7.1422, 7.1417, 7.1408, 7.1399, 7.1394, 7.1387, 7.1378, 7.137, 7.1365, 7.1357, 7.1351, 7.1348, 7.1344, 7.1342, 7.1334, 7.1327, 7.1298, 7.1292, 7.1286, 7.1278, 7.127, 7.1262, 7.1257, 7.1256, 7.1249, 7.1269, 7.124, 7.1234, 7.123, 7.1226, 7.1219, 7.1243, 7.1239, 7.1232, 7.1225, 7.1244, 7.1288, 7.128, 7.1273, 7.1264, 7.1258, 7.1249, 7.1242, 7.1264, 7.1258, 7.1279, 7.1299, 7.1321, 7.1314, 7.131, 7.1331, 7.1326, 7.1345, 7.1337, 7.1355, 7.1373, 7.1364, 7.1356, 7.1378, 7.137, 7.1362, 7.1354, 7.1346, 7.134, 7.1332, 7.1328, 7.1297, 7.1297, 7.1267, 7.1264, 7.1256, 7.1248, 7.1247, 7.1242, 7.1234, 7.1225, 7.1195, 7.1212, 7.1205, 7.1202, 7.1172, 7.1167, 7.1158, 7.1127, 7.1119, 7.1118, 7.1111, 7.1107, 7.1129, 7.1125, 7.1122, 7.1115, 7.1108, 7.1101, 7.1096, 7.1093, 7.111, 7.1111, 7.1129, 7.1124, 7.1115, 7.1107, 7.1124, 7.112, 7.1117, 7.1111, 7.1105, 7.1147, 7.1191, 7.1183, 7.1178, 7.117, 7.1186, 7.1182, 7.1173, 7.1192, 7.1189, 7.1182, 7.1225, 7.1221, 7.1213, 7.1206, 7.1223, 7.1215, 7.1207, 7.1181, 7.1173, 7.117, 7.119, 7.1182, 7.1174, 7.1166, 7.1162, 7.1181, 7.1199, 7.1173, 7.1165, 7.1156, 7.1151, 7.1145, 7.1116, 7.1113, 7.113, 7.1148, 7.1143, 7.1139, 7.1163, 7.1158, 7.1186, 7.1186, 7.118, 7.1173, 7.1165, 7.1163, 7.1159, 7.1153, 7.1152, 7.1169, 7.1166, 7.1159, 7.1153, 7.1147, 7.1141, 7.1134, 7.1126, 7.1123, 7.114, 7.1132, 7.1126, 7.112, 7.1113, 7.1105, 7.1123, 7.112, 7.1141, 7.1135, 7.1132, 7.1132, 7.1125, 7.1125, 7.1141, 7.1134, 7.1126, 7.1122, 7.1139, 7.1156, 7.1148, 7.1143, 7.1139, 7.1156, 7.1159, 7.1152, 7.1146, 7.1142, 7.1136, 7.1156, 7.115, 7.1146, 7.114, 7.1136, 7.1133, 7.1127, 7.112, 7.1113, 7.1109, 7.1103, 7.1098, 7.1099, 7.1096, 7.1095, 7.1091, 7.1069, 7.1087, 7.1081, 7.1074, 7.1067, 7.1084, 7.1076, 7.1069, 7.1063, 7.1055, 7.1054, 7.1048, 7.104, 7.1032, 7.1026, 7.1022, 7.1015, 7.101, 7.1003, 7.0997, 7.0992, 7.0991, 7.0985, 7.0979, 7.0982, 7.0975, 7.0969, 7.0968, 7.0985, 7.0981, 7.0953, 7.0948, 7.0943, 7.0936, 7.0932, 7.0929, 7.0922, 7.0915, 7.0932, 7.0925, 7.0925, 7.0921, 7.0916, 7.0908, 7.0903, 7.0896, 7.0889, 7.0884, 7.0878, 7.0876, 7.0868, 7.0861, 7.0858, 7.0876, 7.0895, 7.0912, 7.0905, 7.0898, 7.0916, 7.0914, 7.0909, 7.0903, 7.0876, 7.0852, 7.0845, 7.0838, 7.0832, 7.0825, 7.0818, 7.0813, 7.0806, 7.0845, 7.0861, 7.0857, 7.085, 7.0866, 7.0859, 7.0855, 7.0854, 7.0872, 7.0865, 7.0862, 7.0855, 7.0848, 7.0863, 7.0857, 7.0851, 7.0849, 7.0864, 7.0856, 7.085, 7.0845, 7.084, 7.0834, 7.0832, 7.0857, 7.0853, 7.0848, 7.0845, 7.0839, 7.0833, 7.0829, 7.0828, 7.0823, 7.0818, 7.0834, 7.083, 7.0828, 7.083, 7.0828, 7.0844, 7.0819, 7.0813, 7.0806, 7.0799, 7.0794, 7.0788, 7.0806, 7.0822, 7.0842, 7.0837, 7.0834, 7.0827, 7.082, 7.0814, 7.0807, 7.0803, 7.0796, 7.0798, 7.0795, 7.0792, 7.0785, 7.0781, 7.0774, 7.0767, 7.0762, 7.0755, 7.0754, 7.0752, 7.0749, 7.0744, 7.0741, 7.0736, 7.0753, 7.0753, 7.0745, 7.0738, 7.0736, 7.076, 7.0754, 7.0748, 7.0742, 7.0735, 7.0731, 7.0751, 7.0746, 7.0744, 7.0751, 7.0769, 7.0765, 7.0758, 7.0753, 7.0747, 7.0745, 7.0719, 7.0719, 7.0717, 7.0737, 7.0718, 7.0715, 7.0708, 7.0702, 7.0698, 7.0692, 7.0688, 7.0703, 7.0696, 7.0713, 7.0709, 7.0701, 7.0699, 7.0694, 7.0688, 7.0706, 7.0703, 7.0702, 7.0699, 7.0699, 7.0696, 7.0689, 7.0706, 7.0722, 7.0717, 7.0712, 7.0728, 7.0721, 7.0715, 7.0709, 7.0725, 7.072, 7.0714, 7.0707, 7.0723, 7.072, 7.0735, 7.0728, 7.0727, 7.0721, 7.0737, 7.073, 7.0709, 7.0682, 7.0699, 7.0694, 7.071, 7.0704, 7.0698, 7.0694, 7.0692, 7.0708, 7.0702, 7.072, 7.0714, 7.0728, 7.0724, 7.0699, 7.0695, 7.0691, 7.0711, 7.0704, 7.0719, 7.0695, 7.0711, 7.0704, 7.072, 7.0736, 7.0731, 7.0747, 7.0744, 7.0739, 7.0755, 7.0751, 7.0752, 7.0752, 7.0768, 7.0763, 7.0778, 7.0771, 7.0769, 7.0764, 7.0766, 7.0759, 7.0774, 7.0749, 7.0743, 7.0737, 7.0731, 7.0724, 7.0699, 7.0693, 7.069, 7.0683, 7.0678, 7.0677, 7.0674, 7.0668, 7.0663, 7.0656, 7.0655, 7.0652, 7.0649, 7.0646, 7.0662, 7.0657, 7.0654, 7.065, 7.0645, 7.0639, 7.0634, 7.0629, 7.0625, 7.0619, 7.0616, 7.0614, 7.0608, 7.0606, 7.0601, 7.0617, 7.062, 7.062, 7.0638, 7.0658, 7.0676, 7.0669, 7.0695, 7.069, 7.0685, 7.0747, 7.0741, 7.0741, 7.0735, 7.0716, 7.071, 7.0707, 7.0706, 7.0701, 7.068, 7.0678, 7.0675, 7.0673, 7.0671, 7.0669, 7.0662, 7.0675, 7.0675, 7.0676, 7.0712, 7.0707, 7.072, 7.0736, 7.0713, 7.0729, 7.0723, 7.072, 7.0716, 7.0711, 7.0706, 7.0702, 7.0695, 7.071, 7.0705, 7.0721, 7.0717, 7.071, 7.0688, 7.0703, 7.0697, 7.0695, 7.0696, 7.0691, 7.0686, 7.0681, 7.0676, 7.0693, 7.0687, 7.0701, 7.0696, 7.0694, 7.0689, 7.0689, 7.0684, 7.0678, 7.0681, 7.0674, 7.067, 7.0684, 7.068, 7.0675, 7.0652, 7.0645, 7.064, 7.0634, 7.061, 7.061, 7.0603, 7.0601, 7.0596, 7.0591, 7.0588, 7.0583, 7.058, 7.0578, 7.0572, 7.0566, 7.0561, 7.0581, 7.0586, 7.0581, 7.0575, 7.0589, 7.0594, 7.0589, 7.0587, 7.058, 7.0581, 7.056, 7.0554, 7.0555, 7.055, 7.0545, 7.056, 7.0538, 7.0536, 7.0531, 7.0529, 7.0524, 7.0548, 7.0564, 7.0558, 7.0553, 7.0547, 7.0565, 7.0581, 7.0588, 7.0585, 7.0583, 7.0579, 7.0574, 7.0569, 7.0584, 7.0578, 7.0594, 7.0589, 7.0569, 7.0584, 7.0599, 7.0595, 7.0589, 7.0589, 7.0585, 7.06, 7.0595, 7.0608, 7.0622, 7.0617, 7.0613, 7.0608, 7.0603, 7.0618, 7.0651, 7.0648, 7.0662, 7.066, 7.0653, 7.0649, 7.0646, 7.0627, 7.0624, 7.064, 7.0636, 7.0651, 7.0649, 7.0658, 7.0653, 7.0649, 7.0707, 7.0702, 7.0697, 7.0692, 7.069, 7.0705, 7.0702, 7.0696, 7.0691, 7.0686, 7.0682, 7.0675, 7.0691, 7.0686, 7.0701, 7.0696, 7.0692, 7.0709, 7.0722, 7.0716, 7.0712, 7.0712, 7.0709, 7.0703, 7.0699, 7.0712, 7.0706, 7.0703, 7.0697, 7.069, 7.0684, 7.0681, 7.0678, 7.0692, 7.0689, 7.0685, 7.0681, 7.0675, 7.0673, 7.0688, 7.0686, 7.07, 7.0697, 7.0715, 7.0733, 7.0749, 7.0745, 7.0741, 7.0737, 7.0732, 7.0728, 7.0727, 7.0745, 7.0743, 7.0739, 7.0738, 7.0734, 7.0732, 7.0727, 7.0723, 7.0718, 7.0712, 7.0707, 7.0723, 7.0718, 7.0713, 7.0708, 7.0703, 7.0699, 7.0699, 7.0694, 7.069, 7.0684, 7.0677, 7.0693, 7.0691, 7.0687, 7.0682, 7.0675, 7.0712, 7.0709, 7.0703, 7.0698, 7.0696, 7.069, 7.0687, 7.0704, 7.0699, 7.0751, 7.0745, 7.0739, 7.0738, 7.0733, 7.0747, 7.0744, 7.0742, 7.0736, 7.0736, 7.073, 7.073, 7.0725, 7.0719, 7.0714, 7.0709, 7.0711, 7.0705, 7.072, 7.0737, 7.0733, 7.0727, 7.0722, 7.0719, 7.0713, 7.0691, 7.067, 7.0683, 7.0678, 7.0674, 7.0709, 7.0707, 7.0701, 7.0697, 7.0694, 7.0687, 7.07, 7.0697, 7.0694, 7.0689, 7.0683, 7.0682, 7.0679, 7.0673, 7.0687, 7.0682, 7.0679, 7.0678, 7.0673, 7.0687, 7.0683, 7.0677, 7.0691, 7.0685, 7.0679, 7.0675, 7.0668, 7.0681, 7.0676, 7.069, 7.0688, 7.0702, 7.07, 7.0722, 7.0736, 7.0736, 7.0771, 7.0782, 7.0777, 7.0771, 7.0765, 7.076, 7.0755, 7.0751, 7.0745, 7.0741, 7.0735, 7.0732, 7.0745, 7.0739, 7.0752, 7.073, 7.0727, 7.0722, 7.072, 7.0714, 7.0708, 7.0739, 7.0755, 7.0749, 7.0762, 7.0757, 7.0755, 7.0749, 7.0745, 7.0742, 7.074, 7.0739, 7.0735, 7.0733, 7.0728, 7.0726, 7.0741, 7.0736, 7.0735, 7.0748, 7.0746, 7.074, 7.0754, 7.0749, 7.0727, 7.0724, 7.0738, 7.0735, 7.0729, 7.0726, 7.072, 7.0715, 7.0696, 7.0713, 7.0707, 7.0702, 7.0697, 7.0696, 7.0713, 7.0707, 7.0707, 7.0707, 7.0704, 7.0719, 7.07, 7.0694, 7.0694, 7.0688, 7.0703, 7.0698, 7.0694, 7.0689, 7.0686, 7.0668, 7.0662, 7.0657, 7.0652, 7.0648, 7.0648, 7.0644, 7.0642, 7.0655, 7.0652, 7.0648, 7.0645, 7.0641, 7.0637, 7.064, 7.0635, 7.0647, 7.0659, 7.0673, 7.0653, 7.0647, 7.0643, 7.064, 7.0634, 7.0647, 7.0642, 7.0644, 7.0641, 7.0639, 7.0638, 7.0633, 7.0632, 7.063, 7.0628, 7.0622, 7.0619, 7.0616, 7.061, 7.0606, 7.0604, 7.062, 7.0656, 7.0705, 7.0701, 7.0695, 7.0692, 7.069, 7.0706, 7.0706, 7.0706, 7.0707, 7.0701, 7.0695, 7.0689, 7.0687, 7.0681, 7.0679, 7.0692, 7.0671, 7.0666, 7.0661, 7.0658, 7.0656, 7.0652, 7.0649, 7.0643, 7.0638, 7.0651, 7.0653, 7.0651, 7.0665, 7.0681, 7.0679, 7.0673, 7.0669, 7.0669, 7.0664, 7.066, 7.0674, 7.0671, 7.0666, 7.066, 7.0661, 7.066, 7.064, 7.0636, 7.0636, 7.0634, 7.0629, 7.0627, 7.0622, 7.0623, 7.0618, 7.0616, 7.0595, 7.0591, 7.059, 7.0587, 7.0582, 7.0577, 7.0571, 7.0567, 7.0566, 7.058, 7.0576, 7.0572, 7.0567, 7.0562, 7.0558, 7.0555, 7.0559, 7.0571, 7.0572, 7.0567, 7.0565, 7.0561, 7.0557, 7.0568, 7.0566, 7.0561, 7.0556, 7.055, 7.0546, 7.054, 7.0535, 7.0515, 7.0511, 7.0506, 7.0518, 7.053, 7.0526, 7.0525, 7.052, 7.0515, 7.0509, 7.0506, 7.0501, 7.0496, 7.0506, 7.0504, 7.0498, 7.0499, 7.0494, 7.049, 7.0487, 7.05, 7.0502, 7.0515, 7.0511, 7.0506, 7.0519, 7.0515, 7.051, 7.0523, 7.0536, 7.0516, 7.0529, 7.0524, 7.052, 7.0516, 7.0513, 7.0509, 7.0505, 7.05, 7.0513, 7.0514, 7.051, 7.0524, 7.0536, 7.055, 7.0548, 7.0548, 7.0561, 7.0557, 7.0571, 7.0588, 7.0586, 7.0599, 7.0593, 7.0591, 7.0588, 7.0584, 7.0581, 7.0578, 7.0573, 7.0569, 7.0565, 7.0564, 7.0564, 7.056, 7.0558, 7.0554, 7.0555, 7.0552, 7.0566, 7.0564, 7.0574, 7.058400000000001, 7.058, 7.0577, 7.0572, 7.0572, 7.0569, 7.0583, 7.0596, 7.061, 7.0605, 7.0603, 7.0599, 7.0595, 7.059, 7.0584, 7.0598, 7.0612, 7.0608, 7.0606, 7.0604, 7.0605, 7.0601, 7.0596, 7.0611, 7.0621, 7.0617, 7.0629, 7.0625, 7.0653, 7.065, 7.0648, 7.0649, 7.0645, 7.0655, 7.0668, 7.0663, 7.0659, 7.0657, 7.0656, 7.065, 7.0646, 7.0641, 7.0638, 7.0637, 7.0649, 7.0645, 7.0643, 7.0644, 7.064, 7.0653, 7.0652, 7.0652, 7.0647, 7.0643, 7.0658, 7.067, 7.0665, 7.0663, 7.0658, 7.0657, 7.0652, 7.0654, 7.065, 7.0644, 7.064, 7.0635, 7.0648, 7.0652, 7.0654, 7.065, 7.0645, 7.0643, 7.065300000000001, 7.066300000000001, 7.0658, 7.0653, 7.0672, 7.0674, 7.0669, 7.0666, 7.0664, 7.066, 7.0655, 7.0673, 7.0669, 7.0664, 7.0666, 7.0661, 7.0656, 7.0653, 7.0653, 7.0665, 7.0693, 7.069, 7.0688, 7.07, 7.0695, 7.0706, 7.0718, 7.0713, 7.0709, 7.0722, 7.0717, 7.0715, 7.0748, 7.0744, 7.0739, 7.0737, 7.0732, 7.0744, 7.0741, 7.0754, 7.075, 7.0746, 7.0742, 7.074, 7.0738, 7.0735, 7.0738, 7.0751, 7.0749, 7.075, 7.0762, 7.0759, 7.0755, 7.0753, 7.0752, 7.0748, 7.0744, 7.0755, 7.0755, 7.0749, 7.0745, 7.0742, 7.0741, 7.0736, 7.0734, 7.073, 7.0724, 7.0721, 7.0718, 7.0713, 7.0694, 7.0689, 7.07, 7.0696, 7.0708, 7.0718000000000005, 7.073, 7.0728, 7.0724, 7.0721, 7.0715, 7.0714, 7.0727, 7.0724, 7.0719, 7.0733, 7.0734, 7.0748, 7.0748, 7.0808, 7.0806, 7.0789, 7.0787, 7.0783, 7.0779, 7.0776, 7.0771, 7.0768, 7.0767, 7.0806, 7.0801, 7.0798, 7.081, 7.0823, 7.0836, 7.0832, 7.0831, 7.0844, 7.084, 7.0837, 7.0833, 7.0831, 7.0826, 7.0838, 7.085, 7.0863, 7.0865, 7.0867, 7.0863, 7.086, 7.0856, 7.0851, 7.0847, 7.0858, 7.0855, 7.0866, 7.0862, 7.0857, 7.0872, 7.0891, 7.089, 7.0886, 7.0881, 7.0893, 7.0904, 7.0899, 7.0895, 7.089, 7.0886, 7.0881, 7.0927, 7.0957, 7.0968, 7.0964, 7.096, 7.0957, 7.0956, 7.0952, 7.095, 7.0948, 7.0944, 7.0956, 7.0952, 7.0949, 7.0946, 7.0941, 7.0936, 7.0947, 7.0944, 7.0955, 7.0951, 7.0949, 7.0961, 7.0956, 7.0955, 7.0953, 7.0949, 7.0947, 7.0945, 7.0943, 7.0938, 7.0934, 7.0929, 7.091, 7.0891, 7.0889, 7.09, 7.09, 7.0897, 7.0893, 7.0889, 7.089, 7.0888, 7.0885, 7.0882, 7.0879, 7.0876, 7.0872, 7.0883, 7.088, 7.0892, 7.0887, 7.0883, 7.0884, 7.0879, 7.0875, 7.0874, 7.0873, 7.0869, 7.0864, 7.0859, 7.0854, 7.0853, 7.085, 7.0846, 7.0857, 7.0839, 7.0854, 7.0852, 7.0865, 7.0863, 7.0861, 7.0857, 7.0853, 7.0849, 7.0845, 7.084, 7.0852, 7.0851, 7.0865, 7.0877, 7.0892, 7.0888, 7.0884, 7.0882, 7.0893, 7.0888, 7.0906, 7.0905, 7.0903, 7.0916, 7.0911, 7.0906, 7.0927, 7.0922, 7.0917, 7.0914, 7.0909, 7.092, 7.0915, 7.0911, 7.0907, 7.0889, 7.0902, 7.0899, 7.0895, 7.091, 7.0908, 7.0904, 7.0902, 7.0901, 7.09, 7.0913, 7.0909, 7.0919, 7.0915, 7.0914, 7.0898, 7.0893, 7.0902, 7.0915, 7.0911, 7.0907, 7.0904, 7.0934, 7.0929, 7.0929, 7.0939, 7.0935, 7.0932, 7.093, 7.0914, 7.0912, 7.0907, 7.0902, 7.0902, 7.09, 7.0898, 7.0895, 7.0893, 7.0892, 7.0889, 7.0888, 7.0886, 7.0898, 7.0883, 7.0893, 7.0889, 7.0885, 7.0882, 7.0878, 7.0876, 7.0872, 7.087, 7.0867, 7.0863, 7.0868, 7.0864, 7.0876, 7.0872, 7.0868, 7.0881, 7.0893, 7.0889, 7.0917, 7.0913, 7.0909, 7.0904, 7.0899, 7.0895, 7.0906, 7.0906, 7.0901, 7.0896, 7.0892, 7.0888, 7.0885, 7.0881, 7.0909, 7.0904, 7.0901, 7.0899, 7.091, 7.0907, 7.0921, 7.0937, 7.0951, 7.0948, 7.0961, 7.096, 7.0973, 7.0972, 7.0967, 7.0997, 7.0993, 7.0978, 7.0974, 7.097, 7.0966, 7.0963, 7.0966, 7.0962, 7.0958, 7.0953, 7.0949, 7.0962, 7.0974, 7.0971, 7.0985, 7.098, 7.0992, 7.099, 7.1001, 7.1001, 7.1002, 7.1019, 7.103, 7.1029, 7.1024, 7.1023, 7.1007, 7.1004, 7.1041, 7.1025, 7.1009, 7.0991, 7.0988, 7.0988, 7.0983, 7.0979, 7.0977, 7.0988, 7.1, 7.0997, 7.1023, 7.1019, 7.1019, 7.1015, 7.1028, 7.1023, 7.1019, 7.1028, 7.1028, 7.1026, 7.1023, 7.1023, 7.1018, 7.1015, 7.1013, 7.1015, 7.1025, 7.1023, 7.1033, 7.1029, 7.1024, 7.102, 7.1015, 7.1013, 7.1008, 7.1004, 7.1001, 7.1002, 7.1001, 7.0996, 7.1007, 7.1002, 7.0985, 7.098, 7.0989, 7.0987, 7.0982, 7.0977, 7.0988, 7.0998, 7.0994, 7.099, 7.1001, 7.1013, 7.1008, 7.1005, 7.1015, 7.1011, 7.1023, 7.102, 7.1015, 7.1011, 7.1007, 7.1003, 7.0999, 7.0998, 7.1009, 7.1004, 7.0999, 7.0983, 7.0981, 7.0981, 7.0979, 7.0977, 7.0973, 7.0968, 7.0965, 7.0961, 7.0971, 7.0997, 7.0995, 7.0991, 7.0973, 7.0969, 7.0965, 7.0961, 7.0973, 7.0973, 7.097, 7.0967, 7.0978, 7.0976, 7.0989, 7.0986, 7.0984, 7.098, 7.0963, 7.0963, 7.0976, 7.0972, 7.0969, 7.0966, 7.0962, 7.0958, 7.0958, 7.0957, 7.0956, 7.0966, 7.0962, 7.0976, 7.0972, 7.0968, 7.095, 7.0959, 7.0955, 7.0953, 7.0949, 7.0946, 7.093, 7.0931, 7.0914, 7.0912, 7.0924, 7.092, 7.0923, 7.0906, 7.0902, 7.0919, 7.0915, 7.0916, 7.0912, 7.091, 7.0921, 7.0919, 7.093, 7.0931, 7.0929, 7.0927, 7.0924, 7.0936, 7.0919, 7.0966, 7.0962, 7.0961, 7.0958, 7.0955, 7.095, 7.0947, 7.0958, 7.0956, 7.0955, 7.0955, 7.0951, 7.0947, 7.0943, 7.094, 7.0938, 7.0951, 7.0947, 7.0942, 7.0938, 7.0921, 7.0917, 7.0928, 7.0924, 7.0921, 7.0918, 7.0938, 7.0936, 7.0931, 7.0927, 7.0937, 7.0934, 7.0929, 7.0912, 7.0908, 7.0904, 7.0901, 7.0899, 7.0898, 7.091, 7.0905, 7.09, 7.0895, 7.0891, 7.0888, 7.0885, 7.088, 7.0877, 7.0873, 7.0883, 7.088, 7.0877, 7.0873, 7.0872, 7.087, 7.0868, 7.0877, 7.0874, 7.0873, 7.0884, 7.0869, 7.0852, 7.0848, 7.0843, 7.0838, 7.0834, 7.0832, 7.0829, 7.0826, 7.0822, 7.0819, 7.0844, 7.0829, 7.0825, 7.082, 7.082, 7.0816, 7.0813, 7.0824, 7.0835, 7.0832, 7.0829, 7.0827, 7.0824, 7.0824, 7.0837, 7.0833, 7.0843, 7.0841, 7.0853, 7.0851, 7.0847, 7.0858, 7.0855, 7.0865, 7.0865, 7.0863, 7.0849, 7.0847, 7.0848, 7.0848, 7.0844, 7.084, 7.084, 7.0836, 7.0847, 7.0844, 7.084, 7.0835, 7.0832, 7.0829, 7.0825, 7.0823, 7.0819, 7.0818, 7.0815, 7.0814, 7.0825, 7.0835, 7.0833, 7.0829, 7.0826, 7.0824, 7.0824, 7.082, 7.0817, 7.0813, 7.0823, 7.082, 7.0816, 7.0812, 7.081, 7.0806, 7.0815, 7.0812, 7.081, 7.0808, 7.0806, 7.0817, 7.0815, 7.0813, 7.081, 7.082, 7.0816, 7.0802, 7.0787, 7.0782, 7.0781, 7.0793, 7.0804, 7.0803, 7.0801, 7.0799, 7.081, 7.0863, 7.0873, 7.0872, 7.0868, 7.0855, 7.0856, 7.0855, 7.0856, 7.0865, 7.0877, 7.0873, 7.0874, 7.0858, 7.0854, 7.0853, 7.0848, 7.0844, 7.0843, 7.0854, 7.0851, 7.0836, 7.0846, 7.0842, 7.084, 7.0839, 7.0848, 7.0845, 7.0844, 7.0842, 7.0839, 7.0835, 7.0822, 7.0807, 7.082, 7.0836, 7.0833, 7.083, 7.0827, 7.0811, 7.0822, 7.0821, 7.0817, 7.0813, 7.0809, 7.0818, 7.0803, 7.08, 7.0813, 7.0811, 7.0807, 7.0805, 7.0804, 7.0801, 7.0796, 7.0793, 7.0803, 7.0848, 7.0846, 7.0844, 7.0842, 7.0838, 7.0835, 7.0834, 7.0829, 7.0827, 7.0823, 7.0819, 7.0828, 7.0839, 7.0837, 7.0833, 7.0829, 7.0826, 7.0821, 7.0818, 7.083, 7.0814, 7.0812, 7.0809, 7.0805, 7.0801, 7.0801, 7.0811, 7.0808, 7.0842, 7.0826, 7.0824, 7.0834, 7.0832, 7.0828, 7.0813, 7.0813, 7.0811, 7.082, 7.0818, 7.083, 7.0828, 7.0826, 7.0822, 7.082, 7.0816, 7.0812, 7.0809, 7.0809, 7.0807, 7.0812, 7.0809, 7.0807, 7.0804, 7.0801, 7.0799, 7.0795, 7.0792, 7.0789, 7.0787, 7.0798, 7.081, 7.0808, 7.0818, 7.0804, 7.0802, 7.0802, 7.0819, 7.0817, 7.0814, 7.0811, 7.0809, 7.0821, 7.0817, 7.0828, 7.0837, 7.0834, 7.0831, 7.0828, 7.0812, 7.0797, 7.0784, 7.078, 7.0776, 7.0773, 7.077, 7.078, 7.0791, 7.079, 7.0786, 7.0785, 7.0781, 7.0779, 7.0777, 7.0774, 7.0785, 7.0785, 7.0781, 7.078, 7.0777, 7.0773, 7.0769, 7.0767, 7.0763, 7.0762, 7.0758, 7.0755, 7.0751, 7.0749, 7.0749, 7.0746, 7.0756, 7.0752, 7.0751, 7.0749, 7.0745, 7.0744, 7.0744, 7.0754, 7.075, 7.0762, 7.0762, 7.0761, 7.077, 7.0765, 7.0761, 7.076, 7.076, 7.0756, 7.0743, 7.0754, 7.0765, 7.0775, 7.0759, 7.077, 7.0779, 7.0775, 7.0771, 7.077, 7.0768, 7.0766, 7.0765, 7.0765, 7.0761, 7.0757, 7.0743, 7.0742, 7.0739, 7.0725, 7.0723, 7.071, 7.0706, 7.0705, 7.0708, 7.0738, 7.0734, 7.073, 7.0728, 7.0724, 7.0721, 7.0731, 7.0729, 7.074, 7.0738, 7.0734, 7.0719, 7.0717, 7.0726, 7.0736, 7.0736, 7.0732, 7.0729, 7.0725, 7.0735, 7.0733, 7.0733, 7.0733, 7.0732, 7.0732, 7.0728, 7.0757, 7.0754, 7.0752, 7.0749, 7.0745, 7.0746, 7.0743, 7.074, 7.0737, 7.0733, 7.0742, 7.0767, 7.0752, 7.0736, 7.0732, 7.0741, 7.0737, 7.0735, 7.0744, 7.0753, 7.075, 7.0746, 7.0755, 7.0751, 7.0747, 7.0743, 7.074, 7.0749, 7.0745, 7.0754, 7.075, 7.0746, 7.0742, 7.0738, 7.0735, 7.0731, 7.0731, 7.0727, 7.0723, 7.0722, 7.0722, 7.072, 7.073, 7.0726, 7.0723, 7.0719, 7.0715, 7.0711, 7.071, 7.0719, 7.0728, 7.0727, 7.0712, 7.0708, 7.0717, 7.0728, 7.0725, 7.0734, 7.0731, 7.0742, 7.0739, 7.0736, 7.0733, 7.073, 7.0726, 7.0724, 7.0723, 7.072, 7.0729, 7.0728, 7.0726, 7.0765, 7.0767, 7.0764, 7.0761, 7.0759, 7.0769, 7.0766, 7.0765, 7.0761, 7.0759, 7.0758, 7.0754, 7.075, 7.0747, 7.0745, 7.0741, 7.0737, 7.0733, 7.0729, 7.0728, 7.0738, 7.0737, 7.0748, 7.0745, 7.0746, 7.0744, 7.0742, 7.0742, 7.0738, 7.0726, 7.0723, 7.072, 7.0719, 7.0715, 7.0711, 7.0707, 7.0716, 7.0713, 7.0708, 7.0707, 7.0717, 7.0725, 7.0723, 7.072, 7.0705, 7.0701, 7.0712, 7.0709, 7.0707, 7.0716, 7.0713, 7.073, 7.0743, 7.0742, 7.0743, 7.074, 7.0736, 7.0735, 7.0734, 7.0732, 7.0729, 7.074, 7.0736, 7.0748, 7.0757, 7.0756, 7.0753, 7.0751, 7.076, 7.0758, 7.0767, 7.0767, 7.0777, 7.0774, 7.0771, 7.0769, 7.0767, 7.0765, 7.0762, 7.0759, 7.0757, 7.0756, 7.0765, 7.0762, 7.0761, 7.0759, 7.0756, 7.0755, 7.0766, 7.0762, 7.0762, 7.0759, 7.0756, 7.0754, 7.075, 7.0759, 7.0757, 7.0745, 7.0741, 7.0737, 7.0733, 7.073, 7.0729, 7.0726, 7.0722, 7.0722, 7.0718, 7.0714, 7.071, 7.0706, 7.0702, 7.0698, 7.0697, 7.0706, 7.0716, 7.0726, 7.0724, 7.072, 7.0717, 7.0726, 7.0722, 7.0733, 7.0731, 7.0729, 7.0729, 7.0738, 7.0735, 7.0732, 7.073, 7.0727, 7.0724, 7.0732, 7.0729, 7.0726, 7.0722, 7.072, 7.0718, 7.0715, 7.0712, 7.071, 7.0707, 7.0704, 7.0702, 7.0698, 7.0694, 7.0697, 7.0694, 7.0715, 7.0716, 7.0713, 7.0715, 7.0715, 7.0711, 7.0719, 7.0715, 7.0711, 7.0707, 7.0693, 7.0689, 7.0687, 7.0684, 7.068, 7.0666, 7.0664, 7.066, 7.0682, 7.0679, 7.0675, 7.0675, 7.0679, 7.0688, 7.0687, 7.0698, 7.0697, 7.0694, 7.0703, 7.0701, 7.0712, 7.0709, 7.0718, 7.0716, 7.0713, 7.0711, 7.0707, 7.0716, 7.0714, 7.0711, 7.0723, 7.0719, 7.0718, 7.0715, 7.0712, 7.0708, 7.0711, 7.071, 7.0707, 7.0705, 7.0704, 7.0701, 7.0697, 7.0706, 7.0703, 7.0701, 7.0702, 7.07, 7.0699, 7.0697, 7.0685, 7.0686, 7.0683, 7.068, 7.0677, 7.0674, 7.0687, 7.069, 7.0687, 7.0677, 7.0674, 7.0691, 7.0695, 7.0691, 7.0687, 7.0684, 7.0695, 7.0691, 7.0689, 7.0699, 7.0696, 7.0705, 7.0702, 7.071, 7.0696, 7.0692, 7.069, 7.0698, 7.0694, 7.0692, 7.0691, 7.0688, 7.0697, 7.0706, 7.0716, 7.0714, 7.0713, 7.071, 7.0745, 7.0741, 7.0751, 7.0747, 7.0735, 7.0745, 7.0732, 7.073, 7.0727, 7.0724, 7.0711, 7.0698, 7.0687, 7.0687, 7.0683, 7.0693, 7.0703, 7.0702, 7.0711, 7.0709, 7.0707, 7.0705, 7.0702, 7.0702, 7.071, 7.0719, 7.0741, 7.0739, 7.0737, 7.0733, 7.0729, 7.0718, 7.0705, 7.0693, 7.069, 7.0686, 7.0682, 7.0678, 7.0674, 7.0674, 7.0674, 7.0672, 7.067, 7.0667, 7.0664, 7.065, 7.0658, 7.0666, 7.0662, 7.0672, 7.0669, 7.0667, 7.0666, 7.0663, 7.0662, 7.0661, 7.0669, 7.0667, 7.0653, 7.0651, 7.0651, 7.0667, 7.0664, 7.0661, 7.0665, 7.0662, 7.066, 7.0646, 7.0634, 7.0631, 7.0628, 7.0626, 7.0627, 7.0623, 7.0622, 7.0623, 7.0621, 7.0617, 7.0614, 7.0612, 7.0608, 7.0606, 7.0615, 7.0614, 7.061, 7.0606, 7.0604, 7.06, 7.0598, 7.0599, 7.0597, 7.0594, 7.0593, 7.0593, 7.0591, 7.0577, 7.0576, 7.0586, 7.0586, 7.0583, 7.0593, 7.0592, 7.0592, 7.0592, 7.058, 7.0578, 7.058, 7.0578, 7.0578, 7.0577, 7.0586, 7.0575, 7.0563, 7.0562, 7.0562, 7.0573, 7.0572, 7.0559, 7.057, 7.0567, 7.0565, 7.0576, 7.0574, 7.0571, 7.0567, 7.0565, 7.0554, 7.0551, 7.0547, 7.0545, 7.0544, 7.0548, 7.0548, 7.057, 7.0579, 7.0576, 7.0585, 7.0581, 7.0578, 7.0577, 7.0586, 7.0598, 7.0594, 7.0604, 7.0613, 7.0609, 7.0609, 7.0606, 7.0606, 7.0604, 7.0614, 7.0624, 7.0632, 7.0642, 7.064, 7.0627, 7.0627, 7.0626, 7.0623, 7.0632, 7.0642, 7.0639, 7.0639, 7.0638, 7.0634, 7.0632, 7.063, 7.064, 7.0649, 7.0657, 7.0653, 7.0649, 7.0647, 7.0645, 7.0643, 7.0639, 7.0637, 7.0636, 7.0645, 7.0642, 7.064, 7.0638, 7.0647, 7.0645, 7.0642, 7.0638, 7.0648, 7.0644, 7.0642, 7.0639, 7.0638, 7.0635, 7.0633, 7.0631, 7.0628, 7.0637, 7.0645, 7.0643, 7.0641, 7.0638, 7.0636, 7.0634, 7.062, 7.0628, 7.0626, 7.0622, 7.0619, 7.0616, 7.0614, 7.0613, 7.061, 7.061, 7.0607, 7.0613, 7.0612, 7.0608, 7.0606, 7.0606, 7.0603, 7.0612, 7.0611, 7.0608, 7.0606, 7.0605, 7.0592, 7.0591, 7.0596, 7.0592, 7.0589, 7.0577, 7.0574, 7.0571, 7.0567, 7.0559, 7.0555, 7.0555, 7.0552, 7.055, 7.0547, 7.0544, 7.0541, 7.0538, 7.0537, 7.0535, 7.0534, 7.0544, 7.0541, 7.0537, 7.0534, 7.0549, 7.0546, 7.0535, 7.0531, 7.0528, 7.0525, 7.0523, 7.0533, 7.0531, 7.053, 7.0517, 7.0521, 7.0518, 7.0515, 7.0519, 7.0516, 7.0514, 7.0513, 7.0511, 7.0507, 7.0506, 7.0513, 7.051, 7.052, 7.0517, 7.0514, 7.0511, 7.0519, 7.0516, 7.0514, 7.0511, 7.0508, 7.0496, 7.0493, 7.049, 7.0489, 7.0487, 7.0485, 7.0494, 7.050400000000001, 7.0514, 7.053, 7.0538, 7.0547, 7.0545, 7.0546, 7.0545, 7.0532, 7.0529, 7.0538, 7.0536, 7.0534, 7.0532, 7.0529, 7.0527, 7.0524, 7.0537, 7.0537, 7.0535, 7.0544, 7.0541, 7.0538, 7.0535, 7.0545, 7.0541, 7.0537, 7.0535, 7.0532, 7.0557, 7.0555, 7.0552, 7.055, 7.0546, 7.0544, 7.0542, 7.0538, 7.0547, 7.0544, 7.0543, 7.0551, 7.0559, 7.0556, 7.0546, 7.0544, 7.0542, 7.0541, 7.0527, 7.0525, 7.0523, 7.052, 7.0517, 7.0515, 7.0513, 7.051, 7.052, 7.0517, 7.052700000000001, 7.0524, 7.0532, 7.0529, 7.0527, 7.0526, 7.0524, 7.0521, 7.0518, 7.0516, 7.0513, 7.0511, 7.052, 7.0517, 7.0513, 7.0509, 7.0507, 7.0504, 7.05, 7.0508, 7.0506, 7.0516000000000005, 7.0513, 7.051, 7.0507, 7.0517, 7.052700000000001, 7.053700000000001, 7.0534, 7.0531, 7.0528, 7.0524, 7.0532, 7.0531, 7.0527, 7.0525, 7.0521, 7.053, 7.053, 7.0527, 7.0524, 7.0521, 7.0518, 7.0515, 7.0511, 7.0511, 7.0507, 7.0504, 7.0501, 7.0488, 7.0485, 7.0482, 7.048, 7.0489, 7.0476, 7.0473, 7.0473, 7.0487, 7.0496, 7.0494, 7.0493, 7.0501, 7.0499, 7.0498, 7.0496, 7.0493, 7.049, 7.0486, 7.0474, 7.047, 7.0469, 7.0498, 7.0497, 7.0495, 7.0504, 7.051, 7.0507, 7.0506, 7.0493, 7.049, 7.0488, 7.0486, 7.0475, 7.0473, 7.0471, 7.0459, 7.0458, 7.0466, 7.0464, 7.0474000000000006, 7.048400000000001, 7.0494, 7.0491, 7.0487, 7.0485, 7.0494, 7.0493, 7.0492, 7.0491, 7.048, 7.0478, 7.0488, 7.0498, 7.0495, 7.0506, 7.0505, 7.0514, 7.0512, 7.0509, 7.0506, 7.0504, 7.0504, 7.0502, 7.0499, 7.0507, 7.0504, 7.0501, 7.0497, 7.0494, 7.0492, 7.0499, 7.0496, 7.0505, 7.0525, 7.0525, 7.0521, 7.0518, 7.0515, 7.0503, 7.05, 7.0501, 7.0501, 7.0498, 7.0496, 7.0493, 7.049, 7.0488, 7.0485, 7.0495, 7.0505, 7.051500000000001, 7.0513, 7.0511, 7.051, 7.0508, 7.0518, 7.0517, 7.0515, 7.0523, 7.0525, 7.0523, 7.0525, 7.0514, 7.0503, 7.0491, 7.0489, 7.0478, 7.0476, 7.0473, 7.0473, 7.0462, 7.0458, 7.0456, 7.0454, 7.0462, 7.046, 7.0459, 7.0456, 7.0443, 7.0442, 7.045, 7.0449, 7.0449, 7.0458, 7.0468, 7.0457, 7.0454, 7.0452, 7.0451, 7.0461, 7.0486, 7.049600000000001, 7.0495, 7.0492, 7.0481, 7.0478, 7.0475, 7.0472, 7.0482000000000005, 7.049200000000001, 7.0502, 7.0502, 7.0502, 7.0502, 7.05, 7.0497, 7.0494, 7.0494, 7.0504, 7.0512, 7.052, 7.0518, 7.0516, 7.0526, 7.0525, 7.0535000000000005, 7.0535, 7.0533, 7.0541, 7.0548, 7.056, 7.0558, 7.0555, 7.0553, 7.0562, 7.0558, 7.0573, 7.0571, 7.058, 7.0578, 7.0576, 7.0574, 7.0574, 7.057, 7.0577, 7.0574, 7.0563, 7.0562, 7.055, 7.0548, 7.0546, 7.0546, 7.0544, 7.0545, 7.0543, 7.0531, 7.0519, 7.0516, 7.0516, 7.0514, 7.0512, 7.0511, 7.0521, 7.053100000000001, 7.053, 7.0538, 7.0536, 7.0534, 7.0532, 7.0541, 7.0542, 7.0563, 7.0571, 7.0569, 7.0556, 7.0554, 7.0553, 7.0552, 7.055, 7.0548, 7.0555, 7.0554, 7.0555, 7.0555, 7.0564, 7.0594, 7.0583, 7.0579, 7.0575, 7.0573, 7.0572, 7.0569, 7.0559, 7.0585, 7.0583, 7.058, 7.0578, 7.0575, 7.0573, 7.0572, 7.057, 7.0559, 7.0558, 7.0556, 7.0565, 7.0564, 7.0562, 7.0559, 7.0557, 7.0554, 7.0553, 7.0562, 7.0572, 7.0581, 7.059, 7.0591, 7.0588, 7.0587, 7.0574, 7.0572, 7.0581, 7.0621, 7.0619, 7.0618, 7.0616, 7.0624, 7.0621, 7.0621, 7.063, 7.0637, 7.0634, 7.0633, 7.0632, 7.063, 7.0639, 7.0638, 7.0635, 7.0635, 7.0633, 7.063, 7.0629, 7.0637, 7.0656, 7.0654, 7.0651, 7.0674, 7.0682, 7.068, 7.0678, 7.0676, 7.0675, 7.0673, 7.0674, 7.0671, 7.0668, 7.0676, 7.0674, 7.0671, 7.0669, 7.0656, 7.0655, 7.0652, 7.066, 7.0657, 7.0658, 7.066, 7.0665, 7.0663, 7.066, 7.0657, 7.0655, 7.0653, 7.065, 7.0648, 7.0646, 7.0643, 7.065, 7.0647, 7.0645, 7.0642, 7.0649, 7.0662, 7.0652, 7.0672, 7.0671, 7.0669, 7.0669, 7.0667, 7.0654, 7.0642, 7.065, 7.0647, 7.0646, 7.0654, 7.0652, 7.0652, 7.065, 7.0647, 7.0645, 7.0642, 7.0649, 7.0647, 7.0646, 7.0643, 7.0643, 7.0641, 7.064, 7.0637, 7.0635, 7.0633, 7.063, 7.0628, 7.0646, 7.0643, 7.066, 7.0657, 7.0656, 7.0646, 7.0654, 7.0651, 7.0652, 7.0649, 7.0646, 7.0644, 7.0641, 7.0639, 7.0636, 7.0634, 7.0624, 7.0623, 7.062, 7.0617, 7.0627, 7.063700000000001, 7.0659, 7.0657, 7.0665, 7.0663, 7.0672, 7.0669, 7.0666, 7.0676, 7.0674, 7.0663, 7.0671, 7.0668, 7.0665, 7.0662, 7.0659, 7.0658, 7.0655, 7.0652, 7.0651, 7.066, 7.0659, 7.0668, 7.0667, 7.0664, 7.0653, 7.0661, 7.0662, 7.066, 7.0657, 7.0655, 7.0665000000000004, 7.0662, 7.066, 7.0659, 7.0658, 7.0656, 7.0654, 7.0652, 7.065, 7.0648, 7.0646, 7.0644, 7.0641, 7.0629, 7.0627, 7.0625, 7.0623, 7.0622, 7.062, 7.0629, 7.0627, 7.0616, 7.0614, 7.0623, 7.062, 7.0617, 7.0614, 7.0621, 7.0618, 7.0616, 7.0614, 7.0622, 7.063, 7.0638, 7.0645, 7.0642, 7.065, 7.0647, 7.0644, 7.0642, 7.0639, 7.0636, 7.0633, 7.0631, 7.0629, 7.0626, 7.0625, 7.0625, 7.0623, 7.062, 7.0619, 7.0607, 7.0614, 7.0612, 7.0619, 7.0619, 7.0608, 7.0606, 7.0603, 7.06, 7.061, 7.062, 7.0642, 7.0652, 7.065, 7.0657, 7.0667, 7.0664, 7.0661, 7.0671, 7.0668, 7.0666, 7.0668, 7.0677, 7.0674, 7.0671, 7.0668, 7.0666, 7.0673, 7.0671, 7.0669, 7.0666, 7.0676000000000005, 7.068600000000001, 7.069600000000001, 7.0693, 7.0702, 7.0699, 7.0696, 7.0693, 7.0693, 7.069, 7.0687, 7.0686, 7.0694, 7.0683, 7.0681, 7.068, 7.0678, 7.0676, 7.0674, 7.0671, 7.0681, 7.0684, 7.0681, 7.0678, 7.0675, 7.0672, 7.0669, 7.0666, 7.0665, 7.0662, 7.0661, 7.066, 7.0657, 7.0654, 7.0669, 7.0666, 7.0664, 7.0661, 7.0658, 7.0655, 7.0654, 7.0653, 7.065, 7.0658, 7.066800000000001, 7.0665, 7.0675, 7.0685, 7.0684, 7.0684, 7.0681, 7.0678, 7.0676, 7.0686, 7.0683, 7.0693, 7.07, 7.0699, 7.0696, 7.0692, 7.0699, 7.0706, 7.0704, 7.0704, 7.0701, 7.0711, 7.0703, 7.0713, 7.0711, 7.0709, 7.0718, 7.0717, 7.0715, 7.072500000000001, 7.073500000000001, 7.0769, 7.0768, 7.0766, 7.0764, 7.0763, 7.0771, 7.077, 7.0767, 7.0764, 7.0761, 7.0759, 7.0757, 7.0755, 7.0753, 7.075, 7.0748, 7.0756, 7.0764, 7.0762, 7.076, 7.0757, 7.0754, 7.0771, 7.0769, 7.077, 7.0768, 7.0765, 7.0772, 7.0769, 7.0768, 7.0777, 7.0776, 7.0773, 7.077, 7.0767, 7.0764, 7.0762, 7.0759, 7.0757, 7.0756, 7.0766, 7.0764, 7.0761, 7.0761, 7.0758, 7.0766, 7.0764, 7.0762, 7.0761, 7.0749, 7.0746, 7.0745, 7.0742, 7.075, 7.0748, 7.0747, 7.0744, 7.0741, 7.0749, 7.0749, 7.0758, 7.0756, 7.0753, 7.075, 7.0757, 7.0755, 7.0754, 7.0751, 7.0751, 7.0749, 7.0748, 7.0738, 7.0746, 7.0745, 7.0744, 7.0754, 7.0752, 7.075, 7.0758, 7.0755, 7.0762, 7.076, 7.0758, 7.0755, 7.0752, 7.075, 7.0748, 7.0746, 7.0753, 7.0753, 7.0772, 7.078, 7.0779, 7.078, 7.0778, 7.0785, 7.0782, 7.0784, 7.0781, 7.0781, 7.0782, 7.083, 7.0829, 7.0838, 7.0835, 7.0832, 7.083, 7.0827, 7.0825, 7.0823, 7.0821, 7.082, 7.0818, 7.0825, 7.0824, 7.0821, 7.082, 7.0818, 7.0817, 7.0824, 7.0823, 7.0821, 7.082, 7.082, 7.0819, 7.0817, 7.0816, 7.0816, 7.0824, 7.0831, 7.0828, 7.0836, 7.0844, 7.0841, 7.0849, 7.0857, 7.0857, 7.0854, 7.0851, 7.0858, 7.0855, 7.0852, 7.0851, 7.085, 7.0849, 7.0847, 7.0854, 7.0861, 7.0859, 7.0856, 7.0854, 7.0853, 7.0842, 7.084, 7.0838, 7.0835, 7.0833, 7.0831, 7.0828, 7.0828, 7.0826, 7.0833, 7.0831, 7.0838, 7.0852, 7.085, 7.0847, 7.0844, 7.0841, 7.0838, 7.0836, 7.0834, 7.0831, 7.0839, 7.0838, 7.0835, 7.0834, 7.0851, 7.0851, 7.0849, 7.0847, 7.0845, 7.0843, 7.0842, 7.084, 7.0843, 7.0841, 7.0847, 7.0844, 7.0841, 7.0839, 7.0836, 7.0835, 7.0833, 7.0832, 7.084, 7.0838, 7.0836, 7.0837, 7.0834, 7.0842, 7.085, 7.0849, 7.0857, 7.0865, 7.0863, 7.0861, 7.0859, 7.0856, 7.0855, 7.0853, 7.0861, 7.0858, 7.0859, 7.0858, 7.0856, 7.0853, 7.0852, 7.085, 7.0847, 7.0845, 7.0842, 7.0852, 7.085, 7.0851, 7.0849, 7.0848, 7.0856, 7.0848, 7.0856, 7.0864, 7.0862, 7.0859, 7.0858, 7.0855, 7.0854, 7.0853, 7.0863, 7.0862, 7.0869, 7.0866, 7.0873, 7.088, 7.0879, 7.0877, 7.0885, 7.0882, 7.088, 7.0877, 7.0875, 7.0874, 7.0871, 7.0868, 7.0876, 7.0875, 7.0872, 7.0882, 7.0872, 7.0869, 7.0866, 7.0865, 7.0863, 7.086, 7.0859, 7.0866, 7.0864, 7.0863, 7.0871, 7.0868, 7.0859, 7.0867, 7.0864, 7.0862, 7.086, 7.0859, 7.0866, 7.0874, 7.0889, 7.0887, 7.0891, 7.0891, 7.0883, 7.0883, 7.0882, 7.089, 7.0889, 7.0887, 7.0886, 7.0885, 7.0883, 7.088, 7.0878, 7.0875, 7.0873, 7.0872, 7.087, 7.0867, 7.0856, 7.0854, 7.0851, 7.0848, 7.0846, 7.0845, 7.0843, 7.0841, 7.083, 7.083, 7.0827, 7.0848, 7.0848, 7.0845, 7.0843, 7.0849, 7.0853, 7.0863000000000005, 7.0861, 7.0858, 7.0856, 7.0854, 7.0851, 7.084, 7.085, 7.086, 7.087000000000001, 7.0869, 7.0868, 7.0865, 7.0865, 7.0873, 7.0873, 7.0871, 7.0868, 7.0866, 7.0863, 7.086, 7.0858, 7.0855, 7.0853, 7.0853, 7.085, 7.0847, 7.0845, 7.0843, 7.084, 7.0837, 7.0835, 7.0834, 7.0823, 7.0821, 7.0821, 7.0818, 7.0815, 7.0834, 7.0832, 7.083, 7.0827, 7.0824, 7.0821, 7.0818, 7.0815, 7.0814, 7.0811, 7.0808, 7.0802, 7.0791, 7.078, 7.0777, 7.0777, 7.0785, 7.0782, 7.0781, 7.0778, 7.0788, 7.0785, 7.0795, 7.0801, 7.0809, 7.0806, 7.0803, 7.0803, 7.0802, 7.0799, 7.080900000000001, 7.0807, 7.0804, 7.0802, 7.0809, 7.0806, 7.0805, 7.0803, 7.0793, 7.0792, 7.0798, 7.0796, 7.0804, 7.0801, 7.0798, 7.0795, 7.080500000000001, 7.0804, 7.0801, 7.08, 7.0798, 7.0797, 7.0794, 7.0804, 7.0802, 7.0799, 7.0796, 7.0803, 7.0829, 7.0826, 7.0824, 7.0834, 7.0831, 7.0838, 7.0836, 7.0838, 7.0844, 7.0842, 7.084, 7.0837, 7.0834, 7.0832, 7.0842, 7.084, 7.0837, 7.0835, 7.0832, 7.0829, 7.0828, 7.0825, 7.0824, 7.083, 7.0827, 7.0824, 7.0821, 7.0819, 7.0826, 7.0825, 7.0816, 7.0813, 7.082, 7.0818, 7.0816, 7.0823, 7.0821, 7.0831, 7.0841, 7.085100000000001, 7.085, 7.0849, 7.0856, 7.0872, 7.087, 7.0859, 7.0858, 7.0849, 7.0848, 7.0845, 7.0852, 7.085, 7.0848, 7.0846, 7.0853, 7.0861, 7.0859, 7.0866, 7.0863, 7.0862, 7.0859, 7.0865, 7.0854, 7.0851, 7.0851, 7.0849, 7.0848, 7.0846, 7.0845, 7.0843, 7.0853, 7.0851, 7.0848, 7.0846, 7.0843, 7.0849, 7.0856, 7.0855, 7.086, 7.0857, 7.0856, 7.0863, 7.087, 7.0867, 7.0866, 7.0864, 7.0861, 7.0859, 7.0857, 7.0867, 7.0874, 7.0871, 7.0869, 7.087, 7.0868, 7.0866, 7.0876, 7.0886000000000005, 7.089600000000001, 7.0888, 7.0887, 7.0886, 7.0884, 7.0882, 7.088, 7.0886, 7.0883, 7.088, 7.0877, 7.0874, 7.0872, 7.087, 7.0867, 7.0866, 7.0876, 7.0874, 7.0872, 7.0869, 7.0867, 7.0864, 7.0862, 7.086, 7.0863, 7.0853, 7.0843, 7.0842, 7.084, 7.0838, 7.0836, 7.0833, 7.0831, 7.0829, 7.0836, 7.0825, 7.0823, 7.0821, 7.0818, 7.0815, 7.0812, 7.0811, 7.081, 7.0808, 7.0805, 7.0803, 7.0801, 7.0807, 7.0807, 7.0814, 7.0812, 7.081, 7.0808, 7.0807, 7.0814, 7.0812, 7.0801, 7.08, 7.0799, 7.0796, 7.0794, 7.0791, 7.0789, 7.0779, 7.0785, 7.0785, 7.0791, 7.0798, 7.0805, 7.0803, 7.0792, 7.0789, 7.0786, 7.0784, 7.0791, 7.0789, 7.0787, 7.0784, 7.079400000000001, 7.0792, 7.0802000000000005, 7.0801, 7.0809, 7.0809, 7.0807, 7.0806, 7.0814, 7.0813, 7.0814, 7.0804, 7.0803, 7.0803, 7.0802, 7.08, 7.0799, 7.0801, 7.0799, 7.0806, 7.0805, 7.0805, 7.0813, 7.0811, 7.081, 7.0818, 7.0816, 7.0814, 7.0814, 7.0822, 7.0823, 7.0821, 7.0819, 7.0818, 7.0826, 7.0824, 7.0823, 7.0821, 7.0829, 7.0819, 7.0829, 7.083900000000001, 7.084900000000001, 7.085900000000001, 7.0857, 7.0857, 7.0865, 7.0863, 7.086, 7.0868, 7.0867, 7.0866, 7.0866, 7.0864, 7.0862, 7.0859, 7.0866, 7.0876, 7.0886000000000005, 7.0877, 7.0875, 7.0872, 7.0869, 7.0869, 7.0866, 7.0863, 7.0861, 7.0859, 7.0869, 7.0867, 7.0858, 7.0866, 7.0865, 7.0863, 7.0871, 7.0868, 7.0867, 7.0875, 7.0865, 7.0872, 7.0879, 7.0877, 7.0875, 7.0883, 7.0881, 7.0881, 7.0878, 7.0875, 7.0874, 7.0873, 7.0873, 7.0871, 7.086, 7.0859, 7.0866, 7.0865, 7.0864, 7.0863, 7.086, 7.086, 7.0859, 7.0856, 7.0853, 7.086, 7.0858, 7.0857, 7.0866, 7.0856, 7.0858, 7.0856, 7.0863, 7.0863, 7.0861, 7.086, 7.0866, 7.0864, 7.0872, 7.0863, 7.0861, 7.086, 7.087000000000001, 7.0877, 7.0887, 7.089700000000001, 7.0895, 7.0903, 7.0901, 7.0899, 7.0897, 7.0894, 7.0892, 7.0892, 7.0882, 7.0881, 7.088, 7.0878, 7.0876, 7.0874, 7.0872, 7.088, 7.0877, 7.0875, 7.0873, 7.0871, 7.0877, 7.0874, 7.0872, 7.087, 7.0872, 7.087, 7.087, 7.0877, 7.0875, 7.0872, 7.0861, 7.0858, 7.0855, 7.0895, 7.0892, 7.089, 7.0889, 7.0886, 7.0896, 7.0895, 7.0892, 7.089, 7.0887, 7.0886, 7.0883, 7.088, 7.0877, 7.0875, 7.0881, 7.0887, 7.09, 7.0898, 7.0896, 7.0894, 7.090400000000001, 7.0911, 7.091, 7.0908, 7.0905, 7.0912, 7.0918, 7.0919, 7.0925, 7.0922, 7.092, 7.0918, 7.0915, 7.0914, 7.0911, 7.091, 7.0907, 7.0904, 7.091, 7.0916, 7.0915, 7.0913, 7.0911, 7.0918, 7.0926, 7.0926, 7.0933, 7.0943000000000005, 7.0959, 7.0957, 7.0946, 7.0952, 7.0951, 7.0966, 7.0963, 7.096, 7.0957, 7.0964, 7.097, 7.0968, 7.0966, 7.0973, 7.0973, 7.098, 7.0979, 7.0978, 7.0985, 7.0982, 7.0979, 7.098, 7.0978, 7.0977, 7.0976, 7.0974, 7.0972, 7.0969, 7.0968, 7.0968, 7.0966, 7.0964, 7.0972, 7.097, 7.098000000000001, 7.0977, 7.0975, 7.0975, 7.0973, 7.0982, 7.0981, 7.0978, 7.0976, 7.0974, 7.0974, 7.0972, 7.097, 7.0968, 7.0966, 7.0958, 7.0955, 7.0964, 7.0954, 7.0962, 7.0962, 7.0959, 7.0966, 7.0972, 7.0973, 7.0972, 7.0979, 7.0987, 7.0985, 7.0991, 7.0989, 7.0987, 7.0987, 7.0985, 7.0985, 7.0983, 7.0982, 7.0988, 7.0985, 7.0983, 7.0982, 7.0981, 7.098, 7.0981, 7.0987, 7.0993, 7.099, 7.0988, 7.0987, 7.0985, 7.0984, 7.0981, 7.098, 7.0986, 7.0992, 7.099, 7.0981, 7.0972, 7.0969, 7.0979, 7.0978, 7.0978, 7.0977, 7.0977, 7.098, 7.0978, 7.0977, 7.0974, 7.0974, 7.0973, 7.0971, 7.0969, 7.0969, 7.0967, 7.0966, 7.0976, 7.0986, 7.0984, 7.0982, 7.0981, 7.0972, 7.097, 7.0976, 7.0976, 7.0974, 7.0973, 7.097, 7.0967, 7.0973, 7.0973, 7.0971, 7.0969, 7.097, 7.0976, 7.0974, 7.0972, 7.0969, 7.0976, 7.0975, 7.0985000000000005, 7.1001, 7.0999, 7.0996, 7.0994, 7.0993, 7.0993, 7.0983, 7.098, 7.0978, 7.0977, 7.0988, 7.1, 7.0998, 7.0996, 7.0995, 7.0994, 7.0992, 7.0989, 7.099900000000001, 7.0998, 7.0995, 7.1024, 7.1055, 7.1061, 7.1061, 7.1058, 7.1057, 7.1047, 7.1045, 7.1042, 7.104, 7.1039, 7.1037, 7.1035, 7.1041, 7.1039, 7.1037, 7.1043, 7.1041, 7.1038, 7.1036, 7.1026, 7.1033, 7.104, 7.1047, 7.1045, 7.1043, 7.1041, 7.104, 7.1038, 7.1036, 7.1034, 7.1032, 7.1031, 7.103, 7.1036, 7.1034, 7.1031, 7.1028, 7.1035, 7.1032, 7.1038, 7.1035, 7.1066, 7.1064, 7.1064, 7.107, 7.1068, 7.1067, 7.1066, 7.1064, 7.1063, 7.1061, 7.1054, 7.1051, 7.1051, 7.1058, 7.1056, 7.1054, 7.106, 7.1058, 7.106, 7.1081, 7.1078, 7.1084, 7.1082, 7.1081, 7.1087, 7.1085, 7.1082, 7.1108, 7.1105, 7.1103, 7.1101, 7.1098, 7.1096, 7.1102, 7.1101, 7.1107, 7.1106, 7.1129, 7.1126, 7.1124, 7.1122, 7.1128, 7.1126, 7.1123, 7.112, 7.1117, 7.1114, 7.1111, 7.1109, 7.1115, 7.1121, 7.1129, 7.1128, 7.1126, 7.1132, 7.1122, 7.112, 7.112, 7.1118, 7.1126, 7.1126, 7.1116, 7.1106, 7.1105, 7.1116, 7.1114, 7.1113, 7.1119, 7.1118, 7.1118, 7.1117, 7.1115, 7.1112, 7.111, 7.1111, 7.1117, 7.1107, 7.1104, 7.1101, 7.1108, 7.1106, 7.1113, 7.1111, 7.1109, 7.1107, 7.1106, 7.1105, 7.1103, 7.111, 7.1108, 7.1106, 7.1104, 7.1102, 7.11, 7.1099, 7.1097, 7.1104, 7.1101, 7.1114, 7.1112, 7.1111, 7.111, 7.111, 7.1108, 7.1106, 7.1104, 7.1094, 7.1093, 7.1091, 7.1088, 7.1086, 7.1084, 7.1083, 7.108, 7.1084, 7.1089, 7.1086, 7.1076, 7.1074, 7.1072, 7.1069, 7.1076, 7.1068, 7.1074, 7.1076, 7.1069, 7.1074, 7.1073, 7.1073, 7.1064, 7.1062, 7.1054, 7.1053, 7.1051, 7.105, 7.1059, 7.1057, 7.1054, 7.1053, 7.1052, 7.1051, 7.105, 7.1047, 7.1045, 7.1043, 7.1041, 7.1039, 7.1038, 7.1036, 7.1037, 7.1036, 7.1042, 7.104, 7.1046, 7.1052, 7.1058, 7.1056, 7.1055, 7.1053, 7.1052, 7.1052, 7.1049, 7.1047, 7.1054, 7.1052, 7.1052, 7.105, 7.1056, 7.1054, 7.1053, 7.1052, 7.1049, 7.1055, 7.1055, 7.1062, 7.1061, 7.1068, 7.1066, 7.1064, 7.1061, 7.106, 7.1058, 7.1055, 7.1053, 7.1052, 7.1049, 7.1047, 7.1072, 7.108, 7.1078, 7.1076, 7.1075, 7.1073, 7.107, 7.1068, 7.1067, 7.1065, 7.1063, 7.106, 7.1058, 7.1055, 7.1053, 7.1051, 7.1057, 7.1056, 7.1054, 7.1052, 7.1049, 7.1055, 7.1054, 7.1051, 7.1051, 7.1048, 7.1045, 7.1042, 7.1041, 7.1039, 7.1045, 7.1051, 7.1049, 7.1047, 7.1045, 7.1051, 7.1057, 7.1063, 7.1063, 7.1069, 7.1075, 7.1074, 7.1073, 7.1071, 7.1068, 7.1066, 7.1072, 7.1069, 7.1066, 7.1063, 7.1062, 7.106, 7.1058, 7.1064, 7.1061, 7.1067, 7.1065, 7.1064, 7.1065, 7.1063, 7.106, 7.1057, 7.1057, 7.1062, 7.106, 7.1066, 7.1065, 7.1063, 7.1061, 7.1059, 7.1057, 7.1063, 7.1061, 7.1067, 7.1064, 7.1063, 7.1061, 7.1059, 7.1059, 7.1057, 7.1056, 7.1054, 7.106, 7.1075, 7.1074, 7.1072, 7.1078, 7.1075, 7.1073, 7.1073, 7.1071, 7.1069, 7.1075, 7.1073, 7.1071, 7.1068, 7.1074, 7.1073, 7.1071, 7.1069, 7.1068, 7.1066, 7.1063, 7.1061, 7.1068, 7.1066, 7.1067, 7.1068, 7.1075, 7.1073, 7.1072, 7.1078, 7.1075, 7.1081, 7.1079, 7.1078, 7.1076, 7.1074, 7.1081, 7.1088, 7.1088, 7.1088, 7.1086, 7.1084, 7.1082, 7.1079, 7.1081, 7.108, 7.1077, 7.1076, 7.1074, 7.1072, 7.107, 7.1076, 7.1073, 7.1072, 7.107, 7.1069, 7.1066, 7.1073, 7.1071, 7.1077, 7.1076, 7.1075, 7.1074, 7.1073, 7.1074, 7.1072, 7.1078, 7.1075, 7.1072, 7.107, 7.1068, 7.1066, 7.1063, 7.1053, 7.1051, 7.1049, 7.1056, 7.1054, 7.1059, 7.1065, 7.1065, 7.1064, 7.1061, 7.1059, 7.1065, 7.1063, 7.1069, 7.1069, 7.1067, 7.1064, 7.1062, 7.106, 7.1058, 7.1057, 7.1055, 7.1054, 7.1051, 7.1049, 7.1048, 7.1046, 7.1044, 7.1043, 7.1049, 7.1046, 7.1044, 7.1043, 7.104, 7.1037, 7.1035, 7.1032, 7.103, 7.1029, 7.1026, 7.1024, 7.1022, 7.1019, 7.1017, 7.1014, 7.1013, 7.1011, 7.1008, 7.1006, 7.1006, 7.1003, 7.1008, 7.1006, 7.1012, 7.101, 7.1008, 7.1006, 7.1012, 7.101, 7.1016, 7.1014, 7.1012, 7.1018, 7.1015, 7.1013, 7.1019, 7.1025, 7.1023, 7.1021, 7.1018, 7.1016, 7.1021, 7.1018, 7.1017, 7.1039, 7.1036, 7.1041, 7.1039, 7.1037, 7.1035, 7.104, 7.1038, 7.1048, 7.1054, 7.1062, 7.1067, 7.1065, 7.1063, 7.1061, 7.1059, 7.1065, 7.1063, 7.1069, 7.1082, 7.108, 7.1078, 7.1076, 7.1082, 7.1088, 7.1086, 7.1091, 7.1089, 7.1094, 7.1092, 7.1089, 7.1103, 7.1101, 7.1098, 7.1096, 7.1093, 7.1092, 7.1091, 7.109, 7.1088, 7.1093, 7.1092, 7.1091, 7.1089, 7.1088, 7.1087, 7.1085, 7.1083, 7.1088, 7.1085, 7.1092, 7.109, 7.1081, 7.1078, 7.1076, 7.1075, 7.1081, 7.1081, 7.1078, 7.1076, 7.1073, 7.1071, 7.1072, 7.1077, 7.1075, 7.1073, 7.1072, 7.107, 7.1067, 7.1066, 7.1072, 7.1078, 7.1084, 7.1083, 7.1081, 7.1079, 7.1085, 7.1091, 7.1088, 7.1086, 7.1085, 7.1083, 7.1081, 7.1086, 7.1085, 7.1091, 7.1089, 7.1079, 7.1077, 7.1079, 7.1077, 7.1076, 7.1074, 7.108, 7.1077, 7.1074, 7.1073, 7.108, 7.1078, 7.1083, 7.1089, 7.1087, 7.1084, 7.1082, 7.108, 7.1072, 7.1071, 7.107, 7.1068, 7.1065, 7.1063, 7.1062, 7.1061, 7.1059, 7.1057, 7.1055, 7.1052, 7.1049, 7.1047, 7.1052, 7.1049, 7.1047, 7.1045, 7.1043, 7.1041, 7.1039, 7.1045, 7.1044, 7.105, 7.1048, 7.1046, 7.1044, 7.1042, 7.1048, 7.1046, 7.1043, 7.104, 7.1037, 7.1035, 7.1033, 7.1031, 7.1029, 7.1027, 7.1024, 7.1021, 7.1018, 7.1016, 7.1021, 7.1018, 7.1016, 7.1014, 7.1012, 7.1011, 7.101, 7.1009, 7.1007, 7.1005, 7.1003, 7.1001, 7.0999, 7.0996, 7.0995, 7.0992, 7.0991, 7.0989, 7.0987, 7.0985, 7.0984, 7.0983, 7.0981, 7.0979, 7.0977, 7.0975, 7.0981, 7.0987, 7.0985, 7.0984, 7.0983, 7.0989, 7.0995, 7.0993, 7.0991, 7.0991, 7.0989, 7.0988, 7.0979, 7.0977, 7.0976, 7.0982, 7.1003, 7.1, 7.0998, 7.0996, 7.0996, 7.0993, 7.0991, 7.0997, 7.1002, 7.1001, 7.1, 7.1005, 7.1003, 7.1001, 7.0999, 7.0997, 7.0994, 7.0993, 7.0992, 7.099, 7.0988, 7.0987, 7.0985, 7.0983, 7.0981, 7.0987, 7.0985, 7.0984, 7.0982, 7.0988, 7.0986, 7.0984, 7.0983, 7.098, 7.0978, 7.0976, 7.0975, 7.0972, 7.097, 7.0968, 7.0966, 7.0964, 7.0956, 7.0954, 7.0952, 7.095, 7.0948, 7.0946, 7.0945, 7.095, 7.0948, 7.0946, 7.0943, 7.0941, 7.0938, 7.0936, 7.0934, 7.0932, 7.0938, 7.0937, 7.0936, 7.0934, 7.0932, 7.0938]}
rtt3_3_7 = {'192.168.122.110': [5.2388, 5.4433, 7.0155, 6.5603, 5.4421, 5.3728, 11.641, 5.3391, 5.435, 10.9997, 11.8551, 11.5151, 6.9098, 12.0642, 6.7289, 5.3, 6.3479, 6.5086, 11.3838, 11.0455, 11.0993, 6.2485, 11.4717, 16.7754, 22.5713, 11.9507, 10.9334, 5.9247, 5.291, 5.7919, 5.4553, 27.4947, 7.3345, 6.4623, 11.1313, 1.2891, 10.7551, 5.4989, 9.2244, 5.4805, 6.2215, 6.995, 11.2319, 6.315, 5.6748, 12.167, 5.7757, 5.4562, 12.7389, 10.7751, 6.3694, 6.9602, 6.4433, 10.6719, 5.2528, 5.4719, 7.5023, 5.6083, 11.1244, 7.9732, 5.9314, 5.758, 6.3241, 5.533, 5.3136, 10.7737, 5.5437, 10.776, 16.7105, 11.2188, 10.6356, 5.5234, 13.2096, 16.3381, 6.65, 1.2813, 6.8445, 5.9819, 5.507, 5.5413, 6.9244, 5.5563, 5.5099, 7.6375, 11.4632, 5.3592, 5.568, 7.0393, 10.5255, 6.8815, 12.3241, 10.7372, 11.4446, 5.5606, 5.6145, 6.6857, 5.7464, 5.4443, 5.6829, 5.5797, 5.605, 7.4263, 5.1689, 6.3493, 5.6915, 5.6269, 5.687, 7.7257, 6.8002, 7.5409, 5.532, 6.0496, 5.9323, 10.9041, 5.8842, 6.2268, 5.4362, 5.3744, 5.6336, 6.9866, 16.722, 5.5046, 6.7134, 11.1098, 5.8563, 5.5442, 6.8204, 5.2915, 11.4224, 5.8286, 5.7628, 11.317, 1.2736, 6.2768, 6.8448, 1.6892, 16.2539, 6.8991, 16.1133, 6.0289, 6.1121, 5.2555, 6.7492, 11.4133, 6.366, 5.9338, 5.8491, 5.4648, 7.9665, 6.8212, 15.5544, 7.5064, 5.5168, 7.4508, 5.4104, 5.6021, 8.1027, 11.7114, 5.8684, 6.242, 6.2561, 5.6491, 6.9058, 5.3301, 6.8181, 5.6722, 11.1685, 5.6317, 5.7731, 6.8214, 6.6419, 7.5991, 5.4026, 5.46, 10.2775, 7.6773, 11.8058, 11.6754, 7.5047, 11.8182, 5.5923, 17.7414, 10.9208, 5.9214, 7.3168, 6.6833, 1.5635, 7.7052, 7.4069, 6.6664, 5.332, 6.1166, 6.4912, 5.6918, 5.4166, 5.6889, 16.4354, 8.0442, 6.2854, 5.3158, 6.3741, 7.232, 5.8339, 10.946, 5.8181, 5.393, 5.7056, 5.5215, 5.6686, 11.4727, 1.3468, 7.1745, 5.7955, 1.1344, 6.5761, 6.8412, 5.8, 16.1064, 11.3978, 1.5392, 5.692, 6.6266, 5.6398, 5.7635, 5.7881, 11.2145, 11.6069, 11.7283, 5.6911, 5.9001, 11.7183, 6.9132, 5.9931, 5.2867, 5.6686, 11.0338, 11.1926, 6.1214, 6.4697, 5.8239, 11.3006, 11.7447, 13.8435, 7.0646, 0.8659, 6.331, 6.1426, 5.4569, 6.0606, 5.7201, 7.8123, 27.7491, 5.5499, 5.4929, 11.2758, 5.8088, 16.8662, 5.5845, 5.5852, 5.641, 11.9231, 10.8507, 6.7849, 7.2117, 5.9392, 11.3227, 10.7687, 6.2244, 6.9361, 5.8966, 5.7125, 6.9833, 6.8352, 7.73, 12.1, 5.5454, 5.877, 6.8171, 5.4493, 9.0611, 6.0546, 7.0574, 5.924, 11.2667, 6.1433, 5.3072, 5.2378, 5.9721, 10.8292, 11.8794, 6.8305, 5.6813, 6.2511, 7.8499, 1.1349, 7.6141, 7.5495, 11.3928, 5.3337, 17.5736, 5.6877, 7.3726, 11.2448, 10.9897, 5.6207, 5.6415, 11.8029, 6.8145, 5.5368, 10.8728, 5.5785, 16.319, 10.854, 6.4788, 12.1739, 7.6673, 6.7666, 5.5509, 5.2369, 5.4691, 7.5696, 5.7557, 7.3295, 7.0021, 5.7807, 7.1948, 22.0563, 16.4232, 6.953, 1.6928, 5.6894, 6.8467, 5.538, 5.3163, 5.3232, 5.3945, 5.7094, 7.1735, 5.2273, 6.098, 10.6616, 5.4564, 6.8247, 12.2154, 11.9023, 6.4051, 1.2546, 1.0288, 11.1558, 5.2373, 11.3192, 5.6264, 34.7512, 5.6186, 25.5945, 6.1169, 7.9339, 6.7875, 10.9925, 5.482, 10.4346, 7.4272, 11.2958, 11.9202, 5.5809, 6.4466, 43.1428, 5.7905, 5.6512, 7.0233], '192.168.122.116': [10.8531, 10.7524, 5.8603, 5.8658, 11.117, 9.7995, 10.946, 6.5145, 6.2158, 5.9488, 6.428, 7.2966, 11.0748, 5.9793, 5.8794, 6.9299, 5.815, 22.6681, 5.409, 5.4555, 5.4536, 7.0446, 5.497, 6.6371, 5.6152, 13.1485, 6.5427, 11.7216, 6.0301, 6.5179, 5.2421, 6.3634, 5.8236, 6.5284, 6.3813, 0.7796, 10.6466, 6.9897, 10.7968, 11.3049, 6.6838, 5.6593, 6.0093, 17.7495, 5.9164, 11.8682, 5.5773, 10.7937, 6.3822, 6.4991, 6.7072, 7.2882, 5.5771, 16.7518, 6.0754, 5.3136, 6.5913, 6.7289, 13.335, 12.0616, 5.8103, 11.7335, 17.5676, 7.4, 6.4032, 10.8793, 5.5394, 10.9603, 11.5051, 7.0314, 6.1786, 7.0937, 10.8054, 6.0484, 6.1665, 1.1098, 16.6662, 6.4588, 5.2378, 11.4896, 5.7719, 5.7197, 5.4841, 7.2687, 11.1613, 7.2827, 5.61, 5.3577, 7.0069, 17.0069, 6.8214, 6.0971, 5.954, 12.5804, 6.2528, 5.6157, 11.9147, 5.6114, 11.2882, 5.8329, 6.2747, 7.7543, 5.3391, 5.7108, 5.687, 6.7191, 11.7009, 7.2224, 6.3448, 16.5536, 6.9652, 7.0856, 5.532, 5.739, 5.7409, 5.4905, 11.3535, 10.7496, 5.5814, 5.5854, 10.8371, 6.767, 5.718, 5.8806, 5.2378, 16.5951, 11.0376, 10.3681, 5.4321, 6.0196, 6.4216, 6.1307, 0.7277, 5.2412, 6.3543, 1.4486, 7.4322, 6.5835, 10.4589, 11.1015, 6.3281, 5.6665, 6.8502, 11.0362, 6.4027, 5.3899, 6.7627, 6.0954, 10.7143, 11.8392, 5.4801, 6.4619, 6.4137, 14.9539, 6.3059, 5.703, 7.0, 8.8913, 11.4446, 22.7025, 11.2927, 5.7812, 6.0675, 5.465, 21.0042, 5.4159, 6.6719, 6.5796, 6.6466, 6.1553, 6.2652, 5.5544, 6.4495, 6.0246, 11.6293, 11.1773, 11.6305, 5.7602, 13.2647, 5.8062, 5.7654, 5.7008, 11.5736, 5.888, 11.3292, 16.6125, 1.224, 6.3455, 5.5683, 5.6357, 6.0, 11.3668, 5.7201, 6.4778, 10.7505, 11.3924, 5.825, 18.1005, 10.8926, 7.0364, 5.4338, 11.7359, 5.8897, 5.9738, 7.6573, 10.6184, 22.1467, 5.4629, 11.0793, 11.6806, 0.9422, 6.5591, 6.5718, 0.7887, 5.7459, 6.3496, 5.4677, 5.9443, 6.434, 1.0395, 11.5511, 6.773, 5.8959, 7.3459, 5.3461, 6.5048, 6.1405, 12.4984, 11.2236, 6.9249, 5.6996, 6.6173, 6.4735, 6.5486, 5.681, 5.6291, 5.8482, 5.7743, 6.4833, 5.5287, 5.4355, 5.5614, 14.957, 5.9664, 0.6773, 5.4269, 5.3108, 5.9118, 7.2408, 6.109, 7.025, 5.3513, 7.4432, 5.6438, 11.4625, 5.5523, 11.2646, 6.2239, 6.5565, 5.6739, 6.3682, 5.3658, 6.1567, 5.7864, 7.2503, 5.6312, 6.0532, 7.2255, 6.9692, 6.0632, 11.2827, 6.9852, 6.4521, 5.5094, 7.2672, 7.7846, 6.0546, 7.206, 6.1042, 6.1572, 11.4706, 6.0515, 6.1119, 5.6801, 7.1461, 5.8498, 10.5116, 11.26, 7.1275, 6.0086, 5.5919, 5.8596, 5.9409, 6.0449, 1.0252, 5.7704, 13.2334, 5.676, 5.2874, 6.1364, 10.6368, 5.9221, 7.483, 11.2021, 5.7528, 12.3663, 6.7708, 6.0816, 11.8949, 5.6465, 5.599, 6.4547, 6.5062, 10.8459, 5.2631, 5.7085, 11.3747, 5.9514, 5.6217, 5.6059, 5.7499, 6.285, 5.7149, 11.4491, 6.2125, 5.6865, 5.4655, 5.3525, 7.0031, 1.2174, 5.5296, 6.4001, 5.7976, 11.441, 5.2791, 5.4622, 5.7878, 6.9144, 5.5618, 6.5763, 0.9229, 5.9075, 6.4864, 12.9092, 5.6798, 7.1561, 0.8206, 0.669, 5.7797, 11.3914, 6.248, 11.7266, 6.2981, 11.3108, 11.1399, 5.2998, 5.9707, 7.2529, 6.1648, 6.2633, 12.3034, 6.7012, 6.6564, 22.5561, 5.2712, 6.4418, 5.6446, 11.6303, 5.9202, 6.2373], '192.168.122.115': [10.3974, 11.1511, 5.5087, 5.3916, 5.3761, 5.7771, 5.564, 11.0018, 6.5818, 5.8043, 12.8541, 33.7372, 5.4612, 6.0349, 5.893, 5.5678, 5.5451, 5.4977, 5.4002, 10.6888, 7.026, 5.4729, 5.3725, 22.1982, 10.8097, 12.023, 5.3771, 10.9732, 6.151, 10.906, 21.7915, 5.3945, 6.6848, 6.52, 5.3816, 0.7801, 5.2223, 11.6832, 5.4047, 17.0112, 11.2011, 6.3024, 5.3263, 6.5851, 5.336, 5.9061, 12.8682, 5.4727, 10.6926, 11.102, 6.043, 5.2683, 6.2702, 11.4956, 5.5974, 11.2162, 6.1362, 5.3287, 6.1207, 5.827, 6.1033, 16.2861, 10.5495, 5.897, 11.9617, 5.4746, 16.4146, 6.2742, 6.0933, 6.2871, 10.8199, 6.892, 6.6166, 6.1877, 5.6098, 1.4927, 11.0703, 6.7747, 5.2965, 10.618, 6.5916, 11.3618, 5.5435, 6.7551, 5.3203, 11.3122, 6.4781, 5.3251, 6.0415, 11.4727, 12.2428, 7.0965, 5.7054, 5.4283, 6.295, 5.4655, 5.7278, 5.8417, 5.8413, 5.193, 6.2571, 5.8894, 6.0108, 11.5728, 5.4054, 6.4411, 6.4089, 27.6015, 6.3267, 5.2977, 6.9938, 7.2823, 11.1139, 5.6984, 6.0256, 5.8658, 5.7943, 5.5127, 11.1332, 5.7027, 5.8455, 5.7058, 5.5749, 5.9917, 6.6381, 16.5377, 6.1154, 11.1699, 6.5548, 11.4317, 6.0413, 6.7215, 1.4224, 5.2776, 5.9328, 1.4577, 5.6791, 6.7196, 5.7805, 5.8517, 6.3164, 31.4083, 5.3904, 6.196, 5.559, 5.7585, 6.6195, 5.97, 11.2066, 5.4829, 5.3427, 5.3408, 11.0164, 11.9345, 17.5366, 6.0551, 6.3317, 11.2567, 5.182, 5.4142, 6.5789, 6.7596, 5.6624, 10.7846, 5.7209, 5.399, 10.8137, 5.8441, 17.9117, 5.8496, 6.4836, 5.6732, 5.4913, 5.9352, 5.6922, 11.0729, 5.8217, 7.0937, 6.5098, 5.8026, 5.6558, 10.8254, 5.6446, 6.0451, 5.718, 5.5821, 1.0123, 21.3721, 6.0718, 22.4407, 5.2898, 6.5024, 11.2162, 5.3334, 10.828, 5.4317, 34.1008, 7.0131, 6.6698, 16.1428, 5.4398, 11.9534, 5.9896, 5.3954, 5.7185, 6.3546, 5.7971, 6.9933, 6.2001, 6.9668, 1.1828, 6.1173, 10.901, 0.8614, 10.8476, 21.4326, 10.8705, 5.3887, 5.6376, 1.1027, 6.0034, 11.0693, 6.3338, 12.7001, 11.0564, 6.3772, 7.4663, 17.8158, 5.4767, 5.6341, 6.4509, 5.4674, 5.7988, 5.6837, 5.5292, 10.6184, 22.4423, 6.3887, 7.009, 10.9634, 11.5261, 10.7961, 11.3194, 5.4462, 11.7998, 10.6583, 5.5566, 10.8483, 5.9578, 12.8803, 7.7899, 6.3171, 17.8623, 6.3946, 11.8437, 5.594, 11.1899, 17.0844, 5.7633, 5.8231, 6.4039, 5.4052, 6.4564, 5.5904, 5.6746, 5.7087, 5.506, 6.4318, 6.016, 6.3648, 10.5391, 6.8941, 11.6134, 17.8618, 5.7814, 23.4284, 16.9454, 5.9586, 6.2232, 7.1707, 5.6324, 10.7453, 6.1901, 6.4378, 6.3753, 5.6427, 5.2345, 16.6268, 6.6493, 6.2268, 6.855, 32.6605, 11.4713, 11.9648, 0.9789, 5.8453, 10.6678, 6.0382, 5.7461, 10.6041, 5.3246, 11.3642, 6.9528, 6.5649, 5.7018, 6.5305, 12.5968, 11.3621, 6.2919, 5.8253, 5.7669, 6.0675, 6.3148, 5.9416, 12.073, 6.4397, 11.2393, 5.8043, 10.5035, 6.1371, 11.4613, 5.4095, 6.1755, 5.9245, 5.4474, 6.2411, 5.5273, 5.3983, 6.1913, 2.3687, 5.4109, 6.4483, 5.3768, 6.2547, 5.2259, 6.8927, 5.3873, 5.5513, 10.8938, 10.9465, 1.5767, 6.1369, 5.3144, 6.0983, 6.187, 5.8024, 0.8879, 0.8163, 5.4214, 6.1045, 10.9758, 11.7674, 5.8844, 6.5312, 6.2337, 11.4987, 6.0923, 5.6376, 6.1407, 12.5577, 12.9366, 7.3297, 6.983, 6.166, 6.2778, 6.0458, 11.0226, 12.0902, 6.0067, 5.9164], '192.168.122.114': [10.4489, 10.7803, 16.381, 10.9882, 5.5413, 5.1689, 5.5003, 8.1007, 5.5199, 5.4867, 6.916, 6.9847, 17.1895, 6.0177, 11.5924, 6.9783, 11.3153, 5.4812, 10.8094, 5.5566, 7.2596, 5.8739, 5.4393, 5.2648, 6.2852, 5.6968, 6.2115, 5.5614, 10.9997, 5.4877, 10.6819, 11.3363, 6.69, 5.4502, 5.5175, 0.6456, 10.4163, 5.8632, 5.8134, 6.3725, 5.3284, 5.4128, 5.7294, 5.7039, 6.5453, 5.8737, 6.1922, 10.6063, 5.8992, 6.4583, 6.1216, 6.4375, 5.9149, 6.6051, 5.5447, 5.7085, 5.9052, 5.6753, 11.1096, 5.7333, 5.8451, 6.2153, 6.2292, 5.4529, 11.6994, 5.4281, 10.8695, 11.2877, 10.9103, 6.8679, 5.4278, 6.1524, 5.7347, 5.5039, 6.1603, 1.4985, 6.1808, 7.1588, 10.8552, 6.2256, 6.6183, 6.4695, 5.435, 5.4607, 11.338, 5.7228, 21.776, 6.5277, 5.1713, 5.8601, 6.0229, 6.784, 5.2333, 5.3985, 11.3547, 5.4612, 5.9867, 6.2356, 11.229, 5.7087, 12.0399, 18.1835, 10.7539, 5.8029, 16.9404, 5.502, 11.1563, 10.7632, 5.686, 6.7577, 5.8835, 5.3813, 11.0483, 5.6591, 11.5688, 6.4406, 11.1597, 5.6975, 6.6807, 17.725, 5.95, 10.9899, 10.6659, 12.3746, 11.5502, 5.3604, 7.1599, 5.8308, 11.4679, 5.8937, 11.7056, 6.2201, 1.1525, 5.5001, 5.466, 1.2519, 11.0888, 5.8072, 10.5112, 5.4586, 11.2875, 5.7793, 5.6491, 10.9191, 6.5084, 5.4793, 6.82, 6.1383, 11.5538, 5.7652, 5.4774, 5.9052, 5.4989, 10.0198, 11.1864, 5.6326, 5.6326, 6.2897, 6.4855, 11.7888, 10.9735, 6.7608, 5.4944, 11.0996, 5.3337, 5.3782, 11.4236, 6.8042, 6.4206, 5.7967, 6.7124, 6.6428, 5.4822, 7.3771, 10.632, 6.1831, 17.576, 6.3229, 6.3758, 10.7298, 11.0819, 11.2736, 5.3439, 5.3029, 5.6813, 6.1457, 0.9024, 28.4605, 5.3937, 5.6367, 5.2824, 6.3722, 5.4414, 6.2268, 5.9383, 5.5954, 12.4598, 11.8272, 11.1277, 11.2367, 5.4317, 5.7163, 5.7182, 16.0902, 11.1499, 5.3596, 5.5282, 6.1822, 5.7664, 6.9165, 1.2047, 5.3985, 6.0568, 0.7119, 11.0784, 5.6324, 5.3313, 5.6422, 11.4467, 1.1137, 6.2344, 6.0899, 5.5981, 5.8596, 5.5366, 6.4065, 6.5825, 7.5428, 7.4949, 7.6067, 7.2649, 6.1491, 5.5182, 5.2252, 7.277, 6.9935, 7.154, 6.5713, 6.6075, 10.8311, 6.8769, 11.2884, 6.1548, 5.4593, 5.7316, 5.4135, 5.4965, 6.1243, 5.383, 6.1018, 7.884, 6.2716, 5.3883, 6.4244, 7.3159, 11.1284, 5.5463, 5.8167, 7.0591, 5.3995, 11.9278, 5.5037, 11.2803, 11.6563, 6.0143, 6.0215, 5.3065, 5.8081, 5.867, 5.9478, 7.4654, 11.3823, 6.5296, 6.3491, 7.7631, 5.3735, 7.2069, 5.5032, 5.352, 11.6551, 7.6864, 5.2607, 11.4069, 6.6097, 12.1942, 5.7287, 6.2802, 5.6729, 6.5417, 6.6419, 8.1272, 11.0178, 10.1736, 5.7821, 0.8688, 11.4148, 11.6496, 11.1573, 5.7032, 11.0395, 11.6115, 11.3802, 17.8931, 6.4483, 6.2227, 11.3361, 5.4922, 5.9893, 5.9352, 7.544, 6.3498, 5.5289, 5.98, 6.2156, 10.8373, 6.1657, 5.6083, 5.3704, 5.543, 10.1516, 6.6109, 5.4295, 13.7174, 5.574, 11.4031, 10.6568, 6.175, 6.5868, 6.3381, 1.6778, 11.0471, 5.5039, 5.9721, 17.3283, 10.5386, 10.9906, 6.7623, 11.2102, 5.4636, 10.8218, 0.9532, 6.0098, 6.3615, 16.8991, 11.6906, 5.5892, 0.8531, 0.7539, 5.8954, 5.8863, 5.6207, 6.542, 6.007, 7.5216, 6.701, 6.5527, 6.0179, 5.9373, 7.2637, 5.9168, 5.9514, 5.8165, 5.9845, 5.5742, 5.5041, 5.5158, 6.7093, 7.411, 6.067, 5.9874], '192.168.122.112': [6.0618, 10.9851, 5.26, 10.9019, 10.8457, 10.9642, 6.8114, 6.0663, 10.9932, 5.4545, 5.5363, 5.5163, 5.6481, 7.9713, 5.8336, 7.1247, 5.6911, 6.0601, 10.9556, 11.3385, 6.9559, 6.4495, 10.86, 10.8666, 10.8168, 6.0654, 5.6856, 10.9799, 5.4605, 7.5908, 5.7404, 6.8591, 10.9026, 7.3245, 10.9916, 0.936, 21.2152, 6.3415, 5.5857, 5.8475, 11.5535, 6.3457, 5.9562, 6.6724, 11.2653, 11.0035, 6.1111, 11.4563, 5.8918, 5.2915, 6.0923, 5.9609, 5.8501, 5.5084, 11.0111, 5.3818, 11.0378, 6.7191, 5.4708, 11.3928, 5.4908, 5.4967, 5.4243, 5.8911, 5.5361, 5.4576, 6.561, 5.4502, 5.4519, 5.6727, 5.3661, 17.0002, 5.8947, 10.9582, 11.8344, 0.8068, 5.4953, 5.8455, 10.9534, 5.4817, 12.558, 5.3728, 5.9814, 5.4743, 5.7926, 11.3292, 6.3844, 5.5954, 6.1018, 5.7588, 6.3617, 5.3015, 5.3017, 5.7759, 11.245, 5.8973, 6.1214, 5.6589, 6.2435, 6.1877, 11.2257, 12.2945, 5.3771, 5.7237, 6.2401, 6.9187, 5.7631, 6.3775, 6.3508, 10.9839, 12.0635, 7.329, 11.0662, 10.8323, 5.3909, 5.4591, 10.9396, 5.4519, 6.7236, 5.5292, 11.6112, 5.7182, 5.2536, 5.8243, 10.7725, 5.2729, 5.6162, 5.796, 6.4478, 5.8496, 5.8243, 6.6895, 1.0543, 6.0995, 5.4686, 1.4307, 6.3696, 5.7979, 10.483, 5.4562, 6.2995, 5.7504, 5.631, 6.376, 5.6782, 5.5597, 6.6187, 5.2724, 6.5949, 6.4387, 5.2781, 6.5174, 5.5027, 11.2646, 5.5766, 6.0883, 11.3075, 5.8384, 5.2845, 10.9963, 5.7082, 6.0723, 6.3639, 10.9522, 5.4245, 5.7845, 17.8878, 6.2926, 11.9917, 5.4176, 6.6035, 10.8509, 5.2402, 6.5951, 5.4684, 5.2986, 11.3347, 6.3386, 11.5094, 5.7857, 11.3201, 6.4077, 5.578, 6.6476, 6.6221, 11.0631, 1.3695, 5.6205, 17.0121, 6.2304, 6.1665, 6.5057, 16.1018, 11.2128, 5.7454, 5.4326, 22.5103, 5.6512, 5.4586, 11.2121, 11.1091, 5.6233, 5.8897, 16.4106, 5.393, 11.2033, 6.2366, 6.0399, 5.4471, 11.4424, 1.0202, 5.6283, 17.2992, 0.7684, 16.9482, 5.3551, 5.7743, 5.6174, 12.3036, 1.4734, 5.4417, 11.5414, 11.2484, 6.8698, 6.4347, 5.758, 5.3482, 6.7546, 6.5749, 11.2541, 5.7054, 6.8274, 11.0314, 11.0431, 6.8004, 5.6019, 6.4485, 5.8787, 6.3293, 5.753, 16.6066, 6.6357, 10.9019, 7.3211, 5.6896, 5.4829, 5.5366, 5.9249, 6.5999, 5.4047, 12.1717, 10.8616, 6.2647, 5.5499, 11.559, 6.3698, 12.4667, 5.8758, 5.729, 28.8577, 6.0003, 5.4946, 5.6486, 5.8675, 7.2062, 5.408, 21.7581, 11.0831, 11.5395, 17.3466, 7.2842, 7.2482, 5.5559, 21.7774, 18.0526, 7.0705, 5.456, 6.2888, 13.9532, 7.1385, 5.456, 5.6975, 5.3554, 5.9173, 6.1808, 5.4982, 6.0294, 16.2745, 6.7163, 5.5003, 5.6663, 6.1717, 6.0408, 6.2938, 1.1594, 10.8345, 6.2051, 11.3957, 6.7513, 11.1198, 10.9231, 5.8341, 5.5878, 5.7378, 5.8298, 6.7174, 5.6045, 6.6559, 10.9327, 11.517, 5.7693, 6.4249, 6.0079, 5.6477, 17.1647, 6.7184, 5.7364, 11.3196, 42.81, 5.5616, 7.7014, 6.1951, 12.1655, 11.2078, 11.3623, 10.5209, 5.9271, 5.5811, 6.6969, 0.9401, 6.5053, 7.0777, 10.8664, 5.6782, 10.4337, 5.7213, 10.7651, 7.0138, 6.0217, 5.6818, 0.8769, 5.367, 17.5526, 5.7499, 5.9345, 6.8777, 0.8366, 0.628, 12.5134, 6.7036, 6.8593, 7.324, 6.3529, 6.9549, 6.1672, 5.599, 28.3144, 6.0043, 5.4278, 5.7814, 5.9698, 6.0427, 5.4996, 10.987, 6.7179, 6.1805, 5.8181, 5.594, 6.0523, 5.8312], '192.168.122.111': [5.9037, 5.4209, 6.0349, 11.0233, 5.6696, 11.3368, 6.5968, 10.9818, 11.1513, 6.1493, 6.1913, 11.0457, 6.7141, 10.9217, 5.5995, 5.6496, 5.564, 6.5258, 11.4851, 7.287, 6.4394, 10.9262, 5.3236, 5.3205, 6.3756, 8.0075, 5.4955, 5.8362, 6.8159, 6.042, 5.6555, 6.3739, 6.2749, 7.025, 6.3019, 0.6337, 10.4105, 5.7371, 6.4738, 6.0098, 5.861, 5.3244, 17.8185, 11.6177, 11.3404, 6.5787, 6.9323, 5.8489, 5.9857, 10.8488, 5.4936, 6.3641, 5.8174, 6.0856, 5.4328, 11.8861, 6.8629, 5.3146, 5.5611, 5.9788, 6.3994, 5.6446, 11.6725, 5.7955, 6.1529, 5.5571, 10.8871, 16.4709, 5.3792, 7.0403, 10.9119, 6.0599, 16.8724, 11.1275, 11.3108, 0.6866, 5.5206, 10.999, 5.3446, 5.3444, 6.4447, 11.1456, 6.1262, 5.451, 5.9812, 6.3252, 11.4946, 5.6424, 5.9683, 11.2047, 5.8782, 10.7894, 5.286, 5.6894, 6.485, 5.3654, 11.3795, 12.1324, 5.3413, 5.6322, 5.3453, 23.2992, 5.7278, 5.7645, 5.6837, 5.3318, 11.6909, 6.346, 18.3654, 5.4772, 5.7955, 11.9202, 5.3871, 5.4007, 10.932, 5.6772, 10.7791, 5.9805, 5.7023, 6.0916, 11.4734, 5.563, 11.4114, 5.7981, 5.7559, 5.2795, 11.0681, 5.8341, 6.2773, 6.6507, 5.3704, 5.9826, 1.116, 11.7626, 10.8967, 1.3287, 5.4848, 6.9036, 6.2973, 5.7027, 6.9196, 5.7902, 5.5974, 10.8924, 6.6075, 5.2118, 8.6989, 11.2538, 5.6865, 5.4655, 6.3939, 5.4069, 16.5529, 11.0292, 11.8096, 7.2966, 10.9403, 11.1547, 5.3425, 7.2312, 5.4867, 5.7571, 10.4945, 10.7548, 5.5413, 6.0203, 10.5956, 11.2212, 6.1252, 5.7278, 6.1569, 6.8645, 5.9295, 6.5508, 5.3508, 6.3345, 5.7881, 5.621, 5.6479, 6.9633, 5.3575, 5.5308, 6.1116, 5.8532, 11.2817, 11.0223, 1.2474, 5.6269, 5.4538, 5.3291, 12.2645, 23.9315, 10.9444, 5.4166, 0.6378, 6.4642, 5.9552, 6.1712, 6.3629, 5.7585, 11.029, 11.7192, 6.3472, 11.039, 7.4382, 5.8818, 5.439, 6.4704, 6.1777, 5.5227, 1.0703, 11.26, 5.6143, 0.9089, 6.789, 5.399, 5.3544, 5.7399, 7.0722, 1.2167, 5.2893, 6.042, 5.939, 22.3706, 5.6853, 5.8606, 6.9072, 7.3037, 5.6884, 5.5976, 5.4886, 7.0405, 6.5231, 6.0716, 10.7684, 10.6194, 23.1402, 5.6598, 6.5789, 10.8552, 5.7135, 6.3932, 6.14, 17.5409, 6.4964, 5.9905, 0.7505, 10.7884, 6.5892, 5.5082, 7.1456, 11.9483, 10.9482, 5.4152, 6.8574, 17.2222, 13.2258, 11.8139, 11.425, 5.6801, 6.5789, 6.7015, 6.3004, 11.0512, 5.3618, 5.4002, 10.9987, 7.8056, 5.6748, 11.4105, 11.1072, 7.7014, 6.0761, 6.1624, 17.9379, 5.3718, 11.4222, 7.4549, 6.3386, 7.8483, 5.6581, 6.7167, 6.0918, 5.7364, 6.2153, 5.6171, 16.0201, 6.0191, 5.9953, 11.2419, 6.7358, 6.1624, 5.842, 5.9175, 6.8717, 5.7569, 6.2478, 5.5127, 6.4793, 11.4799, 5.6243, 11.1144, 6.9699, 11.0719, 5.6906, 11.6773, 5.3313, 10.4933, 5.4018, 11.4686, 6.5236, 5.5985, 6.4702, 6.4681, 5.27, 7.0326, 6.9818, 5.564, 10.1678, 6.5007, 22.8994, 7.2749, 6.5916, 11.4729, 11.1618, 5.5809, 6.542, 6.3565, 10.6859, 1.2071, 6.9447, 11.0695, 5.8746, 5.3501, 5.2588, 22.825, 6.4828, 5.9085, 5.9936, 6.8593, 0.7582, 5.2826, 11.0052, 6.9535, 6.8152, 6.1698, 0.7641, 0.6843, 6.701, 5.3625, 6.9404, 16.5465, 11.2402, 11.3964, 5.9674, 6.093, 5.4255, 11.3039, 7.5178, 6.8996, 6.0964, 7.8919, 13.4029, 6.6471, 5.9421, 6.7453, 7.0689, 5.5723, 5.3899, 5.2381]}
cpu3_3_7 = [15.6, 34.3, 0.6, 0.4, 0.7, 1.7, 0.4, 0.3, 0.9, 0.6, 0.1, 0.6, 0.5, 5.6, 4.2, 1.1, 1.2, 0.3, 0.2, 0.0, 0.0, 2.0, 2.2, 0.8, 0.8, 2.5, 0.5, 0.1, 0.6, 0.4, 0.3, 1.9, 1.7, 0.4, 0.1, 0.8, 0.6, 0.2, 0.2, 6.8, 6.9, 0.1, 0.7, 0.0, 0.3, 0.6, 0.7, 0.5, 1.3, 1.6, 4.3, 3.4, 1.3, 0.2, 2.4, 0.7, 1.6, 0.3, 0.9, 0.1, 0.4, 0.0, 1.3, 1.3, 0.9, 0.6, 0.2, 3.7, 2.5, 0.1, 0.5, 1.5, 0.7, 0.8, 4.2, 5.1, 0.4, 2.1, 0.8, 0.9, 0.5, 0.6, 2.3, 1.1, 3.1, 3.1, 0.5, 0.0, 0.5, 2.0, 0.4, 0.5, 0.4, 1.0, 1.1, 0.2, 0.0, 0.1, 0.3, 0.7, 0.6, 0.4, 0.6, 0.2, 0.7, 1.0, 1.9, 0.2, 3.2, 2.6, 0.3, 1.9, 1.7, 0.2, 0.7, 0.0, 0.6, 0.6, 0.5, 1.0, 0.7, 0.2, 1.6, 2.0, 1.7, 3.0, 1.9, 1.2, 0.7, 0.7, 0.2, 0.0, 0.5, 0.6, 1.3, 0.4, 0.3, 0.4, 0.6, 0.8, 0.4, 0.1, 0.4, 0.5, 0.6, 1.7, 2.1, 2.2, 1.2, 1.4, 1.4, 2.2, 0.3, 1.0, 1.0, 0.9, 2.5, 1.0, 0.6, 0.5, 1.9, 2.2, 1.6, 1.1, 0.1, 0.2, 0.2, 1.0, 0.3, 0.7, 1.7, 0.5, 1.1, 0.6, 0.4, 0.1, 0.1, 0.6, 1.4, 2.0, 0.7, 0.7, 0.0, 1.1, 0.5, 0.9, 0.1, 0.5, 0.8, 0.4, 0.0, 0.7, 1.0, 0.3, 2.1, 1.9, 0.8, 1.2, 0.5, 0.9, 2.0, 2.2, 0.2, 2.3, 1.5, 0.7, 1.1, 0.3, 0.2, 1.3, 1.9, 0.4, 0.2, 0.3, 0.2, 1.7, 0.5, 0.8, 0.3, 0.6, 1.3, 1.7, 0.3, 0.7, 0.4, 1.8, 2.6, 0.4, 2.1, 3.5, 0.9, 0.3, 2.2, 2.2, 1.4, 0.9, 0.4, 0.2, 0.4, 0.6, 0.2, 1.1, 0.4, 1.4, 0.6, 1.1, 3.0, 2.1, 1.1, 0.9, 0.3, 0.8, 0.4, 0.4, 0.4, 1.1, 5.6, 6.6, 0.4, 1.4, 1.2, 0.4, 1.0, 3.2, 2.1, 0.9, 1.3, 2.0, 0.3, 0.5, 0.3, 0.4, 0.8, 1.2, 0.3, 0.4, 1.6, 1.1, 1.3, 0.4, 0.0, 0.2, 0.0, 1.7, 0.1, 1.4, 1.7, 0.3, 0.6, 3.1, 2.7, 0.1, 1.1, 0.3, 1.1, 0.3, 0.7, 0.2, 1.3, 0.3, 1.0, 0.6, 0.8, 2.6, 3.5, 0.6, 1.3, 0.6, 1.8, 1.9, 2.1, 1.1, 1.5, 1.6, 1.1, 1.0, 0.1, 0.5, 0.3, 2.3, 2.6, 1.2, 2.2, 0.5, 0.1, 0.2, 9.5, 12.4, 3.4, 0.7, 4.0, 0.7, 3.0, 0.7, 1.6, 0.5, 4.1, 0.5, 0.1, 1.2, 1.1, 0.9, 2.1, 1.5, 1.6, 2.0, 0.1, 1.1, 1.2, 2.0, 1.3, 2.4, 2.0, 0.0, 0.9, 2.0, 2.7, 1.3, 1.6, 1.9, 0.8, 0.1, 0.3, 1.4, 1.8, 3.0, 1.5, 0.5, 0.1, 0.4]
off_mec3_3_7 = 369
off_cloud3_3_7 = 403
inward_mec3_3_7 = 510
loc3_3_7 = 530
deadlock3_3_7 = [6]
memory3_3_7 = [0.2178, 0.2181, 0.2183, 0.2184, 0.2185, 0.2186, 0.2187, 0.2188, 0.2188, 0.2188, 0.2188, 0.2189, 0.219, 0.219, 0.219, 0.219, 0.219, 0.219, 0.2191, 0.2191, 0.2192, 0.2192, 0.2193, 0.2193, 0.2194, 0.2194, 0.2194, 0.2194, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2197, 0.2197, 0.2197, 0.2199, 0.2199, 0.2199, 0.2199, 0.2199, 0.2203, 0.2204, 0.2205, 0.2205, 0.2206, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.221, 0.221, 0.221, 0.221, 0.221, 0.221, 0.221, 0.221, 0.2212, 0.2212, 0.2212, 0.2213, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2216, 0.2217, 0.2217, 0.2217, 0.2217, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2219, 0.2219, 0.2219, 0.222, 0.222, 0.222, 0.222, 0.2221, 0.2221, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2223, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2227, 0.2227, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.223, 0.2231, 0.2232, 0.2232, 0.2232, 0.2233, 0.2233, 0.2233, 0.2233, 0.2233, 0.2233, 0.2233, 0.2233, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2235, 0.2236, 0.2236, 0.2237, 0.2237, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.224, 0.224, 0.2241, 0.2241, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2242, 0.2243, 0.2243, 0.2243, 0.2243, 0.2244, 0.2244, 0.2244, 0.2244, 0.2245, 0.2245, 0.2245, 0.2245, 0.2246, 0.2246, 0.2246, 0.2246, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.225, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2253, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2255, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2264, 0.2264, 0.2264, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2267, 0.2267, 0.2267, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.2272, 0.2273, 0.2273, 0.2273, 0.2273, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2276, 0.2276, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2278, 0.2278, 0.2278, 0.2278, 0.2278, 0.2278, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2281, 0.2281, 0.2281, 0.2281, 0.2282, 0.2282, 0.2283, 0.2283, 0.2285, 0.2286, 0.2286, 0.2286]
task_received3_3_7 = 1302
sent_t3_3_7 = {'124': 424, '126': 477, '125': 400}
cooperate3_3_7 = {'mec': 368, 'cloud': 403}
task_record3_3_7 = {'t3.113.124.781.655': 'mec'}
outward_mec3_3_7 = 67
offload_check3_3_7 = []
timed_out_tasks3_3_7 = 0 |
class RaceRegistry:
"""Race Registry includes runners' information
Attributes:
@type under_20: list
emails of under_20 category
@type under_30: list
emails of under_30 category
@type under_40: list
emails of under_40 category
@type over_40: list
emails of over_40 category
"""
def __init__(self):
"""Creat a RaceRegistry for runners
@type self: Race_Registry
@rtype: None
"""
self.under_20 = []
self.under_30 = []
self.under_40 = []
self.over_40 = []
def __eq__(self, other):
"""Return True iff this Race_Registry is same as other.
@type self: Race_Registry
@type other: Race_Registry
@rtype: bool
>>> r1 = RaceRegistry()
>>> r2 = RaceRegistry()
>>> r1 == r2
True
>>> r1.add('eris@email.utoronto.ca', 'under 20')
>>> r1 == r2
False
"""
self.under_20.sort()
self.under_30.sort()
self.under_40.sort()
self.over_40.sort()
other.under_20.sort()
other.under_30.sort()
other.under_40.sort()
other.over_40.sort()
return type(self) == type(other) and \
self.under_20.sort() == other.under_20.sort() \
and self.under_30.sort() == other.under_30.sort() \
and self.under_40.sort() == other.under_40.sort() \
and self.over_40.sort() == other.over_40.sort()
def __str__(self):
"""Return readable string representation of this Race_Registry.
@type self: Race_Registry
@rtype: None
>>> r1 = RaceRegistry()
>>> r1.add('eris@email.utoronto.ca', 'under 20')
>>> print(r1)
under 20: [eris@email.utoronto.ca]
under 30: []
under 40: []
over 40: []
"""
return """under 20: {0}
under 30: {1}
under 40: {2}
over 40:{3}
""".format(self.under_20, self.under_30, self.under_40, self.over_40)
def add(self, email, speed_category):
"""add one runner information of email and speed_category \
to this Race_Registry.
@type self: Race_Registry
@type email: str
@tpye speed_category: str
@rtype: None
>>> r = RaceRegistry()
>>> r.add('gerhard@mail.utoronto.ca', 'under 40')
>>> r.under_40
['gerhard@mail.utoronto.ca']
"""
if speed_category == 'under 20':
self.under_20.append(email)
elif speed_category == 'under 30':
self.under_30.append(email)
elif speed_category == 'under 40':
self.under_40.append(email)
else:
self.over_40.append(email)
def get_runner_cate(self, email):
"""Return runner's category basing on his email.
@type self: Race_Registry
@type email: str
@rtype: str
>>> r = RaceRegistry()
>>> r.add('gerhard@mail.utoronto.ca', 'under 40')
>>> r.get_runner_cate('gerhard@mail.utoronto.ca')
'under 40'
"""
if email in self.under_20:
return 'under 20'
elif email in self.under_30:
return 'under 30'
elif email in self.under_40:
return 'under 40'
elif email in self.over_40:
return 'over 40'
if __name__ == '__main__':
r = RaceRegistry()
r.add('gerhard@mail.utoronto.ca', 'under 40')
r.add('tom@mail.utoronto.ca', 'under 30')
r.add('jerry@mail.utoronto.ca', 'under 20')
r.add('haha@mail.utoronto.ca', 'over 40')
print(r)
r.get_runner_cate('jerry@mail.utoronto.ca')
| class Raceregistry:
"""Race Registry includes runners' information
Attributes:
@type under_20: list
emails of under_20 category
@type under_30: list
emails of under_30 category
@type under_40: list
emails of under_40 category
@type over_40: list
emails of over_40 category
"""
def __init__(self):
"""Creat a RaceRegistry for runners
@type self: Race_Registry
@rtype: None
"""
self.under_20 = []
self.under_30 = []
self.under_40 = []
self.over_40 = []
def __eq__(self, other):
"""Return True iff this Race_Registry is same as other.
@type self: Race_Registry
@type other: Race_Registry
@rtype: bool
>>> r1 = RaceRegistry()
>>> r2 = RaceRegistry()
>>> r1 == r2
True
>>> r1.add('eris@email.utoronto.ca', 'under 20')
>>> r1 == r2
False
"""
self.under_20.sort()
self.under_30.sort()
self.under_40.sort()
self.over_40.sort()
other.under_20.sort()
other.under_30.sort()
other.under_40.sort()
other.over_40.sort()
return type(self) == type(other) and self.under_20.sort() == other.under_20.sort() and (self.under_30.sort() == other.under_30.sort()) and (self.under_40.sort() == other.under_40.sort()) and (self.over_40.sort() == other.over_40.sort())
def __str__(self):
"""Return readable string representation of this Race_Registry.
@type self: Race_Registry
@rtype: None
>>> r1 = RaceRegistry()
>>> r1.add('eris@email.utoronto.ca', 'under 20')
>>> print(r1)
under 20: [eris@email.utoronto.ca]
under 30: []
under 40: []
over 40: []
"""
return 'under 20: {0}\n under 30: {1}\n under 40: {2}\n over 40:{3}\n '.format(self.under_20, self.under_30, self.under_40, self.over_40)
def add(self, email, speed_category):
"""add one runner information of email and speed_category to this Race_Registry.
@type self: Race_Registry
@type email: str
@tpye speed_category: str
@rtype: None
>>> r = RaceRegistry()
>>> r.add('gerhard@mail.utoronto.ca', 'under 40')
>>> r.under_40
['gerhard@mail.utoronto.ca']
"""
if speed_category == 'under 20':
self.under_20.append(email)
elif speed_category == 'under 30':
self.under_30.append(email)
elif speed_category == 'under 40':
self.under_40.append(email)
else:
self.over_40.append(email)
def get_runner_cate(self, email):
"""Return runner's category basing on his email.
@type self: Race_Registry
@type email: str
@rtype: str
>>> r = RaceRegistry()
>>> r.add('gerhard@mail.utoronto.ca', 'under 40')
>>> r.get_runner_cate('gerhard@mail.utoronto.ca')
'under 40'
"""
if email in self.under_20:
return 'under 20'
elif email in self.under_30:
return 'under 30'
elif email in self.under_40:
return 'under 40'
elif email in self.over_40:
return 'over 40'
if __name__ == '__main__':
r = race_registry()
r.add('gerhard@mail.utoronto.ca', 'under 40')
r.add('tom@mail.utoronto.ca', 'under 30')
r.add('jerry@mail.utoronto.ca', 'under 20')
r.add('haha@mail.utoronto.ca', 'over 40')
print(r)
r.get_runner_cate('jerry@mail.utoronto.ca') |
num = int(input('Digite o numero para a tabuada: '))
contador = 0
print('-' * 12)
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, (num*contador)))
print('-' * 12)
| num = int(input('Digite o numero para a tabuada: '))
contador = 0
print('-' * 12)
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
contador = contador + 1
print('{} * {:2} = {:2}'.format(num, contador, num * contador))
print('-' * 12) |
class BetelError(Exception):
"""Raise when an exception occurs."""
class PlayScrapingError(BetelError):
"""Raise when certain attributes can't be found within the Play page."""
class AccessError(BetelError):
"""Raise on URL or HTTP errors."""
def __init__(self, message, exception):
super(AccessError, self).__init__(message + (": %s" % exception))
| class Betelerror(Exception):
"""Raise when an exception occurs."""
class Playscrapingerror(BetelError):
"""Raise when certain attributes can't be found within the Play page."""
class Accesserror(BetelError):
"""Raise on URL or HTTP errors."""
def __init__(self, message, exception):
super(AccessError, self).__init__(message + ': %s' % exception) |
class DeviceModelDoesnotExistException(Exception):
def __str__(self):
return "Target device model doesn't exist."
class ParameterCannotBeNone(Exception):
def __str__(self):
return "Parameter cannot all be None."
| class Devicemodeldoesnotexistexception(Exception):
def __str__(self):
return "Target device model doesn't exist."
class Parametercannotbenone(Exception):
def __str__(self):
return 'Parameter cannot all be None.' |
level = 3
name = 'Margahayu'
capital = 'Sukamenak'
area = 10.54
| level = 3
name = 'Margahayu'
capital = 'Sukamenak'
area = 10.54 |
"""A dictonary containing every option/button in the map.
xStart, yStart, xEnd, yEnd are all percentiles, which are later multipled by the total width and
height of the map.
Activated is a boolean which changes when the button is placed on the screen.
Ending is a boolean which determines if that option/button is the final child.
Children define all the options that option is a parent to/is linked to."""
options = {
# //////////////////// LAYER 1 ////////////////////
'Start': {
'xStart': 0.475,
'yStart': 0.05,
'xEnd': 0.525,
'yEnd': 0.1,
'activated': False,
'ending': False,
'children': ['Lounge', 'Basement', 'Office', 'Kitchen', 'Nursery']
},
# //////////////////// LAYER 2 ////////////////////
'Lounge': {
'xStart': 0.110,
'yStart': 0.15,
'xEnd': 0.170,
'yEnd': 0.2,
'activated': False,
'ending': False,
'children': ['Truth', 'Lie']
},
'Basement': {
'xStart': 0.287,
'yStart': 0.15,
'xEnd': 0.363,
'yEnd': 0.2,
'activated': False,
'ending': False,
'children': ['Help', "Don't help"]
},
'Office': {
'xStart': 0.475,
'yStart': 0.15,
'xEnd': 0.525,
'yEnd': 0.2,
'activated': False,
'ending': False,
'children': ['Steal', 'Talk']
},
'Kitchen': {
'xStart': 0.650,
'yStart': 0.15,
'xEnd': 0.710,
'yEnd': 0.2,
'activated': False,
'ending': False,
'children': ['Escape', 'Fight']
},
'Nursery': {
'xStart': 0.830,
'yStart': 0.15,
'xEnd': 0.890,
'yEnd': 0.2,
'activated': False,
'ending': False,
'children': ['Listen', 'Hack']
},
# //////////////////// LAYER 3 ////////////////////
'Truth': {
'xStart': 0.065,
'yStart': 0.25,
'xEnd': 0.115,
'yEnd': 0.3,
'activated': False,
'ending': False,
'children': ['Coffee', 'No Coffee']
},
'Lie': {
'xStart': 0.165,
'yStart': 0.25,
'xEnd': 0.215,
'yEnd': 0.3,
'activated': False,
'ending': True,
'children': [None]
},
'Help': {
'xStart': 0.245,
'yStart': 0.25,
'xEnd': 0.295,
'yEnd': 0.3,
'activated': False,
'ending': True,
'children': [None]
},
"Don't help": {
'xStart': 0.330,
'yStart': 0.25,
'xEnd': 0.410,
'yEnd': 0.3,
'activated': False,
'ending': True,
'children': [None]
},
'Steal': {
'xStart': 0.425,
'yStart': 0.25,
'xEnd': 0.475,
'yEnd': 0.3,
'activated': False,
'ending': True,
'children': [None]
},
'Talk': {
'xStart': 0.525,
'yStart': 0.25,
'xEnd': 0.575,
'yEnd': 0.3,
'activated': False,
'ending': True,
'children': [None]
},
'Escape': {
'xStart': 0.602,
'yStart': 0.25,
'xEnd': 0.658,
'yEnd': 0.3,
'activated': False,
'ending': True,
'children': [None]
},
'Fight': {
'xStart': 0.705,
'yStart': 0.25,
'xEnd': 0.755,
'yEnd': 0.3,
'activated': False,
'ending': True,
'children': [None]
},
'Listen': {
'xStart': 0.785,
'yStart': 0.25,
'xEnd': 0.835,
'yEnd': 0.3,
'activated': False,
'ending': True,
'children': [None]
},
'Hack': {
'xStart': 0.885,
'yStart': 0.25,
'xEnd': 0.935,
'yEnd': 0.3,
'activated': False,
'ending': True,
'children': [None]
},
# //////////////////// LAYER 4 ////////////////////
'Coffee': {
'xStart': 0.015,
'yStart': 0.35,
'xEnd': 0.065,
'yEnd': 0.4,
'activated': False,
'ending': False,
'children': ['Chat', "Don't chat"]
},
'No Coffee': {
'xStart': 0.100,
'yStart': 0.35,
'xEnd': 0.170,
'yEnd': 0.4,
'activated': False,
'ending': False,
'children': ['Chat', "Don't chat"]
},
# //////////////////// LAYER 5 ////////////////////
'Chat': {
'xStart': 0.015,
'yStart': 0.45,
'xEnd': 0.065,
'yEnd': 0.5,
'activated': False,
'ending': False,
'children': ['Reasons']
},
"Don't chat": {
'xStart': 0.100,
'yStart': 0.45,
'xEnd': 0.180,
'yEnd': 0.5,
'activated': False,
'ending': False,
'children': ['Reasons']
},
# //////////////////// LAYER 6 ////////////////////
'Reasons': {
'xStart': 0.060,
'yStart': 0.55,
'xEnd': 0.120,
'yEnd': 0.6,
'activated': False,
'ending': False,
'children': ['Flee', 'Stay']
},
# //////////////////// LAYER 7 ////////////////////
'Flee': {
'xStart': 0.065,
'yStart': 0.65,
'xEnd': 0.115,
'yEnd': 0.7,
'activated': False,
'ending': False,
'children': ['Window', 'Stay']
},
# //////////////////// LAYER 8 ////////////////////
'Window': {
'xStart': 0.060,
'yStart': 0.75,
'xEnd': 0.120,
'yEnd': 0.8,
'activated': False,
'ending': False,
'children': ['Jump', 'Climb']
},
'Stay': {
'xStart': 0.245,
'yStart': 0.75,
'xEnd': 0.295,
'yEnd': 0.8,
'activated': False,
'ending': False,
'children': ['Struggle', 'Knife']
},
# //////////////////// LAYER 8 ////////////////////
'Jump': {
'xStart': 0.015,
'yStart': 0.85,
'xEnd': 0.065,
'yEnd': 0.9,
'activated': False,
'ending': True,
'children': [None]
},
'Climb': {
'xStart': 0.115,
'yStart': 0.85,
'xEnd': 0.165,
'yEnd': 0.9,
'activated': False,
'ending': True,
'children': [None]
},
'Struggle': {
'xStart': 0.190,
'yStart': 0.85,
'xEnd': 0.250,
'yEnd': 0.9,
'activated': False,
'ending': True,
'children': [None]
},
'Knife': {
'xStart': 0.295,
'yStart': 0.85,
'xEnd': 0.345,
'yEnd': 0.9,
'activated': False,
'ending': True,
'children': [None]
},
}
| """A dictonary containing every option/button in the map.
xStart, yStart, xEnd, yEnd are all percentiles, which are later multipled by the total width and
height of the map.
Activated is a boolean which changes when the button is placed on the screen.
Ending is a boolean which determines if that option/button is the final child.
Children define all the options that option is a parent to/is linked to."""
options = {'Start': {'xStart': 0.475, 'yStart': 0.05, 'xEnd': 0.525, 'yEnd': 0.1, 'activated': False, 'ending': False, 'children': ['Lounge', 'Basement', 'Office', 'Kitchen', 'Nursery']}, 'Lounge': {'xStart': 0.11, 'yStart': 0.15, 'xEnd': 0.17, 'yEnd': 0.2, 'activated': False, 'ending': False, 'children': ['Truth', 'Lie']}, 'Basement': {'xStart': 0.287, 'yStart': 0.15, 'xEnd': 0.363, 'yEnd': 0.2, 'activated': False, 'ending': False, 'children': ['Help', "Don't help"]}, 'Office': {'xStart': 0.475, 'yStart': 0.15, 'xEnd': 0.525, 'yEnd': 0.2, 'activated': False, 'ending': False, 'children': ['Steal', 'Talk']}, 'Kitchen': {'xStart': 0.65, 'yStart': 0.15, 'xEnd': 0.71, 'yEnd': 0.2, 'activated': False, 'ending': False, 'children': ['Escape', 'Fight']}, 'Nursery': {'xStart': 0.83, 'yStart': 0.15, 'xEnd': 0.89, 'yEnd': 0.2, 'activated': False, 'ending': False, 'children': ['Listen', 'Hack']}, 'Truth': {'xStart': 0.065, 'yStart': 0.25, 'xEnd': 0.115, 'yEnd': 0.3, 'activated': False, 'ending': False, 'children': ['Coffee', 'No Coffee']}, 'Lie': {'xStart': 0.165, 'yStart': 0.25, 'xEnd': 0.215, 'yEnd': 0.3, 'activated': False, 'ending': True, 'children': [None]}, 'Help': {'xStart': 0.245, 'yStart': 0.25, 'xEnd': 0.295, 'yEnd': 0.3, 'activated': False, 'ending': True, 'children': [None]}, "Don't help": {'xStart': 0.33, 'yStart': 0.25, 'xEnd': 0.41, 'yEnd': 0.3, 'activated': False, 'ending': True, 'children': [None]}, 'Steal': {'xStart': 0.425, 'yStart': 0.25, 'xEnd': 0.475, 'yEnd': 0.3, 'activated': False, 'ending': True, 'children': [None]}, 'Talk': {'xStart': 0.525, 'yStart': 0.25, 'xEnd': 0.575, 'yEnd': 0.3, 'activated': False, 'ending': True, 'children': [None]}, 'Escape': {'xStart': 0.602, 'yStart': 0.25, 'xEnd': 0.658, 'yEnd': 0.3, 'activated': False, 'ending': True, 'children': [None]}, 'Fight': {'xStart': 0.705, 'yStart': 0.25, 'xEnd': 0.755, 'yEnd': 0.3, 'activated': False, 'ending': True, 'children': [None]}, 'Listen': {'xStart': 0.785, 'yStart': 0.25, 'xEnd': 0.835, 'yEnd': 0.3, 'activated': False, 'ending': True, 'children': [None]}, 'Hack': {'xStart': 0.885, 'yStart': 0.25, 'xEnd': 0.935, 'yEnd': 0.3, 'activated': False, 'ending': True, 'children': [None]}, 'Coffee': {'xStart': 0.015, 'yStart': 0.35, 'xEnd': 0.065, 'yEnd': 0.4, 'activated': False, 'ending': False, 'children': ['Chat', "Don't chat"]}, 'No Coffee': {'xStart': 0.1, 'yStart': 0.35, 'xEnd': 0.17, 'yEnd': 0.4, 'activated': False, 'ending': False, 'children': ['Chat', "Don't chat"]}, 'Chat': {'xStart': 0.015, 'yStart': 0.45, 'xEnd': 0.065, 'yEnd': 0.5, 'activated': False, 'ending': False, 'children': ['Reasons']}, "Don't chat": {'xStart': 0.1, 'yStart': 0.45, 'xEnd': 0.18, 'yEnd': 0.5, 'activated': False, 'ending': False, 'children': ['Reasons']}, 'Reasons': {'xStart': 0.06, 'yStart': 0.55, 'xEnd': 0.12, 'yEnd': 0.6, 'activated': False, 'ending': False, 'children': ['Flee', 'Stay']}, 'Flee': {'xStart': 0.065, 'yStart': 0.65, 'xEnd': 0.115, 'yEnd': 0.7, 'activated': False, 'ending': False, 'children': ['Window', 'Stay']}, 'Window': {'xStart': 0.06, 'yStart': 0.75, 'xEnd': 0.12, 'yEnd': 0.8, 'activated': False, 'ending': False, 'children': ['Jump', 'Climb']}, 'Stay': {'xStart': 0.245, 'yStart': 0.75, 'xEnd': 0.295, 'yEnd': 0.8, 'activated': False, 'ending': False, 'children': ['Struggle', 'Knife']}, 'Jump': {'xStart': 0.015, 'yStart': 0.85, 'xEnd': 0.065, 'yEnd': 0.9, 'activated': False, 'ending': True, 'children': [None]}, 'Climb': {'xStart': 0.115, 'yStart': 0.85, 'xEnd': 0.165, 'yEnd': 0.9, 'activated': False, 'ending': True, 'children': [None]}, 'Struggle': {'xStart': 0.19, 'yStart': 0.85, 'xEnd': 0.25, 'yEnd': 0.9, 'activated': False, 'ending': True, 'children': [None]}, 'Knife': {'xStart': 0.295, 'yStart': 0.85, 'xEnd': 0.345, 'yEnd': 0.9, 'activated': False, 'ending': True, 'children': [None]}} |
'''
Loops let you walk through a sequence of items, such as items in a list
'''
#
# looping through a list
#
colors = ['black', 'blue', 'brown', 'green', 'purple', 'white', 'yellow']
for color in colors:
print(color)
#
# Looping through a range of numbers
#
for num in range(5):
print(num) # Prints the numbers 0, 1, 2, 3, 4
# Range can have start values and end values.
# Stops right before the end value.
for num in range(10, 16):
print(num) # Print the numbers 10, 11, 12, 14, 15. Note stops at 15.
# Range can also have a step value
for num in range(20, 31, 2):
print(num) # Print the numbers 20, 22, 24, 26, 28, 30. Notes stops at 30.
| """
Loops let you walk through a sequence of items, such as items in a list
"""
colors = ['black', 'blue', 'brown', 'green', 'purple', 'white', 'yellow']
for color in colors:
print(color)
for num in range(5):
print(num)
for num in range(10, 16):
print(num)
for num in range(20, 31, 2):
print(num) |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
def get_palindromic(n_s, n_e):
n_1 = n_s
f_1 = -1
f_2 = -1
f = -1
while n_1 <= n_e:
for n_2 in range(n_1, n_e+1):
n = n_1 * n_2
if is_palindromic(n) and n > f:
f_1 = n_1
f_2 = n_2
f = n
n_1 += 1
return f, f_1, f_2
def is_palindromic(n):
s = str(n)
r = list(reversed(s))
for i in range(len(s)):
if s[i] != r[i]:
return False
return True
print(get_palindromic(10, 99))
print(get_palindromic(100, 999))
| def get_palindromic(n_s, n_e):
n_1 = n_s
f_1 = -1
f_2 = -1
f = -1
while n_1 <= n_e:
for n_2 in range(n_1, n_e + 1):
n = n_1 * n_2
if is_palindromic(n) and n > f:
f_1 = n_1
f_2 = n_2
f = n
n_1 += 1
return (f, f_1, f_2)
def is_palindromic(n):
s = str(n)
r = list(reversed(s))
for i in range(len(s)):
if s[i] != r[i]:
return False
return True
print(get_palindromic(10, 99))
print(get_palindromic(100, 999)) |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
Author - Samar Srivastava (https://samacker77.github.io)
Problem Link - https://www.hackerrank.com/challenges/s10-quartiles/problem
Problem Statement - Given an array, X, of n integers, calculate the respective first quartile (Q1), second quartile (Q2), and third quartile (Q3).
It is guaranteed that Q1, Q2,and Q3 are integers.
'''
#---------------Solution------------------#
class Solution():
def __init__(self,N:int,X:list):
self.N = N
self.X = X
def inputs(self):
return self.N,self.X
def split_data(self):
self.X = sorted(self.X)
if self.N%2 == 0:
half_ix = self.N//2
first_half = self.X[:self.N//2]
second_half = self.X[self.N//2:]
return first_half, second_half
else:
median = self.X[self.N//2]
first_half = self.X[0:self.N//2]
second_half = self.X[self.N//2+1:]
return first_half,second_half
def median(self,new_X:list):
new_X = sorted(new_X)
if len(new_X)%2 == 0:
ix1 = new_X[len(new_X)//2-1]
ix2 = new_X[len(new_X)//2]
return (ix1+ix2)//2
else:
return new_X[len(new_X)//2]
def main():
N = int(input())
X = list(map(int,input().split()))
submit = Solution(N,X)
lower_half,upper_half = submit.split_data()
Q1 = submit.median(lower_half)
Q2 = submit.median(X)
Q3 = submit.median(upper_half)
print(*[Q1,Q2,Q3],sep='\n')
if __name__ == '__main__':
main()
| """
Author - Samar Srivastava (https://samacker77.github.io)
Problem Link - https://www.hackerrank.com/challenges/s10-quartiles/problem
Problem Statement - Given an array, X, of n integers, calculate the respective first quartile (Q1), second quartile (Q2), and third quartile (Q3).
It is guaranteed that Q1, Q2,and Q3 are integers.
"""
class Solution:
def __init__(self, N: int, X: list):
self.N = N
self.X = X
def inputs(self):
return (self.N, self.X)
def split_data(self):
self.X = sorted(self.X)
if self.N % 2 == 0:
half_ix = self.N // 2
first_half = self.X[:self.N // 2]
second_half = self.X[self.N // 2:]
return (first_half, second_half)
else:
median = self.X[self.N // 2]
first_half = self.X[0:self.N // 2]
second_half = self.X[self.N // 2 + 1:]
return (first_half, second_half)
def median(self, new_X: list):
new_x = sorted(new_X)
if len(new_X) % 2 == 0:
ix1 = new_X[len(new_X) // 2 - 1]
ix2 = new_X[len(new_X) // 2]
return (ix1 + ix2) // 2
else:
return new_X[len(new_X) // 2]
def main():
n = int(input())
x = list(map(int, input().split()))
submit = solution(N, X)
(lower_half, upper_half) = submit.split_data()
q1 = submit.median(lower_half)
q2 = submit.median(X)
q3 = submit.median(upper_half)
print(*[Q1, Q2, Q3], sep='\n')
if __name__ == '__main__':
main() |
def edit_distance(s1, s2):
"""Calculates the Levenshtein distance between two strings."""
if s1 == s2: # if equal, then distance is zero
return 0
m, n = len(s1), len(s2)
# if one string is empty, then distance is the length of the other string
if not s1:
return n
elif not s2:
return m
# originally matrix of distances: size (m+1) by (n+1)
# ds[i, j] has dist for first i chars of s1 and first j chars of s2
# ds = np.zeros((m+1, n+1), dtype=np.int32)
# optimization: use only two rows (c & d) at a time (working down)
c = None
d = range(n+1) # s1 to empty string by j deletions
for i in range(1, m+1):
# move current row to previous row
# create new row, index 0: t to empty string by i deletions, rest 0
c, d = d, [i]+[0]*n
# calculate dists for current row
for j in range(1, n+1):
sub_cost = int(s1[i-1] != s2[j-1])
d[j] = min(c[j] + 1, # deletion
d[j-1] + 1, # insertion
c[j-1] + sub_cost) # substitution
return d[n]
| def edit_distance(s1, s2):
"""Calculates the Levenshtein distance between two strings."""
if s1 == s2:
return 0
(m, n) = (len(s1), len(s2))
if not s1:
return n
elif not s2:
return m
c = None
d = range(n + 1)
for i in range(1, m + 1):
(c, d) = (d, [i] + [0] * n)
for j in range(1, n + 1):
sub_cost = int(s1[i - 1] != s2[j - 1])
d[j] = min(c[j] + 1, d[j - 1] + 1, c[j - 1] + sub_cost)
return d[n] |
"""
map() toma un iterable y devuelve otro iterable
"""
friends = ['Juan', 'Carlos', 'Daniel', 'Ricardo', 'Jhon']
friends_lower = map(lambda x: x.lower(), friends)
print(next(friends_lower))
print(next(friends_lower))
class User:
def __init__(self, username, password):
self.username = username
self.password = password
@classmethod
def from_dict(cls, data):
return cls(data['username'], data['password'])
users = [
{'username': 'rolf', 'password': '123'},
{'username': 'jhon', 'password': '245'}
]
users = [User.from_dict(user) for user in users]
users = map(User.from_dict, users) # Equivalente a la sintaxis anterior
| """
map() toma un iterable y devuelve otro iterable
"""
friends = ['Juan', 'Carlos', 'Daniel', 'Ricardo', 'Jhon']
friends_lower = map(lambda x: x.lower(), friends)
print(next(friends_lower))
print(next(friends_lower))
class User:
def __init__(self, username, password):
self.username = username
self.password = password
@classmethod
def from_dict(cls, data):
return cls(data['username'], data['password'])
users = [{'username': 'rolf', 'password': '123'}, {'username': 'jhon', 'password': '245'}]
users = [User.from_dict(user) for user in users]
users = map(User.from_dict, users) |
'''
Piling Up!
https://www.hackerrank.com/challenges/piling-up/problem
There is a horizontal row of n cubes. The length of each cube is given. You need to create a new vertical pile of cubes. The new pile should follow these directions: if cube(i) is on top of cube(j) then sideLength(j) >= sideLength(i).
When stacking the cubes, you can only pick up either the leftmost or the rightmost cube each time. Print "Yes" if it is possible to stack the cubes. Otherwise, print "No". Do not print the quotation marks.
Input Format
The first line contains a single integer T, the number of test cases.
For each test case, there are 2 lines.
The first line of each test case contains , the number of cubes.
The second line contains n space separated integers, denoting the sideLengths of each cube in that order.
Constraints
1 <= T <= 5
1 <= n <= 10^5
1 <= sideLength <= 2^31
Output Format
For each test case, output a single line containing either "Yes" or "No" without the quotes.
Sample Input
2
6
4 3 2 1 3 4
3
1 3 2
Sample Output
Yes
No
Explanation
In the first test case, pick in this order: left - 4, right - 4, left - 3, right - 3, left - 2, right - 1.
In the second test case, no order gives an appropriate arrangement of vertical cubes. 3 will always come after either 1 or 2.
'''
def clean_inputs(inpt, allowed_chars=[]):
ret = ""
for c in inpt:
if c.isdigit() or c in allowed_chars:
ret += c
return ret
test_cases = int(clean_inputs(input()))
for i in range(test_cases):
no_cubes = int(clean_inputs(input()))
cubes = clean_inputs(input().strip(), [" "]).split(" ")
for i in range(len(cubes)):
cubes[i] = int(cubes[i])
stack = []
res = "Yes"
while (len(cubes) > 0):
if cubes[0] > cubes[-1]:
li = 0
else:
li = -1
if len(stack) == 0 or cubes[li] <= stack[-1]:
stack.append(cubes.pop(li))
else:
res = "No"
break
print(res)
| """
Piling Up!
https://www.hackerrank.com/challenges/piling-up/problem
There is a horizontal row of n cubes. The length of each cube is given. You need to create a new vertical pile of cubes. The new pile should follow these directions: if cube(i) is on top of cube(j) then sideLength(j) >= sideLength(i).
When stacking the cubes, you can only pick up either the leftmost or the rightmost cube each time. Print "Yes" if it is possible to stack the cubes. Otherwise, print "No". Do not print the quotation marks.
Input Format
The first line contains a single integer T, the number of test cases.
For each test case, there are 2 lines.
The first line of each test case contains , the number of cubes.
The second line contains n space separated integers, denoting the sideLengths of each cube in that order.
Constraints
1 <= T <= 5
1 <= n <= 10^5
1 <= sideLength <= 2^31
Output Format
For each test case, output a single line containing either "Yes" or "No" without the quotes.
Sample Input
2
6
4 3 2 1 3 4
3
1 3 2
Sample Output
Yes
No
Explanation
In the first test case, pick in this order: left - 4, right - 4, left - 3, right - 3, left - 2, right - 1.
In the second test case, no order gives an appropriate arrangement of vertical cubes. 3 will always come after either 1 or 2.
"""
def clean_inputs(inpt, allowed_chars=[]):
ret = ''
for c in inpt:
if c.isdigit() or c in allowed_chars:
ret += c
return ret
test_cases = int(clean_inputs(input()))
for i in range(test_cases):
no_cubes = int(clean_inputs(input()))
cubes = clean_inputs(input().strip(), [' ']).split(' ')
for i in range(len(cubes)):
cubes[i] = int(cubes[i])
stack = []
res = 'Yes'
while len(cubes) > 0:
if cubes[0] > cubes[-1]:
li = 0
else:
li = -1
if len(stack) == 0 or cubes[li] <= stack[-1]:
stack.append(cubes.pop(li))
else:
res = 'No'
break
print(res) |
"""
lab2
"""
#3.1
my_name = 'Tom'
print(my_name.upper())
#3.2
my_id = 123
print(my_id)
#3.3
my_id = your_id = 123
print(my_id)
print(your_id)
#3.4
my_id_str = "123"
print(my_id_str)
#3.5
#print(my_name + my_id) Cannot add string and variable
#3.6
print(my_name + my_id_str)
#3.7
print(my_name * 3)
#3.8
print('hello, world. This is my first python string.'.split('.'))
#3.9
message = "Tom's ID is 123"
print(message)
| """
lab2
"""
my_name = 'Tom'
print(my_name.upper())
my_id = 123
print(my_id)
my_id = your_id = 123
print(my_id)
print(your_id)
my_id_str = '123'
print(my_id_str)
print(my_name + my_id_str)
print(my_name * 3)
print('hello, world. This is my first python string.'.split('.'))
message = "Tom's ID is 123"
print(message) |
def get_average_inventory_worth(current, production, consumption, processing, queued, missing, trade):
results = {"P1": 0, "P2": 0, "P3": 0, "E4": 0, "E5": 0, "E6": 0, "E7": 0, "E8": 0, "E9": 0, "E10": 0, "E11": 0, "E12": 0, "E13": 0, "E14": 0, "E15": 0,
"E16": 0, "E17": 0, "E18": 0, "E19": 0, "E20": 0, "K21": 0, "K22": 0, "K23": 0, "K24": 0, "K25": 0, "E26": 0, "K27": 0, "K28": 0, "E29": 0, "E30": 0,
"E31": 0, "K32": 0, "K33": 0, "K34": 0, "K35": 0, "K36": 0, "K37": 0, "K38": 0, "K39": 0, "K40": 0, "K41": 0, "K42": 0, "K43": 0, "K44": 0, "K45": 0,
"K46": 0, "K47": 0, "K48": 0, "E49": 0, "E50": 0, "E51": 0, "K52": 0, "K53": 0, "E54": 0, "E55": 0, "E56": 0, "K57": 0, "K58": 0, "K59": 0, }
for key in results:
production_article = production[key] if key in production else 0
processing_article = processing[key] if key in processing else 0
queued_article = queued[key] if key in queued else 0
missing_article = missing[key] if key in missing else 0
trade_article = trade[key] if key in trade else (0, 0, 0)
# if float separator is ',' substitute it with '.'
current_price = float(".".join(current[key][1].split(",")) if len(
current[key][1].split(",")) == 2 else current[key][1])
period_end = current[key][0] + production_article - consumption[key] + \
processing_article + queued_article + \
missing_article + trade_article[0] - trade_article[1]
current_worth = current[key][0] * current_price
period_end_worth = period_end * current_price
results[key] = round((current_worth + period_end_worth) * 0.5, 2)
# results are the average inventory worths for every article
return results
| def get_average_inventory_worth(current, production, consumption, processing, queued, missing, trade):
results = {'P1': 0, 'P2': 0, 'P3': 0, 'E4': 0, 'E5': 0, 'E6': 0, 'E7': 0, 'E8': 0, 'E9': 0, 'E10': 0, 'E11': 0, 'E12': 0, 'E13': 0, 'E14': 0, 'E15': 0, 'E16': 0, 'E17': 0, 'E18': 0, 'E19': 0, 'E20': 0, 'K21': 0, 'K22': 0, 'K23': 0, 'K24': 0, 'K25': 0, 'E26': 0, 'K27': 0, 'K28': 0, 'E29': 0, 'E30': 0, 'E31': 0, 'K32': 0, 'K33': 0, 'K34': 0, 'K35': 0, 'K36': 0, 'K37': 0, 'K38': 0, 'K39': 0, 'K40': 0, 'K41': 0, 'K42': 0, 'K43': 0, 'K44': 0, 'K45': 0, 'K46': 0, 'K47': 0, 'K48': 0, 'E49': 0, 'E50': 0, 'E51': 0, 'K52': 0, 'K53': 0, 'E54': 0, 'E55': 0, 'E56': 0, 'K57': 0, 'K58': 0, 'K59': 0}
for key in results:
production_article = production[key] if key in production else 0
processing_article = processing[key] if key in processing else 0
queued_article = queued[key] if key in queued else 0
missing_article = missing[key] if key in missing else 0
trade_article = trade[key] if key in trade else (0, 0, 0)
current_price = float('.'.join(current[key][1].split(',')) if len(current[key][1].split(',')) == 2 else current[key][1])
period_end = current[key][0] + production_article - consumption[key] + processing_article + queued_article + missing_article + trade_article[0] - trade_article[1]
current_worth = current[key][0] * current_price
period_end_worth = period_end * current_price
results[key] = round((current_worth + period_end_worth) * 0.5, 2)
return results |
#! /usr/bin/env python3
'''
Problem 1 - Project Euler
http://projecteuler.net/index.php?section=problems&id=001
'''
def summul(n, x):
return int(x * (n // x) * (n // x + 1) / 2)
if __name__ == '__main__':
N = 1000 - 1
print(summul(N, 3) + summul(N, 5) - summul(N, 3 * 5))
| """
Problem 1 - Project Euler
http://projecteuler.net/index.php?section=problems&id=001
"""
def summul(n, x):
return int(x * (n // x) * (n // x + 1) / 2)
if __name__ == '__main__':
n = 1000 - 1
print(summul(N, 3) + summul(N, 5) - summul(N, 3 * 5)) |
for t in range(int(input())):
A,B=input().split()
L=[[0]*(len(A)+1) for i in range((len(B)+1))]
for i in range(len(B)):
for j in range(len(A)):
if B[i]==A[j]:
L[i+1][j+1]=L[i][j]+1
else :
L[i+1][j+1]=max(L[i][j+1],L[i+1][j])
print(f"#{t+1} {max(max(L))}")
| for t in range(int(input())):
(a, b) = input().split()
l = [[0] * (len(A) + 1) for i in range(len(B) + 1)]
for i in range(len(B)):
for j in range(len(A)):
if B[i] == A[j]:
L[i + 1][j + 1] = L[i][j] + 1
else:
L[i + 1][j + 1] = max(L[i][j + 1], L[i + 1][j])
print(f'#{t + 1} {max(max(L))}') |
with Flow(bypass_sub_flows=True,
add_flow_enable="enabled",
environment="probe") as flow:
flow.description = '''
An example of creating an entire test program from a single source file
'''
#unless Origen.app.environment.name == 'v93k_global'
flow.set_resources_filename('prb2')
flow.func("erase_all", duration="dynamic", number=10000)
flow.func("margin_read1_all1", number=10010)
flow.func("erase_all", duration="dynamic", number=10020)
flow.func("margin_read1_all1", number=10030)
flow.include('components/prb2_main', number=11000)
flow.func("erase_all", duration="dynamic", number=12000)
flow.func("margin_read1_all1", id='erased_successfully', number=12010)
# Check that an instance variable change in a sub-flow (prb2_main in this case)
# is preserved back here in the main flow
if flow.include_additional_prb2_test:
with flow.if_enable('extra_tests'):
flow.include('components/prb2_main', number=13000)
flow.func("margin_read1_all1", number=14000)
| with flow(bypass_sub_flows=True, add_flow_enable='enabled', environment='probe') as flow:
flow.description = '\n An example of creating an entire test program from a single source file\n '
flow.set_resources_filename('prb2')
flow.func('erase_all', duration='dynamic', number=10000)
flow.func('margin_read1_all1', number=10010)
flow.func('erase_all', duration='dynamic', number=10020)
flow.func('margin_read1_all1', number=10030)
flow.include('components/prb2_main', number=11000)
flow.func('erase_all', duration='dynamic', number=12000)
flow.func('margin_read1_all1', id='erased_successfully', number=12010)
if flow.include_additional_prb2_test:
with flow.if_enable('extra_tests'):
flow.include('components/prb2_main', number=13000)
flow.func('margin_read1_all1', number=14000) |
__title__ = 'campy'
__description__ = 'ACM Graphical Libraries in Python'
__url__ = 'https://campy.sredmond.io/'
__license__ = 'MIT'
__version__ = '0.0.1.dev3'
__build__ = 0x000001
__status__ = 'Prototype'
__author__ = 'Sam Redmond'
__maintainer__ = 'Sam Redmond'
__email__ = 'sredmond@stanford.edu'
__copyright__ = '(c) 2016-2019 by Sam Redmond'
__credits__ = ["Sam Redmond", "Alex Valderrama", "Marty Stepp", "Eric Roberts"]
__snake__ = '\u2728 \U0001F40D \u2728'
| __title__ = 'campy'
__description__ = 'ACM Graphical Libraries in Python'
__url__ = 'https://campy.sredmond.io/'
__license__ = 'MIT'
__version__ = '0.0.1.dev3'
__build__ = 1
__status__ = 'Prototype'
__author__ = 'Sam Redmond'
__maintainer__ = 'Sam Redmond'
__email__ = 'sredmond@stanford.edu'
__copyright__ = '(c) 2016-2019 by Sam Redmond'
__credits__ = ['Sam Redmond', 'Alex Valderrama', 'Marty Stepp', 'Eric Roberts']
__snake__ = '✨ 🐍 ✨' |
#!/usr/bin/env python3
def solve(data):
allowed = []
test_num = 0
prv_rng = range(0, 0)
for rng in sorted(data, key=lambda x: x.start):
if rng.stop in prv_rng:
continue
while not test_num in rng:
allowed.append(test_num)
test_num += 1
prv_rng = rng
test_num = rng.stop
return allowed
def parse_line(line):
(start, end) = line.split('-')
return range(int(start), int(end) + 1)
if __name__ == '__main__':
with open('day20_input.txt') as f:
data = [parse_line(line) for line in f.readlines() if line]
allowed = solve(data)
print(allowed[0])
print(len(allowed))
| def solve(data):
allowed = []
test_num = 0
prv_rng = range(0, 0)
for rng in sorted(data, key=lambda x: x.start):
if rng.stop in prv_rng:
continue
while not test_num in rng:
allowed.append(test_num)
test_num += 1
prv_rng = rng
test_num = rng.stop
return allowed
def parse_line(line):
(start, end) = line.split('-')
return range(int(start), int(end) + 1)
if __name__ == '__main__':
with open('day20_input.txt') as f:
data = [parse_line(line) for line in f.readlines() if line]
allowed = solve(data)
print(allowed[0])
print(len(allowed)) |
S = input()
A = input()
if len(S) < len(A):
print('UNRESTORABLE')
exit(0)
for i in reversed(range(len(S)-len(A)+1)):
for j in range(len(A)):
if not(S[i+j] == A[j] or S[i+j] == '?'):
break
else:
ans = S[:i] + A + S[i+len(A):]
ans = ans.replace('?', 'a')
print(ans)
break
else:
print('UNRESTORABLE')
| s = input()
a = input()
if len(S) < len(A):
print('UNRESTORABLE')
exit(0)
for i in reversed(range(len(S) - len(A) + 1)):
for j in range(len(A)):
if not (S[i + j] == A[j] or S[i + j] == '?'):
break
else:
ans = S[:i] + A + S[i + len(A):]
ans = ans.replace('?', 'a')
print(ans)
break
else:
print('UNRESTORABLE') |
def to_celsius(x):
return (x-32)*5/9
for x in range(0,101,10):
print(x,to_celsius(x))
| def to_celsius(x):
return (x - 32) * 5 / 9
for x in range(0, 101, 10):
print(x, to_celsius(x)) |
def selection_sort(array):
length = len(array)
for i in range(0, length, 1):
higher = i
for j in range(i+1, length, 1):
if array[higher] > array[j]:
higher = j
if higher != i:
tmp = array[higher]
array[higher] = array[i]
array[i] = tmp
return array
| def selection_sort(array):
length = len(array)
for i in range(0, length, 1):
higher = i
for j in range(i + 1, length, 1):
if array[higher] > array[j]:
higher = j
if higher != i:
tmp = array[higher]
array[higher] = array[i]
array[i] = tmp
return array |
class ToolStripItem(
Component,
IComponent,
IDisposable,
IDropTarget,
ISupportOleDropSource,
IArrangedElement,
):
""" Represents the abstract base class that manages events and layout for all the elements that a System.Windows.Forms.ToolStrip or System.Windows.Forms.ToolStripDropDown can contain. """
def CreateAccessibilityInstance(self, *args):
"""
CreateAccessibilityInstance(self: ToolStripItem) -> AccessibleObject
Creates a new accessibility object for the System.Windows.Forms.ToolStripItem.
Returns: A new System.Windows.Forms.AccessibleObject for the System.Windows.Forms.ToolStripItem.
"""
pass
def Dispose(self):
"""
Dispose(self: ToolStripItem,disposing: bool)
Releases the unmanaged resources used by the System.Windows.Forms.ToolStripItem and optionally
releases the managed resources.
disposing: true to release both managed and unmanaged resources; false to release only unmanaged resources.
"""
pass
def DoDragDrop(self, data, allowedEffects):
"""
DoDragDrop(self: ToolStripItem,data: object,allowedEffects: DragDropEffects) -> DragDropEffects
Begins a drag-and-drop operation.
data: The object to be dragged.
allowedEffects: The drag operations that can occur.
Returns: One of the System.Windows.Forms.DragDropEffects values.
"""
pass
def GetCurrentParent(self):
"""
GetCurrentParent(self: ToolStripItem) -> ToolStrip
Retrieves the System.Windows.Forms.ToolStrip that is the container of the current
System.Windows.Forms.ToolStripItem.
Returns: A System.Windows.Forms.ToolStrip that is the container of the current
System.Windows.Forms.ToolStripItem.
"""
pass
def GetPreferredSize(self, constrainingSize):
"""
GetPreferredSize(self: ToolStripItem,constrainingSize: Size) -> Size
Retrieves the size of a rectangular area into which a control can be fit.
constrainingSize: The custom-sized area for a control.
Returns: A System.Drawing.Size ordered pair,representing the width and height of a rectangle.
"""
pass
def GetService(self, *args):
"""
GetService(self: Component,service: Type) -> object
Returns an object that represents a service provided by the System.ComponentModel.Component or
by its System.ComponentModel.Container.
service: A service provided by the System.ComponentModel.Component.
Returns: An System.Object that represents a service provided by the System.ComponentModel.Component,or
null if the System.ComponentModel.Component does not provide the specified service.
"""
pass
def Invalidate(self, r=None):
"""
Invalidate(self: ToolStripItem,r: Rectangle)
Invalidates the specified region of the System.Windows.Forms.ToolStripItem by adding it to the
update region of the System.Windows.Forms.ToolStripItem,which is the area that will be
repainted at the next paint operation,and causes a paint message to be sent to the
System.Windows.Forms.ToolStripItem.
r: A System.Drawing.Rectangle that represents the region to invalidate.
Invalidate(self: ToolStripItem)
Invalidates the entire surface of the System.Windows.Forms.ToolStripItem and causes it to be
redrawn.
"""
pass
def IsInputChar(self, *args):
"""
IsInputChar(self: ToolStripItem,charCode: Char) -> bool
Determines whether a character is an input character that the item recognizes.
charCode: The character to test.
Returns: true if the character should be sent directly to the item and not preprocessed; otherwise,false.
"""
pass
def IsInputKey(self, *args):
"""
IsInputKey(self: ToolStripItem,keyData: Keys) -> bool
Determines whether the specified key is a regular input key or a special key that requires
preprocessing.
keyData: One of the System.Windows.Forms.Keys values.
Returns: true if the specified key is a regular input key; otherwise,false.
"""
pass
def MemberwiseClone(self, *args):
"""
MemberwiseClone(self: MarshalByRefObject,cloneIdentity: bool) -> MarshalByRefObject
Creates a shallow copy of the current System.MarshalByRefObject object.
cloneIdentity: false to delete the current System.MarshalByRefObject object's identity,which will cause the
object to be assigned a new identity when it is marshaled across a remoting boundary. A value of
false is usually appropriate. true to copy the current System.MarshalByRefObject object's
identity to its clone,which will cause remoting client calls to be routed to the remote server
object.
Returns: A shallow copy of the current System.MarshalByRefObject object.
MemberwiseClone(self: object) -> object
Creates a shallow copy of the current System.Object.
Returns: A shallow copy of the current System.Object.
"""
pass
def OnAvailableChanged(self, *args):
"""
OnAvailableChanged(self: ToolStripItem,e: EventArgs)
Raises the AvailableChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnBackColorChanged(self, *args):
"""
OnBackColorChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.BackColorChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnBoundsChanged(self, *args):
"""
OnBoundsChanged(self: ToolStripItem)
Occurs when the System.Windows.Forms.ToolStripItem.Bounds property changes.
"""
pass
def OnClick(self, *args):
"""
OnClick(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.Click event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnDisplayStyleChanged(self, *args):
"""
OnDisplayStyleChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.DisplayStyleChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnDoubleClick(self, *args):
"""
OnDoubleClick(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.DoubleClick event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnDragDrop(self, *args):
"""
OnDragDrop(self: ToolStripItem,dragEvent: DragEventArgs)
Raises the System.Windows.Forms.ToolStripItem.DragDrop event.
dragEvent: A System.Windows.Forms.DragEventArgs that contains the event data.
"""
pass
def OnDragEnter(self, *args):
"""
OnDragEnter(self: ToolStripItem,dragEvent: DragEventArgs)
Raises the System.Windows.Forms.ToolStripItem.DragEnter event.
dragEvent: A System.Windows.Forms.DragEventArgs that contains the event data.
"""
pass
def OnDragLeave(self, *args):
"""
OnDragLeave(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.DragLeave event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnDragOver(self, *args):
"""
OnDragOver(self: ToolStripItem,dragEvent: DragEventArgs)
Raises the System.Windows.Forms.ToolStripItem.DragOver event.
dragEvent: A System.Windows.Forms.DragEventArgs that contains the event data.
"""
pass
def OnEnabledChanged(self, *args):
"""
OnEnabledChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.EnabledChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnFontChanged(self, *args):
"""
OnFontChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.Control.FontChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnForeColorChanged(self, *args):
"""
OnForeColorChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.ForeColorChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnGiveFeedback(self, *args):
"""
OnGiveFeedback(self: ToolStripItem,giveFeedbackEvent: GiveFeedbackEventArgs)
Raises the System.Windows.Forms.ToolStripItem.GiveFeedback event.
giveFeedbackEvent: A System.Windows.Forms.GiveFeedbackEventArgs that contains the event data.
"""
pass
def OnLayout(self, *args):
"""
OnLayout(self: ToolStripItem,e: LayoutEventArgs)
Raises the System.Windows.Forms.Control.Layout event.
e: A System.Windows.Forms.LayoutEventArgs that contains the event data.
"""
pass
def OnLocationChanged(self, *args):
"""
OnLocationChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.LocationChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnMouseDown(self, *args):
"""
OnMouseDown(self: ToolStripItem,e: MouseEventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseDown event.
e: A System.Windows.Forms.MouseEventArgs that contains the event data.
"""
pass
def OnMouseEnter(self, *args):
"""
OnMouseEnter(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseEnter event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnMouseHover(self, *args):
"""
OnMouseHover(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseHover event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnMouseLeave(self, *args):
"""
OnMouseLeave(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseLeave event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnMouseMove(self, *args):
"""
OnMouseMove(self: ToolStripItem,mea: MouseEventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseMove event.
mea: A System.Windows.Forms.MouseEventArgs that contains the event data.
"""
pass
def OnMouseUp(self, *args):
"""
OnMouseUp(self: ToolStripItem,e: MouseEventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseUp event.
e: A System.Windows.Forms.MouseEventArgs that contains the event data.
"""
pass
def OnOwnerChanged(self, *args):
"""
OnOwnerChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.OwnerChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnOwnerFontChanged(self, *args):
"""
OnOwnerFontChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.Control.FontChanged event when the
System.Windows.Forms.ToolStripItem.Font property has changed on the parent of the
System.Windows.Forms.ToolStripItem.
e: A System.EventArgs that contains the event data.
"""
pass
def OnPaint(self, *args):
"""
OnPaint(self: ToolStripItem,e: PaintEventArgs)
Raises the System.Windows.Forms.ToolStripItem.Paint event.
e: A System.Windows.Forms.PaintEventArgs that contains the event data.
"""
pass
def OnParentBackColorChanged(self, *args):
"""
OnParentBackColorChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.BackColorChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnParentChanged(self, *args):
"""
OnParentChanged(self: ToolStripItem,oldParent: ToolStrip,newParent: ToolStrip)
Raises the System.Windows.Forms.Control.ParentChanged event.
oldParent: The original parent of the item.
newParent: The new parent of the item.
"""
pass
def OnParentEnabledChanged(self, *args):
"""
OnParentEnabledChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.EnabledChanged event when the
System.Windows.Forms.ToolStripItem.Enabled property value of the item's container changes.
e: An System.EventArgs that contains the event data.
"""
pass
def OnParentForeColorChanged(self, *args):
"""
OnParentForeColorChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.ForeColorChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnParentRightToLeftChanged(self, *args):
"""
OnParentRightToLeftChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.RightToLeftChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnQueryContinueDrag(self, *args):
"""
OnQueryContinueDrag(self: ToolStripItem,queryContinueDragEvent: QueryContinueDragEventArgs)
Raises the System.Windows.Forms.ToolStripItem.QueryContinueDrag event.
queryContinueDragEvent: A System.Windows.Forms.QueryContinueDragEventArgs that contains the event data.
"""
pass
def OnRightToLeftChanged(self, *args):
"""
OnRightToLeftChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.RightToLeftChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnTextChanged(self, *args):
"""
OnTextChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.TextChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def OnVisibleChanged(self, *args):
"""
OnVisibleChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.VisibleChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def PerformClick(self):
"""
PerformClick(self: ToolStripItem)
Activates the System.Windows.Forms.ToolStripItem when it is clicked with the mouse.
"""
pass
def ProcessCmdKey(self, *args):
"""
ProcessCmdKey(self: ToolStripItem,m: Message,keyData: Keys) -> (bool,Message)
Processes a command key.
m: A System.Windows.Forms.Message,passed by reference,that represents the window message to
process.
keyData: One of the System.Windows.Forms.Keys values that represents the key to process.
Returns: false in all cases.
"""
pass
def ProcessDialogKey(self, *args):
"""
ProcessDialogKey(self: ToolStripItem,keyData: Keys) -> bool
Processes a dialog key.
keyData: One of the System.Windows.Forms.Keys values that represents the key to process.
Returns: true if the key was processed by the item; otherwise,false.
"""
pass
def ProcessMnemonic(self, *args):
"""
ProcessMnemonic(self: ToolStripItem,charCode: Char) -> bool
Processes a mnemonic character.
charCode: The character to process.
Returns: true in all cases.
"""
pass
def ResetBackColor(self):
"""
ResetBackColor(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def ResetDisplayStyle(self):
"""
ResetDisplayStyle(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def ResetFont(self):
"""
ResetFont(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def ResetForeColor(self):
"""
ResetForeColor(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def ResetImage(self):
"""
ResetImage(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def ResetMargin(self):
"""
ResetMargin(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def ResetPadding(self):
"""
ResetPadding(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def ResetRightToLeft(self):
"""
ResetRightToLeft(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def ResetTextDirection(self):
"""
ResetTextDirection(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def Select(self):
"""
Select(self: ToolStripItem)
Selects the item.
"""
pass
def SetBounds(self, *args):
"""
SetBounds(self: ToolStripItem,bounds: Rectangle)
Sets the size and location of the item.
bounds: A System.Drawing.Rectangle that represents the size and location of the
System.Windows.Forms.ToolStripItem
"""
pass
def SetVisibleCore(self, *args):
"""
SetVisibleCore(self: ToolStripItem,visible: bool)
Sets the System.Windows.Forms.ToolStripItem to the specified visible state.
visible: true to make the System.Windows.Forms.ToolStripItem visible; otherwise,false.
"""
pass
def ToString(self):
"""
ToString(self: ToolStripItem) -> str
Returns: A System.String containing the name of the System.ComponentModel.Component,if any,or null if
the System.ComponentModel.Component is unnamed.
"""
pass
def __enter__(self, *args):
"""
__enter__(self: IDisposable) -> object
Provides the implementation of __enter__ for objects which implement IDisposable.
"""
pass
def __exit__(self, *args):
"""
__exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object)
Provides the implementation of __exit__ for objects which implement IDisposable.
"""
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
@staticmethod
def __new__(self, *args): # cannot find CLR constructor
"""
__new__(cls: type)
__new__(cls: type,text: str,image: Image,onClick: EventHandler)
__new__(cls: type,text: str,image: Image,onClick: EventHandler,name: str)
"""
pass
def __str__(self, *args):
pass
AccessibilityObject = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets the System.Windows.Forms.AccessibleObject assigned to the control.
Get: AccessibilityObject(self: ToolStripItem) -> AccessibleObject
"""
AccessibleDefaultActionDescription = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the default action description of the control for use by accessibility client applications.
Get: AccessibleDefaultActionDescription(self: ToolStripItem) -> str
Set: AccessibleDefaultActionDescription(self: ToolStripItem)=value
"""
AccessibleDescription = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the description that will be reported to accessibility client applications.
Get: AccessibleDescription(self: ToolStripItem) -> str
Set: AccessibleDescription(self: ToolStripItem)=value
"""
AccessibleName = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the name of the control for use by accessibility client applications.
Get: AccessibleName(self: ToolStripItem) -> str
Set: AccessibleName(self: ToolStripItem)=value
"""
AccessibleRole = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the accessible role of the control,which specifies the type of user interface element of the control.
Get: AccessibleRole(self: ToolStripItem) -> AccessibleRole
Set: AccessibleRole(self: ToolStripItem)=value
"""
Alignment = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets a value indicating whether the item aligns towards the beginning or end of the System.Windows.Forms.ToolStrip.
Get: Alignment(self: ToolStripItem) -> ToolStripItemAlignment
Set: Alignment(self: ToolStripItem)=value
"""
AllowDrop = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets a value indicating whether drag-and-drop and item reordering are handled through events that you implement.
Get: AllowDrop(self: ToolStripItem) -> bool
Set: AllowDrop(self: ToolStripItem)=value
"""
Anchor = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the edges of the container to which a System.Windows.Forms.ToolStripItem is bound and determines how a System.Windows.Forms.ToolStripItem is resized with its parent.
Get: Anchor(self: ToolStripItem) -> AnchorStyles
Set: Anchor(self: ToolStripItem)=value
"""
AutoSize = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets a value indicating whether the item is automatically sized.
Get: AutoSize(self: ToolStripItem) -> bool
Set: AutoSize(self: ToolStripItem)=value
"""
AutoToolTip = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets a value indicating whether to use the System.Windows.Forms.ToolStripItem.Text property or the System.Windows.Forms.ToolStripItem.ToolTipText property for the System.Windows.Forms.ToolStripItem ToolTip.
Get: AutoToolTip(self: ToolStripItem) -> bool
Set: AutoToolTip(self: ToolStripItem)=value
"""
Available = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets a value indicating whether the System.Windows.Forms.ToolStripItem should be placed on a System.Windows.Forms.ToolStrip.
Get: Available(self: ToolStripItem) -> bool
Set: Available(self: ToolStripItem)=value
"""
BackColor = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the background color for the item.
Get: BackColor(self: ToolStripItem) -> Color
Set: BackColor(self: ToolStripItem)=value
"""
BackgroundImage = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the background image displayed in the item.
Get: BackgroundImage(self: ToolStripItem) -> Image
Set: BackgroundImage(self: ToolStripItem)=value
"""
BackgroundImageLayout = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the background image layout used for the System.Windows.Forms.ToolStripItem.
Get: BackgroundImageLayout(self: ToolStripItem) -> ImageLayout
Set: BackgroundImageLayout(self: ToolStripItem)=value
"""
Bounds = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets the size and location of the item.
Get: Bounds(self: ToolStripItem) -> Rectangle
"""
CanRaiseEvents = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets a value indicating whether the component can raise an event.
"""
CanSelect = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets a value indicating whether the item can be selected.
Get: CanSelect(self: ToolStripItem) -> bool
"""
ContentRectangle = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets the area where content,such as text and icons,can be placed within a System.Windows.Forms.ToolStripItem without overwriting background borders.
Get: ContentRectangle(self: ToolStripItem) -> Rectangle
"""
DefaultAutoToolTip = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets a value indicating whether to display the System.Windows.Forms.ToolTip that is defined as the default.
"""
DefaultDisplayStyle = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets a value indicating what is displayed on the System.Windows.Forms.ToolStripItem.
"""
DefaultMargin = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets the default margin of an item.
"""
DefaultPadding = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets the internal spacing characteristics of the item.
"""
DefaultSize = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets the default size of the item.
"""
DesignMode = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets a value that indicates whether the System.ComponentModel.Component is currently in design mode.
"""
DismissWhenClicked = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets a value indicating whether items on a System.Windows.Forms.ToolStripDropDown are hidden after they are clicked.
"""
DisplayStyle = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets whether text and images are displayed on a System.Windows.Forms.ToolStripItem.
Get: DisplayStyle(self: ToolStripItem) -> ToolStripItemDisplayStyle
Set: DisplayStyle(self: ToolStripItem)=value
"""
Dock = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets which System.Windows.Forms.ToolStripItem borders are docked to its parent control and determines how a System.Windows.Forms.ToolStripItem is resized with its parent.
Get: Dock(self: ToolStripItem) -> DockStyle
Set: Dock(self: ToolStripItem)=value
"""
DoubleClickEnabled = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets a value indicating whether the System.Windows.Forms.ToolStripItem can be activated by double-clicking the mouse.
Get: DoubleClickEnabled(self: ToolStripItem) -> bool
Set: DoubleClickEnabled(self: ToolStripItem)=value
"""
Enabled = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets a value indicating whether the parent control of the System.Windows.Forms.ToolStripItem is enabled.
Get: Enabled(self: ToolStripItem) -> bool
Set: Enabled(self: ToolStripItem)=value
"""
Events = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets the list of event handlers that are attached to this System.ComponentModel.Component.
"""
Font = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the font of the text displayed by the item.
Get: Font(self: ToolStripItem) -> Font
Set: Font(self: ToolStripItem)=value
"""
ForeColor = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the foreground color of the item.
Get: ForeColor(self: ToolStripItem) -> Color
Set: ForeColor(self: ToolStripItem)=value
"""
Height = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the height,in pixels,of a System.Windows.Forms.ToolStripItem.
Get: Height(self: ToolStripItem) -> int
Set: Height(self: ToolStripItem)=value
"""
Image = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the image that is displayed on a System.Windows.Forms.ToolStripItem.
Get: Image(self: ToolStripItem) -> Image
Set: Image(self: ToolStripItem)=value
"""
ImageAlign = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the alignment of the image on a System.Windows.Forms.ToolStripItem.
Get: ImageAlign(self: ToolStripItem) -> ContentAlignment
Set: ImageAlign(self: ToolStripItem)=value
"""
ImageIndex = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the index value of the image that is displayed on the item.
Get: ImageIndex(self: ToolStripItem) -> int
Set: ImageIndex(self: ToolStripItem)=value
"""
ImageKey = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the key accessor for the image in the System.Windows.Forms.ToolStrip.ImageList that is displayed on a System.Windows.Forms.ToolStripItem.
Get: ImageKey(self: ToolStripItem) -> str
Set: ImageKey(self: ToolStripItem)=value
"""
ImageScaling = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets a value indicating whether an image on a System.Windows.Forms.ToolStripItem is automatically resized to fit in a container.
Get: ImageScaling(self: ToolStripItem) -> ToolStripItemImageScaling
Set: ImageScaling(self: ToolStripItem)=value
"""
ImageTransparentColor = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the color to treat as transparent in a System.Windows.Forms.ToolStripItem image.
Get: ImageTransparentColor(self: ToolStripItem) -> Color
Set: ImageTransparentColor(self: ToolStripItem)=value
"""
IsDisposed = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets a value indicating whether the object has been disposed of.
Get: IsDisposed(self: ToolStripItem) -> bool
"""
IsOnDropDown = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets a value indicating whether the container of the current System.Windows.Forms.Control is a System.Windows.Forms.ToolStripDropDown.
Get: IsOnDropDown(self: ToolStripItem) -> bool
"""
IsOnOverflow = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets a value indicating whether the System.Windows.Forms.ToolStripItem.Placement property is set to System.Windows.Forms.ToolStripItemPlacement.Overflow.
Get: IsOnOverflow(self: ToolStripItem) -> bool
"""
Margin = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the space between the item and adjacent items.
Get: Margin(self: ToolStripItem) -> Padding
Set: Margin(self: ToolStripItem)=value
"""
MergeAction = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets how child menus are merged with parent menus.
Get: MergeAction(self: ToolStripItem) -> MergeAction
Set: MergeAction(self: ToolStripItem)=value
"""
MergeIndex = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the position of a merged item within the current System.Windows.Forms.ToolStrip.
Get: MergeIndex(self: ToolStripItem) -> int
Set: MergeIndex(self: ToolStripItem)=value
"""
Name = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the name of the item.
Get: Name(self: ToolStripItem) -> str
Set: Name(self: ToolStripItem)=value
"""
Overflow = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets whether the item is attached to the System.Windows.Forms.ToolStrip or System.Windows.Forms.ToolStripOverflowButton or can float between the two.
Get: Overflow(self: ToolStripItem) -> ToolStripItemOverflow
Set: Overflow(self: ToolStripItem)=value
"""
Owner = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the owner of this item.
Get: Owner(self: ToolStripItem) -> ToolStrip
Set: Owner(self: ToolStripItem)=value
"""
OwnerItem = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets the parent System.Windows.Forms.ToolStripItem of this System.Windows.Forms.ToolStripItem.
Get: OwnerItem(self: ToolStripItem) -> ToolStripItem
"""
Padding = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the internal spacing,in pixels,between the item's contents and its edges.
Get: Padding(self: ToolStripItem) -> Padding
Set: Padding(self: ToolStripItem)=value
"""
Parent = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the parent container of the System.Windows.Forms.ToolStripItem.
"""
Placement = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets the current layout of the item.
Get: Placement(self: ToolStripItem) -> ToolStripItemPlacement
"""
Pressed = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets a value indicating whether the state of the item is pressed.
Get: Pressed(self: ToolStripItem) -> bool
"""
RightToLeft = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets a value indicating whether items are to be placed from right to left and text is to be written from right to left.
Get: RightToLeft(self: ToolStripItem) -> RightToLeft
Set: RightToLeft(self: ToolStripItem)=value
"""
RightToLeftAutoMirrorImage = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Mirrors automatically the System.Windows.Forms.ToolStripItem image when the System.Windows.Forms.ToolStripItem.RightToLeft property is set to System.Windows.Forms.RightToLeft.Yes.
Get: RightToLeftAutoMirrorImage(self: ToolStripItem) -> bool
Set: RightToLeftAutoMirrorImage(self: ToolStripItem)=value
"""
Selected = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets a value indicating whether the item is selected.
Get: Selected(self: ToolStripItem) -> bool
"""
ShowKeyboardCues = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets a value indicating whether to show or hide shortcut keys.
"""
Size = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the size of the item.
Get: Size(self: ToolStripItem) -> Size
Set: Size(self: ToolStripItem)=value
"""
Tag = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the object that contains data about the item.
Get: Tag(self: ToolStripItem) -> object
Set: Tag(self: ToolStripItem)=value
"""
Text = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the text that is to be displayed on the item.
Get: Text(self: ToolStripItem) -> str
Set: Text(self: ToolStripItem)=value
"""
TextAlign = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the alignment of the text on a System.Windows.Forms.ToolStripLabel.
Get: TextAlign(self: ToolStripItem) -> ContentAlignment
Set: TextAlign(self: ToolStripItem)=value
"""
TextDirection = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets the orientation of text used on a System.Windows.Forms.ToolStripItem.
Get: TextDirection(self: ToolStripItem) -> ToolStripTextDirection
Set: TextDirection(self: ToolStripItem)=value
"""
TextImageRelation = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the position of System.Windows.Forms.ToolStripItem text and image relative to each other.
Get: TextImageRelation(self: ToolStripItem) -> TextImageRelation
Set: TextImageRelation(self: ToolStripItem)=value
"""
ToolTipText = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the text that appears as a System.Windows.Forms.ToolTip for a control.
Get: ToolTipText(self: ToolStripItem) -> str
Set: ToolTipText(self: ToolStripItem)=value
"""
Visible = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets a value indicating whether the item is displayed.
Get: Visible(self: ToolStripItem) -> bool
Set: Visible(self: ToolStripItem)=value
"""
Width = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the width in pixels of a System.Windows.Forms.ToolStripItem.
Get: Width(self: ToolStripItem) -> int
Set: Width(self: ToolStripItem)=value
"""
AvailableChanged = None
BackColorChanged = None
Click = None
DisplayStyleChanged = None
DoubleClick = None
DragDrop = None
DragEnter = None
DragLeave = None
DragOver = None
EnabledChanged = None
ForeColorChanged = None
GiveFeedback = None
LocationChanged = None
MouseDown = None
MouseEnter = None
MouseHover = None
MouseLeave = None
MouseMove = None
MouseUp = None
OwnerChanged = None
Paint = None
QueryAccessibilityHelp = None
QueryContinueDrag = None
RightToLeftChanged = None
TextChanged = None
ToolStripItemAccessibleObject = None
VisibleChanged = None
| class Toolstripitem(Component, IComponent, IDisposable, IDropTarget, ISupportOleDropSource, IArrangedElement):
""" Represents the abstract base class that manages events and layout for all the elements that a System.Windows.Forms.ToolStrip or System.Windows.Forms.ToolStripDropDown can contain. """
def create_accessibility_instance(self, *args):
"""
CreateAccessibilityInstance(self: ToolStripItem) -> AccessibleObject
Creates a new accessibility object for the System.Windows.Forms.ToolStripItem.
Returns: A new System.Windows.Forms.AccessibleObject for the System.Windows.Forms.ToolStripItem.
"""
pass
def dispose(self):
"""
Dispose(self: ToolStripItem,disposing: bool)
Releases the unmanaged resources used by the System.Windows.Forms.ToolStripItem and optionally
releases the managed resources.
disposing: true to release both managed and unmanaged resources; false to release only unmanaged resources.
"""
pass
def do_drag_drop(self, data, allowedEffects):
"""
DoDragDrop(self: ToolStripItem,data: object,allowedEffects: DragDropEffects) -> DragDropEffects
Begins a drag-and-drop operation.
data: The object to be dragged.
allowedEffects: The drag operations that can occur.
Returns: One of the System.Windows.Forms.DragDropEffects values.
"""
pass
def get_current_parent(self):
"""
GetCurrentParent(self: ToolStripItem) -> ToolStrip
Retrieves the System.Windows.Forms.ToolStrip that is the container of the current
System.Windows.Forms.ToolStripItem.
Returns: A System.Windows.Forms.ToolStrip that is the container of the current
System.Windows.Forms.ToolStripItem.
"""
pass
def get_preferred_size(self, constrainingSize):
"""
GetPreferredSize(self: ToolStripItem,constrainingSize: Size) -> Size
Retrieves the size of a rectangular area into which a control can be fit.
constrainingSize: The custom-sized area for a control.
Returns: A System.Drawing.Size ordered pair,representing the width and height of a rectangle.
"""
pass
def get_service(self, *args):
"""
GetService(self: Component,service: Type) -> object
Returns an object that represents a service provided by the System.ComponentModel.Component or
by its System.ComponentModel.Container.
service: A service provided by the System.ComponentModel.Component.
Returns: An System.Object that represents a service provided by the System.ComponentModel.Component,or
null if the System.ComponentModel.Component does not provide the specified service.
"""
pass
def invalidate(self, r=None):
"""
Invalidate(self: ToolStripItem,r: Rectangle)
Invalidates the specified region of the System.Windows.Forms.ToolStripItem by adding it to the
update region of the System.Windows.Forms.ToolStripItem,which is the area that will be
repainted at the next paint operation,and causes a paint message to be sent to the
System.Windows.Forms.ToolStripItem.
r: A System.Drawing.Rectangle that represents the region to invalidate.
Invalidate(self: ToolStripItem)
Invalidates the entire surface of the System.Windows.Forms.ToolStripItem and causes it to be
redrawn.
"""
pass
def is_input_char(self, *args):
"""
IsInputChar(self: ToolStripItem,charCode: Char) -> bool
Determines whether a character is an input character that the item recognizes.
charCode: The character to test.
Returns: true if the character should be sent directly to the item and not preprocessed; otherwise,false.
"""
pass
def is_input_key(self, *args):
"""
IsInputKey(self: ToolStripItem,keyData: Keys) -> bool
Determines whether the specified key is a regular input key or a special key that requires
preprocessing.
keyData: One of the System.Windows.Forms.Keys values.
Returns: true if the specified key is a regular input key; otherwise,false.
"""
pass
def memberwise_clone(self, *args):
"""
MemberwiseClone(self: MarshalByRefObject,cloneIdentity: bool) -> MarshalByRefObject
Creates a shallow copy of the current System.MarshalByRefObject object.
cloneIdentity: false to delete the current System.MarshalByRefObject object's identity,which will cause the
object to be assigned a new identity when it is marshaled across a remoting boundary. A value of
false is usually appropriate. true to copy the current System.MarshalByRefObject object's
identity to its clone,which will cause remoting client calls to be routed to the remote server
object.
Returns: A shallow copy of the current System.MarshalByRefObject object.
MemberwiseClone(self: object) -> object
Creates a shallow copy of the current System.Object.
Returns: A shallow copy of the current System.Object.
"""
pass
def on_available_changed(self, *args):
"""
OnAvailableChanged(self: ToolStripItem,e: EventArgs)
Raises the AvailableChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_back_color_changed(self, *args):
"""
OnBackColorChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.BackColorChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_bounds_changed(self, *args):
"""
OnBoundsChanged(self: ToolStripItem)
Occurs when the System.Windows.Forms.ToolStripItem.Bounds property changes.
"""
pass
def on_click(self, *args):
"""
OnClick(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.Click event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_display_style_changed(self, *args):
"""
OnDisplayStyleChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.DisplayStyleChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_double_click(self, *args):
"""
OnDoubleClick(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.DoubleClick event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_drag_drop(self, *args):
"""
OnDragDrop(self: ToolStripItem,dragEvent: DragEventArgs)
Raises the System.Windows.Forms.ToolStripItem.DragDrop event.
dragEvent: A System.Windows.Forms.DragEventArgs that contains the event data.
"""
pass
def on_drag_enter(self, *args):
"""
OnDragEnter(self: ToolStripItem,dragEvent: DragEventArgs)
Raises the System.Windows.Forms.ToolStripItem.DragEnter event.
dragEvent: A System.Windows.Forms.DragEventArgs that contains the event data.
"""
pass
def on_drag_leave(self, *args):
"""
OnDragLeave(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.DragLeave event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_drag_over(self, *args):
"""
OnDragOver(self: ToolStripItem,dragEvent: DragEventArgs)
Raises the System.Windows.Forms.ToolStripItem.DragOver event.
dragEvent: A System.Windows.Forms.DragEventArgs that contains the event data.
"""
pass
def on_enabled_changed(self, *args):
"""
OnEnabledChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.EnabledChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_font_changed(self, *args):
"""
OnFontChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.Control.FontChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_fore_color_changed(self, *args):
"""
OnForeColorChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.ForeColorChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_give_feedback(self, *args):
"""
OnGiveFeedback(self: ToolStripItem,giveFeedbackEvent: GiveFeedbackEventArgs)
Raises the System.Windows.Forms.ToolStripItem.GiveFeedback event.
giveFeedbackEvent: A System.Windows.Forms.GiveFeedbackEventArgs that contains the event data.
"""
pass
def on_layout(self, *args):
"""
OnLayout(self: ToolStripItem,e: LayoutEventArgs)
Raises the System.Windows.Forms.Control.Layout event.
e: A System.Windows.Forms.LayoutEventArgs that contains the event data.
"""
pass
def on_location_changed(self, *args):
"""
OnLocationChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.LocationChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_mouse_down(self, *args):
"""
OnMouseDown(self: ToolStripItem,e: MouseEventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseDown event.
e: A System.Windows.Forms.MouseEventArgs that contains the event data.
"""
pass
def on_mouse_enter(self, *args):
"""
OnMouseEnter(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseEnter event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_mouse_hover(self, *args):
"""
OnMouseHover(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseHover event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_mouse_leave(self, *args):
"""
OnMouseLeave(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseLeave event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_mouse_move(self, *args):
"""
OnMouseMove(self: ToolStripItem,mea: MouseEventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseMove event.
mea: A System.Windows.Forms.MouseEventArgs that contains the event data.
"""
pass
def on_mouse_up(self, *args):
"""
OnMouseUp(self: ToolStripItem,e: MouseEventArgs)
Raises the System.Windows.Forms.ToolStripItem.MouseUp event.
e: A System.Windows.Forms.MouseEventArgs that contains the event data.
"""
pass
def on_owner_changed(self, *args):
"""
OnOwnerChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.OwnerChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_owner_font_changed(self, *args):
"""
OnOwnerFontChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.Control.FontChanged event when the
System.Windows.Forms.ToolStripItem.Font property has changed on the parent of the
System.Windows.Forms.ToolStripItem.
e: A System.EventArgs that contains the event data.
"""
pass
def on_paint(self, *args):
"""
OnPaint(self: ToolStripItem,e: PaintEventArgs)
Raises the System.Windows.Forms.ToolStripItem.Paint event.
e: A System.Windows.Forms.PaintEventArgs that contains the event data.
"""
pass
def on_parent_back_color_changed(self, *args):
"""
OnParentBackColorChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.BackColorChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_parent_changed(self, *args):
"""
OnParentChanged(self: ToolStripItem,oldParent: ToolStrip,newParent: ToolStrip)
Raises the System.Windows.Forms.Control.ParentChanged event.
oldParent: The original parent of the item.
newParent: The new parent of the item.
"""
pass
def on_parent_enabled_changed(self, *args):
"""
OnParentEnabledChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.EnabledChanged event when the
System.Windows.Forms.ToolStripItem.Enabled property value of the item's container changes.
e: An System.EventArgs that contains the event data.
"""
pass
def on_parent_fore_color_changed(self, *args):
"""
OnParentForeColorChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.ForeColorChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_parent_right_to_left_changed(self, *args):
"""
OnParentRightToLeftChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.RightToLeftChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_query_continue_drag(self, *args):
"""
OnQueryContinueDrag(self: ToolStripItem,queryContinueDragEvent: QueryContinueDragEventArgs)
Raises the System.Windows.Forms.ToolStripItem.QueryContinueDrag event.
queryContinueDragEvent: A System.Windows.Forms.QueryContinueDragEventArgs that contains the event data.
"""
pass
def on_right_to_left_changed(self, *args):
"""
OnRightToLeftChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.RightToLeftChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_text_changed(self, *args):
"""
OnTextChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.TextChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def on_visible_changed(self, *args):
"""
OnVisibleChanged(self: ToolStripItem,e: EventArgs)
Raises the System.Windows.Forms.ToolStripItem.VisibleChanged event.
e: An System.EventArgs that contains the event data.
"""
pass
def perform_click(self):
"""
PerformClick(self: ToolStripItem)
Activates the System.Windows.Forms.ToolStripItem when it is clicked with the mouse.
"""
pass
def process_cmd_key(self, *args):
"""
ProcessCmdKey(self: ToolStripItem,m: Message,keyData: Keys) -> (bool,Message)
Processes a command key.
m: A System.Windows.Forms.Message,passed by reference,that represents the window message to
process.
keyData: One of the System.Windows.Forms.Keys values that represents the key to process.
Returns: false in all cases.
"""
pass
def process_dialog_key(self, *args):
"""
ProcessDialogKey(self: ToolStripItem,keyData: Keys) -> bool
Processes a dialog key.
keyData: One of the System.Windows.Forms.Keys values that represents the key to process.
Returns: true if the key was processed by the item; otherwise,false.
"""
pass
def process_mnemonic(self, *args):
"""
ProcessMnemonic(self: ToolStripItem,charCode: Char) -> bool
Processes a mnemonic character.
charCode: The character to process.
Returns: true in all cases.
"""
pass
def reset_back_color(self):
"""
ResetBackColor(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def reset_display_style(self):
"""
ResetDisplayStyle(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def reset_font(self):
"""
ResetFont(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def reset_fore_color(self):
"""
ResetForeColor(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def reset_image(self):
"""
ResetImage(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def reset_margin(self):
"""
ResetMargin(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def reset_padding(self):
"""
ResetPadding(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def reset_right_to_left(self):
"""
ResetRightToLeft(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def reset_text_direction(self):
"""
ResetTextDirection(self: ToolStripItem)
This method is not relevant to this class.
"""
pass
def select(self):
"""
Select(self: ToolStripItem)
Selects the item.
"""
pass
def set_bounds(self, *args):
"""
SetBounds(self: ToolStripItem,bounds: Rectangle)
Sets the size and location of the item.
bounds: A System.Drawing.Rectangle that represents the size and location of the
System.Windows.Forms.ToolStripItem
"""
pass
def set_visible_core(self, *args):
"""
SetVisibleCore(self: ToolStripItem,visible: bool)
Sets the System.Windows.Forms.ToolStripItem to the specified visible state.
visible: true to make the System.Windows.Forms.ToolStripItem visible; otherwise,false.
"""
pass
def to_string(self):
"""
ToString(self: ToolStripItem) -> str
Returns: A System.String containing the name of the System.ComponentModel.Component,if any,or null if
the System.ComponentModel.Component is unnamed.
"""
pass
def __enter__(self, *args):
"""
__enter__(self: IDisposable) -> object
Provides the implementation of __enter__ for objects which implement IDisposable.
"""
pass
def __exit__(self, *args):
"""
__exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object)
Provides the implementation of __exit__ for objects which implement IDisposable.
"""
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
@staticmethod
def __new__(self, *args):
"""
__new__(cls: type)
__new__(cls: type,text: str,image: Image,onClick: EventHandler)
__new__(cls: type,text: str,image: Image,onClick: EventHandler,name: str)
"""
pass
def __str__(self, *args):
pass
accessibility_object = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the System.Windows.Forms.AccessibleObject assigned to the control.\n\n\n\nGet: AccessibilityObject(self: ToolStripItem) -> AccessibleObject\n\n\n\n'
accessible_default_action_description = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the default action description of the control for use by accessibility client applications.\n\n\n\nGet: AccessibleDefaultActionDescription(self: ToolStripItem) -> str\n\n\n\nSet: AccessibleDefaultActionDescription(self: ToolStripItem)=value\n\n'
accessible_description = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the description that will be reported to accessibility client applications.\n\n\n\nGet: AccessibleDescription(self: ToolStripItem) -> str\n\n\n\nSet: AccessibleDescription(self: ToolStripItem)=value\n\n'
accessible_name = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the name of the control for use by accessibility client applications.\n\n\n\nGet: AccessibleName(self: ToolStripItem) -> str\n\n\n\nSet: AccessibleName(self: ToolStripItem)=value\n\n'
accessible_role = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the accessible role of the control,which specifies the type of user interface element of the control.\n\n\n\nGet: AccessibleRole(self: ToolStripItem) -> AccessibleRole\n\n\n\nSet: AccessibleRole(self: ToolStripItem)=value\n\n'
alignment = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether the item aligns towards the beginning or end of the System.Windows.Forms.ToolStrip.\n\n\n\nGet: Alignment(self: ToolStripItem) -> ToolStripItemAlignment\n\n\n\nSet: Alignment(self: ToolStripItem)=value\n\n'
allow_drop = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether drag-and-drop and item reordering are handled through events that you implement.\n\n\n\nGet: AllowDrop(self: ToolStripItem) -> bool\n\n\n\nSet: AllowDrop(self: ToolStripItem)=value\n\n'
anchor = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the edges of the container to which a System.Windows.Forms.ToolStripItem is bound and determines how a System.Windows.Forms.ToolStripItem is resized with its parent.\n\n\n\nGet: Anchor(self: ToolStripItem) -> AnchorStyles\n\n\n\nSet: Anchor(self: ToolStripItem)=value\n\n'
auto_size = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether the item is automatically sized.\n\n\n\nGet: AutoSize(self: ToolStripItem) -> bool\n\n\n\nSet: AutoSize(self: ToolStripItem)=value\n\n'
auto_tool_tip = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether to use the System.Windows.Forms.ToolStripItem.Text property or the System.Windows.Forms.ToolStripItem.ToolTipText property for the System.Windows.Forms.ToolStripItem ToolTip.\n\n\n\nGet: AutoToolTip(self: ToolStripItem) -> bool\n\n\n\nSet: AutoToolTip(self: ToolStripItem)=value\n\n'
available = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether the System.Windows.Forms.ToolStripItem should be placed on a System.Windows.Forms.ToolStrip.\n\n\n\nGet: Available(self: ToolStripItem) -> bool\n\n\n\nSet: Available(self: ToolStripItem)=value\n\n'
back_color = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the background color for the item.\n\n\n\nGet: BackColor(self: ToolStripItem) -> Color\n\n\n\nSet: BackColor(self: ToolStripItem)=value\n\n'
background_image = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the background image displayed in the item.\n\n\n\nGet: BackgroundImage(self: ToolStripItem) -> Image\n\n\n\nSet: BackgroundImage(self: ToolStripItem)=value\n\n'
background_image_layout = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the background image layout used for the System.Windows.Forms.ToolStripItem.\n\n\n\nGet: BackgroundImageLayout(self: ToolStripItem) -> ImageLayout\n\n\n\nSet: BackgroundImageLayout(self: ToolStripItem)=value\n\n'
bounds = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the size and location of the item.\n\n\n\nGet: Bounds(self: ToolStripItem) -> Rectangle\n\n\n\n'
can_raise_events = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether the component can raise an event.\n\n\n\n'
can_select = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether the item can be selected.\n\n\n\nGet: CanSelect(self: ToolStripItem) -> bool\n\n\n\n'
content_rectangle = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the area where content,such as text and icons,can be placed within a System.Windows.Forms.ToolStripItem without overwriting background borders.\n\n\n\nGet: ContentRectangle(self: ToolStripItem) -> Rectangle\n\n\n\n'
default_auto_tool_tip = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether to display the System.Windows.Forms.ToolTip that is defined as the default.\n\n\n\n'
default_display_style = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating what is displayed on the System.Windows.Forms.ToolStripItem.\n\n\n\n'
default_margin = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the default margin of an item.\n\n\n\n'
default_padding = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the internal spacing characteristics of the item.\n\n\n\n'
default_size = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the default size of the item.\n\n\n\n'
design_mode = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value that indicates whether the System.ComponentModel.Component is currently in design mode.\n\n\n\n'
dismiss_when_clicked = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether items on a System.Windows.Forms.ToolStripDropDown are hidden after they are clicked.\n\n\n\n'
display_style = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets whether text and images are displayed on a System.Windows.Forms.ToolStripItem.\n\n\n\nGet: DisplayStyle(self: ToolStripItem) -> ToolStripItemDisplayStyle\n\n\n\nSet: DisplayStyle(self: ToolStripItem)=value\n\n'
dock = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets which System.Windows.Forms.ToolStripItem borders are docked to its parent control and determines how a System.Windows.Forms.ToolStripItem is resized with its parent.\n\n\n\nGet: Dock(self: ToolStripItem) -> DockStyle\n\n\n\nSet: Dock(self: ToolStripItem)=value\n\n'
double_click_enabled = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether the System.Windows.Forms.ToolStripItem can be activated by double-clicking the mouse.\n\n\n\nGet: DoubleClickEnabled(self: ToolStripItem) -> bool\n\n\n\nSet: DoubleClickEnabled(self: ToolStripItem)=value\n\n'
enabled = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether the parent control of the System.Windows.Forms.ToolStripItem is enabled.\n\n\n\nGet: Enabled(self: ToolStripItem) -> bool\n\n\n\nSet: Enabled(self: ToolStripItem)=value\n\n'
events = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the list of event handlers that are attached to this System.ComponentModel.Component.\n\n\n\n'
font = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the font of the text displayed by the item.\n\n\n\nGet: Font(self: ToolStripItem) -> Font\n\n\n\nSet: Font(self: ToolStripItem)=value\n\n'
fore_color = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the foreground color of the item.\n\n\n\nGet: ForeColor(self: ToolStripItem) -> Color\n\n\n\nSet: ForeColor(self: ToolStripItem)=value\n\n'
height = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the height,in pixels,of a System.Windows.Forms.ToolStripItem.\n\n\n\nGet: Height(self: ToolStripItem) -> int\n\n\n\nSet: Height(self: ToolStripItem)=value\n\n'
image = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the image that is displayed on a System.Windows.Forms.ToolStripItem.\n\n\n\nGet: Image(self: ToolStripItem) -> Image\n\n\n\nSet: Image(self: ToolStripItem)=value\n\n'
image_align = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the alignment of the image on a System.Windows.Forms.ToolStripItem.\n\n\n\nGet: ImageAlign(self: ToolStripItem) -> ContentAlignment\n\n\n\nSet: ImageAlign(self: ToolStripItem)=value\n\n'
image_index = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the index value of the image that is displayed on the item.\n\n\n\nGet: ImageIndex(self: ToolStripItem) -> int\n\n\n\nSet: ImageIndex(self: ToolStripItem)=value\n\n'
image_key = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the key accessor for the image in the System.Windows.Forms.ToolStrip.ImageList that is displayed on a System.Windows.Forms.ToolStripItem.\n\n\n\nGet: ImageKey(self: ToolStripItem) -> str\n\n\n\nSet: ImageKey(self: ToolStripItem)=value\n\n'
image_scaling = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether an image on a System.Windows.Forms.ToolStripItem is automatically resized to fit in a container.\n\n\n\nGet: ImageScaling(self: ToolStripItem) -> ToolStripItemImageScaling\n\n\n\nSet: ImageScaling(self: ToolStripItem)=value\n\n'
image_transparent_color = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the color to treat as transparent in a System.Windows.Forms.ToolStripItem image.\n\n\n\nGet: ImageTransparentColor(self: ToolStripItem) -> Color\n\n\n\nSet: ImageTransparentColor(self: ToolStripItem)=value\n\n'
is_disposed = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether the object has been disposed of.\n\n\n\nGet: IsDisposed(self: ToolStripItem) -> bool\n\n\n\n'
is_on_drop_down = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether the container of the current System.Windows.Forms.Control is a System.Windows.Forms.ToolStripDropDown.\n\n\n\nGet: IsOnDropDown(self: ToolStripItem) -> bool\n\n\n\n'
is_on_overflow = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether the System.Windows.Forms.ToolStripItem.Placement property is set to System.Windows.Forms.ToolStripItemPlacement.Overflow.\n\n\n\nGet: IsOnOverflow(self: ToolStripItem) -> bool\n\n\n\n'
margin = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the space between the item and adjacent items.\n\n\n\nGet: Margin(self: ToolStripItem) -> Padding\n\n\n\nSet: Margin(self: ToolStripItem)=value\n\n'
merge_action = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets how child menus are merged with parent menus.\n\n\n\nGet: MergeAction(self: ToolStripItem) -> MergeAction\n\n\n\nSet: MergeAction(self: ToolStripItem)=value\n\n'
merge_index = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the position of a merged item within the current System.Windows.Forms.ToolStrip.\n\n\n\nGet: MergeIndex(self: ToolStripItem) -> int\n\n\n\nSet: MergeIndex(self: ToolStripItem)=value\n\n'
name = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the name of the item.\n\n\n\nGet: Name(self: ToolStripItem) -> str\n\n\n\nSet: Name(self: ToolStripItem)=value\n\n'
overflow = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets whether the item is attached to the System.Windows.Forms.ToolStrip or System.Windows.Forms.ToolStripOverflowButton or can float between the two.\n\n\n\nGet: Overflow(self: ToolStripItem) -> ToolStripItemOverflow\n\n\n\nSet: Overflow(self: ToolStripItem)=value\n\n'
owner = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the owner of this item.\n\n\n\nGet: Owner(self: ToolStripItem) -> ToolStrip\n\n\n\nSet: Owner(self: ToolStripItem)=value\n\n'
owner_item = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the parent System.Windows.Forms.ToolStripItem of this System.Windows.Forms.ToolStripItem.\n\n\n\nGet: OwnerItem(self: ToolStripItem) -> ToolStripItem\n\n\n\n'
padding = property(lambda self: object(), lambda self, v: None, lambda self: None)
"Gets or sets the internal spacing,in pixels,between the item's contents and its edges.\n\n\n\nGet: Padding(self: ToolStripItem) -> Padding\n\n\n\nSet: Padding(self: ToolStripItem)=value\n\n"
parent = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the parent container of the System.Windows.Forms.ToolStripItem.\n\n\n\n'
placement = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the current layout of the item.\n\n\n\nGet: Placement(self: ToolStripItem) -> ToolStripItemPlacement\n\n\n\n'
pressed = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether the state of the item is pressed.\n\n\n\nGet: Pressed(self: ToolStripItem) -> bool\n\n\n\n'
right_to_left = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether items are to be placed from right to left and text is to be written from right to left.\n\n\n\nGet: RightToLeft(self: ToolStripItem) -> RightToLeft\n\n\n\nSet: RightToLeft(self: ToolStripItem)=value\n\n'
right_to_left_auto_mirror_image = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Mirrors automatically the System.Windows.Forms.ToolStripItem image when the System.Windows.Forms.ToolStripItem.RightToLeft property is set to System.Windows.Forms.RightToLeft.Yes.\n\n\n\nGet: RightToLeftAutoMirrorImage(self: ToolStripItem) -> bool\n\n\n\nSet: RightToLeftAutoMirrorImage(self: ToolStripItem)=value\n\n'
selected = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether the item is selected.\n\n\n\nGet: Selected(self: ToolStripItem) -> bool\n\n\n\n'
show_keyboard_cues = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets a value indicating whether to show or hide shortcut keys.\n\n\n\n'
size = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the size of the item.\n\n\n\nGet: Size(self: ToolStripItem) -> Size\n\n\n\nSet: Size(self: ToolStripItem)=value\n\n'
tag = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the object that contains data about the item.\n\n\n\nGet: Tag(self: ToolStripItem) -> object\n\n\n\nSet: Tag(self: ToolStripItem)=value\n\n'
text = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the text that is to be displayed on the item.\n\n\n\nGet: Text(self: ToolStripItem) -> str\n\n\n\nSet: Text(self: ToolStripItem)=value\n\n'
text_align = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the alignment of the text on a System.Windows.Forms.ToolStripLabel.\n\n\n\nGet: TextAlign(self: ToolStripItem) -> ContentAlignment\n\n\n\nSet: TextAlign(self: ToolStripItem)=value\n\n'
text_direction = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets the orientation of text used on a System.Windows.Forms.ToolStripItem.\n\n\n\nGet: TextDirection(self: ToolStripItem) -> ToolStripTextDirection\n\n\n\nSet: TextDirection(self: ToolStripItem)=value\n\n'
text_image_relation = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the position of System.Windows.Forms.ToolStripItem text and image relative to each other.\n\n\n\nGet: TextImageRelation(self: ToolStripItem) -> TextImageRelation\n\n\n\nSet: TextImageRelation(self: ToolStripItem)=value\n\n'
tool_tip_text = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the text that appears as a System.Windows.Forms.ToolTip for a control.\n\n\n\nGet: ToolTipText(self: ToolStripItem) -> str\n\n\n\nSet: ToolTipText(self: ToolStripItem)=value\n\n'
visible = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a value indicating whether the item is displayed.\n\n\n\nGet: Visible(self: ToolStripItem) -> bool\n\n\n\nSet: Visible(self: ToolStripItem)=value\n\n'
width = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the width in pixels of a System.Windows.Forms.ToolStripItem.\n\n\n\nGet: Width(self: ToolStripItem) -> int\n\n\n\nSet: Width(self: ToolStripItem)=value\n\n'
available_changed = None
back_color_changed = None
click = None
display_style_changed = None
double_click = None
drag_drop = None
drag_enter = None
drag_leave = None
drag_over = None
enabled_changed = None
fore_color_changed = None
give_feedback = None
location_changed = None
mouse_down = None
mouse_enter = None
mouse_hover = None
mouse_leave = None
mouse_move = None
mouse_up = None
owner_changed = None
paint = None
query_accessibility_help = None
query_continue_drag = None
right_to_left_changed = None
text_changed = None
tool_strip_item_accessible_object = None
visible_changed = None |
"""Global errors:
Global error codes are negative, with four decimal digits, where the two most significant ones indicate
which analyzer is generating them:
-10__: NumberAnalyzer (num_analyzer.py)
-11__: CharAnalyzer (string_analyzer.py)
-12__: StringAnalyzer (string_analyzer.py)
-13__: RegisterAnalyzer (reg_analyzer.py)
-14__: RegisterBitsAnalyzer (reg_analyzer.py)
-15__: RegisterListAnalyzer (reg_analyzer.py)
-16__: ImmediateOpAnalyzer (imm_analyzer.py)
-17__: ImmediateRSAnalyzer (imm_analyzer.py)
-20__: AddressAnalyzer (adr_analyzer.py)
-21__: DataAnalyzer (data_analyzer.py)
-22__: Op2Analyzer (op2_analyzer.py)
-23__: OpdatAnalyzer (opdat_analyzer.py)
-24__: Opldst2Analyzer (opldst_analyzer.py)
-25__: Opldst3Analyzer (opldst_analyzer.py)
-30__: InstcondAnalyzer (instcond_analyzer.py)
-31__: InstdatAnalyzer (instdat_analyzer.py)
-32__: InstmulAnalyzer (instmul_analyzer.py)
-33__: InstjmpAnalyzer (instjmp_analyzer.py)
-34__: InstmemAnalyzer (instmem_analyzer.py)
-35__: InstmscAnalyzer (instmsc_analyzer.py)
-40__: ArmAnalyzer (arm_analyzer.py)
Global error messages include or not include a prefix to indicate three different kinds:
- if not prefixed, it is an error message used by the top-most ArmAnalyzer,
- if preceded with three white spaces, it is used by the corresponding sub-analyzer,
- if preceded with three underscores, it will never be used (impossible transition)
"""
gerror_dict = {-1001: ' missing number',
-1002: 'unexpected binary digit',
-1003: 'unexpected octal digit',
-1004: 'unexpected decimal digit',
-1005: 'unexpected hexa digit',
-1006: 'too big number (more than 32 bits)',
-1101: ' missing char',
-1102: 'empty single quotes',
-1103: 'invalid character',
-1104: 'unclosed single quotes',
-1105: 'use of single quotes for more than one character',
-1201: ' missing string',
-1202: 'empty double quotes',
-1203: 'invalid character',
-1204: 'unclosed double quotes',
-1301: 'missing register',
-1302: 'unknown register name',
-1303: 'missing reg number',
-1304: 'wrong reg number',
-1401: ' missing register id',
-1402: ' unknown register id',
-1403: 'missing second reg id',
-1501: ' missing register list',
-1502: 'missing opening \'{\'',
-1503: 'missing registers',
-1504: 'unknown or missing registers after \',\'',
-1601: ' missing immediate value',
-1602: ' missing immediate marker \'#\'',
-1603: 'missing value after \'#\'',
-1604: 'unexpected space after \'#\'',
-1605: 'unrecognizable info after \'#\'',
-1606: 'invalid value after fix-up',
-1607: 'unexpected data after immediate value',
-1701: ' missing immediate value',
-1702: 'missing immediate marker \'#\'',
-1703: 'missing value after \'#\'',
-1704: 'unexpected space after \'#\'',
-1705: 'unrecognizable info after \'#\'',
-1706: 'invalid number of shifts (not in [0..31])',
-1707: '___unexpected data after immediate value',
-2001: ' missing initial hex address',
-2002: 'wrong initial hex address',
-2003: 'missing or wrong info after hex address',
-2004: 'too big address (more than 32 bits)',
-2101: ' missing data directive',
-2102: 'missing data values',
-2103: 'missing white space after directive',
-2104: 'unknown data directive after \'.\'',
-2105: 'unexpected data separator',
-2106: 'unrecognizable info',
-2107: 'data out of range',
-2201: ' missing second operand (immediate, reg or shifted reg)',
-2202: '___wrong info after register',
-2203: ' unrecognizable second operand',
-2204: 'missing shift mode (lsl, lsr, asr, ror)',
-2205: 'missing info after shift mode',
-2206: ' unrecognized shift mode',
-2207: 'wrong info after shift mode',
-2301: ' missing operands',
-2302: 'only one register has been specified',
-2303: 'first register not recognizable',
-2304: 'missing source operands',
-2305: '___wrong info after second register',
-2306: 'unrecognized source operand',
-2307: '___missing second source operand',
-2308: 'wrong second operand',
-2310: 'compare instruction does not allow three operands',
-2311: 'move instruction does not allow three operands',
-2401: ' missing addressing mode 2',
-2402: 'failed to detect opening square bracket \'[\'',
-2403: 'unrecognized base register',
-2404: 'failed to detect closing square bracket \']\'',
-2405: 'missing offset or reg displacement',
-2406: 'unrecognized displacement',
-2407: 'missing shift mode for scaled reg displacement',
-2408: 'missing info after shift mode for scaled reg displacement',
-2409: 'missing space after shift mode for scaled reg displacement',
-2410: 'unrecognized text after addressing mode (post and pre-indexing currently not supported)',
-2411: 'immediate displacement out of range (>= 2^12) for addressing mode 2',
-2412: 'pc (r15) is not allowed as scaled reg. displacement',
-2501: ' missing addressing mode 3',
-2502: 'failed to detect opening square bracket \'[\'',
-2503: 'unrecognized base register',
-2504: 'failed to detect closing square bracket \']\'',
-2505: 'missing offset or reg displacement',
-2506: 'unrecognized displacement',
-2510: 'unrecognized text after addressing mode (post and pre-indexing currently not supported)',
-2511: 'immediate displacement out of range (>= 2^8) for addressing mode 3',
-2512: 'pc (r15) is not allowed as reg. displacement',
-2513: '\'ldrh\', \'strh\', \'ldrsh\' and \'ldrsb\' do not allow scaled reg. displacement',
-3001: ' missing instruction condition',
-3002: ' unrecognizable condition',
-3101: ' missing data instruction',
-3102: 'missing data instruction operands',
-3103: ' unrecognizable data instruction',
-3104: 'wrong text after data instruction',
-3105: 'missing space after data instruction',
-3106: '___unrecognizable data operands',
-3201: ' missing multiply instruction',
-3202: 'missing multiply instruction operands',
-3203: ' unrecognizable multiply instruction',
-3204: 'wrong text after multiply instruction',
-3205: 'missing space after multiply instruction',
-3206: '___unrecognizable data operands',
-3207: 'the \'mul\' instruction only accepts three registers',
-3208: 'the use of pc (r15) is forbiden in multipliy instructions',
-3301: ' missing branch instruction',
-3302: 'missing branch offset',
-3303: ' unrecognizable branch instruction',
-3304: 'missing branch register',
-3305: 'unrecognized branch offset',
-3306: '___unrecognized branch register',
-3307: 'destination address must be word aligned',
-3308: 'offset outside the branch range',
-3401: ' missing memory transfer instruction',
-3402: ' unrecognized memory transfer instruction',
-3403: 'missing space after memory transfer instruction',
-3404: 'wrong text after memory transfer instruction',
-3405: 'missing destination register in memory transfer',
-3406: 'missing \',\' after destination register',
-3407: 'missing addressing mode in memory transfer instruction',
-3408: 'cannot use \'s\' in store instructions',
-3409: 'only the \'ldr\' instruction allows loading values with \'=\', not \'ldrb\' nor other variants',
-3410: 'missing or wrong number for loading with relative pc',
-3501: ' missing miscellanea instruction',
-3502: 'missing instruction operands',
-3503: ' unrecognizable miscellanea instruction',
-3504: 'wrong text after miscellanea instruction',
-3505: 'wrong text after miscellanea instruction operands',
-4001: 'missing initial hex address or \'>\' symbol',
-4002: 'wrong initial address',
-4003: 'missing space after \'>\' symbol',
-4004: 'missing info after address',
-4005: 'unrecognized instruction or directive',
-4006: 'too big address (more than 32 bits) after automatic alignment',
}
| """Global errors:
Global error codes are negative, with four decimal digits, where the two most significant ones indicate
which analyzer is generating them:
-10__: NumberAnalyzer (num_analyzer.py)
-11__: CharAnalyzer (string_analyzer.py)
-12__: StringAnalyzer (string_analyzer.py)
-13__: RegisterAnalyzer (reg_analyzer.py)
-14__: RegisterBitsAnalyzer (reg_analyzer.py)
-15__: RegisterListAnalyzer (reg_analyzer.py)
-16__: ImmediateOpAnalyzer (imm_analyzer.py)
-17__: ImmediateRSAnalyzer (imm_analyzer.py)
-20__: AddressAnalyzer (adr_analyzer.py)
-21__: DataAnalyzer (data_analyzer.py)
-22__: Op2Analyzer (op2_analyzer.py)
-23__: OpdatAnalyzer (opdat_analyzer.py)
-24__: Opldst2Analyzer (opldst_analyzer.py)
-25__: Opldst3Analyzer (opldst_analyzer.py)
-30__: InstcondAnalyzer (instcond_analyzer.py)
-31__: InstdatAnalyzer (instdat_analyzer.py)
-32__: InstmulAnalyzer (instmul_analyzer.py)
-33__: InstjmpAnalyzer (instjmp_analyzer.py)
-34__: InstmemAnalyzer (instmem_analyzer.py)
-35__: InstmscAnalyzer (instmsc_analyzer.py)
-40__: ArmAnalyzer (arm_analyzer.py)
Global error messages include or not include a prefix to indicate three different kinds:
- if not prefixed, it is an error message used by the top-most ArmAnalyzer,
- if preceded with three white spaces, it is used by the corresponding sub-analyzer,
- if preceded with three underscores, it will never be used (impossible transition)
"""
gerror_dict = {-1001: ' missing number', -1002: 'unexpected binary digit', -1003: 'unexpected octal digit', -1004: 'unexpected decimal digit', -1005: 'unexpected hexa digit', -1006: 'too big number (more than 32 bits)', -1101: ' missing char', -1102: 'empty single quotes', -1103: 'invalid character', -1104: 'unclosed single quotes', -1105: 'use of single quotes for more than one character', -1201: ' missing string', -1202: 'empty double quotes', -1203: 'invalid character', -1204: 'unclosed double quotes', -1301: 'missing register', -1302: 'unknown register name', -1303: 'missing reg number', -1304: 'wrong reg number', -1401: ' missing register id', -1402: ' unknown register id', -1403: 'missing second reg id', -1501: ' missing register list', -1502: "missing opening '{'", -1503: 'missing registers', -1504: "unknown or missing registers after ','", -1601: ' missing immediate value', -1602: " missing immediate marker '#'", -1603: "missing value after '#'", -1604: "unexpected space after '#'", -1605: "unrecognizable info after '#'", -1606: 'invalid value after fix-up', -1607: 'unexpected data after immediate value', -1701: ' missing immediate value', -1702: "missing immediate marker '#'", -1703: "missing value after '#'", -1704: "unexpected space after '#'", -1705: "unrecognizable info after '#'", -1706: 'invalid number of shifts (not in [0..31])', -1707: '___unexpected data after immediate value', -2001: ' missing initial hex address', -2002: 'wrong initial hex address', -2003: 'missing or wrong info after hex address', -2004: 'too big address (more than 32 bits)', -2101: ' missing data directive', -2102: 'missing data values', -2103: 'missing white space after directive', -2104: "unknown data directive after '.'", -2105: 'unexpected data separator', -2106: 'unrecognizable info', -2107: 'data out of range', -2201: ' missing second operand (immediate, reg or shifted reg)', -2202: '___wrong info after register', -2203: ' unrecognizable second operand', -2204: 'missing shift mode (lsl, lsr, asr, ror)', -2205: 'missing info after shift mode', -2206: ' unrecognized shift mode', -2207: 'wrong info after shift mode', -2301: ' missing operands', -2302: 'only one register has been specified', -2303: 'first register not recognizable', -2304: 'missing source operands', -2305: '___wrong info after second register', -2306: 'unrecognized source operand', -2307: '___missing second source operand', -2308: 'wrong second operand', -2310: 'compare instruction does not allow three operands', -2311: 'move instruction does not allow three operands', -2401: ' missing addressing mode 2', -2402: "failed to detect opening square bracket '['", -2403: 'unrecognized base register', -2404: "failed to detect closing square bracket ']'", -2405: 'missing offset or reg displacement', -2406: 'unrecognized displacement', -2407: 'missing shift mode for scaled reg displacement', -2408: 'missing info after shift mode for scaled reg displacement', -2409: 'missing space after shift mode for scaled reg displacement', -2410: 'unrecognized text after addressing mode (post and pre-indexing currently not supported)', -2411: 'immediate displacement out of range (>= 2^12) for addressing mode 2', -2412: 'pc (r15) is not allowed as scaled reg. displacement', -2501: ' missing addressing mode 3', -2502: "failed to detect opening square bracket '['", -2503: 'unrecognized base register', -2504: "failed to detect closing square bracket ']'", -2505: 'missing offset or reg displacement', -2506: 'unrecognized displacement', -2510: 'unrecognized text after addressing mode (post and pre-indexing currently not supported)', -2511: 'immediate displacement out of range (>= 2^8) for addressing mode 3', -2512: 'pc (r15) is not allowed as reg. displacement', -2513: "'ldrh', 'strh', 'ldrsh' and 'ldrsb' do not allow scaled reg. displacement", -3001: ' missing instruction condition', -3002: ' unrecognizable condition', -3101: ' missing data instruction', -3102: 'missing data instruction operands', -3103: ' unrecognizable data instruction', -3104: 'wrong text after data instruction', -3105: 'missing space after data instruction', -3106: '___unrecognizable data operands', -3201: ' missing multiply instruction', -3202: 'missing multiply instruction operands', -3203: ' unrecognizable multiply instruction', -3204: 'wrong text after multiply instruction', -3205: 'missing space after multiply instruction', -3206: '___unrecognizable data operands', -3207: "the 'mul' instruction only accepts three registers", -3208: 'the use of pc (r15) is forbiden in multipliy instructions', -3301: ' missing branch instruction', -3302: 'missing branch offset', -3303: ' unrecognizable branch instruction', -3304: 'missing branch register', -3305: 'unrecognized branch offset', -3306: '___unrecognized branch register', -3307: 'destination address must be word aligned', -3308: 'offset outside the branch range', -3401: ' missing memory transfer instruction', -3402: ' unrecognized memory transfer instruction', -3403: 'missing space after memory transfer instruction', -3404: 'wrong text after memory transfer instruction', -3405: 'missing destination register in memory transfer', -3406: "missing ',' after destination register", -3407: 'missing addressing mode in memory transfer instruction', -3408: "cannot use 's' in store instructions", -3409: "only the 'ldr' instruction allows loading values with '=', not 'ldrb' nor other variants", -3410: 'missing or wrong number for loading with relative pc', -3501: ' missing miscellanea instruction', -3502: 'missing instruction operands', -3503: ' unrecognizable miscellanea instruction', -3504: 'wrong text after miscellanea instruction', -3505: 'wrong text after miscellanea instruction operands', -4001: "missing initial hex address or '>' symbol", -4002: 'wrong initial address', -4003: "missing space after '>' symbol", -4004: 'missing info after address', -4005: 'unrecognized instruction or directive', -4006: 'too big address (more than 32 bits) after automatic alignment'} |
# 315. Count of Smaller Numbers After Self
# ttungl@gmail.com
# You are given an integer array nums and you have to return a new counts array.
# The counts array has the property where counts[i] is the number of smaller elements
# to the right of nums[i].
# Example:
# Given nums = [5, 2, 6, 1]
# To the right of 5 there are 2 smaller elements (2 and 1).
# To the right of 2 there is only 1 smaller element (1).
# To the right of 6 there is 1 smaller element (1).
# To the right of 1 there is 0 smaller element.
# Return the array [2, 1, 1, 0].
class Solution(object):
def countSmaller(self, nums):
"""
:type nums: List[int]
:rtype: List[int]
"""
# sol 1:
# time worst O(n^2); best O(n logn); space O(n)
# runtime: 174ms
res, sortArr = [], []
for i in nums[::-1]: # O(n)
res.append(bisect.bisect_left(sortArr, i))
bisect.insort(sortArr, i) # best: O(logn); worst O(n)
return res[::-1]
# sol 2:
# binary search
# runtime: 240ms
res, sortArr = [0]*len(nums), []
for i in range(len(nums)):
left, right = 0, len(sortArr)-1
index = len(nums) - 1 - i
while left <= right:
mid = left + (right-left)//2
if sortArr[mid] < nums[index]:
left = mid+1
else:
right = mid-1
bisect.insort(sortArr, nums[index])
res[index] = left
return res
| class Solution(object):
def count_smaller(self, nums):
"""
:type nums: List[int]
:rtype: List[int]
"""
(res, sort_arr) = ([], [])
for i in nums[::-1]:
res.append(bisect.bisect_left(sortArr, i))
bisect.insort(sortArr, i)
return res[::-1]
(res, sort_arr) = ([0] * len(nums), [])
for i in range(len(nums)):
(left, right) = (0, len(sortArr) - 1)
index = len(nums) - 1 - i
while left <= right:
mid = left + (right - left) // 2
if sortArr[mid] < nums[index]:
left = mid + 1
else:
right = mid - 1
bisect.insort(sortArr, nums[index])
res[index] = left
return res |
"""You would probably keep your configuration out of the git repo, but
this works for a simple script.
See the docs for information on Flask configuration.
"""
DATABASE_NAME = 'flask_mongo_example'
| """You would probably keep your configuration out of the git repo, but
this works for a simple script.
See the docs for information on Flask configuration.
"""
database_name = 'flask_mongo_example' |
class Unit(object):
def __init__(self, name, attack, defend):
self.name = name
self.attack = attack
self.defend = defend
def __repr__(self):
return self.name
units = {
'droid': Unit('droid', 42, 41),
'gorgul': Unit('gorgul', 24, 20),
'pushkar': Unit('pushkar', 55, 37),
'giant': Unit('giant', 78, 79),
}
| class Unit(object):
def __init__(self, name, attack, defend):
self.name = name
self.attack = attack
self.defend = defend
def __repr__(self):
return self.name
units = {'droid': unit('droid', 42, 41), 'gorgul': unit('gorgul', 24, 20), 'pushkar': unit('pushkar', 55, 37), 'giant': unit('giant', 78, 79)} |
# Solutions for Radon tutorial - PyData Global 2020 Tutorial
def radon_noise():
"""Create noise to add to projections
"""
sigman = 5e-1 # play with this...
n = np.random.normal(0., sigman, projection.shape)
projection_n = projection + n
projection1_n = projection1 + \
n[projection.shape[0] // 2 - (nx - inner) // 2: projection.shape[0] // 2 + (nx - inner) // 2].T
# copy-paste here the inversion code(s)...
def radon_morereg():
"""Add Wavelet Transform regularization to SplitBregman reconstruction
"""
# Wavelet transform operator
Wop = pylops.signalprocessing.DWT2D(image.shape, wavelet='haar', level=5)
DWop = Dop + [Wop, ]
# Solve inverse problem
mu = 0.2
lamda = [1., 1., .5]
niter = 5
niterinner = 1
image_tvw, niter = pylops.optimization.sparsity.SplitBregman(Radop, DWop,
projection1.ravel(),
niter,
niterinner,
mu=mu,
epsRL1s=lamda,
tol=1e-4,
tau=1.,
show=True,
**dict(
iter_lim=10,
damp=1e-2))
image_tvw = np.real(image_tvw.reshape(nx, ny))
mse_tvw = np.linalg.norm(
image_tvw[pad // 2:-pad // 2, pad // 2:-pad // 2] -
image[pad // 2:-pad // 2, pad // 2:-pad // 2])
print(f"TV+W MSE reconstruction error: {mse_tvw:.3f}")
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 6))
ax1.imshow(image_tvw[pad // 2:-pad // 2, pad // 2:-pad // 2], cmap='gray',
vmin=0, vmax=1)
ax1.set_title("Reconstruction\nTV+W Regularized inversion")
ax1.axis('tight')
ax2.imshow(image_tvw[pad // 2:-pad // 2, pad // 2:-pad // 2] -
image[pad // 2:-pad // 2, pad // 2:-pad // 2],
cmap='gray', vmin=-0.2, vmax=0.2)
ax2.set_title("Reconstruction error\nTV+W Regularized inversion")
ax2.axis('tight')
def radon_kk():
"""Perform reconstruction in KK domain
"""
# 2D FFT operator
Fop = pylops.signalprocessing.FFT2D(dims=(nx, ny), dtype=np.complex)
# Restriction operator
thetas = np.arange(-43, 47, 5)
kx = np.arange(nx) - nx // 2
ikx = np.arange(nx)
mask = np.zeros((nx, ny))
for theta in thetas:
ky = kx * np.tan(np.deg2rad(theta))
iky = np.round(ky).astype(np.int) + nx // 2
sel = (iky >= 0) & (iky < nx)
mask[ikx[sel], iky[sel]] = 1
mask = np.logical_or(mask, np.fliplr(mask.T))
mask = np.fft.ifftshift(mask)
Rop = pylops.Restriction(nx * ny, np.where(mask.ravel() == 1)[0],
dtype=np.complex)
# kk spectrum
kk = Fop * image.ravel()
kk = kk.reshape(image.shape)
# restricted kk spectrum
kkrestr = Rop.mask(kk.ravel())
kkrestr = kkrestr.reshape(ny, nx)
kkrestr.data[:] = np.fft.fftshift(kkrestr.data)
kkrestr.mask[:] = np.fft.fftshift(kkrestr.mask)
# data
KOp = Rop * Fop
y = KOp * image.ravel()
fig, (ax1, ax2, ax3, ax4) = plt.subplots(1, 4, figsize=(17, 4))
ax1.imshow(image, cmap='gray')
ax1.set_title(r"Input $\mathbf{i}$")
ax1.axis('tight')
ax2.imshow(np.fft.fftshift(np.abs(kk)), vmin=0, vmax=1, cmap='rainbow')
ax2.set_title("KK Spectrum")
ax2.axis('tight')
ax3.imshow(kkrestr.mask, vmin=0, vmax=1, cmap='gray')
ax3.set_title(r"Sampling matrix")
ax3.axis('tight')
ax4.imshow(np.abs(kkrestr), vmin=0, vmax=1, cmap='rainbow')
ax4.set_title(r"Sampled KK Spectrum $\mathbf{k}$")
ax4.axis('tight')
# Solve L2 inverse problem
D2op = pylops.Laplacian(dims=(nx, ny), edge=True, dtype=np.complex)
image_l2 = \
pylops.optimization.leastsquares.RegularizedInversion(KOp, [D2op],
y, epsRs=[5e-1],
show=True,
**dict(iter_lim=20))
image_l2 = np.real(image_l2.reshape(nx, ny))
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 6))
ax1.imshow(image_l2[pad // 2:-pad // 2, pad // 2:-pad // 2], cmap='gray',
vmin=0, vmax=1)
ax1.set_title("Reconstruction\nL2 Regularized inversion")
ax1.axis('tight')
ax2.imshow(image_l2[pad // 2:-pad // 2, pad // 2:-pad // 2] -
image[pad // 2:-pad // 2, pad // 2:-pad // 2],
cmap='gray', vmin=-0.2, vmax=0.2)
ax2.set_title("Reconstruction error\nL2 Regularized inversion")
ax2.axis('tight')
# Solve TV inverse problem
Dop = [pylops.FirstDerivative(ny * nx, dims=(nx, ny), dir=0, edge=True,
kind='backward', dtype=np.complex),
pylops.FirstDerivative(ny * nx, dims=(nx, ny), dir=1, edge=True,
kind='backward', dtype=np.complex)]
mu = 0.5
lamda = [.05, .05]
niter = 5
niterinner = 1
image_tv, niter = \
pylops.optimization.sparsity.SplitBregman(KOp, Dop, y,
niter,
niterinner,
mu=mu,
epsRL1s=lamda,
tol=1e-4,
tau=1.,
show=True,
**dict(iter_lim=10,
damp=1e-2))
image_tv = np.real(image_tv.reshape(nx, ny))
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 6))
ax1.imshow(image_tv[pad // 2:-pad // 2, pad // 2:-pad // 2], cmap='gray',
vmin=0, vmax=1)
ax1.set_title("Reconstruction\nTV Regularized inversion")
ax1.axis('tight')
ax2.imshow(image_tv[pad // 2:-pad // 2, pad // 2:-pad // 2] -
image[pad // 2:-pad // 2, pad // 2:-pad // 2],
cmap='gray', vmin=-0.2, vmax=0.2)
ax2.set_title("Reconstruction error\nTV Regularized inversion")
ax2.axis('tight') | def radon_noise():
"""Create noise to add to projections
"""
sigman = 0.5
n = np.random.normal(0.0, sigman, projection.shape)
projection_n = projection + n
projection1_n = projection1 + n[projection.shape[0] // 2 - (nx - inner) // 2:projection.shape[0] // 2 + (nx - inner) // 2].T
def radon_morereg():
"""Add Wavelet Transform regularization to SplitBregman reconstruction
"""
wop = pylops.signalprocessing.DWT2D(image.shape, wavelet='haar', level=5)
d_wop = Dop + [Wop]
mu = 0.2
lamda = [1.0, 1.0, 0.5]
niter = 5
niterinner = 1
(image_tvw, niter) = pylops.optimization.sparsity.SplitBregman(Radop, DWop, projection1.ravel(), niter, niterinner, mu=mu, epsRL1s=lamda, tol=0.0001, tau=1.0, show=True, **dict(iter_lim=10, damp=0.01))
image_tvw = np.real(image_tvw.reshape(nx, ny))
mse_tvw = np.linalg.norm(image_tvw[pad // 2:-pad // 2, pad // 2:-pad // 2] - image[pad // 2:-pad // 2, pad // 2:-pad // 2])
print(f'TV+W MSE reconstruction error: {mse_tvw:.3f}')
(fig, (ax1, ax2)) = plt.subplots(1, 2, figsize=(12, 6))
ax1.imshow(image_tvw[pad // 2:-pad // 2, pad // 2:-pad // 2], cmap='gray', vmin=0, vmax=1)
ax1.set_title('Reconstruction\nTV+W Regularized inversion')
ax1.axis('tight')
ax2.imshow(image_tvw[pad // 2:-pad // 2, pad // 2:-pad // 2] - image[pad // 2:-pad // 2, pad // 2:-pad // 2], cmap='gray', vmin=-0.2, vmax=0.2)
ax2.set_title('Reconstruction error\nTV+W Regularized inversion')
ax2.axis('tight')
def radon_kk():
"""Perform reconstruction in KK domain
"""
fop = pylops.signalprocessing.FFT2D(dims=(nx, ny), dtype=np.complex)
thetas = np.arange(-43, 47, 5)
kx = np.arange(nx) - nx // 2
ikx = np.arange(nx)
mask = np.zeros((nx, ny))
for theta in thetas:
ky = kx * np.tan(np.deg2rad(theta))
iky = np.round(ky).astype(np.int) + nx // 2
sel = (iky >= 0) & (iky < nx)
mask[ikx[sel], iky[sel]] = 1
mask = np.logical_or(mask, np.fliplr(mask.T))
mask = np.fft.ifftshift(mask)
rop = pylops.Restriction(nx * ny, np.where(mask.ravel() == 1)[0], dtype=np.complex)
kk = Fop * image.ravel()
kk = kk.reshape(image.shape)
kkrestr = Rop.mask(kk.ravel())
kkrestr = kkrestr.reshape(ny, nx)
kkrestr.data[:] = np.fft.fftshift(kkrestr.data)
kkrestr.mask[:] = np.fft.fftshift(kkrestr.mask)
k_op = Rop * Fop
y = KOp * image.ravel()
(fig, (ax1, ax2, ax3, ax4)) = plt.subplots(1, 4, figsize=(17, 4))
ax1.imshow(image, cmap='gray')
ax1.set_title('Input $\\mathbf{i}$')
ax1.axis('tight')
ax2.imshow(np.fft.fftshift(np.abs(kk)), vmin=0, vmax=1, cmap='rainbow')
ax2.set_title('KK Spectrum')
ax2.axis('tight')
ax3.imshow(kkrestr.mask, vmin=0, vmax=1, cmap='gray')
ax3.set_title('Sampling matrix')
ax3.axis('tight')
ax4.imshow(np.abs(kkrestr), vmin=0, vmax=1, cmap='rainbow')
ax4.set_title('Sampled KK Spectrum $\\mathbf{k}$')
ax4.axis('tight')
d2op = pylops.Laplacian(dims=(nx, ny), edge=True, dtype=np.complex)
image_l2 = pylops.optimization.leastsquares.RegularizedInversion(KOp, [D2op], y, epsRs=[0.5], show=True, **dict(iter_lim=20))
image_l2 = np.real(image_l2.reshape(nx, ny))
(fig, (ax1, ax2)) = plt.subplots(1, 2, figsize=(12, 6))
ax1.imshow(image_l2[pad // 2:-pad // 2, pad // 2:-pad // 2], cmap='gray', vmin=0, vmax=1)
ax1.set_title('Reconstruction\nL2 Regularized inversion')
ax1.axis('tight')
ax2.imshow(image_l2[pad // 2:-pad // 2, pad // 2:-pad // 2] - image[pad // 2:-pad // 2, pad // 2:-pad // 2], cmap='gray', vmin=-0.2, vmax=0.2)
ax2.set_title('Reconstruction error\nL2 Regularized inversion')
ax2.axis('tight')
dop = [pylops.FirstDerivative(ny * nx, dims=(nx, ny), dir=0, edge=True, kind='backward', dtype=np.complex), pylops.FirstDerivative(ny * nx, dims=(nx, ny), dir=1, edge=True, kind='backward', dtype=np.complex)]
mu = 0.5
lamda = [0.05, 0.05]
niter = 5
niterinner = 1
(image_tv, niter) = pylops.optimization.sparsity.SplitBregman(KOp, Dop, y, niter, niterinner, mu=mu, epsRL1s=lamda, tol=0.0001, tau=1.0, show=True, **dict(iter_lim=10, damp=0.01))
image_tv = np.real(image_tv.reshape(nx, ny))
(fig, (ax1, ax2)) = plt.subplots(1, 2, figsize=(12, 6))
ax1.imshow(image_tv[pad // 2:-pad // 2, pad // 2:-pad // 2], cmap='gray', vmin=0, vmax=1)
ax1.set_title('Reconstruction\nTV Regularized inversion')
ax1.axis('tight')
ax2.imshow(image_tv[pad // 2:-pad // 2, pad // 2:-pad // 2] - image[pad // 2:-pad // 2, pad // 2:-pad // 2], cmap='gray', vmin=-0.2, vmax=0.2)
ax2.set_title('Reconstruction error\nTV Regularized inversion')
ax2.axis('tight') |
X, Y = map(int, input().split())
X += 2
if Y >= 30:
X += 1
Y -= 30
else:
Y += 30
X %= 24
print('%02d:%02d' % (X, Y))
| (x, y) = map(int, input().split())
x += 2
if Y >= 30:
x += 1
y -= 30
else:
y += 30
x %= 24
print('%02d:%02d' % (X, Y)) |
class Node:
def __init__(self, key) -> None:
self.val = key
self.left = None
self.right = None
def printInorder(node):
if node == None:
return
else:
printInorder(node.left)
print(node.val, end=' ')
right_node = printInorder(node.right)
def preOrder(node):
if node == None:
return
else:
print(node.val, end=' ')
left_node = preOrder(node.left)
right_node = preOrder(node.right)
def postOrder(node):
if node == None:
return
else:
left_node = postOrder(node.left)
right_node = postOrder(node.right)
print(node.val, end=' ')
root = Node(1)
root.left = Node(2)
root.right = Node(3)
root.left.left = Node(4)
root.left.right = Node(5)
root.right.left = Node(6)
printInorder(root)
print()
preOrder(root)
print()
postOrder(root)
print()
| class Node:
def __init__(self, key) -> None:
self.val = key
self.left = None
self.right = None
def print_inorder(node):
if node == None:
return
else:
print_inorder(node.left)
print(node.val, end=' ')
right_node = print_inorder(node.right)
def pre_order(node):
if node == None:
return
else:
print(node.val, end=' ')
left_node = pre_order(node.left)
right_node = pre_order(node.right)
def post_order(node):
if node == None:
return
else:
left_node = post_order(node.left)
right_node = post_order(node.right)
print(node.val, end=' ')
root = node(1)
root.left = node(2)
root.right = node(3)
root.left.left = node(4)
root.left.right = node(5)
root.right.left = node(6)
print_inorder(root)
print()
pre_order(root)
print()
post_order(root)
print() |
filenames = ['file1.txt', 'file2.txt', ...]
with open('path/to/output/file', 'w') as outfile:
for fname in filenames:
with open(fname) as infile:
outfile.write(infile.read())
| filenames = ['file1.txt', 'file2.txt', ...]
with open('path/to/output/file', 'w') as outfile:
for fname in filenames:
with open(fname) as infile:
outfile.write(infile.read()) |
"""
To sort the array to count the set bits in binary representation
of array elements.
"""
def count_set_bits(num):
count = 0
while num:
if num & 1:
count += 1
num = num >> 1
return count
def sort_setbit_based(array):
count = []
for i in range(len(array)):
count.append([(-1) * count_set_bits(array[i]), array[i]])
count.sort(key=lambda x: x[0])
output = []
for i in range(len(count)):
output.append(count[i][1])
return output
if __name__ == "__main__":
arr = [5, 2, 3, 9, 4, 6, 7, 15, 32]
print(sort_setbit_based(arr)) | """
To sort the array to count the set bits in binary representation
of array elements.
"""
def count_set_bits(num):
count = 0
while num:
if num & 1:
count += 1
num = num >> 1
return count
def sort_setbit_based(array):
count = []
for i in range(len(array)):
count.append([-1 * count_set_bits(array[i]), array[i]])
count.sort(key=lambda x: x[0])
output = []
for i in range(len(count)):
output.append(count[i][1])
return output
if __name__ == '__main__':
arr = [5, 2, 3, 9, 4, 6, 7, 15, 32]
print(sort_setbit_based(arr)) |
class Parent:
def __init__(self, name):
print("Parent Object Created")
self.testFunc(name)
def testFunc(self, name):
print("Parent testFunc called {}", name)
class Child(Parent):
def __init__(self, name):
print("Child Object Created")
self.testFunc(name)
# def testFunc(self, name):
# print("Child testFunc called {}", name)
class oopsConcepts:
def __init__(self):
print("Main class Object Created")
parentObj = Child("with Oops Concepts")
mainObj = oopsConcepts() | class Parent:
def __init__(self, name):
print('Parent Object Created')
self.testFunc(name)
def test_func(self, name):
print('Parent testFunc called {}', name)
class Child(Parent):
def __init__(self, name):
print('Child Object Created')
self.testFunc(name)
class Oopsconcepts:
def __init__(self):
print('Main class Object Created')
parent_obj = child('with Oops Concepts')
main_obj = oops_concepts() |
'''
Write a Python program to find the largest product of the pair of
adjacent elements from a given list of integers.
Sample Input:
[1,2,3,4,5,6]
[1,2,3,4,5]
[2,3]
Sample Output:
30
20
6
'''
'''
The zip() function returns a zip object, which is an
iterator of tuples where the first item in each passed iterator is paired together,
and then the second item in each passed iterator are paired together etc.
If the passed iterators have different lengths, the iterator with the least items decides
the length of the new iterator.
iterables can be built-in iterables (like: list, string, dict), or user-defined iterables
'''
def adjacent_num_product(list_nums):
#create 2 tuples. The second tuple is right shifted and multiply the numbers
#single line of return statement with zip
return max(a*b for a, b in zip(list_nums, list_nums[1:]))
print(adjacent_num_product([1,2,3,4,5,6]))
print(adjacent_num_product([1,2,3,4,5]))
print(adjacent_num_product([2,3]))
| """
Write a Python program to find the largest product of the pair of
adjacent elements from a given list of integers.
Sample Input:
[1,2,3,4,5,6]
[1,2,3,4,5]
[2,3]
Sample Output:
30
20
6
"""
'\nThe zip() function returns a zip object, which is an \niterator of tuples where the first item in each passed iterator is paired together,\nand then the second item in each passed iterator are paired together etc.\nIf the passed iterators have different lengths, the iterator with the least items decides \nthe length of the new iterator.\niterables\tcan be built-in iterables (like: list, string, dict), or user-defined iterables\n'
def adjacent_num_product(list_nums):
return max((a * b for (a, b) in zip(list_nums, list_nums[1:])))
print(adjacent_num_product([1, 2, 3, 4, 5, 6]))
print(adjacent_num_product([1, 2, 3, 4, 5]))
print(adjacent_num_product([2, 3])) |
class TreeNode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class BSTIterator:
def __init__(self, root: TreeNode):
self.stack = []
self.getLeftMostNode(root)
def getLeftMostNode(self, node: TreeNode) -> None:
while node:
self.stack.append(node)
node = node.left
def next(self) -> int:
"""
@return the next smallest number
"""
node = self.stack.pop()
if node.right:
self.getLeftMostNode(node.right)
return node.val
def hasNext(self) -> bool:
"""
@return whether we have a next smallest number
"""
return len(self.stack) > 0
if __name__ == "__main__":
root = TreeNode(7)
root.left = TreeNode(3)
root.right = TreeNode(15)
root.right.left = TreeNode(9)
root.right.right = TreeNode(20)
iterator = BSTIterator(root)
print(iterator.next()); # return 3
print(iterator.next()); # return 7
print(iterator.hasNext()); # return true
print(iterator.next()); # return 9
print(iterator.hasNext()); # return true
print(iterator.next()); # return 15
print(iterator.hasNext()); # return true
print(iterator.next()); # return 20
print(iterator.hasNext()); # return false | class Treenode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Bstiterator:
def __init__(self, root: TreeNode):
self.stack = []
self.getLeftMostNode(root)
def get_left_most_node(self, node: TreeNode) -> None:
while node:
self.stack.append(node)
node = node.left
def next(self) -> int:
"""
@return the next smallest number
"""
node = self.stack.pop()
if node.right:
self.getLeftMostNode(node.right)
return node.val
def has_next(self) -> bool:
"""
@return whether we have a next smallest number
"""
return len(self.stack) > 0
if __name__ == '__main__':
root = tree_node(7)
root.left = tree_node(3)
root.right = tree_node(15)
root.right.left = tree_node(9)
root.right.right = tree_node(20)
iterator = bst_iterator(root)
print(iterator.next())
print(iterator.next())
print(iterator.hasNext())
print(iterator.next())
print(iterator.hasNext())
print(iterator.next())
print(iterator.hasNext())
print(iterator.next())
print(iterator.hasNext()) |
def longestPeak(array):
# Write your code here.
maxPeakLength=0
i=1
while(i<len(array)-1):
# print(i)
isPeak= array[i]>array[i-1] and array[i]>array[i+1]
if not isPeak:
i+=1
continue
leftIdx=i-2
while(leftIdx>=0 and array[leftIdx]<array[leftIdx+1]):
leftIdx-=1
rightIdx=i+2
while(rightIdx<len(array) and array[rightIdx]<array[rightIdx-1]):
rightIdx+=1
currentPeakLength=rightIdx-leftIdx-2+1
maxPeakLength=max(currentPeakLength,maxPeakLength)
i=rightIdx
return maxPeakLength
print(longestPeak([1, 2, 3, 3, 4, 0, 10, 6, 5, -1, -3, 2, 3]))
| def longest_peak(array):
max_peak_length = 0
i = 1
while i < len(array) - 1:
is_peak = array[i] > array[i - 1] and array[i] > array[i + 1]
if not isPeak:
i += 1
continue
left_idx = i - 2
while leftIdx >= 0 and array[leftIdx] < array[leftIdx + 1]:
left_idx -= 1
right_idx = i + 2
while rightIdx < len(array) and array[rightIdx] < array[rightIdx - 1]:
right_idx += 1
current_peak_length = rightIdx - leftIdx - 2 + 1
max_peak_length = max(currentPeakLength, maxPeakLength)
i = rightIdx
return maxPeakLength
print(longest_peak([1, 2, 3, 3, 4, 0, 10, 6, 5, -1, -3, 2, 3])) |
'''
Array uses one-based indexing to access elements
Implements Max-Heap Tree
Can be used for max priority queue
'''
class HeapTree:
def __init__(self, value:int):
self.array = [0]
self.heap_size = 0
self.max_size = value
def left_child(self, index:int):
'''
Returns the possible index of left child
'''
return 2 * index
def right_child(self, index:int):
'''
Returns the possible index of right child
'''
return 2 * index + 1
def parent(self, index:int):
'''
Returns the possible index of the parent
'''
return index // 2
def max_heapify(self, index:int):
'''
Takes index as input
Recursively "heapifies" the parent and its children
Recursion stops when the parent is not swapped with one of its children
'''
if index > self.heap_size:
raise Exception('Index out of bounds' + str(index))
return
left_index, right_index, largest = self.left_child(index), self.right_child(index), index
if left_index <= self.heap_size and self.array[largest] < self.array[left_index]:
largest = left_index
if right_index <= self.heap_size and self.array[largest] < self.array[right_index]:
largest = right_index
if largest != index:
self.array[largest], self.array[index] = self.array[index], self.array[largest]
self.max_heapify(largest)
def build_max_heap(self):
'''
Heapifies the entire array to follow the max-heap rule
'''
self.heap_size = self.max_size
for i in range( self.max_size // 2, 0, -1):
self.max_heapify(i)
def heap_sort(self):
'''
Sorts the array by using heap rule
The array stops being a max heap after the operation
'''
self.build_max_heap()
for i in range(self.max_size, 1, -1):
self.heap_size -= 1
self.array[i], self.array[1] = self.array[1], self.array[i]
self.max_heapify(1)
def insert(self, value, index = -1):
'''
Takes the value and an optional index( less than the heap size ) as input
If index is given, the value to be overwritten should be less than the value given
'''
if (index > self.heap_size or
(index == -1 and
self.heap_size + 1 > self.max_size)):
raise Exception('Index Out of Bounds')
return
if index == -1:
self.array.append(value)
self.heap_size += 1
index = self.heap_size
else:
if self.array[index] > value:
raise Exception('Cannot replace with a lower value')
return
self.array[index] = value
while self.parent(index) != 0 and self.array[self.parent(index)] < self.array[index]:
self.array[self.parent(index)], self.array[index] = self.array[index], self.array[self.parent(index)]
index = self.parent(index)
def remove(self, index):
'''
Removes the element with given index from the tree
and rearranges the tree accordingly.
'''
if( index < 1 and index > max_size):
raise Exception("Index out of bounds")
return
self.array[index], self.array[self.heap_size] = self.array[self.heap_size], self.array[index]
self.heap_size -= 1
self.max_heapify(index)
def print_tree(self):
print(self.array[1:])
| """
Array uses one-based indexing to access elements
Implements Max-Heap Tree
Can be used for max priority queue
"""
class Heaptree:
def __init__(self, value: int):
self.array = [0]
self.heap_size = 0
self.max_size = value
def left_child(self, index: int):
"""
Returns the possible index of left child
"""
return 2 * index
def right_child(self, index: int):
"""
Returns the possible index of right child
"""
return 2 * index + 1
def parent(self, index: int):
"""
Returns the possible index of the parent
"""
return index // 2
def max_heapify(self, index: int):
"""
Takes index as input
Recursively "heapifies" the parent and its children
Recursion stops when the parent is not swapped with one of its children
"""
if index > self.heap_size:
raise exception('Index out of bounds' + str(index))
return
(left_index, right_index, largest) = (self.left_child(index), self.right_child(index), index)
if left_index <= self.heap_size and self.array[largest] < self.array[left_index]:
largest = left_index
if right_index <= self.heap_size and self.array[largest] < self.array[right_index]:
largest = right_index
if largest != index:
(self.array[largest], self.array[index]) = (self.array[index], self.array[largest])
self.max_heapify(largest)
def build_max_heap(self):
"""
Heapifies the entire array to follow the max-heap rule
"""
self.heap_size = self.max_size
for i in range(self.max_size // 2, 0, -1):
self.max_heapify(i)
def heap_sort(self):
"""
Sorts the array by using heap rule
The array stops being a max heap after the operation
"""
self.build_max_heap()
for i in range(self.max_size, 1, -1):
self.heap_size -= 1
(self.array[i], self.array[1]) = (self.array[1], self.array[i])
self.max_heapify(1)
def insert(self, value, index=-1):
"""
Takes the value and an optional index( less than the heap size ) as input
If index is given, the value to be overwritten should be less than the value given
"""
if index > self.heap_size or (index == -1 and self.heap_size + 1 > self.max_size):
raise exception('Index Out of Bounds')
return
if index == -1:
self.array.append(value)
self.heap_size += 1
index = self.heap_size
else:
if self.array[index] > value:
raise exception('Cannot replace with a lower value')
return
self.array[index] = value
while self.parent(index) != 0 and self.array[self.parent(index)] < self.array[index]:
(self.array[self.parent(index)], self.array[index]) = (self.array[index], self.array[self.parent(index)])
index = self.parent(index)
def remove(self, index):
"""
Removes the element with given index from the tree
and rearranges the tree accordingly.
"""
if index < 1 and index > max_size:
raise exception('Index out of bounds')
return
(self.array[index], self.array[self.heap_size]) = (self.array[self.heap_size], self.array[index])
self.heap_size -= 1
self.max_heapify(index)
def print_tree(self):
print(self.array[1:]) |
class Page:
__index__ = """<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}}</title>
<!-- ADD YOUR CSS & CDN HERE WHICH IS APPLICABLE TO ALL PAGES -->
<style>
/* {{style}} */
</style>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
</head>
<body onload=''>
{{root}}
<script>
// {{script}}
</script>
<!-- ADD YOUR JS & CDN HERE WHICH IS APPLICABLE TO ALL PAGES -->
</body>
</html>"""
def __write_index__(self):
open('index.html', 'w').write(self.__index__)
def __init__(self, name):
self.name = name.capitalize()
self.__errs__ = []
self.title = 'Document'
self.__welcome__ = f"<center><h1 class='fw-light'>PyFlit</h1></center><h2 class='fw-light'>Template : {self.name} <br> Running Successful</h2>"
self.__content__ = ""
try:
self.__op__ = open(f"index.html").read()
if "<title>{{title}}</title>" not in self.__op__:
self.write_index()
if "/* {{style}} */" not in self.__op__:
self.write_index()
if "{{root}}" not in self.__op__:
self.write_index()
if "// {{script}}" not in self.__op__:
self.write_index()
except:
self.__op__ = self.__index__
open('index.html', 'w').write(self.__op__)
def __add_err__(self, err):
__err__ = err.capitalize()
self.__errs__.append(__err__)
def __add__(self, content):
try:
self.__content__ = self.__content__ + content
except:
self.__add_err__('root adding error')
def add_html(self,html):
self.__add__(html)
def add_component(self, component):
if ".html" in component:
component = component.replace('.html', '')
try:
self.__add__(open(f"components/{component}.html", 'r').read())
except:
self.__errs__.append(f'Create {component}.html in components folder')
def add_page(self, page):
if ".html" in page:
page = page.replace('.html', '')
try:
self.__add__(open(f"pages/{page}.html", 'r').read())
except:
self.__errs__.append(
f"Your page not found ({page}.html). Please create your pages in pages folder")
def add_css(self, css_file):
if ".css" in css_file:
css_file = css_file.replace('.css', '')
try:
self.__op__ = self.__op__.replace(
'/* {{style}} */', open(f'static/css/{css_file}.css', 'r').read() + "\n" + "/* {{style}} */")
except:
self.__errs__.append(
f"Your css file is not found ({css_file}.css). Please create your css file in this path => /static/css/{css_file}.css")
def add_js(self, js_file):
if ".js" in js_file:
js_file = js_file.replace('.js', '')
try:
self.__op__ = self.__op__.replace(
'// {{script}}', open(f'static/js/{js_file}.js', 'r').read() + "\n" + "// {{script}}")
except:
self.__errs__.append(f"Your JS file is not found ({js_file}.js). Please create your JS file in this path => /static/js/{js_file}.js")
def add_body_onload(self, func):
self.__op__ = self.__op__.replace("body onload=''", f"body onload='{func}()'")
def add_var(self, var, content):
if f"const {var} = ''" in self.__op__:
content = f"const {var} = '{content}'"
self.__op__ = self.op.replace(f"const {var} = ''", content)
elif f'const {var} = ""' in self.__op__:
content = f'const {var} = "{content}"'
self.__op__ = self.__op__.replace(f'const {var} = ""', content)
else:
self.__errs__.append(f'please add an empty var like this : const {var} = "" ')
def check_err(self):
if self.__errs__ == []:
return self.__op__
else:
return "<h2>" + str(self.__errs__).replace(',', '<br>').replace('[', '').replace(']', '').replace("'", "") + "</h2>"
def __clear__(self):
if self.__content__ == "":
self.__content__ = self.__welcome__
self.__op__ = self.__op__.replace('{{root}}', self.__content__)
self.__op__ = self.__op__.replace('/* {{style}} */', '')
self.__op__ = self.__op__.replace('// {{script}}', '')
def export(self):
self.__op__ = self.__op__.replace('{{title}}',self.title)
self.__clear__()
return self.check_err()
| class Page:
__index__ = '<!DOCTYPE html>\n<html lang="en">\n\n<head>\n <meta charset="UTF-8">\n <meta http-equiv="X-UA-Compatible" content="IE=edge">\n <meta name="viewport" content="width=device-width, initial-scale=1.0">\n <title>{{title}}</title>\n <!-- ADD YOUR CSS & CDN HERE WHICH IS APPLICABLE TO ALL PAGES -->\n <style>\n /* {{style}} */\n </style>\n <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"\n integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />\n</head>\n\n<body onload=\'\'>\n {{root}}\n <script>\n // {{script}}\n </script>\n <!-- ADD YOUR JS & CDN HERE WHICH IS APPLICABLE TO ALL PAGES -->\n</body>\n</html>'
def __write_index__(self):
open('index.html', 'w').write(self.__index__)
def __init__(self, name):
self.name = name.capitalize()
self.__errs__ = []
self.title = 'Document'
self.__welcome__ = f"<center><h1 class='fw-light'>PyFlit</h1></center><h2 class='fw-light'>Template : {self.name} <br> Running Successful</h2>"
self.__content__ = ''
try:
self.__op__ = open(f'index.html').read()
if '<title>{{title}}</title>' not in self.__op__:
self.write_index()
if '/* {{style}} */' not in self.__op__:
self.write_index()
if '{{root}}' not in self.__op__:
self.write_index()
if '// {{script}}' not in self.__op__:
self.write_index()
except:
self.__op__ = self.__index__
open('index.html', 'w').write(self.__op__)
def __add_err__(self, err):
__err__ = err.capitalize()
self.__errs__.append(__err__)
def __add__(self, content):
try:
self.__content__ = self.__content__ + content
except:
self.__add_err__('root adding error')
def add_html(self, html):
self.__add__(html)
def add_component(self, component):
if '.html' in component:
component = component.replace('.html', '')
try:
self.__add__(open(f'components/{component}.html', 'r').read())
except:
self.__errs__.append(f'Create {component}.html in components folder')
def add_page(self, page):
if '.html' in page:
page = page.replace('.html', '')
try:
self.__add__(open(f'pages/{page}.html', 'r').read())
except:
self.__errs__.append(f'Your page not found ({page}.html). Please create your pages in pages folder')
def add_css(self, css_file):
if '.css' in css_file:
css_file = css_file.replace('.css', '')
try:
self.__op__ = self.__op__.replace('/* {{style}} */', open(f'static/css/{css_file}.css', 'r').read() + '\n' + '/* {{style}} */')
except:
self.__errs__.append(f'Your css file is not found ({css_file}.css). Please create your css file in this path => /static/css/{css_file}.css')
def add_js(self, js_file):
if '.js' in js_file:
js_file = js_file.replace('.js', '')
try:
self.__op__ = self.__op__.replace('// {{script}}', open(f'static/js/{js_file}.js', 'r').read() + '\n' + '// {{script}}')
except:
self.__errs__.append(f'Your JS file is not found ({js_file}.js). Please create your JS file in this path => /static/js/{js_file}.js')
def add_body_onload(self, func):
self.__op__ = self.__op__.replace("body onload=''", f"body onload='{func}()'")
def add_var(self, var, content):
if f"const {var} = ''" in self.__op__:
content = f"const {var} = '{content}'"
self.__op__ = self.op.replace(f"const {var} = ''", content)
elif f'const {var} = ""' in self.__op__:
content = f'const {var} = "{content}"'
self.__op__ = self.__op__.replace(f'const {var} = ""', content)
else:
self.__errs__.append(f'please add an empty var like this : const {var} = "" ')
def check_err(self):
if self.__errs__ == []:
return self.__op__
else:
return '<h2>' + str(self.__errs__).replace(',', '<br>').replace('[', '').replace(']', '').replace("'", '') + '</h2>'
def __clear__(self):
if self.__content__ == '':
self.__content__ = self.__welcome__
self.__op__ = self.__op__.replace('{{root}}', self.__content__)
self.__op__ = self.__op__.replace('/* {{style}} */', '')
self.__op__ = self.__op__.replace('// {{script}}', '')
def export(self):
self.__op__ = self.__op__.replace('{{title}}', self.title)
self.__clear__()
return self.check_err() |
def display(g):
for y in range(g.height):
for x in range(g.width):
digit, snake = g(x, y)
if snake:
print("[{}]".format(digit), end="")
else:
print(" {} ".format(digit), end="")
if x % 3 == 2:
print(" ", end="")
print()
if y % 3 == 2:
print()
| def display(g):
for y in range(g.height):
for x in range(g.width):
(digit, snake) = g(x, y)
if snake:
print('[{}]'.format(digit), end='')
else:
print(' {} '.format(digit), end='')
if x % 3 == 2:
print(' ', end='')
print()
if y % 3 == 2:
print() |
#===============================================================
# DMXIS Macro (c) 2010 db audioware limited
#===============================================================
found = False
for ch in GetAllSelCh(True):
nm = GetChName(ch)
if nm=="Pan" or nm=="Tilt":
SelectCh(ch, 1)
found = True
else:
SelectCh(ch, 0)
if not found: Message("No Pan/Tilt channels found!") | found = False
for ch in get_all_sel_ch(True):
nm = get_ch_name(ch)
if nm == 'Pan' or nm == 'Tilt':
select_ch(ch, 1)
found = True
else:
select_ch(ch, 0)
if not found:
message('No Pan/Tilt channels found!') |
s = ''
i = 1
while (True):
s = s + str(i)
i = i + 1
if len(s) > 1000000:
break
print(i)
r = 1
r = r * int(s[1 - 1])
r = r * int(s[10 - 1])
r = r * int(s[100 - 1])
r = r * int(s[1000 - 1])
r = r * int(s[10000 - 1])
r = r * int(s[100000 - 1])
r = r * int(s[1000000 - 1])
print("result = ", r)
| s = ''
i = 1
while True:
s = s + str(i)
i = i + 1
if len(s) > 1000000:
break
print(i)
r = 1
r = r * int(s[1 - 1])
r = r * int(s[10 - 1])
r = r * int(s[100 - 1])
r = r * int(s[1000 - 1])
r = r * int(s[10000 - 1])
r = r * int(s[100000 - 1])
r = r * int(s[1000000 - 1])
print('result = ', r) |
ENTRY_POINT = 'maximum'
#[PROMPT]
def maximum(arr, k):
"""
Given an array arr of integers and a positive integer k, return a sorted list
of length k with the maximum k numbers in arr.
Example 1:
Input: arr = [-3, -4, 5], k = 3
Output: [-4, -3, 5]
Example 2:
Input: arr = [4, -4, 4], k = 2
Output: [4, 4]
Example 3:
Input: arr = [-3, 2, 1, 2, -1, -2, 1], k = 1
Output: [2]
Note:
1. The length of the array will be in the range of [1, 1000].
2. The elements in the array will be in the range of [-1000, 1000].
3. 0 <= k <= len(arr)
"""
#[SOLUTION]
if k == 0:
return []
arr.sort()
ans = arr[-k:]
return ans
#[CHECK]
def check(candidate):
# Check some simple cases
assert candidate([-3, -4, 5], 3) == [-4, -3, 5]
assert candidate([4, -4, 4], 2) == [4, 4]
assert candidate([-3, 2, 1, 2, -1, -2, 1], 1) == [2]
assert candidate([123, -123, 20, 0 , 1, 2, -3], 3) == [2, 20, 123]
assert candidate([-123, 20, 0 , 1, 2, -3], 4) == [0, 1, 2, 20]
assert candidate([5, 15, 0, 3, -13, -8, 0], 7) == [-13, -8, 0, 0, 3, 5, 15]
assert candidate([-1, 0, 2, 5, 3, -10], 2) == [3, 5]
assert candidate([1, 0, 5, -7], 1) == [5]
assert candidate([4, -4], 2) == [-4, 4]
assert candidate([-10, 10], 2) == [-10, 10]
# Check some edge cases that are easy to work out by hand.
assert candidate([1, 2, 3, -23, 243, -400, 0], 0) == []
| entry_point = 'maximum'
def maximum(arr, k):
"""
Given an array arr of integers and a positive integer k, return a sorted list
of length k with the maximum k numbers in arr.
Example 1:
Input: arr = [-3, -4, 5], k = 3
Output: [-4, -3, 5]
Example 2:
Input: arr = [4, -4, 4], k = 2
Output: [4, 4]
Example 3:
Input: arr = [-3, 2, 1, 2, -1, -2, 1], k = 1
Output: [2]
Note:
1. The length of the array will be in the range of [1, 1000].
2. The elements in the array will be in the range of [-1000, 1000].
3. 0 <= k <= len(arr)
"""
if k == 0:
return []
arr.sort()
ans = arr[-k:]
return ans
def check(candidate):
assert candidate([-3, -4, 5], 3) == [-4, -3, 5]
assert candidate([4, -4, 4], 2) == [4, 4]
assert candidate([-3, 2, 1, 2, -1, -2, 1], 1) == [2]
assert candidate([123, -123, 20, 0, 1, 2, -3], 3) == [2, 20, 123]
assert candidate([-123, 20, 0, 1, 2, -3], 4) == [0, 1, 2, 20]
assert candidate([5, 15, 0, 3, -13, -8, 0], 7) == [-13, -8, 0, 0, 3, 5, 15]
assert candidate([-1, 0, 2, 5, 3, -10], 2) == [3, 5]
assert candidate([1, 0, 5, -7], 1) == [5]
assert candidate([4, -4], 2) == [-4, 4]
assert candidate([-10, 10], 2) == [-10, 10]
assert candidate([1, 2, 3, -23, 243, -400, 0], 0) == [] |
class WeightedFalseNegativeLossMetric:
def map(self, predicted, actual, weight, offset, model):
cost_tp = 5000 # set prior to use
cost_tn = 0 # do not change
cost_fp = cost_tp # do not change
cost_fn = weight # do not change
y = actual[0]
p = predicted[2] # [class, p0, p1]
if y == 1:
denom = cost_fn
else:
denom = cost_fp
return [(y * (1 - p) * cost_fn) + (p * cost_fp), denom]
def reduce(self, left, right):
return [left[0] + right[0], left[1] + right[1]]
def metric(self, last):
return last[0] / last[1]
| class Weightedfalsenegativelossmetric:
def map(self, predicted, actual, weight, offset, model):
cost_tp = 5000
cost_tn = 0
cost_fp = cost_tp
cost_fn = weight
y = actual[0]
p = predicted[2]
if y == 1:
denom = cost_fn
else:
denom = cost_fp
return [y * (1 - p) * cost_fn + p * cost_fp, denom]
def reduce(self, left, right):
return [left[0] + right[0], left[1] + right[1]]
def metric(self, last):
return last[0] / last[1] |
# refer from:
# https://leetcode.com/problems/flatten-binary-tree-to-linked-list/solution/
# 2. Iterative Morris traversal
class Solution:
def flatten(self, root: TreeNode) -> None:
"""
Do not return anything, modify root in-place instead.
"""
# Handle the null scenario
if not root:
return None
node = root
while node:
# If the node has a left child
if node.left:
# Find the rightmost node
rightmost = node.left
while rightmost.right:
rightmost = rightmost.right
# rewire the connections
rightmost.right = node.right
node.right = node.left
node.left = None
# move on to the right side of the tree
node = node.right
# Time: O(N)
# Space:O(1)
# 3.Use reversed preorder traversal
# find rightmost node first, then back to left from bottom to top
# preorder is root -> left -> right, here is right -> left -> root
def __init__(self):
self.prev = None
def flatten(self, root):
if not root:
return None
self.flatten(root.right)
self.flatten(root.left)
root.right = self.prev
root.left = None
self.prev = root
# Time: O(N)
# Space:O(1) | class Solution:
def flatten(self, root: TreeNode) -> None:
"""
Do not return anything, modify root in-place instead.
"""
if not root:
return None
node = root
while node:
if node.left:
rightmost = node.left
while rightmost.right:
rightmost = rightmost.right
rightmost.right = node.right
node.right = node.left
node.left = None
node = node.right
def __init__(self):
self.prev = None
def flatten(self, root):
if not root:
return None
self.flatten(root.right)
self.flatten(root.left)
root.right = self.prev
root.left = None
self.prev = root |
""" Grading """
def gradingStudents(grades):
result = []
for rec in grades:
if rec < 38:
result.append(rec)
else:
reminder = rec % 5
quotient = rec // 5
result.append(5*(quotient+1) if reminder > 2 else rec)
return result
if __name__ == "__main__":
res = gradingStudents([73, 67, 38, 33])
print(res)
| """ Grading """
def grading_students(grades):
result = []
for rec in grades:
if rec < 38:
result.append(rec)
else:
reminder = rec % 5
quotient = rec // 5
result.append(5 * (quotient + 1) if reminder > 2 else rec)
return result
if __name__ == '__main__':
res = grading_students([73, 67, 38, 33])
print(res) |
# PROBLEM LINK:- https://leetcode.com/problems/reach-a-number/
class Solution:
def reachNumber(self, target: int) -> int:
target = abs(target)
res = 0
sum = 0
while sum < target or (sum - target)%2 != 0:
res += 1
sum += res
return res
| class Solution:
def reach_number(self, target: int) -> int:
target = abs(target)
res = 0
sum = 0
while sum < target or (sum - target) % 2 != 0:
res += 1
sum += res
return res |
def sanitize_supply_cost(a, cost, name):
if cost is None:
cost = a.default_cost
if len(a.cost_names) > 1:
a.log.info("Using default cost, {}, for {}.".format(cost, name))
if cost not in a.cost_names:
raise ValueError("{} not an available cost.".format(cost))
return cost
def sanitize_demand_cost(a, cost, name):
if cost is None:
cost = a.neighbor_default_cost
if len(a.cost_names) > 1:
a.log.info("Using default neighbor cost, {}, for {}.".format(cost, name))
if cost not in a.neighbor_cost_names:
raise ValueError("{} not an available neighbor cost.".format(cost))
return cost
def sanitize_supplies(a, supply_values):
if type(supply_values) is str:
supply_values = [supply_values]
elif supply_values is None:
supply_values = a.supply_types
elif type(supply_values) is not list:
raise ValueError("supply_values should be a list or string (or -- default -- None)")
return supply_values
def normalized_access(a, columns):
mean_access_values = a.access_df[columns]\
.multiply(a.access_df[a.demand_value], axis = 0).sum() \
/ a.access_df[a.demand_value].sum()
return a.access_df[columns].divide(mean_access_values)
| def sanitize_supply_cost(a, cost, name):
if cost is None:
cost = a.default_cost
if len(a.cost_names) > 1:
a.log.info('Using default cost, {}, for {}.'.format(cost, name))
if cost not in a.cost_names:
raise value_error('{} not an available cost.'.format(cost))
return cost
def sanitize_demand_cost(a, cost, name):
if cost is None:
cost = a.neighbor_default_cost
if len(a.cost_names) > 1:
a.log.info('Using default neighbor cost, {}, for {}.'.format(cost, name))
if cost not in a.neighbor_cost_names:
raise value_error('{} not an available neighbor cost.'.format(cost))
return cost
def sanitize_supplies(a, supply_values):
if type(supply_values) is str:
supply_values = [supply_values]
elif supply_values is None:
supply_values = a.supply_types
elif type(supply_values) is not list:
raise value_error('supply_values should be a list or string (or -- default -- None)')
return supply_values
def normalized_access(a, columns):
mean_access_values = a.access_df[columns].multiply(a.access_df[a.demand_value], axis=0).sum() / a.access_df[a.demand_value].sum()
return a.access_df[columns].divide(mean_access_values) |
# Copyright (c) 2011-2020, Manfred Moitzi
# License: MIT License
class Options:
def __init__(self):
self.filter_invalid_xdata_group_codes = False
self.default_text_style = 'OpenSans'
self.default_dimension_text_style = 'OpenSansCondensed-Light'
# debugging
self.log_unprocessed_tags = True
# Proxy graphic handling:
# Set 'load_proxy_graphics' to True for loading proxy graphics
self.load_proxy_graphics = False
# Set 'store_proxy_graphics' to True for exporting proxy graphics
self.store_proxy_graphics = False
# Enable this option to always create same meta data for testing
# scenarios, e.g. to use a diff like tool to compare DXF documents.
self.write_fixed_meta_data_for_testing = False
def preserve_proxy_graphics(self):
""" Enable proxy graphic load/store support. """
self.load_proxy_graphics = True
self.store_proxy_graphics = True
# Global Options
options = Options()
| class Options:
def __init__(self):
self.filter_invalid_xdata_group_codes = False
self.default_text_style = 'OpenSans'
self.default_dimension_text_style = 'OpenSansCondensed-Light'
self.log_unprocessed_tags = True
self.load_proxy_graphics = False
self.store_proxy_graphics = False
self.write_fixed_meta_data_for_testing = False
def preserve_proxy_graphics(self):
""" Enable proxy graphic load/store support. """
self.load_proxy_graphics = True
self.store_proxy_graphics = True
options = options() |
class Solution(object):
def isValid(self, s):
"""
:type s: str
:rtype: bool
"""
stack = []
for c in s:
if c in ('(', '[', '{'):
stack.append(c)
else:
if not stack:
return False
p = stack.pop()
if not (c == ')' and p == '(' or c == ']' and p == '[' or c == '}' and p == '{'):
return False
return not stack
| class Solution(object):
def is_valid(self, s):
"""
:type s: str
:rtype: bool
"""
stack = []
for c in s:
if c in ('(', '[', '{'):
stack.append(c)
else:
if not stack:
return False
p = stack.pop()
if not (c == ')' and p == '(' or (c == ']' and p == '[') or (c == '}' and p == '{')):
return False
return not stack |
class Solution:
def longestPalindrome(self, s):
slen = len(s)
longest = ''
longest_len = 0
for i in range(1, slen-1):
loops+=1
l, r = i-1, i+1
subs = s[i]
while l >= 0 and r < slen:
if s[l] != s[r]:
if s[r] == s[i]:
l+=1
subs = ''
else:
break
subs = s[l] + subs + s[r]
l -= 1
r += 1
loops+=1
subs_len = i - l
if subs_len > 1:
if subs_len > longest_len:
longest_len = subs_len
longest = subs
return longest
# Test program
s = "tracecars"
print(str(Solution().longestPalindrome(s)))
# racecar
| class Solution:
def longest_palindrome(self, s):
slen = len(s)
longest = ''
longest_len = 0
for i in range(1, slen - 1):
loops += 1
(l, r) = (i - 1, i + 1)
subs = s[i]
while l >= 0 and r < slen:
if s[l] != s[r]:
if s[r] == s[i]:
l += 1
subs = ''
else:
break
subs = s[l] + subs + s[r]
l -= 1
r += 1
loops += 1
subs_len = i - l
if subs_len > 1:
if subs_len > longest_len:
longest_len = subs_len
longest = subs
return longest
s = 'tracecars'
print(str(solution().longestPalindrome(s))) |
class TrieNode:
def __init__(self):
self.children = {}
self.word = None
class Solution:
def findWords(self, board: List[List[str]], words: List[str]) -> List[str]:
root = TrieNode()
r, c = len(board), len(board[0])
for w in words:
cur = root
for l in w:
if not cur.children.get(l):
cur.children[l] = TrieNode()
cur = cur.children[l]
cur.word = w
def subfun(tboard, i, j, curNode, fro):
if i >= r or j >= c or i < 0 or j < 0:
return
l = tboard[i][j]
if curNode.children.get(l):
curNode = curNode.children[l]
tboard[i][j] = "#"
if curNode.word:
output.append(curNode.word)
curNode.word = None
if fro != "right":
subfun(tboard, i, j+1, curNode, "left")
if fro != "left":
subfun(tboard, i, j-1, curNode, "right")
if fro != "top":
subfun(tboard, i-1, j, curNode, "blew")
if fro != "blew":
subfun(tboard, i+1, j, curNode, "top")
tboard[i][j] = l
output = []
for i in range(r):
for j in range(c):
subfun(board, i, j, root, None)
return output
| class Trienode:
def __init__(self):
self.children = {}
self.word = None
class Solution:
def find_words(self, board: List[List[str]], words: List[str]) -> List[str]:
root = trie_node()
(r, c) = (len(board), len(board[0]))
for w in words:
cur = root
for l in w:
if not cur.children.get(l):
cur.children[l] = trie_node()
cur = cur.children[l]
cur.word = w
def subfun(tboard, i, j, curNode, fro):
if i >= r or j >= c or i < 0 or (j < 0):
return
l = tboard[i][j]
if curNode.children.get(l):
cur_node = curNode.children[l]
tboard[i][j] = '#'
if curNode.word:
output.append(curNode.word)
curNode.word = None
if fro != 'right':
subfun(tboard, i, j + 1, curNode, 'left')
if fro != 'left':
subfun(tboard, i, j - 1, curNode, 'right')
if fro != 'top':
subfun(tboard, i - 1, j, curNode, 'blew')
if fro != 'blew':
subfun(tboard, i + 1, j, curNode, 'top')
tboard[i][j] = l
output = []
for i in range(r):
for j in range(c):
subfun(board, i, j, root, None)
return output |
#
# PySNMP MIB module Unisphere-Data-DVMRP-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Unisphere-Data-DVMRP-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 21:23:44 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint")
dvmrpInterfaceEntry, = mibBuilder.importSymbols("DVMRP-STD-MIB", "dvmrpInterfaceEntry")
InterfaceIndex, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex")
NotificationGroup, ObjectGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ObjectGroup", "ModuleCompliance")
NotificationType, MibIdentifier, TimeTicks, IpAddress, Bits, Integer32, iso, Counter64, ObjectIdentity, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, Counter32, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "MibIdentifier", "TimeTicks", "IpAddress", "Bits", "Integer32", "iso", "Counter64", "ObjectIdentity", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "Counter32", "Unsigned32")
TextualConvention, DisplayString, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "RowStatus")
usDataMibs, = mibBuilder.importSymbols("Unisphere-Data-MIBs", "usDataMibs")
usdDvmrpMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44))
usdDvmrpMIB.setRevisions(('2001-05-11 15:46',))
if mibBuilder.loadTexts: usdDvmrpMIB.setLastUpdated('200105111546Z')
if mibBuilder.loadTexts: usdDvmrpMIB.setOrganization('Unisphere Networks, Inc.')
usdDvmrpMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1))
usdDvmrp = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1))
usdDvmrpScalar = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1))
usdDvmrpAdminState = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: usdDvmrpAdminState.setStatus('current')
usdDvmrpMcastAdminState = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: usdDvmrpMcastAdminState.setStatus('current')
usdDvmrpRouteHogNotification = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: usdDvmrpRouteHogNotification.setStatus('current')
usdDvmrpRouteLimit = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: usdDvmrpRouteLimit.setStatus('current')
usdDvmrpS32PrunesOnly = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: usdDvmrpS32PrunesOnly.setStatus('current')
usdDvmrpAclDistNbrTable = MibTable((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2), )
if mibBuilder.loadTexts: usdDvmrpAclDistNbrTable.setStatus('current')
usdDvmrpAclDistNbrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1), ).setIndexNames((0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpAclDistNbrIfIndex"), (0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpAclDistNbrAclListName"))
if mibBuilder.loadTexts: usdDvmrpAclDistNbrEntry.setStatus('current')
usdDvmrpAclDistNbrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: usdDvmrpAclDistNbrIfIndex.setStatus('current')
usdDvmrpAclDistNbrAclListName = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 80)))
if mibBuilder.loadTexts: usdDvmrpAclDistNbrAclListName.setStatus('current')
usdDvmrpAclDistNbrDistance = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: usdDvmrpAclDistNbrDistance.setStatus('current')
usdDvmrpAclDistNbrNbrListName = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 80))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: usdDvmrpAclDistNbrNbrListName.setStatus('current')
usdDvmrpAclDistNbrStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 5), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: usdDvmrpAclDistNbrStatus.setStatus('current')
usdDvmrpLocalAddrTable = MibTable((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3), )
if mibBuilder.loadTexts: usdDvmrpLocalAddrTable.setStatus('current')
usdDvmrpLocalAddrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3, 1), ).setIndexNames((0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpLocalAddrIfIndex"), (0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpLocalAddrAddrOrIfIndex"))
if mibBuilder.loadTexts: usdDvmrpLocalAddrTableEntry.setStatus('current')
usdDvmrpLocalAddrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: usdDvmrpLocalAddrIfIndex.setStatus('current')
usdDvmrpLocalAddrAddrOrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3, 1, 2), Unsigned32())
if mibBuilder.loadTexts: usdDvmrpLocalAddrAddrOrIfIndex.setStatus('current')
usdDvmrpLocalAddrMask = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: usdDvmrpLocalAddrMask.setStatus('current')
usdDvmrpSummaryAddrTable = MibTable((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4), )
if mibBuilder.loadTexts: usdDvmrpSummaryAddrTable.setStatus('current')
usdDvmrpSummaryAddrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1), ).setIndexNames((0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpSummaryAddrIfIndex"), (0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpSummaryAddrAddress"), (0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpSummaryAddrMask"))
if mibBuilder.loadTexts: usdDvmrpSummaryAddrTableEntry.setStatus('current')
usdDvmrpSummaryAddrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: usdDvmrpSummaryAddrIfIndex.setStatus('current')
usdDvmrpSummaryAddrAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 2), IpAddress())
if mibBuilder.loadTexts: usdDvmrpSummaryAddrAddress.setStatus('current')
usdDvmrpSummaryAddrMask = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 3), IpAddress())
if mibBuilder.loadTexts: usdDvmrpSummaryAddrMask.setStatus('current')
usdDvmrpSummaryAddrCost = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 32)).clone(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: usdDvmrpSummaryAddrCost.setStatus('current')
usdDvmrpSummaryAddrStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 5), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: usdDvmrpSummaryAddrStatus.setStatus('current')
usdDvmrpInterfaceTable = MibTable((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5), )
if mibBuilder.loadTexts: usdDvmrpInterfaceTable.setStatus('current')
usdDvmrpInterfaceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1), )
dvmrpInterfaceEntry.registerAugmentions(("Unisphere-Data-DVMRP-MIB", "usdDvmrpInterfaceEntry"))
usdDvmrpInterfaceEntry.setIndexNames(*dvmrpInterfaceEntry.getIndexNames())
if mibBuilder.loadTexts: usdDvmrpInterfaceEntry.setStatus('current')
usdDvmrpInterfaceAutoSummary = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: usdDvmrpInterfaceAutoSummary.setStatus('current')
usdDvmrpInterfaceMetricOffsetOut = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 31))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: usdDvmrpInterfaceMetricOffsetOut.setStatus('current')
usdDvmrpInterfaceMetricOffsetIn = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 31)).clone(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: usdDvmrpInterfaceMetricOffsetIn.setStatus('current')
usdDvmrpInterfaceAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: usdDvmrpInterfaceAdminState.setStatus('current')
usdDvmrpPruneTable = MibTable((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6), )
if mibBuilder.loadTexts: usdDvmrpPruneTable.setStatus('current')
usdDvmrpPruneEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1), ).setIndexNames((0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpPruneGroup"), (0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpPruneSource"), (0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpPruneSourceMask"))
if mibBuilder.loadTexts: usdDvmrpPruneEntry.setStatus('current')
usdDvmrpPruneGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 1), IpAddress())
if mibBuilder.loadTexts: usdDvmrpPruneGroup.setStatus('current')
usdDvmrpPruneSource = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 2), IpAddress())
if mibBuilder.loadTexts: usdDvmrpPruneSource.setStatus('current')
usdDvmrpPruneSourceMask = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 3), IpAddress())
if mibBuilder.loadTexts: usdDvmrpPruneSourceMask.setStatus('current')
usdDvmrpPruneIIFIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 4), InterfaceIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: usdDvmrpPruneIIFIfIndex.setStatus('current')
usdDvmrpPruneUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 5), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: usdDvmrpPruneUpTime.setStatus('current')
usdDvmrpSrcGrpOifTable = MibTable((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7), )
if mibBuilder.loadTexts: usdDvmrpSrcGrpOifTable.setStatus('current')
usdDvmrpSrcGrpOifEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1), ).setIndexNames((0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpSrcGrpOifGroup"), (0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpSrcGrpOifSource"), (0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpSrcGrpOifSourceMask"), (0, "Unisphere-Data-DVMRP-MIB", "usdDvmrpSrcGrpOifOIFIfIndex"))
if mibBuilder.loadTexts: usdDvmrpSrcGrpOifEntry.setStatus('current')
usdDvmrpSrcGrpOifGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 1), IpAddress())
if mibBuilder.loadTexts: usdDvmrpSrcGrpOifGroup.setStatus('current')
usdDvmrpSrcGrpOifSource = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 2), IpAddress())
if mibBuilder.loadTexts: usdDvmrpSrcGrpOifSource.setStatus('current')
usdDvmrpSrcGrpOifSourceMask = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 3), IpAddress())
if mibBuilder.loadTexts: usdDvmrpSrcGrpOifSourceMask.setStatus('current')
usdDvmrpSrcGrpOifOIFIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 4), InterfaceIndex())
if mibBuilder.loadTexts: usdDvmrpSrcGrpOifOIFIfIndex.setStatus('current')
usdDvmrpSrcGrpOifOIFPruned = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("false", 0), ("true", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: usdDvmrpSrcGrpOifOIFPruned.setStatus('current')
usdDvmrpSrcGrpOifOIFDnTTL = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 6), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: usdDvmrpSrcGrpOifOIFDnTTL.setStatus('current')
usdDvmrpTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 0))
usdDvmrpRouteHogNotificationTrap = NotificationType((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 0, 1))
if mibBuilder.loadTexts: usdDvmrpRouteHogNotificationTrap.setStatus('current')
usdDvmrpConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4))
usdDvmrpCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 1))
usdDvmrpGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2))
usdDvmrpCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 1, 1)).setObjects(("Unisphere-Data-DVMRP-MIB", "usdDvmrpBaseGroup"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpAclDistNbrGroup"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpInterfaceGroup"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpSourceGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usdDvmrpCompliance = usdDvmrpCompliance.setStatus('current')
usdDvmrpBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 1)).setObjects(("Unisphere-Data-DVMRP-MIB", "usdDvmrpAdminState"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpMcastAdminState"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpRouteHogNotification"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpRouteLimit"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpS32PrunesOnly"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usdDvmrpBaseGroup = usdDvmrpBaseGroup.setStatus('current')
usdDvmrpAclDistNbrGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 2)).setObjects(("Unisphere-Data-DVMRP-MIB", "usdDvmrpAclDistNbrDistance"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpAclDistNbrNbrListName"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpAclDistNbrStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usdDvmrpAclDistNbrGroup = usdDvmrpAclDistNbrGroup.setStatus('current')
usdDvmrpInterfaceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 3)).setObjects(("Unisphere-Data-DVMRP-MIB", "usdDvmrpLocalAddrMask"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpSummaryAddrCost"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpSummaryAddrStatus"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpInterfaceAutoSummary"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpInterfaceMetricOffsetOut"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpInterfaceMetricOffsetIn"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpInterfaceAdminState"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usdDvmrpInterfaceGroup = usdDvmrpInterfaceGroup.setStatus('current')
usdDvmrpSourceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 4)).setObjects(("Unisphere-Data-DVMRP-MIB", "usdDvmrpPruneIIFIfIndex"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpPruneUpTime"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpSrcGrpOifOIFPruned"), ("Unisphere-Data-DVMRP-MIB", "usdDvmrpSrcGrpOifOIFDnTTL"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usdDvmrpSourceGroup = usdDvmrpSourceGroup.setStatus('current')
usdDvmrpNotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 8)).setObjects(("Unisphere-Data-DVMRP-MIB", "usdDvmrpRouteHogNotificationTrap"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usdDvmrpNotificationGroup = usdDvmrpNotificationGroup.setStatus('current')
mibBuilder.exportSymbols("Unisphere-Data-DVMRP-MIB", usdDvmrpSrcGrpOifOIFIfIndex=usdDvmrpSrcGrpOifOIFIfIndex, usdDvmrpInterfaceAdminState=usdDvmrpInterfaceAdminState, usdDvmrpRouteHogNotification=usdDvmrpRouteHogNotification, usdDvmrp=usdDvmrp, usdDvmrpS32PrunesOnly=usdDvmrpS32PrunesOnly, usdDvmrpLocalAddrTableEntry=usdDvmrpLocalAddrTableEntry, usdDvmrpLocalAddrIfIndex=usdDvmrpLocalAddrIfIndex, usdDvmrpSrcGrpOifGroup=usdDvmrpSrcGrpOifGroup, usdDvmrpAclDistNbrStatus=usdDvmrpAclDistNbrStatus, usdDvmrpSummaryAddrCost=usdDvmrpSummaryAddrCost, usdDvmrpPruneSourceMask=usdDvmrpPruneSourceMask, usdDvmrpScalar=usdDvmrpScalar, usdDvmrpLocalAddrMask=usdDvmrpLocalAddrMask, usdDvmrpAclDistNbrTable=usdDvmrpAclDistNbrTable, usdDvmrpMIB=usdDvmrpMIB, usdDvmrpInterfaceAutoSummary=usdDvmrpInterfaceAutoSummary, usdDvmrpInterfaceTable=usdDvmrpInterfaceTable, usdDvmrpSrcGrpOifOIFDnTTL=usdDvmrpSrcGrpOifOIFDnTTL, usdDvmrpAdminState=usdDvmrpAdminState, usdDvmrpConformance=usdDvmrpConformance, usdDvmrpAclDistNbrEntry=usdDvmrpAclDistNbrEntry, usdDvmrpGroups=usdDvmrpGroups, usdDvmrpNotificationGroup=usdDvmrpNotificationGroup, usdDvmrpPruneEntry=usdDvmrpPruneEntry, usdDvmrpPruneUpTime=usdDvmrpPruneUpTime, usdDvmrpTraps=usdDvmrpTraps, usdDvmrpRouteLimit=usdDvmrpRouteLimit, usdDvmrpInterfaceGroup=usdDvmrpInterfaceGroup, usdDvmrpSummaryAddrTable=usdDvmrpSummaryAddrTable, usdDvmrpSrcGrpOifOIFPruned=usdDvmrpSrcGrpOifOIFPruned, usdDvmrpInterfaceEntry=usdDvmrpInterfaceEntry, usdDvmrpPruneTable=usdDvmrpPruneTable, usdDvmrpBaseGroup=usdDvmrpBaseGroup, usdDvmrpSourceGroup=usdDvmrpSourceGroup, usdDvmrpSummaryAddrAddress=usdDvmrpSummaryAddrAddress, usdDvmrpInterfaceMetricOffsetIn=usdDvmrpInterfaceMetricOffsetIn, usdDvmrpSummaryAddrIfIndex=usdDvmrpSummaryAddrIfIndex, PYSNMP_MODULE_ID=usdDvmrpMIB, usdDvmrpLocalAddrTable=usdDvmrpLocalAddrTable, usdDvmrpAclDistNbrAclListName=usdDvmrpAclDistNbrAclListName, usdDvmrpSrcGrpOifSourceMask=usdDvmrpSrcGrpOifSourceMask, usdDvmrpSummaryAddrMask=usdDvmrpSummaryAddrMask, usdDvmrpSrcGrpOifEntry=usdDvmrpSrcGrpOifEntry, usdDvmrpCompliances=usdDvmrpCompliances, usdDvmrpCompliance=usdDvmrpCompliance, usdDvmrpPruneSource=usdDvmrpPruneSource, usdDvmrpPruneIIFIfIndex=usdDvmrpPruneIIFIfIndex, usdDvmrpMcastAdminState=usdDvmrpMcastAdminState, usdDvmrpSrcGrpOifSource=usdDvmrpSrcGrpOifSource, usdDvmrpAclDistNbrIfIndex=usdDvmrpAclDistNbrIfIndex, usdDvmrpAclDistNbrDistance=usdDvmrpAclDistNbrDistance, usdDvmrpAclDistNbrGroup=usdDvmrpAclDistNbrGroup, usdDvmrpMIBObjects=usdDvmrpMIBObjects, usdDvmrpSrcGrpOifTable=usdDvmrpSrcGrpOifTable, usdDvmrpLocalAddrAddrOrIfIndex=usdDvmrpLocalAddrAddrOrIfIndex, usdDvmrpAclDistNbrNbrListName=usdDvmrpAclDistNbrNbrListName, usdDvmrpSummaryAddrStatus=usdDvmrpSummaryAddrStatus, usdDvmrpInterfaceMetricOffsetOut=usdDvmrpInterfaceMetricOffsetOut, usdDvmrpSummaryAddrTableEntry=usdDvmrpSummaryAddrTableEntry, usdDvmrpPruneGroup=usdDvmrpPruneGroup, usdDvmrpRouteHogNotificationTrap=usdDvmrpRouteHogNotificationTrap)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_union, constraints_intersection, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint')
(dvmrp_interface_entry,) = mibBuilder.importSymbols('DVMRP-STD-MIB', 'dvmrpInterfaceEntry')
(interface_index,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex')
(notification_group, object_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ObjectGroup', 'ModuleCompliance')
(notification_type, mib_identifier, time_ticks, ip_address, bits, integer32, iso, counter64, object_identity, module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, counter32, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'MibIdentifier', 'TimeTicks', 'IpAddress', 'Bits', 'Integer32', 'iso', 'Counter64', 'ObjectIdentity', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'Counter32', 'Unsigned32')
(textual_convention, display_string, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'RowStatus')
(us_data_mibs,) = mibBuilder.importSymbols('Unisphere-Data-MIBs', 'usDataMibs')
usd_dvmrp_mib = module_identity((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44))
usdDvmrpMIB.setRevisions(('2001-05-11 15:46',))
if mibBuilder.loadTexts:
usdDvmrpMIB.setLastUpdated('200105111546Z')
if mibBuilder.loadTexts:
usdDvmrpMIB.setOrganization('Unisphere Networks, Inc.')
usd_dvmrp_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1))
usd_dvmrp = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1))
usd_dvmrp_scalar = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1))
usd_dvmrp_admin_state = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
usdDvmrpAdminState.setStatus('current')
usd_dvmrp_mcast_admin_state = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
usdDvmrpMcastAdminState.setStatus('current')
usd_dvmrp_route_hog_notification = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
usdDvmrpRouteHogNotification.setStatus('current')
usd_dvmrp_route_limit = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
usdDvmrpRouteLimit.setStatus('current')
usd_dvmrp_s32_prunes_only = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
usdDvmrpS32PrunesOnly.setStatus('current')
usd_dvmrp_acl_dist_nbr_table = mib_table((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2))
if mibBuilder.loadTexts:
usdDvmrpAclDistNbrTable.setStatus('current')
usd_dvmrp_acl_dist_nbr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1)).setIndexNames((0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpAclDistNbrIfIndex'), (0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpAclDistNbrAclListName'))
if mibBuilder.loadTexts:
usdDvmrpAclDistNbrEntry.setStatus('current')
usd_dvmrp_acl_dist_nbr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 1), interface_index())
if mibBuilder.loadTexts:
usdDvmrpAclDistNbrIfIndex.setStatus('current')
usd_dvmrp_acl_dist_nbr_acl_list_name = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 80)))
if mibBuilder.loadTexts:
usdDvmrpAclDistNbrAclListName.setStatus('current')
usd_dvmrp_acl_dist_nbr_distance = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
usdDvmrpAclDistNbrDistance.setStatus('current')
usd_dvmrp_acl_dist_nbr_nbr_list_name = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(1, 80))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
usdDvmrpAclDistNbrNbrListName.setStatus('current')
usd_dvmrp_acl_dist_nbr_status = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 2, 1, 5), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
usdDvmrpAclDistNbrStatus.setStatus('current')
usd_dvmrp_local_addr_table = mib_table((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3))
if mibBuilder.loadTexts:
usdDvmrpLocalAddrTable.setStatus('current')
usd_dvmrp_local_addr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3, 1)).setIndexNames((0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpLocalAddrIfIndex'), (0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpLocalAddrAddrOrIfIndex'))
if mibBuilder.loadTexts:
usdDvmrpLocalAddrTableEntry.setStatus('current')
usd_dvmrp_local_addr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3, 1, 1), interface_index())
if mibBuilder.loadTexts:
usdDvmrpLocalAddrIfIndex.setStatus('current')
usd_dvmrp_local_addr_addr_or_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3, 1, 2), unsigned32())
if mibBuilder.loadTexts:
usdDvmrpLocalAddrAddrOrIfIndex.setStatus('current')
usd_dvmrp_local_addr_mask = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 3, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
usdDvmrpLocalAddrMask.setStatus('current')
usd_dvmrp_summary_addr_table = mib_table((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4))
if mibBuilder.loadTexts:
usdDvmrpSummaryAddrTable.setStatus('current')
usd_dvmrp_summary_addr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1)).setIndexNames((0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpSummaryAddrIfIndex'), (0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpSummaryAddrAddress'), (0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpSummaryAddrMask'))
if mibBuilder.loadTexts:
usdDvmrpSummaryAddrTableEntry.setStatus('current')
usd_dvmrp_summary_addr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 1), interface_index())
if mibBuilder.loadTexts:
usdDvmrpSummaryAddrIfIndex.setStatus('current')
usd_dvmrp_summary_addr_address = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 2), ip_address())
if mibBuilder.loadTexts:
usdDvmrpSummaryAddrAddress.setStatus('current')
usd_dvmrp_summary_addr_mask = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 3), ip_address())
if mibBuilder.loadTexts:
usdDvmrpSummaryAddrMask.setStatus('current')
usd_dvmrp_summary_addr_cost = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 32)).clone(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
usdDvmrpSummaryAddrCost.setStatus('current')
usd_dvmrp_summary_addr_status = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 4, 1, 5), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
usdDvmrpSummaryAddrStatus.setStatus('current')
usd_dvmrp_interface_table = mib_table((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5))
if mibBuilder.loadTexts:
usdDvmrpInterfaceTable.setStatus('current')
usd_dvmrp_interface_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1))
dvmrpInterfaceEntry.registerAugmentions(('Unisphere-Data-DVMRP-MIB', 'usdDvmrpInterfaceEntry'))
usdDvmrpInterfaceEntry.setIndexNames(*dvmrpInterfaceEntry.getIndexNames())
if mibBuilder.loadTexts:
usdDvmrpInterfaceEntry.setStatus('current')
usd_dvmrp_interface_auto_summary = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
usdDvmrpInterfaceAutoSummary.setStatus('current')
usd_dvmrp_interface_metric_offset_out = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 31))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
usdDvmrpInterfaceMetricOffsetOut.setStatus('current')
usd_dvmrp_interface_metric_offset_in = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 31)).clone(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
usdDvmrpInterfaceMetricOffsetIn.setStatus('current')
usd_dvmrp_interface_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
usdDvmrpInterfaceAdminState.setStatus('current')
usd_dvmrp_prune_table = mib_table((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6))
if mibBuilder.loadTexts:
usdDvmrpPruneTable.setStatus('current')
usd_dvmrp_prune_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1)).setIndexNames((0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpPruneGroup'), (0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpPruneSource'), (0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpPruneSourceMask'))
if mibBuilder.loadTexts:
usdDvmrpPruneEntry.setStatus('current')
usd_dvmrp_prune_group = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 1), ip_address())
if mibBuilder.loadTexts:
usdDvmrpPruneGroup.setStatus('current')
usd_dvmrp_prune_source = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 2), ip_address())
if mibBuilder.loadTexts:
usdDvmrpPruneSource.setStatus('current')
usd_dvmrp_prune_source_mask = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 3), ip_address())
if mibBuilder.loadTexts:
usdDvmrpPruneSourceMask.setStatus('current')
usd_dvmrp_prune_iif_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 4), interface_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
usdDvmrpPruneIIFIfIndex.setStatus('current')
usd_dvmrp_prune_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 6, 1, 5), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
usdDvmrpPruneUpTime.setStatus('current')
usd_dvmrp_src_grp_oif_table = mib_table((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7))
if mibBuilder.loadTexts:
usdDvmrpSrcGrpOifTable.setStatus('current')
usd_dvmrp_src_grp_oif_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1)).setIndexNames((0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpSrcGrpOifGroup'), (0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpSrcGrpOifSource'), (0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpSrcGrpOifSourceMask'), (0, 'Unisphere-Data-DVMRP-MIB', 'usdDvmrpSrcGrpOifOIFIfIndex'))
if mibBuilder.loadTexts:
usdDvmrpSrcGrpOifEntry.setStatus('current')
usd_dvmrp_src_grp_oif_group = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 1), ip_address())
if mibBuilder.loadTexts:
usdDvmrpSrcGrpOifGroup.setStatus('current')
usd_dvmrp_src_grp_oif_source = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 2), ip_address())
if mibBuilder.loadTexts:
usdDvmrpSrcGrpOifSource.setStatus('current')
usd_dvmrp_src_grp_oif_source_mask = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 3), ip_address())
if mibBuilder.loadTexts:
usdDvmrpSrcGrpOifSourceMask.setStatus('current')
usd_dvmrp_src_grp_oif_oif_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 4), interface_index())
if mibBuilder.loadTexts:
usdDvmrpSrcGrpOifOIFIfIndex.setStatus('current')
usd_dvmrp_src_grp_oif_oif_pruned = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('false', 0), ('true', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
usdDvmrpSrcGrpOifOIFPruned.setStatus('current')
usd_dvmrp_src_grp_oif_oif_dn_ttl = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 7, 1, 6), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
usdDvmrpSrcGrpOifOIFDnTTL.setStatus('current')
usd_dvmrp_traps = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 0))
usd_dvmrp_route_hog_notification_trap = notification_type((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 1, 1, 0, 1))
if mibBuilder.loadTexts:
usdDvmrpRouteHogNotificationTrap.setStatus('current')
usd_dvmrp_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4))
usd_dvmrp_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 1))
usd_dvmrp_groups = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2))
usd_dvmrp_compliance = module_compliance((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 1, 1)).setObjects(('Unisphere-Data-DVMRP-MIB', 'usdDvmrpBaseGroup'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpAclDistNbrGroup'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpInterfaceGroup'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpSourceGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usd_dvmrp_compliance = usdDvmrpCompliance.setStatus('current')
usd_dvmrp_base_group = object_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 1)).setObjects(('Unisphere-Data-DVMRP-MIB', 'usdDvmrpAdminState'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpMcastAdminState'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpRouteHogNotification'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpRouteLimit'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpS32PrunesOnly'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usd_dvmrp_base_group = usdDvmrpBaseGroup.setStatus('current')
usd_dvmrp_acl_dist_nbr_group = object_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 2)).setObjects(('Unisphere-Data-DVMRP-MIB', 'usdDvmrpAclDistNbrDistance'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpAclDistNbrNbrListName'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpAclDistNbrStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usd_dvmrp_acl_dist_nbr_group = usdDvmrpAclDistNbrGroup.setStatus('current')
usd_dvmrp_interface_group = object_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 3)).setObjects(('Unisphere-Data-DVMRP-MIB', 'usdDvmrpLocalAddrMask'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpSummaryAddrCost'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpSummaryAddrStatus'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpInterfaceAutoSummary'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpInterfaceMetricOffsetOut'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpInterfaceMetricOffsetIn'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpInterfaceAdminState'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usd_dvmrp_interface_group = usdDvmrpInterfaceGroup.setStatus('current')
usd_dvmrp_source_group = object_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 4)).setObjects(('Unisphere-Data-DVMRP-MIB', 'usdDvmrpPruneIIFIfIndex'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpPruneUpTime'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpSrcGrpOifOIFPruned'), ('Unisphere-Data-DVMRP-MIB', 'usdDvmrpSrcGrpOifOIFDnTTL'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usd_dvmrp_source_group = usdDvmrpSourceGroup.setStatus('current')
usd_dvmrp_notification_group = notification_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 44, 4, 2, 8)).setObjects(('Unisphere-Data-DVMRP-MIB', 'usdDvmrpRouteHogNotificationTrap'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
usd_dvmrp_notification_group = usdDvmrpNotificationGroup.setStatus('current')
mibBuilder.exportSymbols('Unisphere-Data-DVMRP-MIB', usdDvmrpSrcGrpOifOIFIfIndex=usdDvmrpSrcGrpOifOIFIfIndex, usdDvmrpInterfaceAdminState=usdDvmrpInterfaceAdminState, usdDvmrpRouteHogNotification=usdDvmrpRouteHogNotification, usdDvmrp=usdDvmrp, usdDvmrpS32PrunesOnly=usdDvmrpS32PrunesOnly, usdDvmrpLocalAddrTableEntry=usdDvmrpLocalAddrTableEntry, usdDvmrpLocalAddrIfIndex=usdDvmrpLocalAddrIfIndex, usdDvmrpSrcGrpOifGroup=usdDvmrpSrcGrpOifGroup, usdDvmrpAclDistNbrStatus=usdDvmrpAclDistNbrStatus, usdDvmrpSummaryAddrCost=usdDvmrpSummaryAddrCost, usdDvmrpPruneSourceMask=usdDvmrpPruneSourceMask, usdDvmrpScalar=usdDvmrpScalar, usdDvmrpLocalAddrMask=usdDvmrpLocalAddrMask, usdDvmrpAclDistNbrTable=usdDvmrpAclDistNbrTable, usdDvmrpMIB=usdDvmrpMIB, usdDvmrpInterfaceAutoSummary=usdDvmrpInterfaceAutoSummary, usdDvmrpInterfaceTable=usdDvmrpInterfaceTable, usdDvmrpSrcGrpOifOIFDnTTL=usdDvmrpSrcGrpOifOIFDnTTL, usdDvmrpAdminState=usdDvmrpAdminState, usdDvmrpConformance=usdDvmrpConformance, usdDvmrpAclDistNbrEntry=usdDvmrpAclDistNbrEntry, usdDvmrpGroups=usdDvmrpGroups, usdDvmrpNotificationGroup=usdDvmrpNotificationGroup, usdDvmrpPruneEntry=usdDvmrpPruneEntry, usdDvmrpPruneUpTime=usdDvmrpPruneUpTime, usdDvmrpTraps=usdDvmrpTraps, usdDvmrpRouteLimit=usdDvmrpRouteLimit, usdDvmrpInterfaceGroup=usdDvmrpInterfaceGroup, usdDvmrpSummaryAddrTable=usdDvmrpSummaryAddrTable, usdDvmrpSrcGrpOifOIFPruned=usdDvmrpSrcGrpOifOIFPruned, usdDvmrpInterfaceEntry=usdDvmrpInterfaceEntry, usdDvmrpPruneTable=usdDvmrpPruneTable, usdDvmrpBaseGroup=usdDvmrpBaseGroup, usdDvmrpSourceGroup=usdDvmrpSourceGroup, usdDvmrpSummaryAddrAddress=usdDvmrpSummaryAddrAddress, usdDvmrpInterfaceMetricOffsetIn=usdDvmrpInterfaceMetricOffsetIn, usdDvmrpSummaryAddrIfIndex=usdDvmrpSummaryAddrIfIndex, PYSNMP_MODULE_ID=usdDvmrpMIB, usdDvmrpLocalAddrTable=usdDvmrpLocalAddrTable, usdDvmrpAclDistNbrAclListName=usdDvmrpAclDistNbrAclListName, usdDvmrpSrcGrpOifSourceMask=usdDvmrpSrcGrpOifSourceMask, usdDvmrpSummaryAddrMask=usdDvmrpSummaryAddrMask, usdDvmrpSrcGrpOifEntry=usdDvmrpSrcGrpOifEntry, usdDvmrpCompliances=usdDvmrpCompliances, usdDvmrpCompliance=usdDvmrpCompliance, usdDvmrpPruneSource=usdDvmrpPruneSource, usdDvmrpPruneIIFIfIndex=usdDvmrpPruneIIFIfIndex, usdDvmrpMcastAdminState=usdDvmrpMcastAdminState, usdDvmrpSrcGrpOifSource=usdDvmrpSrcGrpOifSource, usdDvmrpAclDistNbrIfIndex=usdDvmrpAclDistNbrIfIndex, usdDvmrpAclDistNbrDistance=usdDvmrpAclDistNbrDistance, usdDvmrpAclDistNbrGroup=usdDvmrpAclDistNbrGroup, usdDvmrpMIBObjects=usdDvmrpMIBObjects, usdDvmrpSrcGrpOifTable=usdDvmrpSrcGrpOifTable, usdDvmrpLocalAddrAddrOrIfIndex=usdDvmrpLocalAddrAddrOrIfIndex, usdDvmrpAclDistNbrNbrListName=usdDvmrpAclDistNbrNbrListName, usdDvmrpSummaryAddrStatus=usdDvmrpSummaryAddrStatus, usdDvmrpInterfaceMetricOffsetOut=usdDvmrpInterfaceMetricOffsetOut, usdDvmrpSummaryAddrTableEntry=usdDvmrpSummaryAddrTableEntry, usdDvmrpPruneGroup=usdDvmrpPruneGroup, usdDvmrpRouteHogNotificationTrap=usdDvmrpRouteHogNotificationTrap) |
def longestRepeatedSubSeq(str):
n = len(str)
dp = [[0 for i in range(n + 1)] for j in range(n + 1)]
for i in range(1, n + 1):
for j in range(1, n + 1):
if (str[i - 1] == str[j - 1] and i != j):
dp[i][j] = 1 + dp[i - 1][j - 1]
else:
dp[i][j] = max(dp[i][j - 1], dp[i - 1][j])
res = ''
i = n
j = n
while (i > 0 and j > 0):
if (dp[i][j] == dp[i - 1][j - 1] + 1):
res += str[i - 1]
i -= 1
j -= 1
elif (dp[i][j] == dp[i - 1][j]):
i -= 1
else:
j -= 1
res = ''.join(reversed(res))
return res
str = 'AABEBCDD'
print(longestRepeatedSubSeq(str))
| def longest_repeated_sub_seq(str):
n = len(str)
dp = [[0 for i in range(n + 1)] for j in range(n + 1)]
for i in range(1, n + 1):
for j in range(1, n + 1):
if str[i - 1] == str[j - 1] and i != j:
dp[i][j] = 1 + dp[i - 1][j - 1]
else:
dp[i][j] = max(dp[i][j - 1], dp[i - 1][j])
res = ''
i = n
j = n
while i > 0 and j > 0:
if dp[i][j] == dp[i - 1][j - 1] + 1:
res += str[i - 1]
i -= 1
j -= 1
elif dp[i][j] == dp[i - 1][j]:
i -= 1
else:
j -= 1
res = ''.join(reversed(res))
return res
str = 'AABEBCDD'
print(longest_repeated_sub_seq(str)) |
class Solution:
def maxAreaOfIsland(self, grid: List[List[int]]) -> int:
if not grid or not grid[0]:
return 0
result = 0
def dfs(x, y):
dx = [0, 0, 1, -1]
dy = [1, -1, 0, 0]
count = 1
for k in range(4):
nx, ny = dx[k] + x, dy[k] + y
if 0 <= nx < m and 0 <= ny < n and grid[nx][ny] == 1:
grid[nx][ny] = 0
count += dfs(nx, ny)
return count
m, n = len(grid), len(grid[0])
queue = deque()
for i in range(m):
for j in range(n):
if grid[i][j] == 1:
grid[i][j] = 0
cur = dfs(i, j)
result = max(cur, result)
return result
| class Solution:
def max_area_of_island(self, grid: List[List[int]]) -> int:
if not grid or not grid[0]:
return 0
result = 0
def dfs(x, y):
dx = [0, 0, 1, -1]
dy = [1, -1, 0, 0]
count = 1
for k in range(4):
(nx, ny) = (dx[k] + x, dy[k] + y)
if 0 <= nx < m and 0 <= ny < n and (grid[nx][ny] == 1):
grid[nx][ny] = 0
count += dfs(nx, ny)
return count
(m, n) = (len(grid), len(grid[0]))
queue = deque()
for i in range(m):
for j in range(n):
if grid[i][j] == 1:
grid[i][j] = 0
cur = dfs(i, j)
result = max(cur, result)
return result |
"""
A trie (pronounced as 'try') or prefix tree is a tree data structure used to efficiently store and retrieve keys in a
dataset of strings. There are various applications of this data structure, such as autocomplete and spellchecker.
Implement the Trie class:
- Trie() Initializes the trie object.
- void insert(String word) Inserts the string word into the trie.
- boolean search(String word) Returns true if the string word is in the trie (i.e., was inserted before), and false
otherwise.
- boolean startsWith(String prefix) Returns true if there is a previously inserted string word that has the prefix
prefix, and false otherwise.
Example 1:
Input
['Trie', 'insert', 'search', 'search', 'startsWith', 'insert', 'search']
[[], ['apple'], ['apple'], ['app'], ['app'], ['app'], ['app']]
Output
[None, None, True, False, True, None, True]
Explanation
Trie trie = new Trie();
trie.insert('apple');
trie.search('apple'); // return True
trie.search('app'); // return False
trie.startsWith('app'); // return True
trie.insert('app');
trie.search('app'); // return True
"""
"""
We implement a TrieNode class that has the node character, a dictionary of children, and a terminating flag. In the
main Trie class, we start with a dummy TrieNode root. When inserting a word, we start off with the node being the root,
then iterate over each character and see if the character is present in the current node. If not, we create a TrieNode
and add it to the current node's children. We then set the current node to be the found (or created) TrieNode and go
to the next character. We set the last node's terminating flag to True to indicate that a complete word ends at this
node. To implement search, the procedure is quite similar - we check if each character is in the node's children and go
downwards. If any character is not found in the node's children, we return False. The last node's terminating flag must
also be True. The prefix search is identical except the terminating flag is not checked at the end of the search.
"""
class TrieNode:
def __init__(self, val):
self.val = val
self.terminating = False
self.children = {}
class Trie:
def __init__(self):
self.root = TrieNode(None)
def insert(self, word):
node = self.root
for char in word:
if char not in node.children:
node.children[char] = TrieNode(char)
node = node.children[char]
node.terminating = True
def search(self, word):
node = self.root
for char in word:
if char not in node.children:
return False
node = node.children[char]
return node.terminating
def startsWith(self, prefix):
node = self.root
for char in prefix:
if char not in node.children:
return False
node = node.children[char]
return True
trie = Trie()
trie.insert('apple')
assert trie.search('apple') is True
assert trie.search('app') is False
assert trie.startsWith('app') is True
trie.insert('app')
assert trie.search('app') is True
| """
A trie (pronounced as 'try') or prefix tree is a tree data structure used to efficiently store and retrieve keys in a
dataset of strings. There are various applications of this data structure, such as autocomplete and spellchecker.
Implement the Trie class:
- Trie() Initializes the trie object.
- void insert(String word) Inserts the string word into the trie.
- boolean search(String word) Returns true if the string word is in the trie (i.e., was inserted before), and false
otherwise.
- boolean startsWith(String prefix) Returns true if there is a previously inserted string word that has the prefix
prefix, and false otherwise.
Example 1:
Input
['Trie', 'insert', 'search', 'search', 'startsWith', 'insert', 'search']
[[], ['apple'], ['apple'], ['app'], ['app'], ['app'], ['app']]
Output
[None, None, True, False, True, None, True]
Explanation
Trie trie = new Trie();
trie.insert('apple');
trie.search('apple'); // return True
trie.search('app'); // return False
trie.startsWith('app'); // return True
trie.insert('app');
trie.search('app'); // return True
"""
"\nWe implement a TrieNode class that has the node character, a dictionary of children, and a terminating flag. In the\nmain Trie class, we start with a dummy TrieNode root. When inserting a word, we start off with the node being the root,\nthen iterate over each character and see if the character is present in the current node. If not, we create a TrieNode\nand add it to the current node's children. We then set the current node to be the found (or created) TrieNode and go\nto the next character. We set the last node's terminating flag to True to indicate that a complete word ends at this \nnode. To implement search, the procedure is quite similar - we check if each character is in the node's children and go \ndownwards. If any character is not found in the node's children, we return False. The last node's terminating flag must \nalso be True. The prefix search is identical except the terminating flag is not checked at the end of the search.\n"
class Trienode:
def __init__(self, val):
self.val = val
self.terminating = False
self.children = {}
class Trie:
def __init__(self):
self.root = trie_node(None)
def insert(self, word):
node = self.root
for char in word:
if char not in node.children:
node.children[char] = trie_node(char)
node = node.children[char]
node.terminating = True
def search(self, word):
node = self.root
for char in word:
if char not in node.children:
return False
node = node.children[char]
return node.terminating
def starts_with(self, prefix):
node = self.root
for char in prefix:
if char not in node.children:
return False
node = node.children[char]
return True
trie = trie()
trie.insert('apple')
assert trie.search('apple') is True
assert trie.search('app') is False
assert trie.startsWith('app') is True
trie.insert('app')
assert trie.search('app') is True |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.