content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
nums = [12, 34, 5, 7, 8] iter_nums = iter(nums) # def sum_numbers(nums): # for n in nums: # n += sum_numbers(nums) # return n # print(sum_numbers(iter_nums)) def sum_list(list_to_sum, index): if len(list_to_sum) == 0: return 0 if index == 0: return list_to_sum[0] return list_to_sum[index] + sum_list(list_to_sum, index - 1) # list_to_sum = [1, 2, 3, 4, 5] # print(sum_list(list_to_sum, len(list_to_sum) - 1)) # def sum_string(string_of_numbers, index): # # index = len(string_of_numbers) - 1 # last index # if len(string_of_numbers) == 0: # return 0 # if index == 0: # return int(string_of_numbers[0]) # return int(string_of_numbers[index]) + int(sum_list(string_of_numbers, index - 1)) # my_string = "123" # print(sum_string(my_string, len(my_string) - 1)) string = "123" def recursive_sum_string(list, index): if len(list) == 0: return 0 if index == 0: return list[0] return int(list[index]) + int(recursive_sum_string(list, index - 1)) # print(recursive_sum_string(string, len(string) - 1)) # def get_change(number, coins): # return number / def get_change(number): change = [15, 10, 5, 1] if number == 0 or number == 1: print(str(number), ",") return number for i in change: if (number - i) > 0: print("," + str(i)) return get_change(number - i) coins = [] get_change(66) # = 1, 5, 10, 25 66 - 25 > 25 41 - 25 > 25 66 - 10 > 10
nums = [12, 34, 5, 7, 8] iter_nums = iter(nums) def sum_list(list_to_sum, index): if len(list_to_sum) == 0: return 0 if index == 0: return list_to_sum[0] return list_to_sum[index] + sum_list(list_to_sum, index - 1) string = '123' def recursive_sum_string(list, index): if len(list) == 0: return 0 if index == 0: return list[0] return int(list[index]) + int(recursive_sum_string(list, index - 1)) def get_change(number): change = [15, 10, 5, 1] if number == 0 or number == 1: print(str(number), ',') return number for i in change: if number - i > 0: print(',' + str(i)) return get_change(number - i) coins = [] get_change(66) 66 - 25 > 25 41 - 25 > 25 66 - 10 > 10
# Author: OMKAR PATHAK # A Python generator is a function which returns a generator iterator (just an object we can iterate over) # by calling yield def simpleGenerator(numbers): i = 0 while True: check = input('Wanna generate a number? (If yes, press y else n): ') if check in ('Y', 'y') and len(numbers) > i: yield numbers[i] i += 1 else: print('Bye!') break for number in simpleGenerator([10, 11, 12, 14]): print(number)
def simple_generator(numbers): i = 0 while True: check = input('Wanna generate a number? (If yes, press y else n): ') if check in ('Y', 'y') and len(numbers) > i: yield numbers[i] i += 1 else: print('Bye!') break for number in simple_generator([10, 11, 12, 14]): print(number)
def _configure_features( ctx, cuda_toolchain, requested_features=[], unsupported_features=[] ): features = cuda_toolchain.features enabled_features = {} # Enable compilation mode feature compilation_mode = ctx.var["COMPILATION_MODE"] if compilation_mode in features: enabled_features[compilation_mode] = features[compilation_mode] # Find all user enabled features for feature_name, _feature in features.items(): if _feature.enabled and feature_name not in unsupported_features: enabled_features[feature_name] = _feature elif _feature.name in requested_features: enabled_features[feature_name] = _feature # Find all implied features for feature_name, _feature in enabled_features.items(): for implied_feature_name in _feature.implies: if implied_feature_name not in enabled_features: if implied_feature_name in unsupported_features: fail("{} feature is implied by {} but it is explicitly disabled!".format(implied_feature_name, feature_name)) if implied_feature_name not in features: fail("{} feature is implied by {} but it was not provided!".format(implied_feature_name, feature_name)) enabled_features[implied_feature_name] = features[implied_feature_name] # Check provided features unique_providers = {} for feature_name, _feature in enabled_features.items(): for provided_feature_name in _feature.provides: if provided_feature_name in unique_providers: fail("{} and {} provides same feature: {}!".format(unique_providers[provided_feature_name], feature_name, provided_feature_name)) unique_providers[provided_feature_name] = feature_name # Check required features for feature_name, _feature in enabled_features.items(): feature_set_found = True for required_feature_set in _feature.requires: for required_feature_name in required_feature_set.features: if required_feature_name not in enabled_features: feature_set_found = False break if feature_set_found: for required_feature_name in required_feature_set.not_features: if required_feature_name in enabled_features: feature_set_found = False break if feature_set_found: break if not feature_set_found: fail("Could not find matching required features_set for feature {}!".format(feature_name)) return enabled_features.keys() def _create_link_variables( host_compiler_executable = None, host_compiler_arguments = [], objects = [], static_libraries = [], shared_libraries = [], output_file = None, ): variables = { "objects": [object.path for object in objects], "static_libraries": [static_library.path for static_library in static_libraries], "shared_libraries": [shared_library.basename for shared_library in shared_libraries], "library_search_directories": [shared_library.dirname for shared_library in shared_libraries], } if host_compiler_executable != None: variables["host_compiler_executable"] = host_compiler_executable if host_compiler_arguments: variables["host_compiler_arguments"] = host_compiler_arguments if output_file != None: variables["output_file"] = output_file.path return variables def _create_compile_variables( source_file = None, output_file = None, gpu_arch = "", gpu_codes = [], max_reg_count = 0, host_compiler_executable = None, host_compiler_arguments = [], include_paths = [], system_include_paths = [], includes = [], ): variables = { "gpu_codes": gpu_codes, "include_paths": include_paths, "system_include_paths": system_include_paths, "includes": [include.path for include in includes], } if source_file != None: variables["source_file"] = source_file.path if output_file != None: variables["output_file"] = output_file.path if gpu_arch != "": variables["gpu_arch"] = gpu_arch if max_reg_count > 0: variables["max_reg_count"] = str(max_reg_count) if host_compiler_executable != None: variables["host_compiler_executable"] = host_compiler_executable if host_compiler_arguments: variables["host_compiler_arguments"] = host_compiler_arguments return variables def _get_tool_path(cuda_toolchain, tool_name): return cuda_toolchain.tools[tool_name] def _get_memory_inefficient_command_line( cuda_toolchain, action_name, feature_configuration = [], variables = {}, ): enabled_flag_sets = [] for feature_name in feature_configuration: for _flag_set in cuda_toolchain.features[feature_name].flag_sets: # Check feature set for correct action if action_name not in _flag_set.actions: continue # Check feature set for required features feature_set_found = True for required_feature_set in _flag_set.with_features: feature_set_found = True for required_feature_name in required_feature_set.features: if required_feature_name not in feature_configuration: feature_set_found = False break if feature_set_found: for required_feature_name in required_feature_set.not_features: if required_feature_name in feature_configuration: feature_set_found = False break if feature_set_found: break if not feature_set_found: continue enabled_flag_sets.append(_flag_set) args = [] for _feature_set in enabled_flag_sets: for _flag_group in _feature_set.flag_groups: if _flag_group.expand_if_available != None and _flag_group.expand_if_available not in variables: continue if _flag_group.expand_if_not_available != None and _flag_group.expand_if_not_available in variables: continue if _flag_group.iterate_over != None and _flag_group.iterate_over not in variables: continue flags = list(_flag_group.flags) if _flag_group.iterate_over != None: flags = [] for variable in variables[_flag_group.iterate_over]: for flag in _flag_group.flags: flags.append(flag.replace("%{{{}}}".format(_flag_group.iterate_over), variable)) for idx in range(len(flags)): for variable_name, variable in variables.items(): flags[idx] = flags[idx].replace("%{{{}}}".format(variable_name), ' '.join(variable) if type(variable) == type([]) else variable) args.extend(flags) return args def _create_linking_context( object_files = [], static_libraries = [], dynamic_libraries = [], ): return struct( object_files = object_files, static_libraries = static_libraries, dynamic_libraries = dynamic_libraries, ) cuda_common = struct( configure_features = _configure_features, create_link_variables = _create_link_variables, create_compile_variables = _create_compile_variables, create_linking_context = _create_linking_context, get_tool_path = _get_tool_path, get_memory_inefficient_command_line = _get_memory_inefficient_command_line, )
def _configure_features(ctx, cuda_toolchain, requested_features=[], unsupported_features=[]): features = cuda_toolchain.features enabled_features = {} compilation_mode = ctx.var['COMPILATION_MODE'] if compilation_mode in features: enabled_features[compilation_mode] = features[compilation_mode] for (feature_name, _feature) in features.items(): if _feature.enabled and feature_name not in unsupported_features: enabled_features[feature_name] = _feature elif _feature.name in requested_features: enabled_features[feature_name] = _feature for (feature_name, _feature) in enabled_features.items(): for implied_feature_name in _feature.implies: if implied_feature_name not in enabled_features: if implied_feature_name in unsupported_features: fail('{} feature is implied by {} but it is explicitly disabled!'.format(implied_feature_name, feature_name)) if implied_feature_name not in features: fail('{} feature is implied by {} but it was not provided!'.format(implied_feature_name, feature_name)) enabled_features[implied_feature_name] = features[implied_feature_name] unique_providers = {} for (feature_name, _feature) in enabled_features.items(): for provided_feature_name in _feature.provides: if provided_feature_name in unique_providers: fail('{} and {} provides same feature: {}!'.format(unique_providers[provided_feature_name], feature_name, provided_feature_name)) unique_providers[provided_feature_name] = feature_name for (feature_name, _feature) in enabled_features.items(): feature_set_found = True for required_feature_set in _feature.requires: for required_feature_name in required_feature_set.features: if required_feature_name not in enabled_features: feature_set_found = False break if feature_set_found: for required_feature_name in required_feature_set.not_features: if required_feature_name in enabled_features: feature_set_found = False break if feature_set_found: break if not feature_set_found: fail('Could not find matching required features_set for feature {}!'.format(feature_name)) return enabled_features.keys() def _create_link_variables(host_compiler_executable=None, host_compiler_arguments=[], objects=[], static_libraries=[], shared_libraries=[], output_file=None): variables = {'objects': [object.path for object in objects], 'static_libraries': [static_library.path for static_library in static_libraries], 'shared_libraries': [shared_library.basename for shared_library in shared_libraries], 'library_search_directories': [shared_library.dirname for shared_library in shared_libraries]} if host_compiler_executable != None: variables['host_compiler_executable'] = host_compiler_executable if host_compiler_arguments: variables['host_compiler_arguments'] = host_compiler_arguments if output_file != None: variables['output_file'] = output_file.path return variables def _create_compile_variables(source_file=None, output_file=None, gpu_arch='', gpu_codes=[], max_reg_count=0, host_compiler_executable=None, host_compiler_arguments=[], include_paths=[], system_include_paths=[], includes=[]): variables = {'gpu_codes': gpu_codes, 'include_paths': include_paths, 'system_include_paths': system_include_paths, 'includes': [include.path for include in includes]} if source_file != None: variables['source_file'] = source_file.path if output_file != None: variables['output_file'] = output_file.path if gpu_arch != '': variables['gpu_arch'] = gpu_arch if max_reg_count > 0: variables['max_reg_count'] = str(max_reg_count) if host_compiler_executable != None: variables['host_compiler_executable'] = host_compiler_executable if host_compiler_arguments: variables['host_compiler_arguments'] = host_compiler_arguments return variables def _get_tool_path(cuda_toolchain, tool_name): return cuda_toolchain.tools[tool_name] def _get_memory_inefficient_command_line(cuda_toolchain, action_name, feature_configuration=[], variables={}): enabled_flag_sets = [] for feature_name in feature_configuration: for _flag_set in cuda_toolchain.features[feature_name].flag_sets: if action_name not in _flag_set.actions: continue feature_set_found = True for required_feature_set in _flag_set.with_features: feature_set_found = True for required_feature_name in required_feature_set.features: if required_feature_name not in feature_configuration: feature_set_found = False break if feature_set_found: for required_feature_name in required_feature_set.not_features: if required_feature_name in feature_configuration: feature_set_found = False break if feature_set_found: break if not feature_set_found: continue enabled_flag_sets.append(_flag_set) args = [] for _feature_set in enabled_flag_sets: for _flag_group in _feature_set.flag_groups: if _flag_group.expand_if_available != None and _flag_group.expand_if_available not in variables: continue if _flag_group.expand_if_not_available != None and _flag_group.expand_if_not_available in variables: continue if _flag_group.iterate_over != None and _flag_group.iterate_over not in variables: continue flags = list(_flag_group.flags) if _flag_group.iterate_over != None: flags = [] for variable in variables[_flag_group.iterate_over]: for flag in _flag_group.flags: flags.append(flag.replace('%{{{}}}'.format(_flag_group.iterate_over), variable)) for idx in range(len(flags)): for (variable_name, variable) in variables.items(): flags[idx] = flags[idx].replace('%{{{}}}'.format(variable_name), ' '.join(variable) if type(variable) == type([]) else variable) args.extend(flags) return args def _create_linking_context(object_files=[], static_libraries=[], dynamic_libraries=[]): return struct(object_files=object_files, static_libraries=static_libraries, dynamic_libraries=dynamic_libraries) cuda_common = struct(configure_features=_configure_features, create_link_variables=_create_link_variables, create_compile_variables=_create_compile_variables, create_linking_context=_create_linking_context, get_tool_path=_get_tool_path, get_memory_inefficient_command_line=_get_memory_inefficient_command_line)
class Node: def __init__(self,data): self.left=None self.right=None self.data=data def PrintTree(self): if self.left: self.left.PrintTree() print(self.data) if self.right: self.right.PrintTree() def insert(self,data): if self.data: if data<self.data: if self.left is None: self.left=Node(data) else: self.left.insert(data) elif data>self.data: if self.right is None: self.right=Node(data) else: self.right.insert(data) else: self.data=data if __name__=='__main__': root=Node(12) root.insert(10) root.insert(6) root.insert(14) root.insert(2) root.insert(1) root.PrintTree()
class Node: def __init__(self, data): self.left = None self.right = None self.data = data def print_tree(self): if self.left: self.left.PrintTree() print(self.data) if self.right: self.right.PrintTree() def insert(self, data): if self.data: if data < self.data: if self.left is None: self.left = node(data) else: self.left.insert(data) elif data > self.data: if self.right is None: self.right = node(data) else: self.right.insert(data) else: self.data = data if __name__ == '__main__': root = node(12) root.insert(10) root.insert(6) root.insert(14) root.insert(2) root.insert(1) root.PrintTree()
names = ['Simon', 'Sophie', 2] print (names[0] + ' loves ' + names[1] + ' for ' + str(names[2]) + ' years') for name in names : print (name)
names = ['Simon', 'Sophie', 2] print(names[0] + ' loves ' + names[1] + ' for ' + str(names[2]) + ' years') for name in names: print(name)
''' Using sieve of Eratosthenes, primes(x) returns list of all primes less than x Modification: We don't need to check all even numbers, we can make the sieve excluding even numbers and adding 2 to the primes list by default. We are going to make an array of: x / 2 - 1 if number is even, else x / 2 (The -1 with even number it's to exclude the number itself) Because we just need numbers [from 3..x if x is odd] # We can get value represented at index i with (i*2 + 3) For example, for x = 10, we start with an array of x / 2 - 1 = 4 [1, 1, 1, 1] 3 5 7 9 For x = 11: [1, 1, 1, 1, 1] 3 5 7 9 11 # 11 is odd, it's included in the list With this, we have reduced the array size to a half, and complexity it's also a half now. ''' def primes(x): assert(x >= 0) # If x is even, exclude x from list (-1): sieve_size = (x//2 - 1) if x % 2 == 0 else (x//2) sieve = [1 for v in range(sieve_size)] # Sieve primes = [] # List of Primes if x >= 2: primes.append(2) # Add 2 by default for i in range(sieve_size): if sieve[i] == 1: value_at_i = i*2 + 3 primes.append(value_at_i) for j in range(i, sieve_size, value_at_i): sieve[j] = 0 return primes
""" Using sieve of Eratosthenes, primes(x) returns list of all primes less than x Modification: We don't need to check all even numbers, we can make the sieve excluding even numbers and adding 2 to the primes list by default. We are going to make an array of: x / 2 - 1 if number is even, else x / 2 (The -1 with even number it's to exclude the number itself) Because we just need numbers [from 3..x if x is odd] # We can get value represented at index i with (i*2 + 3) For example, for x = 10, we start with an array of x / 2 - 1 = 4 [1, 1, 1, 1] 3 5 7 9 For x = 11: [1, 1, 1, 1, 1] 3 5 7 9 11 # 11 is odd, it's included in the list With this, we have reduced the array size to a half, and complexity it's also a half now. """ def primes(x): assert x >= 0 sieve_size = x // 2 - 1 if x % 2 == 0 else x // 2 sieve = [1 for v in range(sieve_size)] primes = [] if x >= 2: primes.append(2) for i in range(sieve_size): if sieve[i] == 1: value_at_i = i * 2 + 3 primes.append(value_at_i) for j in range(i, sieve_size, value_at_i): sieve[j] = 0 return primes
# Space: O(1) # Time: O(n) class Solution: def singleNumber(self, nums): res = [] length = len(nums) nums.sort() status = 0 for i in range(length): if i == 0: if nums[i] != nums[i + 1]: res.append(nums[i]) status += 1 elif i == length - 1: if nums[i] != nums[i - 1]: res.append(nums[i]) status += 1 else: if nums[i] != nums[i - 1] and nums[i] != nums[i + 1]: res.append(nums[i]) status += 1 if status == 2: return res return res
class Solution: def single_number(self, nums): res = [] length = len(nums) nums.sort() status = 0 for i in range(length): if i == 0: if nums[i] != nums[i + 1]: res.append(nums[i]) status += 1 elif i == length - 1: if nums[i] != nums[i - 1]: res.append(nums[i]) status += 1 elif nums[i] != nums[i - 1] and nums[i] != nums[i + 1]: res.append(nums[i]) status += 1 if status == 2: return res return res
numbers_list = input().split(', ') new_list = [] for digit in numbers_list: digits = digit.split(', ') current_digit = int(digits[0]) if current_digit == 0: numbers_list.remove('0') numbers_list.append('0') new_list = list(map(int, numbers_list)) print(new_list)
numbers_list = input().split(', ') new_list = [] for digit in numbers_list: digits = digit.split(', ') current_digit = int(digits[0]) if current_digit == 0: numbers_list.remove('0') numbers_list.append('0') new_list = list(map(int, numbers_list)) print(new_list)
# Copyright 2018 The GraphNets Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================ #This is priorknowledge from EPR #ORDER_CATALOG_DESCRIPTION ORDER_EVENT #Full blood count, blood Absolute Blast Count #Full blood count, blood Absolute Metamyelocyte Count #Full blood count, blood Absolute Myelocyte Count #Full blood count, blood Absolute Promyelocyte Count #Full blood count, blood Basophil count #Full blood count, blood Blood Culture Sample #Full blood count, blood Eosinophil count #Full blood count, blood Haematocrit #Full blood count, blood Haemoglobin #Full blood count, blood HCT #Full blood count, blood Lymphocyte count #Full blood count, blood Mean cell haemoglobin #Full blood count, blood Mean cell haemoglobin conc #Full blood count, blood Mean cell volume #Full blood count, blood Monocyte count #Full blood count, blood Neutrophil count #Full blood count, blood Platelet count #Full blood count, blood Red blood cell count #Full blood count, blood White blood cell count def CR_inputs_reference(): Reference_Range = { 'C-reactive protein':{'Male':{'min':'0','max':'5'} ,'Female':{'min':'0','max':'5'} ,'Unknown':{'min':'0','max':'5'} ,'Unspecified':{'min':'0','max':'5'}}, } input_node_fields = ['C-reactive protein'] return Reference_Range,input_node_fields
def cr_inputs_reference(): reference__range = {'C-reactive protein': {'Male': {'min': '0', 'max': '5'}, 'Female': {'min': '0', 'max': '5'}, 'Unknown': {'min': '0', 'max': '5'}, 'Unspecified': {'min': '0', 'max': '5'}}} input_node_fields = ['C-reactive protein'] return (Reference_Range, input_node_fields)
wt3_3_10 = {'192.168.122.110': [8.5425, 9.6589, 8.3878, 8.9764, 8.5553, 8.1619, 8.5832, 8.1742, 7.8747, 7.6304, 7.6131, 7.5381, 7.3988, 7.2547, 7.2352, 7.1954, 7.0925, 6.9968, 7.8112, 7.7524, 7.6389, 7.5302, 7.4983, 7.4729, 7.4327, 7.3494, 7.2848, 7.2741, 7.2099, 7.1539, 7.2822, 7.2477, 7.3613, 7.315, 7.2783, 7.1005, 7.259, 7.2092, 7.1609, 7.2541, 7.2072, 7.1686, 7.1279, 7.2113, 7.1714, 7.2521, 7.2082, 7.0759, 7.1424, 7.1109, 7.1106, 7.0781, 7.0454, 7.0152, 7.0056, 6.9756, 6.9764, 6.9487, 7.0111, 6.9932, 6.9655, 6.9462, 6.9316, 6.9125, 7.0027, 6.9865, 6.9652, 6.9468, 6.9297, 6.9121, 6.8911, 6.8843, 6.8806, 6.868, 6.8489, 6.8347, 6.8156, 6.7999, 6.7823, 6.7668, 6.7565, 6.7398, 6.7867, 6.7734, 6.8209, 6.8053, 6.7948, 6.9508, 7.0068, 6.9956, 6.9812, 7.2321, 7.213, 7.1994, 7.1836, 7.1799, 7.2166, 7.1988, 7.1821, 7.296, 7.2775, 7.2622, 7.2579, 7.2489, 7.2312, 7.2128, 7.246, 7.2797, 7.2648, 7.2603, 7.2421, 7.2245, 7.2671, 7.2712, 7.3504, 7.3378, 7.2962, 7.2876, 7.3166, 7.3017, 7.2909, 7.2799, 7.3099, 7.3884, 7.3738, 7.3575, 7.341, 7.3254, 7.3509, 7.3998, 7.3939, 7.4582, 7.4459, 7.4311, 7.4207, 7.4048, 7.3892, 7.3815, 7.368, 7.3535, 7.3437, 7.33, 7.3157, 7.3076, 7.2941, 7.2879, 7.2743, 7.2613, 7.2781, 7.2716, 7.2593, 7.2468, 7.242, 7.2515, 7.3003, 7.2873, 7.2774, 7.2732, 7.2672, 7.2595, 7.2486, 7.269, 7.2947, 7.2882, 7.2799, 7.2922, 7.2809, 7.2733, 7.2976, 7.32, 7.4086, 7.414, 7.4355, 7.4735, 7.4623, 7.4964, 7.484, 7.5028, 7.5202, 7.5102, 7.5284, 7.5272, 7.5453, 7.5334, 7.5221, 7.5142, 7.5321, 7.5208, 7.5094, 7.4986, 7.5527, 7.546, 7.5379, 7.5321, 7.5695, 7.5596, 7.5483, 7.5385, 7.5276, 7.5174, 7.5098, 7.5041, 7.4952, 7.4892, 7.4809, 7.4787, 7.4944, 7.4844, 7.4744, 7.5952, 7.6216, 7.6196, 7.6141, 7.6028, 7.5945, 7.6112, 7.6133, 7.6312, 7.6203, 7.6103, 7.6501, 7.639, 7.6554, 7.6488, 7.6435, 7.6347, 7.7299, 7.7005, 7.6904, 7.7041, 7.6941, 7.684, 7.6743, 7.6683, 7.6592, 7.6537, 7.6462, 7.6387, 7.6316, 7.6221, 7.6169, 7.6135, 7.6036, 7.5947, 7.5856, 7.5824, 7.5832, 7.5791, 7.5697, 7.5609, 7.5556, 7.5295, 7.5446, 7.5422, 7.5379, 7.533, 7.5247, 7.5186, 7.5151, 7.5076, 7.5002, 7.4914, 7.4861, 7.4824, 7.4804, 7.4576, 7.4507, 7.4482, 7.4441, 7.4405, 7.4349, 7.4521, 7.4464, 7.439, 7.4328, 7.4279, 7.4218, 7.4142, 7.4065, 7.4167, 7.4095, 7.3874, 7.3828, 7.397, 7.4106, 7.4049, 7.3989, 7.4163, 7.4136, 7.4073, 7.3997, 7.4104, 7.4039, 7.4158, 7.4269, 7.4211, 7.4307, 7.4253, 7.4205, 7.3982, 7.399, 7.4016, 7.4028, 7.3968, 7.3932, 7.373, 7.3684, 7.3679, 7.379, 7.3786, 7.3717, 7.367, 7.3612, 7.3551, 7.3676, 7.3614, 7.3894, 7.3842, 7.3805, 7.3739, 7.3866, 7.3824, 7.379, 7.3747, 7.3963, 7.3903, 7.3844, 7.364, 7.3588, 7.3696, 7.365, 7.361, 7.355, 7.3487, 7.3443, 7.3561, 7.3515, 7.3485, 7.4216, 7.4161, 7.4431, 7.4528, 7.4497, 7.4337, 7.4294, 7.4261, 7.4355, 7.4453, 7.4396, 7.4337, 7.4276, 7.4216, 7.4326, 7.4473, 7.4495, 7.4448, 7.4399, 7.4357, 7.4303, 7.4476, 7.444, 7.454, 7.4514, 7.4619, 7.4584, 7.4681, 7.4625, 7.4582, 7.4524, 7.4478, 7.4452, 7.4395, 7.45, 7.4481, 7.4424, 7.4516, 7.4734, 7.4676, 7.4635, 7.4604, 7.4569, 7.4933, 7.4881, 7.4827, 7.4797, 7.4887, 7.489, 7.4987, 7.4936, 7.5019, 7.4965, 7.4963, 7.493, 7.4887, 7.4834, 7.4818, 7.4789, 7.4738, 7.4727, 7.4674, 7.4656, 7.4753, 7.4707, 7.5167, 7.5151, 7.5121, 7.509, 7.517, 7.5119, 7.5218, 7.5302, 7.5257, 7.51, 7.5264, 7.5231, 7.5191, 7.5138, 7.5085, 7.5041, 7.4898, 7.4851, 7.4846, 7.4936, 7.4883, 7.4837, 7.4787, 7.4765, 7.4714, 7.492, 7.4873, 7.4951, 7.4907, 7.4858, 7.481, 7.4763, 7.4881, 7.5016, 7.5105, 7.5062, 7.5014, 7.4964, 7.4916, 7.4867, 7.4821, 7.4796, 7.4749, 7.4721, 7.4675, 7.463, 7.4706, 7.4696, 7.4692, 7.4649, 7.4626, 7.458, 7.4559, 7.4926, 7.4903, 7.4859, 7.4941, 7.4912, 7.4869, 7.5413, 7.5366, 7.5333, 7.5287, 7.5242, 7.5225, 7.5181, 7.5182, 7.5169, 7.5155, 7.511, 7.5066, 7.5065, 7.5025, 7.5084, 7.5081, 7.515, 7.5135, 7.5092, 7.5052, 7.5021, 7.4995, 7.4951, 7.4909, 7.4887, 7.4845, 7.4818, 7.478, 7.4745, 7.4704, 7.4672, 7.4657, 7.4759, 7.4728, 7.4797, 7.4946, 7.4909, 7.5146, 7.5104, 7.5175, 7.5145, 7.5101, 7.5082, 7.5172, 7.5131, 7.5132, 7.5093, 7.5068, 7.4933, 7.4999, 7.4961, 7.5002, 7.487, 7.4874, 7.4834, 7.4799, 7.4756, 7.4718, 7.4679, 7.4647, 7.4606, 7.4672, 7.4629, 7.4605, 7.467, 7.5121, 7.5081, 7.5059, 7.5021, 7.4998, 7.5061, 7.5024, 7.5001, 7.4966, 7.4929, 7.4907, 7.4871, 7.4832, 7.4897, 7.478, 7.4766, 7.4825, 7.4891, 7.4853, 7.4817, 7.4891, 7.4853, 7.4818, 7.4783, 7.4743, 7.4705, 7.4672, 7.4637, 7.4597, 7.4562, 7.4527, 7.4492, 7.4466, 7.4445, 7.4411, 7.4371, 7.4352, 7.4314, 7.4277, 7.424, 7.4294, 7.4298, 7.4262, 7.4243, 7.4143, 7.4028, 7.401, 7.3977, 7.3942, 7.3905, 7.3872, 7.3839, 7.382, 7.389, 7.3858, 7.3918, 7.3882, 7.3863, 7.3832, 7.3797, 7.3765, 7.3743, 7.3715, 7.3682, 7.375, 7.3724, 7.3701, 7.3668, 7.3683, 7.3661, 7.3651, 7.363, 7.3614, 7.3667, 7.3634, 7.3527, 7.3493, 7.3546, 7.3529, 7.3496, 7.3474, 7.3529, 7.3593, 7.3562, 7.353, 7.3497, 7.3479, 7.3459, 7.3426, 7.3405, 7.3465, 7.3602, 7.3654, 7.3629, 7.3605, 7.358, 7.3639, 7.3615, 7.3588, 7.3598, 7.3587, 7.3819, 7.3877, 7.3857, 7.3829, 7.3797, 7.3855, 7.3825, 7.383500000000001, 7.3803, 7.3775, 7.375, 7.3717, 7.3684, 7.3741, 7.3716, 7.3687, 7.3657, 7.3633, 7.3626, 7.3595, 7.3563, 7.3534, 7.3507, 7.3497, 7.3469, 7.3477, 7.3454, 7.3441, 7.3413, 7.3393, 7.3368, 7.3338, 7.3385, 7.3355, 7.333, 7.33, 7.3289, 7.3258, 7.3236, 7.3239, 7.3249, 7.3301, 7.3273, 7.3256, 7.3241, 7.3325, 7.3297, 7.3398, 7.337, 7.3345, 7.3334, 7.3315, 7.3287, 7.3336, 7.3326, 7.3326, 7.3304, 7.3228, 7.3286, 7.3303, 7.3304, 7.3436, 7.3601, 7.3653, 7.3642, 7.3633, 7.3608, 7.3598, 7.3648, 7.3622, 7.3609, 7.3585, 7.3561, 7.3535, 7.3505, 7.3481, 7.3526, 7.3499, 7.3541, 7.3601, 7.3582, 7.3555, 7.3867, 7.3845, 7.3934, 7.3921, 7.4124, 7.423, 7.4262, 7.4245, 7.4215, 7.4333, 7.4305, 7.4347, 7.4317, 7.4289, 7.4344, 7.4317, 7.4321, 7.4449, 7.4436, 7.4446, 7.4437, 7.4411, 7.4393, 7.4366, 7.4339, 7.439, 7.4371, 7.4346, 7.4338, 7.4485, 7.4456, 7.4432, 7.4477, 7.4478, 7.4524, 7.4496, 7.4467, 7.4509, 7.4554, 7.4597, 7.4616, 7.4595, 7.4578, 7.4558, 7.4537, 7.4515, 7.4485, 7.4541, 7.4586, 7.4562, 7.4476, 7.445, 7.4362, 7.4333, 7.4309, 7.4282, 7.4258, 7.4234, 7.4227, 7.4274, 7.427, 7.4308, 7.4281, 7.426, 7.4233, 7.4147, 7.4128, 7.4106, 7.4147, 7.4259, 7.4239, 7.4222, 7.429, 7.4341, 7.432, 7.43, 7.4342, 7.4331, 7.431, 7.4285, 7.4261, 7.4236, 7.4217, 7.42, 7.4184, 7.4162, 7.4202, 7.4192, 7.4236, 7.4219, 7.4233, 7.4221, 7.4259, 7.4244, 7.4239, 7.4229, 7.4213, 7.4191, 7.4164, 7.4207, 7.42, 7.4178, 7.4157, 7.4131, 7.4188, 7.4164, 7.414, 7.4126, 7.4101, 7.4083, 7.4125, 7.4101, 7.4091, 7.4079, 7.4053, 7.4094, 7.4072, 7.4054, 7.4031, 7.4009, 7.4048, 7.4027, 7.4003, 7.3978, 7.4015, 7.4007, 7.4046, 7.4085, 7.406, 7.4035, 7.4075, 7.405, 7.4032, 7.4009, 7.4048, 7.4024, 7.3999, 7.3986, 7.3963, 7.4001, 7.4039, 7.404, 7.4018, 7.3997, 7.3995, 7.3988, 7.3969, 7.396, 7.3938, 7.3922, 7.3908, 7.3888, 7.3875, 7.3868, 7.3853, 7.383, 7.3815, 7.3797, 7.3783, 7.3712, 7.3699, 7.3748, 7.3727, 7.3703, 7.3691, 7.3666, 7.3643, 7.3628, 7.3665, 7.3646, 7.3624, 7.3663, 7.3699, 7.3675, 7.3669, 7.3654, 7.363, 7.3671, 7.3649, 7.3693, 7.3671, 7.3655, 7.371, 7.3698, 7.3744, 7.3786, 7.3765, 7.3742, 7.3788, 7.3838, 7.3824, 7.3813, 7.3848, 7.3836, 7.3874, 7.3861, 7.3841, 7.382, 7.3799, 7.3786, 7.3765, 7.3742, 7.372, 7.3672, 7.3656, 7.3721, 7.3758, 7.3738, 7.3718, 7.3937, 7.4034, 7.4016, 7.4003, 7.4082, 7.4064, 7.4134, 7.4171, 7.4265, 7.4249, 7.4227, 7.4321, 7.4261, 7.4252, 7.4234, 7.428, 7.4265, 7.4202, 7.4179, 7.4166, 7.4261, 7.424, 7.4218, 7.4196, 7.4181, 7.4214, 7.4193, 7.4182, 7.4162, 7.4146, 7.4127, 7.4119, 7.4104, 7.4193, 7.4177, 7.4207, 7.4211, 7.4204, 7.419, 7.4181, 7.4164, 7.4142, 7.4122, 7.4125, 7.4111, 7.4103, 7.4083, 7.4061, 7.4039, 7.4023, 7.4002, 7.3992, 7.3982, 7.4201, 7.4198, 7.4176, 7.4164, 7.4206, 7.4508, 7.4641, 7.4619, 7.4553, 7.4533, 7.4517, 7.4495, 7.4481, 7.4522, 7.4511, 7.449, 7.4531, 7.4567, 7.4549, 7.4531, 7.451, 7.4488, 7.4467, 7.44, 7.438, 7.436, 7.4349, 7.4357, 7.4342, 7.4325, 7.4316, 7.4297, 7.4284, 7.4269, 7.4257, 7.4246, 7.4225, 7.4204, 7.4186, 7.4166, 7.4151, 7.4136, 7.4115, 7.4131, 7.413, 7.4114, 7.4094, 7.4074, 7.4059, 7.4098, 7.418, 7.4165, 7.4155, 7.4141, 7.4122, 7.4109, 7.4165, 7.4227, 7.4335, 7.4314, 7.4293, 7.4272, 7.4394, 7.4425, 7.4406, 7.4385, 7.4584, 7.4571, 7.4553, 7.4533, 7.4513, 7.4626, 7.4729, 7.4709, 7.4647, 7.4637, 7.4618, 7.4599, 7.4634, 7.4613, 7.4601, 7.4589, 7.4571, 7.4556, 7.4598, 7.4579, 7.4568, 7.4548, 7.4538, 7.452, 7.4501, 7.449, 7.448, 7.446, 7.4446, 7.4427, 7.4366, 7.4402, 7.4383, 7.4374, 7.4407, 7.4391, 7.4378, 7.4362, 7.4354, 7.4348, 7.4382, 7.437, 7.4365, 7.4349, 7.433, 7.4365, 7.4357, 7.4392, 7.4374, 7.4363, 7.4356, 7.4352, 7.4337, 7.4322, 7.4316, 7.4306, 7.429, 7.4273, 7.4324, 7.4313, 7.4302, 7.4294, 7.4279, 7.4311, 7.4293, 7.4277, 7.4268, 7.4302, 7.4289, 7.4271, 7.4252, 7.4307, 7.4304, 7.4292, 7.4282, 7.4337, 7.4413, 7.4403, 7.4447, 7.4431, 7.4429, 7.4426, 7.4456, 7.4436, 7.4417, 7.4447, 7.4477, 7.4517, 7.4547, 7.4539, 7.4531, 7.4512, 7.4494, 7.4476, 7.4457, 7.4439, 7.443, 7.4418, 7.4407, 7.4388, 7.4372, 7.4357, 7.4338, 7.4366, 7.4357, 7.4443, 7.4426, 7.4407, 7.4394, 7.4336, 7.4323, 7.4356, 7.4456, 7.4438, 7.4468, 7.4498, 7.4484, 7.4517, 7.4508, 7.4752, 7.4736, 7.4771, 7.4752, 7.4782, 7.4807, 7.4791, 7.478, 7.4768, 7.4758, 7.4761, 7.4749, 7.473, 7.4715, 7.4698, 7.4688, 7.4719, 7.4663, 7.4693, 7.4723, 7.4714, 7.4698, 7.4687, 7.4725, 7.4711, 7.4693, 7.4681, 7.4663, 7.4693, 7.4681, 7.4663, 7.4693, 7.4726, 7.4708, 7.4734, 7.4766, 7.4749, 7.4734, 7.4717, 7.4699, 7.4681, 7.471, 7.4701, 7.4686, 7.4675, 7.4687, 7.4734, 7.4718, 7.4715, 7.4698, 7.4731, 7.476, 7.4742, 7.4724, 7.4706, 7.4736, 7.4719, 7.4702, 7.4696, 7.4679, 7.4668, 7.4698, 7.479, 7.4775, 7.4759, 7.4792, 7.4823, 7.4851, 7.4877, 7.486, 7.4889, 7.4885, 7.4919, 7.4906, 7.489, 7.4872, 7.4863, 7.4845, 7.4829, 7.4858, 7.4849, 7.4878, 7.4873, 7.4939, 7.493, 7.4921, 7.4904, 7.4942, 7.4974, 7.4964, 7.4955, 7.4983, 7.501, 7.5, 7.4989, 7.4981, 7.5007, 7.4991, 7.5015, 7.4999, 7.4987, 7.4976, 7.4963, 7.4945, 7.4969, 7.4953, 7.4938, 7.4929, 7.4955, 7.4939, 7.4973, 7.4961, 7.4992, 7.5018, 7.5002, 7.4985, 7.4969, 7.4995, 7.4985, 7.497, 7.5003, 7.5029, 7.5013, 7.5003, 7.4994, 7.4977, 7.4972, 7.4955, 7.4938, 7.4924, 7.4907, 7.4894, 7.488, 7.4865, 7.4848, 7.4836, 7.482, 7.4803, 7.4852, 7.4835, 7.4818, 7.4802, 7.4828, 7.4813, 7.4798, 7.4781, 7.4764, 7.475, 7.4801, 7.4787, 7.4816, 7.4803, 7.4751, 7.4743, 7.4727, 7.4714, 7.4697, 7.4681, 7.4666, 7.4694, 7.4679, 7.4672, 7.4669, 7.4654, 7.4647, 7.4632, 7.4622, 7.4607, 7.4591, 7.4575, 7.4568, 7.4558, 7.4546, 7.4574, 7.4524, 7.451, 7.4495, 7.4483, 7.4471, 7.4481, 7.4469, 7.4495, 7.4483, 7.4468, 7.4495, 7.4478, 7.4504, 7.4491, 7.4477, 7.4466, 7.447, 7.4456, 7.4483, 7.4469, 7.4457, 7.4443, 7.4428, 7.4413, 7.4399, 7.4427, 7.4417, 7.444, 7.4466, 7.4457, 7.4441, 7.4469, 7.4461, 7.4445, 7.4429, 7.4415, 7.4399, 7.439, 7.4378, 7.4364, 7.4349, 7.4338, 7.4326, 7.4354, 7.4349, 7.434, 7.4326, 7.4319, 7.4311, 7.4298, 7.4249, 7.4276, 7.4305, 7.429, 7.4315, 7.4309, 7.4294, 7.4279, 7.4302, 7.4292, 7.4278, 7.4263, 7.4294, 7.432, 7.4362, 7.4347, 7.4333, 7.4358, 7.435, 7.4335, 7.432, 7.4344, 7.4332, 7.4354, 7.4352, 7.4376, 7.4362, 7.4449, 7.4434, 7.442, 7.4407, 7.4392, 7.4414, 7.4436, 7.442, 7.4407, 7.4396, 7.4425, 7.4418, 7.4407, 7.4392, 7.4385, 7.4342, 7.4335, 7.4322, 7.4347, 7.4334, 7.432, 7.4318, 7.434, 7.4294, 7.4319, 7.4306, 7.4292, 7.4279, 7.4269, 7.4256, 7.4243, 7.4236, 7.4225, 7.4212, 7.4199, 7.4224, 7.421, 7.4197, 7.4224, 7.4239, 7.4239, 7.4232, 7.4223, 7.4215, 7.4211, 7.4204, 7.4193, 7.4203, 7.4271, 7.428100000000001, 7.4289, 7.4281, 7.4303, 7.4292, 7.4278, 7.4265, 7.4287, 7.4276, 7.4263, 7.4287, 7.4279, 7.4268, 7.4258, 7.4413, 7.44, 7.4393, 7.438, 7.4366, 7.437600000000001, 7.4363, 7.4356, 7.4346, 7.4333, 7.4319, 7.4313, 7.4303, 7.4324, 7.4313, 7.43, 7.4379, 7.4414, 7.4403, 7.4391, 7.4416, 7.4403, 7.4427, 7.4452, 7.4444, 7.4457, 7.4451, 7.4442, 7.4543, 7.4536, 7.456, 7.4528, 7.4587, 7.4573, 7.4565, 7.4554, 7.4564, 7.4586, 7.4576, 7.4569, 7.4555, 7.4542, 7.4529, 7.455, 7.4555, 7.4542, 7.4565, 7.4552, 7.4539, 7.4531, 7.4518, 7.451, 7.4496, 7.4487, 7.4481, 7.4467, 7.4454, 7.4441, 7.4428, 7.4421, 7.4411, 7.4398, 7.4391, 7.4382, 7.4404, 7.4426, 7.4414, 7.4404, 7.4391, 7.4412, 7.4398, 7.4392, 7.4381, 7.4374, 7.4371, 7.4362, 7.4353, 7.4345, 7.4334, 7.4356, 7.4388, 7.4383, 7.4373, 7.4359, 7.4347, 7.4379, 7.4338, 7.4453, 7.4476, 7.4497, 7.4484, 7.4508, 7.4494, 7.4481, 7.4473, 7.4556, 7.4543, 7.4532, 7.4521, 7.4514, 7.45, 7.4492, 7.4483, 7.4472, 7.4464, 7.4457, 7.4455, 7.4444, 7.4463, 7.445, 7.4471, 7.4458, 7.4451, 7.4445, 7.4438, 7.4399, 7.4393, 7.4379, 7.4372, 7.4365, 7.4372, 7.4359, 7.4347, 7.4334, 7.4326, 7.4314, 7.4307, 7.4293, 7.428, 7.4267, 7.4259, 7.4246, 7.4241, 7.4229, 7.422, 7.4241, 7.4262, 7.425, 7.4238, 7.4226, 7.4216, 7.4203, 7.4194, 7.4181, 7.4181, 7.4171, 7.4159, 7.4151, 7.4175, 7.4163, 7.4156, 7.4148, 7.4143, 7.4134, 7.4156, 7.4144, 7.4135, 7.4144, 7.4165, 7.4152, 7.4153, 7.4141, 7.4128, 7.4118, 7.4109, 7.4098, 7.4108, 7.4098, 7.4108, 7.4097, 7.4086, 7.4078, 7.4068, 7.4057, 7.4052, 7.4043, 7.4035, 7.4025, 7.4013, 7.4006, 7.3996, 7.4016, 7.4035, 7.4055, 7.4043, 7.4031, 7.4036, 7.403, 7.4029, 7.4017, 7.4005, 7.4001, 7.4021, 7.4014, 7.3977, 7.4007, 7.3995, 7.4057, 7.4051, 7.404, 7.4028, 7.4022, 7.4059, 7.4047, 7.4057, 7.4044, 7.4131, 7.4125, 7.4146, 7.4135, 7.4127, 7.428, 7.4269, 7.4264, 7.4256, 7.4243, 7.4267, 7.4282, 7.4302, 7.4293, 7.4281, 7.4275, 7.4264, 7.4285, 7.4278, 7.4267, 7.426, 7.4248, 7.4268, 7.4288, 7.4283, 7.4271, 7.4296, 7.4257, 7.4244, 7.4238, 7.4242, 7.4234, 7.4229, 7.4219, 7.4248, 7.4239, 7.423, 7.4219, 7.421, 7.4198, 7.419, 7.4213, 7.4201, 7.4192, 7.4183, 7.4172, 7.421, 7.4201, 7.419, 7.4178, 7.4217, 7.4206, 7.4195, 7.4184, 7.4174, 7.4166, 7.4154, 7.4172, 7.4164, 7.4155, 7.4145, 7.4134, 7.4124, 7.4143, 7.4133, 7.4123, 7.4117, 7.4115, 7.4105, 7.4103, 7.4102, 7.4091, 7.4081, 7.4109, 7.4196, 7.4185, 7.4179, 7.4169, 7.4222, 7.4245, 7.4238, 7.4255, 7.4243, 7.4236, 7.4232, 7.4266, 7.4257, 7.4249, 7.4237, 7.4262, 7.425, 7.424, 7.4228, 7.4218, 7.4207, 7.4209, 7.4231, 7.4222, 7.4215, 7.4206, 7.4196, 7.4216, 7.4236, 7.4226, 7.4215, 7.4203, 7.4205, 7.4197, 7.4207, 7.4258, 7.4252, 7.4271, 7.4261, 7.425, 7.4243, 7.4237, 7.4228, 7.4246, 7.4264, 7.4253, 7.4247, 7.4217, 7.4236, 7.4224, 7.4226, 7.4218, 7.4214, 7.4232, 7.4221, 7.4192, 7.4259, 7.4222, 7.4245, 7.4233, 7.4226, 7.4214, 7.4205, 7.4227, 7.4217, 7.4208, 7.4199, 7.4191, 7.4186, 7.4212, 7.4202, 7.4201, 7.4195, 7.4191, 7.4181, 7.4169, 7.4159, 7.4155, 7.4145, 7.4133, 7.4128, 7.4119, 7.4111, 7.4103, 7.4124, 7.4118, 7.4108, 7.4074, 7.4062, 7.4052, 7.4071, 7.4062, 7.4084, 7.4104, 7.4092, 7.4111, 7.4132, 7.4128, 7.412, 7.4141, 7.4129, 7.412, 7.4111, 7.4104, 7.4093, 7.4082, 7.4074, 7.4063, 7.4056, 7.4049, 7.404, 7.4028, 7.402, 7.4014, 7.4003, 7.4022, 7.4011, 7.403, 7.4047, 7.4037, 7.4027, 7.4044, 7.4061, 7.4049, 7.4038, 7.4026, 7.4016, 7.4005, 7.3995, 7.3988, 7.3982, 7.4001, 7.3992, 7.3981, 7.3976, 7.3971, 7.4, 7.3992, 7.3958, 7.3952, 7.3942, 7.3932, 7.3921, 7.3912, 7.3901, 7.3918, 7.3914, 7.3908, 7.3898, 7.3908000000000005, 7.391800000000001, 7.3926, 7.392, 7.3914, 7.3933, 7.3955, 7.3948, 7.3937, 7.4025, 7.4042, 7.4034, 7.4054, 7.4046, 7.4038, 7.403, 7.4051, 7.4042, 7.4032, 7.4051, 7.4041, 7.4031, 7.402, 7.4018, 7.4007, 7.3999, 7.3989, 7.3984, 7.3974, 7.3993, 7.4011, 7.4005, 7.3994, 7.3984, 7.4002, 7.4108, 7.4102, 7.4095, 7.4092, 7.4112, 7.4128, 7.4118, 7.4109, 7.4103, 7.4121, 7.4113, 7.4106, 7.4098, 7.4091, 7.4081, 7.4099, 7.4094, 7.4088, 7.4103, 7.4093, 7.4082, 7.4071, 7.4065, 7.4082, 7.4074, 7.4072, 7.408, 7.4071, 7.4062, 7.4052, 7.4068, 7.4086, 7.4104, 7.4122, 7.4141, 7.4156, 7.4146, 7.4194, 7.4188, 7.4178, 7.4168, 7.4173, 7.4169, 7.4163, 7.4181, 7.4175, 7.4175, 7.4192, 7.4209, 7.4226, 7.4243, 7.4233, 7.4222, 7.4234, 7.4224, 7.4218, 7.421, 7.4199, 7.4195, 7.4189, 7.4157, 7.4154, 7.4145, 7.4141, 7.4135, 7.4126, 7.4142, 7.4135, 7.4126, 7.4145, 7.4136, 7.4155, 7.4145, 7.4137, 7.4127, 7.4118, 7.4113, 7.4104, 7.4121, 7.4111, 7.4207, 7.4197, 7.4193, 7.4183, 7.4228, 7.4227, 7.4221, 7.4238, 7.4236, 7.4251, 7.4241, 7.4236, 7.4204, 7.4194, 7.4277, 7.4267, 7.4256, 7.4247, 7.4242, 7.4233, 7.4223, 7.4214, 7.4205, 7.4221, 7.4215, 7.4206, 7.4175, 7.4193, 7.4185, 7.4175, 7.4165, 7.4155, 7.4145, 7.4137, 7.4127, 7.4173, 7.4164, 7.418, 7.417, 7.4186, 7.4176, 7.4166, 7.4158, 7.4152, 7.4168, 7.4186, 7.4176, 7.4193, 7.4183, 7.4173, 7.4293, 7.4285, 7.4404, 7.4409, 7.4401, 7.444, 7.4431, 7.4422, 7.4414, 7.445, 7.4459, 7.4452, 7.4447, 7.4438, 7.4429, 7.4426, 7.4443, 7.4433, 7.4427, 7.4418, 7.4408, 7.4398, 7.4389, 7.4381, 7.4397, 7.439, 7.4385, 7.4377, 7.4393, 7.4383, 7.4373, 7.4389, 7.4379, 7.4369, 7.4359, 7.4352, 7.4321, 7.4338, 7.4328, 7.4319, 7.4336, 7.4326, 7.4342, 7.4338, 7.438, 7.4396, 7.4387, 7.4404, 7.442, 7.4412, 7.4402, 7.4397, 7.4392, 7.4387, 7.438, 7.4375, 7.4366, 7.4361, 7.4351, 7.4346, 7.436, 7.4353, 7.4348, 7.4341, 7.4358, 7.4351, 7.4345, 7.4335, 7.4329, 7.4325, 7.4316, 7.4309, 7.4305, 7.4322, 7.4339, 7.4329, 7.4345, 7.4314, 7.4334, 7.4325, 7.4345, 7.4315, 7.4306, 7.4436, 7.4428, 7.4399, 7.4389, 7.4385, 7.4403, 7.4393, 7.4409, 7.4404, 7.4402, 7.4417, 7.4432, 7.4423, 7.4413, 7.4383, 7.4374, 7.437, 7.4364, 7.4355, 7.4346, 7.4362, 7.4358, 7.4386, 7.4376, 7.4366, 7.436, 7.4352, 7.4343, 7.4335, 7.4331, 7.4321, 7.4321, 7.4312, 7.4329, 7.4299, 7.4294, 7.4289, 7.4281, 7.4295, 7.431, 7.4305, 7.4297, 7.4303, 7.4297, 7.4293, 7.4285, 7.4292, 7.4286, 7.4277, 7.4268, 7.4262, 7.4252, 7.4244, 7.4236, 7.4251, 7.4248, 7.4246, 7.4216, 7.4207, 7.4177, 7.4192, 7.4198, 7.4189, 7.4183, 7.4177, 7.4192, 7.4183, 7.4198, 7.4189, 7.4206, 7.4197, 7.4191, 7.4185, 7.4176, 7.4167, 7.4183, 7.418, 7.4172, 7.4187, 7.4202, 7.4202, 7.4193, 7.4188, 7.4179, 7.417, 7.4161, 7.4152, 7.4143, 7.4138, 7.4132, 7.4123, 7.412, 7.4111, 7.4102, 7.4093, 7.4109, 7.4123, 7.4117, 7.4107, 7.4101, 7.4092, 7.411, 7.4105, 7.4097, 7.4089, 7.408, 7.4072, 7.4086, 7.4078, 7.407, 7.4086, 7.4101, 7.4098, 7.4094, 7.4108, 7.41, 7.4094, 7.4092, 7.4208, 7.4226, 7.4307, 7.4303, 7.4294, 7.4295, 7.4291, 7.4308, 7.4298, 7.4289, 7.426, 7.4275, 7.4266, 7.4282, 7.4273, 7.4264, 7.4278, 7.4269, 7.426, 7.4251, 7.425, 7.4246, 7.4238, 7.4251, 7.4245, 7.4239, 7.4235, 7.4212, 7.4204, 7.4195, 7.4192, 7.4209, 7.4201, 7.4194, 7.4214, 7.4213, 7.4231, 7.4227, 7.4219, 7.4213, 7.419, 7.4205, 7.4197, 7.4237, 7.4252, 7.4245, 7.4244, 7.4235, 7.423, 7.4221, 7.4306, 7.4301, 7.4297, 7.429, 7.429, 7.428, 7.4303, 7.4289, 7.4281, 7.4274, 7.4291, 7.4279, 7.4296, 7.4294, 7.4285, 7.4277, 7.4295, 7.4291, 7.4287, 7.4279, 7.4277, 7.4275, 7.4266, 7.4261, 7.4256, 7.4229, 7.4243, 7.4234, 7.425, 7.4245, 7.4258, 7.4255, 7.4269, 7.4264, 7.4261, 7.4277, 7.4299, 7.4293, 7.4286, 7.4277, 7.4268, 7.4328, 7.432, 7.4335, 7.4372, 7.4364, 7.4356, 7.4347, 7.4361, 7.4337, 7.4351, 7.4342, 7.4333, 7.4347, 7.4342, 7.4356, 7.437, 7.4366, 7.4338, 7.4329, 7.4323, 7.4315, 7.4311, 7.4327, 7.4318, 7.431, 7.4302, 7.4299, 7.4297, 7.4294, 7.4285, 7.4278, 7.4277, 7.4268, 7.4308, 7.4322, 7.4294, 7.4266, 7.4238, 7.4239, 7.4231, 7.424, 7.4237, 7.4219, 7.4211, 7.4225, 7.424, 7.4231, 7.4227, 7.4218, 7.421, 7.4206, 7.4202, 7.4195, 7.4192, 7.4206, 7.4201, 7.4196, 7.421, 7.4203, 7.4194, 7.4188, 7.4183, 7.4239, 7.423, 7.4226, 7.422, 7.4211, 7.4202, 7.4195, 7.4353, 7.4345, 7.436, 7.4352, 7.4345, 7.434, 7.4331, 7.4333, 7.4325, 7.4316, 7.4307, 7.4301, 7.4292, 7.4285, 7.4278, 7.4292, 7.4284, 7.4276, 7.4267, 7.4259, 7.4253, 7.4268, 7.426, 7.4252, 7.4249, 7.4243, 7.4235, 7.425, 7.4267, 7.4259, 7.4254, 7.4245, 7.4237, 7.4232, 7.423, 7.4244, 7.4236, 7.425, 7.4247, 7.4239, 7.4234, 7.4226, 7.4241, 7.4234, 7.4231, 7.4223, 7.426, 7.4296, 7.4287, 7.4278, 7.4291, 7.4283, 7.4277, 7.4269, 7.426, 7.4251, 7.4244, 7.4247, 7.4244, 7.4237, 7.4229, 7.4244, 7.4241, 7.4235, 7.4227, 7.422, 7.4234, 7.4226, 7.4199, 7.419, 7.4184, 7.4198, 7.419, 7.4184, 7.4198, 7.4212, 7.4226, 7.4218, 7.4232, 7.4245, 7.4239, 7.4231, 7.4204, 7.4206, 7.4202, 7.4195, 7.4186, 7.42, 7.4193, 7.4206, 7.4198, 7.4189, 7.4181, 7.4175, 7.4169, 7.4161, 7.4174, 7.4166, 7.418, 7.4193, 7.4186, 7.4186, 7.4181, 7.4174, 7.4188, 7.4183, 7.4198, 7.419, 7.4202, 7.4197, 7.4189, 7.4185, 7.4187, 7.4202, 7.4196, 7.4187, 7.4181, 7.4174, 7.4189, 7.4185, 7.4178, 7.4214, 7.4207, 7.42, 7.4193, 7.4172, 7.4165, 7.4157, 7.415, 7.4168, 7.4142, 7.4155, 7.4147, 7.4139, 7.4131, 7.413, 7.4143, 7.4135, 7.413, 7.4163, 7.4155, 7.4147, 7.4146, 7.4159, 7.4151, 7.4145, 7.4158, 7.4171, 7.4163, 7.4155, 7.421, 7.4204, 7.4196, 7.4188, 7.4186, 7.4179, 7.4171, 7.4186, 7.4179, 7.4193, 7.4185, 7.4178, 7.4172, 7.4166, 7.4181, 7.418, 7.4174, 7.4167, 7.4161, 7.4153, 7.4153, 7.4145, 7.4139, 7.4131, 7.4123, 7.4118, 7.411, 7.4123, 7.4136, 7.4149, 7.4141, 7.4139, 7.4131, 7.4143, 7.4135, 7.4132, 7.4128, 7.412, 7.4112, 7.4107, 7.4101, 7.4094, 7.4086, 7.4079, 7.4071, 7.4067, 7.4085, 7.4077, 7.4069, 7.4043, 7.4035, 7.4031, 7.4024, 7.4082, 7.4076, 7.4072, 7.4066, 7.4059, 7.4077, 7.4093, 7.4098, 7.4097, 7.4091, 7.4122, 7.4138, 7.4136, 7.4112, 7.4104, 7.4099, 7.4091, 7.4083, 7.4081, 7.4084, 7.4098, 7.4093, 7.409, 7.4083, 7.4096, 7.4089, 7.4143, 7.4136, 7.4131, 7.4128, 7.4148, 7.4177, 7.4169, 7.4162, 7.4154, 7.4149, 7.4141, 7.4134, 7.4147, 7.4124, 7.4117, 7.411, 7.4107, 7.41, 7.4094, 7.4086, 7.408, 7.4072, 7.4064, 7.4057, 7.407, 7.4083, 7.4076, 7.4069, 7.4062, 7.4058, 7.4071, 7.4063, 7.4056, 7.4049, 7.4042, 7.4038, 7.4032, 7.4025, 7.4038, 7.4051, 7.4044, 7.4057, 7.4052, 7.4065, 7.4057, 7.4068, 7.4063, 7.4057, 7.4051, 7.4045, 7.4039, 7.4054, 7.4047, 7.4044, 7.406, 7.4053, 7.4048, 7.4041, 7.4034, 7.4027, 7.404, 7.4053, 7.4122, 7.4117, 7.411, 7.4121, 7.4119, 7.4133, 7.4145, 7.4158, 7.4155, 7.4147, 7.4161, 7.4137, 7.4149, 7.4143, 7.4137, 7.413, 7.4136, 7.4128, 7.4142, 7.4119, 7.4111, 7.4105, 7.4099, 7.4098, 7.4095, 7.4108, 7.4101, 7.4094, 7.4087, 7.408, 7.4094, 7.4087, 7.408, 7.4073, 7.4072, 7.4066, 7.406, 7.4052, 7.4051, 7.4054, 7.4047, 7.4057, 7.4094, 7.4088, 7.4101, 7.4126, 7.4119, 7.4131, 7.4127, 7.4123, 7.4115, 7.4127, 7.4139, 7.4151, 7.4145, 7.4141, 7.4134, 7.4127, 7.4123, 7.4119, 7.4131, 7.4135, 7.4131, 7.4131, 7.4146, 7.4142, 7.4134, 7.4128, 7.4124, 7.4104, 7.4106, 7.4109, 7.4121, 7.4117, 7.4095, 7.4097, 7.4109, 7.4166, 7.416, 7.4155, 7.4147, 7.4143, 7.4137, 7.4133, 7.4127, 7.412, 7.4118, 7.4095, 7.4088, 7.41, 7.4093, 7.4086, 7.4079, 7.409, 7.4089, 7.4097, 7.4092, 7.4086, 7.4078, 7.4093, 7.4089, 7.4082, 7.4078, 7.4071, 7.4048, 7.4043, 7.4039, 7.4056, 7.4049, 7.4043, 7.4042, 7.4035, 7.4012, 7.4044, 7.4041, 7.4034, 7.403, 7.4011, 7.4004, 7.4001, 7.4013, 7.4006, 7.4018, 7.4029, 7.4024, 7.4023, 7.4015, 7.4027, 7.402, 7.4012, 7.4005, 7.4018, 7.4014, 7.401, 7.4003, 7.3998, 7.4, 7.4012, 7.4008, 7.4006, 7.4024, 7.4036, 7.4039, 7.4057, 7.408, 7.4072, 7.4086, 7.4104, 7.4116, 7.4109, 7.4121, 7.4133, 7.4129, 7.4122, 7.4115, 7.4114, 7.4107, 7.4124, 7.4136, 7.4148, 7.4142, 7.4152, 7.4148, 7.4142, 7.4135, 7.4129, 7.4122, 7.4115, 7.4109, 7.4104, 7.412, 7.4113, 7.4106, 7.4101, 7.4112, 7.4105, 7.4098, 7.4109, 7.4101, 7.4094, 7.4105, 7.4099, 7.4092, 7.4086, 7.408, 7.4073, 7.4069, 7.4062, 7.4055, 7.4051, 7.4046, 7.4039, 7.4021, 7.4016, 7.4009, 7.4002, 7.3999, 7.3992, 7.4006, 7.4019, 7.4018, 7.4017, 7.401, 7.4003, 7.3999, 7.3995, 7.399, 7.4003, 7.4001, 7.4002, 7.4, 7.3982, 7.3975, 7.3971, 7.3967, 7.3983, 7.3976, 7.4005, 7.4003, 7.3996, 7.4006, 7.3999, 7.4001, 7.3996, 7.399, 7.3984, 7.398, 7.3973, 7.3966, 7.396, 7.3956, 7.3952, 7.3946, 7.3996, 7.3988, 7.3981, 7.4003, 7.3997, 7.3991, 7.4003, 7.4015, 7.3993, 7.4005, 7.4003, 7.3996, 7.3989, 7.3985, 7.3978, 7.3974, 7.3968, 7.3962, 7.3973, 7.3967, 7.3979, 7.3991, 7.3984, 7.3997, 7.3992, 7.3985, 7.3983, 7.3995, 7.3973, 7.3985, 7.398, 7.3973, 7.3985, 7.398, 7.3974, 7.3974, 7.3968, 7.3965, 7.3977, 7.3971, 7.3986, 7.3991, 7.3984, 7.3996, 7.4007, 7.4001, 7.3994, 7.3987, 7.398, 7.3976, 7.3989, 7.3985, 7.3978, 7.4014, 7.4024, 7.4019, 7.3998, 7.401, 7.4003, 7.3998, 7.4026, 7.4037, 7.403, 7.4023, 7.4034, 7.4012, 7.4006, 7.4002, 7.3996, 7.3991, 7.3984, 7.3997, 7.3992, 7.3988, 7.3968, 7.3981, 7.398, 7.3981, 7.3975, 7.397, 7.3969, 7.3962, 7.3972, 7.3969, 7.3947, 7.3944, 7.3937, 7.3931, 7.3929, 7.3927, 7.3921, 7.3914, 7.3892, 7.3885, 7.3879, 7.3887, 7.3884, 7.3877, 7.387, 7.3867, 7.3863, 7.3857, 7.3853, 7.3867, 7.386, 7.3857, 7.385, 7.3861, 7.3857, 7.387, 7.3867, 7.386, 7.3863, 7.3883, 7.3876, 7.3924, 7.3989, 7.3983, 7.3977, 7.4011, 7.404, 7.4042, 7.4036, 7.4034, 7.4027, 7.4037, 7.4048, 7.4044, 7.4049, 7.4045, 7.4039, 7.4032, 7.4042, 7.4053, 7.4046, 7.4041, 7.4022, 7.4017, 7.4012, 7.4007, 7.4017, 7.4011, 7.4008, 7.4005, 7.4, 7.4011, 7.4005, 7.4, 7.3993, 7.3987, 7.3981, 7.3975, 7.3968, 7.3982, 7.3975, 7.3969, 7.3963, 7.3957, 7.3953, 7.3949, 7.3944, 7.3937, 7.3917, 7.3928, 7.3939, 7.3933, 7.3929, 7.3923, 7.3921, 7.3918, 7.3912, 7.3911, 7.3906, 7.3901, 7.3896, 7.3894, 7.3889, 7.3884, 7.3879, 7.3876, 7.3906, 7.3937, 7.3933, 7.3927, 7.3922, 7.3917, 7.3932, 7.3929, 7.3942, 7.3936, 7.3947, 7.3941, 7.3935, 7.3946, 7.3957, 7.3967, 7.3969, 7.398, 7.4042, 7.4038, 7.405, 7.4046, 7.4051, 7.4046, 7.404, 7.4036, 7.403, 7.4024, 7.4035, 7.4034, 7.4033, 7.4027, 7.4021, 7.4032, 7.4026, 7.4021, 7.4019, 7.4015, 7.3995, 7.4, 7.3979, 7.3972, 7.3996, 7.4006, 7.4018, 7.4017, 7.4011, 7.4005, 7.4, 7.401, 7.4004, 7.4, 7.3995, 7.4005, 7.4, 7.3994, 7.4005, 7.4008, 7.4004, 7.3998, 7.3994, 7.3991, 7.3987, 7.3981, 7.3975, 7.3969, 7.3963, 7.3957, 7.3968, 7.3977, 7.3973, 7.3999, 7.4025, 7.4021, 7.4018, 7.4012, 7.4006, 7.4002, 7.4012, 7.4007, 7.4003, 7.3983, 7.3976, 7.3973, 7.3967, 7.3978, 7.3957, 7.3956, 7.395, 7.3962, 7.396, 7.3958, 7.3959, 7.3955, 7.3949, 7.3947, 7.3958, 7.3952, 7.3964, 7.3958, 7.3969, 7.398, 7.3992, 7.4003, 7.3997, 7.4006, 7.4004, 7.3998, 7.4024, 7.4019, 7.403, 7.4024, 7.4018, 7.4013, 7.4022, 7.4016, 7.4012, 7.4006, 7.4, 7.3998, 7.3991, 7.3984, 7.4017, 7.4019, 7.4037, 7.4033, 7.4028, 7.4024, 7.4029, 7.4027, 7.4007, 7.4001, 7.3996, 7.3992, 7.4003, 7.3997, 7.4003, 7.3999, 7.3994, 7.3991, 7.3986, 7.3998, 7.401, 7.402, 7.4014, 7.4014, 7.4025, 7.402, 7.4031, 7.4044, 7.4044, 7.4054, 7.4047, 7.4043, 7.4037, 7.4033, 7.4028, 7.4022, 7.4017, 7.4011, 7.4022, 7.4016, 7.401, 7.4004, 7.4041, 7.4051, 7.4061, 7.4073, 7.4083, 7.408, 7.4074, 7.4077, 7.4071, 7.4065, 7.4059, 7.4053, 7.4047, 7.4042, 7.4036, 7.4033, 7.4027, 7.4021, 7.402, 7.4016, 7.4013, 7.401, 7.402, 7.4017, 7.4011, 7.4008, 7.4002, 7.3998, 7.4014, 7.4008, 7.4002, 7.3998, 7.3996, 7.399, 7.3984, 7.3979, 7.3989, 7.3985, 7.3996, 7.3993, 7.3987, 7.3981, 7.3978, 7.3974, 7.3968, 7.3962, 7.3956, 7.395, 7.3964, 7.3981, 7.398, 7.3974, 7.3969, 7.3983, 7.3984, 7.3993, 7.4004, 7.4007, 7.4004, 7.4013, 7.401, 7.4013, 7.4022, 7.4033, 7.4028, 7.4023, 7.4018, 7.4013, 7.4024, 7.4018, 7.403, 7.4026, 7.402, 7.4015, 7.4025, 7.402, 7.4018, 7.4015, 7.401, 7.4021, 7.4017, 7.4011, 7.4007, 7.4034, 7.4031, 7.4025, 7.4019, 7.4014, 7.4012, 7.4009, 7.4019, 7.4013, 7.401, 7.4004, 7.3999, 7.3996, 7.3992, 7.3988, 7.3984, 7.3965, 7.3965, 7.3975, 7.3971, 7.3965, 7.3962, 7.3959, 7.397, 7.3981, 7.3977, 7.3974, 7.3984, 7.3978, 7.3989, 7.3985, 7.3979, 7.3975, 7.3985, 7.3992, 7.4002, 7.4001, 7.3995, 7.3989, 7.3985, 7.3979, 7.3975, 7.3971, 7.3965, 7.3959, 7.3953, 7.3948, 7.395, 7.3945, 7.3939, 7.3934, 7.3928, 7.3939, 7.3936, 7.3931, 7.3931, 7.3925, 7.3922, 7.3919, 7.3913, 7.3907, 7.4007, 7.4017, 7.403, 7.4025, 7.404, 7.4076, 7.407, 7.4067, 7.4061, 7.4056, 7.4066, 7.4064, 7.4073, 7.4067, 7.4063, 7.4057, 7.4067, 7.4061, 7.4059, 7.4055, 7.4064, 7.4059, 7.4057, 7.4055, 7.405, 7.405, 7.4044, 7.4052, 7.4033, 7.4029, 7.4024, 7.402, 7.4017, 7.4015, 7.4011, 7.4021, 7.4016, 7.4011, 7.4021, 7.4016, 7.401, 7.4005, 7.4, 7.3995, 7.4005, 7.4045, 7.4056, 7.4051, 7.4062, 7.4063, 7.4058, 7.4057, 7.4051, 7.4046, 7.4056, 7.405, 7.4048, 7.411, 7.4105, 7.4117, 7.4112, 7.411, 7.4115, 7.4144, 7.4155, 7.4164, 7.4158, 7.4155, 7.4151, 7.4162, 7.4157, 7.4168, 7.4162, 7.4156, 7.4151, 7.416, 7.417, 7.4167, 7.4161, 7.4157, 7.4151, 7.4146, 7.4141, 7.4136, 7.413, 7.4143, 7.414, 7.4134, 7.413, 7.4127, 7.4147, 7.4143, 7.414, 7.4135, 7.413, 7.4125, 7.4121, 7.4103, 7.41, 7.4129, 7.4125, 7.412, 7.4115, 7.411, 7.4106, 7.4117, 7.4113, 7.4109, 7.4118, 7.4112, 7.4108, 7.4118, 7.4129, 7.4123, 7.4119, 7.4136, 7.4145, 7.4147, 7.4145, 7.4141, 7.4141, 7.4166, 7.4188, 7.4205, 7.4202, 7.4196, 7.419, 7.4201, 7.4211, 7.4245, 7.4239, 7.4236, 7.423, 7.4225, 7.4221, 7.4218, 7.4204, 7.4198, 7.4192, 7.4188, 7.4182, 7.4193, 7.4189, 7.4202, 7.4198, 7.4207, 7.4201, 7.4197, 7.4191, 7.4187, 7.4181, 7.4177, 7.4185, 7.418, 7.4176, 7.4173, 7.4169, 7.4163, 7.4158, 7.4154, 7.4148, 7.4157, 7.4167, 7.4162, 7.4159, 7.4153, 7.4135, 7.413, 7.4125, 7.4122, 7.4117, 7.4126, 7.4136, 7.4131, 7.4125, 7.412, 7.4117, 7.4112, 7.4107, 7.4116, 7.4112, 7.4106, 7.4143, 7.4138, 7.4132, 7.4126, 7.4121, 7.4116, 7.4111, 7.4122, 7.4119, 7.4113, 7.4111, 7.4107, 7.4101, 7.4098, 7.4094, 7.4089, 7.4084, 7.4081, 7.4075, 7.407, 7.4074, 7.407, 7.4064, 7.4058, 7.4053, 7.405, 7.4045, 7.404, 7.4034, 7.4016, 7.4011, 7.4005, 7.4001, 7.3996, 7.3992, 7.4001, 7.4011, 7.402, 7.4017, 7.4012, 7.4021, 7.4016, 7.4025, 7.4019, 7.4021, 7.4029, 7.4023, 7.4033, 7.4044, 7.4026, 7.402, 7.4029, 7.4039, 7.405, 7.4045, 7.4041, 7.4036, 7.4032, 7.4041, 7.4035, 7.4048, 7.4059, 7.4059, 7.4053, 7.405, 7.4059, 7.4067, 7.4064, 7.4073, 7.4067, 7.4062, 7.407, 7.408, 7.4062, 7.4058, 7.4067, 7.4061, 7.4055, 7.4049, 7.4057, 7.4061, 7.4044, 7.4039, 7.4034, 7.4032, 7.4026, 7.4036, 7.4033, 7.4029, 7.4056, 7.4051, 7.4061, 7.4062, 7.4058, 7.4055, 7.405, 7.4045, 7.4039, 7.4049, 7.4032, 7.4027, 7.4022, 7.4008, 7.4003, 7.4, 7.3996, 7.3993, 7.3992, 7.3988, 7.3986, 7.3995, 7.3989, 7.3998, 7.3993, 7.399, 7.3985, 7.3994, 7.3991, 7.4001, 7.3997, 7.3994, 7.3991, 7.4, 7.3998, 7.3993, 7.3987, 7.3983, 7.398, 7.3989, 7.3983, 7.3979, 7.3976, 7.3985, 7.3982, 7.398, 7.3989, 7.3984, 7.3978, 7.4004, 7.4, 7.3995, 7.399, 7.4015, 7.401, 7.4006, 7.4018, 7.4017, 7.4028, 7.4013, 7.401, 7.4005, 7.4003, 7.4012, 7.4006, 7.4015, 7.4011, 7.4007, 7.4004, 7.4002, 7.3998, 7.3994, 7.4001, 7.4011, 7.4006, 7.4002, 7.3997, 7.3979, 7.3974, 7.3968, 7.3968, 7.3963, 7.3963, 7.3957, 7.3952, 7.3947, 7.3957, 7.3952, 7.3971, 7.398, 7.3963, 7.3974, 7.3959, 7.3955, 7.395, 7.3959, 7.3954, 7.3948, 7.3942, 7.3938, 7.3934, 7.3931, 7.3925, 7.3919, 7.3915, 7.3909, 7.3904, 7.3914, 7.3908, 7.3893, 7.3891, 7.3901, 7.3897, 7.3894, 7.3905, 7.39, 7.3897, 7.3892, 7.3887, 7.3882, 7.3892, 7.389, 7.3885, 7.3882, 7.3892, 7.3902, 7.3912, 7.3909, 7.3918, 7.3913, 7.3922, 7.3917, 7.3916, 7.3925, 7.3934, 7.3929, 7.3937, 7.392, 7.3917, 7.3927, 7.3924, 7.3907, 7.3904, 7.3899, 7.3894, 7.3889, 7.3884, 7.3879, 7.3874, 7.3882, 7.3878, 7.3873, 7.3869, 7.3878, 7.3874, 7.3869, 7.3852, 7.3853, 7.3848, 7.3851, 7.3861, 7.3858, 7.3855, 7.3852, 7.3847, 7.3842, 7.3837, 7.3846, 7.3842, 7.3866, 7.3861, 7.3844, 7.3841, 7.3837, 7.3846, 7.3841, 7.3838, 7.3836, 7.3831, 7.3826, 7.3835, 7.3843, 7.3827, 7.3811, 7.3806, 7.3802, 7.3798, 7.3795, 7.3791, 7.3802, 7.3811, 7.3807, 7.3816, 7.3813, 7.3823, 7.3819, 7.3816, 7.3811, 7.3806, 7.3815, 7.381, 7.3807, 7.379, 7.3787, 7.377, 7.3766, 7.3762, 7.3757, 7.3752, 7.3749, 7.3744, 7.3739, 7.3734, 7.3729, 7.3724, 7.3732, 7.374, 7.3748, 7.3759, 7.3766, 7.3762, 7.3757, 7.3753, 7.3749, 7.3789, 7.3803, 7.38, 7.3783, 7.378, 7.3776, 7.3805, 7.3807, 7.3803, 7.3812, 7.3808, 7.3804, 7.38, 7.3808, 7.3817, 7.3804, 7.3889, 7.3884, 7.3879, 7.3875, 7.3885, 7.3882, 7.3879, 7.3887, 7.3885, 7.3881, 7.389, 7.3887, 7.3885, 7.3885, 7.3884, 7.388, 7.3875, 7.3884, 7.3895, 7.3904, 7.3901, 7.391, 7.3908, 7.3904, 7.3913, 7.3908, 7.3917, 7.3914, 7.3923, 7.3918, 7.3913, 7.3908, 7.3903, 7.3898, 7.3893, 7.3901, 7.391, 7.3905, 7.39, 7.3896, 7.3946, 7.3943, 7.3972, 7.397, 7.3979, 7.3974, 7.3969, 7.3978, 7.3974, 7.3972, 7.3967, 7.3964, 7.3959, 7.3955, 7.3953, 7.3963, 7.3958, 7.3953, 7.3953, 7.3962, 7.3957, 7.3955, 7.3981, 7.3979, 7.3974, 7.3982, 7.3977, 7.3962, 7.4003, 7.3998, 7.3993, 7.399, 7.3985, 7.3982, 7.3977, 7.3972, 7.3967, 7.3974, 7.397, 7.3967, 7.3975, 7.397, 7.3965, 7.396, 7.3955, 7.3963, 7.3958, 7.3953, 7.3961, 7.3969, 7.3964, 7.3962, 7.3957, 7.3952, 7.3947, 7.3945, 7.3941, 7.3924, 7.3919, 7.3914, 7.3923, 7.3918, 7.3913, 7.3908, 7.3906, 7.3902, 7.391, 7.3908, 7.3903, 7.3899, 7.3894, 7.389, 7.3887, 7.3882, 7.388, 7.3878, 7.3873, 7.387, 7.3878, 7.3886, 7.3881, 7.3876, 7.3872, 7.3867, 7.3862, 7.3858, 7.3853, 7.3837, 7.3832, 7.3827, 7.3836, 7.3831, 7.3826, 7.3837, 7.3832, 7.3827, 7.3823, 7.3822, 7.3817, 7.3825, 7.382, 7.3818, 7.3826, 7.3823, 7.382, 7.3829, 7.3825, 7.3822, 7.3831, 7.3841, 7.3838, 7.3834, 7.3835, 7.3833, 7.3828, 7.3827, 7.3826, 7.3821, 7.3819, 7.3814, 7.3811, 7.3806, 7.3804, 7.3799, 7.3808, 7.3804, 7.3799, 7.38, 7.3798, 7.3793, 7.3801, 7.3835, 7.383, 7.3825, 7.3821, 7.3822, 7.3818, 7.3844, 7.383, 7.3848, 7.3844, 7.3839, 7.3846, 7.3843, 7.3842, 7.3837, 7.3847, 7.3844, 7.3841, 7.3838, 7.3846, 7.3841, 7.3836, 7.3833, 7.3841, 7.3836, 7.3844, 7.3839, 7.3834, 7.383, 7.3825, 7.3824, 7.3819, 7.3816, 7.3811, 7.3806, 7.3814, 7.381, 7.3805, 7.3802, 7.3797, 7.3792, 7.3787, 7.3782, 7.3777, 7.3773, 7.3774, 7.3774, 7.3787, 7.3782, 7.3778, 7.3763, 7.3759, 7.3768, 7.3754, 7.375, 7.3745, 7.3741, 7.3749, 7.3744, 7.374, 7.3735, 7.373, 7.3739, 7.3748, 7.3757, 7.3752, 7.3749, 7.3758, 7.3753, 7.3761, 7.3758, 7.3755, 7.3752, 7.3759, 7.3754, 7.3751, 7.3759, 7.3754, 7.3751, 7.3747, 7.3742, 7.374, 7.3747, 7.3756, 7.3751, 7.3749, 7.3746, 7.3754, 7.3749, 7.3744, 7.3739, 7.3734, 7.3732, 7.373, 7.3733, 7.373, 7.3728, 7.3723, 7.373, 7.3725, 7.3722, 7.3731, 7.3729, 7.3737, 7.3732, 7.3728, 7.3737, 7.3734, 7.373, 7.3726, 7.3723, 7.372, 7.3715, 7.3723, 7.3718, 7.3715, 7.3712, 7.3721, 7.373, 7.3725, 7.3732, 7.3729, 7.3736, 7.3732, 7.3741, 7.3736, 7.3732, 7.3727, 7.3711, 7.3696, 7.3692, 7.3689, 7.37, 7.3696, 7.3692, 7.3689, 7.3684, 7.3679, 7.3689, 7.3686, 7.3682, 7.3679, 7.3676, 7.3676, 7.3671, 7.3669, 7.3678, 7.3664, 7.365, 7.3645, 7.3655, 7.3652, 7.3647, 7.3646, 7.3643, 7.364, 7.3649, 7.3647, 7.3642, 7.3649, 7.367, 7.3724, 7.3731, 7.3739, 7.3735, 7.3733, 7.3731, 7.3727, 7.3735, 7.3735, 7.3732, 7.3729, 7.3727, 7.3723, 7.3718, 7.3726, 7.3723, 7.3718, 7.3713, 7.3711, 7.3706, 7.3705, 7.3719, 7.3722, 7.3718, 7.3726, 7.3724, 7.372, 7.3716, 7.3724, 7.3732, 7.374, 7.3726, 7.3722, 7.3732, 7.3728, 7.3736, 7.3733, 7.3744, 7.374, 7.3737, 7.3746, 7.3741, 7.3736, 7.3734, 7.3731, 7.373, 7.3728, 7.3723, 7.3718, 7.3714, 7.371, 7.3706, 7.3702, 7.3697, 7.3693, 7.3688, 7.3696, 7.3693, 7.3688, 7.3683, 7.3691, 7.3699, 7.3694, 7.3702, 7.3697, 7.3705, 7.3713, 7.3721, 7.3716, 7.3704, 7.3702, 7.3698, 7.3693, 7.3689, 7.3697, 7.3706, 7.3703, 7.3691, 7.3687, 7.3696, 7.3692, 7.3688, 7.3688, 7.3687, 7.3683, 7.368, 7.3681, 7.3666, 7.3664, 7.3666, 7.3674, 7.3673, 7.3669, 7.3676, 7.3671, 7.367, 7.3665, 7.3662, 7.3658, 7.3668, 7.3691, 7.3687, 7.3682, 7.3681, 7.3676, 7.3672, 7.3668, 7.3663, 7.366, 7.3656, 7.3653, 7.3649, 7.367, 7.3682, 7.3678, 7.3677, 7.3685, 7.3682, 7.3679, 7.3677, 7.3673, 7.367, 7.3668, 7.3665, 7.3663, 7.3672, 7.3669, 7.3667, 7.3666, 7.3675, 7.3671, 7.367, 7.3666, 7.3661, 7.3669, 7.3665, 7.3673, 7.3668, 7.3676, 7.3671, 7.3667, 7.3663, 7.3658, 7.3654, 7.3651, 7.3646, 7.3654, 7.3649, 7.3644, 7.3639, 7.3659, 7.3668, 7.3682, 7.3678, 7.3674, 7.367, 7.3666, 7.3663, 7.3659, 7.3656, 7.3662, 7.366, 7.3655, 7.3688, 7.3695, 7.3691, 7.3691, 7.3688, 7.3686, 7.3684, 7.3692, 7.3694, 7.3715, 7.3723, 7.3719, 7.3715, 7.3712, 7.3721, 7.3717, 7.3743, 7.3739, 7.3746, 7.3753, 7.3751, 7.3759, 7.3757, 7.3754, 7.375, 7.3746, 7.3754, 7.3749, 7.3746, 7.3759, 7.3756, 7.3754, 7.3762, 7.3757, 7.3752, 7.3759, 7.3754, 7.3763, 7.376, 7.3756, 7.3752, 7.375, 7.3746, 7.3754, 7.3762, 7.377, 7.378, 7.3776, 7.3773, 7.3769, 7.3765, 7.3775, 7.3782, 7.379, 7.379, 7.3799, 7.3807, 7.3804, 7.3812, 7.381, 7.3818, 7.3814, 7.3811, 7.3819, 7.3826, 7.3823, 7.3822, 7.383, 7.3825, 7.382, 7.3829, 7.3825, 7.3827, 7.3826, 7.3822, 7.3819, 7.3815, 7.3823, 7.3819, 7.3815, 7.3811, 7.3807, 7.3804, 7.38, 7.3796, 7.3793, 7.3802, 7.381, 7.3807, 7.3792, 7.3788, 7.3784, 7.378, 7.378, 7.3788, 7.3785, 7.3781, 7.3779, 7.3776, 7.3772, 7.3779, 7.3787, 7.3785, 7.3783, 7.378, 7.378, 7.3777, 7.3785, 7.3782, 7.379, 7.3788, 7.3786, 7.3772, 7.3767, 7.3763, 7.376, 7.3759, 7.3755, 7.3774, 7.3782, 7.3778, 7.3787, 7.3783, 7.3779, 7.3775, 7.3782, 7.3778, 7.3786, 7.3782, 7.3778, 7.3792, 7.3788, 7.3784, 7.3805, 7.3824, 7.382, 7.3818, 7.3827, 7.3826, 7.3835, 7.3843, 7.3853, 7.3849, 7.3846, 7.3843, 7.3839, 7.3834, 7.383, 7.3831, 7.3839, 7.3849, 7.3847, 7.3844, 7.3847, 7.3862, 7.3873, 7.3871, 7.387, 7.3866, 7.3874, 7.3869, 7.3866, 7.3863, 7.3883, 7.3883, 7.3879, 7.3877, 7.3885, 7.389, 7.3898, 7.3894, 7.389, 7.3886, 7.3883, 7.3879, 7.3875, 7.3871, 7.3866, 7.3874, 7.387, 7.3866, 7.3864, 7.3871, 7.3868, 7.3871, 7.3869, 7.3866, 7.3862, 7.386, 7.3868, 7.3865, 7.3861, 7.3858, 7.3867, 7.3862, 7.3857, 7.3853, 7.385, 7.3857, 7.3853, 7.3849, 7.3835, 7.3832, 7.3828, 7.3824, 7.3832, 7.384, 7.3838, 7.3836, 7.3832, 7.384, 7.3827, 7.3836, 7.3844, 7.384, 7.3837, 7.3833, 7.3834, 7.3832, 7.3828, 7.3835, 7.3843, 7.3839, 7.3864, 7.386, 7.397, 7.3969, 7.3975, 7.3972, 7.3968, 7.3965, 7.3961, 7.3957, 7.3964, 7.3972, 7.3969, 7.3968, 7.3975, 7.3971, 7.4001, 7.4008, 7.4004, 7.4, 7.3996, 7.3993, 7.4, 7.3995, 7.4003, 7.3999, 7.3996, 7.3993, 7.3989, 7.3986, 7.3993, 7.399, 7.3985, 7.3992, 7.3993, 7.3991, 7.3987, 7.4003, 7.4018, 7.4019, 7.4021, 7.401, 7.4018, 7.4013, 7.4011, 7.4006, 7.4002, 7.3998, 7.3995, 7.3993, 7.3989, 7.399, 7.3988, 7.3996, 7.3993, 7.399, 7.3999, 7.3985, 7.3981, 7.3978, 7.3986, 7.3983, 7.3996, 7.3992, 7.3988, 7.3984, 7.398, 7.399, 7.3987, 7.3984, 7.3981, 7.3979, 7.3975, 7.3983, 7.3981, 7.3977, 7.3973, 7.3969, 7.3955, 7.3952, 7.3959, 7.3954, 7.3952, 7.3949, 7.3956, 7.3952, 7.3949, 7.3944, 7.3951, 7.3948, 7.3944, 7.3951, 7.3957, 7.3954, 7.3991, 7.3988, 7.3983, 7.3978, 7.3976, 7.3972, 7.3967, 7.3964, 7.396, 7.3957, 7.3953, 7.3949, 7.3957, 7.3954, 7.3961, 7.3958, 7.3964, 7.396, 7.3979, 7.3987, 7.3986, 7.3985, 7.3981, 7.3988, 7.3986, 7.3982, 7.3978, 7.3975, 7.3961, 7.3968, 7.3964, 7.3973, 7.3969, 7.3965, 7.3961, 7.3957, 7.3953, 7.3949, 7.3945, 7.3941, 7.3938, 7.3936, 7.3932, 7.3939, 7.3946, 7.3942, 7.3938, 7.3935, 7.3942, 7.3941, 7.3939, 7.3948, 7.3944, 7.3952, 7.3948, 7.3944, 7.394, 7.3936, 7.3932, 7.394, 7.3938, 7.3936, 7.3946, 7.3942, 7.3938, 7.3934, 7.3941, 7.3937, 7.3934, 7.3942, 7.394, 7.3936, 7.3933, 7.3941, 7.3949, 7.3945, 7.3932, 7.393, 7.3926, 7.3944, 7.3941, 7.3939, 7.3937, 7.3942, 7.394, 7.3936, 7.3923, 7.392, 7.3917, 7.3913, 7.3921, 7.3917, 7.3913, 7.3912, 7.391, 7.3908, 7.3894, 7.389, 7.3942, 7.3949, 7.3958, 7.3954, 7.395, 7.3946, 7.3942, 7.3938, 7.3945, 7.3964, 7.3971, 7.3967, 7.3953, 7.3949, 7.3945, 7.3941, 7.3949, 7.3945, 7.3944, 7.3951, 7.3947, 7.3955, 7.3952, 7.3948, 7.3944, 7.3941, 7.3928, 7.3924, 7.392, 7.3916, 7.3912, 7.391, 7.3906, 7.3902, 7.3898, 7.3895, 7.3893, 7.3891, 7.389, 7.3888, 7.3884, 7.3882, 7.3878, 7.3874, 7.3871, 7.3867, 7.3864, 7.386, 7.3856, 7.3852, 7.3848, 7.3846, 7.3846, 7.3842, 7.3838, 7.3834, 7.3831, 7.3829, 7.3826, 7.3822, 7.3818, 7.3816, 7.3823, 7.3819, 7.3815, 7.3811, 7.3818, 7.3815, 7.3813, 7.381, 7.3806, 7.3805, 7.3804, 7.3812, 7.3808, 7.3804, 7.3791, 7.3788, 7.3784, 7.3783, 7.3779, 7.3788, 7.3775, 7.3775, 7.3781, 7.3778, 7.3774, 7.3772, 7.3771, 7.3778, 7.3774, 7.3771, 7.3778, 7.3777, 7.3775, 7.3782, 7.3778, 7.3774, 7.3781, 7.3788, 7.3786, 7.3785, 7.3782, 7.3769, 7.3776, 7.3793, 7.3791, 7.3787, 7.3783, 7.3789, 7.3792, 7.3788, 7.3784, 7.378, 7.3776, 7.3773, 7.3769, 7.3776, 7.3774, 7.3771, 7.377, 7.3768, 7.3765, 7.3763, 7.375, 7.3746, 7.3755, 7.3763, 7.376, 7.3756, 7.3769, 7.3765, 7.3761, 7.3768, 7.3765, 7.3761, 7.3759, 7.3759, 7.3755, 7.3752, 7.3751, 7.3749, 7.3745, 7.3743, 7.375, 7.3746, 7.3742, 7.3738, 7.3735, 7.3731, 7.3727, 7.3781, 7.3789, 7.3786, 7.3783, 7.3779, 7.3786, 7.3793, 7.38, 7.3806, 7.3804, 7.3812, 7.3801, 7.3797, 7.3793, 7.3789, 7.3796, 7.3798, 7.3805, 7.3794, 7.3794, 7.379, 7.3786, 7.3782, 7.378, 7.3787, 7.3783, 7.3779, 7.3775, 7.3773, 7.378, 7.3787, 7.3783, 7.3779, 7.3777, 7.3784, 7.3781, 7.3788, 7.3795, 7.3796, 7.3795, 7.3814, 7.3813, 7.3832, 7.384, 7.3841, 7.383, 7.3836, 7.3842, 7.3838, 7.3834, 7.3821, 7.3831, 7.3827, 7.3823, 7.382, 7.3828, 7.3837, 7.3834, 7.3833, 7.383, 7.3827, 7.3825, 7.3822, 7.3829, 7.3826, 7.3823, 7.383, 7.3826, 7.3822, 7.383, 7.3826, 7.3822, 7.3821, 7.3829, 7.3827, 7.3815, 7.3812, 7.3818, 7.3814, 7.382, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3788, 7.3776, 7.3773, 7.378, 7.3777, 7.3774, 7.378, 7.3776, 7.3772, 7.377, 7.3781, 7.3781, 7.3778, 7.3774, 7.377, 7.3803, 7.3799, 7.3795, 7.3791, 7.3788, 7.3784, 7.378, 7.3776, 7.3775, 7.3771, 7.3777, 7.3774, 7.3771, 7.3761, 7.3758, 7.3755, 7.3752, 7.375, 7.3746, 7.3743, 7.3739, 7.3735, 7.3778, 7.3775, 7.3772, 7.3771, 7.3768, 7.3766, 7.3768, 7.3766, 7.3762, 7.3758, 7.3754, 7.375, 7.3767, 7.3763, 7.376, 7.3757, 7.3753, 7.3749, 7.3745, 7.3746, 7.3742, 7.3738, 7.3737, 7.3736, 7.3742, 7.3738, 7.3726, 7.3722, 7.3729, 7.3738, 7.3736, 7.3733, 7.373, 7.3726, 7.3722, 7.3729, 7.3729, 7.3735, 7.3722, 7.3718, 7.3723, 7.372, 7.3718, 7.3714, 7.371, 7.3698, 7.3694, 7.369, 7.3686, 7.3683, 7.368, 7.3678, 7.3675, 7.3671, 7.3669, 7.3677, 7.3675, 7.3682, 7.3678, 7.3684, 7.369, 7.3697, 7.3693, 7.3689, 7.3688, 7.3686, 7.3694, 7.3691, 7.3689, 7.3686, 7.3693, 7.3699, 7.3695, 7.3701, 7.3697, 7.3704, 7.371, 7.3717, 7.3723, 7.3719, 7.3726, 7.3722, 7.3718, 7.3714, 7.3713, 7.3711, 7.3707, 7.3703, 7.371, 7.3717, 7.3724, 7.373, 7.3736, 7.3734, 7.373, 7.3728, 7.3726, 7.3733, 7.373, 7.3727, 7.3723, 7.3721, 7.3717, 7.3715, 7.3711, 7.3717, 7.3715, 7.3711, 7.3709, 7.3715, 7.3722, 7.3728, 7.3756, 7.3752, 7.3749, 7.3746, 7.3742, 7.3732, 7.3728, 7.3724, 7.373, 7.3727, 7.3734, 7.3732, 7.3739, 7.3745, 7.3742, 7.3742, 7.374, 7.3746, 7.3744, 7.3751, 7.3759, 7.3756, 7.3753, 7.375, 7.3747, 7.3753, 7.3749, 7.3755, 7.376, 7.3758, 7.3754, 7.3752, 7.375, 7.3746, 7.3752, 7.3748, 7.3745, 7.3743, 7.3749, 7.3737, 7.3734, 7.373, 7.3736, 7.3742, 7.3739, 7.3737, 7.3754, 7.3752, 7.375, 7.3753, 7.3751, 7.3748, 7.3744, 7.3746, 7.3743, 7.374, 7.3736, 7.3743, 7.375, 7.3747, 7.3745, 7.3741, 7.374, 7.3736, 7.3738, 7.3735, 7.3732, 7.3731, 7.3727, 7.3728, 7.3724, 7.3723, 7.374, 7.3737, 7.3727, 7.3727, 7.3742, 7.3749, 7.3745, 7.3741, 7.3738, 7.3736, 7.3734, 7.3731, 7.3739, 7.3748, 7.3756, 7.3753, 7.3761, 7.3758, 7.3755, 7.3752, 7.376, 7.3759, 7.3755, 7.3762, 7.3759, 7.3766, 7.3762, 7.3759, 7.3757, 7.3763, 7.3759, 7.3757, 7.3755, 7.3751, 7.3749, 7.3756, 7.3753, 7.3749, 7.3745, 7.3752, 7.3749, 7.3755, 7.3752, 7.3748, 7.3755, 7.3761, 7.3767, 7.3764, 7.3761, 7.3791, 7.3787, 7.3786, 7.3792, 7.3788, 7.3784, 7.378, 7.3776, 7.3772, 7.3768, 7.3775, 7.3773, 7.3779, 7.38, 7.3806, 7.3812, 7.381, 7.3808, 7.3807, 7.3814, 7.3811, 7.3809, 7.3805, 7.3801, 7.3807, 7.3803, 7.3799, 7.3795, 7.3801, 7.3811, 7.3807, 7.3803, 7.3801, 7.3807, 7.3815, 7.3806, 7.3812, 7.3808, 7.3806, 7.3802, 7.3798, 7.3794, 7.3791, 7.3788, 7.3788, 7.3794, 7.3796, 7.3797, 7.3794, 7.3792, 7.3799, 7.3795, 7.3791, 7.3798, 7.3796, 7.3792, 7.3788, 7.3787, 7.3786, 7.3785, 7.3782, 7.3779, 7.3775, 7.3771, 7.3768, 7.3765, 7.3761, 7.3768, 7.3765, 7.3762, 7.3758, 7.3756, 7.3754, 7.3792, 7.3815, 7.3812, 7.3809, 7.3805, 7.3803, 7.3792, 7.3788, 7.3788, 7.3784, 7.3783, 7.3781, 7.3779, 7.3775, 7.3784, 7.3792, 7.3798, 7.3797, 7.3785, 7.3801, 7.3799, 7.3806, 7.3803, 7.3809, 7.3815, 7.3821, 7.3817, 7.3813, 7.3819, 7.3825, 7.3821, 7.3817, 7.3813, 7.3812, 7.3808, 7.3804, 7.38, 7.3796, 7.3794, 7.379, 7.3786, 7.3802, 7.3829, 7.3826, 7.3824, 7.382, 7.3816, 7.3822, 7.382, 7.3818, 7.3817, 7.3815, 7.3812, 7.3809, 7.3816, 7.3812, 7.382, 7.3816, 7.3815, 7.3814, 7.3822, 7.3829, 7.3826, 7.3834, 7.3832, 7.3828, 7.3837, 7.3833, 7.383, 7.3827, 7.3823, 7.3811, 7.3799, 7.3806, 7.3794, 7.3792, 7.3799, 7.3796, 7.3793, 7.3789, 7.3786, 7.3786, 7.3784, 7.3783, 7.3781, 7.3779, 7.3776, 7.3774, 7.3772, 7.3768, 7.3765, 7.3763, 7.376, 7.3748, 7.3745, 7.3742, 7.3741, 7.3738, 7.3736, 7.3734, 7.373, 7.3737, 7.3734, 7.3732, 7.3729, 7.3718, 7.3714, 7.3721, 7.3718, 7.3715, 7.3713, 7.3709, 7.3705, 7.3715, 7.3712, 7.3709, 7.3714, 7.3713, 7.3711, 7.3708, 7.3704, 7.3701, 7.3699, 7.3706, 7.3713, 7.372, 7.3717, 7.3723, 7.372, 7.3717, 7.3716, 7.3722, 7.3722, 7.3721, 7.3744, 7.3741, 7.3741, 7.3739, 7.3737, 7.3734, 7.3731, 7.3719, 7.3717, 7.3715, 7.3722, 7.3728, 7.3726, 7.3722, 7.3718, 7.3732, 7.3729, 7.3735, 7.3733, 7.3729, 7.3735, 7.3731, 7.3728, 7.3724, 7.372, 7.3717, 7.3714, 7.3711, 7.3707, 7.3705, 7.3721, 7.3718, 7.3715, 7.3713, 7.3711, 7.3708, 7.3705, 7.3706, 7.3712, 7.3701, 7.3698, 7.3694, 7.3701, 7.3698, 7.3695, 7.3701, 7.3698, 7.3694, 7.3691, 7.3689, 7.3686, 7.3683, 7.368, 7.3679, 7.3676, 7.3693, 7.3689, 7.3687, 7.3693, 7.3691, 7.3688, 7.3716, 7.3725, 7.3722, 7.3719, 7.3726, 7.3723, 7.372, 7.3736, 7.3733, 7.373, 7.3727, 7.3725, 7.3722, 7.3718, 7.3714, 7.3711, 7.3708, 7.3705, 7.3711, 7.3708, 7.3704, 7.3702, 7.3698, 7.3695, 7.3693, 7.3699, 7.3705, 7.3702, 7.3708, 7.3707, 7.3703, 7.3709, 7.3715, 7.3711, 7.3707, 7.3704, 7.3702, 7.37, 7.3708, 7.3713, 7.3713, 7.3715, 7.3721, 7.3718, 7.3718, 7.3716, 7.3713, 7.3719, 7.3715, 7.3731, 7.3731, 7.3728, 7.3726, 7.3723, 7.373, 7.3726, 7.3722, 7.3719, 7.3716, 7.3715, 7.3712, 7.3708, 7.3706, 7.3702, 7.37, 7.3697, 7.3693, 7.3699, 7.3695, 7.3693, 7.37, 7.3698, 7.3698, 7.3694, 7.3691, 7.3687, 7.3693, 7.3699, 7.3705, 7.3714, 7.3711, 7.3699, 7.3696, 7.3693, 7.369, 7.3698, 7.3702, 7.3705, 7.3708, 7.3707, 7.3704, 7.3702, 7.3699, 7.3695, 7.3691, 7.3688, 7.3695, 7.3692, 7.3689, 7.3695, 7.3692, 7.3689, 7.3687, 7.3684, 7.3691, 7.3689, 7.3685, 7.3684, 7.369, 7.3687, 7.3683, 7.368, 7.3676, 7.3672, 7.3669, 7.3666, 7.3662, 7.3662, 7.3659, 7.3656, 7.3653, 7.3651, 7.3649, 7.3646, 7.3643, 7.3641, 7.3638, 7.3636, 7.3634, 7.3631, 7.3629, 7.3625, 7.3625, 7.3623, 7.3619, 7.3617, 7.3614, 7.3613, 7.361, 7.3616, 7.3614, 7.361, 7.3607, 7.365, 7.3648, 7.3652, 7.3651, 7.3648, 7.3637, 7.3643, 7.3639, 7.3639, 7.3637, 7.3643, 7.364, 7.364, 7.3646, 7.3642, 7.3639, 7.3636, 7.3632, 7.3629, 7.3626, 7.3623, 7.362, 7.3617, 7.3616, 7.3613, 7.361, 7.3607, 7.3604, 7.3638, 7.3627, 7.3652, 7.3648, 7.3645, 7.3643, 7.364, 7.3646, 7.3642, 7.3639, 7.3645, 7.3654, 7.3652, 7.3667, 7.3665, 7.3662, 7.3658, 7.366, 7.3659, 7.3665, 7.3663, 7.3659, 7.3665, 7.3662, 7.3658, 7.3655, 7.3653, 7.3659, 7.3657, 7.3655, 7.3684, 7.3681, 7.3678, 7.369, 7.3687, 7.3685, 7.3682, 7.3679, 7.3676, 7.3718, 7.3725, 7.3722, 7.3721, 7.3727, 7.3728, 7.373, 7.3726, 7.3732, 7.3737, 7.3733, 7.3729, 7.3725, 7.3743, 7.3749, 7.3746, 7.3744, 7.3741, 7.3747, 7.3744, 7.374, 7.3746, 7.3743, 7.374, 7.3738, 7.3738, 7.3735, 7.374, 7.3737, 7.3734, 7.374, 7.3746, 7.3752, 7.3758, 7.3755, 7.3761, 7.3767, 7.3764, 7.3753, 7.3759, 7.3756, 7.3762, 7.3768, 7.3773, 7.377, 7.3767, 7.3765, 7.377, 7.3776, 7.3773, 7.3777, 7.3805, 7.3817, 7.3816, 7.3813, 7.3802, 7.3799, 7.3829, 7.3825, 7.3831, 7.3834, 7.3832, 7.3829, 7.3826, 7.3822, 7.3819, 7.3816, 7.3805, 7.3802, 7.38, 7.3797, 7.3794, 7.3791, 7.3806, 7.3812, 7.3818, 7.3816, 7.3822, 7.3819, 7.3825, 7.3822, 7.382, 7.3818, 7.3815, 7.3821, 7.3817, 7.3808, 7.3806, 7.3824, 7.3815, 7.3811, 7.3808, 7.3814, 7.3813, 7.381, 7.3812, 7.3818, 7.3815, 7.3829, 7.3835, 7.3834, 7.3831, 7.3828, 7.3834, 7.3831, 7.383, 7.3827, 7.3824, 7.383, 7.3827, 7.3825, 7.3823, 7.3829, 7.3829, 7.3836, 7.3842, 7.384, 7.3837, 7.3834, 7.384, 7.3839, 7.3837, 7.3843, 7.3886, 7.3884, 7.3882, 7.388, 7.3886, 7.3883, 7.388, 7.3877, 7.3875, 7.3873, 7.387, 7.3867, 7.3865, 7.3854, 7.3853, 7.385, 7.3857, 7.3854, 7.3851, 7.3847, 7.3843, 7.3841, 7.3856, 7.3855, 7.3852, 7.3855, 7.3852, 7.3858, 7.3855, 7.386, 7.3858, 7.3859, 7.3864, 7.386, 7.3867, 7.3864, 7.3869, 7.3875, 7.3873, 7.387, 7.3879, 7.3876, 7.3873, 7.3871, 7.3871, 7.3868, 7.3868, 7.3876, 7.3883, 7.389, 7.3888, 7.3889, 7.3886, 7.3887, 7.3884, 7.3882, 7.3881, 7.3881, 7.3887, 7.3885, 7.3882, 7.3879, 7.3876, 7.3882, 7.3879, 7.3877, 7.3883, 7.3899, 7.3888, 7.3903, 7.3901, 7.3902, 7.3899, 7.3895, 7.3901, 7.3898, 7.3896, 7.3904, 7.3902, 7.39, 7.3897, 7.3903, 7.3892, 7.3897, 7.3893, 7.389, 7.3941, 7.3938, 7.3934, 7.3932, 7.3922, 7.392, 7.3917, 7.3915, 7.3914, 7.3931, 7.3924, 7.3925, 7.3933, 7.3935, 7.3933, 7.3931, 7.3937, 7.3943, 7.3972, 7.3969, 7.3967, 7.3964, 7.3961, 7.3959, 7.3965, 7.3954, 7.3952, 7.3968, 7.3965, 7.3963, 7.3961, 7.3958, 7.3954, 7.3952, 7.3951, 7.3949, 7.3945, 7.3948, 7.3945, 7.3942, 7.3941, 7.3947, 7.3953, 7.395, 7.3947, 7.3944, 7.395, 7.3955, 7.3961, 7.3958, 7.3955, 7.3953, 7.3958, 7.3955, 7.3952, 7.396, 7.3957, 7.3963, 7.3961, 7.3966, 7.3963, 7.3962, 7.3968, 7.3965, 7.3962, 7.3959, 7.3956, 7.3967, 7.3966, 7.3963, 7.3961, 7.3958, 7.3955, 7.3952, 7.3949, 7.3951, 7.395, 7.3947, 7.3946, 7.3944, 7.3949, 7.3948, 7.3946, 7.3943, 7.3941, 7.394, 7.3937, 7.3934, 7.3933, 7.393, 7.393, 7.3927, 7.3924, 7.3921, 7.3918, 7.3915, 7.3921, 7.3921, 7.3919, 7.3917, 7.3923, 7.3929, 7.3926, 7.3924, 7.3921, 7.3918, 7.3916, 7.3915, 7.3915, 7.3921, 7.392, 7.3919, 7.3917, 7.3924, 7.3921, 7.3918, 7.3924, 7.3921, 7.3918, 7.3915, 7.3912, 7.391, 7.3916, 7.3914, 7.3911, 7.3908, 7.3913, 7.391, 7.3907, 7.3904, 7.3902, 7.3899, 7.3888, 7.3884, 7.3882, 7.3879, 7.3876, 7.3873, 7.387], '192.168.122.119': [5.4803, 5.3959, 5.6119, 5.8081, 5.7172, 5.6548, 5.6897, 5.6831, 5.6415, 5.6804, 5.6804, 5.6532, 5.755, 6.1236, 6.1351, 6.2696, 6.2219, 6.1756, 6.1473, 6.1197, 6.1019, 6.3312, 6.5377, 6.5217, 6.4741, 6.6463, 6.4207, 6.3825, 6.351, 6.3347, 6.4758, 6.4584, 6.4267, 6.3997, 6.3698, 6.3428, 6.3945, 6.3991, 6.3798, 6.355, 6.3316, 6.3097, 6.2888, 6.3921, 6.3674, 6.3637, 6.3454, 6.3277, 6.3306, 6.4365, 6.414, 6.3993, 6.3941, 6.7084, 6.7868, 6.7619, 6.7746, 6.8437, 6.8199, 6.718, 6.6957, 6.6075, 6.5891, 6.5819, 6.6538, 6.6319, 6.614, 6.595, 6.656, 6.6393, 6.6204, 6.6791, 6.6633, 6.6528, 6.6407, 6.5622, 6.5484, 6.5363, 6.5234, 6.5741, 6.5627, 6.6179, 6.7417, 6.8636, 6.846, 6.8921, 6.8929, 6.8803, 6.9311, 6.9224, 6.9116, 6.8982, 6.9427, 6.947, 7.0471, 7.0342, 7.026, 7.0131, 7.0569, 7.0411, 7.0239, 7.0128, 7.0015, 7.0404, 7.1169, 7.1058, 7.0889, 7.1088, 7.0921, 7.0412, 7.0497, 7.0501, 7.0429, 7.0333, 7.0637, 7.1402, 7.131, 7.1229, 7.1175, 7.1066, 7.1042, 7.0909, 7.1644, 7.1129, 7.0995, 7.1758, 7.1608, 7.151, 7.1366, 7.1438, 7.171, 7.1212, 7.1279, 7.1206, 7.1123, 7.2156, 7.2416, 7.2704, 7.275, 7.2691, 7.2705, 7.2569, 7.2509, 7.2443, 7.3481, 7.3347, 7.3366, 7.3248, 7.3966, 7.3829, 7.4001, 7.3878, 7.3769, 7.3644, 7.3866, 7.408, 7.4311, 7.4226, 7.4419, 7.4343, 7.4218, 7.4099, 7.4303, 7.419, 7.439, 7.4335, 7.4243, 7.445, 7.4359, 7.4277, 7.4228, 7.4479, 7.4392, 7.4612, 7.4513, 7.4402, 7.433, 7.4222, 7.4116, 7.4273, 7.4171, 7.4109, 7.4003, 7.4177, 7.4387, 7.4345, 7.4229, 7.4134, 7.4315, 7.4375, 7.4273, 7.4166, 7.405, 7.4203, 7.4389, 7.4285, 7.4461, 7.4359, 7.4559, 7.473, 7.4627, 7.4535, 7.4435, 7.4327, 7.4233, 7.438, 7.4529, 7.4423, 7.4332, 7.423, 7.4133, 7.3817, 7.3734, 7.3897, 7.3804, 7.373, 7.3692, 7.3615, 7.3543, 7.3449, 7.3382, 7.3319, 7.3272, 7.3205, 7.3369, 7.3346, 7.3254, 7.3415, 7.3332, 7.3731, 7.364, 7.3548, 7.3709, 7.362, 7.3545, 7.3462, 7.3384, 7.3994, 7.4139, 7.4152, 7.4296, 7.4439, 7.4361, 7.4288, 7.4556, 7.4893, 7.4809, 7.4935, 7.4859, 7.4772, 7.4715, 7.4857, 7.4833, 7.4834, 7.477, 7.4706, 7.463, 7.4604, 7.4718, 7.4641, 7.4779, 7.4704, 7.4669, 7.4609, 7.4536, 7.4472, 7.4599, 7.4564, 7.4494, 7.4632, 7.4772, 7.4842, 7.5011, 7.4941, 7.4868, 7.4817, 7.4781, 7.471, 7.4633, 7.4765, 7.5289, 7.5242, 7.5231, 7.5622, 7.5904, 7.5853, 7.579, 7.5711, 7.5666, 7.5426, 7.5633, 7.5585, 7.5596, 7.5586, 7.5393, 7.5321, 7.5267, 7.5261, 7.5228, 7.5162, 7.5102, 7.5032, 7.5143, 7.5255, 7.5195, 7.5141, 7.5086, 7.5028, 7.5337, 7.546, 7.5399, 7.5341, 7.5285, 7.5522, 7.545, 7.5421, 7.5353, 7.5291, 7.5231, 7.5173, 7.5135, 7.5077, 7.5036, 7.4993, 7.4934, 7.4881, 7.5088, 7.5179, 7.5276, 7.5219, 7.5315, 7.5274, 7.5233, 7.5177, 7.5275, 7.5397, 7.5489, 7.543, 7.5431, 7.5387, 7.5345, 7.5295, 7.5233, 7.519, 7.5157, 7.5451, 7.5408, 7.535, 7.5285, 7.5388, 7.5323, 7.5261, 7.5222, 7.5161, 7.5112, 7.5057, 7.5013, 7.4955, 7.4898, 7.4704, 7.4648, 7.4604, 7.4964, 7.4903, 7.4846, 7.4657, 7.46, 7.454, 7.4631, 7.4581, 7.453, 7.4477, 7.4417, 7.4373, 7.4329, 7.4297, 7.4243, 7.4334, 7.428, 7.4371, 7.4319, 7.4265, 7.4215, 7.4165, 7.4126, 7.4076, 7.4039, 7.3985, 7.3934, 7.3882, 7.3852, 7.3939, 7.4027, 7.4256, 7.4206, 7.4243, 7.4192, 7.4201, 7.4292, 7.4264, 7.4226, 7.4207, 7.4162, 7.4111, 7.4057, 7.4413, 7.4372, 7.4337, 7.4422, 7.4376, 7.4328, 7.428, 7.4237, 7.4222, 7.4177, 7.4127, 7.4578, 7.4547, 7.4496, 7.4339, 7.4417, 7.4379, 7.4353, 7.4303, 7.4266, 7.4345, 7.4423, 7.4373, 7.4326, 7.4276, 7.4232, 7.4319, 7.428, 7.4243, 7.4267, 7.4345, 7.4419, 7.4373, 7.4327, 7.4283, 7.431, 7.4263, 7.4226, 7.4176, 7.4247, 7.4202, 7.416, 7.4115, 7.407, 7.4022, 7.4105, 7.4183, 7.4029, 7.3997, 7.3962, 7.4055, 7.4016, 7.397, 7.3943, 7.391, 7.3869, 7.3829, 7.3781, 7.3737, 7.3693, 7.3768, 7.3729, 7.3695, 7.3674, 7.3631, 7.3664, 7.429, 7.4362, 7.432, 7.4391, 7.4466, 7.4437, 7.4394, 7.435, 7.4328, 7.4304, 7.4261, 7.4219, 7.4196, 7.4277, 7.4253, 7.4223, 7.4183, 7.4254, 7.4213, 7.4285, 7.4255, 7.4217, 7.4179, 7.425, 7.422, 7.4184, 7.4254, 7.4324, 7.4391, 7.4459, 7.4528, 7.4711, 7.4886, 7.4855, 7.4816, 7.4884, 7.4845, 7.4911, 7.4975, 7.5041, 7.5075, 7.5041, 7.5213, 7.5078, 7.5174, 7.5143, 7.5322, 7.5282, 7.5275, 7.524, 7.5205, 7.5174, 7.516, 7.5317, 7.5311, 7.5278, 7.5263, 7.5367, 7.5379, 7.5347, 7.5348, 7.5417, 7.5409, 7.5374, 7.5243, 7.5204, 7.5163, 7.5135, 7.52, 7.5176, 7.5496, 7.5462, 7.5423, 7.5488, 7.5467, 7.5428, 7.5407, 7.539, 7.5451, 7.5525, 7.5502, 7.5474, 7.5435, 7.5407, 7.5465, 7.544, 7.5402, 7.5278, 7.5339, 7.5407, 7.5472, 7.5432, 7.5399, 7.5455, 7.5513, 7.5686, 7.5742, 7.5701, 7.5663, 7.5627, 7.56, 7.5568, 7.5544, 7.5515, 7.5494, 7.5465, 7.5523, 7.5489, 7.5466, 7.5431, 7.5486, 7.5459, 7.543, 7.5395, 7.5279, 7.5243, 7.5204, 7.5177, 7.5153, 7.5121, 7.5185, 7.5147, 7.5114, 7.5173, 7.514, 7.5206, 7.5171, 7.5162, 7.5125, 7.5092, 7.4978, 7.4971, 7.4938, 7.4997, 7.4965, 7.5017, 7.5075, 7.5039, 7.5094, 7.5069, 7.5032, 7.4998, 7.5109, 7.5081, 7.5047, 7.503, 7.5134, 7.5187, 7.5276, 7.5275, 7.524, 7.5296, 7.5354, 7.5499, 7.5557, 7.5609, 7.5574, 7.5548, 7.5537, 7.5589, 7.5556, 7.5607, 7.5514, 7.5561, 7.5537, 7.5647, 7.5704, 7.5669, 7.5638, 7.5615, 7.5681, 7.5652, 7.5618, 7.566, 7.5629, 7.5677, 7.565, 7.5622, 7.5587, 7.5632, 7.5607, 7.5573, 7.5538, 7.5526, 7.55, 7.5553, 7.5534, 7.5505, 7.5479, 7.5533, 7.5498, 7.5466, 7.5432, 7.5475, 7.5524, 7.549, 7.5519, 7.5486, 7.554, 7.5593, 7.5563, 7.5614, 7.5579, 7.5475, 7.5524, 7.5577, 7.5555, 7.5608, 7.5579, 7.555, 7.5523, 7.5499, 7.5479, 7.545, 7.5418, 7.5388, 7.5368, 7.5418, 7.5468, 7.5445, 7.5498, 7.5465, 7.551, 7.5571, 7.5555, 7.561, 7.5739, 7.581, 7.5777, 7.583, 7.5798, 7.5767, 7.579, 7.5786, 7.5761, 7.5729, 7.5697, 7.5674, 7.5644, 7.5654, 7.5971, 7.6011, 7.598, 7.5957, 7.6002, 7.6043, 7.6018, 7.5985, 7.5961, 7.601, 7.5978, 7.5957, 7.6003, 7.6051, 7.6024, 7.5996, 7.5974, 7.6097, 7.6069, 7.6051, 7.6023, 7.6071, 7.6048, 7.6028, 7.6001, 7.5977, 7.5952, 7.5934, 7.5909, 7.5877, 7.5846, 7.5815, 7.5785, 7.5698, 7.5667, 7.5706, 7.5752, 7.5756, 7.5795, 7.584, 7.5808, 7.5779, 7.5751, 7.572, 7.569, 7.5663, 7.5644, 7.5646, 7.5685, 7.5728, 7.5717, 7.5687, 7.5734, 7.5704, 7.569, 7.5661, 7.5631, 7.5602, 7.5578, 7.5554, 7.5526, 7.5568, 7.554, 7.5512, 7.5483, 7.5461, 7.5441, 7.5486, 7.5469, 7.5452, 7.5492, 7.5533, 7.5505, 7.5475, 7.546, 7.5434, 7.5475, 7.5448, 7.5747, 7.5719, 7.5693, 7.5667, 7.5641, 7.5683, 7.5726, 7.5703, 7.5748, 7.5795, 7.5771, 7.5754, 7.5737, 7.5715, 7.577, 7.5751, 7.5791, 7.5769, 7.575, 7.5729, 7.5731, 7.571, 7.5691, 7.5733, 7.565, 7.563, 7.5602, 7.558, 7.5631, 7.5675, 7.5718, 7.5834, 7.5818, 7.5796, 7.5768, 7.5743, 7.5785, 7.5827, 7.5741, 7.5779, 7.5849, 7.582, 7.6081, 7.6054, 7.6034, 7.6007, 7.5997, 7.5977, 7.5955, 7.5928, 7.5902, 7.5883, 7.5864, 7.5839, 7.5814, 7.5793, 7.5771, 7.5806, 7.5781, 7.602, 7.6004, 7.5983, 7.6027, 7.6005, 7.6042, 7.602, 7.5995, 7.6142, 7.6165, 7.6143, 7.6122, 7.6106, 7.608, 7.6117, 7.6126, 7.6105, 7.6082, 7.6119, 7.6093, 7.6073, 7.6053, 7.6026, 7.6003, 7.5982, 7.5958, 7.595, 7.5926, 7.5902, 7.5875, 7.5917, 7.5891, 7.587, 7.5922, 7.5964, 7.5944, 7.5983, 7.5968, 7.6006, 7.598, 7.5955, 7.5929, 7.5964, 7.5938, 7.5971, 7.59, 7.5874, 7.5849, 7.5825, 7.58, 7.5775, 7.5754, 7.573, 7.5706, 7.574, 7.5763, 7.5742, 7.5723, 7.5703, 7.5683, 7.5665, 7.5645, 7.5624, 7.5598, 7.5575, 7.5556, 7.5533, 7.5517, 7.5502, 7.5485, 7.5578, 7.5562, 7.5543, 7.5599, 7.5575, 7.561, 7.5592, 7.5573, 7.5548, 7.5595, 7.5572, 7.5549, 7.5586, 7.5563, 7.5595, 7.5641, 7.5621, 7.5597, 7.563, 7.5607, 7.5639, 7.5675, 7.5659, 7.5636, 7.5614, 7.5602, 7.5579, 7.5563, 7.5538, 7.5518, 7.5501, 7.5482, 7.5462, 7.5495, 7.5474, 7.5459, 7.5437, 7.5475, 7.5454, 7.5433, 7.547, 7.5507, 7.555, 7.553, 7.5508, 7.5484, 7.5462, 7.5439, 7.542, 7.5397, 7.5376, 7.5359, 7.5337, 7.5315, 7.5349, 7.5326, 7.5313, 7.5295, 7.5334, 7.5315, 7.5294, 7.5329, 7.5362, 7.5342, 7.5321, 7.5355, 7.5334, 7.5317, 7.5296, 7.5295, 7.5275, 7.5263, 7.5242, 7.5276, 7.5257, 7.5238, 7.5219, 7.5307, 7.5286, 7.5266, 7.525, 7.528, 7.5258, 7.5291, 7.5324, 7.5306, 7.5338, 7.5316, 7.5294, 7.5272, 7.5256, 7.5262, 7.524, 7.5281, 7.5213, 7.5193, 7.519, 7.5221, 7.5214, 7.5192, 7.5198, 7.5184, 7.5181, 7.5435, 7.5475, 7.5468, 7.5452, 7.5431, 7.5414, 7.5402, 7.5435, 7.5412, 7.5391, 7.5382, 7.5362, 7.5341, 7.5323, 7.5303, 7.5288, 7.5266, 7.5251, 7.523, 7.5212, 7.5241, 7.5221, 7.52, 7.5181, 7.5113, 7.5147, 7.5178, 7.5222, 7.5259, 7.5247, 7.5282, 7.5315, 7.5296, 7.5332, 7.5367, 7.5346, 7.5328, 7.5358, 7.5337, 7.5316, 7.5339, 7.5322, 7.5311, 7.529, 7.5318, 7.5302, 7.5331, 7.5285, 7.5265, 7.53, 7.533, 7.5309, 7.5293, 7.5276, 7.5256, 7.5287, 7.5274, 7.5302, 7.5285, 7.5313, 7.5293, 7.5272, 7.5252, 7.5232, 7.5213, 7.5217, 7.5197, 7.5176, 7.5156, 7.5139, 7.5119, 7.5106, 7.5138, 7.5118, 7.51, 7.5084, 7.5119, 7.5103, 7.5093, 7.5072, 7.5052, 7.5033, 7.5013, 7.5109, 7.5136, 7.5116, 7.5096, 7.5037, 7.5017, 7.5045, 7.503, 7.5013, 7.4997, 7.5032, 7.5019, 7.5001, 7.5032, 7.5016, 7.5005, 7.4987, 7.5018, 7.5, 7.4983, 7.5014, 7.5002, 7.5035, 7.5025, 7.5021, 7.501, 7.5045, 7.5073, 7.5105, 7.5087, 7.5118, 7.5101, 7.5084, 7.5067, 7.5051, 7.4992, 7.4975, 7.4969, 7.5004, 7.4988, 7.5019, 7.496, 7.4992, 7.4977, 7.5006, 7.5036, 7.5067, 7.5064, 7.5066, 7.5051, 7.5077, 7.5063, 7.5047, 7.5032, 7.5015, 7.4999, 7.4985, 7.4972, 7.5056, 7.5044, 7.5219, 7.5251, 7.5237, 7.5224, 7.5209, 7.5341, 7.5424, 7.5457, 7.5443, 7.5423, 7.5407, 7.539, 7.5374, 7.5359, 7.5345, 7.5334, 7.5317, 7.5303, 7.5284, 7.5274, 7.5257, 7.5238, 7.5219, 7.5204, 7.523, 7.5216, 7.5242, 7.5226, 7.5215, 7.5197, 7.5223, 7.5209, 7.5189, 7.517, 7.5154, 7.514, 7.5131, 7.5119, 7.5103, 7.5088, 7.5076, 7.5104, 7.5132, 7.5294, 7.5278, 7.5305, 7.5288, 7.5315, 7.5259, 7.5438, 7.5483, 7.5469, 7.5468, 7.5456, 7.5489, 7.5471, 7.5457, 7.5443, 7.547, 7.548, 7.5463, 7.5449, 7.5479, 7.5461, 7.5488, 7.5475, 7.5462, 7.5449, 7.5475, 7.5456, 7.548, 7.5466, 7.5452, 7.5478, 7.5463, 7.549, 7.5473, 7.5588, 7.5576, 7.5563, 7.555, 7.5493, 7.5482, 7.547, 7.5461, 7.5443, 7.5487, 7.5518, 7.5509, 7.5494, 7.5522, 7.5518, 7.5603, 7.5585, 7.5584, 7.563, 7.5615, 7.5602, 7.5586, 7.5613, 7.5595, 7.5662, 7.5648, 7.5675, 7.5701, 7.5728, 7.571, 7.5699, 7.5685, 7.5677, 7.5659, 7.5642, 7.5627, 7.5614, 7.5602, 7.5588, 7.5575, 7.56, 7.5583, 7.5611, 7.5598, 7.5585, 7.5571, 7.5598, 7.5623, 7.5607, 7.5591, 7.5575, 7.5599, 7.5626, 7.5609, 7.5596, 7.558, 7.5649, 7.5637, 7.5627, 7.561, 7.5593, 7.5576, 7.556, 7.5551, 7.5534, 7.5573, 7.574, 7.5723, 7.5707, 7.5695, 7.5678, 7.5706, 7.5691, 7.5638, 7.5626, 7.5723, 7.5726, 7.5913, 7.5905, 7.5893, 7.5845, 7.583, 7.5817, 7.5854, 7.5879, 7.5826, 7.5809, 7.5796, 7.5784, 7.5767, 7.5752, 7.5737, 7.5723, 7.5706, 7.5654, 7.5644, 7.5628, 7.5611, 7.5599, 7.5586, 7.5569, 7.5553, 7.5578, 7.5563, 7.5551, 7.5576, 7.5598, 7.5586, 7.5572, 7.556, 7.559, 7.5578, 7.5564, 7.5589, 7.5572, 7.566, 7.5646, 7.5633, 7.566, 7.5683, 7.567, 7.5701, 7.5723, 7.5708, 7.5692, 7.5676, 7.566, 7.5644, 7.5667, 7.5658, 7.5689, 7.5675, 7.5661, 7.5647, 7.5632, 7.5616, 7.5639, 7.5622, 7.561, 7.5595, 7.5581, 7.5566, 7.5554, 7.554, 7.5524, 7.551, 7.5534, 7.5522, 7.5506, 7.5494, 7.5483, 7.5468, 7.5453, 7.5438, 7.5423, 7.5414, 7.5401, 7.5389, 7.5376, 7.5398, 7.5422, 7.5408, 7.5362, 7.5315, 7.5302, 7.5328, 7.5315, 7.534, 7.5328, 7.5353, 7.5337, 7.5326, 7.5323, 7.5344, 7.5332, 7.5316, 7.5304, 7.5288, 7.5279, 7.5265, 7.5249, 7.5236, 7.522, 7.5205, 7.523, 7.5216, 7.524, 7.5226, 7.5219, 7.5204, 7.5192, 7.5178, 7.5166, 7.5173, 7.5158, 7.5143, 7.5185, 7.517, 7.5155, 7.5198, 7.5205, 7.5194, 7.522, 7.5204, 7.5214, 7.52, 7.5262, 7.5289, 7.5273, 7.53, 7.5322, 7.5307, 7.5294, 7.5316, 7.5307, 7.533, 7.5316, 7.5304, 7.5325, 7.531, 7.5294, 7.529, 7.5275, 7.5299, 7.5398, 7.5384, 7.5374, 7.5362, 7.5348, 7.5334, 7.5326, 7.5314, 7.5299, 7.5287, 7.5311, 7.5334, 7.5358, 7.5345, 7.5368, 7.5391, 7.5467, 7.5455, 7.5478, 7.5463, 7.5491, 7.5479, 7.5535, 7.5519, 7.5505, 7.553, 7.552, 7.5511, 7.5496, 7.5521, 7.5541, 7.5561, 7.555, 7.5542, 7.5531, 7.5567, 7.5588, 7.5574, 7.5559, 7.5581, 7.5567, 7.5553, 7.554, 7.5495, 7.5449, 7.5435, 7.5434, 7.5455, 7.5448, 7.5469, 7.549, 7.5476, 7.5463, 7.5449, 7.5471, 7.5457, 7.5442, 7.5428, 7.5419, 7.5376, 7.5399, 7.5386, 7.5407, 7.5393, 7.5414, 7.5401, 7.5395, 7.5382, 7.5368, 7.5354, 7.5375, 7.5364, 7.5349, 7.5335, 7.5325, 7.531, 7.5332, 7.5354, 7.5373, 7.54, 7.5386, 7.5412, 7.5437, 7.5461, 7.5447, 7.5437, 7.5427, 7.5449, 7.5436, 7.5421, 7.5413, 7.5401, 7.5391, 7.538, 7.5403, 7.5404, 7.54, 7.5389, 7.5376, 7.5399, 7.5388, 7.5378, 7.5366, 7.5352, 7.534, 7.5327, 7.535, 7.5338, 7.5361, 7.5347, 7.5333, 7.5321, 7.535, 7.534, 7.5327, 7.5321, 7.5315, 7.5304, 7.5294, 7.5286, 7.5271, 7.526, 7.5281, 7.5283, 7.5272, 7.5262, 7.5266, 7.5256, 7.525, 7.5239, 7.5298, 7.5287, 7.5276, 7.5267, 7.5257, 7.5245, 7.5233, 7.5225, 7.5213, 7.5214, 7.5204, 7.5191, 7.5179, 7.517, 7.5162, 7.5156, 7.515, 7.517, 7.5156, 7.5153, 7.5143, 7.5132, 7.5118, 7.5105, 7.5096, 7.5083, 7.5074, 7.5066, 7.5069, 7.5055, 7.5047, 7.5036, 7.5026, 7.5045, 7.5031, 7.5018, 7.5037, 7.5034, 7.5022, 7.5009, 7.4996, 7.4983, 7.4971, 7.4958, 7.4973, 7.4961, 7.4984, 7.5003, 7.4997, 7.4984, 7.4971, 7.4992, 7.4979, 7.4966, 7.4956, 7.4946, 7.4934, 7.4921, 7.4908, 7.49, 7.489, 7.4911, 7.4913, 7.49, 7.489, 7.4891, 7.4877, 7.4866, 7.4858, 7.4846, 7.4835, 7.4821, 7.4839, 7.486, 7.488, 7.4867, 7.4853, 7.484, 7.4828, 7.4847, 7.4837, 7.4869, 7.4858, 7.4845, 7.4869, 7.4888, 7.4878, 7.4865, 7.4885, 7.4873, 7.4862, 7.4849, 7.4842, 7.483, 7.494, 7.4961, 7.4949, 7.4954, 7.4942, 7.493, 7.4888, 7.4876, 7.4866, 7.4859, 7.4849, 7.484, 7.4828, 7.4819, 7.4842, 7.4832, 7.4821, 7.4808, 7.4799, 7.4797, 7.4785, 7.4777, 7.4765, 7.4756, 7.4744, 7.4735, 7.4754, 7.4745, 7.4735, 7.4756, 7.4774, 7.4767, 7.4785, 7.4777, 7.4765, 7.4728, 7.4717, 7.4739, 7.4728, 7.4717, 7.4709, 7.4705, 7.4693, 7.4714, 7.4703, 7.4699, 7.4687, 7.4675, 7.4692, 7.468, 7.4701, 7.4721, 7.4743, 7.4798, 7.4815, 7.4835, 7.4852, 7.4811, 7.48, 7.4803, 7.4865, 7.4887, 7.4892, 7.4938, 7.4928, 7.498, 7.4972, 7.4961, 7.4951, 7.4942, 7.493, 7.4919, 7.4907, 7.4925, 7.4916, 7.4935, 7.4954, 7.4943, 7.4962, 7.495, 7.4939, 7.4927, 7.4915, 7.4933, 7.4921, 7.4921, 7.4911, 7.4988, 7.5009, 7.5001, 7.5023, 7.5076, 7.5064, 7.5084, 7.509, 7.5108, 7.5106, 7.5128, 7.5147, 7.5135, 7.5123, 7.5113, 7.5101, 7.5096, 7.5063, 7.5057, 7.5045, 7.5038, 7.5026, 7.5017, 7.5005, 7.4994, 7.4986, 7.4979, 7.4969, 7.4959, 7.4947, 7.4935, 7.4925, 7.4917, 7.4907, 7.4906, 7.4936, 7.493, 7.4918, 7.4962, 7.495, 7.4943, 7.4931, 7.492, 7.4939, 7.4927, 7.4921, 7.4958, 7.4975, 7.497, 7.4962, 7.4979, 7.4968, 7.4959, 7.4978, 7.4995, 7.4988, 7.4976, 7.4965, 7.4928, 7.4917, 7.4906, 7.4894, 7.4883, 7.4899, 7.489, 7.4879, 7.4867, 7.4886, 7.4878, 7.4896, 7.4941, 7.4929, 7.4917, 7.4906, 7.4896, 7.4914, 7.4903, 7.4892, 7.4881, 7.4901, 7.4892, 7.4911, 7.4931, 7.4922, 7.4938, 7.4932, 7.495, 7.4942, 7.4934, 7.4923, 7.4943, 7.4931, 7.4949, 7.4938, 7.493, 7.4902, 7.4921, 7.491, 7.4898, 7.4887, 7.4875, 7.4864, 7.4853, 7.4872, 7.489, 7.4909, 7.4901, 7.4892, 7.4884, 7.4879, 7.4869, 7.4858, 7.4846, 7.4844, 7.4834, 7.4823, 7.4847, 7.4865, 7.4854, 7.4877, 7.484, 7.4846, 7.4888, 7.4906, 7.4923, 7.4941, 7.493, 7.4946, 7.4935, 7.4924, 7.4912, 7.4902, 7.4893, 7.4882, 7.4877, 7.4866, 7.4855, 7.4845, 7.4833, 7.4852, 7.4842, 7.4831, 7.482, 7.4865, 7.4882, 7.487, 7.4859, 7.4851, 7.484, 7.483, 7.482, 7.4812, 7.4803, 7.4793, 7.4785, 7.4773, 7.4763, 7.4778, 7.477, 7.4762, 7.4751, 7.4741, 7.4736, 7.4755, 7.4747, 7.4738, 7.4756, 7.475, 7.4742, 7.4733, 7.4724, 7.4743, 7.4736, 7.473, 7.4695, 7.471, 7.4728, 7.4775, 7.4769, 7.4759, 7.475, 7.4741, 7.4732, 7.4747, 7.4766, 7.4755, 7.4773, 7.4763, 7.478, 7.4769, 7.4758, 7.4749, 7.4739, 7.4756, 7.4747, 7.4763, 7.4779, 7.4768, 7.4759, 7.475, 7.475, 7.4741, 7.4733, 7.4724, 7.4717, 7.4764, 7.4782, 7.4801, 7.4791, 7.4783, 7.4773, 7.4765, 7.4783, 7.4802, 7.4801, 7.4799, 7.4791, 7.4782, 7.4776, 7.4766, 7.4783, 7.4781, 7.4773, 7.4789, 7.4807, 7.4797, 7.4787, 7.4779, 7.4794, 7.481, 7.4799, 7.4815, 7.4808, 7.4798, 7.4764, 7.473, 7.4723, 7.4715, 7.4736, 7.473, 7.4721, 7.4712, 7.4709, 7.4701, 7.469, 7.4685, 7.4677, 7.4672, 7.4689, 7.468, 7.4672, 7.4665, 7.4661, 7.4653, 7.4647, 7.4637, 7.463, 7.4622, 7.4617, 7.4611, 7.467, 7.466, 7.4651, 7.4641, 7.4634, 7.4627, 7.4618, 7.4639, 7.4631, 7.4625, 7.4614, 7.4606, 7.4625, 7.4644, 7.4673, 7.4663, 7.4682, 7.4673, 7.4666, 7.4661, 7.4652, 7.4643, 7.4642, 7.4632, 7.4625, 7.4644, 7.4634, 7.4625, 7.4615, 7.4608, 7.4602, 7.4597, 7.4592, 7.4608, 7.4575, 7.4565, 7.4555, 7.4582, 7.4573, 7.4565, 7.4573, 7.4573, 7.4567, 7.4583, 7.4573, 7.4589, 7.4579, 7.4572, 7.4563, 7.4558, 7.4548, 7.4563, 7.4558, 7.455, 7.4542, 7.4539, 7.4529, 7.4519, 7.4512, 7.4502, 7.4519, 7.4518, 7.4535, 7.4528, 7.4518, 7.451, 7.4504, 7.4472, 7.4487, 7.4479, 7.447, 7.446, 7.4476, 7.4467, 7.446, 7.4453, 7.4443, 7.4434, 7.4427, 7.4419, 7.4411, 7.4401, 7.4418, 7.4409, 7.4438, 7.4438, 7.4416, 7.4407, 7.4401, 7.4392, 7.4383, 7.4375, 7.4368, 7.4361, 7.4351, 7.4341, 7.4332, 7.4348, 7.4341, 7.4356, 7.4346, 7.4387, 7.4381, 7.4399, 7.4417, 7.441, 7.4426, 7.4426, 7.4418, 7.4413, 7.4403, 7.4378, 7.4392, 7.4406, 7.4399, 7.4389, 7.4379, 7.4371, 7.4387, 7.4377, 7.4372, 7.4365, 7.4355, 7.4345, 7.4335, 7.4327, 7.4319, 7.4313, 7.4332, 7.4322, 7.4373, 7.4389, 7.4381, 7.4478, 7.4469, 7.4483, 7.4477, 7.4471, 7.4462, 7.4453, 7.4449, 7.4439, 7.4432, 7.4433, 7.4426, 7.4417, 7.4408, 7.4442, 7.4434, 7.4424, 7.444, 7.4435, 7.4449, 7.444, 7.4456, 7.4447, 7.4438, 7.4408, 7.4424, 7.4417, 7.4411, 7.4427, 7.4442, 7.4435, 7.4452, 7.4444, 7.4459, 7.4452, 7.4468, 7.4461, 7.4453, 7.4445, 7.444, 7.4437, 7.4455, 7.4472, 7.4467, 7.4459, 7.4453, 7.4445, 7.4437, 7.4428, 7.442, 7.4436, 7.4427, 7.4419, 7.4409, 7.4399, 7.439, 7.4404, 7.4394, 7.4384, 7.4375, 7.4415, 7.4407, 7.4399, 7.4392, 7.4382, 7.456, 7.4566, 7.4557, 7.455, 7.452, 7.449, 7.4481, 7.4472, 7.4465, 7.4608, 7.4599, 7.4591, 7.4585, 7.4576, 7.4592, 7.4582, 7.4575, 7.4566, 7.4582, 7.4598, 7.4647, 7.4638, 7.4632, 7.4624, 7.4639, 7.4632, 7.4647, 7.4639, 7.4635, 7.4626, 7.4617, 7.4607, 7.4598, 7.4589, 7.458, 7.4606, 7.4576, 7.4567, 7.4559, 7.4552, 7.4546, 7.4537, 7.453, 7.4545, 7.4559, 7.4552, 7.4543, 7.4538, 7.453, 7.4523, 7.4538, 7.4529, 7.452, 7.4518, 7.4515, 7.4509, 7.4501, 7.4494, 7.4486, 7.4477, 7.4468, 7.4459, 7.4455, 7.4446, 7.4493, 7.4488, 7.4512, 7.4487, 7.4502, 7.4507, 7.4528, 7.4551, 7.4542, 7.4535, 7.4526, 7.4518, 7.451, 7.4501, 7.4492, 7.4509, 7.45, 7.4515, 7.4505, 7.452, 7.4491, 7.4484, 7.4499, 7.449, 7.4484, 7.4499, 7.449, 7.4482, 7.4475, 7.4467, 7.4483, 7.4479, 7.4493, 7.4486, 7.4501, 7.4515, 7.4506, 7.4497, 7.4488, 7.4495, 7.449, 7.4481, 7.4495, 7.4512, 7.4525, 7.4539, 7.4532, 7.4523, 7.4515, 7.4574, 7.4568, 7.4559, 7.4554, 7.4548, 7.454, 7.4534, 7.4525, 7.4517, 7.4508, 7.4523, 7.4538, 7.4531, 7.4525, 7.4516, 7.4507, 7.4502, 7.4493, 7.4485, 7.4476, 7.4469, 7.4483, 7.4475, 7.4466, 7.4457, 7.4449, 7.444, 7.4456, 7.447, 7.4485, 7.4499, 7.449, 7.4483, 7.4474, 7.4468, 7.4481, 7.4472, 7.4463, 7.4479, 7.4492, 7.4486, 7.4477, 7.4468, 7.4508, 7.4521, 7.4513, 7.4507, 7.4523, 7.4514, 7.4508, 7.4523, 7.4515, 7.4507, 7.4498, 7.4491, 7.4483, 7.4474, 7.4469, 7.4461, 7.4474, 7.4467, 7.4464, 7.4458, 7.4452, 7.4444, 7.4437, 7.445, 7.4443, 7.4434, 7.4446, 7.446, 7.449, 7.4482, 7.4473, 7.4489, 7.4481, 7.4473, 7.4465, 7.4481, 7.4475, 7.4467, 7.4459, 7.445, 7.4464, 7.4463, 7.4456, 7.4451, 7.4423, 7.4416, 7.443, 7.4424, 7.4416, 7.4408, 7.44, 7.4391, 7.4383, 7.4375, 7.4389, 7.4383, 7.4397, 7.441, 7.4401, 7.4394, 7.4409, 7.4423, 7.4421, 7.4413, 7.4428, 7.4421, 7.4413, 7.4407, 7.4421, 7.4415, 7.441, 7.4403, 7.4417, 7.4411, 7.4404, 7.4398, 7.4391, 7.4383, 7.4375, 7.4388, 7.4382, 7.4374, 7.437, 7.4384, 7.4399, 7.4397, 7.439, 7.4383, 7.4376, 7.4391, 7.4406, 7.4399, 7.4394, 7.4386, 7.438, 7.4372, 7.4363, 7.4355, 7.4348, 7.4342, 7.435, 7.4343, 7.4335, 7.4327, 7.434, 7.4338, 7.433, 7.4322, 7.4335, 7.4328, 7.432, 7.4312, 7.4304, 7.4298, 7.4292, 7.4286, 7.43, 7.4292, 7.4337, 7.4331, 7.4348, 7.434, 7.4354, 7.4346, 7.4361, 7.4375, 7.4389, 7.4381, 7.4375, 7.4369, 7.4364, 7.4378, 7.4392, 7.4383, 7.4374, 7.4366, 7.4359, 7.4375, 7.4372, 7.4385, 7.4376, 7.4368, 7.436, 7.4354, 7.435, 7.4345, 7.4357, 7.4369, 7.4362, 7.4335, 7.4328, 7.4322, 7.432, 7.4293, 7.4285, 7.428, 7.4273, 7.4267, 7.4456, 7.4467, 7.4461, 7.4468, 7.446, 7.4452, 7.4466, 7.4476, 7.445, 7.4442, 7.4437, 7.4431, 7.4424, 7.4417, 7.4409, 7.4403, 7.4416, 7.4431, 7.4423, 7.4415, 7.4407, 7.4399, 7.4391, 7.4404, 7.4396, 7.441, 7.4423, 7.4415, 7.4407, 7.4401, 7.4394, 7.4387, 7.4382, 7.4376, 7.437, 7.4363, 7.4356, 7.4348, 7.4344, 7.4337, 7.4329, 7.4321, 7.4333, 7.4347, 7.4339, 7.4333, 7.4326, 7.4339, 7.4354, 7.4346, 7.4341, 7.4334, 7.4329, 7.439, 7.4403, 7.4399, 7.4373, 7.4385, 7.4377, 7.439, 7.4403, 7.4397, 7.4389, 7.4385, 7.4399, 7.4392, 7.4385, 7.4398, 7.4372, 7.4375, 7.4367, 7.4363, 7.4357, 7.4351, 7.4343, 7.4355, 7.4369, 7.4363, 7.4356, 7.435, 7.4381, 7.4373, 7.4365, 7.4357, 7.4371, 7.4363, 7.4377, 7.437, 7.4364, 7.4356, 7.4348, 7.434, 7.4354, 7.4372, 7.4389, 7.4414, 7.4467, 7.4445, 7.4438, 7.4412, 7.4386, 7.438, 7.4372, 7.4375, 7.4367, 7.4359, 7.4351, 7.4344, 7.4387, 7.44, 7.4392, 7.4389, 7.4381, 7.4393, 7.4387, 7.44, 7.4413, 7.4406, 7.4424, 7.4417, 7.4409, 7.4422, 7.4417, 7.441, 7.4402, 7.4394, 7.4389, 7.4381, 7.4377, 7.437, 7.4362, 7.4354, 7.4368, 7.4361, 7.4373, 7.4365, 7.4361, 7.4355, 7.4348, 7.4341, 7.4335, 7.4329, 7.4323, 7.4316, 7.4309, 7.4305, 7.4319, 7.4313, 7.4306, 7.43, 7.4293, 7.4286, 7.4279, 7.4276, 7.4269, 7.4263, 7.4255, 7.4266, 7.426, 7.4255, 7.425, 7.4243, 7.4235, 7.4228, 7.422, 7.4214, 7.4227, 7.4219, 7.4212, 7.4204, 7.42, 7.4213, 7.4303, 7.4297, 7.4289, 7.4281, 7.4274, 7.4287, 7.4301, 7.4295, 7.429, 7.4283, 7.4276, 7.4289, 7.4302, 7.4295, 7.4288, 7.4301, 7.4315, 7.4326, 7.4339, 7.4332, 7.4326, 7.4378, 7.437, 7.4362, 7.4355, 7.4351, 7.4344, 7.4356, 7.4352, 7.4364, 7.4376, 7.4372, 7.4365, 7.4357, 7.4351, 7.4345, 7.4341, 7.4335, 7.4352, 7.4345, 7.437, 7.4362, 7.4356, 7.4368, 7.4362, 7.4356, 7.4349, 7.4342, 7.4337, 7.4332, 7.4325, 7.4319, 7.4312, 7.4305, 7.432, 7.4317, 7.4312, 7.4287, 7.43, 7.4315, 7.4307, 7.4282, 7.4294, 7.4288, 7.4283, 7.4276, 7.4269, 7.4262, 7.4257, 7.427, 7.4264, 7.4256, 7.427, 7.4262, 7.4259, 7.4252, 7.4264, 7.4275, 7.4267, 7.4279, 7.4274, 7.4287, 7.4299, 7.4286, 7.4281, 7.4292, 7.4285, 7.4298, 7.429, 7.4284, 7.4278, 7.4291, 7.429, 7.4284, 7.4279, 7.4298, 7.4292, 7.4286, 7.4278, 7.427, 7.4264, 7.4256, 7.4248, 7.4241, 7.4234, 7.4256, 7.4268, 7.426, 7.4254, 7.4248, 7.4261, 7.4254, 7.4263, 7.4285, 7.4297, 7.4291, 7.4286, 7.4289, 7.4282, 7.4275, 7.4267, 7.4268, 7.426, 7.4271, 7.4264, 7.4275, 7.4268, 7.4263, 7.4259, 7.4252, 7.4246, 7.4257, 7.4249, 7.4241, 7.4252, 7.4245, 7.4257, 7.4251, 7.4263, 7.4256, 7.4252, 7.4246, 7.4241, 7.4236, 7.4251, 7.4263, 7.4275, 7.4268, 7.4261, 7.4254, 7.425, 7.4242, 7.4235, 7.4232, 7.4227, 7.4249, 7.4261, 7.4254, 7.4266, 7.4258, 7.4251, 7.4263, 7.4256, 7.4268, 7.4264, 7.4258, 7.4251, 7.4244, 7.422, 7.4213, 7.4208, 7.4201, 7.4213, 7.4189, 7.4184, 7.4196, 7.4208, 7.4202, 7.4197, 7.4194, 7.4189, 7.4184, 7.4177, 7.4172, 7.4166, 7.4159, 7.4172, 7.4186, 7.4219, 7.4225, 7.4237, 7.4233, 7.4255, 7.4251, 7.4247, 7.4243, 7.4238, 7.425, 7.4245, 7.4239, 7.4232, 7.4243, 7.4236, 7.4229, 7.4224, 7.4217, 7.4211, 7.4205, 7.4201, 7.4194, 7.4205, 7.4198, 7.4191, 7.4184, 7.4179, 7.4173, 7.4169, 7.4165, 7.4159, 7.4154, 7.4149, 7.4144, 7.4156, 7.4149, 7.4142, 7.4136, 7.4133, 7.4126, 7.4119, 7.4114, 7.411, 7.4117, 7.4111, 7.4104, 7.4098, 7.4091, 7.4084, 7.4079, 7.4073, 7.4067, 7.406, 7.4053, 7.405, 7.4043, 7.4055, 7.4054, 7.4048, 7.4078, 7.4074, 7.4068, 7.4062, 7.4057, 7.4053, 7.4064, 7.4042, 7.4054, 7.4048, 7.4042, 7.4042, 7.4039, 7.4032, 7.4027, 7.402, 7.4035, 7.4046, 7.4039, 7.4034, 7.4055, 7.4051, 7.4046, 7.4064, 7.4057, 7.4055, 7.405, 7.4043, 7.4038, 7.4049, 7.4044, 7.4057, 7.4053, 7.405, 7.4043, 7.406, 7.4053, 7.4047, 7.4045, 7.404, 7.4033, 7.4028, 7.4026, 7.4019, 7.4012, 7.4024, 7.402, 7.4033, 7.4027, 7.402, 7.4013, 7.4026, 7.4022, 7.4015, 7.4027, 7.4023, 7.4017, 7.4014, 7.4026, 7.4038, 7.405, 7.4043, 7.4072, 7.4065, 7.4058, 7.4051, 7.4045, 7.4056, 7.405, 7.4046, 7.4039, 7.4032, 7.4025, 7.402, 7.4013, 7.4006, 7.3999, 7.4009, 7.402, 7.4031, 7.4042, 7.4035, 7.4028, 7.4023, 7.4017, 7.4011, 7.4004, 7.3997, 7.4008, 7.4001, 7.3996, 7.3993, 7.4004, 7.3997, 7.4008, 7.4001, 7.3996, 7.3991, 7.3986, 7.3979, 7.3983, 7.3997, 7.3975, 7.4005, 7.4, 7.4021, 7.4016, 7.4014, 7.4011, 7.4023, 7.4042, 7.4035, 7.4031, 7.4042, 7.4039, 7.4033, 7.4028, 7.4021, 7.4015, 7.4008, 7.4021, 7.4015, 7.4009, 7.4002, 7.3995, 7.3989, 7.3987, 7.3983, 7.3977, 7.397, 7.3964, 7.3975, 7.3991, 7.3985, 7.3979, 7.3973, 7.3969, 7.3963, 7.3958, 7.3969, 7.3965, 7.3968, 7.3962, 7.3972, 7.3965, 7.3975, 7.3969, 7.3965, 7.3959, 7.3971, 7.3965, 7.3959, 7.3953, 7.3947, 7.3941, 7.3935, 7.3928, 7.3921, 7.3918, 7.3911, 7.3907, 7.3901, 7.3897, 7.3891, 7.3902, 7.3897, 7.3891, 7.3886, 7.3898, 7.3894, 7.3904, 7.3898, 7.3891, 7.3886, 7.3881, 7.3908, 7.3921, 7.3931, 7.3927, 7.3923, 7.3916, 7.3912, 7.3941, 7.397, 7.3963, 7.3958, 7.3952, 7.3963, 7.3958, 7.3952, 7.3947, 7.3957, 7.395, 7.396, 7.3956, 7.3953, 7.3951, 7.3963, 7.3958, 7.3953, 7.3948, 7.3951, 7.3946, 7.394, 7.3934, 7.393, 7.3908, 7.3903, 7.3896, 7.3892, 7.3887, 7.3883, 7.3894, 7.3904, 7.3898, 7.3943, 7.3954, 7.3954, 7.3933, 7.3927, 7.392, 7.3917, 7.3911, 7.3906, 7.3902, 7.3913, 7.3907, 7.3903, 7.39, 7.3895, 7.3889, 7.3882, 7.3877, 7.3922, 7.3935, 7.3932, 7.3967, 7.3979, 7.3982, 7.3977, 7.3971, 7.3964, 7.396, 7.3953, 7.3947, 7.3943, 7.3938, 7.3949, 7.3942, 7.3953, 7.3947, 7.394, 7.3934, 7.3928, 7.3926, 7.3935, 7.3946, 7.3957, 7.3951, 7.3944, 7.3955, 7.3949, 7.3943, 7.3938, 7.3949, 7.396, 7.3954, 7.3948, 7.3927, 7.3931, 7.3925, 7.3938, 7.3932, 7.3928, 7.3923, 7.3919, 7.3929, 7.3923, 7.3917, 7.3911, 7.3921, 7.3915, 7.3921, 7.3933, 7.3926, 7.392, 7.3914, 7.3911, 7.3905, 7.3899, 7.392, 7.3915, 7.391, 7.3904, 7.3898, 7.3891, 7.3901, 7.3895, 7.3889, 7.3884, 7.388, 7.386, 7.3857, 7.3858, 7.3838, 7.3832, 7.3835, 7.3833, 7.3845, 7.3856, 7.3867, 7.387700000000001, 7.3871, 7.3865, 7.3859, 7.3868, 7.3848, 7.3857, 7.3856, 7.385, 7.3832, 7.3826, 7.3826, 7.3839, 7.3906, 7.3907, 7.3918, 7.3912, 7.3907, 7.391, 7.3923, 7.3917, 7.3932, 7.3926, 7.3936, 7.3929, 7.3925, 7.3919, 7.4002, 7.3997, 7.3993, 7.3989, 7.3985, 7.3979, 7.3974, 7.397, 7.3964, 7.3959, 7.3952, 7.3962, 7.3958, 7.3952, 7.3948, 7.3942, 7.3953, 7.3948, 7.3959, 7.3954, 7.3951, 7.3953, 7.397, 7.3965, 7.396, 7.3971, 7.397, 7.3964, 7.3991, 7.3985, 7.3979, 7.3974, 7.3969, 7.3949, 7.396, 7.397, 7.3966, 7.3963, 7.3957, 7.3951, 7.3965, 7.3961, 7.3971, 7.3966, 7.3995, 7.3975, 7.3969, 7.3963, 7.3958, 7.3954, 7.3948, 7.3942, 7.3936, 7.393, 7.3925, 7.3921, 7.3915, 7.3909, 7.3919, 7.3915, 7.3911, 7.3906, 7.3916, 7.3947, 7.3967, 7.3961, 7.3955, 7.3949, 7.3962, 7.3974, 7.3953, 7.4016, 7.4029, 7.4024, 7.4034, 7.4045, 7.4068, 7.4062, 7.4072, 7.4067, 7.4061, 7.4056, 7.4066, 7.4061, 7.4061, 7.4071, 7.4081, 7.4078, 7.4074, 7.4083, 7.4078, 7.4073, 7.4067, 7.4062, 7.4073, 7.4053, 7.4049, 7.4044, 7.4039, 7.405, 7.4045, 7.4039, 7.4051, 7.4046, 7.4057, 7.4068, 7.4064, 7.4058, 7.4053, 7.4048, 7.4028, 7.4023, 7.4017, 7.4028, 7.4022, 7.4035, 7.4048, 7.4063, 7.4058, 7.4052, 7.4048, 7.4042, 7.4036, 7.4018, 7.4012, 7.4008, 7.4004, 7.3998, 7.4009, 7.4018, 7.4012, 7.4006, 7.4, 7.3996, 7.3991, 7.3986, 7.3981, 7.3977, 7.3972, 7.3967, 7.3961, 7.3958, 7.3953, 7.3964, 7.3973, 7.3984, 7.3979, 7.3974, 7.3985, 7.3997, 7.4007, 7.4001, 7.3995, 7.3989, 7.3983, 7.3977, 7.3973, 7.3984, 7.3979, 7.3992, 7.3987, 7.3996, 7.3991, 7.4, 7.3998, 7.398, 7.3986, 7.3967, 7.3976, 7.3973, 7.3967, 7.3963, 7.3957, 7.3956, 7.3951, 7.3947, 7.3945, 7.3941, 7.3935, 7.3934, 7.3928, 7.3938, 7.3933, 7.3949, 7.3959, 7.3956, 7.3951, 7.3945, 7.3955, 7.3951, 7.3949, 7.3959, 7.3953, 7.3947, 7.3959, 7.3968, 7.3962, 7.3956, 7.3952, 7.3948, 7.3945, 7.3942, 7.3937, 7.3931, 7.3926, 7.392, 7.3914, 7.3927, 7.3923, 7.3917, 7.3913, 7.3909, 7.3903, 7.3914, 7.392, 7.3914, 7.3923, 7.3917, 7.3912, 7.3908, 7.3904, 7.3899, 7.3893, 7.3888, 7.3882, 7.3892, 7.3901, 7.391, 7.3907, 7.3904, 7.3913, 7.3908, 7.3903, 7.3912, 7.3906, 7.3901, 7.3959, 7.3954, 7.3948, 7.3942, 7.3938, 7.3948, 7.3944, 7.3939, 7.3941, 7.3936, 7.3918, 7.3928, 7.3922, 7.3931, 7.3925, 7.392, 7.3914, 7.3924, 7.3922, 7.3918, 7.39, 7.3896, 7.3891, 7.3885, 7.3879, 7.3873, 7.3868, 7.388, 7.3889, 7.3884, 7.3894, 7.3903, 7.3899, 7.3908, 7.3903, 7.3898, 7.3893, 7.3887, 7.3884, 7.388, 7.3874, 7.3869, 7.3886, 7.3881, 7.3877, 7.3875, 7.3885, 7.3881, 7.3877, 7.3889, 7.3885, 7.3895, 7.3916, 7.3897, 7.3893, 7.3889, 7.3892, 7.3901, 7.3897, 7.3892, 7.3887, 7.3896, 7.3891, 7.3885, 7.3895, 7.3892, 7.3887, 7.3883, 7.3878, 7.3873, 7.3867, 7.3862, 7.3865, 7.3874, 7.386, 7.3841, 7.385, 7.3845, 7.384, 7.3834, 7.3829, 7.3825, 7.3822, 7.3817, 7.3812, 7.3821, 7.3815, 7.381, 7.3806, 7.3801, 7.3798, 7.3794, 7.3788, 7.3783, 7.3779, 7.3774, 7.3769, 7.3763, 7.3758, 7.3754, 7.3753, 7.3762, 7.3758, 7.3758, 7.3753, 7.3748, 7.3759, 7.3753, 7.376, 7.3755, 7.3765, 7.376, 7.3755, 7.3765, 7.376, 7.376, 7.3756, 7.3765, 7.376, 7.3769, 7.3764, 7.3761, 7.3757, 7.3753, 7.3762, 7.3762, 7.3771, 7.378, 7.379, 7.38, 7.3797, 7.3794, 7.3789, 7.3798, 7.3794, 7.3789, 7.3785, 7.378, 7.3775, 7.377, 7.3765, 7.3778, 7.3773, 7.3768, 7.3769, 7.3766, 7.3776, 7.3771, 7.3782, 7.3805, 7.3799, 7.3796, 7.3806, 7.3801, 7.381, 7.3806, 7.3801, 7.3797, 7.3793, 7.3775, 7.3784, 7.3779, 7.3775, 7.377, 7.3766, 7.3775, 7.377, 7.3766, 7.376, 7.3757, 7.3753, 7.3749, 7.3743, 7.3738, 7.3733, 7.3728, 7.3723, 7.372, 7.3731, 7.374, 7.3737, 7.3733, 7.3729, 7.3725, 7.3725, 7.3745, 7.374, 7.3735, 7.3732, 7.3726, 7.3723, 7.3732, 7.3727, 7.3722, 7.3716, 7.3712, 7.3708, 7.3703, 7.3699, 7.3694, 7.369, 7.3685, 7.3682, 7.3677, 7.3673, 7.3668, 7.3664, 7.366, 7.366, 7.3657, 7.3652, 7.3661, 7.3657, 7.3666, 7.3661, 7.3656, 7.3667, 7.3676, 7.367, 7.3679, 7.3687, 7.3682, 7.3682, 7.3682, 7.3676, 7.3676, 7.3672, 7.3668, 7.3664, 7.366, 7.3656, 7.3651, 7.3651, 7.3647, 7.3645, 7.3629, 7.3638, 7.3634, 7.3629, 7.3639, 7.3635, 7.3631, 7.3626, 7.3636, 7.3634, 7.3645, 7.3642, 7.3638, 7.3633, 7.3629, 7.3623, 7.3632, 7.3627, 7.3636, 7.3637, 7.3639, 7.3634, 7.3631, 7.3626, 7.3626, 7.3622, 7.3633, 7.3629, 7.3628, 7.3637, 7.3632, 7.3628, 7.3624, 7.3619, 7.3614, 7.3611, 7.3606, 7.3616, 7.3612, 7.3607, 7.3615, 7.3612, 7.3607, 7.3603, 7.3597, 7.3609, 7.3604, 7.3601, 7.361, 7.3606, 7.3601, 7.3596, 7.3592, 7.3591, 7.36, 7.3597, 7.3606, 7.3606, 7.36, 7.3609, 7.3605, 7.3664, 7.3673, 7.3669, 7.3664, 7.3674, 7.3669, 7.3665, 7.3661, 7.3656, 7.3642, 7.3652, 7.3646, 7.3657, 7.3652, 7.3649, 7.3644, 7.3641, 7.3637, 7.3639, 7.3648, 7.3657, 7.3652, 7.3664, 7.3687, 7.3682, 7.3682, 7.3678, 7.3673, 7.3683, 7.368, 7.3675, 7.367, 7.3693, 7.3689, 7.3685, 7.3681, 7.369, 7.3686, 7.3697, 7.3707, 7.3702, 7.3699, 7.3709, 7.3704, 7.37, 7.3695, 7.369, 7.3686, 7.3681, 7.3694, 7.3689, 7.3685, 7.368, 7.3675, 7.3671, 7.3666, 7.3661, 7.3671, 7.3704, 7.3699, 7.3708, 7.3703, 7.3699, 7.3697, 7.3706, 7.3702, 7.3699, 7.3708, 7.3703, 7.3699, 7.3694, 7.369, 7.3685, 7.368, 7.369000000000001, 7.370000000000001, 7.3708, 7.3703, 7.3712, 7.3707, 7.369, 7.3699, 7.3695, 7.3705, 7.3715, 7.371, 7.3722, 7.3718, 7.3714, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.3691, 7.3686, 7.3681, 7.3676, 7.3671, 7.3666, 7.3662, 7.3671, 7.3669, 7.3664, 7.3672, 7.3667, 7.3662, 7.3657, 7.364, 7.3635, 7.363, 7.3625, 7.362, 7.3618, 7.3613, 7.3611, 7.3607, 7.3602, 7.3598, 7.3596, 7.3594, 7.3603, 7.3613, 7.361, 7.3605, 7.3602, 7.3611, 7.3621, 7.3631, 7.364, 7.3637, 7.3633, 7.3629, 7.3628, 7.3611, 7.362, 7.3615, 7.3611, 7.3607, 7.3602, 7.3597, 7.3593, 7.3588, 7.3585, 7.358, 7.3575, 7.3572, 7.358, 7.3576, 7.3573, 7.3568, 7.3567, 7.36, 7.3595, 7.3593, 7.3588, 7.3585, 7.3582, 7.3578, 7.3613, 7.3609, 7.3631, 7.3626, 7.3644, 7.3669, 7.3677, 7.3672, 7.3667, 7.3663, 7.3659, 7.3656, 7.3639, 7.3647, 7.3643, 7.3652, 7.3654, 7.3638, 7.3634, 7.3632, 7.364, 7.3635, 7.3631, 7.3639, 7.3635, 7.363, 7.3625, 7.3633, 7.3628, 7.3624, 7.3633, 7.3629, 7.3625, 7.3621, 7.3617, 7.364, 7.3636, 7.3631, 7.3626, 7.3622, 7.362, 7.3616, 7.3633, 7.3633, 7.3629, 7.3639, 7.3647, 7.3642, 7.3638, 7.3634, 7.363, 7.3629, 7.3638, 7.3633, 7.3629, 7.3626, 7.3622, 7.3618, 7.3616, 7.3614, 7.3629, 7.3641, 7.365, 7.3646, 7.3641, 7.3663, 7.3658, 7.3661, 7.3657, 7.3653, 7.3649, 7.3657, 7.3665, 7.3675, 7.3658, 7.3653, 7.3649, 7.3657, 7.3652, 7.3648, 7.3657, 7.3653, 7.3648, 7.3657, 7.3653, 7.3648, 7.3644, 7.364, 7.3637, 7.3632, 7.364, 7.3649, 7.3657, 7.3652, 7.3648, 7.3645, 7.3642, 7.3638, 7.3636, 7.3631, 7.3627, 7.3623, 7.3619, 7.362, 7.3628, 7.3636, 7.3631, 7.364, 7.3635, 7.3642, 7.3642, 7.3637, 7.3632, 7.363, 7.3626, 7.3622, 7.3618, 7.3627, 7.3627, 7.3624, 7.3621, 7.3616, 7.3624, 7.365, 7.3645, 7.3641, 7.3636, 7.3644, 7.3653, 7.365, 7.3659, 7.3654, 7.3649, 7.3646, 7.3644, 7.3641, 7.3638, 7.3647, 7.3646, 7.3642, 7.3639, 7.3636, 7.3644, 7.3639, 7.3635, 7.3618, 7.3627, 7.3635, 7.3631, 7.364, 7.3661, 7.3656, 7.3643, 7.3638, 7.3635, 7.3632, 7.3642, 7.3639, 7.3635, 7.3631, 7.3627, 7.3636, 7.3631, 7.3628, 7.3624, 7.362, 7.3619, 7.3616, 7.3623, 7.3619, 7.3616, 7.3612, 7.3607, 7.3604, 7.3603, 7.3599, 7.3606, 7.3603, 7.3599, 7.3595, 7.359, 7.3599, 7.3626, 7.3655, 7.3651, 7.3647, 7.3661, 7.3658, 7.3654, 7.3649, 7.3645, 7.3641, 7.3636, 7.3632, 7.3627, 7.3622, 7.3618, 7.3617, 7.3626, 7.3634, 7.3635, 7.3631, 7.3626, 7.3621, 7.3605, 7.36, 7.3595, 7.3596, 7.3593, 7.3589, 7.3586, 7.3582, 7.3578, 7.3578, 7.3574, 7.357, 7.3566, 7.3563, 7.356, 7.3569, 7.3564, 7.356, 7.3556, 7.3552, 7.3561, 7.3557, 7.3552, 7.3561, 7.3556, 7.3563, 7.3559, 7.3554, 7.3549, 7.3557, 7.3552, 7.3548, 7.3543, 7.3551, 7.3572, 7.3593, 7.3589, 7.3586, 7.3581, 7.3576, 7.3572, 7.358, 7.3575, 7.3572, 7.3582, 7.3578, 7.3574, 7.3557, 7.3554, 7.3563, 7.3561, 7.3556, 7.3551, 7.3549, 7.3544, 7.3539, 7.3536, 7.3531, 7.3539, 7.3536, 7.3549, 7.3557, 7.3553, 7.3549, 7.3544, 7.3552, 7.3549, 7.3546, 7.3554, 7.3562, 7.3559, 7.3554, 7.3549, 7.355, 7.3538, 7.3533, 7.3542, 7.3539, 7.3547, 7.3543, 7.3544, 7.3541, 7.3549, 7.3556, 7.3545, 7.3542, 7.3538, 7.3534, 7.3529, 7.3525, 7.3522, 7.3518, 7.3513, 7.3522, 7.352, 7.3516, 7.3513, 7.3509, 7.3517, 7.3501, 7.3496, 7.3505, 7.3516, 7.3512, 7.3497, 7.3494, 7.349, 7.3485, 7.3492, 7.3489, 7.3485, 7.348, 7.348, 7.3475, 7.3471, 7.3479, 7.3475, 7.3482, 7.3503, 7.3512, 7.352, 7.3516, 7.3525, 7.3533, 7.3529, 7.3526, 7.3537, 7.3533, 7.3529, 7.3536, 7.3544, 7.3552, 7.3547, 7.3556, 7.3565, 7.3573, 7.3568, 7.3565, 7.3573, 7.3581, 7.3577, 7.3573, 7.358, 7.359, 7.3599, 7.3594, 7.3591, 7.3587, 7.3582, 7.3579, 7.3587, 7.3583, 7.3579, 7.3575, 7.3582, 7.3591, 7.36, 7.3596, 7.3593, 7.3601, 7.3598, 7.3593, 7.359, 7.3585, 7.3581, 7.3576, 7.3571, 7.3567, 7.3552, 7.3561, 7.3557, 7.3557, 7.3553, 7.3551, 7.3546, 7.3542, 7.3538, 7.3534, 7.3543, 7.354, 7.3548, 7.3546, 7.3542, 7.3538, 7.3552, 7.3548, 7.3544, 7.3542, 7.3538, 7.3533, 7.3529, 7.355, 7.3558, 7.3554, 7.3549, 7.3544, 7.3542, 7.3538, 7.3546, 7.3542, 7.3537, 7.3545, 7.354, 7.3536, 7.3532, 7.354, 7.3536, 7.3533, 7.3528, 7.3535, 7.3532, 7.3527, 7.3523, 7.3519, 7.3519, 7.3515, 7.3512, 7.3508, 7.3504, 7.3514, 7.3509, 7.3505, 7.3502, 7.3497, 7.3494, 7.3491, 7.3488, 7.3484, 7.3479, 7.3487, 7.3483, 7.3479, 7.3487, 7.3484, 7.348, 7.3476, 7.3471, 7.3479, 7.3464, 7.346, 7.3457, 7.3453, 7.3448, 7.3456, 7.3454, 7.345, 7.3445, 7.3441, 7.3438, 7.3447, 7.3445, 7.3442, 7.3438, 7.3434, 7.343, 7.3445, 7.3442, 7.3438, 7.3445, 7.3441, 7.3438, 7.3435, 7.3433, 7.3428, 7.3426, 7.3433, 7.3418, 7.3413, 7.3408, 7.3406, 7.3402, 7.3398, 7.3406, 7.3404, 7.3401, 7.3396, 7.3392, 7.3399, 7.3396, 7.3404, 7.3412, 7.342, 7.3417, 7.3413, 7.3409, 7.3405, 7.34, 7.3407, 7.3403, 7.3399, 7.3407, 7.3427, 7.3425, 7.3421, 7.3429, 7.3436, 7.3444, 7.3429, 7.3426, 7.3423, 7.3408, 7.3418, 7.3415, 7.3412, 7.3408, 7.3405, 7.3401, 7.3411, 7.3407, 7.3404, 7.34, 7.3396, 7.3391, 7.3387, 7.3385, 7.3382, 7.3378, 7.3387, 7.3383, 7.3378, 7.3374, 7.3372, 7.3367, 7.3374, 7.337, 7.3379, 7.3386, 7.3382, 7.3379, 7.3375, 7.3371, 7.3367, 7.3364, 7.336, 7.3356, 7.3364, 7.3372, 7.3368, 7.3364, 7.3364, 7.336, 7.3355, 7.335, 7.3357, 7.3353, 7.3361, 7.3356, 7.3364, 7.336, 7.3357, 7.3352, 7.3349, 7.3346, 7.3343, 7.3339, 7.3337, 7.3335, 7.3335, 7.3331, 7.3339, 7.3335, 7.3331, 7.3328, 7.3325, 7.3332, 7.334, 7.3349, 7.3348, 7.3355, 7.3363, 7.337, 7.3365, 7.3361, 7.3358, 7.3354, 7.3353, 7.336, 7.3356, 7.3353, 7.336, 7.3368, 7.3366, 7.3351, 7.3347, 7.3343, 7.3341, 7.3337, 7.3333, 7.3344, 7.334, 7.3348, 7.3361, 7.3347, 7.3343, 7.3339, 7.3336, 7.3332, 7.334, 7.3337, 7.3333, 7.3329, 7.3324, 7.332, 7.3316, 7.3312, 7.3308, 7.3304, 7.3312, 7.3309, 7.3304, 7.3301, 7.3297, 7.3294, 7.3291, 7.3298, 7.3306, 7.3303, 7.3306, 7.3316, 7.3311, 7.3308, 7.3315, 7.3311, 7.3308, 7.3306, 7.3302, 7.33, 7.3307, 7.3303, 7.3299, 7.3297, 7.3306, 7.3304, 7.3318, 7.3326, 7.3323, 7.3321, 7.3331, 7.3356, 7.3364, 7.336, 7.3368, 7.3376, 7.3386, 7.3382, 7.3378, 7.3375, 7.3383, 7.3368, 7.3365, 7.3361, 7.3357, 7.3353, 7.3353, 7.3352, 7.3359, 7.3355, 7.3351, 7.3347, 7.3344, 7.334, 7.3336, 7.3333, 7.3329, 7.3325, 7.3332, 7.333, 7.3326, 7.3325, 7.3332, 7.3328, 7.3325, 7.3311, 7.3307, 7.3307, 7.3304, 7.33, 7.3296, 7.3292, 7.3289, 7.3297, 7.3298, 7.3305, 7.3301, 7.3298, 7.3294, 7.329, 7.3286, 7.3282, 7.3278, 7.3264, 7.326, 7.3257, 7.3254, 7.325, 7.3258, 7.3257, 7.3254, 7.324, 7.3226, 7.3234, 7.3277, 7.3274, 7.327, 7.3267, 7.3263, 7.326, 7.3258, 7.3255, 7.3253, 7.325, 7.3246, 7.3254, 7.325, 7.3257, 7.3254, 7.325, 7.3246, 7.3243, 7.324, 7.3236, 7.3232, 7.3228, 7.3224, 7.3231, 7.3232, 7.3218, 7.3225, 7.3221, 7.3217, 7.3213, 7.322, 7.3227, 7.3223, 7.3219, 7.3215, 7.3212, 7.3261, 7.3258, 7.3265, 7.3272, 7.328, 7.3277, 7.3284, 7.3281, 7.3277, 7.3273, 7.327, 7.328, 7.3276, 7.3273, 7.327, 7.3267, 7.3263, 7.3259, 7.3255, 7.3256, 7.3263, 7.326, 7.3255, 7.3253, 7.325, 7.3247, 7.3254, 7.325, 7.3246, 7.3235, 7.3231, 7.3229, 7.3225, 7.3221, 7.3228, 7.3224, 7.322, 7.3217, 7.3213, 7.322, 7.3216, 7.3212, 7.3222000000000005, 7.323, 7.3226, 7.3222, 7.3231, 7.3241000000000005, 7.325100000000001, 7.326100000000001, 7.3258, 7.3277, 7.3266, 7.3262, 7.3269, 7.3265, 7.3261, 7.3268, 7.3275, 7.3282, 7.329, 7.3286, 7.3294, 7.329, 7.3308, 7.3304, 7.3323, 7.332, 7.3316, 7.3323, 7.332, 7.3318, 7.3315, 7.3311, 7.3318, 7.332800000000001, 7.3326, 7.3323, 7.332, 7.3319, 7.3316, 7.3323, 7.332, 7.3316, 7.3321, 7.332, 7.3316, 7.3313, 7.331, 7.3318, 7.3314, 7.3312, 7.3325, 7.3321, 7.332, 7.3325, 7.3321, 7.333, 7.3338, 7.3336, 7.3343, 7.3339, 7.3337, 7.3333, 7.3329, 7.3325, 7.3321, 7.3318, 7.3315, 7.3322, 7.3319, 7.3327, 7.3324, 7.3322, 7.333200000000001, 7.334200000000001, 7.334, 7.3336, 7.3332, 7.3328, 7.3335, 7.3331, 7.3318, 7.3364, 7.336, 7.3356, 7.3358, 7.3365, 7.3361, 7.3369, 7.3366, 7.3377, 7.3374, 7.3374, 7.3374, 7.3375, 7.3371, 7.3368, 7.3364, 7.336, 7.3356, 7.3352, 7.3359, 7.3355, 7.3351, 7.3348, 7.3344, 7.334, 7.3347, 7.3354, 7.3353, 7.3349, 7.3345, 7.3341, 7.3337, 7.3334, 7.3332, 7.3339, 7.3336, 7.3333, 7.3329, 7.3336, 7.3332, 7.3339, 7.3335, 7.3331, 7.3328, 7.3326, 7.3322, 7.3318, 7.3314, 7.331, 7.3307, 7.3303, 7.33, 7.3307, 7.3303, 7.3299, 7.3296, 7.3303, 7.33, 7.3297, 7.3304, 7.33, 7.3296, 7.3325, 7.3321, 7.3318, 7.3337, 7.3367, 7.3366, 7.3363, 7.3359, 7.3356, 7.3352, 7.3348, 7.3344, 7.3341, 7.3338, 7.3337, 7.3335, 7.3332, 7.3341, 7.3338, 7.3336, 7.3344, 7.3341, 7.3338, 7.3335, 7.3331, 7.3328, 7.3335, 7.3331, 7.3338, 7.3334, 7.3331, 7.3332, 7.3329, 7.3328, 7.3335, 7.3332, 7.3328, 7.3324, 7.3321, 7.3339, 7.3335, 7.3333, 7.334, 7.3336, 7.3345, 7.3353, 7.335, 7.3357, 7.3354, 7.3361, 7.3357, 7.3364, 7.3361, 7.3358, 7.3354, 7.335, 7.3364, 7.3361, 7.3367, 7.3364, 7.337, 7.3367, 7.3375, 7.3373, 7.3371, 7.3367, 7.3354, 7.3352, 7.3349, 7.3346, 7.3343, 7.334, 7.3336, 7.3333, 7.333, 7.3327, 7.3324, 7.3322, 7.3319, 7.3315, 7.3323, 7.3321, 7.3318, 7.3327, 7.3324, 7.332, 7.3306, 7.3303, 7.3299, 7.3296, 7.3293, 7.3289, 7.3297, 7.3294, 7.329, 7.3299, 7.3306, 7.3303, 7.3301, 7.3297, 7.3294, 7.33, 7.3307, 7.3314, 7.3311, 7.3307, 7.3303, 7.329, 7.3287, 7.3283, 7.3279, 7.3292, 7.33, 7.3296, 7.3293, 7.3301, 7.3307, 7.3313, 7.331, 7.3306, 7.3318, 7.3325, 7.3321, 7.3329, 7.3336, 7.3332, 7.3328, 7.3325, 7.3331, 7.3339, 7.3347, 7.3344, 7.334, 7.3336, 7.3332, 7.3328, 7.3334, 7.3331, 7.3327, 7.3334, 7.3341, 7.3337, 7.3344, 7.334, 7.3337, 7.3335, 7.3342, 7.3342, 7.3338, 7.3335, 7.3331, 7.3327, 7.3356, 7.3384, 7.3391, 7.3387, 7.3394, 7.3392, 7.3399, 7.3395, 7.3406, 7.3402, 7.3409, 7.3417, 7.3422, 7.3429, 7.3428, 7.3425, 7.3421, 7.3427, 7.3424, 7.342, 7.3417, 7.3414, 7.3412, 7.3419, 7.3415, 7.3412, 7.3409, 7.3405, 7.3403, 7.34, 7.3401, 7.3448, 7.3445, 7.3443, 7.3449, 7.3448, 7.3445, 7.3442, 7.3461, 7.3459, 7.3466, 7.3473, 7.3471, 7.3468, 7.3475, 7.3472, 7.3469, 7.3477, 7.3474, 7.3462, 7.3458, 7.3454, 7.345, 7.3437, 7.3438, 7.3435, 7.3436, 7.3441, 7.3442, 7.344, 7.3437, 7.3438, 7.3441, 7.3437, 7.3493, 7.35, 7.3497, 7.3496, 7.3494, 7.349, 7.3487, 7.3484, 7.348, 7.3477, 7.3475, 7.3472, 7.3468, 7.3464, 7.347, 7.3457, 7.3463, 7.3479, 7.3475, 7.3482, 7.3479, 7.3484, 7.348, 7.3476, 7.3476, 7.3472, 7.3468, 7.3465, 7.3462, 7.3459, 7.3455, 7.3451, 7.3448, 7.3445, 7.3441, 7.3448, 7.3444, 7.3441, 7.3448, 7.3455, 7.3451, 7.3447, 7.3443, 7.3439, 7.3436, 7.3433, 7.343, 7.3437, 7.3447000000000005, 7.3453, 7.345, 7.3454, 7.3451, 7.3449, 7.3456, 7.3452, 7.3449, 7.3445, 7.3442, 7.344, 7.3436, 7.3432, 7.3431, 7.343, 7.3436, 7.3432, 7.343, 7.3427, 7.3426, 7.3422, 7.3419, 7.3416, 7.3422, 7.3442, 7.344, 7.3437, 7.3444, 7.3441, 7.3438, 7.3434, 7.343, 7.3426, 7.3422, 7.3418, 7.3425, 7.3432, 7.3429, 7.3439000000000005, 7.3487, 7.3497, 7.3494, 7.349, 7.3488, 7.3485, 7.3484, 7.3491, 7.3487, 7.3484, 7.3485, 7.3483, 7.3481, 7.3478, 7.3475, 7.3482, 7.3488, 7.3485, 7.3482, 7.3488, 7.3485, 7.3484, 7.348, 7.3478, 7.3474, 7.347, 7.3467, 7.3464, 7.346, 7.3457, 7.3454, 7.3461, 7.3457, 7.3465, 7.3462, 7.3458, 7.3455, 7.3452, 7.345, 7.3449, 7.3446, 7.3442, 7.3448, 7.3444, 7.344, 7.345, 7.3457, 7.3454, 7.3451, 7.3448, 7.3444, 7.3441, 7.3448, 7.3447, 7.3455, 7.3452, 7.3448, 7.3444, 7.3441, 7.3448, 7.3448, 7.3455, 7.3442, 7.3439, 7.3436, 7.3447, 7.3443, 7.344, 7.3447, 7.3444, 7.3441, 7.3437, 7.3435, 7.3431, 7.3428, 7.3436, 7.3434, 7.3445, 7.3452, 7.3469, 7.3467, 7.3464, 7.3461, 7.3461, 7.3458, 7.3455, 7.3452, 7.3448, 7.3435, 7.3433, 7.3429, 7.3425, 7.3421, 7.3418, 7.3425, 7.3422, 7.3425, 7.3436, 7.3443, 7.345, 7.3446, 7.3452, 7.3449, 7.3456, 7.3453, 7.345, 7.3447, 7.3444, 7.3443, 7.3439, 7.3445, 7.3451, 7.345, 7.3449, 7.3445, 7.3433, 7.3431, 7.3432, 7.3429, 7.3427, 7.3424, 7.3421, 7.3417, 7.3414, 7.3414, 7.3411, 7.3408, 7.3415, 7.3411, 7.3408, 7.3405, 7.3401, 7.3399, 7.3397, 7.3394, 7.339, 7.3387, 7.339, 7.3397, 7.3403, 7.34, 7.3399, 7.3396, 7.3392, 7.3389, 7.3386, 7.3404, 7.341, 7.3406, 7.3403, 7.34, 7.3407, 7.3406, 7.3403, 7.3413, 7.341, 7.3420000000000005, 7.343000000000001, 7.3427, 7.3423, 7.342, 7.3417, 7.3426, 7.3424, 7.3432, 7.3429, 7.3436, 7.3443, 7.344, 7.3437, 7.3445, 7.3443, 7.344, 7.3437, 7.3434, 7.3431, 7.3438, 7.3436, 7.3425, 7.3422, 7.3418, 7.3415, 7.3422, 7.3418, 7.3425, 7.3413, 7.341, 7.3406, 7.3402, 7.3398, 7.3394, 7.3392, 7.3389, 7.3396, 7.3393, 7.3399, 7.3388, 7.3395, 7.3392, 7.3389, 7.343, 7.3437, 7.3443, 7.344, 7.3448, 7.3445, 7.3453, 7.3463, 7.346, 7.347, 7.3466, 7.3454, 7.345, 7.3447, 7.3444, 7.3443, 7.3449, 7.3446, 7.3453, 7.3452, 7.3458, 7.3455, 7.3453, 7.345, 7.3448, 7.3445, 7.3442, 7.3439, 7.3448, 7.3446, 7.3443, 7.3441, 7.3438, 7.3438, 7.3434, 7.3431, 7.3429, 7.3427, 7.3436, 7.3434, 7.3432, 7.3429, 7.3437, 7.3434, 7.3442, 7.345, 7.3458, 7.3455, 7.3461, 7.3459, 7.3457, 7.3454, 7.346, 7.3466, 7.3476, 7.3483, 7.348, 7.3477, 7.3474, 7.347, 7.3468, 7.3465, 7.3463, 7.346, 7.3466, 7.3462, 7.3458, 7.3457, 7.3454, 7.3453, 7.3459, 7.3456, 7.3452, 7.3458, 7.3454, 7.3451, 7.3457, 7.3445, 7.3453, 7.3463, 7.3451, 7.3449, 7.3446, 7.3444, 7.3451, 7.3448, 7.3444, 7.3441, 7.3438, 7.3435, 7.3432, 7.343, 7.3421, 7.3418, 7.3414, 7.3412, 7.3409, 7.3405, 7.3402, 7.3399, 7.3396, 7.3393, 7.339, 7.3387, 7.3384, 7.3381, 7.3378, 7.3375, 7.3363, 7.336, 7.3366, 7.3362, 7.3359, 7.3356, 7.3353, 7.3359, 7.3355, 7.3352, 7.335, 7.3356, 7.3355, 7.3351, 7.3339, 7.3336, 7.3333, 7.3331, 7.3329, 7.334, 7.3346, 7.3342, 7.3349, 7.3346, 7.3342, 7.3338, 7.3344, 7.3341, 7.3338, 7.3343, 7.334, 7.3346, 7.3352, 7.3348, 7.3344, 7.3341, 7.3338, 7.3326, 7.3366, 7.3372, 7.3368, 7.3365, 7.3362, 7.3358, 7.3355, 7.3351, 7.3348, 7.3346, 7.3344, 7.334, 7.3337, 7.3333, 7.3321, 7.3337, 7.3334, 7.3331, 7.3332, 7.3329, 7.3327, 7.3325, 7.3322, 7.332, 7.3317, 7.3313, 7.3311, 7.3308, 7.3305, 7.3311, 7.3307, 7.3306, 7.3302, 7.33, 7.3299, 7.3296, 7.3304, 7.3302, 7.3299, 7.3296, 7.3313, 7.3321, 7.3318, 7.3324, 7.3321, 7.3318, 7.3315, 7.3321, 7.3318, 7.3315, 7.3316, 7.3314, 7.3321, 7.3318, 7.3323, 7.3319, 7.332, 7.3317, 7.3314, 7.331, 7.3317, 7.3314, 7.331, 7.3307, 7.3304, 7.33, 7.3306, 7.3303, 7.3299, 7.3295, 7.333, 7.3327, 7.3332, 7.3328, 7.3316, 7.3304, 7.3301, 7.33, 7.3306, 7.3303, 7.3309, 7.3316, 7.3322, 7.3319, 7.3316, 7.3322, 7.3319, 7.3318, 7.3315, 7.3313, 7.3311, 7.3308, 7.3297, 7.3294, 7.3291, 7.329, 7.3287, 7.3284, 7.33, 7.3306, 7.3304, 7.3302, 7.3299, 7.3295, 7.3301, 7.3298, 7.3295, 7.3292, 7.329, 7.3288, 7.3287, 7.3293, 7.3299, 7.3296, 7.3293, 7.3289, 7.3287, 7.3285, 7.3282, 7.331, 7.3316, 7.3313, 7.331, 7.3307, 7.3304, 7.3302, 7.3308, 7.3314, 7.3311, 7.3317, 7.3314, 7.331, 7.3318, 7.3314, 7.332, 7.3317, 7.3313, 7.331, 7.3308, 7.3304, 7.3314, 7.3311, 7.3307, 7.3313, 7.3311, 7.3308, 7.3306, 7.3305, 7.3302, 7.3299, 7.3296, 7.3295, 7.3292, 7.3299, 7.3296, 7.3293, 7.329, 7.3296, 7.3302, 7.3298, 7.3302, 7.3312, 7.3309, 7.3306, 7.3303, 7.3328, 7.3325, 7.3324, 7.3321, 7.3328, 7.3338, 7.3326, 7.3332, 7.3329, 7.3326, 7.3314, 7.3315, 7.3313, 7.3312, 7.331, 7.3307, 7.3304, 7.332, 7.3358, 7.3355, 7.337, 7.3367, 7.3378, 7.3403, 7.34, 7.3416, 7.3407, 7.3403, 7.34, 7.3399, 7.3396, 7.3401, 7.3398, 7.3395, 7.3393, 7.339, 7.3388, 7.3386, 7.3384, 7.339, 7.3388, 7.3394, 7.339, 7.3387, 7.3393, 7.339, 7.3386, 7.3384, 7.3391, 7.3397, 7.3402, 7.3398, 7.3404, 7.3401, 7.3398, 7.3386, 7.3382, 7.338, 7.3378, 7.3376, 7.3373, 7.3371, 7.3369, 7.3366, 7.3355, 7.3352, 7.3352, 7.3359, 7.3356, 7.3354, 7.3361, 7.3371, 7.338100000000001, 7.339100000000001, 7.3387, 7.3396, 7.3419, 7.3418, 7.3444, 7.3441, 7.3438, 7.3436, 7.346, 7.3457, 7.3455, 7.3453, 7.3451, 7.3458, 7.3464, 7.3463, 7.3452, 7.3449, 7.3447, 7.3444, 7.3441, 7.3438, 7.3443, 7.344, 7.3437, 7.3443, 7.3449, 7.3454, 7.345, 7.3447, 7.3445, 7.3451, 7.3457, 7.3455, 7.3461, 7.346, 7.3456, 7.3453, 7.3451, 7.3449, 7.3455, 7.3451, 7.3448, 7.3453, 7.3459, 7.3465, 7.3462, 7.3459, 7.3464, 7.346, 7.3457, 7.3454, 7.3451, 7.344, 7.3438, 7.3434, 7.344, 7.3437, 7.3445, 7.3443, 7.3444, 7.345, 7.3456, 7.3453, 7.3456, 7.3462, 7.3468, 7.3474, 7.3485, 7.349, 7.349, 7.3487, 7.3485, 7.3482, 7.3487, 7.3484, 7.3482, 7.3479, 7.3476, 7.3483, 7.3481, 7.348, 7.3476, 7.3473, 7.347, 7.3467, 7.3465, 7.3462, 7.3469, 7.3468, 7.3465, 7.3471, 7.3467, 7.3472, 7.3486, 7.3493, 7.349, 7.3489, 7.3486, 7.3483, 7.3481, 7.3478, 7.3476, 7.3475, 7.3472, 7.3469, 7.3467, 7.347700000000001, 7.3474, 7.3472, 7.3479, 7.3476, 7.3474, 7.348400000000001, 7.3481, 7.3478, 7.3476, 7.3474, 7.3471, 7.3462, 7.3468, 7.3465, 7.3462, 7.346, 7.3457, 7.3466, 7.3476, 7.3474, 7.3471, 7.3468, 7.3475, 7.3473, 7.347, 7.3476, 7.3474, 7.3471, 7.3491, 7.3488, 7.3494, 7.3505, 7.3502, 7.3508, 7.3513, 7.3518, 7.3516, 7.3513, 7.351, 7.3507, 7.3512, 7.3509, 7.3506, 7.3504, 7.3502, 7.3499, 7.3501, 7.35, 7.3506, 7.3502, 7.3508, 7.3514, 7.3511, 7.351, 7.3516, 7.3515, 7.3512, 7.3518, 7.3516, 7.3522, 7.3521, 7.3518, 7.3524, 7.3521, 7.3518, 7.3516, 7.3522, 7.3519, 7.3525, 7.3522, 7.3528, 7.3525, 7.3522, 7.3528, 7.3525, 7.3534, 7.3531, 7.3538, 7.3538, 7.3534, 7.354, 7.3546, 7.3537, 7.3526, 7.3536, 7.3533, 7.353, 7.3527, 7.3524, 7.353, 7.3527, 7.3523, 7.352, 7.3517, 7.3514, 7.3511, 7.3509, 7.3506, 7.3506, 7.3504, 7.351, 7.3507, 7.3505, 7.3503, 7.35, 7.3497, 7.3496, 7.3493, 7.3499, 7.3496, 7.3548, 7.3554, 7.356, 7.3558, 7.3556, 7.3553, 7.356, 7.3557, 7.3554, 7.3561, 7.3558, 7.3555, 7.3553, 7.3559, 7.3556, 7.3562, 7.3563, 7.356, 7.3557, 7.3554, 7.356, 7.3557, 7.3563, 7.3561, 7.355, 7.3547, 7.3544, 7.3541, 7.3538, 7.3544, 7.3541, 7.354, 7.3538, 7.3536, 7.3533, 7.353, 7.3528, 7.3525, 7.3522, 7.3532, 7.3538, 7.3544, 7.3541, 7.3542, 7.3548, 7.3546, 7.3548, 7.3545, 7.3542, 7.354, 7.3537, 7.3534, 7.3539, 7.3538, 7.3536, 7.3534, 7.3531, 7.3537, 7.3534, 7.3531, 7.3528, 7.353, 7.3527, 7.3524, 7.3513, 7.3521, 7.3554, 7.3551, 7.3549, 7.3547, 7.3544, 7.3549, 7.3546, 7.3543, 7.354, 7.3549, 7.3546, 7.3552, 7.3549, 7.3555, 7.356, 7.3557, 7.3555, 7.3552, 7.355, 7.3547, 7.3559, 7.3558, 7.3565, 7.359, 7.3588, 7.3585, 7.3582, 7.3589, 7.3578, 7.3575, 7.3572, 7.3577, 7.3582, 7.3579, 7.3576, 7.3573, 7.3582, 7.358, 7.3586, 7.3592, 7.3589, 7.3586, 7.3584, 7.3591, 7.3589, 7.3587, 7.3576, 7.3586, 7.3583, 7.3589, 7.3586, 7.3583, 7.358, 7.358, 7.3577, 7.3583, 7.3588, 7.3587, 7.3584, 7.3581, 7.3578, 7.3575, 7.3572, 7.3571, 7.3568, 7.3565, 7.3571, 7.356, 7.3571, 7.3577, 7.3584, 7.3581, 7.3578, 7.3584, 7.359, 7.3588, 7.3593, 7.3599, 7.3596, 7.3594, 7.3591, 7.3588, 7.3585, 7.3574, 7.358, 7.3586, 7.3583, 7.358, 7.3577, 7.3574, 7.3571, 7.3568, 7.3568, 7.3568, 7.3567, 7.3574, 7.358, 7.3586, 7.3592, 7.3589, 7.3586, 7.3584, 7.3581, 7.3589, 7.3597, 7.3595, 7.3593, 7.3591, 7.3588, 7.3587, 7.3585, 7.3583, 7.3589, 7.3586, 7.3583, 7.358, 7.3577, 7.3575, 7.3573, 7.3597, 7.3629, 7.3635, 7.3717, 7.3716, 7.3722, 7.3711, 7.3708, 7.3705, 7.3702, 7.3707, 7.3705, 7.3738, 7.3736, 7.3742, 7.374, 7.3747, 7.3744, 7.375, 7.3747, 7.3745, 7.3765, 7.3763, 7.3763, 7.377, 7.3776, 7.3773, 7.3788, 7.3786, 7.3792, 7.3789, 7.3787, 7.3788, 7.3785, 7.3809, 7.3806, 7.3803, 7.3808, 7.3813, 7.3819, 7.3825, 7.3823, 7.382, 7.3818, 7.3815, 7.3813, 7.3818, 7.3823, 7.382, 7.3825, 7.3831, 7.3828, 7.3825, 7.3822, 7.3819, 7.3816, 7.3822, 7.3819, 7.3825, 7.3822, 7.3819, 7.3825, 7.3822, 7.3819, 7.3816, 7.3821, 7.3818, 7.3815, 7.3812, 7.3809, 7.3814, 7.3811, 7.3808, 7.3805, 7.3802, 7.3799, 7.3804, 7.3801, 7.3799, 7.3796, 7.3802, 7.3799, 7.3797, 7.3787, 7.3776, 7.3773, 7.377, 7.3767, 7.3772, 7.377, 7.3768, 7.3785, 7.3784, 7.3781, 7.3781, 7.3779, 7.3776, 7.3773, 7.377, 7.3768, 7.3765, 7.3763, 7.376, 7.3757, 7.3754, 7.3752, 7.3749, 7.3746, 7.3743, 7.374, 7.3737, 7.3734, 7.3731, 7.3729, 7.3726, 7.3731, 7.3736, 7.3733, 7.373, 7.3727, 7.3724, 7.3721, 7.3725, 7.3722, 7.3719, 7.3708, 7.3722, 7.3719, 7.3716, 7.3714, 7.3711, 7.3708, 7.3705, 7.371, 7.3707, 7.3704, 7.3701, 7.3699, 7.3697, 7.3695, 7.3692, 7.3689, 7.3686, 7.3683, 7.3681, 7.3679, 7.3676, 7.3689, 7.3686, 7.3684, 7.3689, 7.3686, 7.3686, 7.3691, 7.3689, 7.3686, 7.3691, 7.3689, 7.3686, 7.3683, 7.3683, 7.3681, 7.3687, 7.3684, 7.3681, 7.3678, 7.3684, 7.3681, 7.3679, 7.3677, 7.3675, 7.3681, 7.3679, 7.3669, 7.3666, 7.3663, 7.366, 7.3657, 7.3654, 7.3651, 7.3648, 7.3646, 7.3643, 7.364, 7.3637, 7.3634, 7.3633, 7.3631, 7.3637, 7.3635, 7.364, 7.3646, 7.3652, 7.365, 7.3656, 7.3655, 7.3655, 7.3653, 7.365, 7.3647, 7.3648, 7.3646, 7.3644, 7.3641, 7.3639, 7.3637, 7.3643, 7.364, 7.3637, 7.3634, 7.3639, 7.3636, 7.3634, 7.3631, 7.3632, 7.363, 7.3627, 7.3624, 7.3645, 7.365, 7.3647, 7.3644, 7.3641, 7.3639, 7.3646, 7.3646, 7.3643, 7.3648, 7.3646, 7.3651, 7.3648, 7.3646, 7.3643, 7.3649, 7.3654, 7.3651, 7.3656, 7.3653, 7.365, 7.3649, 7.3647, 7.3644, 7.3642, 7.3647, 7.3644, 7.3656, 7.3661, 7.3658, 7.3655, 7.3649, 7.3639, 7.3652, 7.3657, 7.3663, 7.3661, 7.3658, 7.3664, 7.3661, 7.3667, 7.3664, 7.3669, 7.3674, 7.3681, 7.3686, 7.3692, 7.3689, 7.3686, 7.3683, 7.368, 7.3677, 7.3683, 7.3688, 7.3686, 7.3699, 7.3704, 7.3701, 7.3701, 7.3715, 7.3737, 7.3734, 7.3739, 7.3729, 7.3726, 7.3731, 7.3728, 7.3725, 7.3723, 7.3721, 7.3743, 7.374, 7.3737, 7.3784, 7.3789, 7.3794, 7.3791, 7.3796, 7.3793, 7.3791, 7.3781, 7.3778, 7.3775, 7.378, 7.3777, 7.3782, 7.3779, 7.3785, 7.3782, 7.378, 7.3777, 7.3774, 7.3771, 7.3771, 7.377, 7.3767, 7.3758, 7.3763, 7.3774, 7.3772, 7.3769, 7.3766, 7.3772, 7.3777, 7.3774, 7.3771, 7.3777, 7.3782, 7.3787, 7.3784, 7.3781, 7.3782, 7.3779, 7.3776, 7.3773, 7.3778, 7.3779, 7.3784, 7.3789, 7.3795, 7.3792, 7.3797, 7.3802, 7.3791, 7.3796, 7.3793, 7.379, 7.3795, 7.3784, 7.3774, 7.3788, 7.3785, 7.3782, 7.378, 7.3785, 7.3782, 7.3787, 7.3793, 7.3798, 7.3803, 7.38, 7.3797, 7.3802, 7.3799, 7.3789, 7.3794, 7.3791, 7.3788, 7.3794, 7.3792, 7.3789, 7.3787, 7.3792, 7.3789, 7.3786, 7.3783, 7.3788, 7.3793, 7.379, 7.3787, 7.3784, 7.3781, 7.3779, 7.3776, 7.3773, 7.377, 7.3767, 7.3764, 7.3762, 7.3767, 7.3764, 7.3769, 7.3767, 7.3764, 7.3761, 7.3759, 7.3756, 7.3753, 7.3751, 7.3749, 7.3754, 7.3759, 7.3756, 7.3753, 7.375, 7.3748, 7.3745, 7.3742, 7.3739, 7.3737, 7.3734, 7.3731, 7.3729, 7.3735, 7.3732, 7.3738, 7.3736, 7.3733, 7.3738, 7.3744, 7.3741, 7.3738, 7.3736, 7.3734, 7.3731, 7.3736, 7.3733, 7.3733, 7.3731, 7.3729, 7.3726, 7.3726, 7.3726, 7.3724, 7.373, 7.3739, 7.3745, 7.3743, 7.3742, 7.374, 7.3738, 7.3743, 7.3744, 7.3748, 7.3754, 7.3752, 7.3751, 7.3758, 7.3763, 7.3761, 7.3758, 7.3756, 7.3765, 7.3762, 7.3759, 7.3756, 7.3755, 7.3752, 7.375, 7.3772, 7.377, 7.3767, 7.3765, 7.3762, 7.3767, 7.3759, 7.3757, 7.3755, 7.3753, 7.3754, 7.3774, 7.3772, 7.3769, 7.3766, 7.3771, 7.3768, 7.3773, 7.3771, 7.3784, 7.3806, 7.3803, 7.3808, 7.3821, 7.3818, 7.3815, 7.3813, 7.3803, 7.38, 7.3797, 7.3794, 7.38, 7.3797, 7.3794, 7.3801, 7.3806, 7.3803, 7.3816, 7.3821, 7.3828, 7.3833, 7.3863, 7.3868, 7.3866, 7.3864, 7.3876, 7.3874, 7.3879, 7.3876, 7.3868, 7.3866, 7.3863, 7.386, 7.3868, 7.3873, 7.3902, 7.39, 7.3904, 7.3909, 7.3914, 7.3912, 7.391, 7.3915, 7.3913, 7.3911, 7.3908, 7.3905, 7.3902, 7.3899, 7.3896, 7.3902, 7.3907, 7.3904, 7.3901, 7.39, 7.3897, 7.3903, 7.3908, 7.3905, 7.3902, 7.394, 7.393, 7.3927, 7.3925, 7.393, 7.3943, 7.394, 7.3937, 7.3934, 7.3934, 7.3931, 7.3944, 7.3952, 7.3957, 7.3954, 7.3952, 7.3958, 7.395, 7.3947, 7.3947, 7.396, 7.3965, 7.3962, 7.3959, 7.3956, 7.3961, 7.3959, 7.3956, 7.3954, 7.3951, 7.3949, 7.3947, 7.3969, 7.3969, 7.3982, 7.3979, 7.3983, 7.3981, 7.3978, 7.397, 7.3967, 7.3964, 7.3961, 7.3959, 7.3956, 7.3954, 7.3959, 7.3956, 7.3953, 7.395, 7.3947, 7.3945, 7.3942, 7.3947, 7.3952, 7.3957, 7.3962, 7.396, 7.395, 7.3948, 7.3948, 7.3945, 7.3942, 7.3947, 7.3937, 7.3934, 7.3939, 7.3936, 7.3934, 7.3939, 7.3936, 7.3933, 7.3939, 7.3936, 7.3934, 7.3935, 7.3935, 7.3932, 7.3932, 7.3929, 7.3927, 7.3932, 7.3931, 7.3928, 7.3933, 7.3931, 7.3937, 7.3934, 7.3932, 7.393, 7.3928, 7.3925, 7.393, 7.3935, 7.394, 7.3938, 7.3943, 7.3942, 7.394, 7.3954, 7.3959, 7.3957, 7.3981, 7.3979, 7.3976, 7.3975, 7.3972, 7.397, 7.3975, 7.3988, 7.3986, 7.3983, 7.3981, 7.3979, 7.3976, 7.3975, 7.3973, 7.397, 7.3968, 7.3965, 7.397, 7.3967, 7.3972, 7.397, 7.3968, 7.3965, 7.3963, 7.396, 7.3958, 7.3955, 7.3954, 7.3952, 7.3957, 7.3962, 7.396, 7.3958, 7.3956, 7.3954, 7.3951, 7.3948, 7.3945, 7.395, 7.3948, 7.3945], '192.168.122.118': [5.2519, 5.612, 5.6834, 5.6276, 6.6697, 6.4454, 6.2746, 6.1606, 6.0736, 6.1624, 6.12, 6.063, 6.0678, 6.0353, 6.0231, 6.3542, 6.3076, 6.2717, 6.249, 6.5253, 6.4792, 6.4559, 6.4237, 6.4406, 6.4303, 6.3877, 6.3792, 6.3985, 6.3845, 6.3496, 6.3267, 6.2985, 6.2734, 6.2513, 6.2283, 6.3593, 6.3308, 6.3062, 6.2801, 6.258, 6.1425, 6.2555, 6.2447, 6.2489, 6.3518, 6.4483, 6.4219, 6.5144, 6.4942, 6.4707, 6.4548, 6.4341, 6.4147, 6.3962, 6.4831, 6.376, 6.4554, 6.4353, 6.418, 6.4051, 6.3902, 6.3724, 6.3656, 6.3685, 6.3706, 6.361, 6.3509, 6.3456, 6.3314, 6.4278, 6.4126, 6.4724, 6.4698, 6.4662, 6.4591, 6.4516, 6.4377, 6.4317, 6.4296, 6.5267, 6.5368, 6.6626, 6.6862, 6.6832, 6.6707, 6.6587, 6.6659, 6.6545, 6.6425, 6.6354, 6.631, 6.6812, 6.6778, 6.6669, 6.6066, 6.6515, 6.5925, 6.5818, 6.5732, 6.5609, 6.557, 6.5507, 6.542, 6.7504, 6.7424, 6.7364, 6.7227, 6.7206, 6.7133, 6.7003, 6.6936, 6.6865, 6.674, 6.6677, 6.7048, 6.6955, 6.6845, 6.6739, 6.621, 6.6843, 6.698, 6.6877, 6.6772, 6.6669, 6.6723, 6.7066, 6.7017, 6.7077, 6.6997, 6.6925, 6.7321, 6.7244, 6.7157, 6.7875, 6.7763, 6.7662, 6.7574, 6.7675, 6.7676, 6.825, 6.8198, 6.8135, 6.884, 6.8755, 6.8651, 6.8545, 6.8917, 6.9184, 6.9194, 6.9127, 6.8717, 6.8695, 6.8615, 6.8542, 6.8586, 6.8527, 6.8772, 6.8782000000000005, 6.8703, 6.871300000000001, 6.8701, 6.8638, 6.8549, 6.8477, 6.8395, 6.8352, 6.8262, 6.8209, 6.7843, 6.7769, 6.7697, 6.7657, 6.7599, 6.7542, 6.7532, 6.751, 6.7765, 6.772, 6.769, 6.7619, 6.758, 6.7505, 6.7732, 6.7685, 6.7608, 6.7866, 6.7805, 6.7725, 6.7939, 6.8152, 6.8102, 6.8312, 6.8526, 6.8453, 6.8384, 6.8394, 6.8328, 6.8253, 6.832, 6.833, 6.8265, 6.8477, 6.8452, 6.8388, 6.8339, 6.8536, 6.8476, 6.8683, 6.8664, 6.8638, 6.8611, 6.862100000000001, 6.8875, 6.9074, 6.9006, 6.8969, 6.9185, 6.9119, 6.905, 6.8777, 6.871, 6.8661, 6.8631, 6.8584, 6.8594, 6.8567, 6.8501, 6.8448, 6.8177, 6.8141, 6.8086, 6.8515, 6.8449, 6.8835, 6.8794, 6.8734, 6.891, 6.9414, 6.9858, 7.0232, 7.0199, 7.0135, 7.007, 6.9804, 6.9944, 7.0102, 7.0037, 7.0176, 7.0333, 7.0265, 7.0253, 7.0189, 7.0249, 7.0211, 6.9963, 6.9912, 6.9852, 6.9813, 6.9965, 7.0739, 7.0723, 7.0659, 7.0634, 7.0578, 7.0926, 7.088, 7.0966, 7.0911, 7.1074, 7.1028, 7.0999, 7.0944, 7.0752, 7.0731, 7.0876, 7.103, 7.0973, 7.0933, 7.1089, 7.1032, 7.0978, 7.0924, 7.1253, 7.1196, 7.1144, 7.1094, 7.1219, 7.1202, 7.1152, 7.1109, 7.1047, 7.1007, 7.113, 7.1299, 7.1313, 7.1255, 7.1411, 7.1349, 7.1312, 7.1263, 7.1637, 7.1589, 7.1546, 7.1494, 7.1636, 7.1588, 7.1529, 7.1318, 7.1257, 7.1385, 7.134, 7.1302, 7.1255, 7.1209, 7.1342, 7.1302, 7.1433, 7.1553, 7.1498, 7.1451, 7.1404, 7.136, 7.1316, 7.1428, 7.1383, 7.1347, 7.1507, 7.151, 7.1637, 7.1756, 7.1712, 7.2009, 7.198, 7.1927, 7.1808, 7.1927, 7.1952, 7.2059, 7.2169, 7.2123, 7.2093, 7.2044, 7.2147, 7.2103, 7.2052, 7.2159, 7.2113, 7.2843, 7.2809, 7.3501, 7.3607, 7.3567, 7.3517, 7.3466, 7.3571, 7.3518, 7.3622, 7.3722, 7.3666, 7.3635, 7.36, 7.3541, 7.3488, 7.3459, 7.3406, 7.3358, 7.3343, 7.3325, 7.3291, 7.3264, 7.3212, 7.3203, 7.3152, 7.3119, 7.3067, 7.3042, 7.2992, 7.309, 7.3057, 7.4002, 7.4091, 7.407, 7.4019, 7.3969, 7.4344, 7.4451, 7.454, 7.4644, 7.4735, 7.4687, 7.4663, 7.4667, 7.4888, 7.5101, 7.506, 7.5006, 7.497, 7.4921, 7.4868, 7.4829, 7.4777, 7.473, 7.4679, 7.4686, 7.4633, 7.459, 7.4544, 7.4528, 7.4474, 7.4436, 7.4389, 7.4418, 7.4498, 7.4478, 7.4452, 7.4461, 7.4763, 7.4721, 7.4808, 7.488, 7.4723, 7.4946, 7.4895, 7.4854, 7.4814, 7.4763, 7.4843, 7.4932, 7.4883, 7.4957, 7.4918, 7.4873, 7.4824, 7.4775, 7.4728, 7.4805, 7.4879, 7.4844, 7.4911, 7.4998, 7.5435, 7.5386, 7.546, 7.5412, 7.5363, 7.5313, 7.5264, 7.522, 7.5169, 7.5121, 7.5193, 7.5152, 7.5103, 7.4949, 7.4905, 7.4942, 7.4906, 7.486, 7.4812, 7.4791, 7.4767, 7.4719, 7.4684, 7.4644, 7.4646, 7.4604, 7.456, 7.4628, 7.4585, 7.4574, 7.4541, 7.4531, 7.4504, 7.4518, 7.4471, 7.4462, 7.4663, 7.4643, 7.4599, 7.4483, 7.4447, 7.4639, 7.4637, 7.4596, 7.4566, 7.4522, 7.4489, 7.437, 7.4411, 7.4365, 7.4325, 7.4282, 7.4236, 7.4206, 7.4163, 7.4234, 7.4196, 7.4168, 7.4128, 7.4238, 7.4209, 7.4218, 7.4184, 7.4141, 7.411, 7.4076, 7.4043, 7.4002, 7.407, 7.4031, 7.399, 7.3948, 7.3921, 7.3984, 7.3953, 7.4305, 7.4271, 7.4343, 7.4307, 7.4268, 7.4241, 7.4212, 7.4178, 7.4048, 7.4044, 7.402, 7.4002, 7.4061, 7.4034, 7.4015, 7.3986, 7.3973, 7.3952, 7.3927, 7.3888, 7.395, 7.4076, 7.4041, 7.3915, 7.3973, 7.3942, 7.3923, 7.4662, 7.4624, 7.4827, 7.4799, 7.4762, 7.4823, 7.4795, 7.4862, 7.4834, 7.4897, 7.4952, 7.4929, 7.4891, 7.487, 7.4841, 7.4905, 7.4962, 7.5111, 7.4986, 7.5002, 7.5297, 7.5314, 7.519, 7.5156, 7.5233, 7.5372, 7.5353, 7.5317, 7.528, 7.5258, 7.5226, 7.5204, 7.5261, 7.5322, 7.5282, 7.5341, 7.5307, 7.5268, 7.5331, 7.532, 7.5287, 7.5261, 7.5325, 7.5746, 7.58, 7.5851, 7.5816, 7.5957, 7.5837, 7.5741, 7.5891, 7.5862, 7.592, 7.5888, 7.5948, 7.5997, 7.598, 7.6076, 7.6126, 7.6281, 7.6252, 7.6227, 7.6501, 7.6467, 7.6432, 7.6415, 7.6379, 7.6346, 7.6314, 7.6374, 7.6432, 7.6406, 7.6459, 7.6421, 7.6392, 7.6356, 7.6242, 7.6214, 7.6264, 7.6323, 7.6296, 7.6349, 7.6312, 7.6321, 7.6378, 7.6348, 7.6328, 7.6295, 7.6262, 7.6314, 7.6279, 7.6329, 7.6381, 7.6344, 7.6394, 7.6445, 7.6408, 7.647, 7.6436, 7.6405, 7.6374, 7.6347, 7.6315, 7.6285, 7.6261, 7.6234, 7.6297, 7.6273, 7.6247, 7.6294, 7.626, 7.631, 7.6275, 7.6256, 7.6223, 7.6197, 7.6243, 7.6288, 7.6334, 7.6319, 7.6284, 7.6249, 7.6227, 7.6195, 7.6199, 7.6164, 7.6141, 7.6108, 7.6003, 7.5977, 7.5952, 7.6006, 7.6005, 7.6055, 7.603, 7.5996, 7.6057, 7.6039, 7.61, 7.607, 7.6042, 7.6009, 7.5988, 7.5982, 7.5954, 7.6009, 7.5983, 7.6035, 7.6006, 7.5997, 7.5971, 7.6026, 7.6006, 7.5978, 7.5945, 7.5916, 7.5882, 7.5858, 7.5827, 7.5795, 7.5793, 7.5839, 7.5807, 7.5778, 7.5746, 7.5652, 7.562, 7.5591, 7.556, 7.5604, 7.5648, 7.5624, 7.5593, 7.568, 7.5728, 7.5636, 7.5609, 7.5585, 7.5562, 7.5536, 7.5512, 7.5539, 7.5513, 7.5486, 7.5496, 7.547, 7.5473, 7.5445, 7.5416, 7.5391, 7.5365, 7.5351, 7.5332, 7.53, 7.5274, 7.5249, 7.5237, 7.5206, 7.5201, 7.5171, 7.5146, 7.5116, 7.5087, 7.5057, 7.5032, 7.5008, 7.4978, 7.4963, 7.4933, 7.4904, 7.4879, 7.485, 7.4907, 7.4911, 7.4883, 7.4863, 7.4772, 7.4749, 7.4727, 7.4704, 7.4748, 7.4727, 7.4713, 7.4685, 7.4662, 7.4634, 7.4678, 7.4653, 7.4637, 7.461, 7.4653, 7.4626, 7.46, 7.4599, 7.4643, 7.4681, 7.4724, 7.4763, 7.4738, 7.4917, 7.489, 7.4804, 7.4778, 7.4763, 7.4743, 7.4719, 7.4693, 7.4671, 7.4645, 7.4691, 7.4668, 7.4707, 7.4685, 7.4727, 7.4708, 7.4759, 7.4734, 7.474, 7.4721, 7.4694, 7.4667, 7.465, 7.4624, 7.4613, 7.4587, 7.4567, 7.4546, 7.4625, 7.46, 7.4588, 7.4564, 7.4545, 7.4604, 7.4656, 7.4589, 7.4596, 7.4572, 7.4553, 7.4531, 7.4509, 7.4484, 7.453, 7.4507, 7.4553, 7.4529, 7.4514, 7.4557, 7.4536, 7.4515, 7.4489, 7.4464, 7.4439, 7.4413, 7.4389, 7.4369, 7.4346, 7.4329, 7.4304, 7.4281, 7.4256, 7.4299, 7.4275, 7.4197, 7.4178, 7.4161, 7.4137, 7.4111, 7.409, 7.4067, 7.4046, 7.4027, 7.4069, 7.3989, 7.3965, 7.4005, 7.3989, 7.3972, 7.3949, 7.3924, 7.3908, 7.39, 7.3878, 7.3854, 7.3837, 7.3879, 7.3856, 7.3895, 7.3871, 7.3854, 7.3842, 7.3818, 7.3858, 7.3845, 7.3822, 7.3809, 7.3786, 7.3849, 7.3827, 7.3886, 7.3869, 7.387, 7.3862, 7.3841, 7.3823, 7.3805, 7.3793, 7.3771, 7.3759, 7.3737, 7.3733, 7.372, 7.3699, 7.3676, 7.3664, 7.3649, 7.3686, 7.3668, 7.3646, 7.3626, 7.3608, 7.359, 7.3572, 7.3609, 7.365, 7.3628, 7.361, 7.3592, 7.3637, 7.3689, 7.3671, 7.371, 7.3688, 7.3669, 7.3702, 7.3737, 7.3716, 7.3754, 7.3737, 7.3774, 7.3813, 7.3794, 7.3776, 7.3811, 7.3849, 7.3833, 7.3813, 7.3888, 7.3923, 7.3903, 7.3882, 7.3995, 7.3974, 7.3953, 7.3934, 7.4203, 7.4182, 7.4215, 7.4201, 7.4237, 7.4273, 7.4257, 7.4293, 7.4276, 7.4313, 7.4346, 7.4382, 7.4367, 7.4344, 7.4322, 7.4253, 7.4237, 7.4277, 7.4316, 7.4354, 7.4389, 7.4376, 7.4364, 7.4414, 7.4396, 7.4376, 7.4354, 7.4335, 7.4319, 7.4296, 7.4333, 7.4367, 7.44, 7.4377, 7.4361, 7.434, 7.4326, 7.4364, 7.4343, 7.432, 7.4303, 7.4289, 7.4322, 7.4251, 7.4286, 7.4216, 7.4195, 7.4174, 7.4155, 7.4189, 7.4169, 7.4205, 7.4184, 7.4216, 7.4252, 7.4289, 7.4324, 7.4304, 7.4337, 7.4318, 7.4353, 7.4333, 7.4313, 7.4349, 7.4501, 7.4481, 7.4464, 7.4498, 7.4482, 7.4517, 7.4495, 7.4536, 7.4518, 7.4497, 7.4476, 7.4455, 7.4434, 7.4421, 7.4399, 7.438, 7.4368, 7.4347, 7.4336, 7.4368, 7.4405, 7.4393, 7.4425, 7.4407, 7.4389, 7.4369, 7.4308, 7.4296, 7.4278, 7.4312, 7.4292, 7.4325, 7.432, 7.4349, 7.4335, 7.4368, 7.4358, 7.4346, 7.4328, 7.4309, 7.4293, 7.4274, 7.4305, 7.4337, 7.4322, 7.431, 7.4291, 7.4319, 7.4298, 7.4331, 7.4435, 7.4511, 7.4545, 7.453, 7.4561, 7.4544, 7.4735, 7.4717, 7.4696, 7.4682, 7.472, 7.4757, 7.4742, 7.4774, 7.4856, 7.4847, 7.4829, 7.4828, 7.482, 7.4805, 7.4785, 7.4764, 7.4794, 7.4741, 7.4776, 7.4806, 7.4836, 7.4815, 7.4794, 7.4823, 7.4803, 7.4782, 7.4762, 7.4741, 7.4726, 7.4706, 7.47, 7.4685, 7.467, 7.4657, 7.4642, 7.4626, 7.461, 7.459, 7.4575, 7.4556, 7.4538, 7.4518, 7.4499, 7.448, 7.442, 7.4402, 7.4384, 7.4411, 7.444, 7.4469, 7.4453, 7.4433, 7.4414, 7.4398, 7.4384, 7.438, 7.4361, 7.4455, 7.444, 7.4476, 7.4463, 7.445, 7.4482, 7.4621, 7.4605, 7.4639, 7.4668, 7.4655, 7.4651, 7.464, 7.4624, 7.4654, 7.4635, 7.4624, 7.4606, 7.4589, 7.4572, 7.4603, 7.4587, 7.462, 7.4652, 7.4633, 7.4663, 7.4646, 7.4585, 7.4574, 7.4604, 7.4587, 7.4571, 7.4564, 7.4549, 7.4577, 7.4608, 7.4589, 7.4581, 7.4564, 7.4682, 7.4699, 7.4699, 7.4743, 7.4745, 7.4744, 7.4727, 7.4759, 7.4744, 7.473, 7.4813, 7.4798, 7.4829, 7.4861, 7.489, 7.4876, 7.4861, 7.4893, 7.4874, 7.486, 7.4841, 7.4865, 7.4897, 7.4882, 7.4867, 7.4853, 7.4839, 7.4825, 7.4854, 7.4845, 7.4831, 7.4817, 7.4804, 7.4833, 7.4905, 7.4935, 7.492, 7.4906, 7.5113, 7.5139, 7.5125, 7.5115, 7.514, 7.5121, 7.5112, 7.5093, 7.5118, 7.5149, 7.5133, 7.5119, 7.5105, 7.5091, 7.5078, 7.5062, 7.5091, 7.5116, 7.51, 7.5086, 7.5114, 7.5141, 7.5124, 7.5111, 7.5138, 7.512, 7.5104, 7.5103, 7.5085, 7.5113, 7.5115, 7.5097, 7.5083, 7.5074, 7.5056, 7.5045, 7.5056, 7.5041, 7.5069, 7.5058, 7.5089, 7.5076, 7.5059, 7.5137, 7.5119, 7.5102, 7.5087, 7.511, 7.5104, 7.5092, 7.508, 7.5068, 7.5053, 7.5036, 7.5126, 7.5153, 7.5137, 7.5191, 7.5223, 7.5222, 7.5249, 7.5279, 7.5272, 7.5254, 7.5238, 7.5265, 7.5296, 7.5279, 7.5302, 7.5286, 7.5273, 7.526, 7.5247, 7.5233, 7.5224, 7.5247, 7.5236, 7.5345, 7.5405, 7.5349, 7.535, 7.5366, 7.5373, 7.5359, 7.5355, 7.5345, 7.5331, 7.5313, 7.5295, 7.5279, 7.5283, 7.5269, 7.5215, 7.5241, 7.5227, 7.5214, 7.5198, 7.518, 7.5247, 7.5231, 7.5257, 7.5241, 7.5226, 7.5254, 7.5237, 7.5306, 7.5335, 7.532, 7.5269, 7.5254, 7.5242, 7.5228, 7.5211, 7.5239, 7.5222, 7.5207, 7.5201, 7.5227, 7.5219, 7.5203, 7.5229, 7.5252, 7.5235, 7.5218, 7.5243, 7.5265, 7.5253, 7.5241, 7.5271, 7.5265, 7.5249, 7.5256, 7.5242, 7.531, 7.5296, 7.528, 7.5303, 7.526, 7.5263, 7.5293, 7.5324, 7.5307, 7.5303, 7.5288, 7.5272, 7.5259, 7.5248, 7.5204, 7.5187, 7.5179, 7.5166, 7.5154, 7.5142, 7.5125, 7.5108, 7.5099, 7.5131, 7.5158, 7.5142, 7.5138, 7.5168, 7.5151, 7.5173, 7.5199, 7.5187, 7.5176, 7.5161, 7.5148, 7.5178, 7.5167, 7.519, 7.5176, 7.5201, 7.5249, 7.5234, 7.5223, 7.5207, 7.5259, 7.5248, 7.5201, 7.5226, 7.5217, 7.5204, 7.5187, 7.517, 7.5158, 7.5142, 7.5132, 7.5125, 7.5112, 7.5063, 7.5048, 7.5034, 7.5018, 7.5003, 7.4989, 7.4978, 7.4969, 7.4954, 7.494, 7.4929, 7.4913, 7.4898, 7.4886, 7.487, 7.4855, 7.4886, 7.4872, 7.4897, 7.4917, 7.4903, 7.4927, 7.4949, 7.4933, 7.4921, 7.4906, 7.493, 7.4951, 7.4935, 7.4925, 7.4951, 7.4935, 7.4924, 7.4915, 7.4902, 7.4901, 7.4885, 7.4875, 7.4861, 7.4846, 7.4834, 7.4818, 7.4803, 7.4788, 7.4773, 7.476, 7.4747, 7.4734, 7.4723, 7.4748, 7.4699, 7.4719, 7.4704, 7.4695, 7.4682, 7.4668, 7.4657, 7.4682, 7.4704, 7.4691, 7.4715, 7.4702, 7.4728, 7.4714, 7.47, 7.4653, 7.4673, 7.4676, 7.4674, 7.4663, 7.465, 7.4641, 7.4708, 7.4728, 7.4752, 7.4775, 7.4765, 7.4753, 7.474, 7.4831, 7.4784, 7.4769, 7.4757, 7.4744, 7.473, 7.4717, 7.4703, 7.4688, 7.4675, 7.4662, 7.4686, 7.4674, 7.466, 7.4684, 7.4712, 7.4737, 7.4724, 7.4711, 7.4697, 7.4684, 7.467, 7.4659, 7.4621, 7.4645, 7.4633, 7.4621, 7.465, 7.4639, 7.4625, 7.465, 7.464, 7.4635, 7.4655, 7.4644, 7.463, 7.4659, 7.4648, 7.467, 7.4663, 7.4651, 7.4638, 7.466, 7.472, 7.471, 7.4696, 7.4681, 7.4666, 7.4658, 7.4652, 7.4642, 7.4629, 7.4621, 7.4607, 7.4597, 7.4585, 7.4571, 7.4558, 7.4579, 7.4565, 7.4552, 7.4542, 7.4551, 7.4538, 7.4523, 7.451, 7.4507, 7.4499, 7.4453, 7.4444, 7.4431, 7.4418, 7.4404, 7.4425, 7.4411, 7.444, 7.4463, 7.4487, 7.4509, 7.45, 7.4455, 7.4442, 7.4429, 7.4418, 7.4404, 7.4393, 7.4387, 7.4374, 7.436, 7.4346, 7.437, 7.4356, 7.4348, 7.4387, 7.4376, 7.4367, 7.4372, 7.4336, 7.4328, 7.4319, 7.4307, 7.433, 7.4354, 7.4373, 7.4361, 7.4418, 7.4405, 7.4395, 7.4387, 7.4374, 7.4362, 7.4385, 7.4475, 7.4462, 7.4453, 7.4443, 7.4432, 7.4441, 7.4428, 7.4416, 7.4404, 7.4394, 7.4418, 7.4408, 7.4434, 7.4423, 7.4445, 7.4432, 7.4426, 7.4446, 7.4542, 7.4566, 7.4554, 7.4574, 7.4595, 7.465, 7.467, 7.4659, 7.4654, 7.4644, 7.4634, 7.463, 7.4653, 7.4642, 7.4628, 7.4618, 7.4645, 7.4631, 7.4654, 7.4679, 7.4674, 7.4681, 7.467, 7.4657, 7.4648, 7.464, 7.4627, 7.465, 7.4636, 7.4622, 7.461, 7.4599, 7.4588, 7.464, 7.4633, 7.4658, 7.4648, 7.464, 7.463, 7.4621, 7.4612, 7.4634, 7.4656, 7.4647, 7.4668, 7.4734, 7.476, 7.4748, 7.4716, 7.4705, 7.4693, 7.4693, 7.4681, 7.4744, 7.4736, 7.4724, 7.4746, 7.4739, 7.4728, 7.4686, 7.4711, 7.4699, 7.4657, 7.4646, 7.4636, 7.4675, 7.4694, 7.4776, 7.4768, 7.4788, 7.4776, 7.4764, 7.4751, 7.4742, 7.473, 7.4752, 7.474, 7.4732, 7.4724, 7.4714, 7.4701, 7.4703, 7.4693, 7.4686, 7.4674, 7.4694, 7.475, 7.4737, 7.4756, 7.4747, 7.477, 7.4757, 7.4745, 7.4733, 7.4725, 7.4717, 7.4704, 7.4695, 7.4716, 7.4736, 7.4725, 7.4716, 7.4707, 7.4698, 7.4689, 7.4736, 7.4723, 7.4711, 7.47, 7.4687, 7.4676, 7.4668, 7.4688, 7.4678, 7.4665, 7.4657, 7.468, 7.4702, 7.4691, 7.4713, 7.4736, 7.4727, 7.4717, 7.4705, 7.4694, 7.4686, 7.4705, 7.4693, 7.4683, 7.4671, 7.4691, 7.4711, 7.4731, 7.4751, 7.474, 7.4728, 7.4719, 7.477, 7.4761, 7.4723, 7.4713, 7.4735, 7.4724, 7.4748, 7.4737, 7.4726, 7.4747, 7.4739, 7.4728, 7.4796, 7.4784, 7.4805, 7.4824, 7.4813, 7.4805, 7.4795, 7.4789, 7.4779, 7.4807, 7.486, 7.4908, 7.4895, 7.4915, 7.4932, 7.4921, 7.4912, 7.4932, 7.4921, 7.4953, 7.4941, 7.493, 7.4986, 7.4976, 7.4965, 7.4957, 7.4949, 7.4937, 7.4925, 7.4918, 7.4907, 7.4896, 7.4884, 7.4875, 7.4869, 7.4857, 7.4846, 7.4835, 7.4825, 7.4812, 7.4801, 7.4789, 7.4777, 7.4738, 7.4758, 7.4746, 7.4765, 7.4814, 7.4834, 7.4824, 7.4813, 7.4804, 7.4793, 7.4781, 7.48, 7.4819, 7.4836, 7.4826, 7.4814, 7.4832, 7.4853, 7.4843, 7.487, 7.4859, 7.4849, 7.4838, 7.4829, 7.4848, 7.4867, 7.4858, 7.4856, 7.4846, 7.4925, 7.4916, 7.4909, 7.4899, 7.4861, 7.4853, 7.4845, 7.4834, 7.4855, 7.4874, 7.489, 7.488, 7.487, 7.4887, 7.4882, 7.4872, 7.486, 7.488, 7.4872, 7.486, 7.4878, 7.4873, 7.4864, 7.4882, 7.4871, 7.486, 7.4849, 7.4841, 7.4833, 7.4822, 7.4816, 7.4805, 7.4794, 7.4787, 7.4784, 7.4773, 7.4773, 7.4761, 7.4752, 7.4778, 7.4818, 7.4814, 7.483, 7.4825, 7.4816, 7.4835, 7.4824, 7.4842, 7.483, 7.4826, 7.4842, 7.4831, 7.4851, 7.4842, 7.4861, 7.485, 7.4841, 7.4829, 7.4818, 7.4834, 7.4853, 7.4843, 7.4835, 7.4852, 7.4841, 7.4839, 7.4802, 7.479, 7.4783, 7.4771, 7.4759, 7.4755, 7.4772, 7.479, 7.4784, 7.4774, 7.4764, 7.4789, 7.4778, 7.4767, 7.4756, 7.4745, 7.476, 7.4749, 7.4743, 7.4732, 7.4721, 7.471, 7.47, 7.4692, 7.4686, 7.4675, 7.4664, 7.4629, 7.4647, 7.4636, 7.4624, 7.4617, 7.4606, 7.4598, 7.4586, 7.4574, 7.4565, 7.4558, 7.4558, 7.4529, 7.4519, 7.4508, 7.451, 7.45, 7.4497, 7.4486, 7.448, 7.4455, 7.4486, 7.4479, 7.4472, 7.4473, 7.4465, 7.4457, 7.4504, 7.4493, 7.4509, 7.4498, 7.4514, 7.4506, 7.4494, 7.4485, 7.4478, 7.447, 7.4462, 7.4483, 7.4475, 7.449, 7.4479, 7.447, 7.446, 7.443, 7.442, 7.4412, 7.443, 7.4421, 7.4443, 7.4436, 7.4455, 7.4479, 7.447, 7.4489, 7.4479, 7.4498, 7.4517, 7.452, 7.4511, 7.45, 7.4519, 7.451, 7.4502, 7.4496, 7.4511, 7.45, 7.4491, 7.4508, 7.4502, 7.4523, 7.4517, 7.4506, 7.4502, 7.4493, 7.4465, 7.4461, 7.4451, 7.4442, 7.4432, 7.4426, 7.442, 7.4411, 7.4403, 7.4394, 7.4384, 7.4374, 7.4365, 7.4359, 7.4324, 7.4339, 7.4331, 7.4325, 7.4319, 7.4311, 7.4301, 7.4324, 7.4341, 7.4335, 7.4325, 7.4314, 7.4329, 7.4319, 7.4308, 7.4298, 7.429, 7.4279, 7.4269, 7.4259, 7.4249, 7.4242, 7.4232, 7.4222, 7.4213, 7.4233, 7.4225, 7.422, 7.4215, 7.4209, 7.4227, 7.4219, 7.4211, 7.4227, 7.4276, 7.427, 7.4289, 7.4282, 7.4274, 7.4268, 7.4286, 7.4277, 7.4269, 7.4261, 7.428, 7.4269, 7.4258, 7.425, 7.4263, 7.4255, 7.4246, 7.4235, 7.4253, 7.4271, 7.4289, 7.429, 7.4309, 7.4298, 7.429, 7.4283, 7.4273, 7.4264, 7.4256, 7.4246, 7.4239, 7.4257, 7.4249, 7.4242, 7.4232, 7.4224, 7.424, 7.423, 7.4245, 7.4237, 7.4253, 7.4246, 7.4239, 7.4255, 7.4245, 7.4237, 7.4254, 7.4247, 7.4237, 7.4231, 7.4221, 7.4239, 7.4233, 7.4227, 7.4217, 7.4209, 7.4224, 7.4217, 7.4208, 7.4199, 7.4188, 7.4179, 7.4195, 7.4162, 7.4152, 7.412, 7.4114, 7.4107, 7.4124, 7.4114, 7.4107, 7.4097, 7.4089, 7.408, 7.4071, 7.4039, 7.4032, 7.4022, 7.4038, 7.4029, 7.4021, 7.4014, 7.4005, 7.3997, 7.3987, 7.3956, 7.3973, 7.3963, 7.3956, 7.3949, 7.394, 7.3955, 7.3957, 7.3972, 7.3967, 7.3963, 7.3954, 7.3947, 7.3939, 7.3931, 7.3921, 7.3914, 7.3904, 7.3895, 7.3886, 7.3876, 7.3867, 7.3861, 7.3878, 7.3869, 7.3862, 7.3853, 7.387, 7.3839, 7.3836, 7.3827, 7.3868, 7.3886, 7.3878, 7.3871, 7.3914, 7.3905, 7.3898, 7.3939, 7.3933, 7.3923, 7.3939, 7.3931, 7.3922, 7.3936, 7.395, 7.3941, 7.3945, 7.3938, 7.3952, 7.3966, 7.3982, 7.3974, 7.3978, 7.3996, 7.4014, 7.4004, 7.3996, 7.3986, 7.3978, 7.3978, 7.3972, 7.3962, 7.3953, 7.3943, 7.3963, 7.3979, 7.397, 7.3963, 7.3954, 7.3945, 7.3935, 7.395, 7.3966, 7.3957, 7.3928, 7.3921, 7.4039, 7.4036, 7.4027, 7.4043, 7.4035, 7.4026, 7.4017, 7.4016, 7.4007, 7.3997, 7.3988, 7.3958, 7.3949, 7.394, 7.393, 7.392, 7.3937, 7.3927, 7.3942, 7.3958, 7.3959, 7.3952, 7.3944, 7.3936, 7.395, 7.3948, 7.3938, 7.3933, 7.3925, 7.3918, 7.3909, 7.39, 7.3893, 7.3884, 7.3899, 7.3916, 7.3908, 7.3899, 7.3891, 7.3908, 7.3904, 7.3917, 7.3935, 7.3928, 7.3919, 7.3915, 7.3906, 7.3922, 7.3913, 7.3904, 7.3966, 7.4055, 7.4055, 7.4048, 7.4041, 7.401, 7.4002, 7.3972, 7.397, 7.3969, 7.3983, 7.4001, 7.3993, 7.4016, 7.4007, 7.4, 7.3975, 7.3968, 7.4015, 7.4017, 7.401, 7.4002, 7.4018, 7.4009, 7.4024, 7.3994, 7.3987, 7.3987, 7.3979, 7.3996, 7.3992, 7.3985, 7.3978, 7.3993, 7.3986, 7.3977, 7.397, 7.3964, 7.3966, 7.3963, 7.3958, 7.3973, 7.3971, 7.3986, 7.3957, 7.3948, 7.3963, 7.3955, 7.3947, 7.3934, 7.3929, 7.3922, 7.3915, 7.392, 7.3913, 7.3929, 7.3944, 7.3958, 7.3952, 7.3967, 7.3958, 7.3949, 7.3964, 7.3962, 7.3955, 7.395, 7.3941, 7.3937, 7.3932, 7.3925, 7.3916, 7.3907, 7.3898, 7.3912, 7.3905, 7.39, 7.3894, 7.3885, 7.3878, 7.3869, 7.3861, 7.3875, 7.3866, 7.3859, 7.3873, 7.3864, 7.3855, 7.3859, 7.3851, 7.3865, 7.3856, 7.3848, 7.3844, 7.3859, 7.3852, 7.3843, 7.3836, 7.3833, 7.388, 7.3897, 7.3898, 7.3915, 7.3909, 7.3903, 7.3898, 7.3908000000000005, 7.3902, 7.3895, 7.3886, 7.3899, 7.3892, 7.3907, 7.3899, 7.3892, 7.3884, 7.3875, 7.3866, 7.3861, 7.3876, 7.389, 7.3881, 7.3895, 7.3909, 7.39, 7.3891, 7.3882, 7.3898, 7.3908000000000005, 7.388, 7.3883, 7.3913, 7.3911, 7.3909, 7.3908, 7.3902, 7.3898, 7.389, 7.3905, 7.3879, 7.3905, 7.3899, 7.3893, 7.3886, 7.3863, 7.3859, 7.3852, 7.3846, 7.3839, 7.3833, 7.3824, 7.3838, 7.3831, 7.3823, 7.3814, 7.3831, 7.3844, 7.3859, 7.3855, 7.3847, 7.3882, 7.3874, 7.3888, 7.3928, 7.3921, 7.3918, 7.3913, 7.3904, 7.3895, 7.3887, 7.3908, 7.3921, 7.3912, 7.3926, 7.3919, 7.391, 7.3925, 7.3941, 7.3938, 7.3933, 7.3946, 7.3938, 7.3931, 7.3923, 7.3901, 7.3894, 7.3866, 7.3843, 7.3858, 7.385, 7.3874, 7.3857, 7.3874, 7.3865, 7.3857, 7.3851, 7.3823, 7.3815, 7.3813, 7.3786, 7.3777, 7.3792, 7.3787, 7.3759, 7.3753, 7.3769, 7.3761, 7.3753, 7.3744, 7.3737, 7.3731, 7.3746, 7.376, 7.3754, 7.3768, 7.378, 7.3778, 7.375, 7.3764, 7.3792, 7.3784, 7.3933, 7.3925, 7.3924, 7.3918, 7.3914, 7.3909, 7.3902, 7.3914, 7.3906, 7.3902, 7.3895, 7.3887, 7.3879, 7.3893, 7.3907, 7.3902, 7.3894, 7.3887, 7.3903, 7.3918, 7.3911, 7.3943, 7.3981, 7.4022, 7.4103, 7.4096, 7.411, 7.4102, 7.4116, 7.4109, 7.4102, 7.4117, 7.411, 7.4124, 7.4137, 7.4129, 7.4121, 7.4135, 7.4131, 7.4122, 7.4114, 7.4105, 7.4097, 7.4111, 7.4105, 7.4078, 7.4075, 7.4066, 7.406, 7.4052, 7.4066, 7.4061, 7.4057, 7.4049, 7.4063, 7.4057, 7.405, 7.4042, 7.4034, 7.4026, 7.4022, 7.4015, 7.4027, 7.4019, 7.4011, 7.4024, 7.4022, 7.4038, 7.4032, 7.4023, 7.4016, 7.4009, 7.4025, 7.4039, 7.4031, 7.4043, 7.4056, 7.4049, 7.4027, 7.4019, 7.4011, 7.4019, 7.401, 7.4003, 7.3995, 7.4031, 7.4023, 7.4017, 7.4011, 7.4004, 7.4, 7.3998, 7.3989, 7.3963, 7.4015, 7.4013, 7.4011, 7.4003, 7.3999, 7.3991, 7.4004, 7.3999, 7.3991, 7.3985, 7.3985, 7.3998, 7.3993, 7.3985, 7.3977, 7.3973, 7.3989, 7.3981, 7.3975, 7.399, 7.3982, 7.3993, 7.3985, 7.399500000000001, 7.3987, 7.3979, 7.3971, 7.3964, 7.3958, 7.397, 7.3982, 7.3975, 7.397, 7.3984, 7.3997, 7.4012, 7.4032, 7.4026, 7.4038, 7.4031, 7.4023, 7.4016, 7.4009, 7.4001, 7.4013, 7.4061, 7.4075, 7.4103, 7.4105, 7.4107, 7.4107, 7.4099, 7.4093, 7.4084, 7.4077, 7.4087000000000005, 7.409700000000001, 7.411, 7.4124, 7.4137, 7.4129, 7.4142, 7.4155, 7.4168, 7.416, 7.4173, 7.4168, 7.4161, 7.4155, 7.4149, 7.4123, 7.4115, 7.4111, 7.4103, 7.4097, 7.411, 7.4102, 7.4094, 7.4086, 7.4078, 7.4091, 7.4083, 7.4077, 7.4071, 7.4063, 7.4055, 7.406, 7.4062, 7.4054, 7.4049, 7.4041, 7.4046, 7.408, 7.4073, 7.4066, 7.406, 7.4097, 7.411, 7.4102, 7.4095, 7.4087, 7.4082, 7.4074, 7.407, 7.4062, 7.4056, 7.4052, 7.4046, 7.4061, 7.4055, 7.4049, 7.4062, 7.4057, 7.4049, 7.4042, 7.4055, 7.4071, 7.4084, 7.4078, 7.4076, 7.4075, 7.4075, 7.4089, 7.4081, 7.4074, 7.409, 7.4102, 7.4099, 7.4116, 7.4113, 7.4106, 7.41, 7.4094, 7.4091, 7.4107, 7.4122, 7.4115, 7.4109, 7.4123, 7.4117, 7.4153, 7.4253, 7.4328, 7.4342, 7.4338, 7.4331, 7.4326, 7.4323, 7.4298, 7.4305, 7.4321, 7.4333, 7.4346, 7.436, 7.4353, 7.4348, 7.4353, 7.4381, 7.4394, 7.4386, 7.4382, 7.4375, 7.435, 7.4363, 7.4355, 7.4351, 7.4347, 7.4346, 7.4339, 7.4351, 7.4345, 7.4338, 7.4408, 7.44, 7.4412, 7.4404, 7.4396, 7.4388, 7.4399, 7.4393, 7.4406, 7.4402, 7.4395, 7.4389, 7.4401, 7.4396, 7.4388, 7.438, 7.4374, 7.4387, 7.4382, 7.4385, 7.4377, 7.4353, 7.4354, 7.4347, 7.436, 7.4352, 7.4376, 7.4368, 7.4362, 7.4355, 7.4352, 7.4344, 7.4338, 7.4333, 7.4326, 7.4319, 7.4314, 7.4325, 7.4337, 7.4349, 7.44, 7.4412, 7.4404, 7.4416, 7.4409, 7.4421, 7.4414, 7.4406, 7.4398, 7.4393, 7.4386, 7.4381, 7.4392, 7.4386, 7.4397, 7.4373, 7.4366, 7.4358, 7.435, 7.4362, 7.4377, 7.4389, 7.4401, 7.4412, 7.4404, 7.4398, 7.4425, 7.4417, 7.441, 7.4404, 7.4408, 7.4401, 7.4406, 7.442, 7.4432, 7.4425, 7.4437, 7.4413, 7.4424, 7.4435, 7.4428, 7.4422, 7.4414, 7.4406, 7.4398, 7.4392, 7.4385, 7.438, 7.4391, 7.4402, 7.4394, 7.4405, 7.44, 7.4409, 7.4407, 7.4402, 7.4394, 7.4405, 7.4397, 7.4409, 7.4401, 7.4413, 7.4405, 7.4418, 7.4427, 7.4419, 7.4412, 7.4406, 7.4398, 7.4392, 7.4403, 7.4415, 7.4433, 7.4427, 7.4422, 7.4433, 7.4425, 7.4419, 7.4412, 7.4412, 7.4406, 7.4418, 7.4411, 7.4404, 7.4399, 7.4487, 7.4482, 7.4475, 7.4468, 7.4461, 7.4456, 7.4451, 7.4445, 7.4464, 7.448, 7.4475, 7.4469, 7.4461, 7.4474, 7.4467, 7.4459, 7.4451, 7.4427, 7.4421, 7.4459, 7.4452, 7.4464, 7.4476, 7.447, 7.4462, 7.4458, 7.447, 7.4481, 7.4491, 7.4484, 7.4495, 7.4487, 7.4499, 7.4493, 7.4505, 7.4501, 7.4479, 7.4475, 7.447, 7.4481, 7.4476, 7.4489, 7.4485, 7.4486, 7.4499, 7.4476, 7.4508, 7.4501, 7.4497, 7.4491, 7.4488, 7.4464, 7.4459, 7.447, 7.4483, 7.448, 7.4473, 7.4597, 7.4598, 7.4591, 7.4592, 7.4585, 7.458, 7.4575, 7.4588, 7.4571, 7.4585, 7.4596, 7.4607, 7.46, 7.4593, 7.4605, 7.4598, 7.4593, 7.4588, 7.4581, 7.4596, 7.4592, 7.4586, 7.4579, 7.4572, 7.4565, 7.4561, 7.4554, 7.4565, 7.4558, 7.4551, 7.4543, 7.4536, 7.4529, 7.4524, 7.4517, 7.451, 7.4486, 7.4479, 7.4473, 7.4466, 7.446, 7.4453, 7.4446, 7.4459, 7.4455, 7.4448, 7.4441, 7.4441, 7.4418, 7.4429, 7.4441, 7.4434, 7.4428, 7.4422, 7.4415, 7.441, 7.4403, 7.4396, 7.4389, 7.4383, 7.4379, 7.4395, 7.4387, 7.438, 7.4373, 7.4384, 7.438, 7.4391, 7.4384, 7.438, 7.4375, 7.437, 7.4384, 7.4379, 7.4374, 7.4388, 7.4399, 7.441, 7.4405, 7.4417, 7.4411, 7.4406, 7.4401, 7.4396, 7.4408, 7.442, 7.4415, 7.4408, 7.4402, 7.4414, 7.4409, 7.4402, 7.4396, 7.439, 7.4383, 7.4383, 7.4376, 7.4353, 7.4367, 7.436, 7.437, 7.4364, 7.4358, 7.4371, 7.4365, 7.4358, 7.4352, 7.4348, 7.4341, 7.4338, 7.4332, 7.4326, 7.432, 7.4313, 7.4325, 7.432, 7.4314, 7.4309, 7.4303, 7.4315, 7.4327, 7.4321, 7.4314, 7.4308, 7.4301, 7.4312, 7.431, 7.4303, 7.434, 7.4351, 7.4362, 7.4373, 7.4368, 7.4382, 7.4379, 7.4372, 7.4383, 7.4394, 7.4389, 7.4382, 7.4375, 7.4371, 7.4365, 7.436, 7.4354, 7.4365, 7.4359, 7.4353, 7.4359, 7.4356, 7.4334, 7.4327, 7.4339, 7.4335, 7.4351, 7.4361, 7.4356, 7.4352, 7.4345, 7.4338, 7.4348, 7.4354, 7.4348, 7.4341, 7.4336, 7.433, 7.4325, 7.4319, 7.4312, 7.4325, 7.4321, 7.4315, 7.4309, 7.4321, 7.4317, 7.4311, 7.4304, 7.43, 7.4311, 7.4321, 7.4332, 7.4326, 7.4319, 7.4312, 7.4307, 7.4302, 7.4329, 7.4323, 7.4317, 7.4311, 7.4309, 7.4302, 7.4295, 7.4307, 7.4301, 7.4297, 7.4294, 7.4287, 7.4282, 7.4292, 7.4285, 7.4282, 7.4275, 7.4269, 7.4262, 7.4255, 7.4249, 7.4244, 7.4283, 7.4278, 7.4272, 7.4266, 7.426, 7.4255, 7.4233, 7.4226, 7.422, 7.4214, 7.4208, 7.4202, 7.4196, 7.4191, 7.4184, 7.4206, 7.4201, 7.4212, 7.4206, 7.4199, 7.4192, 7.4186, 7.42, 7.4194, 7.419, 7.4185, 7.4181, 7.4191, 7.4184, 7.418, 7.4159, 7.4153, 7.4148, 7.4145, 7.4138, 7.4131, 7.4124, 7.4136, 7.4146, 7.4142, 7.4137, 7.4135, 7.4128, 7.4106, 7.4101, 7.4112, 7.4106, 7.4106, 7.4099, 7.4093, 7.4121, 7.4114, 7.4111, 7.4105, 7.4098, 7.4093, 7.4104, 7.4099, 7.4112, 7.4105, 7.4084, 7.4084, 7.4083, 7.4094, 7.409, 7.4117, 7.4113, 7.4123, 7.4134, 7.4145, 7.4139, 7.4132, 7.4126, 7.4121, 7.4117, 7.4111, 7.4105, 7.4115, 7.4109, 7.4119, 7.4113, 7.4109, 7.4104, 7.4097, 7.409, 7.4086, 7.408, 7.4074, 7.4069, 7.4082, 7.4097, 7.4092, 7.4086, 7.4082, 7.4081, 7.4091, 7.4086, 7.408, 7.4074, 7.4068, 7.4062, 7.4077, 7.4088, 7.4099, 7.4092, 7.4104, 7.4098, 7.4092, 7.4102, 7.4098, 7.4109, 7.4105, 7.4099, 7.4109, 7.4103, 7.4113, 7.4124, 7.4124, 7.4118, 7.4129, 7.4109, 7.4199, 7.4193, 7.4188, 7.4182, 7.4193, 7.4187, 7.4181, 7.4176, 7.4169, 7.4166, 7.416, 7.4154, 7.415, 7.4145, 7.4173, 7.4168, 7.4162, 7.4156, 7.4135, 7.4129, 7.4126, 7.4137, 7.4131, 7.413, 7.4113, 7.4148, 7.4143, 7.4154, 7.4148, 7.4159, 7.4153, 7.4136, 7.413, 7.414, 7.4135, 7.4145, 7.4139, 7.4213, 7.4217, 7.421, 7.4204, 7.4198, 7.4192, 7.4189, 7.42, 7.4211, 7.4204, 7.4201, 7.4197, 7.4192, 7.4187, 7.4227, 7.4222, 7.4216, 7.421, 7.4205, 7.4267, 7.4261, 7.4254, 7.4264, 7.4275, 7.427, 7.4263, 7.4256, 7.4249, 7.4244, 7.425, 7.4246, 7.4241, 7.4235, 7.4229, 7.4225, 7.4219, 7.42, 7.4196, 7.4191, 7.4187, 7.4181, 7.4191, 7.42, 7.4211, 7.4205, 7.4199, 7.4194, 7.4188, 7.4182, 7.4176, 7.417, 7.4181, 7.4175, 7.4169, 7.4149, 7.4144, 7.4163, 7.4184, 7.42, 7.4216, 7.4227, 7.4221, 7.4231, 7.4242, 7.4251, 7.4262, 7.4257, 7.4252, 7.4263, 7.4258, 7.4252, 7.4262, 7.4258, 7.4253, 7.4269, 7.427, 7.4264, 7.426, 7.4239, 7.4232, 7.4226, 7.4236, 7.4231, 7.4225, 7.4221, 7.4219, 7.4229, 7.4238, 7.4232, 7.4227, 7.4237, 7.4231, 7.4227, 7.4222, 7.4216, 7.4212, 7.4207, 7.4201, 7.4195, 7.4192, 7.4188, 7.4182, 7.4191, 7.4188, 7.4184, 7.4178, 7.4188, 7.4198, 7.4208, 7.4203, 7.4212, 7.4221, 7.4215, 7.4257, 7.4252, 7.4248, 7.4242, 7.4239, 7.4235, 7.4262, 7.4256, 7.4265, 7.4278, 7.4288, 7.4284, 7.4281, 7.4291, 7.4272, 7.4296, 7.43, 7.4296, 7.4313, 7.4324, 7.4308, 7.429, 7.4302, 7.4296, 7.429, 7.4301, 7.4311, 7.4305, 7.4299, 7.431, 7.429, 7.4301, 7.4295, 7.4291, 7.4286, 7.4281, 7.4276, 7.4273, 7.4269, 7.4263, 7.4257, 7.4253, 7.4247, 7.4241, 7.4235, 7.4245, 7.4255, 7.425, 7.4255, 7.4236, 7.4232, 7.4226, 7.4223, 7.4219, 7.4213, 7.4223, 7.4221, 7.4217, 7.4211, 7.4208, 7.4204, 7.4199, 7.4194, 7.4203, 7.4198, 7.4209, 7.4204, 7.4214, 7.4209, 7.4206, 7.4203, 7.4197, 7.4193, 7.4203, 7.4197, 7.4177, 7.4171, 7.418, 7.4189, 7.4185, 7.4179, 7.4204, 7.4199, 7.4179, 7.4173, 7.4168, 7.4163, 7.4194, 7.4188, 7.4197, 7.4192, 7.4213, 7.4223, 7.4235, 7.4262, 7.4256, 7.4266, 7.4275, 7.4272, 7.4297, 7.4277, 7.4271, 7.4265, 7.4259, 7.4269, 7.4263, 7.4258, 7.4253, 7.4263, 7.4273, 7.4267, 7.4262, 7.4256, 7.4252, 7.4233, 7.4229, 7.424, 7.4235, 7.423, 7.4224, 7.4218, 7.4222, 7.4216, 7.4226, 7.422, 7.4229, 7.4225, 7.422, 7.4214, 7.4224, 7.4234, 7.4237, 7.4247, 7.4242, 7.4236, 7.4246, 7.424, 7.4234, 7.423, 7.4226, 7.422, 7.4214, 7.4209, 7.4203, 7.4202, 7.4212, 7.4237, 7.4232, 7.4228, 7.4223, 7.4233, 7.4228, 7.4228, 7.4222, 7.4233, 7.4227, 7.4237, 7.4231, 7.4225, 7.4221, 7.4217, 7.4213, 7.4209, 7.4203, 7.4212, 7.4206, 7.4203, 7.4197, 7.4191, 7.4186, 7.4181, 7.4175, 7.416, 7.4169, 7.4178, 7.4173, 7.4168, 7.4168, 7.4153, 7.4148, 7.4158, 7.4152, 7.4162, 7.4157, 7.4188, 7.4182, 7.4177, 7.4172, 7.4167, 7.4162, 7.4157, 7.4169, 7.4167, 7.4177, 7.4173, 7.4171, 7.4167, 7.4162, 7.4172, 7.4183, 7.4194, 7.4189, 7.4198, 7.4194, 7.4206, 7.4231, 7.4239, 7.4234, 7.4233, 7.423, 7.4224, 7.4234, 7.4228, 7.4209, 7.4205, 7.4199, 7.4193, 7.4189, 7.4185, 7.4183, 7.418, 7.4179, 7.4175, 7.4169, 7.4164, 7.4175, 7.4171, 7.4166, 7.4176, 7.4189, 7.417, 7.4168, 7.4163, 7.416, 7.4155, 7.4165, 7.416, 7.417, 7.4179, 7.4174, 7.4169, 7.4164, 7.416, 7.4157, 7.4163, 7.4158, 7.4154, 7.4148, 7.4159, 7.4153, 7.4147, 7.4143, 7.4137, 7.4133, 7.4127, 7.4122, 7.4119, 7.4113, 7.4108, 7.4104, 7.4098, 7.4092, 7.4087, 7.4083, 7.4068, 7.405, 7.4044, 7.4039, 7.4034, 7.4044, 7.4039, 7.4034, 7.403, 7.4024, 7.4019, 7.4014, 7.4008, 7.4004, 7.3987, 7.4005, 7.4002, 7.4014, 7.401, 7.4007, 7.4005, 7.4003, 7.4004, 7.4, 7.4016, 7.4013, 7.4008, 7.4005, 7.4002, 7.3998, 7.3994, 7.3989, 7.3984, 7.3993, 7.3988, 7.3983, 7.398, 7.3974, 7.397, 7.3966, 7.3961, 7.3958, 7.3954, 7.395, 7.3948, 7.3943, 7.3937, 7.3934, 7.393, 7.3939, 7.3942, 7.3951, 7.3947, 7.3943, 7.394, 7.3935, 7.3932, 7.3932, 7.3927, 7.3923, 7.392, 7.3916, 7.3911, 7.3905, 7.3901, 7.391, 7.3905, 7.3903, 7.3898, 7.3896, 7.3892, 7.3889, 7.3884, 7.3878, 7.3873, 7.3883, 7.3878, 7.3873, 7.3868, 7.3866, 7.3861, 7.3858, 7.3853, 7.3849, 7.3846, 7.3855, 7.3851, 7.3845, 7.3839, 7.3833, 7.383, 7.3825, 7.3821, 7.383, 7.3826, 7.3823, 7.3818, 7.3813, 7.3809, 7.3805, 7.3801, 7.3811, 7.3806, 7.3815, 7.381, 7.3805, 7.38, 7.3809, 7.3804, 7.3799, 7.3807, 7.3826, 7.382, 7.3829, 7.3825, 7.3823, 7.3817, 7.3827, 7.3823, 7.3832, 7.3827, 7.3822, 7.3889, 7.3883, 7.3878, 7.3872, 7.3867, 7.3849, 7.3847, 7.3856, 7.3851, 7.3862, 7.3872, 7.3867, 7.3876, 7.3872, 7.3883, 7.3881, 7.3878, 7.3928, 7.3939, 7.3933, 7.3931, 7.3929, 7.3926, 7.3921, 7.3916, 7.3912, 7.3906, 7.3901, 7.391, 7.3919, 7.3928, 7.3924, 7.3919, 7.3915, 7.3915, 7.3912, 7.3911, 7.3907, 7.3903, 7.39, 7.3896, 7.3891, 7.3886, 7.3882, 7.3877, 7.3872, 7.3867, 7.3864, 7.3862, 7.3857, 7.3866, 7.3875, 7.3885, 7.3879, 7.3878, 7.3873, 7.3897, 7.3891, 7.3873, 7.3871, 7.3867, 7.3862, 7.3857, 7.3852, 7.3847, 7.386, 7.387, 7.3866, 7.3862, 7.3858, 7.3852, 7.3847, 7.3842, 7.385, 7.3845, 7.3853, 7.3851, 7.3845, 7.3854, 7.3863, 7.3858, 7.3854, 7.385, 7.3847, 7.3842, 7.3839, 7.3834, 7.3831, 7.3826, 7.3824, 7.3819, 7.3814, 7.3797, 7.3806, 7.3801, 7.3809, 7.3832, 7.3827, 7.3823, 7.3832, 7.383, 7.3854, 7.3863, 7.386, 7.3855, 7.3857, 7.3855, 7.385, 7.3846, 7.3841, 7.3841, 7.3836, 7.3833, 7.3828, 7.3826, 7.3822, 7.3817, 7.3812, 7.3807, 7.3811, 7.3807, 7.3803, 7.38, 7.3797, 7.3793, 7.3788, 7.3783, 7.3778, 7.3787, 7.3795, 7.3804, 7.3813, 7.3808, 7.3804, 7.3801, 7.3796, 7.3793, 7.3789, 7.3788, 7.3797, 7.3792, 7.3801, 7.3796, 7.3796, 7.3791, 7.3802, 7.3799, 7.3796, 7.3791, 7.3806, 7.3801, 7.3797, 7.3783, 7.3781, 7.3776, 7.3774, 7.3783, 7.3778, 7.3786, 7.3769, 7.3766, 7.3761, 7.3756, 7.3766, 7.3763, 7.3772, 7.3767, 7.3762, 7.3759, 7.3754, 7.375, 7.3746, 7.3743, 7.3738, 7.3733, 7.3741, 7.3737, 7.3733, 7.373, 7.3739, 7.3735, 7.3746, 7.3742, 7.3737, 7.3734, 7.3729, 7.3738, 7.3734, 7.373, 7.3725, 7.3737, 7.3747, 7.3755, 7.3751, 7.3746, 7.3743, 7.3739, 7.3734, 7.3731, 7.3727, 7.3725, 7.3723, 7.3728, 7.3723, 7.372, 7.3716, 7.3699, 7.3694, 7.369, 7.37, 7.3696, 7.368, 7.3676, 7.3659, 7.3654, 7.3649, 7.3646, 7.3672, 7.3669, 7.3664, 7.3659, 7.3656, 7.3651, 7.3659, 7.3667, 7.3676, 7.3671, 7.3666, 7.3675, 7.367, 7.3665, 7.3662, 7.3658, 7.3653, 7.3661, 7.3658, 7.3656, 7.3652, 7.3648, 7.3644, 7.3653, 7.3661, 7.3657, 7.3652, 7.366, 7.3643, 7.3652, 7.3647, 7.3655, 7.365, 7.3659, 7.3656, 7.3665, 7.3661, 7.3669, 7.3665, 7.366, 7.3663, 7.3725, 7.3721, 7.373, 7.3726, 7.3735, 7.3743, 7.3744, 7.3739, 7.3734, 7.3743, 7.3738, 7.3735, 7.3743, 7.3739, 7.3736, 7.3746, 7.3755, 7.375, 7.3745, 7.3793, 7.3789, 7.3785, 7.3797, 7.3795, 7.379, 7.3786, 7.3795, 7.3791, 7.3788, 7.3797, 7.3792, 7.3789, 7.3798, 7.3793, 7.3788, 7.3773, 7.3768, 7.3771, 7.3766, 7.3776, 7.3771, 7.3767, 7.3765, 7.376, 7.3756, 7.3751, 7.3747, 7.3742, 7.3737, 7.3733, 7.373, 7.3726, 7.3723, 7.3733, 7.3729, 7.3741, 7.374, 7.3747, 7.3731, 7.3728, 7.3728, 7.3724, 7.3744, 7.3742, 7.3739, 7.3748, 7.3735, 7.3756, 7.3752, 7.3748, 7.3744, 7.3754, 7.3738, 7.3734, 7.3731, 7.3726, 7.3724, 7.3733, 7.3728, 7.3724, 7.3733, 7.3729, 7.3725, 7.3733, 7.3742, 7.3738, 7.3749, 7.3756, 7.3753, 7.375, 7.3758, 7.3755, 7.3764, 7.3759, 7.3754, 7.3749, 7.3746, 7.3743, 7.3739, 7.3736, 7.3732, 7.3742, 7.374, 7.3736, 7.3732, 7.3742, 7.3737, 7.372, 7.3715, 7.3724, 7.3733, 7.374, 7.3742, 7.3737, 7.3734, 7.3743, 7.3752, 7.3748, 7.3746, 7.3755, 7.3752, 7.3748, 7.3743, 7.3738, 7.3734, 7.373, 7.3726, 7.3722, 7.3718, 7.3714, 7.3711, 7.3709, 7.3705, 7.37, 7.3698, 7.3682, 7.3678, 7.3675, 7.3684, 7.368, 7.3677, 7.3673, 7.3668, 7.3668, 7.3676, 7.3672, 7.3669, 7.3669, 7.3664, 7.3673, 7.3657, 7.3653, 7.3662, 7.3659, 7.3654, 7.3666, 7.3663, 7.3646, 7.3641, 7.3637, 7.3635, 7.363, 7.3615, 7.3611, 7.3608, 7.3617, 7.3613, 7.3632, 7.3628, 7.3625, 7.3634, 7.3657, 7.3667, 7.3664, 7.3662, 7.3658, 7.3653, 7.3662, 7.366, 7.3655, 7.3663, 7.3658, 7.3667, 7.3663, 7.3672, 7.3667, 7.3675, 7.3683, 7.3682, 7.368, 7.3688, 7.3684, 7.367, 7.368, 7.3688, 7.3685, 7.3693, 7.3697, 7.3705, 7.3703, 7.3711, 7.3706, 7.3701, 7.3696, 7.3692, 7.3687, 7.3682, 7.369, 7.3685, 7.3682, 7.3666, 7.3661, 7.3669, 7.3668, 7.3676, 7.3672, 7.3693, 7.3701, 7.3698, 7.3693, 7.3716, 7.3713, 7.3709, 7.3717, 7.3712, 7.3719, 7.3726, 7.3722, 7.3717, 7.3717, 7.3712, 7.3708, 7.3704, 7.3713, 7.3721, 7.3716, 7.3711, 7.3708, 7.3703, 7.3699, 7.37, 7.3696, 7.3698, 7.3706, 7.3703, 7.37, 7.3696, 7.368, 7.3677, 7.3685, 7.3684, 7.3682, 7.3704, 7.37, 7.3695, 7.3733, 7.3733, 7.3729, 7.3721, 7.3718, 7.3726, 7.3724, 7.372, 7.3716, 7.3701, 7.3697, 7.3681, 7.3676, 7.3672, 7.3697, 7.3693, 7.3689, 7.3686, 7.3687, 7.3684, 7.368, 7.3683, 7.3678, 7.3711, 7.3733, 7.373, 7.3727, 7.3723, 7.3722, 7.373, 7.3737, 7.3733, 7.373, 7.3727, 7.3736, 7.3731, 7.3715, 7.3722, 7.3718, 7.3714, 7.3712, 7.3707, 7.3703, 7.3698, 7.3693, 7.369, 7.3686, 7.3683, 7.368, 7.3676, 7.3672, 7.3668, 7.3665, 7.3661, 7.3669, 7.3664, 7.3661, 7.3656, 7.3654, 7.365, 7.3635, 7.3633, 7.3629, 7.3637, 7.3633, 7.364, 7.3636, 7.3631, 7.3639, 7.3634, 7.3629, 7.3625, 7.3633, 7.363, 7.3625, 7.3633, 7.3641, 7.3636, 7.3631, 7.3627, 7.3634, 7.3643, 7.3651, 7.3648, 7.3632, 7.3639, 7.3635, 7.3643, 7.364, 7.3636, 7.3631, 7.3629, 7.3625, 7.3633, 7.3628, 7.3624, 7.362, 7.3631, 7.3626, 7.3634, 7.3629, 7.3637, 7.3635, 7.3643, 7.3639, 7.3647, 7.3667, 7.3682, 7.369, 7.3686, 7.3681, 7.3678, 7.3686, 7.3681, 7.3679, 7.3674, 7.3683, 7.3679, 7.3688, 7.3684, 7.3727, 7.3722, 7.3731, 7.3739, 7.3761, 7.3756, 7.3763, 7.3759, 7.3767, 7.3763, 7.376, 7.3757, 7.3754, 7.375, 7.3745, 7.3753, 7.375, 7.3759, 7.3755, 7.3751, 7.3747, 7.3742, 7.3727, 7.3722, 7.3717, 7.3714, 7.3709, 7.3704, 7.37, 7.3709, 7.3716, 7.3712, 7.3707, 7.3704, 7.3712, 7.3709, 7.3708, 7.3704, 7.37, 7.3696, 7.3692, 7.3687, 7.3683, 7.3681, 7.3676, 7.3683, 7.368, 7.369, 7.3686, 7.3682, 7.3689, 7.3685, 7.367, 7.3679, 7.3674, 7.3694, 7.3702, 7.3687, 7.3684, 7.368, 7.3675, 7.3672, 7.3668, 7.3667, 7.3664, 7.3673, 7.3668, 7.3675, 7.367, 7.3678, 7.3686, 7.3683, 7.369, 7.3687, 7.3683, 7.3679, 7.3675, 7.3671, 7.3669, 7.3677, 7.3673, 7.3682, 7.368, 7.3677, 7.3674, 7.3688, 7.3685, 7.3681, 7.369, 7.3699, 7.3695, 7.3702, 7.3699, 7.3695, 7.3703, 7.3699, 7.3684, 7.368, 7.3676, 7.3672, 7.3684, 7.3679, 7.3687, 7.3684, 7.3691, 7.369, 7.3686, 7.3682, 7.3689, 7.3686, 7.3681, 7.3677, 7.3674, 7.3681, 7.3676, 7.3672, 7.3667, 7.3662, 7.3657, 7.367, 7.3665, 7.366, 7.3657, 7.3652, 7.3647, 7.3643, 7.3639, 7.3647, 7.3642, 7.365, 7.3649, 7.3645, 7.3652, 7.3651, 7.3647, 7.3643, 7.3639, 7.364, 7.3637, 7.3645, 7.3643, 7.365, 7.3647, 7.3643, 7.3641, 7.3649, 7.3657, 7.3653, 7.3651, 7.367, 7.3667, 7.3663, 7.3664, 7.366, 7.3656, 7.3655, 7.3651, 7.3647, 7.3642, 7.3638, 7.3646, 7.3643, 7.3651, 7.3647, 7.3643, 7.3638, 7.3624, 7.3621, 7.3628, 7.3624, 7.3632, 7.3628, 7.3636, 7.3632, 7.3628, 7.3625, 7.3622, 7.3619, 7.3615, 7.36, 7.3608, 7.3605, 7.3601, 7.3598, 7.3606, 7.3602, 7.3597, 7.3592, 7.3588, 7.3596, 7.3591, 7.3589, 7.3587, 7.3585, 7.3598, 7.3595, 7.3593, 7.3589, 7.3591, 7.3601, 7.3616, 7.366, 7.3656, 7.3663, 7.3659, 7.3656, 7.3653, 7.3661, 7.3657, 7.3653, 7.365, 7.3645, 7.3641, 7.3637, 7.3633, 7.3629, 7.3625, 7.3622, 7.3618, 7.3615, 7.3623, 7.362, 7.3651, 7.3649, 7.3645, 7.3641, 7.3637, 7.3645, 7.3653, 7.365, 7.3646, 7.3653, 7.366, 7.3656, 7.3663, 7.3661, 7.3657, 7.3653, 7.3649, 7.3646, 7.3643, 7.364, 7.3636, 7.3645, 7.3641, 7.3636, 7.3632, 7.364, 7.3647, 7.3644, 7.364, 7.3648, 7.3644, 7.364, 7.3626, 7.3622, 7.3619, 7.3617, 7.3613, 7.3609, 7.3607, 7.3605, 7.3613, 7.3621, 7.3628, 7.3635, 7.364, 7.3637, 7.3632, 7.3628, 7.3624, 7.3625, 7.3611, 7.3619, 7.3616, 7.3612, 7.361, 7.3617, 7.3624, 7.3632, 7.3628, 7.3624, 7.3621, 7.3617, 7.3619, 7.3616, 7.3613, 7.3609, 7.3605, 7.3612, 7.3608, 7.3605, 7.3603, 7.36, 7.3597, 7.3595, 7.3592, 7.3589, 7.36, 7.3612, 7.3608, 7.3593, 7.3591, 7.3588, 7.3607, 7.3603, 7.3599, 7.3606, 7.3604, 7.359, 7.3586, 7.3582, 7.3568, 7.3576, 7.3573, 7.3569, 7.3577, 7.3573, 7.3568, 7.3575, 7.3582, 7.3589, 7.3585, 7.3596, 7.3592, 7.3632, 7.3629, 7.3625, 7.3633, 7.3641, 7.3649, 7.3657, 7.3653, 7.3649, 7.3647, 7.3655, 7.3652, 7.3648, 7.3644, 7.364, 7.3638, 7.3634, 7.3641, 7.3639, 7.3636, 7.3632, 7.3629, 7.3616, 7.3613, 7.3609, 7.3605, 7.3601, 7.3598, 7.3594, 7.3604, 7.3623, 7.3622, 7.3618, 7.3625, 7.3621, 7.3617, 7.3633, 7.3641, 7.3637, 7.3659, 7.3666, 7.3676, 7.3674, 7.3681, 7.3688, 7.3684, 7.3691, 7.3687, 7.3684, 7.368, 7.3677, 7.3673, 7.3682, 7.3689, 7.3686, 7.3682, 7.3678, 7.3675, 7.3671, 7.3679, 7.3678, 7.3674, 7.367, 7.3666, 7.3674, 7.3681, 7.3677, 7.3673, 7.3669, 7.3675, 7.3671, 7.3657, 7.3664, 7.366, 7.3657, 7.3654, 7.365, 7.3647, 7.3643, 7.364, 7.3637, 7.3634, 7.3632, 7.3628, 7.3624, 7.3645, 7.3642, 7.364, 7.3636, 7.3632, 7.3628, 7.3625, 7.3625, 7.3621, 7.3629, 7.3625, 7.3633, 7.3629, 7.3627, 7.3637, 7.3633, 7.3631, 7.3629, 7.3625, 7.3621, 7.3617, 7.3613, 7.3609, 7.3614, 7.361, 7.3606, 7.3602, 7.3598, 7.3594, 7.3601, 7.3597, 7.3604, 7.3601, 7.3597, 7.3605, 7.3613, 7.362, 7.3624, 7.3623, 7.3625, 7.3633, 7.3674, 7.367, 7.3677, 7.3684, 7.3691, 7.3687, 7.3684, 7.3692, 7.3688, 7.3685, 7.3682, 7.3678, 7.3674, 7.367, 7.3666, 7.3664, 7.3671, 7.3667, 7.3663, 7.3659, 7.3655, 7.3662, 7.3658, 7.3654, 7.3661, 7.3657, 7.3654, 7.365, 7.3646, 7.3642, 7.364, 7.3648, 7.3645, 7.3641, 7.3637, 7.3633, 7.364, 7.3636, 7.3644, 7.3651, 7.3647, 7.3657, 7.3654, 7.3661, 7.3669, 7.3665, 7.3678, 7.3674, 7.367, 7.3668, 7.3665, 7.3672, 7.3671, 7.3678, 7.3664, 7.3682, 7.3711, 7.3707, 7.3703, 7.3725, 7.3722, 7.3718, 7.3706, 7.3703, 7.3702, 7.3706, 7.3708, 7.3704, 7.3701, 7.3698, 7.3696, 7.3693, 7.369, 7.3687, 7.3684, 7.3681, 7.3678, 7.3675, 7.3674, 7.367, 7.3682, 7.3679, 7.3677, 7.3674, 7.3671, 7.3669, 7.3667, 7.3665, 7.3662, 7.3661, 7.3657, 7.3653, 7.3651, 7.3647, 7.3655, 7.3662, 7.3658, 7.3673, 7.3669, 7.3666, 7.3663, 7.3659, 7.3655, 7.3662, 7.3702, 7.3709, 7.3706, 7.3703, 7.3701, 7.3697, 7.3693, 7.3689, 7.3696, 7.3693, 7.369, 7.3687, 7.3683, 7.3691, 7.3688, 7.3685, 7.3691, 7.3699, 7.3696, 7.3697, 7.3693, 7.369, 7.369, 7.3696, 7.3694, 7.369, 7.3687, 7.3683, 7.369, 7.3688, 7.3685, 7.3693, 7.369, 7.3687, 7.3713, 7.3721, 7.3728, 7.3725, 7.3722, 7.3718, 7.3714, 7.3711, 7.3707, 7.3703, 7.3699, 7.3695, 7.3696, 7.3703, 7.3699, 7.3695, 7.3691, 7.3688, 7.3707, 7.3703, 7.3699, 7.3696, 7.3692, 7.369, 7.3686, 7.3684, 7.3699, 7.3695, 7.3682, 7.3721, 7.3718, 7.3717, 7.3713, 7.3721, 7.3717, 7.3714, 7.371, 7.3717, 7.3714, 7.3711, 7.3718, 7.3714, 7.371, 7.3717, 7.3713, 7.3743, 7.374, 7.3739, 7.3735, 7.3742, 7.3749, 7.3745, 7.3742, 7.3738, 7.3745, 7.3768, 7.3774, 7.3771, 7.3767, 7.3763, 7.3759, 7.3755, 7.3751, 7.3747, 7.3754, 7.3762, 7.3758, 7.3765, 7.377, 7.3767, 7.3763, 7.376, 7.3767, 7.3763, 7.376, 7.3758, 7.3754, 7.3751, 7.3747, 7.3744, 7.3742, 7.3739, 7.3735, 7.3731, 7.3728, 7.3724, 7.372, 7.3717, 7.3716, 7.3724, 7.3725, 7.3741, 7.3738, 7.3745, 7.3752, 7.376, 7.3758, 7.3762, 7.3758, 7.3754, 7.3752, 7.3749, 7.3747, 7.3743, 7.3778, 7.3774, 7.3761, 7.3769, 7.3765, 7.3762, 7.376, 7.3748, 7.3754, 7.375, 7.3757, 7.3754, 7.3762, 7.3759, 7.3762, 7.377, 7.3768, 7.3765, 7.3761, 7.3767, 7.3775, 7.3773, 7.377, 7.3766, 7.3753, 7.3749, 7.3745, 7.3742, 7.374, 7.3737, 7.3744, 7.374, 7.3747, 7.3745, 7.3741, 7.3738, 7.3734, 7.373, 7.3744, 7.374, 7.3747, 7.3743, 7.375, 7.3757, 7.3753, 7.375, 7.3746, 7.3742, 7.3739, 7.3735, 7.3731, 7.3729, 7.3726, 7.3732, 7.3729, 7.3736, 7.3732, 7.3741, 7.3737, 7.3744, 7.3741, 7.3737, 7.3733, 7.373, 7.3727, 7.3744, 7.3741, 7.3737, 7.3734, 7.374, 7.3746, 7.3743, 7.374, 7.3736, 7.3732, 7.3734, 7.373, 7.3736, 7.3742, 7.3738, 7.3734, 7.3731, 7.3737, 7.3734, 7.374, 7.3736, 7.3743, 7.3739, 7.3735, 7.3732, 7.3739, 7.3737, 7.3734, 7.373, 7.3727, 7.3734, 7.373, 7.3727, 7.3735, 7.3755, 7.3772, 7.377, 7.3769, 7.3767, 7.3774, 7.3771, 7.3768, 7.3765, 7.3761, 7.3764, 7.3766, 7.3774, 7.3771, 7.3768, 7.3775, 7.3772, 7.378, 7.38, 7.3807, 7.3805, 7.3802, 7.3798, 7.3796, 7.3792, 7.3789, 7.3796, 7.3794, 7.379, 7.3797, 7.3793, 7.3789, 7.3787, 7.3783, 7.3779, 7.3777, 7.3783, 7.3792, 7.3788, 7.3794, 7.3791, 7.3788, 7.3784, 7.378, 7.3778, 7.3775, 7.3772, 7.3779, 7.3775, 7.3771, 7.3778, 7.3774, 7.377, 7.3767, 7.3773, 7.376, 7.3756, 7.3753, 7.3749, 7.3746, 7.3733, 7.373, 7.3726, 7.3723, 7.3719, 7.3726, 7.3723, 7.372, 7.3717, 7.3713, 7.371, 7.3717, 7.3715, 7.3711, 7.3708, 7.3714, 7.3711, 7.3719, 7.3726, 7.3723, 7.3719, 7.3717, 7.3713, 7.3711, 7.3708, 7.3705, 7.3701, 7.3697, 7.3704, 7.37, 7.3696, 7.3692, 7.3679, 7.3676, 7.3673, 7.3679, 7.3675, 7.3672, 7.3679, 7.3684, 7.368, 7.3676, 7.3673, 7.366, 7.3658, 7.3655, 7.3652, 7.3659, 7.3666, 7.3662, 7.367, 7.367, 7.3667, 7.3657, 7.3654, 7.3662, 7.3679, 7.3679, 7.3681, 7.3678, 7.3674, 7.3676, 7.3695, 7.3693, 7.3689, 7.3686, 7.3684, 7.368, 7.3676, 7.3673, 7.3671, 7.3669, 7.3665, 7.3662, 7.3659, 7.3656, 7.3654, 7.3651, 7.3689, 7.3718, 7.3716, 7.3714, 7.372, 7.3756, 7.3762, 7.3759, 7.3766, 7.3763, 7.3759, 7.3755, 7.3752, 7.3748, 7.3755, 7.3762, 7.3768, 7.3774, 7.3771, 7.3768, 7.3765, 7.3761, 7.3759, 7.3756, 7.3752, 7.376, 7.3756, 7.3753, 7.375, 7.3756, 7.3753, 7.3752, 7.375, 7.3747, 7.3745, 7.3742, 7.3739, 7.3746, 7.3742, 7.3739, 7.3736, 7.3734, 7.3731, 7.3729, 7.3726, 7.3733, 7.3729, 7.3725, 7.3723, 7.3729, 7.3725, 7.3722, 7.3729, 7.3755, 7.3753, 7.3769, 7.3765, 7.3762, 7.3759, 7.3756, 7.3753, 7.375, 7.3746, 7.3753, 7.375, 7.3747, 7.3745, 7.3741, 7.3737, 7.3734, 7.373, 7.3726, 7.3723, 7.3729, 7.3736, 7.3734, 7.373, 7.3726, 7.3742, 7.3738, 7.3744, 7.374, 7.3746, 7.3742, 7.3738, 7.3745, 7.3742, 7.3738, 7.3735, 7.3742, 7.3739, 7.3746, 7.3745, 7.3751, 7.3759, 7.3765, 7.3762, 7.375, 7.3747, 7.3744, 7.3742, 7.374, 7.3738, 7.3735, 7.3734, 7.3741, 7.3739, 7.3736, 7.3744, 7.3741, 7.3738, 7.3746, 7.3744, 7.3741, 7.3738, 7.3738, 7.3745, 7.3742, 7.3738, 7.3735, 7.3731, 7.3737, 7.3734, 7.3731, 7.3729, 7.3726, 7.3732, 7.3738, 7.3734, 7.374, 7.3737, 7.3743, 7.3741, 7.3742, 7.3748, 7.3746, 7.3742, 7.3748, 7.3745, 7.3741, 7.3747, 7.3756, 7.3753, 7.375, 7.3746, 7.3752, 7.3749, 7.3747, 7.3746, 7.3743, 7.3739, 7.3745, 7.3742, 7.3748, 7.3766, 7.3763, 7.3761, 7.3757, 7.3753, 7.376, 7.3757, 7.3754, 7.3751, 7.3748, 7.3754, 7.3751, 7.3771, 7.3768, 7.3776, 7.3787, 7.3843, 7.3842, 7.3838, 7.3851, 7.3867, 7.3873, 7.3869, 7.3899, 7.3896, 7.3892, 7.3899, 7.3887, 7.3883, 7.3879, 7.3885, 7.3881, 7.3879, 7.3876, 7.3872, 7.3868, 7.3864, 7.387, 7.3858, 7.3854, 7.3867, 7.3865, 7.3871, 7.3871, 7.3877, 7.3876, 7.3872, 7.3869, 7.3865, 7.3862, 7.3859, 7.3858, 7.3866, 7.3864, 7.387, 7.3876, 7.3872, 7.3869, 7.3865, 7.3864, 7.3861, 7.3857, 7.3853, 7.3859, 7.3861, 7.3867, 7.3873, 7.387, 7.3867, 7.3865, 7.3862, 7.386, 7.3856, 7.3853, 7.386, 7.3859, 7.3847, 7.3846, 7.3852, 7.3851, 7.3857, 7.3863, 7.3862, 7.3868, 7.3864, 7.3862, 7.386, 7.3856, 7.3853, 7.385, 7.3848, 7.3845, 7.3843, 7.3846, 7.3844, 7.3851, 7.3857, 7.3855, 7.3852, 7.3848, 7.3856, 7.3853, 7.385, 7.3856, 7.3855, 7.3852, 7.3848, 7.3836, 7.3824, 7.3823, 7.382, 7.3817, 7.3814, 7.3821, 7.3828, 7.3825, 7.3822, 7.3822, 7.3818, 7.3814, 7.382, 7.3827, 7.3824, 7.3829, 7.3826, 7.3814, 7.3802, 7.379, 7.3787, 7.3784, 7.3773, 7.377, 7.3767, 7.3755, 7.3752, 7.3749, 7.3746, 7.3743, 7.3749, 7.3755, 7.3753, 7.3749, 7.3746, 7.3742, 7.3738, 7.3734, 7.373, 7.373, 7.3735, 7.3731, 7.3729, 7.3725, 7.3722, 7.3728, 7.3725, 7.3722, 7.3728, 7.3724, 7.3722, 7.3722, 7.372, 7.3717, 7.3713, 7.3719, 7.3717, 7.3714, 7.371, 7.3716, 7.3716, 7.3713, 7.3711, 7.37, 7.3698, 7.3704, 7.3702, 7.3699, 7.3696, 7.3693, 7.3699, 7.3695, 7.3704, 7.3702, 7.3708, 7.3714, 7.371, 7.3706, 7.3695, 7.3702, 7.3703, 7.3699, 7.3697, 7.3693, 7.3689, 7.3695, 7.3691, 7.3688, 7.3701, 7.3689, 7.3686, 7.3694, 7.3701, 7.3708, 7.3705, 7.3703, 7.3709, 7.3716, 7.3712, 7.3708, 7.3704, 7.3703, 7.37, 7.3706, 7.3702, 7.3699, 7.3697, 7.3695, 7.3691, 7.3687, 7.3683, 7.3689, 7.3695, 7.3708, 7.3696, 7.3693, 7.3699, 7.3705, 7.3712, 7.3708, 7.3708, 7.3705, 7.3711, 7.3707, 7.3704, 7.371, 7.3716, 7.3713, 7.371, 7.3707, 7.3706, 7.3714, 7.371, 7.3707, 7.3703, 7.3709, 7.3706, 7.3694, 7.3693, 7.369, 7.3696, 7.3693, 7.3706, 7.3712, 7.37, 7.3697, 7.3693, 7.3689, 7.3695, 7.3693, 7.3689, 7.3695, 7.3691, 7.3688, 7.3685, 7.3682, 7.3679, 7.3676, 7.3673, 7.3672, 7.3669, 7.3668, 7.3674, 7.3672, 7.367, 7.3667, 7.3664, 7.367, 7.3677, 7.3683, 7.369, 7.3688, 7.3685, 7.3682, 7.3688, 7.3685, 7.3683, 7.368, 7.3678, 7.3675, 7.3681, 7.3678, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3661, 7.3658, 7.3656, 7.3663, 7.366, 7.3657, 7.3653, 7.3649, 7.3656, 7.3654, 7.3651, 7.3648, 7.3645, 7.367, 7.3677, 7.3676, 7.3672, 7.3669, 7.3675, 7.3672, 7.3677, 7.3673, 7.3679, 7.3677, 7.3683, 7.368, 7.3677, 7.3683, 7.3691, 7.3697, 7.3694, 7.3691, 7.3697, 7.3694, 7.3691, 7.3689, 7.3686, 7.3692, 7.3689, 7.3686, 7.3691, 7.3688, 7.3684, 7.3683, 7.368, 7.3676, 7.3674, 7.3678, 7.3684, 7.3681, 7.3687, 7.3693, 7.369, 7.3688, 7.3686, 7.3683, 7.3689, 7.3695, 7.3683, 7.3689, 7.3695, 7.3692, 7.3689, 7.3695, 7.3692, 7.368, 7.3685, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3686, 7.3683, 7.3688, 7.3685, 7.3697, 7.3703, 7.3701, 7.3701, 7.3699, 7.3697, 7.3698, 7.3696, 7.3695, 7.3692, 7.3689, 7.3686, 7.3684, 7.3681, 7.3687, 7.3685, 7.3691, 7.3681, 7.3678, 7.3684, 7.3681, 7.3678, 7.3675, 7.3672, 7.3679, 7.3676, 7.3673, 7.3671, 7.3668, 7.3675, 7.368, 7.3676, 7.3673, 7.367, 7.3668, 7.3665, 7.3662, 7.3659, 7.3656, 7.3652, 7.3649, 7.3647, 7.3652, 7.3649, 7.3645, 7.3665, 7.3665, 7.368, 7.3677, 7.3683, 7.3672, 7.3669, 7.3666, 7.3671, 7.3677, 7.3674, 7.3679, 7.3676, 7.3673, 7.3679, 7.3676, 7.3681, 7.3678, 7.3675, 7.3672, 7.3669, 7.3666, 7.3663, 7.366, 7.3658, 7.3664, 7.3662, 7.3668, 7.3665, 7.3661, 7.365, 7.3648, 7.3645, 7.3651, 7.3647, 7.3652, 7.3658, 7.3663, 7.3668, 7.3665, 7.3661, 7.3658, 7.3665, 7.3662, 7.3668, 7.3674, 7.3672, 7.3668, 7.3674, 7.3672, 7.3669, 7.3667, 7.3664, 7.3661, 7.3657, 7.3654, 7.3651, 7.3647, 7.3644, 7.3641, 7.3638, 7.3637, 7.3634, 7.3624, 7.3621, 7.3619, 7.3616, 7.3631, 7.3672, 7.367, 7.3659, 7.3666, 7.3664, 7.366, 7.3657, 7.3673, 7.3662, 7.3659, 7.3656, 7.3662, 7.3659, 7.3668, 7.3665, 7.3682, 7.3693, 7.369, 7.3687, 7.3684, 7.3681, 7.3683, 7.3681, 7.3687, 7.3684, 7.3689, 7.3686, 7.3675, 7.3673, 7.367, 7.3668, 7.3673, 7.3671, 7.3668, 7.3666, 7.3655, 7.3652, 7.3677, 7.3683, 7.3689, 7.3686, 7.3683, 7.3681, 7.3679, 7.3694, 7.3699, 7.3695, 7.3692, 7.3689, 7.369, 7.3687, 7.3684, 7.3681, 7.3687, 7.3684, 7.3681, 7.3679, 7.3668, 7.3667, 7.3673, 7.3679, 7.3685, 7.3683, 7.368, 7.3678, 7.3667, 7.3664, 7.3662, 7.3668, 7.3665, 7.3671, 7.3671, 7.3668, 7.3665, 7.3662, 7.3668, 7.3665, 7.3671, 7.3668, 7.3665, 7.3662, 7.3696, 7.3693, 7.3699, 7.3696, 7.3695, 7.3692, 7.3689, 7.3695, 7.3693, 7.369, 7.369, 7.3687, 7.3687, 7.3676, 7.3665, 7.3672, 7.3671, 7.3676, 7.3683, 7.369, 7.3688, 7.3686, 7.3691, 7.3689, 7.3686, 7.3684, 7.3683, 7.368, 7.3685, 7.3682, 7.3681, 7.3678, 7.3687, 7.3693, 7.369, 7.3688, 7.3685, 7.3682, 7.3688, 7.3694, 7.3693, 7.3691, 7.3697, 7.3708, 7.3705, 7.3711, 7.3709, 7.3709, 7.3706, 7.3712, 7.3709, 7.3715, 7.3719, 7.3718, 7.3715, 7.3713, 7.371, 7.3707, 7.3713, 7.3711, 7.371, 7.3708, 7.3705, 7.3711, 7.3709, 7.3715, 7.3715, 7.3721, 7.3719, 7.3719, 7.3717, 7.3715, 7.3712, 7.3703, 7.3701, 7.3715, 7.3712, 7.3737, 7.3735, 7.3732, 7.3725, 7.3722, 7.372, 7.3737, 7.3755, 7.3752, 7.3762, 7.3768, 7.3788, 7.3786, 7.3784, 7.379, 7.3787, 7.3784, 7.3808, 7.3805, 7.3803, 7.3792, 7.3807, 7.3805, 7.3811, 7.3809, 7.3815, 7.3812, 7.3819, 7.3816, 7.3813, 7.3863, 7.3869, 7.3866, 7.3871, 7.3877, 7.3874, 7.3871, 7.387, 7.3877, 7.3875, 7.3872, 7.3869, 7.3866, 7.3872, 7.3869, 7.3866, 7.3864, 7.3882, 7.3879, 7.3877, 7.3883, 7.388, 7.3877, 7.3877, 7.3875, 7.3872, 7.3869, 7.3875, 7.3873, 7.3878, 7.3875, 7.3881, 7.3887, 7.3885, 7.3891, 7.3889, 7.3887, 7.3885, 7.3902, 7.3899, 7.3888, 7.3886, 7.3883, 7.3881, 7.3879, 7.3876, 7.3881, 7.3878, 7.3884, 7.3891, 7.3888, 7.3885, 7.3882, 7.3879, 7.3884, 7.3882, 7.3887, 7.3884, 7.3882, 7.3879, 7.3876, 7.3882, 7.3888, 7.3885, 7.3891, 7.3888, 7.3877, 7.3874, 7.3871, 7.3868, 7.3857, 7.3846, 7.3844, 7.3841, 7.3838, 7.3836, 7.3833, 7.383, 7.3835, 7.3833, 7.3832, 7.383, 7.3828, 7.3825, 7.3831, 7.3838, 7.3837, 7.3835, 7.3844, 7.3846, 7.3843, 7.3841, 7.3839, 7.3839, 7.3845, 7.3842, 7.384, 7.3837, 7.3843, 7.3848, 7.3845, 7.3851, 7.3848, 7.3847, 7.3844, 7.3843, 7.384, 7.3837, 7.3835, 7.385, 7.3856, 7.3862, 7.3851, 7.3849, 7.3855, 7.3844, 7.3841, 7.3839, 7.3836, 7.3841, 7.3843, 7.3835, 7.384, 7.3837, 7.3834, 7.3831, 7.3837, 7.3836, 7.3833, 7.383, 7.3828, 7.3825, 7.3824, 7.3829, 7.3826, 7.3823, 7.3821, 7.3818, 7.3815, 7.3813, 7.3811, 7.3808, 7.3806, 7.3812, 7.3809, 7.3814, 7.3812, 7.3817, 7.3816, 7.3813, 7.3819, 7.3816, 7.3822, 7.3828, 7.3835, 7.3832, 7.383, 7.3836, 7.3833, 7.3831, 7.3829, 7.3827, 7.3824, 7.3829, 7.3826, 7.3823, 7.3821, 7.3819, 7.3817, 7.3814, 7.382, 7.3817, 7.3814, 7.3817, 7.3815, 7.3813, 7.3818, 7.3815, 7.3804, 7.3801, 7.3798, 7.3795, 7.38, 7.3799, 7.3804, 7.3803, 7.3801, 7.379, 7.3795, 7.3792, 7.3789, 7.3787, 7.3784, 7.3781, 7.378, 7.3786, 7.3784, 7.3781, 7.3779, 7.3777, 7.3774, 7.3779, 7.3776, 7.3774, 7.378, 7.3769, 7.3775, 7.3772, 7.3769, 7.3766, 7.378, 7.3784, 7.3781, 7.3786, 7.3783, 7.3788, 7.3785, 7.379, 7.3808, 7.3805, 7.3805, 7.3811, 7.3808, 7.3805, 7.3822, 7.3819, 7.3817, 7.3822, 7.3821, 7.3818, 7.3818, 7.3815, 7.3816, 7.3815, 7.3813, 7.381, 7.3824, 7.3846, 7.3846, 7.3844, 7.3842, 7.3847, 7.3848, 7.3845, 7.3845, 7.3843, 7.385, 7.3859, 7.3857, 7.3854, 7.3851, 7.3882, 7.3879, 7.3884, 7.3881, 7.3878, 7.3875, 7.3873, 7.3878, 7.3875, 7.3873, 7.3878, 7.3883, 7.3896, 7.3893, 7.389, 7.3888, 7.3893, 7.3906, 7.3911, 7.3909, 7.3907, 7.3904, 7.3901, 7.3898, 7.3895, 7.3893, 7.389, 7.3895, 7.39, 7.3905, 7.3902, 7.3899, 7.39, 7.3906, 7.3912, 7.3918, 7.3916, 7.3921, 7.3919, 7.3932, 7.3929, 7.3927, 7.3924, 7.3914, 7.3911, 7.3916, 7.3926, 7.3923, 7.392, 7.3917, 7.3923, 7.392, 7.3926, 7.3924, 7.3922, 7.3927, 7.3925, 7.3931, 7.3944, 7.395, 7.3947, 7.3952, 7.3954, 7.3959, 7.3964, 7.3961, 7.3958, 7.3955, 7.3952, 7.3949, 7.3954, 7.3959, 7.3964, 7.3962, 7.3959, 7.3948, 7.3938, 7.3943, 7.3948, 7.3945, 7.395, 7.3955, 7.3976, 7.399, 7.3987, 7.4, 7.3997, 7.4004, 7.4002, 7.4, 7.4007, 7.4013, 7.4018, 7.4015, 7.4012, 7.4034, 7.4031, 7.4029, 7.4034, 7.4047, 7.4046, 7.4051, 7.4056, 7.4053, 7.4051, 7.4057, 7.4054, 7.4059, 7.4057, 7.4054, 7.4059, 7.4056, 7.4061, 7.4066, 7.4071, 7.4068, 7.4065, 7.4062, 7.4067, 7.4064, 7.4062, 7.4059, 7.4056, 7.4061, 7.4066, 7.4071, 7.4068, 7.4065, 7.407, 7.4075, 7.408, 7.4086, 7.4083, 7.4088, 7.4109, 7.4114, 7.4112, 7.4109, 7.4106, 7.4103, 7.41, 7.4097, 7.4098, 7.4103, 7.4133, 7.4138, 7.4136, 7.415, 7.4147, 7.4145, 7.4158, 7.4188, 7.4202, 7.4199, 7.4204, 7.4209, 7.4214, 7.4227, 7.4233, 7.4238, 7.4243, 7.424, 7.4239, 7.4237, 7.4235, 7.4232, 7.4233, 7.4225, 7.4261, 7.4272, 7.4283, 7.4347, 7.4345, 7.4393, 7.439, 7.4388, 7.4394, 7.4393, 7.439, 7.4387, 7.4384, 7.439, 7.4396, 7.4393, 7.4391, 7.4389, 7.4387, 7.4377, 7.4382, 7.4387, 7.4385, 7.4382, 7.4371, 7.4377, 7.4383, 7.4388, 7.4385, 7.4382, 7.438, 7.4385, 7.4399, 7.4404, 7.4409, 7.4414, 7.4411, 7.4416, 7.4421, 7.4418, 7.4415, 7.4412, 7.4425, 7.4422, 7.4419, 7.4424, 7.4413, 7.441, 7.4407, 7.4404, 7.4401, 7.4406, 7.4403, 7.4408, 7.4407, 7.4412, 7.441, 7.4415, 7.4414, 7.4412, 7.4402, 7.44, 7.4397, 7.4394, 7.4398, 7.4395, 7.4392, 7.4397, 7.4395, 7.44, 7.4397, 7.4402, 7.4399, 7.4397, 7.4396, 7.4394, 7.4392, 7.4389, 7.4386, 7.4383, 7.4389, 7.4394, 7.4391, 7.4389, 7.4412, 7.441, 7.4424, 7.4423, 7.4428, 7.4425, 7.443, 7.4452, 7.4449, 7.4446, 7.446, 7.4457, 7.4454, 7.4451, 7.4448, 7.4445, 7.445, 7.4447, 7.4452, 7.445, 7.4455, 7.4453, 7.445, 7.4447, 7.4444, 7.4441, 7.4438, 7.4435, 7.4432, 7.4429, 7.4426, 7.4424, 7.4421, 7.4426, 7.4431, 7.4429, 7.4426, 7.4423, 7.442, 7.4417, 7.4414, 7.4412, 7.4402, 7.4407, 7.4404, 7.4401, 7.4398, 7.4395, 7.4393, 7.4391, 7.4396, 7.4394, 7.4391, 7.4396, 7.4394, 7.4392, 7.4389, 7.4387, 7.4384, 7.4389, 7.4387, 7.4392, 7.4389, 7.4386, 7.4383, 7.438, 7.4377, 7.4374, 7.4371, 7.4368, 7.4365, 7.4362, 7.4383, 7.438, 7.4394, 7.4391, 7.4404, 7.4401, 7.4398, 7.4388, 7.4385, 7.4387, 7.4387, 7.4392, 7.4397, 7.4394, 7.4391, 7.4388, 7.4386, 7.4383, 7.4381, 7.4378, 7.4375, 7.4365, 7.4363, 7.4361, 7.4366, 7.437, 7.4374, 7.4371, 7.4369, 7.4367, 7.4365, 7.4362, 7.4366, 7.4363, 7.4367, 7.4365, 7.437, 7.4375, 7.4381, 7.4386, 7.4383, 7.438, 7.4377, 7.4374, 7.4371, 7.4368, 7.4366, 7.4363, 7.436, 7.4357, 7.4354, 7.4351, 7.4348, 7.4345, 7.4342, 7.4339, 7.4337, 7.4334, 7.4331, 7.4328, 7.4325, 7.4322, 7.4327, 7.4324, 7.4329, 7.4326, 7.4324, 7.4321, 7.4326, 7.4316, 7.4321, 7.4319, 7.4317, 7.4314, 7.4328, 7.4325, 7.4324, 7.4322, 7.432, 7.4318, 7.4316, 7.4313, 7.431, 7.4308, 7.4306, 7.4303, 7.4309], '192.168.122.120': [5.3036, 5.3753, 5.3718, 5.3877, 5.3696, 5.3818, 5.5055, 5.4997, 5.4846, 5.4799, 5.4741, 5.9277, 5.9078, 5.8731, 5.8461, 5.8487, 5.8232, 5.7978, 5.7799, 5.8003, 5.7756, 5.763, 5.7592, 5.7407, 5.7259, 5.7155, 6.1667, 6.3308, 6.3473, 6.5264, 6.5005, 6.476, 6.5951, 6.5743, 6.5396, 6.5103, 6.495, 6.6023, 6.569, 6.5375, 6.6425, 6.6113, 6.5847, 6.5553, 6.5418, 6.5157, 6.4921, 6.4709, 6.445, 6.4211, 6.4017, 6.3818, 6.3677, 6.3506, 6.3436, 6.4253, 6.4977, 6.5734, 6.5673, 6.548, 6.5284, 6.5957, 6.5758, 6.5659, 6.5477, 6.532, 6.5164, 6.501, 6.4908, 6.8243, 6.8088, 6.8648, 6.9136, 6.8998, 6.9663, 6.9627, 6.9467, 6.9306, 6.9131, 6.9178, 6.9011, 6.8858, 6.8701, 6.8552, 6.8403, 6.7657, 6.7584, 6.7438, 6.7505, 6.8573, 6.9021, 7.0158, 7.0528, 7.034, 7.023, 7.0073, 6.9955, 7.0375, 7.0392, 7.0231, 7.0087, 6.996, 6.9805, 6.9647, 6.9567, 6.9936, 6.9882, 6.9741, 6.96, 6.9485, 6.9342, 6.9694, 6.9856, 7.0637, 7.0574, 7.0504, 7.0353, 7.0667, 7.099, 7.0851, 7.0838, 7.0724, 7.1037, 7.1085, 7.0974, 7.0877, 7.0781, 7.0652, 7.0656, 7.0539, 7.0485, 7.0345, 7.024, 7.0234, 7.0236, 7.0155, 7.0047, 6.992, 6.981, 6.972, 6.968, 6.9595, 6.9167, 6.9124, 6.911, 6.9009, 6.8924, 6.9188, 6.9562, 6.9465, 6.9379, 6.9297, 6.9232, 6.9256, 6.9171, 6.9088, 6.9064, 6.8987, 6.8928, 6.8861, 6.8786, 6.8738, 6.8701, 6.864, 6.9466, 6.9429, 6.934, 6.9263, 6.9217, 6.9474, 6.939, 6.9294, 6.92, 6.9121, 6.904, 6.8989, 6.8907, 6.8879, 6.8816, 6.875, 6.8684, 6.8606, 6.883, 6.8745, 6.8658, 6.8607, 6.8815, 6.9028, 6.9254, 6.9179, 6.9387, 6.9591, 6.9508, 6.9441, 6.9364, 6.9311, 6.9308, 6.9255, 6.9192, 6.9386, 6.9311, 6.9036, 6.923, 6.9425, 6.9352, 6.9348, 6.9049, 6.8981, 6.9031, 6.9072, 7.0105, 7.0039, 7.0253, 7.0529, 7.0442, 7.0602, 7.0761, 7.0469, 7.0401, 7.0332, 7.0305, 7.0239, 7.0434, 7.0592, 7.0524, 7.0471, 7.0398, 7.0338, 7.0322, 7.0254, 7.02, 7.0131, 6.988, 6.9816, 6.9986, 6.9921, 6.986, 6.9597, 6.9762, 6.9706, 6.9643, 6.9876, 6.9812, 6.975, 6.97, 6.9645, 6.9806, 6.9734, 6.9725, 6.9662, 6.9813, 6.9753, 6.9711, 6.969, 6.945, 6.9555, 6.9503, 6.9454, 6.9405, 6.9375, 6.9385, 6.9337, 6.929, 6.9246, 6.9388, 6.9339, 6.9306, 6.9253, 6.9229, 6.9187, 6.9341, 6.9491, 6.9441, 6.9842, 6.9787, 6.9949, 7.0172, 7.0126, 7.0091, 7.005, 6.9993, 7.0136, 6.9909, 6.9912, 6.9883, 6.9963, 7.002, 6.9986, 7.0148, 7.0134, 7.0144, 7.0305, 7.0272, 7.0254, 7.024, 7.0217, 7.0201, 7.0179, 7.0147, 7.0295, 7.0253, 7.0234, 7.0378, 7.0352, 7.031, 7.0277, 7.0409, 7.0365, 7.0319, 7.0457, 7.0413, 7.0388, 7.0349, 7.0309, 7.0447, 7.056, 7.0514, 7.0471, 7.0446, 7.0444, 7.0244, 7.0213, 7.0391, 7.0195, 7.0316, 7.0443, 7.0401, 7.0373, 7.0336, 7.0294, 7.0419, 7.0531, 7.0986, 7.1523, 7.1475, 7.1424, 7.137, 7.1489, 7.1434, 7.141, 7.1364, 7.1327, 7.1288, 7.1402, 7.1356, 7.132, 7.1268, 7.1123, 7.107, 7.1024, 7.0993, 7.1101, 7.121, 7.1316, 7.1293, 7.1135, 7.1083, 7.1044, 7.0861, 7.081, 7.0766, 7.0867, 7.0847, 7.0796, 7.0751, 7.0699, 7.0653, 7.0754, 7.071, 7.0678, 7.0648, 7.0744, 7.07, 7.0802, 7.0769, 7.072, 7.0677, 7.0631, 7.0586, 7.0561, 7.0515, 7.0612, 7.0443, 7.0542, 7.0508, 7.0494, 7.0587, 7.0684, 7.0809, 7.0805, 7.078, 7.0746, 7.0832, 7.0866, 7.0876, 7.0886000000000005, 7.089600000000001, 7.0875, 7.0836, 7.0918, 7.0879, 7.0842, 7.0797, 7.0778, 7.0767, 7.0732, 7.0695, 7.0669, 7.0631, 7.0476, 7.0469, 7.0445, 7.0455000000000005, 7.046500000000001, 7.0426, 7.0528, 7.0511, 7.0521, 7.0479, 7.0578, 7.0536, 7.0495, 7.059, 7.0556, 7.0519, 7.0639, 7.0625, 7.0583, 7.0666, 7.0633, 7.0603, 7.0565, 7.0525, 7.0499, 7.0643, 7.0606, 7.0616, 7.0591, 7.055, 7.0517, 7.048, 7.0447, 7.0405, 7.0373, 7.0456, 7.043, 7.0393, 7.0353, 7.0318, 7.0282, 7.0372, 7.0332, 7.0299, 7.0267, 7.0229, 7.0457, 7.0417, 7.0493, 7.0568, 7.0532, 7.0624, 7.0515, 7.0503, 7.0475, 7.0442, 7.0668, 7.0749, 7.0715, 7.1015, 7.0984, 7.106, 7.1174, 7.1138, 7.1102, 7.1178, 7.1142, 7.1107, 7.1069, 7.1152, 7.1116, 7.1089, 7.1051, 7.1028, 7.1, 7.1184, 7.1211, 7.1182, 7.1154, 7.112, 7.13, 7.1265, 7.1232, 7.12, 7.1274, 7.1347, 7.1311, 7.1288, 7.1471, 7.1546, 7.1627, 7.1701, 7.1664, 7.1631, 7.1671, 7.1644, 7.1617, 7.1581, 7.1546, 7.1512, 7.1484, 7.145, 7.1447, 7.1413, 7.1381, 7.1345, 7.1218, 7.1186, 7.1209, 7.1184, 7.1266, 7.149, 7.1635, 7.1804, 7.1973, 7.2062, 7.2029, 7.211, 7.208, 7.2058, 7.2022, 7.1992, 7.1967, 7.2032, 7.2001, 7.2076, 7.2147, 7.2219, 7.2383, 7.2453, 7.2614, 7.2681, 7.2647, 7.2623, 7.269, 7.2848, 7.2839, 7.2806, 7.2774, 7.2844, 7.291, 7.2875, 7.2939, 7.2964, 7.3124, 7.3189, 7.3248, 7.3125, 7.3088, 7.3101, 7.3071, 7.3129, 7.3467, 7.3529, 7.3587, 7.3554, 7.3522, 7.3503, 7.3488, 7.3474, 7.3444, 7.3503, 7.3562, 7.3533, 7.3613, 7.368, 7.3667, 7.3722, 7.3692, 7.3661, 7.3728, 7.3693, 7.366, 7.3722, 7.361, 7.3494, 7.3464, 7.3438, 7.35, 7.3566, 7.3634, 7.3604, 7.366, 7.3631, 7.3696, 7.3666, 7.3679, 7.3646, 7.3617, 7.3585, 7.3552, 7.361, 7.3671, 7.3647, 7.3611, 7.3622, 7.3624, 7.3592, 7.3559, 7.3524, 7.3493, 7.3549, 7.3517, 7.3485, 7.3541, 7.3545, 7.3696, 7.3663, 7.3809, 7.3783, 7.375, 7.372, 7.3777, 7.3743, 7.3883, 7.4019, 7.3986, 7.3953, 7.3933, 7.3909, 7.4048, 7.4016, 7.3993, 7.3987, 7.4155, 7.4209, 7.4181, 7.4166, 7.4136, 7.4105, 7.4086, 7.4152, 7.4121, 7.409, 7.4069, 7.4117, 7.4085, 7.4063, 7.4036, 7.3931, 7.3902, 7.388, 7.385, 7.3826, 7.3793, 7.3839, 7.389, 7.3858, 7.3826, 7.3873, 7.3921, 7.3898, 7.3884, 7.3931, 7.399, 7.3959, 7.3929, 7.3982, 7.3951, 7.3927, 7.3907, 7.3962, 7.393, 7.3914, 7.3884, 7.3853, 7.3825, 7.383500000000001, 7.3803, 7.3776, 7.3753, 7.3728, 7.37, 7.3674, 7.3645, 7.3621, 7.3592, 7.3673, 7.3656, 7.3637, 7.368, 7.3735, 7.3711, 7.3768, 7.3814, 7.3795, 7.3775, 7.3745, 7.3723, 7.3707, 7.3623, 7.3599, 7.3572, 7.355, 7.3526, 7.3577, 7.3556, 7.3529, 7.3502, 7.349, 7.3463, 7.345, 7.343, 7.3405, 7.3376, 7.3493, 7.3474, 7.3448, 7.3421, 7.3402, 7.3374, 7.3502, 7.3482, 7.3543, 7.3517, 7.3492, 7.3482, 7.3458, 7.3429, 7.3404, 7.3387, 7.3364, 7.3351, 7.3397, 7.3377, 7.335, 7.3324, 7.3301, 7.3273, 7.325, 7.323, 7.321, 7.3194, 7.3243, 7.3216, 7.3203, 7.3178, 7.3152, 7.3194, 7.324, 7.3286, 7.3264, 7.3306, 7.3291, 7.3333, 7.3311, 7.3299, 7.3279, 7.334, 7.335, 7.3404, 7.3379, 7.3428, 7.3467, 7.3442, 7.3417, 7.3463, 7.3437, 7.3482, 7.3458, 7.3431, 7.3458, 7.343, 7.3405, 7.3449, 7.3437, 7.3669, 7.3649, 7.3627, 7.3685, 7.3668, 7.3644, 7.3621, 7.3594, 7.357, 7.3549, 7.3525, 7.3501, 7.3475, 7.3451, 7.3427, 7.3424, 7.3469, 7.3445, 7.3422, 7.3405, 7.3331, 7.3319, 7.3301, 7.328, 7.3266, 7.3249, 7.3235, 7.3217, 7.3206, 7.3183, 7.3167, 7.315, 7.3128, 7.3347, 7.3321, 7.3375, 7.3357, 7.334, 7.3315, 7.3331, 7.3312, 7.3294, 7.3342, 7.3322, 7.3302, 7.3294, 7.3337, 7.3381, 7.3356, 7.3338, 7.3322, 7.3297, 7.3273, 7.325, 7.3225, 7.3203, 7.3247, 7.3222, 7.3199, 7.3176, 7.3221, 7.3261, 7.3301, 7.3278, 7.3281, 7.3322, 7.3304, 7.3286, 7.3335, 7.3313, 7.3295, 7.3272, 7.3251, 7.323, 7.3279, 7.3258, 7.3533, 7.3513, 7.3548, 7.3529, 7.3505, 7.3505, 7.349, 7.3473, 7.3397, 7.3375, 7.3416, 7.3394, 7.3371, 7.3349, 7.3394, 7.337, 7.3348, 7.3329, 7.3307, 7.3347, 7.3325, 7.3305, 7.3281, 7.3268, 7.3309, 7.3286, 7.3327, 7.3308, 7.329, 7.3336, 7.338, 7.3361, 7.334, 7.335, 7.3336, 7.3313, 7.3355, 7.3332, 7.3315, 7.3297, 7.334, 7.3317, 7.3301, 7.3279, 7.3375, 7.3353, 7.3334, 7.3315, 7.3294, 7.3276, 7.3325, 7.3312, 7.3289, 7.3276, 7.3313, 7.3301, 7.3283, 7.3269, 7.3307, 7.3288, 7.3271, 7.3316, 7.3326, 7.3311, 7.3321000000000005, 7.333100000000001, 7.3309, 7.3292, 7.3332, 7.3377, 7.3416, 7.345, 7.3545, 7.3534, 7.3522, 7.3503, 7.3485, 7.3486, 7.3466, 7.3506, 7.3497, 7.3534, 7.357, 7.355, 7.3529, 7.3509, 7.3492, 7.3532, 7.3511, 7.3549, 7.3529, 7.3508, 7.3545, 7.3555, 7.3538, 7.3518, 7.3551, 7.3588, 7.3568, 7.355, 7.3535, 7.3521, 7.3507, 7.349, 7.3469, 7.3452, 7.3493, 7.3473, 7.3517, 7.3523, 7.3509, 7.3496, 7.3528, 7.378, 7.3813, 7.3798, 7.3781, 7.376, 7.3741, 7.3721, 7.3701, 7.3894, 7.3881, 7.3861, 7.3844, 7.3879, 7.3913, 7.3892, 7.3894, 7.3904, 7.3885, 7.3818, 7.3803, 7.3783, 7.3767, 7.3748, 7.3692, 7.3681, 7.366, 7.3641, 7.3677, 7.3722, 7.3707, 7.3687, 7.3679, 7.3714, 7.3694, 7.3736, 7.3774, 7.3759, 7.3744, 7.3779, 7.376, 7.3749, 7.3734, 7.3721, 7.3656, 7.3637, 7.362, 7.3601, 7.3615, 7.3595, 7.3574, 7.3587, 7.3567, 7.3547, 7.3585, 7.3618, 7.3602, 7.3589, 7.3575, 7.3556, 7.3589, 7.362, 7.3601, 7.3582, 7.3618, 7.3628, 7.3629, 7.3612, 7.3782, 7.3807, 7.3789, 7.3798, 7.3835, 7.3874, 7.3906, 7.3939, 7.392, 7.3902, 7.3935, 7.4099, 7.4085, 7.4119, 7.4153, 7.4139, 7.4128, 7.411, 7.4089, 7.4118, 7.4107, 7.4087, 7.407, 7.4058, 7.4091, 7.4133, 7.4228, 7.4217, 7.4199, 7.4184, 7.4219, 7.4257, 7.4241, 7.4275, 7.4304, 7.4439, 7.4429, 7.4411, 7.4449, 7.4433, 7.4414, 7.4401, 7.4336, 7.4421, 7.4424, 7.4404, 7.4385, 7.4368, 7.4352, 7.4337, 7.4324, 7.4309, 7.4289, 7.4275, 7.4307, 7.4292, 7.4272, 7.4252, 7.4232, 7.4287, 7.4268, 7.4249, 7.423, 7.422, 7.4201, 7.4185, 7.4167, 7.415, 7.4182, 7.4163, 7.4147, 7.4128, 7.411, 7.4096, 7.4081, 7.4071, 7.4075, 7.4103, 7.4093, 7.4078, 7.4107, 7.4088, 7.4069, 7.4057, 7.406700000000001, 7.407700000000001, 7.4057, 7.4038, 7.4019, 7.3964, 7.3902, 7.3885, 7.3868, 7.3855, 7.3839, 7.3824, 7.381, 7.3842, 7.3826, 7.3809, 7.3795, 7.3778, 7.3764, 7.3796, 7.3779, 7.3813, 7.3845, 7.3877, 7.3871, 7.3855, 7.3846, 7.3836, 7.398, 7.3966, 7.3967, 7.395, 7.3939, 7.3925, 7.3981, 7.4134, 7.412, 7.4153, 7.4139, 7.4077, 7.4062, 7.409, 7.4075, 7.4059, 7.4045, 7.4079, 7.4063, 7.4049, 7.4045, 7.4035, 7.402, 7.4006, 7.3996, 7.4024, 7.3968, 7.395, 7.3983, 7.3968, 7.3954, 7.3988, 7.3974, 7.396, 7.397, 7.3954, 7.396400000000001, 7.3947, 7.3983, 7.3979, 7.3962, 7.3947, 7.3929, 7.392, 7.3906, 7.3889, 7.3875, 7.3861, 7.3847, 7.3831, 7.3865, 7.3848, 7.3877, 7.3907, 7.3937, 7.3964, 7.3949, 7.3959, 7.3941, 7.3947, 7.3932, 7.3959, 7.3989, 7.3976, 7.4039, 7.4049000000000005, 7.4032, 7.4195, 7.4219, 7.4336, 7.4324, 7.4342, 7.4328, 7.4344, 7.4372, 7.4356, 7.4346, 7.433, 7.4461, 7.4443, 7.4439, 7.4423, 7.4406, 7.439, 7.4418, 7.4405, 7.439, 7.4374, 7.4318, 7.439, 7.4422, 7.4404, 7.4388, 7.4562, 7.4548, 7.4534, 7.4517, 7.4504, 7.4531, 7.4514, 7.4501, 7.4503, 7.4489, 7.4521, 7.4547, 7.4536, 7.4563, 7.4552, 7.4579, 7.4566, 7.455, 7.4536, 7.4563, 7.4554, 7.4539, 7.4525, 7.4508, 7.4536, 7.4526, 7.4514, 7.4498, 7.4558, 7.4545, 7.4538, 7.457, 7.4556, 7.4543, 7.4579, 7.4562, 7.4594, 7.4578, 7.4564, 7.4551, 7.4534, 7.4534, 7.452, 7.4545, 7.4537, 7.4527, 7.4551, 7.4541, 7.4529, 7.4625, 7.4653, 7.4643, 7.4631, 7.4615, 7.4602, 7.4588, 7.4576, 7.4561, 7.455, 7.454, 7.4524, 7.4508, 7.4497, 7.4528, 7.4556, 7.4541, 7.4524, 7.4514, 7.4501, 7.4452, 7.4437, 7.4424, 7.4411, 7.4404, 7.4391, 7.4417, 7.4401, 7.4386, 7.4371, 7.4398, 7.4383, 7.4338, 7.4337, 7.4364, 7.439, 7.4374, 7.4366, 7.4351, 7.4337, 7.4323, 7.4315, 7.4299, 7.4247, 7.424, 7.4225, 7.4211, 7.4197, 7.4182, 7.4208, 7.4196, 7.4181, 7.4168, 7.4155, 7.422, 7.4245, 7.4232, 7.4216, 7.4213, 7.4196, 7.4228, 7.4212, 7.42, 7.4226, 7.421, 7.4232, 7.4259, 7.4244, 7.4305, 7.4294, 7.435, 7.4336, 7.4334, 7.436, 7.4352, 7.434, 7.4327, 7.4439, 7.4447, 7.4457, 7.4445, 7.4455, 7.4448, 7.4436, 7.446, 7.4445, 7.4433, 7.4421, 7.4448, 7.4438, 7.4422, 7.4416, 7.4405, 7.4427, 7.445, 7.4476, 7.4465, 7.445, 7.4435, 7.446, 7.4445, 7.4406, 7.4416, 7.4426000000000005, 7.443600000000001, 7.4459, 7.4444, 7.4511, 7.45, 7.4489, 7.4474, 7.4477, 7.4429, 7.4414, 7.4438, 7.4429, 7.4464, 7.4449, 7.4437, 7.4465, 7.4489, 7.4475, 7.4491, 7.4476, 7.4464, 7.4452, 7.444, 7.443, 7.4415, 7.4436, 7.4425, 7.4411, 7.4433, 7.4455, 7.4448, 7.4433, 7.442, 7.4405, 7.439, 7.4379, 7.4364, 7.4391, 7.4413, 7.4434, 7.4422, 7.451, 7.4536, 7.4523, 7.4513, 7.4499, 7.4484, 7.4437, 7.4422, 7.4447, 7.4473, 7.4459, 7.4445, 7.447, 7.4457, 7.4442, 7.4427, 7.4417, 7.4404, 7.4391, 7.438, 7.4439, 7.4425, 7.445, 7.4439, 7.4467, 7.4477, 7.4465, 7.4493, 7.4481, 7.4468, 7.4495, 7.4516, 7.4505, 7.4492, 7.448, 7.4467, 7.449, 7.4479, 7.447, 7.4495, 7.4481, 7.4468, 7.4461, 7.4486, 7.451, 7.4498, 7.4483, 7.4472, 7.4459, 7.445, 7.4472, 7.4459, 7.4446, 7.4433, 7.442, 7.4444, 7.4434, 7.4457, 7.4478, 7.4465, 7.445, 7.4435, 7.4457, 7.4445, 7.4472, 7.4464, 7.4454, 7.4443, 7.4396, 7.4384, 7.4405, 7.4392, 7.438, 7.437, 7.436, 7.4347, 7.4345, 7.4333, 7.4326, 7.4318, 7.4307, 7.4296, 7.4287, 7.4274, 7.4345, 7.4333, 7.4373, 7.4428, 7.4384, 7.4371, 7.4336, 7.43, 7.4288, 7.4332, 7.4289, 7.4276, 7.4302, 7.4327, 7.4415, 7.4412, 7.4399, 7.4386, 7.4485, 7.4472, 7.4471, 7.4493, 7.4483, 7.447, 7.4457, 7.4444, 7.4435, 7.4422, 7.441, 7.4396, 7.4416, 7.4402, 7.4423, 7.4409, 7.4399, 7.4388, 7.4411, 7.4397, 7.4416, 7.4405, 7.4427, 7.4414, 7.4403, 7.4391, 7.4379, 7.4378, 7.4401, 7.4393, 7.435, 7.4338, 7.4329, 7.4317, 7.4307, 7.4293, 7.4279, 7.4267, 7.4255, 7.4278, 7.4268, 7.4255, 7.4278, 7.4272, 7.4283, 7.4303, 7.4332, 7.4352, 7.4341, 7.4363, 7.4326, 7.4314, 7.4301, 7.429, 7.4277, 7.4269, 7.4259, 7.4246, 7.427, 7.4289, 7.4277, 7.4264, 7.4252, 7.4282, 7.4342, 7.4419, 7.4409, 7.4401, 7.4395, 7.4381, 7.4372, 7.4365, 7.4355, 7.4347, 7.4337, 7.4327, 7.4314, 7.4303, 7.4428, 7.4415, 7.4435, 7.4424, 7.4445, 7.4435, 7.4426, 7.4412, 7.4399, 7.4423, 7.4414, 7.4401, 7.4388, 7.4381, 7.4368, 7.4368, 7.4392, 7.4411, 7.4398, 7.4387, 7.4406, 7.4393, 7.4383, 7.437, 7.4357, 7.4346, 7.4346, 7.4334, 7.4327, 7.4314, 7.43, 7.4292, 7.428, 7.4269, 7.4259, 7.425, 7.4237, 7.4257, 7.4247, 7.4265, 7.4286, 7.4305, 7.4327, 7.4314, 7.4304, 7.4292, 7.4311, 7.4331, 7.4353, 7.4342, 7.4331, 7.4321, 7.431, 7.432, 7.4345, 7.4336, 7.4358, 7.4346, 7.4333, 7.4324, 7.4312, 7.4333, 7.4321, 7.4309, 7.433, 7.432, 7.4312, 7.43, 7.4288, 7.4355, 7.4343, 7.4333, 7.432, 7.4307, 7.4299, 7.4322, 7.4343, 7.4333, 7.432, 7.4309, 7.4302, 7.429, 7.4277, 7.4265, 7.4254, 7.4241, 7.4228, 7.4217, 7.4242, 7.4234, 7.4254, 7.4217, 7.4204, 7.4227, 7.4238, 7.4264, 7.426, 7.4259, 7.4247, 7.4268, 7.4264, 7.4254, 7.4242, 7.4232, 7.4224, 7.4219, 7.4239, 7.4231, 7.4225, 7.4213, 7.4203, 7.4195, 7.4182, 7.4172, 7.4159, 7.4213, 7.4207, 7.4248, 7.4269, 7.4229, 7.4219, 7.4209, 7.4198, 7.4218, 7.4206, 7.4225, 7.4242, 7.4263, 7.4282, 7.4272, 7.4341, 7.433, 7.4353, 7.4342, 7.4331, 7.4333, 7.4325, 7.4318, 7.4306, 7.4302, 7.4293, 7.4282, 7.4283, 7.4272, 7.4292, 7.428, 7.4272, 7.426, 7.4251, 7.4268, 7.429, 7.4278, 7.4267, 7.426, 7.4249, 7.4238, 7.4226, 7.4216, 7.4206, 7.4195, 7.4194, 7.4189, 7.4179, 7.4167, 7.4185, 7.4173, 7.4164, 7.419, 7.4179, 7.4198, 7.4188, 7.4208, 7.4196, 7.4189, 7.4178, 7.4167, 7.4159, 7.4148, 7.4136, 7.4125, 7.4144, 7.4163, 7.4155, 7.4174, 7.4164, 7.4153, 7.4143, 7.4166, 7.4155, 7.4144, 7.4136, 7.4124, 7.4112, 7.4131, 7.412, 7.411, 7.4133, 7.4122, 7.4112, 7.4104, 7.4099, 7.4152, 7.4141, 7.4131, 7.4095, 7.4085, 7.4074, 7.4062, 7.4055, 7.4078, 7.4066, 7.406, 7.4051, 7.4071, 7.406, 7.4049, 7.4096, 7.4086, 7.4105, 7.4155, 7.4145, 7.4134, 7.4137, 7.4125, 7.4131, 7.4121, 7.4113, 7.4134, 7.4135, 7.4125, 7.4193, 7.4196, 7.419, 7.4226, 7.4216, 7.4276, 7.4264, 7.4254, 7.4242, 7.4237, 7.4226, 7.4215, 7.4234, 7.4226, 7.4216, 7.4205, 7.4222, 7.4255, 7.4218, 7.4207, 7.4198, 7.4188, 7.4177, 7.4167, 7.4186, 7.4178, 7.4218, 7.421, 7.4203, 7.4191, 7.421, 7.42, 7.4193, 7.421, 7.42, 7.4189, 7.4206, 7.4196, 7.4206, 7.4196, 7.4185, 7.4174, 7.4164, 7.4154, 7.4146, 7.4137, 7.4128, 7.4117, 7.4134, 7.4125, 7.4114, 7.4104, 7.4121, 7.411, 7.4099, 7.4117, 7.4109, 7.4098, 7.4087, 7.4078, 7.4095, 7.4113, 7.4102, 7.407, 7.4063, 7.4059, 7.4023, 7.3988, 7.4006, 7.3995, 7.3985, 7.3978, 7.3969, 7.3959, 7.3985, 7.3975, 7.3965, 7.3954, 7.3971, 7.3962, 7.3954, 7.3946, 7.3936, 7.3928, 7.3921, 7.391, 7.3899, 7.3895, 7.3884, 7.3877, 7.3907, 7.3961, 7.3984, 7.3979, 7.3969, 7.3962, 7.3981, 7.3972, 7.3964, 7.3954, 7.3945, 7.3935, 7.3952, 7.3941, 7.3962, 7.3955, 7.3946, 7.3938, 7.3933, 7.3984, 7.3977, 7.3971, 7.3973, 7.3995, 7.3987, 7.3993, 7.402, 7.4013, 7.4013, 7.4044, 7.4044, 7.4017, 7.4008, 7.3999, 7.3993, 7.3987, 7.3977, 7.3995, 7.4066, 7.4057, 7.4077, 7.4096, 7.407, 7.4059, 7.4052, 7.4069, 7.4121, 7.411, 7.4099, 7.4117, 7.4107, 7.4097, 7.4115, 7.4106, 7.4099, 7.4092, 7.4082, 7.4076, 7.4068, 7.4233, 7.4252, 7.4323, 7.4313, 7.4305, 7.4295, 7.4261, 7.4251, 7.4241, 7.4291, 7.4282, 7.4272, 7.4262, 7.4252, 7.4241, 7.4257, 7.4268, 7.4261, 7.4256, 7.4248, 7.4238, 7.426, 7.4252, 7.4242, 7.4232, 7.4227, 7.4217, 7.4207, 7.4217, 7.4209, 7.4202, 7.4219, 7.421, 7.42, 7.4194, 7.4185, 7.4175, 7.4167, 7.416, 7.4161, 7.4156, 7.4181, 7.4173, 7.4164, 7.4156, 7.4149, 7.4139, 7.4135, 7.4127, 7.4117, 7.4109, 7.4107, 7.4103, 7.4126, 7.4119, 7.4086, 7.4152, 7.4141, 7.413, 7.4152, 7.4141, 7.4159, 7.415, 7.4166, 7.4185, 7.4177, 7.4207, 7.4226, 7.4216, 7.422, 7.4218, 7.421, 7.4205, 7.4196, 7.4191, 7.4184, 7.4176, 7.4166, 7.4156, 7.4146, 7.4161, 7.4153, 7.4143, 7.4133, 7.4125, 7.4115, 7.4106, 7.4096, 7.4086, 7.4081, 7.4073, 7.409, 7.4082, 7.4072, 7.4062, 7.4054, 7.4045, 7.4064, 7.4058, 7.4049, 7.4044, 7.406, 7.405, 7.404, 7.4008, 7.4001, 7.3991, 7.4012, 7.4007, 7.4025, 7.4018, 7.4011, 7.4001, 7.3992, 7.4008, 7.3998, 7.3989, 7.4023, 7.4018, 7.4013, 7.4003, 7.3993, 7.3961, 7.3976, 7.3992, 7.3986, 7.3976, 7.3966, 7.3957, 7.3947, 7.3947, 7.3962, 7.3952, 7.3944, 7.3961, 7.3953, 7.3944, 7.3935, 7.3928, 7.3921, 7.3915, 7.3932, 7.3947, 7.3963, 7.398, 7.3971, 7.3962, 7.398, 7.3971, 7.3962, 7.3954, 7.3944, 7.3934, 7.3949, 7.3965, 7.398, 7.3972, 7.3963, 7.3953, 7.3969, 7.3963, 7.3953, 7.3946, 7.3938, 7.393, 7.392, 7.391, 7.39, 7.3893, 7.390300000000001, 7.3896, 7.3916, 7.3908, 7.3923, 7.3917, 7.3933, 7.3949, 7.3941, 7.3955, 7.395, 7.3942, 7.3937, 7.3953, 7.3968, 7.396, 7.3951, 7.3945, 7.3936, 7.393, 7.3922, 7.3938, 7.3948, 7.3942, 7.3933, 7.3924, 7.3919, 7.396, 7.395, 7.3941, 7.3955, 7.3972, 7.3968, 7.3958, 7.3949, 7.3985, 7.4025, 7.4041, 7.4082, 7.4072, 7.4065, 7.4058, 7.4049, 7.404, 7.4031, 7.4024, 7.4016, 7.401, 7.4, 7.3991, 7.3982, 7.3973, 7.3991, 7.3988, 7.398, 7.3973, 7.3965, 7.398, 7.3972, 7.3964, 7.3981, 7.3973, 7.3964, 7.3958, 7.395, 7.3965, 7.3957, 7.3974, 7.3973, 7.3967, 7.3961, 7.3958, 7.3952, 7.3952, 7.3969, 7.397, 7.3963, 7.3954, 7.3945, 7.3936, 7.3953, 7.3971, 7.3962, 7.3955, 7.3946, 7.397, 7.3961, 7.3954, 7.3968, 7.3964, 7.3962, 7.3953, 7.3945, 7.3915, 7.3908, 7.39, 7.3893, 7.391, 7.3904, 7.3899, 7.3914, 7.3907, 7.3898, 7.3914, 7.3934, 7.395, 7.3942, 7.3935, 7.395, 7.3944, 7.394, 7.3955, 7.3965000000000005, 7.3957, 7.3948, 7.394, 7.3931, 7.3926, 7.3919, 7.3913, 7.3928, 7.3919, 7.3911, 7.3906, 7.3904, 7.3895, 7.3909, 7.3902, 7.3949, 7.3989, 7.3982, 7.3996, 7.3988, 7.4026, 7.4018, 7.401, 7.4006, 7.3997, 7.399, 7.3965, 7.3958, 7.3934, 7.3957, 7.3948, 7.394, 7.3931, 7.3947, 7.3941, 7.4001, 7.402, 7.4035, 7.4005, 7.3999, 7.4015, 7.4008, 7.4002, 7.4002, 7.3993, 7.4007, 7.3998, 7.399, 7.3983, 7.3998, 7.3991, 7.3982, 7.3972, 7.3963, 7.3956, 7.3954, 7.3947, 7.401, 7.4001, 7.4016, 7.401, 7.4003, 7.3994, 7.3987, 7.4003, 7.3995, 7.3987, 7.4003, 7.3994, 7.3987, 7.4003, 7.3995, 7.3987, 7.398, 7.3995, 7.3966, 7.3967, 7.3958, 7.3976, 7.397, 7.3966, 7.3958, 7.3952, 7.3944, 7.3935, 7.3926, 7.3941, 7.3934, 7.3951, 7.3951, 7.3943, 7.3935, 7.3927, 7.3919, 7.3933, 7.3927, 7.3965, 7.3982, 7.3973, 7.3966, 7.3979, 7.397, 7.3964, 7.3958, 7.3952, 7.3944, 7.3917, 7.3909, 7.3901, 7.3915, 7.3911, 7.3905, 7.3898, 7.3912, 7.3906, 7.392, 7.3911, 7.3884, 7.3879, 7.387, 7.3864, 7.3855, 7.3869, 7.3868, 7.3862, 7.3876, 7.3867, 7.3839, 7.3834, 7.3829, 7.3821, 7.3812, 7.3804, 7.3817, 7.3811, 7.3802, 7.3793, 7.3808, 7.3801, 7.3814, 7.3827, 7.3819, 7.381, 7.3824, 7.3817, 7.381, 7.3803, 7.3819, 7.3811, 7.3825, 7.3818, 7.381, 7.3803, 7.3813, 7.3829, 7.3823, 7.3815, 7.3808, 7.3822, 7.3816, 7.3809, 7.3801, 7.3792, 7.3785, 7.3779, 7.3772, 7.3765, 7.3778, 7.379, 7.3803, 7.3775, 7.3789, 7.3781, 7.3775, 7.3789, 7.3781, 7.3775, 7.3766, 7.3781, 7.3773, 7.3765, 7.3757, 7.3749, 7.374, 7.3753, 7.3772, 7.3786, 7.3784, 7.3776, 7.379, 7.3782, 7.3774, 7.3768, 7.376, 7.3752, 7.3767, 7.376, 7.3796, 7.3788, 7.3786, 7.3778, 7.377, 7.3764, 7.3759, 7.3751, 7.3747, 7.3741, 7.3735, 7.3729, 7.3723, 7.3715, 7.3708, 7.3703, 7.3698, 7.3671, 7.3716, 7.3693, 7.3689, 7.3705, 7.3721, 7.3731, 7.3704, 7.3696, 7.369, 7.3682, 7.3716, 7.373, 7.3722, 7.3714, 7.3728, 7.372, 7.3712, 7.3726, 7.3717, 7.3745, 7.3738, 7.373, 7.3740000000000006, 7.3734, 7.3726, 7.3721, 7.3736, 7.375, 7.3764, 7.3759, 7.3772, 7.3786, 7.3779, 7.3773, 7.3767, 7.3762, 7.382, 7.382, 7.3834, 7.3826, 7.3818, 7.381, 7.3802, 7.3816, 7.3814, 7.3828, 7.382, 7.3812, 7.3804, 7.3797, 7.3789, 7.3815, 7.3965, 7.3942, 7.3958, 7.397, 7.3965, 7.402, 7.4034, 7.4026, 7.4041, 7.4118, 7.4113, 7.4105, 7.4098, 7.4092, 7.4087, 7.4083, 7.4075, 7.407, 7.4044, 7.404, 7.4033, 7.4051, 7.4159, 7.4151, 7.4165, 7.4157, 7.4169, 7.4161, 7.4157, 7.417, 7.4164, 7.4156, 7.4148, 7.414, 7.4134, 7.4127, 7.4119, 7.4111, 7.4124, 7.4138, 7.413, 7.4103, 7.4096, 7.4089, 7.4085, 7.4078, 7.407, 7.4064, 7.4056, 7.4051, 7.4046, 7.4039, 7.4031, 7.4025, 7.4019, 7.4015, 7.4009, 7.4031, 7.4033, 7.4045, 7.4037, 7.405, 7.4044, 7.4049, 7.4042, 7.4034, 7.4048, 7.4043, 7.4042, 7.4047, 7.4099, 7.4093, 7.4085, 7.408, 7.4093, 7.4106, 7.4119, 7.4113, 7.4105, 7.4115, 7.4125000000000005, 7.4117, 7.4131, 7.4124, 7.4137, 7.4151, 7.417, 7.4144, 7.4136, 7.4149, 7.4144, 7.4138, 7.413, 7.4124, 7.4116, 7.4108, 7.4103, 7.4095, 7.4089, 7.4081, 7.4095, 7.4088, 7.4063, 7.4055, 7.405, 7.4044, 7.4086, 7.4079, 7.409, 7.4083, 7.4078, 7.4119, 7.4112, 7.4104, 7.4126, 7.421, 7.4207, 7.4181, 7.4156, 7.413, 7.4143, 7.4136, 7.4133, 7.4155, 7.4149, 7.4161, 7.4174, 7.4168, 7.4161, 7.416, 7.4173, 7.4166, 7.4159, 7.4172, 7.4168, 7.4164, 7.4156, 7.417, 7.4162, 7.4158, 7.4152, 7.4164, 7.4157, 7.4149, 7.4141, 7.4153, 7.4147, 7.416, 7.4176, 7.4173, 7.4166, 7.4162, 7.416, 7.4154, 7.4151, 7.4144, 7.4164, 7.4148, 7.4147, 7.4142, 7.4135, 7.4132, 7.4126, 7.4137, 7.415, 7.4164, 7.4138, 7.4162, 7.4176, 7.417, 7.4164, 7.4158, 7.4153, 7.4166, 7.4158, 7.4151, 7.4144, 7.4137, 7.413, 7.4124, 7.4118, 7.411, 7.4109, 7.4106, 7.4119, 7.4113, 7.4137, 7.4131, 7.4131, 7.4169, 7.4164, 7.4157, 7.415, 7.4143, 7.4137, 7.413, 7.4123, 7.4116, 7.4128, 7.4128, 7.412, 7.4112, 7.4127, 7.412, 7.4158, 7.4152, 7.4146, 7.414, 7.4134, 7.411, 7.4105, 7.4098, 7.4099, 7.4144, 7.4136, 7.413, 7.4142, 7.4135, 7.4128, 7.4124, 7.4136, 7.4148, 7.414, 7.4153, 7.4185, 7.4178, 7.4183, 7.4199, 7.4179, 7.4173, 7.4166, 7.416, 7.4155, 7.4162, 7.4174, 7.4167, 7.4178, 7.4191, 7.4184, 7.4176, 7.4168, 7.4162, 7.4174, 7.4169, 7.4182, 7.4214, 7.4211, 7.4206, 7.4201, 7.4223, 7.4217, 7.421, 7.4203, 7.4195, 7.4171, 7.4164, 7.4176, 7.4173, 7.4165, 7.4158, 7.4151, 7.4144, 7.4143, 7.4185, 7.4197, 7.4191, 7.4184, 7.4179, 7.4172, 7.4183, 7.4176, 7.4169, 7.42, 7.4211, 7.4262, 7.4238, 7.4249, 7.4262, 7.4256, 7.4267, 7.4278, 7.4289, 7.4281, 7.4274, 7.4287, 7.4284, 7.4276, 7.4268, 7.426, 7.4273, 7.4267, 7.4261, 7.4257, 7.4233, 7.4209, 7.422, 7.4212, 7.4223, 7.4221, 7.4199, 7.4193, 7.419, 7.4188, 7.4182, 7.4175, 7.4172, 7.4183, 7.4176, 7.4171, 7.4166, 7.4162, 7.4161, 7.4173, 7.4166, 7.416, 7.4171, 7.4182, 7.4177, 7.4172, 7.4165, 7.4158, 7.4153, 7.4147, 7.4141, 7.4134, 7.4127, 7.412, 7.4113, 7.4106, 7.4098, 7.4091, 7.4085, 7.4097, 7.409, 7.4102, 7.4094, 7.4114, 7.4108, 7.4102, 7.4104, 7.4099, 7.4092, 7.4086, 7.4098, 7.414, 7.4152, 7.415, 7.4145, 7.4158, 7.4152, 7.4146, 7.4139, 7.4136, 7.4128, 7.4139, 7.4135, 7.4148, 7.4143, 7.4155, 7.4148, 7.4159, 7.4171, 7.4163, 7.4156, 7.4149, 7.417, 7.4165, 7.416, 7.4153, 7.4147, 7.4124, 7.4135, 7.4147, 7.4141, 7.4155, 7.4149, 7.4181, 7.4175, 7.417, 7.4185, 7.4178, 7.419, 7.4203, 7.4196, 7.4189, 7.4182, 7.4175, 7.4187, 7.4199, 7.4195, 7.4233, 7.4226, 7.4219, 7.4196, 7.4207, 7.4219, 7.4212, 7.4225, 7.4218, 7.4212, 7.4205, 7.4198, 7.4209, 7.4204, 7.4197, 7.419, 7.4183, 7.4179, 7.4191, 7.4184, 7.4177, 7.4174, 7.4167, 7.4161, 7.4156, 7.4167, 7.4162, 7.4157, 7.4162, 7.4157, 7.4151, 7.4162, 7.4143, 7.4137, 7.4131, 7.413, 7.4131, 7.4127, 7.4139, 7.4135, 7.4129, 7.4122, 7.4116, 7.4112, 7.4107, 7.41, 7.4093, 7.4089, 7.4082, 7.4059, 7.4052, 7.405, 7.4043, 7.4037, 7.4031, 7.4024, 7.4018, 7.4012, 7.4023, 7.4034, 7.4027, 7.4022, 7.4076, 7.4071, 7.4083, 7.4094, 7.4093, 7.4114, 7.4108, 7.4156, 7.415, 7.4145, 7.414, 7.4153, 7.4149, 7.4159, 7.4208, 7.4201, 7.4195, 7.4211, 7.4205, 7.4199, 7.4194, 7.4205, 7.4198, 7.4195, 7.4193, 7.4188, 7.4187, 7.4181, 7.4175, 7.4188, 7.4182, 7.4176, 7.4189, 7.4182, 7.4193, 7.4187, 7.418, 7.4185, 7.418, 7.4173, 7.417, 7.4166, 7.416, 7.4155, 7.415, 7.4143, 7.4174, 7.4168, 7.4169, 7.4162, 7.4156, 7.4167, 7.4178, 7.4171, 7.4164, 7.4176, 7.417, 7.4165, 7.4143, 7.4157, 7.4152, 7.4145, 7.414, 7.4135, 7.4146, 7.4139, 7.4149, 7.4143, 7.4138, 7.4132, 7.4127, 7.4138, 7.4132, 7.4125, 7.4118, 7.4112, 7.4127, 7.4121, 7.4118, 7.4128, 7.4123, 7.4133, 7.4144, 7.415, 7.416, 7.4156, 7.4167, 7.4162, 7.4172, 7.4166, 7.4168, 7.4162, 7.4155, 7.4148, 7.4159, 7.4152, 7.4145, 7.4138, 7.4149, 7.4128, 7.4122, 7.4133, 7.4128, 7.4121, 7.4115, 7.4126, 7.4123, 7.4121, 7.4117, 7.4111, 7.4139, 7.4132, 7.4185, 7.4179, 7.4175, 7.4168, 7.4163, 7.4173, 7.4167, 7.4161, 7.4157, 7.415, 7.4144, 7.4138, 7.4133, 7.4127, 7.4122, 7.4117, 7.4114, 7.4112, 7.4107, 7.41, 7.4097, 7.4092, 7.4086, 7.408, 7.409, 7.41, 7.4096, 7.4091, 7.4086, 7.4084, 7.4078, 7.4135, 7.4132, 7.4125, 7.4119, 7.4114, 7.411, 7.4103, 7.4115, 7.4108, 7.4103, 7.4098, 7.4092, 7.4088, 7.4082, 7.4076, 7.407, 7.408, 7.409, 7.4084, 7.4078, 7.4072, 7.4083, 7.4077, 7.4071, 7.4065, 7.4059, 7.4053, 7.4047, 7.4044, 7.404, 7.4033, 7.4035, 7.4133, 7.4126, 7.4121, 7.4116, 7.4127, 7.4121, 7.4131, 7.4128, 7.4123, 7.4116, 7.4109, 7.4102, 7.4096, 7.4092, 7.4085, 7.408, 7.4078, 7.4088, 7.4098, 7.4077, 7.4104, 7.4097, 7.4107, 7.411, 7.412, 7.4113, 7.4124, 7.4118, 7.4112, 7.4105, 7.4115, 7.4126, 7.412, 7.413, 7.4123, 7.4117, 7.411, 7.4106, 7.4099, 7.41, 7.4094, 7.4106, 7.4101, 7.408, 7.409, 7.4084, 7.4077, 7.4073, 7.4068, 7.4063, 7.4073, 7.4084, 7.4078, 7.4072, 7.4082, 7.4093, 7.4086, 7.4083, 7.4093, 7.4088, 7.4082, 7.4091, 7.4086, 7.4081, 7.4077, 7.4073, 7.4066, 7.4077, 7.4077, 7.4072, 7.4092, 7.4088, 7.4084, 7.4078, 7.4089, 7.4083, 7.4077, 7.4074, 7.4085, 7.4096, 7.4106, 7.4085, 7.4096, 7.409, 7.41, 7.4111, 7.4106, 7.4101, 7.4095, 7.4105, 7.4101, 7.4095, 7.4088, 7.4083, 7.4095, 7.4089, 7.4083, 7.4093, 7.4088, 7.4081, 7.4076, 7.4071, 7.4068, 7.4062, 7.4056, 7.4052, 7.4047, 7.404, 7.4035, 7.403, 7.4041, 7.4036, 7.403, 7.4025, 7.402, 7.4015, 7.4015, 7.401, 7.4021, 7.4034, 7.4041, 7.4042, 7.4169, 7.418, 7.4174, 7.4158, 7.4153, 7.4147, 7.4142, 7.4138, 7.4131, 7.4159, 7.4156, 7.4149, 7.4146, 7.4142, 7.4136, 7.4131, 7.4125, 7.4135, 7.413, 7.4124, 7.4154, 7.4166, 7.416, 7.4154, 7.4149, 7.416, 7.4155, 7.4153, 7.4148, 7.4157, 7.4152, 7.4146, 7.414, 7.42, 7.4197, 7.4223, 7.4219, 7.4216, 7.4213, 7.4207, 7.4202, 7.4197, 7.4208, 7.4203, 7.423, 7.4226, 7.4207, 7.4205, 7.4215, 7.4209, 7.4204, 7.4232, 7.4227, 7.424, 7.4236, 7.4231, 7.4225, 7.4237, 7.4232, 7.4211, 7.4206, 7.4186, 7.4181, 7.4176, 7.417, 7.4165, 7.4159, 7.4157, 7.4154, 7.4164, 7.4159, 7.4206, 7.4186, 7.418, 7.4196, 7.4191, 7.4174, 7.4186, 7.4181, 7.4209, 7.4205, 7.4201, 7.4222, 7.4221, 7.4278, 7.4274, 7.427, 7.4264, 7.4259, 7.427, 7.4264, 7.4259, 7.4253, 7.4263, 7.4258, 7.4265, 7.4323, 7.4304, 7.4313, 7.4346, 7.434, 7.435, 7.4344, 7.4338, 7.4334, 7.4344, 7.4338, 7.4332, 7.4326, 7.4321, 7.4334, 7.4357, 7.4351, 7.4361, 7.4359, 7.4354, 7.4349, 7.4344, 7.4353, 7.4349, 7.4358, 7.4369, 7.4363, 7.4344, 7.4337, 7.4347, 7.4341, 7.4351, 7.4345, 7.434, 7.4338, 7.4332, 7.4339, 7.4349, 7.4343, 7.4337, 7.4333, 7.4328, 7.4323, 7.4319, 7.4315, 7.4326, 7.432, 7.4314, 7.4309, 7.4303, 7.4297, 7.4293, 7.4302, 7.4296, 7.429, 7.4284, 7.4294, 7.4288, 7.4269, 7.4269, 7.4263, 7.4257, 7.4268, 7.4278, 7.4262, 7.4258, 7.4253, 7.4248, 7.4243, 7.4237, 7.4232, 7.4227, 7.4236, 7.4248, 7.4242, 7.4259, 7.4279, 7.4274, 7.4271, 7.4266, 7.4262, 7.4257, 7.4253, 7.4248, 7.4243, 7.4237, 7.4231, 7.4225, 7.422, 7.4214, 7.421, 7.4205, 7.4215, 7.4211, 7.4206, 7.4201, 7.4195, 7.419, 7.4186, 7.4181, 7.4176, 7.4172, 7.4166, 7.4176, 7.4171, 7.4182, 7.4177, 7.4171, 7.4165, 7.4174, 7.417, 7.4166, 7.416, 7.4155, 7.4171, 7.4197, 7.4223, 7.4217, 7.4227, 7.4221, 7.4205, 7.4199, 7.4195, 7.4189, 7.4198, 7.4192, 7.4192, 7.4202, 7.4203, 7.4197, 7.4193, 7.4191, 7.4187, 7.4228, 7.4222, 7.4216, 7.421, 7.4204, 7.4198, 7.4194, 7.4204, 7.4201, 7.4211, 7.4205, 7.4201, 7.4196, 7.4191, 7.4202, 7.4196, 7.4193, 7.4187, 7.4182, 7.4177, 7.4178, 7.4172, 7.4168, 7.4162, 7.4156, 7.4153, 7.4164, 7.4158, 7.4152, 7.4146, 7.4156, 7.4151, 7.4146, 7.4142, 7.4162, 7.4172, 7.4168, 7.4165, 7.4159, 7.4154, 7.415, 7.4144, 7.4142, 7.4137, 7.4147, 7.4144, 7.4139, 7.4148, 7.4144, 7.4139, 7.4133, 7.4115, 7.411, 7.4105, 7.4099, 7.4093, 7.4103, 7.4112, 7.4106, 7.4101, 7.4125, 7.4122, 7.4123, 7.4163, 7.4158, 7.4159, 7.4169, 7.4164, 7.4174, 7.4169, 7.4179, 7.4174, 7.4183, 7.4179, 7.4177, 7.4172, 7.4168, 7.4182, 7.4179, 7.4191, 7.4203, 7.4199, 7.4194, 7.4189, 7.4185, 7.4179, 7.4173, 7.4182, 7.4177, 7.4172, 7.4168, 7.4163, 7.4157, 7.4152, 7.4148, 7.4142, 7.4136, 7.4133, 7.4129, 7.4123, 7.4119, 7.4115, 7.4111, 7.4121, 7.4116, 7.4097, 7.4106, 7.4101, 7.4097, 7.4092, 7.4087, 7.4084, 7.408, 7.4075, 7.4056, 7.4072, 7.4082, 7.4092, 7.4087, 7.4081, 7.4076, 7.4085, 7.408, 7.4094, 7.4089, 7.4085, 7.408, 7.4075, 7.4069, 7.4063, 7.4058, 7.4053, 7.4077, 7.4072, 7.4067, 7.4068, 7.4062, 7.4072, 7.4068, 7.4063, 7.4059, 7.4053, 7.4076, 7.4071, 7.4067, 7.4061, 7.406, 7.4054, 7.4064, 7.4073, 7.4067, 7.4076, 7.4073, 7.4067, 7.4108, 7.4104, 7.41, 7.4096, 7.4091, 7.4099, 7.4097, 7.4091, 7.41, 7.4096, 7.409, 7.4086, 7.4094, 7.4088, 7.4069, 7.4064, 7.406, 7.4054, 7.4063, 7.4057, 7.4067, 7.4063, 7.4058, 7.4053, 7.4064, 7.4059, 7.4054, 7.4062, 7.4056, 7.4053, 7.4049, 7.4043, 7.4038, 7.4048, 7.4043, 7.4038, 7.4033, 7.4028, 7.4023, 7.4018, 7.4012, 7.4009, 7.4006, 7.4001, 7.3996, 7.3993, 7.4002, 7.4011, 7.4007, 7.4016, 7.4012, 7.4007, 7.4003, 7.3997, 7.4007, 7.4016, 7.4011, 7.4007, 7.4002, 7.4011, 7.402, 7.4017, 7.4026, 7.4021, 7.4016, 7.401, 7.4019, 7.4028, 7.4023, 7.4018, 7.4032, 7.403, 7.4026, 7.4021, 7.4021, 7.4016, 7.4012, 7.4007, 7.4006, 7.4001, 7.4013, 7.4008, 7.402, 7.4017, 7.4028, 7.4023, 7.4018, 7.4014, 7.401, 7.4005, 7.4, 7.3997, 7.3992, 7.3986, 7.3981, 7.4004, 7.4043, 7.4038, 7.402, 7.4016, 7.4032, 7.4027, 7.4065, 7.406, 7.4057, 7.4052, 7.4047, 7.4042, 7.4052, 7.4047, 7.408, 7.4076, 7.407, 7.4066, 7.4061, 7.4056, 7.4051, 7.4046, 7.4041, 7.4036, 7.4057, 7.404, 7.4034, 7.4042, 7.4024, 7.402, 7.4016, 7.4026, 7.4021, 7.4016, 7.401, 7.402, 7.4031, 7.4027, 7.4036, 7.4032, 7.4046, 7.4028, 7.4037, 7.4031, 7.4027, 7.4022, 7.402, 7.4034, 7.4028, 7.4022, 7.4017, 7.4013, 7.4009, 7.4003, 7.3998, 7.4008, 7.4004, 7.4004, 7.4001, 7.3997, 7.4007, 7.4001, 7.3997, 7.3995, 7.3992, 7.4001, 7.3997, 7.3994, 7.3988, 7.3983, 7.3966, 7.3961, 7.3957, 7.3954, 7.3949, 7.3965, 7.3975, 7.3987, 7.3982, 7.3977, 7.3987, 7.3983, 7.3983, 7.3978, 7.3976, 7.3971, 7.3967, 7.3963, 7.3958, 7.3968, 7.3963, 7.3957, 7.3939, 7.3934, 7.3929, 7.3924, 7.3923, 7.3931, 7.3926, 7.3952, 7.3951, 7.3946, 7.3942, 7.395, 7.3945, 7.3954, 7.3963, 7.3958, 7.3968, 7.3965, 7.3973, 7.3983, 7.3978, 7.3973, 7.3971, 7.3967, 7.3977, 7.3994, 7.4003, 7.4018, 7.4013, 7.3995, 7.3994, 7.399, 7.3991, 7.3987, 7.397, 7.3953, 7.3949, 7.3945, 7.3955, 7.3951, 7.3953, 7.3953, 7.3961, 7.3956, 7.3951, 7.3946, 7.3941, 7.395, 7.3946, 7.3942, 7.3937, 7.3933, 7.3929, 7.3924, 7.3919, 7.3929, 7.3925, 7.392, 7.3915, 7.391, 7.3919, 7.3915, 7.3911, 7.3906, 7.3903, 7.3898, 7.3896, 7.3928, 7.3927, 7.391, 7.3921, 7.3917, 7.3913, 7.3908, 7.3903, 7.39, 7.3895, 7.3891, 7.3888, 7.3883, 7.3881, 7.3864, 7.3859, 7.3857, 7.3852, 7.3847, 7.383, 7.3825, 7.3833, 7.383, 7.3825, 7.3821, 7.3829, 7.3824, 7.3832, 7.3827, 7.3824, 7.382, 7.3815, 7.381, 7.3818, 7.3814, 7.3821, 7.3816, 7.3811, 7.3794, 7.3802, 7.3799, 7.3794, 7.379, 7.3785, 7.3781, 7.3776, 7.3829, 7.3825, 7.3824, 7.3819, 7.3848, 7.3844, 7.3841, 7.3837, 7.3846, 7.3857, 7.384, 7.3836, 7.3832, 7.3828, 7.3824, 7.3821, 7.3831, 7.3828, 7.3824, 7.3819, 7.3816, 7.3811, 7.3807, 7.3806, 7.3802, 7.3812, 7.3807, 7.3802, 7.3799, 7.3794, 7.3803, 7.38, 7.3796, 7.3806, 7.3801, 7.381, 7.3807, 7.3817, 7.3812, 7.382, 7.3828, 7.3823, 7.3821, 7.3816, 7.3811, 7.3827, 7.3822, 7.383, 7.3825, 7.382, 7.383, 7.3825, 7.382, 7.3816, 7.3811, 7.3819, 7.3828, 7.3825, 7.3834, 7.383, 7.3839, 7.3834, 7.3843, 7.3839, 7.3834, 7.383, 7.3825, 7.3834, 7.3842, 7.3837, 7.3832, 7.3829, 7.3825, 7.382, 7.3815, 7.381, 7.382, 7.383, 7.3826, 7.3833, 7.383, 7.3852, 7.386, 7.3868, 7.3888, 7.3884, 7.388, 7.3876, 7.3884, 7.3879, 7.3886, 7.3894, 7.3917, 7.3925, 7.3921, 7.3917, 7.3917, 7.3952, 7.3966, 7.3962, 7.4009, 7.4005, 7.4001, 7.3998, 7.3994, 7.399, 7.3985, 7.3981, 7.3996, 7.4005, 7.4031, 7.4047, 7.4043, 7.4026, 7.404, 7.4035, 7.4036, 7.4046, 7.4042, 7.4037, 7.4034, 7.4032, 7.4027, 7.4022, 7.4031, 7.404, 7.4049, 7.4046, 7.4041, 7.4037, 7.4032, 7.4054, 7.4049, 7.4045, 7.404, 7.4036, 7.4084, 7.4079, 7.4074, 7.4057, 7.4053, 7.4065, 7.4062, 7.4057, 7.4054, 7.405, 7.4058, 7.4053, 7.4062, 7.4046, 7.4041, 7.4048, 7.4043, 7.4039, 7.4048, 7.4044, 7.4052, 7.4047, 7.4043, 7.4039, 7.4047, 7.4042, 7.4039, 7.4034, 7.4043, 7.4039, 7.4035, 7.4043, 7.4078, 7.4075, 7.4072, 7.4068, 7.4065, 7.4088, 7.41, 7.4097, 7.4093, 7.409, 7.4086, 7.4096, 7.4107, 7.4115, 7.4111, 7.4134, 7.4144, 7.414, 7.4155, 7.415, 7.4146, 7.4143, 7.4139, 7.4135, 7.4132, 7.4128, 7.4123, 7.4119, 7.4115, 7.4111, 7.4107, 7.4123, 7.412, 7.4116, 7.4125, 7.4121, 7.4118, 7.4127, 7.4123, 7.4121, 7.4127, 7.4136, 7.4132, 7.4129, 7.4136, 7.412, 7.4117, 7.4116, 7.4102, 7.4097, 7.4094, 7.409, 7.4086, 7.4082, 7.409, 7.4085, 7.408, 7.4103, 7.41, 7.4108, 7.4129, 7.4125, 7.4121, 7.4117, 7.4105, 7.4126, 7.4123, 7.4146, 7.4141, 7.4137, 7.4158, 7.4154, 7.4163, 7.4172, 7.42, 7.4199, 7.4207, 7.4204, 7.4188, 7.4183, 7.4179, 7.4177, 7.4175, 7.4185, 7.4181, 7.4176, 7.4185, 7.4181, 7.4177, 7.4187, 7.4196, 7.4192, 7.4201, 7.4198, 7.4194, 7.4178, 7.4187, 7.4183, 7.4178, 7.4173, 7.4168, 7.4164, 7.4159, 7.4167, 7.4175, 7.4195, 7.4179, 7.4164, 7.4159, 7.4166, 7.4162, 7.4157, 7.4154, 7.4149, 7.4146, 7.4142, 7.415, 7.4146, 7.4141, 7.4136, 7.4143, 7.415, 7.4145, 7.4155, 7.4151, 7.4147, 7.4131, 7.4128, 7.4155, 7.4167, 7.4162, 7.4158, 7.4183, 7.4178, 7.4175, 7.4171, 7.4166, 7.4173, 7.417, 7.4165, 7.416, 7.4155, 7.4152, 7.4148, 7.4143, 7.4138, 7.4133, 7.4129, 7.4137, 7.4133, 7.4129, 7.4127, 7.4124, 7.4132, 7.4138, 7.4136, 7.4136, 7.4131, 7.4127, 7.4124, 7.412, 7.4117, 7.4153, 7.4149, 7.4176, 7.4172, 7.4168, 7.4164, 7.4181, 7.4189, 7.4185, 7.4181, 7.419, 7.4186, 7.4182, 7.4204, 7.4201, 7.4198, 7.4194, 7.4209, 7.4225, 7.421, 7.4218, 7.4202, 7.4199, 7.4195, 7.419, 7.4185, 7.418, 7.4183, 7.4179, 7.4174, 7.4169, 7.4177, 7.4172, 7.4167, 7.4162, 7.4157, 7.4152, 7.4147, 7.4142, 7.4138, 7.4133, 7.4128, 7.4148, 7.4156, 7.4155, 7.414, 7.4137, 7.4144, 7.4153, 7.4138, 7.4144, 7.4139, 7.4147, 7.4144, 7.4141, 7.4136, 7.4133, 7.4132, 7.4128, 7.4123, 7.412, 7.4117, 7.4115, 7.411, 7.4106, 7.4102, 7.4098, 7.4095, 7.409, 7.4098, 7.4093, 7.4078, 7.4073, 7.408, 7.4075, 7.407, 7.4066, 7.4062, 7.4058, 7.4055, 7.4053, 7.4049, 7.4044, 7.4052, 7.406, 7.4058, 7.4078, 7.4075, 7.4071, 7.4068, 7.4063, 7.4071, 7.4066, 7.4075, 7.4083, 7.4091, 7.4087, 7.4083, 7.4103, 7.41, 7.4096, 7.4108, 7.4105, 7.4113, 7.411, 7.4105, 7.4101, 7.4097, 7.4095, 7.4102, 7.4098, 7.4108, 7.4113, 7.411, 7.4118, 7.4116, 7.4101, 7.4098, 7.4093, 7.4089, 7.4096, 7.4132, 7.4133, 7.414, 7.4137, 7.4151, 7.4151, 7.4176, 7.4171, 7.4166, 7.4163, 7.4161, 7.4156, 7.4152, 7.4147, 7.4133, 7.4142, 7.4151, 7.4147, 7.4159, 7.4158, 7.4153, 7.415, 7.4147, 7.4142, 7.415, 7.4154, 7.415, 7.4146, 7.4179, 7.4202, 7.4223, 7.4218, 7.4232, 7.4227, 7.4236, 7.4233, 7.4241, 7.4237, 7.4234, 7.423, 7.424, 7.4247, 7.4254, 7.4269, 7.4264, 7.426, 7.4267, 7.4274, 7.427, 7.4266, 7.4274, 7.4272, 7.4279, 7.4288, 7.4284, 7.428, 7.4276, 7.4272, 7.4269, 7.4274, 7.4283, 7.4279, 7.4277, 7.4273, 7.4271, 7.4268, 7.4264, 7.426, 7.4256, 7.4273, 7.4269, 7.4266, 7.4261, 7.4257, 7.4264, 7.4271, 7.4267, 7.4262, 7.4257, 7.4253, 7.4238, 7.4234, 7.4232, 7.424, 7.4236, 7.4231, 7.4238, 7.4233, 7.423, 7.4227, 7.4222, 7.4207, 7.4204, 7.4199, 7.4198, 7.4195, 7.4191, 7.4199, 7.4199, 7.4195, 7.4204, 7.42, 7.4196, 7.4192, 7.4188, 7.4185, 7.4182, 7.4178, 7.4176, 7.4173, 7.418, 7.4188, 7.4185, 7.4193, 7.4202, 7.4197, 7.4193, 7.4188, 7.4195, 7.4191, 7.4186, 7.4187, 7.4182, 7.4177, 7.4172, 7.4172, 7.4168, 7.4163, 7.416, 7.4155, 7.4151, 7.4146, 7.4154, 7.4158, 7.4153, 7.4164, 7.4161, 7.4157, 7.4154, 7.415, 7.4159, 7.4155, 7.4151, 7.4194, 7.4201, 7.4196, 7.4203, 7.4199, 7.4209, 7.4216, 7.4223, 7.422, 7.4217, 7.4215, 7.4211, 7.4215, 7.4222, 7.4221, 7.4217, 7.4213, 7.422, 7.4218, 7.4216, 7.4223, 7.4219, 7.4214, 7.4211, 7.4207, 7.4203, 7.4199, 7.4196, 7.4193, 7.419, 7.4186, 7.4193, 7.4189, 7.4197, 7.4193, 7.4193, 7.419, 7.4186, 7.4182, 7.4191, 7.4199, 7.4207, 7.4215, 7.4211, 7.4207, 7.4202, 7.4209, 7.4205, 7.4213, 7.421, 7.4206, 7.4201, 7.4198, 7.4206, 7.4202, 7.421, 7.4207, 7.4205, 7.4202, 7.4198, 7.4195, 7.4192, 7.4189, 7.4186, 7.4183, 7.418, 7.4177, 7.4173, 7.4181, 7.4183, 7.4179, 7.4176, 7.4183, 7.4181, 7.4177, 7.4173, 7.418, 7.4179, 7.4198, 7.4194, 7.419, 7.4186, 7.4171, 7.4167, 7.4163, 7.417, 7.4187, 7.4184, 7.4181, 7.4177, 7.4193, 7.419, 7.4186, 7.4182, 7.4189, 7.4185, 7.4182, 7.4189, 7.4201, 7.4197, 7.4192, 7.4188, 7.4183, 7.419, 7.4186, 7.4183, 7.4179, 7.4174, 7.4171, 7.417, 7.4165, 7.4161, 7.4158, 7.4154, 7.4151, 7.4174, 7.416, 7.4156, 7.4152, 7.4149, 7.4144, 7.414, 7.4144, 7.4153, 7.4149, 7.4156, 7.4153, 7.4149, 7.4145, 7.4142, 7.4138, 7.4134, 7.413, 7.4126, 7.4112, 7.4098, 7.4086, 7.4082, 7.4079, 7.4075, 7.4082, 7.407, 7.4066, 7.4062, 7.4062, 7.4058, 7.4065, 7.4072, 7.4068, 7.4063, 7.4059, 7.4055, 7.4051, 7.4048, 7.4055, 7.4054, 7.4051, 7.4049, 7.4062, 7.4058, 7.4053, 7.4049, 7.4055, 7.4062, 7.4058, 7.4055, 7.4052, 7.4049, 7.4046, 7.4044, 7.404, 7.4037, 7.4035, 7.4031, 7.4027, 7.4036, 7.4033, 7.4031, 7.4028, 7.4025, 7.4021, 7.4018, 7.4015, 7.4011, 7.4007, 7.4003, 7.4002, 7.3988, 7.3984, 7.397, 7.3978, 7.3986, 7.3982, 7.3979, 7.3976, 7.3972, 7.398, 7.3976, 7.3975, 7.3982, 7.3978, 7.3975, 7.3971, 7.3957, 7.3954, 7.3955, 7.3951, 7.3947, 7.3943, 7.394, 7.3936, 7.3922, 7.3918, 7.3914, 7.3911, 7.3919, 7.394, 7.3936, 7.3932, 7.3928, 7.3925, 7.3932, 7.3929, 7.3926, 7.3944, 7.3951, 7.3947, 7.3944, 7.394, 7.3947, 7.3954, 7.395, 7.3947, 7.3944, 7.394, 7.3938, 7.3945, 7.3941, 7.3937, 7.3933, 7.3929, 7.3925, 7.3923, 7.392, 7.3917, 7.3926, 7.3923, 7.3953, 7.3949, 7.399, 7.3987, 7.3986, 7.3983, 7.4003, 7.3999, 7.3995, 7.3992, 7.3988, 7.4, 7.4011, 7.4, 7.3996, 7.4003, 7.4004, 7.4, 7.3996, 7.3994, 7.3991, 7.402, 7.4027, 7.4034, 7.4031, 7.405, 7.4047, 7.4043, 7.4039, 7.4047, 7.4043, 7.404, 7.4039, 7.4035, 7.4031, 7.4027, 7.4035, 7.4031, 7.4027, 7.4024, 7.402, 7.4016, 7.4013, 7.401, 7.4017, 7.4014, 7.4022, 7.4029, 7.4025, 7.4021, 7.402, 7.4024, 7.4032, 7.4039, 7.4036, 7.4034, 7.4032, 7.4029, 7.4026, 7.4022, 7.4018, 7.4025, 7.4033, 7.4029, 7.4016, 7.4012, 7.4008, 7.4004, 7.4, 7.3996, 7.3993, 7.4011, 7.4007, 7.4004, 7.4, 7.3996, 7.3992, 7.3999, 7.4011, 7.4018, 7.4015, 7.4013, 7.401, 7.4008, 7.4006, 7.4014, 7.4022, 7.4031, 7.4029, 7.4026, 7.4023, 7.402, 7.4017, 7.4037, 7.4044, 7.404, 7.4036, 7.4033, 7.4039, 7.4047, 7.4055, 7.4051, 7.4047, 7.4054, 7.4061, 7.4068, 7.4067, 7.4064, 7.4071, 7.4077, 7.4073, 7.4069, 7.4076, 7.4072, 7.4068, 7.4064, 7.4097, 7.4104, 7.41, 7.4096, 7.4095, 7.4091, 7.4087, 7.4083, 7.4079, 7.4085, 7.4091, 7.4098, 7.4095, 7.4091, 7.4088, 7.4084, 7.408, 7.4076, 7.4073, 7.4069, 7.4076, 7.4072, 7.4068, 7.4065, 7.4062, 7.4048, 7.4045, 7.4041, 7.4039, 7.4035, 7.4032, 7.4028, 7.4024, 7.403, 7.403, 7.4026, 7.4024, 7.4022, 7.4019, 7.4015, 7.4011, 7.4007, 7.4003, 7.3999, 7.3995, 7.3991, 7.3988, 7.3998, 7.3995, 7.3991, 7.3998, 7.3994, 7.4004, 7.4003, 7.4, 7.3997, 7.3995, 7.3991, 7.3998, 7.3994, 7.399, 7.3998, 7.3995, 7.3991, 7.3987, 7.3985, 7.3981, 7.3977, 7.3974, 7.3973, 7.3969, 7.3967, 7.3964, 7.3961, 7.397, 7.3977, 7.3987, 7.3985, 7.3982, 7.3992, 7.3988, 7.3998, 7.3999, 7.3996, 7.4026, 7.4023, 7.402, 7.4027, 7.4024, 7.4023, 7.402, 7.4017, 7.4058, 7.4054, 7.4051, 7.4047, 7.4044, 7.4045, 7.4041, 7.4037, 7.4035, 7.4031, 7.4027, 7.4024, 7.402, 7.4017, 7.4013, 7.4009, 7.4015, 7.4012, 7.4008, 7.4004, 7.4001, 7.3997, 7.3993, 7.398, 7.3981, 7.3977, 7.3973, 7.3969, 7.3965, 7.3962, 7.3958, 7.3955, 7.3951, 7.394, 7.3948, 7.3944, 7.394, 7.3949, 7.3957, 7.3964, 7.396, 7.3966, 7.3962, 7.3958, 7.3956, 7.3952, 7.3951, 7.3951, 7.3948, 7.3946, 7.3943, 7.395, 7.3946, 7.3994, 7.399, 7.3987, 7.3983, 7.398, 7.3977, 7.3974, 7.3971, 7.398, 7.3978, 7.3986, 7.3993, 7.3989, 7.3986, 7.3998, 7.3995, 7.3991, 7.3993, 7.4027, 7.4023, 7.4019, 7.4027, 7.4023, 7.4019, 7.4022, 7.4019, 7.404, 7.4036, 7.4032, 7.403, 7.4036, 7.4034, 7.4031, 7.4038, 7.4035, 7.4042, 7.4038, 7.4034, 7.404, 7.4037, 7.4033, 7.4029, 7.4038, 7.4034, 7.403, 7.4026, 7.4032, 7.4028, 7.4025, 7.4012, 7.401, 7.4007, 7.4003, 7.3999, 7.3996, 7.3994, 7.399, 7.3987, 7.3996, 7.3992, 7.4, 7.3997, 7.3994, 7.3994, 7.3991, 7.3998, 7.4041, 7.4038, 7.4035, 7.4035, 7.4032, 7.4046, 7.4043, 7.4052, 7.4048, 7.4045, 7.4052, 7.4049, 7.4045, 7.4042, 7.4049, 7.4053, 7.4049, 7.4046, 7.4042, 7.4039, 7.4035, 7.4032, 7.4028, 7.4024, 7.4023, 7.403, 7.4026, 7.4023, 7.403, 7.4027, 7.4024, 7.4022, 7.4018, 7.4014, 7.4003, 7.4021, 7.4017, 7.4013, 7.4022, 7.4018, 7.4024, 7.4021, 7.4018, 7.4014, 7.4012, 7.4009, 7.4005, 7.4002, 7.3998, 7.4004, 7.3993, 7.399, 7.3987, 7.3984, 7.398, 7.3986, 7.3982, 7.3978, 7.3984, 7.398, 7.3977, 7.3975, 7.3982, 7.3978, 7.3974, 7.3972, 7.3971, 7.3968, 7.3965, 7.3962, 7.3958, 7.3955, 7.3951, 7.3958, 7.3954, 7.395, 7.3946, 7.3944, 7.3941, 7.3938, 7.3945, 7.3941, 7.3937, 7.3934, 7.3972, 7.3979, 7.3996, 7.3993, 7.3999, 7.4005, 7.4011, 7.4018, 7.4025, 7.4022, 7.401, 7.4017, 7.4023, 7.4029, 7.4036, 7.4032, 7.403, 7.4036, 7.4034, 7.403, 7.4027, 7.4025, 7.4023, 7.4019, 7.4015, 7.4011, 7.4017, 7.4013, 7.4009, 7.4006, 7.4012, 7.4008, 7.4015, 7.4011, 7.4009, 7.4016, 7.4012, 7.4, 7.3997, 7.3984, 7.398, 7.3977, 7.3974, 7.3971, 7.3967, 7.3963, 7.3959, 7.3956, 7.3962, 7.3964, 7.396, 7.3967, 7.3964, 7.3971, 7.3978, 7.3975, 7.3971, 7.3978, 7.3975, 7.3974, 7.3984, 7.3981, 7.3982, 7.3979, 7.3975, 7.3982, 7.3989, 7.3985, 7.3981, 7.3989, 7.3985, 7.3983, 7.3981, 7.3977, 7.3975, 7.3972, 7.3972, 7.3972, 7.3978, 7.3975, 7.3972, 7.3969, 7.3975, 7.3971, 7.3969, 7.3966, 7.3962, 7.3969, 7.3965, 7.3961, 7.3957, 7.3964, 7.397, 7.3967, 7.3964, 7.396, 7.3967, 7.3964, 7.396, 7.3957, 7.3953, 7.3949, 7.395, 7.3946, 7.3942, 7.394, 7.3939, 7.3986, 7.4003, 7.4019, 7.4016, 7.4022, 7.4029, 7.4046, 7.4044, 7.4041, 7.4039, 7.4046, 7.4042, 7.406, 7.4056, 7.4053, 7.4049, 7.4046, 7.4043, 7.4083, 7.408, 7.4076, 7.4082, 7.4089, 7.4097, 7.4094, 7.4091, 7.4089, 7.4085, 7.4081, 7.4088, 7.4094, 7.4091, 7.4087, 7.4084, 7.4071, 7.4068, 7.4065, 7.4072, 7.4059, 7.4055, 7.4051, 7.4047, 7.4053, 7.4049, 7.4046, 7.4065, 7.4062, 7.4058, 7.4054, 7.4042, 7.4038, 7.4034, 7.4036, 7.4033, 7.4039, 7.4036, 7.4033, 7.4031, 7.4028, 7.4024, 7.4021, 7.4018, 7.4015, 7.4011, 7.4008, 7.4015, 7.4012, 7.4, 7.3997, 7.3993, 7.3999, 7.4005, 7.4001, 7.4007, 7.4003, 7.4001, 7.3999, 7.3995, 7.3992, 7.3998, 7.4004, 7.4001, 7.4008, 7.4006, 7.4003, 7.4009, 7.4009, 7.4015, 7.4012, 7.4018, 7.4016, 7.4013, 7.4053, 7.4049, 7.4057, 7.4063, 7.406, 7.4066, 7.4063, 7.406, 7.4056, 7.4044, 7.407, 7.4066, 7.4064, 7.4061, 7.4059, 7.4056, 7.4063, 7.4051, 7.4048, 7.4044, 7.4042, 7.4039, 7.4046, 7.4042, 7.406, 7.4057, 7.4061, 7.4058, 7.4046, 7.4077, 7.4074, 7.4072, 7.4062, 7.4059, 7.4057, 7.4054, 7.4052, 7.405, 7.4047, 7.4044, 7.4041, 7.4038, 7.4035, 7.4024, 7.4031, 7.4028, 7.4025, 7.4022, 7.4018, 7.4024, 7.4021, 7.4022, 7.4028, 7.4035, 7.4032, 7.4039, 7.4035, 7.4027, 7.4025, 7.4022, 7.4018, 7.4014, 7.4011, 7.4008, 7.4014, 7.4011, 7.4008, 7.4005, 7.4002, 7.4007, 7.4004, 7.4, 7.401, 7.4007, 7.3995, 7.3992, 7.3988, 7.3986, 7.3994, 7.399, 7.4005, 7.4012, 7.4009, 7.4015, 7.4021, 7.4028, 7.4026, 7.4032, 7.4038, 7.4036, 7.404, 7.4038, 7.4035, 7.4039, 7.4046, 7.4043, 7.4041, 7.4037, 7.4034, 7.4031, 7.4028, 7.4025, 7.4031, 7.4028, 7.4025, 7.4022, 7.4029, 7.4026, 7.4036, 7.4026, 7.4023, 7.4024, 7.403, 7.4028, 7.4034, 7.403, 7.404, 7.4037, 7.4038, 7.4063, 7.4059, 7.4057, 7.4053, 7.4049, 7.4045, 7.4051, 7.4049, 7.4047, 7.4045, 7.4041, 7.4037, 7.4035, 7.4041, 7.4047, 7.4044, 7.4041, 7.4037, 7.4034, 7.4022, 7.4033, 7.403, 7.4027, 7.4024, 7.4023, 7.402, 7.4016, 7.4012, 7.4008, 7.4005, 7.4001, 7.3997, 7.3994, 7.4, 7.3998, 7.3994, 7.4, 7.3997, 7.4004, 7.4, 7.3997, 7.3994, 7.4001, 7.3998, 7.3995, 7.3983, 7.399, 7.3986, 7.3982, 7.3979, 7.3986, 7.3983, 7.3981, 7.3979, 7.3977, 7.3974, 7.3991, 7.3988, 7.3996, 7.3993, 7.4011, 7.4019, 7.4016, 7.4013, 7.401, 7.4017, 7.4014, 7.4022, 7.4019, 7.4016, 7.4012, 7.4009, 7.4015, 7.4027, 7.4024, 7.4021, 7.4009, 7.4016, 7.4024, 7.4035, 7.4036, 7.4042, 7.4041, 7.4038, 7.4036, 7.4044, 7.405, 7.4051, 7.4048, 7.4046, 7.4062, 7.4059, 7.4057, 7.4045, 7.4033, 7.403, 7.4027, 7.4024, 7.402, 7.4026, 7.4024, 7.4021, 7.4018, 7.4024, 7.4035, 7.4032, 7.4029, 7.4035, 7.4031, 7.4027, 7.4023, 7.4021, 7.4019, 7.4016, 7.4022, 7.4018, 7.4015, 7.4013, 7.401, 7.4007, 7.4005, 7.4002, 7.4008, 7.4005, 7.4009, 7.4007, 7.4016, 7.4014, 7.4014, 7.4012, 7.4021, 7.4017, 7.4013, 7.4011, 7.402, 7.4017, 7.4014, 7.4011, 7.4008, 7.4005, 7.402, 7.4038, 7.4035, 7.4036, 7.4034, 7.4031, 7.4028, 7.4025, 7.4021, 7.4018, 7.4015, 7.4022, 7.4018, 7.4025, 7.4021, 7.4018, 7.4015, 7.4012, 7.4018, 7.4015, 7.4013, 7.401, 7.4016, 7.4013, 7.4002, 7.3999, 7.4007, 7.4004, 7.4003, 7.4001, 7.3997, 7.4003, 7.4, 7.4006, 7.4003, 7.4001, 7.3998, 7.3996, 7.3993, 7.399, 7.3986, 7.3983, 7.3971, 7.3968, 7.3987, 7.4002, 7.399, 7.3996, 7.4002, 7.4009, 7.4015, 7.4013, 7.4009, 7.4006, 7.4023, 7.4012, 7.4019, 7.4017, 7.4014, 7.4012, 7.4018, 7.4058, 7.4064, 7.4061, 7.4066, 7.4062, 7.4059, 7.4056, 7.4054, 7.4051, 7.406, 7.4058, 7.4055, 7.4054, 7.405, 7.4047, 7.4043, 7.404, 7.4036, 7.4032, 7.4038, 7.4035, 7.4031, 7.4028, 7.4024, 7.403, 7.4036, 7.4042, 7.4039, 7.4036, 7.4033, 7.403, 7.4036, 7.4034, 7.4032, 7.403, 7.4027, 7.4024, 7.4014, 7.4029, 7.4026, 7.4025, 7.4024, 7.4021, 7.4018, 7.4044, 7.4034, 7.4031, 7.4029, 7.4026, 7.4023, 7.402, 7.4017, 7.4023, 7.402, 7.4025, 7.4022, 7.4018, 7.4024, 7.402, 7.4028, 7.4025, 7.4022, 7.402, 7.4026, 7.4023, 7.403, 7.4036, 7.4042, 7.4038, 7.4035, 7.4032, 7.4038, 7.4043, 7.404, 7.4037, 7.4034, 7.4039, 7.4028, 7.4027, 7.4023, 7.4019, 7.4015, 7.4012, 7.4018, 7.4015, 7.4012, 7.4017, 7.4016, 7.4012, 7.401, 7.4008, 7.401, 7.4008, 7.4005, 7.4002, 7.3999, 7.4004, 7.401, 7.4007, 7.4012, 7.4009, 7.4006, 7.4003, 7.401, 7.4019, 7.4016, 7.4013, 7.4011, 7.4018, 7.4015, 7.4012, 7.4009, 7.4052, 7.4049, 7.4045, 7.4042, 7.4039, 7.4035, 7.4036, 7.4033, 7.4029, 7.4038, 7.4035, 7.404, 7.4046, 7.4042, 7.404, 7.4036, 7.4032, 7.4029, 7.4026, 7.4023, 7.4029, 7.4034, 7.4049, 7.4046, 7.4043, 7.4041, 7.4046, 7.4043, 7.4052, 7.4058, 7.4056, 7.4055, 7.4054, 7.4051, 7.4048, 7.4055, 7.4052, 7.4058, 7.4064, 7.4062, 7.4061, 7.4067, 7.4064, 7.406, 7.4058, 7.4055, 7.4052, 7.4059, 7.4067, 7.4064, 7.407, 7.4076, 7.4081, 7.4078, 7.4075, 7.4072, 7.407, 7.4068, 7.4065, 7.4062, 7.4058, 7.4057, 7.4055, 7.4062, 7.4068, 7.4075, 7.4081, 7.4079, 7.4096, 7.4093, 7.41, 7.4097, 7.4097, 7.4094, 7.41, 7.4106, 7.4103, 7.411, 7.4107, 7.4104, 7.4102, 7.4099, 7.4096, 7.4092, 7.4088, 7.4086, 7.4083, 7.4079, 7.4076, 7.4073, 7.407, 7.4066, 7.4063, 7.4069, 7.4067, 7.4064, 7.4063, 7.4069, 7.4067, 7.4073, 7.4072, 7.4078, 7.4084, 7.4081, 7.4078, 7.4076, 7.4073, 7.4062, 7.4059, 7.4057, 7.4054, 7.4052, 7.4051, 7.4048, 7.4045, 7.4043, 7.4039, 7.4036, 7.4035, 7.4031, 7.4028, 7.4026, 7.4022, 7.4019, 7.4016, 7.4014, 7.4011, 7.4008, 7.4004, 7.4002, 7.4, 7.3996, 7.3993, 7.399, 7.3995, 7.3992, 7.3998, 7.3995, 7.3992, 7.3999, 7.3996, 7.3995, 7.3992, 7.3989, 7.3986, 7.3983, 7.398, 7.3977, 7.3975, 7.3972, 7.3969, 7.3968, 7.3964, 7.398, 7.3978, 7.3977, 7.3974, 7.3971, 7.3968, 7.3969, 7.3967, 7.3964, 7.3962, 7.3967, 7.3964, 7.3969, 7.3966, 7.3966, 7.3963, 7.396, 7.3966, 7.3963, 7.396, 7.3966, 7.3962, 7.3959, 7.3956, 7.3953, 7.3959, 7.3964, 7.3962, 7.3959, 7.3956, 7.3956, 7.3953, 7.3961, 7.3958, 7.3956, 7.3953, 7.395, 7.3947, 7.3943, 7.3949, 7.3949, 7.3946, 7.3944, 7.395, 7.3955, 7.3952, 7.395, 7.3947, 7.3953, 7.3952, 7.3949, 7.3955, 7.3952, 7.3949, 7.3946, 7.3944, 7.3941, 7.3938, 7.3935, 7.3932, 7.393, 7.3927, 7.3924, 7.3931, 7.3928, 7.3917, 7.3914, 7.3921, 7.3918, 7.3917, 7.3914, 7.3911, 7.3913, 7.3902, 7.3891, 7.3897, 7.3894, 7.3892, 7.3888, 7.3885, 7.3883, 7.3888, 7.3885, 7.3892, 7.3893, 7.3891, 7.3898, 7.3905, 7.3903, 7.39, 7.3897, 7.3896, 7.3902, 7.39, 7.3897, 7.3894, 7.3891, 7.3888, 7.3885, 7.3882, 7.3879, 7.3869, 7.3867, 7.3873, 7.3873, 7.3871, 7.3869, 7.3876, 7.3874, 7.3872, 7.3878, 7.3868, 7.3866, 7.3863, 7.3868, 7.3865, 7.3865, 7.3862, 7.3859, 7.3858, 7.3855, 7.3863, 7.386, 7.3857, 7.3854, 7.386, 7.3858, 7.3855, 7.3862, 7.3871, 7.3869, 7.3868, 7.3874, 7.3872, 7.387, 7.3867, 7.3873, 7.3871, 7.3877, 7.3875, 7.3873, 7.3879, 7.3878, 7.3884, 7.3881, 7.388, 7.3886, 7.3884, 7.3882, 7.3881, 7.3878, 7.3883, 7.3882, 7.3888, 7.3894, 7.3893, 7.389, 7.3887, 7.3884, 7.3881, 7.3878, 7.3897, 7.3896, 7.3893, 7.389, 7.3896, 7.3893, 7.3891, 7.3888, 7.3894, 7.3892, 7.389, 7.3888, 7.3894, 7.3892, 7.3889, 7.3886, 7.3883, 7.388, 7.3879, 7.3876, 7.3873, 7.387, 7.3876, 7.3872, 7.3871, 7.3868, 7.3866, 7.3871, 7.3869, 7.3866, 7.3866, 7.3872, 7.3869, 7.3867, 7.3866, 7.3873, 7.3878, 7.3875, 7.3872, 7.3879, 7.3876, 7.3873, 7.387, 7.3867, 7.3865, 7.3862, 7.3867, 7.3867, 7.3865, 7.3854, 7.3852, 7.3861, 7.3858, 7.3859, 7.3856, 7.3853, 7.3858, 7.3856, 7.3854, 7.3851, 7.3849, 7.3846, 7.3851, 7.3848, 7.3846, 7.3844, 7.3842, 7.3839, 7.3842, 7.3839, 7.3836, 7.3833, 7.3839, 7.3844, 7.3841, 7.3838, 7.3835, 7.3833, 7.3831, 7.3828, 7.3825, 7.3822, 7.3811, 7.3801, 7.3798, 7.3796, 7.3793, 7.3809, 7.382, 7.3819, 7.3825, 7.3822, 7.3821, 7.3841, 7.3838, 7.3835, 7.3858, 7.3865, 7.3864, 7.3862, 7.3861, 7.3859, 7.3857, 7.3863, 7.3861, 7.3858, 7.3856, 7.3862, 7.3859, 7.3848, 7.3853, 7.385, 7.385, 7.3847, 7.3845, 7.3843, 7.384, 7.3838, 7.3843, 7.384, 7.3837, 7.3834, 7.3832, 7.3836, 7.3838, 7.3843, 7.384, 7.3838, 7.3836, 7.3833, 7.383, 7.3827, 7.3828, 7.3834, 7.3834, 7.3831, 7.3829, 7.3826, 7.3832, 7.3829, 7.3826, 7.3823, 7.382, 7.3817, 7.3816, 7.3814, 7.3813, 7.3811, 7.3817, 7.3815, 7.3812, 7.381, 7.3809, 7.3807, 7.3804, 7.3801, 7.3807, 7.3804, 7.3828, 7.3826, 7.3815, 7.3812, 7.381, 7.3807, 7.3804, 7.3809, 7.3799, 7.3796, 7.3802, 7.3808, 7.3814, 7.3819, 7.3808, 7.3816, 7.3813, 7.381, 7.3816, 7.3813, 7.3819, 7.3817, 7.3814, 7.382, 7.3827, 7.3824, 7.383, 7.3835, 7.3841, 7.3838, 7.3835, 7.3832, 7.3829, 7.3826, 7.3823, 7.382, 7.3817, 7.3834, 7.3831, 7.3839, 7.3836, 7.3833, 7.383, 7.3835, 7.3832, 7.3829, 7.3835, 7.3832, 7.3837, 7.3834, 7.3831, 7.3828, 7.3826, 7.3831, 7.3837, 7.3842, 7.3839, 7.3836, 7.3841, 7.3847, 7.3852, 7.3858, 7.3855, 7.3852, 7.3857, 7.3854, 7.3851, 7.3849, 7.3848, 7.3845, 7.3843, 7.3849, 7.3847, 7.3844, 7.385, 7.3855, 7.3853, 7.3858, 7.3847, 7.3852, 7.3849, 7.3846, 7.3843, 7.3848, 7.3845, 7.3843, 7.3848, 7.3853, 7.385, 7.3848, 7.3845, 7.3865, 7.3863, 7.3861, 7.3866, 7.3863, 7.386, 7.3857, 7.3856, 7.3861, 7.3858, 7.3855, 7.3852, 7.3857, 7.3854, 7.3851, 7.3848, 7.3846, 7.3844, 7.3849, 7.3846, 7.3843, 7.3841, 7.383, 7.3835, 7.3832, 7.383, 7.3835, 7.384, 7.3837, 7.3834, 7.3831, 7.3836, 7.3833, 7.3838, 7.3843, 7.3856, 7.3853, 7.3858, 7.3856, 7.3861, 7.3859, 7.3856, 7.3854, 7.386, 7.3857, 7.3855, 7.3861, 7.3858, 7.3855, 7.3859, 7.3857, 7.3864, 7.3869, 7.3874, 7.3864, 7.3877, 7.3874, 7.3882, 7.3879, 7.3884, 7.3881, 7.3878, 7.3875, 7.3872, 7.3878, 7.3883, 7.3888, 7.3893, 7.389, 7.3887, 7.3892, 7.3889, 7.3887, 7.3884, 7.389, 7.3879, 7.3876, 7.3873, 7.3878, 7.3884, 7.3889, 7.3894, 7.3899, 7.3889, 7.3894, 7.39, 7.3905, 7.3902, 7.3892, 7.3882, 7.388, 7.3878, 7.3875, 7.3872, 7.3869, 7.3867, 7.388, 7.3893, 7.389, 7.3895, 7.3908, 7.3905, 7.391, 7.3915, 7.3905, 7.3911, 7.3908, 7.3906, 7.3903, 7.3908, 7.3913, 7.3918, 7.3915, 7.392, 7.3912, 7.3909, 7.3906, 7.3903, 7.39, 7.3898, 7.3895, 7.3893, 7.389, 7.3887, 7.3902, 7.3916, 7.3915, 7.3912, 7.3912, 7.3929, 7.3934, 7.3934, 7.3932, 7.3958, 7.3959, 7.3957, 7.3981, 7.4003, 7.4001, 7.3999, 7.3996, 7.3994, 7.3991, 7.3988, 7.3986, 7.4008, 7.4014, 7.4011, 7.4008, 7.4013, 7.4011, 7.4008, 7.4009, 7.4006, 7.4003, 7.4008, 7.4006, 7.4016, 7.4024, 7.4021, 7.4026, 7.4026, 7.4025, 7.4046, 7.4051, 7.4059, 7.4076, 7.4073, 7.407, 7.4076, 7.4073, 7.4071, 7.4061, 7.4058, 7.4055, 7.4052, 7.4049, 7.4055, 7.4061, 7.4067, 7.4064, 7.4054, 7.4059, 7.4056, 7.4076, 7.4073, 7.4079, 7.4076, 7.4073, 7.407, 7.4067, 7.4081, 7.4079, 7.4077, 7.4082, 7.408, 7.4086, 7.4083, 7.408, 7.4078, 7.4068, 7.4065, 7.4062, 7.4059, 7.4056, 7.4062, 7.4059, 7.4056, 7.4054, 7.4051, 7.4048, 7.4045, 7.4042, 7.4047, 7.4053, 7.4052, 7.4049, 7.4057, 7.4065, 7.4087, 7.4084, 7.4089, 7.4086, 7.4091, 7.4091, 7.41, 7.4098, 7.4103, 7.4108, 7.4106, 7.4111, 7.4109, 7.4114, 7.4119, 7.4117, 7.4122, 7.4127, 7.4134, 7.4132, 7.414, 7.4145, 7.4143, 7.414, 7.4145, 7.415, 7.4147, 7.4144, 7.4141, 7.4138, 7.4136, 7.4142, 7.4147, 7.4144, 7.4149, 7.4146, 7.4136, 7.4133, 7.4131, 7.4136, 7.4133, 7.413, 7.4136, 7.4142, 7.414, 7.4138, 7.4143, 7.4148, 7.4145, 7.4142, 7.4146, 7.4152, 7.4167, 7.4165, 7.4171, 7.4176, 7.4181, 7.4178, 7.4183, 7.4181, 7.4179, 7.4185, 7.4182, 7.4179, 7.4176, 7.4181, 7.4186, 7.4191, 7.4188, 7.4185, 7.4183, 7.4188, 7.4193, 7.419, 7.4195, 7.42, 7.4205, 7.421, 7.4215, 7.4212, 7.4217, 7.4214, 7.4211, 7.4208, 7.4205, 7.421, 7.42, 7.4198, 7.4195, 7.4193, 7.4199, 7.4197, 7.4194, 7.4192, 7.4198, 7.4196, 7.4193, 7.4191, 7.4188, 7.4193, 7.4191, 7.4188, 7.4185, 7.4182, 7.4187, 7.4185, 7.419, 7.4188, 7.4193, 7.419, 7.4188, 7.4186, 7.4183, 7.4188, 7.4185, 7.4182, 7.418, 7.4177, 7.4182, 7.418, 7.4177, 7.4175, 7.4173, 7.4171, 7.4176, 7.4183, 7.418, 7.4177, 7.4175, 7.4175, 7.418, 7.4177, 7.4174, 7.4173, 7.4179, 7.4184, 7.4189, 7.4187, 7.4184, 7.4181, 7.4178, 7.4176, 7.4182, 7.4187, 7.4185, 7.4183, 7.418, 7.4178, 7.4176, 7.4174, 7.4172, 7.4169, 7.4167, 7.4165, 7.4171, 7.4178, 7.4184, 7.4182, 7.418, 7.4178, 7.4176, 7.4181, 7.4179, 7.4184, 7.4183, 7.4188, 7.4193, 7.4192, 7.4189, 7.4194, 7.4199, 7.4196, 7.4194, 7.4191, 7.419, 7.4187, 7.4185, 7.4182, 7.4179, 7.4176, 7.4173, 7.4165, 7.4163, 7.4161, 7.4158, 7.4156, 7.4154, 7.4146, 7.4167, 7.4164, 7.4194, 7.4191, 7.4189, 7.4187, 7.4184, 7.4182, 7.4181, 7.4179, 7.4177, 7.4175, 7.4172, 7.417, 7.4169, 7.4167], '192.168.122.116': [10.7665, 18.4503, 14.1081, 10.77, 10.2365, 10.311, 9.6211, 9.1089, 8.7164, 8.4489, 8.1902, 8.4737, 8.669, 8.5698, 8.3771, 8.2565, 8.0859, 7.9812, 7.8426, 7.4983, 7.4118, 7.3184, 7.2351, 7.1615, 7.0909, 7.5962, 7.7197, 7.6359, 7.5553, 7.4809, 7.4375, 7.376, 7.3292, 7.2956, 7.2405, 7.204, 7.1799, 7.1388, 7.0963, 7.2004, 7.1599, 7.1428, 7.1109, 7.0731, 7.0326, 7.0017, 6.8683, 6.8794, 7.0232, 6.9925, 6.9726, 6.9481, 6.9185, 6.8269, 6.9013, 6.8836, 7.0113, 7.4543, 7.4174, 7.4772, 7.3647, 7.3356, 7.3057, 7.2769, 7.2528, 7.3153, 7.2916, 7.2644, 7.2551, 7.2357, 7.2225, 7.1965, 7.2598, 7.6099, 7.6587, 7.7046, 7.6729, 7.6512, 7.6209, 7.5957, 7.5691, 7.4827, 7.4591, 7.4332, 7.4209, 7.3991, 7.385, 7.632, 7.6086, 7.6982, 7.733, 7.7126, 7.6883, 7.7833, 7.7677, 7.8018, 7.8899, 7.8803, 7.8773, 7.9025, 7.9356, 7.9645, 7.947, 7.9219, 7.8982, 7.834, 7.8594, 7.8403, 7.8171, 7.7938, 7.7724, 7.7498, 7.7278, 7.7146, 7.6962, 7.7214, 7.7026, 7.6822, 7.6786, 7.7011, 7.7241, 7.7092, 7.7615, 7.7562, 7.9785, 8.0682, 8.0883, 8.1198, 8.1139, 8.1916, 8.1903, 8.1695, 8.1522, 8.1334, 8.1459, 8.1827, 8.1745, 8.1582, 8.1417, 8.1222, 8.1048, 8.1222, 8.1428, 8.1402, 8.1465, 8.13, 8.1129, 8.096, 8.0818, 8.0319, 8.0505, 8.0327, 8.0234, 8.0116, 8.0323, 8.0234, 8.0094, 8.0094, 7.9921, 8.0094, 7.9993, 8.0148, 8.0001, 7.9899, 7.9773, 7.9801, 7.9694, 7.9859, 7.9717, 7.9622, 7.947, 7.9368, 7.924, 7.9117, 7.9371, 7.9546, 7.9449, 7.9303, 7.952, 7.9406, 7.9561, 7.9719, 7.9578, 7.9737, 7.9616, 7.9473, 7.9619, 7.9775, 7.9909, 8.0044, 7.9909, 7.9771, 7.9636, 7.9787, 7.9927, 8.0089, 7.9968, 7.9963, 7.9858, 7.9768, 7.9637, 7.9523, 7.9419, 7.9302, 7.9177, 7.9616, 7.9497, 7.9616, 7.9503, 7.9377, 7.9464, 7.9583, 7.9478, 7.9615, 7.9751, 7.9634, 7.9514, 7.9885, 7.9899, 7.9793, 7.9926, 8.0302, 8.0185, 8.0093, 8.0295, 8.0181, 8.0069, 7.997, 8.0093, 7.9995, 7.9946, 7.9867, 7.9748, 7.9634, 7.9751, 7.9648, 7.9539, 7.9429, 7.9331, 7.9226, 7.9123, 7.9233, 7.9581, 7.9708, 7.9617, 7.9954, 7.989, 7.9956, 7.9924, 7.9948, 8.0061, 7.9953, 7.9856, 7.9987, 8.0096, 8.002, 8.1387, 8.2318, 8.2638, 8.2577, 8.2475, 8.271, 8.265, 8.2663, 8.2566, 8.2512, 8.2476, 8.2383, 8.2318, 8.2219, 8.232, 8.204, 8.1944, 8.1837, 8.1765, 8.1693, 8.1605, 8.1517, 8.1449, 8.1369, 8.128, 8.1189, 8.129, 8.1233, 8.2286, 8.2184, 8.2292, 8.2379, 8.2297, 8.2377, 8.2484, 8.2387, 8.2476, 8.2456, 8.2391, 8.2301, 8.2206, 8.2124, 8.242, 8.3278, 8.3195, 8.3343, 8.3256, 8.3202, 8.3296, 8.3904, 8.382, 8.3739, 8.3647, 8.3743, 8.4044, 8.3952, 8.3879, 8.3803, 8.4315, 8.4244, 8.4152, 8.4412, 8.4705, 8.4622, 8.4526, 8.4509, 8.4426, 8.4497, 8.4402, 8.4319, 8.4391, 8.4474, 8.4406, 8.4336, 8.4248, 8.4322, 8.423, 8.4143, 8.4557, 8.4465, 8.4373, 8.4286, 8.4199, 8.4106, 8.3873, 8.3956, 8.3871, 8.3795, 8.3723, 8.3643, 8.3571, 8.3629, 8.3541, 8.3458, 8.3531, 8.3448, 8.3227, 8.3147, 8.3215, 8.3163, 8.3085, 8.3051, 8.2972, 8.2903, 8.2824, 8.2777, 8.2848, 8.2769, 8.2688, 8.2624, 8.2695, 8.262, 8.2691, 8.2483, 8.241, 8.2353, 8.2285, 8.2218, 8.2157, 8.2083, 8.2025, 8.1969, 8.1907, 8.1842, 8.1939, 8.1882, 8.2077, 8.2017, 8.196, 8.1897, 8.1833, 8.1772, 8.1695, 8.1638, 8.1706, 8.1645, 8.157, 8.1653, 8.1588, 8.1538, 8.147, 8.1399, 8.121, 8.1464, 8.1417, 8.135, 8.1288, 8.1221, 8.1283, 8.1216, 8.1147, 8.1209, 8.1155, 8.122, 8.1235, 8.1169, 8.1103, 8.1169, 8.1235, 8.1168, 8.1221, 8.1369, 8.1308, 8.1241, 8.1454, 8.152, 8.1584, 8.1897, 8.1831, 8.1767, 8.17, 8.1635, 8.1743, 8.1678, 8.1613, 8.1764, 8.1706, 8.1649, 8.1713, 8.1659, 8.1719, 8.1652, 8.1599, 8.1657, 8.1593, 8.1531, 8.1506, 8.1447, 8.1399, 8.1226, 8.1192, 8.1139, 8.12, 8.1161, 8.1101, 8.1089, 8.1028, 8.0968, 8.0917, 8.0978, 8.0925, 8.0983, 8.1102, 8.1044, 8.1093, 8.1147, 8.1087, 8.1028, 8.1009, 8.0951, 8.0893, 8.0841, 8.08, 8.0787, 8.0733, 8.0791, 8.1119, 8.1069, 8.1044, 8.1001, 8.0947, 8.0903, 8.0848, 8.0812, 8.0754, 8.071, 8.0653, 8.0601, 8.0549, 8.0498, 8.0442, 8.0407, 8.0373, 8.0319, 8.0264, 8.0208, 8.0182, 8.0137, 8.0084, 8.003, 7.998, 8.0061, 8.0138, 8.0226, 8.0308, 8.0267, 8.0228, 8.0193, 8.0246, 8.0298, 8.026, 8.0214, 8.0277, 8.023, 8.0178, 8.0298, 8.025, 8.0198, 8.0158, 8.0113, 8.0164, 8.0114, 8.0066, 8.0021, 7.9972, 7.9921, 7.9873, 7.983, 7.9778, 7.9662, 7.9621, 7.9571, 7.9523, 7.9583, 7.9536, 7.9488, 7.944, 7.9393, 7.9347, 7.9399, 7.9499, 7.9364, 7.9614, 7.9565, 7.9519, 7.9609, 7.9566, 7.9542, 7.9513, 7.9584, 7.9558, 7.9513, 7.9465, 7.9426, 7.9491, 7.9554, 7.9515, 7.9474, 7.9526, 7.9483, 7.9448, 7.9412, 7.9465, 7.9525, 7.9572, 7.9542, 7.9412, 7.9371, 7.9331, 7.9201, 7.916, 7.9223, 7.9175, 7.9224, 7.9187, 7.9145, 7.9104, 7.9069, 7.912, 7.909, 7.9046, 7.9101, 7.9061, 7.9107, 7.9094, 7.9065, 7.9028, 7.899, 7.8949, 7.9, 7.8957, 7.8913, 7.8871, 7.8836, 7.8794, 7.8752, 7.8721, 7.8955, 7.8913, 7.8891, 7.8959, 7.8917, 7.8881, 7.8938, 7.8898, 7.8945, 7.8932, 7.8981, 7.9028, 7.8989, 7.9057, 7.9017, 7.8983, 7.8942, 7.8913, 7.8877, 7.8935, 7.8894, 7.8948, 7.8973, 7.8948, 7.9009, 7.8988, 7.8955, 7.8933, 7.8977, 7.8939, 7.8898, 7.8783, 7.8827, 7.8787, 7.8837, 7.8805, 7.8773, 7.874, 7.871, 7.867, 7.8636, 7.8607, 7.8573, 7.8542, 7.8503, 7.8556, 7.8569, 7.8545, 7.8512, 7.8512, 7.8472, 7.844, 7.8405, 7.8374, 7.8424, 7.8393, 7.8359, 7.8414, 7.8379, 7.8349, 7.8315, 7.8278, 7.8244, 7.8211, 7.8174, 7.822, 7.8113, 7.8104, 7.8077, 7.8045, 7.801, 7.8067, 7.8114, 7.8089, 7.8131, 7.8184, 7.8231, 7.8193, 7.8176, 7.8148, 7.811, 7.8153, 7.8207, 7.8184, 7.815, 7.8113, 7.8075, 7.8049, 7.8014, 7.8025, 7.8009, 7.7973, 7.8015, 7.8059, 7.8103, 7.8066, 7.8035, 7.8001, 7.7984, 7.812, 7.8162, 7.8133, 7.8175, 7.8143, 7.8136, 7.8112, 7.8088, 7.8056, 7.8052, 7.8019, 7.7988, 7.8036, 7.8022, 7.8103, 7.8149, 7.8119, 7.8131, 7.8123, 7.8093, 7.8139, 7.8136, 7.8106, 7.8073, 7.8042, 7.8025, 7.7948, 7.7913, 7.7829, 7.7875, 7.7914, 7.7892, 7.793, 7.7931, 7.7903, 7.7954, 7.7925, 7.7962, 7.7938, 7.791, 7.7888, 7.7854, 7.7827, 7.7804, 7.7796, 7.7773, 7.7746, 7.7714, 7.768, 7.7657, 7.7698, 7.7673, 7.7641, 7.7609, 7.7593, 7.7648, 7.7617, 7.7656, 7.7625, 7.7597, 7.7638, 7.7607, 7.7596, 7.7573, 7.7615, 7.7585, 7.7626, 7.7667, 7.7664, 7.7632, 7.763, 7.7602, 7.7572, 7.7614, 7.7595, 7.7629, 7.7605, 7.7576, 7.7546, 7.752, 7.7501, 7.7469, 7.7509, 7.7477, 7.7446, 7.7414, 7.7455, 7.7512, 7.7487, 7.746, 7.7502, 7.7544, 7.7518, 7.7488, 7.7458, 7.743, 7.7401, 7.7375, 7.7348, 7.7319, 7.7387, 7.7438, 7.7417, 7.7468, 7.7441, 7.7413, 7.7385, 7.742, 7.7465, 7.7442, 7.7492, 7.7487, 7.7457, 7.7425, 7.7396, 7.7377, 7.7347, 7.7323, 7.7308, 7.7287, 7.7266, 7.7301, 7.7274, 7.7244, 7.7286, 7.7256, 7.723, 7.7246, 7.7274, 7.7253, 7.7247, 7.7226, 7.7209, 7.7191, 7.7186, 7.7156, 7.7127, 7.7098, 7.7136, 7.7173, 7.7213, 7.7186, 7.7164, 7.7137, 7.7109, 7.7103, 7.7075, 7.7048, 7.7083, 7.7063, 7.7097, 7.7069, 7.7042, 7.7018, 7.6997, 7.6969, 7.6941, 7.6919, 7.6894, 7.6872, 7.6844, 7.6827, 7.6861, 7.6835, 7.681, 7.6849, 7.6826, 7.686, 7.6833, 7.6868, 7.6845, 7.6821, 7.6855, 7.6892, 7.687, 7.6907, 7.6905, 7.6883, 7.6917, 7.6951, 7.6992, 7.6967, 7.694, 7.6916, 7.6952, 7.6924, 7.6901, 7.6932, 7.6906, 7.7001, 7.6977, 7.6955, 7.6929, 7.6906, 7.6888, 7.6868, 7.684, 7.6818, 7.6796, 7.6773, 7.6752, 7.6727, 7.6706, 7.6683, 7.6659, 7.6637, 7.6672, 7.6705, 7.674, 7.6715, 7.6688, 7.6663, 7.6639, 7.6619, 7.6654, 7.6629, 7.6665, 7.664, 7.6616, 7.6602, 7.6577, 7.6619, 7.6599, 7.659, 7.6568, 7.6607, 7.6584, 7.6559, 7.6546, 7.6583, 7.6585, 7.6587, 7.657, 7.6493, 7.6479, 7.6453, 7.6434, 7.6422, 7.6404, 7.638, 7.6362, 7.6338, 7.6315, 7.6292, 7.631, 7.6287, 7.6281, 7.6331, 7.6354, 7.6336, 7.6263, 7.6237, 7.6212, 7.6251, 7.6232, 7.6213, 7.6189, 7.6119, 7.6149, 7.6183, 7.616, 7.6145, 7.6122, 7.6155, 7.6131, 7.6108, 7.6088, 7.6098, 7.608, 7.6057, 7.6091, 7.6071, 7.6105, 7.6088, 7.6073, 7.6056, 7.5996, 7.6045, 7.6089, 7.6068, 7.6053, 7.6107, 7.6096, 7.6148, 7.6126, 7.6114, 7.61, 7.6144, 7.613, 7.6112, 7.6053, 7.6032, 7.6017, 7.6061, 7.6067, 7.6119, 7.6101, 7.6077, 7.6054, 7.6241, 7.622, 7.6202, 7.6234, 7.621, 7.6197, 7.6175, 7.6161, 7.6192, 7.617, 7.6147, 7.6126, 7.6158, 7.6139, 7.6118, 7.6101, 7.6078, 7.608, 7.6067, 7.6045, 7.6029, 7.6061, 7.6044, 7.6034, 7.6019, 7.6017, 7.6001, 7.5985, 7.5962, 7.5943, 7.6036, 7.6099, 7.6081, 7.6108, 7.6158, 7.614, 7.6179, 7.6201, 7.6185, 7.6165, 7.6146, 7.6146, 7.6091, 7.61, 7.608, 7.6088, 7.6069, 7.6054, 7.6049, 7.6037, 7.6033, 7.6037, 7.6064, 7.6095, 7.6087, 7.6197, 7.6183, 7.6214, 7.6206, 7.6243, 7.6225, 7.6206, 7.6186, 7.6169, 7.6227, 7.6213, 7.62, 7.6187, 7.6196, 7.6234, 7.6218, 7.6196, 7.6181, 7.62, 7.6233, 7.622, 7.6197, 7.6181, 7.627, 7.6251, 7.6278, 7.6306, 7.629, 7.6272, 7.6258, 7.6237, 7.6268, 7.6251, 7.6278, 7.6257, 7.6197, 7.6177, 7.6215, 7.6243, 7.6224, 7.626, 7.6241, 7.6227, 7.6257, 7.6237, 7.6277, 7.6257, 7.6236, 7.6219, 7.6205, 7.6233, 7.6264, 7.6245, 7.6226, 7.6207, 7.6237, 7.6218, 7.6199, 7.6186, 7.6216, 7.6202, 7.6184, 7.6214, 7.6194, 7.6174, 7.6302, 7.6333, 7.6475, 7.6507, 7.6492, 7.6475, 7.6481, 7.6514, 7.6503, 7.6482, 7.6461, 7.6443, 7.6471, 7.6453, 7.6433, 7.6463, 7.6443, 7.655, 7.6533, 7.6516, 7.6499, 7.6538, 7.652, 7.6513, 7.6496, 7.6482, 7.651, 7.6603, 7.6584, 7.6662, 7.6693, 7.6677, 7.6656, 7.6685, 7.6669, 7.6649, 7.6633, 7.6664, 7.6647, 7.6686, 7.6712, 7.6737, 7.6718, 7.6698, 7.6677, 7.6798, 7.6854, 7.6834, 7.6823, 7.6808, 7.6796, 7.6781, 7.6764, 7.6715, 7.67, 7.664, 7.6629, 7.662, 7.6649, 7.6632, 7.6611, 7.6592, 7.6573, 7.6557, 7.6539, 7.6568, 7.6549, 7.6535, 7.6515, 7.6502, 7.6482, 7.6463, 7.6448, 7.6433, 7.646, 7.6441, 7.6428, 7.6408, 7.6435, 7.6417, 7.6398, 7.6424, 7.6405, 7.6432, 7.6418, 7.6407, 7.6398, 7.6397, 7.6383, 7.6365, 7.6349, 7.6335, 7.6359, 7.6339, 7.6342, 7.6323, 7.635, 7.6331, 7.6313, 7.6339, 7.6329, 7.6311, 7.6299, 7.6326, 7.6314, 7.6298, 7.6321, 7.6302, 7.6377, 7.6366, 7.6353, 7.6342, 7.6326, 7.6399, 7.6426, 7.6408, 7.6392, 7.6375, 7.6443, 7.6388, 7.6434, 7.642, 7.6445, 7.643, 7.6412, 7.6396, 7.6382, 7.6417, 7.6448, 7.6436, 7.6467, 7.6497, 7.648, 7.6465, 7.6453, 7.6444, 7.6432, 7.6424, 7.641, 7.6396, 7.6382, 7.6439, 7.6423, 7.6409, 7.6416, 7.6405, 7.6401, 7.6388, 7.6371, 7.6353, 7.6385, 7.638, 7.6363, 7.639, 7.6374, 7.6406, 7.6398, 7.642, 7.6442, 7.6426, 7.6419, 7.6402, 7.6383, 7.6367, 7.6351, 7.6332, 7.6316, 7.6299, 7.6293, 7.6282, 7.6306, 7.6289, 7.6314, 7.63, 7.6327, 7.6313, 7.6354, 7.6347, 7.633, 7.6316, 7.6298, 7.628, 7.6269, 7.6291, 7.6283, 7.6308, 7.6291, 7.6275, 7.626, 7.6207, 7.6238, 7.6264, 7.6247, 7.6269, 7.6251, 7.6237, 7.6219, 7.6201, 7.619, 7.6216, 7.6207, 7.6194, 7.6181, 7.6236, 7.6218, 7.6353, 7.6339, 7.6326, 7.6311, 7.6295, 7.6278, 7.6265, 7.6248, 7.6235, 7.6222, 7.622, 7.6246, 7.6266, 7.6292, 7.6319, 7.6304, 7.6291, 7.6312, 7.6295, 7.6283, 7.6269, 7.6294, 7.6318, 7.6301, 7.6291, 7.6282, 7.6264, 7.6249, 7.6231, 7.6255, 7.6278, 7.6261, 7.6243, 7.6264, 7.6246, 7.6194, 7.6223, 7.6206, 7.619, 7.6177, 7.6167, 7.6154, 7.6221, 7.6204, 7.6228, 7.625, 7.6234, 7.6217, 7.6202, 7.6225, 7.6213, 7.6197, 7.6192, 7.6178, 7.6161, 7.6153, 7.6136, 7.6119, 7.6141, 7.6126, 7.616, 7.6182, 7.6165, 7.6148, 7.6133, 7.6117, 7.6103, 7.6089, 7.6076, 7.606, 7.6049, 7.6071, 7.6133, 7.6256, 7.6239, 7.6222, 7.6206, 7.6192, 7.6213, 7.6198, 7.6181, 7.6164, 7.6152, 7.6199, 7.6182, 7.6167, 7.615, 7.6134, 7.6118, 7.6107, 7.6091, 7.608, 7.6066, 7.605, 7.6072, 7.6057, 7.6118, 7.6114, 7.61, 7.6052, 7.6037, 7.6024, 7.6015, 7.6001, 7.5988, 7.5975, 7.5962, 7.5912, 7.5934, 7.5957, 7.6026, 7.6051, 7.6036, 7.6021, 7.6025, 7.6012, 7.6, 7.5985, 7.5971, 7.5968, 7.5955, 7.5941, 7.5932, 7.5921, 7.5952, 7.6015, 7.608, 7.6065, 7.6054, 7.6076, 7.6068, 7.6064, 7.6051, 7.6073, 7.6062, 7.6054, 7.6046, 7.6033, 7.6022, 7.6006, 7.596, 7.5948, 7.5942, 7.5926, 7.591, 7.5929, 7.5949, 7.5934, 7.5954, 7.5975, 7.5964, 7.5953, 7.5938, 7.5923, 7.5917, 7.5961, 7.5986, 7.5971, 7.5961, 7.5946, 7.5934, 7.5944, 7.5967, 7.5954, 7.5938, 7.596, 7.5947, 7.5932, 7.5954, 7.5976, 7.5963, 7.5987, 7.5972, 7.5957, 7.5943, 7.593, 7.5951, 7.5973, 7.5996, 7.5982, 7.6005, 7.6026, 7.6013, 7.603, 7.6019, 7.6041, 7.6028, 7.5982, 7.597, 7.5955, 7.5941, 7.5926, 7.5914, 7.5907, 7.5897, 7.5919, 7.594, 7.5926, 7.5916, 7.5948, 7.5933, 7.592, 7.5906, 7.5928, 7.5915, 7.5938, 7.5925, 7.592, 7.5924, 7.591, 7.5949, 7.5936, 7.5932, 7.5921, 7.591, 7.5896, 7.5917, 7.5908, 7.5893, 7.5916, 7.5935, 7.5924, 7.591, 7.5898, 7.5885, 7.5881, 7.59, 7.5886, 7.5873, 7.5864, 7.5853, 7.5875, 7.5862, 7.5851, 7.6056, 7.6041, 7.6031, 7.6019, 7.6009, 7.5996, 7.6014, 7.5969, 7.5925, 7.5951, 7.5973, 7.5962, 7.595, 7.5938, 7.5923, 7.5911, 7.5933, 7.5936, 7.5973, 7.5962, 7.5953, 7.5943, 7.5966, 7.5954, 7.5973, 7.5967, 7.5952, 7.5971, 7.6067, 7.6062, 7.6084, 7.6073, 7.6058, 7.6046, 7.6032, 7.6021, 7.6007, 7.6027, 7.6012, 7.5968, 7.5954, 7.5939, 7.5969, 7.5955, 7.5944, 7.593, 7.5918, 7.5936, 7.5923, 7.5941, 7.5962, 7.595, 7.5941, 7.5926, 7.5912, 7.5898, 7.5885, 7.5873, 7.5896, 7.592, 7.591, 7.5895, 7.5883, 7.5872, 7.5881, 7.5868, 7.5826, 7.5847, 7.5871, 7.586, 7.5846, 7.5962, 7.5948, 7.5935, 7.5925, 7.5944, 7.5987, 7.5973, 7.596, 7.595, 7.5939, 7.5981, 7.597, 7.5956, 7.5976, 7.5962, 7.595, 7.5969, 7.6021, 7.6008, 7.5995, 7.5984, 7.6003, 7.6023, 7.6015, 7.6001, 7.5988, 7.5975, 7.5962, 7.5981, 7.6, 7.5987, 7.5979, 7.5968, 7.5956, 7.5974, 7.5961, 7.5951, 7.5939, 7.5925, 7.5945, 7.5934, 7.5921, 7.5911, 7.5898, 7.5885, 7.5879, 7.5866, 7.5853, 7.5843, 7.5865, 7.5853, 7.5875, 7.5867, 7.5856, 7.5843, 7.5835, 7.591, 7.59, 7.5922, 7.5912, 7.5905, 7.5895, 7.5882, 7.5872, 7.5865, 7.5854, 7.5841, 7.5829, 7.582, 7.5808, 7.5801, 7.5822, 7.5812, 7.5798, 7.5792, 7.578, 7.5768, 7.5756, 7.5748, 7.574, 7.5734, 7.5722, 7.571, 7.573, 7.5718, 7.5734, 7.5722, 7.574, 7.5759, 7.5757, 7.5746, 7.5765, 7.5754, 7.5773, 7.5791, 7.578, 7.5829, 7.5848, 7.5836, 7.5822, 7.5811, 7.5801, 7.5819, 7.5807, 7.5827, 7.5848, 7.5835, 7.5822, 7.5808, 7.5797, 7.5785, 7.5773, 7.576, 7.5747, 7.574, 7.5759, 7.5745, 7.5733, 7.5721, 7.5739, 7.5757, 7.5754, 7.5742, 7.576, 7.5747, 7.5735, 7.5722, 7.571, 7.573, 7.5749, 7.5736, 7.5724, 7.5712, 7.57, 7.5689, 7.5681, 7.5668, 7.5656, 7.5663, 7.5625, 7.5612, 7.56, 7.5587, 7.5636, 7.5624, 7.5615, 7.5603, 7.5595, 7.5589, 7.5579, 7.5567, 7.5556, 7.5545, 7.5537, 7.5564, 7.5582, 7.5602, 7.5618, 7.5618, 7.5637, 7.578, 7.577, 7.5759, 7.5777, 7.5765, 7.5783, 7.5743, 7.5791, 7.5779, 7.5797, 7.5784, 7.5777, 7.5794, 7.5815, 7.5832, 7.5822, 7.5809, 7.5796, 7.5815, 7.5805, 7.5793, 7.5786, 7.5776, 7.5794, 7.5785, 7.5776, 7.5764, 7.5757, 7.5744, 7.5733, 7.572, 7.5733, 7.5695, 7.5683, 7.5672, 7.5689, 7.5718, 7.571, 7.5676, 7.57, 7.569, 7.5678, 7.5671, 7.5662, 7.5656, 7.5648, 7.5641, 7.5628, 7.5616, 7.5604, 7.5595, 7.5589, 7.5578, 7.557, 7.5564, 7.5553, 7.5541, 7.5535, 7.5527, 7.5515, 7.5504, 7.5588, 7.5577, 7.5593, 7.5582, 7.5581, 7.5569, 7.5557, 7.5549, 7.554, 7.5528, 7.5519, 7.551, 7.5502, 7.5495, 7.5484, 7.5475, 7.5469, 7.5458, 7.5446, 7.5434, 7.5452, 7.5441, 7.5431, 7.5448, 7.5469, 7.5468, 7.546, 7.5425, 7.5414, 7.541, 7.5399, 7.5417, 7.5406, 7.5427, 7.5419, 7.5436, 7.5424, 7.5442, 7.5439, 7.5428, 7.5421, 7.5409, 7.5402, 7.539, 7.5442, 7.5434, 7.5422, 7.5414, 7.543, 7.5447, 7.5463, 7.5452, 7.5444, 7.5432, 7.542, 7.5409, 7.5538, 7.5555, 7.5548, 7.5537, 7.5528, 7.5494, 7.5483, 7.5543, 7.559, 7.5617, 7.5611, 7.5604, 7.5574, 7.5567, 7.5557, 7.555, 7.5542, 7.5544, 7.5538, 7.5556, 7.5547, 7.5545, 7.5541, 7.5532, 7.5549, 7.5541, 7.559, 7.5631, 7.5625, 7.5617, 7.5607, 7.5599, 7.5589, 7.5579, 7.5569, 7.5559, 7.5577, 7.5575, 7.5564, 7.5661, 7.565, 7.5667, 7.5656, 7.5673, 7.5664, 7.5652, 7.5641, 7.5629, 7.562, 7.561, 7.5625, 7.5616, 7.5604, 7.5597, 7.5586, 7.5604, 7.562, 7.5637, 7.5629, 7.5625, 7.5644, 7.5636, 7.563, 7.5647, 7.5635, 7.5651, 7.564, 7.5628, 7.5617, 7.5609, 7.5598, 7.5587, 7.5603, 7.5599, 7.5617, 7.5633, 7.565, 7.5639, 7.5633, 7.5626, 7.5617, 7.5611, 7.5601, 7.5593, 7.5587, 7.5584, 7.5602, 7.5593, 7.5611, 7.563, 7.5646, 7.5637, 7.5628, 7.5621, 7.5613, 7.5633, 7.5622, 7.5614, 7.5605, 7.5597, 7.5587, 7.558, 7.5597, 7.5588, 7.5631, 7.5655, 7.5647, 7.5639, 7.5654, 7.5669, 7.5661, 7.5679, 7.5671, 7.5659, 7.565, 7.564, 7.5631, 7.5649, 7.5641, 7.5636, 7.5627, 7.5657, 7.5646, 7.5635, 7.565, 7.5639, 7.563, 7.562, 7.5609, 7.5607, 7.5598, 7.5587, 7.5602, 7.5594, 7.5582, 7.5572, 7.5563, 7.5551, 7.5546, 7.5538, 7.5527, 7.5516, 7.5506, 7.552, 7.5511, 7.5503, 7.5495, 7.5509, 7.5498, 7.5495, 7.5484, 7.5473, 7.5463, 7.5454, 7.5472, 7.5488, 7.5479, 7.5471, 7.547, 7.5461, 7.5484, 7.5474, 7.5518, 7.5508, 7.5526, 7.5516, 7.5534, 7.5556, 7.5545, 7.5534, 7.5525, 7.5514, 7.5506, 7.55, 7.549, 7.548, 7.5504, 7.5518, 7.5509, 7.5498, 7.5488, 7.5455, 7.5445, 7.5435, 7.5428, 7.5423, 7.5442, 7.546, 7.5427, 7.5441, 7.5457, 7.5449, 7.5439, 7.5429, 7.5419, 7.5419, 7.5435, 7.5424, 7.542, 7.541, 7.54, 7.539, 7.538, 7.5369, 7.5359, 7.5349, 7.5339, 7.536, 7.5351, 7.5343, 7.5408, 7.5399, 7.5389, 7.5378, 7.5367, 7.5357, 7.5349, 7.5341, 7.533, 7.5319, 7.531, 7.5333, 7.5353, 7.5344, 7.5358, 7.5349, 7.5367, 7.5382, 7.5371, 7.5386, 7.5376, 7.5392, 7.5383, 7.5374, 7.5367, 7.5357, 7.5351, 7.5341, 7.533, 7.5344, 7.5336, 7.5331, 7.5321, 7.5316, 7.5316, 7.5306, 7.5296, 7.5312, 7.536, 7.5349, 7.5365, 7.5357, 7.5347, 7.5361, 7.5351, 7.537, 7.536, 7.5355, 7.5345, 7.5335, 7.5303, 7.5318, 7.5309, 7.53, 7.5291, 7.5307, 7.5296, 7.5286, 7.5278, 7.5268, 7.5284, 7.5276, 7.5268, 7.5261, 7.5254, 7.5245, 7.5236, 7.5252, 7.5243, 7.5238, 7.5233, 7.5226, 7.5217, 7.5211, 7.5202, 7.5196, 7.5187, 7.5177, 7.5193, 7.5185, 7.5176, 7.5167, 7.5158, 7.5148, 7.514, 7.5153, 7.5143, 7.5133, 7.5147, 7.5162, 7.5153, 7.5168, 7.5161, 7.5151, 7.5166, 7.5156, 7.5171, 7.5166, 7.5156, 7.5146, 7.5137, 7.5153, 7.5147, 7.5137, 7.5152, 7.5121, 7.5114, 7.5108, 7.5123, 7.5116, 7.5111, 7.5101, 7.5091, 7.5281, 7.5273, 7.5264, 7.5255, 7.5246, 7.5236, 7.5253, 7.5268, 7.5259, 7.5273, 7.5264, 7.528, 7.527, 7.526, 7.5275, 7.5266, 7.5258, 7.5249, 7.5264, 7.5267, 7.5257, 7.525, 7.5243, 7.5258, 7.5248, 7.5263, 7.5266, 7.5256, 7.5246, 7.5261, 7.5251, 7.5247, 7.5216, 7.5206, 7.5197, 7.5189, 7.5179, 7.5171, 7.5184, 7.5175, 7.5166, 7.5158, 7.5173, 7.5165, 7.5178, 7.5193, 7.5184, 7.5177, 7.5192, 7.5183, 7.5174, 7.5191, 7.5207, 7.5199, 7.5192, 7.5183, 7.5174, 7.5166, 7.5159, 7.5151, 7.5146, 7.5136, 7.5128, 7.5119, 7.509, 7.5082, 7.5075, 7.5097, 7.5118, 7.5111, 7.5085, 7.5078, 7.5069, 7.5059, 7.5075, 7.5138, 7.5129, 7.5119, 7.5109, 7.5103, 7.5098, 7.5112, 7.5105, 7.5096, 7.5088, 7.5079, 7.5123, 7.5116, 7.5111, 7.5128, 7.5119, 7.511, 7.5125, 7.5115, 7.5108, 7.5099, 7.5069, 7.5067, 7.506, 7.5051, 7.5042, 7.5034, 7.5029, 7.5022, 7.5037, 7.503, 7.5021, 7.5012, 7.5003, 7.5018, 7.501, 7.5001, 7.4992, 7.5006, 7.5024, 7.5015, 7.5009, 7.5001, 7.4991, 7.4985, 7.4978, 7.4994, 7.4989, 7.5004, 7.4996, 7.4991, 7.4986, 7.4978, 7.4972, 7.4963, 7.4954, 7.4945, 7.4959, 7.495, 7.4943, 7.4953, 7.4947, 7.4961, 7.4952, 7.4967, 7.4957, 7.495, 7.4943, 7.4959, 7.4972, 7.4947, 7.4938, 7.4931, 7.4924, 7.4938, 7.4953, 7.4944, 7.4936, 7.4929, 7.4941, 7.4933, 7.4986, 7.4978, 7.4991, 7.4982, 7.4994, 7.4985, 7.4998, 7.499, 7.5003, 7.5031, 7.5005, 7.502, 7.5012, 7.5004, 7.5006, 7.4998, 7.5038, 7.5051, 7.5048, 7.5043, 7.5038, 7.5052, 7.5047, 7.5039, 7.503, 7.5021, 7.5016, 7.5008, 7.5001, 7.5015, 7.4986, 7.5001, 7.4992, 7.5007, 7.5003, 7.4994, 7.4985, 7.498, 7.4972, 7.4964, 7.4943, 7.4937, 7.4931, 7.4924, 7.4919, 7.4958, 7.495, 7.4964, 7.4956, 7.4947, 7.4942, 7.4938, 7.493, 7.4923, 7.4914, 7.4911, 7.4936, 7.4955, 7.4949, 7.4942, 7.4937, 7.4928, 7.4919, 7.491, 7.4934, 7.4948, 7.492, 7.4934, 7.4927, 7.4942, 7.4937, 7.4931, 7.4923, 7.4938, 7.493, 7.4923, 7.4916, 7.4911, 7.4907, 7.4919, 7.4913, 7.489, 7.4903, 7.4904, 7.4896, 7.4911, 7.491, 7.4924, 7.496, 7.4954, 7.4945, 7.4936, 7.4928, 7.4922, 7.4935, 7.4948, 7.4976, 7.4968, 7.4959, 7.4951, 7.4942, 7.4957, 7.4949, 7.4944, 7.4936, 7.4927, 7.4941, 7.4933, 7.4926, 7.4919, 7.4911, 7.4904, 7.4896, 7.4888, 7.4883, 7.4876, 7.489, 7.4885, 7.488, 7.4873, 7.4886, 7.4881, 7.4874, 7.4869, 7.4876, 7.4869, 7.4863, 7.4855, 7.4848, 7.4841, 7.4834, 7.4847, 7.4838, 7.483, 7.4821, 7.4812, 7.4858, 7.483, 7.4821, 7.4833, 7.4845, 7.4837, 7.4838, 7.485, 7.4841, 7.4832, 7.4831, 7.4844, 7.4857, 7.4853, 7.4826, 7.4818, 7.481, 7.4802, 7.4794, 7.4806, 7.4819, 7.4813, 7.4825, 7.4818, 7.4809, 7.48, 7.4812, 7.4805, 7.4818, 7.4813, 7.4828, 7.4823, 7.4836, 7.4829, 7.4825, 7.4817, 7.4791, 7.4794, 7.4807, 7.4799, 7.4792, 7.4785, 7.4777, 7.4783, 7.4791, 7.4784, 7.4777, 7.477, 7.4764, 7.4756, 7.4748, 7.4723, 7.4718, 7.4731, 7.4743, 7.4737, 7.4751, 7.4746, 7.4739, 7.4731, 7.4723, 7.4756, 7.4768, 7.4781, 7.4794, 7.4767, 7.4777, 7.4773, 7.4765, 7.4758, 7.477, 7.4783, 7.4776, 7.4752, 7.4746, 7.4738, 7.475, 7.4762, 7.4754, 7.4746, 7.4725, 7.4728, 7.4741, 7.4753, 7.4746, 7.4739, 7.4751, 7.4749, 7.4742, 7.4736, 7.4727, 7.4719, 7.4711, 7.4706, 7.4697, 7.4689, 7.468, 7.4672, 7.4666, 7.466, 7.4684, 7.4676, 7.471, 7.4723, 7.4827, 7.4819, 7.4812, 7.4828, 7.4823, 7.4815, 7.481, 7.4803, 7.4816, 7.4829, 7.485, 7.4843, 7.4837, 7.4812, 7.4804, 7.4816, 7.4813, 7.4806, 7.4804, 7.4819, 7.4811, 7.4884, 7.4878, 7.4934, 7.4928, 7.4923, 7.4921, 7.4913, 7.4907, 7.49, 7.4892, 7.4887, 7.4867, 7.486, 7.4852, 7.4851, 7.4843, 7.4835, 7.485, 7.4842, 7.4834, 7.4827, 7.4822, 7.4816, 7.4808, 7.4806, 7.4798, 7.4791, 7.4785, 7.4777, 7.4789, 7.4783, 7.4794, 7.4806, 7.4798, 7.4811, 7.4803, 7.4816, 7.4812, 7.4806, 7.48, 7.4792, 7.4786, 7.4799, 7.4791, 7.4787, 7.4799, 7.4811, 7.4824, 7.4817, 7.4809, 7.4801, 7.4793, 7.4794, 7.4789, 7.4781, 7.4793, 7.4786, 7.478, 7.4774, 7.4788, 7.4782, 7.4775, 7.4777, 7.4769, 7.4763, 7.4755, 7.4788, 7.4799, 7.4791, 7.4803, 7.4797, 7.4809, 7.4811, 7.4812, 7.4808, 7.4803, 7.4796, 7.4789, 7.4783, 7.4776, 7.4793, 7.4786, 7.4779, 7.4771, 7.4764, 7.4756, 7.4782, 7.4775, 7.4787, 7.4779, 7.4801, 7.4794, 7.4806, 7.4799, 7.4797, 7.4789, 7.4781, 7.4773, 7.4793, 7.4785, 7.4777, 7.4769, 7.4762, 7.4759, 7.4756, 7.4768, 7.4761, 7.4753, 7.4746, 7.4742, 7.4735, 7.4728, 7.4721, 7.4714, 7.4725, 7.472, 7.4714, 7.4728, 7.4721, 7.4734, 7.4759, 7.4751, 7.4743, 7.4735, 7.4729, 7.4721, 7.4717, 7.4731, 7.4731, 7.4708, 7.4723, 7.4717, 7.4709, 7.4703, 7.4715, 7.4728, 7.4724, 7.474, 7.4738, 7.475, 7.4761, 7.4757, 7.4752, 7.4764, 7.4833, 7.481, 7.4802, 7.4794, 7.4787, 7.4779, 7.478, 7.4774, 7.4785, 7.4779, 7.479, 7.4783, 7.4777, 7.4771, 7.4763, 7.4762, 7.4755, 7.4748, 7.4741, 7.4737, 7.4748, 7.4741, 7.4733, 7.4725, 7.4718, 7.471, 7.4703, 7.4698, 7.469, 7.4702, 7.4696, 7.471, 7.4705, 7.4699, 7.4695, 7.4706, 7.4701, 7.4694, 7.4686, 7.4682, 7.4695, 7.4707, 7.4705, 7.4697, 7.4709, 7.4705, 7.4699, 7.4692, 7.4685, 7.4679, 7.4672, 7.4665, 7.4658, 7.4652, 7.4645, 7.4657, 7.4669, 7.4681, 7.4675, 7.4687, 7.473, 7.4723, 7.4718, 7.4711, 7.473, 7.4725, 7.4717, 7.4711, 7.4729, 7.4722, 7.4733, 7.4725, 7.4717, 7.473, 7.4723, 7.4717, 7.4711, 7.4704, 7.4697, 7.473, 7.4742, 7.4737, 7.4729, 7.4741, 7.4753, 7.4745, 7.4741, 7.4756, 7.4751, 7.4745, 7.474, 7.4734, 7.4728, 7.474, 7.4833, 7.4845, 7.4838, 7.4869, 7.4862, 7.4855, 7.4848, 7.4871, 7.4892, 7.4892, 7.4892, 7.4885, 7.4879, 7.4874, 7.4868, 7.4861, 7.4856, 7.4848, 7.4842, 7.4835, 7.4828, 7.4822, 7.4815, 7.4809, 7.4804, 7.4817, 7.481, 7.4804, 7.4799, 7.4792, 7.4803, 7.4798, 7.4791, 7.4803, 7.4798, 7.479, 7.4789, 7.4861, 7.4854, 7.4848, 7.4841, 7.4841, 7.4853, 7.4847, 7.4839, 7.4832, 7.4827, 7.4823, 7.4818, 7.4811, 7.4805, 7.4798, 7.4903, 7.4896, 7.4878, 7.4913, 7.4906, 7.4899, 7.4916, 7.4944, 7.4966, 7.4958, 7.4968, 7.497, 7.4964, 7.4978, 7.4991, 7.4986, 7.4981, 7.4977, 7.4988, 7.4984, 7.4977, 7.4969, 7.4965, 7.5032, 7.5025, 7.502, 7.5015, 7.5027, 7.506, 7.5052, 7.5062, 7.5054, 7.5049, 7.5042, 7.5057, 7.5052, 7.5044, 7.5042, 7.5055, 7.5048, 7.5043, 7.5037, 7.5032, 7.5014, 7.5009, 7.5004, 7.5001, 7.5, 7.4996, 7.4989, 7.5, 7.5005, 7.4999, 7.5022, 7.5, 7.4995, 7.4988, 7.4981, 7.5067, 7.508, 7.5094, 7.5088, 7.5081, 7.5074, 7.5088, 7.5126, 7.5119, 7.5116, 7.5111, 7.5104, 7.5098, 7.5109, 7.5103, 7.5097, 7.5092, 7.5088, 7.5101, 7.5112, 7.5108, 7.5085, 7.508, 7.5077, 7.507, 7.5064, 7.5061, 7.5054, 7.5047, 7.504, 7.5033, 7.5044, 7.5089, 7.5082, 7.5075, 7.5085, 7.508, 7.5073, 7.5071, 7.5064, 7.5075, 7.5087, 7.508, 7.5073, 7.5066, 7.5059, 7.5053, 7.5064, 7.5094, 7.5087, 7.5098, 7.5091, 7.5085, 7.5096, 7.5093, 7.5103, 7.5097, 7.5092, 7.509, 7.5103, 7.5085, 7.5096, 7.5089, 7.5085, 7.5081, 7.5062, 7.5057, 7.5091, 7.5084, 7.5078, 7.5071, 7.5083, 7.5077, 7.5075, 7.5087, 7.5101, 7.5112, 7.5105, 7.5116, 7.5126, 7.5124, 7.5136, 7.5129, 7.5122, 7.5116, 7.511, 7.5106, 7.5117, 7.5095, 7.509, 7.5084, 7.5095, 7.5088, 7.5081, 7.5076, 7.5087, 7.508, 7.509, 7.5102, 7.5096, 7.5108, 7.512, 7.5131, 7.5125, 7.512, 7.5113, 7.5106, 7.5099, 7.5109, 7.5102, 7.5115, 7.511, 7.5103, 7.5096, 7.509, 7.5084, 7.5093, 7.5086, 7.5081, 7.5077, 7.5087, 7.508, 7.5078, 7.5076, 7.5069, 7.5062, 7.5055, 7.5065, 7.5075, 7.5069, 7.5063, 7.5057, 7.5053, 7.5049, 7.506, 7.5055, 7.5034, 7.5029, 7.5024, 7.5032, 7.5043, 7.5037, 7.5047, 7.5041, 7.5051, 7.5044, 7.5054, 7.5047, 7.5043, 7.5037, 7.5033, 7.5029, 7.5039, 7.5032, 7.5042, 7.5038, 7.5031, 7.5044, 7.5046, 7.5043, 7.5054, 7.5048, 7.5043, 7.5044, 7.5039, 7.5052, 7.5049, 7.5044, 7.5038, 7.505, 7.5078, 7.5073, 7.5084, 7.5078, 7.5088, 7.5099, 7.5116, 7.5109, 7.5102, 7.5112, 7.5107, 7.5117, 7.5146, 7.514, 7.5137, 7.5139, 7.5175, 7.5172, 7.515, 7.5143, 7.5136, 7.5147, 7.514, 7.5147, 7.5141, 7.5134, 7.5127, 7.5121, 7.5136, 7.513, 7.5141, 7.5134, 7.5127, 7.5137, 7.513, 7.5154, 7.5165, 7.516, 7.5155, 7.5149, 7.5143, 7.5138, 7.5131, 7.5125, 7.5119, 7.5112, 7.5122, 7.5115, 7.511, 7.5122, 7.5116, 7.5127, 7.5123, 7.5118, 7.5121, 7.5114, 7.5126, 7.5136, 7.5147, 7.5141, 7.514, 7.515, 7.516, 7.518, 7.5179, 7.518, 7.5175, 7.5168, 7.5162, 7.5156, 7.515, 7.5144, 7.5137, 7.513, 7.514, 7.515, 7.5143, 7.5136, 7.5131, 7.5147, 7.5142, 7.5152, 7.5176, 7.517, 7.5164, 7.5159, 7.5153, 7.5146, 7.5155, 7.5165, 7.5176, 7.5169, 7.5163, 7.5158, 7.5153, 7.5163, 7.5157, 7.5152, 7.5147, 7.5157, 7.515, 7.5144, 7.5155, 7.5149, 7.5144, 7.514, 7.5134, 7.5145, 7.5155, 7.5154, 7.5165, 7.5163, 7.5157, 7.5153, 7.5147, 7.5156, 7.5165, 7.5159, 7.5152, 7.5148, 7.5159, 7.517, 7.5163, 7.5156, 7.5165, 7.516, 7.5171, 7.518, 7.5176, 7.517, 7.5164, 7.5158, 7.5167, 7.5161, 7.5172, 7.5166, 7.5145, 7.514, 7.5136, 7.513, 7.5124, 7.512, 7.5114, 7.5125, 7.5119, 7.5114, 7.5108, 7.5103, 7.5112, 7.5106, 7.5103, 7.5097, 7.5091, 7.5086, 7.5097, 7.509, 7.5084, 7.5082, 7.5094, 7.5089, 7.51, 7.5094, 7.5088, 7.5083, 7.508, 7.5073, 7.5067, 7.5062, 7.5055, 7.508, 7.5074, 7.5099, 7.5092, 7.5086, 7.5096, 7.5095, 7.5089, 7.5084, 7.5077, 7.507, 7.5067, 7.5062, 7.5058, 7.5052, 7.5063, 7.5057, 7.5051, 7.506, 7.507, 7.5068, 7.5072, 7.5069, 7.5066, 7.5062, 7.5056, 7.5049, 7.5043, 7.5054, 7.5047, 7.5041, 7.5035, 7.5029, 7.5023, 7.5017, 7.5027, 7.5024, 7.5034, 7.5028, 7.5024, 7.502, 7.5015, 7.5013, 7.5007, 7.5002, 7.4997, 7.501, 7.5019, 7.5015, 7.501, 7.5087, 7.5098, 7.5093, 7.5088, 7.5085, 7.5081, 7.5077, 7.5088, 7.5082, 7.5093, 7.5098, 7.5093, 7.5087, 7.5081, 7.5076, 7.507, 7.508, 7.5074, 7.5068, 7.5078, 7.5072, 7.5078, 7.5074, 7.5068, 7.5083, 7.5077, 7.5071, 7.5067, 7.5078, 7.5089, 7.5084, 7.5078, 7.5074, 7.5084, 7.5064, 7.5058, 7.5052, 7.5047, 7.5027, 7.5038, 7.5033, 7.5029, 7.5024, 7.5019, 7.5017, 7.5028, 7.5022, 7.5017, 7.5011, 7.5005, 7.4999, 7.5009, 7.5003, 7.4997, 7.4992, 7.4986, 7.4996, 7.5005, 7.5, 7.5009, 7.5019, 7.5013, 7.5022, 7.5016, 7.5063, 7.5044, 7.5025, 7.5019, 7.5029, 7.5024, 7.502, 7.5014, 7.5008, 7.5002, 7.5012, 7.5006, 7.5002, 7.5044, 7.5041, 7.5051, 7.5047, 7.5041, 7.5052, 7.5046, 7.504, 7.5036, 7.503, 7.504, 7.5051, 7.5045, 7.5026, 7.5021, 7.5014, 7.5008, 7.5002, 7.4998, 7.4994, 7.4988, 7.4982, 7.4976, 7.4974, 7.4969, 7.4964, 7.4958, 7.4952, 7.4946, 7.494, 7.4934, 7.4932, 7.4926, 7.4921, 7.4915, 7.4909, 7.4903, 7.4897, 7.4892, 7.4886, 7.488, 7.4874, 7.4868, 7.4862, 7.4872, 7.4881, 7.4875, 7.4885, 7.491, 7.492, 7.4914, 7.4909, 7.4919, 7.4914, 7.4923, 7.4917, 7.4913, 7.4907, 7.4918, 7.4913, 7.4907, 7.4903, 7.4897, 7.4892, 7.4901, 7.4897, 7.4893, 7.4887, 7.4882, 7.4878, 7.4872, 7.4867, 7.4862, 7.4856, 7.485, 7.4846, 7.4841, 7.4838, 7.4832, 7.4833, 7.4859, 7.487, 7.4864, 7.4863, 7.4872, 7.4868, 7.4862, 7.486, 7.4857, 7.4852, 7.4846, 7.484, 7.4834, 7.483, 7.4824, 7.4835, 7.483, 7.4812, 7.4808, 7.4804, 7.48, 7.4811, 7.4845, 7.4845, 7.4841, 7.4836, 7.4832, 7.4826, 7.482, 7.483, 7.4824, 7.482, 7.4815, 7.481, 7.4806, 7.4802, 7.4798, 7.4793, 7.4805, 7.4817, 7.4865, 7.4874, 7.4869, 7.4864, 7.4858, 7.4852, 7.4862, 7.4871, 7.4883, 7.4877, 7.489, 7.4885, 7.4879, 7.488, 7.4874, 7.4869, 7.4864, 7.486, 7.4854, 7.4868, 7.4877, 7.4886, 7.4896, 7.489, 7.4899, 7.4907, 7.4901, 7.4922, 7.4916, 7.4911, 7.4908, 7.4918, 7.4913, 7.4924, 7.4918, 7.4927, 7.4921, 7.4916, 7.491, 7.4907, 7.4901, 7.4909, 7.4905, 7.49, 7.4894, 7.4888, 7.4884, 7.488, 7.4862, 7.4871, 7.488, 7.4888, 7.4883, 7.4893, 7.4887, 7.4882, 7.4897, 7.4891, 7.4886, 7.488, 7.489, 7.4884, 7.4878, 7.4948, 7.4945, 7.494, 7.495, 7.4944, 7.4938, 7.4948, 7.4957, 7.4953, 7.4947, 7.4942, 7.4937, 7.4962, 7.4988, 7.4982, 7.4978, 7.4978, 7.4974, 7.4968, 7.4963, 7.4957, 7.4954, 7.4948, 7.4944, 7.4939, 7.4935, 7.4944, 7.4939, 7.4935, 7.493, 7.4939, 7.4948, 7.4956, 7.4965, 7.4947, 7.4943, 7.494, 7.4922, 7.4931, 7.4928, 7.4922, 7.4918, 7.4912, 7.4894, 7.4889, 7.4902, 7.4902, 7.4911, 7.4905, 7.4914, 7.4908, 7.4917, 7.4911, 7.4907, 7.4901, 7.4895, 7.489, 7.4899, 7.4908, 7.4902, 7.4909, 7.4921, 7.4929, 7.4924, 7.4905, 7.49, 7.4908, 7.4904, 7.49, 7.4896, 7.4907, 7.4915, 7.4911, 7.4905, 7.4901, 7.4896, 7.4891, 7.4885, 7.4881, 7.4876, 7.4885, 7.488, 7.4901, 7.4897, 7.4892, 7.4888, 7.4884, 7.4893, 7.4888, 7.4896, 7.4891, 7.4889, 7.4884, 7.488, 7.4878, 7.4872, 7.4882, 7.4879, 7.4884, 7.4869, 7.4865, 7.4861, 7.4856, 7.4851, 7.4847, 7.4856, 7.485, 7.4844, 7.4839, 7.4835, 7.4829, 7.4825, 7.482, 7.4814, 7.4809, 7.4805, 7.4801, 7.4802, 7.4797, 7.4792, 7.4788, 7.4782, 7.4777, 7.4783, 7.478, 7.4776, 7.4788, 7.4799, 7.4793, 7.4787, 7.4797, 7.4792, 7.4814, 7.4809, 7.4804, 7.4801, 7.4797, 7.4793, 7.4787, 7.4783, 7.4792, 7.48, 7.4796, 7.4805, 7.4801, 7.4796, 7.4791, 7.4787, 7.4796, 7.4804, 7.4827, 7.4822, 7.4817, 7.4815, 7.48, 7.4809, 7.4804, 7.48, 7.4797, 7.4805, 7.48, 7.4796, 7.4791, 7.4787, 7.4782, 7.4777, 7.4773, 7.4768, 7.4753, 7.4748, 7.4742, 7.4737, 7.4733, 7.4728, 7.4722, 7.4717, 7.4727, 7.4722, 7.4708, 7.4707, 7.4706, 7.4703, 7.4699, 7.4709, 7.4705, 7.4713, 7.4709, 7.4717, 7.4713, 7.4723, 7.4718, 7.4712, 7.4708, 7.4704, 7.4698, 7.4695, 7.4691, 7.4687, 7.4683, 7.4677, 7.4659, 7.4669, 7.4665, 7.466, 7.4669, 7.4666, 7.4675, 7.4671, 7.468, 7.4679, 7.4674, 7.469, 7.47, 7.4697, 7.4694, 7.4691, 7.4686, 7.4708, 7.4703, 7.4698, 7.4694, 7.4703, 7.4698, 7.4693, 7.4688, 7.4685, 7.4695, 7.4692, 7.4675, 7.4659, 7.4644, 7.4684, 7.4701, 7.4697, 7.4752, 7.4748, 7.4742, 7.4738, 7.4734, 7.4743, 7.4739, 7.4737, 7.4734, 7.4733, 7.4741, 7.4737, 7.4759, 7.4755, 7.4749, 7.4744, 7.4739, 7.4734, 7.4732, 7.474, 7.4735, 7.4717, 7.4711, 7.4693, 7.4689, 7.4684, 7.4694, 7.4704, 7.4712, 7.4707, 7.4704, 7.4698, 7.4693, 7.4688, 7.4696, 7.4707, 7.4716, 7.4725, 7.4736, 7.473, 7.4725, 7.4725, 7.472, 7.4715, 7.4711, 7.4707, 7.4703, 7.4699, 7.4694, 7.4689, 7.4683, 7.4691, 7.4699, 7.4681, 7.4677, 7.4672, 7.4667, 7.4664, 7.4659, 7.4669, 7.4664, 7.4672, 7.4654, 7.4649, 7.4643, 7.4625, 7.462, 7.4629, 7.4638, 7.4661, 7.4657, 7.4652, 7.4647, 7.4643, 7.4638, 7.4637, 7.4663, 7.4673, 7.4684, 7.4694, 7.469, 7.4686, 7.4695, 7.4691, 7.4673, 7.467, 7.4678, 7.4674, 7.4657, 7.4666, 7.4674, 7.4683, 7.4679, 7.4674, 7.4671, 7.4667, 7.4662, 7.4673, 7.4668, 7.4664, 7.466, 7.4658, 7.4653, 7.4648, 7.4646, 7.4656, 7.4653, 7.4662, 7.4645, 7.4629, 7.4624, 7.4619, 7.4617, 7.4612, 7.4621, 7.4629, 7.4625, 7.462, 7.4628, 7.4626, 7.4634, 7.4629, 7.4624, 7.4619, 7.4615, 7.4611, 7.4607, 7.4602, 7.4597, 7.4592, 7.4591, 7.4599, 7.4607, 7.4601, 7.4609, 7.4604, 7.4612, 7.4608, 7.4603, 7.4598, 7.46, 7.4596, 7.4591, 7.4599, 7.4608, 7.4603, 7.4598, 7.4606, 7.4602, 7.461, 7.4617, 7.4625, 7.4621, 7.4619, 7.4614, 7.4678, 7.4675, 7.467, 7.4666, 7.4661, 7.4669, 7.4677, 7.4673, 7.4669, 7.4664, 7.4662, 7.4657, 7.4652, 7.4648, 7.4645, 7.4641, 7.4636, 7.4633, 7.4641, 7.4636, 7.4631, 7.4639, 7.4634, 7.4631, 7.463, 7.4626, 7.4635, 7.4644, 7.4639, 7.4624, 7.462, 7.4616, 7.4611, 7.4606, 7.4602, 7.4599, 7.4582, 7.4578, 7.4573, 7.4569, 7.4564, 7.4573, 7.4582, 7.4577, 7.4573, 7.4582, 7.4577, 7.4572, 7.4568, 7.4576, 7.4573, 7.4568, 7.4563, 7.4559, 7.4572, 7.4606, 7.4602, 7.4623, 7.4639, 7.4637, 7.4646, 7.464, 7.4649, 7.4657, 7.4652, 7.4647, 7.4644, 7.464, 7.4624, 7.462, 7.4616, 7.4623, 7.463, 7.4626, 7.4636, 7.4631, 7.4628, 7.4624, 7.462, 7.4615, 7.4619, 7.4614, 7.461, 7.4605, 7.46, 7.4608, 7.4603, 7.4611, 7.4606, 7.4614, 7.461, 7.4605, 7.46, 7.4608, 7.4605, 7.4601, 7.4609, 7.4604, 7.46, 7.4596, 7.4591, 7.4598, 7.4594, 7.4589, 7.4598, 7.4593, 7.4589, 7.4585, 7.4593, 7.4589, 7.4584, 7.4579, 7.4575, 7.457, 7.4578, 7.4574, 7.4569, 7.4565, 7.456, 7.4556, 7.457, 7.4579, 7.4578, 7.4575, 7.4572, 7.457, 7.4566, 7.4561, 7.4556, 7.4552, 7.4547, 7.4543, 7.4543, 7.4576, 7.4572, 7.4595, 7.4605, 7.4601, 7.4597, 7.4592, 7.4578, 7.4586, 7.4582, 7.4578, 7.4587, 7.4591, 7.4603, 7.4624, 7.4619, 7.4614, 7.4611, 7.4595, 7.4591, 7.46, 7.4584, 7.4581, 7.4589, 7.4596, 7.4607, 7.4604, 7.4601, 7.4584, 7.4568, 7.4563, 7.4559, 7.4567, 7.4574, 7.4571, 7.4579, 7.4575, 7.4583, 7.458, 7.4576, 7.4571, 7.4566, 7.4575, 7.4574, 7.4584, 7.458, 7.459, 7.4587, 7.4597, 7.4593, 7.4588, 7.4595, 7.459, 7.4599, 7.4597, 7.4592, 7.4587, 7.4582, 7.4581, 7.4578, 7.4574, 7.4569, 7.4564, 7.4571, 7.4566, 7.4549, 7.4534, 7.453, 7.4526, 7.4523, 7.4518, 7.4526, 7.4521, 7.4517, 7.4512, 7.452, 7.4515, 7.4513, 7.4521, 7.4529, 7.4524, 7.4519, 7.4528, 7.4523, 7.4531, 7.4515, 7.451, 7.4517, 7.4513, 7.4509, 7.4504, 7.4503, 7.4499, 7.4494, 7.4489, 7.4497, 7.4506, 7.4501, 7.4496, 7.4491, 7.4487, 7.4482, 7.4489, 7.4486, 7.4482, 7.449, 7.4487, 7.4483, 7.4479, 7.4474, 7.4472, 7.4457, 7.4465, 7.4473, 7.4481, 7.4478, 7.4474, 7.447, 7.4467, 7.4474, 7.4482, 7.4489, 7.4474, 7.447, 7.4466, 7.4468, 7.4477, 7.4484, 7.4479, 7.4479, 7.4488, 7.4483, 7.4478, 7.4486, 7.4482, 7.4478, 7.4474, 7.4482, 7.4477, 7.4474, 7.4469, 7.4468, 7.4464, 7.445, 7.4447, 7.4444, 7.444, 7.4436, 7.4433, 7.4428, 7.4423, 7.4419, 7.4416, 7.4413, 7.4409, 7.4405, 7.44, 7.4395, 7.439, 7.4398, 7.4397, 7.4394, 7.4391, 7.4404, 7.4399, 7.4383, 7.438, 7.4379, 7.4374, 7.4358, 7.4355, 7.4351, 7.4347, 7.4342, 7.435, 7.4346, 7.4343, 7.4338, 7.4335, 7.4343, 7.4339, 7.4335, 7.4331, 7.4328, 7.4324, 7.4309, 7.4305, 7.4302, 7.4309, 7.4305, 7.4302, 7.4298, 7.4293, 7.4289, 7.4296, 7.4293, 7.4289, 7.4286, 7.4282, 7.4278, 7.4287, 7.4282, 7.4278, 7.4286, 7.4284, 7.4292, 7.4287, 7.4291, 7.4287, 7.4284, 7.4292, 7.4287, 7.4282, 7.4278, 7.4287, 7.4283, 7.4279, 7.4274, 7.428, 7.4277, 7.4273, 7.428, 7.4276, 7.4272, 7.4257, 7.4252, 7.4247, 7.4242, 7.4249, 7.4244, 7.4261, 7.4257, 7.4264, 7.4271, 7.4266, 7.4261, 7.4256, 7.4251, 7.4258, 7.4253, 7.4248, 7.4244, 7.4239, 7.4236, 7.4233, 7.4243, 7.424, 7.4236, 7.4231, 7.4242, 7.4239, 7.4238, 7.4289, 7.4286, 7.4296, 7.4294, 7.4291, 7.4287, 7.4296, 7.4293, 7.4289, 7.4286, 7.4284, 7.4292, 7.4292, 7.429, 7.4302, 7.4313, 7.4309, 7.4313, 7.4309, 7.4305, 7.43, 7.4321, 7.4329, 7.4337, 7.4333, 7.4329, 7.4325, 7.4333, 7.4333, 7.433, 7.4325, 7.4337, 7.4333, 7.4341, 7.4336, 7.4332, 7.4339, 7.4334, 7.4338, 7.4333, 7.4329, 7.4324, 7.4332, 7.4339, 7.4346, 7.4353, 7.4361, 7.4368, 7.4364, 7.4359, 7.4354, 7.4351, 7.4346, 7.4331, 7.4327, 7.4312, 7.4308, 7.4304, 7.43, 7.43, 7.43, 7.4308, 7.4317, 7.4313, 7.4309, 7.4304, 7.4311, 7.4319, 7.4319, 7.4315, 7.431, 7.4295, 7.4302, 7.4302, 7.4298, 7.4294, 7.4298, 7.4293, 7.434, 7.4349, 7.4361, 7.4369, 7.4376, 7.4371, 7.4366, 7.4361, 7.4357, 7.4362, 7.436, 7.4369, 7.4376, 7.4373, 7.4369, 7.4365, 7.4361, 7.4357, 7.4353, 7.4361, 7.4364, 7.4349, 7.4346, 7.4355, 7.4352, 7.436, 7.4355, 7.435, 7.4346, 7.4354, 7.4362, 7.4359, 7.4356, 7.4353, 7.4348, 7.4345, 7.434, 7.4336, 7.4344, 7.4341, 7.436, 7.4355, 7.4352, 7.4361, 7.4356, 7.4363, 7.4359, 7.4368, 7.4365, 7.4362, 7.4369, 7.4364, 7.436, 7.4356, 7.4351, 7.4346, 7.4341, 7.4348, 7.4343, 7.4351, 7.4347, 7.4342, 7.435, 7.4345, 7.4341, 7.4337, 7.4334, 7.4341, 7.4337, 7.4334, 7.433, 7.4338, 7.4345, 7.4343, 7.4339, 7.4335, 7.4331, 7.4327, 7.4323, 7.432, 7.4317, 7.4312, 7.4308, 7.4315, 7.4313, 7.4308, 7.4303, 7.43, 7.4296, 7.4293, 7.429, 7.4287, 7.4284, 7.428, 7.4275, 7.4271, 7.4257, 7.4281, 7.4277, 7.4274, 7.427, 7.4266, 7.4262, 7.4259, 7.4267, 7.4263, 7.4271, 7.4256, 7.4252, 7.4237, 7.4233, 7.4228, 7.4235, 7.4231, 7.423, 7.4227, 7.4236, 7.4245, 7.4241, 7.4237, 7.4234, 7.4269, 7.4265, 7.426, 7.4267, 7.4264, 7.4261, 7.4258, 7.4256, 7.4251, 7.4248, 7.4243, 7.4238, 7.4234, 7.423, 7.4227, 7.4223, 7.4231, 7.4227, 7.4234, 7.423, 7.4228, 7.4224, 7.4219, 7.4226, 7.4233, 7.4231, 7.4227, 7.4224, 7.4219, 7.4215, 7.4222, 7.4229, 7.425, 7.4247, 7.4244, 7.424, 7.4238, 7.4246, 7.4241, 7.4241, 7.4237, 7.4232, 7.4228, 7.4223, 7.4219, 7.4215, 7.4211, 7.4207, 7.4203, 7.421, 7.4215, 7.4211, 7.4218, 7.4226, 7.4234, 7.4242, 7.4237, 7.4232, 7.4228, 7.4225, 7.4221, 7.4218, 7.4215, 7.4212, 7.4197, 7.4182, 7.419, 7.4189, 7.4185, 7.4181, 7.4177, 7.4173, 7.4169, 7.4164, 7.416, 7.4156, 7.4152, 7.4159, 7.4167, 7.4163, 7.4159, 7.4154, 7.4143, 7.4128, 7.4114, 7.4121, 7.4119, 7.4126, 7.4123, 7.4119, 7.4119, 7.4115, 7.4101, 7.4101, 7.4087, 7.4083, 7.4079, 7.4077, 7.4073, 7.4068, 7.4075, 7.4082, 7.4078, 7.4073, 7.4069, 7.4076, 7.4071, 7.4067, 7.4063, 7.4059, 7.4055, 7.4062, 7.4059, 7.4055, 7.4051, 7.4049, 7.4046, 7.4042, 7.4037, 7.4044, 7.4041, 7.4037, 7.4035, 7.4036, 7.4043, 7.4038, 7.4034, 7.4031, 7.4027, 7.4023, 7.4019, 7.4026, 7.4052, 7.4048, 7.4045, 7.4041, 7.4038, 7.4035, 7.4032, 7.4028, 7.4035, 7.4031, 7.4032, 7.403, 7.4026, 7.4022, 7.4018, 7.4014, 7.401, 7.4018, 7.4014, 7.4009, 7.4005, 7.4001, 7.3998, 7.3995, 7.3991, 7.3986, 7.3983, 7.398, 7.3976, 7.3973, 7.3959, 7.3955, 7.3962, 7.396, 7.3967, 7.3974, 7.397, 7.3977, 7.3972, 7.3968, 7.3977, 7.3973, 7.3975, 7.3972, 7.3969, 7.3975, 7.3971, 7.3967, 7.3963, 7.3961, 7.3958, 7.3954, 7.395, 7.3937, 7.3936, 7.396, 7.3967, 7.3988, 7.3995, 7.4009, 7.4005, 7.4001, 7.3997, 7.3994, 7.3994, 7.3991, 7.3977, 7.3986, 7.3995, 7.3992, 7.399, 7.3988, 7.3985, 7.3981, 7.3978, 7.3976, 7.3984, 7.398, 7.3976, 7.3984, 7.3981, 7.3979, 7.3975, 7.3971, 7.3968, 7.397, 7.3965, 7.3972, 7.3968, 7.3964, 7.396, 7.3957, 7.3955, 7.3951, 7.3947, 7.3943, 7.394, 7.3961, 7.3958, 7.3955, 7.3953, 7.395, 7.3946, 7.3943, 7.394, 7.3936, 7.3943, 7.3953, 7.3949, 7.3957, 7.3953, 7.396, 7.3968, 7.3976, 7.3972, 7.3968, 7.3966, 7.3963, 7.3959, 7.3957, 7.3955, 7.3951, 7.3959, 7.3967, 7.3963, 7.3959, 7.3955, 7.3962, 7.3958, 7.3955, 7.3962, 7.3969, 7.3965, 7.3961, 7.3957, 7.3964, 7.3971, 7.3969, 7.3965, 7.3973, 7.3969, 7.3998, 7.4006, 7.4002, 7.4, 7.4006, 7.4013, 7.4011, 7.4008, 7.4004, 7.4, 7.4007, 7.4003, 7.3999, 7.3995, 7.4002, 7.4047, 7.4043, 7.404, 7.4036, 7.4043, 7.4039, 7.4046, 7.4044, 7.404, 7.4039, 7.4036, 7.4032, 7.4028, 7.4024, 7.4031, 7.4027, 7.4035, 7.4033, 7.4033, 7.404, 7.4036, 7.4058, 7.4054, 7.4053, 7.405, 7.4057, 7.4053, 7.4071, 7.4068, 7.4075, 7.4082, 7.408, 7.4076, 7.4072, 7.407, 7.4066, 7.4063, 7.407, 7.4068, 7.4069, 7.4065, 7.4061, 7.4057, 7.4053, 7.4051, 7.4048, 7.4056, 7.4052, 7.4049, 7.4049, 7.4045, 7.4041, 7.4049, 7.4045, 7.4041, 7.4038, 7.4034, 7.4031, 7.4028, 7.4034, 7.4031, 7.4028, 7.4035, 7.4032, 7.4028, 7.4034, 7.403, 7.4027, 7.4024, 7.402, 7.4017, 7.4013, 7.402, 7.4027, 7.4023, 7.403, 7.4027, 7.4025, 7.4021, 7.4017, 7.4014, 7.401, 7.4006, 7.4003, 7.3999, 7.3997, 7.4004, 7.4002, 7.3998, 7.3994, 7.3991, 7.3997, 7.4004, 7.4, 7.4008, 7.4005, 7.4001, 7.4007, 7.3994, 7.4001, 7.3997, 7.3993, 7.3989, 7.3997, 7.3994, 7.3991, 7.3987, 7.3984, 7.398, 7.3986, 7.3983, 7.4016, 7.4012, 7.4009, 7.4006, 7.4002, 7.3998, 7.4005, 7.4017, 7.4014, 7.401, 7.4018, 7.4014, 7.402, 7.4017, 7.4014, 7.4011, 7.401, 7.4016, 7.4014, 7.4021, 7.4028, 7.4036, 7.4043, 7.4039, 7.4035, 7.4031, 7.4038, 7.4035, 7.4031, 7.403, 7.4026, 7.4032, 7.4028, 7.4025, 7.4022, 7.4018, 7.4014, 7.401, 7.4006, 7.4002, 7.3999, 7.3996, 7.3992, 7.399, 7.3998, 7.3994, 7.3991, 7.3994, 7.399, 7.3987, 7.3974, 7.397, 7.3968, 7.3976, 7.3978, 7.3985, 7.3981, 7.3977, 7.3976, 7.3974, 7.3981, 7.3967, 7.3964, 7.3977, 7.3973, 7.397, 7.3966, 7.3973, 7.3981, 7.3977, 7.3973, 7.3985, 7.3981, 7.4, 7.3996, 7.3992, 7.3981, 7.3978, 7.3989, 7.3985, 7.4005, 7.4001, 7.4002, 7.3999, 7.4002, 7.401, 7.4019, 7.4015, 7.4061, 7.4058, 7.406, 7.4071, 7.4093, 7.41, 7.4096, 7.4102, 7.4099, 7.4095, 7.4092, 7.4089, 7.4086, 7.4082, 7.4078, 7.4074, 7.407, 7.4066, 7.4063, 7.4059, 7.4055, 7.4051, 7.4048, 7.4044, 7.405, 7.4046, 7.4054, 7.4051, 7.4047, 7.4053, 7.4049, 7.4046, 7.4033, 7.403, 7.4028, 7.4034, 7.4053, 7.405, 7.4046, 7.4042, 7.404, 7.4037, 7.4033, 7.4039, 7.4046, 7.4055, 7.4052, 7.4048, 7.4055, 7.4052, 7.4048, 7.4044, 7.4041, 7.4047, 7.4044, 7.4051, 7.4058, 7.4054, 7.4064, 7.4061, 7.4057, 7.4064, 7.406, 7.4066, 7.4062, 7.406, 7.4056, 7.4052, 7.4048, 7.4045, 7.4041, 7.4047, 7.4045, 7.4059, 7.4055, 7.4052, 7.4048, 7.4044, 7.404, 7.4036, 7.4034, 7.403, 7.4026, 7.4023, 7.4021, 7.4019, 7.4016, 7.4012, 7.4018, 7.4014, 7.401, 7.4006, 7.4002, 7.4009, 7.4016, 7.4023, 7.402, 7.4008, 7.4014, 7.4011, 7.4007, 7.4004, 7.4001, 7.401, 7.4017, 7.4016, 7.4012, 7.4019, 7.4019, 7.4025, 7.4022, 7.4018, 7.4024, 7.403, 7.4026, 7.4033, 7.4029, 7.4036, 7.4023, 7.402, 7.4016, 7.4012, 7.4018, 7.4024, 7.4031, 7.4027, 7.4023, 7.402, 7.4016, 7.4012, 7.4009, 7.4017, 7.4024, 7.4021, 7.403, 7.4049, 7.4047, 7.4046, 7.4054, 7.4061, 7.406, 7.4058, 7.4067, 7.4064, 7.4071, 7.4069, 7.4075, 7.4062, 7.4058, 7.4074, 7.407, 7.4067, 7.4073, 7.4069, 7.4066, 7.4064, 7.4061, 7.4069, 7.4056, 7.4064, 7.4061, 7.4057, 7.4065, 7.4062, 7.407, 7.4076, 7.4074, 7.407, 7.4091, 7.4087, 7.4084, 7.408, 7.4077, 7.4073, 7.4069, 7.4077, 7.4073, 7.4069, 7.4066, 7.4063, 7.406, 7.406, 7.4067, 7.4064, 7.406, 7.4057, 7.4054, 7.4051, 7.4047, 7.4045, 7.4043, 7.404, 7.4036, 7.4033, 7.4029, 7.4035, 7.404, 7.4046, 7.4042, 7.404, 7.4036, 7.4032, 7.4029, 7.4026, 7.4024, 7.403, 7.4028, 7.4035, 7.4031, 7.4027, 7.4023, 7.402, 7.4016, 7.4014, 7.4026, 7.4033, 7.403, 7.4028, 7.4025, 7.4021, 7.4008, 7.4015, 7.4012, 7.4019, 7.4026, 7.4025, 7.4021, 7.4019, 7.4015, 7.4023, 7.4023, 7.402, 7.4017, 7.4013, 7.4001, 7.3999, 7.4006, 7.4016, 7.4022, 7.4033, 7.4029, 7.4025, 7.4022, 7.4029, 7.4035, 7.4031, 7.4029, 7.4025, 7.4031, 7.4038, 7.4035, 7.4032, 7.4029, 7.4046, 7.4043, 7.404, 7.4037, 7.4033, 7.403, 7.4029, 7.4025, 7.4041, 7.4047, 7.4044, 7.4041, 7.4038, 7.4036, 7.4034, 7.403, 7.4026, 7.4023, 7.402, 7.4027, 7.4025, 7.4034, 7.4031, 7.4027, 7.4024, 7.4022, 7.4019, 7.4016, 7.4013, 7.4011, 7.4008, 7.4016, 7.4022, 7.4019, 7.4016, 7.4014, 7.401, 7.4006, 7.4003, 7.4009, 7.4005, 7.4001, 7.4006, 7.4012, 7.401, 7.4007, 7.4013, 7.401, 7.4016, 7.4013, 7.401, 7.4007, 7.4003, 7.4, 7.4006, 7.4002, 7.3999, 7.3995, 7.3992, 7.3988, 7.3985, 7.3981, 7.3988, 7.3985, 7.3984, 7.3981, 7.3978, 7.3985, 7.3983, 7.398, 7.3977, 7.3984, 7.3986, 7.3983, 7.398, 7.3977, 7.3983, 7.3979, 7.3975, 7.3981, 7.3979, 7.3975, 7.3973, 7.397, 7.3969, 7.3966, 7.3963, 7.3959, 7.3955, 7.3952, 7.395, 7.3946, 7.3943, 7.3939, 7.3937, 7.3934, 7.393, 7.3929, 7.3926, 7.3922, 7.3919, 7.3925, 7.3922, 7.3928, 7.3934, 7.393, 7.3927, 7.3923, 7.3919, 7.3916, 7.3912, 7.3918, 7.3915, 7.3921, 7.3917, 7.3914, 7.3912, 7.391, 7.3926, 7.3923, 7.3931, 7.394, 7.3938, 7.3936, 7.3942, 7.3948, 7.3945, 7.3942, 7.395, 7.3946, 7.3953, 7.3951, 7.3948, 7.395, 7.3946, 7.3952, 7.3949, 7.3946, 7.3965, 7.3963, 7.3962, 7.3959, 7.3956, 7.3962, 7.3959, 7.3956, 7.3944, 7.394, 7.3937, 7.3934, 7.394, 7.3939, 7.3945, 7.3943, 7.3939, 7.3935, 7.3932, 7.393, 7.3927, 7.3924, 7.3921, 7.3918, 7.3916, 7.3912, 7.3909, 7.3906, 7.3903, 7.3901, 7.3899, 7.3895, 7.3894, 7.389, 7.3887, 7.3883, 7.3879, 7.3876, 7.3872, 7.3869, 7.3867, 7.3863, 7.3861, 7.3859, 7.3856, 7.3854, 7.3842, 7.3839, 7.3835, 7.3832, 7.3829, 7.3836, 7.3844, 7.3887, 7.3884, 7.3881, 7.3879, 7.3886, 7.3882, 7.3882, 7.3878, 7.3875, 7.3871, 7.3867, 7.3865, 7.3862, 7.3859, 7.3857, 7.3845, 7.3841, 7.3837, 7.3843, 7.3849, 7.3847, 7.3844, 7.3884, 7.388, 7.3893, 7.3909, 7.3906, 7.3904, 7.3901, 7.3898, 7.3894, 7.3901, 7.3897, 7.3893, 7.3889, 7.3887, 7.3902, 7.3899, 7.3902, 7.3898, 7.3899, 7.3898, 7.3888, 7.3886, 7.3892, 7.3891, 7.3889, 7.3879, 7.3876, 7.3873, 7.3869, 7.3867, 7.3864, 7.386, 7.3858, 7.3846, 7.3853, 7.3849, 7.3846, 7.3843, 7.3841, 7.384, 7.3846, 7.3862, 7.3869, 7.3865, 7.3861, 7.3857, 7.3854, 7.3851, 7.3849, 7.3855, 7.3852, 7.385, 7.3847, 7.3843, 7.384, 7.3846, 7.3853, 7.387, 7.3868, 7.3864, 7.3861, 7.3859, 7.3856, 7.3862, 7.3868, 7.3864, 7.387, 7.3881, 7.3878, 7.3875, 7.3872, 7.3869, 7.3866, 7.3866, 7.3862, 7.3859, 7.3855, 7.3852, 7.3849, 7.3857, 7.3854, 7.385, 7.3855, 7.3862, 7.3858, 7.3854, 7.3851, 7.3848, 7.3846, 7.3843, 7.384, 7.3846, 7.3843, 7.384, 7.3838, 7.3836, 7.3832, 7.3831, 7.3837, 7.3839, 7.3846, 7.3843, 7.384, 7.3836, 7.3824, 7.3813, 7.3801, 7.3798, 7.3795, 7.3792, 7.3801, 7.3797, 7.3794, 7.3799, 7.3799, 7.3797, 7.3803, 7.3809, 7.3816, 7.3812, 7.3809, 7.3806, 7.3812, 7.3809, 7.3806, 7.3794, 7.3792, 7.3789, 7.3785, 7.3783, 7.378, 7.3776, 7.3782, 7.378, 7.3777, 7.3773, 7.3774, 7.3771, 7.377, 7.3767, 7.3776, 7.3774, 7.3772, 7.3769, 7.3767, 7.3773, 7.3769, 7.3775, 7.3781, 7.3778, 7.3784, 7.3792, 7.3789, 7.3786, 7.3782, 7.3779, 7.3775, 7.3783, 7.3781, 7.3777, 7.3773, 7.3771, 7.3768, 7.3767, 7.3765, 7.3771, 7.3768, 7.3766, 7.3762, 7.3758, 7.3755, 7.3751, 7.3756, 7.3753, 7.375, 7.3747, 7.3753, 7.375, 7.3746, 7.3735, 7.3732, 7.372, 7.3717, 7.3715, 7.3717, 7.3714, 7.3711, 7.3708, 7.3704, 7.371, 7.3709, 7.3705, 7.3703, 7.3709, 7.3715, 7.374, 7.3737, 7.3735, 7.3732, 7.3729, 7.3726, 7.3722, 7.372, 7.3726, 7.3732, 7.3738, 7.3744, 7.3742, 7.3739, 7.3736, 7.3742, 7.3739, 7.3736, 7.3733, 7.373, 7.3726, 7.3723, 7.3729, 7.3736, 7.3733, 7.373, 7.3727, 7.3724, 7.3721, 7.3717, 7.3724, 7.373, 7.3735, 7.3731, 7.3729, 7.3727, 7.3733, 7.373, 7.3735, 7.3732, 7.373, 7.3736, 7.3733, 7.3739, 7.3736, 7.3732, 7.3738, 7.3744, 7.3742, 7.3739, 7.3736, 7.3733, 7.3739, 7.3745, 7.3751, 7.3747, 7.3744, 7.3749, 7.3746, 7.3742, 7.3739, 7.3736, 7.3732, 7.3729, 7.3726, 7.3723, 7.3726, 7.3723, 7.373, 7.3735, 7.3741, 7.3738, 7.3735, 7.3732, 7.373, 7.3726, 7.3732, 7.3738, 7.3735, 7.3732, 7.3738, 7.3735, 7.3733, 7.3739, 7.3735, 7.3741, 7.3738, 7.3749, 7.3746, 7.3743, 7.374, 7.3745, 7.3743, 7.3739, 7.3738, 7.3737, 7.3743, 7.374, 7.3737, 7.3734, 7.3731, 7.3728, 7.3725, 7.3721, 7.3718, 7.3715, 7.3715, 7.372, 7.3717, 7.3723, 7.3719, 7.3717, 7.3713, 7.371, 7.3706, 7.3702, 7.37, 7.3697, 7.3696, 7.3693, 7.3689, 7.3695, 7.3693, 7.3699, 7.3705, 7.3701, 7.3697, 7.3693, 7.3689, 7.3686, 7.3683, 7.3681, 7.3687, 7.3684, 7.3681, 7.3678, 7.3677, 7.3674, 7.3673, 7.367, 7.3666, 7.3663, 7.366, 7.3657, 7.3655, 7.3655, 7.3652, 7.3649, 7.3647, 7.3653, 7.365, 7.3647, 7.3645, 7.3642, 7.3651, 7.3642, 7.3639, 7.3636, 7.3633, 7.3633, 7.363, 7.3627, 7.3633, 7.3624, 7.3651, 7.3648, 7.3646, 7.3643, 7.364, 7.3638, 7.3645, 7.3657, 7.3655, 7.366, 7.3657, 7.3654, 7.3651, 7.3648, 7.3646, 7.3643, 7.3641, 7.3665, 7.3665, 7.3662, 7.3659, 7.3656, 7.3654, 7.3651, 7.3648, 7.3654, 7.3653, 7.3651, 7.365, 7.3646, 7.3644, 7.3641, 7.3638, 7.3635, 7.3634, 7.3632, 7.3638, 7.3635, 7.3633, 7.3631, 7.3639, 7.3636, 7.3633, 7.363, 7.3635, 7.3642, 7.3639, 7.3636, 7.3633, 7.363, 7.3627, 7.3637, 7.3634, 7.364, 7.3645, 7.3651, 7.3647, 7.3653, 7.3655, 7.3652, 7.3649, 7.3646, 7.3643, 7.3641, 7.3638, 7.3627, 7.3625, 7.3622, 7.362, 7.3618, 7.3624, 7.363, 7.3644, 7.3641, 7.3638, 7.3644, 7.3641, 7.3638, 7.3636, 7.3634, 7.3631, 7.3628, 7.3634, 7.364, 7.3646, 7.3643, 7.3642, 7.364, 7.3639, 7.3637, 7.3634, 7.3639, 7.3645, 7.3651, 7.3649, 7.3655, 7.3652, 7.3649, 7.3646, 7.3643, 7.364, 7.3638, 7.3636, 7.3634, 7.364, 7.3637, 7.3634, 7.3631, 7.363, 7.3628, 7.3634, 7.3632, 7.3637, 7.3634, 7.3631, 7.3629, 7.3628, 7.3625, 7.3631, 7.3628, 7.3626, 7.3624, 7.3621, 7.3619, 7.3618, 7.3624, 7.3622, 7.362, 7.3617, 7.3614, 7.3603, 7.36, 7.3598, 7.3588, 7.3594, 7.3591, 7.3588, 7.3586, 7.3583, 7.358, 7.3589, 7.3597, 7.3594, 7.3591, 7.3588, 7.3604, 7.3593, 7.359, 7.3595, 7.3618, 7.3633, 7.363, 7.3627, 7.3624, 7.3613, 7.3604, 7.3614, 7.3612, 7.3612, 7.362, 7.3617, 7.363, 7.3636, 7.3634, 7.3653, 7.365, 7.3647, 7.3671, 7.3672, 7.3669, 7.3671, 7.3676, 7.3673, 7.3679, 7.3676, 7.3672, 7.3677, 7.3676, 7.3682, 7.3679, 7.3677, 7.3683, 7.368, 7.3686, 7.3683, 7.3688, 7.3677, 7.3674, 7.3671, 7.3668, 7.3676, 7.3674, 7.3671, 7.3668, 7.3665, 7.3668, 7.3667, 7.3695, 7.3692, 7.3698, 7.3695, 7.3692, 7.3689, 7.3689, 7.3707, 7.3704, 7.3701, 7.37, 7.3706, 7.3705, 7.3702, 7.37, 7.3707, 7.3704, 7.3703, 7.3701, 7.369, 7.3679, 7.3677, 7.3679, 7.3676, 7.3673, 7.367, 7.3668, 7.3665, 7.3671, 7.3668, 7.3668, 7.3665, 7.3682, 7.3688, 7.3685, 7.3692, 7.3698, 7.3695, 7.3693, 7.369, 7.3697, 7.3694, 7.3701, 7.3698, 7.3695, 7.3693, 7.369, 7.3689, 7.3686, 7.3684, 7.3682, 7.3679, 7.3676, 7.3682, 7.3686, 7.3695, 7.3701, 7.3699, 7.3696, 7.3693, 7.3691, 7.3695, 7.3692, 7.3691, 7.369, 7.3696, 7.3693, 7.369, 7.3679, 7.3684, 7.3681, 7.3678, 7.3676, 7.3673, 7.367, 7.3667, 7.3673, 7.367, 7.3686, 7.3722, 7.372, 7.3726, 7.3731, 7.3737, 7.3734, 7.3731, 7.3728, 7.3734, 7.3732, 7.3729, 7.3726, 7.3724, 7.3722, 7.3719, 7.3716, 7.3714, 7.3722, 7.372, 7.3718, 7.3725, 7.3731, 7.3728, 7.3727, 7.3724, 7.3721, 7.3718, 7.3724, 7.373, 7.3728, 7.3742, 7.374, 7.3738, 7.3736, 7.3733, 7.3735, 7.3732, 7.3729, 7.3726, 7.3732, 7.3729, 7.3734, 7.3734, 7.3732, 7.3747, 7.3753, 7.3777, 7.3775, 7.3781, 7.3779, 7.3794, 7.3792, 7.3792, 7.379, 7.3787, 7.381, 7.3808, 7.3823, 7.382, 7.3817, 7.3814, 7.3824, 7.3821, 7.3819, 7.3816, 7.3813, 7.3811, 7.3808, 7.3806, 7.3803, 7.3794, 7.38, 7.3798, 7.3795, 7.3802, 7.3799, 7.3796, 7.3793, 7.3791, 7.3788, 7.3779, 7.377, 7.3767, 7.3765, 7.3762, 7.3751, 7.3758, 7.3756, 7.3754, 7.376, 7.3757, 7.3755, 7.3752, 7.3749, 7.3754, 7.3751, 7.3749, 7.375, 7.3747, 7.3744, 7.3742, 7.3748, 7.3753, 7.375, 7.3756, 7.3762, 7.3765, 7.377, 7.3768, 7.3766, 7.3763, 7.376, 7.3765, 7.3772, 7.3761, 7.3759, 7.3758, 7.3756, 7.3762, 7.3776, 7.3782, 7.378, 7.3778, 7.3775, 7.3773, 7.377, 7.3767, 7.3757, 7.377, 7.3767, 7.3764, 7.3761, 7.3759, 7.3756, 7.3753, 7.375, 7.3748, 7.3754, 7.3752, 7.3749, 7.3747, 7.3744, 7.3733, 7.373, 7.3728, 7.3725, 7.3723, 7.3728, 7.3725, 7.3722, 7.3719, 7.3741, 7.3747, 7.3753, 7.375, 7.3747, 7.3752, 7.3749, 7.3738, 7.3735, 7.3732, 7.3721, 7.3718, 7.3715, 7.3712, 7.3709, 7.3706, 7.3703, 7.3708, 7.3705, 7.3702, 7.3699, 7.3696, 7.3693, 7.3691, 7.3689, 7.3687, 7.3684, 7.3681, 7.3678, 7.3675, 7.3672, 7.3669, 7.3674, 7.3671, 7.3685, 7.3683, 7.368, 7.3678, 7.3675, 7.3672, 7.367, 7.3668, 7.3665, 7.367, 7.3667, 7.3665, 7.3662, 7.3685, 7.3682, 7.3688, 7.3703, 7.3701, 7.3699, 7.3689, 7.3687, 7.3684, 7.369, 7.3687, 7.3692, 7.369, 7.3688, 7.3686, 7.3683, 7.3688, 7.3686, 7.3683, 7.3689, 7.3686, 7.3684, 7.3673, 7.367, 7.3694, 7.3708, 7.3706, 7.3704, 7.3718, 7.3715, 7.3712, 7.3718, 7.3715, 7.3771, 7.3785, 7.379, 7.379, 7.3804, 7.3809, 7.3806, 7.3804, 7.3802, 7.3799, 7.3796, 7.3794, 7.3791, 7.3788, 7.3785, 7.3783, 7.378, 7.3777, 7.3782, 7.3779, 7.3776, 7.3773, 7.377, 7.3801, 7.3848, 7.3854, 7.386, 7.3908, 7.3905, 7.3902, 7.3907, 7.3912, 7.3917, 7.3914, 7.3927, 7.3932, 7.3929, 7.3934, 7.3939, 7.3944, 7.3941, 7.3948, 7.3954, 7.3952, 7.3949, 7.3946, 7.3951, 7.3957, 7.3947, 7.3936, 7.3942, 7.3956, 7.3978, 7.3975, 7.3973, 7.3971, 7.3968, 7.3966, 7.3964, 7.3969, 7.3966, 7.3963, 7.3961, 7.3958, 7.3963, 7.3968, 7.3965, 7.3962, 7.3987, 7.3985, 7.399, 7.3996, 7.4027, 7.4024, 7.4021, 7.4026, 7.4041, 7.4039, 7.4029, 7.4034, 7.4023, 7.4028, 7.4025, 7.4024, 7.4021, 7.4018, 7.4023, 7.4028, 7.4025, 7.403, 7.4035, 7.404, 7.4038, 7.4051, 7.4048, 7.4045, 7.4042, 7.4031, 7.4028, 7.4033, 7.403, 7.4027, 7.4032, 7.403, 7.4035, 7.404, 7.4037, 7.4034, 7.4037, 7.4034, 7.4032, 7.4029, 7.4027, 7.4024, 7.4022, 7.4027, 7.4024, 7.4038, 7.4028, 7.4025, 7.4022, 7.4041, 7.4054, 7.4056, 7.4054, 7.4078, 7.4089, 7.4086, 7.4083, 7.408, 7.4092, 7.4097, 7.4094, 7.4091, 7.4089, 7.4086, 7.4083, 7.408, 7.4078, 7.4075, 7.4065, 7.4071, 7.4076, 7.4074, 7.4072, 7.4069, 7.4074, 7.4071, 7.4078, 7.4076, 7.4073, 7.4078, 7.4075, 7.4073, 7.4078, 7.4079, 7.4076, 7.4073, 7.407, 7.4067, 7.4064, 7.4078, 7.4087, 7.4084, 7.4089, 7.4086, 7.4084, 7.4089, 7.4081, 7.409, 7.4095, 7.4092, 7.4122, 7.4119, 7.4116, 7.4113, 7.4118, 7.4123, 7.412, 7.4126, 7.4139, 7.4136, 7.4133, 7.4123, 7.4136, 7.4134, 7.4132, 7.4129, 7.4134, 7.4139, 7.4144, 7.4141, 7.4146, 7.4151, 7.4148, 7.4153, 7.415, 7.4148, 7.4145, 7.4143, 7.4141, 7.4138, 7.4135, 7.414, 7.4137, 7.4142, 7.4147, 7.4152, 7.4149, 7.4162, 7.4168, 7.4165, 7.4178, 7.4176, 7.4181, 7.4187, 7.4192, 7.4189, 7.4194, 7.4191, 7.4188, 7.4185, 7.4182, 7.4187, 7.4192, 7.419, 7.4187, 7.4192, 7.4205, 7.4202, 7.42, 7.4198, 7.4195, 7.4201, 7.4199, 7.4197, 7.4203, 7.4201, 7.4191, 7.4195, 7.42, 7.4205, 7.4223, 7.4228, 7.4225, 7.423, 7.4237, 7.4282, 7.4279, 7.4276, 7.4288, 7.4285, 7.4299, 7.4296, 7.43, 7.4309, 7.4306, 7.4304, 7.4309, 7.4314, 7.4311, 7.4308, 7.4313, 7.4318, 7.4318, 7.4318, 7.4316, 7.4314, 7.4311, 7.4308, 7.4314, 7.4319, 7.4324, 7.4321, 7.4318, 7.4315, 7.4312, 7.431, 7.4315, 7.432, 7.4317, 7.4314, 7.4325, 7.4322, 7.4327, 7.4324, 7.4329, 7.4329, 7.4334, 7.4332, 7.4337, 7.4342, 7.4347, 7.4344, 7.4349, 7.4346, 7.4344, 7.4349, 7.4346, 7.4351, 7.4348, 7.4345, 7.4342, 7.434, 7.4345, 7.4343, 7.4348, 7.4345, 7.435, 7.4347, 7.4344, 7.4365, 7.4355, 7.4352, 7.4357, 7.4362, 7.4359, 7.4364, 7.4362, 7.436, 7.4365, 7.437, 7.436, 7.4357, 7.4354], '192.168.122.114': [5.3391, 5.7538, 5.5996, 5.6837, 5.8445, 6.6737, 7.281, 7.0472, 7.464, 7.3572, 7.1819, 7.0992, 7.0021, 6.9575, 6.913, 6.8256, 6.4589, 6.4168, 6.3648, 6.3172, 6.2977, 6.2596, 6.225, 6.2197, 6.1861, 6.1709, 6.1642, 6.1543, 6.1296, 6.6233, 6.5972, 6.5587, 6.6836, 6.5038, 6.4666, 6.297, 6.4174, 6.394, 6.5132, 6.4849, 6.4772, 6.4592, 6.4411, 6.4179, 6.3047, 6.2842, 6.2649, 6.2584, 6.2535, 6.2342, 6.219, 6.2069, 6.3019, 6.3935, 6.4785, 6.4794, 6.4679, 6.4579, 6.4445, 6.4404, 6.4345, 6.4219, 6.4096, 6.408, 6.4886, 6.4711, 6.5394, 6.6071, 6.6724, 6.5826, 6.5755, 6.5694, 6.5581, 6.6111, 6.5964, 6.5813, 6.5716, 6.5569, 6.7488, 6.747, 6.7336, 6.7261, 6.7096, 6.7077, 7.2932, 7.2701, 7.2514, 7.236, 7.2148, 7.1957, 7.176, 7.2219, 7.201, 7.1847, 7.1645, 7.1444, 7.1252, 7.2912, 7.2245, 7.2077, 7.264, 7.2515, 7.2397, 7.2725, 7.2613, 7.3629, 7.3442, 7.3752, 7.3607, 7.3468, 7.3766, 7.365, 7.3464, 7.337, 7.3201, 7.3518, 7.339, 7.3237, 7.3536, 7.3371, 7.3215, 7.3481, 7.3325, 7.3165, 7.3441, 7.2898, 7.2822, 7.2709, 7.295, 7.2805, 7.2704, 7.2565, 7.2423, 7.2416, 7.2279, 7.2135, 7.2011, 7.1913, 7.179, 7.2061, 7.2357, 7.2256, 7.2302, 7.2214, 7.1764, 7.1671, 7.1604, 7.148, 7.1374, 7.1277, 7.1181, 7.1112, 7.1055, 7.1341, 7.1611, 7.1554, 7.1473, 7.1669, 7.1597, 7.1514, 7.1424, 7.1352, 7.1572, 7.1799, 7.2117, 7.2037, 7.2233, 7.2796, 7.2982, 7.287, 7.3075, 7.2989, 7.2936, 7.2847, 7.3032, 7.2947, 7.3455, 7.3871, 7.3761, 7.395, 7.4106, 7.4979, 7.4945, 7.5138, 7.5054, 7.5212, 7.5401, 7.5284, 7.5205, 7.5244, 7.5135, 7.5571, 7.5494, 7.5381, 7.5272, 7.5428, 7.5367, 7.5616, 7.5549, 7.5443, 7.5866, 7.5752, 7.5654, 7.5902, 7.5807, 7.573, 7.57, 7.5605, 7.5763, 7.5664, 7.5563, 7.5719, 7.5876, 7.5799, 7.5701, 7.5622, 7.5773, 7.5683, 7.5834, 7.6003, 7.6011, 7.5904, 7.5803, 7.5958, 7.586, 7.6251, 7.6393, 7.6538, 7.6439, 7.6364, 7.627, 7.6177, 7.6087, 7.5986, 7.6126, 7.6254, 7.6161, 7.6081, 7.6202, 7.6144, 7.6066, 7.6009, 7.617, 7.6084, 7.6016, 7.5935, 7.5994, 7.5915, 7.6993, 7.6962, 7.7509, 7.7436, 7.7621, 7.7542, 7.7778, 7.7747, 7.7859, 7.7996, 7.7916, 7.7818, 7.7963, 7.7893, 7.7835, 7.7747, 7.7666, 7.7795, 7.7729, 7.7678, 7.7612, 7.7518, 7.774, 7.7676, 7.7591, 7.7512, 7.744, 7.7364, 7.7307, 7.7238, 7.7193, 7.7135, 7.7083, 7.7208, 7.7154, 7.7082, 7.7179, 7.7101, 7.7248, 7.7195, 7.7272, 7.7384, 7.7302, 7.7231, 7.7352, 7.7376, 7.7329, 7.7432, 7.7359, 7.7452, 7.7393, 7.7322, 7.7253, 7.7376, 7.7301, 7.7267, 7.7073, 7.704, 7.7152, 7.7114, 7.7051, 7.6991, 7.6944, 7.7097, 7.7028, 7.6962, 7.696, 7.6897, 7.6834, 7.6781, 7.672, 7.684, 7.677, 7.6859, 7.6791, 7.6717, 7.6655, 7.6587, 7.6519, 7.6452, 7.6556, 7.6497, 7.643, 7.6367, 7.6298, 7.6269, 7.6231, 7.6168, 7.6275, 7.6263, 7.643, 7.6365, 7.635, 7.6308, 7.6399, 7.6366, 7.657, 7.6518, 7.6455, 7.64, 7.65, 7.6451, 7.6407, 7.6356, 7.6288, 7.6224, 7.616, 7.6098, 7.6035, 7.5985, 7.5939, 7.5897, 7.5844, 7.5785, 7.5872, 7.581, 7.5901, 7.5854, 7.5794, 7.5956, 7.5897, 7.5869, 7.5835, 7.5776, 7.5718, 7.5686, 7.5629, 7.5585, 7.5529, 7.5611, 7.5551, 7.5649, 7.5605, 7.5549, 7.5492, 7.5451, 7.5391, 7.5466, 7.5291, 7.5506, 7.5478, 7.5427, 7.5512, 7.5598, 7.5558, 7.5382, 7.5337, 7.5279, 7.5233, 7.5181, 7.5138, 7.5213, 7.5295, 7.5249, 7.5214, 7.5157, 7.5155, 7.5226, 7.5178, 7.5257, 7.5212, 7.5187, 7.5135, 7.5091, 7.5067, 7.5027, 7.4995, 7.4954, 7.5296, 7.527, 7.5224, 7.519, 7.514, 7.5113, 7.51, 7.4939, 7.4774, 7.4727, 7.4687, 7.4662, 7.4732, 7.468, 7.4639, 7.4592, 7.4539, 7.4616, 7.4568, 7.4759, 7.4718, 7.4678, 7.4629, 7.4705, 7.4784, 7.4744, 7.4699, 7.4655, 7.4608, 7.4561, 7.4513, 7.4469, 7.4424, 7.4376, 7.4452, 7.4522, 7.4597, 7.4564, 7.4534, 7.4488, 7.444, 7.4413, 7.4388, 7.4657, 7.462, 7.4586, 7.4666, 7.4623, 7.4698, 7.4673, 7.4741, 7.471, 7.4665, 7.4637, 7.4613, 7.4806, 7.4762, 7.483, 7.479, 7.4763, 7.4879, 7.4834, 7.4835, 7.472, 7.4689, 7.4648, 7.4722, 7.468, 7.4748, 7.4712, 7.4669, 7.4743, 7.471, 7.4669, 7.4626, 7.4696, 7.4687, 7.4769, 7.4731, 7.4809, 7.4766, 7.4741, 7.4706, 7.4663, 7.4733, 7.4689, 7.4681, 7.4549, 7.4629, 7.4595, 7.4782, 7.4746, 7.5041, 7.5, 7.4979, 7.4947, 7.5194, 7.5168, 7.5532, 7.5487, 7.5464, 7.542, 7.5379, 7.535, 7.5519, 7.5586, 7.5645, 7.561, 7.5573, 7.5664, 7.5634, 7.5643, 7.5604, 7.576, 7.5926, 7.5793, 7.5753, 7.5814, 7.5774, 7.5827, 7.5784, 7.5744, 7.5806, 7.5871, 7.583, 7.5796, 7.5816, 7.5787, 7.5749, 7.573, 7.5688, 7.5648, 7.5717, 7.5683, 7.5647, 7.5712, 7.5699, 7.5659, 7.5628, 7.5593, 7.5556, 7.5517, 7.548, 7.5363, 7.5241, 7.5236, 7.5294, 7.5266, 7.5231, 7.5305, 7.5266, 7.5234, 7.5203, 7.5104, 7.5161, 7.5128, 7.5088, 7.5062, 7.5066, 7.5131, 7.5185, 7.5156, 7.5212, 7.5175, 7.5139, 7.51, 7.5067, 7.5035, 7.5008, 7.4979, 7.4945, 7.4911, 7.4876, 7.4933, 7.4985, 7.4949, 7.4834, 7.4815, 7.4785, 7.478, 7.4744, 7.4802, 7.486, 7.4826, 7.4793, 7.4759, 7.4724, 7.478, 7.4762, 7.4734, 7.4708, 7.4678, 7.4664, 7.472, 7.4771, 7.4827, 7.4799, 7.4773, 7.4828, 7.4794, 7.4759, 7.5017, 7.4983, 7.5035, 7.5, 7.5054, 7.5138, 7.5103, 7.5081, 7.5056, 7.5022, 7.4996, 7.496, 7.5019, 7.5155, 7.5119, 7.5093, 7.5093, 7.5174, 7.5146, 7.5124, 7.5098, 7.5069, 7.5246, 7.5338, 7.5385, 7.544, 7.5415, 7.5558, 7.5616, 7.5595, 7.5562, 7.5532, 7.5509, 7.5479, 7.5446, 7.5496, 7.5468, 7.5439, 7.541, 7.5379, 7.5353, 7.5412, 7.5467, 7.5436, 7.5439, 7.542, 7.5483, 7.5452, 7.5626, 7.5598, 7.5577, 7.5482, 7.5456, 7.5482, 7.5458, 7.5512, 7.5487, 7.5484, 7.5453, 7.5504, 7.5484, 7.5454, 7.5503, 7.5556, 7.5531, 7.5499, 7.5472, 7.5518, 7.5487, 7.5464, 7.5431, 7.5479, 7.5449, 7.5418, 7.5391, 7.552, 7.5492, 7.5464, 7.5436, 7.5484, 7.5607, 7.5587, 7.5555, 7.554, 7.551, 7.5478, 7.545, 7.5421, 7.5398, 7.5447, 7.5493, 7.5539, 7.5509, 7.5488, 7.5456, 7.5435, 7.5409, 7.5407, 7.5381, 7.5349, 7.5322, 7.5367, 7.5336, 7.5311, 7.529, 7.5265, 7.5315, 7.5367, 7.534, 7.532, 7.5366, 7.5339, 7.5384, 7.5359, 7.5479, 7.546, 7.5506, 7.5476, 7.5518, 7.5501, 7.5481, 7.5456, 7.5427, 7.5405, 7.5373, 7.5415, 7.5396, 7.5369, 7.5341, 7.5319, 7.5349, 7.54, 7.5376, 7.5345, 7.5324, 7.5295, 7.5268, 7.5313, 7.5284, 7.5265, 7.5236, 7.5207, 7.5181, 7.516, 7.5138, 7.5112, 7.5085, 7.507, 7.5049, 7.5091, 7.5064, 7.5035, 7.5083, 7.5054, 7.5098, 7.5071, 7.5047, 7.5024, 7.5052, 7.5114, 7.5104, 7.5083, 7.5057, 7.5101, 7.5137, 7.5113, 7.5155, 7.5207, 7.5242, 7.5231, 7.5143, 7.5267, 7.5247, 7.5219, 7.5263, 7.5307, 7.528, 7.5256, 7.523, 7.5276, 7.5261, 7.5307, 7.5349, 7.533, 7.5303, 7.5277, 7.5249, 7.5233, 7.5211, 7.5184, 7.5165, 7.5138, 7.5115, 7.5088, 7.5067, 7.5109, 7.5092, 7.5075, 7.505, 7.5026, 7.5012, 7.4993, 7.4974, 7.4951, 7.4928, 7.4965, 7.5005, 7.5051, 7.5091, 7.5073, 7.5046, 7.5083, 7.5124, 7.5167, 7.5148, 7.5133, 7.5109, 7.5092, 7.5135, 7.5114, 7.5114, 7.5092, 7.5133, 7.5114, 7.5089, 7.5065, 7.5039, 7.5021, 7.4997, 7.4971, 7.5007, 7.4983, 7.4958, 7.4998, 7.4918, 7.4899, 7.4876, 7.4854, 7.4829, 7.4809, 7.4947, 7.4988, 7.4998, 7.4976, 7.5048, 7.5101, 7.5176, 7.5161, 7.5145, 7.512, 7.5101, 7.5157, 7.5137, 7.5294, 7.5271, 7.5251, 7.5225, 7.5199, 7.5182, 7.5177, 7.5153, 7.5143, 7.5123, 7.5107, 7.5089, 7.5066, 7.505, 7.5076, 7.5059, 7.5039, 7.5077, 7.5069, 7.5043, 7.5022, 7.506, 7.5169, 7.515, 7.5136, 7.5171, 7.5165, 7.5141, 7.5178, 7.5188, 7.5165, 7.5202, 7.5186, 7.5163, 7.5167, 7.5143, 7.512, 7.5099, 7.5136, 7.5172, 7.5149, 7.5186, 7.5223, 7.526, 7.5237, 7.5213, 7.5191, 7.5175, 7.5154, 7.5141, 7.5124, 7.5162, 7.514, 7.5119, 7.5099, 7.5133, 7.5168, 7.5155, 7.5141, 7.5125, 7.5103, 7.5138, 7.5116, 7.5152, 7.5129, 7.5202, 7.5179, 7.5158, 7.5139, 7.5119, 7.5098, 7.5135, 7.5062, 7.505, 7.5026, 7.5004, 7.4981, 7.4962, 7.494, 7.4865, 7.4853, 7.4831, 7.481, 7.4806, 7.4783, 7.4786, 7.4769, 7.4751, 7.4751, 7.474, 7.4779, 7.4817, 7.4796, 7.4728, 7.4762, 7.4693, 7.4672, 7.4653, 7.4633, 7.4669, 7.4647, 7.4626, 7.461, 7.4706, 7.4688, 7.4667, 7.4667, 7.4646, 7.4579, 7.4559, 7.4544, 7.4532, 7.451, 7.4549, 7.4527, 7.451, 7.4542, 7.4521, 7.4557, 7.4535, 7.4521, 7.4508, 7.4488, 7.4483, 7.4466, 7.4447, 7.4481, 7.4553, 7.4532, 7.4518, 7.4607, 7.459, 7.457, 7.455, 7.4537, 7.4574, 7.456, 7.4594, 7.4578, 7.4612, 7.4593, 7.4573, 7.4569, 7.4549, 7.4533, 7.4517, 7.4502, 7.4482, 7.4471, 7.4477, 7.4466, 7.4449, 7.4551, 7.4584, 7.4616, 7.4599, 7.4582, 7.4571, 7.4552, 7.4535, 7.454, 7.4577, 7.4558, 7.4544, 7.4614, 7.4592, 7.4582, 7.4575, 7.4558, 7.4549, 7.4535, 7.4564, 7.4544, 7.4524, 7.4464, 7.4499, 7.4479, 7.4415, 7.4394, 7.4422, 7.4406, 7.4406, 7.4438, 7.4445, 7.4433, 7.4462, 7.4552, 7.4541, 7.4528, 7.4556, 7.4536, 7.4566, 7.4552, 7.4584, 7.4575, 7.4562, 7.4591, 7.4577, 7.4557, 7.4588, 7.4573, 7.4554, 7.4697, 7.4677, 7.471, 7.4738, 7.4721, 7.4757, 7.4747, 7.473, 7.4757, 7.4751, 7.4732, 7.4819, 7.4803, 7.4792, 7.4828, 7.4813, 7.4796, 7.4831, 7.4819, 7.4801, 7.4782, 7.4771, 7.4799, 7.479, 7.4779, 7.4768, 7.475, 7.4737, 7.474, 7.4772, 7.4767, 7.4754, 7.4785, 7.477, 7.4753, 7.4735, 7.4764, 7.4702, 7.4702, 7.4689, 7.4674, 7.4658, 7.464, 7.4622, 7.4603, 7.4584, 7.4521, 7.4549, 7.4578, 7.4562, 7.4595, 7.4583, 7.4567, 7.4549, 7.4533, 7.4516, 7.45, 7.4483, 7.4467, 7.4454, 7.4438, 7.4505, 7.4489, 7.4477, 7.4606, 7.4596, 7.4635, 7.4617, 7.465, 7.4635, 7.4622, 7.4623, 7.4607, 7.4653, 7.4758, 7.4739, 7.4772, 7.4758, 7.4744, 7.4725, 7.4706, 7.4687, 7.4668, 7.4649, 7.4641, 7.4667, 7.4672, 7.4658, 7.464, 7.4667, 7.4648, 7.4675, 7.4715, 7.47, 7.4725, 7.4706, 7.4689, 7.4671, 7.4654, 7.4639, 7.4627, 7.4611, 7.4644, 7.4633, 7.4618, 7.4647, 7.4676, 7.4704, 7.4687, 7.4674, 7.4662, 7.4605, 7.4638, 7.4626, 7.4702, 7.4688, 7.4669, 7.4651, 7.4679, 7.4661, 7.4758, 7.4818, 7.4804, 7.4791, 7.4819, 7.4802, 7.4783, 7.4772, 7.48, 7.4792, 7.4773, 7.4755, 7.4743, 7.4769, 7.4805, 7.4791, 7.478, 7.4812, 7.4795, 7.4777, 7.4765, 7.4794, 7.4781, 7.4808, 7.4792, 7.4781, 7.4769, 7.4796, 7.4781, 7.4767, 7.4758, 7.4743, 7.4724, 7.471, 7.4697, 7.4683, 7.4674, 7.4659, 7.4665, 7.465, 7.4679, 7.4666, 7.4694, 7.4681, 7.4668, 7.4665, 7.4652, 7.4636, 7.462, 7.4602, 7.4626, 7.4628, 7.4646, 7.4628, 7.4612, 7.4601, 7.4589, 7.4533, 7.456, 7.4585, 7.4614, 7.46, 7.4585, 7.4573, 7.4556, 7.4781, 7.4766, 7.4794, 7.4795, 7.4865, 7.4852, 7.4841, 7.4868, 7.4861, 7.486, 7.4844, 7.479, 7.4773, 7.4759, 7.4741, 7.4724, 7.4714, 7.477, 7.4754, 7.4738, 7.4727, 7.4717, 7.4701, 7.4741, 7.4768, 7.4756, 7.4739, 7.4767, 7.4753, 7.4744, 7.4797, 7.4785, 7.4769, 7.4752, 7.4779, 7.4762, 7.4745, 7.4729, 7.4717, 7.4703, 7.4687, 7.4712, 7.47, 7.4728, 7.4712, 7.4714, 7.4728, 7.4711, 7.4697, 7.4725, 7.4708, 7.4704, 7.469, 7.4713, 7.4701, 7.4661, 7.4814, 7.485, 7.4878, 7.4862, 7.4849, 7.4845, 7.4831, 7.4856, 7.4845, 7.4832, 7.483, 7.4817, 7.49, 7.4883, 7.487, 7.4858, 7.4884, 7.4872, 7.499, 7.4974, 7.4962, 7.4985, 7.501, 7.4996, 7.502, 7.5011, 7.5035, 7.5018, 7.5002, 7.4985, 7.4971, 7.4954, 7.4938, 7.4965, 7.4988, 7.5012, 7.4996, 7.4981, 7.5005, 7.5028, 7.5013, 7.4997, 7.4985, 7.4973, 7.4957, 7.4945, 7.4931, 7.4922, 7.4912, 7.4907, 7.4891, 7.4878, 7.4863, 7.4902, 7.492, 7.5027, 7.5017, 7.5009, 7.5001, 7.5012, 7.5, 7.4984, 7.501, 7.4994, 7.4979, 7.497, 7.4956, 7.4948, 7.497, 7.496, 7.4945, 7.494, 7.4924, 7.4913, 7.4906, 7.4893, 7.4915, 7.4899, 7.4886, 7.4873, 7.4898, 7.4883, 7.487, 7.4854, 7.484, 7.4863, 7.4849, 7.4838, 7.4825, 7.4812, 7.4799, 7.4822, 7.4775, 7.4761, 7.4747, 7.4733, 7.4722, 7.4729, 7.4715, 7.4666, 7.4692, 7.4679, 7.4669, 7.4656, 7.4761, 7.4785, 7.4981, 7.4932, 7.4919, 7.4907, 7.4927, 7.495, 7.4938, 7.4926, 7.4911, 7.4901, 7.4889, 7.4878, 7.4862, 7.485, 7.4871, 7.4858, 7.4843, 7.4838, 7.4831, 7.4854, 7.4842, 7.4829, 7.4819, 7.484, 7.4826, 7.4814, 7.4804, 7.479, 7.4813, 7.4799, 7.4784, 7.4774, 7.4777, 7.4776, 7.4774, 7.4869, 7.4855, 7.4915, 7.4904, 7.4892, 7.4921, 7.4908, 7.4896, 7.4928, 7.4916, 7.4905, 7.4893, 7.4954, 7.4979, 7.5071, 7.5064, 7.5148, 7.5136, 7.5138, 7.5127, 7.5114, 7.5103, 7.5088, 7.5079, 7.5071, 7.5057, 7.5042, 7.5028, 7.5017, 7.5003, 7.4989, 7.4978, 7.5004, 7.4989, 7.498, 7.4965, 7.5097, 7.5119, 7.5109, 7.5099, 7.5129, 7.5118, 7.5071, 7.5058, 7.508, 7.5117, 7.5079, 7.5067, 7.5102, 7.509, 7.5077, 7.5063, 7.5051, 7.5038, 7.5024, 7.501, 7.4996, 7.4981, 7.4967, 7.499, 7.5012, 7.4997, 7.4982, 7.4971, 7.4956, 7.4978, 7.4964, 7.4949, 7.4935, 7.4921, 7.4907, 7.4897, 7.4884, 7.487, 7.4865, 7.4855, 7.5007, 7.5105, 7.5096, 7.5083, 7.507, 7.5068, 7.5058, 7.5045, 7.5036, 7.5059, 7.5046, 7.5067, 7.5067, 7.5073, 7.5061, 7.5085, 7.5104, 7.5131, 7.5118, 7.5108, 7.5101, 7.5087, 7.5073, 7.5059, 7.5048, 7.5035, 7.5022, 7.5008, 7.5003, 7.4989, 7.4975, 7.4997, 7.5023, 7.5013, 7.5, 7.4989, 7.4977, 7.4963, 7.4954, 7.4944, 7.4934, 7.4923, 7.4913, 7.4903, 7.4889, 7.4877, 7.496, 7.4992, 7.5015, 7.5003, 7.503, 7.5021, 7.5022, 7.5045, 7.5036, 7.5023, 7.5064, 7.505, 7.5036, 7.5025, 7.5011, 7.5033, 7.5019, 7.5005, 7.4991, 7.4985, 7.4972, 7.4959, 7.4945, 7.4936, 7.4922, 7.4943, 7.493, 7.4953, 7.4974, 7.496, 7.4949, 7.4909, 7.4933, 7.4923, 7.4915, 7.4937, 7.4926, 7.4948, 7.4945, 7.4968, 7.4955, 7.4946, 7.4988, 7.4981, 7.4968, 7.4991, 7.4979, 7.4974, 7.4994, 7.5014, 7.5, 7.4989, 7.498, 7.4938, 7.4926, 7.4947, 7.4965, 7.4953, 7.4974, 7.5049, 7.507, 7.506, 7.5047, 7.5036, 7.5023, 7.5009, 7.4995, 7.4982, 7.4968, 7.4989, 7.5009, 7.503, 7.5016, 7.5003, 7.4991, 7.4983, 7.4973, 7.4965, 7.4955, 7.4942, 7.4962, 7.4949, 7.4937, 7.4925, 7.4912, 7.4903, 7.4891, 7.4879, 7.4867, 7.4888, 7.4875, 7.4896, 7.4917, 7.4905, 7.4893, 7.4913, 7.4932, 7.4951, 7.4938, 7.4958, 7.4946, 7.4938, 7.4927, 7.4948, 7.4934, 7.4957, 7.4948, 7.4936, 7.4954, 7.501, 7.5032, 7.5034, 7.4993, 7.4985, 7.4975, 7.4996, 7.5015, 7.5006, 7.5027, 7.5016, 7.5006, 7.5028, 7.5016, 7.5011, 7.5, 7.4994, 7.5011, 7.5007, 7.5031, 7.5019, 7.5009, 7.5, 7.4989, 7.4976, 7.4987, 7.5007, 7.4998, 7.4987, 7.4982, 7.4976, 7.4964, 7.4967, 7.4957, 7.4947, 7.4979, 7.494, 7.4929, 7.4947, 7.4943, 7.4933, 7.4952, 7.4975, 7.4963, 7.4955, 7.4981, 7.4968, 7.4989, 7.4981, 7.4969, 7.4956, 7.4973, 7.4966, 7.4985, 7.5004, 7.4992, 7.4984, 7.4972, 7.497, 7.499, 7.4977, 7.497, 7.4934, 7.4897, 7.4914, 7.4905, 7.4942, 7.4962, 7.4949, 7.4967, 7.4957, 7.495, 7.4937, 7.4925, 7.4914, 7.491, 7.4898, 7.4886, 7.4875, 7.4865, 7.4885, 7.4874, 7.4923, 7.4911, 7.493, 7.4955, 7.4943, 7.4933, 7.4923, 7.4942, 7.4961, 7.4953, 7.4942, 7.4934, 7.4925, 7.4956, 7.4921, 7.4942, 7.4903, 7.4895, 7.4914, 7.4936, 7.4926, 7.4946, 7.4934, 7.4925, 7.4913, 7.4901, 7.489, 7.4883, 7.4875, 7.4893, 7.4881, 7.4869, 7.4863, 7.4882, 7.4873, 7.4835, 7.4829, 7.485, 7.4839, 7.4829, 7.4818, 7.4807, 7.4826, 7.4814, 7.4803, 7.4799, 7.4787, 7.4776, 7.4765, 7.4755, 7.4748, 7.4736, 7.4725, 7.4717, 7.4725, 7.4717, 7.4706, 7.4714, 7.4703, 7.4691, 7.4679, 7.4696, 7.4684, 7.4672, 7.4662, 7.4656, 7.4675, 7.4666, 7.4708, 7.4697, 7.4687, 7.4678, 7.4668, 7.4657, 7.4678, 7.4641, 7.463, 7.465, 7.4658, 7.4683, 7.4671, 7.4689, 7.4678, 7.4666, 7.4666, 7.4655, 7.4644, 7.4637, 7.4632, 7.4621, 7.4611, 7.463, 7.4623, 7.4618, 7.4611, 7.4601, 7.4595, 7.4586, 7.4605, 7.4597, 7.4587, 7.4605, 7.4594, 7.4585, 7.4605, 7.4596, 7.4585, 7.4575, 7.4582, 7.46, 7.4589, 7.4578, 7.4597, 7.4614, 7.4603, 7.4593, 7.4582, 7.4573, 7.4563, 7.4554, 7.4544, 7.4546, 7.4537, 7.4529, 7.4519, 7.4508, 7.45, 7.4489, 7.4481, 7.447, 7.4459, 7.4449, 7.4466, 7.4455, 7.4472, 7.4489, 7.4506, 7.4551, 7.4543, 7.4588, 7.4579, 7.455, 7.4514, 7.4532, 7.4522, 7.4514, 7.455, 7.4568, 7.4559, 7.455, 7.4571, 7.456, 7.4555, 7.4602, 7.4621, 7.4613, 7.4624, 7.4615, 7.461, 7.4628, 7.4621, 7.462, 7.4667, 7.4656, 7.4646, 7.4691, 7.4693, 7.471, 7.4699, 7.469, 7.4679, 7.4667, 7.4656, 7.4647, 7.4636, 7.4629, 7.462, 7.4611, 7.4629, 7.4621, 7.4617, 7.4635, 7.465, 7.4667, 7.4656, 7.4644, 7.4662, 7.4652, 7.467, 7.466, 7.465, 7.4668, 7.4657, 7.4646, 7.4637, 7.4627, 7.4617, 7.4636, 7.4629, 7.462, 7.4639, 7.4662, 7.4654, 7.4646, 7.4637, 7.4627, 7.462, 7.4615, 7.464, 7.4659, 7.4648, 7.4667, 7.4657, 7.4647, 7.4664, 7.4655, 7.4655, 7.4644, 7.4664, 7.4683, 7.4674, 7.4665, 7.466, 7.468, 7.4672, 7.4664, 7.4656, 7.4648, 7.4637, 7.4658, 7.4679, 7.4674, 7.4666, 7.4655, 7.4645, 7.4634, 7.4626, 7.4677, 7.4695, 7.471, 7.4702, 7.4767, 7.4786, 7.4775, 7.4767, 7.4756, 7.4774, 7.4792, 7.4788, 7.4777, 7.4775, 7.4767, 7.4786, 7.4775, 7.4794, 7.4785, 7.4775, 7.477, 7.476, 7.4751, 7.4742, 7.4761, 7.478, 7.483, 7.4822, 7.4811, 7.4803, 7.4821, 7.4811, 7.4801, 7.4793, 7.4784, 7.4776, 7.4766, 7.4756, 7.4745, 7.4744, 7.476, 7.475, 7.4741, 7.4731, 7.4729, 7.472, 7.4735, 7.4724, 7.4717, 7.4712, 7.4702, 7.4695, 7.4739, 7.4729, 7.4747, 7.4739, 7.4728, 7.4718, 7.4708, 7.4698, 7.4688, 7.4681, 7.4673, 7.4665, 7.4655, 7.4646, 7.4653, 7.4644, 7.464, 7.4631, 7.4621, 7.4589, 7.458, 7.4569, 7.4537, 7.4554, 7.4551, 7.4544, 7.4569, 7.4584, 7.4578, 7.4568, 7.4558, 7.4552, 7.4544, 7.4534, 7.4553, 7.4545, 7.454, 7.4557, 7.4547, 7.4537, 7.4532, 7.4522, 7.4512, 7.4501, 7.4491, 7.4505, 7.4495, 7.4512, 7.4528, 7.4518, 7.4535, 7.4551, 7.4559, 7.4548, 7.4543, 7.4534, 7.4553, 7.4544, 7.4535, 7.4535, 7.453, 7.453, 7.4521, 7.4513, 7.4503, 7.4493, 7.4486, 7.4478, 7.4468, 7.446, 7.4451, 7.4443, 7.4435, 7.4426, 7.4416, 7.4406, 7.4398, 7.4389, 7.4383, 7.4399, 7.4417, 7.4408, 7.44, 7.4415, 7.4409, 7.4403, 7.4393, 7.4408, 7.4401, 7.4395, 7.4363, 7.4354, 7.4345, 7.4338, 7.4356, 7.4371, 7.4362, 7.4353, 7.4343, 7.4335, 7.4327, 7.4321, 7.4337, 7.4332, 7.4323, 7.4339, 7.4329, 7.4319, 7.4309, 7.43, 7.4315, 7.4285, 7.4303, 7.4294, 7.4285, 7.4279, 7.427, 7.4263, 7.4233, 7.4229, 7.4222, 7.4215, 7.4207, 7.42, 7.4192, 7.4184, 7.4176, 7.4168, 7.4163, 7.4154, 7.4172, 7.4163, 7.4204, 7.4196, 7.4187, 7.4182, 7.4199, 7.4191, 7.4208, 7.4199, 7.4193, 7.4188, 7.4178, 7.4172, 7.4163, 7.4154, 7.4148, 7.4142, 7.4135, 7.4128, 7.4119, 7.411, 7.4101, 7.4094, 7.4084, 7.4075, 7.4067, 7.4035, 7.4025, 7.4018, 7.4082, 7.411, 7.4128, 7.4119, 7.411, 7.41, 7.4116, 7.411, 7.41, 7.409, 7.4081, 7.4072, 7.4135, 7.4152, 7.4167, 7.4183, 7.4174, 7.4184, 7.4177, 7.4193, 7.4186, 7.4179, 7.417, 7.4161, 7.4158, 7.4152, 7.4146, 7.4138, 7.4154, 7.4146, 7.4137, 7.4128, 7.4142, 7.4135, 7.4127, 7.412, 7.4135, 7.4134, 7.4125, 7.4117, 7.4134, 7.4125, 7.414, 7.4155, 7.4148, 7.4139, 7.4154, 7.4164, 7.4158, 7.4174, 7.4168, 7.4183, 7.4174, 7.4167, 7.4158, 7.4153, 7.4146, 7.4137, 7.4128, 7.4119, 7.4133, 7.4126, 7.4141, 7.4159, 7.415, 7.414, 7.4111, 7.4102, 7.4126, 7.4122, 7.4115, 7.4109, 7.4079, 7.4071, 7.4084, 7.4098, 7.4088, 7.4079, 7.407, 7.4124, 7.412, 7.4194, 7.4186, 7.4177, 7.4172, 7.4166, 7.4156, 7.4148, 7.4163, 7.4155, 7.4147, 7.4171, 7.4164, 7.4156, 7.4169, 7.4161, 7.4154, 7.4169, 7.4161, 7.4153, 7.4145, 7.4139, 7.4136, 7.4127, 7.4119, 7.4114, 7.4129, 7.412, 7.4113, 7.4128, 7.412, 7.4113, 7.4106, 7.4097, 7.4097, 7.4112, 7.4084, 7.408, 7.4095, 7.4109, 7.4102, 7.4096, 7.4088, 7.4082, 7.4075, 7.409, 7.4082, 7.4076, 7.4092, 7.4109, 7.4104, 7.4098, 7.4094, 7.4088, 7.4083, 7.4075, 7.4091, 7.4085, 7.4079, 7.4071, 7.4042, 7.4035, 7.4033, 7.4047, 7.404, 7.4053, 7.4067, 7.4058, 7.4052, 7.4043, 7.4035, 7.4051, 7.4043, 7.4036, 7.4052, 7.4044, 7.4036, 7.4027, 7.4063, 7.4054, 7.4047, 7.4042, 7.4035, 7.4028, 7.4019, 7.4015, 7.401, 7.4023, 7.4018, 7.4009, 7.4023, 7.4015, 7.4008, 7.4022, 7.3993, 7.3986, 7.3979, 7.3993, 7.3985, 7.3984, 7.3976, 7.3972, 7.3965, 7.3957, 7.397, 7.3942, 7.3937, 7.394, 7.3932, 7.3924, 7.3917, 7.3911, 7.3906, 7.3878, 7.387, 7.3863, 7.3857, 7.3832, 7.3824, 7.3815, 7.381, 7.3824, 7.3815, 7.3829, 7.3843, 7.3858, 7.3852, 7.3869, 7.3884, 7.3876, 7.3868, 7.386, 7.3852, 7.3846, 7.384, 7.3854, 7.3846, 7.386, 7.3857, 7.3849, 7.3841, 7.3833, 7.3847, 7.3862, 7.3876, 7.3888, 7.3884, 7.3878, 7.3869, 7.3861, 7.3853, 7.3868, 7.3861, 7.39, 7.3894, 7.3909, 7.3902, 7.3896, 7.4089, 7.4082, 7.4097, 7.409, 7.4084, 7.4076, 7.4068, 7.4062, 7.4055, 7.4048, 7.4047, 7.4039, 7.4032, 7.4045, 7.4037, 7.4073, 7.4064, 7.4079, 7.4073, 7.4065, 7.408, 7.4096, 7.4088, 7.408, 7.4087, 7.4079, 7.4051, 7.4046, 7.4061, 7.4053, 7.4052, 7.4089, 7.4083, 7.4075, 7.4067, 7.4062, 7.4057, 7.4067, 7.4061, 7.4074, 7.4066, 7.4078, 7.4069, 7.4125, 7.4133, 7.4126, 7.4141, 7.4134, 7.4199, 7.4211, 7.4206, 7.4203, 7.4195, 7.4195, 7.4212, 7.4203, 7.4196, 7.4211, 7.4205, 7.4179, 7.4175, 7.4172, 7.4194, 7.417, 7.4164, 7.416, 7.4249, 7.4241, 7.4233, 7.4242, 7.4296, 7.4291, 7.4303, 7.4295, 7.429, 7.4282, 7.4275, 7.4277, 7.425, 7.4244, 7.4236, 7.4242, 7.4237, 7.4253, 7.4245, 7.4237, 7.4233, 7.4247, 7.424, 7.4213, 7.4226, 7.4217, 7.422, 7.4212, 7.4204, 7.4198, 7.4195, 7.4213, 7.4205, 7.4199, 7.4192, 7.4184, 7.418, 7.4174, 7.4167, 7.4161, 7.4135, 7.4131, 7.4131, 7.4124, 7.4118, 7.4118, 7.4119, 7.4111, 7.4104, 7.4138, 7.4151, 7.4162, 7.4154, 7.4146, 7.4138, 7.413, 7.4144, 7.4159, 7.4151, 7.4145, 7.4137, 7.4129, 7.4121, 7.4135, 7.4128, 7.4121, 7.4114, 7.4108, 7.4082, 7.4095, 7.4089, 7.4085, 7.4077, 7.4071, 7.4065, 7.4058, 7.4032, 7.4046, 7.4038, 7.403, 7.4035, 7.4027, 7.4046, 7.4042, 7.4038, 7.403, 7.4027, 7.4022, 7.4018, 7.4011, 7.4007, 7.3999, 7.3991, 7.4003, 7.3995, 7.3988, 7.3984, 7.3976, 7.395, 7.3924, 7.3898, 7.389, 7.3883, 7.3896, 7.3907, 7.3917, 7.3927000000000005, 7.394, 7.3935, 7.3928, 7.3921, 7.3913, 7.3906, 7.392, 7.3894, 7.389, 7.3903, 7.3897, 7.3893, 7.3887, 7.388, 7.3897, 7.390700000000001, 7.394, 7.3952, 7.3946, 7.3959, 7.3954, 7.3953, 7.3967, 7.3961, 7.3953, 7.3967, 7.3961, 7.3978, 7.397, 7.4007, 7.4019, 7.4035, 7.408, 7.4074, 7.407, 7.4063, 7.4058, 7.4093, 7.4088, 7.4081, 7.4101, 7.4094, 7.4116, 7.4109, 7.4101, 7.41, 7.4103, 7.4098, 7.4092, 7.4084, 7.4077, 7.4073, 7.4086, 7.4079, 7.4073, 7.4066, 7.4059, 7.4055, 7.4071, 7.4064, 7.4059, 7.4071, 7.4064, 7.4066, 7.4087, 7.408, 7.4073, 7.4086, 7.408, 7.4072, 7.4065, 7.4076, 7.4069, 7.4064, 7.4058, 7.4071, 7.4064, 7.4079, 7.4077, 7.407, 7.4065, 7.4063, 7.4058, 7.407, 7.4083, 7.4077, 7.4087000000000005, 7.4082, 7.4081, 7.4092, 7.4086, 7.408, 7.4072, 7.4066, 7.406, 7.4053, 7.4046, 7.4041, 7.4034, 7.4026, 7.4037, 7.4052, 7.4066, 7.408, 7.4093, 7.4087, 7.4104, 7.4097, 7.409, 7.4085, 7.4079, 7.4072, 7.4065, 7.4058, 7.4051, 7.4064, 7.4057, 7.4049, 7.4043, 7.4038, 7.405, 7.4063, 7.4056, 7.4068, 7.4081, 7.4093, 7.4086, 7.4079, 7.4054, 7.4067, 7.406, 7.4072, 7.4066, 7.4079, 7.4092, 7.4105, 7.4098, 7.409, 7.4066, 7.406, 7.4072, 7.4122, 7.4115, 7.4108, 7.4119, 7.4115, 7.4127, 7.412, 7.4114, 7.4106, 7.4118, 7.4111, 7.4103, 7.4117, 7.4131, 7.4123, 7.4136, 7.4136, 7.4147, 7.4158, 7.4169, 7.4164, 7.416, 7.4153, 7.4164, 7.4156, 7.415, 7.4143, 7.4136, 7.4132, 7.4126, 7.4102, 7.4094, 7.4088, 7.4082, 7.4093, 7.4104, 7.4097, 7.4091, 7.4102, 7.4095, 7.4089, 7.4083, 7.4082, 7.4074, 7.4066, 7.4061, 7.4054, 7.4048, 7.4041, 7.4034, 7.4049, 7.4062, 7.4054, 7.4048, 7.4044, 7.4037, 7.4033, 7.4045, 7.4059, 7.4106, 7.4118, 7.4131, 7.4125, 7.4118, 7.4204, 7.4217, 7.4198, 7.4192, 7.4186, 7.418, 7.4173, 7.4185, 7.4178, 7.4188, 7.42, 7.4205, 7.4199, 7.4175, 7.4198, 7.4191, 7.4186, 7.4198, 7.421, 7.4222, 7.4215, 7.4208, 7.4219, 7.4212, 7.4205, 7.4198, 7.4193, 7.4206, 7.4236, 7.4247, 7.424, 7.4236, 7.4247, 7.4239, 7.425, 7.4243, 7.4236, 7.423, 7.4222, 7.4215, 7.4209, 7.4202, 7.4199, 7.4203, 7.4179, 7.4191, 7.4187, 7.4201, 7.4215, 7.4208, 7.4222, 7.4216, 7.421, 7.4203, 7.4196, 7.4208, 7.4201, 7.4231, 7.4224, 7.4217, 7.423, 7.4223, 7.423, 7.4207, 7.42, 7.4211, 7.4204, 7.4215, 7.4208, 7.4203, 7.4215, 7.4208, 7.4203, 7.4196, 7.4189, 7.4265, 7.426, 7.4253, 7.4247, 7.424, 7.4235, 7.4228, 7.4221, 7.4216, 7.4211, 7.4223, 7.4216, 7.4211, 7.4205, 7.4198, 7.4191, 7.4184, 7.4177, 7.4172, 7.4152, 7.4145, 7.4138, 7.4133, 7.4126, 7.412, 7.4115, 7.4109, 7.4125, 7.4118, 7.4112, 7.4122, 7.4134, 7.4127, 7.412, 7.4131, 7.4124, 7.4118, 7.4111, 7.4105, 7.4099, 7.4097, 7.4092, 7.409, 7.4085, 7.4099, 7.4092, 7.4092, 7.4086, 7.408, 7.4094, 7.4089, 7.4082, 7.408, 7.4074, 7.4089, 7.4082, 7.4077, 7.4071, 7.4085, 7.4079, 7.4072, 7.4066, 7.4079, 7.4072, 7.4049, 7.4045, 7.4052, 7.4047, 7.4058, 7.4052, 7.4047, 7.4058, 7.4115, 7.4108, 7.4101, 7.4111, 7.4107, 7.4103, 7.4098, 7.4111, 7.4122, 7.4116, 7.4109, 7.412, 7.4131, 7.4125, 7.4119, 7.4131, 7.4128, 7.4123, 7.4126, 7.4121, 7.4136, 7.4131, 7.413, 7.4125, 7.4119, 7.4113, 7.4108, 7.4102, 7.4113, 7.4107, 7.4118, 7.4129, 7.414, 7.4134, 7.4144, 7.4155, 7.4148, 7.4144, 7.4137, 7.4132, 7.4125, 7.4118, 7.4129, 7.4126, 7.4121, 7.4133, 7.4126, 7.4119, 7.413, 7.4124, 7.4123, 7.4117, 7.411, 7.4103, 7.4114, 7.4109, 7.4103, 7.4098, 7.4092, 7.4085, 7.4114, 7.4107, 7.4101, 7.4097, 7.4092, 7.4126, 7.4137, 7.4131, 7.4141, 7.4137, 7.413, 7.4143, 7.4138, 7.4132, 7.4145, 7.4156, 7.4151, 7.4163, 7.4195, 7.419, 7.4184, 7.4183, 7.4182, 7.4177, 7.4176, 7.4169, 7.4162, 7.4173, 7.4166, 7.416, 7.4153, 7.4147, 7.4141, 7.4152, 7.4164, 7.4158, 7.4153, 7.4147, 7.414, 7.4134, 7.4129, 7.4122, 7.4117, 7.4111, 7.4105, 7.4116, 7.4127, 7.4104, 7.4098, 7.4198, 7.4193, 7.4203, 7.4181, 7.4177, 7.4172, 7.4166, 7.4177, 7.4192, 7.4185, 7.4179, 7.4173, 7.4167, 7.4162, 7.4184, 7.4196, 7.4191, 7.4185, 7.4196, 7.4191, 7.4202, 7.4195, 7.4189, 7.4201, 7.4197, 7.4191, 7.4185, 7.418, 7.4174, 7.4169, 7.4179, 7.4174, 7.4169, 7.4163, 7.4143, 7.4142, 7.4145, 7.4127, 7.412, 7.4115, 7.4125, 7.4119, 7.4112, 7.4116, 7.4111, 7.4105, 7.41, 7.411, 7.412, 7.4116, 7.4112, 7.4107, 7.4102, 7.4095, 7.409, 7.4085, 7.4078, 7.4102, 7.4112, 7.4107, 7.4154, 7.4208, 7.422, 7.4219, 7.4216, 7.4212, 7.4206, 7.4199, 7.4217, 7.4219, 7.4215, 7.4194, 7.4173, 7.4168, 7.4164, 7.4142, 7.4152, 7.4145, 7.4156, 7.415, 7.4144, 7.4139, 7.4117, 7.4111, 7.4106, 7.4119, 7.4112, 7.4107, 7.4102, 7.4096, 7.4108, 7.4103, 7.4148, 7.4142, 7.4137, 7.4132, 7.4128, 7.4122, 7.4115, 7.4109, 7.4105, 7.41, 7.4097, 7.4092, 7.4085, 7.408, 7.4092, 7.4102, 7.4097, 7.4091, 7.4115, 7.4144, 7.4155, 7.4165, 7.4159, 7.4156, 7.4167, 7.4167, 7.416, 7.4154, 7.4148, 7.4142, 7.4137, 7.4147, 7.4141, 7.4135, 7.413, 7.4127, 7.4121, 7.4115, 7.4109, 7.4119, 7.4114, 7.4108, 7.4103, 7.4099, 7.4094, 7.4089, 7.4083, 7.4077, 7.4071, 7.4082, 7.4091, 7.4102, 7.4113, 7.4107, 7.4103, 7.4113, 7.4108, 7.4104, 7.4098, 7.4113, 7.4107, 7.4101, 7.4098, 7.4093, 7.4104, 7.4115, 7.4126, 7.4136, 7.413, 7.4124, 7.4183, 7.418, 7.4175, 7.4186, 7.418, 7.4174, 7.4168, 7.4162, 7.4162, 7.4157, 7.4152, 7.4147, 7.4141, 7.4175, 7.4193, 7.4187, 7.4187, 7.4183, 7.4178, 7.4173, 7.4183, 7.4176, 7.4169, 7.4179, 7.4176, 7.417, 7.4164, 7.4159, 7.4171, 7.4174, 7.4185, 7.418, 7.4173, 7.4177, 7.4188, 7.4199, 7.4208, 7.4204, 7.4204, 7.42, 7.4193, 7.4202, 7.4195, 7.4193, 7.4191, 7.4185, 7.4197, 7.4191, 7.4185, 7.418, 7.4174, 7.4168, 7.4163, 7.4159, 7.4185, 7.418, 7.4175, 7.417, 7.4165, 7.4159, 7.4152, 7.4147, 7.416, 7.4155, 7.4166, 7.4162, 7.4156, 7.4152, 7.4147, 7.4141, 7.4135, 7.4129, 7.4123, 7.4118, 7.413, 7.411, 7.4106, 7.41, 7.4095, 7.4089, 7.4084, 7.4078, 7.4088, 7.4083, 7.408, 7.409, 7.41, 7.4096, 7.4106, 7.4102, 7.4098, 7.4092, 7.4103, 7.4097, 7.4137, 7.4147, 7.4156, 7.4153, 7.4147, 7.4141, 7.4139, 7.415, 7.416, 7.4169, 7.4163, 7.4156, 7.415, 7.4144, 7.4171, 7.4168, 7.4148, 7.4142, 7.4152, 7.4179, 7.4189, 7.4183, 7.4177, 7.4171, 7.4165, 7.4159, 7.4169, 7.4163, 7.4159, 7.417, 7.4165, 7.4145, 7.414, 7.4134, 7.413, 7.4126, 7.4121, 7.4115, 7.4109, 7.4103, 7.4097, 7.4108, 7.4128, 7.4122, 7.4116, 7.4119, 7.4114, 7.4123, 7.4117, 7.4128, 7.4124, 7.4104, 7.4098, 7.4078, 7.4072, 7.4067, 7.4062, 7.4056, 7.4052, 7.4047, 7.4042, 7.4038, 7.4018, 7.4059, 7.4071, 7.4081, 7.4076, 7.407, 7.4064, 7.4062, 7.4058, 7.4062, 7.4059, 7.4054, 7.4053, 7.4064, 7.4059, 7.4068, 7.4079, 7.4074, 7.4068, 7.4063, 7.4043, 7.4037, 7.4032, 7.4028, 7.4022, 7.4029, 7.4023, 7.4018, 7.4012, 7.4009, 7.4004, 7.4, 7.4015, 7.4042, 7.404, 7.405, 7.4044, 7.4039, 7.4033, 7.4028, 7.4008, 7.4004, 7.3999, 7.3993, 7.3989, 7.3983, 7.3977, 7.3971, 7.3981, 7.3991, 7.3989, 7.3984, 7.3979, 7.3973, 7.3957, 7.3951, 7.3946, 7.3957, 7.3968, 7.3964, 7.3959, 7.3961, 7.3966, 7.3976, 7.3973, 7.3968, 7.3979, 7.3977, 7.3972, 7.3968, 7.3966, 7.396, 7.3955, 7.395, 7.3944, 7.3939, 7.3933, 7.3927, 7.3921, 7.3915, 7.391, 7.3935, 7.3934, 7.3949, 7.3945, 7.3939, 7.3949, 7.3943, 7.3953, 7.3949, 7.3943, 7.3952, 7.3947, 7.3941, 7.3935, 7.3929, 7.3949, 7.3946, 7.3942, 7.3938, 7.3934, 7.3928, 7.3927, 7.3937, 7.3931, 7.3926, 7.3937, 7.3932, 7.3928, 7.3942, 7.3938, 7.3934, 7.3944, 7.394, 7.395, 7.3959, 7.3953, 7.3963, 7.3961, 7.397, 7.3983, 7.3978, 7.3974, 7.3968, 7.3963, 7.3973, 7.3985, 7.3979, 7.3976, 7.3986, 7.3981, 7.3976, 7.3986, 7.3982, 7.3978, 7.3972, 7.3968, 7.3962, 7.3956, 7.3966, 7.3974, 7.3969, 7.3979, 7.3975, 7.397, 7.3966, 7.396, 7.3955, 7.3967, 7.3963, 7.3959, 7.3955, 7.3967, 7.3962, 7.3973, 7.3969, 7.3965, 7.3961, 7.3956, 7.3951, 7.3945, 7.394, 7.3936, 7.3931, 7.3927, 7.3922, 7.3916, 7.3926, 7.3921, 7.3916, 7.3912, 7.3906, 7.3902, 7.3896, 7.389, 7.3899, 7.391, 7.3904, 7.3898, 7.3893, 7.3888, 7.3897, 7.3893, 7.3888, 7.3899, 7.3894, 7.3888, 7.3883, 7.3878, 7.3888, 7.3882, 7.3877, 7.3873, 7.3869, 7.3913, 7.3908, 7.3906, 7.3915, 7.391, 7.3904, 7.3899, 7.3908, 7.3903, 7.3897, 7.3906, 7.3903, 7.3898, 7.3892, 7.3889, 7.3884, 7.3924, 7.3918, 7.3959, 7.3969, 7.3963, 7.3959, 7.3953, 7.3949, 7.4043, 7.4052, 7.4048, 7.4042, 7.4052, 7.4047, 7.4043, 7.4038, 7.4047, 7.4042, 7.4037, 7.4035, 7.4029, 7.4025, 7.4021, 7.4018, 7.4012, 7.4009, 7.4004, 7.3999, 7.3995, 7.3991, 7.3988, 7.3992, 7.3986, 7.4003, 7.4006, 7.4008, 7.4024, 7.4034, 7.403, 7.4045, 7.4042, 7.4038, 7.4034, 7.4031, 7.4027, 7.4023, 7.4018, 7.4, 7.3997, 7.4006, 7.3988, 7.3983, 7.3978, 7.3988, 7.3982, 7.3978, 7.3975, 7.3969, 7.3951, 7.396, 7.3966, 7.3975, 7.3971, 7.398, 7.3977, 7.3972, 7.3967, 7.3963, 7.3958, 7.3953, 7.3961, 7.3946, 7.3962, 7.3962, 7.3958, 7.3968, 7.3964, 7.3959, 7.3955, 7.3952, 7.4007, 7.4002, 7.4001, 7.3996, 7.3991, 7.3985, 7.3981, 7.3976, 7.3972, 7.3967, 7.3963, 7.3958, 7.3953, 7.3948, 7.3944, 7.3939, 7.3936, 7.3931, 7.3927, 7.3922, 7.3931, 7.3928, 7.3937, 7.3932, 7.3927, 7.3923, 7.3918, 7.3914, 7.391, 7.3904, 7.39, 7.3897, 7.3893, 7.3888, 7.3886, 7.3881, 7.3912, 7.3908, 7.3904, 7.3917, 7.3912, 7.3921, 7.3915, 7.391, 7.3904, 7.39, 7.3894, 7.3903, 7.3913, 7.3908, 7.3902, 7.3897, 7.3892, 7.3874, 7.3869, 7.3864, 7.386, 7.3855, 7.3852, 7.3861, 7.3871, 7.3866, 7.3862, 7.3871, 7.3866, 7.3861, 7.3857, 7.3853, 7.3848, 7.3844, 7.3838, 7.3849, 7.3845, 7.384, 7.3834, 7.3828, 7.3828, 7.3825, 7.3848, 7.3844, 7.3839, 7.3834, 7.3858, 7.3853, 7.3848, 7.3844, 7.3859, 7.386, 7.3871, 7.3867, 7.3865, 7.386, 7.3856, 7.3851, 7.3846, 7.3828, 7.3837, 7.3851, 7.3846, 7.3842, 7.384, 7.3836, 7.3846, 7.3841, 7.3836, 7.3831, 7.3826, 7.3822, 7.3817, 7.3812, 7.3806, 7.3791, 7.3801, 7.3797, 7.3793, 7.3801, 7.3809, 7.3838, 7.3834, 7.3829, 7.3826, 7.3827, 7.3822, 7.3817, 7.3813, 7.3809, 7.3821, 7.3818, 7.3812, 7.3821, 7.3816, 7.3825, 7.3819, 7.3815, 7.381, 7.3805, 7.38, 7.381, 7.3805, 7.38, 7.3796, 7.3791, 7.3814, 7.3811, 7.3806, 7.3802, 7.3812, 7.3808, 7.3791, 7.3786, 7.3782, 7.3778, 7.3787, 7.3788, 7.377, 7.3766, 7.3776, 7.3771, 7.3781, 7.3776, 7.3773, 7.3768, 7.3764, 7.3761, 7.377, 7.3773, 7.3768, 7.3765, 7.376, 7.3808, 7.3803, 7.3798, 7.3793, 7.3787, 7.3782, 7.378, 7.3788, 7.3782, 7.3791, 7.38, 7.3795, 7.3805, 7.38, 7.3795, 7.3805, 7.3805, 7.3816, 7.3812, 7.3807, 7.3802, 7.3799, 7.3795, 7.3803, 7.3798, 7.3825, 7.3823, 7.382, 7.3815, 7.381, 7.3807, 7.3803, 7.3799, 7.3796, 7.3806, 7.3802, 7.3811, 7.3807, 7.3815, 7.3825, 7.382, 7.3818, 7.3815, 7.3811, 7.3797, 7.3793, 7.3789, 7.3786, 7.3781, 7.3776, 7.3771, 7.3807, 7.3803, 7.3801, 7.3797, 7.3807, 7.3805, 7.3801, 7.3797, 7.3806, 7.3801, 7.3796, 7.3806, 7.3816, 7.3811, 7.3807, 7.3816, 7.3811, 7.3821, 7.383, 7.3826, 7.3822, 7.3818, 7.3817, 7.3813, 7.3812, 7.3808, 7.3805, 7.3801, 7.3809, 7.3804, 7.38, 7.3797, 7.3806, 7.3803, 7.3798, 7.3806, 7.3801, 7.3797, 7.3807, 7.3817, 7.3812, 7.3808, 7.3803, 7.38, 7.3796, 7.3806, 7.3802, 7.3797, 7.3792, 7.3801, 7.3796, 7.3791, 7.3787, 7.3784, 7.3793, 7.3789, 7.3786, 7.3782, 7.3777, 7.3772, 7.3768, 7.3765, 7.3774, 7.3769, 7.3766, 7.3774, 7.377, 7.3765, 7.3761, 7.3756, 7.3739, 7.3734, 7.3731, 7.3726, 7.3722, 7.3717, 7.3712, 7.3708, 7.3704, 7.37, 7.3696, 7.3691, 7.3686, 7.3681, 7.3691, 7.3686, 7.3696, 7.3705, 7.3714, 7.371, 7.3707, 7.3703, 7.3713, 7.3697, 7.3692, 7.3698, 7.3694, 7.3703, 7.3699, 7.3696, 7.3692, 7.3728, 7.3736, 7.3759, 7.3793, 7.3788, 7.3783, 7.3779, 7.3776, 7.3771, 7.3766, 7.375, 7.3759, 7.3821, 7.3829, 7.3826, 7.3822, 7.3817, 7.3813, 7.3809, 7.3818, 7.3814, 7.3797, 7.3792, 7.3788, 7.3784, 7.3779, 7.3818, 7.3816, 7.3825, 7.3821, 7.3816, 7.3813, 7.3809, 7.3819, 7.3815, 7.381, 7.3819, 7.3816, 7.3811, 7.3808, 7.3816, 7.3812, 7.3809, 7.3806, 7.3801, 7.3797, 7.3806, 7.3804, 7.38, 7.3796, 7.3838, 7.3834, 7.3829, 7.3825, 7.3834, 7.383, 7.3827, 7.3822, 7.383, 7.3826, 7.3822, 7.3817, 7.3826, 7.3821, 7.383, 7.3839, 7.3834, 7.383, 7.3826, 7.3823, 7.3819, 7.3828, 7.3824, 7.3823, 7.3818, 7.3814, 7.3823, 7.3842, 7.3837, 7.3834, 7.3842, 7.3838, 7.3838, 7.3834, 7.3842, 7.384, 7.3836, 7.3834, 7.3822, 7.3817, 7.3813, 7.381, 7.3793, 7.3815, 7.381, 7.3818, 7.3854, 7.385, 7.3848, 7.3843, 7.3842, 7.3858, 7.3854, 7.3863, 7.3886, 7.3916, 7.3901, 7.3897, 7.3893, 7.3902, 7.3898, 7.3894, 7.389, 7.3886, 7.3883, 7.388, 7.3875, 7.387, 7.3868, 7.3864, 7.3865, 7.3848, 7.3844, 7.3853, 7.3862, 7.3858, 7.3854, 7.3852, 7.3847, 7.3844, 7.3852, 7.3847, 7.3844, 7.3839, 7.3836, 7.3849, 7.3844, 7.384, 7.3848, 7.3845, 7.3854, 7.3849, 7.3845, 7.3882, 7.3883, 7.3883, 7.3879, 7.3887, 7.3895, 7.3906, 7.389, 7.3886, 7.3881, 7.3876, 7.3872, 7.3881, 7.3877, 7.3873, 7.3883, 7.3879, 7.3875, 7.387, 7.3866, 7.3862, 7.3859, 7.3867, 7.3862, 7.3857, 7.3869, 7.3865, 7.3864, 7.3859, 7.3867, 7.3862, 7.3857, 7.3853, 7.3861, 7.3844, 7.384, 7.3835, 7.3858, 7.3854, 7.385, 7.3846, 7.3856, 7.3843, 7.3853, 7.385, 7.3846, 7.3842, 7.3838, 7.3834, 7.3829, 7.3825, 7.382, 7.3844, 7.3839, 7.3836, 7.3832, 7.3828, 7.3825, 7.3833, 7.3831, 7.3827, 7.3823, 7.3838, 7.3834, 7.3831, 7.3828, 7.3835, 7.383, 7.3827, 7.3835, 7.3832, 7.3827, 7.3824, 7.382, 7.3818, 7.3831, 7.3827, 7.3823, 7.3808, 7.3804, 7.3826, 7.3822, 7.383, 7.3825, 7.3822, 7.383, 7.3826, 7.3822, 7.3819, 7.3803, 7.3811, 7.3806, 7.3814, 7.3811, 7.3806, 7.3814, 7.3823, 7.3821, 7.3865, 7.3875, 7.3872, 7.388, 7.3888, 7.3884, 7.388, 7.3875, 7.3859, 7.3855, 7.3839, 7.3848, 7.3845, 7.3842, 7.3838, 7.3833, 7.3828, 7.3848, 7.3893, 7.3889, 7.3884, 7.3881, 7.3941, 7.3936, 7.3933, 7.3929, 7.3926, 7.3922, 7.3918, 7.3926, 7.3922, 7.392, 7.3916, 7.3919, 7.3947, 7.3943, 7.394, 7.3936, 7.392, 7.3916, 7.3911, 7.3908, 7.3905, 7.3901, 7.3898, 7.3893, 7.3889, 7.3884, 7.3894, 7.3891, 7.3899, 7.3895, 7.3891, 7.39, 7.3896, 7.3905, 7.3902, 7.3898, 7.3894, 7.3891, 7.3888, 7.3884, 7.388, 7.3879, 7.3876, 7.3884, 7.3892, 7.39, 7.3898, 7.3893, 7.3888, 7.3883, 7.3878, 7.3873, 7.387, 7.3877, 7.3873, 7.3881, 7.3879, 7.3887, 7.3883, 7.3881, 7.387, 7.386, 7.3871, 7.387, 7.3892, 7.3888, 7.3884, 7.3879, 7.3874, 7.3869, 7.3877, 7.3873, 7.3882, 7.3877, 7.3891, 7.3887, 7.3883, 7.3879, 7.3875, 7.3859, 7.3892, 7.3888, 7.3888, 7.3896, 7.3892, 7.3937, 7.3933, 7.3928, 7.3912, 7.3907, 7.3906, 7.3901, 7.3897, 7.3894, 7.3902, 7.3898, 7.3894, 7.3894, 7.391, 7.3906, 7.389, 7.3899, 7.3895, 7.389, 7.3886, 7.3893, 7.3926, 7.3934, 7.3929, 7.3949, 7.3958, 7.3955, 7.395, 7.3957, 7.3954, 7.3974, 7.397, 7.3978, 7.3973, 7.3968, 7.3976, 7.4052, 7.4059, 7.4054, 7.4049, 7.4044, 7.404, 7.4025, 7.402, 7.4016, 7.4012, 7.4008, 7.4004, 7.3999, 7.4006, 7.4014, 7.401, 7.4017, 7.4026, 7.4021, 7.4043, 7.4028, 7.4024, 7.4021, 7.4034, 7.4031, 7.4026, 7.4021, 7.4017, 7.4012, 7.4021, 7.4019, 7.4015, 7.4014, 7.4009, 7.4049, 7.4044, 7.4041, 7.4036, 7.4032, 7.4028, 7.4036, 7.4033, 7.4029, 7.4025, 7.4022, 7.4019, 7.4015, 7.4012, 7.4007, 7.4014, 7.4011, 7.4007, 7.4002, 7.401, 7.4008, 7.4004, 7.4012, 7.4008, 7.4005, 7.399, 7.3986, 7.3971, 7.3971, 7.3972, 7.398, 7.3977, 7.3974, 7.3971, 7.3979, 7.3987, 7.3983, 7.3979, 7.3974, 7.397, 7.3966, 7.3962, 7.3957, 7.3966, 7.3961, 7.3957, 7.3953, 7.3952, 7.3948, 7.3944, 7.3941, 7.3939, 7.3946, 7.3943, 7.3938, 7.3934, 7.3942, 7.3937, 7.3944, 7.3939, 7.3924, 7.3921, 7.3917, 7.3913, 7.3911, 7.3921, 7.3916, 7.3911, 7.3906, 7.3901, 7.3898, 7.3906, 7.3904, 7.39, 7.3895, 7.3892, 7.3887, 7.3895, 7.3903, 7.3911, 7.3907, 7.3904, 7.39, 7.3914, 7.391, 7.3907, 7.3914, 7.3911, 7.3909, 7.3905, 7.3912, 7.3909, 7.3916, 7.3911, 7.3907, 7.3903, 7.3899, 7.3894, 7.3893, 7.3889, 7.3896, 7.3904, 7.3925, 7.3922, 7.3918, 7.3913, 7.391, 7.3906, 7.3902, 7.3898, 7.3894, 7.3901, 7.3909, 7.3905, 7.3903, 7.3899, 7.3907, 7.3904, 7.3911, 7.3907, 7.3903, 7.3901, 7.3897, 7.3893, 7.3892, 7.3888, 7.3884, 7.388, 7.3913, 7.3919, 7.3939, 7.3937, 7.3933, 7.399, 7.3987, 7.3985, 7.3981, 7.3977, 7.3974, 7.3974, 7.3969, 7.3966, 7.3962, 7.3959, 7.3956, 7.3951, 7.3947, 7.3944, 7.394, 7.3935, 7.393, 7.3938, 7.3947, 7.3955, 7.395, 7.3968, 7.3966, 7.3973, 7.397, 7.3971, 7.3983, 7.398, 7.3978, 7.3985, 7.3997, 7.3994, 7.4012, 7.4008, 7.4008, 7.4005, 7.4026, 7.4023, 7.4018, 7.4026, 7.4022, 7.4019, 7.4015, 7.4023, 7.4019, 7.4004, 7.4012, 7.4007, 7.4003, 7.3999, 7.4007, 7.4003, 7.3998, 7.4007, 7.4004, 7.4, 7.3996, 7.3992, 7.3989, 7.3986, 7.3982, 7.3979, 7.3976, 7.3984, 7.3981, 7.3979, 7.3986, 7.3994, 7.3982, 7.3967, 7.3966, 7.3962, 7.3959, 7.3955, 7.3951, 7.3947, 7.3943, 7.3938, 7.3924, 7.3923, 7.392, 7.3916, 7.3912, 7.3908, 7.3904, 7.3902, 7.3898, 7.3887, 7.3888, 7.3884, 7.3891, 7.3887, 7.3883, 7.389, 7.3895, 7.389, 7.3886, 7.3894, 7.3892, 7.3891, 7.3889, 7.3903, 7.3899, 7.3894, 7.3889, 7.3885, 7.3881, 7.3879, 7.3886, 7.3882, 7.3879, 7.3875, 7.3883, 7.3879, 7.3886, 7.3886, 7.3893, 7.3891, 7.3891, 7.3887, 7.3887, 7.3883, 7.3879, 7.3875, 7.3871, 7.3857, 7.3864, 7.386, 7.3856, 7.3852, 7.3859, 7.3855, 7.385, 7.3846, 7.3842, 7.3839, 7.3904, 7.39, 7.3907, 7.3904, 7.393, 7.3931, 7.3927, 7.3923, 7.3965, 7.3961, 7.397, 7.3966, 7.3962, 7.3959, 7.3954, 7.395, 7.3946, 7.3953, 7.3951, 7.3947, 7.3943, 7.3939, 7.3935, 7.3942, 7.394, 7.3937, 7.3933, 7.3929, 7.3926, 7.3933, 7.394, 7.3936, 7.3943, 7.395, 7.3957, 7.3954, 7.3952, 7.3947, 7.3943, 7.395, 7.3958, 7.3954, 7.3951, 7.3967, 7.3998, 7.4006, 7.4013, 7.4009, 7.4016, 7.4013, 7.4011, 7.4007, 7.4014, 7.401, 7.4006, 7.4013, 7.4009, 7.4028, 7.4024, 7.402, 7.4027, 7.4023, 7.4019, 7.4016, 7.4013, 7.401, 7.4008, 7.4016, 7.4012, 7.4008, 7.4015, 7.4011, 7.4008, 7.4007, 7.4016, 7.4012, 7.4009, 7.4005, 7.4002, 7.3998, 7.3995, 7.3991, 7.3987, 7.3983, 7.3979, 7.3975, 7.3972, 7.3968, 7.3976, 7.3972, 7.3978, 7.3974, 7.3983, 7.3979, 7.3976, 7.3974, 7.3982, 7.4041, 7.4037, 7.4045, 7.4053, 7.4049, 7.4045, 7.4041, 7.4049, 7.4046, 7.4043, 7.4041, 7.4048, 7.4046, 7.4054, 7.405, 7.4046, 7.4043, 7.404, 7.4036, 7.4035, 7.4031, 7.4028, 7.4024, 7.4032, 7.4039, 7.4035, 7.4042, 7.4049, 7.4045, 7.4052, 7.4048, 7.4046, 7.4052, 7.4048, 7.4045, 7.4041, 7.4038, 7.4034, 7.403, 7.4027, 7.4023, 7.4031, 7.4038, 7.4034, 7.4031, 7.4028, 7.4014, 7.401, 7.4006, 7.4003, 7.3999, 7.3995, 7.3992, 7.3999, 7.3995, 7.3991, 7.3977, 7.3973, 7.398, 7.3977, 7.3984, 7.398, 7.3987, 7.3994, 7.4001, 7.3997, 7.3993, 7.399, 7.3986, 7.3984, 7.398, 7.3987, 7.3983, 7.3979, 7.3975, 7.3982, 7.3979, 7.3976, 7.3973, 7.3969, 7.3965, 7.3961, 7.3958, 7.3979, 7.3979, 7.3976, 7.3974, 7.398, 7.3979, 7.3975, 7.3971, 7.3957, 7.3964, 7.3971, 7.3988, 7.3986, 7.3973, 7.397, 7.3967, 7.3968, 7.3957, 7.3955, 7.3952, 7.3959, 7.3956, 7.3953, 7.395, 7.3946, 7.3943, 7.394, 7.3939, 7.3935, 7.3932, 7.3929, 7.3925, 7.3921, 7.3917, 7.3913, 7.391, 7.3907, 7.3914, 7.3911, 7.3908, 7.3894, 7.389, 7.3886, 7.3883, 7.3891, 7.3898, 7.3895, 7.3891, 7.3888, 7.3895, 7.3891, 7.3888, 7.3897, 7.3893, 7.389, 7.3898, 7.3908, 7.3904, 7.39, 7.3897, 7.3893, 7.3899, 7.3907, 7.3903, 7.391, 7.3907, 7.3894, 7.3935, 7.3954, 7.3951, 7.3957, 7.3953, 7.396, 7.3957, 7.3953, 7.3951, 7.3947, 7.3944, 7.3941, 7.3938, 7.3924, 7.3921, 7.3918, 7.3915, 7.3911, 7.3919, 7.3916, 7.3912, 7.392, 7.3918, 7.3915, 7.3912, 7.3908, 7.3905, 7.3902, 7.3909, 7.3916, 7.3916, 7.3924, 7.3921, 7.3917, 7.396, 7.3956, 7.3963, 7.397, 7.3977, 7.3973, 7.3969, 7.3976, 7.3972, 7.3968, 7.3975, 7.3971, 7.3967, 7.3973, 7.3969, 7.3966, 7.3973, 7.3969, 7.3965, 7.3972, 7.3979, 7.3976, 7.3982, 7.398, 7.3987, 7.3984, 7.3992, 7.3988, 7.3994, 7.4008, 7.4006, 7.4035, 7.4042, 7.4038, 7.4035, 7.4031, 7.4028, 7.4025, 7.4032, 7.4029, 7.4025, 7.4031, 7.4038, 7.4035, 7.4042, 7.405, 7.4048, 7.4054, 7.4051, 7.4047, 7.4043, 7.405, 7.4056, 7.4053, 7.4049, 7.4047, 7.4044, 7.404, 7.4037, 7.4034, 7.408, 7.4078, 7.4074, 7.4071, 7.4067, 7.4064, 7.4075, 7.4072, 7.409, 7.4087, 7.4084, 7.4123, 7.413, 7.4126, 7.4123, 7.413, 7.4127, 7.4124, 7.4131, 7.4127, 7.4134, 7.413, 7.4126, 7.4133, 7.4129, 7.4138, 7.4134, 7.4142, 7.4149, 7.4156, 7.4153, 7.416, 7.4157, 7.4153, 7.415, 7.4157, 7.4154, 7.415, 7.4147, 7.4144, 7.414, 7.4136, 7.4133, 7.4131, 7.4128, 7.4124, 7.412, 7.4129, 7.4125, 7.4121, 7.4108, 7.4137, 7.4133, 7.4129, 7.4139, 7.4136, 7.4142, 7.4139, 7.4148, 7.4145, 7.4141, 7.4148, 7.4144, 7.415, 7.4146, 7.4152, 7.4149, 7.4145, 7.4141, 7.4149, 7.4145, 7.4152, 7.417, 7.4166, 7.4185, 7.4191, 7.419, 7.4187, 7.4184, 7.4181, 7.4182, 7.4179, 7.4175, 7.4186, 7.4192, 7.4188, 7.4195, 7.4201, 7.42, 7.4198, 7.4194, 7.4195, 7.4192, 7.4188, 7.4185, 7.4181, 7.4187, 7.419, 7.4177, 7.4173, 7.4169, 7.4156, 7.4153, 7.4149, 7.4197, 7.4195, 7.4183, 7.4179, 7.4187, 7.4183, 7.418, 7.4176, 7.4172, 7.418, 7.4177, 7.4184, 7.4201, 7.4198, 7.4194, 7.419, 7.4187, 7.4185, 7.4182, 7.4178, 7.4185, 7.4182, 7.4179, 7.4177, 7.4174, 7.4171, 7.4168, 7.4165, 7.4162, 7.4161, 7.4166, 7.4165, 7.4161, 7.4158, 7.4155, 7.4161, 7.4167, 7.4165, 7.4164, 7.4181, 7.4178, 7.4176, 7.4184, 7.418, 7.4177, 7.4175, 7.4172, 7.4168, 7.4164, 7.4161, 7.4162, 7.4158, 7.4155, 7.4151, 7.4148, 7.4144, 7.414, 7.4127, 7.413, 7.4127, 7.4114, 7.4121, 7.4119, 7.4115, 7.4112, 7.4108, 7.4114, 7.4111, 7.4101, 7.4097, 7.4098, 7.4094, 7.409, 7.4086, 7.4082, 7.4079, 7.4085, 7.4082, 7.4079, 7.4076, 7.4082, 7.4079, 7.4076, 7.4074, 7.408, 7.4077, 7.4074, 7.4081, 7.4077, 7.4074, 7.407, 7.4068, 7.4064, 7.4061, 7.4057, 7.4053, 7.4051, 7.4047, 7.4043, 7.403, 7.4026, 7.4024, 7.4022, 7.4028, 7.4025, 7.4028, 7.4034, 7.4045, 7.4041, 7.4041, 7.4028, 7.4024, 7.4021, 7.4019, 7.4015, 7.4003, 7.3999, 7.3996, 7.3993, 7.3994, 7.399, 7.3987, 7.3983, 7.398, 7.3987, 7.3983, 7.398, 7.3986, 7.3982, 7.3978, 7.3984, 7.398, 7.3986, 7.3985, 7.3983, 7.3981, 7.3987, 7.3993, 7.4003, 7.4038, 7.4034, 7.4033, 7.4034, 7.4032, 7.4028, 7.4024, 7.402, 7.4016, 7.4013, 7.404, 7.4036, 7.4032, 7.4038, 7.4034, 7.4032, 7.4038, 7.4034, 7.403, 7.4026, 7.4043, 7.404, 7.4037, 7.4044, 7.404, 7.4095, 7.4091, 7.4088, 7.4086, 7.4083, 7.408, 7.4079, 7.4075, 7.4071, 7.4067, 7.4064, 7.406, 7.406, 7.4066, 7.4074, 7.4071, 7.4068, 7.4066, 7.4073, 7.4079, 7.4077, 7.4073, 7.407, 7.4066, 7.4063, 7.4062, 7.4059, 7.4056, 7.4082, 7.4078, 7.4065, 7.4061, 7.4058, 7.4064, 7.4061, 7.406, 7.4057, 7.4054, 7.405, 7.4046, 7.4043, 7.4039, 7.4037, 7.4035, 7.4032, 7.403, 7.4027, 7.4034, 7.4032, 7.404, 7.4038, 7.4035, 7.4042, 7.4039, 7.4035, 7.4041, 7.4039, 7.4036, 7.4034, 7.4032, 7.4039, 7.4036, 7.4033, 7.403, 7.4027, 7.4023, 7.4019, 7.4017, 7.4014, 7.4002, 7.3998, 7.3994, 7.399, 7.3986, 7.3995, 7.4003, 7.3999, 7.3996, 7.3994, 7.399, 7.3986, 7.3983, 7.399, 7.3986, 7.3992, 7.3988, 7.3975, 7.3981, 7.3978, 7.3984, 7.3991, 7.3998, 7.4004, 7.4, 7.3996, 7.4002, 7.3998, 7.3994, 7.3991, 7.3989, 7.3986, 7.3974, 7.397, 7.3969, 7.3975, 7.3981, 7.3977, 7.3974, 7.397, 7.3979, 7.3977, 7.3974, 7.3971, 7.3971, 7.3968, 7.3955, 7.3953, 7.3941, 7.3939, 7.3935, 7.3932, 7.3928, 7.3926, 7.3935, 7.3933, 7.3931, 7.3928, 7.3925, 7.3924, 7.3941, 7.3938, 7.3946, 7.3943, 7.394, 7.3937, 7.3933, 7.393, 7.3926, 7.3923, 7.392, 7.3916, 7.3913, 7.3909, 7.3906, 7.3912, 7.3909, 7.3905, 7.3912, 7.3918, 7.3915, 7.3903, 7.3901, 7.3898, 7.3895, 7.3891, 7.3897, 7.3894, 7.3892, 7.3889, 7.3888, 7.3934, 7.3931, 7.3927, 7.3923, 7.392, 7.3917, 7.3914, 7.391, 7.3907, 7.3904, 7.3902, 7.39, 7.3897, 7.3903, 7.3909, 7.3916, 7.3913, 7.392, 7.3919, 7.3926, 7.3933, 7.3949, 7.3956, 7.3954, 7.3951, 7.3948, 7.3946, 7.3981, 7.3977, 7.3983, 7.398, 7.3986, 7.3982, 7.3978, 7.3985, 7.3973, 7.3969, 7.3977, 7.3983, 7.398, 7.3976, 7.3983, 7.3979, 7.3976, 7.3972, 7.3978, 7.3976, 7.3973, 7.3979, 7.3977, 7.3983, 7.399, 7.3988, 7.3995, 7.3991, 7.3991, 7.3987, 7.3984, 7.3982, 7.3981, 7.3979, 7.3985, 7.3987, 7.3983, 7.3983, 7.3981, 7.3979, 7.3977, 7.3965, 7.3961, 7.3973, 7.397, 7.3967, 7.3954, 7.395, 7.3957, 7.3953, 7.3949, 7.3946, 7.3942, 7.3948, 7.3965, 7.3971, 7.3977, 7.3974, 7.3974, 7.397, 7.3968, 7.3966, 7.3962, 7.3968, 7.3978, 7.3975, 7.3976, 7.3964, 7.3961, 7.3957, 7.3945, 7.3942, 7.3938, 7.3952, 7.3963, 7.3959, 7.3955, 7.3952, 7.3949, 7.3947, 7.3954, 7.396, 7.3958, 7.3946, 7.3943, 7.3951, 7.3948, 7.3955, 7.3947, 7.3944, 7.394, 7.3937, 7.3934, 7.3932, 7.3929, 7.3926, 7.3923, 7.3919, 7.3916, 7.3914, 7.3911, 7.3908, 7.3904, 7.3901, 7.3897, 7.3894, 7.3891, 7.3893, 7.39, 7.3906, 7.3913, 7.3901, 7.3905, 7.3904, 7.3911, 7.3908, 7.3904, 7.3922, 7.3919, 7.3918, 7.3906, 7.3894, 7.3882, 7.3878, 7.3885, 7.3882, 7.387, 7.3866, 7.3862, 7.3874, 7.3871, 7.3867, 7.3865, 7.3861, 7.3858, 7.3855, 7.3852, 7.3848, 7.3845, 7.3841, 7.3837, 7.3843, 7.3849, 7.3846, 7.3843, 7.3848, 7.3854, 7.3851, 7.3848, 7.3863, 7.386, 7.3867, 7.3873, 7.3881, 7.3888, 7.3885, 7.3903, 7.3902, 7.3898, 7.3904, 7.391, 7.3908, 7.3914, 7.3912, 7.3908, 7.3905, 7.3902, 7.39, 7.3907, 7.3904, 7.3912, 7.3909, 7.3908, 7.3905, 7.3901, 7.3898, 7.3905, 7.3901, 7.39, 7.3898, 7.3896, 7.3901, 7.3898, 7.3896, 7.3884, 7.3881, 7.3884, 7.388, 7.3876, 7.3872, 7.3869, 7.3866, 7.3863, 7.3859, 7.3856, 7.3844, 7.3841, 7.3838, 7.3846, 7.3843, 7.3842, 7.3839, 7.3844, 7.3859, 7.3855, 7.3851, 7.3847, 7.3844, 7.3841, 7.3837, 7.3834, 7.3831, 7.3828, 7.3824, 7.3866, 7.3862, 7.3858, 7.3855, 7.3861, 7.3859, 7.3847, 7.3844, 7.3841, 7.3838, 7.3835, 7.3832, 7.3833, 7.383, 7.383, 7.3826, 7.3822, 7.3819, 7.3816, 7.3813, 7.3809, 7.3805, 7.3802, 7.38, 7.3803, 7.38, 7.3788, 7.3785, 7.3782, 7.3779, 7.3785, 7.3783, 7.378, 7.3776, 7.3774, 7.3771, 7.3768, 7.3767, 7.3763, 7.3764, 7.3753, 7.3759, 7.3756, 7.3766, 7.3763, 7.376, 7.3759, 7.3768, 7.3765, 7.3762, 7.3768, 7.3764, 7.3761, 7.3758, 7.3754, 7.375, 7.3746, 7.3752, 7.3749, 7.3747, 7.3743, 7.3748, 7.3755, 7.3761, 7.3758, 7.3756, 7.3753, 7.3759, 7.3757, 7.3754, 7.375, 7.3747, 7.3744, 7.375, 7.3747, 7.3744, 7.3741, 7.3738, 7.3728, 7.3735, 7.3733, 7.3732, 7.3739, 7.3744, 7.3751, 7.3748, 7.3745, 7.3743, 7.3742, 7.3741, 7.3737, 7.3734, 7.3731, 7.3729, 7.3727, 7.3733, 7.373, 7.3733, 7.373, 7.3726, 7.3723, 7.3721, 7.3719, 7.3715, 7.3711, 7.3709, 7.3715, 7.3733, 7.373, 7.3735, 7.3732, 7.373, 7.3729, 7.3735, 7.3733, 7.373, 7.3735, 7.3732, 7.3739, 7.3736, 7.3744, 7.3745, 7.3743, 7.374, 7.3738, 7.3727, 7.3733, 7.373, 7.3736, 7.3737, 7.3734, 7.374, 7.3746, 7.3745, 7.3744, 7.374, 7.3738, 7.3726, 7.3723, 7.3719, 7.3716, 7.3713, 7.3718, 7.3714, 7.3711, 7.3708, 7.3726, 7.3723, 7.372, 7.3709, 7.3705, 7.3701, 7.3698, 7.3704, 7.371, 7.3707, 7.3715, 7.372, 7.3717, 7.3715, 7.3713, 7.371, 7.3707, 7.3696, 7.3701, 7.3708, 7.3705, 7.3703, 7.37, 7.3698, 7.3705, 7.3712, 7.3708, 7.3715, 7.3712, 7.3709, 7.3706, 7.3712, 7.3709, 7.3708, 7.3714, 7.3711, 7.3708, 7.3706, 7.3703, 7.3709, 7.3709, 7.3707, 7.3704, 7.3702, 7.3708, 7.3706, 7.3703, 7.3709, 7.3716, 7.3713, 7.371, 7.3707, 7.3712, 7.3709, 7.3706, 7.3704, 7.3703, 7.37, 7.3699, 7.3695, 7.3701, 7.3728, 7.3759, 7.3756, 7.3753, 7.375, 7.3793, 7.379, 7.3787, 7.3784, 7.3786, 7.3783, 7.3781, 7.3779, 7.3776, 7.3773, 7.377, 7.3767, 7.3764, 7.3761, 7.3767, 7.3763, 7.376, 7.3757, 7.3763, 7.376, 7.3757, 7.3762, 7.3766, 7.3763, 7.3766, 7.3764, 7.3763, 7.376, 7.3758, 7.3756, 7.3753, 7.377, 7.3767, 7.3767, 7.3764, 7.3768, 7.3803, 7.3801, 7.3798, 7.3804, 7.3801, 7.3798, 7.38, 7.3798, 7.3795, 7.3802, 7.3799, 7.3796, 7.3801, 7.3807, 7.3804, 7.3801, 7.3807, 7.3804, 7.3801, 7.3798, 7.3816, 7.3814, 7.3813, 7.382, 7.3817, 7.3814, 7.3812, 7.3804, 7.3803, 7.3799, 7.3796, 7.3802, 7.3808, 7.3805, 7.3802, 7.3799, 7.3796, 7.3793, 7.379, 7.3788, 7.3785, 7.3782, 7.3779, 7.3776, 7.3773, 7.377, 7.3768, 7.3765, 7.379, 7.3797, 7.3795, 7.3792, 7.3789, 7.3787, 7.3792, 7.3798, 7.3795, 7.3783, 7.3781, 7.378, 7.3798, 7.3795, 7.3792, 7.3789, 7.3786, 7.3783, 7.3782, 7.3783, 7.378, 7.379, 7.3787, 7.3784, 7.3774, 7.378, 7.3777, 7.3783, 7.3781, 7.3781, 7.3787, 7.3793, 7.379, 7.3786, 7.3782, 7.3787, 7.3785, 7.3782, 7.3779, 7.3784, 7.3781, 7.3778, 7.3775, 7.3772, 7.3769, 7.3775, 7.3781, 7.3778, 7.3775, 7.3773, 7.3762, 7.3759, 7.3755, 7.3752, 7.3758, 7.3756, 7.3753, 7.3752, 7.3749, 7.3755, 7.3753, 7.3759, 7.3765, 7.3762, 7.3759, 7.3755, 7.3761, 7.3767, 7.3764, 7.3771, 7.3778, 7.3776, 7.3783, 7.378, 7.3787, 7.3796, 7.3787, 7.3784, 7.379, 7.3781, 7.3771, 7.3761, 7.3766, 7.3763, 7.376, 7.3776, 7.3775, 7.3773, 7.377, 7.3776, 7.3778, 7.3776, 7.3783, 7.3788, 7.3798, 7.3795, 7.3792, 7.3789, 7.3798, 7.3795, 7.3814, 7.3811, 7.3808, 7.3815, 7.3812, 7.3809, 7.3807, 7.3807, 7.3805, 7.3802, 7.3809, 7.3807, 7.3805, 7.3804, 7.381, 7.3807, 7.3796, 7.3803, 7.3792, 7.3789, 7.3786, 7.3784, 7.3781, 7.3786, 7.3783, 7.379, 7.3796, 7.3794, 7.3791, 7.3797, 7.3794, 7.3791, 7.3789, 7.3786, 7.3792, 7.379, 7.3788, 7.3786, 7.3783, 7.378, 7.3777, 7.3775, 7.3782, 7.3781, 7.3778, 7.3775, 7.3782, 7.3779, 7.3777, 7.3775, 7.3772, 7.3769, 7.3766, 7.3763, 7.3769, 7.3774, 7.3771, 7.3769, 7.3766, 7.3764, 7.3761, 7.3758, 7.3755, 7.3752, 7.3749, 7.3747, 7.3753, 7.375, 7.3747, 7.3753, 7.3752, 7.3758, 7.3756, 7.3761, 7.3758, 7.3756, 7.3753, 7.3759, 7.3756, 7.3764, 7.3762, 7.3759, 7.3758, 7.3763, 7.3769, 7.3768, 7.377, 7.3777, 7.3775, 7.3772, 7.3768, 7.3765, 7.3763, 7.3753, 7.375, 7.3747, 7.3744, 7.3751, 7.3749, 7.3746, 7.3751, 7.3748, 7.3746, 7.3744, 7.375, 7.3747, 7.3736, 7.3742, 7.3739, 7.3745, 7.3742, 7.3739, 7.3736, 7.3733, 7.3738, 7.3736, 7.3733, 7.3731, 7.3728, 7.3726, 7.3732, 7.3738, 7.3735, 7.3749, 7.3746, 7.3751, 7.3748, 7.3753, 7.3758, 7.3755, 7.3752, 7.3749, 7.3755, 7.376, 7.3758, 7.3755, 7.3753, 7.375, 7.3747, 7.3744, 7.3749, 7.3746, 7.3743, 7.374, 7.3737, 7.3734, 7.3739, 7.3738, 7.3735, 7.3732, 7.3729, 7.3726, 7.3724, 7.3713, 7.3702, 7.3699, 7.3696, 7.3693, 7.369, 7.3701, 7.3706, 7.3703, 7.3701, 7.3698, 7.3708, 7.3705, 7.3703, 7.3704, 7.3702, 7.3708, 7.3705, 7.3702, 7.3699, 7.3696, 7.3693, 7.369, 7.3696, 7.3694, 7.3691, 7.3688, 7.3693, 7.3691, 7.3688, 7.3685, 7.3683, 7.368, 7.3678, 7.3675, 7.3673, 7.3671, 7.3661, 7.3667, 7.3672, 7.3685, 7.3683, 7.368, 7.3677, 7.3674, 7.3672, 7.3678, 7.3675, 7.3673, 7.3678, 7.3675, 7.3673, 7.367, 7.3668, 7.3659, 7.3661, 7.3658, 7.3656, 7.3654, 7.366, 7.3659, 7.3657, 7.3675, 7.3673, 7.3674, 7.3674, 7.3672, 7.367, 7.3667, 7.3664, 7.3662, 7.3659, 7.3656, 7.3653, 7.3658, 7.3655, 7.3652, 7.3649, 7.365, 7.3656, 7.3654, 7.3659, 7.3656, 7.3654, 7.3651, 7.3666, 7.3679, 7.3676, 7.3681, 7.3687, 7.3677, 7.3683, 7.368, 7.3686, 7.3683, 7.368, 7.3698, 7.3695, 7.3693, 7.3691, 7.3689, 7.3695, 7.3692, 7.3698, 7.3695, 7.3692, 7.3698, 7.3696, 7.3702, 7.3699, 7.3704, 7.3709, 7.3715, 7.3713, 7.371, 7.3715, 7.372, 7.3717, 7.3714, 7.3719, 7.3717, 7.3714, 7.3712, 7.3718, 7.3724, 7.3722, 7.3727, 7.3725, 7.373, 7.3727, 7.3731, 7.3742, 7.374, 7.3746, 7.3743, 7.3746, 7.3752, 7.3749, 7.3746, 7.3743, 7.3749, 7.3746, 7.3743, 7.374, 7.3738, 7.3735, 7.3732, 7.3729, 7.3726, 7.3732, 7.3729, 7.3735, 7.3741, 7.3738, 7.3735, 7.3748, 7.3745, 7.3742, 7.3756, 7.3769, 7.3774, 7.3772, 7.3777, 7.3783, 7.3789, 7.3786, 7.3784, 7.379, 7.3811, 7.3808, 7.3806, 7.3803, 7.3807, 7.3805, 7.3811, 7.3808, 7.3822, 7.3819, 7.3816, 7.3822, 7.3819, 7.3816, 7.3813, 7.3819, 7.3817, 7.3823, 7.382, 7.3817, 7.3831, 7.3828, 7.3825, 7.3824, 7.3821, 7.3821, 7.3812, 7.3826, 7.3835, 7.3832, 7.3837, 7.3834, 7.3839, 7.3839, 7.3837, 7.3835, 7.3838, 7.3838, 7.3835, 7.384, 7.3837, 7.3851, 7.3848, 7.3854, 7.3859, 7.3857, 7.3846, 7.3843, 7.3841, 7.3855, 7.386, 7.3857, 7.3855, 7.3853, 7.3851, 7.3848, 7.3857, 7.3855, 7.3853, 7.385, 7.3864, 7.387, 7.388, 7.3885, 7.389, 7.3895, 7.3892, 7.3897, 7.3902, 7.3899, 7.3913, 7.3918, 7.3915, 7.3912, 7.3911, 7.3925, 7.3922, 7.3919, 7.3916, 7.3923, 7.3921, 7.3918, 7.3941, 7.3947, 7.3944, 7.3941, 7.3946, 7.3943, 7.3948, 7.3937, 7.3934, 7.3931, 7.3936, 7.3941, 7.393, 7.3919, 7.3916, 7.3913, 7.3911, 7.3908, 7.3906, 7.3911, 7.3916, 7.3914, 7.3919, 7.3924, 7.3921, 7.3919, 7.3917, 7.3922, 7.3919, 7.3916, 7.3914, 7.3911, 7.3916, 7.3913, 7.3918, 7.3939, 7.3944, 7.3949, 7.3955, 7.3953, 7.3962, 7.3959, 7.3956, 7.3953, 7.395, 7.3947, 7.3944, 7.3949, 7.3946, 7.3943, 7.3933, 7.3938, 7.3935, 7.3933, 7.3938, 7.3935, 7.3932, 7.3922, 7.3919, 7.3924, 7.3931, 7.3928, 7.3933, 7.393, 7.3935, 7.3932, 7.3929, 7.3927, 7.3932, 7.3937, 7.3959, 7.3956, 7.3961, 7.3958, 7.3955, 7.396, 7.3958, 7.3964, 7.3978, 7.3983, 7.398, 7.3977, 7.4001, 7.4001, 7.3999, 7.3996, 7.3993, 7.3998, 7.4003, 7.4, 7.3997, 7.4002, 7.4016, 7.4013, 7.4026, 7.4023, 7.4013, 7.4025, 7.4022, 7.402, 7.4035, 7.4033, 7.4031, 7.4036, 7.4042, 7.4047, 7.406, 7.4057, 7.4064, 7.4063, 7.4062, 7.4059, 7.4064, 7.4088, 7.4094, 7.4084, 7.4074, 7.4079, 7.4077, 7.4074, 7.4072, 7.407, 7.4067, 7.4065, 7.4054, 7.4057, 7.4062, 7.4067, 7.4068, 7.4058, 7.4055, 7.4068, 7.4065, 7.4062, 7.4063, 7.406, 7.4065, 7.4062, 7.4075, 7.408, 7.4077, 7.4082, 7.4072, 7.408, 7.4077, 7.4082, 7.408, 7.4077, 7.4082, 7.408, 7.4089, 7.4122, 7.4122, 7.412, 7.4126, 7.4123, 7.4126, 7.4124, 7.4122, 7.4127, 7.4125, 7.4122, 7.4159, 7.4156, 7.4154, 7.4151, 7.4164, 7.4167, 7.4172, 7.4169, 7.4174, 7.418, 7.4182, 7.4182, 7.4179, 7.4177, 7.4182, 7.4195, 7.4193, 7.419, 7.4187, 7.4192, 7.4204, 7.4209, 7.4207, 7.4204, 7.4209, 7.4206, 7.4204, 7.4209, 7.4206, 7.4203, 7.4224, 7.4229, 7.4233, 7.4238, 7.4251, 7.4248, 7.4253, 7.425, 7.4247, 7.4244, 7.4244, 7.4241, 7.4255, 7.426, 7.4257, 7.4254, 7.4252, 7.4257, 7.4255, 7.4252, 7.4249, 7.4246, 7.4245, 7.4258, 7.4255, 7.4253, 7.4258, 7.4255, 7.4253, 7.4251, 7.4249, 7.4247, 7.4237, 7.4258, 7.4271, 7.4276, 7.4273, 7.427, 7.4267, 7.4272, 7.4269, 7.4267, 7.4265, 7.4262, 7.4267, 7.4281, 7.4278, 7.4282, 7.4279, 7.4276, 7.4273, 7.427, 7.4267, 7.4264, 7.4261, 7.4258, 7.4255, 7.426, 7.4257, 7.4255, 7.426, 7.4265, 7.4262, 7.4266, 7.4288, 7.4298, 7.4295, 7.43, 7.4298, 7.4296, 7.4295, 7.4292, 7.4282, 7.4279, 7.4284, 7.4281, 7.4271, 7.4276, 7.4281, 7.4278, 7.4275, 7.4272, 7.427, 7.4267, 7.4264, 7.4261, 7.4282, 7.4279, 7.4276, 7.4282, 7.4281, 7.428, 7.4277, 7.4275, 7.4272, 7.427, 7.4267, 7.4265, 7.4263, 7.4276, 7.4273, 7.4272, 7.427, 7.4277, 7.4275, 7.4273, 7.4278, 7.4283, 7.428, 7.4285, 7.429, 7.4287, 7.4292, 7.4297, 7.4295, 7.4292, 7.4289, 7.4286, 7.43, 7.4301, 7.4314, 7.4312, 7.431, 7.4302, 7.4309, 7.4306, 7.4303, 7.4304, 7.4302, 7.43, 7.4307, 7.4305, 7.4317, 7.4314, 7.4312, 7.4316, 7.4321, 7.4318, 7.4315, 7.4313, 7.4311, 7.4309, 7.4307, 7.4304, 7.4301, 7.43, 7.43, 7.4297, 7.4295, 7.4292, 7.4289, 7.4287, 7.4284, 7.4282, 7.4288, 7.4286], '192.168.122.112': [5.4202, 6.2515, 6.1023, 5.8725, 5.8261, 10.7058, 10.0803, 10.1693, 9.6466, 9.2161, 8.8563, 9.5172, 9.207, 8.9316, 8.7104, 8.5289, 8.3957, 8.2358, 8.0847, 8.2776, 8.1721, 8.0545, 7.9396, 7.6274, 7.5317, 7.5248, 7.448, 7.3754, 7.31, 7.4324, 7.4697, 7.4219, 7.3881, 7.3282, 7.4518, 7.5423, 7.4863, 7.7203, 7.675, 7.6369, 7.5901, 7.5441, 7.3829, 7.2276, 7.316, 7.2793, 7.2512, 7.2142, 7.4183, 7.376, 7.3878, 7.4389, 7.5141, 7.4855, 7.5549, 7.5252, 7.6843, 7.647, 7.6155, 7.5832, 7.5569, 7.6124, 7.5822, 7.5473, 7.675, 7.7249, 7.6942, 7.6614, 7.7218, 7.8317, 7.7964, 7.764, 7.7766, 7.7445, 7.7317, 7.8189, 7.7427, 7.7413, 7.7812, 7.7615, 7.731, 7.701, 7.7385, 7.7181, 7.7545, 7.7446, 7.7781, 7.7514, 7.8014, 7.7753, 7.7598, 7.7352, 7.8038, 7.7836, 7.8159, 7.8456, 7.8577, 7.8891, 7.8654, 7.8938, 7.8692, 7.8437, 7.8204, 7.7966, 7.7757, 7.7527, 7.7365, 7.7145, 7.7064, 7.6888, 7.6693, 7.6559, 7.6376, 7.6747, 7.6634, 7.6432, 7.6253, 7.6094, 7.7492, 7.7455, 7.8577, 7.8419, 7.829, 7.8083, 7.7937, 7.7762, 7.7624, 7.7458, 7.7333, 7.7883, 7.7711, 7.7904, 7.816, 7.8016, 7.7834, 7.8032, 7.789, 7.7719, 7.7936, 7.7814, 7.771, 7.7555, 7.7639, 7.7541, 7.7397, 7.7276, 7.7113, 7.6948, 7.679, 7.6655, 7.6866, 7.6702, 7.691, 7.6777, 7.6622, 7.6831, 7.6797, 7.6705, 7.6575, 7.7125, 7.7984, 7.7827, 7.7719, 7.7592, 7.7777, 7.8141, 7.8027, 7.7899, 7.7748, 7.7834, 7.8015, 7.7884, 7.7737, 7.7599, 7.7203, 7.7092, 7.7267, 7.7159, 7.7094, 7.6689, 7.6571, 7.6451, 7.6322, 7.6218, 7.6091, 7.5989, 7.5887, 7.5768, 7.565, 7.5857, 7.6308, 7.6216, 7.6903, 7.7834, 7.7738, 7.7644, 7.7843, 7.7979, 7.789, 7.7775, 7.7659, 7.7932, 7.8081, 7.8106, 7.799, 7.7877, 7.7765, 7.7422, 7.7325, 7.7235, 7.737, 7.944, 7.9858, 7.973, 8.0313, 8.021, 7.9916, 8.0552, 8.0441, 8.0354, 8.0249, 8.013, 8.0256, 8.0377, 8.0252, 8.0158, 8.0079, 8.0034, 7.9925, 7.9822, 7.9723, 7.9626, 7.9521, 7.9411, 7.9301, 7.9445, 7.9551, 7.9515, 7.945, 7.9361, 7.9252, 7.9401, 7.9317, 7.9449, 7.9374, 7.9315, 7.9222, 7.9118, 7.9024, 7.8933, 7.9046, 7.8965, 7.8898, 7.9011, 7.9133, 7.9062, 7.9222, 7.9364, 7.9289, 7.9397, 7.9316, 7.9237, 7.9173, 7.9122, 7.9046, 7.8996, 7.8913, 7.8837, 7.8752, 7.8688, 7.8632, 7.8558, 7.8474, 7.8388, 7.8323, 7.8244, 7.8406, 7.8528, 7.8463, 7.8442, 7.835, 7.8459, 7.8413, 7.8337, 7.8457, 7.8581, 7.8705, 7.8635, 7.8559, 7.8667, 7.8591, 7.8546, 7.8471, 7.8397, 7.8511, 7.8426, 7.8529, 7.8493, 7.8436, 7.8386, 7.8468, 7.8382, 7.831, 7.8416, 7.8341, 7.827, 7.8359, 7.8457, 7.8374, 7.8469, 7.8388, 7.8308, 7.8237, 7.8184, 7.8107, 7.803, 7.7955, 7.7906, 7.8001, 7.7928, 7.785, 7.7778, 7.7873, 7.7797, 7.7738, 7.7524, 7.7452, 7.7387, 7.7329, 7.7258, 7.7184, 7.7257, 7.752, 7.7464, 7.7731, 7.7851, 7.7796, 7.7644, 7.7471, 7.7412, 7.7344, 7.7278, 7.7222, 7.7167, 7.7102, 7.7039, 7.7357, 7.7303, 7.7476, 7.7419, 7.7448, 7.7403, 7.7496, 7.7431, 7.7382, 7.7316, 7.7282, 7.7216, 7.7182, 7.7115, 7.7453, 7.7391, 7.7327, 7.7418, 7.7354, 7.7295, 7.7229, 7.7315, 7.7268, 7.7352, 7.7311, 7.7411, 7.7344, 7.7282, 7.7219, 7.717, 7.716, 7.7109, 7.7049, 7.7199, 7.7161, 7.7098, 7.7198, 7.7422, 7.7374, 7.7192, 7.7142, 7.708, 7.7221, 7.7171, 7.7113, 7.713, 7.7205, 7.7144, 7.7085, 7.7152, 7.7232, 7.7174, 7.7114, 7.7062, 7.7005, 7.6963, 7.6902, 7.6723, 7.6664, 7.6606, 7.6558, 7.6635, 7.6706, 7.6653, 7.6605, 7.655, 7.6507, 7.6474, 7.6418, 7.6485, 7.6439, 7.6396, 7.6369, 7.6311, 7.6257, 7.6201, 7.6149, 7.6106, 7.6075, 7.6022, 7.5978, 7.5928, 7.5888, 7.5832, 7.5808, 7.5772, 7.5722, 7.5799, 7.5746, 7.5695, 7.566, 7.561, 7.5792, 7.5787, 7.5741, 7.5688, 7.5637, 7.5713, 7.5676, 7.5628, 7.5697, 7.5768, 7.5951, 7.5904, 7.5756, 7.5704, 7.5664, 7.5793, 7.5865, 7.5836, 7.594, 7.5901, 7.5862, 7.5824, 7.5789, 7.5853, 7.5926, 7.5882, 7.5834, 7.5796, 7.5751, 7.5816, 7.5817, 7.5886, 7.5852, 7.5816, 7.5886, 7.5848, 7.5917, 7.5872, 7.5823, 7.5778, 7.5847, 7.5918, 7.5874, 7.5839, 7.5906, 7.586, 7.6047, 7.6, 7.5953, 7.5916, 7.598, 7.6156, 7.6107, 7.6071, 7.6132, 7.6192, 7.6255, 7.6752, 7.6828, 7.6788, 7.6856, 7.6883, 7.6838, 7.6798, 7.6752, 7.6608, 7.6673, 7.6759, 7.6719, 7.6694, 7.675, 7.6711, 7.6668, 7.6622, 7.651, 7.6568, 7.6525, 7.6487, 7.6466, 7.6434, 7.6391, 7.6453, 7.6506, 7.6472, 7.6531, 7.6503, 7.6476, 7.6452, 7.6319, 7.6189, 7.6159, 7.6124, 7.6084, 7.6139, 7.6098, 7.6055, 7.6023, 7.5988, 7.5952, 7.5923, 7.5948, 7.5904, 7.5861, 7.5827, 7.5801, 7.5979, 7.5953, 7.5928, 7.6029, 7.592, 7.5901, 7.5867, 7.6036, 7.6102, 7.5974, 7.5933, 7.6, 7.5964, 7.5958, 7.5942, 7.5903, 7.6062, 7.6319, 7.6369, 7.6333, 7.6394, 7.6351, 7.631, 7.6277, 7.6329, 7.6288, 7.6251, 7.6227, 7.6285, 7.6245, 7.6295, 7.6254, 7.6215, 7.6269, 7.6325, 7.6284, 7.6334, 7.6299, 7.6354, 7.6324, 7.6308, 7.6364, 7.6418, 7.638, 7.634, 7.6395, 7.6635, 7.6594, 7.6558, 7.6519, 7.6402, 7.6464, 7.6433, 7.6394, 7.6358, 7.6497, 7.6467, 7.6722, 7.6685, 7.6666, 7.6725, 7.6685, 7.6654, 7.6894, 7.6857, 7.6831, 7.6794, 7.6763, 7.6725, 7.6685, 7.6653, 7.6615, 7.6651, 7.6698, 7.666, 7.6622, 7.6588, 7.6561, 7.6523, 7.6485, 7.6453, 7.6414, 7.6461, 7.6424, 7.6477, 7.644, 7.6403, 7.6291, 7.6255, 7.6302, 7.6273, 7.6237, 7.6204, 7.6211, 7.6181, 7.6234, 7.6395, 7.6372, 7.6446, 7.6416, 7.6381, 7.6347, 7.631, 7.6357, 7.6322, 7.6292, 7.6342, 7.631, 7.6279, 7.6251, 7.6217, 7.6196, 7.6167, 7.6215, 7.6184, 7.6232, 7.6287, 7.6254, 7.6226, 7.6285, 7.6262, 7.6247, 7.6217, 7.6183, 7.6158, 7.6126, 7.6094, 7.607, 7.6034, 7.618, 7.6239, 7.6213, 7.6189, 7.6163, 7.6134, 7.61, 7.6069, 7.6039, 7.6005, 7.5973, 7.5944, 7.5918, 7.5964, 7.5933, 7.5938, 7.591, 7.5877, 7.5937, 7.5906, 7.5877, 7.5848, 7.5818, 7.5791, 7.5768, 7.5742, 7.5717, 7.5686, 7.5657, 7.5639, 7.5691, 7.5663, 7.563, 7.568, 7.5722, 7.5704, 7.575, 7.5651, 7.5619, 7.5592, 7.556, 7.5537, 7.5506, 7.5548, 7.5516, 7.5484, 7.5455, 7.5431, 7.5418, 7.5407, 7.5382, 7.5422, 7.5413, 7.5455, 7.5423, 7.5395, 7.5299, 7.5272, 7.5389, 7.5657, 7.5629, 7.5603, 7.5571, 7.554, 7.5511, 7.5592, 7.5562, 7.5536, 7.5508, 7.5484, 7.5459, 7.5512, 7.5486, 7.5507, 7.5484, 7.5459, 7.5441, 7.5425, 7.547, 7.5442, 7.5425, 7.5476, 7.546, 7.5432, 7.5428, 7.5398, 7.5377, 7.5349, 7.5391, 7.5435, 7.5481, 7.5525, 7.5498, 7.5469, 7.5464, 7.5443, 7.5488, 7.5468, 7.5533, 7.5578, 7.5551, 7.5595, 7.5571, 7.555, 7.5639, 7.5684, 7.5593, 7.5572, 7.5549, 7.5463, 7.551, 7.5486, 7.5531, 7.5515, 7.5489, 7.5536, 7.5585, 7.5577, 7.555, 7.5526, 7.5568, 7.5608, 7.5581, 7.5556, 7.5529, 7.5503, 7.5475, 7.5514, 7.5487, 7.5527, 7.5564, 7.5607, 7.558, 7.5553, 7.5527, 7.5507, 7.5482, 7.5527, 7.5508, 7.5488, 7.5463, 7.5437, 7.5473, 7.5457, 7.5436, 7.5409, 7.5393, 7.5373, 7.5346, 7.5325, 7.5297, 7.5325, 7.5305, 7.5287, 7.5262, 7.5237, 7.5213, 7.5187, 7.5237, 7.5217, 7.5195, 7.5177, 7.5214, 7.5193, 7.5199, 7.5174, 7.5168, 7.5144, 7.5118, 7.5094, 7.5126, 7.5115, 7.5154, 7.5131, 7.5175, 7.5149, 7.5184, 7.517, 7.5206, 7.5182, 7.5156, 7.5191, 7.5176, 7.5155, 7.5191, 7.5165, 7.5139, 7.5175, 7.5149, 7.5129, 7.5103, 7.5085, 7.5063, 7.5037, 7.5012, 7.4988, 7.4973, 7.4973, 7.4953, 7.4926, 7.4964, 7.4952, 7.4932, 7.4924, 7.4901, 7.4878, 7.4857, 7.4836, 7.4882, 7.4992, 7.498, 7.496, 7.4959, 7.4944, 7.5043, 7.5047, 7.5022, 7.5059, 7.5035, 7.501, 7.4987, 7.5023, 7.506, 7.5039, 7.507, 7.5106, 7.5141, 7.5118, 7.5098, 7.5075, 7.5051, 7.5027, 7.5062, 7.5043, 7.5023, 7.5, 7.4977, 7.496, 7.4937, 7.4913, 7.4899, 7.4875, 7.4853, 7.4831, 7.4813, 7.4803, 7.4793, 7.4844, 7.482, 7.4796, 7.4778, 7.4762, 7.4739, 7.4792, 7.4777, 7.4894, 7.4873, 7.4858, 7.4959, 7.4963, 7.494, 7.4931, 7.491, 7.4892, 7.4878, 7.4856, 7.4859, 7.4849, 7.4833, 7.4869, 7.4906, 7.4942, 7.4979, 7.4961, 7.494, 7.4925, 7.4965, 7.4943, 7.4922, 7.485, 7.4829, 7.4865, 7.4957, 7.505, 7.5083, 7.5065, 7.5042, 7.5025, 7.4952, 7.4929, 7.4872, 7.4856, 7.4836, 7.4819, 7.4797, 7.4728, 7.4763, 7.4742, 7.4727, 7.474, 7.4726, 7.4729, 7.4707, 7.4688, 7.472, 7.4703, 7.4681, 7.4665, 7.4651, 7.4632, 7.464, 7.4618, 7.4611, 7.4589, 7.4568, 7.4551, 7.4533, 7.4565, 7.4551, 7.4531, 7.4562, 7.4563, 7.4542, 7.4523, 7.4538, 7.452, 7.4516, 7.4495, 7.4474, 7.4454, 7.451, 7.4445, 7.439, 7.442, 7.4455, 7.4435, 7.4467, 7.4445, 7.4429, 7.4473, 7.4452, 7.4436, 7.4475, 7.4509, 7.4489, 7.4477, 7.446, 7.4444, 7.443, 7.4409, 7.4343, 7.4396, 7.4377, 7.4363, 7.4402, 7.4441, 7.442, 7.44, 7.4386, 7.4371, 7.436, 7.4294, 7.4282, 7.4314, 7.4298, 7.4327, 7.4356, 7.434, 7.4321, 7.4309, 7.4289, 7.4323, 7.4415, 7.4445, 7.4475, 7.4458, 7.4499, 7.4492, 7.4521, 7.4509, 7.452, 7.4533, 7.4512, 7.4493, 7.4473, 7.4453, 7.444, 7.4428, 7.4417, 7.4403, 7.4392, 7.4377, 7.4368, 7.435, 7.4332, 7.4362, 7.4392, 7.4412, 7.4399, 7.4379, 7.4362, 7.4342, 7.428, 7.4314, 7.4364, 7.4349, 7.4353, 7.4386, 7.4382, 7.4379, 7.4361, 7.4343, 7.4324, 7.4262, 7.4249, 7.4239, 7.427, 7.4301, 7.4289, 7.4329, 7.431, 7.4298, 7.4286, 7.4267, 7.425, 7.4236, 7.4219, 7.42, 7.4183, 7.4164, 7.4149, 7.4138, 7.4124, 7.4152, 7.4134, 7.4121, 7.4104, 7.4086, 7.4122, 7.4107, 7.409, 7.4079, 7.4062, 7.4042, 7.4031, 7.4066, 7.4056, 7.4041, 7.4025, 7.4059, 7.4094, 7.4083, 7.4069, 7.4056, 7.404, 7.4076, 7.4061, 7.4094, 7.4079, 7.4071, 7.4056, 7.4089, 7.4079, 7.4107, 7.4089, 7.412, 7.4111, 7.4097, 7.4079, 7.4065, 7.4051, 7.4038, 7.4048, 7.4031, 7.4015, 7.407, 7.4056, 7.4047, 7.4034, 7.4072, 7.4059, 7.4046, 7.4073, 7.4063, 7.4047, 7.4075, 7.407, 7.4104, 7.4087, 7.4071, 7.4102, 7.4087, 7.4073, 7.406, 7.4043, 7.4073, 7.4055, 7.4043, 7.4026, 7.4009, 7.4035, 7.4023, 7.4102, 7.4087, 7.4072, 7.4056, 7.4039, 7.4021, 7.4003, 7.404, 7.4039, 7.403, 7.4017, 7.3999, 7.3983, 7.3973, 7.398300000000001, 7.3975, 7.396, 7.3991, 7.3978, 7.3972, 7.3959, 7.3991, 7.4022, 7.4006, 7.4034, 7.406, 7.4052, 7.4039, 7.4071, 7.4081, 7.4064, 7.4047, 7.4031, 7.4013, 7.3997, 7.3984, 7.3975, 7.3957, 7.4029, 7.4011, 7.404, 7.4022, 7.4181, 7.4167, 7.4163, 7.4188, 7.417, 7.4199, 7.4182, 7.4206, 7.4234, 7.4264, 7.4288, 7.427, 7.4333, 7.4363, 7.439, 7.438, 7.4363, 7.439, 7.4373, 7.44, 7.4386, 7.4415, 7.4399, 7.4458, 7.444, 7.4435, 7.4463, 7.449, 7.4476, 7.4462, 7.4452, 7.448, 7.4462, 7.4445, 7.443, 7.4418, 7.4446, 7.4391, 7.4457, 7.4458, 7.4466, 7.445, 7.4433, 7.4504, 7.4488, 7.4473, 7.4498, 7.4484, 7.4507, 7.449, 7.4474, 7.4459, 7.4486, 7.4469, 7.4496, 7.448, 7.4477, 7.4462, 7.4489, 7.4473, 7.4459, 7.4446, 7.4462, 7.4446, 7.4442, 7.439, 7.4417, 7.449, 7.4517, 7.4507, 7.4494, 7.45, 7.4528, 7.4555, 7.4551, 7.4539, 7.4565, 7.4512, 7.4498, 7.4497, 7.4541, 7.4563, 7.4549, 7.4575, 7.4562, 7.4554, 7.4582, 7.4636, 7.4624, 7.4611, 7.4598, 7.4585, 7.4571, 7.4598, 7.459, 7.4546, 7.4569, 7.4557, 7.4582, 7.4566, 7.4558, 7.4543, 7.4569, 7.4553, 7.4591, 7.4577, 7.4682, 7.4749, 7.4734, 7.4692, 7.4683, 7.4667, 7.465, 7.4634, 7.4618, 7.4605, 7.4595, 7.4622, 7.4611, 7.4757, 7.4781, 7.4768, 7.4753, 7.4741, 7.4765, 7.4752, 7.4776, 7.4761, 7.4798, 7.4829, 7.4821, 7.4808, 7.4757, 7.4741, 7.4727, 7.4715, 7.4699, 7.4685, 7.4675, 7.4662, 7.4646, 7.4635, 7.4623, 7.461, 7.4594, 7.4619, 7.4607, 7.4556, 7.454, 7.4525, 7.451, 7.4499, 7.4484, 7.4468, 7.4651, 7.4642, 7.4668, 7.4655, 7.4658, 7.4646, 7.4629, 7.4618, 7.4603, 7.459, 7.4578, 7.4578, 7.4562, 7.4551, 7.4539, 7.4527, 7.4553, 7.4544, 7.4565, 7.4589, 7.4642, 7.4664, 7.4705, 7.4689, 7.4715, 7.4699, 7.4685, 7.4673, 7.4662, 7.4649, 7.4634, 7.462, 7.4605, 7.4595, 7.4619, 7.4608, 7.4593, 7.4618, 7.4605, 7.4559, 7.4584, 7.4651, 7.4639, 7.4623, 7.4647, 7.4634, 7.4662, 7.4614, 7.4638, 7.4629, 7.4695, 7.4712, 7.4699, 7.4685, 7.4702, 7.4689, 7.468, 7.4631, 7.4616, 7.4649, 7.4635, 7.4658, 7.4644, 7.4632, 7.4617, 7.4642, 7.463, 7.4654, 7.4639, 7.4627, 7.4687, 7.4713, 7.4734, 7.4722, 7.4745, 7.4733, 7.4719, 7.4746, 7.4737, 7.4727, 7.4716, 7.4778, 7.4766, 7.4791, 7.4816, 7.4801, 7.4822, 7.4846, 7.4906, 7.4901, 7.4891, 7.4987, 7.4976, 7.4962, 7.4951, 7.4937, 7.4988, 7.4993, 7.5014, 7.5146, 7.5135, 7.5124, 7.5195, 7.5179, 7.5183, 7.517, 7.5193, 7.5185, 7.5173, 7.5256, 7.5246, 7.5268, 7.5257, 7.5243, 7.5264, 7.5253, 7.5238, 7.5192, 7.5178, 7.5167, 7.5153, 7.5139, 7.5124, 7.5114, 7.5136, 7.5125, 7.5111, 7.5132, 7.5118, 7.5103, 7.5092, 7.5078, 7.5101, 7.5122, 7.5076, 7.5064, 7.5049, 7.5037, 7.5026, 7.5011, 7.4998, 7.4991, 7.5014, 7.5004, 7.4993, 7.498, 7.497, 7.4957, 7.4947, 7.4934, 7.4957, 7.4911, 7.4902, 7.4925, 7.4912, 7.4937, 7.496, 7.4947, 7.4938, 7.4962, 7.499, 7.4982, 7.4968, 7.4956, 7.4944, 7.4967, 7.4956, 7.4956, 7.4942, 7.4964, 7.4986, 7.4972, 7.4962, 7.4985, 7.4941, 7.4952, 7.4942, 7.4928, 7.4916, 7.494, 7.493, 7.4919, 7.491, 7.4904, 7.4896, 7.4886, 7.4914, 7.4903, 7.4926, 7.4915, 7.4909, 7.4932, 7.4922, 7.4909, 7.4933, 7.4955, 7.5011, 7.5035, 7.5024, 7.5044, 7.5031, 7.5025, 7.5054, 7.5043, 7.5029, 7.5017, 7.5003, 7.4995, 7.5014, 7.4999, 7.4988, 7.4974, 7.4978, 7.4997, 7.4986, 7.4973, 7.4931, 7.4955, 7.4944, 7.4932, 7.4919, 7.491, 7.4902, 7.4923, 7.491, 7.4931, 7.492, 7.4924, 7.4915, 7.4904, 7.4964, 7.4957, 7.5075, 7.5094, 7.5082, 7.5074, 7.5095, 7.5114, 7.5103, 7.5091, 7.5084, 7.5074, 7.5068, 7.5055, 7.5042, 7.503, 7.5018, 7.5014, 7.5016, 7.5009, 7.4998, 7.4985, 7.4974, 7.4969, 7.4961, 7.4981, 7.5, 7.4986, 7.5008, 7.503, 7.505, 7.5037, 7.5062, 7.5049, 7.5038, 7.4997, 7.4989, 7.4982, 7.497, 7.4991, 7.4982, 7.4969, 7.4956, 7.4946, 7.4935, 7.4922, 7.4912, 7.4904, 7.4925, 7.4947, 7.4939, 7.4928, 7.4915, 7.4932, 7.4926, 7.4913, 7.4933, 7.4924, 7.4914, 7.4914, 7.4901, 7.4889, 7.4875, 7.4863, 7.4849, 7.4837, 7.4824, 7.4813, 7.4834, 7.4823, 7.4816, 7.4852, 7.4817, 7.4808, 7.4799, 7.4792, 7.4812, 7.4839, 7.4863, 7.4921, 7.4911, 7.4931, 7.4921, 7.4909, 7.4902, 7.489, 7.4879, 7.4869, 7.4916, 7.497, 7.4985, 7.5005, 7.5026, 7.5064, 7.5085, 7.5072, 7.5091, 7.5081, 7.5107, 7.5128, 7.5149, 7.5136, 7.5124, 7.5115, 7.5114, 7.5108, 7.5096, 7.5086, 7.5076, 7.5095, 7.5085, 7.5102, 7.5246, 7.5263, 7.5281, 7.5269, 7.5289, 7.5277, 7.5264, 7.5252, 7.5239, 7.5228, 7.5216, 7.5212, 7.5236, 7.5252, 7.5242, 7.5231, 7.5249, 7.5238, 7.5226, 7.5214, 7.5201, 7.5221, 7.5209, 7.5171, 7.519, 7.5251, 7.5269, 7.5257, 7.528, 7.5309, 7.5297, 7.5297, 7.529, 7.5309, 7.53, 7.5289, 7.5277, 7.5265, 7.5254, 7.5245, 7.5263, 7.525, 7.5238, 7.5225, 7.5244, 7.5232, 7.5221, 7.5208, 7.5227, 7.5218, 7.5225, 7.5213, 7.5201, 7.519, 7.5179, 7.5168, 7.5163, 7.5153, 7.5142, 7.5105, 7.5119, 7.5108, 7.5097, 7.5088, 7.5078, 7.5071, 7.506, 7.5048, 7.5036, 7.5055, 7.5073, 7.5107, 7.5095, 7.5085, 7.5075, 7.5063, 7.5054, 7.5045, 7.5039, 7.5028, 7.5022, 7.5009, 7.4998, 7.4988, 7.4979, 7.4997, 7.5026, 7.5015, 7.5003, 7.4992, 7.4987, 7.4976, 7.4966, 7.4955, 7.4945, 7.4965, 7.4972, 7.5, 7.5062, 7.5064, 7.5113, 7.5106, 7.5097, 7.5059, 7.5078, 7.5066, 7.5054, 7.5016, 7.4978, 7.4973, 7.4993, 7.4954, 7.4942, 7.493, 7.4919, 7.4907, 7.4896, 7.4887, 7.4876, 7.4896, 7.4916, 7.4935, 7.4925, 7.4948, 7.4937, 7.4936, 7.4924, 7.4916, 7.4904, 7.4893, 7.4912, 7.4902, 7.4919, 7.4908, 7.4947, 7.494, 7.4929, 7.4918, 7.4908, 7.4901, 7.4891, 7.491, 7.4898, 7.4916, 7.4906, 7.4895, 7.4886, 7.4881, 7.487, 7.4861, 7.4853, 7.4847, 7.4836, 7.48, 7.4795, 7.4789, 7.4807, 7.4825, 7.4846, 7.4835, 7.4853, 7.4817, 7.4807, 7.4797, 7.4813, 7.4802, 7.4792, 7.4783, 7.4773, 7.4765, 7.4754, 7.4742, 7.4763, 7.4753, 7.4755, 7.4772, 7.4818, 7.4844, 7.4845, 7.4868, 7.4871, 7.4878, 7.4867, 7.4858, 7.4876, 7.4894, 7.4885, 7.4959, 7.4943, 7.4989, 7.5007, 7.5022, 7.501, 7.5025, 7.5016, 7.5009, 7.5003, 7.4994, 7.5016, 7.5034, 7.5132, 7.5233, 7.5225, 7.5217, 7.5208, 7.5199, 7.5165, 7.5156, 7.5184, 7.5183, 7.52, 7.5193, 7.5182, 7.5284, 7.533, 7.532, 7.5309, 7.5351, 7.5344, 7.5337, 7.5325, 7.5318, 7.5335, 7.5352, 7.5342, 7.5359, 7.5324, 7.5339, 7.5357, 7.5345, 7.5362, 7.5353, 7.5343, 7.5358, 7.5348, 7.5337, 7.5354, 7.5345, 7.5362, 7.5382, 7.5371, 7.5489, 7.5481, 7.5471, 7.546, 7.5461, 7.5452, 7.5441, 7.543, 7.5447, 7.5437, 7.5426, 7.5443, 7.5432, 7.5398, 7.539, 7.538, 7.5396, 7.5411, 7.5428, 7.5417, 7.5406, 7.5398, 7.5389, 7.5378, 7.5369, 7.5386, 7.5402, 7.5393, 7.5385, 7.5374, 7.5367, 7.5362, 7.5384, 7.5402, 7.5393, 7.5385, 7.5376, 7.5364, 7.5355, 7.5346, 7.5335, 7.5327, 7.5317, 7.5309, 7.5328, 7.5345, 7.5333, 7.5323, 7.5312, 7.5301, 7.532, 7.531, 7.5327, 7.5348, 7.5366, 7.5358, 7.535, 7.534, 7.533, 7.532, 7.5314, 7.5308, 7.5298, 7.5292, 7.5311, 7.5303, 7.5274, 7.5265, 7.5258, 7.5249, 7.5268, 7.5263, 7.5254, 7.5243, 7.5259, 7.5274, 7.5263, 7.5252, 7.5241, 7.5231, 7.522, 7.521, 7.5226, 7.5218, 7.5209, 7.5199, 7.5166, 7.52, 7.5228, 7.5243, 7.5258, 7.5249, 7.5241, 7.524, 7.5231, 7.522, 7.5236, 7.5251, 7.5242, 7.5232, 7.5222, 7.5211, 7.5203, 7.5218, 7.5211, 7.5201, 7.5204, 7.5218, 7.5209, 7.5201, 7.5194, 7.5191, 7.5181, 7.5174, 7.5169, 7.5185, 7.5206, 7.5202, 7.5191, 7.518, 7.5172, 7.5162, 7.5152, 7.5167, 7.5159, 7.5149, 7.5144, 7.5135, 7.5124, 7.5139, 7.5135, 7.5153, 7.5147, 7.5162, 7.5155, 7.5148, 7.5155, 7.5144, 7.5134, 7.5126, 7.5117, 7.5106, 7.5074, 7.5064, 7.5084, 7.5073, 7.5089, 7.5079, 7.5095, 7.511, 7.5103, 7.5095, 7.5061, 7.5075, 7.5064, 7.5056, 7.5049, 7.5041, 7.5056, 7.5057, 7.505, 7.5069, 7.5085, 7.5101, 7.5095, 7.5114, 7.5104, 7.5094, 7.5085, 7.5076, 7.5076, 7.5093, 7.5095, 7.5068, 7.506, 7.5049, 7.5043, 7.5035, 7.5026, 7.5017, 7.5011, 7.5029, 7.5026, 7.5016, 7.5007, 7.4999, 7.5014, 7.5003, 7.5019, 7.5009, 7.5001, 7.5016, 7.5032, 7.5024, 7.5016, 7.503, 7.5052, 7.5059, 7.5049, 7.5042, 7.5046, 7.5036, 7.5028, 7.5022, 7.5037, 7.5027, 7.4995, 7.4995, 7.4987, 7.4977, 7.4952, 7.4943, 7.4935, 7.4926, 7.4925, 7.4916, 7.4907, 7.4899, 7.4901, 7.4892, 7.4884, 7.4875, 7.4866, 7.4884, 7.4875, 7.4892, 7.4888, 7.4904, 7.4896, 7.4887, 7.4902, 7.4918, 7.4908, 7.4901, 7.4891, 7.4883, 7.4876, 7.4891, 7.4881, 7.4872, 7.4862, 7.4911, 7.4902, 7.4893, 7.4884, 7.4877, 7.487, 7.4865, 7.4856, 7.4847, 7.4839, 7.4831, 7.4846, 7.4815, 7.481, 7.4828, 7.4843, 7.4858, 7.4849, 7.4866, 7.4837, 7.4858, 7.4873, 7.4865, 7.4859, 7.4855, 7.4846, 7.4836, 7.4828, 7.4798, 7.4789, 7.4782, 7.4795, 7.4785, 7.4781, 7.4771, 7.4816, 7.4816, 7.4845, 7.4848, 7.4839, 7.4831, 7.4845, 7.4839, 7.4855, 7.4848, 7.4841, 7.4881, 7.4905, 7.496, 7.4955, 7.4946, 7.4961, 7.4952, 7.4967, 7.4982, 7.4995, 7.4986, 7.4978, 7.4969, 7.4959, 7.495, 7.4943, 7.4958, 7.4971, 7.4963, 7.4958, 7.4951, 7.4968, 7.4965, 7.4979, 7.497, 7.496, 7.4956, 7.4946, 7.4938, 7.4908, 7.4899, 7.4914, 7.4907, 7.4909, 7.4927, 7.4918, 7.4909, 7.49, 7.4894, 7.4864, 7.4855, 7.4845, 7.4836, 7.4827, 7.4819, 7.4833, 7.4847, 7.4867, 7.4857, 7.4848, 7.4839, 7.4836, 7.4872, 7.4863, 7.4855, 7.4846, 7.4842, 7.4834, 7.4848, 7.484, 7.4857, 7.4848, 7.4839, 7.483, 7.482, 7.4833, 7.4825, 7.4816, 7.4807, 7.4798, 7.4789, 7.479, 7.478, 7.4795, 7.4786, 7.4781, 7.4776, 7.4814, 7.4829, 7.4821, 7.4835, 7.4827, 7.4821, 7.4837, 7.4828, 7.4821, 7.4837, 7.4833, 7.4847, 7.4838, 7.4832, 7.4846, 7.4837, 7.4851, 7.4842, 7.4834, 7.4829, 7.4821, 7.4812, 7.4803, 7.4794, 7.4808, 7.4799, 7.479, 7.4784, 7.4799, 7.4792, 7.4783, 7.4799, 7.4815, 7.4787, 7.4778, 7.477, 7.4785, 7.48, 7.4813, 7.4826, 7.4797, 7.481, 7.4803, 7.4794, 7.4787, 7.478, 7.4772, 7.4763, 7.4782, 7.4774, 7.4788, 7.4804, 7.4818, 7.481, 7.4804, 7.4819, 7.4833, 7.4825, 7.4818, 7.4855, 7.489, 7.4882, 7.4873, 7.4865, 7.4907, 7.4922, 7.4913, 7.4927, 7.4918, 7.491, 7.4923, 7.4915, 7.4906, 7.4897, 7.4868, 7.4859, 7.4873, 7.4865, 7.4864, 7.4855, 7.4834, 7.4825, 7.4839, 7.4832, 7.4826, 7.4818, 7.4809, 7.48, 7.4859, 7.485, 7.4863, 7.4854, 7.4851, 7.4842, 7.4834, 7.4825, 7.4817, 7.4831, 7.4823, 7.484, 7.4832, 7.4823, 7.4817, 7.4808, 7.48, 7.4814, 7.4806, 7.4798, 7.479, 7.4804, 7.4796, 7.4809, 7.4823, 7.4818, 7.4811, 7.483, 7.4822, 7.4813, 7.4805, 7.482, 7.4835, 7.4831, 7.4845, 7.4838, 7.4852, 7.4845, 7.4882, 7.4874, 7.4888, 7.4881, 7.4872, 7.4864, 7.4872, 7.4863, 7.4876, 7.4868, 7.4845, 7.4837, 7.4829, 7.487, 7.4883, 7.4874, 7.4867, 7.486, 7.4854, 7.4846, 7.486, 7.4856, 7.485, 7.4842, 7.4835, 7.4831, 7.4823, 7.4815, 7.4809, 7.48, 7.4792, 7.4808, 7.4821, 7.4817, 7.4847, 7.4838, 7.4829, 7.4844, 7.4836, 7.4828, 7.482, 7.4813, 7.4808, 7.48, 7.4791, 7.4782, 7.4776, 7.4788, 7.4783, 7.4777, 7.477, 7.4763, 7.4759, 7.4751, 7.4742, 7.4735, 7.4727, 7.4757, 7.4793, 7.479, 7.4784, 7.4757, 7.4749, 7.474, 7.4754, 7.4745, 7.4743, 7.4736, 7.4728, 7.4721, 7.4695, 7.4687, 7.4679, 7.4674, 7.4665, 7.4678, 7.4671, 7.4683, 7.4674, 7.4669, 7.4662, 7.4675, 7.4673, 7.4664, 7.4657, 7.463, 7.4643, 7.4635, 7.4627, 7.4619, 7.4611, 7.4602, 7.4595, 7.4588, 7.4606, 7.4598, 7.4612, 7.4585, 7.4579, 7.457, 7.4564, 7.4557, 7.4556, 7.4551, 7.4545, 7.4539, 7.4531, 7.4523, 7.4518, 7.4512, 7.4485, 7.448, 7.4474, 7.4466, 7.4461, 7.4436, 7.4427, 7.4465, 7.4457, 7.4469, 7.4463, 7.4474, 7.4467, 7.448, 7.4474, 7.4487, 7.4501, 7.4494, 7.4487, 7.4489, 7.4463, 7.4455, 7.4447, 7.4448, 7.446, 7.4473, 7.4467, 7.4479, 7.4471, 7.4462, 7.4475, 7.4488, 7.4482, 7.4497, 7.4497, 7.4489, 7.4481, 7.4494, 7.4487, 7.448, 7.4472, 7.4484, 7.4478, 7.4473, 7.4466, 7.4458, 7.4453, 7.4447, 7.4443, 7.4457, 7.4449, 7.4441, 7.4415, 7.443, 7.4404, 7.4398, 7.439, 7.4411, 7.4415, 7.4428, 7.4421, 7.4415, 7.4415, 7.4415, 7.441, 7.4403, 7.4415, 7.4427, 7.442, 7.4433, 7.4446, 7.444, 7.4432, 7.4425, 7.442, 7.4432, 7.4445, 7.4437, 7.4432, 7.4424, 7.4421, 7.4414, 7.4406, 7.4418, 7.4431, 7.4425, 7.4422, 7.4415, 7.4408, 7.4402, 7.4417, 7.4413, 7.4406, 7.442, 7.4413, 7.4406, 7.4399, 7.4414, 7.4406, 7.4399, 7.4391, 7.4384, 7.4398, 7.4393, 7.4385, 7.438, 7.4373, 7.4386, 7.438, 7.4392, 7.4384, 7.4376, 7.4369, 7.4361, 7.4355, 7.4347, 7.4341, 7.4334, 7.4331, 7.4323, 7.4336, 7.4331, 7.4326, 7.4339, 7.4332, 7.4328, 7.4324, 7.4319, 7.4311, 7.4323, 7.4336, 7.4328, 7.434, 7.4336, 7.4328, 7.432, 7.4312, 7.4307, 7.43, 7.4332, 7.4328, 7.432, 7.4314, 7.4309, 7.4302, 7.4295, 7.4289, 7.4301, 7.4293, 7.4285, 7.4277, 7.4289, 7.4284, 7.4279, 7.4292, 7.4285, 7.4277, 7.4289, 7.4301, 7.4296, 7.4288, 7.4281, 7.4275, 7.4269, 7.4277, 7.4271, 7.4267, 7.426, 7.4255, 7.4248, 7.4245, 7.4237, 7.425, 7.4243, 7.4235, 7.4232, 7.4245, 7.4237, 7.425, 7.4261, 7.4256, 7.4248, 7.426, 7.4253, 7.425, 7.4263, 7.4255, 7.4286, 7.4298, 7.4292, 7.4285, 7.4278, 7.427, 7.4264, 7.4276, 7.4268, 7.4266, 7.4271, 7.4265, 7.4266, 7.4337, 7.4333, 7.4329, 7.4326, 7.432, 7.4312, 7.4304, 7.4316, 7.4309, 7.4303, 7.4299, 7.4294, 7.4288, 7.428, 7.4273, 7.4267, 7.4263, 7.4255, 7.4249, 7.4242, 7.4237, 7.4231, 7.4223, 7.4215, 7.4207, 7.422, 7.4214, 7.4208, 7.42, 7.4196, 7.4211, 7.4224, 7.4217, 7.4229, 7.4223, 7.4215, 7.4207, 7.4204, 7.4198, 7.4191, 7.4214, 7.4206, 7.4218, 7.4211, 7.4206, 7.4199, 7.421, 7.4222, 7.4234, 7.4228, 7.4221, 7.4214, 7.4209, 7.4203, 7.4199, 7.4192, 7.4187, 7.418, 7.4172, 7.4165, 7.4158, 7.4151, 7.4143, 7.4137, 7.413, 7.4124, 7.4135, 7.4128, 7.4121, 7.4288, 7.4281, 7.4273, 7.4267, 7.426, 7.4256, 7.432, 7.4332, 7.4324, 7.4336, 7.4375, 7.4372, 7.4366, 7.4378, 7.4371, 7.4364, 7.4358, 7.4352, 7.4365, 7.436, 7.4358, 7.4351, 7.4365, 7.434, 7.4351, 7.4363, 7.4355, 7.4349, 7.4345, 7.4337, 7.4331, 7.4324, 7.4318, 7.4317, 7.431, 7.4323, 7.4335, 7.4329, 7.4324, 7.4319, 7.4312, 7.4309, 7.4284, 7.4278, 7.4293, 7.4292, 7.4285, 7.4278, 7.4274, 7.427, 7.4263, 7.4256, 7.4268, 7.4279, 7.4291, 7.4289, 7.4284, 7.433, 7.4342, 7.4336, 7.4349, 7.4342, 7.4341, 7.4334, 7.4329, 7.4325, 7.4337, 7.4329, 7.4322, 7.4314, 7.4307, 7.4376, 7.4369, 7.4395, 7.4388, 7.4381, 7.4376, 7.4382, 7.4376, 7.4371, 7.4364, 7.4357, 7.4352, 7.4345, 7.4338, 7.4333, 7.4327, 7.4322, 7.4335, 7.433, 7.4312, 7.4305, 7.4316, 7.4297, 7.4314, 7.4353, 7.4347, 7.4339, 7.4335, 7.4348, 7.4341, 7.4338, 7.4333, 7.4326, 7.4302, 7.4295, 7.4288, 7.4285, 7.4281, 7.4274, 7.4268, 7.4263, 7.4256, 7.4252, 7.4247, 7.4258, 7.4252, 7.4246, 7.4239, 7.425, 7.4304, 7.4298, 7.4328, 7.4321, 7.4315, 7.431, 7.4287, 7.4299, 7.4294, 7.4289, 7.4283, 7.4278, 7.4288, 7.4282, 7.4277, 7.4271, 7.4284, 7.4278, 7.4271, 7.4264, 7.4258, 7.4251, 7.4244, 7.4238, 7.4233, 7.4275, 7.4288, 7.4284, 7.4278, 7.4279, 7.4273, 7.4267, 7.4261, 7.4257, 7.4254, 7.4266, 7.426, 7.4254, 7.4253, 7.4246, 7.4239, 7.4258, 7.4252, 7.4267, 7.4283, 7.4278, 7.4273, 7.4267, 7.426, 7.4267, 7.426, 7.4255, 7.4249, 7.4244, 7.4237, 7.4249, 7.4244, 7.4238, 7.4249, 7.4242, 7.4235, 7.4228, 7.4239, 7.425, 7.4244, 7.4238, 7.4231, 7.4225, 7.4218, 7.4212, 7.4224, 7.4235, 7.423, 7.4207, 7.4201, 7.42, 7.4194, 7.4187, 7.418, 7.4174, 7.4167, 7.4178, 7.4174, 7.4169, 7.4181, 7.4192, 7.4206, 7.4201, 7.4196, 7.4231, 7.4225, 7.422, 7.4214, 7.4258, 7.4261, 7.4256, 7.4267, 7.4278, 7.4271, 7.4284, 7.4277, 7.4282, 7.4276, 7.4272, 7.4265, 7.4259, 7.4254, 7.425, 7.4243, 7.4237, 7.4231, 7.4225, 7.4206, 7.4199, 7.4193, 7.4186, 7.4198, 7.4194, 7.4188, 7.4185, 7.4181, 7.4177, 7.4174, 7.419, 7.4202, 7.4214, 7.4227, 7.4281, 7.4259, 7.4253, 7.4267, 7.4323, 7.4319, 7.4312, 7.4327, 7.4338, 7.4317, 7.4311, 7.4304, 7.4298, 7.4292, 7.4287, 7.4281, 7.4276, 7.4271, 7.4264, 7.4258, 7.4251, 7.4245, 7.4238, 7.4231, 7.4236, 7.4247, 7.4276, 7.4288, 7.4283, 7.4277, 7.4273, 7.4266, 7.4278, 7.4273, 7.4266, 7.4278, 7.4277, 7.4287, 7.428, 7.4273, 7.4267, 7.4277, 7.427, 7.4266, 7.4272, 7.4267, 7.4261, 7.4257, 7.4267, 7.4266, 7.4259, 7.427, 7.4263, 7.4256, 7.425, 7.4243, 7.4241, 7.4252, 7.4248, 7.4258, 7.4251, 7.4246, 7.424, 7.4237, 7.4231, 7.4224, 7.4219, 7.4213, 7.421, 7.4189, 7.4216, 7.4209, 7.4236, 7.4247, 7.4241, 7.4251, 7.4245, 7.4238, 7.4232, 7.421, 7.422, 7.4248, 7.4259, 7.4253, 7.4246, 7.4258, 7.4252, 7.4279, 7.4306, 7.4301, 7.4296, 7.4291, 7.4302, 7.428, 7.4296, 7.4289, 7.4284, 7.4278, 7.4271, 7.4292, 7.4312, 7.4308, 7.4302, 7.4296, 7.4308, 7.4302, 7.4296, 7.4289, 7.4285, 7.4281, 7.4275, 7.4269, 7.4266, 7.4261, 7.427, 7.4264, 7.4258, 7.4253, 7.4247, 7.4243, 7.4255, 7.4249, 7.4251, 7.426, 7.4271, 7.4266, 7.4261, 7.4254, 7.4248, 7.4243, 7.4236, 7.423, 7.4226, 7.422, 7.4213, 7.4223, 7.4218, 7.4211, 7.4209, 7.4202, 7.4197, 7.4191, 7.4186, 7.4179, 7.4173, 7.4173, 7.4167, 7.4178, 7.4172, 7.4166, 7.4164, 7.4176, 7.4176, 7.4195, 7.4206, 7.4233, 7.4244, 7.4255, 7.4249, 7.4244, 7.4238, 7.4234, 7.4229, 7.4224, 7.4218, 7.4215, 7.4212, 7.4205, 7.4199, 7.4194, 7.4188, 7.4182, 7.4196, 7.419, 7.42, 7.4211, 7.4207, 7.4202, 7.4196, 7.4176, 7.417, 7.4166, 7.4159, 7.4153, 7.4147, 7.4141, 7.4135, 7.4129, 7.4124, 7.4119, 7.4113, 7.4111, 7.4104, 7.4084, 7.4081, 7.4077, 7.4073, 7.4069, 7.4064, 7.4057, 7.4052, 7.4062, 7.4056, 7.4053, 7.4062, 7.4057, 7.4051, 7.4047, 7.4041, 7.4035, 7.4029, 7.4023, 7.4018, 7.4012, 7.4006, 7.4, 7.401, 7.4007, 7.4018, 7.4029, 7.4024, 7.4035, 7.4029, 7.4026, 7.4028, 7.4039, 7.4033, 7.4032, 7.4026, 7.4056, 7.405, 7.4044, 7.4039, 7.4034, 7.4029, 7.4025, 7.402, 7.4014, 7.401, 7.4006, 7.4, 7.3994, 7.3988, 7.3981, 7.3975, 7.3973, 7.3953, 7.3949, 7.3943, 7.3939, 7.3948, 7.3943, 7.3939, 7.3934, 7.3928, 7.3921, 7.3916, 7.3911, 7.3905, 7.3899, 7.3894, 7.3888, 7.3882, 7.3876, 7.387, 7.3865, 7.3876, 7.3878, 7.3875, 7.3869, 7.3863, 7.3857, 7.3867, 7.3877, 7.3892, 7.3902, 7.3912, 7.3923, 7.3933, 7.396, 7.4002, 7.3996, 7.3994, 7.4037, 7.4033, 7.4043, 7.4037, 7.4031, 7.4026, 7.4021, 7.4015, 7.4009, 7.402, 7.4014, 7.4008, 7.4002, 7.3997, 7.3992, 7.3987, 7.3981, 7.3976, 7.3972, 7.3966, 7.3962, 7.3957, 7.395, 7.3945, 7.3939, 7.3933, 7.3927, 7.3939, 7.3934, 7.393, 7.3928, 7.3908, 7.3904, 7.3899, 7.3895, 7.3889, 7.3882, 7.3893, 7.3887, 7.3881, 7.3875, 7.3869, 7.3882, 7.3877, 7.3887, 7.3881, 7.3875, 7.3869, 7.3867, 7.3877, 7.3888, 7.3898, 7.3894, 7.3901, 7.3912, 7.3907, 7.3903, 7.3884, 7.3894, 7.389, 7.3887, 7.3897, 7.3892, 7.3887, 7.3888, 7.3882, 7.3877, 7.3872, 7.3883, 7.3878, 7.3872, 7.3868, 7.3879, 7.3894, 7.3889, 7.3902, 7.3912, 7.3906, 7.3916, 7.3936, 7.3946, 7.3942, 7.3942, 7.3939, 7.3923, 7.3924, 7.3918, 7.3912, 7.3909, 7.3903, 7.3897, 7.3892, 7.3903, 7.3906, 7.39, 7.3896, 7.389, 7.39, 7.391, 7.3929, 7.3923, 7.3919, 7.3913, 7.391, 7.3921, 7.3918, 7.3912, 7.3906, 7.3917, 7.3912, 7.3906, 7.3901, 7.3895, 7.389, 7.3901, 7.3897, 7.3908, 7.3918, 7.3928, 7.3923, 7.3918, 7.3917, 7.3914, 7.3914, 7.3928, 7.3926, 7.3921, 7.3915, 7.394, 7.3937, 7.3931, 7.3925, 7.3921, 7.3915, 7.3909, 7.3919, 7.3913, 7.3911, 7.3927, 7.3928, 7.3927, 7.3923, 7.3919, 7.3919, 7.3913, 7.3908, 7.3904, 7.39, 7.3897, 7.3892, 7.3889, 7.39, 7.3895, 7.3906, 7.3901, 7.3896, 7.3891, 7.3887, 7.3883, 7.3894, 7.3889, 7.3884, 7.3881, 7.389, 7.3902, 7.3896, 7.3906, 7.39, 7.3909, 7.3905, 7.39, 7.3896, 7.3896, 7.39, 7.3894, 7.3889, 7.3885, 7.388, 7.389, 7.3885, 7.388, 7.3874, 7.3871, 7.3865, 7.3874, 7.3869, 7.3863, 7.3859, 7.387, 7.3865, 7.3859, 7.3869, 7.3864, 7.3858, 7.3857, 7.3884, 7.3895, 7.3892, 7.3894, 7.3891, 7.391, 7.3906, 7.3916, 7.3911, 7.3906, 7.3916, 7.3958, 7.3954, 7.395, 7.3946, 7.3941, 7.3945, 7.3941, 7.3922, 7.3931, 7.3925, 7.3934, 7.393, 7.3946, 7.3964, 7.3958, 7.3952, 7.3947, 7.3942, 7.3951, 7.3946, 7.394, 7.3935, 7.3931, 7.3926, 7.392, 7.3915, 7.391, 7.3919, 7.3915, 7.3925, 7.392, 7.3916, 7.3913, 7.3908, 7.3909, 7.3904, 7.39, 7.3895, 7.3921, 7.3962, 7.3975, 7.3971, 7.3967, 7.3965, 7.3964, 7.3959, 7.3953, 7.3962, 7.3962, 7.3959, 7.3955, 7.3984, 7.3979, 7.3995, 7.3991, 7.3985, 7.398, 7.3974, 7.3971, 7.398, 7.3989, 7.3983, 7.3978, 7.3987, 7.3981, 7.3976, 7.3985, 7.398, 7.3975, 7.397, 7.3965, 7.396, 7.3956, 7.3966, 7.3961, 7.3961, 7.397, 7.3964, 7.3974, 7.3984, 7.3979, 7.3974, 7.3968, 7.3963, 7.3974, 7.3972, 7.3966, 7.3961, 7.3972, 7.3967, 7.3963, 7.3958, 7.3971, 7.3967, 7.3961, 7.3957, 7.3951, 7.3945, 7.394, 7.3921, 7.3917, 7.3912, 7.3893, 7.3888, 7.3882, 7.3877, 7.3876, 7.3872, 7.3926, 7.392, 7.3915, 7.3924, 7.3919, 7.3913, 7.3908, 7.3918, 7.3916, 7.391, 7.3905, 7.39, 7.3896, 7.3892, 7.3886, 7.3883, 7.3878, 7.3873, 7.3869, 7.3878, 7.3872, 7.3868, 7.3868, 7.3863, 7.3861, 7.3886, 7.3888, 7.3885, 7.388, 7.389, 7.3886, 7.3881, 7.3875, 7.3871, 7.3866, 7.3861, 7.3856, 7.3852, 7.3847, 7.3842, 7.3837, 7.3834, 7.3829, 7.3838, 7.3847, 7.3857, 7.3866, 7.3861, 7.3859, 7.3854, 7.3849, 7.3845, 7.3841, 7.3836, 7.3831, 7.384, 7.3834, 7.3829, 7.3823, 7.3847, 7.3842, 7.3866, 7.386, 7.3855, 7.3837, 7.3859, 7.3855, 7.3852, 7.3862, 7.3871, 7.3867, 7.3862, 7.3857, 7.3852, 7.3847, 7.3856, 7.3852, 7.3834, 7.3833, 7.3873, 7.3873, 7.387, 7.3865, 7.386, 7.3869, 7.3878, 7.3873, 7.3868, 7.3864, 7.3859, 7.3875, 7.3869, 7.3851, 7.3848, 7.3848, 7.3856, 7.3851, 7.386, 7.3857, 7.3855, 7.3863, 7.3858, 7.3866, 7.3867, 7.3862, 7.3857, 7.3852, 7.3848, 7.3844, 7.384, 7.3836, 7.3834, 7.3828, 7.3825, 7.382, 7.3816, 7.3798, 7.3793, 7.3788, 7.3784, 7.3793, 7.3788, 7.3785, 7.378, 7.3777, 7.3786, 7.3783, 7.3791, 7.3801, 7.3798, 7.3793, 7.379, 7.3799, 7.3794, 7.3803, 7.3812, 7.3808, 7.3804, 7.3799, 7.3793, 7.3804, 7.3813, 7.3812, 7.3807, 7.3802, 7.3797, 7.3791, 7.3786, 7.3793, 7.3789, 7.3784, 7.3766, 7.3775, 7.3771, 7.3766, 7.3763, 7.3773, 7.3768, 7.379, 7.379, 7.3821, 7.3816, 7.3811, 7.3806, 7.3801, 7.3797, 7.3792, 7.3788, 7.3789, 7.3798, 7.3808, 7.3805, 7.38, 7.3797, 7.3794, 7.3792, 7.3788, 7.3798, 7.3793, 7.3788, 7.3791, 7.3787, 7.3784, 7.378, 7.3775, 7.3785, 7.3785, 7.3782, 7.3779, 7.3776, 7.3777, 7.3772, 7.3767, 7.3776, 7.3773, 7.3771, 7.3766, 7.376, 7.3757, 7.3752, 7.3747, 7.3742, 7.375, 7.3745, 7.3754, 7.3751, 7.3768, 7.3758, 7.3753, 7.3749, 7.3744, 7.3752, 7.376, 7.3768, 7.3763, 7.3758, 7.3754, 7.375, 7.3763, 7.3773, 7.3769, 7.3765, 7.3761, 7.3744, 7.374, 7.3736, 7.3745, 7.3753, 7.3748, 7.3789, 7.3784, 7.3779, 7.3775, 7.3778, 7.3787, 7.3784, 7.3779, 7.3775, 7.3771, 7.3779, 7.3774, 7.377, 7.3769, 7.3783, 7.3784, 7.3779, 7.3776, 7.3771, 7.3767, 7.3762, 7.3772, 7.378, 7.3778, 7.3775, 7.3787, 7.3782, 7.3793, 7.3801, 7.3798, 7.3808, 7.3805, 7.3802, 7.3798, 7.3794, 7.3789, 7.3784, 7.3793, 7.3801, 7.3797, 7.3797, 7.3794, 7.3789, 7.3797, 7.3792, 7.3802, 7.3798, 7.3793, 7.3803, 7.38, 7.3805, 7.3801, 7.3797, 7.3793, 7.3788, 7.3784, 7.3779, 7.3778, 7.3773, 7.3768, 7.3778, 7.3775, 7.3771, 7.3779, 7.3775, 7.3784, 7.3793, 7.3801, 7.3796, 7.3791, 7.379, 7.3798, 7.3793, 7.3802, 7.3811, 7.3806, 7.3801, 7.3796, 7.3779, 7.3798, 7.3794, 7.3805, 7.3813, 7.3808, 7.3817, 7.3826, 7.3823, 7.3818, 7.3815, 7.3812, 7.3821, 7.3816, 7.3812, 7.3807, 7.3804, 7.3799, 7.3798, 7.3793, 7.3788, 7.3784, 7.378, 7.3776, 7.3773, 7.377, 7.378, 7.3776, 7.3772, 7.3769, 7.3765, 7.3761, 7.3762, 7.3772, 7.3783, 7.3778, 7.3788, 7.3783, 7.3778, 7.3773, 7.3768, 7.3776, 7.3787, 7.3791, 7.3799, 7.3795, 7.379, 7.3799, 7.3794, 7.3802, 7.3839, 7.3836, 7.3844, 7.3839, 7.3834, 7.3829, 7.3824, 7.3823, 7.3806, 7.3813, 7.3821, 7.3843, 7.3852, 7.3862, 7.3857, 7.3879, 7.3875, 7.3889, 7.3913, 7.3922, 7.3917, 7.3926, 7.3922, 7.3918, 7.3901, 7.3897, 7.3893, 7.3888, 7.3897, 7.3893, 7.3902, 7.3904, 7.3899, 7.3895, 7.3891, 7.3886, 7.389, 7.3887, 7.3882, 7.3878, 7.3877, 7.3874, 7.3869, 7.3864, 7.3861, 7.386, 7.3856, 7.3852, 7.3848, 7.3843, 7.3839, 7.3836, 7.3832, 7.3827, 7.3849, 7.3845, 7.3842, 7.3829, 7.3831, 7.3827, 7.384, 7.3853, 7.3848, 7.3845, 7.384, 7.3847, 7.3846, 7.3854, 7.3849, 7.3846, 7.3842, 7.3825, 7.3822, 7.3818, 7.3813, 7.3808, 7.3804, 7.38, 7.3796, 7.3792, 7.3775, 7.378, 7.3775, 7.3784, 7.3786, 7.3782, 7.379, 7.3786, 7.3782, 7.3791, 7.3787, 7.3796, 7.3793, 7.3789, 7.3785, 7.3782, 7.3778, 7.3774, 7.3781, 7.3777, 7.3786, 7.3782, 7.3777, 7.3773, 7.3782, 7.3794, 7.3803, 7.3798, 7.3782, 7.3777, 7.3773, 7.377, 7.3767, 7.3764, 7.3759, 7.3755, 7.3762, 7.3771, 7.378, 7.3775, 7.3772, 7.3769, 7.3764, 7.3748, 7.3744, 7.3764, 7.3795, 7.3803, 7.3811, 7.3806, 7.3801, 7.3809, 7.3804, 7.3813, 7.3827, 7.3836, 7.3833, 7.383, 7.3826, 7.3822, 7.3818, 7.3814, 7.3809, 7.3804, 7.3813, 7.3809, 7.3806, 7.3815, 7.381, 7.3806, 7.3816, 7.3826, 7.3834, 7.383, 7.385, 7.3845, 7.3841, 7.3837, 7.3832, 7.3841, 7.3838, 7.3858, 7.3853, 7.3848, 7.3858, 7.3866, 7.3874, 7.3883, 7.3887, 7.3896, 7.3892, 7.39, 7.3895, 7.3903, 7.3899, 7.3895, 7.389, 7.3888, 7.3883, 7.3879, 7.3874, 7.387, 7.3866, 7.3862, 7.3858, 7.3854, 7.3838, 7.3835, 7.3843, 7.3839, 7.3835, 7.3843, 7.3851, 7.3859, 7.3859, 7.3893, 7.3897, 7.3892, 7.39, 7.3895, 7.389, 7.3885, 7.3893, 7.3891, 7.389, 7.3888, 7.3896, 7.3894, 7.389, 7.3887, 7.3882, 7.3868, 7.3864, 7.3874, 7.387, 7.3866, 7.3876, 7.3874, 7.3882, 7.3879, 7.3874, 7.387, 7.3854, 7.385, 7.3847, 7.3854, 7.3862, 7.3858, 7.3866, 7.3862, 7.3846, 7.3844, 7.384, 7.3836, 7.3833, 7.3817, 7.3812, 7.382, 7.3816, 7.3824, 7.3808, 7.3817, 7.3801, 7.3787, 7.3782, 7.3778, 7.3792, 7.3787, 7.3782, 7.3777, 7.3772, 7.3768, 7.3776, 7.3773, 7.3768, 7.3776, 7.376, 7.3757, 7.3752, 7.3748, 7.3744, 7.3741, 7.3737, 7.3732, 7.3728, 7.3743, 7.3738, 7.3734, 7.3729, 7.3724, 7.372, 7.3715, 7.371, 7.3705, 7.37, 7.3708, 7.3703, 7.3699, 7.3695, 7.369, 7.3698, 7.3708, 7.3704, 7.3712, 7.3721, 7.3717, 7.3727, 7.3722, 7.3718, 7.3713, 7.3698, 7.3694, 7.3691, 7.3687, 7.3695, 7.3691, 7.37, 7.3708, 7.3716, 7.3711, 7.3706, 7.3701, 7.3699, 7.3701, 7.3698, 7.3706, 7.3701, 7.3696, 7.3694, 7.3691, 7.3676, 7.3672, 7.3708, 7.3704, 7.3691, 7.3699, 7.3695, 7.3692, 7.369, 7.3686, 7.37, 7.3708, 7.3707, 7.3702, 7.3699, 7.3695, 7.3691, 7.3699, 7.3696, 7.3697, 7.3694, 7.3689, 7.3685, 7.3693, 7.3688, 7.3683, 7.3687, 7.3683, 7.3683, 7.3687, 7.3708, 7.3704, 7.3728, 7.3724, 7.372, 7.3742, 7.3738, 7.3785, 7.3781, 7.3777, 7.3773, 7.377, 7.3781, 7.3777, 7.3775, 7.3772, 7.3767, 7.3762, 7.3757, 7.3755, 7.3751, 7.3759, 7.3757, 7.3754, 7.3749, 7.3746, 7.3742, 7.3738, 7.3723, 7.3719, 7.3704, 7.3699, 7.3707, 7.3704, 7.3691, 7.3688, 7.3697, 7.3693, 7.369, 7.3688, 7.3686, 7.3694, 7.369, 7.3685, 7.368, 7.3748, 7.3744, 7.3743, 7.3739, 7.3734, 7.373, 7.3726, 7.3722, 7.3719, 7.3715, 7.3713, 7.3708, 7.3704, 7.37, 7.3696, 7.3681, 7.3676, 7.3672, 7.3669, 7.3666, 7.3662, 7.3657, 7.3652, 7.3647, 7.3643, 7.3652, 7.365, 7.3647, 7.3643, 7.3641, 7.3636, 7.3632, 7.3628, 7.3624, 7.362, 7.3615, 7.3613, 7.3608, 7.3593, 7.3589, 7.3586, 7.3581, 7.3577, 7.3573, 7.361, 7.3611, 7.3608, 7.3605, 7.3613, 7.361, 7.3618, 7.3618, 7.3614, 7.361, 7.3605, 7.3601, 7.3597, 7.3597, 7.3593, 7.3601, 7.3597, 7.3594, 7.3589, 7.3585, 7.3582, 7.3579, 7.3575, 7.3571, 7.3568, 7.3563, 7.3558, 7.3555, 7.3551, 7.3558, 7.3566, 7.3562, 7.3558, 7.3566, 7.3552, 7.3551, 7.3547, 7.3543, 7.3539, 7.3537, 7.3544, 7.3539, 7.3535, 7.353, 7.3527, 7.3523, 7.3519, 7.3515, 7.3534, 7.3531, 7.3527, 7.3537, 7.3547, 7.3561, 7.3557, 7.3566, 7.3589, 7.3597, 7.3595, 7.3592, 7.3589, 7.3584, 7.3592, 7.36, 7.3608, 7.3606, 7.3602, 7.3587, 7.3584, 7.3581, 7.3588, 7.3583, 7.359, 7.3598, 7.3595, 7.3592, 7.3588, 7.3584, 7.3588, 7.3584, 7.3592, 7.3625, 7.3633, 7.3641, 7.3637, 7.3644, 7.3641, 7.3659, 7.3667, 7.3663, 7.366, 7.3672, 7.3669, 7.3676, 7.3684, 7.368, 7.3678, 7.3674, 7.3682, 7.3679, 7.3675, 7.367, 7.3677, 7.3674, 7.3677, 7.3673, 7.3676, 7.3757, 7.3755, 7.3751, 7.3748, 7.3749, 7.3745, 7.3743, 7.3739, 7.3736, 7.3733, 7.373, 7.3726, 7.3722, 7.3719, 7.374, 7.3747, 7.3765, 7.3761, 7.3757, 7.3765, 7.3761, 7.3768, 7.3764, 7.3796, 7.3792, 7.3788, 7.3795, 7.3814, 7.3822, 7.3817, 7.3836, 7.3835, 7.3831, 7.3827, 7.3823, 7.382, 7.3829, 7.3836, 7.3832, 7.3835, 7.3843, 7.3828, 7.3837, 7.3834, 7.3853, 7.3849, 7.3845, 7.3843, 7.384, 7.3838, 7.3846, 7.3854, 7.385, 7.3847, 7.3843, 7.3838, 7.3836, 7.3833, 7.383, 7.3827, 7.3823, 7.3821, 7.3828, 7.3825, 7.3821, 7.3806, 7.3814, 7.3811, 7.382, 7.3817, 7.3813, 7.3811, 7.3807, 7.3803, 7.3826, 7.3833, 7.3841, 7.3848, 7.3854, 7.3854, 7.385, 7.3847, 7.3833, 7.3824, 7.382, 7.3823, 7.3831, 7.3827, 7.3823, 7.382, 7.3816, 7.3813, 7.3809, 7.3804, 7.3812, 7.3807, 7.3802, 7.3798, 7.3794, 7.379, 7.3797, 7.3804, 7.3811, 7.3807, 7.3804, 7.38, 7.3796, 7.3803, 7.3803, 7.38, 7.3796, 7.3793, 7.3789, 7.3785, 7.3781, 7.3777, 7.3774, 7.377, 7.3767, 7.3782, 7.3779, 7.3775, 7.3782, 7.3778, 7.3785, 7.3789, 7.3808, 7.3804, 7.38, 7.3806, 7.3813, 7.3809, 7.3805, 7.3801, 7.3808, 7.3803, 7.3798, 7.3794, 7.379, 7.3789, 7.3785, 7.3781, 7.3788, 7.3785, 7.3781, 7.3778, 7.3776, 7.3772, 7.3768, 7.3764, 7.3761, 7.3757, 7.3755, 7.3752, 7.3755, 7.3751, 7.3747, 7.3743, 7.3764, 7.376, 7.3767, 7.3753, 7.3749, 7.3747, 7.3744, 7.374, 7.3736, 7.3744, 7.374, 7.3736, 7.3732, 7.3729, 7.3736, 7.3732, 7.3729, 7.3725, 7.3732, 7.3729, 7.3725, 7.3744, 7.374, 7.3737, 7.3744, 7.374, 7.3738, 7.3736, 7.3739, 7.3735, 7.3743, 7.3739, 7.3737, 7.3734, 7.3731, 7.3727, 7.3724, 7.372, 7.3716, 7.3712, 7.3718, 7.3715, 7.3713, 7.3709, 7.3705, 7.3712, 7.3709, 7.3705, 7.3701, 7.3697, 7.3704, 7.37, 7.3718, 7.3716, 7.3717, 7.3713, 7.3709, 7.3723, 7.3719, 7.3716, 7.3725, 7.3722, 7.3718, 7.3715, 7.3712, 7.3709, 7.3705, 7.3701, 7.3716, 7.3712, 7.3708, 7.3704, 7.37, 7.3708, 7.3705, 7.3691, 7.3699, 7.3695, 7.3691, 7.3687, 7.3683, 7.368, 7.3676, 7.3673, 7.3671, 7.3667, 7.3664, 7.365, 7.3646, 7.3642, 7.3649, 7.3646, 7.3642, 7.3638, 7.3634, 7.3641, 7.3637, 7.3635, 7.3631, 7.3627, 7.3624, 7.362, 7.3618, 7.3616, 7.3612, 7.3608, 7.3604, 7.3601, 7.3598, 7.3599, 7.3595, 7.3583, 7.3579, 7.3598, 7.3594, 7.3591, 7.3598, 7.3629, 7.3625, 7.3622, 7.3618, 7.3616, 7.3624, 7.3631, 7.3628, 7.3626, 7.3623, 7.3624, 7.362, 7.3642, 7.364, 7.3641, 7.3648, 7.3673, 7.367, 7.3679, 7.3677, 7.3674, 7.3682, 7.37, 7.3696, 7.3693, 7.369, 7.3687, 7.3695, 7.373, 7.3726, 7.3734, 7.373, 7.3727, 7.3724, 7.3721, 7.3718, 7.3725, 7.3743, 7.375, 7.3758, 7.3754, 7.375, 7.3747, 7.3743, 7.375, 7.3746, 7.3747, 7.3746, 7.3743, 7.3739, 7.3737, 7.3735, 7.3735, 7.3732, 7.3729, 7.3737, 7.3733, 7.374, 7.3748, 7.3756, 7.3756, 7.3762, 7.3758, 7.3755, 7.3761, 7.3758, 7.3755, 7.3751, 7.3748, 7.3745, 7.3743, 7.375, 7.3747, 7.3744, 7.3752, 7.375, 7.3758, 7.3754, 7.3761, 7.3748, 7.3744, 7.374, 7.3736, 7.3733, 7.372, 7.3716, 7.3723, 7.3719, 7.3716, 7.3713, 7.3709, 7.3709, 7.3717, 7.3713, 7.372, 7.3716, 7.3715, 7.3712, 7.371, 7.3707, 7.3694, 7.3691, 7.3688, 7.3684, 7.368, 7.3677, 7.3674, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3667, 7.3664, 7.3664, 7.3662, 7.3658, 7.3654, 7.3661, 7.3667, 7.3665, 7.3672, 7.3669, 7.3678, 7.3674, 7.3672, 7.3679, 7.3676, 7.3683, 7.3679, 7.3675, 7.3683, 7.3679, 7.3675, 7.3672, 7.3679, 7.3675, 7.3672, 7.3668, 7.3675, 7.3671, 7.3667, 7.3663, 7.3662, 7.367, 7.3668, 7.3675, 7.3671, 7.3679, 7.3686, 7.3672, 7.3668, 7.3719, 7.3715, 7.3702, 7.3709, 7.3707, 7.3715, 7.3712, 7.3708, 7.3705, 7.3702, 7.3698, 7.3704, 7.3711, 7.3707, 7.3709, 7.3706, 7.3702, 7.3698, 7.3695, 7.3692, 7.3699, 7.3717, 7.3726, 7.3723, 7.3747, 7.3745, 7.3743, 7.3729, 7.3725, 7.3721, 7.3728, 7.3725, 7.3735, 7.3742, 7.3738, 7.3736, 7.3744, 7.3742, 7.3728, 7.3725, 7.3732, 7.3732, 7.3731, 7.3718, 7.3715, 7.3711, 7.3707, 7.371, 7.3707, 7.3716, 7.3712, 7.3719, 7.3716, 7.3712, 7.3708, 7.3715, 7.3722, 7.372, 7.3716, 7.3716, 7.3723, 7.373, 7.3726, 7.3722, 7.3718, 7.3714, 7.3721, 7.3728, 7.3738, 7.3734, 7.3731, 7.3727, 7.3723, 7.373, 7.3729, 7.3726, 7.3726, 7.3724, 7.3732, 7.3728, 7.3724, 7.3731, 7.3718, 7.3715, 7.3722, 7.372, 7.3717, 7.3714, 7.3722, 7.3721, 7.3717, 7.3713, 7.371, 7.3717, 7.3723, 7.3722, 7.372, 7.3716, 7.3712, 7.3719, 7.3716, 7.3723, 7.372, 7.3716, 7.3714, 7.371, 7.3706, 7.3714, 7.3711, 7.3707, 7.3747, 7.3743, 7.373, 7.3736, 7.3732, 7.3739, 7.3735, 7.3742, 7.3739, 7.3735, 7.3742, 7.3738, 7.3734, 7.373, 7.3726, 7.3722, 7.3719, 7.3715, 7.3711, 7.3718, 7.3725, 7.3721, 7.3717, 7.3725, 7.3732, 7.3732, 7.3728, 7.3735, 7.3742, 7.3739, 7.3747, 7.3754, 7.3761, 7.3758, 7.3754, 7.375, 7.3747, 7.3734, 7.374, 7.3736, 7.3739, 7.3736, 7.3732, 7.3729, 7.3726, 7.3723, 7.3711, 7.3708, 7.3704, 7.3691, 7.3698, 7.3694, 7.3692, 7.3689, 7.3695, 7.3702, 7.3699, 7.3695, 7.3692, 7.3693, 7.369, 7.3697, 7.3693, 7.3691, 7.3678, 7.3685, 7.3681, 7.3688, 7.3695, 7.3691, 7.3698, 7.3726, 7.3722, 7.3722, 7.3718, 7.3715, 7.3722, 7.373, 7.3727, 7.3724, 7.373, 7.3727, 7.3723, 7.373, 7.3728, 7.3734, 7.3732, 7.3729, 7.3737, 7.3745, 7.3752, 7.3748, 7.3746, 7.3753, 7.376, 7.3757, 7.3753, 7.3749, 7.3746, 7.3769, 7.3766, 7.3778, 7.3774, 7.3771, 7.3768, 7.3756, 7.3762, 7.376, 7.3758, 7.3754, 7.3751, 7.3757, 7.3758, 7.3771, 7.3768, 7.3768, 7.3767, 7.3763, 7.3759, 7.3756, 7.3752, 7.3749, 7.3745, 7.3743, 7.3739, 7.3735, 7.3731, 7.3727, 7.3734, 7.373, 7.3726, 7.3733, 7.3752, 7.3753, 7.3751, 7.3747, 7.3743, 7.3739, 7.3745, 7.3741, 7.3737, 7.3733, 7.3731, 7.3727, 7.3723, 7.3719, 7.3716, 7.3712, 7.3699, 7.3706, 7.3702, 7.3719, 7.3718, 7.3715, 7.3702, 7.3699, 7.3695, 7.3692, 7.3716, 7.3723, 7.372, 7.3716, 7.3713, 7.371, 7.3706, 7.3704, 7.3701, 7.3697, 7.3704, 7.37, 7.3698, 7.3704, 7.37, 7.3706, 7.3704, 7.3711, 7.3709, 7.3708, 7.3705, 7.3701, 7.3709, 7.3707, 7.3715, 7.3712, 7.3719, 7.3715, 7.3722, 7.3742, 7.3738, 7.3735, 7.3742, 7.3738, 7.3744, 7.3742, 7.3739, 7.3745, 7.3742, 7.3739, 7.3735, 7.3738, 7.3736, 7.3753, 7.3754, 7.3751, 7.3749, 7.3746, 7.3743, 7.3749, 7.375, 7.374, 7.3737, 7.3749, 7.3745, 7.3752, 7.3801, 7.3797, 7.3793, 7.3789, 7.3785, 7.3781, 7.3777, 7.3774, 7.378, 7.3777, 7.3784, 7.3816, 7.3819, 7.3819, 7.3816, 7.3812, 7.3809, 7.3816, 7.3833, 7.3831, 7.3839, 7.3837, 7.3834, 7.3843, 7.3841, 7.3848, 7.3875, 7.3871, 7.3868, 7.3874, 7.3871, 7.3868, 7.3864, 7.3853, 7.3849, 7.3856, 7.3862, 7.3858, 7.3854, 7.3851, 7.3848, 7.3845, 7.3841, 7.3839, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.3807, 7.3806, 7.3813, 7.382, 7.3827, 7.3823, 7.383, 7.3837, 7.3833, 7.3829, 7.3825, 7.3841, 7.3838, 7.3834, 7.3831, 7.3827, 7.3823, 7.382, 7.3829, 7.3827, 7.3834, 7.383, 7.3839, 7.3836, 7.3849, 7.3849, 7.3847, 7.3855, 7.3853, 7.3862, 7.386, 7.3859, 7.3855, 7.3856, 7.3852, 7.385, 7.3847, 7.3844, 7.384, 7.3837, 7.3834, 7.3831, 7.3828, 7.3825, 7.3823, 7.3822, 7.3819, 7.3806, 7.3802, 7.3799, 7.3817, 7.3824, 7.3821, 7.3817, 7.3808, 7.3806, 7.3802, 7.3799, 7.3796, 7.3793, 7.379, 7.3787, 7.3793, 7.379, 7.3786, 7.3774, 7.3771, 7.3777, 7.3783, 7.3789, 7.3795, 7.3791, 7.3788, 7.3794, 7.3791, 7.3787, 7.3783, 7.3793, 7.3799, 7.3796, 7.3792, 7.3801, 7.3799, 7.3797, 7.3794, 7.3792, 7.3799, 7.3795, 7.3802, 7.3809, 7.3807, 7.3814, 7.3821, 7.3828, 7.3824, 7.3831, 7.3829, 7.3825, 7.3821, 7.3817, 7.3823, 7.3819, 7.3816, 7.3813, 7.3809, 7.3805, 7.3804, 7.38, 7.381, 7.3834, 7.3833, 7.3841, 7.3838, 7.3834, 7.383, 7.3828, 7.3824, 7.3822, 7.3819, 7.3818, 7.3824, 7.3821, 7.3827, 7.3824, 7.382, 7.3817, 7.3824, 7.382, 7.3817, 7.3815, 7.3821, 7.3827, 7.3824, 7.382, 7.3826, 7.3823, 7.3821, 7.3818, 7.3835, 7.3832, 7.3838, 7.3835, 7.3833, 7.383, 7.3827, 7.3823, 7.3819, 7.3844, 7.3841, 7.3844, 7.385, 7.3848, 7.3854, 7.385, 7.3846, 7.3865, 7.3861, 7.3858, 7.3854, 7.385, 7.3847, 7.3845, 7.3842, 7.383, 7.3827, 7.3833, 7.383, 7.3828, 7.3826, 7.3824, 7.3831, 7.3828, 7.3837, 7.3833, 7.3829, 7.3828, 7.3825, 7.3823, 7.382, 7.3827, 7.3825, 7.3826, 7.3824, 7.3821, 7.3818, 7.3815, 7.3812, 7.3811, 7.3809, 7.3806, 7.3803, 7.381, 7.3808, 7.3815, 7.3812, 7.381, 7.3816, 7.3812, 7.3809, 7.3806, 7.3804, 7.38, 7.3796, 7.3794, 7.3791, 7.3802, 7.3807, 7.3813, 7.381, 7.3798, 7.3786, 7.3783, 7.379, 7.3786, 7.3783, 7.3789, 7.3787, 7.3783, 7.378, 7.3789, 7.3789, 7.3786, 7.3783, 7.3795, 7.3792, 7.3788, 7.3786, 7.3792, 7.3789, 7.3785, 7.3782, 7.3808, 7.3837, 7.3833, 7.3839, 7.3836, 7.3833, 7.383, 7.3837, 7.3827, 7.3817, 7.3814, 7.3821, 7.3818, 7.3816, 7.3814, 7.382, 7.3816, 7.3814, 7.381, 7.3808, 7.3805, 7.3803, 7.3801, 7.3798, 7.3795, 7.3794, 7.3791, 7.3798, 7.3795, 7.3791, 7.3788, 7.3786, 7.3782, 7.3779, 7.3775, 7.3781, 7.3783, 7.3779, 7.3787, 7.3783, 7.378, 7.3776, 7.3773, 7.377, 7.3767, 7.3773, 7.3772, 7.3802, 7.38, 7.3807, 7.3795, 7.3802, 7.3799, 7.3798, 7.3795, 7.3793, 7.379, 7.3787, 7.3784, 7.378, 7.3776, 7.3772, 7.3769, 7.3766, 7.3763, 7.376, 7.3756, 7.3762, 7.3759, 7.3763, 7.3759, 7.3756, 7.3753, 7.3759, 7.3756, 7.3752, 7.3759, 7.3758, 7.3755, 7.3754, 7.3752, 7.3749, 7.3746, 7.3743, 7.374, 7.3737, 7.3733, 7.3739, 7.3736, 7.3733, 7.374, 7.3746, 7.3742, 7.3739, 7.3736, 7.3742, 7.3739, 7.3745, 7.3741, 7.3738, 7.3744, 7.374, 7.3738, 7.3735, 7.3732, 7.3728, 7.3734, 7.3741, 7.3739, 7.3736, 7.3735, 7.3741, 7.3738, 7.3735, 7.3732, 7.3729, 7.3717, 7.3714, 7.372, 7.3717, 7.3715, 7.3712, 7.3718, 7.3715, 7.3712, 7.3718, 7.3715, 7.3712, 7.371, 7.3707, 7.3733, 7.373, 7.3727, 7.3724, 7.3721, 7.3718, 7.3716, 7.3721, 7.3717, 7.3714, 7.372, 7.3716, 7.3713, 7.371, 7.3708, 7.3705, 7.3702, 7.3718, 7.3717, 7.373, 7.3731, 7.3719, 7.3716, 7.3714, 7.3711, 7.3708, 7.3714, 7.3721, 7.3719, 7.3717, 7.3722, 7.3722, 7.3719, 7.3725, 7.3723, 7.3729, 7.3725, 7.3721, 7.3718, 7.3707, 7.3704, 7.3705, 7.3702, 7.3708, 7.3708, 7.3715, 7.3713, 7.3719, 7.3716, 7.3713, 7.371, 7.3707, 7.3713, 7.3709, 7.3715, 7.3713, 7.3711, 7.3707, 7.3704, 7.3701, 7.3707, 7.3713, 7.371, 7.3706, 7.3703, 7.37, 7.3696, 7.3693, 7.3689, 7.3686, 7.3683, 7.3688, 7.3685, 7.3682, 7.3679, 7.3676, 7.3673, 7.3669, 7.3666, 7.3681, 7.3687, 7.3684, 7.368, 7.3677, 7.3684, 7.369, 7.3696, 7.3686, 7.3684, 7.3689, 7.3695, 7.3693, 7.3689, 7.3686, 7.3692, 7.3689, 7.3686, 7.3683, 7.368, 7.3678, 7.3674, 7.3672, 7.368, 7.3678, 7.3676, 7.3673, 7.3676, 7.3682, 7.3679, 7.3676, 7.3673, 7.368, 7.3687, 7.3701, 7.3708, 7.3706, 7.3703, 7.37, 7.3697, 7.3703, 7.37, 7.3697, 7.3703, 7.3701, 7.3698, 7.3695, 7.3701, 7.3708, 7.3705, 7.3701, 7.3698, 7.3705, 7.3702, 7.3699, 7.3705, 7.3777, 7.3788, 7.3788, 7.3785, 7.38, 7.3797, 7.3794, 7.3791, 7.3813, 7.3811, 7.3812, 7.381, 7.3816, 7.3813, 7.3819, 7.3816, 7.3822, 7.3819, 7.3816, 7.3813, 7.381, 7.3808, 7.3806, 7.3803, 7.38, 7.3806, 7.3812, 7.3809, 7.3808, 7.3805, 7.3811, 7.3808, 7.3805, 7.3811, 7.3816, 7.3822, 7.3828, 7.3833, 7.383, 7.3829, 7.3826, 7.3839, 7.3844, 7.3841, 7.3847, 7.3843, 7.3843, 7.3855, 7.3853, 7.385, 7.3847, 7.3844, 7.3841, 7.3838, 7.3835, 7.3833, 7.383, 7.3827, 7.3825, 7.3823, 7.383, 7.3827, 7.3824, 7.3821, 7.3819, 7.3816, 7.3813, 7.381, 7.3815, 7.3821, 7.3828, 7.3825, 7.3823, 7.3831, 7.3837, 7.3834, 7.384, 7.3846, 7.3843, 7.384, 7.3837, 7.3843, 7.3841, 7.3847, 7.3853, 7.3851, 7.3848, 7.3854, 7.3851, 7.3847, 7.3853, 7.385, 7.3856, 7.3852, 7.3849, 7.3854, 7.385, 7.3839, 7.3836, 7.3834, 7.384, 7.3848, 7.3846, 7.3843, 7.3849, 7.3854, 7.3852, 7.3841, 7.3837, 7.3834, 7.384, 7.3837, 7.3846, 7.3853, 7.3851, 7.3849, 7.3855, 7.3853, 7.385, 7.3848, 7.3845, 7.3842, 7.3839, 7.3836, 7.3833, 7.3838, 7.3834, 7.3833, 7.3839, 7.3836, 7.3833, 7.383, 7.3836, 7.3832, 7.3838, 7.3845, 7.3841, 7.3837, 7.3826, 7.3832, 7.3829, 7.3835, 7.3832, 7.3831, 7.3828, 7.3827, 7.3824, 7.3829, 7.3826, 7.3823, 7.3821, 7.3834, 7.3882, 7.3879, 7.3876, 7.3873, 7.3871, 7.3868, 7.3874, 7.3871, 7.3892, 7.3889, 7.3886, 7.3884, 7.3881, 7.3878, 7.3867, 7.3856, 7.3862, 7.385, 7.3847, 7.3844, 7.3842, 7.3851, 7.3856, 7.3853, 7.385, 7.3847, 7.3854, 7.3852, 7.3849, 7.3846, 7.3843, 7.3857, 7.3846, 7.3843, 7.3841, 7.3838, 7.3836, 7.3833, 7.3831, 7.3828, 7.3838, 7.3835, 7.3833, 7.3829, 7.3827, 7.3824, 7.3822, 7.382, 7.3818, 7.3816, 7.3814, 7.3803, 7.3795, 7.3792, 7.379, 7.3787, 7.3794, 7.3791, 7.3789, 7.3786, 7.3783, 7.378, 7.3778, 7.3775, 7.3772, 7.3777, 7.3773, 7.377, 7.3767, 7.3764, 7.377, 7.3767, 7.3764, 7.3761, 7.3758, 7.3755, 7.376, 7.378, 7.3786, 7.3785, 7.3792, 7.3792, 7.3789, 7.3787, 7.3793, 7.379, 7.3788, 7.3786, 7.3783, 7.3789, 7.3787, 7.3784, 7.3792, 7.3798, 7.3796, 7.3807, 7.3796, 7.3793, 7.3784, 7.3784, 7.3789, 7.3786, 7.3783, 7.3772, 7.3776, 7.3775, 7.3773, 7.377, 7.3768, 7.3766, 7.3797, 7.3797, 7.3795, 7.3792, 7.3789, 7.3795, 7.3792, 7.3789, 7.3795, 7.3792, 7.3791, 7.379, 7.3787, 7.3784, 7.3789, 7.3786, 7.3783, 7.3781, 7.3779, 7.3776, 7.3774, 7.3763, 7.376, 7.3758, 7.3765, 7.3762, 7.376, 7.3757, 7.3754, 7.3752, 7.376, 7.3757, 7.3754, 7.3751, 7.3749, 7.3746, 7.3743, 7.3742, 7.3739, 7.3736, 7.3734, 7.3731, 7.3737, 7.3735, 7.374, 7.3738, 7.3735, 7.3732, 7.3729, 7.3726, 7.3723, 7.3727, 7.3725, 7.3722, 7.372, 7.3718, 7.3718, 7.3716, 7.3722, 7.3719, 7.3726, 7.3723, 7.372, 7.3717, 7.3714, 7.3712, 7.3701, 7.369, 7.3687, 7.3685, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3673, 7.3662, 7.3684, 7.3689, 7.3686, 7.3683, 7.368, 7.3677, 7.3674, 7.3672, 7.3677, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3677, 7.3682, 7.3679, 7.3676, 7.3673, 7.3678, 7.3684, 7.3681, 7.3687, 7.3693, 7.369, 7.3696, 7.3693, 7.3696, 7.3693, 7.3691, 7.3697, 7.3703, 7.3701, 7.3699, 7.3713, 7.371, 7.3699, 7.3721, 7.3744, 7.3741, 7.3738, 7.3735, 7.3724, 7.3721, 7.3718, 7.3715, 7.3712, 7.3709, 7.3707, 7.3712, 7.371, 7.3707, 7.3704, 7.371, 7.3716, 7.3715, 7.372, 7.3717, 7.3714, 7.3711, 7.3708, 7.3706, 7.3703, 7.37, 7.3697, 7.3694, 7.3691, 7.3696, 7.3702, 7.3699, 7.3705, 7.3702, 7.37, 7.3706, 7.3695, 7.3701, 7.3707, 7.3705, 7.3703, 7.37, 7.3697, 7.3695, 7.3692, 7.3697, 7.3694, 7.3691, 7.3697, 7.3702, 7.3699, 7.3696, 7.3693, 7.3691, 7.3696, 7.3694, 7.3691, 7.3689, 7.3687, 7.3684, 7.3681, 7.3678, 7.3675, 7.3673, 7.367, 7.3675, 7.3672, 7.3669, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3659, 7.3656, 7.3653, 7.365, 7.3647, 7.3645, 7.3653, 7.3651, 7.3648, 7.3654, 7.3651, 7.3648, 7.3645, 7.3645, 7.3651, 7.3649, 7.3646, 7.3643, 7.364, 7.3645, 7.3642, 7.3639, 7.3636, 7.3633, 7.3639, 7.3645, 7.3642, 7.3631, 7.3629, 7.3635, 7.3641, 7.3638, 7.3635, 7.3632, 7.3629, 7.3635, 7.3632, 7.3629, 7.3626, 7.3623, 7.3628, 7.3633, 7.3639, 7.3637, 7.3634, 7.364, 7.3646, 7.3643, 7.3649, 7.3655, 7.3661, 7.3666, 7.3672, 7.3677, 7.3691, 7.3697, 7.3694, 7.3691, 7.3697, 7.3703, 7.3701, 7.3707, 7.3704, 7.3703, 7.3701, 7.3703, 7.37, 7.3697, 7.3703, 7.37, 7.3697, 7.3694, 7.3683, 7.3682, 7.3679, 7.3693, 7.369, 7.3687, 7.3684, 7.3682, 7.3687, 7.3684, 7.3681, 7.3686, 7.3683, 7.3732, 7.3729, 7.3726, 7.3723, 7.3729, 7.3735, 7.3732, 7.3729, 7.3726, 7.3724, 7.3721, 7.3718, 7.3715, 7.3712, 7.3717, 7.3714, 7.3711, 7.3716, 7.3713, 7.3719, 7.3724, 7.3722, 7.3711, 7.3708, 7.3705, 7.3702, 7.3708, 7.3708, 7.3705, 7.3702, 7.3699, 7.3705, 7.371, 7.3707, 7.3713, 7.371, 7.3715, 7.3712, 7.371, 7.3707, 7.3712, 7.3716, 7.3713, 7.371, 7.3715, 7.3729, 7.3727, 7.3725, 7.3733, 7.3747, 7.3753, 7.3752, 7.3751, 7.3757, 7.3747, 7.3746, 7.3744, 7.3749, 7.3746, 7.3751, 7.3748, 7.3746, 7.3745, 7.3742, 7.3747, 7.3745, 7.3742, 7.3748, 7.3762, 7.3772, 7.377, 7.3767, 7.3773, 7.3778, 7.3768, 7.3766, 7.3764, 7.3762, 7.3759, 7.3773, 7.377, 7.3768, 7.3781, 7.3778, 7.3792, 7.3789, 7.3794, 7.3791, 7.3796, 7.3818, 7.3815, 7.3812, 7.3811, 7.3808, 7.3805, 7.3802, 7.3808, 7.3806, 7.3812, 7.3809, 7.3806, 7.3803, 7.38, 7.3814, 7.3819, 7.3824, 7.3821, 7.3818, 7.3815, 7.3826, 7.3823, 7.3828, 7.3833, 7.383, 7.3827, 7.3826, 7.3824, 7.3821, 7.3818, 7.3823, 7.3836, 7.3836, 7.3833, 7.3838, 7.3835, 7.3833, 7.3834, 7.3865, 7.387, 7.3875, 7.3881, 7.3886, 7.3883, 7.388, 7.3878, 7.3875, 7.3873, 7.3871, 7.3874, 7.388, 7.3877, 7.3874, 7.3871, 7.3878, 7.3875, 7.3872, 7.3878, 7.3867, 7.3864, 7.3862, 7.3867, 7.3872, 7.3877, 7.3882, 7.3879, 7.3884, 7.3881, 7.3878, 7.3883, 7.3889, 7.3886, 7.3891, 7.3881, 7.3894, 7.3891, 7.3891, 7.3889, 7.3898, 7.3896, 7.3901, 7.3899, 7.3896, 7.3893, 7.3899, 7.3904, 7.3902, 7.3891, 7.3889, 7.3886, 7.3892, 7.3897, 7.3895, 7.3892, 7.3897, 7.3903, 7.39, 7.3897, 7.3902, 7.3907, 7.3912, 7.3909, 7.3907, 7.3912, 7.3909, 7.3906, 7.3903, 7.3901, 7.3906, 7.3904, 7.3901, 7.3898, 7.3903, 7.39, 7.3897, 7.3903, 7.39, 7.3912, 7.391, 7.3908, 7.3925, 7.3935, 7.3933, 7.393, 7.3935, 7.3934, 7.3932, 7.393, 7.3928, 7.3925, 7.393, 7.3935, 7.3925, 7.3923, 7.3943, 7.3948, 7.3953, 7.395, 7.3947, 7.3944, 7.3941, 7.3946, 7.3943, 7.3948, 7.3954, 7.3944, 7.3941, 7.3946, 7.3943, 7.3948, 7.3945, 7.395, 7.3947, 7.3944, 7.3942, 7.3972, 7.3969, 7.3974, 7.3971, 7.3976, 7.3973, 7.3978, 7.3983, 7.4004, 7.4024, 7.4029, 7.4034, 7.4056, 7.407, 7.4068, 7.4073, 7.407, 7.4076, 7.4081, 7.4094, 7.4084, 7.4081, 7.4079, 7.4101, 7.4098, 7.4103, 7.41, 7.4098, 7.4095, 7.4093, 7.4098, 7.4096, 7.4102, 7.4107, 7.4105, 7.411, 7.4115, 7.4112, 7.4109, 7.4106, 7.4104, 7.4101, 7.4099, 7.4097, 7.4086, 7.4084, 7.4081, 7.4086, 7.4099, 7.4104, 7.4102, 7.4099, 7.4096, 7.4093, 7.4106, 7.4103, 7.41, 7.4098, 7.4103, 7.4101, 7.4099, 7.4104, 7.4109, 7.4115, 7.412, 7.4125, 7.4115, 7.412, 7.4125, 7.4122, 7.4127, 7.4124, 7.4121, 7.4118, 7.4116, 7.4113, 7.4118, 7.4115, 7.4112, 7.411, 7.4107, 7.4105, 7.4102, 7.4107, 7.4105, 7.4111, 7.4108, 7.41, 7.4097, 7.4095, 7.4095, 7.4093, 7.409, 7.4088, 7.4086, 7.4084, 7.4082, 7.4079, 7.4076, 7.4081, 7.4071, 7.4076, 7.4081, 7.4078, 7.4083, 7.4081, 7.4094, 7.4091, 7.4088, 7.4085, 7.4082, 7.4087, 7.41, 7.4098, 7.4095, 7.4094, 7.4091, 7.4089, 7.4086, 7.4091, 7.4096, 7.4101, 7.4106, 7.4103], '192.168.122.111': [5.3339, 5.4059, 5.393, 6.5203, 7.4765, 7.1212, 6.8821, 6.7422, 6.712, 6.5917, 6.5117, 6.8683, 6.7552, 6.7003, 6.6449, 6.5723, 6.4972, 6.4645, 6.4447, 6.4346, 6.1566, 6.1149, 5.8725, 5.8481, 6.1813, 6.1599, 6.1344, 6.1259, 6.2881, 6.2733, 6.2701, 6.2507, 6.3853, 6.3679, 6.3551, 6.3459, 6.4649, 6.4514, 6.6178, 6.8606, 6.8429, 6.8121, 7.0325, 7.0313, 7.004, 7.0881, 7.234, 7.1995, 7.16, 7.1307, 7.098, 7.0656, 7.034, 7.0075, 7.1754, 7.2371, 7.228, 7.2009, 7.1702, 7.1381, 7.1085, 7.097, 7.0713, 7.0466, 7.0408, 7.0332, 7.011, 6.9864, 7.0427, 7.0348, 7.0272, 7.0052, 7.0905, 7.0736, 7.1236, 7.2431, 7.2849, 7.202, 7.199, 7.3111, 7.2891, 7.3334, 7.3101, 7.2858, 7.3399, 7.3251, 7.3284, 7.372, 7.4177, 7.4336, 7.4102, 7.4151, 7.4012, 7.5045, 7.6467, 7.633, 7.6114, 7.6012, 7.6311, 7.6141, 7.594, 7.5726, 7.5627, 7.5483, 7.6255, 7.6176, 7.6461, 7.631, 7.6191, 7.7034, 7.6851, 7.6685, 7.7074, 7.688, 7.6679, 7.6101, 7.6006, 7.6079, 7.5897, 7.6217, 7.6497, 7.6309, 7.6205, 7.6016, 7.5895, 7.5773, 7.5278, 7.5146, 7.4997, 7.4826, 7.4759, 7.541, 7.5358, 7.5201, 7.5471, 7.5433, 7.5293, 7.5166, 7.5034, 7.4886, 7.4843, 7.5058, 7.5273, 7.5123, 7.4997, 7.4871, 7.5068, 7.5301, 7.5433, 7.5331, 7.5334, 7.5533, 7.5737, 7.5603, 7.546, 7.5325, 7.5206, 7.5416, 7.5313, 7.5186, 7.507, 7.4987, 7.4852, 7.5396, 7.6801, 7.6695, 7.6631, 7.6536, 7.6429, 7.6059, 7.6244, 7.612, 7.5988, 7.586, 7.5768, 7.5686, 7.5596, 7.5509, 7.5384, 7.5561, 7.5454, 7.5347, 7.5255, 7.5562, 7.5439, 7.5337, 7.5227, 7.5122, 7.5014, 7.4899, 7.4851, 7.4749, 7.4926, 7.4973, 7.4865, 7.476, 7.4931, 7.4857, 7.4755, 7.467, 7.4837, 7.4993, 7.4894, 7.4788, 7.468, 7.4586, 7.4511, 7.441, 7.4314, 7.4215, 7.4357, 7.4279, 7.3969, 7.3965, 7.3885, 7.3833, 7.4214, 7.4348, 7.4473, 7.4219, 7.449, 7.439, 7.4322, 7.4234, 7.393, 7.3857, 7.3784, 7.3737, 7.3965, 7.3927, 7.3834, 7.3781, 7.3965, 7.3884, 7.3812, 7.3745, 7.3895, 7.3823, 7.3965, 7.3892, 7.3846, 7.3768, 7.3702, 7.3619, 7.3537, 7.3469, 7.3393, 7.3322, 7.3272, 7.343, 7.3347, 7.328, 7.3429, 7.3345, 7.329, 7.3212, 7.3186, 7.3126, 7.3063, 7.3189, 7.3139, 7.3275, 7.3438, 7.3588, 7.3524, 7.3458, 7.3607, 7.3537, 7.3496, 7.346, 7.3397, 7.3328, 7.3263, 7.3209, 7.3147, 7.311, 7.3046, 7.3183, 7.3129, 7.3119, 7.3124, 7.3064, 7.3604, 7.3565, 7.333, 7.3266, 7.3192, 7.3126, 7.3268, 7.3212, 7.3526, 7.3821, 7.381, 7.394, 7.3887, 7.3829, 7.3778, 7.3715, 7.3657, 7.3861, 7.4159, 7.4089, 7.4018, 7.4116, 7.4043, 7.3976, 7.3926, 7.3862, 7.3683, 7.3628, 7.3562, 7.3532, 7.3469, 7.3414, 7.336, 7.3297, 7.323, 7.3172, 7.3282, 7.3077, 7.3033, 7.298, 7.2922, 7.2713, 7.2663, 7.2768, 7.2712, 7.2654, 7.2597, 7.2538, 7.2481, 7.2426, 7.237, 7.2487, 7.2295, 7.2238, 7.218, 7.2127, 7.2079, 7.2029, 7.1977, 7.2081, 7.203, 7.1976, 7.1926, 7.1884, 7.1875, 7.1982, 7.2094, 7.2203, 7.215, 7.2499, 7.2497, 7.2471, 7.2416, 7.2365, 7.2313, 7.2409, 7.2358, 7.2309, 7.2408, 7.2368, 7.2468, 7.2421, 7.2372, 7.232, 7.2279, 7.2236, 7.2194, 7.2151, 7.212, 7.2067, 7.2309, 7.2273, 7.2253, 7.2077, 7.2165, 7.199, 7.1941, 7.1893, 7.213, 7.2232, 7.218, 7.2274, 7.2366, 7.2319, 7.2272, 7.2225, 7.218, 7.2157, 7.2116, 7.207, 7.2031, 7.1985, 7.1948, 7.1898, 7.1731, 7.1684, 7.164, 7.1597, 7.169, 7.166, 7.1624, 7.1581, 7.1538, 7.1494, 7.1581, 7.1669, 7.1623, 7.1587, 7.1673, 7.163, 7.1587, 7.1562, 7.165, 7.1616, 7.1596, 7.1682, 7.1642, 7.1491, 7.1447, 7.1414, 7.1371, 7.1327, 7.1174, 7.1151, 7.1238, 7.1202, 7.1158, 7.1117, 7.1151, 7.1111, 7.1199, 7.1171, 7.1257, 7.1332, 7.1416, 7.1376, 7.1338, 7.1325, 7.1288, 7.1259, 7.1222, 7.1186, 7.1147, 7.1226, 7.1544, 7.1956, 7.1919, 7.1889, 7.1962, 7.2043, 7.2002, 7.1962, 7.198, 7.2268, 7.2352, 7.255, 7.2509, 7.2471, 7.2428, 7.2389, 7.2348, 7.2309, 7.227, 7.2226, 7.2187, 7.2149, 7.2114, 7.2077, 7.2037, 7.2, 7.1988, 7.1952, 7.2028, 7.2104, 7.2073, 7.2035, 7.2048, 7.2019, 7.2023, 7.1885, 7.2074, 7.2039, 7.2008, 7.1991, 7.1961, 7.2034, 7.1994, 7.1956, 7.2027, 7.2096, 7.2118, 7.2078, 7.2045, 7.2125, 7.2103, 7.2074, 7.2042, 7.211, 7.219, 7.2269, 7.2343, 7.2413, 7.2393, 7.2364, 7.233, 7.2295, 7.2265, 7.2342, 7.2307, 7.2273, 7.2246, 7.238, 7.2466, 7.2433, 7.2503, 7.2466, 7.243, 7.2501, 7.2466, 7.2528, 7.2508, 7.2577, 7.2639, 7.2703, 7.2682, 7.2751, 7.282, 7.2885, 7.2954, 7.2933, 7.3019, 7.3031, 7.2995, 7.296, 7.2943, 7.2923, 7.2898, 7.2862, 7.2925, 7.2901, 7.3079, 7.3142, 7.3211, 7.328, 7.3249, 7.3221, 7.3419, 7.3387, 7.3457, 7.3426, 7.3394, 7.3463, 7.3432, 7.3396, 7.3377, 7.3435, 7.3405, 7.3462, 7.3525, 7.3581, 7.3547, 7.3514, 7.3621, 7.3585, 7.3552, 7.3517, 7.3659, 7.3724, 7.3787, 7.3764, 7.3825, 7.3791, 7.376, 7.3727, 7.3693, 7.3657, 7.3627, 7.3602, 7.3569, 7.3543, 7.3597, 7.3655, 7.363, 7.37, 7.3768, 7.3735, 7.3703, 7.3676, 7.3734, 7.3878, 7.3783, 7.3788, 7.3873, 7.384, 7.3806, 7.3778, 7.3749, 7.3752, 7.4074, 7.4042, 7.3947, 7.4014, 7.3984, 7.3992, 7.3929, 7.3914, 7.388, 7.3847, 7.3815, 7.3781, 7.3756, 7.373, 7.3783, 7.3749, 7.3729, 7.3697, 7.3668, 7.3745, 7.3799, 7.3766, 7.3731, 7.3781, 7.3832, 7.3813, 7.3785, 7.3836, 7.3887, 7.3856, 7.3832, 7.3801, 7.3953, 7.408, 7.4096, 7.4156, 7.4128, 7.4096, 7.4068, 7.4121, 7.4182, 7.417, 7.416, 7.4129, 7.4102, 7.4067, 7.4052, 7.4111, 7.4085, 7.4066, 7.4039, 7.4019, 7.3992, 7.3968, 7.3938, 7.3911, 7.3884, 7.3893, 7.3878, 7.3854, 7.3822, 7.3875, 7.3845, 7.3813, 7.3789, 7.3767, 7.3754, 7.3729, 7.3789, 7.376, 7.3738, 7.38, 7.3853, 7.3839, 7.389, 7.3861, 7.383, 7.3842, 7.3813, 7.3783, 7.3755, 7.373, 7.3712, 7.3686, 7.3586, 7.349, 7.3462, 7.3431, 7.3406, 7.3377, 7.3368, 7.3346, 7.3321, 7.3296, 7.3271, 7.3326, 7.33, 7.328, 7.3191, 7.3163, 7.3147, 7.3118, 7.309, 7.3061, 7.3066, 7.307600000000001, 7.3063, 7.307300000000001, 7.3057, 7.3038, 7.2956, 7.2937, 7.2988, 7.296, 7.2953, 7.3305, 7.3388, 7.3432, 7.3483, 7.3833, 7.381, 7.3715, 7.3695, 7.3684, 7.3733, 7.3707, 7.3679, 7.3651, 7.3699, 7.368, 7.3725, 7.3705, 7.3677, 7.3652, 7.3624, 7.3614, 7.359, 7.3564, 7.3536, 7.3512, 7.3484, 7.3465, 7.3439, 7.3412, 7.3387, 7.339700000000001, 7.340700000000001, 7.3381, 7.3434, 7.3408, 7.3382, 7.3361, 7.3334, 7.3381, 7.3428, 7.3401, 7.3449, 7.3491, 7.3465, 7.3511, 7.3769, 7.3753, 7.3739, 7.3784, 7.3829, 7.3802, 7.3786, 7.377, 7.3784, 7.3771, 7.3813, 7.3795, 7.3767, 7.3741, 7.3837, 7.3822, 7.3802, 7.3777, 7.3844, 7.3824, 7.3802, 7.3715, 7.3688, 7.3744, 7.3721, 7.3698, 7.3746, 7.3724, 7.3699, 7.3675, 7.372, 7.3697, 7.3682, 7.373, 7.3846, 7.3841, 7.3882, 7.3862, 7.3835, 7.381, 7.3785, 7.3759, 7.374, 7.378, 7.3911, 7.3893, 7.3868, 7.3909, 7.3885, 7.3876, 7.3853, 7.383, 7.3806, 7.3791, 7.3771, 7.3747, 7.3891, 7.3936, 7.3855, 7.3829, 7.3816, 7.3802, 7.3778, 7.3753, 7.3736, 7.3714, 7.3689, 7.3665, 7.364, 7.3618, 7.3659, 7.3635, 7.3612, 7.3607, 7.3583, 7.3624, 7.3607, 7.3583, 7.3625, 7.3601, 7.3587, 7.3568, 7.3544, 7.3525, 7.3565, 7.3612, 7.3592, 7.3571, 7.3554, 7.3534, 7.3571, 7.3552, 7.3534, 7.3577, 7.3553, 7.3535, 7.3579, 7.3555, 7.3591, 7.3567, 7.3543, 7.3533, 7.3517, 7.3555, 7.3592, 7.3567, 7.3575, 7.3557, 7.3753, 7.373, 7.3721, 7.376, 7.3743, 7.3724, 7.3704, 7.369, 7.3732, 7.3771, 7.3747, 7.3725, 7.3707, 7.3699, 7.3676, 7.3664, 7.3649, 7.3687, 7.3725, 7.3706, 7.3683, 7.379, 7.3773, 7.375, 7.373, 7.3719, 7.3705, 7.3683, 7.3609, 7.3645, 7.3624, 7.3603, 7.3581, 7.3564, 7.3543, 7.3581, 7.3618, 7.3671, 7.3649, 7.3634, 7.3612, 7.365, 7.3628, 7.3623, 7.3611, 7.359, 7.3578, 7.3566, 7.3506, 7.3608, 7.3597, 7.3663, 7.3649, 7.3687, 7.3667, 7.365, 7.3628, 7.3682, 7.3661, 7.3644, 7.3624, 7.3606, 7.3592, 7.3575, 7.3563, 7.3543, 7.3522, 7.3504, 7.3483, 7.3517, 7.3497, 7.3647, 7.3743, 7.3727, 7.371, 7.3698, 7.3677, 7.3656, 7.3693, 7.3731, 7.371, 7.3689, 7.3667, 7.3706, 7.3685, 7.378, 7.376, 7.3793, 7.3778, 7.3763, 7.375, 7.373, 7.3740000000000006, 7.3778, 7.3777, 7.3763, 7.3709, 7.3873, 7.3854, 7.391, 7.4003, 7.4042, 7.4029, 7.401, 7.405, 7.3979, 7.3958, 7.3994, 7.398, 7.3967, 7.3953, 7.4006, 7.4044, 7.4023, 7.4012, 7.3998, 7.3978, 7.3964, 7.4062, 7.4049, 7.4082, 7.4062, 7.4057, 7.4044, 7.4022, 7.4007, 7.3987, 7.3974, 7.3963, 7.4001, 7.4096, 7.4127, 7.4198, 7.4138, 7.4118, 7.4152, 7.4149, 7.4136, 7.4117, 7.4313, 7.4312, 7.4293, 7.4275, 7.4309, 7.4344, 7.4437, 7.4427, 7.4476, 7.4466, 7.4501, 7.4484, 7.453, 7.4523, 7.4509, 7.4497, 7.4578, 7.461, 7.4589, 7.4583, 7.4569, 7.4564, 7.4602, 7.4639, 7.4631, 7.4661, 7.4694, 7.4717, 7.4697, 7.4676, 7.4708, 7.4691, 7.4757, 7.4738, 7.4717, 7.4703, 7.4684, 7.4713, 7.4694, 7.4727, 7.4757, 7.4736, 7.4714, 7.4693, 7.4673, 7.4653, 7.4633, 7.4613, 7.4604, 7.4586, 7.4571, 7.455, 7.4559, 7.4552, 7.4536, 7.4534, 7.4519, 7.4698, 7.4727, 7.4706, 7.4688, 7.4746, 7.4727, 7.4731, 7.4783, 7.4763, 7.4792, 7.4775, 7.4754, 7.4734, 7.4763, 7.4743, 7.478, 7.4764, 7.4747, 7.4781, 7.4763, 7.4742, 7.4772, 7.4806, 7.4755, 7.476, 7.4741, 7.473, 7.4716, 7.4707, 7.4689, 7.4722, 7.4704, 7.4654, 7.4642, 7.463, 7.462, 7.4666, 7.4731, 7.4726, 7.4708, 7.474, 7.4773, 7.4804, 7.4833, 7.4817, 7.4849, 7.4788, 7.4779, 7.481, 7.4795, 7.4779, 7.4774, 7.4808, 7.4791, 7.4737, 7.4765, 7.4749, 7.4733, 7.4713, 7.4743, 7.4723, 7.4706, 7.469, 7.4723, 7.4706, 7.4749, 7.4778, 7.49, 7.4982, 7.4964, 7.4992, 7.4975, 7.4956, 7.4938, 7.4968, 7.4957, 7.4988, 7.4975, 7.5006, 7.5084, 7.5065, 7.5049, 7.5034, 7.5061, 7.5046, 7.5035, 7.5062, 7.5089, 7.507, 7.5052, 7.5037, 7.5018, 7.4999, 7.4985, 7.5021, 7.5002, 7.5028, 7.5057, 7.5047, 7.5037, 7.5068, 7.5058, 7.5042, 7.5024, 7.5006, 7.4992, 7.5081, 7.5065, 7.5006, 7.4989, 7.502, 7.5001, 7.4986, 7.4969, 7.4952, 7.4933, 7.4934, 7.4959, 7.4949, 7.4931, 7.4915, 7.49, 7.4886, 7.4872, 7.4899, 7.4892, 7.4919, 7.4906, 7.4894, 7.4877, 7.4903, 7.4886, 7.4868, 7.4911, 7.4903, 7.4889, 7.4878, 7.4864, 7.4851, 7.4839, 7.4822, 7.4848, 7.4833, 7.4991, 7.4983, 7.5051, 7.5127, 7.5207, 7.5189, 7.5172, 7.5162, 7.5147, 7.5133, 7.5119, 7.5102, 7.5129, 7.5112, 7.514, 7.5129, 7.5115, 7.51, 7.5085, 7.5073, 7.5058, 7.5041, 7.507, 7.5059, 7.5044, 7.5032, 7.5058, 7.5044, 7.5087, 7.5072, 7.5117, 7.5186, 7.5255, 7.5241, 7.5224, 7.5215, 7.5317, 7.5271, 7.5348, 7.545, 7.5446, 7.5471, 7.5456, 7.5516, 7.5555, 7.5758, 7.5784, 7.5812, 7.5852, 7.588, 7.5862, 7.5848, 7.583, 7.5855, 7.584, 7.5825, 7.5807, 7.5789, 7.5777, 7.5801, 7.5787, 7.5776, 7.5761, 7.5748, 7.5731, 7.5713, 7.5743, 7.5768, 7.5752, 7.578, 7.5765, 7.579, 7.5784, 7.5768, 7.5715, 7.574, 7.5723, 7.5748, 7.5746, 7.5728, 7.5752, 7.5854, 7.5838, 7.5863, 7.5847, 7.583, 7.5818, 7.5809, 7.5794, 7.5777, 7.5766, 7.5793, 7.5775, 7.5757, 7.5741, 7.5724, 7.5711, 7.5699, 7.5686, 7.567, 7.5656, 7.5666, 7.5681, 7.5664, 7.5691, 7.5683, 7.5669, 7.5839, 7.5825, 7.5851, 7.5838, 7.5835, 7.5818, 7.5804, 7.579, 7.5804, 7.5791, 7.5816, 7.5805, 7.5792, 7.5776, 7.576, 7.5759, 7.5783, 7.5767, 7.575, 7.5737, 7.5725, 7.5746, 7.5769, 7.5794, 7.5817, 7.5801, 7.5825, 7.5809, 7.5802, 7.5829, 7.5813, 7.5798, 7.5826, 7.5847, 7.5877, 7.5861, 7.5845, 7.5861, 7.5845, 7.5868, 7.5854, 7.5878, 7.5862, 7.5845, 7.5845, 7.583, 7.5861, 7.5863, 7.5851, 7.584, 7.5945, 7.5976, 7.5965, 7.5948, 7.5935, 7.5966, 7.5953, 7.5938, 7.5965, 7.5952, 7.5944, 7.5934, 7.5957, 7.5945, 7.5932, 7.5918, 7.5906, 7.589, 7.5875, 7.586, 7.5847, 7.5839, 7.5825, 7.5814, 7.58, 7.5825, 7.5812, 7.5797, 7.5786, 7.5771, 7.576, 7.5785, 7.5788, 7.5812, 7.5799, 7.5752, 7.5738, 7.5722, 7.5743, 7.5768, 7.5775, 7.5726, 7.5713, 7.5699, 7.5687, 7.5672, 7.5659, 7.5647, 7.5634, 7.5619, 7.5646, 7.5631, 7.5654, 7.5678, 7.5702, 7.569, 7.5674, 7.5698, 7.5723, 7.5718, 7.5743, 7.5732, 7.5716, 7.5702, 7.5688, 7.5708, 7.5696, 7.5684, 7.567, 7.5659, 7.5645, 7.5634, 7.5622, 7.5614, 7.5566, 7.5567, 7.556, 7.5572, 7.5557, 7.5546, 7.5598, 7.5629, 7.5614, 7.5634, 7.5586, 7.557, 7.5688, 7.5642, 7.5633, 7.5625, 7.5663, 7.5648, 7.5632, 7.5655, 7.564, 7.5628, 7.5617, 7.5602, 7.5595, 7.558, 7.5566, 7.5551, 7.5538, 7.5528, 7.5482, 7.5469, 7.549, 7.5514, 7.5539, 7.556, 7.5619, 7.564, 7.5656, 7.5677, 7.5666, 7.5653, 7.5644, 7.563, 7.5618, 7.5603, 7.5589, 7.5611, 7.5596, 7.558, 7.5603, 7.5589, 7.5575, 7.5599, 7.5597, 7.5582, 7.5569, 7.5556, 7.5546, 7.5532, 7.552, 7.5514, 7.5503, 7.5496, 7.5484, 7.5473, 7.5462, 7.5484, 7.5471, 7.5496, 7.5521, 7.5508, 7.5493, 7.5479, 7.5465, 7.5456, 7.5462, 7.5448, 7.5433, 7.5419, 7.5407, 7.5363, 7.5386, 7.5377, 7.5363, 7.5351, 7.5339, 7.5364, 7.5351, 7.5345, 7.5368, 7.5353, 7.5376, 7.5365, 7.5358, 7.5346, 7.5304, 7.5291, 7.5316, 7.5303, 7.5297, 7.5324, 7.5351, 7.5343, 7.5331, 7.5317, 7.5309, 7.5329, 7.5349, 7.5369, 7.5391, 7.538, 7.537, 7.5362, 7.5388, 7.5379, 7.54, 7.5389, 7.5376, 7.54, 7.5389, 7.5381, 7.5403, 7.5391, 7.5378, 7.5364, 7.5385, 7.5372, 7.5363, 7.5352, 7.5378, 7.54, 7.5385, 7.5371, 7.5361, 7.535, 7.5336, 7.5321, 7.5339, 7.5325, 7.5315, 7.5309, 7.5295, 7.5314, 7.5303, 7.5289, 7.5308, 7.53, 7.5286, 7.5274, 7.5261, 7.5249, 7.5206, 7.5227, 7.5214, 7.5206, 7.5198, 7.522, 7.5216, 7.5203, 7.5191, 7.5214, 7.5228, 7.5216, 7.5204, 7.5196, 7.5186, 7.5174, 7.5161, 7.5147, 7.5148, 7.5105, 7.5092, 7.5163, 7.5153, 7.514, 7.5139, 7.5125, 7.5152, 7.5139, 7.5126, 7.5113, 7.5137, 7.5158, 7.5148, 7.519, 7.5211, 7.517, 7.5164, 7.5151, 7.5171, 7.5158, 7.5145, 7.5133, 7.512, 7.5137, 7.516, 7.5149, 7.5172, 7.5164, 7.5249, 7.5235, 7.5222, 7.521, 7.52, 7.5189, 7.5176, 7.5174, 7.516, 7.5151, 7.5142, 7.5129, 7.5282, 7.5272, 7.5266, 7.5259, 7.5246, 7.5265, 7.5256, 7.5244, 7.5264, 7.5224, 7.5243, 7.5233, 7.5253, 7.5245, 7.5233, 7.5219, 7.5206, 7.5196, 7.5187, 7.5178, 7.5205, 7.5193, 7.518, 7.5139, 7.5161, 7.515, 7.514, 7.5126, 7.5115, 7.5102, 7.509, 7.5081, 7.5102, 7.5092, 7.5058, 7.5047, 7.5047, 7.5039, 7.5027, 7.5016, 7.5035, 7.5023, 7.5077, 7.5064, 7.5059, 7.5051, 7.505, 7.5071, 7.5091, 7.5082, 7.5071, 7.5067, 7.5056, 7.5047, 7.5035, 7.5027, 7.5017, 7.5037, 7.4996, 7.5061, 7.5049, 7.5069, 7.5119, 7.5139, 7.5133, 7.5121, 7.514, 7.5128, 7.5148, 7.5165, 7.5153, 7.514, 7.516, 7.5148, 7.5136, 7.5126, 7.5117, 7.5105, 7.5092, 7.5109, 7.5128, 7.5115, 7.5102, 7.5092, 7.508, 7.5069, 7.5057, 7.5049, 7.5042, 7.5061, 7.5051, 7.5039, 7.5058, 7.5048, 7.5036, 7.5054, 7.5045, 7.5041, 7.503, 7.5018, 7.5006, 7.4994, 7.4981, 7.4974, 7.5077, 7.5072, 7.5061, 7.5078, 7.5066, 7.5075, 7.5063, 7.5051, 7.5042, 7.503, 7.5051, 7.5072, 7.5062, 7.5054, 7.5044, 7.5031, 7.5053, 7.5041, 7.5028, 7.5016, 7.5006, 7.4999, 7.499, 7.4978, 7.4995, 7.5014, 7.5002, 7.4993, 7.4981, 7.4972, 7.4938, 7.4927, 7.4924, 7.4946, 7.4936, 7.4925, 7.4916, 7.4936, 7.4925, 7.4916, 7.4904, 7.492, 7.4912, 7.4955, 7.4918, 7.4907, 7.4934, 7.4925, 7.4913, 7.4903, 7.4892, 7.4882, 7.4871, 7.489, 7.4878, 7.4916, 7.4936, 7.4931, 7.4919, 7.491, 7.4928, 7.4917, 7.4914, 7.4904, 7.4898, 7.4892, 7.4884, 7.4884, 7.4874, 7.4864, 7.4882, 7.4881, 7.4945, 7.4937, 7.4928, 7.4927, 7.4947, 7.4937, 7.4928, 7.4958, 7.4979, 7.4968, 7.4957, 7.4948, 7.494, 7.4909, 7.4901, 7.487, 7.486, 7.4878, 7.4867, 7.4836, 7.4825, 7.4876, 7.4955, 7.4946, 7.4965, 7.4956, 7.4945, 7.4939, 7.4929, 7.4925, 7.4938, 7.4928, 7.4924, 7.4952, 7.4944, 7.4933, 7.4954, 7.4959, 7.5028, 7.5112, 7.5101, 7.5093, 7.5095, 7.509, 7.508, 7.5139, 7.5128, 7.5145, 7.5144, 7.5169, 7.5157, 7.5177, 7.5193, 7.5185, 7.5233, 7.531, 7.5301, 7.5291, 7.5293, 7.5338, 7.5326, 7.5316, 7.5332, 7.5368, 7.5384, 7.54, 7.5391, 7.5435, 7.5461, 7.5462, 7.5489, 7.548, 7.5458, 7.5446, 7.5435, 7.5431, 7.5422, 7.5437, 7.5427, 7.5418, 7.5407, 7.549, 7.5481, 7.5474, 7.5496, 7.5487, 7.5503, 7.5522, 7.5513, 7.5533, 7.5551, 7.5544, 7.5559, 7.5548, 7.5564, 7.5564, 7.5554, 7.557, 7.5616, 7.5604, 7.562, 7.5664, 7.5679, 7.5671, 7.5715, 7.5736, 7.5724, 7.5718, 7.5708, 7.5738, 7.5817, 7.5808, 7.5797, 7.5786, 7.5774, 7.5738, 7.5726, 7.5736, 7.5752, 7.5716, 7.5705, 7.5722, 7.5711, 7.57, 7.5689, 7.5681, 7.5679, 7.5696, 7.5697, 7.5726, 7.5719, 7.5708, 7.5698, 7.5713, 7.5702, 7.5693, 7.571, 7.5727, 7.5745, 7.5739, 7.5728, 7.5717, 7.5735, 7.5753, 7.5743, 7.5749, 7.5738, 7.5728, 7.5719, 7.571, 7.5701, 7.569, 7.5716, 7.5706, 7.5696, 7.5687, 7.5745, 7.5794, 7.5783, 7.5755, 7.5868, 7.5981, 7.5972, 7.5965, 7.5964, 7.5955, 7.5947, 7.6023, 7.6087, 7.6115, 7.6107, 7.6127, 7.6122, 7.6143, 7.616, 7.6148, 7.614, 7.6115, 7.6116, 7.6146, 7.6205, 7.6199, 7.6191, 7.6181, 7.617, 7.616, 7.615, 7.614, 7.613, 7.6121, 7.6112, 7.6104, 7.6095, 7.6114, 7.6104, 7.6121, 7.611, 7.6129, 7.6118, 7.6107, 7.6101, 7.6089, 7.6079, 7.6068, 7.6063, 7.6078, 7.6066, 7.6055, 7.6043, 7.6034, 7.606, 7.6026, 7.6042, 7.6032, 7.605, 7.6039, 7.6029, 7.6029, 7.602, 7.6014, 7.6029, 7.6019, 7.6008, 7.5998, 7.597, 7.597, 7.5999, 7.6014, 7.6003, 7.6019, 7.6008, 7.5997, 7.6032, 7.6049, 7.6039, 7.6055, 7.6069, 7.6061, 7.6052, 7.6067, 7.6056, 7.6071, 7.606, 7.6051, 7.6045, 7.6035, 7.6051, 7.6043, 7.6034, 7.6049, 7.6038, 7.608, 7.6069, 7.606, 7.6074, 7.6067, 7.6056, 7.6045, 7.6038, 7.6027, 7.6019, 7.6011, 7.6001, 7.5994, 7.601, 7.6001, 7.5991, 7.5986, 7.5977, 7.5972, 7.5962, 7.5954, 7.5946, 7.5936, 7.5926, 7.5916, 7.5906, 7.5896, 7.5886, 7.5875, 7.5866, 7.5857, 7.5846, 7.5835, 7.5824, 7.5813, 7.5805, 7.5794, 7.5811, 7.5825, 7.584, 7.5831, 7.5847, 7.5839, 7.5828, 7.5843, 7.5832, 7.5846, 7.5864, 7.5853, 7.5845, 7.5859, 7.5872, 7.5863, 7.5881, 7.5896, 7.589, 7.5907, 7.5877, 7.587, 7.586, 7.5853, 7.5844, 7.5835, 7.5825, 7.5817, 7.5857, 7.5846, 7.5862, 7.5852, 7.5847, 7.5845, 7.5869, 7.5863, 7.5853, 7.5843, 7.5834, 7.5825, 7.5815, 7.5829, 7.5824, 7.5814, 7.5804, 7.5771, 7.5761, 7.5753, 7.5743, 7.5711, 7.5702, 7.5692, 7.5685, 7.5674, 7.5689, 7.5681, 7.5675, 7.5712, 7.5704, 7.5696, 7.5686, 7.5704, 7.5696, 7.5689, 7.568, 7.5697, 7.5688, 7.5705, 7.5696, 7.5686, 7.5677, 7.5671, 7.5661, 7.5651, 7.5642, 7.5634, 7.5625, 7.5617, 7.5632, 7.5628, 7.5618, 7.5633, 7.5646, 7.5636, 7.5651, 7.5644, 7.5634, 7.5623, 7.5613, 7.5604, 7.5596, 7.5586, 7.5602, 7.5595, 7.5586, 7.5555, 7.5545, 7.556, 7.5577, 7.5574, 7.5564, 7.5556, 7.557, 7.5576, 7.5566, 7.5557, 7.555, 7.5541, 7.5532, 7.555, 7.5541, 7.5533, 7.5526, 7.5518, 7.5511, 7.5528, 7.5519, 7.5513, 7.5526, 7.5516, 7.5506, 7.5498, 7.55, 7.5491, 7.546, 7.5452, 7.5422, 7.5413, 7.5408, 7.5409, 7.5423, 7.5417, 7.541, 7.54, 7.5394, 7.5385, 7.5377, 7.5393, 7.5387, 7.5378, 7.5368, 7.5383, 7.5374, 7.5367, 7.5358, 7.5349, 7.5364, 7.5355, 7.5346, 7.5337, 7.5334, 7.5324, 7.5317, 7.531, 7.53, 7.5294, 7.5308, 7.5323, 7.5318, 7.5308, 7.53, 7.5291, 7.5285, 7.5276, 7.5268, 7.5282, 7.5277, 7.5267, 7.5281, 7.5275, 7.5302, 7.5362, 7.5352, 7.5347, 7.5339, 7.5335, 7.5349, 7.5394, 7.5387, 7.538, 7.5371, 7.54, 7.5392, 7.5416, 7.543, 7.5445, 7.5485, 7.5499, 7.5491, 7.5483, 7.5477, 7.547, 7.5462, 7.5456, 7.5449, 7.544, 7.5432, 7.5423, 7.5417, 7.541, 7.5403, 7.5417, 7.5407, 7.5398, 7.539, 7.5381, 7.5373, 7.5364, 7.5358, 7.5372, 7.5386, 7.54, 7.5413, 7.5427, 7.5418, 7.5409, 7.54, 7.5391, 7.5381, 7.5374, 7.5365, 7.5355, 7.5351, 7.5346, 7.5358, 7.5349, 7.5342, 7.5356, 7.5347, 7.5338, 7.5329, 7.5322, 7.5313, 7.5327, 7.5323, 7.5314, 7.5305, 7.5296, 7.5288, 7.5302, 7.5296, 7.5287, 7.5281, 7.5275, 7.527, 7.5264, 7.5256, 7.525, 7.5265, 7.5263, 7.5301, 7.5291, 7.5281, 7.5274, 7.5266, 7.5281, 7.5253, 7.5243, 7.5234, 7.5248, 7.5238, 7.5252, 7.5266, 7.5258, 7.5271, 7.5285, 7.5256, 7.5248, 7.524, 7.5232, 7.5222, 7.5214, 7.5206, 7.5199, 7.5192, 7.5163, 7.5177, 7.5171, 7.5164, 7.5155, 7.5145, 7.5139, 7.513, 7.5121, 7.5114, 7.5119, 7.5137, 7.5152, 7.5145, 7.5158, 7.5149, 7.5146, 7.514, 7.5134, 7.5147, 7.5139, 7.513, 7.5121, 7.5112, 7.5109, 7.5139, 7.513, 7.5121, 7.5112, 7.5103, 7.5094, 7.5088, 7.5085, 7.5078, 7.5069, 7.5061, 7.5052, 7.5043, 7.5035, 7.5049, 7.5043, 7.5037, 7.505, 7.5042, 7.5033, 7.5025, 7.5038, 7.5063, 7.5056, 7.5049, 7.5045, 7.5037, 7.5029, 7.5049, 7.5042, 7.5057, 7.505, 7.5041, 7.5077, 7.5069, 7.5061, 7.5052, 7.5065, 7.5056, 7.5048, 7.5039, 7.5035, 7.5074, 7.5074, 7.5066, 7.5057, 7.5048, 7.5045, 7.5039, 7.5081, 7.5073, 7.5067, 7.5061, 7.5052, 7.5043, 7.5039, 7.5049, 7.504, 7.5121, 7.5144, 7.5141, 7.5133, 7.5128, 7.512, 7.5133, 7.5125, 7.5119, 7.5113, 7.5105, 7.5099, 7.5093, 7.5085, 7.508, 7.5092, 7.5105, 7.5143, 7.5135, 7.5127, 7.512, 7.5112, 7.5105, 7.5122, 7.5113, 7.5087, 7.5099, 7.509, 7.5104, 7.5095, 7.5109, 7.5182, 7.5174, 7.5169, 7.5144, 7.5147, 7.5139, 7.5152, 7.5156, 7.5151, 7.5143, 7.5136, 7.5141, 7.5132, 7.5124, 7.5118, 7.5109, 7.5122, 7.5121, 7.5115, 7.5107, 7.51, 7.5095, 7.5068, 7.5063, 7.506, 7.5053, 7.5052, 7.5043, 7.5034, 7.5026, 7.504, 7.5053, 7.5027, 7.5021, 7.5014, 7.5006, 7.5021, 7.5016, 7.5008, 7.5002, 7.4997, 7.499, 7.4983, 7.4978, 7.4971, 7.4985, 7.4977, 7.4971, 7.4962, 7.4955, 7.4947, 7.4939, 7.4951, 7.4944, 7.4956, 7.4948, 7.4941, 7.4933, 7.4947, 7.4939, 7.4955, 7.501, 7.5003, 7.4997, 7.499, 7.4982, 7.4973, 7.4986, 7.4982, 7.4995, 7.4991, 7.5003, 7.4995, 7.5008, 7.5039, 7.5054, 7.5093, 7.5131, 7.5123, 7.5118, 7.511, 7.5101, 7.5093, 7.5088, 7.508, 7.5088, 7.5066, 7.5061, 7.5056, 7.5068, 7.5062, 7.5054, 7.5053, 7.5044, 7.5036, 7.5029, 7.5041, 7.5036, 7.5028, 7.5019, 7.5031, 7.5023, 7.5035, 7.5047, 7.506, 7.5053, 7.5047, 7.5022, 7.5016, 7.5008, 7.502, 7.5012, 7.5024, 7.5016, 7.501, 7.5002, 7.4993, 7.4989, 7.5003, 7.4995, 7.4991, 7.4985, 7.4979, 7.4972, 7.4984, 7.498, 7.4977, 7.4969, 7.4966, 7.4958, 7.4953, 7.4945, 7.4957, 7.4975, 7.497, 7.4964, 7.4958, 7.4952, 7.4946, 7.4959, 7.4973, 7.4967, 7.4987, 7.5004, 7.4978, 7.4993, 7.4989, 7.4981, 7.4956, 7.4949, 7.4944, 7.4958, 7.495, 7.4944, 7.4957, 7.495, 7.5043, 7.5054, 7.5046, 7.5041, 7.5035, 7.5028, 7.5021, 7.5014, 7.5049, 7.5043, 7.506, 7.5056, 7.5069, 7.5063, 7.5057, 7.5052, 7.5047, 7.5066, 7.508, 7.5098, 7.5131, 7.5124, 7.5117, 7.5114, 7.515, 7.5142, 7.5134, 7.5188, 7.5182, 7.5215, 7.5209, 7.526, 7.5252, 7.5263, 7.5258, 7.5309, 7.5301, 7.5354, 7.5346, 7.5339, 7.5333, 7.5325, 7.5319, 7.5331, 7.5325, 7.5321, 7.5298, 7.529, 7.5264, 7.5296, 7.529, 7.5322, 7.5315, 7.5327, 7.5326, 7.53, 7.5293, 7.5285, 7.5299, 7.5292, 7.5285, 7.5278, 7.5292, 7.5284, 7.5276, 7.5268, 7.526, 7.5253, 7.5264, 7.5257, 7.5269, 7.5263, 7.5255, 7.5247, 7.524, 7.5251, 7.5243, 7.5235, 7.5227, 7.5219, 7.5211, 7.5208, 7.5201, 7.5198, 7.519, 7.5202, 7.5214, 7.5191, 7.5186, 7.5178, 7.517, 7.5165, 7.5159, 7.5172, 7.5166, 7.518, 7.5179, 7.5174, 7.519, 7.5165, 7.5157, 7.5149, 7.5146, 7.5159, 7.517, 7.5201, 7.5232, 7.5284, 7.528, 7.5273, 7.5265, 7.5259, 7.5271, 7.5284, 7.5279, 7.5272, 7.5267, 7.5261, 7.5236, 7.5247, 7.5257, 7.5268, 7.526, 7.5271, 7.5265, 7.5275, 7.5267, 7.5259, 7.5251, 7.5248, 7.5241, 7.5235, 7.5247, 7.5239, 7.5234, 7.5226, 7.5239, 7.5257, 7.5255, 7.5249, 7.5241, 7.5253, 7.5247, 7.5266, 7.5279, 7.5271, 7.5263, 7.5255, 7.5249, 7.5241, 7.5233, 7.5225, 7.522, 7.5231, 7.525, 7.5242, 7.5234, 7.5226, 7.5312, 7.5304, 7.5296, 7.529, 7.5285, 7.5296, 7.5289, 7.5282, 7.5275, 7.5251, 7.5245, 7.5242, 7.5235, 7.5265, 7.5257, 7.5281, 7.5295, 7.5287, 7.5279, 7.5285, 7.534, 7.5352, 7.5364, 7.5358, 7.5351, 7.5344, 7.5336, 7.5333, 7.5326, 7.5338, 7.535, 7.5345, 7.5337, 7.5349, 7.5343, 7.5335, 7.5329, 7.5321, 7.5314, 7.5308, 7.53, 7.5294, 7.5288, 7.5282, 7.5295, 7.5323, 7.5316, 7.5329, 7.5397, 7.5408, 7.54, 7.5394, 7.5387, 7.5379, 7.5455, 7.5449, 7.546, 7.5454, 7.5447, 7.5441, 7.5436, 7.5468, 7.5479, 7.5471, 7.5474, 7.5505, 7.5499, 7.5476, 7.5468, 7.5444, 7.5456, 7.5449, 7.5443, 7.544, 7.5433, 7.5443, 7.5437, 7.5431, 7.5443, 7.5454, 7.5447, 7.544, 7.5433, 7.5426, 7.5419, 7.5431, 7.5442, 7.5435, 7.5427, 7.5428, 7.542, 7.5416, 7.5412, 7.5407, 7.5402, 7.5414, 7.5427, 7.5421, 7.5414, 7.5407, 7.54, 7.5393, 7.5388, 7.5381, 7.5376, 7.537, 7.5363, 7.5358, 7.5354, 7.5347, 7.5339, 7.5333, 7.5344, 7.5341, 7.5354, 7.5352, 7.5344, 7.5322, 7.5323, 7.5334, 7.5327, 7.5338, 7.5334, 7.5328, 7.534, 7.5332, 7.5326, 7.532, 7.5314, 7.5306, 7.5299, 7.5312, 7.5326, 7.5338, 7.5349, 7.5362, 7.5372, 7.5367, 7.5363, 7.5357, 7.5355, 7.5366, 7.536, 7.5354, 7.5349, 7.5362, 7.5356, 7.5351, 7.5343, 7.5339, 7.5331, 7.5323, 7.5335, 7.5328, 7.5325, 7.5337, 7.5332, 7.5325, 7.5319, 7.5312, 7.5308, 7.5304, 7.5299, 7.5293, 7.5287, 7.5299, 7.5311, 7.5305, 7.5299, 7.5293, 7.5305, 7.5299, 7.5294, 7.5286, 7.5281, 7.5293, 7.5287, 7.5282, 7.5294, 7.5304, 7.5297, 7.5294, 7.5288, 7.5284, 7.5277, 7.5255, 7.5248, 7.5242, 7.5237, 7.523, 7.5241, 7.5234, 7.5227, 7.522, 7.5213, 7.5206, 7.5199, 7.5192, 7.5186, 7.5179, 7.5192, 7.5185, 7.5162, 7.5173, 7.5184, 7.5177, 7.5172, 7.519, 7.5201, 7.5212, 7.5206, 7.5201, 7.5194, 7.519, 7.52, 7.5194, 7.5187, 7.518, 7.5175, 7.5168, 7.5161, 7.5156, 7.5151, 7.5145, 7.5192, 7.5221, 7.5215, 7.5192, 7.5248, 7.5247, 7.5279, 7.5297, 7.529, 7.5286, 7.528, 7.5273, 7.5266, 7.5276, 7.535, 7.5343, 7.5355, 7.5348, 7.5341, 7.5352, 7.5345, 7.5356, 7.5348, 7.5343, 7.5337, 7.5334, 7.5345, 7.5338, 7.5331, 7.5325, 7.5321, 7.5332, 7.5325, 7.5369, 7.5362, 7.5356, 7.5349, 7.5343, 7.5338, 7.5332, 7.5327, 7.5323, 7.5377, 7.537, 7.5365, 7.5359, 7.5352, 7.5348, 7.5357, 7.5368, 7.5362, 7.5355, 7.5348, 7.534, 7.5334, 7.5327, 7.5323, 7.5333, 7.5328, 7.5322, 7.5333, 7.5326, 7.5321, 7.5316, 7.531, 7.5303, 7.5296, 7.5307, 7.5301, 7.5294, 7.5287, 7.5281, 7.5276, 7.527, 7.5282, 7.5278, 7.5271, 7.5264, 7.526, 7.5259, 7.5271, 7.5267, 7.5277, 7.5275, 7.5288, 7.532, 7.5314, 7.5324, 7.5319, 7.5329, 7.5325, 7.5318, 7.5313, 7.5324, 7.5329, 7.5344, 7.5355, 7.5349, 7.5346, 7.5341, 7.5334, 7.5329, 7.5324, 7.5317, 7.5333, 7.5328, 7.5338, 7.5333, 7.5329, 7.5322, 7.5332, 7.5359, 7.5369, 7.5426, 7.5404, 7.5399, 7.5409, 7.5419, 7.543, 7.544, 7.5433, 7.5426, 7.542, 7.5415, 7.541, 7.543, 7.5424, 7.5436, 7.5446, 7.5439, 7.5434, 7.543, 7.5423, 7.5416, 7.5409, 7.5469, 7.5462, 7.5456, 7.5469, 7.5485, 7.5481, 7.5474, 7.5467, 7.5464, 7.5457, 7.545, 7.5472, 7.5465, 7.5461, 7.5456, 7.5449, 7.5442, 7.5453, 7.5446, 7.5441, 7.5436, 7.5429, 7.5423, 7.5417, 7.5412, 7.5405, 7.5398, 7.5391, 7.5402, 7.5395, 7.5389, 7.5384, 7.5382, 7.5375, 7.5387, 7.5398, 7.5394, 7.5387, 7.5381, 7.5375, 7.537, 7.5381, 7.5374, 7.5369, 7.5362, 7.5355, 7.5366, 7.536, 7.5353, 7.5356, 7.535, 7.5353, 7.5347, 7.5345, 7.5338, 7.5332, 7.5327, 7.5323, 7.5352, 7.5347, 7.5344, 7.5337, 7.533, 7.5325, 7.5336, 7.5331, 7.5324, 7.5327, 7.5321, 7.5331, 7.5325, 7.5305, 7.5306, 7.5316, 7.5326, 7.5336, 7.5329, 7.5324, 7.5319, 7.5313, 7.5292, 7.5286, 7.5303, 7.5297, 7.5293, 7.5289, 7.5286, 7.528, 7.529, 7.5299, 7.5309, 7.5303, 7.5297, 7.5293, 7.5291, 7.5294, 7.5289, 7.5282, 7.5277, 7.527, 7.5263, 7.5256, 7.5249, 7.5259, 7.5253, 7.5246, 7.5255, 7.525, 7.5243, 7.5241, 7.5237, 7.5246, 7.524, 7.5235, 7.5231, 7.5224, 7.5234, 7.5244, 7.5237, 7.5247, 7.5243, 7.5237, 7.5231, 7.5241, 7.5236, 7.5232, 7.5226, 7.5244, 7.5239, 7.5233, 7.5227, 7.5221, 7.5215, 7.5211, 7.5205, 7.5215, 7.521, 7.5204, 7.5198, 7.5192, 7.5188, 7.5198, 7.5229, 7.5222, 7.5218, 7.5227, 7.5229, 7.5225, 7.5218, 7.5211, 7.5205, 7.5199, 7.5209, 7.5203, 7.5214, 7.5223, 7.5217, 7.521, 7.522, 7.5214, 7.5207, 7.5205, 7.5188, 7.52, 7.5195, 7.5215, 7.5215, 7.5231, 7.5261, 7.5255, 7.525, 7.5281, 7.5341, 7.5335, 7.5376, 7.5386, 7.5414, 7.5407, 7.5401, 7.5396, 7.5405, 7.5401, 7.5395, 7.5405, 7.5415, 7.5409, 7.5423, 7.5416, 7.5417, 7.541, 7.5405, 7.5398, 7.5392, 7.5385, 7.5389, 7.539, 7.5387, 7.5396, 7.5405, 7.5401, 7.5396, 7.5407, 7.5404, 7.5398, 7.5393, 7.5404, 7.5398, 7.5392, 7.5388, 7.5399, 7.5393, 7.5402, 7.5396, 7.539, 7.54, 7.5395, 7.5404, 7.54, 7.5395, 7.5388, 7.5397, 7.5391, 7.5385, 7.5379, 7.5374, 7.5368, 7.5378, 7.5388, 7.5385, 7.5394, 7.5374, 7.5372, 7.5369, 7.5366, 7.5376, 7.5369, 7.5365, 7.5361, 7.5356, 7.5351, 7.5346, 7.5341, 7.5336, 7.534, 7.5337, 7.5331, 7.5342, 7.5336, 7.5317, 7.5313, 7.5309, 7.532, 7.5315, 7.5319, 7.5314, 7.5313, 7.5308, 7.5318, 7.5318, 7.5329, 7.5324, 7.5321, 7.5316, 7.5341, 7.535, 7.536, 7.5369, 7.5394, 7.5388, 7.5388, 7.5384, 7.5385, 7.538, 7.5376, 7.537, 7.5382, 7.5377, 7.5373, 7.5366, 7.5375, 7.54, 7.5409, 7.5463, 7.5459, 7.5457, 7.5456, 7.5468, 7.5463, 7.5457, 7.5466, 7.5461, 7.5454, 7.5449, 7.5442, 7.5436, 7.5431, 7.5427, 7.5422, 7.5416, 7.54, 7.5395, 7.5391, 7.5385, 7.5379, 7.5388, 7.5398, 7.5392, 7.5387, 7.5367, 7.5362, 7.5387, 7.5383, 7.5379, 7.5374, 7.5368, 7.5363, 7.5357, 7.5352, 7.5345, 7.5339, 7.5334, 7.5328, 7.5337, 7.5331, 7.5327, 7.5337, 7.5345, 7.5339, 7.5334, 7.5328, 7.5335, 7.5331, 7.5362, 7.5372, 7.5367, 7.5362, 7.5372, 7.5381, 7.5392, 7.5403, 7.5402, 7.5412, 7.5408, 7.5403, 7.5398, 7.5393, 7.5416, 7.5426, 7.5434, 7.5444, 7.5453, 7.5448, 7.5456, 7.5451, 7.5446, 7.5456, 7.5468, 7.5461, 7.5455, 7.5463, 7.5457, 7.5452, 7.5446, 7.5456, 7.5451, 7.5461, 7.5456, 7.5452, 7.5447, 7.5445, 7.544, 7.545, 7.5459, 7.5468, 7.5477, 7.5471, 7.5467, 7.5462, 7.5456, 7.5452, 7.5461, 7.5455, 7.545, 7.5447, 7.5442, 7.5437, 7.5447, 7.5443, 7.5437, 7.5432, 7.5427, 7.5424, 7.5419, 7.5413, 7.5408, 7.5402, 7.5397, 7.5391, 7.5385, 7.5382, 7.5392, 7.5387, 7.5381, 7.5375, 7.5384, 7.538, 7.5374, 7.5369, 7.5363, 7.5358, 7.5353, 7.5362, 7.5356, 7.5351, 7.5346, 7.5355, 7.5365, 7.5359, 7.5405, 7.5401, 7.5395, 7.5405, 7.54, 7.5394, 7.5404, 7.5399, 7.5395, 7.5391, 7.5386, 7.5385, 7.5379, 7.5389, 7.5384, 7.5378, 7.5373, 7.5367, 7.5361, 7.5371, 7.5365, 7.536, 7.5354, 7.5335, 7.5344, 7.5353, 7.5362, 7.5356, 7.535, 7.5344, 7.5339, 7.5334, 7.5333, 7.5328, 7.5323, 7.5324, 7.5321, 7.5315, 7.5329, 7.5338, 7.5357, 7.5358, 7.5358, 7.5352, 7.5347, 7.5355, 7.5378, 7.5372, 7.5369, 7.5377, 7.5373, 7.5368, 7.5363, 7.5358, 7.5352, 7.5346, 7.5341, 7.5337, 7.5331, 7.5325, 7.5319, 7.5301, 7.5296, 7.5319, 7.5313, 7.5308, 7.5303, 7.5297, 7.5308, 7.5302, 7.5312, 7.5293, 7.5275, 7.5269, 7.5263, 7.526, 7.5269, 7.5265, 7.5247, 7.5228, 7.5223, 7.5218, 7.5212, 7.5241, 7.525, 7.5244, 7.524, 7.5249, 7.5244, 7.524, 7.5234, 7.5231, 7.524, 7.5234, 7.5232, 7.5226, 7.5221, 7.5229, 7.5237, 7.5218, 7.5212, 7.5195, 7.519, 7.5184, 7.5179, 7.5176, 7.5174, 7.5169, 7.5195, 7.5189, 7.5185, 7.5181, 7.5177, 7.5171, 7.5165, 7.516, 7.5169, 7.5164, 7.516, 7.5155, 7.5149, 7.5157, 7.5151, 7.5145, 7.5139, 7.5134, 7.5128, 7.5122, 7.5116, 7.5112, 7.5106, 7.5115, 7.5123, 7.5132, 7.5126, 7.512, 7.5128, 7.5122, 7.5132, 7.5128, 7.5137, 7.5132, 7.5126, 7.5148, 7.5157, 7.5165, 7.5232, 7.5226, 7.5231, 7.5227, 7.5221, 7.5215, 7.5253, 7.5249, 7.5244, 7.524, 7.5236, 7.525, 7.5244, 7.5274, 7.5283, 7.5278, 7.5272, 7.5267, 7.5263, 7.5272, 7.5275, 7.5269, 7.5278, 7.5273, 7.5268, 7.5264, 7.5249, 7.5257, 7.5252, 7.5261, 7.5304, 7.5298, 7.5347, 7.5349, 7.5344, 7.5339, 7.5347, 7.5342, 7.5349, 7.5345, 7.5351, 7.5359, 7.5355, 7.5351, 7.5348, 7.5342, 7.5336, 7.5333, 7.5328, 7.5337, 7.5332, 7.5326, 7.532, 7.5315, 7.531, 7.5316, 7.5344, 7.5339, 7.5334, 7.5328, 7.5325, 7.5333, 7.5386, 7.5384, 7.5393, 7.5437, 7.5432, 7.5454, 7.5452, 7.5447, 7.5442, 7.5451, 7.5461, 7.547, 7.5464, 7.546, 7.5455, 7.5449, 7.5444, 7.5438, 7.5446, 7.544, 7.5434, 7.5428, 7.5422, 7.5431, 7.5428, 7.5436, 7.5431, 7.5425, 7.542, 7.5416, 7.5411, 7.5408, 7.5403, 7.5397, 7.5392, 7.5387, 7.5384, 7.5394, 7.5389, 7.5384, 7.5379, 7.5412, 7.5407, 7.5406, 7.54, 7.5408, 7.5403, 7.5413, 7.5407, 7.5417, 7.5456, 7.5466, 7.5456, 7.5451, 7.5451, 7.5445, 7.5441, 7.5439, 7.5436, 7.5434, 7.5428, 7.5422, 7.5418, 7.5413, 7.5409, 7.5405, 7.5387, 7.5387, 7.5381, 7.5376, 7.5371, 7.5366, 7.5375, 7.537, 7.5365, 7.536, 7.5354, 7.5349, 7.5343, 7.5341, 7.5325, 7.5322, 7.5317, 7.5312, 7.532, 7.5316, 7.5324, 7.5318, 7.5312, 7.5308, 7.5302, 7.5298, 7.5294, 7.5288, 7.5283, 7.5278, 7.5273, 7.5269, 7.5265, 7.5259, 7.5254, 7.5267, 7.5263, 7.5258, 7.5253, 7.5247, 7.5255, 7.5265, 7.5259, 7.5255, 7.5263, 7.5273, 7.5267, 7.5275, 7.5271, 7.5267, 7.5261, 7.5269, 7.5326, 7.5321, 7.5315, 7.5309, 7.5305, 7.5306, 7.5314, 7.5311, 7.5307, 7.5305, 7.53, 7.5296, 7.5304, 7.5299, 7.5294, 7.5289, 7.5285, 7.5293, 7.5289, 7.5297, 7.5291, 7.5287, 7.5283, 7.5278, 7.5273, 7.5267, 7.5251, 7.5259, 7.5254, 7.5249, 7.5231, 7.5238, 7.5246, 7.5255, 7.5251, 7.5246, 7.5241, 7.5236, 7.5231, 7.524, 7.5236, 7.5232, 7.5227, 7.5241, 7.5236, 7.5245, 7.5228, 7.5226, 7.5221, 7.5217, 7.5213, 7.5222, 7.5219, 7.5234, 7.5256, 7.5257, 7.5292, 7.5286, 7.5309, 7.5317, 7.5325, 7.5333, 7.5329, 7.5338, 7.5347, 7.5341, 7.5336, 7.5333, 7.5328, 7.5323, 7.5329, 7.5337, 7.5331, 7.5325, 7.5321, 7.5316, 7.531, 7.5318, 7.5326, 7.5322, 7.5316, 7.5323, 7.533, 7.5339, 7.5333, 7.5341, 7.5349, 7.5344, 7.5339, 7.5334, 7.5329, 7.5324, 7.532, 7.5328, 7.5351, 7.5347, 7.5354, 7.5349, 7.5344, 7.5341, 7.5337, 7.5345, 7.5339, 7.5335, 7.5346, 7.5355, 7.535, 7.5346, 7.5342, 7.5343, 7.5353, 7.5349, 7.5345, 7.534, 7.5371, 7.5358, 7.5366, 7.5362, 7.5352, 7.5361, 7.5356, 7.5368, 7.5364, 7.536, 7.5346, 7.5341, 7.5336, 7.5332, 7.5327, 7.5324, 7.5319, 7.5315, 7.531, 7.5306, 7.5302, 7.5297, 7.5306, 7.5303, 7.5298, 7.5294, 7.5289, 7.5284, 7.5279, 7.5275, 7.5273, 7.527, 7.5279, 7.5275, 7.5271, 7.5265, 7.5261, 7.5257, 7.5254, 7.525, 7.5245, 7.5241, 7.5236, 7.523, 7.5238, 7.5247, 7.5243, 7.5253, 7.5247, 7.5242, 7.5239, 7.5235, 7.523, 7.5239, 7.5234, 7.5231, 7.5225, 7.5221, 7.5229, 7.5228, 7.5223, 7.5218, 7.5222, 7.522, 7.5217, 7.5213, 7.521, 7.5206, 7.5236, 7.5246, 7.5242, 7.5238, 7.5236, 7.525, 7.5245, 7.5241, 7.525, 7.5245, 7.5253, 7.5251, 7.5246, 7.5243, 7.524, 7.5223, 7.5219, 7.5217, 7.5201, 7.5209, 7.5218, 7.5225, 7.5232, 7.5241, 7.5238, 7.5234, 7.5229, 7.5223, 7.5219, 7.523, 7.5226, 7.5224, 7.5219, 7.5215, 7.5211, 7.5219, 7.5215, 7.5209, 7.5205, 7.5216, 7.5224, 7.5219, 7.5214, 7.5209, 7.5211, 7.5206, 7.5206, 7.5202, 7.5211, 7.5207, 7.5218, 7.5214, 7.5216, 7.5212, 7.5208, 7.5203, 7.52, 7.5195, 7.519, 7.5212, 7.5196, 7.5194, 7.5202, 7.5186, 7.5184, 7.5193, 7.5191, 7.5185, 7.52, 7.5197, 7.5192, 7.5188, 7.5196, 7.5193, 7.5189, 7.5198, 7.5195, 7.5191, 7.5199, 7.5194, 7.5191, 7.5186, 7.5194, 7.519, 7.5185, 7.5232, 7.5227, 7.5248, 7.5256, 7.5251, 7.5247, 7.5255, 7.525, 7.526, 7.5257, 7.5265, 7.5273, 7.527, 7.5266, 7.5261, 7.5256, 7.524, 7.5235, 7.5231, 7.5226, 7.5221, 7.5217, 7.5213, 7.5208, 7.5216, 7.5215, 7.5222, 7.5218, 7.5214, 7.5214, 7.5222, 7.5217, 7.5212, 7.5222, 7.5229, 7.5224, 7.522, 7.5215, 7.5211, 7.5207, 7.5215, 7.5211, 7.5206, 7.5201, 7.5211, 7.5206, 7.5201, 7.5209, 7.5204, 7.5202, 7.5199, 7.5194, 7.5189, 7.5185, 7.5181, 7.5176, 7.5184, 7.5179, 7.5209, 7.5218, 7.5214, 7.5211, 7.5208, 7.5203, 7.52, 7.5197, 7.5213, 7.5211, 7.5212, 7.5207, 7.5202, 7.5197, 7.5192, 7.5187, 7.5194, 7.5201, 7.5185, 7.5193, 7.5177, 7.5187, 7.5196, 7.5192, 7.5188, 7.5186, 7.5181, 7.5177, 7.5174, 7.517, 7.5178, 7.5174, 7.5173, 7.5176, 7.5184, 7.5179, 7.5166, 7.5163, 7.5195, 7.5263, 7.5261, 7.5258, 7.5256, 7.5251, 7.5235, 7.523, 7.5226, 7.5221, 7.5216, 7.5224, 7.5219, 7.5214, 7.5209, 7.5204, 7.52, 7.5208, 7.5203, 7.5211, 7.5207, 7.5229, 7.5225, 7.522, 7.5229, 7.5225, 7.5233, 7.5241, 7.5246, 7.5241, 7.5248, 7.5257, 7.5265, 7.526, 7.5255, 7.525, 7.5247, 7.5242, 7.5238, 7.5233, 7.5229, 7.5224, 7.5231, 7.5229, 7.5237, 7.5233, 7.5241, 7.5236, 7.5231, 7.5231, 7.5226, 7.5232, 7.5227, 7.5235, 7.523, 7.525, 7.5257, 7.5253, 7.526, 7.5268, 7.5264, 7.526, 7.5257, 7.5252, 7.5248, 7.5255, 7.5263, 7.5271, 7.5294, 7.5314, 7.5309, 7.5293, 7.5289, 7.5359, 7.538, 7.5389, 7.5389, 7.5373, 7.5368, 7.5389, 7.5386, 7.5419, 7.5415, 7.5423, 7.5431, 7.5428, 7.5435, 7.5431, 7.544, 7.5436, 7.5431, 7.5427, 7.5411, 7.5407, 7.5402, 7.5399, 7.5406, 7.5403, 7.54, 7.5396, 7.5393, 7.539, 7.5397, 7.5394, 7.5392, 7.5407, 7.5403, 7.5423, 7.5418, 7.5413, 7.5409, 7.5426, 7.5435, 7.543, 7.5437, 7.5433, 7.5429, 7.5425, 7.5422, 7.5418, 7.5414, 7.5421, 7.5434, 7.543, 7.5426, 7.5422, 7.5417, 7.5414, 7.5401, 7.5397, 7.5382, 7.5378, 7.5374, 7.5371, 7.5378, 7.5386, 7.5403, 7.5412, 7.5419, 7.5414, 7.541, 7.5406, 7.5401, 7.5397, 7.5393, 7.5389, 7.5403, 7.5388, 7.5394, 7.539, 7.5385, 7.538, 7.5376, 7.5383, 7.538, 7.5387, 7.5383, 7.5378, 7.5374, 7.5372, 7.5367, 7.5363, 7.5371, 7.5378, 7.5406, 7.5401, 7.542, 7.5415, 7.541, 7.5405, 7.5401, 7.5385, 7.538, 7.5376, 7.5373, 7.537, 7.5367, 7.5376, 7.5375, 7.5371, 7.538, 7.5388, 7.5383, 7.538, 7.5387, 7.5382, 7.5377, 7.5374, 7.5393, 7.5388, 7.5395, 7.539, 7.5386, 7.5393, 7.539, 7.5386, 7.5393, 7.54, 7.5396, 7.5391, 7.5389, 7.5384, 7.538, 7.5381, 7.5378, 7.5397, 7.5398, 7.5393, 7.5393, 7.5425, 7.5432, 7.5428, 7.5423, 7.543, 7.5436, 7.5432, 7.5427, 7.5434, 7.5429, 7.5436, 7.5432, 7.5431, 7.5428, 7.5425, 7.5421, 7.5418, 7.5425, 7.542, 7.5428, 7.5423, 7.5418, 7.5413, 7.5409, 7.5404, 7.5428, 7.5423, 7.542, 7.5417, 7.5413, 7.542, 7.5415, 7.5411, 7.5418, 7.5425, 7.5432, 7.5427, 7.5425, 7.542, 7.5419, 7.5414, 7.5425, 7.5433, 7.543, 7.5426, 7.5414, 7.5411, 7.5396, 7.5392, 7.5389, 7.5384, 7.5381, 7.5376, 7.5371, 7.538, 7.5376, 7.5372, 7.5368, 7.5375, 7.5383, 7.5379, 7.5374, 7.5382, 7.5377, 7.5372, 7.5367, 7.5363, 7.5359, 7.5355, 7.535, 7.5346, 7.5343, 7.5338, 7.5333, 7.533, 7.5327, 7.5323, 7.532, 7.5316, 7.5314, 7.531, 7.5306, 7.5313, 7.531, 7.5317, 7.5313, 7.5299, 7.5294, 7.529, 7.5296, 7.5281, 7.5279, 7.5275, 7.5272, 7.5268, 7.5264, 7.5259, 7.5254, 7.525, 7.5235, 7.523, 7.5226, 7.5245, 7.5253, 7.5249, 7.5245, 7.5253, 7.5248, 7.5244, 7.5241, 7.5226, 7.5221, 7.5216, 7.5213, 7.522, 7.5221, 7.5217, 7.5213, 7.521, 7.5205, 7.5201, 7.5187, 7.5184, 7.5181, 7.5178, 7.5175, 7.517, 7.5165, 7.5162, 7.5157, 7.5152, 7.5149, 7.5157, 7.5142, 7.5137, 7.5133, 7.5129, 7.5125, 7.5133, 7.514, 7.5135, 7.513, 7.5125, 7.5123, 7.5133, 7.5141, 7.5137, 7.5125, 7.5121, 7.5128, 7.5113, 7.512, 7.5115, 7.5122, 7.5118, 7.5114, 7.5127, 7.5124, 7.512, 7.5133, 7.5129, 7.5135, 7.5131, 7.5126, 7.5122, 7.5117, 7.5113, 7.512, 7.5115, 7.511, 7.5117, 7.5146, 7.5142, 7.5137, 7.5133, 7.5128, 7.5124, 7.5131, 7.5127, 7.5139, 7.5135, 7.513, 7.5126, 7.5123, 7.5119, 7.5116, 7.5111, 7.5107, 7.5114, 7.511, 7.5107, 7.5104, 7.5111, 7.5124, 7.5121, 7.5116, 7.5111, 7.5106, 7.5113, 7.5109, 7.5107, 7.5106, 7.5113, 7.512, 7.5117, 7.5129, 7.5137, 7.514, 7.5147, 7.5154, 7.515, 7.5156, 7.5165, 7.516, 7.5155, 7.5152, 7.5148, 7.5164, 7.517, 7.5166, 7.5163, 7.5159, 7.5155, 7.5162, 7.5158, 7.5154, 7.515, 7.5146, 7.5141, 7.5148, 7.5156, 7.5153, 7.5149, 7.5145, 7.5143, 7.5151, 7.5149, 7.5145, 7.5153, 7.516, 7.5157, 7.5165, 7.5183, 7.5228, 7.5235, 7.5231, 7.5243, 7.525, 7.5245, 7.524, 7.5236, 7.5231, 7.5238, 7.5233, 7.524, 7.5236, 7.5231, 7.5227, 7.5234, 7.5241, 7.5236, 7.5234, 7.5231, 7.524, 7.5237, 7.5234, 7.5219, 7.5215, 7.5211, 7.5208, 7.5215, 7.5211, 7.5218, 7.5214, 7.5212, 7.5208, 7.5204, 7.5211, 7.5207, 7.5216, 7.5212, 7.5234, 7.523, 7.5248, 7.5252, 7.5249, 7.5244, 7.5239, 7.5235, 7.5231, 7.5238, 7.5234, 7.5244, 7.524, 7.5236, 7.5244, 7.5267, 7.5264, 7.5272, 7.528, 7.5276, 7.5274, 7.5272, 7.527, 7.5288, 7.5283, 7.529, 7.5297, 7.5326, 7.5348, 7.5344, 7.5341, 7.5337, 7.5333, 7.5329, 7.5324, 7.5331, 7.5327, 7.5322, 7.5328, 7.5324, 7.5331, 7.5338, 7.5334, 7.5329, 7.5325, 7.5332, 7.5339, 7.5335, 7.5331, 7.5328, 7.5336, 7.5343, 7.5339, 7.5346, 7.5353, 7.5348, 7.5334, 7.5341, 7.5348, 7.5345, 7.5355, 7.5352, 7.5349, 7.5344, 7.5344, 7.5351, 7.5348, 7.5343, 7.534, 7.5348, 7.5345, 7.5352, 7.5348, 7.5345, 7.5331, 7.5337, 7.5342, 7.5337, 7.5333, 7.5342, 7.535, 7.5347, 7.5344, 7.534, 7.5335, 7.5332, 7.5328, 7.5324, 7.5353, 7.5348, 7.5354, 7.5372, 7.5367, 7.5363, 7.538, 7.5377, 7.5374, 7.537, 7.5366, 7.5362, 7.5358, 7.5419, 7.5415, 7.5422, 7.5419, 7.5415, 7.5421, 7.5439, 7.5436, 7.5432, 7.544, 7.5447, 7.5443, 7.5451, 7.5459, 7.5458, 7.5455, 7.5451, 7.5448, 7.5456, 7.5453, 7.5449, 7.5446, 7.5454, 7.546, 7.5456, 7.5452, 7.5448, 7.5444, 7.5442, 7.5438, 7.5434, 7.5445, 7.5431, 7.5428, 7.5436, 7.5426, 7.5422, 7.5419, 7.5415, 7.5411, 7.5407, 7.5403, 7.54, 7.5406, 7.5403, 7.541, 7.5413, 7.5409, 7.5406, 7.5402, 7.5399, 7.5395, 7.5391, 7.5387, 7.5384, 7.538, 7.5376, 7.5372, 7.5368, 7.5363, 7.5371, 7.5367, 7.5374, 7.5372, 7.5368, 7.5365, 7.5374, 7.5382, 7.5391, 7.54, 7.5408, 7.5405, 7.5402, 7.5398, 7.5395, 7.5392, 7.5387, 7.5387, 7.5383, 7.5379, 7.5365, 7.5362, 7.537, 7.5366, 7.5373, 7.538, 7.5376, 7.5373, 7.5381, 7.5377, 7.5377, 7.5373, 7.5369, 7.5364, 7.536, 7.5357, 7.5353, 7.5359, 7.5356, 7.5352, 7.5348, 7.5344, 7.534, 7.5338, 7.5345, 7.5357, 7.5353, 7.5349, 7.5345, 7.5343, 7.5339, 7.5345, 7.534, 7.5336, 7.5334, 7.534, 7.5336, 7.5332, 7.5328, 7.5324, 7.5328, 7.5324, 7.532, 7.5316, 7.5344, 7.5342, 7.5359, 7.5355, 7.5351, 7.5346, 7.5343, 7.5339, 7.5362, 7.5359, 7.5376, 7.5372, 7.54, 7.5449, 7.5444, 7.545, 7.5446, 7.5463, 7.547, 7.5466, 7.5484, 7.548, 7.5477, 7.5483, 7.548, 7.5479, 7.5507, 7.5504, 7.5499, 7.5496, 7.5513, 7.551, 7.5516, 7.5512, 7.5508, 7.5512, 7.5498, 7.5493, 7.5499, 7.5495, 7.5492, 7.5488, 7.5495, 7.5491, 7.5487, 7.5483, 7.5523, 7.553, 7.5536, 7.5542, 7.5539, 7.5546, 7.5542, 7.5538, 7.5534, 7.554, 7.5537, 7.5533, 7.5539, 7.5537, 7.5527, 7.5533, 7.553, 7.5526, 7.5585, 7.558, 7.5576, 7.5572, 7.5569, 7.5565, 7.5562, 7.5559, 7.5546, 7.5553, 7.5549, 7.5546, 7.5541, 7.5537, 7.5544, 7.5551, 7.5557, 7.5564, 7.5581, 7.5577, 7.5578, 7.5573, 7.557, 7.5566, 7.5572, 7.5568, 7.5574, 7.557, 7.5566, 7.5564, 7.5561, 7.5568, 7.5564, 7.556, 7.5569, 7.5566, 7.5561, 7.5558, 7.5554, 7.555, 7.5556, 7.5552, 7.5548, 7.5544, 7.554, 7.5536, 7.5532, 7.5528, 7.5546, 7.5544, 7.5541, 7.5543, 7.555, 7.5546, 7.5542, 7.5548, 7.5554, 7.555, 7.5546, 7.5552, 7.5548, 7.5544, 7.555, 7.5546, 7.5551, 7.5548, 7.5543, 7.5542, 7.5538, 7.5544, 7.554, 7.5536, 7.5534, 7.5529, 7.5535, 7.5531, 7.5527, 7.5523, 7.5518, 7.5515, 7.5511, 7.5517, 7.5513, 7.5519, 7.5515, 7.551, 7.5507, 7.5503, 7.55, 7.5496, 7.5503, 7.55, 7.5496, 7.5483, 7.549, 7.5488, 7.5484, 7.549, 7.5486, 7.5482, 7.5479, 7.5476, 7.5472, 7.5479, 7.5485, 7.5481, 7.5477, 7.5473, 7.547, 7.5476, 7.5473, 7.547, 7.5466, 7.5464, 7.5472, 7.5478, 7.5476, 7.5472, 7.5467, 7.5464, 7.547, 7.5466, 7.5462, 7.5458, 7.5455, 7.5451, 7.5449, 7.5445, 7.5452, 7.546, 7.5456, 7.5453, 7.5452, 7.5448, 7.5444, 7.5452, 7.5458, 7.5455, 7.5451, 7.5458, 7.5455, 7.5451, 7.5457, 7.5464, 7.5461, 7.5457, 7.5453, 7.5449, 7.5446, 7.5445, 7.5451, 7.5449, 7.5446, 7.5442, 7.5438, 7.5434, 7.543, 7.5427, 7.5423, 7.5419, 7.5415, 7.5412, 7.5418, 7.5414, 7.541, 7.5455, 7.5454, 7.545, 7.5437, 7.5433, 7.5439, 7.5438, 7.5446, 7.5453, 7.5449, 7.5445, 7.5451, 7.5447, 7.5443, 7.5439, 7.5435, 7.5441, 7.5438, 7.5434, 7.5432, 7.5428, 7.5426, 7.5422, 7.5418, 7.5414, 7.5416, 7.5404, 7.54, 7.5396, 7.5393, 7.5389, 7.5395, 7.5391, 7.5387, 7.5383, 7.538, 7.5376, 7.5372, 7.5379, 7.5376, 7.5372, 7.5378, 7.5375, 7.5381, 7.5393, 7.5389, 7.5385, 7.5381, 7.5377, 7.5373, 7.5371, 7.5367, 7.5375, 7.5371, 7.5367, 7.5417, 7.5413, 7.5409, 7.5416, 7.5412, 7.5419, 7.5415, 7.5414, 7.541, 7.5406, 7.5402, 7.5408, 7.5414, 7.541, 7.5407, 7.5404, 7.5401, 7.5397, 7.5394, 7.539, 7.5386, 7.5384, 7.538, 7.5376, 7.5372, 7.5369, 7.5375, 7.538, 7.5376, 7.5372, 7.5368, 7.5374, 7.5417, 7.5423, 7.5419, 7.5425, 7.5421, 7.5419, 7.5418, 7.5414, 7.542, 7.5416, 7.5422, 7.5418, 7.5414, 7.541, 7.5406, 7.5403, 7.5401, 7.5397, 7.5395, 7.5391, 7.5387, 7.5383, 7.538, 7.5387, 7.5383, 7.5379, 7.5375, 7.5371, 7.5368, 7.5374, 7.537, 7.5366, 7.5362, 7.536, 7.5347, 7.5343, 7.534, 7.5347, 7.5343, 7.5339, 7.5337, 7.5334, 7.533, 7.5327, 7.5323, 7.531, 7.5307, 7.5303, 7.5299, 7.5296, 7.5302, 7.5309, 7.5305, 7.5312, 7.5317, 7.5323, 7.532, 7.5337, 7.5343, 7.5339, 7.5335, 7.5341, 7.5337, 7.5333, 7.533, 7.533, 7.5336, 7.5333, 7.5331, 7.5327, 7.5326, 7.5323, 7.5321, 7.5318, 7.5315, 7.5328, 7.5326, 7.5333, 7.533, 7.5327, 7.5324, 7.5321, 7.5319, 7.5316, 7.5313, 7.5321, 7.5317, 7.5314, 7.5311, 7.5319, 7.5316, 7.5313, 7.5311, 7.531, 7.5308, 7.5305, 7.5302, 7.5309, 7.5315, 7.5312, 7.5309, 7.5306, 7.5312, 7.5309, 7.5315, 7.5312, 7.5308, 7.5305, 7.5312, 7.5308, 7.5305, 7.5301, 7.5307, 7.5303, 7.5299, 7.5296, 7.5292, 7.5298, 7.5294, 7.5301, 7.5307, 7.5304, 7.531, 7.5307, 7.5315, 7.5323, 7.5329, 7.5335, 7.5341, 7.5356, 7.5352, 7.5349, 7.5356, 7.5362, 7.5361, 7.5358, 7.5363, 7.5369, 7.5366, 7.5363, 7.536, 7.5356, 7.5352, 7.5348, 7.5345, 7.5352, 7.5349, 7.5346, 7.5343, 7.535, 7.5346, 7.5343, 7.5351, 7.5348, 7.5355, 7.5343, 7.5339, 7.5346, 7.5346, 7.5344, 7.5341, 7.5347, 7.5346, 7.5342, 7.534, 7.5336, 7.5342, 7.5358, 7.5355, 7.5342, 7.5349, 7.5345, 7.5341, 7.5338, 7.5363, 7.5361, 7.5367, 7.5363, 7.536, 7.5356, 7.5353, 7.5349, 7.5345, 7.5341, 7.5347, 7.5343, 7.5339, 7.5335, 7.5331, 7.5327, 7.5323, 7.5319, 7.5324, 7.533, 7.5326, 7.5322, 7.5319, 7.5315, 7.5311, 7.5307, 7.5303, 7.53, 7.5297, 7.5293, 7.529, 7.5288, 7.5294, 7.5301, 7.5308, 7.5305, 7.5302, 7.5308, 7.5305, 7.5301, 7.5297, 7.5293, 7.5289, 7.5286, 7.5282, 7.5278, 7.5275, 7.5272, 7.5269, 7.5265, 7.5262, 7.5259, 7.5262, 7.5259, 7.5256, 7.5263, 7.526, 7.5267, 7.5264, 7.526, 7.5256, 7.5262, 7.5267, 7.5263, 7.5259, 7.5256, 7.5262, 7.5272, 7.5268, 7.5274, 7.527, 7.5266, 7.5273, 7.5279, 7.5286, 7.5287, 7.5284, 7.5281, 7.5269, 7.5284, 7.5281, 7.5278, 7.5266, 7.5255, 7.5251, 7.5258, 7.5264, 7.5252, 7.5257, 7.5253, 7.5259, 7.5256, 7.5252, 7.5248, 7.5244, 7.525, 7.5246, 7.5243, 7.5239, 7.5227, 7.5223, 7.5219, 7.5215, 7.5215, 7.5212, 7.5209, 7.5205, 7.5201, 7.5197, 7.5193, 7.5191, 7.5188, 7.5184, 7.518, 7.5176, 7.5172, 7.517, 7.5169, 7.5165, 7.517, 7.5176, 7.5182, 7.5188, 7.5184, 7.519, 7.519, 7.5196, 7.5193, 7.519, 7.5195, 7.5201, 7.52, 7.5206, 7.5206, 7.5203, 7.52, 7.5197, 7.5198, 7.5197, 7.5194, 7.5191, 7.5182, 7.5188, 7.5196, 7.5204, 7.5202, 7.5208, 7.5214, 7.522, 7.5216, 7.5212, 7.521, 7.5216, 7.5204, 7.52, 7.5206, 7.5202, 7.5201, 7.5198, 7.5207, 7.5203, 7.5209, 7.5205, 7.5211, 7.5207, 7.5203, 7.52, 7.5197, 7.5194, 7.52, 7.5197, 7.5198, 7.5195, 7.5192, 7.518, 7.5205, 7.5193, 7.5199, 7.5206, 7.5208, 7.5206, 7.5197, 7.5194, 7.519, 7.5186, 7.5183, 7.5182, 7.5188, 7.5185, 7.5183, 7.518, 7.5178, 7.5175, 7.5171, 7.5168, 7.5164, 7.5171, 7.5167, 7.5165, 7.517, 7.5166, 7.5163, 7.5159, 7.5155, 7.5153, 7.5158, 7.5163, 7.516, 7.5161, 7.5157, 7.5146, 7.5143, 7.5139, 7.5135, 7.5131, 7.5127, 7.5115, 7.5112, 7.5109, 7.5105, 7.5101, 7.5098, 7.5095, 7.5092, 7.5088, 7.5085, 7.5091, 7.5087, 7.5084, 7.5081, 7.5079, 7.5067, 7.5064, 7.5079, 7.5086, 7.5092, 7.5088, 7.5085, 7.5101, 7.5107, 7.5103, 7.511, 7.5107, 7.5095, 7.5092, 7.5089, 7.5085, 7.5082, 7.5087, 7.5092, 7.51, 7.5102, 7.5117, 7.5123, 7.512, 7.5117, 7.5113, 7.511, 7.5108, 7.5105, 7.5101, 7.5107, 7.5105, 7.5102, 7.5099, 7.5105, 7.5102, 7.5099, 7.5105, 7.5102, 7.5099, 7.5096, 7.5093, 7.5091, 7.508, 7.5088, 7.5084, 7.5081, 7.5077, 7.5073, 7.507, 7.5075, 7.5072, 7.5094, 7.509, 7.5087, 7.5101, 7.51, 7.5107, 7.5103, 7.511, 7.5109, 7.5107, 7.5104, 7.5109, 7.5106, 7.5103, 7.5099, 7.5096, 7.5092, 7.5089, 7.5086, 7.5082, 7.509, 7.509, 7.5105, 7.5103, 7.5101, 7.5097, 7.5103, 7.5106, 7.5111, 7.5107, 7.5103, 7.5109, 7.5105, 7.5101, 7.5106, 7.5102, 7.5099, 7.5097, 7.5085, 7.5081, 7.5078, 7.5074, 7.508, 7.5086, 7.5092, 7.5097, 7.5102, 7.5098, 7.5095, 7.5091, 7.5087, 7.5086, 7.5084, 7.5081, 7.5088, 7.5084, 7.5081, 7.5088, 7.5085, 7.5083, 7.508, 7.5087, 7.5093, 7.5099, 7.5087, 7.5092, 7.5098, 7.5096, 7.5092, 7.5089, 7.5087, 7.5084, 7.5081, 7.5078, 7.5075, 7.5072, 7.507, 7.5067, 7.5064, 7.5066, 7.5062, 7.5068, 7.5065, 7.5063, 7.5067, 7.5055, 7.5061, 7.5058, 7.5056, 7.5054, 7.5051, 7.5056, 7.5052, 7.5048, 7.5045, 7.5042, 7.5058, 7.5054, 7.5051, 7.5047, 7.5053, 7.505, 7.5047, 7.5043, 7.5039, 7.5036, 7.5041, 7.5037, 7.5034, 7.5031, 7.5028, 7.5025, 7.5022, 7.5018, 7.5009, 7.5007, 7.5003, 7.5012, 7.5008, 7.5014, 7.5005, 7.5003, 7.5, 7.4997, 7.5003, 7.5, 7.5006, 7.5003, 7.5, 7.4997, 7.4994, 7.4991, 7.4988, 7.4985, 7.4982, 7.4987, 7.4993, 7.499, 7.4989, 7.4987, 7.4994, 7.4991, 7.4988, 7.4985, 7.4982, 7.4987, 7.4985, 7.4982, 7.4988, 7.4994, 7.4991, 7.4989, 7.4987, 7.4992, 7.4998, 7.4995, 7.4992, 7.4988, 7.4985, 7.4982, 7.498, 7.4978, 7.4975, 7.4981, 7.4977, 7.4975, 7.4975, 7.4976, 7.4974, 7.4971, 7.497, 7.4976, 7.4973, 7.4969, 7.4958, 7.4955, 7.4951, 7.4951, 7.4947, 7.4943, 7.4939, 7.4936, 7.4942, 7.4939, 7.4937, 7.4943, 7.494, 7.4955, 7.4952, 7.4948, 7.4953, 7.495, 7.4947, 7.4944, 7.495, 7.4942, 7.4939, 7.4936, 7.4933, 7.4929, 7.4934, 7.4933, 7.4929, 7.4936, 7.4933, 7.493, 7.4927, 7.4932, 7.4937, 7.4933, 7.4929, 7.4925, 7.493, 7.4926, 7.4923, 7.492, 7.4917, 7.4914, 7.4919, 7.4915, 7.4912, 7.4908, 7.4905, 7.4902, 7.49, 7.4889, 7.4885, 7.4883, 7.488, 7.4878, 7.4874, 7.4879, 7.4884, 7.4889, 7.4886, 7.4883, 7.491, 7.4916, 7.4913, 7.491, 7.4907, 7.4904, 7.491, 7.4937, 7.4934, 7.4932, 7.4929, 7.4927, 7.4934, 7.4931, 7.4928, 7.493, 7.4927, 7.4923, 7.4911, 7.49, 7.4905, 7.4902, 7.4898, 7.4894, 7.4899, 7.4896, 7.4893, 7.4891, 7.4897, 7.4894, 7.489, 7.4897, 7.4893, 7.4899, 7.4896, 7.4903, 7.491, 7.4925, 7.4923, 7.492, 7.492, 7.4918, 7.4914, 7.4912, 7.4909, 7.4908, 7.4906, 7.4911, 7.4908, 7.4905, 7.4901, 7.4899, 7.4897, 7.4896, 7.4893, 7.4881, 7.4914, 7.491, 7.4916, 7.4934, 7.4932, 7.4928, 7.4924, 7.4921, 7.4918, 7.4907, 7.4903, 7.49, 7.4906, 7.4911, 7.4908, 7.4897, 7.4894, 7.4891, 7.4897, 7.4903, 7.49, 7.4896, 7.4902, 7.4899, 7.4896, 7.4893, 7.489, 7.4888, 7.4886, 7.4892, 7.489, 7.4888, 7.4886, 7.4884, 7.4882, 7.488, 7.4888, 7.4886, 7.4884, 7.4891, 7.4888, 7.4885, 7.4882, 7.4879, 7.4878, 7.4876, 7.4875, 7.4881, 7.4878, 7.4875, 7.4873, 7.4869, 7.4875, 7.4882, 7.4879, 7.4876, 7.4884, 7.4881, 7.4877, 7.4874, 7.487, 7.4867, 7.4865, 7.4862, 7.4885, 7.4881, 7.4878, 7.4876, 7.4873, 7.487, 7.4875, 7.4872, 7.4869, 7.4867, 7.4878, 7.4885, 7.4882, 7.4879, 7.4876, 7.4874, 7.4871, 7.4872, 7.4869, 7.4858, 7.4855, 7.4852, 7.4857, 7.4854, 7.485, 7.4848, 7.4845, 7.4842, 7.4848, 7.4845, 7.4851, 7.4848, 7.4853, 7.485, 7.4856, 7.4852, 7.4849, 7.4854, 7.4851, 7.4848, 7.4845, 7.4841, 7.4838, 7.4844, 7.4842, 7.4839, 7.4844, 7.484, 7.4838, 7.4836, 7.4842, 7.4839, 7.4836, 7.4833, 7.483, 7.4828, 7.4825, 7.4824, 7.482, 7.4817, 7.4815, 7.4812, 7.4809, 7.4806, 7.4803, 7.48, 7.4789, 7.4778, 7.4783, 7.479, 7.4786, 7.4784, 7.4781, 7.4778, 7.4778, 7.4775, 7.4773, 7.477, 7.4767, 7.4764, 7.4753, 7.475, 7.4748, 7.4746, 7.4751, 7.4749, 7.4746, 7.4751, 7.4748, 7.4745, 7.4742, 7.4739, 7.4736, 7.4734, 7.4731, 7.4728, 7.4725, 7.4723, 7.472, 7.4725, 7.4731, 7.4736, 7.4734, 7.4732, 7.4729, 7.4727, 7.4724, 7.4722, 7.472, 7.4718, 7.4725, 7.473, 7.4727, 7.4732, 7.4729, 7.4735, 7.474, 7.4737, 7.4734, 7.4731, 7.4728, 7.4725, 7.4721, 7.4718, 7.4715, 7.4713, 7.4718, 7.4715, 7.4712, 7.4709, 7.4708, 7.4707, 7.4712, 7.4709, 7.4707, 7.4704, 7.4701, 7.4698, 7.4705, 7.4702, 7.4699, 7.4704, 7.4702, 7.4707, 7.4721, 7.4723, 7.472, 7.4726, 7.4723, 7.4723, 7.472, 7.4721, 7.4727, 7.4724, 7.4729, 7.4719, 7.4716, 7.4713, 7.4703, 7.4701, 7.4698, 7.4695, 7.4692, 7.4698, 7.4705, 7.4702, 7.4708, 7.4705, 7.4713, 7.4719, 7.472, 7.4718, 7.4735, 7.4733, 7.4736, 7.4734, 7.4731, 7.4745, 7.4742, 7.4739, 7.473, 7.4731, 7.4732, 7.473, 7.4727, 7.4724, 7.4727, 7.4733, 7.4756, 7.4753, 7.475, 7.4756, 7.477, 7.4767, 7.4757, 7.4763, 7.4755, 7.4746, 7.4751, 7.4748, 7.4744, 7.475, 7.4749, 7.4746, 7.4769, 7.4783, 7.4783, 7.4774, 7.4779, 7.4776, 7.4781, 7.4778, 7.4783, 7.4788, 7.4793, 7.4798, 7.4795, 7.4809, 7.4806, 7.4812, 7.4809, 7.4807, 7.4804, 7.4801, 7.4798, 7.4795, 7.48, 7.4805, 7.481, 7.4815, 7.4812, 7.4801, 7.4806, 7.4803, 7.4808, 7.4805, 7.4802, 7.4799, 7.4796, 7.4801, 7.4806, 7.4812, 7.4809, 7.4814, 7.4811, 7.4816, 7.4813, 7.4819, 7.4833, 7.483, 7.4835, 7.4843, 7.4839, 7.4844, 7.4833, 7.4838, 7.4843, 7.4848, 7.4853, 7.485, 7.4863, 7.4872, 7.4868, 7.4881, 7.4878, 7.4876, 7.4901, 7.4892, 7.489, 7.4912, 7.4909, 7.4898, 7.4899, 7.4912, 7.4909, 7.4906, 7.4912, 7.492, 7.4917, 7.4906, 7.4912, 7.4901, 7.4898, 7.4895, 7.49, 7.4898, 7.4903, 7.4909, 7.4905, 7.4902, 7.4899, 7.4914, 7.4903, 7.49, 7.4905, 7.4902, 7.4907, 7.4912, 7.4909, 7.4906, 7.4903, 7.4908, 7.4906, 7.4906, 7.4911, 7.4908, 7.4905, 7.4902, 7.4899, 7.4893, 7.49, 7.4905, 7.4902, 7.49, 7.4905, 7.4902, 7.4902, 7.4902, 7.4907, 7.4904, 7.4909, 7.4922, 7.4919, 7.4917, 7.4914, 7.4911, 7.4908, 7.4905, 7.4902, 7.4907, 7.4912, 7.4909, 7.4908, 7.4913, 7.491, 7.4934, 7.4931, 7.4936, 7.4941, 7.4939, 7.4936, 7.4936, 7.4933, 7.4938, 7.4944, 7.4941, 7.4954, 7.4959, 7.4957, 7.4954, 7.4951, 7.4956, 7.4953, 7.495, 7.4955, 7.4952, 7.4957, 7.4947, 7.4944, 7.4941, 7.4946, 7.4951, 7.4956, 7.4961, 7.4958, 7.4955, 7.4977, 7.4974, 7.4979, 7.4976, 7.4981, 7.4978, 7.4975, 7.4972, 7.4977, 7.4982, 7.4979, 7.4976, 7.4974, 7.4971, 7.4976, 7.4973, 7.497, 7.4987, 7.4992, 7.4989, 7.4986, 7.4983, 7.4981, 7.4978, 7.4975, 7.4972, 7.4969, 7.4978, 7.4975, 7.4988, 7.4985, 7.4982, 7.4987, 7.4984, 7.4989, 7.4986, 7.4983, 7.498, 7.4976, 7.4981, 7.4979, 7.4994, 7.4992, 7.499, 7.4987, 7.4993, 7.4998, 7.4996, 7.4993, 7.4997, 7.4994, 7.4991, 7.4988, 7.4985, 7.4982, 7.4979, 7.4976, 7.4974, 7.4971, 7.4968, 7.4966, 7.4973, 7.4978, 7.4975, 7.4972, 7.4969, 7.4974, 7.4971, 7.4969, 7.4966, 7.4955, 7.4952, 7.4949, 7.4963, 7.4961, 7.4959, 7.4967, 7.4964, 7.497, 7.497, 7.4969, 7.4974, 7.4973, 7.4978, 7.4976, 7.4974, 7.4979, 7.4976, 7.4974, 7.4972, 7.4969, 7.4975, 7.4973, 7.497, 7.4975, 7.4973, 7.497, 7.4975, 7.498, 7.4977, 7.4982, 7.4987, 7.4992, 7.4989, 7.4994, 7.4999, 7.5003, 7.5, 7.4997, 7.4994, 7.4991, 7.4988, 7.4985, 7.499, 7.498, 7.4977, 7.4974, 7.4971, 7.4968, 7.4967, 7.4956, 7.4953, 7.4958, 7.4956, 7.4953, 7.4951, 7.4948, 7.4962, 7.4968, 7.4965, 7.4963, 7.496, 7.4957, 7.4954, 7.4951, 7.4956, 7.4954, 7.4952, 7.4973, 7.497, 7.4969, 7.4966, 7.4971, 7.4993, 7.4999, 7.5004, 7.5009, 7.5007, 7.5004, 7.5001, 7.5006, 7.5011, 7.502, 7.5033, 7.503, 7.5035, 7.504, 7.5037, 7.5041, 7.5051, 7.5057, 7.5054, 7.5051, 7.5049, 7.5059, 7.5056, 7.5053, 7.5051, 7.5048, 7.5053, 7.505, 7.5055, 7.5052, 7.5049, 7.5046, 7.5043, 7.5041, 7.5049, 7.5046, 7.5043, 7.5043, 7.5042, 7.5047, 7.5044, 7.5049, 7.5047, 7.5044, 7.5042, 7.5039, 7.5038, 7.5036, 7.5042, 7.5042, 7.5044, 7.5042, 7.5039, 7.5044, 7.5057, 7.5055, 7.5069, 7.5075, 7.5085, 7.5085, 7.5082, 7.5083, 7.508, 7.5077, 7.5082, 7.5074, 7.5064, 7.5069, 7.5066, 7.5063, 7.5061, 7.5058, 7.5066, 7.5063, 7.506, 7.5057, 7.5054, 7.5059, 7.5056, 7.5079, 7.5069, 7.5066, 7.5078, 7.5076, 7.5089, 7.5086, 7.509, 7.5088, 7.5085, 7.509, 7.5088, 7.5086, 7.5083, 7.5088, 7.5086, 7.5091, 7.5096, 7.5093, 7.5091, 7.5088, 7.5085, 7.5105, 7.5114, 7.5111, 7.5109, 7.5106, 7.5112, 7.5122, 7.5119, 7.5116, 7.5121, 7.5119, 7.5116, 7.5113, 7.511, 7.5108, 7.5114, 7.5112, 7.5117, 7.5122, 7.5119, 7.5116, 7.5113, 7.511, 7.5115, 7.5112, 7.5109, 7.5107, 7.5106, 7.5103, 7.5108, 7.5106, 7.5103, 7.5102, 7.5099, 7.5105, 7.5111, 7.5109, 7.5115, 7.5114, 7.5112, 7.5109, 7.5107, 7.5106, 7.5111, 7.5109, 7.5106], '192.168.122.115': [5.8181, 5.7882, 7.3882, 6.8684, 6.5512, 7.2699, 7.0023, 6.7761, 6.6212, 7.0648, 7.4594, 7.2981, 6.7804, 6.6817, 6.6433, 6.5587, 6.5343, 6.4713, 6.4249, 6.6336, 6.5792, 6.5611, 6.5309, 6.7922, 6.7563, 6.7131, 6.6628, 6.6265, 6.8163, 6.7764, 6.9178, 7.0457, 6.9962, 6.9706, 7.0856, 7.1745, 7.1377, 7.0974, 7.0512, 7.0092, 7.5081, 7.4683, 7.434, 7.2861, 7.3392, 7.4144, 7.3829, 7.372, 7.3458, 7.4478, 7.4165, 7.3879, 7.3661, 7.4307, 7.4084, 7.4695, 7.5301, 7.409, 7.3852, 7.3597, 7.3342, 7.4812, 7.4859, 7.4737, 7.5086, 7.5019, 7.5672, 7.4737, 7.5232, 7.5008, 7.4728, 7.4454, 7.4165, 7.4044, 7.4303, 7.4075, 7.6704, 7.6547, 7.6308, 7.6054, 7.5306, 7.5089, 7.548, 7.5219, 7.4966, 7.4836, 7.4653, 7.4816, 7.4804, 7.4568, 7.4335, 7.4109, 7.388, 7.3666, 7.3498, 7.3312, 7.3148, 7.4637, 7.4966, 7.533, 7.5112, 7.5486, 7.5325, 7.4659, 7.4576, 7.4612, 7.4415, 7.424, 7.5053, 7.4916, 7.4791, 7.5148, 7.5005, 7.4827, 7.4652, 7.4948, 7.4795, 7.4681, 7.4524, 7.4836, 7.494, 7.4776, 7.5081, 7.4931, 7.4834, 7.5089, 7.4917, 7.516, 7.5006, 7.4869, 7.4715, 7.4583, 7.4466, 7.4308, 7.4198, 7.4071, 7.4315, 7.417, 7.4115, 7.439, 7.4663, 7.4534, 7.4751, 7.4988, 7.4842, 7.5074, 7.4918, 7.5143, 7.4999, 7.486, 7.5073, 7.5293, 7.5186, 7.4739, 7.4965, 7.486, 7.4416, 7.4511, 7.4382, 7.4261, 7.4243, 7.4457, 7.433, 7.4219, 7.3803, 7.3704, 7.3585, 7.3512, 7.3391, 7.342, 7.3329, 7.3507, 7.3384, 7.359, 7.3497, 7.3394, 7.3572, 7.3456, 7.3831, 7.4042, 7.4454, 7.4347, 7.3986, 7.4175, 7.4117, 7.428, 7.449, 7.4401, 7.4303, 7.4891, 7.4786, 7.4967, 7.4885, 7.4779, 7.4726, 7.4616, 7.4516, 7.4686, 7.4605, 7.4805, 7.4751, 7.4659, 7.4576, 7.4514, 7.4443, 7.4366, 7.4379, 7.4305, 7.4394, 7.4308, 7.4225, 7.4195, 7.4378, 7.4534, 7.4438, 7.4862, 7.5028, 7.4948, 7.5434, 7.5342, 7.5274, 7.5445, 7.5355, 7.5279, 7.5195, 7.536, 7.5524, 7.5687, 7.5607, 7.5517, 7.5689, 7.5875, 7.5808, 7.5744, 7.5647, 7.5551, 7.5465, 7.5405, 7.534, 7.5284, 7.5447, 7.5594, 7.5761, 7.5806, 7.5716, 7.5852, 7.5764, 7.5683, 7.5823, 7.5954, 7.5923, 7.5849, 7.6013, 7.5958, 7.5901, 7.5822, 7.5766, 7.568, 7.5602, 7.5747, 7.5719, 7.5701, 7.5838, 7.5946, 7.6078, 7.6003, 7.5917, 7.6266, 7.6407, 7.6543, 7.6507, 7.6453, 7.6797, 7.6535, 7.6853, 7.7189, 7.7115, 7.7036, 7.696, 7.6877, 7.7184, 7.7295, 7.7216, 7.713, 7.7044, 7.6976, 7.6905, 7.7031, 7.7155, 7.7071, 7.699, 7.6918, 7.7365, 7.7286, 7.7231, 7.7149, 7.7258, 7.7549, 7.8339, 7.8658, 7.8578, 7.8335, 7.8437, 7.8359, 7.8307, 7.8252, 7.8173, 7.8272, 7.8188, 7.8131, 7.823, 7.8325, 7.8459, 7.8549, 7.8477, 7.8576, 7.8671, 7.8615, 7.8544, 7.8667, 7.8604, 7.856, 7.8517, 7.8604, 7.8693, 7.8626, 7.8547, 7.8326, 7.8299, 7.8254, 7.8204, 7.8155, 7.8103, 7.8212, 7.8245, 7.8232, 7.8157, 7.8258, 7.8237, 7.8021, 7.8108, 7.8039, 7.7982, 7.7981, 7.7917, 7.7893, 7.7824, 7.7954, 7.7883, 7.7997, 7.8081, 7.8164, 7.8114, 7.8055, 7.7986, 7.7939, 7.7889, 7.7821, 7.7618, 7.7698, 7.7557, 7.7489, 7.7421, 7.7802, 7.7882, 7.8165, 7.8243, 7.8174, 7.8257, 7.8187, 7.8133, 7.8095, 7.8027, 7.8306, 7.8389, 7.8327, 7.8272, 7.8247, 7.8197, 7.814, 7.8209, 7.8286, 7.8251, 7.8329, 7.8267, 7.8203, 7.814, 7.8077, 7.8016, 7.7832, 7.7656, 7.7622, 7.7776, 7.7719, 7.7658, 7.7595, 7.7534, 7.7478, 7.7438, 7.7398, 7.7337, 7.7276, 7.7221, 7.7168, 7.7117, 7.7057, 7.7008, 7.6975, 7.7046, 7.6989, 7.6949, 7.6912, 7.6997, 7.6942, 7.7021, 7.6976, 7.6943, 7.6889, 7.6838, 7.678, 7.6727, 7.6673, 7.6631, 7.6577, 7.653, 7.6486, 7.6437, 7.6409, 7.636, 7.6315, 7.6271, 7.622, 7.6165, 7.6244, 7.6192, 7.6157, 7.628, 7.6229, 7.6191, 7.6267, 7.6341, 7.6302, 7.6316, 7.6277, 7.6228, 7.6176, 7.6137, 7.6089, 7.6043, 7.5997, 7.5964, 7.5832, 7.5783, 7.5793, 7.5896, 7.5849, 7.5853, 7.5803, 7.579, 7.5864, 7.5822, 7.5777, 7.5741, 7.572, 7.5683, 7.5646, 7.5726, 7.5718, 7.5685, 7.5769, 7.5736, 7.6181, 7.6134, 7.6096, 7.595, 7.592, 7.5878, 7.5832, 7.591, 7.6194, 7.6149, 7.6139, 7.6093, 7.6068, 7.6036, 7.5995, 7.5866, 7.5822, 7.5777, 7.574, 7.5708, 7.5669, 7.5957, 7.6033, 7.6109, 7.6077, 7.6038, 7.6107, 7.6354, 7.6215, 7.6284, 7.6246, 7.6202, 7.6162, 7.6127, 7.609, 7.6145, 7.6102, 7.6083, 7.6038, 7.5997, 7.5962, 7.5935, 7.5893, 7.5875, 7.5853, 7.5824, 7.5784, 7.5743, 7.5763, 7.5725, 7.5686, 7.5674, 7.5632, 7.5499, 7.5475, 7.5536, 7.5599, 7.5617, 7.5793, 7.5753, 7.5722, 7.5702, 7.5695, 7.5752, 7.5715, 7.5688, 7.575, 7.5725, 7.5692, 7.5652, 7.5621, 7.5591, 7.5655, 7.5637, 7.5607, 7.567, 7.5639, 7.5698, 7.5656, 7.5715, 7.5674, 7.5637, 7.5622, 7.5681, 7.5739, 7.5701, 7.5663, 7.5541, 7.5605, 7.5615, 7.5577, 7.554, 7.5509, 7.5403, 7.5366, 7.5326, 7.5289, 7.5348, 7.5312, 7.5284, 7.5346, 7.5383, 7.535, 7.5318, 7.53, 7.5361, 7.5335, 7.5306, 7.5277, 7.5476, 7.5438, 7.5419, 7.5418, 7.539, 7.5373, 7.5335, 7.5306, 7.527, 7.5234, 7.5197, 7.5167, 7.5182, 7.5144, 7.5128, 7.5097, 7.5164, 7.5233, 7.5308, 7.5277, 7.5243, 7.5206, 7.5177, 7.5144, 7.5108, 7.5083, 7.5142, 7.5156, 7.5124, 7.5029, 7.4997, 7.4975, 7.4943, 7.4911, 7.5037, 7.5016, 7.5075, 7.5138, 7.511, 7.5077, 7.5137, 7.5108, 7.5078, 7.5041, 7.5101, 7.516, 7.5132, 7.5101, 7.5074, 7.512, 7.5166, 7.5218, 7.5214, 7.5189, 7.5156, 7.5127, 7.5179, 7.5232, 7.52, 7.5181, 7.5318, 7.5347, 7.5315, 7.5289, 7.5269, 7.5252, 7.5218, 7.5192, 7.5165, 7.5211, 7.5185, 7.5234, 7.5205, 7.5183, 7.5158, 7.5204, 7.5257, 7.5312, 7.5291, 7.5261, 7.5253, 7.5226, 7.5214, 7.5269, 7.5326, 7.5295, 7.5269, 7.5236, 7.5216, 7.5207, 7.5251, 7.5217, 7.5189, 7.5155, 7.5136, 7.5111, 7.5156, 7.5203, 7.5172, 7.5145, 7.5053, 7.5104, 7.5081, 7.5127, 7.5176, 7.5158, 7.5214, 7.5258, 7.5238, 7.5212, 7.5181, 7.5229, 7.5204, 7.5268, 7.524, 7.5207, 7.5174, 7.5148, 7.5129, 7.5109, 7.5079, 7.5054, 7.5024, 7.5068, 7.497, 7.4947, 7.4922, 7.4893, 7.4873, 7.4844, 7.4815, 7.4864, 7.4839, 7.5034, 7.5006, 7.4981, 7.4963, 7.5007, 7.5054, 7.5025, 7.5003, 7.5009, 7.498, 7.4951, 7.4997, 7.5047, 7.5022, 7.4993, 7.4965, 7.4944, 7.4915, 7.4884, 7.4869, 7.4841, 7.4813, 7.4784, 7.476, 7.4746, 7.4799, 7.4789, 7.4766, 7.4745, 7.4732, 7.4713, 7.4699, 7.4745, 7.4722, 7.4764, 7.4815, 7.4817, 7.4791, 7.4767, 7.4742, 7.4721, 7.4851, 7.4833, 7.4806, 7.4778, 7.4823, 7.4803, 7.4775, 7.4687, 7.4666, 7.4638, 7.4609, 7.4582, 7.4556, 7.453, 7.4648, 7.4628, 7.468, 7.4653, 7.4692, 7.4665, 7.4645, 7.469, 7.4667, 7.4645, 7.4622, 7.4599, 7.4575, 7.4623, 7.4602, 7.4648, 7.463, 7.4606, 7.4586, 7.4571, 7.4566, 7.4609, 7.4581, 7.457, 7.4567, 7.4609, 7.4587, 7.4632, 7.4562, 7.4538, 7.4592, 7.457, 7.4543, 7.4529, 7.4502, 7.4478, 7.4453, 7.4495, 7.4474, 7.4461, 7.4503, 7.4576, 7.4621, 7.4662, 7.4708, 7.4687, 7.4723, 7.4702, 7.4737, 7.4769, 7.4748, 7.4729, 7.4645, 7.4684, 7.4734, 7.4779, 7.4769, 7.4765, 7.4742, 7.4715, 7.4697, 7.4671, 7.4651, 7.4631, 7.4671, 7.4647, 7.4623, 7.466, 7.4639, 7.468, 7.4667, 7.4708, 7.4683, 7.4666, 7.4707, 7.4685, 7.4679, 7.4657, 7.4697, 7.4734, 7.4774, 7.4753, 7.473, 7.477, 7.4872, 7.4792, 7.4771, 7.4749, 7.4793, 7.4776, 7.4752, 7.4795, 7.4834, 7.4779, 7.4755, 7.4733, 7.4715, 7.469, 7.4665, 7.4642, 7.4617, 7.4595, 7.4573, 7.455, 7.4655, 7.4632, 7.4612, 7.459, 7.4588, 7.4573, 7.456, 7.4547, 7.453, 7.4565, 7.4546, 7.4528, 7.4565, 7.4541, 7.4518, 7.4496, 7.4488, 7.4466, 7.4445, 7.4483, 7.446, 7.4436, 7.4475, 7.4527, 7.4504, 7.4479, 7.4456, 7.4433, 7.441, 7.4386, 7.4363, 7.434, 7.4379, 7.4457, 7.4437, 7.4418, 7.4463, 7.4448, 7.4427, 7.4461, 7.4495, 7.4535, 7.4514, 7.4497, 7.4474, 7.4511, 7.4546, 7.4525, 7.4501, 7.454, 7.4637, 7.4627, 7.462, 7.4644, 7.4622, 7.4659, 7.4715, 7.4693, 7.4672, 7.4648, 7.4635, 7.4613, 7.4597, 7.4577, 7.4563, 7.4539, 7.4524, 7.4512, 7.4548, 7.4581, 7.4616, 7.4596, 7.4576, 7.4557, 7.4587, 7.4622, 7.4602, 7.4581, 7.4558, 7.4536, 7.4569, 7.4553, 7.4588, 7.4576, 7.4555, 7.4543, 7.4521, 7.453, 7.4509, 7.4544, 7.4521, 7.4503, 7.4481, 7.4551, 7.4528, 7.4553, 7.4538, 7.4519, 7.4504, 7.4493, 7.4481, 7.4516, 7.4498, 7.4477, 7.4457, 7.4439, 7.4418, 7.4403, 7.4388, 7.4369, 7.435, 7.4396, 7.4392, 7.4431, 7.4416, 7.4417, 7.4404, 7.4573, 7.456, 7.454, 7.4523, 7.4507, 7.4539, 7.4683, 7.4719, 7.4702, 7.4843, 7.4875, 7.4909, 7.4892, 7.4927, 7.4911, 7.4942, 7.4922, 7.4958, 7.4956, 7.4992, 7.5065, 7.5053, 7.5041, 7.5018, 7.4997, 7.4975, 7.4955, 7.4932, 7.4916, 7.4897, 7.4901, 7.4879, 7.4862, 7.4853, 7.4839, 7.4872, 7.4853, 7.4842, 7.4822, 7.4804, 7.4787, 7.4765, 7.4748, 7.4925, 7.491, 7.4888, 7.4867, 7.4848, 7.4837, 7.4817, 7.48, 7.4814, 7.4842, 7.4826, 7.4805, 7.4789, 7.4771, 7.4705, 7.4758, 7.4791, 7.4724, 7.4704, 7.4703, 7.4691, 7.4677, 7.4711, 7.4691, 7.4672, 7.4705, 7.4695, 7.4682, 7.4696, 7.4678, 7.4661, 7.4596, 7.4629, 7.4872, 7.5062, 7.5144, 7.5131, 7.5112, 7.5094, 7.5075, 7.5134, 7.5118, 7.5103, 7.5099, 7.5088, 7.507, 7.5101, 7.5137, 7.5171, 7.516, 7.515, 7.5131, 7.5166, 7.5151, 7.5134, 7.5113, 7.51, 7.5095, 7.5132, 7.5116, 7.5157, 7.5095, 7.5128, 7.5111, 7.5095, 7.5088, 7.5071, 7.5099, 7.5089, 7.5072, 7.5058, 7.5098, 7.5127, 7.5126, 7.5207, 7.5187, 7.5172, 7.5163, 7.5191, 7.5176, 7.5161, 7.5284, 7.5264, 7.5246, 7.5274, 7.5302, 7.5333, 7.5319, 7.5304, 7.5288, 7.5276, 7.5256, 7.5239, 7.5222, 7.5211, 7.5427, 7.5412, 7.5394, 7.5374, 7.5454, 7.5436, 7.5422, 7.5412, 7.5392, 7.5423, 7.5406, 7.5387, 7.5439, 7.5431, 7.5457, 7.5485, 7.5517, 7.5545, 7.5533, 7.5513, 7.5497, 7.548, 7.5461, 7.5447, 7.5427, 7.5426, 7.5407, 7.5392, 7.5376, 7.5405, 7.5436, 7.5418, 7.5406, 7.5394, 7.5375, 7.5406, 7.5386, 7.5383, 7.5368, 7.5351, 7.5332, 7.5313, 7.5297, 7.5325, 7.5309, 7.5302, 7.5302, 7.5286, 7.5315, 7.5299, 7.5287, 7.5273, 7.5254, 7.5236, 7.5225, 7.5255, 7.5275, 7.5258, 7.5264, 7.5288, 7.5269, 7.5212, 7.5375, 7.54, 7.5426, 7.5407, 7.5436, 7.5417, 7.5445, 7.5428, 7.5411, 7.5396, 7.5381, 7.5438, 7.5495, 7.5477, 7.5497, 7.548, 7.5543, 7.5573, 7.5687, 7.5677, 7.5662, 7.569, 7.5672, 7.5703, 7.5731, 7.5717, 7.5698, 7.57, 7.5684, 7.5821, 7.5871, 7.586, 7.5842, 7.5881, 7.5923, 7.5904, 7.5946, 7.5933, 7.592, 7.5948, 7.5933, 7.5915, 7.5903, 7.5928, 7.5913, 7.5895, 7.5878, 7.5867, 7.5848, 7.5829, 7.5819, 7.5771, 7.5753, 7.5736, 7.5728, 7.5754, 7.5738, 7.5721, 7.5703, 7.5686, 7.5674, 7.5707, 7.5732, 7.5759, 7.5749, 7.5733, 7.572, 7.571, 7.5695, 7.5678, 7.5667, 7.5656, 7.5684, 7.567, 7.5656, 7.5648, 7.563, 7.5611, 7.5599, 7.5626, 7.5612, 7.5593, 7.5619, 7.5604, 7.5668, 7.5654, 7.5613, 7.5676, 7.5662, 7.565, 7.5636, 7.5618, 7.5601, 7.5585, 7.5572, 7.5555, 7.5539, 7.5523, 7.551, 7.5535, 7.5561, 7.5544, 7.5568, 7.555, 7.5533, 7.552, 7.5506, 7.553, 7.5514, 7.5498, 7.5482, 7.5473, 7.5456, 7.5443, 7.5426, 7.5453, 7.5436, 7.5419, 7.5402, 7.5427, 7.5411, 7.5435, 7.5421, 7.5411, 7.5394, 7.5379, 7.5364, 7.5362, 7.5355, 7.5345, 7.5331, 7.5346, 7.533, 7.5317, 7.5306, 7.529, 7.5277, 7.5229, 7.5217, 7.5243, 7.527, 7.5253, 7.5238, 7.5227, 7.5211, 7.5195, 7.5178, 7.5201, 7.5188, 7.5171, 7.5155, 7.5139, 7.5148, 7.5132, 7.512, 7.5104, 7.5089, 7.5077, 7.506, 7.5044, 7.5068, 7.5139, 7.5162, 7.5199, 7.5232, 7.5234, 7.5228, 7.5226, 7.5255, 7.5281, 7.5285, 7.527, 7.5254, 7.5241, 7.5229, 7.5214, 7.5236, 7.5222, 7.5206, 7.519, 7.5176, 7.5163, 7.515, 7.5137, 7.5124, 7.5111, 7.5098, 7.5121, 7.5113, 7.5099, 7.509, 7.5078, 7.5064, 7.5088, 7.5073, 7.5097, 7.5119, 7.5105, 7.5131, 7.5152, 7.5181, 7.5166, 7.5152, 7.5177, 7.5173, 7.5198, 7.5184, 7.5209, 7.5234, 7.5222, 7.5208, 7.5201, 7.5187, 7.5177, 7.5203, 7.5189, 7.521, 7.523, 7.5214, 7.5208, 7.5193, 7.5181, 7.5174, 7.516, 7.515, 7.5134, 7.5162, 7.5183, 7.5177, 7.5201, 7.5222, 7.5211, 7.5195, 7.5179, 7.5189, 7.5175, 7.5198, 7.5183, 7.5206, 7.5194, 7.5219, 7.5208, 7.5195, 7.5182, 7.5191, 7.5182, 7.5173, 7.5158, 7.5148, 7.517, 7.5192, 7.5217, 7.5277, 7.5298, 7.5293, 7.528, 7.5306, 7.5328, 7.5349, 7.5337, 7.5335, 7.5321, 7.5306, 7.5292, 7.5313, 7.5305, 7.5257, 7.5245, 7.5237, 7.5264, 7.5249, 7.5235, 7.523, 7.5228, 7.525, 7.5234, 7.5258, 7.5244, 7.5231, 7.5215, 7.5212, 7.5218, 7.524, 7.5225, 7.521, 7.5232, 7.5222, 7.5207, 7.5196, 7.5183, 7.5206, 7.5191, 7.5146, 7.5134, 7.5142, 7.5129, 7.5149, 7.5103, 7.5127, 7.5114, 7.5104, 7.5128, 7.5114, 7.5134, 7.5121, 7.5108, 7.5096, 7.5082, 7.5039, 7.5028, 7.509, 7.5083, 7.5071, 7.5064, 7.5087, 7.5073, 7.5102, 7.5057, 7.5078, 7.5099, 7.5084, 7.507, 7.5059, 7.5045, 7.5035, 7.5022, 7.5011, 7.4999, 7.4991, 7.4979, 7.5002, 7.5029, 7.502, 7.5006, 7.5031, 7.502, 7.5044, 7.5069, 7.5058, 7.5088, 7.5108, 7.5093, 7.5085, 7.5071, 7.5061, 7.5081, 7.5074, 7.5064, 7.5053, 7.5044, 7.5033, 7.5021, 7.5014, 7.5033, 7.5022, 7.5011, 7.5002, 7.499, 7.5017, 7.5002, 7.499, 7.5015, 7.5002, 7.4988, 7.4977, 7.4964, 7.495, 7.4975, 7.5004, 7.4991, 7.498, 7.4968, 7.4964, 7.495, 7.4938, 7.4958, 7.4946, 7.4959, 7.4949, 7.4936, 7.4924, 7.4915, 7.4903, 7.4923, 7.4915, 7.4902, 7.493, 7.4916, 7.4906, 7.4901, 7.4895, 7.4883, 7.4877, 7.4864, 7.485, 7.4836, 7.4836, 7.4823, 7.4812, 7.4799, 7.482, 7.4807, 7.4793, 7.478, 7.4875, 7.49, 7.4957, 7.4943, 7.4939, 7.4928, 7.4949, 7.4941, 7.4929, 7.4916, 7.4937, 7.4923, 7.4911, 7.4901, 7.4889, 7.4875, 7.4864, 7.4864, 7.4851, 7.4841, 7.4828, 7.4819, 7.4839, 7.483, 7.4851, 7.4869, 7.489, 7.4909, 7.4897, 7.4884, 7.4872, 7.486, 7.4847, 7.4836, 7.4823, 7.4813, 7.48, 7.4796, 7.4848, 7.4839, 7.4828, 7.4815, 7.4802, 7.4789, 7.4779, 7.4804, 7.4794, 7.4819, 7.484, 7.4862, 7.4885, 7.4872, 7.4894, 7.4885, 7.4874, 7.4862, 7.4883, 7.4871, 7.4858, 7.488, 7.4868, 7.4889, 7.4876, 7.4869, 7.4936, 7.4923, 7.4943, 7.4966, 7.4957, 7.4951, 7.4951, 7.4939, 7.4959, 7.4917, 7.4906, 7.4894, 7.4857, 7.4847, 7.4833, 7.482, 7.4807, 7.4794, 7.4781, 7.4775, 7.4795, 7.4783, 7.477, 7.476, 7.4766, 7.4755, 7.4775, 7.4796, 7.4816, 7.4804, 7.4824, 7.4815, 7.4803, 7.4791, 7.4782, 7.4835, 7.4826, 7.4824, 7.4785, 7.4806, 7.4798, 7.4788, 7.4775, 7.4795, 7.4856, 7.4878, 7.4865, 7.4862, 7.4851, 7.4871, 7.4858, 7.4877, 7.4896, 7.4885, 7.4904, 7.4893, 7.491, 7.493, 7.4947, 7.4907, 7.4925, 7.4945, 7.4934, 7.4955, 7.4946, 7.4967, 7.4989, 7.5009, 7.4999, 7.5022, 7.5015, 7.5041, 7.5028, 7.5048, 7.5035, 7.5027, 7.5019, 7.5009, 7.4996, 7.4984, 7.5018, 7.5008, 7.5002, 7.5021, 7.5049, 7.5037, 7.5028, 7.5019, 7.5037, 7.5028, 7.4995, 7.4984, 7.5004, 7.4992, 7.498, 7.4968, 7.496, 7.4948, 7.5035, 7.5055, 7.5043, 7.506, 7.5051, 7.507, 7.5069, 7.5127, 7.5132, 7.512, 7.514, 7.5159, 7.5178, 7.5165, 7.5187, 7.5178, 7.5168, 7.5156, 7.5175, 7.5194, 7.5213, 7.5201, 7.519, 7.5184, 7.5175, 7.5193, 7.5182, 7.5169, 7.5157, 7.516, 7.5155, 7.5152, 7.5172, 7.5161, 7.5154, 7.518, 7.5168, 7.5155, 7.5176, 7.5195, 7.5184, 7.5177, 7.5197, 7.5186, 7.5175, 7.5162, 7.5151, 7.514, 7.5161, 7.5181, 7.5143, 7.5132, 7.515, 7.514, 7.5129, 7.5119, 7.5112, 7.5102, 7.5095, 7.5084, 7.5073, 7.5069, 7.5061, 7.5079, 7.5067, 7.5031, 7.511, 7.511, 7.51, 7.5069, 7.5057, 7.5058, 7.508, 7.5068, 7.5057, 7.5047, 7.5036, 7.5026, 7.5018, 7.5034, 7.5022, 7.5011, 7.5003, 7.4994, 7.4982, 7.4944, 7.4934, 7.4951, 7.4944, 7.4933, 7.495, 7.5056, 7.5048, 7.5055, 7.5045, 7.5062, 7.5053, 7.5131, 7.5124, 7.5112, 7.51, 7.5088, 7.5079, 7.5072, 7.5063, 7.5055, 7.5045, 7.5041, 7.5029, 7.5022, 7.5039, 7.5058, 7.5046, 7.5036, 7.5053, 7.5042, 7.5031, 7.505, 7.504, 7.5059, 7.5049, 7.5042, 7.5061, 7.5065, 7.5058, 7.5052, 7.504, 7.5029, 7.5022, 7.5011, 7.5032, 7.5023, 7.5011, 7.5001, 7.5019, 7.5015, 7.5033, 7.5022, 7.5012, 7.5064, 7.5085, 7.5073, 7.5061, 7.5079, 7.5073, 7.5065, 7.5056, 7.5049, 7.5067, 7.5085, 7.5074, 7.5066, 7.5057, 7.5049, 7.508, 7.507, 7.5058, 7.5054, 7.5043, 7.506, 7.5052, 7.5041, 7.5029, 7.5018, 7.5009, 7.5001, 7.4996, 7.5013, 7.503, 7.5021, 7.5013, 7.5003, 7.4991, 7.4985, 7.4982, 7.4972, 7.4992, 7.4986, 7.4975, 7.4964, 7.4954, 7.4944, 7.4933, 7.4921, 7.4912, 7.4903, 7.4897, 7.4896, 7.4891, 7.4889, 7.491, 7.49, 7.4895, 7.4887, 7.4878, 7.4897, 7.4891, 7.4906, 7.4898, 7.4887, 7.4862, 7.4852, 7.4842, 7.4831, 7.485, 7.4843, 7.4833, 7.4853, 7.4863, 7.4852, 7.4842, 7.4831, 7.4851, 7.487, 7.4858, 7.485, 7.4841, 7.4832, 7.4824, 7.4815, 7.4806, 7.4796, 7.4797, 7.4786, 7.4801, 7.479, 7.4779, 7.4781, 7.4775, 7.4793, 7.4783, 7.4798, 7.4814, 7.4832, 7.4848, 7.4838, 7.4832, 7.4825, 7.4816, 7.4807, 7.4796, 7.4791, 7.481, 7.48, 7.4817, 7.4806, 7.4797, 7.4786, 7.4814, 7.4923, 7.4914, 7.4932, 7.4973, 7.4988, 7.4979, 7.4969, 7.4958, 7.4948, 7.4963, 7.4952, 7.4941, 7.4958, 7.4948, 7.4965, 7.4956, 7.4946, 7.4962, 7.4953, 7.4945, 7.4964, 7.4955, 7.4945, 7.4936, 7.4926, 7.4915, 7.4905, 7.4897, 7.489, 7.4882, 7.4873, 7.4862, 7.4856, 7.4847, 7.4837, 7.4827, 7.4818, 7.4857, 7.4847, 7.4864, 7.4859, 7.4849, 7.4842, 7.4832, 7.4825, 7.4842, 7.4857, 7.4847, 7.4862, 7.4852, 7.4843, 7.4839, 7.483, 7.4821, 7.4837, 7.4831, 7.4827, 7.4841, 7.4856, 7.4845, 7.4842, 7.486, 7.4852, 7.4842, 7.4835, 7.4825, 7.4841, 7.483, 7.4822, 7.4812, 7.4806, 7.4797, 7.4813, 7.4805, 7.4799, 7.4789, 7.4804, 7.4823, 7.4815, 7.4833, 7.4823, 7.4813, 7.4804, 7.4804, 7.4821, 7.4837, 7.4831, 7.4823, 7.4815, 7.4806, 7.4801, 7.4791, 7.4781, 7.4797, 7.4787, 7.4777, 7.4766, 7.4756, 7.4748, 7.4781, 7.477, 7.476, 7.475, 7.4772, 7.4762, 7.4756, 7.4748, 7.4738, 7.4733, 7.4728, 7.472, 7.4757, 7.4798, 7.479, 7.4785, 7.4778, 7.4768, 7.4759, 7.475, 7.4741, 7.4732, 7.4723, 7.4715, 7.4706, 7.4701, 7.4692, 7.4697, 7.4687, 7.4677, 7.4715, 7.4755, 7.477, 7.4811, 7.4803, 7.4796, 7.4789, 7.4805, 7.4795, 7.4791, 7.4781, 7.4774, 7.4768, 7.4759, 7.4749, 7.4739, 7.473, 7.472, 7.4713, 7.4705, 7.4724, 7.4717, 7.4709, 7.47, 7.467, 7.4698, 7.4691, 7.4681, 7.4672, 7.4688, 7.4687, 7.4683, 7.4676, 7.4644, 7.4661, 7.4676, 7.4667, 7.4661, 7.4653, 7.4647, 7.4663, 7.4653, 7.4647, 7.4663, 7.4657, 7.4648, 7.4638, 7.4632, 7.4648, 7.4639, 7.4629, 7.4621, 7.4639, 7.4655, 7.4645, 7.4636, 7.4627, 7.4642, 7.4659, 7.465, 7.4665, 7.4681, 7.4706, 7.4697, 7.4688, 7.4726, 7.4717, 7.473, 7.4721, 7.4737, 7.4779, 7.477, 7.4786, 7.4824, 7.4865, 7.4856, 7.4851, 7.4843, 7.4834, 7.4808, 7.4804, 7.482, 7.4813, 7.4803, 7.4794, 7.48, 7.479, 7.4781, 7.4772, 7.4786, 7.4777, 7.4792, 7.4787, 7.4777, 7.4792, 7.4808, 7.4801, 7.4792, 7.4826, 7.4819, 7.4788, 7.4781, 7.4771, 7.4786, 7.4782, 7.4775, 7.4788, 7.478, 7.4772, 7.4832, 7.4824, 7.4816, 7.4807, 7.4798, 7.4812, 7.4804, 7.4795, 7.4797, 7.4791, 7.4792, 7.4784, 7.4799, 7.4792, 7.4783, 7.4776, 7.4771, 7.4786, 7.4777, 7.4793, 7.4784, 7.4779, 7.4794, 7.4785, 7.4778, 7.4769, 7.476, 7.475, 7.4742, 7.4734, 7.4728, 7.4719, 7.4735, 7.4728, 7.4721, 7.4736, 7.4749, 7.474, 7.477, 7.4761, 7.4757, 7.4754, 7.4769, 7.4759, 7.4773, 7.4787, 7.4803, 7.4794, 7.4785, 7.4801, 7.4792, 7.4786, 7.4778, 7.4771, 7.4761, 7.4759, 7.475, 7.4744, 7.4735, 7.4726, 7.4721, 7.4736, 7.4728, 7.4745, 7.4735, 7.4726, 7.472, 7.4711, 7.4726, 7.4717, 7.4712, 7.4702, 7.4696, 7.469, 7.4682, 7.4673, 7.4667, 7.4642, 7.4635, 7.4626, 7.4618, 7.4612, 7.4606, 7.4576, 7.4615, 7.4631, 7.4623, 7.4624, 7.464, 7.4632, 7.4623, 7.4639, 7.4631, 7.4622, 7.4594, 7.4589, 7.4584, 7.4579, 7.4594, 7.4592, 7.4586, 7.4577, 7.4592, 7.4584, 7.4598, 7.4589, 7.456, 7.4551, 7.4543, 7.4557, 7.4528, 7.452, 7.4535, 7.4526, 7.4517, 7.4508, 7.4522, 7.4537, 7.4553, 7.4568, 7.4561, 7.4553, 7.4622, 7.4637, 7.4632, 7.4632, 7.4624, 7.4615, 7.4625, 7.4618, 7.461, 7.4624, 7.4616, 7.4629, 7.4643, 7.4634, 7.4626, 7.464, 7.4632, 7.4626, 7.4618, 7.461, 7.4605, 7.4598, 7.4589, 7.4581, 7.4574, 7.4566, 7.4558, 7.4549, 7.4563, 7.4555, 7.4546, 7.4542, 7.4534, 7.4529, 7.4521, 7.4512, 7.4526, 7.4544, 7.4558, 7.4551, 7.4543, 7.4535, 7.4526, 7.454, 7.4532, 7.4526, 7.4519, 7.4541, 7.4533, 7.4525, 7.452, 7.4513, 7.4511, 7.4505, 7.4526, 7.452, 7.4513, 7.4505, 7.4476, 7.447, 7.4462, 7.4496, 7.4514, 7.4506, 7.4497, 7.4488, 7.448, 7.4494, 7.4486, 7.4478, 7.447, 7.4463, 7.4457, 7.4455, 7.4449, 7.444, 7.4454, 7.4447, 7.4439, 7.4435, 7.443, 7.4422, 7.4413, 7.4406, 7.442, 7.4411, 7.4402, 7.4399, 7.4413, 7.4387, 7.4378, 7.4372, 7.4366, 7.4367, 7.4359, 7.4351, 7.4347, 7.4339, 7.4331, 7.4324, 7.4316, 7.4309, 7.4301, 7.4292, 7.4284, 7.4364, 7.4357, 7.4393, 7.4386, 7.4377, 7.4372, 7.4385, 7.4379, 7.4373, 7.4365, 7.4357, 7.435, 7.4342, 7.4355, 7.4347, 7.436, 7.4354, 7.4346, 7.4338, 7.4351, 7.4343, 7.4336, 7.4328, 7.4322, 7.4319, 7.4311, 7.4325, 7.4317, 7.4332, 7.4325, 7.4317, 7.4311, 7.4325, 7.4319, 7.431, 7.4302, 7.4294, 7.433, 7.4321, 7.4313, 7.4326, 7.4298, 7.4293, 7.4286, 7.4299, 7.4292, 7.4285, 7.4282, 7.4274, 7.4267, 7.4259, 7.4254, 7.4248, 7.4242, 7.4234, 7.4248, 7.424, 7.4218, 7.4213, 7.4206, 7.4202, 7.4177, 7.4169, 7.4182, 7.4195, 7.4207, 7.4201, 7.4197, 7.419, 7.4205, 7.4218, 7.421, 7.4202, 7.4197, 7.4189, 7.4187, 7.4201, 7.4193, 7.4172, 7.4164, 7.4177, 7.4174, 7.4166, 7.4158, 7.4153, 7.4144, 7.4136, 7.4129, 7.4122, 7.4117, 7.4109, 7.4082, 7.4074, 7.4095, 7.4087, 7.4079, 7.4148, 7.4161, 7.4134, 7.4147, 7.414, 7.4113, 7.4125, 7.412, 7.4133, 7.4128, 7.4121, 7.4131, 7.4124, 7.4158, 7.4159, 7.4172, 7.4166, 7.4162, 7.4156, 7.4169, 7.4161, 7.4175, 7.4168, 7.4166, 7.416, 7.4154, 7.4155, 7.4148, 7.414, 7.4132, 7.4125, 7.4117, 7.411, 7.4103, 7.4096, 7.4089, 7.4086, 7.4098, 7.4093, 7.4086, 7.4101, 7.4096, 7.4107, 7.4102, 7.4096, 7.4089, 7.4081, 7.4074, 7.4068, 7.4078, 7.4091, 7.4065, 7.4058, 7.4052, 7.4044, 7.4037, 7.4029, 7.4025, 7.4018, 7.4012, 7.4022, 7.4014, 7.4006, 7.4002, 7.4014, 7.4024, 7.4031, 7.4039, 7.4031, 7.4026, 7.4019, 7.4011, 7.4024, 7.4016, 7.4051, 7.4045, 7.4049, 7.4041, 7.4035, 7.4048, 7.4045, 7.4039, 7.4049000000000005, 7.405900000000001, 7.4055, 7.4088, 7.408, 7.4093, 7.4086, 7.4096, 7.4089, 7.4084, 7.4078, 7.407, 7.4068, 7.4062, 7.406, 7.4054, 7.4048, 7.404, 7.4034, 7.4027, 7.4021, 7.4017, 7.4031, 7.4025, 7.4039, 7.4032, 7.4025, 7.4038, 7.4031, 7.4025, 7.4038, 7.4052, 7.4044, 7.4059, 7.4072, 7.4066, 7.4058, 7.405, 7.4025, 7.4019, 7.4011, 7.4003, 7.3995, 7.4008, 7.4, 7.3995, 7.4005, 7.4025, 7.4018, 7.4013, 7.4008, 7.4, 7.3995, 7.3988, 7.4001, 7.4012, 7.4031, 7.4023, 7.4015, 7.4027, 7.4019, 7.4031, 7.4043, 7.4055, 7.4047, 7.4045, 7.4038, 7.4033, 7.4026, 7.402, 7.4013, 7.3989, 7.3982, 7.3979, 7.3982, 7.3992, 7.399, 7.3984, 7.3977, 7.397, 7.3981, 7.3993, 7.3986, 7.3998, 7.401, 7.4023, 7.4015, 7.4008, 7.4003, 7.3995, 7.3988, 7.398, 7.3991, 7.3991, 7.3989, 7.3983, 7.3996, 7.3988, 7.398, 7.3975, 7.3968, 7.396, 7.3972, 7.3965, 7.3959, 7.3953, 7.3947, 7.3959, 7.3951, 7.3927, 7.3938, 7.3931, 7.3923, 7.3916, 7.3911, 7.3923, 7.3917, 7.391, 7.3905, 7.3917, 7.3924, 7.3936, 7.3932, 7.3926, 7.3919, 7.3912, 7.3905, 7.39, 7.3913, 7.3907, 7.392, 7.3946, 7.3959, 7.3952, 7.3948, 7.3961, 7.3974, 7.3968, 7.3961, 7.3954, 7.3947, 7.3941, 7.3936, 7.3929, 7.393, 7.391, 7.3913, 7.3909, 7.3903, 7.3879, 7.3913, 7.3908, 7.3901, 7.3902, 7.3878, 7.3893, 7.3908, 7.3926, 7.3918, 7.393, 7.3924, 7.3916, 7.3911, 7.3906, 7.39, 7.3914, 7.3907, 7.3902, 7.3895, 7.3888, 7.3893, 7.3906, 7.3908, 7.3918, 7.3928, 7.3938, 7.3966, 7.3981, 7.3975, 7.3968, 7.3961, 7.3954, 7.3948, 7.3944, 7.394, 7.3932, 7.3945, 7.3942, 7.3936, 7.3932, 7.3926, 7.392, 7.3988, 7.3999, 7.3992, 7.3986, 7.3996, 7.3989, 7.3965, 7.3961, 7.3955, 7.3948, 7.3941, 7.3934, 7.3928, 7.3927, 7.3939, 7.3933, 7.3947, 7.394, 7.3952, 7.3963, 7.3957, 7.3949, 7.3943, 7.3955, 7.3968, 7.398, 7.3991, 7.3984, 7.3978, 7.399, 7.3984, 7.3977, 7.397, 7.3963, 7.3956, 7.3949, 7.3961, 7.3971, 7.3964, 7.3957, 7.395, 7.3944, 7.3937, 7.3931, 7.3943, 7.3954, 7.3947, 7.3959, 7.3954, 7.3949, 7.3961, 7.3954, 7.395, 7.3944, 7.3937, 7.3932, 7.3946, 7.3945, 7.3957, 7.3953, 7.3955, 7.395, 7.3949, 7.3943, 7.396, 7.3954, 7.3956, 7.3949, 7.3977, 7.3972, 7.3967, 7.3961, 7.3976, 7.3989, 7.3983, 7.3976, 7.3991, 7.4004, 7.3999, 7.4012, 7.4008, 7.4019, 7.4013, 7.4026, 7.402, 7.4015, 7.4008, 7.4003, 7.3998, 7.3991, 7.3986, 7.3979, 7.3992, 7.399, 7.3985, 7.3981, 7.3977, 7.3973, 7.3967, 7.3977, 7.3989, 7.3967, 7.3961, 7.3982, 7.3979, 7.3989, 7.3984, 7.3978, 7.3975, 7.3969, 7.3962, 7.3956, 7.3968, 7.3979, 7.3974, 7.3974, 7.3967, 7.3961, 7.3955, 7.3948, 7.3942, 7.3936, 7.3947, 7.394, 7.3934, 7.3946, 7.3944, 7.3937, 7.3933, 7.3944, 7.3937, 7.3948, 7.3941, 7.3934, 7.3911, 7.3906, 7.3899, 7.3894, 7.389, 7.3884, 7.3882, 7.3876, 7.3871, 7.3883, 7.3878, 7.3871, 7.3869, 7.3881, 7.3879, 7.3873, 7.3884, 7.3877, 7.3888, 7.3866, 7.386, 7.3854, 7.3847, 7.3842, 7.3835, 7.3828, 7.3823, 7.3823, 7.3844, 7.3837, 7.383, 7.3842, 7.3854, 7.3866, 7.3862, 7.3855, 7.3873, 7.3868, 7.3862, 7.3856, 7.3849, 7.386, 7.3856, 7.385, 7.3844, 7.3838, 7.3832, 7.3829, 7.3822, 7.3816, 7.3814, 7.381, 7.3822, 7.3816, 7.381, 7.3805, 7.3816, 7.3809, 7.3803, 7.3815, 7.3809, 7.3821, 7.3816, 7.3811, 7.3805, 7.3818, 7.3812, 7.3805, 7.3816, 7.3811, 7.3805, 7.3818, 7.3811, 7.3805, 7.3815, 7.381, 7.3805, 7.3816, 7.3816, 7.3809, 7.3821, 7.3816, 7.3811, 7.3806, 7.38, 7.3801, 7.3798, 7.381, 7.3823, 7.3817, 7.3828, 7.3821, 7.3814, 7.3819, 7.3812, 7.3832, 7.3843, 7.3836, 7.3832, 7.3826, 7.3821, 7.3835, 7.3831, 7.3843, 7.3838, 7.3848, 7.3842, 7.3853, 7.3849, 7.3844, 7.3839, 7.3835, 7.3828, 7.3824, 7.3819, 7.3815, 7.381, 7.3804, 7.3814, 7.3824, 7.3817, 7.3812, 7.3834, 7.383, 7.3841, 7.3852, 7.3846, 7.3839, 7.385, 7.3843, 7.3838, 7.3832, 7.3827, 7.3838, 7.3849, 7.3843, 7.3844, 7.385400000000001, 7.386400000000001, 7.387400000000001, 7.3869, 7.3866, 7.3876, 7.3886, 7.388, 7.3874, 7.3867, 7.3862, 7.3879, 7.3882, 7.3882, 7.3861, 7.3861, 7.386, 7.3862, 7.3857, 7.3839, 7.3836, 7.3863, 7.3857, 7.3852, 7.3862, 7.3859, 7.3869, 7.3847, 7.3858, 7.3852, 7.3864, 7.3875, 7.3872, 7.3883, 7.3876, 7.3869, 7.3864, 7.386, 7.3857, 7.3867, 7.3862, 7.3855, 7.3865, 7.3876, 7.3871, 7.3865, 7.3875, 7.3871, 7.3864, 7.3858, 7.3852, 7.3846, 7.3824, 7.3821, 7.3816, 7.3809, 7.3805, 7.3799, 7.3794, 7.3789, 7.3784, 7.3778, 7.3789, 7.3783, 7.3778, 7.3771, 7.3766, 7.376, 7.3754, 7.375, 7.3744, 7.3738, 7.3749, 7.3743, 7.3737, 7.3732, 7.3738, 7.3756, 7.3767, 7.3761, 7.3771, 7.3766, 7.3777, 7.3772, 7.3767, 7.3761, 7.3755, 7.3749, 7.3744, 7.3755, 7.3839, 7.3835, 7.3829, 7.3823, 7.3869, 7.3864, 7.3878, 7.3888, 7.3882, 7.3877, 7.3924, 7.3917, 7.3912, 7.3905, 7.3899, 7.391, 7.3904, 7.3897, 7.3892, 7.3886, 7.388, 7.3875, 7.3868, 7.3853, 7.388, 7.3874, 7.387, 7.3866, 7.3877, 7.3873, 7.3911, 7.3891, 7.3902, 7.3898, 7.3894, 7.3887, 7.3897, 7.3923, 7.3935, 7.3928, 7.3922, 7.3916, 7.3929, 7.3924, 7.3934, 7.393, 7.394, 7.3935, 7.3929, 7.3923, 7.3935, 7.3946, 7.3942, 7.3936, 7.3916, 7.3911, 7.3908, 7.392, 7.3914, 7.3933, 7.3931, 7.3911, 7.3905, 7.3899, 7.3893, 7.3909, 7.3903, 7.3914, 7.3911, 7.3906, 7.39, 7.391, 7.3967, 7.3978, 7.3988, 7.3982, 7.3976, 7.3971, 7.3966, 7.3976, 7.397, 7.3981, 7.399, 7.3985, 7.398, 7.3974, 7.3968, 7.3963, 7.3959, 7.3953, 7.395, 7.3945, 7.3955, 7.3949, 7.3943, 7.3952, 7.3946, 7.394, 7.3953, 7.3948, 7.3943, 7.3938, 7.3949, 7.3959, 7.3953, 7.395, 7.3944, 7.394, 7.3935, 7.3929, 7.3939, 7.3948, 7.3945, 7.3955, 7.3965, 7.396, 7.3971, 7.3982, 7.3977, 7.3989, 7.3983, 7.3979, 7.3988, 7.3984, 7.3978, 7.3988, 7.3982, 7.3976, 7.3969, 7.3962, 7.3971, 7.3968, 7.3961, 7.3955, 7.3968, 7.3969, 7.3963, 7.3974, 7.3968, 7.3963, 7.3974, 7.3968, 7.3965, 7.3959, 7.3955, 7.3949, 7.3943, 7.3954, 7.3949, 7.3943, 7.3936, 7.3947, 7.3943, 7.3954, 7.3948, 7.3958, 7.3957, 7.3952, 7.3964, 7.3982, 7.3976, 7.397, 7.3966, 7.3969, 7.3966, 7.396, 7.3956, 7.3952, 7.3945, 7.3925, 7.3925, 7.3921, 7.3916, 7.3928, 7.3925, 7.3962, 7.3957, 7.3955, 7.395, 7.3945, 7.3955, 7.3967, 7.3961, 7.3971, 7.3981, 7.3975, 7.3969, 7.3979, 7.3994, 7.3991, 7.4017, 7.4011, 7.4005, 7.403, 7.4026, 7.402, 7.4016, 7.4017, 7.4011, 7.4005, 7.3999, 7.3993, 7.3989, 7.3983, 7.3981, 7.3975, 7.3955, 7.395, 7.3944, 7.394, 7.392, 7.3914, 7.3908, 7.3904, 7.3898, 7.3892, 7.3888, 7.3882, 7.3892, 7.3887, 7.3894, 7.3875, 7.3885, 7.3896, 7.3893, 7.3888, 7.3921, 7.3931000000000004, 7.3925, 7.3921, 7.3902, 7.3897, 7.3892, 7.3888, 7.3882, 7.3876, 7.3871, 7.3865, 7.3859, 7.3886, 7.3882, 7.3876, 7.3886, 7.3881, 7.3862, 7.3859, 7.3869, 7.388, 7.3874, 7.3871, 7.3866, 7.3861, 7.3856, 7.3866, 7.386, 7.3854, 7.3864, 7.3871, 7.3881, 7.3877, 7.3871, 7.3882, 7.3881, 7.3876, 7.3873, 7.387, 7.3883, 7.3878, 7.3873, 7.3868, 7.3865, 7.3875, 7.387, 7.3865, 7.3865, 7.3859, 7.3853, 7.3848, 7.3843, 7.3839, 7.3836, 7.3832, 7.3841, 7.3835, 7.3829, 7.3838, 7.3833, 7.3848, 7.3858, 7.3853, 7.3847, 7.3841, 7.385, 7.3847, 7.3842, 7.3851, 7.3846, 7.3841, 7.3838, 7.3857, 7.3851, 7.386100000000001, 7.3855, 7.3849, 7.3843, 7.3837, 7.3833, 7.3827, 7.3822, 7.3817, 7.3829, 7.3826, 7.3836, 7.3833, 7.3827, 7.3821, 7.3817, 7.3813, 7.3809, 7.3818, 7.3828, 7.3841, 7.3837, 7.3833, 7.3828, 7.3838, 7.3834, 7.3829, 7.3825, 7.3819, 7.3831, 7.3833, 7.3829, 7.3823, 7.384, 7.3834, 7.3828, 7.3837, 7.3837, 7.3832, 7.3827, 7.3822, 7.3817, 7.3812, 7.3807, 7.3806, 7.3815, 7.3809, 7.3804, 7.3799, 7.3794, 7.3804, 7.3798, 7.3794, 7.379, 7.3786, 7.3781, 7.3777, 7.3805, 7.38, 7.3809, 7.3803, 7.3829, 7.3825, 7.3819, 7.3814, 7.3815, 7.3814, 7.3811, 7.3806, 7.3801, 7.3798, 7.3794, 7.3802, 7.3796, 7.3803, 7.3797, 7.3792, 7.3786, 7.3781, 7.3777, 7.3786, 7.3781, 7.3775, 7.3771, 7.3766, 7.3776, 7.3773, 7.3767, 7.3762, 7.3757, 7.3752, 7.3747, 7.3743, 7.3738, 7.3748, 7.3742, 7.3736, 7.373, 7.3724, 7.372, 7.3715, 7.3711, 7.3709, 7.3704, 7.3714, 7.3708, 7.3705, 7.37, 7.3694, 7.369, 7.3686, 7.3697, 7.3691, 7.3686, 7.3681, 7.3676, 7.3678, 7.3673, 7.3669, 7.3663, 7.3682, 7.3691, 7.3688, 7.3683, 7.3678, 7.3674, 7.367, 7.368, 7.3674, 7.367, 7.3665, 7.3663, 7.3658, 7.3653, 7.3648, 7.3673, 7.3683, 7.368, 7.3675, 7.3684, 7.3681, 7.3677, 7.3672, 7.3682, 7.3677, 7.3687, 7.3681, 7.3678, 7.3675, 7.3685, 7.368, 7.3705, 7.37, 7.3695, 7.3705, 7.37, 7.3695, 7.370500000000001, 7.3702, 7.3712, 7.3722, 7.3749, 7.3745, 7.3741, 7.3751, 7.376, 7.377, 7.3765, 7.3761, 7.3756, 7.375, 7.3745, 7.3741, 7.3737, 7.3733, 7.3727, 7.3737, 7.3719, 7.3728, 7.3737, 7.3733, 7.3729, 7.3724, 7.3718, 7.3715, 7.3712, 7.3724, 7.3719, 7.3714, 7.371, 7.3713, 7.371, 7.3705, 7.3714, 7.3723, 7.3719, 7.3713, 7.3713, 7.3722, 7.3732, 7.3727, 7.3724, 7.3719, 7.3715, 7.3712, 7.3706, 7.3701, 7.3699, 7.3695, 7.3689, 7.3698, 7.3695, 7.3704, 7.3713, 7.3709, 7.3706, 7.3701, 7.3697, 7.3692, 7.369, 7.3698, 7.3707, 7.3702, 7.3713, 7.3709, 7.3704, 7.3714, 7.3709, 7.3704, 7.3708, 7.3704, 7.3699, 7.3696, 7.3691, 7.3691, 7.3691, 7.3686, 7.3681, 7.3676, 7.3672, 7.368, 7.3674, 7.3672, 7.3669, 7.3678, 7.3673, 7.3669, 7.3664, 7.3659, 7.3656, 7.3653, 7.3648, 7.3648, 7.3643, 7.3652, 7.3648, 7.3656, 7.3651, 7.366, 7.3669, 7.3664, 7.3674, 7.367, 7.3681, 7.3679, 7.3676, 7.367, 7.3665, 7.3659, 7.3654, 7.3664, 7.3662, 7.3715, 7.3725, 7.3719, 7.3727, 7.3725, 7.3721, 7.3717, 7.3711, 7.3707, 7.3702, 7.3696, 7.3691, 7.3687, 7.3682, 7.3678, 7.3673, 7.3682, 7.3678, 7.3687, 7.3696, 7.3691, 7.3687, 7.373, 7.3727, 7.3723, 7.3721, 7.3716, 7.3711, 7.3707, 7.3702, 7.3697, 7.3695, 7.369, 7.3686, 7.3682, 7.3679, 7.3688, 7.3712, 7.3707, 7.3715, 7.3697, 7.3692, 7.3701, 7.3696, 7.3691, 7.3688, 7.3683, 7.3693, 7.3691, 7.37, 7.3698, 7.3693, 7.3689, 7.3688, 7.3684, 7.3679, 7.3674, 7.3683, 7.3693, 7.3702, 7.3711, 7.3708, 7.372, 7.3715, 7.3709, 7.3718, 7.3727, 7.3722, 7.3718, 7.3713, 7.3709, 7.3704, 7.3712, 7.3721, 7.3729, 7.3724, 7.372, 7.3715, 7.3711, 7.3736, 7.3736, 7.3745, 7.3742, 7.3739, 7.3749, 7.3744, 7.3752, 7.3748, 7.3745, 7.3755, 7.375, 7.375, 7.3745, 7.3743, 7.3738, 7.3733, 7.3742, 7.3737, 7.3733, 7.3728, 7.3722, 7.3726, 7.3724, 7.3724, 7.3719, 7.3717, 7.3712, 7.372, 7.3715, 7.371, 7.3705, 7.3729, 7.3725, 7.3721, 7.3731, 7.3727, 7.3722, 7.3718, 7.3713, 7.3722, 7.3732, 7.3741, 7.3751, 7.3747, 7.3756, 7.3752, 7.3761, 7.3759, 7.3755, 7.3763, 7.3759, 7.3755, 7.375, 7.3745, 7.3741, 7.3738, 7.3735, 7.373, 7.3725, 7.3722, 7.3717, 7.3712, 7.3708, 7.3705, 7.37, 7.3696, 7.3706, 7.3689, 7.3685, 7.3667, 7.3663, 7.3659, 7.3668, 7.365, 7.3645, 7.364, 7.3635, 7.3632, 7.3643, 7.3639, 7.3635, 7.363, 7.3626, 7.3621, 7.3618, 7.3613, 7.3608, 7.362, 7.3615, 7.3611, 7.3607, 7.3602, 7.3597, 7.3593, 7.3589, 7.3612, 7.3608, 7.3605, 7.3616, 7.3611, 7.3606, 7.3616, 7.3611, 7.3606, 7.3615, 7.3612, 7.3621, 7.363, 7.3627, 7.3626, 7.3621, 7.3616, 7.3611, 7.3606, 7.3603, 7.3602, 7.3611, 7.3607, 7.3602, 7.3598, 7.3595, 7.359, 7.3586, 7.3582, 7.3581, 7.3589, 7.3586, 7.3584, 7.358, 7.3575, 7.3558, 7.3553, 7.3562, 7.3557, 7.3565, 7.3549, 7.3545, 7.354, 7.3535, 7.353, 7.3527, 7.3513, 7.3511, 7.3508, 7.3503, 7.3511, 7.3519, 7.353, 7.3513, 7.3521, 7.3518, 7.3514, 7.3509, 7.3506, 7.3502, 7.3512, 7.352, 7.353, 7.3538, 7.3557, 7.3553, 7.3563, 7.3558, 7.3553, 7.3549, 7.3546, 7.3541, 7.3537, 7.3535, 7.3544, 7.3554, 7.356400000000001, 7.3572, 7.3568, 7.3577, 7.3573, 7.3568, 7.3577, 7.3572, 7.3568, 7.3572, 7.3568, 7.3564, 7.3559, 7.3554, 7.3549, 7.3558, 7.3555, 7.3539, 7.3547, 7.3556, 7.3552, 7.358, 7.3589, 7.3587, 7.3583, 7.3579, 7.3578, 7.3587, 7.3583, 7.3581, 7.3576, 7.3571, 7.3566, 7.3561, 7.3569, 7.3565, 7.356, 7.3557, 7.3554, 7.355, 7.3563, 7.356, 7.3564, 7.3547, 7.3545, 7.3541, 7.3536, 7.3532, 7.3547, 7.3547, 7.3556, 7.354, 7.3535, 7.3545, 7.3541, 7.3549, 7.3545, 7.3549, 7.3546, 7.3553, 7.3562, 7.356, 7.3557, 7.3553, 7.3562, 7.3557, 7.3552, 7.3548, 7.3544, 7.3542, 7.354, 7.3549, 7.3548, 7.3556, 7.3552, 7.3547, 7.3542, 7.3549, 7.3544, 7.3528, 7.3536, 7.3532, 7.3528, 7.3524, 7.3519, 7.3528, 7.3538, 7.3533, 7.3555, 7.3551, 7.3546, 7.3541, 7.3537, 7.3532, 7.3527, 7.3573, 7.3568, 7.3565, 7.3562, 7.3558, 7.3553, 7.3548, 7.3545, 7.3541, 7.3538, 7.3533, 7.3541, 7.3536, 7.3531, 7.3515, 7.3512, 7.3508, 7.3493, 7.348, 7.3476, 7.3472, 7.3468, 7.3507, 7.3505, 7.3501, 7.3503, 7.3513, 7.3523, 7.3519, 7.3533, 7.3528, 7.3526, 7.3547, 7.3543, 7.3552, 7.3549, 7.3544, 7.3539, 7.3536, 7.3531, 7.3515, 7.3546, 7.3542, 7.3552, 7.356, 7.3544, 7.3542, 7.3551, 7.3567, 7.3582, 7.3578, 7.3573, 7.3581, 7.3576, 7.3585, 7.358, 7.3575, 7.3583, 7.3567, 7.3578, 7.3561, 7.3556, 7.3552, 7.357, 7.3565, 7.356, 7.3556, 7.3551, 7.3547, 7.3555, 7.3563, 7.3558, 7.3553, 7.3548, 7.3555, 7.355, 7.3558, 7.3553, 7.3548, 7.3556, 7.3565, 7.3574, 7.3569, 7.3591, 7.3586, 7.357, 7.3579, 7.3586, 7.3594, 7.3603, 7.361, 7.3606, 7.3614, 7.3621, 7.3617, 7.3613, 7.3597, 7.3592, 7.3598, 7.3606, 7.3603, 7.3599, 7.3595, 7.3603, 7.3599, 7.3607, 7.3603, 7.3599, 7.3594, 7.359, 7.3595, 7.3604, 7.3601, 7.3609, 7.3607, 7.3605, 7.359, 7.3599, 7.3596, 7.3591, 7.3588, 7.3572, 7.3568, 7.3576, 7.3574, 7.3569, 7.3577, 7.3585, 7.358, 7.3576, 7.3571, 7.3578, 7.3585, 7.358, 7.3588, 7.3583, 7.358, 7.3576, 7.3572, 7.3567, 7.3564, 7.3559, 7.3556, 7.3552, 7.3547, 7.3544, 7.3552, 7.3547, 7.3543, 7.354, 7.3535, 7.353, 7.3527, 7.3535, 7.3543, 7.3553, 7.355, 7.3546, 7.353, 7.3526, 7.3522, 7.3519, 7.3515, 7.3524, 7.3521, 7.3518, 7.3514, 7.351, 7.3508, 7.3517, 7.3513, 7.3509, 7.3518, 7.3513, 7.3521, 7.3516, 7.3512, 7.352, 7.3527, 7.3524, 7.3521, 7.3517, 7.3513, 7.3511, 7.3532, 7.3539, 7.3534, 7.3542, 7.3562, 7.3559, 7.3555, 7.3551, 7.3547, 7.3544, 7.3546, 7.3541, 7.3536, 7.3531, 7.3528, 7.3524, 7.3532, 7.3542000000000005, 7.3539, 7.3534, 7.3544, 7.3539, 7.3536, 7.3533, 7.353, 7.3539, 7.3558, 7.3554, 7.3549, 7.3574, 7.357, 7.3566, 7.355, 7.3546, 7.3542, 7.3538, 7.3547, 7.3556, 7.3564, 7.3573, 7.3569, 7.3565, 7.3562, 7.3557, 7.3554, 7.3562, 7.3558, 7.3566, 7.3562, 7.3549, 7.3547, 7.3544, 7.3545, 7.354, 7.3536, 7.3536, 7.3533, 7.3529, 7.3537, 7.3535, 7.3544, 7.3552, 7.356, 7.3555, 7.3554, 7.3562, 7.3571, 7.3579, 7.3576, 7.3584, 7.358, 7.3576, 7.3583, 7.3591, 7.3586, 7.3583, 7.3592, 7.36, 7.3608, 7.3605, 7.36, 7.3643, 7.365, 7.3659, 7.3654, 7.365, 7.3658, 7.3665, 7.3673, 7.3681, 7.3678, 7.3674, 7.3671, 7.367, 7.3666, 7.3662, 7.3658, 7.3666, 7.3674, 7.367, 7.3666, 7.3662, 7.3658, 7.3665, 7.3663, 7.3671, 7.3668, 7.3663, 7.3658, 7.3654, 7.3662, 7.3657, 7.3653, 7.3661, 7.367, 7.3666, 7.3662, 7.3672, 7.368, 7.3676, 7.3672, 7.3659, 7.3656, 7.3653, 7.3648, 7.3645, 7.3654, 7.365, 7.3646, 7.3643, 7.3638, 7.3634, 7.3642, 7.364, 7.3636, 7.3631, 7.3627, 7.3623, 7.362, 7.3615, 7.3611, 7.3634, 7.3631, 7.3656, 7.3651, 7.3647, 7.3642, 7.3637, 7.3635, 7.3643, 7.3638, 7.3636, 7.3643, 7.3641, 7.3637, 7.3633, 7.3628, 7.3626, 7.3634, 7.3629, 7.3626, 7.3634, 7.3631, 7.3626, 7.3621, 7.3606, 7.3604, 7.3608, 7.3605, 7.3601, 7.3597, 7.3596, 7.3593, 7.359, 7.3587, 7.3584, 7.3592, 7.36, 7.3596, 7.3594, 7.3591, 7.3586, 7.3583, 7.3568, 7.3565, 7.3562, 7.3601, 7.3596, 7.3592, 7.3589, 7.3596, 7.3604, 7.3602, 7.3597, 7.3582, 7.3578, 7.3574, 7.3569, 7.3555, 7.3562, 7.3558, 7.3554, 7.3562, 7.3558, 7.3554, 7.355, 7.3546, 7.3554, 7.3551, 7.355, 7.3557, 7.3554, 7.355, 7.3545, 7.3541, 7.3538, 7.3535, 7.3532, 7.3556, 7.3552, 7.3548, 7.3533, 7.3542, 7.355, 7.3547, 7.3545, 7.3541, 7.3549, 7.3545, 7.3542, 7.3538, 7.3547, 7.3544, 7.3541, 7.3538, 7.3546, 7.3541, 7.3537, 7.3533, 7.353, 7.3526, 7.3511, 7.3507, 7.3503, 7.3511, 7.3508, 7.3504, 7.35, 7.3497, 7.3492, 7.3499, 7.3508, 7.3504, 7.35, 7.3497, 7.3495, 7.3491, 7.3501, 7.3497, 7.3493, 7.35, 7.3496, 7.3494, 7.3502, 7.3498, 7.3518, 7.3523, 7.3519, 7.3529, 7.3541, 7.3548, 7.3544, 7.3541, 7.3537, 7.3533, 7.3529, 7.3525, 7.3525, 7.352, 7.3527, 7.3523, 7.3519, 7.3515, 7.3511, 7.3517, 7.3526, 7.3522, 7.353, 7.3526, 7.3523, 7.3518, 7.3514, 7.351, 7.3506, 7.3502, 7.3509, 7.3507, 7.3525, 7.3511, 7.3507, 7.3505, 7.3502, 7.351, 7.3517, 7.3515, 7.3511, 7.3508, 7.3504, 7.35, 7.3496, 7.3503, 7.3511, 7.3519, 7.3515, 7.3529, 7.3539, 7.3524, 7.3531, 7.3538, 7.3535, 7.3532, 7.3533, 7.3529, 7.3525, 7.3556, 7.3553, 7.3549, 7.3545, 7.3542, 7.3554, 7.355, 7.3547, 7.3554, 7.355, 7.3546, 7.3543, 7.355, 7.3546, 7.3546, 7.3569, 7.3566, 7.3562, 7.356, 7.3556, 7.3552, 7.3549, 7.3545, 7.3552, 7.356, 7.3568, 7.3564, 7.356, 7.3567, 7.3564, 7.356, 7.3557, 7.3553, 7.3549, 7.3545, 7.3552, 7.3561, 7.3557, 7.3565, 7.3562, 7.3559, 7.3577, 7.3586, 7.3593, 7.3603, 7.3599, 7.3595, 7.3581, 7.3577, 7.3574, 7.357, 7.358, 7.3578, 7.3587, 7.3584, 7.358, 7.3576, 7.3572, 7.358, 7.3576, 7.3572, 7.3578, 7.3574, 7.3559, 7.3557, 7.3564, 7.356, 7.3556, 7.3563, 7.3571, 7.3578, 7.3574, 7.3581, 7.3576, 7.3572, 7.3568, 7.3564, 7.3561, 7.3557, 7.3553, 7.3549, 7.3556, 7.3563, 7.357, 7.3577, 7.3573, 7.357, 7.3577, 7.3573, 7.3583, 7.3589, 7.3596, 7.3592, 7.3589, 7.3585, 7.3581, 7.3577, 7.3584, 7.3591, 7.359, 7.3599, 7.3606, 7.3602, 7.3599, 7.3596, 7.3614, 7.3609, 7.3606, 7.3602, 7.3603, 7.36, 7.3607, 7.3604, 7.36, 7.3608, 7.3604, 7.36, 7.3597, 7.3594, 7.3596, 7.3592, 7.3589, 7.3585, 7.3594, 7.3601, 7.3607, 7.3603, 7.3599, 7.3606, 7.3603, 7.3611, 7.3608, 7.3613, 7.361, 7.3607, 7.3603, 7.361, 7.3631, 7.3627, 7.3635, 7.3631, 7.3627, 7.3624, 7.362, 7.3616, 7.3624, 7.3621, 7.3618, 7.3617, 7.3613, 7.3621, 7.364, 7.366, 7.3646, 7.3643, 7.364, 7.3637, 7.3633, 7.363, 7.3627, 7.3628, 7.3624, 7.3621, 7.3628, 7.3653, 7.3649, 7.3645, 7.3652, 7.3648, 7.3644, 7.363, 7.3626, 7.3623, 7.362, 7.3616, 7.3612, 7.3608, 7.3604, 7.36, 7.3596, 7.3603, 7.3605, 7.3601, 7.3597, 7.3604, 7.3612, 7.3619, 7.3617, 7.3613, 7.3611, 7.3618, 7.3644, 7.363, 7.3626, 7.3633, 7.3629, 7.3625, 7.3623, 7.362, 7.3616, 7.3623, 7.362, 7.3627, 7.3623, 7.3619, 7.3618, 7.3614, 7.361, 7.3606, 7.3613, 7.362, 7.3628, 7.3626, 7.3622, 7.3629, 7.3626, 7.3622, 7.3621, 7.3617, 7.3613, 7.361, 7.3618, 7.3625, 7.3631, 7.3638, 7.3652, 7.3648, 7.3646, 7.3653, 7.365, 7.3646, 7.3653, 7.3649, 7.3645, 7.3642, 7.3638, 7.3635, 7.3635, 7.3632, 7.3629, 7.3625, 7.365, 7.3648, 7.3663, 7.3649, 7.3651, 7.3661, 7.3667, 7.3675, 7.3671, 7.3667, 7.3663, 7.3671, 7.3667, 7.3663, 7.3669, 7.3667, 7.3663, 7.3659, 7.3655, 7.3652, 7.3649, 7.3646, 7.3644, 7.3642, 7.3638, 7.3645, 7.3644, 7.3645, 7.3642, 7.3638, 7.3635, 7.3632, 7.3628, 7.3625, 7.363, 7.3626, 7.3622, 7.3619, 7.3615, 7.3613, 7.362, 7.3638, 7.3668, 7.3685, 7.3672, 7.368, 7.3677, 7.3674, 7.3671, 7.3667, 7.3663, 7.3661, 7.3658, 7.3654, 7.3651, 7.3648, 7.3646, 7.3644, 7.3641, 7.3638, 7.3645, 7.3644, 7.364, 7.3639, 7.3635, 7.3633, 7.3629, 7.3628, 7.3626, 7.3624, 7.3622, 7.3618, 7.3615, 7.3622, 7.3608, 7.3604, 7.3601, 7.3608, 7.3605, 7.3601, 7.3598, 7.3606, 7.3603, 7.36, 7.3597, 7.3605, 7.3602, 7.361, 7.3606, 7.3603, 7.3601, 7.3598, 7.3594, 7.359, 7.3587, 7.3594, 7.359, 7.3586, 7.3593, 7.3589, 7.3585, 7.3581, 7.3578, 7.3574, 7.3571, 7.3569, 7.3565, 7.3572, 7.3568, 7.3576, 7.3573, 7.357, 7.3577, 7.3573, 7.3569, 7.3569, 7.3576, 7.3572, 7.3559, 7.3555, 7.3562, 7.3569, 7.3577, 7.3584, 7.358, 7.3576, 7.3583, 7.358, 7.3576, 7.3572, 7.3568, 7.3565, 7.3572, 7.3568, 7.3564, 7.3571, 7.3568, 7.3613, 7.3609, 7.3605, 7.3649, 7.3645, 7.3652, 7.3649, 7.3684, 7.368, 7.3676, 7.3673, 7.368, 7.3701, 7.3698, 7.3694, 7.369, 7.3697, 7.3704, 7.3701, 7.3712, 7.3719, 7.3715, 7.3711, 7.3707, 7.3714, 7.371, 7.3707, 7.3703, 7.3699, 7.3716, 7.3712, 7.3711, 7.3707, 7.3704, 7.37, 7.3697, 7.3694, 7.369, 7.3697, 7.3705, 7.3702, 7.3709, 7.3705, 7.3701, 7.3708, 7.3704, 7.3701, 7.3698, 7.3694, 7.369, 7.3687, 7.3684, 7.369, 7.3687, 7.3685, 7.3671, 7.3668, 7.3683, 7.368, 7.3676, 7.3673, 7.3683, 7.368, 7.3678, 7.3674, 7.3681, 7.3677, 7.3679, 7.3675, 7.3671, 7.3667, 7.3663, 7.3693, 7.3701, 7.3698, 7.3706, 7.3702, 7.3698, 7.3695, 7.3692, 7.3688, 7.3684, 7.368, 7.3677, 7.3673, 7.367, 7.3668, 7.3687, 7.369, 7.3691, 7.3688, 7.3692, 7.3689, 7.3716, 7.3712, 7.3709, 7.3706, 7.3703, 7.3707, 7.371, 7.3707, 7.3707, 7.372, 7.3726, 7.3723, 7.3729, 7.3725, 7.3712, 7.373, 7.3742, 7.3748, 7.3744, 7.374, 7.3736, 7.3732, 7.3728, 7.3724, 7.3721, 7.3717, 7.3713, 7.3721, 7.3717, 7.3714, 7.3711, 7.3707, 7.3703, 7.37, 7.3699, 7.3696, 7.3692, 7.3689, 7.3688, 7.3696, 7.3693, 7.3689, 7.3685, 7.3681, 7.3687, 7.3684, 7.368, 7.3677, 7.3675, 7.3672, 7.3668, 7.3665, 7.3673, 7.3672, 7.3668, 7.3664, 7.3661, 7.3658, 7.3665, 7.3663, 7.3659, 7.3657, 7.3664, 7.3671, 7.3668, 7.3676, 7.3683, 7.3691, 7.3689, 7.3685, 7.3682, 7.3678, 7.3685, 7.3692, 7.3689, 7.3685, 7.3682, 7.3679, 7.3675, 7.3671, 7.3668, 7.3665, 7.3662, 7.3662, 7.3659, 7.3656, 7.3653, 7.3661, 7.3658, 7.3654, 7.365, 7.3647, 7.3653, 7.365, 7.3646, 7.3642, 7.3639, 7.3635, 7.3631, 7.3628, 7.3624, 7.3621, 7.3618, 7.3626, 7.3632, 7.3621, 7.3618, 7.3615, 7.3613, 7.361, 7.3608, 7.3605, 7.3621, 7.3617, 7.3613, 7.3609, 7.3627, 7.3625, 7.3621, 7.3627, 7.3624, 7.3622, 7.364, 7.3637, 7.3634, 7.3641, 7.3637, 7.3652, 7.365, 7.3647, 7.3643, 7.3639, 7.3645, 7.3642, 7.3638, 7.3635, 7.3644, 7.3641, 7.3637, 7.3643, 7.3639, 7.3635, 7.3631, 7.3627, 7.3624, 7.3624, 7.3621, 7.3618, 7.3635, 7.3631, 7.366, 7.3657, 7.3653, 7.3669, 7.3665, 7.3672, 7.3669, 7.368, 7.3677, 7.3694, 7.3691, 7.3687, 7.3707, 7.3713, 7.3709, 7.3709, 7.3707, 7.3714, 7.371, 7.371, 7.371, 7.3706, 7.3702, 7.3698, 7.3696, 7.3684, 7.3682, 7.3678, 7.3674, 7.367, 7.3666, 7.3662, 7.365, 7.3647, 7.3654, 7.3651, 7.3668, 7.3665, 7.3661, 7.3674, 7.3671, 7.3698, 7.3685, 7.3691, 7.3698, 7.3694, 7.3701, 7.3707, 7.3694, 7.3692, 7.3692, 7.37, 7.3707, 7.3704, 7.3711, 7.3707, 7.3713, 7.3709, 7.3716, 7.3732, 7.3739, 7.3737, 7.3734, 7.3732, 7.3729, 7.3727, 7.3744, 7.3741, 7.3739, 7.3735, 7.3732, 7.3729, 7.3735, 7.3742, 7.374, 7.3736, 7.3733, 7.3729, 7.3726, 7.3732, 7.3729, 7.3727, 7.3723, 7.3711, 7.3722, 7.3718, 7.3714, 7.3712, 7.3711, 7.3709, 7.3705, 7.3701, 7.3699, 7.3686, 7.3682, 7.3678, 7.3676, 7.3703, 7.37, 7.3697, 7.3695, 7.3702, 7.3709, 7.3706, 7.3703, 7.3699, 7.3696, 7.3696, 7.3697, 7.3697, 7.3707, 7.3703, 7.3699, 7.3695, 7.3692, 7.3689, 7.3696, 7.3694, 7.3691, 7.3689, 7.3685, 7.3682, 7.3679, 7.3675, 7.3688, 7.3684, 7.368, 7.3678, 7.3674, 7.3671, 7.3668, 7.3658, 7.3668, 7.3665, 7.3692, 7.3709, 7.3705, 7.3701, 7.3697, 7.3695, 7.3701, 7.3689, 7.3698, 7.3705, 7.3694, 7.3692, 7.3777, 7.3794, 7.38, 7.3798, 7.3796, 7.3813, 7.381, 7.3818, 7.3816, 7.3815, 7.3812, 7.3819, 7.3817, 7.3813, 7.3809, 7.3807, 7.3804, 7.3801, 7.3797, 7.3794, 7.3791, 7.3788, 7.3786, 7.3793, 7.3799, 7.3795, 7.3795, 7.3791, 7.3797, 7.3823, 7.3819, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3798, 7.3794, 7.38, 7.3796, 7.3793, 7.3791, 7.3788, 7.3785, 7.3792, 7.3788, 7.3786, 7.3782, 7.379, 7.3787, 7.3783, 7.378, 7.3786, 7.3783, 7.379, 7.3797, 7.3794, 7.3801, 7.3798, 7.3795, 7.3792, 7.3815, 7.3813, 7.3813, 7.381, 7.3807, 7.3803, 7.38, 7.3797, 7.3793, 7.379, 7.3787, 7.3793, 7.379, 7.3788, 7.3794, 7.379, 7.3787, 7.3784, 7.379, 7.3786, 7.3787, 7.3775, 7.3772, 7.3768, 7.3764, 7.3788, 7.3784, 7.379, 7.3786, 7.3783, 7.3779, 7.3775, 7.3771, 7.3768, 7.3765, 7.3761, 7.3759, 7.3756, 7.3752, 7.3748, 7.3736, 7.3732, 7.3729, 7.3735, 7.3731, 7.3729, 7.3725, 7.3722, 7.3718, 7.3725, 7.3731, 7.3728, 7.3725, 7.3722, 7.3728, 7.3725, 7.3722, 7.371, 7.3716, 7.3712, 7.3718, 7.3714, 7.3721, 7.3718, 7.3724, 7.373, 7.3726, 7.3732, 7.3729, 7.3726, 7.3724, 7.3721, 7.3729, 7.3754, 7.3751, 7.3748, 7.3747, 7.3755, 7.3751, 7.3758, 7.3757, 7.3754, 7.3751, 7.3759, 7.3757, 7.3763, 7.3759, 7.3757, 7.3755, 7.3761, 7.3767, 7.3763, 7.3759, 7.3755, 7.3751, 7.3759, 7.3756, 7.3752, 7.3748, 7.3745, 7.3743, 7.3749, 7.3746, 7.3743, 7.3749, 7.3746, 7.3746, 7.3743, 7.3739, 7.3736, 7.3743, 7.374, 7.3736, 7.3732, 7.3729, 7.3727, 7.3724, 7.3731, 7.3738, 7.3744, 7.3741, 7.3738, 7.3744, 7.3741, 7.3738, 7.3734, 7.3731, 7.3737, 7.3733, 7.373, 7.3736, 7.3736, 7.3724, 7.3712, 7.371, 7.3711, 7.3707, 7.3704, 7.3704, 7.3713, 7.371, 7.3716, 7.3713, 7.371, 7.3706, 7.3703, 7.37, 7.3696, 7.3694, 7.3692, 7.3688, 7.3684, 7.368, 7.3677, 7.3674, 7.3671, 7.3677, 7.3674, 7.367, 7.3667, 7.3664, 7.3662, 7.3668, 7.3664, 7.367, 7.3667, 7.3665, 7.3662, 7.3658, 7.3655, 7.3652, 7.3649, 7.3655, 7.3659, 7.3665, 7.3662, 7.3668, 7.3665, 7.3672, 7.3669, 7.3665, 7.3671, 7.3677, 7.3674, 7.368, 7.3677, 7.3674, 7.3671, 7.3677, 7.3683, 7.3689, 7.3686, 7.3691, 7.3687, 7.371, 7.3698, 7.3695, 7.3701, 7.3707, 7.3704, 7.3701, 7.3698, 7.3719, 7.3725, 7.3731, 7.3737, 7.3725, 7.3721, 7.3718, 7.3726, 7.3724, 7.3729, 7.3726, 7.3732, 7.3729, 7.3725, 7.3722, 7.3719, 7.3707, 7.3703, 7.3699, 7.3695, 7.3693, 7.3689, 7.3686, 7.3683, 7.3681, 7.3679, 7.3667, 7.3665, 7.3661, 7.3659, 7.3656, 7.3662, 7.3659, 7.3666, 7.3685, 7.3682, 7.368, 7.3677, 7.3674, 7.3672, 7.3678, 7.3684, 7.369, 7.3686, 7.3682, 7.3682, 7.3679, 7.3675, 7.368, 7.3686, 7.3692, 7.3698, 7.3694, 7.369, 7.3686, 7.3682, 7.3679, 7.3677, 7.3674, 7.368, 7.3679, 7.3676, 7.3674, 7.3671, 7.3668, 7.3665, 7.3673, 7.367, 7.3667, 7.3665, 7.3662, 7.3678, 7.3674, 7.3671, 7.3667, 7.3665, 7.3662, 7.3668, 7.3674, 7.368, 7.3677, 7.3674, 7.3671, 7.3668, 7.3702, 7.3698, 7.3704, 7.3701, 7.3699, 7.3696, 7.3702, 7.37, 7.3706, 7.3712, 7.371, 7.3708, 7.3707, 7.3734, 7.3731, 7.3728, 7.3725, 7.3734, 7.3731, 7.3738, 7.3744, 7.375, 7.3746, 7.3753, 7.375, 7.3747, 7.3738, 7.3745, 7.3752, 7.3749, 7.3751, 7.3779, 7.3776, 7.3773, 7.377, 7.3782, 7.3779, 7.3776, 7.3773, 7.377, 7.3768, 7.3765, 7.3762, 7.376, 7.3757, 7.3765, 7.3771, 7.3769, 7.3774, 7.3774, 7.378, 7.3787, 7.3784, 7.3781, 7.3779, 7.3776, 7.3781, 7.3787, 7.3783, 7.378, 7.3786, 7.3782, 7.3779, 7.3775, 7.3781, 7.3779, 7.3768, 7.3765, 7.3762, 7.3759, 7.3756, 7.3752, 7.3749, 7.3746, 7.3742, 7.3739, 7.3735, 7.3732, 7.3729, 7.3725, 7.3722, 7.3721, 7.3727, 7.3724, 7.373, 7.3726, 7.3723, 7.372, 7.3717, 7.3706, 7.3703, 7.3701, 7.3699, 7.3695, 7.3691, 7.3697, 7.3704, 7.3701, 7.3699, 7.3709, 7.3708, 7.3706, 7.3703, 7.3701, 7.3699, 7.3695, 7.3703, 7.3711, 7.3709, 7.3706, 7.3712, 7.3708, 7.3712, 7.3713, 7.371, 7.3701, 7.3699, 7.3688, 7.3685, 7.3682, 7.3679, 7.3676, 7.3675, 7.3673, 7.3671, 7.3676, 7.3673, 7.3674, 7.3671, 7.3669, 7.3666, 7.3664, 7.3661, 7.3659, 7.3656, 7.3653, 7.3649, 7.3646, 7.3643, 7.3641, 7.3638, 7.3637, 7.3635, 7.3642, 7.3639, 7.3636, 7.3632, 7.363, 7.3664, 7.3661, 7.3659, 7.3664, 7.368, 7.3677, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3668, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3668, 7.3675, 7.3672, 7.3669, 7.3665, 7.3654, 7.3659, 7.3665, 7.3661, 7.3658, 7.3657, 7.3654, 7.3651, 7.3648, 7.3644, 7.3641, 7.3647, 7.3644, 7.3643, 7.364, 7.3637, 7.3634, 7.3679, 7.3676, 7.3665, 7.3671, 7.3669, 7.3666, 7.3665, 7.3671, 7.3677, 7.3665, 7.3671, 7.3668, 7.3674, 7.3672, 7.367, 7.3667, 7.3673, 7.3679, 7.3676, 7.3674, 7.3672, 7.367, 7.3676, 7.3673, 7.367, 7.3676, 7.3674, 7.3671, 7.3669, 7.3667, 7.3664, 7.367, 7.3667, 7.3673, 7.3679, 7.3685, 7.3682, 7.3671, 7.3677, 7.3683, 7.368, 7.3676, 7.3673, 7.367, 7.3676, 7.3674, 7.367, 7.3676, 7.3673, 7.368, 7.3679, 7.3676, 7.3674, 7.3671, 7.3668, 7.3674, 7.3672, 7.3678, 7.3674, 7.367, 7.3675, 7.3673, 7.3678, 7.3683, 7.3682, 7.367, 7.3677, 7.3674, 7.3671, 7.3668, 7.3674, 7.3699, 7.3696, 7.3694, 7.3694, 7.3691, 7.3688, 7.3686, 7.3684, 7.369, 7.3687, 7.3685, 7.3682, 7.3679, 7.3685, 7.3702, 7.37, 7.3697, 7.3693, 7.3714, 7.3714, 7.3711, 7.3717, 7.3715, 7.3712, 7.3709, 7.3706, 7.3713, 7.3718, 7.3707, 7.3704, 7.3701, 7.3698, 7.3696, 7.3693, 7.3691, 7.3697, 7.3703, 7.37, 7.3698, 7.3695, 7.37, 7.3697, 7.3703, 7.37, 7.3697, 7.3696, 7.3703, 7.3701, 7.3692, 7.3689, 7.3687, 7.3687, 7.3684, 7.3681, 7.3687, 7.3736, 7.3744, 7.3733, 7.3722, 7.3719, 7.3716, 7.3713, 7.371, 7.3715, 7.3712, 7.3709, 7.372, 7.372, 7.3717, 7.3715, 7.3718, 7.3723, 7.372, 7.3718, 7.3731, 7.372, 7.3744, 7.3744, 7.3742, 7.3742, 7.3739, 7.3737, 7.3736, 7.3734, 7.3731, 7.3728, 7.3725, 7.3722, 7.3719, 7.3716, 7.3714, 7.372, 7.3741, 7.3765, 7.3771, 7.3768, 7.3766, 7.3763, 7.3762, 7.3751, 7.3748, 7.3754, 7.3769, 7.3775, 7.3781, 7.377, 7.3767, 7.3765, 7.3762, 7.3768, 7.3765, 7.3766, 7.3772, 7.3769, 7.3766, 7.3763, 7.376, 7.3766, 7.3764, 7.377, 7.3775, 7.3773, 7.377, 7.3767, 7.3774, 7.3772, 7.3769, 7.3766, 7.3763, 7.376, 7.3757, 7.3765, 7.3773, 7.3771, 7.3768, 7.3766, 7.3763, 7.376, 7.3757, 7.3768, 7.3784, 7.3773, 7.3771, 7.3768, 7.3775, 7.3781, 7.3787, 7.3785, 7.3783, 7.378, 7.378, 7.3778, 7.3784, 7.3782, 7.378, 7.3786, 7.382, 7.3817, 7.3814, 7.382, 7.3818, 7.3816, 7.3813, 7.3811, 7.3809, 7.3806, 7.3804, 7.381, 7.3818, 7.3815, 7.3812, 7.3809, 7.3808, 7.3806, 7.3803, 7.3811, 7.381, 7.3816, 7.3813, 7.3813, 7.3819, 7.3816, 7.3813, 7.3804, 7.3801, 7.3798, 7.3795, 7.3801, 7.3797, 7.3803, 7.38, 7.3807, 7.3813, 7.381, 7.3815, 7.382, 7.3817, 7.3814, 7.3819, 7.3816, 7.3813, 7.3819, 7.3824, 7.383, 7.3827, 7.3833, 7.3831, 7.3828, 7.3825, 7.3815, 7.3821, 7.3819, 7.3816, 7.3813, 7.3811, 7.3808, 7.3805, 7.3802, 7.38, 7.3797, 7.3802, 7.3799, 7.3796, 7.3793, 7.379, 7.3787, 7.3784, 7.3789, 7.3786, 7.3783, 7.3772, 7.3762, 7.376, 7.3758, 7.3756, 7.3753, 7.375, 7.3748, 7.3753, 7.375, 7.374, 7.3737, 7.3735, 7.3732, 7.3729, 7.3734, 7.3731, 7.3736, 7.3741, 7.3738, 7.3735, 7.375, 7.3747, 7.3744, 7.375, 7.3757, 7.3755, 7.3752, 7.3749, 7.3746, 7.3735, 7.3733, 7.3735, 7.3742, 7.3765, 7.3763, 7.3761, 7.3766, 7.3771, 7.3769, 7.3774, 7.3771, 7.3769, 7.3766, 7.3764, 7.3762, 7.376, 7.3757, 7.3755, 7.3752, 7.3758, 7.3756, 7.3753, 7.3759, 7.3756, 7.3753, 7.375, 7.3747, 7.375, 7.3752, 7.3749, 7.3746, 7.3744, 7.3742, 7.3748, 7.3753, 7.375, 7.3747, 7.3745, 7.3742, 7.3739, 7.3736, 7.3733, 7.3731, 7.3737, 7.3734, 7.3731, 7.3728, 7.3726, 7.3723, 7.372, 7.3717, 7.3714, 7.3711, 7.3717, 7.3706, 7.3703, 7.3701, 7.3715, 7.3713, 7.372, 7.3717, 7.3714, 7.3711, 7.3734, 7.3758, 7.3756, 7.3753, 7.375, 7.3747, 7.3745, 7.3742, 7.3739, 7.3729, 7.3731, 7.3729, 7.3726, 7.3732, 7.3729, 7.3726, 7.3723, 7.3728, 7.3733, 7.373, 7.3727, 7.3724, 7.3729, 7.3726, 7.3732, 7.3737, 7.3735, 7.3732, 7.3738, 7.3735, 7.3733, 7.373, 7.3727, 7.3724, 7.3725, 7.3724, 7.3729, 7.3726, 7.3723, 7.372, 7.3717, 7.3723, 7.3756, 7.3761, 7.3758, 7.3756, 7.3761, 7.3767, 7.3764, 7.3769, 7.3766, 7.3771, 7.3777, 7.3774, 7.3771, 7.3776, 7.3782, 7.378, 7.3785, 7.379, 7.3796, 7.3802, 7.3799, 7.3805, 7.3802, 7.3808, 7.3813, 7.3818, 7.3823, 7.3828, 7.3833, 7.383, 7.3827, 7.3816, 7.3813, 7.3818, 7.3824, 7.3821, 7.3826, 7.3831, 7.3829, 7.3827, 7.3833, 7.3843, 7.384, 7.3859, 7.3856, 7.3853, 7.385, 7.3858, 7.3864, 7.3878, 7.3875, 7.3872, 7.3877, 7.3874, 7.3872, 7.3877, 7.3874, 7.3879, 7.3869, 7.3866, 7.3863, 7.3861, 7.3877, 7.3874, 7.3888, 7.3886, 7.3883, 7.388, 7.3877, 7.3882, 7.3887, 7.3892, 7.3897, 7.3903, 7.3902, 7.3891, 7.3904, 7.3901, 7.39, 7.3913, 7.3912, 7.3909, 7.3906, 7.3903, 7.3925, 7.393, 7.3927, 7.3924, 7.3921, 7.3918, 7.3915, 7.392, 7.3917, 7.3914, 7.3912, 7.391, 7.3907, 7.3912, 7.3911, 7.3916, 7.3913, 7.391, 7.3915, 7.3936, 7.3941, 7.3939, 7.3936, 7.3933, 7.393, 7.3935, 7.3932, 7.3937, 7.3934, 7.3931, 7.3937, 7.3934, 7.3944, 7.3949, 7.3955, 7.3952, 7.3957, 7.3963, 7.3961, 7.3958, 7.3956, 7.3961, 7.3966, 7.3963, 7.3968, 7.3973, 7.3978, 7.3983, 7.398, 7.3977, 7.3974, 7.3979, 7.3984, 7.3989, 7.3994, 7.3999, 7.4003, 7.4, 7.3997, 7.3986, 7.3983, 7.398, 7.3977, 7.3975, 7.3973, 7.397, 7.3968, 7.3965, 7.397, 7.3967, 7.3964, 7.3969, 7.3974, 7.3979, 7.3976, 7.3973, 7.3978, 7.3983, 7.398, 7.3978, 7.3983, 7.3981, 7.3986, 7.3991, 7.3996, 7.4002, 7.4, 7.4005, 7.4002, 7.4012, 7.4009, 7.4006, 7.4014, 7.4011, 7.402, 7.4028, 7.4026, 7.4023, 7.4033, 7.4046, 7.4043, 7.404, 7.4046, 7.4044, 7.4041, 7.4039, 7.4036, 7.4033, 7.4039, 7.4064, 7.4072, 7.4072, 7.4069, 7.4066, 7.4071, 7.4068, 7.4065, 7.4062, 7.4059, 7.4056, 7.4054, 7.4051, 7.4048, 7.4045, 7.4035, 7.4033, 7.4031, 7.4036, 7.4034, 7.404, 7.4038, 7.4053, 7.4045, 7.4042, 7.404, 7.4037, 7.4034, 7.4031, 7.4028, 7.4025, 7.4031, 7.4037, 7.4042, 7.4063, 7.406, 7.4058, 7.4055, 7.4052, 7.4049, 7.4047, 7.4053, 7.4052, 7.4049, 7.4046, 7.4051, 7.4049, 7.4047, 7.4055, 7.406, 7.4066, 7.4063, 7.4061, 7.4079, 7.4076, 7.4073, 7.4063, 7.406, 7.4057, 7.4054, 7.4068, 7.4065, 7.407, 7.4067, 7.4064, 7.4086, 7.4091, 7.4088, 7.4093, 7.4095, 7.4085, 7.4082, 7.4079, 7.41, 7.4097, 7.4094, 7.4091, 7.4089, 7.4094, 7.4091, 7.4096, 7.4101, 7.4115, 7.4112, 7.4109, 7.411, 7.4107, 7.4112, 7.4109, 7.4114, 7.4111, 7.4108, 7.4105, 7.411, 7.4107, 7.4105, 7.4102, 7.4107, 7.4104, 7.4101, 7.4099, 7.4089, 7.4102, 7.4116, 7.4124, 7.4129, 7.4127, 7.4125, 7.4122, 7.412, 7.4117, 7.4114, 7.4111, 7.4117, 7.4114, 7.4112, 7.4109, 7.4114, 7.4111, 7.4131, 7.4128, 7.4127, 7.4125, 7.4122, 7.4119, 7.4117, 7.4115, 7.4112, 7.411, 7.4119, 7.4124, 7.4129, 7.4134, 7.4144, 7.4142, 7.4139, 7.4145, 7.4146, 7.4144, 7.4136, 7.4133, 7.4142, 7.414, 7.4137, 7.4136, 7.4134, 7.4131, 7.4129, 7.4126, 7.4124, 7.4123, 7.412, 7.4125, 7.4123, 7.412, 7.412, 7.4117, 7.4114, 7.4111, 7.4109, 7.4107, 7.4104, 7.4109, 7.4114, 7.4111, 7.4109, 7.4106, 7.4103, 7.4108, 7.4106, 7.4104, 7.4103, 7.4109, 7.4154, 7.4167, 7.4164, 7.4176, 7.4173, 7.4171, 7.4168, 7.4184, 7.4181, 7.4178, 7.4177, 7.4182, 7.4179, 7.4176, 7.4173, 7.4178, 7.4175, 7.4165, 7.4162, 7.4159, 7.4164, 7.4161, 7.4158, 7.4155, 7.416, 7.4165, 7.417, 7.4175, 7.4172, 7.4169, 7.4166, 7.4164, 7.4162, 7.4159, 7.4187, 7.4184, 7.4182, 7.4179, 7.4176, 7.4181, 7.4186, 7.4184, 7.4182, 7.418, 7.4178, 7.4175, 7.4172, 7.4169, 7.4174, 7.4171, 7.4168, 7.4158, 7.4164, 7.4161, 7.4158, 7.4155, 7.4152, 7.4149, 7.4146, 7.4143, 7.4141, 7.4139, 7.4136, 7.4141, 7.4138, 7.4135, 7.4145, 7.4149, 7.4146, 7.4151, 7.4148, 7.4146, 7.4143, 7.414]} rtt3_3_10 = {'192.168.122.110': [5.4209, 0.6483, 5.4584, 6.8605, 5.487, 1.4672, 6.7289, 5.5358, 5.4204, 6.197, 5.3525, 6.0554, 11.3194, 5.827, 5.3926, 5.2476, 5.5397, 10.8151, 6.2149, 6.7329, 5.7604, 5.5587, 5.4002, 5.4662, 5.4772, 5.249, 11.1785, 5.6431, 6.0661, 5.487, 6.0704, 5.2707, 6.4809, 11.1578, 6.223, 11.2424, 6.5205, 21.1508, 5.9917, 5.712, 5.2714, 5.2955, 15.805, 11.4889, 5.5273, 5.3041, 10.8483, 5.3902, 5.4584, 16.0306, 5.2979, 5.4855, 11.0605, 6.5677, 6.3615, 6.3057, 11.2162, 5.7981, 10.5994, 5.8057, 5.2762, 1.018, 28.46, 11.1165, 5.3163, 10.8268, 5.7175, 10.8769, 16.5319, 11.7371, 5.995, 6.7837, 5.2221, 5.4605, 5.7676, 5.8422, 21.5385, 5.9834, 6.3131, 5.2838, 11.3025, 5.5737, 22.8491, 6.2258, 16.7606, 10.6623, 1.2755, 5.6996, 10.9065, 6.3133, 10.9427, 5.5487, 5.7101, 12.3661, 11.6236, 5.4708, 6.187, 5.5921, 5.5757, 5.6713, 10.968, 7.1368, 5.3554, 5.4176, 5.5909, 6.1677, 5.5287, 5.3437, 5.4708, 6.6888, 10.8523, 5.3897, 5.3151, 6.0697, 6.4812, 11.1153, 6.393, 5.338, 5.8832, 7.1959, 29.7863, 5.9021, 7.3686, 5.3952, 5.8768, 10.9551, 11.1344, 10.8917, 5.6448, 0.6795, 11.1439, 5.3358, 5.676, 10.7408, 5.4283, 5.861, 6.1371, 6.6288, 5.914, 5.4796, 11.2913, 5.7428, 0.9673, 5.2662, 6.706, 6.1364, 6.1371, 11.5788, 5.2252, 5.5268, 5.6965, 5.7003, 5.3642, 5.4934, 10.8364, 5.2211, 11.656, 7.0124, 10.8278, 11.8396, 6.3396, 17.1583, 10.8893, 5.4207, 5.8477, 6.1486, 5.5058, 11.2877, 5.6095, 6.0236, 5.5647, 5.652, 5.6355, 21.9958, 11.1732, 5.5404, 6.4571, 10.6082, 11.5058, 22.3439, 6.1858, 38.0476, 5.2958, 6.1636, 5.2822, 6.604, 5.5747, 2.1122, 0.7503, 21.8365, 5.8279, 5.6264, 10.855, 11.0667, 5.6679, 5.9552, 5.4395, 5.8124, 6.8867, 10.8984, 5.4255, 5.2369, 5.61, 5.2569, 5.343, 6.0148, 5.641, 5.9409, 5.4064, 11.498, 5.4734, 5.6324, 5.4033, 5.4035, 5.4176, 6.0112, 5.3492, 5.9609, 10.771, 16.6683, 5.774, 11.2448, 12.0754, 5.4767, 10.3719, 5.5747, 6.1517, 6.355, 5.4913, 1.3025, 5.7769, 5.7049, 5.2729, 10.9222, 5.5692, 5.543, 10.7257, 5.3709, 5.6968, 5.2192, 5.7313, 16.9024, 5.5633, 14.5841, 5.9147, 5.3749, 5.7437, 10.9899, 5.5168, 16.7778, 0.9093, 6.1884, 6.099, 0.8559, 10.4828, 5.7387, 5.4071, 5.275, 5.7638, 5.4805], '192.168.122.111': [5.41, 6.5017, 10.3495, 5.4452, 5.4908, 0.9472, 5.2984, 12.0294, 5.4457, 11.1046, 11.2844, 17.555, 10.7646, 21.9753, 5.4164, 5.3606, 11.7824, 11.5306, 5.8606, 5.4686, 5.8405, 11.0862, 6.0954, 5.4166, 11.997, 7.5648, 11.2295, 11.2364, 5.4545, 11.1229, 5.4462, 16.1028, 10.8778, 6.2435, 12.3627, 5.5945, 11.3511, 5.476, 5.4748, 6.218, 10.6471, 10.6554, 5.6551, 5.739, 6.0799, 5.2302, 11.0624, 5.4924, 5.2412, 5.6038, 6.3353, 11.1876, 5.4412, 5.3017, 6.6373, 16.9191, 5.5635, 5.4343, 32.9022, 5.4936, 5.7325, 7.3974, 5.8637, 5.4152, 11.8611, 5.9068, 5.2567, 6.038, 5.5845, 6.1567, 6.2335, 7.1223, 10.5026, 6.5784, 5.8014, 6.3665, 10.6547, 5.8217, 6.1591, 5.3186, 5.6548, 10.6006, 10.7136, 0.5879, 10.6895, 5.8661, 7.6663, 6.3419, 5.4276, 5.2371, 10.8654, 10.9472, 5.7681, 10.8712, 5.3346, 5.2698, 5.8236, 5.8277, 11.1856, 10.3621, 10.8066, 11.1556, 23.7005, 5.5788, 6.3069, 5.4934, 10.6912, 10.8402, 6.2094, 10.7098, 5.3713, 5.523, 11.6141, 5.3236, 10.987, 5.6071, 10.767, 5.3425, 10.8984, 11.1709, 25.2409, 5.3256, 5.3797, 10.8633, 6.0618, 5.795, 5.3613, 10.721, 6.346, 1.0831, 16.2027, 5.25, 6.1855, 5.6193, 5.4634, 5.5017, 10.7174, 18.652, 11.3337, 5.5094, 5.5048, 5.8224, 0.8326, 5.2137, 5.9524, 5.399, 5.2967, 11.2059, 5.4338, 10.9327, 5.7755, 5.3086, 11.9212, 5.5611, 10.8984, 16.8626, 5.6748, 6.17, 5.9438, 5.2464, 5.4224, 5.9578, 6.1722, 5.8761, 5.9264, 10.8328, 6.4228, 6.3956, 5.8074, 5.3899, 10.6318, 5.2657, 5.8968, 5.2316, 10.978, 6.6106, 5.3263, 5.3167, 5.9288, 5.6524, 16.1216, 15.7354, 5.4884, 5.7898, 5.9817, 5.5513, 5.5211, 5.9643, 2.1868, 10.8917, 5.7957, 5.5075, 5.6515, 5.4166, 5.9268, 21.9257, 10.8762, 5.3852, 12.0654, 5.8553, 10.7832, 5.2853, 5.7452, 10.6068, 11.1001, 5.4173, 11.3027, 9.9926, 10.8421, 5.8115, 5.8739, 7.0026, 5.3699, 10.9906, 5.4107, 16.7994, 6.4375, 6.5756, 1.4598, 5.5339, 12.6481, 6.0914, 10.849, 5.4834, 5.5749, 5.5747, 17.0801, 11.6727, 5.4696, 6.4185, 5.856, 15.3871, 5.4283, 6.7427, 5.7595, 6.1815, 10.9074, 5.5933, 6.0053, 5.863, 5.8365, 10.8829, 37.0011, 5.6765, 12.1815, 5.3754, 10.7553, 5.697, 5.7724, 6.1131, 5.7833, 6.3353, 11.409, 0.9739, 5.6777, 5.7578, 11.2045, 10.931, 5.3294, 11.8942], '192.168.122.112': [5.3964, 5.97, 6.3298, 10.8397, 21.3864, 1.0958, 10.546, 0.5479, 10.833, 17.2949, 11.4193, 5.7728, 6.5637, 5.5017, 10.8204, 5.4817, 11.5473, 7.8194, 5.4319, 5.3616, 10.6854, 5.9099, 5.5916, 5.5375, 18.4391, 5.7826, 5.4007, 5.5337, 5.475, 5.2731, 5.3592, 5.8646, 5.6021, 5.3885, 5.4603, 11.1508, 5.8792, 16.6235, 10.6118, 5.3573, 5.2385, 10.6626, 5.7487, 5.3256, 5.2521, 5.2402, 0.4368, 11.1501, 5.3494, 5.2488, 5.831, 5.9371, 5.6057, 16.6185, 5.3909, 11.0278, 10.797, 5.466, 5.6195, 5.6999, 5.7311, 10.9665, 5.2667, 27.2431, 5.5583, 5.8637, 5.338, 13.9024, 11.137, 5.4321, 11.0471, 10.8662, 5.795, 11.0726, 10.9007, 5.3346, 5.3563, 5.475, 11.0838, 7.0498, 10.6099, 5.4872, 5.7566, 0.6256, 5.4295, 5.1436, 5.4746, 7.2901, 16.4225, 10.5243, 10.4129, 5.5988, 15.7094, 5.6691, 5.7967, 5.8665, 5.7878, 5.873, 11.3642, 10.8776, 10.9668, 5.6088, 11.4655, 5.5246, 11.3039, 5.5702, 10.8263, 5.9602, 10.8666, 10.7505, 5.5149, 5.4073, 5.1961, 5.8427, 6.9854, 5.5993, 10.7479, 5.5463, 5.5139, 11.7197, 0.638, 5.7187, 5.229, 5.4674, 11.3692, 5.8441, 6.1798, 5.2383, 5.6243, 0.6828, 11.0648, 10.6552, 17.2637, 5.7406, 5.8639, 10.8497, 5.4376, 5.8284, 5.336, 11.225, 5.7847, 17.3349, 0.6161, 5.2989, 5.9087, 5.6736, 5.9206, 11.1129, 5.837, 5.2648, 6.6612, 5.5301, 10.8616, 5.651, 16.6109, 10.7017, 0.5853, 11.0095, 11.1346, 5.296, 5.343, 5.4686, 5.8646, 5.5311, 10.359, 5.3456, 10.8538, 5.4755, 5.4533, 16.4697, 5.5618, 32.6569, 16.2575, 6.0413, 10.8445, 5.7535, 5.4665, 5.2772, 10.9963, 16.814, 5.7154, 13.8104, 10.855, 5.6965, 16.7618, 5.4624, 10.8902, 5.6326, 0.6258, 5.8188, 5.2745, 5.9955, 6.9501, 17.0665, 5.3184, 5.3813, 5.6748, 5.5165, 11.9312, 10.6084, 5.4729, 5.8055, 5.5349, 10.4797, 5.7724, 10.5333, 5.425, 16.8493, 28.6319, 10.813, 5.8761, 11.6341, 10.7875, 5.8508, 11.5218, 6.3117, 5.6684, 7.7603, 0.7777, 16.3848, 11.1623, 22.4452, 11.3492, 10.864, 11.095, 5.2502, 10.7219, 10.7207, 5.4452, 22.2161, 5.4214, 11.2789, 5.877, 5.6479, 5.7051, 0.6576, 5.6846, 5.8398, 5.7878, 5.4736, 11.863, 10.9429, 10.8168, 11.7767, 6.1307, 6.1102, 5.4777, 6.3033, 5.4712, 6.278, 5.5118, 11.4021, 6.5863, 0.6824, 5.5141, 5.5439, 5.4522, 5.3818, 7.7715, 5.9049], '192.168.122.114': [5.7702, 5.5988, 10.716, 10.8476, 5.2245, 0.8307, 6.7375, 0.5207, 16.3388, 5.6, 6.2211, 5.8293, 11.3444, 10.9034, 5.4815, 10.9754, 10.9417, 5.7921, 5.3859, 5.3, 10.829, 6.6509, 11.4183, 5.5418, 6.9494, 5.5289, 5.245, 5.81, 6.4893, 5.7058, 10.8783, 5.7545, 11.3814, 10.8359, 10.8218, 11.126, 5.8076, 10.8161, 11.095, 10.6199, 5.3394, 6.3972, 5.548, 10.9508, 10.9596, 5.4576, 5.9416, 11.308, 5.2378, 10.6924, 5.7454, 11.0321, 5.7511, 5.8706, 15.9378, 10.9887, 10.709, 5.6067, 5.2502, 5.5406, 10.3781, 5.6589, 5.8811, 5.7635, 5.2061, 6.4597, 5.5635, 5.5835, 24.5821, 5.7776, 16.1264, 6.5622, 5.358, 11.2185, 11.6296, 0.6621, 5.4309, 17.483, 5.8498, 5.3289, 10.5102, 5.9803, 5.4452, 0.4945, 5.379, 10.787, 6.4158, 5.7464, 10.7019, 10.9184, 10.9081, 5.4877, 11.0002, 5.4991, 5.475, 5.794, 17.6737, 11.2984, 5.3008, 5.3966, 10.4077, 5.934, 5.9071, 5.513, 5.5645, 5.6305, 5.5771, 5.4579, 5.4443, 5.4383, 10.8047, 5.8429, 5.5623, 10.8776, 5.4352, 5.2605, 5.4004, 5.4471, 10.7219, 5.4214, 0.7136, 5.244, 5.9819, 11.1094, 5.9652, 10.7214, 5.6922, 5.8744, 11.8341, 0.7999, 5.2667, 10.8318, 5.2183, 5.2681, 5.9347, 11.6608, 10.859, 5.507, 5.8265, 11.1728, 5.5923, 5.4395, 1.2226, 10.6173, 10.72, 11.7071, 10.7636, 5.806, 10.4921, 10.5815, 5.8715, 5.4004, 0.5975, 10.8416, 5.2691, 5.2938, 0.8969, 10.7739, 11.1659, 11.0888, 5.3251, 16.3369, 5.3008, 5.5726, 33.4108, 11.4353, 5.7375, 10.812, 16.3527, 10.9847, 5.6901, 10.7186, 32.666, 10.7169, 10.9696, 0.5701, 5.8246, 10.6051, 5.8329, 5.8949, 5.6448, 66.86, 10.7496, 10.4671, 5.2686, 5.507, 5.5895, 5.7404, 0.5927, 5.7867, 6.067, 11.1117, 7.4348, 5.9519, 5.5957, 5.4913, 5.6798, 32.2373, 5.7769, 6.5193, 10.9847, 8.0462, 5.4801, 6.0356, 10.7098, 6.0987, 5.384, 6.1736, 11.8759, 5.5065, 5.7147, 5.8267, 5.3828, 15.6975, 5.7313, 5.7433, 10.8731, 5.9819, 0.7634, 16.2833, 5.621, 11.2433, 10.8876, 10.9148, 11.1535, 10.8161, 10.4511, 5.5416, 5.6834, 5.9383, 10.8147, 6.3615, 5.7216, 5.8892, 6.2919, 0.4587, 6.1007, 6.0036, 6.4259, 5.2688, 5.4634, 10.8328, 5.5709, 5.9943, 6.3679, 5.4028, 11.5609, 5.5671, 10.4105, 6.011, 5.7268, 5.61, 5.6922, 0.6032, 0.8659, 11.0099, 5.3048, 10.8185, 5.8715, 6.2459], '192.168.122.115': [6.5975, 16.2785, 5.347, 5.4405, 10.9038, 11.6479, 6.382, 0.5505, 5.2836, 6.2804, 5.6372, 6.6195, 5.6465, 5.4526, 10.6864, 6.6533, 10.9811, 5.4741, 5.3585, 5.4038, 10.7729, 6.3491, 11.369, 0.484, 16.727, 5.6498, 11.169, 11.1561, 9.1143, 5.316, 6.1896, 5.8513, 0.5362, 10.7727, 6.2263, 5.6839, 5.5909, 6.1975, 5.8494, 5.4135, 5.3215, 5.3277, 5.9264, 5.3799, 5.8255, 5.3203, 5.3849, 10.9251, 10.8504, 10.5722, 10.8259, 10.8218, 5.7507, 5.9054, 11.1904, 5.4049, 10.9925, 6.9931, 6.1033, 22.7666, 5.2443, 11.0292, 5.7445, 6.2697, 6.2249, 10.9432, 5.3821, 5.4362, 11.1969, 11.2915, 5.3806, 5.3937, 5.3499, 5.6572, 5.9719, 0.8709, 5.3744, 5.8572, 11.1761, 5.9462, 5.5408, 5.2567, 11.0881, 0.5794, 16.2091, 6.3193, 10.8697, 11.0655, 10.7913, 5.8022, 11.3962, 11.0078, 5.6918, 5.8055, 6.3972, 11.7366, 6.3148, 6.3396, 6.0129, 11.1637, 6.0112, 10.5398, 5.3151, 5.6605, 5.6734, 6.0825, 5.4007, 6.0425, 10.7276, 5.4462, 5.4157, 5.6279, 5.548, 10.2992, 5.4364, 33.1485, 5.9493, 5.6877, 11.0791, 11.03, 6.6741, 5.4278, 16.1169, 21.8933, 6.2373, 5.4522, 11.5247, 5.3918, 5.6109, 0.8006, 5.5106, 10.7119, 10.5588, 11.0226, 12.6588, 5.3437, 6.0859, 5.7099, 5.2691, 5.5997, 5.5242, 5.5683, 6.1986, 5.619, 16.9392, 16.0837, 10.8287, 10.556, 5.4767, 5.4529, 5.291, 6.1617, 0.4849, 5.9121, 6.1982, 5.5003, 0.7188, 5.5118, 5.8446, 10.8423, 10.9425, 5.5959, 11.6601, 5.3141, 17.7822, 10.8349, 1.4026, 5.4743, 5.8239, 11.1222, 9.0897, 6.2475, 5.4991, 5.4617, 15.9476, 5.3642, 11.065, 5.8396, 12.0602, 5.7392, 5.6362, 16.0594, 10.7718, 10.4635, 5.8284, 10.699, 5.6098, 11.3573, 0.607, 5.1572, 6.0248, 5.5046, 5.7733, 5.3051, 6.2275, 11.4479, 11.1938, 10.8716, 5.3489, 10.9453, 5.327, 9.4099, 5.7795, 5.2717, 5.3701, 5.3971, 5.3861, 23.4523, 10.8893, 5.7786, 5.7614, 10.9963, 10.8385, 5.4784, 5.9204, 5.8455, 5.4741, 5.935, 0.6826, 10.6425, 5.8217, 6.0444, 8.7385, 10.9174, 5.4624, 11.1723, 5.8157, 5.4157, 5.4827, 5.3408, 5.2617, 5.6701, 5.8141, 5.3766, 5.9533, 0.56, 6.2327, 5.4584, 6.4611, 5.4171, 11.7111, 10.9301, 5.908, 5.9221, 23.4549, 5.9447, 5.3518, 13.84, 5.7044, 27.2663, 10.8261, 0.5403, 5.8718, 0.7873, 1.8301, 10.8128, 5.7797, 5.1785, 5.7487, 5.8131], '192.168.122.116': [10.4678, 5.8827, 5.4166, 5.4412, 10.8604, 11.03, 6.5517, 6.057, 0.5777, 5.6679, 5.5549, 11.5809, 5.363, 5.4581, 10.5331, 10.9468, 5.5649, 5.4266, 5.3022, 10.8993, 10.855, 5.9114, 5.4705, 0.7026, 5.6798, 16.644, 11.2879, 5.7588, 5.6684, 5.2431, 5.388, 5.708, 0.6387, 10.8294, 5.8584, 11.4021, 6.1958, 5.9822, 10.5932, 5.2648, 5.8682, 5.1925, 10.8969, 5.5737, 6.237, 5.3904, 5.486, 5.4522, 12.228, 10.5734, 5.8527, 16.5508, 5.8227, 11.1511, 10.4623, 11.1115, 5.3036, 5.8339, 5.6818, 11.5287, 5.7847, 6.1319, 6.5212, 6.0492, 10.818, 5.619, 10.8018, 5.2521, 18.1267, 6.6936, 5.76, 5.7554, 5.3566, 5.6887, 5.7609, 0.4938, 5.8482, 6.0196, 5.8684, 10.7479, 5.3964, 32.3703, 29.793, 0.7293, 5.5051, 5.7266, 5.9667, 11.3225, 5.971, 5.964, 6.1536, 11.0545, 22.2218, 6.3808, 5.4617, 11.214, 24.3092, 5.5602, 5.6005, 5.332, 0.5031, 10.457, 10.5777, 5.4672, 6.1631, 5.5554, 11.4236, 5.4362, 7.3924, 10.5913, 5.506, 5.47, 10.8042, 11.1074, 5.3048, 5.7268, 10.6561, 10.9456, 10.6466, 5.4781, 5.4989, 5.2683, 10.8924, 5.4986, 5.2986, 5.8923, 5.61, 5.511, 5.3165, 2.5442, 5.4708, 10.8993, 10.9837, 10.6785, 11.0202, 6.537, 6.0558, 5.7874, 5.2807, 10.612, 5.5256, 5.5549, 0.5617, 21.863, 5.6083, 5.6608, 5.8906, 5.3008, 5.4102, 5.4164, 5.2736, 16.2663, 0.55, 5.4605, 10.5617, 32.8119, 0.4897, 10.68, 5.8796, 5.8839, 5.3313, 7.4489, 17.2105, 11.5414, 5.8911, 5.4414, 1.2319, 5.3492, 5.4088, 5.2891, 5.6231, 5.3988, 10.8814, 5.393, 5.7592, 5.6946, 5.9299, 27.262, 5.7974, 10.8166, 5.5966, 7.9088, 5.9338, 19.6555, 0.596, 5.8975, 5.4612, 10.9723, 0.6168, 5.8103, 5.218, 11.1787, 6.7778, 25.7425, 6.4685, 10.9406, 9.8057, 5.2991, 5.2021, 6.4988, 10.8032, 10.4721, 5.2862, 5.8713, 10.9076, 10.7124, 5.7173, 11.1196, 5.6188, 10.8874, 16.8009, 6.2568, 11.2588, 5.388, 5.3337, 10.7112, 5.5175, 11.0705, 0.818, 5.3713, 5.594, 5.6758, 5.3198, 6.0077, 5.4381, 5.6674, 10.6206, 5.7769, 5.2378, 10.8578, 10.4601, 11.4231, 5.4445, 11.2753, 5.2719, 0.6082, 11.4269, 5.4641, 5.919, 5.3151, 5.7769, 5.4202, 5.4574, 11.5516, 6.2339, 5.4798, 6.5641, 5.532, 5.6987, 5.6009, 10.8564, 5.6567, 11.5268, 0.8478, 0.6626, 11.4219, 5.2834, 5.3751, 18.5983, 5.502], '192.168.122.120': [16.2494, 5.3508, 5.408, 5.4295, 5.6312, 5.5263, 6.3365, 10.793, 0.5949, 5.6274, 5.7166, 5.4798, 22.3501, 10.8397, 6.0353, 6.1646, 27.0329, 5.3189, 6.3307, 5.7611, 10.7062, 5.548, 16.8288, 6.1741, 11.3933, 5.7867, 11.1964, 5.5096, 5.4762, 5.4219, 5.3825, 0.7761, 0.6459, 6.3288, 5.3732, 0.5429, 5.6105, 32.625, 21.6846, 5.2621, 5.635, 16.5937, 5.7812, 16.3317, 5.444, 5.3968, 0.6099, 6.0716, 5.3463, 5.5077, 5.672, 5.7383, 5.2283, 10.6421, 5.3372, 10.8652, 16.3085, 5.477, 22.4354, 5.2507, 5.2433, 10.9835, 11.0781, 5.4758, 10.8783, 5.2402, 5.8119, 5.4417, 5.5811, 0.7052, 10.3955, 5.2667, 6.8271, 11.1601, 6.5355, 2.789, 5.9721, 11.095, 6.0084, 6.0859, 11.024, 17.8311, 6.1791, 0.5617, 5.3697, 5.6365, 6.32, 5.7306, 11.0257, 11.5767, 5.7013, 5.5549, 5.3334, 5.8925, 17.282, 0.7193, 5.317, 5.7375, 6.1116, 6.3567, 5.863, 5.7037, 5.5003, 5.4154, 6.11, 10.8602, 10.8979, 5.4572, 10.7286, 5.4114, 11.025, 6.4983, 5.6167, 5.6863, 5.3856, 5.5511, 5.4767, 5.5473, 10.886, 5.4762, 16.0022, 5.3196, 5.4743, 11.0352, 5.4219, 5.2626, 22.0625, 5.8286, 15.7831, 0.8736, 10.8449, 11.23, 10.9639, 10.7155, 6.3465, 5.3213, 5.7366, 5.8672, 5.2791, 16.6104, 18.8999, 5.9047, 0.5639, 10.6795, 5.5802, 1.9774, 10.9026, 5.3737, 5.3914, 11.0657, 5.3582, 16.6953, 0.4039, 6.1719, 5.388, 10.5293, 0.4296, 5.4319, 0.4461, 5.5544, 6.0182, 5.4755, 10.4094, 5.2304, 21.5211, 10.6013, 1.5132, 6.3076, 10.7586, 5.6221, 6.1679, 5.2705, 10.7853, 5.9409, 10.4461, 5.2977, 5.3408, 16.7446, 16.839, 21.174, 5.6236, 5.8703, 5.4598, 10.6483, 5.4224, 10.6275, 10.5352, 5.6825, 0.5465, 5.7757, 10.6754, 11.1108, 5.343, 10.8614, 10.8111, 5.4986, 15.6271, 16.4771, 5.7187, 10.7989, 5.4095, 18.508, 6.1455, 15.2459, 16.7036, 6.2299, 5.8384, 5.5385, 11.1091, 5.3358, 21.6935, 16.9313, 5.8715, 5.275, 10.7222, 11.2967, 5.9397, 10.7567, 6.1188, 5.5616, 12.336, 5.6636, 10.7393, 5.3868, 5.5687, 5.4502, 11.1916, 5.5091, 11.4007, 5.8112, 5.7373, 6.3055, 5.4715, 5.2485, 10.9069, 0.4821, 11.3246, 5.379, 6.434, 5.4209, 5.734, 5.9395, 10.9165, 11.8587, 6.0866, 11.2846, 5.7938, 5.3248, 10.7481, 5.7266, 11.2703, 6.1994, 11.5421, 1.3087, 0.4952, 10.8328, 5.6546, 5.4269, 5.5983, 10.9415], '192.168.122.118': [0.8883, 5.8637, 24.5066, 11.1694, 5.7349, 5.5466, 10.6618, 5.3918, 0.6821, 5.8963, 6.2127, 18.223, 5.7852, 6.0012, 5.4049, 6.2156, 10.9868, 5.646, 5.8234, 6.3772, 5.4727, 5.4364, 6.1936, 5.5382, 5.1866, 5.7118, 5.5509, 5.5199, 10.9012, 5.4936, 5.811, 0.9651, 0.4549, 12.3658, 6.3546, 5.7468, 5.3554, 5.5559, 5.1928, 5.9462, 5.2216, 5.614, 10.675, 10.4253, 10.7994, 5.8062, 16.8419, 5.9092, 5.734, 10.7973, 5.3151, 5.9068, 5.9452, 6.3691, 5.7814, 11.2236, 10.792, 5.5709, 5.7325, 5.6031, 5.3315, 16.176, 5.7504, 5.7995, 6.3627, 5.8472, 5.4021, 5.4462, 5.5695, 1.2081, 5.7414, 5.3885, 12.5132, 6.2635, 5.604, 0.7749, 10.6611, 11.7521, 10.5872, 5.9061, 5.3716, 6.4311, 10.8769, 0.5221, 21.3845, 5.4822, 10.8609, 5.794, 5.4243, 6.4862, 11.1811, 5.7807, 16.274, 5.9104, 5.5947, 6.2282, 5.2671, 6.3627, 5.6422, 16.0065, 10.9568, 16.6459, 31.7361, 5.9659, 6.1896, 22.0335, 5.7516, 5.5242, 16.299, 10.958, 11.4124, 5.2607, 16.1412, 11.2367, 10.9236, 11.559, 11.2035, 6.1879, 10.9022, 5.4281, 10.8976, 5.3799, 5.6195, 17.2145, 5.4827, 26.2201, 5.3735, 5.8353, 5.6534, 0.5436, 5.4262, 5.3661, 5.4703, 5.2812, 10.8018, 5.4836, 10.9849, 5.7101, 11.0841, 11.183, 11.08, 10.7088, 0.4983, 10.7017, 10.967, 1.4462, 5.4438, 6.4316, 5.4119, 5.9114, 5.7802, 5.4951, 0.5102, 5.399, 5.2314, 20.236, 0.6454, 6.2122, 0.6404, 0.4857, 5.2516, 11.3964, 5.2445, 5.7151, 11.1024, 11.08, 14.1938, 5.27, 5.4438, 5.594, 5.3096, 5.3935, 10.8273, 5.713, 5.2345, 5.2958, 10.7074, 6.5575, 10.9129, 10.8695, 6.1512, 12.264, 5.5947, 5.4543, 6.1946, 10.6008, 6.4647, 5.6672, 0.4983, 5.6393, 10.5727, 5.5909, 5.5263, 6.0904, 5.4247, 6.0184, 10.814, 5.5246, 5.6214, 21.6556, 17.1442, 6.1769, 10.4604, 5.729, 16.2852, 16.5322, 5.9717, 16.1498, 11.2298, 5.4018, 5.6686, 5.8565, 10.4041, 5.3124, 5.4216, 10.6642, 5.8055, 5.3833, 6.3865, 0.5176, 5.6927, 5.8146, 5.6186, 6.1996, 11.075, 5.5199, 21.4276, 10.6275, 10.669, 9.9385, 10.7737, 6.0024, 5.4314, 5.3639, 5.7409, 0.5398, 11.4653, 6.0744, 16.5238, 5.5118, 5.8351, 5.4617, 10.6211, 29.6493, 24.9352, 10.5817, 5.3499, 5.4932, 5.583, 5.2426, 6.027, 10.4673, 11.5609, 0.8812, 0.6518, 11.0235, 10.6611, 10.8037, 5.7569, 5.3644], '192.168.122.119': [5.5571, 5.5985, 5.512, 11.1458, 0.5698, 10.8128, 5.3864, 10.9293, 0.6924, 11.4341, 6.2234, 10.848, 5.3456, 6.6283, 5.3265, 5.9285, 5.4801, 5.4376, 5.8937, 5.2478, 10.8666, 10.7682, 13.1862, 5.558, 5.3473, 5.4305, 10.9749, 5.6288, 5.4305, 5.2989, 11.385, 0.5591, 0.4299, 5.3623, 5.4657, 11.2405, 5.4078, 6.3965, 11.1489, 10.5629, 10.5593, 6.0194, 10.9124, 10.5324, 10.8047, 11.0412, 1.0657, 5.7776, 11.9076, 14.3328, 5.3937, 5.3289, 5.8064, 6.5067, 27.2694, 8.1546, 5.2438, 5.8761, 5.7693, 12.3644, 5.6515, 10.4749, 5.7411, 5.2025, 5.9109, 5.5447, 5.7492, 5.4216, 5.5509, 0.7064, 5.8687, 5.4431, 5.3144, 5.969, 6.3016, 0.4721, 10.6013, 5.9893, 10.9947, 25.1739, 5.2457, 5.5254, 10.5298, 0.4349, 5.2507, 5.7626, 10.9158, 6.0222, 5.4939, 5.7251, 6.2776, 16.6883, 5.9221, 5.4777, 6.7089, 5.6374, 5.712, 5.6906, 5.5654, 5.4972, 16.1796, 10.7956, 5.9938, 5.3551, 6.0287, 5.4541, 6.119, 0.5524, 11.0805, 5.9514, 11.3883, 5.7828, 5.6932, 5.5408, 10.7453, 5.7294, 10.9935, 11.2896, 10.6478, 5.5273, 5.3761, 6.0871, 10.8435, 6.2799, 8.204, 0.7761, 5.2905, 6.0601, 11.0433, 5.8413, 5.4603, 5.3122, 26.7744, 5.3926, 16.2799, 5.8012, 5.4007, 5.8341, 11.9057, 5.9197, 11.224, 5.3034, 0.546, 5.2817, 5.2993, 9.1453, 5.3089, 5.3802, 5.8854, 5.3396, 5.6252, 11.2987, 0.5291, 10.865, 5.7926, 13.8865, 0.9954, 5.7802, 0.6025, 6.1846, 27.8242, 5.7008, 5.2502, 5.2152, 11.127, 10.8359, 13.344, 6.578, 5.5504, 16.0613, 5.7969, 5.3313, 5.3222, 6.2413, 11.652, 10.6869, 27.1969, 10.9925, 5.8527, 5.7921, 6.4421, 5.2354, 16.8083, 5.3005, 27.2963, 10.7284, 5.6508, 11.2846, 0.4208, 11.0707, 5.4133, 10.6449, 5.6112, 5.9111, 5.4319, 10.9127, 6.2737, 10.4196, 6.166, 10.8905, 10.9367, 6.2099, 5.2259, 11.2038, 16.4409, 21.5218, 10.5217, 5.487, 5.3773, 5.3751, 10.798, 5.4018, 5.7948, 5.9154, 8.2767, 5.676, 5.5313, 5.3275, 5.8627, 5.4574, 5.579, 5.3041, 22.2816, 10.8008, 6.1584, 6.6826, 11.2276, 10.998, 5.7905, 5.3689, 11.5619, 10.7996, 5.4133, 5.3852, 5.5308, 0.464, 5.8055, 10.85, 11.1518, 11.2636, 0.5381, 5.4698, 0.803, 11.9047, 6.1586, 5.271, 5.3847, 28.4936, 11.3554, 5.6939, 5.5892, 5.3251, 11.4403, 0.9768, 4.1966, 11.1651, 10.4938, 5.441, 10.7675, 10.8833]} cpu3_3_10 = [43.7, 28.8, 2.6, 3.2, 0.1, 0.1, 1.1, 1.5, 0.6, 3.1, 0.6, 3.1, 0.7, 0.0, 0.2, 1.8, 3.7, 0.8, 1.2, 0.1, 0.5, 0.5, 0.4, 0.7, 0.1, 0.2, 0.2, 0.6, 0.4, 1.9, 0.7, 1.1, 0.5, 0.7, 0.7, 0.1, 0.1, 0.0, 0.2, 2.9, 1.8, 2.1, 2.6, 1.0, 0.9, 0.4, 0.3, 0.4, 0.9, 0.2, 2.0, 0.3, 1.0, 0.8, 0.9, 1.9, 1.6, 0.0, 0.4, 1.4, 1.6, 1.4, 0.1, 0.8, 0.8, 0.4, 0.3, 0.9, 1.4, 0.3, 3.6, 2.8, 0.3, 0.3, 1.2, 2.1, 2.7, 1.7, 0.7, 0.8, 0.6, 1.8, 1.8, 2.9, 1.8, 1.3, 0.3, 0.7, 0.9, 0.4, 0.1, 0.1, 0.3, 0.1, 0.2, 0.8, 1.3, 2.3, 1.5, 0.2, 0.5, 0.3, 0.8, 0.6, 1.3, 0.1, 0.7, 1.2, 0.9, 0.8, 1.3, 1.5, 0.0, 0.3, 0.1, 0.4, 0.5, 1.6, 1.8, 2.5, 5.2, 5.5, 1.5, 0.8, 0.3, 0.3, 0.6, 0.6, 1.2, 2.5, 1.6, 0.2, 0.6, 0.9, 0.8, 0.6, 0.3, 0.0, 0.5, 0.6, 0.8, 0.9, 0.5, 0.2, 0.6, 0.1, 1.5, 2.2, 0.4, 0.7, 0.3, 0.4, 0.4, 1.1, 0.7, 0.4, 0.6, 1.0, 0.3, 0.2, 0.5, 0.6, 0.1, 0.7, 0.1, 0.5, 1.0, 0.6, 0.5, 0.1, 1.3, 1.7, 0.1, 0.4, 0.0, 0.1, 0.6, 1.3, 1.3, 2.1, 0.3, 1.0, 9.4, 10.8, 0.1, 0.4, 0.6, 8.8, 7.7, 1.0, 0.8, 1.0, 0.7, 0.1, 0.3, 0.9, 0.7, 3.1, 3.0, 0.4, 0.3, 0.6, 1.0, 0.2, 1.1, 0.8, 0.7, 0.9, 0.8, 0.1, 0.6, 0.6, 0.5, 0.3, 0.4, 1.2, 0.9, 1.4, 3.3, 2.3, 0.3, 0.9, 0.1, 0.3, 0.6, 0.9, 1.6, 1.2, 0.5, 1.0, 1.9, 0.7, 0.2, 0.0, 0.4, 0.3, 1.2, 2.1, 0.6, 0.6, 0.4, 1.7, 1.6, 0.4, 0.2, 0.4, 0.2, 1.1, 0.9, 0.4, 1.1, 0.8, 0.3, 0.6, 0.5, 0.5, 0.1, 0.6, 0.9, 0.2] off_mec3_3_10 = 139 off_cloud3_3_10 = 196 inward_mec3_3_10 = 75 loc3_3_10 = 547 deadlock3_3_10 = [6] memory3_3_10 = [0.219, 0.2194, 0.2194, 0.2198, 0.2198, 0.2198, 0.2199, 0.2199, 0.2199, 0.22, 0.2201, 0.2201, 0.2201, 0.2202, 0.2202, 0.2203, 0.2203, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2206, 0.2207, 0.2207, 0.2208, 0.2208, 0.2208, 0.2208, 0.2209, 0.221, 0.221, 0.221, 0.2211, 0.2211, 0.2211, 0.2211, 0.2212, 0.2213, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2215, 0.2215, 0.2216, 0.2218, 0.2218, 0.222, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2227, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2229, 0.2232, 0.2232, 0.2232, 0.2234, 0.2236, 0.2237, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2239, 0.2241, 0.2242, 0.2242, 0.2242, 0.2243, 0.2243, 0.2244, 0.2244, 0.2245, 0.2245, 0.2246, 0.2246, 0.2246, 0.2247, 0.2248, 0.2248, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.225, 0.225, 0.2251, 0.2251, 0.2251, 0.2252, 0.2252, 0.2253, 0.2253, 0.2254, 0.2255, 0.2256, 0.2256, 0.2258, 0.2258, 0.226, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2263, 0.2264, 0.2264, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2269, 0.2269, 0.227, 0.227, 0.2271, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2277, 0.2277, 0.2279, 0.2279, 0.2279, 0.2282, 0.2282, 0.2283, 0.2285, 0.2285, 0.2285, 0.2285, 0.2286, 0.2287, 0.2288, 0.2288, 0.2288, 0.2288, 0.2291, 0.2291, 0.2291, 0.2292, 0.2293, 0.2293, 0.2293, 0.2293, 0.2294, 0.2294, 0.2295, 0.2295, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2297, 0.2298, 0.2298, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2301, 0.2302, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2305, 0.2305, 0.2305, 0.2306, 0.2306, 0.2306, 0.2306, 0.2306, 0.2306, 0.2307, 0.2308, 0.2309, 0.2319, 0.232, 0.232, 0.232, 0.2321, 0.2321, 0.2321, 0.2321, 0.2321, 0.2323, 0.2323, 0.2323, 0.2323, 0.2324, 0.2324, 0.2325, 0.2334] task_received3_3_10 = 882 sent_t3_3_10 = {'125': 333, '124': 305, '126': 243} cooperate3_3_10 = {'mec': 138, 'cloud': 196} task_record3_3_10 = {'t5.113.124.651.274': 'mec'} outward_mec3_3_10 = 8 offload_check3_3_10 = [] timed_out_tasks3_3_10 = 0
wt3_3_10 = {'192.168.122.110': [8.5425, 9.6589, 8.3878, 8.9764, 8.5553, 8.1619, 8.5832, 8.1742, 7.8747, 7.6304, 7.6131, 7.5381, 7.3988, 7.2547, 7.2352, 7.1954, 7.0925, 6.9968, 7.8112, 7.7524, 7.6389, 7.5302, 7.4983, 7.4729, 7.4327, 7.3494, 7.2848, 7.2741, 7.2099, 7.1539, 7.2822, 7.2477, 7.3613, 7.315, 7.2783, 7.1005, 7.259, 7.2092, 7.1609, 7.2541, 7.2072, 7.1686, 7.1279, 7.2113, 7.1714, 7.2521, 7.2082, 7.0759, 7.1424, 7.1109, 7.1106, 7.0781, 7.0454, 7.0152, 7.0056, 6.9756, 6.9764, 6.9487, 7.0111, 6.9932, 6.9655, 6.9462, 6.9316, 6.9125, 7.0027, 6.9865, 6.9652, 6.9468, 6.9297, 6.9121, 6.8911, 6.8843, 6.8806, 6.868, 6.8489, 6.8347, 6.8156, 6.7999, 6.7823, 6.7668, 6.7565, 6.7398, 6.7867, 6.7734, 6.8209, 6.8053, 6.7948, 6.9508, 7.0068, 6.9956, 6.9812, 7.2321, 7.213, 7.1994, 7.1836, 7.1799, 7.2166, 7.1988, 7.1821, 7.296, 7.2775, 7.2622, 7.2579, 7.2489, 7.2312, 7.2128, 7.246, 7.2797, 7.2648, 7.2603, 7.2421, 7.2245, 7.2671, 7.2712, 7.3504, 7.3378, 7.2962, 7.2876, 7.3166, 7.3017, 7.2909, 7.2799, 7.3099, 7.3884, 7.3738, 7.3575, 7.341, 7.3254, 7.3509, 7.3998, 7.3939, 7.4582, 7.4459, 7.4311, 7.4207, 7.4048, 7.3892, 7.3815, 7.368, 7.3535, 7.3437, 7.33, 7.3157, 7.3076, 7.2941, 7.2879, 7.2743, 7.2613, 7.2781, 7.2716, 7.2593, 7.2468, 7.242, 7.2515, 7.3003, 7.2873, 7.2774, 7.2732, 7.2672, 7.2595, 7.2486, 7.269, 7.2947, 7.2882, 7.2799, 7.2922, 7.2809, 7.2733, 7.2976, 7.32, 7.4086, 7.414, 7.4355, 7.4735, 7.4623, 7.4964, 7.484, 7.5028, 7.5202, 7.5102, 7.5284, 7.5272, 7.5453, 7.5334, 7.5221, 7.5142, 7.5321, 7.5208, 7.5094, 7.4986, 7.5527, 7.546, 7.5379, 7.5321, 7.5695, 7.5596, 7.5483, 7.5385, 7.5276, 7.5174, 7.5098, 7.5041, 7.4952, 7.4892, 7.4809, 7.4787, 7.4944, 7.4844, 7.4744, 7.5952, 7.6216, 7.6196, 7.6141, 7.6028, 7.5945, 7.6112, 7.6133, 7.6312, 7.6203, 7.6103, 7.6501, 7.639, 7.6554, 7.6488, 7.6435, 7.6347, 7.7299, 7.7005, 7.6904, 7.7041, 7.6941, 7.684, 7.6743, 7.6683, 7.6592, 7.6537, 7.6462, 7.6387, 7.6316, 7.6221, 7.6169, 7.6135, 7.6036, 7.5947, 7.5856, 7.5824, 7.5832, 7.5791, 7.5697, 7.5609, 7.5556, 7.5295, 7.5446, 7.5422, 7.5379, 7.533, 7.5247, 7.5186, 7.5151, 7.5076, 7.5002, 7.4914, 7.4861, 7.4824, 7.4804, 7.4576, 7.4507, 7.4482, 7.4441, 7.4405, 7.4349, 7.4521, 7.4464, 7.439, 7.4328, 7.4279, 7.4218, 7.4142, 7.4065, 7.4167, 7.4095, 7.3874, 7.3828, 7.397, 7.4106, 7.4049, 7.3989, 7.4163, 7.4136, 7.4073, 7.3997, 7.4104, 7.4039, 7.4158, 7.4269, 7.4211, 7.4307, 7.4253, 7.4205, 7.3982, 7.399, 7.4016, 7.4028, 7.3968, 7.3932, 7.373, 7.3684, 7.3679, 7.379, 7.3786, 7.3717, 7.367, 7.3612, 7.3551, 7.3676, 7.3614, 7.3894, 7.3842, 7.3805, 7.3739, 7.3866, 7.3824, 7.379, 7.3747, 7.3963, 7.3903, 7.3844, 7.364, 7.3588, 7.3696, 7.365, 7.361, 7.355, 7.3487, 7.3443, 7.3561, 7.3515, 7.3485, 7.4216, 7.4161, 7.4431, 7.4528, 7.4497, 7.4337, 7.4294, 7.4261, 7.4355, 7.4453, 7.4396, 7.4337, 7.4276, 7.4216, 7.4326, 7.4473, 7.4495, 7.4448, 7.4399, 7.4357, 7.4303, 7.4476, 7.444, 7.454, 7.4514, 7.4619, 7.4584, 7.4681, 7.4625, 7.4582, 7.4524, 7.4478, 7.4452, 7.4395, 7.45, 7.4481, 7.4424, 7.4516, 7.4734, 7.4676, 7.4635, 7.4604, 7.4569, 7.4933, 7.4881, 7.4827, 7.4797, 7.4887, 7.489, 7.4987, 7.4936, 7.5019, 7.4965, 7.4963, 7.493, 7.4887, 7.4834, 7.4818, 7.4789, 7.4738, 7.4727, 7.4674, 7.4656, 7.4753, 7.4707, 7.5167, 7.5151, 7.5121, 7.509, 7.517, 7.5119, 7.5218, 7.5302, 7.5257, 7.51, 7.5264, 7.5231, 7.5191, 7.5138, 7.5085, 7.5041, 7.4898, 7.4851, 7.4846, 7.4936, 7.4883, 7.4837, 7.4787, 7.4765, 7.4714, 7.492, 7.4873, 7.4951, 7.4907, 7.4858, 7.481, 7.4763, 7.4881, 7.5016, 7.5105, 7.5062, 7.5014, 7.4964, 7.4916, 7.4867, 7.4821, 7.4796, 7.4749, 7.4721, 7.4675, 7.463, 7.4706, 7.4696, 7.4692, 7.4649, 7.4626, 7.458, 7.4559, 7.4926, 7.4903, 7.4859, 7.4941, 7.4912, 7.4869, 7.5413, 7.5366, 7.5333, 7.5287, 7.5242, 7.5225, 7.5181, 7.5182, 7.5169, 7.5155, 7.511, 7.5066, 7.5065, 7.5025, 7.5084, 7.5081, 7.515, 7.5135, 7.5092, 7.5052, 7.5021, 7.4995, 7.4951, 7.4909, 7.4887, 7.4845, 7.4818, 7.478, 7.4745, 7.4704, 7.4672, 7.4657, 7.4759, 7.4728, 7.4797, 7.4946, 7.4909, 7.5146, 7.5104, 7.5175, 7.5145, 7.5101, 7.5082, 7.5172, 7.5131, 7.5132, 7.5093, 7.5068, 7.4933, 7.4999, 7.4961, 7.5002, 7.487, 7.4874, 7.4834, 7.4799, 7.4756, 7.4718, 7.4679, 7.4647, 7.4606, 7.4672, 7.4629, 7.4605, 7.467, 7.5121, 7.5081, 7.5059, 7.5021, 7.4998, 7.5061, 7.5024, 7.5001, 7.4966, 7.4929, 7.4907, 7.4871, 7.4832, 7.4897, 7.478, 7.4766, 7.4825, 7.4891, 7.4853, 7.4817, 7.4891, 7.4853, 7.4818, 7.4783, 7.4743, 7.4705, 7.4672, 7.4637, 7.4597, 7.4562, 7.4527, 7.4492, 7.4466, 7.4445, 7.4411, 7.4371, 7.4352, 7.4314, 7.4277, 7.424, 7.4294, 7.4298, 7.4262, 7.4243, 7.4143, 7.4028, 7.401, 7.3977, 7.3942, 7.3905, 7.3872, 7.3839, 7.382, 7.389, 7.3858, 7.3918, 7.3882, 7.3863, 7.3832, 7.3797, 7.3765, 7.3743, 7.3715, 7.3682, 7.375, 7.3724, 7.3701, 7.3668, 7.3683, 7.3661, 7.3651, 7.363, 7.3614, 7.3667, 7.3634, 7.3527, 7.3493, 7.3546, 7.3529, 7.3496, 7.3474, 7.3529, 7.3593, 7.3562, 7.353, 7.3497, 7.3479, 7.3459, 7.3426, 7.3405, 7.3465, 7.3602, 7.3654, 7.3629, 7.3605, 7.358, 7.3639, 7.3615, 7.3588, 7.3598, 7.3587, 7.3819, 7.3877, 7.3857, 7.3829, 7.3797, 7.3855, 7.3825, 7.383500000000001, 7.3803, 7.3775, 7.375, 7.3717, 7.3684, 7.3741, 7.3716, 7.3687, 7.3657, 7.3633, 7.3626, 7.3595, 7.3563, 7.3534, 7.3507, 7.3497, 7.3469, 7.3477, 7.3454, 7.3441, 7.3413, 7.3393, 7.3368, 7.3338, 7.3385, 7.3355, 7.333, 7.33, 7.3289, 7.3258, 7.3236, 7.3239, 7.3249, 7.3301, 7.3273, 7.3256, 7.3241, 7.3325, 7.3297, 7.3398, 7.337, 7.3345, 7.3334, 7.3315, 7.3287, 7.3336, 7.3326, 7.3326, 7.3304, 7.3228, 7.3286, 7.3303, 7.3304, 7.3436, 7.3601, 7.3653, 7.3642, 7.3633, 7.3608, 7.3598, 7.3648, 7.3622, 7.3609, 7.3585, 7.3561, 7.3535, 7.3505, 7.3481, 7.3526, 7.3499, 7.3541, 7.3601, 7.3582, 7.3555, 7.3867, 7.3845, 7.3934, 7.3921, 7.4124, 7.423, 7.4262, 7.4245, 7.4215, 7.4333, 7.4305, 7.4347, 7.4317, 7.4289, 7.4344, 7.4317, 7.4321, 7.4449, 7.4436, 7.4446, 7.4437, 7.4411, 7.4393, 7.4366, 7.4339, 7.439, 7.4371, 7.4346, 7.4338, 7.4485, 7.4456, 7.4432, 7.4477, 7.4478, 7.4524, 7.4496, 7.4467, 7.4509, 7.4554, 7.4597, 7.4616, 7.4595, 7.4578, 7.4558, 7.4537, 7.4515, 7.4485, 7.4541, 7.4586, 7.4562, 7.4476, 7.445, 7.4362, 7.4333, 7.4309, 7.4282, 7.4258, 7.4234, 7.4227, 7.4274, 7.427, 7.4308, 7.4281, 7.426, 7.4233, 7.4147, 7.4128, 7.4106, 7.4147, 7.4259, 7.4239, 7.4222, 7.429, 7.4341, 7.432, 7.43, 7.4342, 7.4331, 7.431, 7.4285, 7.4261, 7.4236, 7.4217, 7.42, 7.4184, 7.4162, 7.4202, 7.4192, 7.4236, 7.4219, 7.4233, 7.4221, 7.4259, 7.4244, 7.4239, 7.4229, 7.4213, 7.4191, 7.4164, 7.4207, 7.42, 7.4178, 7.4157, 7.4131, 7.4188, 7.4164, 7.414, 7.4126, 7.4101, 7.4083, 7.4125, 7.4101, 7.4091, 7.4079, 7.4053, 7.4094, 7.4072, 7.4054, 7.4031, 7.4009, 7.4048, 7.4027, 7.4003, 7.3978, 7.4015, 7.4007, 7.4046, 7.4085, 7.406, 7.4035, 7.4075, 7.405, 7.4032, 7.4009, 7.4048, 7.4024, 7.3999, 7.3986, 7.3963, 7.4001, 7.4039, 7.404, 7.4018, 7.3997, 7.3995, 7.3988, 7.3969, 7.396, 7.3938, 7.3922, 7.3908, 7.3888, 7.3875, 7.3868, 7.3853, 7.383, 7.3815, 7.3797, 7.3783, 7.3712, 7.3699, 7.3748, 7.3727, 7.3703, 7.3691, 7.3666, 7.3643, 7.3628, 7.3665, 7.3646, 7.3624, 7.3663, 7.3699, 7.3675, 7.3669, 7.3654, 7.363, 7.3671, 7.3649, 7.3693, 7.3671, 7.3655, 7.371, 7.3698, 7.3744, 7.3786, 7.3765, 7.3742, 7.3788, 7.3838, 7.3824, 7.3813, 7.3848, 7.3836, 7.3874, 7.3861, 7.3841, 7.382, 7.3799, 7.3786, 7.3765, 7.3742, 7.372, 7.3672, 7.3656, 7.3721, 7.3758, 7.3738, 7.3718, 7.3937, 7.4034, 7.4016, 7.4003, 7.4082, 7.4064, 7.4134, 7.4171, 7.4265, 7.4249, 7.4227, 7.4321, 7.4261, 7.4252, 7.4234, 7.428, 7.4265, 7.4202, 7.4179, 7.4166, 7.4261, 7.424, 7.4218, 7.4196, 7.4181, 7.4214, 7.4193, 7.4182, 7.4162, 7.4146, 7.4127, 7.4119, 7.4104, 7.4193, 7.4177, 7.4207, 7.4211, 7.4204, 7.419, 7.4181, 7.4164, 7.4142, 7.4122, 7.4125, 7.4111, 7.4103, 7.4083, 7.4061, 7.4039, 7.4023, 7.4002, 7.3992, 7.3982, 7.4201, 7.4198, 7.4176, 7.4164, 7.4206, 7.4508, 7.4641, 7.4619, 7.4553, 7.4533, 7.4517, 7.4495, 7.4481, 7.4522, 7.4511, 7.449, 7.4531, 7.4567, 7.4549, 7.4531, 7.451, 7.4488, 7.4467, 7.44, 7.438, 7.436, 7.4349, 7.4357, 7.4342, 7.4325, 7.4316, 7.4297, 7.4284, 7.4269, 7.4257, 7.4246, 7.4225, 7.4204, 7.4186, 7.4166, 7.4151, 7.4136, 7.4115, 7.4131, 7.413, 7.4114, 7.4094, 7.4074, 7.4059, 7.4098, 7.418, 7.4165, 7.4155, 7.4141, 7.4122, 7.4109, 7.4165, 7.4227, 7.4335, 7.4314, 7.4293, 7.4272, 7.4394, 7.4425, 7.4406, 7.4385, 7.4584, 7.4571, 7.4553, 7.4533, 7.4513, 7.4626, 7.4729, 7.4709, 7.4647, 7.4637, 7.4618, 7.4599, 7.4634, 7.4613, 7.4601, 7.4589, 7.4571, 7.4556, 7.4598, 7.4579, 7.4568, 7.4548, 7.4538, 7.452, 7.4501, 7.449, 7.448, 7.446, 7.4446, 7.4427, 7.4366, 7.4402, 7.4383, 7.4374, 7.4407, 7.4391, 7.4378, 7.4362, 7.4354, 7.4348, 7.4382, 7.437, 7.4365, 7.4349, 7.433, 7.4365, 7.4357, 7.4392, 7.4374, 7.4363, 7.4356, 7.4352, 7.4337, 7.4322, 7.4316, 7.4306, 7.429, 7.4273, 7.4324, 7.4313, 7.4302, 7.4294, 7.4279, 7.4311, 7.4293, 7.4277, 7.4268, 7.4302, 7.4289, 7.4271, 7.4252, 7.4307, 7.4304, 7.4292, 7.4282, 7.4337, 7.4413, 7.4403, 7.4447, 7.4431, 7.4429, 7.4426, 7.4456, 7.4436, 7.4417, 7.4447, 7.4477, 7.4517, 7.4547, 7.4539, 7.4531, 7.4512, 7.4494, 7.4476, 7.4457, 7.4439, 7.443, 7.4418, 7.4407, 7.4388, 7.4372, 7.4357, 7.4338, 7.4366, 7.4357, 7.4443, 7.4426, 7.4407, 7.4394, 7.4336, 7.4323, 7.4356, 7.4456, 7.4438, 7.4468, 7.4498, 7.4484, 7.4517, 7.4508, 7.4752, 7.4736, 7.4771, 7.4752, 7.4782, 7.4807, 7.4791, 7.478, 7.4768, 7.4758, 7.4761, 7.4749, 7.473, 7.4715, 7.4698, 7.4688, 7.4719, 7.4663, 7.4693, 7.4723, 7.4714, 7.4698, 7.4687, 7.4725, 7.4711, 7.4693, 7.4681, 7.4663, 7.4693, 7.4681, 7.4663, 7.4693, 7.4726, 7.4708, 7.4734, 7.4766, 7.4749, 7.4734, 7.4717, 7.4699, 7.4681, 7.471, 7.4701, 7.4686, 7.4675, 7.4687, 7.4734, 7.4718, 7.4715, 7.4698, 7.4731, 7.476, 7.4742, 7.4724, 7.4706, 7.4736, 7.4719, 7.4702, 7.4696, 7.4679, 7.4668, 7.4698, 7.479, 7.4775, 7.4759, 7.4792, 7.4823, 7.4851, 7.4877, 7.486, 7.4889, 7.4885, 7.4919, 7.4906, 7.489, 7.4872, 7.4863, 7.4845, 7.4829, 7.4858, 7.4849, 7.4878, 7.4873, 7.4939, 7.493, 7.4921, 7.4904, 7.4942, 7.4974, 7.4964, 7.4955, 7.4983, 7.501, 7.5, 7.4989, 7.4981, 7.5007, 7.4991, 7.5015, 7.4999, 7.4987, 7.4976, 7.4963, 7.4945, 7.4969, 7.4953, 7.4938, 7.4929, 7.4955, 7.4939, 7.4973, 7.4961, 7.4992, 7.5018, 7.5002, 7.4985, 7.4969, 7.4995, 7.4985, 7.497, 7.5003, 7.5029, 7.5013, 7.5003, 7.4994, 7.4977, 7.4972, 7.4955, 7.4938, 7.4924, 7.4907, 7.4894, 7.488, 7.4865, 7.4848, 7.4836, 7.482, 7.4803, 7.4852, 7.4835, 7.4818, 7.4802, 7.4828, 7.4813, 7.4798, 7.4781, 7.4764, 7.475, 7.4801, 7.4787, 7.4816, 7.4803, 7.4751, 7.4743, 7.4727, 7.4714, 7.4697, 7.4681, 7.4666, 7.4694, 7.4679, 7.4672, 7.4669, 7.4654, 7.4647, 7.4632, 7.4622, 7.4607, 7.4591, 7.4575, 7.4568, 7.4558, 7.4546, 7.4574, 7.4524, 7.451, 7.4495, 7.4483, 7.4471, 7.4481, 7.4469, 7.4495, 7.4483, 7.4468, 7.4495, 7.4478, 7.4504, 7.4491, 7.4477, 7.4466, 7.447, 7.4456, 7.4483, 7.4469, 7.4457, 7.4443, 7.4428, 7.4413, 7.4399, 7.4427, 7.4417, 7.444, 7.4466, 7.4457, 7.4441, 7.4469, 7.4461, 7.4445, 7.4429, 7.4415, 7.4399, 7.439, 7.4378, 7.4364, 7.4349, 7.4338, 7.4326, 7.4354, 7.4349, 7.434, 7.4326, 7.4319, 7.4311, 7.4298, 7.4249, 7.4276, 7.4305, 7.429, 7.4315, 7.4309, 7.4294, 7.4279, 7.4302, 7.4292, 7.4278, 7.4263, 7.4294, 7.432, 7.4362, 7.4347, 7.4333, 7.4358, 7.435, 7.4335, 7.432, 7.4344, 7.4332, 7.4354, 7.4352, 7.4376, 7.4362, 7.4449, 7.4434, 7.442, 7.4407, 7.4392, 7.4414, 7.4436, 7.442, 7.4407, 7.4396, 7.4425, 7.4418, 7.4407, 7.4392, 7.4385, 7.4342, 7.4335, 7.4322, 7.4347, 7.4334, 7.432, 7.4318, 7.434, 7.4294, 7.4319, 7.4306, 7.4292, 7.4279, 7.4269, 7.4256, 7.4243, 7.4236, 7.4225, 7.4212, 7.4199, 7.4224, 7.421, 7.4197, 7.4224, 7.4239, 7.4239, 7.4232, 7.4223, 7.4215, 7.4211, 7.4204, 7.4193, 7.4203, 7.4271, 7.428100000000001, 7.4289, 7.4281, 7.4303, 7.4292, 7.4278, 7.4265, 7.4287, 7.4276, 7.4263, 7.4287, 7.4279, 7.4268, 7.4258, 7.4413, 7.44, 7.4393, 7.438, 7.4366, 7.437600000000001, 7.4363, 7.4356, 7.4346, 7.4333, 7.4319, 7.4313, 7.4303, 7.4324, 7.4313, 7.43, 7.4379, 7.4414, 7.4403, 7.4391, 7.4416, 7.4403, 7.4427, 7.4452, 7.4444, 7.4457, 7.4451, 7.4442, 7.4543, 7.4536, 7.456, 7.4528, 7.4587, 7.4573, 7.4565, 7.4554, 7.4564, 7.4586, 7.4576, 7.4569, 7.4555, 7.4542, 7.4529, 7.455, 7.4555, 7.4542, 7.4565, 7.4552, 7.4539, 7.4531, 7.4518, 7.451, 7.4496, 7.4487, 7.4481, 7.4467, 7.4454, 7.4441, 7.4428, 7.4421, 7.4411, 7.4398, 7.4391, 7.4382, 7.4404, 7.4426, 7.4414, 7.4404, 7.4391, 7.4412, 7.4398, 7.4392, 7.4381, 7.4374, 7.4371, 7.4362, 7.4353, 7.4345, 7.4334, 7.4356, 7.4388, 7.4383, 7.4373, 7.4359, 7.4347, 7.4379, 7.4338, 7.4453, 7.4476, 7.4497, 7.4484, 7.4508, 7.4494, 7.4481, 7.4473, 7.4556, 7.4543, 7.4532, 7.4521, 7.4514, 7.45, 7.4492, 7.4483, 7.4472, 7.4464, 7.4457, 7.4455, 7.4444, 7.4463, 7.445, 7.4471, 7.4458, 7.4451, 7.4445, 7.4438, 7.4399, 7.4393, 7.4379, 7.4372, 7.4365, 7.4372, 7.4359, 7.4347, 7.4334, 7.4326, 7.4314, 7.4307, 7.4293, 7.428, 7.4267, 7.4259, 7.4246, 7.4241, 7.4229, 7.422, 7.4241, 7.4262, 7.425, 7.4238, 7.4226, 7.4216, 7.4203, 7.4194, 7.4181, 7.4181, 7.4171, 7.4159, 7.4151, 7.4175, 7.4163, 7.4156, 7.4148, 7.4143, 7.4134, 7.4156, 7.4144, 7.4135, 7.4144, 7.4165, 7.4152, 7.4153, 7.4141, 7.4128, 7.4118, 7.4109, 7.4098, 7.4108, 7.4098, 7.4108, 7.4097, 7.4086, 7.4078, 7.4068, 7.4057, 7.4052, 7.4043, 7.4035, 7.4025, 7.4013, 7.4006, 7.3996, 7.4016, 7.4035, 7.4055, 7.4043, 7.4031, 7.4036, 7.403, 7.4029, 7.4017, 7.4005, 7.4001, 7.4021, 7.4014, 7.3977, 7.4007, 7.3995, 7.4057, 7.4051, 7.404, 7.4028, 7.4022, 7.4059, 7.4047, 7.4057, 7.4044, 7.4131, 7.4125, 7.4146, 7.4135, 7.4127, 7.428, 7.4269, 7.4264, 7.4256, 7.4243, 7.4267, 7.4282, 7.4302, 7.4293, 7.4281, 7.4275, 7.4264, 7.4285, 7.4278, 7.4267, 7.426, 7.4248, 7.4268, 7.4288, 7.4283, 7.4271, 7.4296, 7.4257, 7.4244, 7.4238, 7.4242, 7.4234, 7.4229, 7.4219, 7.4248, 7.4239, 7.423, 7.4219, 7.421, 7.4198, 7.419, 7.4213, 7.4201, 7.4192, 7.4183, 7.4172, 7.421, 7.4201, 7.419, 7.4178, 7.4217, 7.4206, 7.4195, 7.4184, 7.4174, 7.4166, 7.4154, 7.4172, 7.4164, 7.4155, 7.4145, 7.4134, 7.4124, 7.4143, 7.4133, 7.4123, 7.4117, 7.4115, 7.4105, 7.4103, 7.4102, 7.4091, 7.4081, 7.4109, 7.4196, 7.4185, 7.4179, 7.4169, 7.4222, 7.4245, 7.4238, 7.4255, 7.4243, 7.4236, 7.4232, 7.4266, 7.4257, 7.4249, 7.4237, 7.4262, 7.425, 7.424, 7.4228, 7.4218, 7.4207, 7.4209, 7.4231, 7.4222, 7.4215, 7.4206, 7.4196, 7.4216, 7.4236, 7.4226, 7.4215, 7.4203, 7.4205, 7.4197, 7.4207, 7.4258, 7.4252, 7.4271, 7.4261, 7.425, 7.4243, 7.4237, 7.4228, 7.4246, 7.4264, 7.4253, 7.4247, 7.4217, 7.4236, 7.4224, 7.4226, 7.4218, 7.4214, 7.4232, 7.4221, 7.4192, 7.4259, 7.4222, 7.4245, 7.4233, 7.4226, 7.4214, 7.4205, 7.4227, 7.4217, 7.4208, 7.4199, 7.4191, 7.4186, 7.4212, 7.4202, 7.4201, 7.4195, 7.4191, 7.4181, 7.4169, 7.4159, 7.4155, 7.4145, 7.4133, 7.4128, 7.4119, 7.4111, 7.4103, 7.4124, 7.4118, 7.4108, 7.4074, 7.4062, 7.4052, 7.4071, 7.4062, 7.4084, 7.4104, 7.4092, 7.4111, 7.4132, 7.4128, 7.412, 7.4141, 7.4129, 7.412, 7.4111, 7.4104, 7.4093, 7.4082, 7.4074, 7.4063, 7.4056, 7.4049, 7.404, 7.4028, 7.402, 7.4014, 7.4003, 7.4022, 7.4011, 7.403, 7.4047, 7.4037, 7.4027, 7.4044, 7.4061, 7.4049, 7.4038, 7.4026, 7.4016, 7.4005, 7.3995, 7.3988, 7.3982, 7.4001, 7.3992, 7.3981, 7.3976, 7.3971, 7.4, 7.3992, 7.3958, 7.3952, 7.3942, 7.3932, 7.3921, 7.3912, 7.3901, 7.3918, 7.3914, 7.3908, 7.3898, 7.3908000000000005, 7.391800000000001, 7.3926, 7.392, 7.3914, 7.3933, 7.3955, 7.3948, 7.3937, 7.4025, 7.4042, 7.4034, 7.4054, 7.4046, 7.4038, 7.403, 7.4051, 7.4042, 7.4032, 7.4051, 7.4041, 7.4031, 7.402, 7.4018, 7.4007, 7.3999, 7.3989, 7.3984, 7.3974, 7.3993, 7.4011, 7.4005, 7.3994, 7.3984, 7.4002, 7.4108, 7.4102, 7.4095, 7.4092, 7.4112, 7.4128, 7.4118, 7.4109, 7.4103, 7.4121, 7.4113, 7.4106, 7.4098, 7.4091, 7.4081, 7.4099, 7.4094, 7.4088, 7.4103, 7.4093, 7.4082, 7.4071, 7.4065, 7.4082, 7.4074, 7.4072, 7.408, 7.4071, 7.4062, 7.4052, 7.4068, 7.4086, 7.4104, 7.4122, 7.4141, 7.4156, 7.4146, 7.4194, 7.4188, 7.4178, 7.4168, 7.4173, 7.4169, 7.4163, 7.4181, 7.4175, 7.4175, 7.4192, 7.4209, 7.4226, 7.4243, 7.4233, 7.4222, 7.4234, 7.4224, 7.4218, 7.421, 7.4199, 7.4195, 7.4189, 7.4157, 7.4154, 7.4145, 7.4141, 7.4135, 7.4126, 7.4142, 7.4135, 7.4126, 7.4145, 7.4136, 7.4155, 7.4145, 7.4137, 7.4127, 7.4118, 7.4113, 7.4104, 7.4121, 7.4111, 7.4207, 7.4197, 7.4193, 7.4183, 7.4228, 7.4227, 7.4221, 7.4238, 7.4236, 7.4251, 7.4241, 7.4236, 7.4204, 7.4194, 7.4277, 7.4267, 7.4256, 7.4247, 7.4242, 7.4233, 7.4223, 7.4214, 7.4205, 7.4221, 7.4215, 7.4206, 7.4175, 7.4193, 7.4185, 7.4175, 7.4165, 7.4155, 7.4145, 7.4137, 7.4127, 7.4173, 7.4164, 7.418, 7.417, 7.4186, 7.4176, 7.4166, 7.4158, 7.4152, 7.4168, 7.4186, 7.4176, 7.4193, 7.4183, 7.4173, 7.4293, 7.4285, 7.4404, 7.4409, 7.4401, 7.444, 7.4431, 7.4422, 7.4414, 7.445, 7.4459, 7.4452, 7.4447, 7.4438, 7.4429, 7.4426, 7.4443, 7.4433, 7.4427, 7.4418, 7.4408, 7.4398, 7.4389, 7.4381, 7.4397, 7.439, 7.4385, 7.4377, 7.4393, 7.4383, 7.4373, 7.4389, 7.4379, 7.4369, 7.4359, 7.4352, 7.4321, 7.4338, 7.4328, 7.4319, 7.4336, 7.4326, 7.4342, 7.4338, 7.438, 7.4396, 7.4387, 7.4404, 7.442, 7.4412, 7.4402, 7.4397, 7.4392, 7.4387, 7.438, 7.4375, 7.4366, 7.4361, 7.4351, 7.4346, 7.436, 7.4353, 7.4348, 7.4341, 7.4358, 7.4351, 7.4345, 7.4335, 7.4329, 7.4325, 7.4316, 7.4309, 7.4305, 7.4322, 7.4339, 7.4329, 7.4345, 7.4314, 7.4334, 7.4325, 7.4345, 7.4315, 7.4306, 7.4436, 7.4428, 7.4399, 7.4389, 7.4385, 7.4403, 7.4393, 7.4409, 7.4404, 7.4402, 7.4417, 7.4432, 7.4423, 7.4413, 7.4383, 7.4374, 7.437, 7.4364, 7.4355, 7.4346, 7.4362, 7.4358, 7.4386, 7.4376, 7.4366, 7.436, 7.4352, 7.4343, 7.4335, 7.4331, 7.4321, 7.4321, 7.4312, 7.4329, 7.4299, 7.4294, 7.4289, 7.4281, 7.4295, 7.431, 7.4305, 7.4297, 7.4303, 7.4297, 7.4293, 7.4285, 7.4292, 7.4286, 7.4277, 7.4268, 7.4262, 7.4252, 7.4244, 7.4236, 7.4251, 7.4248, 7.4246, 7.4216, 7.4207, 7.4177, 7.4192, 7.4198, 7.4189, 7.4183, 7.4177, 7.4192, 7.4183, 7.4198, 7.4189, 7.4206, 7.4197, 7.4191, 7.4185, 7.4176, 7.4167, 7.4183, 7.418, 7.4172, 7.4187, 7.4202, 7.4202, 7.4193, 7.4188, 7.4179, 7.417, 7.4161, 7.4152, 7.4143, 7.4138, 7.4132, 7.4123, 7.412, 7.4111, 7.4102, 7.4093, 7.4109, 7.4123, 7.4117, 7.4107, 7.4101, 7.4092, 7.411, 7.4105, 7.4097, 7.4089, 7.408, 7.4072, 7.4086, 7.4078, 7.407, 7.4086, 7.4101, 7.4098, 7.4094, 7.4108, 7.41, 7.4094, 7.4092, 7.4208, 7.4226, 7.4307, 7.4303, 7.4294, 7.4295, 7.4291, 7.4308, 7.4298, 7.4289, 7.426, 7.4275, 7.4266, 7.4282, 7.4273, 7.4264, 7.4278, 7.4269, 7.426, 7.4251, 7.425, 7.4246, 7.4238, 7.4251, 7.4245, 7.4239, 7.4235, 7.4212, 7.4204, 7.4195, 7.4192, 7.4209, 7.4201, 7.4194, 7.4214, 7.4213, 7.4231, 7.4227, 7.4219, 7.4213, 7.419, 7.4205, 7.4197, 7.4237, 7.4252, 7.4245, 7.4244, 7.4235, 7.423, 7.4221, 7.4306, 7.4301, 7.4297, 7.429, 7.429, 7.428, 7.4303, 7.4289, 7.4281, 7.4274, 7.4291, 7.4279, 7.4296, 7.4294, 7.4285, 7.4277, 7.4295, 7.4291, 7.4287, 7.4279, 7.4277, 7.4275, 7.4266, 7.4261, 7.4256, 7.4229, 7.4243, 7.4234, 7.425, 7.4245, 7.4258, 7.4255, 7.4269, 7.4264, 7.4261, 7.4277, 7.4299, 7.4293, 7.4286, 7.4277, 7.4268, 7.4328, 7.432, 7.4335, 7.4372, 7.4364, 7.4356, 7.4347, 7.4361, 7.4337, 7.4351, 7.4342, 7.4333, 7.4347, 7.4342, 7.4356, 7.437, 7.4366, 7.4338, 7.4329, 7.4323, 7.4315, 7.4311, 7.4327, 7.4318, 7.431, 7.4302, 7.4299, 7.4297, 7.4294, 7.4285, 7.4278, 7.4277, 7.4268, 7.4308, 7.4322, 7.4294, 7.4266, 7.4238, 7.4239, 7.4231, 7.424, 7.4237, 7.4219, 7.4211, 7.4225, 7.424, 7.4231, 7.4227, 7.4218, 7.421, 7.4206, 7.4202, 7.4195, 7.4192, 7.4206, 7.4201, 7.4196, 7.421, 7.4203, 7.4194, 7.4188, 7.4183, 7.4239, 7.423, 7.4226, 7.422, 7.4211, 7.4202, 7.4195, 7.4353, 7.4345, 7.436, 7.4352, 7.4345, 7.434, 7.4331, 7.4333, 7.4325, 7.4316, 7.4307, 7.4301, 7.4292, 7.4285, 7.4278, 7.4292, 7.4284, 7.4276, 7.4267, 7.4259, 7.4253, 7.4268, 7.426, 7.4252, 7.4249, 7.4243, 7.4235, 7.425, 7.4267, 7.4259, 7.4254, 7.4245, 7.4237, 7.4232, 7.423, 7.4244, 7.4236, 7.425, 7.4247, 7.4239, 7.4234, 7.4226, 7.4241, 7.4234, 7.4231, 7.4223, 7.426, 7.4296, 7.4287, 7.4278, 7.4291, 7.4283, 7.4277, 7.4269, 7.426, 7.4251, 7.4244, 7.4247, 7.4244, 7.4237, 7.4229, 7.4244, 7.4241, 7.4235, 7.4227, 7.422, 7.4234, 7.4226, 7.4199, 7.419, 7.4184, 7.4198, 7.419, 7.4184, 7.4198, 7.4212, 7.4226, 7.4218, 7.4232, 7.4245, 7.4239, 7.4231, 7.4204, 7.4206, 7.4202, 7.4195, 7.4186, 7.42, 7.4193, 7.4206, 7.4198, 7.4189, 7.4181, 7.4175, 7.4169, 7.4161, 7.4174, 7.4166, 7.418, 7.4193, 7.4186, 7.4186, 7.4181, 7.4174, 7.4188, 7.4183, 7.4198, 7.419, 7.4202, 7.4197, 7.4189, 7.4185, 7.4187, 7.4202, 7.4196, 7.4187, 7.4181, 7.4174, 7.4189, 7.4185, 7.4178, 7.4214, 7.4207, 7.42, 7.4193, 7.4172, 7.4165, 7.4157, 7.415, 7.4168, 7.4142, 7.4155, 7.4147, 7.4139, 7.4131, 7.413, 7.4143, 7.4135, 7.413, 7.4163, 7.4155, 7.4147, 7.4146, 7.4159, 7.4151, 7.4145, 7.4158, 7.4171, 7.4163, 7.4155, 7.421, 7.4204, 7.4196, 7.4188, 7.4186, 7.4179, 7.4171, 7.4186, 7.4179, 7.4193, 7.4185, 7.4178, 7.4172, 7.4166, 7.4181, 7.418, 7.4174, 7.4167, 7.4161, 7.4153, 7.4153, 7.4145, 7.4139, 7.4131, 7.4123, 7.4118, 7.411, 7.4123, 7.4136, 7.4149, 7.4141, 7.4139, 7.4131, 7.4143, 7.4135, 7.4132, 7.4128, 7.412, 7.4112, 7.4107, 7.4101, 7.4094, 7.4086, 7.4079, 7.4071, 7.4067, 7.4085, 7.4077, 7.4069, 7.4043, 7.4035, 7.4031, 7.4024, 7.4082, 7.4076, 7.4072, 7.4066, 7.4059, 7.4077, 7.4093, 7.4098, 7.4097, 7.4091, 7.4122, 7.4138, 7.4136, 7.4112, 7.4104, 7.4099, 7.4091, 7.4083, 7.4081, 7.4084, 7.4098, 7.4093, 7.409, 7.4083, 7.4096, 7.4089, 7.4143, 7.4136, 7.4131, 7.4128, 7.4148, 7.4177, 7.4169, 7.4162, 7.4154, 7.4149, 7.4141, 7.4134, 7.4147, 7.4124, 7.4117, 7.411, 7.4107, 7.41, 7.4094, 7.4086, 7.408, 7.4072, 7.4064, 7.4057, 7.407, 7.4083, 7.4076, 7.4069, 7.4062, 7.4058, 7.4071, 7.4063, 7.4056, 7.4049, 7.4042, 7.4038, 7.4032, 7.4025, 7.4038, 7.4051, 7.4044, 7.4057, 7.4052, 7.4065, 7.4057, 7.4068, 7.4063, 7.4057, 7.4051, 7.4045, 7.4039, 7.4054, 7.4047, 7.4044, 7.406, 7.4053, 7.4048, 7.4041, 7.4034, 7.4027, 7.404, 7.4053, 7.4122, 7.4117, 7.411, 7.4121, 7.4119, 7.4133, 7.4145, 7.4158, 7.4155, 7.4147, 7.4161, 7.4137, 7.4149, 7.4143, 7.4137, 7.413, 7.4136, 7.4128, 7.4142, 7.4119, 7.4111, 7.4105, 7.4099, 7.4098, 7.4095, 7.4108, 7.4101, 7.4094, 7.4087, 7.408, 7.4094, 7.4087, 7.408, 7.4073, 7.4072, 7.4066, 7.406, 7.4052, 7.4051, 7.4054, 7.4047, 7.4057, 7.4094, 7.4088, 7.4101, 7.4126, 7.4119, 7.4131, 7.4127, 7.4123, 7.4115, 7.4127, 7.4139, 7.4151, 7.4145, 7.4141, 7.4134, 7.4127, 7.4123, 7.4119, 7.4131, 7.4135, 7.4131, 7.4131, 7.4146, 7.4142, 7.4134, 7.4128, 7.4124, 7.4104, 7.4106, 7.4109, 7.4121, 7.4117, 7.4095, 7.4097, 7.4109, 7.4166, 7.416, 7.4155, 7.4147, 7.4143, 7.4137, 7.4133, 7.4127, 7.412, 7.4118, 7.4095, 7.4088, 7.41, 7.4093, 7.4086, 7.4079, 7.409, 7.4089, 7.4097, 7.4092, 7.4086, 7.4078, 7.4093, 7.4089, 7.4082, 7.4078, 7.4071, 7.4048, 7.4043, 7.4039, 7.4056, 7.4049, 7.4043, 7.4042, 7.4035, 7.4012, 7.4044, 7.4041, 7.4034, 7.403, 7.4011, 7.4004, 7.4001, 7.4013, 7.4006, 7.4018, 7.4029, 7.4024, 7.4023, 7.4015, 7.4027, 7.402, 7.4012, 7.4005, 7.4018, 7.4014, 7.401, 7.4003, 7.3998, 7.4, 7.4012, 7.4008, 7.4006, 7.4024, 7.4036, 7.4039, 7.4057, 7.408, 7.4072, 7.4086, 7.4104, 7.4116, 7.4109, 7.4121, 7.4133, 7.4129, 7.4122, 7.4115, 7.4114, 7.4107, 7.4124, 7.4136, 7.4148, 7.4142, 7.4152, 7.4148, 7.4142, 7.4135, 7.4129, 7.4122, 7.4115, 7.4109, 7.4104, 7.412, 7.4113, 7.4106, 7.4101, 7.4112, 7.4105, 7.4098, 7.4109, 7.4101, 7.4094, 7.4105, 7.4099, 7.4092, 7.4086, 7.408, 7.4073, 7.4069, 7.4062, 7.4055, 7.4051, 7.4046, 7.4039, 7.4021, 7.4016, 7.4009, 7.4002, 7.3999, 7.3992, 7.4006, 7.4019, 7.4018, 7.4017, 7.401, 7.4003, 7.3999, 7.3995, 7.399, 7.4003, 7.4001, 7.4002, 7.4, 7.3982, 7.3975, 7.3971, 7.3967, 7.3983, 7.3976, 7.4005, 7.4003, 7.3996, 7.4006, 7.3999, 7.4001, 7.3996, 7.399, 7.3984, 7.398, 7.3973, 7.3966, 7.396, 7.3956, 7.3952, 7.3946, 7.3996, 7.3988, 7.3981, 7.4003, 7.3997, 7.3991, 7.4003, 7.4015, 7.3993, 7.4005, 7.4003, 7.3996, 7.3989, 7.3985, 7.3978, 7.3974, 7.3968, 7.3962, 7.3973, 7.3967, 7.3979, 7.3991, 7.3984, 7.3997, 7.3992, 7.3985, 7.3983, 7.3995, 7.3973, 7.3985, 7.398, 7.3973, 7.3985, 7.398, 7.3974, 7.3974, 7.3968, 7.3965, 7.3977, 7.3971, 7.3986, 7.3991, 7.3984, 7.3996, 7.4007, 7.4001, 7.3994, 7.3987, 7.398, 7.3976, 7.3989, 7.3985, 7.3978, 7.4014, 7.4024, 7.4019, 7.3998, 7.401, 7.4003, 7.3998, 7.4026, 7.4037, 7.403, 7.4023, 7.4034, 7.4012, 7.4006, 7.4002, 7.3996, 7.3991, 7.3984, 7.3997, 7.3992, 7.3988, 7.3968, 7.3981, 7.398, 7.3981, 7.3975, 7.397, 7.3969, 7.3962, 7.3972, 7.3969, 7.3947, 7.3944, 7.3937, 7.3931, 7.3929, 7.3927, 7.3921, 7.3914, 7.3892, 7.3885, 7.3879, 7.3887, 7.3884, 7.3877, 7.387, 7.3867, 7.3863, 7.3857, 7.3853, 7.3867, 7.386, 7.3857, 7.385, 7.3861, 7.3857, 7.387, 7.3867, 7.386, 7.3863, 7.3883, 7.3876, 7.3924, 7.3989, 7.3983, 7.3977, 7.4011, 7.404, 7.4042, 7.4036, 7.4034, 7.4027, 7.4037, 7.4048, 7.4044, 7.4049, 7.4045, 7.4039, 7.4032, 7.4042, 7.4053, 7.4046, 7.4041, 7.4022, 7.4017, 7.4012, 7.4007, 7.4017, 7.4011, 7.4008, 7.4005, 7.4, 7.4011, 7.4005, 7.4, 7.3993, 7.3987, 7.3981, 7.3975, 7.3968, 7.3982, 7.3975, 7.3969, 7.3963, 7.3957, 7.3953, 7.3949, 7.3944, 7.3937, 7.3917, 7.3928, 7.3939, 7.3933, 7.3929, 7.3923, 7.3921, 7.3918, 7.3912, 7.3911, 7.3906, 7.3901, 7.3896, 7.3894, 7.3889, 7.3884, 7.3879, 7.3876, 7.3906, 7.3937, 7.3933, 7.3927, 7.3922, 7.3917, 7.3932, 7.3929, 7.3942, 7.3936, 7.3947, 7.3941, 7.3935, 7.3946, 7.3957, 7.3967, 7.3969, 7.398, 7.4042, 7.4038, 7.405, 7.4046, 7.4051, 7.4046, 7.404, 7.4036, 7.403, 7.4024, 7.4035, 7.4034, 7.4033, 7.4027, 7.4021, 7.4032, 7.4026, 7.4021, 7.4019, 7.4015, 7.3995, 7.4, 7.3979, 7.3972, 7.3996, 7.4006, 7.4018, 7.4017, 7.4011, 7.4005, 7.4, 7.401, 7.4004, 7.4, 7.3995, 7.4005, 7.4, 7.3994, 7.4005, 7.4008, 7.4004, 7.3998, 7.3994, 7.3991, 7.3987, 7.3981, 7.3975, 7.3969, 7.3963, 7.3957, 7.3968, 7.3977, 7.3973, 7.3999, 7.4025, 7.4021, 7.4018, 7.4012, 7.4006, 7.4002, 7.4012, 7.4007, 7.4003, 7.3983, 7.3976, 7.3973, 7.3967, 7.3978, 7.3957, 7.3956, 7.395, 7.3962, 7.396, 7.3958, 7.3959, 7.3955, 7.3949, 7.3947, 7.3958, 7.3952, 7.3964, 7.3958, 7.3969, 7.398, 7.3992, 7.4003, 7.3997, 7.4006, 7.4004, 7.3998, 7.4024, 7.4019, 7.403, 7.4024, 7.4018, 7.4013, 7.4022, 7.4016, 7.4012, 7.4006, 7.4, 7.3998, 7.3991, 7.3984, 7.4017, 7.4019, 7.4037, 7.4033, 7.4028, 7.4024, 7.4029, 7.4027, 7.4007, 7.4001, 7.3996, 7.3992, 7.4003, 7.3997, 7.4003, 7.3999, 7.3994, 7.3991, 7.3986, 7.3998, 7.401, 7.402, 7.4014, 7.4014, 7.4025, 7.402, 7.4031, 7.4044, 7.4044, 7.4054, 7.4047, 7.4043, 7.4037, 7.4033, 7.4028, 7.4022, 7.4017, 7.4011, 7.4022, 7.4016, 7.401, 7.4004, 7.4041, 7.4051, 7.4061, 7.4073, 7.4083, 7.408, 7.4074, 7.4077, 7.4071, 7.4065, 7.4059, 7.4053, 7.4047, 7.4042, 7.4036, 7.4033, 7.4027, 7.4021, 7.402, 7.4016, 7.4013, 7.401, 7.402, 7.4017, 7.4011, 7.4008, 7.4002, 7.3998, 7.4014, 7.4008, 7.4002, 7.3998, 7.3996, 7.399, 7.3984, 7.3979, 7.3989, 7.3985, 7.3996, 7.3993, 7.3987, 7.3981, 7.3978, 7.3974, 7.3968, 7.3962, 7.3956, 7.395, 7.3964, 7.3981, 7.398, 7.3974, 7.3969, 7.3983, 7.3984, 7.3993, 7.4004, 7.4007, 7.4004, 7.4013, 7.401, 7.4013, 7.4022, 7.4033, 7.4028, 7.4023, 7.4018, 7.4013, 7.4024, 7.4018, 7.403, 7.4026, 7.402, 7.4015, 7.4025, 7.402, 7.4018, 7.4015, 7.401, 7.4021, 7.4017, 7.4011, 7.4007, 7.4034, 7.4031, 7.4025, 7.4019, 7.4014, 7.4012, 7.4009, 7.4019, 7.4013, 7.401, 7.4004, 7.3999, 7.3996, 7.3992, 7.3988, 7.3984, 7.3965, 7.3965, 7.3975, 7.3971, 7.3965, 7.3962, 7.3959, 7.397, 7.3981, 7.3977, 7.3974, 7.3984, 7.3978, 7.3989, 7.3985, 7.3979, 7.3975, 7.3985, 7.3992, 7.4002, 7.4001, 7.3995, 7.3989, 7.3985, 7.3979, 7.3975, 7.3971, 7.3965, 7.3959, 7.3953, 7.3948, 7.395, 7.3945, 7.3939, 7.3934, 7.3928, 7.3939, 7.3936, 7.3931, 7.3931, 7.3925, 7.3922, 7.3919, 7.3913, 7.3907, 7.4007, 7.4017, 7.403, 7.4025, 7.404, 7.4076, 7.407, 7.4067, 7.4061, 7.4056, 7.4066, 7.4064, 7.4073, 7.4067, 7.4063, 7.4057, 7.4067, 7.4061, 7.4059, 7.4055, 7.4064, 7.4059, 7.4057, 7.4055, 7.405, 7.405, 7.4044, 7.4052, 7.4033, 7.4029, 7.4024, 7.402, 7.4017, 7.4015, 7.4011, 7.4021, 7.4016, 7.4011, 7.4021, 7.4016, 7.401, 7.4005, 7.4, 7.3995, 7.4005, 7.4045, 7.4056, 7.4051, 7.4062, 7.4063, 7.4058, 7.4057, 7.4051, 7.4046, 7.4056, 7.405, 7.4048, 7.411, 7.4105, 7.4117, 7.4112, 7.411, 7.4115, 7.4144, 7.4155, 7.4164, 7.4158, 7.4155, 7.4151, 7.4162, 7.4157, 7.4168, 7.4162, 7.4156, 7.4151, 7.416, 7.417, 7.4167, 7.4161, 7.4157, 7.4151, 7.4146, 7.4141, 7.4136, 7.413, 7.4143, 7.414, 7.4134, 7.413, 7.4127, 7.4147, 7.4143, 7.414, 7.4135, 7.413, 7.4125, 7.4121, 7.4103, 7.41, 7.4129, 7.4125, 7.412, 7.4115, 7.411, 7.4106, 7.4117, 7.4113, 7.4109, 7.4118, 7.4112, 7.4108, 7.4118, 7.4129, 7.4123, 7.4119, 7.4136, 7.4145, 7.4147, 7.4145, 7.4141, 7.4141, 7.4166, 7.4188, 7.4205, 7.4202, 7.4196, 7.419, 7.4201, 7.4211, 7.4245, 7.4239, 7.4236, 7.423, 7.4225, 7.4221, 7.4218, 7.4204, 7.4198, 7.4192, 7.4188, 7.4182, 7.4193, 7.4189, 7.4202, 7.4198, 7.4207, 7.4201, 7.4197, 7.4191, 7.4187, 7.4181, 7.4177, 7.4185, 7.418, 7.4176, 7.4173, 7.4169, 7.4163, 7.4158, 7.4154, 7.4148, 7.4157, 7.4167, 7.4162, 7.4159, 7.4153, 7.4135, 7.413, 7.4125, 7.4122, 7.4117, 7.4126, 7.4136, 7.4131, 7.4125, 7.412, 7.4117, 7.4112, 7.4107, 7.4116, 7.4112, 7.4106, 7.4143, 7.4138, 7.4132, 7.4126, 7.4121, 7.4116, 7.4111, 7.4122, 7.4119, 7.4113, 7.4111, 7.4107, 7.4101, 7.4098, 7.4094, 7.4089, 7.4084, 7.4081, 7.4075, 7.407, 7.4074, 7.407, 7.4064, 7.4058, 7.4053, 7.405, 7.4045, 7.404, 7.4034, 7.4016, 7.4011, 7.4005, 7.4001, 7.3996, 7.3992, 7.4001, 7.4011, 7.402, 7.4017, 7.4012, 7.4021, 7.4016, 7.4025, 7.4019, 7.4021, 7.4029, 7.4023, 7.4033, 7.4044, 7.4026, 7.402, 7.4029, 7.4039, 7.405, 7.4045, 7.4041, 7.4036, 7.4032, 7.4041, 7.4035, 7.4048, 7.4059, 7.4059, 7.4053, 7.405, 7.4059, 7.4067, 7.4064, 7.4073, 7.4067, 7.4062, 7.407, 7.408, 7.4062, 7.4058, 7.4067, 7.4061, 7.4055, 7.4049, 7.4057, 7.4061, 7.4044, 7.4039, 7.4034, 7.4032, 7.4026, 7.4036, 7.4033, 7.4029, 7.4056, 7.4051, 7.4061, 7.4062, 7.4058, 7.4055, 7.405, 7.4045, 7.4039, 7.4049, 7.4032, 7.4027, 7.4022, 7.4008, 7.4003, 7.4, 7.3996, 7.3993, 7.3992, 7.3988, 7.3986, 7.3995, 7.3989, 7.3998, 7.3993, 7.399, 7.3985, 7.3994, 7.3991, 7.4001, 7.3997, 7.3994, 7.3991, 7.4, 7.3998, 7.3993, 7.3987, 7.3983, 7.398, 7.3989, 7.3983, 7.3979, 7.3976, 7.3985, 7.3982, 7.398, 7.3989, 7.3984, 7.3978, 7.4004, 7.4, 7.3995, 7.399, 7.4015, 7.401, 7.4006, 7.4018, 7.4017, 7.4028, 7.4013, 7.401, 7.4005, 7.4003, 7.4012, 7.4006, 7.4015, 7.4011, 7.4007, 7.4004, 7.4002, 7.3998, 7.3994, 7.4001, 7.4011, 7.4006, 7.4002, 7.3997, 7.3979, 7.3974, 7.3968, 7.3968, 7.3963, 7.3963, 7.3957, 7.3952, 7.3947, 7.3957, 7.3952, 7.3971, 7.398, 7.3963, 7.3974, 7.3959, 7.3955, 7.395, 7.3959, 7.3954, 7.3948, 7.3942, 7.3938, 7.3934, 7.3931, 7.3925, 7.3919, 7.3915, 7.3909, 7.3904, 7.3914, 7.3908, 7.3893, 7.3891, 7.3901, 7.3897, 7.3894, 7.3905, 7.39, 7.3897, 7.3892, 7.3887, 7.3882, 7.3892, 7.389, 7.3885, 7.3882, 7.3892, 7.3902, 7.3912, 7.3909, 7.3918, 7.3913, 7.3922, 7.3917, 7.3916, 7.3925, 7.3934, 7.3929, 7.3937, 7.392, 7.3917, 7.3927, 7.3924, 7.3907, 7.3904, 7.3899, 7.3894, 7.3889, 7.3884, 7.3879, 7.3874, 7.3882, 7.3878, 7.3873, 7.3869, 7.3878, 7.3874, 7.3869, 7.3852, 7.3853, 7.3848, 7.3851, 7.3861, 7.3858, 7.3855, 7.3852, 7.3847, 7.3842, 7.3837, 7.3846, 7.3842, 7.3866, 7.3861, 7.3844, 7.3841, 7.3837, 7.3846, 7.3841, 7.3838, 7.3836, 7.3831, 7.3826, 7.3835, 7.3843, 7.3827, 7.3811, 7.3806, 7.3802, 7.3798, 7.3795, 7.3791, 7.3802, 7.3811, 7.3807, 7.3816, 7.3813, 7.3823, 7.3819, 7.3816, 7.3811, 7.3806, 7.3815, 7.381, 7.3807, 7.379, 7.3787, 7.377, 7.3766, 7.3762, 7.3757, 7.3752, 7.3749, 7.3744, 7.3739, 7.3734, 7.3729, 7.3724, 7.3732, 7.374, 7.3748, 7.3759, 7.3766, 7.3762, 7.3757, 7.3753, 7.3749, 7.3789, 7.3803, 7.38, 7.3783, 7.378, 7.3776, 7.3805, 7.3807, 7.3803, 7.3812, 7.3808, 7.3804, 7.38, 7.3808, 7.3817, 7.3804, 7.3889, 7.3884, 7.3879, 7.3875, 7.3885, 7.3882, 7.3879, 7.3887, 7.3885, 7.3881, 7.389, 7.3887, 7.3885, 7.3885, 7.3884, 7.388, 7.3875, 7.3884, 7.3895, 7.3904, 7.3901, 7.391, 7.3908, 7.3904, 7.3913, 7.3908, 7.3917, 7.3914, 7.3923, 7.3918, 7.3913, 7.3908, 7.3903, 7.3898, 7.3893, 7.3901, 7.391, 7.3905, 7.39, 7.3896, 7.3946, 7.3943, 7.3972, 7.397, 7.3979, 7.3974, 7.3969, 7.3978, 7.3974, 7.3972, 7.3967, 7.3964, 7.3959, 7.3955, 7.3953, 7.3963, 7.3958, 7.3953, 7.3953, 7.3962, 7.3957, 7.3955, 7.3981, 7.3979, 7.3974, 7.3982, 7.3977, 7.3962, 7.4003, 7.3998, 7.3993, 7.399, 7.3985, 7.3982, 7.3977, 7.3972, 7.3967, 7.3974, 7.397, 7.3967, 7.3975, 7.397, 7.3965, 7.396, 7.3955, 7.3963, 7.3958, 7.3953, 7.3961, 7.3969, 7.3964, 7.3962, 7.3957, 7.3952, 7.3947, 7.3945, 7.3941, 7.3924, 7.3919, 7.3914, 7.3923, 7.3918, 7.3913, 7.3908, 7.3906, 7.3902, 7.391, 7.3908, 7.3903, 7.3899, 7.3894, 7.389, 7.3887, 7.3882, 7.388, 7.3878, 7.3873, 7.387, 7.3878, 7.3886, 7.3881, 7.3876, 7.3872, 7.3867, 7.3862, 7.3858, 7.3853, 7.3837, 7.3832, 7.3827, 7.3836, 7.3831, 7.3826, 7.3837, 7.3832, 7.3827, 7.3823, 7.3822, 7.3817, 7.3825, 7.382, 7.3818, 7.3826, 7.3823, 7.382, 7.3829, 7.3825, 7.3822, 7.3831, 7.3841, 7.3838, 7.3834, 7.3835, 7.3833, 7.3828, 7.3827, 7.3826, 7.3821, 7.3819, 7.3814, 7.3811, 7.3806, 7.3804, 7.3799, 7.3808, 7.3804, 7.3799, 7.38, 7.3798, 7.3793, 7.3801, 7.3835, 7.383, 7.3825, 7.3821, 7.3822, 7.3818, 7.3844, 7.383, 7.3848, 7.3844, 7.3839, 7.3846, 7.3843, 7.3842, 7.3837, 7.3847, 7.3844, 7.3841, 7.3838, 7.3846, 7.3841, 7.3836, 7.3833, 7.3841, 7.3836, 7.3844, 7.3839, 7.3834, 7.383, 7.3825, 7.3824, 7.3819, 7.3816, 7.3811, 7.3806, 7.3814, 7.381, 7.3805, 7.3802, 7.3797, 7.3792, 7.3787, 7.3782, 7.3777, 7.3773, 7.3774, 7.3774, 7.3787, 7.3782, 7.3778, 7.3763, 7.3759, 7.3768, 7.3754, 7.375, 7.3745, 7.3741, 7.3749, 7.3744, 7.374, 7.3735, 7.373, 7.3739, 7.3748, 7.3757, 7.3752, 7.3749, 7.3758, 7.3753, 7.3761, 7.3758, 7.3755, 7.3752, 7.3759, 7.3754, 7.3751, 7.3759, 7.3754, 7.3751, 7.3747, 7.3742, 7.374, 7.3747, 7.3756, 7.3751, 7.3749, 7.3746, 7.3754, 7.3749, 7.3744, 7.3739, 7.3734, 7.3732, 7.373, 7.3733, 7.373, 7.3728, 7.3723, 7.373, 7.3725, 7.3722, 7.3731, 7.3729, 7.3737, 7.3732, 7.3728, 7.3737, 7.3734, 7.373, 7.3726, 7.3723, 7.372, 7.3715, 7.3723, 7.3718, 7.3715, 7.3712, 7.3721, 7.373, 7.3725, 7.3732, 7.3729, 7.3736, 7.3732, 7.3741, 7.3736, 7.3732, 7.3727, 7.3711, 7.3696, 7.3692, 7.3689, 7.37, 7.3696, 7.3692, 7.3689, 7.3684, 7.3679, 7.3689, 7.3686, 7.3682, 7.3679, 7.3676, 7.3676, 7.3671, 7.3669, 7.3678, 7.3664, 7.365, 7.3645, 7.3655, 7.3652, 7.3647, 7.3646, 7.3643, 7.364, 7.3649, 7.3647, 7.3642, 7.3649, 7.367, 7.3724, 7.3731, 7.3739, 7.3735, 7.3733, 7.3731, 7.3727, 7.3735, 7.3735, 7.3732, 7.3729, 7.3727, 7.3723, 7.3718, 7.3726, 7.3723, 7.3718, 7.3713, 7.3711, 7.3706, 7.3705, 7.3719, 7.3722, 7.3718, 7.3726, 7.3724, 7.372, 7.3716, 7.3724, 7.3732, 7.374, 7.3726, 7.3722, 7.3732, 7.3728, 7.3736, 7.3733, 7.3744, 7.374, 7.3737, 7.3746, 7.3741, 7.3736, 7.3734, 7.3731, 7.373, 7.3728, 7.3723, 7.3718, 7.3714, 7.371, 7.3706, 7.3702, 7.3697, 7.3693, 7.3688, 7.3696, 7.3693, 7.3688, 7.3683, 7.3691, 7.3699, 7.3694, 7.3702, 7.3697, 7.3705, 7.3713, 7.3721, 7.3716, 7.3704, 7.3702, 7.3698, 7.3693, 7.3689, 7.3697, 7.3706, 7.3703, 7.3691, 7.3687, 7.3696, 7.3692, 7.3688, 7.3688, 7.3687, 7.3683, 7.368, 7.3681, 7.3666, 7.3664, 7.3666, 7.3674, 7.3673, 7.3669, 7.3676, 7.3671, 7.367, 7.3665, 7.3662, 7.3658, 7.3668, 7.3691, 7.3687, 7.3682, 7.3681, 7.3676, 7.3672, 7.3668, 7.3663, 7.366, 7.3656, 7.3653, 7.3649, 7.367, 7.3682, 7.3678, 7.3677, 7.3685, 7.3682, 7.3679, 7.3677, 7.3673, 7.367, 7.3668, 7.3665, 7.3663, 7.3672, 7.3669, 7.3667, 7.3666, 7.3675, 7.3671, 7.367, 7.3666, 7.3661, 7.3669, 7.3665, 7.3673, 7.3668, 7.3676, 7.3671, 7.3667, 7.3663, 7.3658, 7.3654, 7.3651, 7.3646, 7.3654, 7.3649, 7.3644, 7.3639, 7.3659, 7.3668, 7.3682, 7.3678, 7.3674, 7.367, 7.3666, 7.3663, 7.3659, 7.3656, 7.3662, 7.366, 7.3655, 7.3688, 7.3695, 7.3691, 7.3691, 7.3688, 7.3686, 7.3684, 7.3692, 7.3694, 7.3715, 7.3723, 7.3719, 7.3715, 7.3712, 7.3721, 7.3717, 7.3743, 7.3739, 7.3746, 7.3753, 7.3751, 7.3759, 7.3757, 7.3754, 7.375, 7.3746, 7.3754, 7.3749, 7.3746, 7.3759, 7.3756, 7.3754, 7.3762, 7.3757, 7.3752, 7.3759, 7.3754, 7.3763, 7.376, 7.3756, 7.3752, 7.375, 7.3746, 7.3754, 7.3762, 7.377, 7.378, 7.3776, 7.3773, 7.3769, 7.3765, 7.3775, 7.3782, 7.379, 7.379, 7.3799, 7.3807, 7.3804, 7.3812, 7.381, 7.3818, 7.3814, 7.3811, 7.3819, 7.3826, 7.3823, 7.3822, 7.383, 7.3825, 7.382, 7.3829, 7.3825, 7.3827, 7.3826, 7.3822, 7.3819, 7.3815, 7.3823, 7.3819, 7.3815, 7.3811, 7.3807, 7.3804, 7.38, 7.3796, 7.3793, 7.3802, 7.381, 7.3807, 7.3792, 7.3788, 7.3784, 7.378, 7.378, 7.3788, 7.3785, 7.3781, 7.3779, 7.3776, 7.3772, 7.3779, 7.3787, 7.3785, 7.3783, 7.378, 7.378, 7.3777, 7.3785, 7.3782, 7.379, 7.3788, 7.3786, 7.3772, 7.3767, 7.3763, 7.376, 7.3759, 7.3755, 7.3774, 7.3782, 7.3778, 7.3787, 7.3783, 7.3779, 7.3775, 7.3782, 7.3778, 7.3786, 7.3782, 7.3778, 7.3792, 7.3788, 7.3784, 7.3805, 7.3824, 7.382, 7.3818, 7.3827, 7.3826, 7.3835, 7.3843, 7.3853, 7.3849, 7.3846, 7.3843, 7.3839, 7.3834, 7.383, 7.3831, 7.3839, 7.3849, 7.3847, 7.3844, 7.3847, 7.3862, 7.3873, 7.3871, 7.387, 7.3866, 7.3874, 7.3869, 7.3866, 7.3863, 7.3883, 7.3883, 7.3879, 7.3877, 7.3885, 7.389, 7.3898, 7.3894, 7.389, 7.3886, 7.3883, 7.3879, 7.3875, 7.3871, 7.3866, 7.3874, 7.387, 7.3866, 7.3864, 7.3871, 7.3868, 7.3871, 7.3869, 7.3866, 7.3862, 7.386, 7.3868, 7.3865, 7.3861, 7.3858, 7.3867, 7.3862, 7.3857, 7.3853, 7.385, 7.3857, 7.3853, 7.3849, 7.3835, 7.3832, 7.3828, 7.3824, 7.3832, 7.384, 7.3838, 7.3836, 7.3832, 7.384, 7.3827, 7.3836, 7.3844, 7.384, 7.3837, 7.3833, 7.3834, 7.3832, 7.3828, 7.3835, 7.3843, 7.3839, 7.3864, 7.386, 7.397, 7.3969, 7.3975, 7.3972, 7.3968, 7.3965, 7.3961, 7.3957, 7.3964, 7.3972, 7.3969, 7.3968, 7.3975, 7.3971, 7.4001, 7.4008, 7.4004, 7.4, 7.3996, 7.3993, 7.4, 7.3995, 7.4003, 7.3999, 7.3996, 7.3993, 7.3989, 7.3986, 7.3993, 7.399, 7.3985, 7.3992, 7.3993, 7.3991, 7.3987, 7.4003, 7.4018, 7.4019, 7.4021, 7.401, 7.4018, 7.4013, 7.4011, 7.4006, 7.4002, 7.3998, 7.3995, 7.3993, 7.3989, 7.399, 7.3988, 7.3996, 7.3993, 7.399, 7.3999, 7.3985, 7.3981, 7.3978, 7.3986, 7.3983, 7.3996, 7.3992, 7.3988, 7.3984, 7.398, 7.399, 7.3987, 7.3984, 7.3981, 7.3979, 7.3975, 7.3983, 7.3981, 7.3977, 7.3973, 7.3969, 7.3955, 7.3952, 7.3959, 7.3954, 7.3952, 7.3949, 7.3956, 7.3952, 7.3949, 7.3944, 7.3951, 7.3948, 7.3944, 7.3951, 7.3957, 7.3954, 7.3991, 7.3988, 7.3983, 7.3978, 7.3976, 7.3972, 7.3967, 7.3964, 7.396, 7.3957, 7.3953, 7.3949, 7.3957, 7.3954, 7.3961, 7.3958, 7.3964, 7.396, 7.3979, 7.3987, 7.3986, 7.3985, 7.3981, 7.3988, 7.3986, 7.3982, 7.3978, 7.3975, 7.3961, 7.3968, 7.3964, 7.3973, 7.3969, 7.3965, 7.3961, 7.3957, 7.3953, 7.3949, 7.3945, 7.3941, 7.3938, 7.3936, 7.3932, 7.3939, 7.3946, 7.3942, 7.3938, 7.3935, 7.3942, 7.3941, 7.3939, 7.3948, 7.3944, 7.3952, 7.3948, 7.3944, 7.394, 7.3936, 7.3932, 7.394, 7.3938, 7.3936, 7.3946, 7.3942, 7.3938, 7.3934, 7.3941, 7.3937, 7.3934, 7.3942, 7.394, 7.3936, 7.3933, 7.3941, 7.3949, 7.3945, 7.3932, 7.393, 7.3926, 7.3944, 7.3941, 7.3939, 7.3937, 7.3942, 7.394, 7.3936, 7.3923, 7.392, 7.3917, 7.3913, 7.3921, 7.3917, 7.3913, 7.3912, 7.391, 7.3908, 7.3894, 7.389, 7.3942, 7.3949, 7.3958, 7.3954, 7.395, 7.3946, 7.3942, 7.3938, 7.3945, 7.3964, 7.3971, 7.3967, 7.3953, 7.3949, 7.3945, 7.3941, 7.3949, 7.3945, 7.3944, 7.3951, 7.3947, 7.3955, 7.3952, 7.3948, 7.3944, 7.3941, 7.3928, 7.3924, 7.392, 7.3916, 7.3912, 7.391, 7.3906, 7.3902, 7.3898, 7.3895, 7.3893, 7.3891, 7.389, 7.3888, 7.3884, 7.3882, 7.3878, 7.3874, 7.3871, 7.3867, 7.3864, 7.386, 7.3856, 7.3852, 7.3848, 7.3846, 7.3846, 7.3842, 7.3838, 7.3834, 7.3831, 7.3829, 7.3826, 7.3822, 7.3818, 7.3816, 7.3823, 7.3819, 7.3815, 7.3811, 7.3818, 7.3815, 7.3813, 7.381, 7.3806, 7.3805, 7.3804, 7.3812, 7.3808, 7.3804, 7.3791, 7.3788, 7.3784, 7.3783, 7.3779, 7.3788, 7.3775, 7.3775, 7.3781, 7.3778, 7.3774, 7.3772, 7.3771, 7.3778, 7.3774, 7.3771, 7.3778, 7.3777, 7.3775, 7.3782, 7.3778, 7.3774, 7.3781, 7.3788, 7.3786, 7.3785, 7.3782, 7.3769, 7.3776, 7.3793, 7.3791, 7.3787, 7.3783, 7.3789, 7.3792, 7.3788, 7.3784, 7.378, 7.3776, 7.3773, 7.3769, 7.3776, 7.3774, 7.3771, 7.377, 7.3768, 7.3765, 7.3763, 7.375, 7.3746, 7.3755, 7.3763, 7.376, 7.3756, 7.3769, 7.3765, 7.3761, 7.3768, 7.3765, 7.3761, 7.3759, 7.3759, 7.3755, 7.3752, 7.3751, 7.3749, 7.3745, 7.3743, 7.375, 7.3746, 7.3742, 7.3738, 7.3735, 7.3731, 7.3727, 7.3781, 7.3789, 7.3786, 7.3783, 7.3779, 7.3786, 7.3793, 7.38, 7.3806, 7.3804, 7.3812, 7.3801, 7.3797, 7.3793, 7.3789, 7.3796, 7.3798, 7.3805, 7.3794, 7.3794, 7.379, 7.3786, 7.3782, 7.378, 7.3787, 7.3783, 7.3779, 7.3775, 7.3773, 7.378, 7.3787, 7.3783, 7.3779, 7.3777, 7.3784, 7.3781, 7.3788, 7.3795, 7.3796, 7.3795, 7.3814, 7.3813, 7.3832, 7.384, 7.3841, 7.383, 7.3836, 7.3842, 7.3838, 7.3834, 7.3821, 7.3831, 7.3827, 7.3823, 7.382, 7.3828, 7.3837, 7.3834, 7.3833, 7.383, 7.3827, 7.3825, 7.3822, 7.3829, 7.3826, 7.3823, 7.383, 7.3826, 7.3822, 7.383, 7.3826, 7.3822, 7.3821, 7.3829, 7.3827, 7.3815, 7.3812, 7.3818, 7.3814, 7.382, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3788, 7.3776, 7.3773, 7.378, 7.3777, 7.3774, 7.378, 7.3776, 7.3772, 7.377, 7.3781, 7.3781, 7.3778, 7.3774, 7.377, 7.3803, 7.3799, 7.3795, 7.3791, 7.3788, 7.3784, 7.378, 7.3776, 7.3775, 7.3771, 7.3777, 7.3774, 7.3771, 7.3761, 7.3758, 7.3755, 7.3752, 7.375, 7.3746, 7.3743, 7.3739, 7.3735, 7.3778, 7.3775, 7.3772, 7.3771, 7.3768, 7.3766, 7.3768, 7.3766, 7.3762, 7.3758, 7.3754, 7.375, 7.3767, 7.3763, 7.376, 7.3757, 7.3753, 7.3749, 7.3745, 7.3746, 7.3742, 7.3738, 7.3737, 7.3736, 7.3742, 7.3738, 7.3726, 7.3722, 7.3729, 7.3738, 7.3736, 7.3733, 7.373, 7.3726, 7.3722, 7.3729, 7.3729, 7.3735, 7.3722, 7.3718, 7.3723, 7.372, 7.3718, 7.3714, 7.371, 7.3698, 7.3694, 7.369, 7.3686, 7.3683, 7.368, 7.3678, 7.3675, 7.3671, 7.3669, 7.3677, 7.3675, 7.3682, 7.3678, 7.3684, 7.369, 7.3697, 7.3693, 7.3689, 7.3688, 7.3686, 7.3694, 7.3691, 7.3689, 7.3686, 7.3693, 7.3699, 7.3695, 7.3701, 7.3697, 7.3704, 7.371, 7.3717, 7.3723, 7.3719, 7.3726, 7.3722, 7.3718, 7.3714, 7.3713, 7.3711, 7.3707, 7.3703, 7.371, 7.3717, 7.3724, 7.373, 7.3736, 7.3734, 7.373, 7.3728, 7.3726, 7.3733, 7.373, 7.3727, 7.3723, 7.3721, 7.3717, 7.3715, 7.3711, 7.3717, 7.3715, 7.3711, 7.3709, 7.3715, 7.3722, 7.3728, 7.3756, 7.3752, 7.3749, 7.3746, 7.3742, 7.3732, 7.3728, 7.3724, 7.373, 7.3727, 7.3734, 7.3732, 7.3739, 7.3745, 7.3742, 7.3742, 7.374, 7.3746, 7.3744, 7.3751, 7.3759, 7.3756, 7.3753, 7.375, 7.3747, 7.3753, 7.3749, 7.3755, 7.376, 7.3758, 7.3754, 7.3752, 7.375, 7.3746, 7.3752, 7.3748, 7.3745, 7.3743, 7.3749, 7.3737, 7.3734, 7.373, 7.3736, 7.3742, 7.3739, 7.3737, 7.3754, 7.3752, 7.375, 7.3753, 7.3751, 7.3748, 7.3744, 7.3746, 7.3743, 7.374, 7.3736, 7.3743, 7.375, 7.3747, 7.3745, 7.3741, 7.374, 7.3736, 7.3738, 7.3735, 7.3732, 7.3731, 7.3727, 7.3728, 7.3724, 7.3723, 7.374, 7.3737, 7.3727, 7.3727, 7.3742, 7.3749, 7.3745, 7.3741, 7.3738, 7.3736, 7.3734, 7.3731, 7.3739, 7.3748, 7.3756, 7.3753, 7.3761, 7.3758, 7.3755, 7.3752, 7.376, 7.3759, 7.3755, 7.3762, 7.3759, 7.3766, 7.3762, 7.3759, 7.3757, 7.3763, 7.3759, 7.3757, 7.3755, 7.3751, 7.3749, 7.3756, 7.3753, 7.3749, 7.3745, 7.3752, 7.3749, 7.3755, 7.3752, 7.3748, 7.3755, 7.3761, 7.3767, 7.3764, 7.3761, 7.3791, 7.3787, 7.3786, 7.3792, 7.3788, 7.3784, 7.378, 7.3776, 7.3772, 7.3768, 7.3775, 7.3773, 7.3779, 7.38, 7.3806, 7.3812, 7.381, 7.3808, 7.3807, 7.3814, 7.3811, 7.3809, 7.3805, 7.3801, 7.3807, 7.3803, 7.3799, 7.3795, 7.3801, 7.3811, 7.3807, 7.3803, 7.3801, 7.3807, 7.3815, 7.3806, 7.3812, 7.3808, 7.3806, 7.3802, 7.3798, 7.3794, 7.3791, 7.3788, 7.3788, 7.3794, 7.3796, 7.3797, 7.3794, 7.3792, 7.3799, 7.3795, 7.3791, 7.3798, 7.3796, 7.3792, 7.3788, 7.3787, 7.3786, 7.3785, 7.3782, 7.3779, 7.3775, 7.3771, 7.3768, 7.3765, 7.3761, 7.3768, 7.3765, 7.3762, 7.3758, 7.3756, 7.3754, 7.3792, 7.3815, 7.3812, 7.3809, 7.3805, 7.3803, 7.3792, 7.3788, 7.3788, 7.3784, 7.3783, 7.3781, 7.3779, 7.3775, 7.3784, 7.3792, 7.3798, 7.3797, 7.3785, 7.3801, 7.3799, 7.3806, 7.3803, 7.3809, 7.3815, 7.3821, 7.3817, 7.3813, 7.3819, 7.3825, 7.3821, 7.3817, 7.3813, 7.3812, 7.3808, 7.3804, 7.38, 7.3796, 7.3794, 7.379, 7.3786, 7.3802, 7.3829, 7.3826, 7.3824, 7.382, 7.3816, 7.3822, 7.382, 7.3818, 7.3817, 7.3815, 7.3812, 7.3809, 7.3816, 7.3812, 7.382, 7.3816, 7.3815, 7.3814, 7.3822, 7.3829, 7.3826, 7.3834, 7.3832, 7.3828, 7.3837, 7.3833, 7.383, 7.3827, 7.3823, 7.3811, 7.3799, 7.3806, 7.3794, 7.3792, 7.3799, 7.3796, 7.3793, 7.3789, 7.3786, 7.3786, 7.3784, 7.3783, 7.3781, 7.3779, 7.3776, 7.3774, 7.3772, 7.3768, 7.3765, 7.3763, 7.376, 7.3748, 7.3745, 7.3742, 7.3741, 7.3738, 7.3736, 7.3734, 7.373, 7.3737, 7.3734, 7.3732, 7.3729, 7.3718, 7.3714, 7.3721, 7.3718, 7.3715, 7.3713, 7.3709, 7.3705, 7.3715, 7.3712, 7.3709, 7.3714, 7.3713, 7.3711, 7.3708, 7.3704, 7.3701, 7.3699, 7.3706, 7.3713, 7.372, 7.3717, 7.3723, 7.372, 7.3717, 7.3716, 7.3722, 7.3722, 7.3721, 7.3744, 7.3741, 7.3741, 7.3739, 7.3737, 7.3734, 7.3731, 7.3719, 7.3717, 7.3715, 7.3722, 7.3728, 7.3726, 7.3722, 7.3718, 7.3732, 7.3729, 7.3735, 7.3733, 7.3729, 7.3735, 7.3731, 7.3728, 7.3724, 7.372, 7.3717, 7.3714, 7.3711, 7.3707, 7.3705, 7.3721, 7.3718, 7.3715, 7.3713, 7.3711, 7.3708, 7.3705, 7.3706, 7.3712, 7.3701, 7.3698, 7.3694, 7.3701, 7.3698, 7.3695, 7.3701, 7.3698, 7.3694, 7.3691, 7.3689, 7.3686, 7.3683, 7.368, 7.3679, 7.3676, 7.3693, 7.3689, 7.3687, 7.3693, 7.3691, 7.3688, 7.3716, 7.3725, 7.3722, 7.3719, 7.3726, 7.3723, 7.372, 7.3736, 7.3733, 7.373, 7.3727, 7.3725, 7.3722, 7.3718, 7.3714, 7.3711, 7.3708, 7.3705, 7.3711, 7.3708, 7.3704, 7.3702, 7.3698, 7.3695, 7.3693, 7.3699, 7.3705, 7.3702, 7.3708, 7.3707, 7.3703, 7.3709, 7.3715, 7.3711, 7.3707, 7.3704, 7.3702, 7.37, 7.3708, 7.3713, 7.3713, 7.3715, 7.3721, 7.3718, 7.3718, 7.3716, 7.3713, 7.3719, 7.3715, 7.3731, 7.3731, 7.3728, 7.3726, 7.3723, 7.373, 7.3726, 7.3722, 7.3719, 7.3716, 7.3715, 7.3712, 7.3708, 7.3706, 7.3702, 7.37, 7.3697, 7.3693, 7.3699, 7.3695, 7.3693, 7.37, 7.3698, 7.3698, 7.3694, 7.3691, 7.3687, 7.3693, 7.3699, 7.3705, 7.3714, 7.3711, 7.3699, 7.3696, 7.3693, 7.369, 7.3698, 7.3702, 7.3705, 7.3708, 7.3707, 7.3704, 7.3702, 7.3699, 7.3695, 7.3691, 7.3688, 7.3695, 7.3692, 7.3689, 7.3695, 7.3692, 7.3689, 7.3687, 7.3684, 7.3691, 7.3689, 7.3685, 7.3684, 7.369, 7.3687, 7.3683, 7.368, 7.3676, 7.3672, 7.3669, 7.3666, 7.3662, 7.3662, 7.3659, 7.3656, 7.3653, 7.3651, 7.3649, 7.3646, 7.3643, 7.3641, 7.3638, 7.3636, 7.3634, 7.3631, 7.3629, 7.3625, 7.3625, 7.3623, 7.3619, 7.3617, 7.3614, 7.3613, 7.361, 7.3616, 7.3614, 7.361, 7.3607, 7.365, 7.3648, 7.3652, 7.3651, 7.3648, 7.3637, 7.3643, 7.3639, 7.3639, 7.3637, 7.3643, 7.364, 7.364, 7.3646, 7.3642, 7.3639, 7.3636, 7.3632, 7.3629, 7.3626, 7.3623, 7.362, 7.3617, 7.3616, 7.3613, 7.361, 7.3607, 7.3604, 7.3638, 7.3627, 7.3652, 7.3648, 7.3645, 7.3643, 7.364, 7.3646, 7.3642, 7.3639, 7.3645, 7.3654, 7.3652, 7.3667, 7.3665, 7.3662, 7.3658, 7.366, 7.3659, 7.3665, 7.3663, 7.3659, 7.3665, 7.3662, 7.3658, 7.3655, 7.3653, 7.3659, 7.3657, 7.3655, 7.3684, 7.3681, 7.3678, 7.369, 7.3687, 7.3685, 7.3682, 7.3679, 7.3676, 7.3718, 7.3725, 7.3722, 7.3721, 7.3727, 7.3728, 7.373, 7.3726, 7.3732, 7.3737, 7.3733, 7.3729, 7.3725, 7.3743, 7.3749, 7.3746, 7.3744, 7.3741, 7.3747, 7.3744, 7.374, 7.3746, 7.3743, 7.374, 7.3738, 7.3738, 7.3735, 7.374, 7.3737, 7.3734, 7.374, 7.3746, 7.3752, 7.3758, 7.3755, 7.3761, 7.3767, 7.3764, 7.3753, 7.3759, 7.3756, 7.3762, 7.3768, 7.3773, 7.377, 7.3767, 7.3765, 7.377, 7.3776, 7.3773, 7.3777, 7.3805, 7.3817, 7.3816, 7.3813, 7.3802, 7.3799, 7.3829, 7.3825, 7.3831, 7.3834, 7.3832, 7.3829, 7.3826, 7.3822, 7.3819, 7.3816, 7.3805, 7.3802, 7.38, 7.3797, 7.3794, 7.3791, 7.3806, 7.3812, 7.3818, 7.3816, 7.3822, 7.3819, 7.3825, 7.3822, 7.382, 7.3818, 7.3815, 7.3821, 7.3817, 7.3808, 7.3806, 7.3824, 7.3815, 7.3811, 7.3808, 7.3814, 7.3813, 7.381, 7.3812, 7.3818, 7.3815, 7.3829, 7.3835, 7.3834, 7.3831, 7.3828, 7.3834, 7.3831, 7.383, 7.3827, 7.3824, 7.383, 7.3827, 7.3825, 7.3823, 7.3829, 7.3829, 7.3836, 7.3842, 7.384, 7.3837, 7.3834, 7.384, 7.3839, 7.3837, 7.3843, 7.3886, 7.3884, 7.3882, 7.388, 7.3886, 7.3883, 7.388, 7.3877, 7.3875, 7.3873, 7.387, 7.3867, 7.3865, 7.3854, 7.3853, 7.385, 7.3857, 7.3854, 7.3851, 7.3847, 7.3843, 7.3841, 7.3856, 7.3855, 7.3852, 7.3855, 7.3852, 7.3858, 7.3855, 7.386, 7.3858, 7.3859, 7.3864, 7.386, 7.3867, 7.3864, 7.3869, 7.3875, 7.3873, 7.387, 7.3879, 7.3876, 7.3873, 7.3871, 7.3871, 7.3868, 7.3868, 7.3876, 7.3883, 7.389, 7.3888, 7.3889, 7.3886, 7.3887, 7.3884, 7.3882, 7.3881, 7.3881, 7.3887, 7.3885, 7.3882, 7.3879, 7.3876, 7.3882, 7.3879, 7.3877, 7.3883, 7.3899, 7.3888, 7.3903, 7.3901, 7.3902, 7.3899, 7.3895, 7.3901, 7.3898, 7.3896, 7.3904, 7.3902, 7.39, 7.3897, 7.3903, 7.3892, 7.3897, 7.3893, 7.389, 7.3941, 7.3938, 7.3934, 7.3932, 7.3922, 7.392, 7.3917, 7.3915, 7.3914, 7.3931, 7.3924, 7.3925, 7.3933, 7.3935, 7.3933, 7.3931, 7.3937, 7.3943, 7.3972, 7.3969, 7.3967, 7.3964, 7.3961, 7.3959, 7.3965, 7.3954, 7.3952, 7.3968, 7.3965, 7.3963, 7.3961, 7.3958, 7.3954, 7.3952, 7.3951, 7.3949, 7.3945, 7.3948, 7.3945, 7.3942, 7.3941, 7.3947, 7.3953, 7.395, 7.3947, 7.3944, 7.395, 7.3955, 7.3961, 7.3958, 7.3955, 7.3953, 7.3958, 7.3955, 7.3952, 7.396, 7.3957, 7.3963, 7.3961, 7.3966, 7.3963, 7.3962, 7.3968, 7.3965, 7.3962, 7.3959, 7.3956, 7.3967, 7.3966, 7.3963, 7.3961, 7.3958, 7.3955, 7.3952, 7.3949, 7.3951, 7.395, 7.3947, 7.3946, 7.3944, 7.3949, 7.3948, 7.3946, 7.3943, 7.3941, 7.394, 7.3937, 7.3934, 7.3933, 7.393, 7.393, 7.3927, 7.3924, 7.3921, 7.3918, 7.3915, 7.3921, 7.3921, 7.3919, 7.3917, 7.3923, 7.3929, 7.3926, 7.3924, 7.3921, 7.3918, 7.3916, 7.3915, 7.3915, 7.3921, 7.392, 7.3919, 7.3917, 7.3924, 7.3921, 7.3918, 7.3924, 7.3921, 7.3918, 7.3915, 7.3912, 7.391, 7.3916, 7.3914, 7.3911, 7.3908, 7.3913, 7.391, 7.3907, 7.3904, 7.3902, 7.3899, 7.3888, 7.3884, 7.3882, 7.3879, 7.3876, 7.3873, 7.387], '192.168.122.119': [5.4803, 5.3959, 5.6119, 5.8081, 5.7172, 5.6548, 5.6897, 5.6831, 5.6415, 5.6804, 5.6804, 5.6532, 5.755, 6.1236, 6.1351, 6.2696, 6.2219, 6.1756, 6.1473, 6.1197, 6.1019, 6.3312, 6.5377, 6.5217, 6.4741, 6.6463, 6.4207, 6.3825, 6.351, 6.3347, 6.4758, 6.4584, 6.4267, 6.3997, 6.3698, 6.3428, 6.3945, 6.3991, 6.3798, 6.355, 6.3316, 6.3097, 6.2888, 6.3921, 6.3674, 6.3637, 6.3454, 6.3277, 6.3306, 6.4365, 6.414, 6.3993, 6.3941, 6.7084, 6.7868, 6.7619, 6.7746, 6.8437, 6.8199, 6.718, 6.6957, 6.6075, 6.5891, 6.5819, 6.6538, 6.6319, 6.614, 6.595, 6.656, 6.6393, 6.6204, 6.6791, 6.6633, 6.6528, 6.6407, 6.5622, 6.5484, 6.5363, 6.5234, 6.5741, 6.5627, 6.6179, 6.7417, 6.8636, 6.846, 6.8921, 6.8929, 6.8803, 6.9311, 6.9224, 6.9116, 6.8982, 6.9427, 6.947, 7.0471, 7.0342, 7.026, 7.0131, 7.0569, 7.0411, 7.0239, 7.0128, 7.0015, 7.0404, 7.1169, 7.1058, 7.0889, 7.1088, 7.0921, 7.0412, 7.0497, 7.0501, 7.0429, 7.0333, 7.0637, 7.1402, 7.131, 7.1229, 7.1175, 7.1066, 7.1042, 7.0909, 7.1644, 7.1129, 7.0995, 7.1758, 7.1608, 7.151, 7.1366, 7.1438, 7.171, 7.1212, 7.1279, 7.1206, 7.1123, 7.2156, 7.2416, 7.2704, 7.275, 7.2691, 7.2705, 7.2569, 7.2509, 7.2443, 7.3481, 7.3347, 7.3366, 7.3248, 7.3966, 7.3829, 7.4001, 7.3878, 7.3769, 7.3644, 7.3866, 7.408, 7.4311, 7.4226, 7.4419, 7.4343, 7.4218, 7.4099, 7.4303, 7.419, 7.439, 7.4335, 7.4243, 7.445, 7.4359, 7.4277, 7.4228, 7.4479, 7.4392, 7.4612, 7.4513, 7.4402, 7.433, 7.4222, 7.4116, 7.4273, 7.4171, 7.4109, 7.4003, 7.4177, 7.4387, 7.4345, 7.4229, 7.4134, 7.4315, 7.4375, 7.4273, 7.4166, 7.405, 7.4203, 7.4389, 7.4285, 7.4461, 7.4359, 7.4559, 7.473, 7.4627, 7.4535, 7.4435, 7.4327, 7.4233, 7.438, 7.4529, 7.4423, 7.4332, 7.423, 7.4133, 7.3817, 7.3734, 7.3897, 7.3804, 7.373, 7.3692, 7.3615, 7.3543, 7.3449, 7.3382, 7.3319, 7.3272, 7.3205, 7.3369, 7.3346, 7.3254, 7.3415, 7.3332, 7.3731, 7.364, 7.3548, 7.3709, 7.362, 7.3545, 7.3462, 7.3384, 7.3994, 7.4139, 7.4152, 7.4296, 7.4439, 7.4361, 7.4288, 7.4556, 7.4893, 7.4809, 7.4935, 7.4859, 7.4772, 7.4715, 7.4857, 7.4833, 7.4834, 7.477, 7.4706, 7.463, 7.4604, 7.4718, 7.4641, 7.4779, 7.4704, 7.4669, 7.4609, 7.4536, 7.4472, 7.4599, 7.4564, 7.4494, 7.4632, 7.4772, 7.4842, 7.5011, 7.4941, 7.4868, 7.4817, 7.4781, 7.471, 7.4633, 7.4765, 7.5289, 7.5242, 7.5231, 7.5622, 7.5904, 7.5853, 7.579, 7.5711, 7.5666, 7.5426, 7.5633, 7.5585, 7.5596, 7.5586, 7.5393, 7.5321, 7.5267, 7.5261, 7.5228, 7.5162, 7.5102, 7.5032, 7.5143, 7.5255, 7.5195, 7.5141, 7.5086, 7.5028, 7.5337, 7.546, 7.5399, 7.5341, 7.5285, 7.5522, 7.545, 7.5421, 7.5353, 7.5291, 7.5231, 7.5173, 7.5135, 7.5077, 7.5036, 7.4993, 7.4934, 7.4881, 7.5088, 7.5179, 7.5276, 7.5219, 7.5315, 7.5274, 7.5233, 7.5177, 7.5275, 7.5397, 7.5489, 7.543, 7.5431, 7.5387, 7.5345, 7.5295, 7.5233, 7.519, 7.5157, 7.5451, 7.5408, 7.535, 7.5285, 7.5388, 7.5323, 7.5261, 7.5222, 7.5161, 7.5112, 7.5057, 7.5013, 7.4955, 7.4898, 7.4704, 7.4648, 7.4604, 7.4964, 7.4903, 7.4846, 7.4657, 7.46, 7.454, 7.4631, 7.4581, 7.453, 7.4477, 7.4417, 7.4373, 7.4329, 7.4297, 7.4243, 7.4334, 7.428, 7.4371, 7.4319, 7.4265, 7.4215, 7.4165, 7.4126, 7.4076, 7.4039, 7.3985, 7.3934, 7.3882, 7.3852, 7.3939, 7.4027, 7.4256, 7.4206, 7.4243, 7.4192, 7.4201, 7.4292, 7.4264, 7.4226, 7.4207, 7.4162, 7.4111, 7.4057, 7.4413, 7.4372, 7.4337, 7.4422, 7.4376, 7.4328, 7.428, 7.4237, 7.4222, 7.4177, 7.4127, 7.4578, 7.4547, 7.4496, 7.4339, 7.4417, 7.4379, 7.4353, 7.4303, 7.4266, 7.4345, 7.4423, 7.4373, 7.4326, 7.4276, 7.4232, 7.4319, 7.428, 7.4243, 7.4267, 7.4345, 7.4419, 7.4373, 7.4327, 7.4283, 7.431, 7.4263, 7.4226, 7.4176, 7.4247, 7.4202, 7.416, 7.4115, 7.407, 7.4022, 7.4105, 7.4183, 7.4029, 7.3997, 7.3962, 7.4055, 7.4016, 7.397, 7.3943, 7.391, 7.3869, 7.3829, 7.3781, 7.3737, 7.3693, 7.3768, 7.3729, 7.3695, 7.3674, 7.3631, 7.3664, 7.429, 7.4362, 7.432, 7.4391, 7.4466, 7.4437, 7.4394, 7.435, 7.4328, 7.4304, 7.4261, 7.4219, 7.4196, 7.4277, 7.4253, 7.4223, 7.4183, 7.4254, 7.4213, 7.4285, 7.4255, 7.4217, 7.4179, 7.425, 7.422, 7.4184, 7.4254, 7.4324, 7.4391, 7.4459, 7.4528, 7.4711, 7.4886, 7.4855, 7.4816, 7.4884, 7.4845, 7.4911, 7.4975, 7.5041, 7.5075, 7.5041, 7.5213, 7.5078, 7.5174, 7.5143, 7.5322, 7.5282, 7.5275, 7.524, 7.5205, 7.5174, 7.516, 7.5317, 7.5311, 7.5278, 7.5263, 7.5367, 7.5379, 7.5347, 7.5348, 7.5417, 7.5409, 7.5374, 7.5243, 7.5204, 7.5163, 7.5135, 7.52, 7.5176, 7.5496, 7.5462, 7.5423, 7.5488, 7.5467, 7.5428, 7.5407, 7.539, 7.5451, 7.5525, 7.5502, 7.5474, 7.5435, 7.5407, 7.5465, 7.544, 7.5402, 7.5278, 7.5339, 7.5407, 7.5472, 7.5432, 7.5399, 7.5455, 7.5513, 7.5686, 7.5742, 7.5701, 7.5663, 7.5627, 7.56, 7.5568, 7.5544, 7.5515, 7.5494, 7.5465, 7.5523, 7.5489, 7.5466, 7.5431, 7.5486, 7.5459, 7.543, 7.5395, 7.5279, 7.5243, 7.5204, 7.5177, 7.5153, 7.5121, 7.5185, 7.5147, 7.5114, 7.5173, 7.514, 7.5206, 7.5171, 7.5162, 7.5125, 7.5092, 7.4978, 7.4971, 7.4938, 7.4997, 7.4965, 7.5017, 7.5075, 7.5039, 7.5094, 7.5069, 7.5032, 7.4998, 7.5109, 7.5081, 7.5047, 7.503, 7.5134, 7.5187, 7.5276, 7.5275, 7.524, 7.5296, 7.5354, 7.5499, 7.5557, 7.5609, 7.5574, 7.5548, 7.5537, 7.5589, 7.5556, 7.5607, 7.5514, 7.5561, 7.5537, 7.5647, 7.5704, 7.5669, 7.5638, 7.5615, 7.5681, 7.5652, 7.5618, 7.566, 7.5629, 7.5677, 7.565, 7.5622, 7.5587, 7.5632, 7.5607, 7.5573, 7.5538, 7.5526, 7.55, 7.5553, 7.5534, 7.5505, 7.5479, 7.5533, 7.5498, 7.5466, 7.5432, 7.5475, 7.5524, 7.549, 7.5519, 7.5486, 7.554, 7.5593, 7.5563, 7.5614, 7.5579, 7.5475, 7.5524, 7.5577, 7.5555, 7.5608, 7.5579, 7.555, 7.5523, 7.5499, 7.5479, 7.545, 7.5418, 7.5388, 7.5368, 7.5418, 7.5468, 7.5445, 7.5498, 7.5465, 7.551, 7.5571, 7.5555, 7.561, 7.5739, 7.581, 7.5777, 7.583, 7.5798, 7.5767, 7.579, 7.5786, 7.5761, 7.5729, 7.5697, 7.5674, 7.5644, 7.5654, 7.5971, 7.6011, 7.598, 7.5957, 7.6002, 7.6043, 7.6018, 7.5985, 7.5961, 7.601, 7.5978, 7.5957, 7.6003, 7.6051, 7.6024, 7.5996, 7.5974, 7.6097, 7.6069, 7.6051, 7.6023, 7.6071, 7.6048, 7.6028, 7.6001, 7.5977, 7.5952, 7.5934, 7.5909, 7.5877, 7.5846, 7.5815, 7.5785, 7.5698, 7.5667, 7.5706, 7.5752, 7.5756, 7.5795, 7.584, 7.5808, 7.5779, 7.5751, 7.572, 7.569, 7.5663, 7.5644, 7.5646, 7.5685, 7.5728, 7.5717, 7.5687, 7.5734, 7.5704, 7.569, 7.5661, 7.5631, 7.5602, 7.5578, 7.5554, 7.5526, 7.5568, 7.554, 7.5512, 7.5483, 7.5461, 7.5441, 7.5486, 7.5469, 7.5452, 7.5492, 7.5533, 7.5505, 7.5475, 7.546, 7.5434, 7.5475, 7.5448, 7.5747, 7.5719, 7.5693, 7.5667, 7.5641, 7.5683, 7.5726, 7.5703, 7.5748, 7.5795, 7.5771, 7.5754, 7.5737, 7.5715, 7.577, 7.5751, 7.5791, 7.5769, 7.575, 7.5729, 7.5731, 7.571, 7.5691, 7.5733, 7.565, 7.563, 7.5602, 7.558, 7.5631, 7.5675, 7.5718, 7.5834, 7.5818, 7.5796, 7.5768, 7.5743, 7.5785, 7.5827, 7.5741, 7.5779, 7.5849, 7.582, 7.6081, 7.6054, 7.6034, 7.6007, 7.5997, 7.5977, 7.5955, 7.5928, 7.5902, 7.5883, 7.5864, 7.5839, 7.5814, 7.5793, 7.5771, 7.5806, 7.5781, 7.602, 7.6004, 7.5983, 7.6027, 7.6005, 7.6042, 7.602, 7.5995, 7.6142, 7.6165, 7.6143, 7.6122, 7.6106, 7.608, 7.6117, 7.6126, 7.6105, 7.6082, 7.6119, 7.6093, 7.6073, 7.6053, 7.6026, 7.6003, 7.5982, 7.5958, 7.595, 7.5926, 7.5902, 7.5875, 7.5917, 7.5891, 7.587, 7.5922, 7.5964, 7.5944, 7.5983, 7.5968, 7.6006, 7.598, 7.5955, 7.5929, 7.5964, 7.5938, 7.5971, 7.59, 7.5874, 7.5849, 7.5825, 7.58, 7.5775, 7.5754, 7.573, 7.5706, 7.574, 7.5763, 7.5742, 7.5723, 7.5703, 7.5683, 7.5665, 7.5645, 7.5624, 7.5598, 7.5575, 7.5556, 7.5533, 7.5517, 7.5502, 7.5485, 7.5578, 7.5562, 7.5543, 7.5599, 7.5575, 7.561, 7.5592, 7.5573, 7.5548, 7.5595, 7.5572, 7.5549, 7.5586, 7.5563, 7.5595, 7.5641, 7.5621, 7.5597, 7.563, 7.5607, 7.5639, 7.5675, 7.5659, 7.5636, 7.5614, 7.5602, 7.5579, 7.5563, 7.5538, 7.5518, 7.5501, 7.5482, 7.5462, 7.5495, 7.5474, 7.5459, 7.5437, 7.5475, 7.5454, 7.5433, 7.547, 7.5507, 7.555, 7.553, 7.5508, 7.5484, 7.5462, 7.5439, 7.542, 7.5397, 7.5376, 7.5359, 7.5337, 7.5315, 7.5349, 7.5326, 7.5313, 7.5295, 7.5334, 7.5315, 7.5294, 7.5329, 7.5362, 7.5342, 7.5321, 7.5355, 7.5334, 7.5317, 7.5296, 7.5295, 7.5275, 7.5263, 7.5242, 7.5276, 7.5257, 7.5238, 7.5219, 7.5307, 7.5286, 7.5266, 7.525, 7.528, 7.5258, 7.5291, 7.5324, 7.5306, 7.5338, 7.5316, 7.5294, 7.5272, 7.5256, 7.5262, 7.524, 7.5281, 7.5213, 7.5193, 7.519, 7.5221, 7.5214, 7.5192, 7.5198, 7.5184, 7.5181, 7.5435, 7.5475, 7.5468, 7.5452, 7.5431, 7.5414, 7.5402, 7.5435, 7.5412, 7.5391, 7.5382, 7.5362, 7.5341, 7.5323, 7.5303, 7.5288, 7.5266, 7.5251, 7.523, 7.5212, 7.5241, 7.5221, 7.52, 7.5181, 7.5113, 7.5147, 7.5178, 7.5222, 7.5259, 7.5247, 7.5282, 7.5315, 7.5296, 7.5332, 7.5367, 7.5346, 7.5328, 7.5358, 7.5337, 7.5316, 7.5339, 7.5322, 7.5311, 7.529, 7.5318, 7.5302, 7.5331, 7.5285, 7.5265, 7.53, 7.533, 7.5309, 7.5293, 7.5276, 7.5256, 7.5287, 7.5274, 7.5302, 7.5285, 7.5313, 7.5293, 7.5272, 7.5252, 7.5232, 7.5213, 7.5217, 7.5197, 7.5176, 7.5156, 7.5139, 7.5119, 7.5106, 7.5138, 7.5118, 7.51, 7.5084, 7.5119, 7.5103, 7.5093, 7.5072, 7.5052, 7.5033, 7.5013, 7.5109, 7.5136, 7.5116, 7.5096, 7.5037, 7.5017, 7.5045, 7.503, 7.5013, 7.4997, 7.5032, 7.5019, 7.5001, 7.5032, 7.5016, 7.5005, 7.4987, 7.5018, 7.5, 7.4983, 7.5014, 7.5002, 7.5035, 7.5025, 7.5021, 7.501, 7.5045, 7.5073, 7.5105, 7.5087, 7.5118, 7.5101, 7.5084, 7.5067, 7.5051, 7.4992, 7.4975, 7.4969, 7.5004, 7.4988, 7.5019, 7.496, 7.4992, 7.4977, 7.5006, 7.5036, 7.5067, 7.5064, 7.5066, 7.5051, 7.5077, 7.5063, 7.5047, 7.5032, 7.5015, 7.4999, 7.4985, 7.4972, 7.5056, 7.5044, 7.5219, 7.5251, 7.5237, 7.5224, 7.5209, 7.5341, 7.5424, 7.5457, 7.5443, 7.5423, 7.5407, 7.539, 7.5374, 7.5359, 7.5345, 7.5334, 7.5317, 7.5303, 7.5284, 7.5274, 7.5257, 7.5238, 7.5219, 7.5204, 7.523, 7.5216, 7.5242, 7.5226, 7.5215, 7.5197, 7.5223, 7.5209, 7.5189, 7.517, 7.5154, 7.514, 7.5131, 7.5119, 7.5103, 7.5088, 7.5076, 7.5104, 7.5132, 7.5294, 7.5278, 7.5305, 7.5288, 7.5315, 7.5259, 7.5438, 7.5483, 7.5469, 7.5468, 7.5456, 7.5489, 7.5471, 7.5457, 7.5443, 7.547, 7.548, 7.5463, 7.5449, 7.5479, 7.5461, 7.5488, 7.5475, 7.5462, 7.5449, 7.5475, 7.5456, 7.548, 7.5466, 7.5452, 7.5478, 7.5463, 7.549, 7.5473, 7.5588, 7.5576, 7.5563, 7.555, 7.5493, 7.5482, 7.547, 7.5461, 7.5443, 7.5487, 7.5518, 7.5509, 7.5494, 7.5522, 7.5518, 7.5603, 7.5585, 7.5584, 7.563, 7.5615, 7.5602, 7.5586, 7.5613, 7.5595, 7.5662, 7.5648, 7.5675, 7.5701, 7.5728, 7.571, 7.5699, 7.5685, 7.5677, 7.5659, 7.5642, 7.5627, 7.5614, 7.5602, 7.5588, 7.5575, 7.56, 7.5583, 7.5611, 7.5598, 7.5585, 7.5571, 7.5598, 7.5623, 7.5607, 7.5591, 7.5575, 7.5599, 7.5626, 7.5609, 7.5596, 7.558, 7.5649, 7.5637, 7.5627, 7.561, 7.5593, 7.5576, 7.556, 7.5551, 7.5534, 7.5573, 7.574, 7.5723, 7.5707, 7.5695, 7.5678, 7.5706, 7.5691, 7.5638, 7.5626, 7.5723, 7.5726, 7.5913, 7.5905, 7.5893, 7.5845, 7.583, 7.5817, 7.5854, 7.5879, 7.5826, 7.5809, 7.5796, 7.5784, 7.5767, 7.5752, 7.5737, 7.5723, 7.5706, 7.5654, 7.5644, 7.5628, 7.5611, 7.5599, 7.5586, 7.5569, 7.5553, 7.5578, 7.5563, 7.5551, 7.5576, 7.5598, 7.5586, 7.5572, 7.556, 7.559, 7.5578, 7.5564, 7.5589, 7.5572, 7.566, 7.5646, 7.5633, 7.566, 7.5683, 7.567, 7.5701, 7.5723, 7.5708, 7.5692, 7.5676, 7.566, 7.5644, 7.5667, 7.5658, 7.5689, 7.5675, 7.5661, 7.5647, 7.5632, 7.5616, 7.5639, 7.5622, 7.561, 7.5595, 7.5581, 7.5566, 7.5554, 7.554, 7.5524, 7.551, 7.5534, 7.5522, 7.5506, 7.5494, 7.5483, 7.5468, 7.5453, 7.5438, 7.5423, 7.5414, 7.5401, 7.5389, 7.5376, 7.5398, 7.5422, 7.5408, 7.5362, 7.5315, 7.5302, 7.5328, 7.5315, 7.534, 7.5328, 7.5353, 7.5337, 7.5326, 7.5323, 7.5344, 7.5332, 7.5316, 7.5304, 7.5288, 7.5279, 7.5265, 7.5249, 7.5236, 7.522, 7.5205, 7.523, 7.5216, 7.524, 7.5226, 7.5219, 7.5204, 7.5192, 7.5178, 7.5166, 7.5173, 7.5158, 7.5143, 7.5185, 7.517, 7.5155, 7.5198, 7.5205, 7.5194, 7.522, 7.5204, 7.5214, 7.52, 7.5262, 7.5289, 7.5273, 7.53, 7.5322, 7.5307, 7.5294, 7.5316, 7.5307, 7.533, 7.5316, 7.5304, 7.5325, 7.531, 7.5294, 7.529, 7.5275, 7.5299, 7.5398, 7.5384, 7.5374, 7.5362, 7.5348, 7.5334, 7.5326, 7.5314, 7.5299, 7.5287, 7.5311, 7.5334, 7.5358, 7.5345, 7.5368, 7.5391, 7.5467, 7.5455, 7.5478, 7.5463, 7.5491, 7.5479, 7.5535, 7.5519, 7.5505, 7.553, 7.552, 7.5511, 7.5496, 7.5521, 7.5541, 7.5561, 7.555, 7.5542, 7.5531, 7.5567, 7.5588, 7.5574, 7.5559, 7.5581, 7.5567, 7.5553, 7.554, 7.5495, 7.5449, 7.5435, 7.5434, 7.5455, 7.5448, 7.5469, 7.549, 7.5476, 7.5463, 7.5449, 7.5471, 7.5457, 7.5442, 7.5428, 7.5419, 7.5376, 7.5399, 7.5386, 7.5407, 7.5393, 7.5414, 7.5401, 7.5395, 7.5382, 7.5368, 7.5354, 7.5375, 7.5364, 7.5349, 7.5335, 7.5325, 7.531, 7.5332, 7.5354, 7.5373, 7.54, 7.5386, 7.5412, 7.5437, 7.5461, 7.5447, 7.5437, 7.5427, 7.5449, 7.5436, 7.5421, 7.5413, 7.5401, 7.5391, 7.538, 7.5403, 7.5404, 7.54, 7.5389, 7.5376, 7.5399, 7.5388, 7.5378, 7.5366, 7.5352, 7.534, 7.5327, 7.535, 7.5338, 7.5361, 7.5347, 7.5333, 7.5321, 7.535, 7.534, 7.5327, 7.5321, 7.5315, 7.5304, 7.5294, 7.5286, 7.5271, 7.526, 7.5281, 7.5283, 7.5272, 7.5262, 7.5266, 7.5256, 7.525, 7.5239, 7.5298, 7.5287, 7.5276, 7.5267, 7.5257, 7.5245, 7.5233, 7.5225, 7.5213, 7.5214, 7.5204, 7.5191, 7.5179, 7.517, 7.5162, 7.5156, 7.515, 7.517, 7.5156, 7.5153, 7.5143, 7.5132, 7.5118, 7.5105, 7.5096, 7.5083, 7.5074, 7.5066, 7.5069, 7.5055, 7.5047, 7.5036, 7.5026, 7.5045, 7.5031, 7.5018, 7.5037, 7.5034, 7.5022, 7.5009, 7.4996, 7.4983, 7.4971, 7.4958, 7.4973, 7.4961, 7.4984, 7.5003, 7.4997, 7.4984, 7.4971, 7.4992, 7.4979, 7.4966, 7.4956, 7.4946, 7.4934, 7.4921, 7.4908, 7.49, 7.489, 7.4911, 7.4913, 7.49, 7.489, 7.4891, 7.4877, 7.4866, 7.4858, 7.4846, 7.4835, 7.4821, 7.4839, 7.486, 7.488, 7.4867, 7.4853, 7.484, 7.4828, 7.4847, 7.4837, 7.4869, 7.4858, 7.4845, 7.4869, 7.4888, 7.4878, 7.4865, 7.4885, 7.4873, 7.4862, 7.4849, 7.4842, 7.483, 7.494, 7.4961, 7.4949, 7.4954, 7.4942, 7.493, 7.4888, 7.4876, 7.4866, 7.4859, 7.4849, 7.484, 7.4828, 7.4819, 7.4842, 7.4832, 7.4821, 7.4808, 7.4799, 7.4797, 7.4785, 7.4777, 7.4765, 7.4756, 7.4744, 7.4735, 7.4754, 7.4745, 7.4735, 7.4756, 7.4774, 7.4767, 7.4785, 7.4777, 7.4765, 7.4728, 7.4717, 7.4739, 7.4728, 7.4717, 7.4709, 7.4705, 7.4693, 7.4714, 7.4703, 7.4699, 7.4687, 7.4675, 7.4692, 7.468, 7.4701, 7.4721, 7.4743, 7.4798, 7.4815, 7.4835, 7.4852, 7.4811, 7.48, 7.4803, 7.4865, 7.4887, 7.4892, 7.4938, 7.4928, 7.498, 7.4972, 7.4961, 7.4951, 7.4942, 7.493, 7.4919, 7.4907, 7.4925, 7.4916, 7.4935, 7.4954, 7.4943, 7.4962, 7.495, 7.4939, 7.4927, 7.4915, 7.4933, 7.4921, 7.4921, 7.4911, 7.4988, 7.5009, 7.5001, 7.5023, 7.5076, 7.5064, 7.5084, 7.509, 7.5108, 7.5106, 7.5128, 7.5147, 7.5135, 7.5123, 7.5113, 7.5101, 7.5096, 7.5063, 7.5057, 7.5045, 7.5038, 7.5026, 7.5017, 7.5005, 7.4994, 7.4986, 7.4979, 7.4969, 7.4959, 7.4947, 7.4935, 7.4925, 7.4917, 7.4907, 7.4906, 7.4936, 7.493, 7.4918, 7.4962, 7.495, 7.4943, 7.4931, 7.492, 7.4939, 7.4927, 7.4921, 7.4958, 7.4975, 7.497, 7.4962, 7.4979, 7.4968, 7.4959, 7.4978, 7.4995, 7.4988, 7.4976, 7.4965, 7.4928, 7.4917, 7.4906, 7.4894, 7.4883, 7.4899, 7.489, 7.4879, 7.4867, 7.4886, 7.4878, 7.4896, 7.4941, 7.4929, 7.4917, 7.4906, 7.4896, 7.4914, 7.4903, 7.4892, 7.4881, 7.4901, 7.4892, 7.4911, 7.4931, 7.4922, 7.4938, 7.4932, 7.495, 7.4942, 7.4934, 7.4923, 7.4943, 7.4931, 7.4949, 7.4938, 7.493, 7.4902, 7.4921, 7.491, 7.4898, 7.4887, 7.4875, 7.4864, 7.4853, 7.4872, 7.489, 7.4909, 7.4901, 7.4892, 7.4884, 7.4879, 7.4869, 7.4858, 7.4846, 7.4844, 7.4834, 7.4823, 7.4847, 7.4865, 7.4854, 7.4877, 7.484, 7.4846, 7.4888, 7.4906, 7.4923, 7.4941, 7.493, 7.4946, 7.4935, 7.4924, 7.4912, 7.4902, 7.4893, 7.4882, 7.4877, 7.4866, 7.4855, 7.4845, 7.4833, 7.4852, 7.4842, 7.4831, 7.482, 7.4865, 7.4882, 7.487, 7.4859, 7.4851, 7.484, 7.483, 7.482, 7.4812, 7.4803, 7.4793, 7.4785, 7.4773, 7.4763, 7.4778, 7.477, 7.4762, 7.4751, 7.4741, 7.4736, 7.4755, 7.4747, 7.4738, 7.4756, 7.475, 7.4742, 7.4733, 7.4724, 7.4743, 7.4736, 7.473, 7.4695, 7.471, 7.4728, 7.4775, 7.4769, 7.4759, 7.475, 7.4741, 7.4732, 7.4747, 7.4766, 7.4755, 7.4773, 7.4763, 7.478, 7.4769, 7.4758, 7.4749, 7.4739, 7.4756, 7.4747, 7.4763, 7.4779, 7.4768, 7.4759, 7.475, 7.475, 7.4741, 7.4733, 7.4724, 7.4717, 7.4764, 7.4782, 7.4801, 7.4791, 7.4783, 7.4773, 7.4765, 7.4783, 7.4802, 7.4801, 7.4799, 7.4791, 7.4782, 7.4776, 7.4766, 7.4783, 7.4781, 7.4773, 7.4789, 7.4807, 7.4797, 7.4787, 7.4779, 7.4794, 7.481, 7.4799, 7.4815, 7.4808, 7.4798, 7.4764, 7.473, 7.4723, 7.4715, 7.4736, 7.473, 7.4721, 7.4712, 7.4709, 7.4701, 7.469, 7.4685, 7.4677, 7.4672, 7.4689, 7.468, 7.4672, 7.4665, 7.4661, 7.4653, 7.4647, 7.4637, 7.463, 7.4622, 7.4617, 7.4611, 7.467, 7.466, 7.4651, 7.4641, 7.4634, 7.4627, 7.4618, 7.4639, 7.4631, 7.4625, 7.4614, 7.4606, 7.4625, 7.4644, 7.4673, 7.4663, 7.4682, 7.4673, 7.4666, 7.4661, 7.4652, 7.4643, 7.4642, 7.4632, 7.4625, 7.4644, 7.4634, 7.4625, 7.4615, 7.4608, 7.4602, 7.4597, 7.4592, 7.4608, 7.4575, 7.4565, 7.4555, 7.4582, 7.4573, 7.4565, 7.4573, 7.4573, 7.4567, 7.4583, 7.4573, 7.4589, 7.4579, 7.4572, 7.4563, 7.4558, 7.4548, 7.4563, 7.4558, 7.455, 7.4542, 7.4539, 7.4529, 7.4519, 7.4512, 7.4502, 7.4519, 7.4518, 7.4535, 7.4528, 7.4518, 7.451, 7.4504, 7.4472, 7.4487, 7.4479, 7.447, 7.446, 7.4476, 7.4467, 7.446, 7.4453, 7.4443, 7.4434, 7.4427, 7.4419, 7.4411, 7.4401, 7.4418, 7.4409, 7.4438, 7.4438, 7.4416, 7.4407, 7.4401, 7.4392, 7.4383, 7.4375, 7.4368, 7.4361, 7.4351, 7.4341, 7.4332, 7.4348, 7.4341, 7.4356, 7.4346, 7.4387, 7.4381, 7.4399, 7.4417, 7.441, 7.4426, 7.4426, 7.4418, 7.4413, 7.4403, 7.4378, 7.4392, 7.4406, 7.4399, 7.4389, 7.4379, 7.4371, 7.4387, 7.4377, 7.4372, 7.4365, 7.4355, 7.4345, 7.4335, 7.4327, 7.4319, 7.4313, 7.4332, 7.4322, 7.4373, 7.4389, 7.4381, 7.4478, 7.4469, 7.4483, 7.4477, 7.4471, 7.4462, 7.4453, 7.4449, 7.4439, 7.4432, 7.4433, 7.4426, 7.4417, 7.4408, 7.4442, 7.4434, 7.4424, 7.444, 7.4435, 7.4449, 7.444, 7.4456, 7.4447, 7.4438, 7.4408, 7.4424, 7.4417, 7.4411, 7.4427, 7.4442, 7.4435, 7.4452, 7.4444, 7.4459, 7.4452, 7.4468, 7.4461, 7.4453, 7.4445, 7.444, 7.4437, 7.4455, 7.4472, 7.4467, 7.4459, 7.4453, 7.4445, 7.4437, 7.4428, 7.442, 7.4436, 7.4427, 7.4419, 7.4409, 7.4399, 7.439, 7.4404, 7.4394, 7.4384, 7.4375, 7.4415, 7.4407, 7.4399, 7.4392, 7.4382, 7.456, 7.4566, 7.4557, 7.455, 7.452, 7.449, 7.4481, 7.4472, 7.4465, 7.4608, 7.4599, 7.4591, 7.4585, 7.4576, 7.4592, 7.4582, 7.4575, 7.4566, 7.4582, 7.4598, 7.4647, 7.4638, 7.4632, 7.4624, 7.4639, 7.4632, 7.4647, 7.4639, 7.4635, 7.4626, 7.4617, 7.4607, 7.4598, 7.4589, 7.458, 7.4606, 7.4576, 7.4567, 7.4559, 7.4552, 7.4546, 7.4537, 7.453, 7.4545, 7.4559, 7.4552, 7.4543, 7.4538, 7.453, 7.4523, 7.4538, 7.4529, 7.452, 7.4518, 7.4515, 7.4509, 7.4501, 7.4494, 7.4486, 7.4477, 7.4468, 7.4459, 7.4455, 7.4446, 7.4493, 7.4488, 7.4512, 7.4487, 7.4502, 7.4507, 7.4528, 7.4551, 7.4542, 7.4535, 7.4526, 7.4518, 7.451, 7.4501, 7.4492, 7.4509, 7.45, 7.4515, 7.4505, 7.452, 7.4491, 7.4484, 7.4499, 7.449, 7.4484, 7.4499, 7.449, 7.4482, 7.4475, 7.4467, 7.4483, 7.4479, 7.4493, 7.4486, 7.4501, 7.4515, 7.4506, 7.4497, 7.4488, 7.4495, 7.449, 7.4481, 7.4495, 7.4512, 7.4525, 7.4539, 7.4532, 7.4523, 7.4515, 7.4574, 7.4568, 7.4559, 7.4554, 7.4548, 7.454, 7.4534, 7.4525, 7.4517, 7.4508, 7.4523, 7.4538, 7.4531, 7.4525, 7.4516, 7.4507, 7.4502, 7.4493, 7.4485, 7.4476, 7.4469, 7.4483, 7.4475, 7.4466, 7.4457, 7.4449, 7.444, 7.4456, 7.447, 7.4485, 7.4499, 7.449, 7.4483, 7.4474, 7.4468, 7.4481, 7.4472, 7.4463, 7.4479, 7.4492, 7.4486, 7.4477, 7.4468, 7.4508, 7.4521, 7.4513, 7.4507, 7.4523, 7.4514, 7.4508, 7.4523, 7.4515, 7.4507, 7.4498, 7.4491, 7.4483, 7.4474, 7.4469, 7.4461, 7.4474, 7.4467, 7.4464, 7.4458, 7.4452, 7.4444, 7.4437, 7.445, 7.4443, 7.4434, 7.4446, 7.446, 7.449, 7.4482, 7.4473, 7.4489, 7.4481, 7.4473, 7.4465, 7.4481, 7.4475, 7.4467, 7.4459, 7.445, 7.4464, 7.4463, 7.4456, 7.4451, 7.4423, 7.4416, 7.443, 7.4424, 7.4416, 7.4408, 7.44, 7.4391, 7.4383, 7.4375, 7.4389, 7.4383, 7.4397, 7.441, 7.4401, 7.4394, 7.4409, 7.4423, 7.4421, 7.4413, 7.4428, 7.4421, 7.4413, 7.4407, 7.4421, 7.4415, 7.441, 7.4403, 7.4417, 7.4411, 7.4404, 7.4398, 7.4391, 7.4383, 7.4375, 7.4388, 7.4382, 7.4374, 7.437, 7.4384, 7.4399, 7.4397, 7.439, 7.4383, 7.4376, 7.4391, 7.4406, 7.4399, 7.4394, 7.4386, 7.438, 7.4372, 7.4363, 7.4355, 7.4348, 7.4342, 7.435, 7.4343, 7.4335, 7.4327, 7.434, 7.4338, 7.433, 7.4322, 7.4335, 7.4328, 7.432, 7.4312, 7.4304, 7.4298, 7.4292, 7.4286, 7.43, 7.4292, 7.4337, 7.4331, 7.4348, 7.434, 7.4354, 7.4346, 7.4361, 7.4375, 7.4389, 7.4381, 7.4375, 7.4369, 7.4364, 7.4378, 7.4392, 7.4383, 7.4374, 7.4366, 7.4359, 7.4375, 7.4372, 7.4385, 7.4376, 7.4368, 7.436, 7.4354, 7.435, 7.4345, 7.4357, 7.4369, 7.4362, 7.4335, 7.4328, 7.4322, 7.432, 7.4293, 7.4285, 7.428, 7.4273, 7.4267, 7.4456, 7.4467, 7.4461, 7.4468, 7.446, 7.4452, 7.4466, 7.4476, 7.445, 7.4442, 7.4437, 7.4431, 7.4424, 7.4417, 7.4409, 7.4403, 7.4416, 7.4431, 7.4423, 7.4415, 7.4407, 7.4399, 7.4391, 7.4404, 7.4396, 7.441, 7.4423, 7.4415, 7.4407, 7.4401, 7.4394, 7.4387, 7.4382, 7.4376, 7.437, 7.4363, 7.4356, 7.4348, 7.4344, 7.4337, 7.4329, 7.4321, 7.4333, 7.4347, 7.4339, 7.4333, 7.4326, 7.4339, 7.4354, 7.4346, 7.4341, 7.4334, 7.4329, 7.439, 7.4403, 7.4399, 7.4373, 7.4385, 7.4377, 7.439, 7.4403, 7.4397, 7.4389, 7.4385, 7.4399, 7.4392, 7.4385, 7.4398, 7.4372, 7.4375, 7.4367, 7.4363, 7.4357, 7.4351, 7.4343, 7.4355, 7.4369, 7.4363, 7.4356, 7.435, 7.4381, 7.4373, 7.4365, 7.4357, 7.4371, 7.4363, 7.4377, 7.437, 7.4364, 7.4356, 7.4348, 7.434, 7.4354, 7.4372, 7.4389, 7.4414, 7.4467, 7.4445, 7.4438, 7.4412, 7.4386, 7.438, 7.4372, 7.4375, 7.4367, 7.4359, 7.4351, 7.4344, 7.4387, 7.44, 7.4392, 7.4389, 7.4381, 7.4393, 7.4387, 7.44, 7.4413, 7.4406, 7.4424, 7.4417, 7.4409, 7.4422, 7.4417, 7.441, 7.4402, 7.4394, 7.4389, 7.4381, 7.4377, 7.437, 7.4362, 7.4354, 7.4368, 7.4361, 7.4373, 7.4365, 7.4361, 7.4355, 7.4348, 7.4341, 7.4335, 7.4329, 7.4323, 7.4316, 7.4309, 7.4305, 7.4319, 7.4313, 7.4306, 7.43, 7.4293, 7.4286, 7.4279, 7.4276, 7.4269, 7.4263, 7.4255, 7.4266, 7.426, 7.4255, 7.425, 7.4243, 7.4235, 7.4228, 7.422, 7.4214, 7.4227, 7.4219, 7.4212, 7.4204, 7.42, 7.4213, 7.4303, 7.4297, 7.4289, 7.4281, 7.4274, 7.4287, 7.4301, 7.4295, 7.429, 7.4283, 7.4276, 7.4289, 7.4302, 7.4295, 7.4288, 7.4301, 7.4315, 7.4326, 7.4339, 7.4332, 7.4326, 7.4378, 7.437, 7.4362, 7.4355, 7.4351, 7.4344, 7.4356, 7.4352, 7.4364, 7.4376, 7.4372, 7.4365, 7.4357, 7.4351, 7.4345, 7.4341, 7.4335, 7.4352, 7.4345, 7.437, 7.4362, 7.4356, 7.4368, 7.4362, 7.4356, 7.4349, 7.4342, 7.4337, 7.4332, 7.4325, 7.4319, 7.4312, 7.4305, 7.432, 7.4317, 7.4312, 7.4287, 7.43, 7.4315, 7.4307, 7.4282, 7.4294, 7.4288, 7.4283, 7.4276, 7.4269, 7.4262, 7.4257, 7.427, 7.4264, 7.4256, 7.427, 7.4262, 7.4259, 7.4252, 7.4264, 7.4275, 7.4267, 7.4279, 7.4274, 7.4287, 7.4299, 7.4286, 7.4281, 7.4292, 7.4285, 7.4298, 7.429, 7.4284, 7.4278, 7.4291, 7.429, 7.4284, 7.4279, 7.4298, 7.4292, 7.4286, 7.4278, 7.427, 7.4264, 7.4256, 7.4248, 7.4241, 7.4234, 7.4256, 7.4268, 7.426, 7.4254, 7.4248, 7.4261, 7.4254, 7.4263, 7.4285, 7.4297, 7.4291, 7.4286, 7.4289, 7.4282, 7.4275, 7.4267, 7.4268, 7.426, 7.4271, 7.4264, 7.4275, 7.4268, 7.4263, 7.4259, 7.4252, 7.4246, 7.4257, 7.4249, 7.4241, 7.4252, 7.4245, 7.4257, 7.4251, 7.4263, 7.4256, 7.4252, 7.4246, 7.4241, 7.4236, 7.4251, 7.4263, 7.4275, 7.4268, 7.4261, 7.4254, 7.425, 7.4242, 7.4235, 7.4232, 7.4227, 7.4249, 7.4261, 7.4254, 7.4266, 7.4258, 7.4251, 7.4263, 7.4256, 7.4268, 7.4264, 7.4258, 7.4251, 7.4244, 7.422, 7.4213, 7.4208, 7.4201, 7.4213, 7.4189, 7.4184, 7.4196, 7.4208, 7.4202, 7.4197, 7.4194, 7.4189, 7.4184, 7.4177, 7.4172, 7.4166, 7.4159, 7.4172, 7.4186, 7.4219, 7.4225, 7.4237, 7.4233, 7.4255, 7.4251, 7.4247, 7.4243, 7.4238, 7.425, 7.4245, 7.4239, 7.4232, 7.4243, 7.4236, 7.4229, 7.4224, 7.4217, 7.4211, 7.4205, 7.4201, 7.4194, 7.4205, 7.4198, 7.4191, 7.4184, 7.4179, 7.4173, 7.4169, 7.4165, 7.4159, 7.4154, 7.4149, 7.4144, 7.4156, 7.4149, 7.4142, 7.4136, 7.4133, 7.4126, 7.4119, 7.4114, 7.411, 7.4117, 7.4111, 7.4104, 7.4098, 7.4091, 7.4084, 7.4079, 7.4073, 7.4067, 7.406, 7.4053, 7.405, 7.4043, 7.4055, 7.4054, 7.4048, 7.4078, 7.4074, 7.4068, 7.4062, 7.4057, 7.4053, 7.4064, 7.4042, 7.4054, 7.4048, 7.4042, 7.4042, 7.4039, 7.4032, 7.4027, 7.402, 7.4035, 7.4046, 7.4039, 7.4034, 7.4055, 7.4051, 7.4046, 7.4064, 7.4057, 7.4055, 7.405, 7.4043, 7.4038, 7.4049, 7.4044, 7.4057, 7.4053, 7.405, 7.4043, 7.406, 7.4053, 7.4047, 7.4045, 7.404, 7.4033, 7.4028, 7.4026, 7.4019, 7.4012, 7.4024, 7.402, 7.4033, 7.4027, 7.402, 7.4013, 7.4026, 7.4022, 7.4015, 7.4027, 7.4023, 7.4017, 7.4014, 7.4026, 7.4038, 7.405, 7.4043, 7.4072, 7.4065, 7.4058, 7.4051, 7.4045, 7.4056, 7.405, 7.4046, 7.4039, 7.4032, 7.4025, 7.402, 7.4013, 7.4006, 7.3999, 7.4009, 7.402, 7.4031, 7.4042, 7.4035, 7.4028, 7.4023, 7.4017, 7.4011, 7.4004, 7.3997, 7.4008, 7.4001, 7.3996, 7.3993, 7.4004, 7.3997, 7.4008, 7.4001, 7.3996, 7.3991, 7.3986, 7.3979, 7.3983, 7.3997, 7.3975, 7.4005, 7.4, 7.4021, 7.4016, 7.4014, 7.4011, 7.4023, 7.4042, 7.4035, 7.4031, 7.4042, 7.4039, 7.4033, 7.4028, 7.4021, 7.4015, 7.4008, 7.4021, 7.4015, 7.4009, 7.4002, 7.3995, 7.3989, 7.3987, 7.3983, 7.3977, 7.397, 7.3964, 7.3975, 7.3991, 7.3985, 7.3979, 7.3973, 7.3969, 7.3963, 7.3958, 7.3969, 7.3965, 7.3968, 7.3962, 7.3972, 7.3965, 7.3975, 7.3969, 7.3965, 7.3959, 7.3971, 7.3965, 7.3959, 7.3953, 7.3947, 7.3941, 7.3935, 7.3928, 7.3921, 7.3918, 7.3911, 7.3907, 7.3901, 7.3897, 7.3891, 7.3902, 7.3897, 7.3891, 7.3886, 7.3898, 7.3894, 7.3904, 7.3898, 7.3891, 7.3886, 7.3881, 7.3908, 7.3921, 7.3931, 7.3927, 7.3923, 7.3916, 7.3912, 7.3941, 7.397, 7.3963, 7.3958, 7.3952, 7.3963, 7.3958, 7.3952, 7.3947, 7.3957, 7.395, 7.396, 7.3956, 7.3953, 7.3951, 7.3963, 7.3958, 7.3953, 7.3948, 7.3951, 7.3946, 7.394, 7.3934, 7.393, 7.3908, 7.3903, 7.3896, 7.3892, 7.3887, 7.3883, 7.3894, 7.3904, 7.3898, 7.3943, 7.3954, 7.3954, 7.3933, 7.3927, 7.392, 7.3917, 7.3911, 7.3906, 7.3902, 7.3913, 7.3907, 7.3903, 7.39, 7.3895, 7.3889, 7.3882, 7.3877, 7.3922, 7.3935, 7.3932, 7.3967, 7.3979, 7.3982, 7.3977, 7.3971, 7.3964, 7.396, 7.3953, 7.3947, 7.3943, 7.3938, 7.3949, 7.3942, 7.3953, 7.3947, 7.394, 7.3934, 7.3928, 7.3926, 7.3935, 7.3946, 7.3957, 7.3951, 7.3944, 7.3955, 7.3949, 7.3943, 7.3938, 7.3949, 7.396, 7.3954, 7.3948, 7.3927, 7.3931, 7.3925, 7.3938, 7.3932, 7.3928, 7.3923, 7.3919, 7.3929, 7.3923, 7.3917, 7.3911, 7.3921, 7.3915, 7.3921, 7.3933, 7.3926, 7.392, 7.3914, 7.3911, 7.3905, 7.3899, 7.392, 7.3915, 7.391, 7.3904, 7.3898, 7.3891, 7.3901, 7.3895, 7.3889, 7.3884, 7.388, 7.386, 7.3857, 7.3858, 7.3838, 7.3832, 7.3835, 7.3833, 7.3845, 7.3856, 7.3867, 7.387700000000001, 7.3871, 7.3865, 7.3859, 7.3868, 7.3848, 7.3857, 7.3856, 7.385, 7.3832, 7.3826, 7.3826, 7.3839, 7.3906, 7.3907, 7.3918, 7.3912, 7.3907, 7.391, 7.3923, 7.3917, 7.3932, 7.3926, 7.3936, 7.3929, 7.3925, 7.3919, 7.4002, 7.3997, 7.3993, 7.3989, 7.3985, 7.3979, 7.3974, 7.397, 7.3964, 7.3959, 7.3952, 7.3962, 7.3958, 7.3952, 7.3948, 7.3942, 7.3953, 7.3948, 7.3959, 7.3954, 7.3951, 7.3953, 7.397, 7.3965, 7.396, 7.3971, 7.397, 7.3964, 7.3991, 7.3985, 7.3979, 7.3974, 7.3969, 7.3949, 7.396, 7.397, 7.3966, 7.3963, 7.3957, 7.3951, 7.3965, 7.3961, 7.3971, 7.3966, 7.3995, 7.3975, 7.3969, 7.3963, 7.3958, 7.3954, 7.3948, 7.3942, 7.3936, 7.393, 7.3925, 7.3921, 7.3915, 7.3909, 7.3919, 7.3915, 7.3911, 7.3906, 7.3916, 7.3947, 7.3967, 7.3961, 7.3955, 7.3949, 7.3962, 7.3974, 7.3953, 7.4016, 7.4029, 7.4024, 7.4034, 7.4045, 7.4068, 7.4062, 7.4072, 7.4067, 7.4061, 7.4056, 7.4066, 7.4061, 7.4061, 7.4071, 7.4081, 7.4078, 7.4074, 7.4083, 7.4078, 7.4073, 7.4067, 7.4062, 7.4073, 7.4053, 7.4049, 7.4044, 7.4039, 7.405, 7.4045, 7.4039, 7.4051, 7.4046, 7.4057, 7.4068, 7.4064, 7.4058, 7.4053, 7.4048, 7.4028, 7.4023, 7.4017, 7.4028, 7.4022, 7.4035, 7.4048, 7.4063, 7.4058, 7.4052, 7.4048, 7.4042, 7.4036, 7.4018, 7.4012, 7.4008, 7.4004, 7.3998, 7.4009, 7.4018, 7.4012, 7.4006, 7.4, 7.3996, 7.3991, 7.3986, 7.3981, 7.3977, 7.3972, 7.3967, 7.3961, 7.3958, 7.3953, 7.3964, 7.3973, 7.3984, 7.3979, 7.3974, 7.3985, 7.3997, 7.4007, 7.4001, 7.3995, 7.3989, 7.3983, 7.3977, 7.3973, 7.3984, 7.3979, 7.3992, 7.3987, 7.3996, 7.3991, 7.4, 7.3998, 7.398, 7.3986, 7.3967, 7.3976, 7.3973, 7.3967, 7.3963, 7.3957, 7.3956, 7.3951, 7.3947, 7.3945, 7.3941, 7.3935, 7.3934, 7.3928, 7.3938, 7.3933, 7.3949, 7.3959, 7.3956, 7.3951, 7.3945, 7.3955, 7.3951, 7.3949, 7.3959, 7.3953, 7.3947, 7.3959, 7.3968, 7.3962, 7.3956, 7.3952, 7.3948, 7.3945, 7.3942, 7.3937, 7.3931, 7.3926, 7.392, 7.3914, 7.3927, 7.3923, 7.3917, 7.3913, 7.3909, 7.3903, 7.3914, 7.392, 7.3914, 7.3923, 7.3917, 7.3912, 7.3908, 7.3904, 7.3899, 7.3893, 7.3888, 7.3882, 7.3892, 7.3901, 7.391, 7.3907, 7.3904, 7.3913, 7.3908, 7.3903, 7.3912, 7.3906, 7.3901, 7.3959, 7.3954, 7.3948, 7.3942, 7.3938, 7.3948, 7.3944, 7.3939, 7.3941, 7.3936, 7.3918, 7.3928, 7.3922, 7.3931, 7.3925, 7.392, 7.3914, 7.3924, 7.3922, 7.3918, 7.39, 7.3896, 7.3891, 7.3885, 7.3879, 7.3873, 7.3868, 7.388, 7.3889, 7.3884, 7.3894, 7.3903, 7.3899, 7.3908, 7.3903, 7.3898, 7.3893, 7.3887, 7.3884, 7.388, 7.3874, 7.3869, 7.3886, 7.3881, 7.3877, 7.3875, 7.3885, 7.3881, 7.3877, 7.3889, 7.3885, 7.3895, 7.3916, 7.3897, 7.3893, 7.3889, 7.3892, 7.3901, 7.3897, 7.3892, 7.3887, 7.3896, 7.3891, 7.3885, 7.3895, 7.3892, 7.3887, 7.3883, 7.3878, 7.3873, 7.3867, 7.3862, 7.3865, 7.3874, 7.386, 7.3841, 7.385, 7.3845, 7.384, 7.3834, 7.3829, 7.3825, 7.3822, 7.3817, 7.3812, 7.3821, 7.3815, 7.381, 7.3806, 7.3801, 7.3798, 7.3794, 7.3788, 7.3783, 7.3779, 7.3774, 7.3769, 7.3763, 7.3758, 7.3754, 7.3753, 7.3762, 7.3758, 7.3758, 7.3753, 7.3748, 7.3759, 7.3753, 7.376, 7.3755, 7.3765, 7.376, 7.3755, 7.3765, 7.376, 7.376, 7.3756, 7.3765, 7.376, 7.3769, 7.3764, 7.3761, 7.3757, 7.3753, 7.3762, 7.3762, 7.3771, 7.378, 7.379, 7.38, 7.3797, 7.3794, 7.3789, 7.3798, 7.3794, 7.3789, 7.3785, 7.378, 7.3775, 7.377, 7.3765, 7.3778, 7.3773, 7.3768, 7.3769, 7.3766, 7.3776, 7.3771, 7.3782, 7.3805, 7.3799, 7.3796, 7.3806, 7.3801, 7.381, 7.3806, 7.3801, 7.3797, 7.3793, 7.3775, 7.3784, 7.3779, 7.3775, 7.377, 7.3766, 7.3775, 7.377, 7.3766, 7.376, 7.3757, 7.3753, 7.3749, 7.3743, 7.3738, 7.3733, 7.3728, 7.3723, 7.372, 7.3731, 7.374, 7.3737, 7.3733, 7.3729, 7.3725, 7.3725, 7.3745, 7.374, 7.3735, 7.3732, 7.3726, 7.3723, 7.3732, 7.3727, 7.3722, 7.3716, 7.3712, 7.3708, 7.3703, 7.3699, 7.3694, 7.369, 7.3685, 7.3682, 7.3677, 7.3673, 7.3668, 7.3664, 7.366, 7.366, 7.3657, 7.3652, 7.3661, 7.3657, 7.3666, 7.3661, 7.3656, 7.3667, 7.3676, 7.367, 7.3679, 7.3687, 7.3682, 7.3682, 7.3682, 7.3676, 7.3676, 7.3672, 7.3668, 7.3664, 7.366, 7.3656, 7.3651, 7.3651, 7.3647, 7.3645, 7.3629, 7.3638, 7.3634, 7.3629, 7.3639, 7.3635, 7.3631, 7.3626, 7.3636, 7.3634, 7.3645, 7.3642, 7.3638, 7.3633, 7.3629, 7.3623, 7.3632, 7.3627, 7.3636, 7.3637, 7.3639, 7.3634, 7.3631, 7.3626, 7.3626, 7.3622, 7.3633, 7.3629, 7.3628, 7.3637, 7.3632, 7.3628, 7.3624, 7.3619, 7.3614, 7.3611, 7.3606, 7.3616, 7.3612, 7.3607, 7.3615, 7.3612, 7.3607, 7.3603, 7.3597, 7.3609, 7.3604, 7.3601, 7.361, 7.3606, 7.3601, 7.3596, 7.3592, 7.3591, 7.36, 7.3597, 7.3606, 7.3606, 7.36, 7.3609, 7.3605, 7.3664, 7.3673, 7.3669, 7.3664, 7.3674, 7.3669, 7.3665, 7.3661, 7.3656, 7.3642, 7.3652, 7.3646, 7.3657, 7.3652, 7.3649, 7.3644, 7.3641, 7.3637, 7.3639, 7.3648, 7.3657, 7.3652, 7.3664, 7.3687, 7.3682, 7.3682, 7.3678, 7.3673, 7.3683, 7.368, 7.3675, 7.367, 7.3693, 7.3689, 7.3685, 7.3681, 7.369, 7.3686, 7.3697, 7.3707, 7.3702, 7.3699, 7.3709, 7.3704, 7.37, 7.3695, 7.369, 7.3686, 7.3681, 7.3694, 7.3689, 7.3685, 7.368, 7.3675, 7.3671, 7.3666, 7.3661, 7.3671, 7.3704, 7.3699, 7.3708, 7.3703, 7.3699, 7.3697, 7.3706, 7.3702, 7.3699, 7.3708, 7.3703, 7.3699, 7.3694, 7.369, 7.3685, 7.368, 7.369000000000001, 7.370000000000001, 7.3708, 7.3703, 7.3712, 7.3707, 7.369, 7.3699, 7.3695, 7.3705, 7.3715, 7.371, 7.3722, 7.3718, 7.3714, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.3691, 7.3686, 7.3681, 7.3676, 7.3671, 7.3666, 7.3662, 7.3671, 7.3669, 7.3664, 7.3672, 7.3667, 7.3662, 7.3657, 7.364, 7.3635, 7.363, 7.3625, 7.362, 7.3618, 7.3613, 7.3611, 7.3607, 7.3602, 7.3598, 7.3596, 7.3594, 7.3603, 7.3613, 7.361, 7.3605, 7.3602, 7.3611, 7.3621, 7.3631, 7.364, 7.3637, 7.3633, 7.3629, 7.3628, 7.3611, 7.362, 7.3615, 7.3611, 7.3607, 7.3602, 7.3597, 7.3593, 7.3588, 7.3585, 7.358, 7.3575, 7.3572, 7.358, 7.3576, 7.3573, 7.3568, 7.3567, 7.36, 7.3595, 7.3593, 7.3588, 7.3585, 7.3582, 7.3578, 7.3613, 7.3609, 7.3631, 7.3626, 7.3644, 7.3669, 7.3677, 7.3672, 7.3667, 7.3663, 7.3659, 7.3656, 7.3639, 7.3647, 7.3643, 7.3652, 7.3654, 7.3638, 7.3634, 7.3632, 7.364, 7.3635, 7.3631, 7.3639, 7.3635, 7.363, 7.3625, 7.3633, 7.3628, 7.3624, 7.3633, 7.3629, 7.3625, 7.3621, 7.3617, 7.364, 7.3636, 7.3631, 7.3626, 7.3622, 7.362, 7.3616, 7.3633, 7.3633, 7.3629, 7.3639, 7.3647, 7.3642, 7.3638, 7.3634, 7.363, 7.3629, 7.3638, 7.3633, 7.3629, 7.3626, 7.3622, 7.3618, 7.3616, 7.3614, 7.3629, 7.3641, 7.365, 7.3646, 7.3641, 7.3663, 7.3658, 7.3661, 7.3657, 7.3653, 7.3649, 7.3657, 7.3665, 7.3675, 7.3658, 7.3653, 7.3649, 7.3657, 7.3652, 7.3648, 7.3657, 7.3653, 7.3648, 7.3657, 7.3653, 7.3648, 7.3644, 7.364, 7.3637, 7.3632, 7.364, 7.3649, 7.3657, 7.3652, 7.3648, 7.3645, 7.3642, 7.3638, 7.3636, 7.3631, 7.3627, 7.3623, 7.3619, 7.362, 7.3628, 7.3636, 7.3631, 7.364, 7.3635, 7.3642, 7.3642, 7.3637, 7.3632, 7.363, 7.3626, 7.3622, 7.3618, 7.3627, 7.3627, 7.3624, 7.3621, 7.3616, 7.3624, 7.365, 7.3645, 7.3641, 7.3636, 7.3644, 7.3653, 7.365, 7.3659, 7.3654, 7.3649, 7.3646, 7.3644, 7.3641, 7.3638, 7.3647, 7.3646, 7.3642, 7.3639, 7.3636, 7.3644, 7.3639, 7.3635, 7.3618, 7.3627, 7.3635, 7.3631, 7.364, 7.3661, 7.3656, 7.3643, 7.3638, 7.3635, 7.3632, 7.3642, 7.3639, 7.3635, 7.3631, 7.3627, 7.3636, 7.3631, 7.3628, 7.3624, 7.362, 7.3619, 7.3616, 7.3623, 7.3619, 7.3616, 7.3612, 7.3607, 7.3604, 7.3603, 7.3599, 7.3606, 7.3603, 7.3599, 7.3595, 7.359, 7.3599, 7.3626, 7.3655, 7.3651, 7.3647, 7.3661, 7.3658, 7.3654, 7.3649, 7.3645, 7.3641, 7.3636, 7.3632, 7.3627, 7.3622, 7.3618, 7.3617, 7.3626, 7.3634, 7.3635, 7.3631, 7.3626, 7.3621, 7.3605, 7.36, 7.3595, 7.3596, 7.3593, 7.3589, 7.3586, 7.3582, 7.3578, 7.3578, 7.3574, 7.357, 7.3566, 7.3563, 7.356, 7.3569, 7.3564, 7.356, 7.3556, 7.3552, 7.3561, 7.3557, 7.3552, 7.3561, 7.3556, 7.3563, 7.3559, 7.3554, 7.3549, 7.3557, 7.3552, 7.3548, 7.3543, 7.3551, 7.3572, 7.3593, 7.3589, 7.3586, 7.3581, 7.3576, 7.3572, 7.358, 7.3575, 7.3572, 7.3582, 7.3578, 7.3574, 7.3557, 7.3554, 7.3563, 7.3561, 7.3556, 7.3551, 7.3549, 7.3544, 7.3539, 7.3536, 7.3531, 7.3539, 7.3536, 7.3549, 7.3557, 7.3553, 7.3549, 7.3544, 7.3552, 7.3549, 7.3546, 7.3554, 7.3562, 7.3559, 7.3554, 7.3549, 7.355, 7.3538, 7.3533, 7.3542, 7.3539, 7.3547, 7.3543, 7.3544, 7.3541, 7.3549, 7.3556, 7.3545, 7.3542, 7.3538, 7.3534, 7.3529, 7.3525, 7.3522, 7.3518, 7.3513, 7.3522, 7.352, 7.3516, 7.3513, 7.3509, 7.3517, 7.3501, 7.3496, 7.3505, 7.3516, 7.3512, 7.3497, 7.3494, 7.349, 7.3485, 7.3492, 7.3489, 7.3485, 7.348, 7.348, 7.3475, 7.3471, 7.3479, 7.3475, 7.3482, 7.3503, 7.3512, 7.352, 7.3516, 7.3525, 7.3533, 7.3529, 7.3526, 7.3537, 7.3533, 7.3529, 7.3536, 7.3544, 7.3552, 7.3547, 7.3556, 7.3565, 7.3573, 7.3568, 7.3565, 7.3573, 7.3581, 7.3577, 7.3573, 7.358, 7.359, 7.3599, 7.3594, 7.3591, 7.3587, 7.3582, 7.3579, 7.3587, 7.3583, 7.3579, 7.3575, 7.3582, 7.3591, 7.36, 7.3596, 7.3593, 7.3601, 7.3598, 7.3593, 7.359, 7.3585, 7.3581, 7.3576, 7.3571, 7.3567, 7.3552, 7.3561, 7.3557, 7.3557, 7.3553, 7.3551, 7.3546, 7.3542, 7.3538, 7.3534, 7.3543, 7.354, 7.3548, 7.3546, 7.3542, 7.3538, 7.3552, 7.3548, 7.3544, 7.3542, 7.3538, 7.3533, 7.3529, 7.355, 7.3558, 7.3554, 7.3549, 7.3544, 7.3542, 7.3538, 7.3546, 7.3542, 7.3537, 7.3545, 7.354, 7.3536, 7.3532, 7.354, 7.3536, 7.3533, 7.3528, 7.3535, 7.3532, 7.3527, 7.3523, 7.3519, 7.3519, 7.3515, 7.3512, 7.3508, 7.3504, 7.3514, 7.3509, 7.3505, 7.3502, 7.3497, 7.3494, 7.3491, 7.3488, 7.3484, 7.3479, 7.3487, 7.3483, 7.3479, 7.3487, 7.3484, 7.348, 7.3476, 7.3471, 7.3479, 7.3464, 7.346, 7.3457, 7.3453, 7.3448, 7.3456, 7.3454, 7.345, 7.3445, 7.3441, 7.3438, 7.3447, 7.3445, 7.3442, 7.3438, 7.3434, 7.343, 7.3445, 7.3442, 7.3438, 7.3445, 7.3441, 7.3438, 7.3435, 7.3433, 7.3428, 7.3426, 7.3433, 7.3418, 7.3413, 7.3408, 7.3406, 7.3402, 7.3398, 7.3406, 7.3404, 7.3401, 7.3396, 7.3392, 7.3399, 7.3396, 7.3404, 7.3412, 7.342, 7.3417, 7.3413, 7.3409, 7.3405, 7.34, 7.3407, 7.3403, 7.3399, 7.3407, 7.3427, 7.3425, 7.3421, 7.3429, 7.3436, 7.3444, 7.3429, 7.3426, 7.3423, 7.3408, 7.3418, 7.3415, 7.3412, 7.3408, 7.3405, 7.3401, 7.3411, 7.3407, 7.3404, 7.34, 7.3396, 7.3391, 7.3387, 7.3385, 7.3382, 7.3378, 7.3387, 7.3383, 7.3378, 7.3374, 7.3372, 7.3367, 7.3374, 7.337, 7.3379, 7.3386, 7.3382, 7.3379, 7.3375, 7.3371, 7.3367, 7.3364, 7.336, 7.3356, 7.3364, 7.3372, 7.3368, 7.3364, 7.3364, 7.336, 7.3355, 7.335, 7.3357, 7.3353, 7.3361, 7.3356, 7.3364, 7.336, 7.3357, 7.3352, 7.3349, 7.3346, 7.3343, 7.3339, 7.3337, 7.3335, 7.3335, 7.3331, 7.3339, 7.3335, 7.3331, 7.3328, 7.3325, 7.3332, 7.334, 7.3349, 7.3348, 7.3355, 7.3363, 7.337, 7.3365, 7.3361, 7.3358, 7.3354, 7.3353, 7.336, 7.3356, 7.3353, 7.336, 7.3368, 7.3366, 7.3351, 7.3347, 7.3343, 7.3341, 7.3337, 7.3333, 7.3344, 7.334, 7.3348, 7.3361, 7.3347, 7.3343, 7.3339, 7.3336, 7.3332, 7.334, 7.3337, 7.3333, 7.3329, 7.3324, 7.332, 7.3316, 7.3312, 7.3308, 7.3304, 7.3312, 7.3309, 7.3304, 7.3301, 7.3297, 7.3294, 7.3291, 7.3298, 7.3306, 7.3303, 7.3306, 7.3316, 7.3311, 7.3308, 7.3315, 7.3311, 7.3308, 7.3306, 7.3302, 7.33, 7.3307, 7.3303, 7.3299, 7.3297, 7.3306, 7.3304, 7.3318, 7.3326, 7.3323, 7.3321, 7.3331, 7.3356, 7.3364, 7.336, 7.3368, 7.3376, 7.3386, 7.3382, 7.3378, 7.3375, 7.3383, 7.3368, 7.3365, 7.3361, 7.3357, 7.3353, 7.3353, 7.3352, 7.3359, 7.3355, 7.3351, 7.3347, 7.3344, 7.334, 7.3336, 7.3333, 7.3329, 7.3325, 7.3332, 7.333, 7.3326, 7.3325, 7.3332, 7.3328, 7.3325, 7.3311, 7.3307, 7.3307, 7.3304, 7.33, 7.3296, 7.3292, 7.3289, 7.3297, 7.3298, 7.3305, 7.3301, 7.3298, 7.3294, 7.329, 7.3286, 7.3282, 7.3278, 7.3264, 7.326, 7.3257, 7.3254, 7.325, 7.3258, 7.3257, 7.3254, 7.324, 7.3226, 7.3234, 7.3277, 7.3274, 7.327, 7.3267, 7.3263, 7.326, 7.3258, 7.3255, 7.3253, 7.325, 7.3246, 7.3254, 7.325, 7.3257, 7.3254, 7.325, 7.3246, 7.3243, 7.324, 7.3236, 7.3232, 7.3228, 7.3224, 7.3231, 7.3232, 7.3218, 7.3225, 7.3221, 7.3217, 7.3213, 7.322, 7.3227, 7.3223, 7.3219, 7.3215, 7.3212, 7.3261, 7.3258, 7.3265, 7.3272, 7.328, 7.3277, 7.3284, 7.3281, 7.3277, 7.3273, 7.327, 7.328, 7.3276, 7.3273, 7.327, 7.3267, 7.3263, 7.3259, 7.3255, 7.3256, 7.3263, 7.326, 7.3255, 7.3253, 7.325, 7.3247, 7.3254, 7.325, 7.3246, 7.3235, 7.3231, 7.3229, 7.3225, 7.3221, 7.3228, 7.3224, 7.322, 7.3217, 7.3213, 7.322, 7.3216, 7.3212, 7.3222000000000005, 7.323, 7.3226, 7.3222, 7.3231, 7.3241000000000005, 7.325100000000001, 7.326100000000001, 7.3258, 7.3277, 7.3266, 7.3262, 7.3269, 7.3265, 7.3261, 7.3268, 7.3275, 7.3282, 7.329, 7.3286, 7.3294, 7.329, 7.3308, 7.3304, 7.3323, 7.332, 7.3316, 7.3323, 7.332, 7.3318, 7.3315, 7.3311, 7.3318, 7.332800000000001, 7.3326, 7.3323, 7.332, 7.3319, 7.3316, 7.3323, 7.332, 7.3316, 7.3321, 7.332, 7.3316, 7.3313, 7.331, 7.3318, 7.3314, 7.3312, 7.3325, 7.3321, 7.332, 7.3325, 7.3321, 7.333, 7.3338, 7.3336, 7.3343, 7.3339, 7.3337, 7.3333, 7.3329, 7.3325, 7.3321, 7.3318, 7.3315, 7.3322, 7.3319, 7.3327, 7.3324, 7.3322, 7.333200000000001, 7.334200000000001, 7.334, 7.3336, 7.3332, 7.3328, 7.3335, 7.3331, 7.3318, 7.3364, 7.336, 7.3356, 7.3358, 7.3365, 7.3361, 7.3369, 7.3366, 7.3377, 7.3374, 7.3374, 7.3374, 7.3375, 7.3371, 7.3368, 7.3364, 7.336, 7.3356, 7.3352, 7.3359, 7.3355, 7.3351, 7.3348, 7.3344, 7.334, 7.3347, 7.3354, 7.3353, 7.3349, 7.3345, 7.3341, 7.3337, 7.3334, 7.3332, 7.3339, 7.3336, 7.3333, 7.3329, 7.3336, 7.3332, 7.3339, 7.3335, 7.3331, 7.3328, 7.3326, 7.3322, 7.3318, 7.3314, 7.331, 7.3307, 7.3303, 7.33, 7.3307, 7.3303, 7.3299, 7.3296, 7.3303, 7.33, 7.3297, 7.3304, 7.33, 7.3296, 7.3325, 7.3321, 7.3318, 7.3337, 7.3367, 7.3366, 7.3363, 7.3359, 7.3356, 7.3352, 7.3348, 7.3344, 7.3341, 7.3338, 7.3337, 7.3335, 7.3332, 7.3341, 7.3338, 7.3336, 7.3344, 7.3341, 7.3338, 7.3335, 7.3331, 7.3328, 7.3335, 7.3331, 7.3338, 7.3334, 7.3331, 7.3332, 7.3329, 7.3328, 7.3335, 7.3332, 7.3328, 7.3324, 7.3321, 7.3339, 7.3335, 7.3333, 7.334, 7.3336, 7.3345, 7.3353, 7.335, 7.3357, 7.3354, 7.3361, 7.3357, 7.3364, 7.3361, 7.3358, 7.3354, 7.335, 7.3364, 7.3361, 7.3367, 7.3364, 7.337, 7.3367, 7.3375, 7.3373, 7.3371, 7.3367, 7.3354, 7.3352, 7.3349, 7.3346, 7.3343, 7.334, 7.3336, 7.3333, 7.333, 7.3327, 7.3324, 7.3322, 7.3319, 7.3315, 7.3323, 7.3321, 7.3318, 7.3327, 7.3324, 7.332, 7.3306, 7.3303, 7.3299, 7.3296, 7.3293, 7.3289, 7.3297, 7.3294, 7.329, 7.3299, 7.3306, 7.3303, 7.3301, 7.3297, 7.3294, 7.33, 7.3307, 7.3314, 7.3311, 7.3307, 7.3303, 7.329, 7.3287, 7.3283, 7.3279, 7.3292, 7.33, 7.3296, 7.3293, 7.3301, 7.3307, 7.3313, 7.331, 7.3306, 7.3318, 7.3325, 7.3321, 7.3329, 7.3336, 7.3332, 7.3328, 7.3325, 7.3331, 7.3339, 7.3347, 7.3344, 7.334, 7.3336, 7.3332, 7.3328, 7.3334, 7.3331, 7.3327, 7.3334, 7.3341, 7.3337, 7.3344, 7.334, 7.3337, 7.3335, 7.3342, 7.3342, 7.3338, 7.3335, 7.3331, 7.3327, 7.3356, 7.3384, 7.3391, 7.3387, 7.3394, 7.3392, 7.3399, 7.3395, 7.3406, 7.3402, 7.3409, 7.3417, 7.3422, 7.3429, 7.3428, 7.3425, 7.3421, 7.3427, 7.3424, 7.342, 7.3417, 7.3414, 7.3412, 7.3419, 7.3415, 7.3412, 7.3409, 7.3405, 7.3403, 7.34, 7.3401, 7.3448, 7.3445, 7.3443, 7.3449, 7.3448, 7.3445, 7.3442, 7.3461, 7.3459, 7.3466, 7.3473, 7.3471, 7.3468, 7.3475, 7.3472, 7.3469, 7.3477, 7.3474, 7.3462, 7.3458, 7.3454, 7.345, 7.3437, 7.3438, 7.3435, 7.3436, 7.3441, 7.3442, 7.344, 7.3437, 7.3438, 7.3441, 7.3437, 7.3493, 7.35, 7.3497, 7.3496, 7.3494, 7.349, 7.3487, 7.3484, 7.348, 7.3477, 7.3475, 7.3472, 7.3468, 7.3464, 7.347, 7.3457, 7.3463, 7.3479, 7.3475, 7.3482, 7.3479, 7.3484, 7.348, 7.3476, 7.3476, 7.3472, 7.3468, 7.3465, 7.3462, 7.3459, 7.3455, 7.3451, 7.3448, 7.3445, 7.3441, 7.3448, 7.3444, 7.3441, 7.3448, 7.3455, 7.3451, 7.3447, 7.3443, 7.3439, 7.3436, 7.3433, 7.343, 7.3437, 7.3447000000000005, 7.3453, 7.345, 7.3454, 7.3451, 7.3449, 7.3456, 7.3452, 7.3449, 7.3445, 7.3442, 7.344, 7.3436, 7.3432, 7.3431, 7.343, 7.3436, 7.3432, 7.343, 7.3427, 7.3426, 7.3422, 7.3419, 7.3416, 7.3422, 7.3442, 7.344, 7.3437, 7.3444, 7.3441, 7.3438, 7.3434, 7.343, 7.3426, 7.3422, 7.3418, 7.3425, 7.3432, 7.3429, 7.3439000000000005, 7.3487, 7.3497, 7.3494, 7.349, 7.3488, 7.3485, 7.3484, 7.3491, 7.3487, 7.3484, 7.3485, 7.3483, 7.3481, 7.3478, 7.3475, 7.3482, 7.3488, 7.3485, 7.3482, 7.3488, 7.3485, 7.3484, 7.348, 7.3478, 7.3474, 7.347, 7.3467, 7.3464, 7.346, 7.3457, 7.3454, 7.3461, 7.3457, 7.3465, 7.3462, 7.3458, 7.3455, 7.3452, 7.345, 7.3449, 7.3446, 7.3442, 7.3448, 7.3444, 7.344, 7.345, 7.3457, 7.3454, 7.3451, 7.3448, 7.3444, 7.3441, 7.3448, 7.3447, 7.3455, 7.3452, 7.3448, 7.3444, 7.3441, 7.3448, 7.3448, 7.3455, 7.3442, 7.3439, 7.3436, 7.3447, 7.3443, 7.344, 7.3447, 7.3444, 7.3441, 7.3437, 7.3435, 7.3431, 7.3428, 7.3436, 7.3434, 7.3445, 7.3452, 7.3469, 7.3467, 7.3464, 7.3461, 7.3461, 7.3458, 7.3455, 7.3452, 7.3448, 7.3435, 7.3433, 7.3429, 7.3425, 7.3421, 7.3418, 7.3425, 7.3422, 7.3425, 7.3436, 7.3443, 7.345, 7.3446, 7.3452, 7.3449, 7.3456, 7.3453, 7.345, 7.3447, 7.3444, 7.3443, 7.3439, 7.3445, 7.3451, 7.345, 7.3449, 7.3445, 7.3433, 7.3431, 7.3432, 7.3429, 7.3427, 7.3424, 7.3421, 7.3417, 7.3414, 7.3414, 7.3411, 7.3408, 7.3415, 7.3411, 7.3408, 7.3405, 7.3401, 7.3399, 7.3397, 7.3394, 7.339, 7.3387, 7.339, 7.3397, 7.3403, 7.34, 7.3399, 7.3396, 7.3392, 7.3389, 7.3386, 7.3404, 7.341, 7.3406, 7.3403, 7.34, 7.3407, 7.3406, 7.3403, 7.3413, 7.341, 7.3420000000000005, 7.343000000000001, 7.3427, 7.3423, 7.342, 7.3417, 7.3426, 7.3424, 7.3432, 7.3429, 7.3436, 7.3443, 7.344, 7.3437, 7.3445, 7.3443, 7.344, 7.3437, 7.3434, 7.3431, 7.3438, 7.3436, 7.3425, 7.3422, 7.3418, 7.3415, 7.3422, 7.3418, 7.3425, 7.3413, 7.341, 7.3406, 7.3402, 7.3398, 7.3394, 7.3392, 7.3389, 7.3396, 7.3393, 7.3399, 7.3388, 7.3395, 7.3392, 7.3389, 7.343, 7.3437, 7.3443, 7.344, 7.3448, 7.3445, 7.3453, 7.3463, 7.346, 7.347, 7.3466, 7.3454, 7.345, 7.3447, 7.3444, 7.3443, 7.3449, 7.3446, 7.3453, 7.3452, 7.3458, 7.3455, 7.3453, 7.345, 7.3448, 7.3445, 7.3442, 7.3439, 7.3448, 7.3446, 7.3443, 7.3441, 7.3438, 7.3438, 7.3434, 7.3431, 7.3429, 7.3427, 7.3436, 7.3434, 7.3432, 7.3429, 7.3437, 7.3434, 7.3442, 7.345, 7.3458, 7.3455, 7.3461, 7.3459, 7.3457, 7.3454, 7.346, 7.3466, 7.3476, 7.3483, 7.348, 7.3477, 7.3474, 7.347, 7.3468, 7.3465, 7.3463, 7.346, 7.3466, 7.3462, 7.3458, 7.3457, 7.3454, 7.3453, 7.3459, 7.3456, 7.3452, 7.3458, 7.3454, 7.3451, 7.3457, 7.3445, 7.3453, 7.3463, 7.3451, 7.3449, 7.3446, 7.3444, 7.3451, 7.3448, 7.3444, 7.3441, 7.3438, 7.3435, 7.3432, 7.343, 7.3421, 7.3418, 7.3414, 7.3412, 7.3409, 7.3405, 7.3402, 7.3399, 7.3396, 7.3393, 7.339, 7.3387, 7.3384, 7.3381, 7.3378, 7.3375, 7.3363, 7.336, 7.3366, 7.3362, 7.3359, 7.3356, 7.3353, 7.3359, 7.3355, 7.3352, 7.335, 7.3356, 7.3355, 7.3351, 7.3339, 7.3336, 7.3333, 7.3331, 7.3329, 7.334, 7.3346, 7.3342, 7.3349, 7.3346, 7.3342, 7.3338, 7.3344, 7.3341, 7.3338, 7.3343, 7.334, 7.3346, 7.3352, 7.3348, 7.3344, 7.3341, 7.3338, 7.3326, 7.3366, 7.3372, 7.3368, 7.3365, 7.3362, 7.3358, 7.3355, 7.3351, 7.3348, 7.3346, 7.3344, 7.334, 7.3337, 7.3333, 7.3321, 7.3337, 7.3334, 7.3331, 7.3332, 7.3329, 7.3327, 7.3325, 7.3322, 7.332, 7.3317, 7.3313, 7.3311, 7.3308, 7.3305, 7.3311, 7.3307, 7.3306, 7.3302, 7.33, 7.3299, 7.3296, 7.3304, 7.3302, 7.3299, 7.3296, 7.3313, 7.3321, 7.3318, 7.3324, 7.3321, 7.3318, 7.3315, 7.3321, 7.3318, 7.3315, 7.3316, 7.3314, 7.3321, 7.3318, 7.3323, 7.3319, 7.332, 7.3317, 7.3314, 7.331, 7.3317, 7.3314, 7.331, 7.3307, 7.3304, 7.33, 7.3306, 7.3303, 7.3299, 7.3295, 7.333, 7.3327, 7.3332, 7.3328, 7.3316, 7.3304, 7.3301, 7.33, 7.3306, 7.3303, 7.3309, 7.3316, 7.3322, 7.3319, 7.3316, 7.3322, 7.3319, 7.3318, 7.3315, 7.3313, 7.3311, 7.3308, 7.3297, 7.3294, 7.3291, 7.329, 7.3287, 7.3284, 7.33, 7.3306, 7.3304, 7.3302, 7.3299, 7.3295, 7.3301, 7.3298, 7.3295, 7.3292, 7.329, 7.3288, 7.3287, 7.3293, 7.3299, 7.3296, 7.3293, 7.3289, 7.3287, 7.3285, 7.3282, 7.331, 7.3316, 7.3313, 7.331, 7.3307, 7.3304, 7.3302, 7.3308, 7.3314, 7.3311, 7.3317, 7.3314, 7.331, 7.3318, 7.3314, 7.332, 7.3317, 7.3313, 7.331, 7.3308, 7.3304, 7.3314, 7.3311, 7.3307, 7.3313, 7.3311, 7.3308, 7.3306, 7.3305, 7.3302, 7.3299, 7.3296, 7.3295, 7.3292, 7.3299, 7.3296, 7.3293, 7.329, 7.3296, 7.3302, 7.3298, 7.3302, 7.3312, 7.3309, 7.3306, 7.3303, 7.3328, 7.3325, 7.3324, 7.3321, 7.3328, 7.3338, 7.3326, 7.3332, 7.3329, 7.3326, 7.3314, 7.3315, 7.3313, 7.3312, 7.331, 7.3307, 7.3304, 7.332, 7.3358, 7.3355, 7.337, 7.3367, 7.3378, 7.3403, 7.34, 7.3416, 7.3407, 7.3403, 7.34, 7.3399, 7.3396, 7.3401, 7.3398, 7.3395, 7.3393, 7.339, 7.3388, 7.3386, 7.3384, 7.339, 7.3388, 7.3394, 7.339, 7.3387, 7.3393, 7.339, 7.3386, 7.3384, 7.3391, 7.3397, 7.3402, 7.3398, 7.3404, 7.3401, 7.3398, 7.3386, 7.3382, 7.338, 7.3378, 7.3376, 7.3373, 7.3371, 7.3369, 7.3366, 7.3355, 7.3352, 7.3352, 7.3359, 7.3356, 7.3354, 7.3361, 7.3371, 7.338100000000001, 7.339100000000001, 7.3387, 7.3396, 7.3419, 7.3418, 7.3444, 7.3441, 7.3438, 7.3436, 7.346, 7.3457, 7.3455, 7.3453, 7.3451, 7.3458, 7.3464, 7.3463, 7.3452, 7.3449, 7.3447, 7.3444, 7.3441, 7.3438, 7.3443, 7.344, 7.3437, 7.3443, 7.3449, 7.3454, 7.345, 7.3447, 7.3445, 7.3451, 7.3457, 7.3455, 7.3461, 7.346, 7.3456, 7.3453, 7.3451, 7.3449, 7.3455, 7.3451, 7.3448, 7.3453, 7.3459, 7.3465, 7.3462, 7.3459, 7.3464, 7.346, 7.3457, 7.3454, 7.3451, 7.344, 7.3438, 7.3434, 7.344, 7.3437, 7.3445, 7.3443, 7.3444, 7.345, 7.3456, 7.3453, 7.3456, 7.3462, 7.3468, 7.3474, 7.3485, 7.349, 7.349, 7.3487, 7.3485, 7.3482, 7.3487, 7.3484, 7.3482, 7.3479, 7.3476, 7.3483, 7.3481, 7.348, 7.3476, 7.3473, 7.347, 7.3467, 7.3465, 7.3462, 7.3469, 7.3468, 7.3465, 7.3471, 7.3467, 7.3472, 7.3486, 7.3493, 7.349, 7.3489, 7.3486, 7.3483, 7.3481, 7.3478, 7.3476, 7.3475, 7.3472, 7.3469, 7.3467, 7.347700000000001, 7.3474, 7.3472, 7.3479, 7.3476, 7.3474, 7.348400000000001, 7.3481, 7.3478, 7.3476, 7.3474, 7.3471, 7.3462, 7.3468, 7.3465, 7.3462, 7.346, 7.3457, 7.3466, 7.3476, 7.3474, 7.3471, 7.3468, 7.3475, 7.3473, 7.347, 7.3476, 7.3474, 7.3471, 7.3491, 7.3488, 7.3494, 7.3505, 7.3502, 7.3508, 7.3513, 7.3518, 7.3516, 7.3513, 7.351, 7.3507, 7.3512, 7.3509, 7.3506, 7.3504, 7.3502, 7.3499, 7.3501, 7.35, 7.3506, 7.3502, 7.3508, 7.3514, 7.3511, 7.351, 7.3516, 7.3515, 7.3512, 7.3518, 7.3516, 7.3522, 7.3521, 7.3518, 7.3524, 7.3521, 7.3518, 7.3516, 7.3522, 7.3519, 7.3525, 7.3522, 7.3528, 7.3525, 7.3522, 7.3528, 7.3525, 7.3534, 7.3531, 7.3538, 7.3538, 7.3534, 7.354, 7.3546, 7.3537, 7.3526, 7.3536, 7.3533, 7.353, 7.3527, 7.3524, 7.353, 7.3527, 7.3523, 7.352, 7.3517, 7.3514, 7.3511, 7.3509, 7.3506, 7.3506, 7.3504, 7.351, 7.3507, 7.3505, 7.3503, 7.35, 7.3497, 7.3496, 7.3493, 7.3499, 7.3496, 7.3548, 7.3554, 7.356, 7.3558, 7.3556, 7.3553, 7.356, 7.3557, 7.3554, 7.3561, 7.3558, 7.3555, 7.3553, 7.3559, 7.3556, 7.3562, 7.3563, 7.356, 7.3557, 7.3554, 7.356, 7.3557, 7.3563, 7.3561, 7.355, 7.3547, 7.3544, 7.3541, 7.3538, 7.3544, 7.3541, 7.354, 7.3538, 7.3536, 7.3533, 7.353, 7.3528, 7.3525, 7.3522, 7.3532, 7.3538, 7.3544, 7.3541, 7.3542, 7.3548, 7.3546, 7.3548, 7.3545, 7.3542, 7.354, 7.3537, 7.3534, 7.3539, 7.3538, 7.3536, 7.3534, 7.3531, 7.3537, 7.3534, 7.3531, 7.3528, 7.353, 7.3527, 7.3524, 7.3513, 7.3521, 7.3554, 7.3551, 7.3549, 7.3547, 7.3544, 7.3549, 7.3546, 7.3543, 7.354, 7.3549, 7.3546, 7.3552, 7.3549, 7.3555, 7.356, 7.3557, 7.3555, 7.3552, 7.355, 7.3547, 7.3559, 7.3558, 7.3565, 7.359, 7.3588, 7.3585, 7.3582, 7.3589, 7.3578, 7.3575, 7.3572, 7.3577, 7.3582, 7.3579, 7.3576, 7.3573, 7.3582, 7.358, 7.3586, 7.3592, 7.3589, 7.3586, 7.3584, 7.3591, 7.3589, 7.3587, 7.3576, 7.3586, 7.3583, 7.3589, 7.3586, 7.3583, 7.358, 7.358, 7.3577, 7.3583, 7.3588, 7.3587, 7.3584, 7.3581, 7.3578, 7.3575, 7.3572, 7.3571, 7.3568, 7.3565, 7.3571, 7.356, 7.3571, 7.3577, 7.3584, 7.3581, 7.3578, 7.3584, 7.359, 7.3588, 7.3593, 7.3599, 7.3596, 7.3594, 7.3591, 7.3588, 7.3585, 7.3574, 7.358, 7.3586, 7.3583, 7.358, 7.3577, 7.3574, 7.3571, 7.3568, 7.3568, 7.3568, 7.3567, 7.3574, 7.358, 7.3586, 7.3592, 7.3589, 7.3586, 7.3584, 7.3581, 7.3589, 7.3597, 7.3595, 7.3593, 7.3591, 7.3588, 7.3587, 7.3585, 7.3583, 7.3589, 7.3586, 7.3583, 7.358, 7.3577, 7.3575, 7.3573, 7.3597, 7.3629, 7.3635, 7.3717, 7.3716, 7.3722, 7.3711, 7.3708, 7.3705, 7.3702, 7.3707, 7.3705, 7.3738, 7.3736, 7.3742, 7.374, 7.3747, 7.3744, 7.375, 7.3747, 7.3745, 7.3765, 7.3763, 7.3763, 7.377, 7.3776, 7.3773, 7.3788, 7.3786, 7.3792, 7.3789, 7.3787, 7.3788, 7.3785, 7.3809, 7.3806, 7.3803, 7.3808, 7.3813, 7.3819, 7.3825, 7.3823, 7.382, 7.3818, 7.3815, 7.3813, 7.3818, 7.3823, 7.382, 7.3825, 7.3831, 7.3828, 7.3825, 7.3822, 7.3819, 7.3816, 7.3822, 7.3819, 7.3825, 7.3822, 7.3819, 7.3825, 7.3822, 7.3819, 7.3816, 7.3821, 7.3818, 7.3815, 7.3812, 7.3809, 7.3814, 7.3811, 7.3808, 7.3805, 7.3802, 7.3799, 7.3804, 7.3801, 7.3799, 7.3796, 7.3802, 7.3799, 7.3797, 7.3787, 7.3776, 7.3773, 7.377, 7.3767, 7.3772, 7.377, 7.3768, 7.3785, 7.3784, 7.3781, 7.3781, 7.3779, 7.3776, 7.3773, 7.377, 7.3768, 7.3765, 7.3763, 7.376, 7.3757, 7.3754, 7.3752, 7.3749, 7.3746, 7.3743, 7.374, 7.3737, 7.3734, 7.3731, 7.3729, 7.3726, 7.3731, 7.3736, 7.3733, 7.373, 7.3727, 7.3724, 7.3721, 7.3725, 7.3722, 7.3719, 7.3708, 7.3722, 7.3719, 7.3716, 7.3714, 7.3711, 7.3708, 7.3705, 7.371, 7.3707, 7.3704, 7.3701, 7.3699, 7.3697, 7.3695, 7.3692, 7.3689, 7.3686, 7.3683, 7.3681, 7.3679, 7.3676, 7.3689, 7.3686, 7.3684, 7.3689, 7.3686, 7.3686, 7.3691, 7.3689, 7.3686, 7.3691, 7.3689, 7.3686, 7.3683, 7.3683, 7.3681, 7.3687, 7.3684, 7.3681, 7.3678, 7.3684, 7.3681, 7.3679, 7.3677, 7.3675, 7.3681, 7.3679, 7.3669, 7.3666, 7.3663, 7.366, 7.3657, 7.3654, 7.3651, 7.3648, 7.3646, 7.3643, 7.364, 7.3637, 7.3634, 7.3633, 7.3631, 7.3637, 7.3635, 7.364, 7.3646, 7.3652, 7.365, 7.3656, 7.3655, 7.3655, 7.3653, 7.365, 7.3647, 7.3648, 7.3646, 7.3644, 7.3641, 7.3639, 7.3637, 7.3643, 7.364, 7.3637, 7.3634, 7.3639, 7.3636, 7.3634, 7.3631, 7.3632, 7.363, 7.3627, 7.3624, 7.3645, 7.365, 7.3647, 7.3644, 7.3641, 7.3639, 7.3646, 7.3646, 7.3643, 7.3648, 7.3646, 7.3651, 7.3648, 7.3646, 7.3643, 7.3649, 7.3654, 7.3651, 7.3656, 7.3653, 7.365, 7.3649, 7.3647, 7.3644, 7.3642, 7.3647, 7.3644, 7.3656, 7.3661, 7.3658, 7.3655, 7.3649, 7.3639, 7.3652, 7.3657, 7.3663, 7.3661, 7.3658, 7.3664, 7.3661, 7.3667, 7.3664, 7.3669, 7.3674, 7.3681, 7.3686, 7.3692, 7.3689, 7.3686, 7.3683, 7.368, 7.3677, 7.3683, 7.3688, 7.3686, 7.3699, 7.3704, 7.3701, 7.3701, 7.3715, 7.3737, 7.3734, 7.3739, 7.3729, 7.3726, 7.3731, 7.3728, 7.3725, 7.3723, 7.3721, 7.3743, 7.374, 7.3737, 7.3784, 7.3789, 7.3794, 7.3791, 7.3796, 7.3793, 7.3791, 7.3781, 7.3778, 7.3775, 7.378, 7.3777, 7.3782, 7.3779, 7.3785, 7.3782, 7.378, 7.3777, 7.3774, 7.3771, 7.3771, 7.377, 7.3767, 7.3758, 7.3763, 7.3774, 7.3772, 7.3769, 7.3766, 7.3772, 7.3777, 7.3774, 7.3771, 7.3777, 7.3782, 7.3787, 7.3784, 7.3781, 7.3782, 7.3779, 7.3776, 7.3773, 7.3778, 7.3779, 7.3784, 7.3789, 7.3795, 7.3792, 7.3797, 7.3802, 7.3791, 7.3796, 7.3793, 7.379, 7.3795, 7.3784, 7.3774, 7.3788, 7.3785, 7.3782, 7.378, 7.3785, 7.3782, 7.3787, 7.3793, 7.3798, 7.3803, 7.38, 7.3797, 7.3802, 7.3799, 7.3789, 7.3794, 7.3791, 7.3788, 7.3794, 7.3792, 7.3789, 7.3787, 7.3792, 7.3789, 7.3786, 7.3783, 7.3788, 7.3793, 7.379, 7.3787, 7.3784, 7.3781, 7.3779, 7.3776, 7.3773, 7.377, 7.3767, 7.3764, 7.3762, 7.3767, 7.3764, 7.3769, 7.3767, 7.3764, 7.3761, 7.3759, 7.3756, 7.3753, 7.3751, 7.3749, 7.3754, 7.3759, 7.3756, 7.3753, 7.375, 7.3748, 7.3745, 7.3742, 7.3739, 7.3737, 7.3734, 7.3731, 7.3729, 7.3735, 7.3732, 7.3738, 7.3736, 7.3733, 7.3738, 7.3744, 7.3741, 7.3738, 7.3736, 7.3734, 7.3731, 7.3736, 7.3733, 7.3733, 7.3731, 7.3729, 7.3726, 7.3726, 7.3726, 7.3724, 7.373, 7.3739, 7.3745, 7.3743, 7.3742, 7.374, 7.3738, 7.3743, 7.3744, 7.3748, 7.3754, 7.3752, 7.3751, 7.3758, 7.3763, 7.3761, 7.3758, 7.3756, 7.3765, 7.3762, 7.3759, 7.3756, 7.3755, 7.3752, 7.375, 7.3772, 7.377, 7.3767, 7.3765, 7.3762, 7.3767, 7.3759, 7.3757, 7.3755, 7.3753, 7.3754, 7.3774, 7.3772, 7.3769, 7.3766, 7.3771, 7.3768, 7.3773, 7.3771, 7.3784, 7.3806, 7.3803, 7.3808, 7.3821, 7.3818, 7.3815, 7.3813, 7.3803, 7.38, 7.3797, 7.3794, 7.38, 7.3797, 7.3794, 7.3801, 7.3806, 7.3803, 7.3816, 7.3821, 7.3828, 7.3833, 7.3863, 7.3868, 7.3866, 7.3864, 7.3876, 7.3874, 7.3879, 7.3876, 7.3868, 7.3866, 7.3863, 7.386, 7.3868, 7.3873, 7.3902, 7.39, 7.3904, 7.3909, 7.3914, 7.3912, 7.391, 7.3915, 7.3913, 7.3911, 7.3908, 7.3905, 7.3902, 7.3899, 7.3896, 7.3902, 7.3907, 7.3904, 7.3901, 7.39, 7.3897, 7.3903, 7.3908, 7.3905, 7.3902, 7.394, 7.393, 7.3927, 7.3925, 7.393, 7.3943, 7.394, 7.3937, 7.3934, 7.3934, 7.3931, 7.3944, 7.3952, 7.3957, 7.3954, 7.3952, 7.3958, 7.395, 7.3947, 7.3947, 7.396, 7.3965, 7.3962, 7.3959, 7.3956, 7.3961, 7.3959, 7.3956, 7.3954, 7.3951, 7.3949, 7.3947, 7.3969, 7.3969, 7.3982, 7.3979, 7.3983, 7.3981, 7.3978, 7.397, 7.3967, 7.3964, 7.3961, 7.3959, 7.3956, 7.3954, 7.3959, 7.3956, 7.3953, 7.395, 7.3947, 7.3945, 7.3942, 7.3947, 7.3952, 7.3957, 7.3962, 7.396, 7.395, 7.3948, 7.3948, 7.3945, 7.3942, 7.3947, 7.3937, 7.3934, 7.3939, 7.3936, 7.3934, 7.3939, 7.3936, 7.3933, 7.3939, 7.3936, 7.3934, 7.3935, 7.3935, 7.3932, 7.3932, 7.3929, 7.3927, 7.3932, 7.3931, 7.3928, 7.3933, 7.3931, 7.3937, 7.3934, 7.3932, 7.393, 7.3928, 7.3925, 7.393, 7.3935, 7.394, 7.3938, 7.3943, 7.3942, 7.394, 7.3954, 7.3959, 7.3957, 7.3981, 7.3979, 7.3976, 7.3975, 7.3972, 7.397, 7.3975, 7.3988, 7.3986, 7.3983, 7.3981, 7.3979, 7.3976, 7.3975, 7.3973, 7.397, 7.3968, 7.3965, 7.397, 7.3967, 7.3972, 7.397, 7.3968, 7.3965, 7.3963, 7.396, 7.3958, 7.3955, 7.3954, 7.3952, 7.3957, 7.3962, 7.396, 7.3958, 7.3956, 7.3954, 7.3951, 7.3948, 7.3945, 7.395, 7.3948, 7.3945], '192.168.122.118': [5.2519, 5.612, 5.6834, 5.6276, 6.6697, 6.4454, 6.2746, 6.1606, 6.0736, 6.1624, 6.12, 6.063, 6.0678, 6.0353, 6.0231, 6.3542, 6.3076, 6.2717, 6.249, 6.5253, 6.4792, 6.4559, 6.4237, 6.4406, 6.4303, 6.3877, 6.3792, 6.3985, 6.3845, 6.3496, 6.3267, 6.2985, 6.2734, 6.2513, 6.2283, 6.3593, 6.3308, 6.3062, 6.2801, 6.258, 6.1425, 6.2555, 6.2447, 6.2489, 6.3518, 6.4483, 6.4219, 6.5144, 6.4942, 6.4707, 6.4548, 6.4341, 6.4147, 6.3962, 6.4831, 6.376, 6.4554, 6.4353, 6.418, 6.4051, 6.3902, 6.3724, 6.3656, 6.3685, 6.3706, 6.361, 6.3509, 6.3456, 6.3314, 6.4278, 6.4126, 6.4724, 6.4698, 6.4662, 6.4591, 6.4516, 6.4377, 6.4317, 6.4296, 6.5267, 6.5368, 6.6626, 6.6862, 6.6832, 6.6707, 6.6587, 6.6659, 6.6545, 6.6425, 6.6354, 6.631, 6.6812, 6.6778, 6.6669, 6.6066, 6.6515, 6.5925, 6.5818, 6.5732, 6.5609, 6.557, 6.5507, 6.542, 6.7504, 6.7424, 6.7364, 6.7227, 6.7206, 6.7133, 6.7003, 6.6936, 6.6865, 6.674, 6.6677, 6.7048, 6.6955, 6.6845, 6.6739, 6.621, 6.6843, 6.698, 6.6877, 6.6772, 6.6669, 6.6723, 6.7066, 6.7017, 6.7077, 6.6997, 6.6925, 6.7321, 6.7244, 6.7157, 6.7875, 6.7763, 6.7662, 6.7574, 6.7675, 6.7676, 6.825, 6.8198, 6.8135, 6.884, 6.8755, 6.8651, 6.8545, 6.8917, 6.9184, 6.9194, 6.9127, 6.8717, 6.8695, 6.8615, 6.8542, 6.8586, 6.8527, 6.8772, 6.8782000000000005, 6.8703, 6.871300000000001, 6.8701, 6.8638, 6.8549, 6.8477, 6.8395, 6.8352, 6.8262, 6.8209, 6.7843, 6.7769, 6.7697, 6.7657, 6.7599, 6.7542, 6.7532, 6.751, 6.7765, 6.772, 6.769, 6.7619, 6.758, 6.7505, 6.7732, 6.7685, 6.7608, 6.7866, 6.7805, 6.7725, 6.7939, 6.8152, 6.8102, 6.8312, 6.8526, 6.8453, 6.8384, 6.8394, 6.8328, 6.8253, 6.832, 6.833, 6.8265, 6.8477, 6.8452, 6.8388, 6.8339, 6.8536, 6.8476, 6.8683, 6.8664, 6.8638, 6.8611, 6.862100000000001, 6.8875, 6.9074, 6.9006, 6.8969, 6.9185, 6.9119, 6.905, 6.8777, 6.871, 6.8661, 6.8631, 6.8584, 6.8594, 6.8567, 6.8501, 6.8448, 6.8177, 6.8141, 6.8086, 6.8515, 6.8449, 6.8835, 6.8794, 6.8734, 6.891, 6.9414, 6.9858, 7.0232, 7.0199, 7.0135, 7.007, 6.9804, 6.9944, 7.0102, 7.0037, 7.0176, 7.0333, 7.0265, 7.0253, 7.0189, 7.0249, 7.0211, 6.9963, 6.9912, 6.9852, 6.9813, 6.9965, 7.0739, 7.0723, 7.0659, 7.0634, 7.0578, 7.0926, 7.088, 7.0966, 7.0911, 7.1074, 7.1028, 7.0999, 7.0944, 7.0752, 7.0731, 7.0876, 7.103, 7.0973, 7.0933, 7.1089, 7.1032, 7.0978, 7.0924, 7.1253, 7.1196, 7.1144, 7.1094, 7.1219, 7.1202, 7.1152, 7.1109, 7.1047, 7.1007, 7.113, 7.1299, 7.1313, 7.1255, 7.1411, 7.1349, 7.1312, 7.1263, 7.1637, 7.1589, 7.1546, 7.1494, 7.1636, 7.1588, 7.1529, 7.1318, 7.1257, 7.1385, 7.134, 7.1302, 7.1255, 7.1209, 7.1342, 7.1302, 7.1433, 7.1553, 7.1498, 7.1451, 7.1404, 7.136, 7.1316, 7.1428, 7.1383, 7.1347, 7.1507, 7.151, 7.1637, 7.1756, 7.1712, 7.2009, 7.198, 7.1927, 7.1808, 7.1927, 7.1952, 7.2059, 7.2169, 7.2123, 7.2093, 7.2044, 7.2147, 7.2103, 7.2052, 7.2159, 7.2113, 7.2843, 7.2809, 7.3501, 7.3607, 7.3567, 7.3517, 7.3466, 7.3571, 7.3518, 7.3622, 7.3722, 7.3666, 7.3635, 7.36, 7.3541, 7.3488, 7.3459, 7.3406, 7.3358, 7.3343, 7.3325, 7.3291, 7.3264, 7.3212, 7.3203, 7.3152, 7.3119, 7.3067, 7.3042, 7.2992, 7.309, 7.3057, 7.4002, 7.4091, 7.407, 7.4019, 7.3969, 7.4344, 7.4451, 7.454, 7.4644, 7.4735, 7.4687, 7.4663, 7.4667, 7.4888, 7.5101, 7.506, 7.5006, 7.497, 7.4921, 7.4868, 7.4829, 7.4777, 7.473, 7.4679, 7.4686, 7.4633, 7.459, 7.4544, 7.4528, 7.4474, 7.4436, 7.4389, 7.4418, 7.4498, 7.4478, 7.4452, 7.4461, 7.4763, 7.4721, 7.4808, 7.488, 7.4723, 7.4946, 7.4895, 7.4854, 7.4814, 7.4763, 7.4843, 7.4932, 7.4883, 7.4957, 7.4918, 7.4873, 7.4824, 7.4775, 7.4728, 7.4805, 7.4879, 7.4844, 7.4911, 7.4998, 7.5435, 7.5386, 7.546, 7.5412, 7.5363, 7.5313, 7.5264, 7.522, 7.5169, 7.5121, 7.5193, 7.5152, 7.5103, 7.4949, 7.4905, 7.4942, 7.4906, 7.486, 7.4812, 7.4791, 7.4767, 7.4719, 7.4684, 7.4644, 7.4646, 7.4604, 7.456, 7.4628, 7.4585, 7.4574, 7.4541, 7.4531, 7.4504, 7.4518, 7.4471, 7.4462, 7.4663, 7.4643, 7.4599, 7.4483, 7.4447, 7.4639, 7.4637, 7.4596, 7.4566, 7.4522, 7.4489, 7.437, 7.4411, 7.4365, 7.4325, 7.4282, 7.4236, 7.4206, 7.4163, 7.4234, 7.4196, 7.4168, 7.4128, 7.4238, 7.4209, 7.4218, 7.4184, 7.4141, 7.411, 7.4076, 7.4043, 7.4002, 7.407, 7.4031, 7.399, 7.3948, 7.3921, 7.3984, 7.3953, 7.4305, 7.4271, 7.4343, 7.4307, 7.4268, 7.4241, 7.4212, 7.4178, 7.4048, 7.4044, 7.402, 7.4002, 7.4061, 7.4034, 7.4015, 7.3986, 7.3973, 7.3952, 7.3927, 7.3888, 7.395, 7.4076, 7.4041, 7.3915, 7.3973, 7.3942, 7.3923, 7.4662, 7.4624, 7.4827, 7.4799, 7.4762, 7.4823, 7.4795, 7.4862, 7.4834, 7.4897, 7.4952, 7.4929, 7.4891, 7.487, 7.4841, 7.4905, 7.4962, 7.5111, 7.4986, 7.5002, 7.5297, 7.5314, 7.519, 7.5156, 7.5233, 7.5372, 7.5353, 7.5317, 7.528, 7.5258, 7.5226, 7.5204, 7.5261, 7.5322, 7.5282, 7.5341, 7.5307, 7.5268, 7.5331, 7.532, 7.5287, 7.5261, 7.5325, 7.5746, 7.58, 7.5851, 7.5816, 7.5957, 7.5837, 7.5741, 7.5891, 7.5862, 7.592, 7.5888, 7.5948, 7.5997, 7.598, 7.6076, 7.6126, 7.6281, 7.6252, 7.6227, 7.6501, 7.6467, 7.6432, 7.6415, 7.6379, 7.6346, 7.6314, 7.6374, 7.6432, 7.6406, 7.6459, 7.6421, 7.6392, 7.6356, 7.6242, 7.6214, 7.6264, 7.6323, 7.6296, 7.6349, 7.6312, 7.6321, 7.6378, 7.6348, 7.6328, 7.6295, 7.6262, 7.6314, 7.6279, 7.6329, 7.6381, 7.6344, 7.6394, 7.6445, 7.6408, 7.647, 7.6436, 7.6405, 7.6374, 7.6347, 7.6315, 7.6285, 7.6261, 7.6234, 7.6297, 7.6273, 7.6247, 7.6294, 7.626, 7.631, 7.6275, 7.6256, 7.6223, 7.6197, 7.6243, 7.6288, 7.6334, 7.6319, 7.6284, 7.6249, 7.6227, 7.6195, 7.6199, 7.6164, 7.6141, 7.6108, 7.6003, 7.5977, 7.5952, 7.6006, 7.6005, 7.6055, 7.603, 7.5996, 7.6057, 7.6039, 7.61, 7.607, 7.6042, 7.6009, 7.5988, 7.5982, 7.5954, 7.6009, 7.5983, 7.6035, 7.6006, 7.5997, 7.5971, 7.6026, 7.6006, 7.5978, 7.5945, 7.5916, 7.5882, 7.5858, 7.5827, 7.5795, 7.5793, 7.5839, 7.5807, 7.5778, 7.5746, 7.5652, 7.562, 7.5591, 7.556, 7.5604, 7.5648, 7.5624, 7.5593, 7.568, 7.5728, 7.5636, 7.5609, 7.5585, 7.5562, 7.5536, 7.5512, 7.5539, 7.5513, 7.5486, 7.5496, 7.547, 7.5473, 7.5445, 7.5416, 7.5391, 7.5365, 7.5351, 7.5332, 7.53, 7.5274, 7.5249, 7.5237, 7.5206, 7.5201, 7.5171, 7.5146, 7.5116, 7.5087, 7.5057, 7.5032, 7.5008, 7.4978, 7.4963, 7.4933, 7.4904, 7.4879, 7.485, 7.4907, 7.4911, 7.4883, 7.4863, 7.4772, 7.4749, 7.4727, 7.4704, 7.4748, 7.4727, 7.4713, 7.4685, 7.4662, 7.4634, 7.4678, 7.4653, 7.4637, 7.461, 7.4653, 7.4626, 7.46, 7.4599, 7.4643, 7.4681, 7.4724, 7.4763, 7.4738, 7.4917, 7.489, 7.4804, 7.4778, 7.4763, 7.4743, 7.4719, 7.4693, 7.4671, 7.4645, 7.4691, 7.4668, 7.4707, 7.4685, 7.4727, 7.4708, 7.4759, 7.4734, 7.474, 7.4721, 7.4694, 7.4667, 7.465, 7.4624, 7.4613, 7.4587, 7.4567, 7.4546, 7.4625, 7.46, 7.4588, 7.4564, 7.4545, 7.4604, 7.4656, 7.4589, 7.4596, 7.4572, 7.4553, 7.4531, 7.4509, 7.4484, 7.453, 7.4507, 7.4553, 7.4529, 7.4514, 7.4557, 7.4536, 7.4515, 7.4489, 7.4464, 7.4439, 7.4413, 7.4389, 7.4369, 7.4346, 7.4329, 7.4304, 7.4281, 7.4256, 7.4299, 7.4275, 7.4197, 7.4178, 7.4161, 7.4137, 7.4111, 7.409, 7.4067, 7.4046, 7.4027, 7.4069, 7.3989, 7.3965, 7.4005, 7.3989, 7.3972, 7.3949, 7.3924, 7.3908, 7.39, 7.3878, 7.3854, 7.3837, 7.3879, 7.3856, 7.3895, 7.3871, 7.3854, 7.3842, 7.3818, 7.3858, 7.3845, 7.3822, 7.3809, 7.3786, 7.3849, 7.3827, 7.3886, 7.3869, 7.387, 7.3862, 7.3841, 7.3823, 7.3805, 7.3793, 7.3771, 7.3759, 7.3737, 7.3733, 7.372, 7.3699, 7.3676, 7.3664, 7.3649, 7.3686, 7.3668, 7.3646, 7.3626, 7.3608, 7.359, 7.3572, 7.3609, 7.365, 7.3628, 7.361, 7.3592, 7.3637, 7.3689, 7.3671, 7.371, 7.3688, 7.3669, 7.3702, 7.3737, 7.3716, 7.3754, 7.3737, 7.3774, 7.3813, 7.3794, 7.3776, 7.3811, 7.3849, 7.3833, 7.3813, 7.3888, 7.3923, 7.3903, 7.3882, 7.3995, 7.3974, 7.3953, 7.3934, 7.4203, 7.4182, 7.4215, 7.4201, 7.4237, 7.4273, 7.4257, 7.4293, 7.4276, 7.4313, 7.4346, 7.4382, 7.4367, 7.4344, 7.4322, 7.4253, 7.4237, 7.4277, 7.4316, 7.4354, 7.4389, 7.4376, 7.4364, 7.4414, 7.4396, 7.4376, 7.4354, 7.4335, 7.4319, 7.4296, 7.4333, 7.4367, 7.44, 7.4377, 7.4361, 7.434, 7.4326, 7.4364, 7.4343, 7.432, 7.4303, 7.4289, 7.4322, 7.4251, 7.4286, 7.4216, 7.4195, 7.4174, 7.4155, 7.4189, 7.4169, 7.4205, 7.4184, 7.4216, 7.4252, 7.4289, 7.4324, 7.4304, 7.4337, 7.4318, 7.4353, 7.4333, 7.4313, 7.4349, 7.4501, 7.4481, 7.4464, 7.4498, 7.4482, 7.4517, 7.4495, 7.4536, 7.4518, 7.4497, 7.4476, 7.4455, 7.4434, 7.4421, 7.4399, 7.438, 7.4368, 7.4347, 7.4336, 7.4368, 7.4405, 7.4393, 7.4425, 7.4407, 7.4389, 7.4369, 7.4308, 7.4296, 7.4278, 7.4312, 7.4292, 7.4325, 7.432, 7.4349, 7.4335, 7.4368, 7.4358, 7.4346, 7.4328, 7.4309, 7.4293, 7.4274, 7.4305, 7.4337, 7.4322, 7.431, 7.4291, 7.4319, 7.4298, 7.4331, 7.4435, 7.4511, 7.4545, 7.453, 7.4561, 7.4544, 7.4735, 7.4717, 7.4696, 7.4682, 7.472, 7.4757, 7.4742, 7.4774, 7.4856, 7.4847, 7.4829, 7.4828, 7.482, 7.4805, 7.4785, 7.4764, 7.4794, 7.4741, 7.4776, 7.4806, 7.4836, 7.4815, 7.4794, 7.4823, 7.4803, 7.4782, 7.4762, 7.4741, 7.4726, 7.4706, 7.47, 7.4685, 7.467, 7.4657, 7.4642, 7.4626, 7.461, 7.459, 7.4575, 7.4556, 7.4538, 7.4518, 7.4499, 7.448, 7.442, 7.4402, 7.4384, 7.4411, 7.444, 7.4469, 7.4453, 7.4433, 7.4414, 7.4398, 7.4384, 7.438, 7.4361, 7.4455, 7.444, 7.4476, 7.4463, 7.445, 7.4482, 7.4621, 7.4605, 7.4639, 7.4668, 7.4655, 7.4651, 7.464, 7.4624, 7.4654, 7.4635, 7.4624, 7.4606, 7.4589, 7.4572, 7.4603, 7.4587, 7.462, 7.4652, 7.4633, 7.4663, 7.4646, 7.4585, 7.4574, 7.4604, 7.4587, 7.4571, 7.4564, 7.4549, 7.4577, 7.4608, 7.4589, 7.4581, 7.4564, 7.4682, 7.4699, 7.4699, 7.4743, 7.4745, 7.4744, 7.4727, 7.4759, 7.4744, 7.473, 7.4813, 7.4798, 7.4829, 7.4861, 7.489, 7.4876, 7.4861, 7.4893, 7.4874, 7.486, 7.4841, 7.4865, 7.4897, 7.4882, 7.4867, 7.4853, 7.4839, 7.4825, 7.4854, 7.4845, 7.4831, 7.4817, 7.4804, 7.4833, 7.4905, 7.4935, 7.492, 7.4906, 7.5113, 7.5139, 7.5125, 7.5115, 7.514, 7.5121, 7.5112, 7.5093, 7.5118, 7.5149, 7.5133, 7.5119, 7.5105, 7.5091, 7.5078, 7.5062, 7.5091, 7.5116, 7.51, 7.5086, 7.5114, 7.5141, 7.5124, 7.5111, 7.5138, 7.512, 7.5104, 7.5103, 7.5085, 7.5113, 7.5115, 7.5097, 7.5083, 7.5074, 7.5056, 7.5045, 7.5056, 7.5041, 7.5069, 7.5058, 7.5089, 7.5076, 7.5059, 7.5137, 7.5119, 7.5102, 7.5087, 7.511, 7.5104, 7.5092, 7.508, 7.5068, 7.5053, 7.5036, 7.5126, 7.5153, 7.5137, 7.5191, 7.5223, 7.5222, 7.5249, 7.5279, 7.5272, 7.5254, 7.5238, 7.5265, 7.5296, 7.5279, 7.5302, 7.5286, 7.5273, 7.526, 7.5247, 7.5233, 7.5224, 7.5247, 7.5236, 7.5345, 7.5405, 7.5349, 7.535, 7.5366, 7.5373, 7.5359, 7.5355, 7.5345, 7.5331, 7.5313, 7.5295, 7.5279, 7.5283, 7.5269, 7.5215, 7.5241, 7.5227, 7.5214, 7.5198, 7.518, 7.5247, 7.5231, 7.5257, 7.5241, 7.5226, 7.5254, 7.5237, 7.5306, 7.5335, 7.532, 7.5269, 7.5254, 7.5242, 7.5228, 7.5211, 7.5239, 7.5222, 7.5207, 7.5201, 7.5227, 7.5219, 7.5203, 7.5229, 7.5252, 7.5235, 7.5218, 7.5243, 7.5265, 7.5253, 7.5241, 7.5271, 7.5265, 7.5249, 7.5256, 7.5242, 7.531, 7.5296, 7.528, 7.5303, 7.526, 7.5263, 7.5293, 7.5324, 7.5307, 7.5303, 7.5288, 7.5272, 7.5259, 7.5248, 7.5204, 7.5187, 7.5179, 7.5166, 7.5154, 7.5142, 7.5125, 7.5108, 7.5099, 7.5131, 7.5158, 7.5142, 7.5138, 7.5168, 7.5151, 7.5173, 7.5199, 7.5187, 7.5176, 7.5161, 7.5148, 7.5178, 7.5167, 7.519, 7.5176, 7.5201, 7.5249, 7.5234, 7.5223, 7.5207, 7.5259, 7.5248, 7.5201, 7.5226, 7.5217, 7.5204, 7.5187, 7.517, 7.5158, 7.5142, 7.5132, 7.5125, 7.5112, 7.5063, 7.5048, 7.5034, 7.5018, 7.5003, 7.4989, 7.4978, 7.4969, 7.4954, 7.494, 7.4929, 7.4913, 7.4898, 7.4886, 7.487, 7.4855, 7.4886, 7.4872, 7.4897, 7.4917, 7.4903, 7.4927, 7.4949, 7.4933, 7.4921, 7.4906, 7.493, 7.4951, 7.4935, 7.4925, 7.4951, 7.4935, 7.4924, 7.4915, 7.4902, 7.4901, 7.4885, 7.4875, 7.4861, 7.4846, 7.4834, 7.4818, 7.4803, 7.4788, 7.4773, 7.476, 7.4747, 7.4734, 7.4723, 7.4748, 7.4699, 7.4719, 7.4704, 7.4695, 7.4682, 7.4668, 7.4657, 7.4682, 7.4704, 7.4691, 7.4715, 7.4702, 7.4728, 7.4714, 7.47, 7.4653, 7.4673, 7.4676, 7.4674, 7.4663, 7.465, 7.4641, 7.4708, 7.4728, 7.4752, 7.4775, 7.4765, 7.4753, 7.474, 7.4831, 7.4784, 7.4769, 7.4757, 7.4744, 7.473, 7.4717, 7.4703, 7.4688, 7.4675, 7.4662, 7.4686, 7.4674, 7.466, 7.4684, 7.4712, 7.4737, 7.4724, 7.4711, 7.4697, 7.4684, 7.467, 7.4659, 7.4621, 7.4645, 7.4633, 7.4621, 7.465, 7.4639, 7.4625, 7.465, 7.464, 7.4635, 7.4655, 7.4644, 7.463, 7.4659, 7.4648, 7.467, 7.4663, 7.4651, 7.4638, 7.466, 7.472, 7.471, 7.4696, 7.4681, 7.4666, 7.4658, 7.4652, 7.4642, 7.4629, 7.4621, 7.4607, 7.4597, 7.4585, 7.4571, 7.4558, 7.4579, 7.4565, 7.4552, 7.4542, 7.4551, 7.4538, 7.4523, 7.451, 7.4507, 7.4499, 7.4453, 7.4444, 7.4431, 7.4418, 7.4404, 7.4425, 7.4411, 7.444, 7.4463, 7.4487, 7.4509, 7.45, 7.4455, 7.4442, 7.4429, 7.4418, 7.4404, 7.4393, 7.4387, 7.4374, 7.436, 7.4346, 7.437, 7.4356, 7.4348, 7.4387, 7.4376, 7.4367, 7.4372, 7.4336, 7.4328, 7.4319, 7.4307, 7.433, 7.4354, 7.4373, 7.4361, 7.4418, 7.4405, 7.4395, 7.4387, 7.4374, 7.4362, 7.4385, 7.4475, 7.4462, 7.4453, 7.4443, 7.4432, 7.4441, 7.4428, 7.4416, 7.4404, 7.4394, 7.4418, 7.4408, 7.4434, 7.4423, 7.4445, 7.4432, 7.4426, 7.4446, 7.4542, 7.4566, 7.4554, 7.4574, 7.4595, 7.465, 7.467, 7.4659, 7.4654, 7.4644, 7.4634, 7.463, 7.4653, 7.4642, 7.4628, 7.4618, 7.4645, 7.4631, 7.4654, 7.4679, 7.4674, 7.4681, 7.467, 7.4657, 7.4648, 7.464, 7.4627, 7.465, 7.4636, 7.4622, 7.461, 7.4599, 7.4588, 7.464, 7.4633, 7.4658, 7.4648, 7.464, 7.463, 7.4621, 7.4612, 7.4634, 7.4656, 7.4647, 7.4668, 7.4734, 7.476, 7.4748, 7.4716, 7.4705, 7.4693, 7.4693, 7.4681, 7.4744, 7.4736, 7.4724, 7.4746, 7.4739, 7.4728, 7.4686, 7.4711, 7.4699, 7.4657, 7.4646, 7.4636, 7.4675, 7.4694, 7.4776, 7.4768, 7.4788, 7.4776, 7.4764, 7.4751, 7.4742, 7.473, 7.4752, 7.474, 7.4732, 7.4724, 7.4714, 7.4701, 7.4703, 7.4693, 7.4686, 7.4674, 7.4694, 7.475, 7.4737, 7.4756, 7.4747, 7.477, 7.4757, 7.4745, 7.4733, 7.4725, 7.4717, 7.4704, 7.4695, 7.4716, 7.4736, 7.4725, 7.4716, 7.4707, 7.4698, 7.4689, 7.4736, 7.4723, 7.4711, 7.47, 7.4687, 7.4676, 7.4668, 7.4688, 7.4678, 7.4665, 7.4657, 7.468, 7.4702, 7.4691, 7.4713, 7.4736, 7.4727, 7.4717, 7.4705, 7.4694, 7.4686, 7.4705, 7.4693, 7.4683, 7.4671, 7.4691, 7.4711, 7.4731, 7.4751, 7.474, 7.4728, 7.4719, 7.477, 7.4761, 7.4723, 7.4713, 7.4735, 7.4724, 7.4748, 7.4737, 7.4726, 7.4747, 7.4739, 7.4728, 7.4796, 7.4784, 7.4805, 7.4824, 7.4813, 7.4805, 7.4795, 7.4789, 7.4779, 7.4807, 7.486, 7.4908, 7.4895, 7.4915, 7.4932, 7.4921, 7.4912, 7.4932, 7.4921, 7.4953, 7.4941, 7.493, 7.4986, 7.4976, 7.4965, 7.4957, 7.4949, 7.4937, 7.4925, 7.4918, 7.4907, 7.4896, 7.4884, 7.4875, 7.4869, 7.4857, 7.4846, 7.4835, 7.4825, 7.4812, 7.4801, 7.4789, 7.4777, 7.4738, 7.4758, 7.4746, 7.4765, 7.4814, 7.4834, 7.4824, 7.4813, 7.4804, 7.4793, 7.4781, 7.48, 7.4819, 7.4836, 7.4826, 7.4814, 7.4832, 7.4853, 7.4843, 7.487, 7.4859, 7.4849, 7.4838, 7.4829, 7.4848, 7.4867, 7.4858, 7.4856, 7.4846, 7.4925, 7.4916, 7.4909, 7.4899, 7.4861, 7.4853, 7.4845, 7.4834, 7.4855, 7.4874, 7.489, 7.488, 7.487, 7.4887, 7.4882, 7.4872, 7.486, 7.488, 7.4872, 7.486, 7.4878, 7.4873, 7.4864, 7.4882, 7.4871, 7.486, 7.4849, 7.4841, 7.4833, 7.4822, 7.4816, 7.4805, 7.4794, 7.4787, 7.4784, 7.4773, 7.4773, 7.4761, 7.4752, 7.4778, 7.4818, 7.4814, 7.483, 7.4825, 7.4816, 7.4835, 7.4824, 7.4842, 7.483, 7.4826, 7.4842, 7.4831, 7.4851, 7.4842, 7.4861, 7.485, 7.4841, 7.4829, 7.4818, 7.4834, 7.4853, 7.4843, 7.4835, 7.4852, 7.4841, 7.4839, 7.4802, 7.479, 7.4783, 7.4771, 7.4759, 7.4755, 7.4772, 7.479, 7.4784, 7.4774, 7.4764, 7.4789, 7.4778, 7.4767, 7.4756, 7.4745, 7.476, 7.4749, 7.4743, 7.4732, 7.4721, 7.471, 7.47, 7.4692, 7.4686, 7.4675, 7.4664, 7.4629, 7.4647, 7.4636, 7.4624, 7.4617, 7.4606, 7.4598, 7.4586, 7.4574, 7.4565, 7.4558, 7.4558, 7.4529, 7.4519, 7.4508, 7.451, 7.45, 7.4497, 7.4486, 7.448, 7.4455, 7.4486, 7.4479, 7.4472, 7.4473, 7.4465, 7.4457, 7.4504, 7.4493, 7.4509, 7.4498, 7.4514, 7.4506, 7.4494, 7.4485, 7.4478, 7.447, 7.4462, 7.4483, 7.4475, 7.449, 7.4479, 7.447, 7.446, 7.443, 7.442, 7.4412, 7.443, 7.4421, 7.4443, 7.4436, 7.4455, 7.4479, 7.447, 7.4489, 7.4479, 7.4498, 7.4517, 7.452, 7.4511, 7.45, 7.4519, 7.451, 7.4502, 7.4496, 7.4511, 7.45, 7.4491, 7.4508, 7.4502, 7.4523, 7.4517, 7.4506, 7.4502, 7.4493, 7.4465, 7.4461, 7.4451, 7.4442, 7.4432, 7.4426, 7.442, 7.4411, 7.4403, 7.4394, 7.4384, 7.4374, 7.4365, 7.4359, 7.4324, 7.4339, 7.4331, 7.4325, 7.4319, 7.4311, 7.4301, 7.4324, 7.4341, 7.4335, 7.4325, 7.4314, 7.4329, 7.4319, 7.4308, 7.4298, 7.429, 7.4279, 7.4269, 7.4259, 7.4249, 7.4242, 7.4232, 7.4222, 7.4213, 7.4233, 7.4225, 7.422, 7.4215, 7.4209, 7.4227, 7.4219, 7.4211, 7.4227, 7.4276, 7.427, 7.4289, 7.4282, 7.4274, 7.4268, 7.4286, 7.4277, 7.4269, 7.4261, 7.428, 7.4269, 7.4258, 7.425, 7.4263, 7.4255, 7.4246, 7.4235, 7.4253, 7.4271, 7.4289, 7.429, 7.4309, 7.4298, 7.429, 7.4283, 7.4273, 7.4264, 7.4256, 7.4246, 7.4239, 7.4257, 7.4249, 7.4242, 7.4232, 7.4224, 7.424, 7.423, 7.4245, 7.4237, 7.4253, 7.4246, 7.4239, 7.4255, 7.4245, 7.4237, 7.4254, 7.4247, 7.4237, 7.4231, 7.4221, 7.4239, 7.4233, 7.4227, 7.4217, 7.4209, 7.4224, 7.4217, 7.4208, 7.4199, 7.4188, 7.4179, 7.4195, 7.4162, 7.4152, 7.412, 7.4114, 7.4107, 7.4124, 7.4114, 7.4107, 7.4097, 7.4089, 7.408, 7.4071, 7.4039, 7.4032, 7.4022, 7.4038, 7.4029, 7.4021, 7.4014, 7.4005, 7.3997, 7.3987, 7.3956, 7.3973, 7.3963, 7.3956, 7.3949, 7.394, 7.3955, 7.3957, 7.3972, 7.3967, 7.3963, 7.3954, 7.3947, 7.3939, 7.3931, 7.3921, 7.3914, 7.3904, 7.3895, 7.3886, 7.3876, 7.3867, 7.3861, 7.3878, 7.3869, 7.3862, 7.3853, 7.387, 7.3839, 7.3836, 7.3827, 7.3868, 7.3886, 7.3878, 7.3871, 7.3914, 7.3905, 7.3898, 7.3939, 7.3933, 7.3923, 7.3939, 7.3931, 7.3922, 7.3936, 7.395, 7.3941, 7.3945, 7.3938, 7.3952, 7.3966, 7.3982, 7.3974, 7.3978, 7.3996, 7.4014, 7.4004, 7.3996, 7.3986, 7.3978, 7.3978, 7.3972, 7.3962, 7.3953, 7.3943, 7.3963, 7.3979, 7.397, 7.3963, 7.3954, 7.3945, 7.3935, 7.395, 7.3966, 7.3957, 7.3928, 7.3921, 7.4039, 7.4036, 7.4027, 7.4043, 7.4035, 7.4026, 7.4017, 7.4016, 7.4007, 7.3997, 7.3988, 7.3958, 7.3949, 7.394, 7.393, 7.392, 7.3937, 7.3927, 7.3942, 7.3958, 7.3959, 7.3952, 7.3944, 7.3936, 7.395, 7.3948, 7.3938, 7.3933, 7.3925, 7.3918, 7.3909, 7.39, 7.3893, 7.3884, 7.3899, 7.3916, 7.3908, 7.3899, 7.3891, 7.3908, 7.3904, 7.3917, 7.3935, 7.3928, 7.3919, 7.3915, 7.3906, 7.3922, 7.3913, 7.3904, 7.3966, 7.4055, 7.4055, 7.4048, 7.4041, 7.401, 7.4002, 7.3972, 7.397, 7.3969, 7.3983, 7.4001, 7.3993, 7.4016, 7.4007, 7.4, 7.3975, 7.3968, 7.4015, 7.4017, 7.401, 7.4002, 7.4018, 7.4009, 7.4024, 7.3994, 7.3987, 7.3987, 7.3979, 7.3996, 7.3992, 7.3985, 7.3978, 7.3993, 7.3986, 7.3977, 7.397, 7.3964, 7.3966, 7.3963, 7.3958, 7.3973, 7.3971, 7.3986, 7.3957, 7.3948, 7.3963, 7.3955, 7.3947, 7.3934, 7.3929, 7.3922, 7.3915, 7.392, 7.3913, 7.3929, 7.3944, 7.3958, 7.3952, 7.3967, 7.3958, 7.3949, 7.3964, 7.3962, 7.3955, 7.395, 7.3941, 7.3937, 7.3932, 7.3925, 7.3916, 7.3907, 7.3898, 7.3912, 7.3905, 7.39, 7.3894, 7.3885, 7.3878, 7.3869, 7.3861, 7.3875, 7.3866, 7.3859, 7.3873, 7.3864, 7.3855, 7.3859, 7.3851, 7.3865, 7.3856, 7.3848, 7.3844, 7.3859, 7.3852, 7.3843, 7.3836, 7.3833, 7.388, 7.3897, 7.3898, 7.3915, 7.3909, 7.3903, 7.3898, 7.3908000000000005, 7.3902, 7.3895, 7.3886, 7.3899, 7.3892, 7.3907, 7.3899, 7.3892, 7.3884, 7.3875, 7.3866, 7.3861, 7.3876, 7.389, 7.3881, 7.3895, 7.3909, 7.39, 7.3891, 7.3882, 7.3898, 7.3908000000000005, 7.388, 7.3883, 7.3913, 7.3911, 7.3909, 7.3908, 7.3902, 7.3898, 7.389, 7.3905, 7.3879, 7.3905, 7.3899, 7.3893, 7.3886, 7.3863, 7.3859, 7.3852, 7.3846, 7.3839, 7.3833, 7.3824, 7.3838, 7.3831, 7.3823, 7.3814, 7.3831, 7.3844, 7.3859, 7.3855, 7.3847, 7.3882, 7.3874, 7.3888, 7.3928, 7.3921, 7.3918, 7.3913, 7.3904, 7.3895, 7.3887, 7.3908, 7.3921, 7.3912, 7.3926, 7.3919, 7.391, 7.3925, 7.3941, 7.3938, 7.3933, 7.3946, 7.3938, 7.3931, 7.3923, 7.3901, 7.3894, 7.3866, 7.3843, 7.3858, 7.385, 7.3874, 7.3857, 7.3874, 7.3865, 7.3857, 7.3851, 7.3823, 7.3815, 7.3813, 7.3786, 7.3777, 7.3792, 7.3787, 7.3759, 7.3753, 7.3769, 7.3761, 7.3753, 7.3744, 7.3737, 7.3731, 7.3746, 7.376, 7.3754, 7.3768, 7.378, 7.3778, 7.375, 7.3764, 7.3792, 7.3784, 7.3933, 7.3925, 7.3924, 7.3918, 7.3914, 7.3909, 7.3902, 7.3914, 7.3906, 7.3902, 7.3895, 7.3887, 7.3879, 7.3893, 7.3907, 7.3902, 7.3894, 7.3887, 7.3903, 7.3918, 7.3911, 7.3943, 7.3981, 7.4022, 7.4103, 7.4096, 7.411, 7.4102, 7.4116, 7.4109, 7.4102, 7.4117, 7.411, 7.4124, 7.4137, 7.4129, 7.4121, 7.4135, 7.4131, 7.4122, 7.4114, 7.4105, 7.4097, 7.4111, 7.4105, 7.4078, 7.4075, 7.4066, 7.406, 7.4052, 7.4066, 7.4061, 7.4057, 7.4049, 7.4063, 7.4057, 7.405, 7.4042, 7.4034, 7.4026, 7.4022, 7.4015, 7.4027, 7.4019, 7.4011, 7.4024, 7.4022, 7.4038, 7.4032, 7.4023, 7.4016, 7.4009, 7.4025, 7.4039, 7.4031, 7.4043, 7.4056, 7.4049, 7.4027, 7.4019, 7.4011, 7.4019, 7.401, 7.4003, 7.3995, 7.4031, 7.4023, 7.4017, 7.4011, 7.4004, 7.4, 7.3998, 7.3989, 7.3963, 7.4015, 7.4013, 7.4011, 7.4003, 7.3999, 7.3991, 7.4004, 7.3999, 7.3991, 7.3985, 7.3985, 7.3998, 7.3993, 7.3985, 7.3977, 7.3973, 7.3989, 7.3981, 7.3975, 7.399, 7.3982, 7.3993, 7.3985, 7.399500000000001, 7.3987, 7.3979, 7.3971, 7.3964, 7.3958, 7.397, 7.3982, 7.3975, 7.397, 7.3984, 7.3997, 7.4012, 7.4032, 7.4026, 7.4038, 7.4031, 7.4023, 7.4016, 7.4009, 7.4001, 7.4013, 7.4061, 7.4075, 7.4103, 7.4105, 7.4107, 7.4107, 7.4099, 7.4093, 7.4084, 7.4077, 7.4087000000000005, 7.409700000000001, 7.411, 7.4124, 7.4137, 7.4129, 7.4142, 7.4155, 7.4168, 7.416, 7.4173, 7.4168, 7.4161, 7.4155, 7.4149, 7.4123, 7.4115, 7.4111, 7.4103, 7.4097, 7.411, 7.4102, 7.4094, 7.4086, 7.4078, 7.4091, 7.4083, 7.4077, 7.4071, 7.4063, 7.4055, 7.406, 7.4062, 7.4054, 7.4049, 7.4041, 7.4046, 7.408, 7.4073, 7.4066, 7.406, 7.4097, 7.411, 7.4102, 7.4095, 7.4087, 7.4082, 7.4074, 7.407, 7.4062, 7.4056, 7.4052, 7.4046, 7.4061, 7.4055, 7.4049, 7.4062, 7.4057, 7.4049, 7.4042, 7.4055, 7.4071, 7.4084, 7.4078, 7.4076, 7.4075, 7.4075, 7.4089, 7.4081, 7.4074, 7.409, 7.4102, 7.4099, 7.4116, 7.4113, 7.4106, 7.41, 7.4094, 7.4091, 7.4107, 7.4122, 7.4115, 7.4109, 7.4123, 7.4117, 7.4153, 7.4253, 7.4328, 7.4342, 7.4338, 7.4331, 7.4326, 7.4323, 7.4298, 7.4305, 7.4321, 7.4333, 7.4346, 7.436, 7.4353, 7.4348, 7.4353, 7.4381, 7.4394, 7.4386, 7.4382, 7.4375, 7.435, 7.4363, 7.4355, 7.4351, 7.4347, 7.4346, 7.4339, 7.4351, 7.4345, 7.4338, 7.4408, 7.44, 7.4412, 7.4404, 7.4396, 7.4388, 7.4399, 7.4393, 7.4406, 7.4402, 7.4395, 7.4389, 7.4401, 7.4396, 7.4388, 7.438, 7.4374, 7.4387, 7.4382, 7.4385, 7.4377, 7.4353, 7.4354, 7.4347, 7.436, 7.4352, 7.4376, 7.4368, 7.4362, 7.4355, 7.4352, 7.4344, 7.4338, 7.4333, 7.4326, 7.4319, 7.4314, 7.4325, 7.4337, 7.4349, 7.44, 7.4412, 7.4404, 7.4416, 7.4409, 7.4421, 7.4414, 7.4406, 7.4398, 7.4393, 7.4386, 7.4381, 7.4392, 7.4386, 7.4397, 7.4373, 7.4366, 7.4358, 7.435, 7.4362, 7.4377, 7.4389, 7.4401, 7.4412, 7.4404, 7.4398, 7.4425, 7.4417, 7.441, 7.4404, 7.4408, 7.4401, 7.4406, 7.442, 7.4432, 7.4425, 7.4437, 7.4413, 7.4424, 7.4435, 7.4428, 7.4422, 7.4414, 7.4406, 7.4398, 7.4392, 7.4385, 7.438, 7.4391, 7.4402, 7.4394, 7.4405, 7.44, 7.4409, 7.4407, 7.4402, 7.4394, 7.4405, 7.4397, 7.4409, 7.4401, 7.4413, 7.4405, 7.4418, 7.4427, 7.4419, 7.4412, 7.4406, 7.4398, 7.4392, 7.4403, 7.4415, 7.4433, 7.4427, 7.4422, 7.4433, 7.4425, 7.4419, 7.4412, 7.4412, 7.4406, 7.4418, 7.4411, 7.4404, 7.4399, 7.4487, 7.4482, 7.4475, 7.4468, 7.4461, 7.4456, 7.4451, 7.4445, 7.4464, 7.448, 7.4475, 7.4469, 7.4461, 7.4474, 7.4467, 7.4459, 7.4451, 7.4427, 7.4421, 7.4459, 7.4452, 7.4464, 7.4476, 7.447, 7.4462, 7.4458, 7.447, 7.4481, 7.4491, 7.4484, 7.4495, 7.4487, 7.4499, 7.4493, 7.4505, 7.4501, 7.4479, 7.4475, 7.447, 7.4481, 7.4476, 7.4489, 7.4485, 7.4486, 7.4499, 7.4476, 7.4508, 7.4501, 7.4497, 7.4491, 7.4488, 7.4464, 7.4459, 7.447, 7.4483, 7.448, 7.4473, 7.4597, 7.4598, 7.4591, 7.4592, 7.4585, 7.458, 7.4575, 7.4588, 7.4571, 7.4585, 7.4596, 7.4607, 7.46, 7.4593, 7.4605, 7.4598, 7.4593, 7.4588, 7.4581, 7.4596, 7.4592, 7.4586, 7.4579, 7.4572, 7.4565, 7.4561, 7.4554, 7.4565, 7.4558, 7.4551, 7.4543, 7.4536, 7.4529, 7.4524, 7.4517, 7.451, 7.4486, 7.4479, 7.4473, 7.4466, 7.446, 7.4453, 7.4446, 7.4459, 7.4455, 7.4448, 7.4441, 7.4441, 7.4418, 7.4429, 7.4441, 7.4434, 7.4428, 7.4422, 7.4415, 7.441, 7.4403, 7.4396, 7.4389, 7.4383, 7.4379, 7.4395, 7.4387, 7.438, 7.4373, 7.4384, 7.438, 7.4391, 7.4384, 7.438, 7.4375, 7.437, 7.4384, 7.4379, 7.4374, 7.4388, 7.4399, 7.441, 7.4405, 7.4417, 7.4411, 7.4406, 7.4401, 7.4396, 7.4408, 7.442, 7.4415, 7.4408, 7.4402, 7.4414, 7.4409, 7.4402, 7.4396, 7.439, 7.4383, 7.4383, 7.4376, 7.4353, 7.4367, 7.436, 7.437, 7.4364, 7.4358, 7.4371, 7.4365, 7.4358, 7.4352, 7.4348, 7.4341, 7.4338, 7.4332, 7.4326, 7.432, 7.4313, 7.4325, 7.432, 7.4314, 7.4309, 7.4303, 7.4315, 7.4327, 7.4321, 7.4314, 7.4308, 7.4301, 7.4312, 7.431, 7.4303, 7.434, 7.4351, 7.4362, 7.4373, 7.4368, 7.4382, 7.4379, 7.4372, 7.4383, 7.4394, 7.4389, 7.4382, 7.4375, 7.4371, 7.4365, 7.436, 7.4354, 7.4365, 7.4359, 7.4353, 7.4359, 7.4356, 7.4334, 7.4327, 7.4339, 7.4335, 7.4351, 7.4361, 7.4356, 7.4352, 7.4345, 7.4338, 7.4348, 7.4354, 7.4348, 7.4341, 7.4336, 7.433, 7.4325, 7.4319, 7.4312, 7.4325, 7.4321, 7.4315, 7.4309, 7.4321, 7.4317, 7.4311, 7.4304, 7.43, 7.4311, 7.4321, 7.4332, 7.4326, 7.4319, 7.4312, 7.4307, 7.4302, 7.4329, 7.4323, 7.4317, 7.4311, 7.4309, 7.4302, 7.4295, 7.4307, 7.4301, 7.4297, 7.4294, 7.4287, 7.4282, 7.4292, 7.4285, 7.4282, 7.4275, 7.4269, 7.4262, 7.4255, 7.4249, 7.4244, 7.4283, 7.4278, 7.4272, 7.4266, 7.426, 7.4255, 7.4233, 7.4226, 7.422, 7.4214, 7.4208, 7.4202, 7.4196, 7.4191, 7.4184, 7.4206, 7.4201, 7.4212, 7.4206, 7.4199, 7.4192, 7.4186, 7.42, 7.4194, 7.419, 7.4185, 7.4181, 7.4191, 7.4184, 7.418, 7.4159, 7.4153, 7.4148, 7.4145, 7.4138, 7.4131, 7.4124, 7.4136, 7.4146, 7.4142, 7.4137, 7.4135, 7.4128, 7.4106, 7.4101, 7.4112, 7.4106, 7.4106, 7.4099, 7.4093, 7.4121, 7.4114, 7.4111, 7.4105, 7.4098, 7.4093, 7.4104, 7.4099, 7.4112, 7.4105, 7.4084, 7.4084, 7.4083, 7.4094, 7.409, 7.4117, 7.4113, 7.4123, 7.4134, 7.4145, 7.4139, 7.4132, 7.4126, 7.4121, 7.4117, 7.4111, 7.4105, 7.4115, 7.4109, 7.4119, 7.4113, 7.4109, 7.4104, 7.4097, 7.409, 7.4086, 7.408, 7.4074, 7.4069, 7.4082, 7.4097, 7.4092, 7.4086, 7.4082, 7.4081, 7.4091, 7.4086, 7.408, 7.4074, 7.4068, 7.4062, 7.4077, 7.4088, 7.4099, 7.4092, 7.4104, 7.4098, 7.4092, 7.4102, 7.4098, 7.4109, 7.4105, 7.4099, 7.4109, 7.4103, 7.4113, 7.4124, 7.4124, 7.4118, 7.4129, 7.4109, 7.4199, 7.4193, 7.4188, 7.4182, 7.4193, 7.4187, 7.4181, 7.4176, 7.4169, 7.4166, 7.416, 7.4154, 7.415, 7.4145, 7.4173, 7.4168, 7.4162, 7.4156, 7.4135, 7.4129, 7.4126, 7.4137, 7.4131, 7.413, 7.4113, 7.4148, 7.4143, 7.4154, 7.4148, 7.4159, 7.4153, 7.4136, 7.413, 7.414, 7.4135, 7.4145, 7.4139, 7.4213, 7.4217, 7.421, 7.4204, 7.4198, 7.4192, 7.4189, 7.42, 7.4211, 7.4204, 7.4201, 7.4197, 7.4192, 7.4187, 7.4227, 7.4222, 7.4216, 7.421, 7.4205, 7.4267, 7.4261, 7.4254, 7.4264, 7.4275, 7.427, 7.4263, 7.4256, 7.4249, 7.4244, 7.425, 7.4246, 7.4241, 7.4235, 7.4229, 7.4225, 7.4219, 7.42, 7.4196, 7.4191, 7.4187, 7.4181, 7.4191, 7.42, 7.4211, 7.4205, 7.4199, 7.4194, 7.4188, 7.4182, 7.4176, 7.417, 7.4181, 7.4175, 7.4169, 7.4149, 7.4144, 7.4163, 7.4184, 7.42, 7.4216, 7.4227, 7.4221, 7.4231, 7.4242, 7.4251, 7.4262, 7.4257, 7.4252, 7.4263, 7.4258, 7.4252, 7.4262, 7.4258, 7.4253, 7.4269, 7.427, 7.4264, 7.426, 7.4239, 7.4232, 7.4226, 7.4236, 7.4231, 7.4225, 7.4221, 7.4219, 7.4229, 7.4238, 7.4232, 7.4227, 7.4237, 7.4231, 7.4227, 7.4222, 7.4216, 7.4212, 7.4207, 7.4201, 7.4195, 7.4192, 7.4188, 7.4182, 7.4191, 7.4188, 7.4184, 7.4178, 7.4188, 7.4198, 7.4208, 7.4203, 7.4212, 7.4221, 7.4215, 7.4257, 7.4252, 7.4248, 7.4242, 7.4239, 7.4235, 7.4262, 7.4256, 7.4265, 7.4278, 7.4288, 7.4284, 7.4281, 7.4291, 7.4272, 7.4296, 7.43, 7.4296, 7.4313, 7.4324, 7.4308, 7.429, 7.4302, 7.4296, 7.429, 7.4301, 7.4311, 7.4305, 7.4299, 7.431, 7.429, 7.4301, 7.4295, 7.4291, 7.4286, 7.4281, 7.4276, 7.4273, 7.4269, 7.4263, 7.4257, 7.4253, 7.4247, 7.4241, 7.4235, 7.4245, 7.4255, 7.425, 7.4255, 7.4236, 7.4232, 7.4226, 7.4223, 7.4219, 7.4213, 7.4223, 7.4221, 7.4217, 7.4211, 7.4208, 7.4204, 7.4199, 7.4194, 7.4203, 7.4198, 7.4209, 7.4204, 7.4214, 7.4209, 7.4206, 7.4203, 7.4197, 7.4193, 7.4203, 7.4197, 7.4177, 7.4171, 7.418, 7.4189, 7.4185, 7.4179, 7.4204, 7.4199, 7.4179, 7.4173, 7.4168, 7.4163, 7.4194, 7.4188, 7.4197, 7.4192, 7.4213, 7.4223, 7.4235, 7.4262, 7.4256, 7.4266, 7.4275, 7.4272, 7.4297, 7.4277, 7.4271, 7.4265, 7.4259, 7.4269, 7.4263, 7.4258, 7.4253, 7.4263, 7.4273, 7.4267, 7.4262, 7.4256, 7.4252, 7.4233, 7.4229, 7.424, 7.4235, 7.423, 7.4224, 7.4218, 7.4222, 7.4216, 7.4226, 7.422, 7.4229, 7.4225, 7.422, 7.4214, 7.4224, 7.4234, 7.4237, 7.4247, 7.4242, 7.4236, 7.4246, 7.424, 7.4234, 7.423, 7.4226, 7.422, 7.4214, 7.4209, 7.4203, 7.4202, 7.4212, 7.4237, 7.4232, 7.4228, 7.4223, 7.4233, 7.4228, 7.4228, 7.4222, 7.4233, 7.4227, 7.4237, 7.4231, 7.4225, 7.4221, 7.4217, 7.4213, 7.4209, 7.4203, 7.4212, 7.4206, 7.4203, 7.4197, 7.4191, 7.4186, 7.4181, 7.4175, 7.416, 7.4169, 7.4178, 7.4173, 7.4168, 7.4168, 7.4153, 7.4148, 7.4158, 7.4152, 7.4162, 7.4157, 7.4188, 7.4182, 7.4177, 7.4172, 7.4167, 7.4162, 7.4157, 7.4169, 7.4167, 7.4177, 7.4173, 7.4171, 7.4167, 7.4162, 7.4172, 7.4183, 7.4194, 7.4189, 7.4198, 7.4194, 7.4206, 7.4231, 7.4239, 7.4234, 7.4233, 7.423, 7.4224, 7.4234, 7.4228, 7.4209, 7.4205, 7.4199, 7.4193, 7.4189, 7.4185, 7.4183, 7.418, 7.4179, 7.4175, 7.4169, 7.4164, 7.4175, 7.4171, 7.4166, 7.4176, 7.4189, 7.417, 7.4168, 7.4163, 7.416, 7.4155, 7.4165, 7.416, 7.417, 7.4179, 7.4174, 7.4169, 7.4164, 7.416, 7.4157, 7.4163, 7.4158, 7.4154, 7.4148, 7.4159, 7.4153, 7.4147, 7.4143, 7.4137, 7.4133, 7.4127, 7.4122, 7.4119, 7.4113, 7.4108, 7.4104, 7.4098, 7.4092, 7.4087, 7.4083, 7.4068, 7.405, 7.4044, 7.4039, 7.4034, 7.4044, 7.4039, 7.4034, 7.403, 7.4024, 7.4019, 7.4014, 7.4008, 7.4004, 7.3987, 7.4005, 7.4002, 7.4014, 7.401, 7.4007, 7.4005, 7.4003, 7.4004, 7.4, 7.4016, 7.4013, 7.4008, 7.4005, 7.4002, 7.3998, 7.3994, 7.3989, 7.3984, 7.3993, 7.3988, 7.3983, 7.398, 7.3974, 7.397, 7.3966, 7.3961, 7.3958, 7.3954, 7.395, 7.3948, 7.3943, 7.3937, 7.3934, 7.393, 7.3939, 7.3942, 7.3951, 7.3947, 7.3943, 7.394, 7.3935, 7.3932, 7.3932, 7.3927, 7.3923, 7.392, 7.3916, 7.3911, 7.3905, 7.3901, 7.391, 7.3905, 7.3903, 7.3898, 7.3896, 7.3892, 7.3889, 7.3884, 7.3878, 7.3873, 7.3883, 7.3878, 7.3873, 7.3868, 7.3866, 7.3861, 7.3858, 7.3853, 7.3849, 7.3846, 7.3855, 7.3851, 7.3845, 7.3839, 7.3833, 7.383, 7.3825, 7.3821, 7.383, 7.3826, 7.3823, 7.3818, 7.3813, 7.3809, 7.3805, 7.3801, 7.3811, 7.3806, 7.3815, 7.381, 7.3805, 7.38, 7.3809, 7.3804, 7.3799, 7.3807, 7.3826, 7.382, 7.3829, 7.3825, 7.3823, 7.3817, 7.3827, 7.3823, 7.3832, 7.3827, 7.3822, 7.3889, 7.3883, 7.3878, 7.3872, 7.3867, 7.3849, 7.3847, 7.3856, 7.3851, 7.3862, 7.3872, 7.3867, 7.3876, 7.3872, 7.3883, 7.3881, 7.3878, 7.3928, 7.3939, 7.3933, 7.3931, 7.3929, 7.3926, 7.3921, 7.3916, 7.3912, 7.3906, 7.3901, 7.391, 7.3919, 7.3928, 7.3924, 7.3919, 7.3915, 7.3915, 7.3912, 7.3911, 7.3907, 7.3903, 7.39, 7.3896, 7.3891, 7.3886, 7.3882, 7.3877, 7.3872, 7.3867, 7.3864, 7.3862, 7.3857, 7.3866, 7.3875, 7.3885, 7.3879, 7.3878, 7.3873, 7.3897, 7.3891, 7.3873, 7.3871, 7.3867, 7.3862, 7.3857, 7.3852, 7.3847, 7.386, 7.387, 7.3866, 7.3862, 7.3858, 7.3852, 7.3847, 7.3842, 7.385, 7.3845, 7.3853, 7.3851, 7.3845, 7.3854, 7.3863, 7.3858, 7.3854, 7.385, 7.3847, 7.3842, 7.3839, 7.3834, 7.3831, 7.3826, 7.3824, 7.3819, 7.3814, 7.3797, 7.3806, 7.3801, 7.3809, 7.3832, 7.3827, 7.3823, 7.3832, 7.383, 7.3854, 7.3863, 7.386, 7.3855, 7.3857, 7.3855, 7.385, 7.3846, 7.3841, 7.3841, 7.3836, 7.3833, 7.3828, 7.3826, 7.3822, 7.3817, 7.3812, 7.3807, 7.3811, 7.3807, 7.3803, 7.38, 7.3797, 7.3793, 7.3788, 7.3783, 7.3778, 7.3787, 7.3795, 7.3804, 7.3813, 7.3808, 7.3804, 7.3801, 7.3796, 7.3793, 7.3789, 7.3788, 7.3797, 7.3792, 7.3801, 7.3796, 7.3796, 7.3791, 7.3802, 7.3799, 7.3796, 7.3791, 7.3806, 7.3801, 7.3797, 7.3783, 7.3781, 7.3776, 7.3774, 7.3783, 7.3778, 7.3786, 7.3769, 7.3766, 7.3761, 7.3756, 7.3766, 7.3763, 7.3772, 7.3767, 7.3762, 7.3759, 7.3754, 7.375, 7.3746, 7.3743, 7.3738, 7.3733, 7.3741, 7.3737, 7.3733, 7.373, 7.3739, 7.3735, 7.3746, 7.3742, 7.3737, 7.3734, 7.3729, 7.3738, 7.3734, 7.373, 7.3725, 7.3737, 7.3747, 7.3755, 7.3751, 7.3746, 7.3743, 7.3739, 7.3734, 7.3731, 7.3727, 7.3725, 7.3723, 7.3728, 7.3723, 7.372, 7.3716, 7.3699, 7.3694, 7.369, 7.37, 7.3696, 7.368, 7.3676, 7.3659, 7.3654, 7.3649, 7.3646, 7.3672, 7.3669, 7.3664, 7.3659, 7.3656, 7.3651, 7.3659, 7.3667, 7.3676, 7.3671, 7.3666, 7.3675, 7.367, 7.3665, 7.3662, 7.3658, 7.3653, 7.3661, 7.3658, 7.3656, 7.3652, 7.3648, 7.3644, 7.3653, 7.3661, 7.3657, 7.3652, 7.366, 7.3643, 7.3652, 7.3647, 7.3655, 7.365, 7.3659, 7.3656, 7.3665, 7.3661, 7.3669, 7.3665, 7.366, 7.3663, 7.3725, 7.3721, 7.373, 7.3726, 7.3735, 7.3743, 7.3744, 7.3739, 7.3734, 7.3743, 7.3738, 7.3735, 7.3743, 7.3739, 7.3736, 7.3746, 7.3755, 7.375, 7.3745, 7.3793, 7.3789, 7.3785, 7.3797, 7.3795, 7.379, 7.3786, 7.3795, 7.3791, 7.3788, 7.3797, 7.3792, 7.3789, 7.3798, 7.3793, 7.3788, 7.3773, 7.3768, 7.3771, 7.3766, 7.3776, 7.3771, 7.3767, 7.3765, 7.376, 7.3756, 7.3751, 7.3747, 7.3742, 7.3737, 7.3733, 7.373, 7.3726, 7.3723, 7.3733, 7.3729, 7.3741, 7.374, 7.3747, 7.3731, 7.3728, 7.3728, 7.3724, 7.3744, 7.3742, 7.3739, 7.3748, 7.3735, 7.3756, 7.3752, 7.3748, 7.3744, 7.3754, 7.3738, 7.3734, 7.3731, 7.3726, 7.3724, 7.3733, 7.3728, 7.3724, 7.3733, 7.3729, 7.3725, 7.3733, 7.3742, 7.3738, 7.3749, 7.3756, 7.3753, 7.375, 7.3758, 7.3755, 7.3764, 7.3759, 7.3754, 7.3749, 7.3746, 7.3743, 7.3739, 7.3736, 7.3732, 7.3742, 7.374, 7.3736, 7.3732, 7.3742, 7.3737, 7.372, 7.3715, 7.3724, 7.3733, 7.374, 7.3742, 7.3737, 7.3734, 7.3743, 7.3752, 7.3748, 7.3746, 7.3755, 7.3752, 7.3748, 7.3743, 7.3738, 7.3734, 7.373, 7.3726, 7.3722, 7.3718, 7.3714, 7.3711, 7.3709, 7.3705, 7.37, 7.3698, 7.3682, 7.3678, 7.3675, 7.3684, 7.368, 7.3677, 7.3673, 7.3668, 7.3668, 7.3676, 7.3672, 7.3669, 7.3669, 7.3664, 7.3673, 7.3657, 7.3653, 7.3662, 7.3659, 7.3654, 7.3666, 7.3663, 7.3646, 7.3641, 7.3637, 7.3635, 7.363, 7.3615, 7.3611, 7.3608, 7.3617, 7.3613, 7.3632, 7.3628, 7.3625, 7.3634, 7.3657, 7.3667, 7.3664, 7.3662, 7.3658, 7.3653, 7.3662, 7.366, 7.3655, 7.3663, 7.3658, 7.3667, 7.3663, 7.3672, 7.3667, 7.3675, 7.3683, 7.3682, 7.368, 7.3688, 7.3684, 7.367, 7.368, 7.3688, 7.3685, 7.3693, 7.3697, 7.3705, 7.3703, 7.3711, 7.3706, 7.3701, 7.3696, 7.3692, 7.3687, 7.3682, 7.369, 7.3685, 7.3682, 7.3666, 7.3661, 7.3669, 7.3668, 7.3676, 7.3672, 7.3693, 7.3701, 7.3698, 7.3693, 7.3716, 7.3713, 7.3709, 7.3717, 7.3712, 7.3719, 7.3726, 7.3722, 7.3717, 7.3717, 7.3712, 7.3708, 7.3704, 7.3713, 7.3721, 7.3716, 7.3711, 7.3708, 7.3703, 7.3699, 7.37, 7.3696, 7.3698, 7.3706, 7.3703, 7.37, 7.3696, 7.368, 7.3677, 7.3685, 7.3684, 7.3682, 7.3704, 7.37, 7.3695, 7.3733, 7.3733, 7.3729, 7.3721, 7.3718, 7.3726, 7.3724, 7.372, 7.3716, 7.3701, 7.3697, 7.3681, 7.3676, 7.3672, 7.3697, 7.3693, 7.3689, 7.3686, 7.3687, 7.3684, 7.368, 7.3683, 7.3678, 7.3711, 7.3733, 7.373, 7.3727, 7.3723, 7.3722, 7.373, 7.3737, 7.3733, 7.373, 7.3727, 7.3736, 7.3731, 7.3715, 7.3722, 7.3718, 7.3714, 7.3712, 7.3707, 7.3703, 7.3698, 7.3693, 7.369, 7.3686, 7.3683, 7.368, 7.3676, 7.3672, 7.3668, 7.3665, 7.3661, 7.3669, 7.3664, 7.3661, 7.3656, 7.3654, 7.365, 7.3635, 7.3633, 7.3629, 7.3637, 7.3633, 7.364, 7.3636, 7.3631, 7.3639, 7.3634, 7.3629, 7.3625, 7.3633, 7.363, 7.3625, 7.3633, 7.3641, 7.3636, 7.3631, 7.3627, 7.3634, 7.3643, 7.3651, 7.3648, 7.3632, 7.3639, 7.3635, 7.3643, 7.364, 7.3636, 7.3631, 7.3629, 7.3625, 7.3633, 7.3628, 7.3624, 7.362, 7.3631, 7.3626, 7.3634, 7.3629, 7.3637, 7.3635, 7.3643, 7.3639, 7.3647, 7.3667, 7.3682, 7.369, 7.3686, 7.3681, 7.3678, 7.3686, 7.3681, 7.3679, 7.3674, 7.3683, 7.3679, 7.3688, 7.3684, 7.3727, 7.3722, 7.3731, 7.3739, 7.3761, 7.3756, 7.3763, 7.3759, 7.3767, 7.3763, 7.376, 7.3757, 7.3754, 7.375, 7.3745, 7.3753, 7.375, 7.3759, 7.3755, 7.3751, 7.3747, 7.3742, 7.3727, 7.3722, 7.3717, 7.3714, 7.3709, 7.3704, 7.37, 7.3709, 7.3716, 7.3712, 7.3707, 7.3704, 7.3712, 7.3709, 7.3708, 7.3704, 7.37, 7.3696, 7.3692, 7.3687, 7.3683, 7.3681, 7.3676, 7.3683, 7.368, 7.369, 7.3686, 7.3682, 7.3689, 7.3685, 7.367, 7.3679, 7.3674, 7.3694, 7.3702, 7.3687, 7.3684, 7.368, 7.3675, 7.3672, 7.3668, 7.3667, 7.3664, 7.3673, 7.3668, 7.3675, 7.367, 7.3678, 7.3686, 7.3683, 7.369, 7.3687, 7.3683, 7.3679, 7.3675, 7.3671, 7.3669, 7.3677, 7.3673, 7.3682, 7.368, 7.3677, 7.3674, 7.3688, 7.3685, 7.3681, 7.369, 7.3699, 7.3695, 7.3702, 7.3699, 7.3695, 7.3703, 7.3699, 7.3684, 7.368, 7.3676, 7.3672, 7.3684, 7.3679, 7.3687, 7.3684, 7.3691, 7.369, 7.3686, 7.3682, 7.3689, 7.3686, 7.3681, 7.3677, 7.3674, 7.3681, 7.3676, 7.3672, 7.3667, 7.3662, 7.3657, 7.367, 7.3665, 7.366, 7.3657, 7.3652, 7.3647, 7.3643, 7.3639, 7.3647, 7.3642, 7.365, 7.3649, 7.3645, 7.3652, 7.3651, 7.3647, 7.3643, 7.3639, 7.364, 7.3637, 7.3645, 7.3643, 7.365, 7.3647, 7.3643, 7.3641, 7.3649, 7.3657, 7.3653, 7.3651, 7.367, 7.3667, 7.3663, 7.3664, 7.366, 7.3656, 7.3655, 7.3651, 7.3647, 7.3642, 7.3638, 7.3646, 7.3643, 7.3651, 7.3647, 7.3643, 7.3638, 7.3624, 7.3621, 7.3628, 7.3624, 7.3632, 7.3628, 7.3636, 7.3632, 7.3628, 7.3625, 7.3622, 7.3619, 7.3615, 7.36, 7.3608, 7.3605, 7.3601, 7.3598, 7.3606, 7.3602, 7.3597, 7.3592, 7.3588, 7.3596, 7.3591, 7.3589, 7.3587, 7.3585, 7.3598, 7.3595, 7.3593, 7.3589, 7.3591, 7.3601, 7.3616, 7.366, 7.3656, 7.3663, 7.3659, 7.3656, 7.3653, 7.3661, 7.3657, 7.3653, 7.365, 7.3645, 7.3641, 7.3637, 7.3633, 7.3629, 7.3625, 7.3622, 7.3618, 7.3615, 7.3623, 7.362, 7.3651, 7.3649, 7.3645, 7.3641, 7.3637, 7.3645, 7.3653, 7.365, 7.3646, 7.3653, 7.366, 7.3656, 7.3663, 7.3661, 7.3657, 7.3653, 7.3649, 7.3646, 7.3643, 7.364, 7.3636, 7.3645, 7.3641, 7.3636, 7.3632, 7.364, 7.3647, 7.3644, 7.364, 7.3648, 7.3644, 7.364, 7.3626, 7.3622, 7.3619, 7.3617, 7.3613, 7.3609, 7.3607, 7.3605, 7.3613, 7.3621, 7.3628, 7.3635, 7.364, 7.3637, 7.3632, 7.3628, 7.3624, 7.3625, 7.3611, 7.3619, 7.3616, 7.3612, 7.361, 7.3617, 7.3624, 7.3632, 7.3628, 7.3624, 7.3621, 7.3617, 7.3619, 7.3616, 7.3613, 7.3609, 7.3605, 7.3612, 7.3608, 7.3605, 7.3603, 7.36, 7.3597, 7.3595, 7.3592, 7.3589, 7.36, 7.3612, 7.3608, 7.3593, 7.3591, 7.3588, 7.3607, 7.3603, 7.3599, 7.3606, 7.3604, 7.359, 7.3586, 7.3582, 7.3568, 7.3576, 7.3573, 7.3569, 7.3577, 7.3573, 7.3568, 7.3575, 7.3582, 7.3589, 7.3585, 7.3596, 7.3592, 7.3632, 7.3629, 7.3625, 7.3633, 7.3641, 7.3649, 7.3657, 7.3653, 7.3649, 7.3647, 7.3655, 7.3652, 7.3648, 7.3644, 7.364, 7.3638, 7.3634, 7.3641, 7.3639, 7.3636, 7.3632, 7.3629, 7.3616, 7.3613, 7.3609, 7.3605, 7.3601, 7.3598, 7.3594, 7.3604, 7.3623, 7.3622, 7.3618, 7.3625, 7.3621, 7.3617, 7.3633, 7.3641, 7.3637, 7.3659, 7.3666, 7.3676, 7.3674, 7.3681, 7.3688, 7.3684, 7.3691, 7.3687, 7.3684, 7.368, 7.3677, 7.3673, 7.3682, 7.3689, 7.3686, 7.3682, 7.3678, 7.3675, 7.3671, 7.3679, 7.3678, 7.3674, 7.367, 7.3666, 7.3674, 7.3681, 7.3677, 7.3673, 7.3669, 7.3675, 7.3671, 7.3657, 7.3664, 7.366, 7.3657, 7.3654, 7.365, 7.3647, 7.3643, 7.364, 7.3637, 7.3634, 7.3632, 7.3628, 7.3624, 7.3645, 7.3642, 7.364, 7.3636, 7.3632, 7.3628, 7.3625, 7.3625, 7.3621, 7.3629, 7.3625, 7.3633, 7.3629, 7.3627, 7.3637, 7.3633, 7.3631, 7.3629, 7.3625, 7.3621, 7.3617, 7.3613, 7.3609, 7.3614, 7.361, 7.3606, 7.3602, 7.3598, 7.3594, 7.3601, 7.3597, 7.3604, 7.3601, 7.3597, 7.3605, 7.3613, 7.362, 7.3624, 7.3623, 7.3625, 7.3633, 7.3674, 7.367, 7.3677, 7.3684, 7.3691, 7.3687, 7.3684, 7.3692, 7.3688, 7.3685, 7.3682, 7.3678, 7.3674, 7.367, 7.3666, 7.3664, 7.3671, 7.3667, 7.3663, 7.3659, 7.3655, 7.3662, 7.3658, 7.3654, 7.3661, 7.3657, 7.3654, 7.365, 7.3646, 7.3642, 7.364, 7.3648, 7.3645, 7.3641, 7.3637, 7.3633, 7.364, 7.3636, 7.3644, 7.3651, 7.3647, 7.3657, 7.3654, 7.3661, 7.3669, 7.3665, 7.3678, 7.3674, 7.367, 7.3668, 7.3665, 7.3672, 7.3671, 7.3678, 7.3664, 7.3682, 7.3711, 7.3707, 7.3703, 7.3725, 7.3722, 7.3718, 7.3706, 7.3703, 7.3702, 7.3706, 7.3708, 7.3704, 7.3701, 7.3698, 7.3696, 7.3693, 7.369, 7.3687, 7.3684, 7.3681, 7.3678, 7.3675, 7.3674, 7.367, 7.3682, 7.3679, 7.3677, 7.3674, 7.3671, 7.3669, 7.3667, 7.3665, 7.3662, 7.3661, 7.3657, 7.3653, 7.3651, 7.3647, 7.3655, 7.3662, 7.3658, 7.3673, 7.3669, 7.3666, 7.3663, 7.3659, 7.3655, 7.3662, 7.3702, 7.3709, 7.3706, 7.3703, 7.3701, 7.3697, 7.3693, 7.3689, 7.3696, 7.3693, 7.369, 7.3687, 7.3683, 7.3691, 7.3688, 7.3685, 7.3691, 7.3699, 7.3696, 7.3697, 7.3693, 7.369, 7.369, 7.3696, 7.3694, 7.369, 7.3687, 7.3683, 7.369, 7.3688, 7.3685, 7.3693, 7.369, 7.3687, 7.3713, 7.3721, 7.3728, 7.3725, 7.3722, 7.3718, 7.3714, 7.3711, 7.3707, 7.3703, 7.3699, 7.3695, 7.3696, 7.3703, 7.3699, 7.3695, 7.3691, 7.3688, 7.3707, 7.3703, 7.3699, 7.3696, 7.3692, 7.369, 7.3686, 7.3684, 7.3699, 7.3695, 7.3682, 7.3721, 7.3718, 7.3717, 7.3713, 7.3721, 7.3717, 7.3714, 7.371, 7.3717, 7.3714, 7.3711, 7.3718, 7.3714, 7.371, 7.3717, 7.3713, 7.3743, 7.374, 7.3739, 7.3735, 7.3742, 7.3749, 7.3745, 7.3742, 7.3738, 7.3745, 7.3768, 7.3774, 7.3771, 7.3767, 7.3763, 7.3759, 7.3755, 7.3751, 7.3747, 7.3754, 7.3762, 7.3758, 7.3765, 7.377, 7.3767, 7.3763, 7.376, 7.3767, 7.3763, 7.376, 7.3758, 7.3754, 7.3751, 7.3747, 7.3744, 7.3742, 7.3739, 7.3735, 7.3731, 7.3728, 7.3724, 7.372, 7.3717, 7.3716, 7.3724, 7.3725, 7.3741, 7.3738, 7.3745, 7.3752, 7.376, 7.3758, 7.3762, 7.3758, 7.3754, 7.3752, 7.3749, 7.3747, 7.3743, 7.3778, 7.3774, 7.3761, 7.3769, 7.3765, 7.3762, 7.376, 7.3748, 7.3754, 7.375, 7.3757, 7.3754, 7.3762, 7.3759, 7.3762, 7.377, 7.3768, 7.3765, 7.3761, 7.3767, 7.3775, 7.3773, 7.377, 7.3766, 7.3753, 7.3749, 7.3745, 7.3742, 7.374, 7.3737, 7.3744, 7.374, 7.3747, 7.3745, 7.3741, 7.3738, 7.3734, 7.373, 7.3744, 7.374, 7.3747, 7.3743, 7.375, 7.3757, 7.3753, 7.375, 7.3746, 7.3742, 7.3739, 7.3735, 7.3731, 7.3729, 7.3726, 7.3732, 7.3729, 7.3736, 7.3732, 7.3741, 7.3737, 7.3744, 7.3741, 7.3737, 7.3733, 7.373, 7.3727, 7.3744, 7.3741, 7.3737, 7.3734, 7.374, 7.3746, 7.3743, 7.374, 7.3736, 7.3732, 7.3734, 7.373, 7.3736, 7.3742, 7.3738, 7.3734, 7.3731, 7.3737, 7.3734, 7.374, 7.3736, 7.3743, 7.3739, 7.3735, 7.3732, 7.3739, 7.3737, 7.3734, 7.373, 7.3727, 7.3734, 7.373, 7.3727, 7.3735, 7.3755, 7.3772, 7.377, 7.3769, 7.3767, 7.3774, 7.3771, 7.3768, 7.3765, 7.3761, 7.3764, 7.3766, 7.3774, 7.3771, 7.3768, 7.3775, 7.3772, 7.378, 7.38, 7.3807, 7.3805, 7.3802, 7.3798, 7.3796, 7.3792, 7.3789, 7.3796, 7.3794, 7.379, 7.3797, 7.3793, 7.3789, 7.3787, 7.3783, 7.3779, 7.3777, 7.3783, 7.3792, 7.3788, 7.3794, 7.3791, 7.3788, 7.3784, 7.378, 7.3778, 7.3775, 7.3772, 7.3779, 7.3775, 7.3771, 7.3778, 7.3774, 7.377, 7.3767, 7.3773, 7.376, 7.3756, 7.3753, 7.3749, 7.3746, 7.3733, 7.373, 7.3726, 7.3723, 7.3719, 7.3726, 7.3723, 7.372, 7.3717, 7.3713, 7.371, 7.3717, 7.3715, 7.3711, 7.3708, 7.3714, 7.3711, 7.3719, 7.3726, 7.3723, 7.3719, 7.3717, 7.3713, 7.3711, 7.3708, 7.3705, 7.3701, 7.3697, 7.3704, 7.37, 7.3696, 7.3692, 7.3679, 7.3676, 7.3673, 7.3679, 7.3675, 7.3672, 7.3679, 7.3684, 7.368, 7.3676, 7.3673, 7.366, 7.3658, 7.3655, 7.3652, 7.3659, 7.3666, 7.3662, 7.367, 7.367, 7.3667, 7.3657, 7.3654, 7.3662, 7.3679, 7.3679, 7.3681, 7.3678, 7.3674, 7.3676, 7.3695, 7.3693, 7.3689, 7.3686, 7.3684, 7.368, 7.3676, 7.3673, 7.3671, 7.3669, 7.3665, 7.3662, 7.3659, 7.3656, 7.3654, 7.3651, 7.3689, 7.3718, 7.3716, 7.3714, 7.372, 7.3756, 7.3762, 7.3759, 7.3766, 7.3763, 7.3759, 7.3755, 7.3752, 7.3748, 7.3755, 7.3762, 7.3768, 7.3774, 7.3771, 7.3768, 7.3765, 7.3761, 7.3759, 7.3756, 7.3752, 7.376, 7.3756, 7.3753, 7.375, 7.3756, 7.3753, 7.3752, 7.375, 7.3747, 7.3745, 7.3742, 7.3739, 7.3746, 7.3742, 7.3739, 7.3736, 7.3734, 7.3731, 7.3729, 7.3726, 7.3733, 7.3729, 7.3725, 7.3723, 7.3729, 7.3725, 7.3722, 7.3729, 7.3755, 7.3753, 7.3769, 7.3765, 7.3762, 7.3759, 7.3756, 7.3753, 7.375, 7.3746, 7.3753, 7.375, 7.3747, 7.3745, 7.3741, 7.3737, 7.3734, 7.373, 7.3726, 7.3723, 7.3729, 7.3736, 7.3734, 7.373, 7.3726, 7.3742, 7.3738, 7.3744, 7.374, 7.3746, 7.3742, 7.3738, 7.3745, 7.3742, 7.3738, 7.3735, 7.3742, 7.3739, 7.3746, 7.3745, 7.3751, 7.3759, 7.3765, 7.3762, 7.375, 7.3747, 7.3744, 7.3742, 7.374, 7.3738, 7.3735, 7.3734, 7.3741, 7.3739, 7.3736, 7.3744, 7.3741, 7.3738, 7.3746, 7.3744, 7.3741, 7.3738, 7.3738, 7.3745, 7.3742, 7.3738, 7.3735, 7.3731, 7.3737, 7.3734, 7.3731, 7.3729, 7.3726, 7.3732, 7.3738, 7.3734, 7.374, 7.3737, 7.3743, 7.3741, 7.3742, 7.3748, 7.3746, 7.3742, 7.3748, 7.3745, 7.3741, 7.3747, 7.3756, 7.3753, 7.375, 7.3746, 7.3752, 7.3749, 7.3747, 7.3746, 7.3743, 7.3739, 7.3745, 7.3742, 7.3748, 7.3766, 7.3763, 7.3761, 7.3757, 7.3753, 7.376, 7.3757, 7.3754, 7.3751, 7.3748, 7.3754, 7.3751, 7.3771, 7.3768, 7.3776, 7.3787, 7.3843, 7.3842, 7.3838, 7.3851, 7.3867, 7.3873, 7.3869, 7.3899, 7.3896, 7.3892, 7.3899, 7.3887, 7.3883, 7.3879, 7.3885, 7.3881, 7.3879, 7.3876, 7.3872, 7.3868, 7.3864, 7.387, 7.3858, 7.3854, 7.3867, 7.3865, 7.3871, 7.3871, 7.3877, 7.3876, 7.3872, 7.3869, 7.3865, 7.3862, 7.3859, 7.3858, 7.3866, 7.3864, 7.387, 7.3876, 7.3872, 7.3869, 7.3865, 7.3864, 7.3861, 7.3857, 7.3853, 7.3859, 7.3861, 7.3867, 7.3873, 7.387, 7.3867, 7.3865, 7.3862, 7.386, 7.3856, 7.3853, 7.386, 7.3859, 7.3847, 7.3846, 7.3852, 7.3851, 7.3857, 7.3863, 7.3862, 7.3868, 7.3864, 7.3862, 7.386, 7.3856, 7.3853, 7.385, 7.3848, 7.3845, 7.3843, 7.3846, 7.3844, 7.3851, 7.3857, 7.3855, 7.3852, 7.3848, 7.3856, 7.3853, 7.385, 7.3856, 7.3855, 7.3852, 7.3848, 7.3836, 7.3824, 7.3823, 7.382, 7.3817, 7.3814, 7.3821, 7.3828, 7.3825, 7.3822, 7.3822, 7.3818, 7.3814, 7.382, 7.3827, 7.3824, 7.3829, 7.3826, 7.3814, 7.3802, 7.379, 7.3787, 7.3784, 7.3773, 7.377, 7.3767, 7.3755, 7.3752, 7.3749, 7.3746, 7.3743, 7.3749, 7.3755, 7.3753, 7.3749, 7.3746, 7.3742, 7.3738, 7.3734, 7.373, 7.373, 7.3735, 7.3731, 7.3729, 7.3725, 7.3722, 7.3728, 7.3725, 7.3722, 7.3728, 7.3724, 7.3722, 7.3722, 7.372, 7.3717, 7.3713, 7.3719, 7.3717, 7.3714, 7.371, 7.3716, 7.3716, 7.3713, 7.3711, 7.37, 7.3698, 7.3704, 7.3702, 7.3699, 7.3696, 7.3693, 7.3699, 7.3695, 7.3704, 7.3702, 7.3708, 7.3714, 7.371, 7.3706, 7.3695, 7.3702, 7.3703, 7.3699, 7.3697, 7.3693, 7.3689, 7.3695, 7.3691, 7.3688, 7.3701, 7.3689, 7.3686, 7.3694, 7.3701, 7.3708, 7.3705, 7.3703, 7.3709, 7.3716, 7.3712, 7.3708, 7.3704, 7.3703, 7.37, 7.3706, 7.3702, 7.3699, 7.3697, 7.3695, 7.3691, 7.3687, 7.3683, 7.3689, 7.3695, 7.3708, 7.3696, 7.3693, 7.3699, 7.3705, 7.3712, 7.3708, 7.3708, 7.3705, 7.3711, 7.3707, 7.3704, 7.371, 7.3716, 7.3713, 7.371, 7.3707, 7.3706, 7.3714, 7.371, 7.3707, 7.3703, 7.3709, 7.3706, 7.3694, 7.3693, 7.369, 7.3696, 7.3693, 7.3706, 7.3712, 7.37, 7.3697, 7.3693, 7.3689, 7.3695, 7.3693, 7.3689, 7.3695, 7.3691, 7.3688, 7.3685, 7.3682, 7.3679, 7.3676, 7.3673, 7.3672, 7.3669, 7.3668, 7.3674, 7.3672, 7.367, 7.3667, 7.3664, 7.367, 7.3677, 7.3683, 7.369, 7.3688, 7.3685, 7.3682, 7.3688, 7.3685, 7.3683, 7.368, 7.3678, 7.3675, 7.3681, 7.3678, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3661, 7.3658, 7.3656, 7.3663, 7.366, 7.3657, 7.3653, 7.3649, 7.3656, 7.3654, 7.3651, 7.3648, 7.3645, 7.367, 7.3677, 7.3676, 7.3672, 7.3669, 7.3675, 7.3672, 7.3677, 7.3673, 7.3679, 7.3677, 7.3683, 7.368, 7.3677, 7.3683, 7.3691, 7.3697, 7.3694, 7.3691, 7.3697, 7.3694, 7.3691, 7.3689, 7.3686, 7.3692, 7.3689, 7.3686, 7.3691, 7.3688, 7.3684, 7.3683, 7.368, 7.3676, 7.3674, 7.3678, 7.3684, 7.3681, 7.3687, 7.3693, 7.369, 7.3688, 7.3686, 7.3683, 7.3689, 7.3695, 7.3683, 7.3689, 7.3695, 7.3692, 7.3689, 7.3695, 7.3692, 7.368, 7.3685, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3686, 7.3683, 7.3688, 7.3685, 7.3697, 7.3703, 7.3701, 7.3701, 7.3699, 7.3697, 7.3698, 7.3696, 7.3695, 7.3692, 7.3689, 7.3686, 7.3684, 7.3681, 7.3687, 7.3685, 7.3691, 7.3681, 7.3678, 7.3684, 7.3681, 7.3678, 7.3675, 7.3672, 7.3679, 7.3676, 7.3673, 7.3671, 7.3668, 7.3675, 7.368, 7.3676, 7.3673, 7.367, 7.3668, 7.3665, 7.3662, 7.3659, 7.3656, 7.3652, 7.3649, 7.3647, 7.3652, 7.3649, 7.3645, 7.3665, 7.3665, 7.368, 7.3677, 7.3683, 7.3672, 7.3669, 7.3666, 7.3671, 7.3677, 7.3674, 7.3679, 7.3676, 7.3673, 7.3679, 7.3676, 7.3681, 7.3678, 7.3675, 7.3672, 7.3669, 7.3666, 7.3663, 7.366, 7.3658, 7.3664, 7.3662, 7.3668, 7.3665, 7.3661, 7.365, 7.3648, 7.3645, 7.3651, 7.3647, 7.3652, 7.3658, 7.3663, 7.3668, 7.3665, 7.3661, 7.3658, 7.3665, 7.3662, 7.3668, 7.3674, 7.3672, 7.3668, 7.3674, 7.3672, 7.3669, 7.3667, 7.3664, 7.3661, 7.3657, 7.3654, 7.3651, 7.3647, 7.3644, 7.3641, 7.3638, 7.3637, 7.3634, 7.3624, 7.3621, 7.3619, 7.3616, 7.3631, 7.3672, 7.367, 7.3659, 7.3666, 7.3664, 7.366, 7.3657, 7.3673, 7.3662, 7.3659, 7.3656, 7.3662, 7.3659, 7.3668, 7.3665, 7.3682, 7.3693, 7.369, 7.3687, 7.3684, 7.3681, 7.3683, 7.3681, 7.3687, 7.3684, 7.3689, 7.3686, 7.3675, 7.3673, 7.367, 7.3668, 7.3673, 7.3671, 7.3668, 7.3666, 7.3655, 7.3652, 7.3677, 7.3683, 7.3689, 7.3686, 7.3683, 7.3681, 7.3679, 7.3694, 7.3699, 7.3695, 7.3692, 7.3689, 7.369, 7.3687, 7.3684, 7.3681, 7.3687, 7.3684, 7.3681, 7.3679, 7.3668, 7.3667, 7.3673, 7.3679, 7.3685, 7.3683, 7.368, 7.3678, 7.3667, 7.3664, 7.3662, 7.3668, 7.3665, 7.3671, 7.3671, 7.3668, 7.3665, 7.3662, 7.3668, 7.3665, 7.3671, 7.3668, 7.3665, 7.3662, 7.3696, 7.3693, 7.3699, 7.3696, 7.3695, 7.3692, 7.3689, 7.3695, 7.3693, 7.369, 7.369, 7.3687, 7.3687, 7.3676, 7.3665, 7.3672, 7.3671, 7.3676, 7.3683, 7.369, 7.3688, 7.3686, 7.3691, 7.3689, 7.3686, 7.3684, 7.3683, 7.368, 7.3685, 7.3682, 7.3681, 7.3678, 7.3687, 7.3693, 7.369, 7.3688, 7.3685, 7.3682, 7.3688, 7.3694, 7.3693, 7.3691, 7.3697, 7.3708, 7.3705, 7.3711, 7.3709, 7.3709, 7.3706, 7.3712, 7.3709, 7.3715, 7.3719, 7.3718, 7.3715, 7.3713, 7.371, 7.3707, 7.3713, 7.3711, 7.371, 7.3708, 7.3705, 7.3711, 7.3709, 7.3715, 7.3715, 7.3721, 7.3719, 7.3719, 7.3717, 7.3715, 7.3712, 7.3703, 7.3701, 7.3715, 7.3712, 7.3737, 7.3735, 7.3732, 7.3725, 7.3722, 7.372, 7.3737, 7.3755, 7.3752, 7.3762, 7.3768, 7.3788, 7.3786, 7.3784, 7.379, 7.3787, 7.3784, 7.3808, 7.3805, 7.3803, 7.3792, 7.3807, 7.3805, 7.3811, 7.3809, 7.3815, 7.3812, 7.3819, 7.3816, 7.3813, 7.3863, 7.3869, 7.3866, 7.3871, 7.3877, 7.3874, 7.3871, 7.387, 7.3877, 7.3875, 7.3872, 7.3869, 7.3866, 7.3872, 7.3869, 7.3866, 7.3864, 7.3882, 7.3879, 7.3877, 7.3883, 7.388, 7.3877, 7.3877, 7.3875, 7.3872, 7.3869, 7.3875, 7.3873, 7.3878, 7.3875, 7.3881, 7.3887, 7.3885, 7.3891, 7.3889, 7.3887, 7.3885, 7.3902, 7.3899, 7.3888, 7.3886, 7.3883, 7.3881, 7.3879, 7.3876, 7.3881, 7.3878, 7.3884, 7.3891, 7.3888, 7.3885, 7.3882, 7.3879, 7.3884, 7.3882, 7.3887, 7.3884, 7.3882, 7.3879, 7.3876, 7.3882, 7.3888, 7.3885, 7.3891, 7.3888, 7.3877, 7.3874, 7.3871, 7.3868, 7.3857, 7.3846, 7.3844, 7.3841, 7.3838, 7.3836, 7.3833, 7.383, 7.3835, 7.3833, 7.3832, 7.383, 7.3828, 7.3825, 7.3831, 7.3838, 7.3837, 7.3835, 7.3844, 7.3846, 7.3843, 7.3841, 7.3839, 7.3839, 7.3845, 7.3842, 7.384, 7.3837, 7.3843, 7.3848, 7.3845, 7.3851, 7.3848, 7.3847, 7.3844, 7.3843, 7.384, 7.3837, 7.3835, 7.385, 7.3856, 7.3862, 7.3851, 7.3849, 7.3855, 7.3844, 7.3841, 7.3839, 7.3836, 7.3841, 7.3843, 7.3835, 7.384, 7.3837, 7.3834, 7.3831, 7.3837, 7.3836, 7.3833, 7.383, 7.3828, 7.3825, 7.3824, 7.3829, 7.3826, 7.3823, 7.3821, 7.3818, 7.3815, 7.3813, 7.3811, 7.3808, 7.3806, 7.3812, 7.3809, 7.3814, 7.3812, 7.3817, 7.3816, 7.3813, 7.3819, 7.3816, 7.3822, 7.3828, 7.3835, 7.3832, 7.383, 7.3836, 7.3833, 7.3831, 7.3829, 7.3827, 7.3824, 7.3829, 7.3826, 7.3823, 7.3821, 7.3819, 7.3817, 7.3814, 7.382, 7.3817, 7.3814, 7.3817, 7.3815, 7.3813, 7.3818, 7.3815, 7.3804, 7.3801, 7.3798, 7.3795, 7.38, 7.3799, 7.3804, 7.3803, 7.3801, 7.379, 7.3795, 7.3792, 7.3789, 7.3787, 7.3784, 7.3781, 7.378, 7.3786, 7.3784, 7.3781, 7.3779, 7.3777, 7.3774, 7.3779, 7.3776, 7.3774, 7.378, 7.3769, 7.3775, 7.3772, 7.3769, 7.3766, 7.378, 7.3784, 7.3781, 7.3786, 7.3783, 7.3788, 7.3785, 7.379, 7.3808, 7.3805, 7.3805, 7.3811, 7.3808, 7.3805, 7.3822, 7.3819, 7.3817, 7.3822, 7.3821, 7.3818, 7.3818, 7.3815, 7.3816, 7.3815, 7.3813, 7.381, 7.3824, 7.3846, 7.3846, 7.3844, 7.3842, 7.3847, 7.3848, 7.3845, 7.3845, 7.3843, 7.385, 7.3859, 7.3857, 7.3854, 7.3851, 7.3882, 7.3879, 7.3884, 7.3881, 7.3878, 7.3875, 7.3873, 7.3878, 7.3875, 7.3873, 7.3878, 7.3883, 7.3896, 7.3893, 7.389, 7.3888, 7.3893, 7.3906, 7.3911, 7.3909, 7.3907, 7.3904, 7.3901, 7.3898, 7.3895, 7.3893, 7.389, 7.3895, 7.39, 7.3905, 7.3902, 7.3899, 7.39, 7.3906, 7.3912, 7.3918, 7.3916, 7.3921, 7.3919, 7.3932, 7.3929, 7.3927, 7.3924, 7.3914, 7.3911, 7.3916, 7.3926, 7.3923, 7.392, 7.3917, 7.3923, 7.392, 7.3926, 7.3924, 7.3922, 7.3927, 7.3925, 7.3931, 7.3944, 7.395, 7.3947, 7.3952, 7.3954, 7.3959, 7.3964, 7.3961, 7.3958, 7.3955, 7.3952, 7.3949, 7.3954, 7.3959, 7.3964, 7.3962, 7.3959, 7.3948, 7.3938, 7.3943, 7.3948, 7.3945, 7.395, 7.3955, 7.3976, 7.399, 7.3987, 7.4, 7.3997, 7.4004, 7.4002, 7.4, 7.4007, 7.4013, 7.4018, 7.4015, 7.4012, 7.4034, 7.4031, 7.4029, 7.4034, 7.4047, 7.4046, 7.4051, 7.4056, 7.4053, 7.4051, 7.4057, 7.4054, 7.4059, 7.4057, 7.4054, 7.4059, 7.4056, 7.4061, 7.4066, 7.4071, 7.4068, 7.4065, 7.4062, 7.4067, 7.4064, 7.4062, 7.4059, 7.4056, 7.4061, 7.4066, 7.4071, 7.4068, 7.4065, 7.407, 7.4075, 7.408, 7.4086, 7.4083, 7.4088, 7.4109, 7.4114, 7.4112, 7.4109, 7.4106, 7.4103, 7.41, 7.4097, 7.4098, 7.4103, 7.4133, 7.4138, 7.4136, 7.415, 7.4147, 7.4145, 7.4158, 7.4188, 7.4202, 7.4199, 7.4204, 7.4209, 7.4214, 7.4227, 7.4233, 7.4238, 7.4243, 7.424, 7.4239, 7.4237, 7.4235, 7.4232, 7.4233, 7.4225, 7.4261, 7.4272, 7.4283, 7.4347, 7.4345, 7.4393, 7.439, 7.4388, 7.4394, 7.4393, 7.439, 7.4387, 7.4384, 7.439, 7.4396, 7.4393, 7.4391, 7.4389, 7.4387, 7.4377, 7.4382, 7.4387, 7.4385, 7.4382, 7.4371, 7.4377, 7.4383, 7.4388, 7.4385, 7.4382, 7.438, 7.4385, 7.4399, 7.4404, 7.4409, 7.4414, 7.4411, 7.4416, 7.4421, 7.4418, 7.4415, 7.4412, 7.4425, 7.4422, 7.4419, 7.4424, 7.4413, 7.441, 7.4407, 7.4404, 7.4401, 7.4406, 7.4403, 7.4408, 7.4407, 7.4412, 7.441, 7.4415, 7.4414, 7.4412, 7.4402, 7.44, 7.4397, 7.4394, 7.4398, 7.4395, 7.4392, 7.4397, 7.4395, 7.44, 7.4397, 7.4402, 7.4399, 7.4397, 7.4396, 7.4394, 7.4392, 7.4389, 7.4386, 7.4383, 7.4389, 7.4394, 7.4391, 7.4389, 7.4412, 7.441, 7.4424, 7.4423, 7.4428, 7.4425, 7.443, 7.4452, 7.4449, 7.4446, 7.446, 7.4457, 7.4454, 7.4451, 7.4448, 7.4445, 7.445, 7.4447, 7.4452, 7.445, 7.4455, 7.4453, 7.445, 7.4447, 7.4444, 7.4441, 7.4438, 7.4435, 7.4432, 7.4429, 7.4426, 7.4424, 7.4421, 7.4426, 7.4431, 7.4429, 7.4426, 7.4423, 7.442, 7.4417, 7.4414, 7.4412, 7.4402, 7.4407, 7.4404, 7.4401, 7.4398, 7.4395, 7.4393, 7.4391, 7.4396, 7.4394, 7.4391, 7.4396, 7.4394, 7.4392, 7.4389, 7.4387, 7.4384, 7.4389, 7.4387, 7.4392, 7.4389, 7.4386, 7.4383, 7.438, 7.4377, 7.4374, 7.4371, 7.4368, 7.4365, 7.4362, 7.4383, 7.438, 7.4394, 7.4391, 7.4404, 7.4401, 7.4398, 7.4388, 7.4385, 7.4387, 7.4387, 7.4392, 7.4397, 7.4394, 7.4391, 7.4388, 7.4386, 7.4383, 7.4381, 7.4378, 7.4375, 7.4365, 7.4363, 7.4361, 7.4366, 7.437, 7.4374, 7.4371, 7.4369, 7.4367, 7.4365, 7.4362, 7.4366, 7.4363, 7.4367, 7.4365, 7.437, 7.4375, 7.4381, 7.4386, 7.4383, 7.438, 7.4377, 7.4374, 7.4371, 7.4368, 7.4366, 7.4363, 7.436, 7.4357, 7.4354, 7.4351, 7.4348, 7.4345, 7.4342, 7.4339, 7.4337, 7.4334, 7.4331, 7.4328, 7.4325, 7.4322, 7.4327, 7.4324, 7.4329, 7.4326, 7.4324, 7.4321, 7.4326, 7.4316, 7.4321, 7.4319, 7.4317, 7.4314, 7.4328, 7.4325, 7.4324, 7.4322, 7.432, 7.4318, 7.4316, 7.4313, 7.431, 7.4308, 7.4306, 7.4303, 7.4309], '192.168.122.120': [5.3036, 5.3753, 5.3718, 5.3877, 5.3696, 5.3818, 5.5055, 5.4997, 5.4846, 5.4799, 5.4741, 5.9277, 5.9078, 5.8731, 5.8461, 5.8487, 5.8232, 5.7978, 5.7799, 5.8003, 5.7756, 5.763, 5.7592, 5.7407, 5.7259, 5.7155, 6.1667, 6.3308, 6.3473, 6.5264, 6.5005, 6.476, 6.5951, 6.5743, 6.5396, 6.5103, 6.495, 6.6023, 6.569, 6.5375, 6.6425, 6.6113, 6.5847, 6.5553, 6.5418, 6.5157, 6.4921, 6.4709, 6.445, 6.4211, 6.4017, 6.3818, 6.3677, 6.3506, 6.3436, 6.4253, 6.4977, 6.5734, 6.5673, 6.548, 6.5284, 6.5957, 6.5758, 6.5659, 6.5477, 6.532, 6.5164, 6.501, 6.4908, 6.8243, 6.8088, 6.8648, 6.9136, 6.8998, 6.9663, 6.9627, 6.9467, 6.9306, 6.9131, 6.9178, 6.9011, 6.8858, 6.8701, 6.8552, 6.8403, 6.7657, 6.7584, 6.7438, 6.7505, 6.8573, 6.9021, 7.0158, 7.0528, 7.034, 7.023, 7.0073, 6.9955, 7.0375, 7.0392, 7.0231, 7.0087, 6.996, 6.9805, 6.9647, 6.9567, 6.9936, 6.9882, 6.9741, 6.96, 6.9485, 6.9342, 6.9694, 6.9856, 7.0637, 7.0574, 7.0504, 7.0353, 7.0667, 7.099, 7.0851, 7.0838, 7.0724, 7.1037, 7.1085, 7.0974, 7.0877, 7.0781, 7.0652, 7.0656, 7.0539, 7.0485, 7.0345, 7.024, 7.0234, 7.0236, 7.0155, 7.0047, 6.992, 6.981, 6.972, 6.968, 6.9595, 6.9167, 6.9124, 6.911, 6.9009, 6.8924, 6.9188, 6.9562, 6.9465, 6.9379, 6.9297, 6.9232, 6.9256, 6.9171, 6.9088, 6.9064, 6.8987, 6.8928, 6.8861, 6.8786, 6.8738, 6.8701, 6.864, 6.9466, 6.9429, 6.934, 6.9263, 6.9217, 6.9474, 6.939, 6.9294, 6.92, 6.9121, 6.904, 6.8989, 6.8907, 6.8879, 6.8816, 6.875, 6.8684, 6.8606, 6.883, 6.8745, 6.8658, 6.8607, 6.8815, 6.9028, 6.9254, 6.9179, 6.9387, 6.9591, 6.9508, 6.9441, 6.9364, 6.9311, 6.9308, 6.9255, 6.9192, 6.9386, 6.9311, 6.9036, 6.923, 6.9425, 6.9352, 6.9348, 6.9049, 6.8981, 6.9031, 6.9072, 7.0105, 7.0039, 7.0253, 7.0529, 7.0442, 7.0602, 7.0761, 7.0469, 7.0401, 7.0332, 7.0305, 7.0239, 7.0434, 7.0592, 7.0524, 7.0471, 7.0398, 7.0338, 7.0322, 7.0254, 7.02, 7.0131, 6.988, 6.9816, 6.9986, 6.9921, 6.986, 6.9597, 6.9762, 6.9706, 6.9643, 6.9876, 6.9812, 6.975, 6.97, 6.9645, 6.9806, 6.9734, 6.9725, 6.9662, 6.9813, 6.9753, 6.9711, 6.969, 6.945, 6.9555, 6.9503, 6.9454, 6.9405, 6.9375, 6.9385, 6.9337, 6.929, 6.9246, 6.9388, 6.9339, 6.9306, 6.9253, 6.9229, 6.9187, 6.9341, 6.9491, 6.9441, 6.9842, 6.9787, 6.9949, 7.0172, 7.0126, 7.0091, 7.005, 6.9993, 7.0136, 6.9909, 6.9912, 6.9883, 6.9963, 7.002, 6.9986, 7.0148, 7.0134, 7.0144, 7.0305, 7.0272, 7.0254, 7.024, 7.0217, 7.0201, 7.0179, 7.0147, 7.0295, 7.0253, 7.0234, 7.0378, 7.0352, 7.031, 7.0277, 7.0409, 7.0365, 7.0319, 7.0457, 7.0413, 7.0388, 7.0349, 7.0309, 7.0447, 7.056, 7.0514, 7.0471, 7.0446, 7.0444, 7.0244, 7.0213, 7.0391, 7.0195, 7.0316, 7.0443, 7.0401, 7.0373, 7.0336, 7.0294, 7.0419, 7.0531, 7.0986, 7.1523, 7.1475, 7.1424, 7.137, 7.1489, 7.1434, 7.141, 7.1364, 7.1327, 7.1288, 7.1402, 7.1356, 7.132, 7.1268, 7.1123, 7.107, 7.1024, 7.0993, 7.1101, 7.121, 7.1316, 7.1293, 7.1135, 7.1083, 7.1044, 7.0861, 7.081, 7.0766, 7.0867, 7.0847, 7.0796, 7.0751, 7.0699, 7.0653, 7.0754, 7.071, 7.0678, 7.0648, 7.0744, 7.07, 7.0802, 7.0769, 7.072, 7.0677, 7.0631, 7.0586, 7.0561, 7.0515, 7.0612, 7.0443, 7.0542, 7.0508, 7.0494, 7.0587, 7.0684, 7.0809, 7.0805, 7.078, 7.0746, 7.0832, 7.0866, 7.0876, 7.0886000000000005, 7.089600000000001, 7.0875, 7.0836, 7.0918, 7.0879, 7.0842, 7.0797, 7.0778, 7.0767, 7.0732, 7.0695, 7.0669, 7.0631, 7.0476, 7.0469, 7.0445, 7.0455000000000005, 7.046500000000001, 7.0426, 7.0528, 7.0511, 7.0521, 7.0479, 7.0578, 7.0536, 7.0495, 7.059, 7.0556, 7.0519, 7.0639, 7.0625, 7.0583, 7.0666, 7.0633, 7.0603, 7.0565, 7.0525, 7.0499, 7.0643, 7.0606, 7.0616, 7.0591, 7.055, 7.0517, 7.048, 7.0447, 7.0405, 7.0373, 7.0456, 7.043, 7.0393, 7.0353, 7.0318, 7.0282, 7.0372, 7.0332, 7.0299, 7.0267, 7.0229, 7.0457, 7.0417, 7.0493, 7.0568, 7.0532, 7.0624, 7.0515, 7.0503, 7.0475, 7.0442, 7.0668, 7.0749, 7.0715, 7.1015, 7.0984, 7.106, 7.1174, 7.1138, 7.1102, 7.1178, 7.1142, 7.1107, 7.1069, 7.1152, 7.1116, 7.1089, 7.1051, 7.1028, 7.1, 7.1184, 7.1211, 7.1182, 7.1154, 7.112, 7.13, 7.1265, 7.1232, 7.12, 7.1274, 7.1347, 7.1311, 7.1288, 7.1471, 7.1546, 7.1627, 7.1701, 7.1664, 7.1631, 7.1671, 7.1644, 7.1617, 7.1581, 7.1546, 7.1512, 7.1484, 7.145, 7.1447, 7.1413, 7.1381, 7.1345, 7.1218, 7.1186, 7.1209, 7.1184, 7.1266, 7.149, 7.1635, 7.1804, 7.1973, 7.2062, 7.2029, 7.211, 7.208, 7.2058, 7.2022, 7.1992, 7.1967, 7.2032, 7.2001, 7.2076, 7.2147, 7.2219, 7.2383, 7.2453, 7.2614, 7.2681, 7.2647, 7.2623, 7.269, 7.2848, 7.2839, 7.2806, 7.2774, 7.2844, 7.291, 7.2875, 7.2939, 7.2964, 7.3124, 7.3189, 7.3248, 7.3125, 7.3088, 7.3101, 7.3071, 7.3129, 7.3467, 7.3529, 7.3587, 7.3554, 7.3522, 7.3503, 7.3488, 7.3474, 7.3444, 7.3503, 7.3562, 7.3533, 7.3613, 7.368, 7.3667, 7.3722, 7.3692, 7.3661, 7.3728, 7.3693, 7.366, 7.3722, 7.361, 7.3494, 7.3464, 7.3438, 7.35, 7.3566, 7.3634, 7.3604, 7.366, 7.3631, 7.3696, 7.3666, 7.3679, 7.3646, 7.3617, 7.3585, 7.3552, 7.361, 7.3671, 7.3647, 7.3611, 7.3622, 7.3624, 7.3592, 7.3559, 7.3524, 7.3493, 7.3549, 7.3517, 7.3485, 7.3541, 7.3545, 7.3696, 7.3663, 7.3809, 7.3783, 7.375, 7.372, 7.3777, 7.3743, 7.3883, 7.4019, 7.3986, 7.3953, 7.3933, 7.3909, 7.4048, 7.4016, 7.3993, 7.3987, 7.4155, 7.4209, 7.4181, 7.4166, 7.4136, 7.4105, 7.4086, 7.4152, 7.4121, 7.409, 7.4069, 7.4117, 7.4085, 7.4063, 7.4036, 7.3931, 7.3902, 7.388, 7.385, 7.3826, 7.3793, 7.3839, 7.389, 7.3858, 7.3826, 7.3873, 7.3921, 7.3898, 7.3884, 7.3931, 7.399, 7.3959, 7.3929, 7.3982, 7.3951, 7.3927, 7.3907, 7.3962, 7.393, 7.3914, 7.3884, 7.3853, 7.3825, 7.383500000000001, 7.3803, 7.3776, 7.3753, 7.3728, 7.37, 7.3674, 7.3645, 7.3621, 7.3592, 7.3673, 7.3656, 7.3637, 7.368, 7.3735, 7.3711, 7.3768, 7.3814, 7.3795, 7.3775, 7.3745, 7.3723, 7.3707, 7.3623, 7.3599, 7.3572, 7.355, 7.3526, 7.3577, 7.3556, 7.3529, 7.3502, 7.349, 7.3463, 7.345, 7.343, 7.3405, 7.3376, 7.3493, 7.3474, 7.3448, 7.3421, 7.3402, 7.3374, 7.3502, 7.3482, 7.3543, 7.3517, 7.3492, 7.3482, 7.3458, 7.3429, 7.3404, 7.3387, 7.3364, 7.3351, 7.3397, 7.3377, 7.335, 7.3324, 7.3301, 7.3273, 7.325, 7.323, 7.321, 7.3194, 7.3243, 7.3216, 7.3203, 7.3178, 7.3152, 7.3194, 7.324, 7.3286, 7.3264, 7.3306, 7.3291, 7.3333, 7.3311, 7.3299, 7.3279, 7.334, 7.335, 7.3404, 7.3379, 7.3428, 7.3467, 7.3442, 7.3417, 7.3463, 7.3437, 7.3482, 7.3458, 7.3431, 7.3458, 7.343, 7.3405, 7.3449, 7.3437, 7.3669, 7.3649, 7.3627, 7.3685, 7.3668, 7.3644, 7.3621, 7.3594, 7.357, 7.3549, 7.3525, 7.3501, 7.3475, 7.3451, 7.3427, 7.3424, 7.3469, 7.3445, 7.3422, 7.3405, 7.3331, 7.3319, 7.3301, 7.328, 7.3266, 7.3249, 7.3235, 7.3217, 7.3206, 7.3183, 7.3167, 7.315, 7.3128, 7.3347, 7.3321, 7.3375, 7.3357, 7.334, 7.3315, 7.3331, 7.3312, 7.3294, 7.3342, 7.3322, 7.3302, 7.3294, 7.3337, 7.3381, 7.3356, 7.3338, 7.3322, 7.3297, 7.3273, 7.325, 7.3225, 7.3203, 7.3247, 7.3222, 7.3199, 7.3176, 7.3221, 7.3261, 7.3301, 7.3278, 7.3281, 7.3322, 7.3304, 7.3286, 7.3335, 7.3313, 7.3295, 7.3272, 7.3251, 7.323, 7.3279, 7.3258, 7.3533, 7.3513, 7.3548, 7.3529, 7.3505, 7.3505, 7.349, 7.3473, 7.3397, 7.3375, 7.3416, 7.3394, 7.3371, 7.3349, 7.3394, 7.337, 7.3348, 7.3329, 7.3307, 7.3347, 7.3325, 7.3305, 7.3281, 7.3268, 7.3309, 7.3286, 7.3327, 7.3308, 7.329, 7.3336, 7.338, 7.3361, 7.334, 7.335, 7.3336, 7.3313, 7.3355, 7.3332, 7.3315, 7.3297, 7.334, 7.3317, 7.3301, 7.3279, 7.3375, 7.3353, 7.3334, 7.3315, 7.3294, 7.3276, 7.3325, 7.3312, 7.3289, 7.3276, 7.3313, 7.3301, 7.3283, 7.3269, 7.3307, 7.3288, 7.3271, 7.3316, 7.3326, 7.3311, 7.3321000000000005, 7.333100000000001, 7.3309, 7.3292, 7.3332, 7.3377, 7.3416, 7.345, 7.3545, 7.3534, 7.3522, 7.3503, 7.3485, 7.3486, 7.3466, 7.3506, 7.3497, 7.3534, 7.357, 7.355, 7.3529, 7.3509, 7.3492, 7.3532, 7.3511, 7.3549, 7.3529, 7.3508, 7.3545, 7.3555, 7.3538, 7.3518, 7.3551, 7.3588, 7.3568, 7.355, 7.3535, 7.3521, 7.3507, 7.349, 7.3469, 7.3452, 7.3493, 7.3473, 7.3517, 7.3523, 7.3509, 7.3496, 7.3528, 7.378, 7.3813, 7.3798, 7.3781, 7.376, 7.3741, 7.3721, 7.3701, 7.3894, 7.3881, 7.3861, 7.3844, 7.3879, 7.3913, 7.3892, 7.3894, 7.3904, 7.3885, 7.3818, 7.3803, 7.3783, 7.3767, 7.3748, 7.3692, 7.3681, 7.366, 7.3641, 7.3677, 7.3722, 7.3707, 7.3687, 7.3679, 7.3714, 7.3694, 7.3736, 7.3774, 7.3759, 7.3744, 7.3779, 7.376, 7.3749, 7.3734, 7.3721, 7.3656, 7.3637, 7.362, 7.3601, 7.3615, 7.3595, 7.3574, 7.3587, 7.3567, 7.3547, 7.3585, 7.3618, 7.3602, 7.3589, 7.3575, 7.3556, 7.3589, 7.362, 7.3601, 7.3582, 7.3618, 7.3628, 7.3629, 7.3612, 7.3782, 7.3807, 7.3789, 7.3798, 7.3835, 7.3874, 7.3906, 7.3939, 7.392, 7.3902, 7.3935, 7.4099, 7.4085, 7.4119, 7.4153, 7.4139, 7.4128, 7.411, 7.4089, 7.4118, 7.4107, 7.4087, 7.407, 7.4058, 7.4091, 7.4133, 7.4228, 7.4217, 7.4199, 7.4184, 7.4219, 7.4257, 7.4241, 7.4275, 7.4304, 7.4439, 7.4429, 7.4411, 7.4449, 7.4433, 7.4414, 7.4401, 7.4336, 7.4421, 7.4424, 7.4404, 7.4385, 7.4368, 7.4352, 7.4337, 7.4324, 7.4309, 7.4289, 7.4275, 7.4307, 7.4292, 7.4272, 7.4252, 7.4232, 7.4287, 7.4268, 7.4249, 7.423, 7.422, 7.4201, 7.4185, 7.4167, 7.415, 7.4182, 7.4163, 7.4147, 7.4128, 7.411, 7.4096, 7.4081, 7.4071, 7.4075, 7.4103, 7.4093, 7.4078, 7.4107, 7.4088, 7.4069, 7.4057, 7.406700000000001, 7.407700000000001, 7.4057, 7.4038, 7.4019, 7.3964, 7.3902, 7.3885, 7.3868, 7.3855, 7.3839, 7.3824, 7.381, 7.3842, 7.3826, 7.3809, 7.3795, 7.3778, 7.3764, 7.3796, 7.3779, 7.3813, 7.3845, 7.3877, 7.3871, 7.3855, 7.3846, 7.3836, 7.398, 7.3966, 7.3967, 7.395, 7.3939, 7.3925, 7.3981, 7.4134, 7.412, 7.4153, 7.4139, 7.4077, 7.4062, 7.409, 7.4075, 7.4059, 7.4045, 7.4079, 7.4063, 7.4049, 7.4045, 7.4035, 7.402, 7.4006, 7.3996, 7.4024, 7.3968, 7.395, 7.3983, 7.3968, 7.3954, 7.3988, 7.3974, 7.396, 7.397, 7.3954, 7.396400000000001, 7.3947, 7.3983, 7.3979, 7.3962, 7.3947, 7.3929, 7.392, 7.3906, 7.3889, 7.3875, 7.3861, 7.3847, 7.3831, 7.3865, 7.3848, 7.3877, 7.3907, 7.3937, 7.3964, 7.3949, 7.3959, 7.3941, 7.3947, 7.3932, 7.3959, 7.3989, 7.3976, 7.4039, 7.4049000000000005, 7.4032, 7.4195, 7.4219, 7.4336, 7.4324, 7.4342, 7.4328, 7.4344, 7.4372, 7.4356, 7.4346, 7.433, 7.4461, 7.4443, 7.4439, 7.4423, 7.4406, 7.439, 7.4418, 7.4405, 7.439, 7.4374, 7.4318, 7.439, 7.4422, 7.4404, 7.4388, 7.4562, 7.4548, 7.4534, 7.4517, 7.4504, 7.4531, 7.4514, 7.4501, 7.4503, 7.4489, 7.4521, 7.4547, 7.4536, 7.4563, 7.4552, 7.4579, 7.4566, 7.455, 7.4536, 7.4563, 7.4554, 7.4539, 7.4525, 7.4508, 7.4536, 7.4526, 7.4514, 7.4498, 7.4558, 7.4545, 7.4538, 7.457, 7.4556, 7.4543, 7.4579, 7.4562, 7.4594, 7.4578, 7.4564, 7.4551, 7.4534, 7.4534, 7.452, 7.4545, 7.4537, 7.4527, 7.4551, 7.4541, 7.4529, 7.4625, 7.4653, 7.4643, 7.4631, 7.4615, 7.4602, 7.4588, 7.4576, 7.4561, 7.455, 7.454, 7.4524, 7.4508, 7.4497, 7.4528, 7.4556, 7.4541, 7.4524, 7.4514, 7.4501, 7.4452, 7.4437, 7.4424, 7.4411, 7.4404, 7.4391, 7.4417, 7.4401, 7.4386, 7.4371, 7.4398, 7.4383, 7.4338, 7.4337, 7.4364, 7.439, 7.4374, 7.4366, 7.4351, 7.4337, 7.4323, 7.4315, 7.4299, 7.4247, 7.424, 7.4225, 7.4211, 7.4197, 7.4182, 7.4208, 7.4196, 7.4181, 7.4168, 7.4155, 7.422, 7.4245, 7.4232, 7.4216, 7.4213, 7.4196, 7.4228, 7.4212, 7.42, 7.4226, 7.421, 7.4232, 7.4259, 7.4244, 7.4305, 7.4294, 7.435, 7.4336, 7.4334, 7.436, 7.4352, 7.434, 7.4327, 7.4439, 7.4447, 7.4457, 7.4445, 7.4455, 7.4448, 7.4436, 7.446, 7.4445, 7.4433, 7.4421, 7.4448, 7.4438, 7.4422, 7.4416, 7.4405, 7.4427, 7.445, 7.4476, 7.4465, 7.445, 7.4435, 7.446, 7.4445, 7.4406, 7.4416, 7.4426000000000005, 7.443600000000001, 7.4459, 7.4444, 7.4511, 7.45, 7.4489, 7.4474, 7.4477, 7.4429, 7.4414, 7.4438, 7.4429, 7.4464, 7.4449, 7.4437, 7.4465, 7.4489, 7.4475, 7.4491, 7.4476, 7.4464, 7.4452, 7.444, 7.443, 7.4415, 7.4436, 7.4425, 7.4411, 7.4433, 7.4455, 7.4448, 7.4433, 7.442, 7.4405, 7.439, 7.4379, 7.4364, 7.4391, 7.4413, 7.4434, 7.4422, 7.451, 7.4536, 7.4523, 7.4513, 7.4499, 7.4484, 7.4437, 7.4422, 7.4447, 7.4473, 7.4459, 7.4445, 7.447, 7.4457, 7.4442, 7.4427, 7.4417, 7.4404, 7.4391, 7.438, 7.4439, 7.4425, 7.445, 7.4439, 7.4467, 7.4477, 7.4465, 7.4493, 7.4481, 7.4468, 7.4495, 7.4516, 7.4505, 7.4492, 7.448, 7.4467, 7.449, 7.4479, 7.447, 7.4495, 7.4481, 7.4468, 7.4461, 7.4486, 7.451, 7.4498, 7.4483, 7.4472, 7.4459, 7.445, 7.4472, 7.4459, 7.4446, 7.4433, 7.442, 7.4444, 7.4434, 7.4457, 7.4478, 7.4465, 7.445, 7.4435, 7.4457, 7.4445, 7.4472, 7.4464, 7.4454, 7.4443, 7.4396, 7.4384, 7.4405, 7.4392, 7.438, 7.437, 7.436, 7.4347, 7.4345, 7.4333, 7.4326, 7.4318, 7.4307, 7.4296, 7.4287, 7.4274, 7.4345, 7.4333, 7.4373, 7.4428, 7.4384, 7.4371, 7.4336, 7.43, 7.4288, 7.4332, 7.4289, 7.4276, 7.4302, 7.4327, 7.4415, 7.4412, 7.4399, 7.4386, 7.4485, 7.4472, 7.4471, 7.4493, 7.4483, 7.447, 7.4457, 7.4444, 7.4435, 7.4422, 7.441, 7.4396, 7.4416, 7.4402, 7.4423, 7.4409, 7.4399, 7.4388, 7.4411, 7.4397, 7.4416, 7.4405, 7.4427, 7.4414, 7.4403, 7.4391, 7.4379, 7.4378, 7.4401, 7.4393, 7.435, 7.4338, 7.4329, 7.4317, 7.4307, 7.4293, 7.4279, 7.4267, 7.4255, 7.4278, 7.4268, 7.4255, 7.4278, 7.4272, 7.4283, 7.4303, 7.4332, 7.4352, 7.4341, 7.4363, 7.4326, 7.4314, 7.4301, 7.429, 7.4277, 7.4269, 7.4259, 7.4246, 7.427, 7.4289, 7.4277, 7.4264, 7.4252, 7.4282, 7.4342, 7.4419, 7.4409, 7.4401, 7.4395, 7.4381, 7.4372, 7.4365, 7.4355, 7.4347, 7.4337, 7.4327, 7.4314, 7.4303, 7.4428, 7.4415, 7.4435, 7.4424, 7.4445, 7.4435, 7.4426, 7.4412, 7.4399, 7.4423, 7.4414, 7.4401, 7.4388, 7.4381, 7.4368, 7.4368, 7.4392, 7.4411, 7.4398, 7.4387, 7.4406, 7.4393, 7.4383, 7.437, 7.4357, 7.4346, 7.4346, 7.4334, 7.4327, 7.4314, 7.43, 7.4292, 7.428, 7.4269, 7.4259, 7.425, 7.4237, 7.4257, 7.4247, 7.4265, 7.4286, 7.4305, 7.4327, 7.4314, 7.4304, 7.4292, 7.4311, 7.4331, 7.4353, 7.4342, 7.4331, 7.4321, 7.431, 7.432, 7.4345, 7.4336, 7.4358, 7.4346, 7.4333, 7.4324, 7.4312, 7.4333, 7.4321, 7.4309, 7.433, 7.432, 7.4312, 7.43, 7.4288, 7.4355, 7.4343, 7.4333, 7.432, 7.4307, 7.4299, 7.4322, 7.4343, 7.4333, 7.432, 7.4309, 7.4302, 7.429, 7.4277, 7.4265, 7.4254, 7.4241, 7.4228, 7.4217, 7.4242, 7.4234, 7.4254, 7.4217, 7.4204, 7.4227, 7.4238, 7.4264, 7.426, 7.4259, 7.4247, 7.4268, 7.4264, 7.4254, 7.4242, 7.4232, 7.4224, 7.4219, 7.4239, 7.4231, 7.4225, 7.4213, 7.4203, 7.4195, 7.4182, 7.4172, 7.4159, 7.4213, 7.4207, 7.4248, 7.4269, 7.4229, 7.4219, 7.4209, 7.4198, 7.4218, 7.4206, 7.4225, 7.4242, 7.4263, 7.4282, 7.4272, 7.4341, 7.433, 7.4353, 7.4342, 7.4331, 7.4333, 7.4325, 7.4318, 7.4306, 7.4302, 7.4293, 7.4282, 7.4283, 7.4272, 7.4292, 7.428, 7.4272, 7.426, 7.4251, 7.4268, 7.429, 7.4278, 7.4267, 7.426, 7.4249, 7.4238, 7.4226, 7.4216, 7.4206, 7.4195, 7.4194, 7.4189, 7.4179, 7.4167, 7.4185, 7.4173, 7.4164, 7.419, 7.4179, 7.4198, 7.4188, 7.4208, 7.4196, 7.4189, 7.4178, 7.4167, 7.4159, 7.4148, 7.4136, 7.4125, 7.4144, 7.4163, 7.4155, 7.4174, 7.4164, 7.4153, 7.4143, 7.4166, 7.4155, 7.4144, 7.4136, 7.4124, 7.4112, 7.4131, 7.412, 7.411, 7.4133, 7.4122, 7.4112, 7.4104, 7.4099, 7.4152, 7.4141, 7.4131, 7.4095, 7.4085, 7.4074, 7.4062, 7.4055, 7.4078, 7.4066, 7.406, 7.4051, 7.4071, 7.406, 7.4049, 7.4096, 7.4086, 7.4105, 7.4155, 7.4145, 7.4134, 7.4137, 7.4125, 7.4131, 7.4121, 7.4113, 7.4134, 7.4135, 7.4125, 7.4193, 7.4196, 7.419, 7.4226, 7.4216, 7.4276, 7.4264, 7.4254, 7.4242, 7.4237, 7.4226, 7.4215, 7.4234, 7.4226, 7.4216, 7.4205, 7.4222, 7.4255, 7.4218, 7.4207, 7.4198, 7.4188, 7.4177, 7.4167, 7.4186, 7.4178, 7.4218, 7.421, 7.4203, 7.4191, 7.421, 7.42, 7.4193, 7.421, 7.42, 7.4189, 7.4206, 7.4196, 7.4206, 7.4196, 7.4185, 7.4174, 7.4164, 7.4154, 7.4146, 7.4137, 7.4128, 7.4117, 7.4134, 7.4125, 7.4114, 7.4104, 7.4121, 7.411, 7.4099, 7.4117, 7.4109, 7.4098, 7.4087, 7.4078, 7.4095, 7.4113, 7.4102, 7.407, 7.4063, 7.4059, 7.4023, 7.3988, 7.4006, 7.3995, 7.3985, 7.3978, 7.3969, 7.3959, 7.3985, 7.3975, 7.3965, 7.3954, 7.3971, 7.3962, 7.3954, 7.3946, 7.3936, 7.3928, 7.3921, 7.391, 7.3899, 7.3895, 7.3884, 7.3877, 7.3907, 7.3961, 7.3984, 7.3979, 7.3969, 7.3962, 7.3981, 7.3972, 7.3964, 7.3954, 7.3945, 7.3935, 7.3952, 7.3941, 7.3962, 7.3955, 7.3946, 7.3938, 7.3933, 7.3984, 7.3977, 7.3971, 7.3973, 7.3995, 7.3987, 7.3993, 7.402, 7.4013, 7.4013, 7.4044, 7.4044, 7.4017, 7.4008, 7.3999, 7.3993, 7.3987, 7.3977, 7.3995, 7.4066, 7.4057, 7.4077, 7.4096, 7.407, 7.4059, 7.4052, 7.4069, 7.4121, 7.411, 7.4099, 7.4117, 7.4107, 7.4097, 7.4115, 7.4106, 7.4099, 7.4092, 7.4082, 7.4076, 7.4068, 7.4233, 7.4252, 7.4323, 7.4313, 7.4305, 7.4295, 7.4261, 7.4251, 7.4241, 7.4291, 7.4282, 7.4272, 7.4262, 7.4252, 7.4241, 7.4257, 7.4268, 7.4261, 7.4256, 7.4248, 7.4238, 7.426, 7.4252, 7.4242, 7.4232, 7.4227, 7.4217, 7.4207, 7.4217, 7.4209, 7.4202, 7.4219, 7.421, 7.42, 7.4194, 7.4185, 7.4175, 7.4167, 7.416, 7.4161, 7.4156, 7.4181, 7.4173, 7.4164, 7.4156, 7.4149, 7.4139, 7.4135, 7.4127, 7.4117, 7.4109, 7.4107, 7.4103, 7.4126, 7.4119, 7.4086, 7.4152, 7.4141, 7.413, 7.4152, 7.4141, 7.4159, 7.415, 7.4166, 7.4185, 7.4177, 7.4207, 7.4226, 7.4216, 7.422, 7.4218, 7.421, 7.4205, 7.4196, 7.4191, 7.4184, 7.4176, 7.4166, 7.4156, 7.4146, 7.4161, 7.4153, 7.4143, 7.4133, 7.4125, 7.4115, 7.4106, 7.4096, 7.4086, 7.4081, 7.4073, 7.409, 7.4082, 7.4072, 7.4062, 7.4054, 7.4045, 7.4064, 7.4058, 7.4049, 7.4044, 7.406, 7.405, 7.404, 7.4008, 7.4001, 7.3991, 7.4012, 7.4007, 7.4025, 7.4018, 7.4011, 7.4001, 7.3992, 7.4008, 7.3998, 7.3989, 7.4023, 7.4018, 7.4013, 7.4003, 7.3993, 7.3961, 7.3976, 7.3992, 7.3986, 7.3976, 7.3966, 7.3957, 7.3947, 7.3947, 7.3962, 7.3952, 7.3944, 7.3961, 7.3953, 7.3944, 7.3935, 7.3928, 7.3921, 7.3915, 7.3932, 7.3947, 7.3963, 7.398, 7.3971, 7.3962, 7.398, 7.3971, 7.3962, 7.3954, 7.3944, 7.3934, 7.3949, 7.3965, 7.398, 7.3972, 7.3963, 7.3953, 7.3969, 7.3963, 7.3953, 7.3946, 7.3938, 7.393, 7.392, 7.391, 7.39, 7.3893, 7.390300000000001, 7.3896, 7.3916, 7.3908, 7.3923, 7.3917, 7.3933, 7.3949, 7.3941, 7.3955, 7.395, 7.3942, 7.3937, 7.3953, 7.3968, 7.396, 7.3951, 7.3945, 7.3936, 7.393, 7.3922, 7.3938, 7.3948, 7.3942, 7.3933, 7.3924, 7.3919, 7.396, 7.395, 7.3941, 7.3955, 7.3972, 7.3968, 7.3958, 7.3949, 7.3985, 7.4025, 7.4041, 7.4082, 7.4072, 7.4065, 7.4058, 7.4049, 7.404, 7.4031, 7.4024, 7.4016, 7.401, 7.4, 7.3991, 7.3982, 7.3973, 7.3991, 7.3988, 7.398, 7.3973, 7.3965, 7.398, 7.3972, 7.3964, 7.3981, 7.3973, 7.3964, 7.3958, 7.395, 7.3965, 7.3957, 7.3974, 7.3973, 7.3967, 7.3961, 7.3958, 7.3952, 7.3952, 7.3969, 7.397, 7.3963, 7.3954, 7.3945, 7.3936, 7.3953, 7.3971, 7.3962, 7.3955, 7.3946, 7.397, 7.3961, 7.3954, 7.3968, 7.3964, 7.3962, 7.3953, 7.3945, 7.3915, 7.3908, 7.39, 7.3893, 7.391, 7.3904, 7.3899, 7.3914, 7.3907, 7.3898, 7.3914, 7.3934, 7.395, 7.3942, 7.3935, 7.395, 7.3944, 7.394, 7.3955, 7.3965000000000005, 7.3957, 7.3948, 7.394, 7.3931, 7.3926, 7.3919, 7.3913, 7.3928, 7.3919, 7.3911, 7.3906, 7.3904, 7.3895, 7.3909, 7.3902, 7.3949, 7.3989, 7.3982, 7.3996, 7.3988, 7.4026, 7.4018, 7.401, 7.4006, 7.3997, 7.399, 7.3965, 7.3958, 7.3934, 7.3957, 7.3948, 7.394, 7.3931, 7.3947, 7.3941, 7.4001, 7.402, 7.4035, 7.4005, 7.3999, 7.4015, 7.4008, 7.4002, 7.4002, 7.3993, 7.4007, 7.3998, 7.399, 7.3983, 7.3998, 7.3991, 7.3982, 7.3972, 7.3963, 7.3956, 7.3954, 7.3947, 7.401, 7.4001, 7.4016, 7.401, 7.4003, 7.3994, 7.3987, 7.4003, 7.3995, 7.3987, 7.4003, 7.3994, 7.3987, 7.4003, 7.3995, 7.3987, 7.398, 7.3995, 7.3966, 7.3967, 7.3958, 7.3976, 7.397, 7.3966, 7.3958, 7.3952, 7.3944, 7.3935, 7.3926, 7.3941, 7.3934, 7.3951, 7.3951, 7.3943, 7.3935, 7.3927, 7.3919, 7.3933, 7.3927, 7.3965, 7.3982, 7.3973, 7.3966, 7.3979, 7.397, 7.3964, 7.3958, 7.3952, 7.3944, 7.3917, 7.3909, 7.3901, 7.3915, 7.3911, 7.3905, 7.3898, 7.3912, 7.3906, 7.392, 7.3911, 7.3884, 7.3879, 7.387, 7.3864, 7.3855, 7.3869, 7.3868, 7.3862, 7.3876, 7.3867, 7.3839, 7.3834, 7.3829, 7.3821, 7.3812, 7.3804, 7.3817, 7.3811, 7.3802, 7.3793, 7.3808, 7.3801, 7.3814, 7.3827, 7.3819, 7.381, 7.3824, 7.3817, 7.381, 7.3803, 7.3819, 7.3811, 7.3825, 7.3818, 7.381, 7.3803, 7.3813, 7.3829, 7.3823, 7.3815, 7.3808, 7.3822, 7.3816, 7.3809, 7.3801, 7.3792, 7.3785, 7.3779, 7.3772, 7.3765, 7.3778, 7.379, 7.3803, 7.3775, 7.3789, 7.3781, 7.3775, 7.3789, 7.3781, 7.3775, 7.3766, 7.3781, 7.3773, 7.3765, 7.3757, 7.3749, 7.374, 7.3753, 7.3772, 7.3786, 7.3784, 7.3776, 7.379, 7.3782, 7.3774, 7.3768, 7.376, 7.3752, 7.3767, 7.376, 7.3796, 7.3788, 7.3786, 7.3778, 7.377, 7.3764, 7.3759, 7.3751, 7.3747, 7.3741, 7.3735, 7.3729, 7.3723, 7.3715, 7.3708, 7.3703, 7.3698, 7.3671, 7.3716, 7.3693, 7.3689, 7.3705, 7.3721, 7.3731, 7.3704, 7.3696, 7.369, 7.3682, 7.3716, 7.373, 7.3722, 7.3714, 7.3728, 7.372, 7.3712, 7.3726, 7.3717, 7.3745, 7.3738, 7.373, 7.3740000000000006, 7.3734, 7.3726, 7.3721, 7.3736, 7.375, 7.3764, 7.3759, 7.3772, 7.3786, 7.3779, 7.3773, 7.3767, 7.3762, 7.382, 7.382, 7.3834, 7.3826, 7.3818, 7.381, 7.3802, 7.3816, 7.3814, 7.3828, 7.382, 7.3812, 7.3804, 7.3797, 7.3789, 7.3815, 7.3965, 7.3942, 7.3958, 7.397, 7.3965, 7.402, 7.4034, 7.4026, 7.4041, 7.4118, 7.4113, 7.4105, 7.4098, 7.4092, 7.4087, 7.4083, 7.4075, 7.407, 7.4044, 7.404, 7.4033, 7.4051, 7.4159, 7.4151, 7.4165, 7.4157, 7.4169, 7.4161, 7.4157, 7.417, 7.4164, 7.4156, 7.4148, 7.414, 7.4134, 7.4127, 7.4119, 7.4111, 7.4124, 7.4138, 7.413, 7.4103, 7.4096, 7.4089, 7.4085, 7.4078, 7.407, 7.4064, 7.4056, 7.4051, 7.4046, 7.4039, 7.4031, 7.4025, 7.4019, 7.4015, 7.4009, 7.4031, 7.4033, 7.4045, 7.4037, 7.405, 7.4044, 7.4049, 7.4042, 7.4034, 7.4048, 7.4043, 7.4042, 7.4047, 7.4099, 7.4093, 7.4085, 7.408, 7.4093, 7.4106, 7.4119, 7.4113, 7.4105, 7.4115, 7.4125000000000005, 7.4117, 7.4131, 7.4124, 7.4137, 7.4151, 7.417, 7.4144, 7.4136, 7.4149, 7.4144, 7.4138, 7.413, 7.4124, 7.4116, 7.4108, 7.4103, 7.4095, 7.4089, 7.4081, 7.4095, 7.4088, 7.4063, 7.4055, 7.405, 7.4044, 7.4086, 7.4079, 7.409, 7.4083, 7.4078, 7.4119, 7.4112, 7.4104, 7.4126, 7.421, 7.4207, 7.4181, 7.4156, 7.413, 7.4143, 7.4136, 7.4133, 7.4155, 7.4149, 7.4161, 7.4174, 7.4168, 7.4161, 7.416, 7.4173, 7.4166, 7.4159, 7.4172, 7.4168, 7.4164, 7.4156, 7.417, 7.4162, 7.4158, 7.4152, 7.4164, 7.4157, 7.4149, 7.4141, 7.4153, 7.4147, 7.416, 7.4176, 7.4173, 7.4166, 7.4162, 7.416, 7.4154, 7.4151, 7.4144, 7.4164, 7.4148, 7.4147, 7.4142, 7.4135, 7.4132, 7.4126, 7.4137, 7.415, 7.4164, 7.4138, 7.4162, 7.4176, 7.417, 7.4164, 7.4158, 7.4153, 7.4166, 7.4158, 7.4151, 7.4144, 7.4137, 7.413, 7.4124, 7.4118, 7.411, 7.4109, 7.4106, 7.4119, 7.4113, 7.4137, 7.4131, 7.4131, 7.4169, 7.4164, 7.4157, 7.415, 7.4143, 7.4137, 7.413, 7.4123, 7.4116, 7.4128, 7.4128, 7.412, 7.4112, 7.4127, 7.412, 7.4158, 7.4152, 7.4146, 7.414, 7.4134, 7.411, 7.4105, 7.4098, 7.4099, 7.4144, 7.4136, 7.413, 7.4142, 7.4135, 7.4128, 7.4124, 7.4136, 7.4148, 7.414, 7.4153, 7.4185, 7.4178, 7.4183, 7.4199, 7.4179, 7.4173, 7.4166, 7.416, 7.4155, 7.4162, 7.4174, 7.4167, 7.4178, 7.4191, 7.4184, 7.4176, 7.4168, 7.4162, 7.4174, 7.4169, 7.4182, 7.4214, 7.4211, 7.4206, 7.4201, 7.4223, 7.4217, 7.421, 7.4203, 7.4195, 7.4171, 7.4164, 7.4176, 7.4173, 7.4165, 7.4158, 7.4151, 7.4144, 7.4143, 7.4185, 7.4197, 7.4191, 7.4184, 7.4179, 7.4172, 7.4183, 7.4176, 7.4169, 7.42, 7.4211, 7.4262, 7.4238, 7.4249, 7.4262, 7.4256, 7.4267, 7.4278, 7.4289, 7.4281, 7.4274, 7.4287, 7.4284, 7.4276, 7.4268, 7.426, 7.4273, 7.4267, 7.4261, 7.4257, 7.4233, 7.4209, 7.422, 7.4212, 7.4223, 7.4221, 7.4199, 7.4193, 7.419, 7.4188, 7.4182, 7.4175, 7.4172, 7.4183, 7.4176, 7.4171, 7.4166, 7.4162, 7.4161, 7.4173, 7.4166, 7.416, 7.4171, 7.4182, 7.4177, 7.4172, 7.4165, 7.4158, 7.4153, 7.4147, 7.4141, 7.4134, 7.4127, 7.412, 7.4113, 7.4106, 7.4098, 7.4091, 7.4085, 7.4097, 7.409, 7.4102, 7.4094, 7.4114, 7.4108, 7.4102, 7.4104, 7.4099, 7.4092, 7.4086, 7.4098, 7.414, 7.4152, 7.415, 7.4145, 7.4158, 7.4152, 7.4146, 7.4139, 7.4136, 7.4128, 7.4139, 7.4135, 7.4148, 7.4143, 7.4155, 7.4148, 7.4159, 7.4171, 7.4163, 7.4156, 7.4149, 7.417, 7.4165, 7.416, 7.4153, 7.4147, 7.4124, 7.4135, 7.4147, 7.4141, 7.4155, 7.4149, 7.4181, 7.4175, 7.417, 7.4185, 7.4178, 7.419, 7.4203, 7.4196, 7.4189, 7.4182, 7.4175, 7.4187, 7.4199, 7.4195, 7.4233, 7.4226, 7.4219, 7.4196, 7.4207, 7.4219, 7.4212, 7.4225, 7.4218, 7.4212, 7.4205, 7.4198, 7.4209, 7.4204, 7.4197, 7.419, 7.4183, 7.4179, 7.4191, 7.4184, 7.4177, 7.4174, 7.4167, 7.4161, 7.4156, 7.4167, 7.4162, 7.4157, 7.4162, 7.4157, 7.4151, 7.4162, 7.4143, 7.4137, 7.4131, 7.413, 7.4131, 7.4127, 7.4139, 7.4135, 7.4129, 7.4122, 7.4116, 7.4112, 7.4107, 7.41, 7.4093, 7.4089, 7.4082, 7.4059, 7.4052, 7.405, 7.4043, 7.4037, 7.4031, 7.4024, 7.4018, 7.4012, 7.4023, 7.4034, 7.4027, 7.4022, 7.4076, 7.4071, 7.4083, 7.4094, 7.4093, 7.4114, 7.4108, 7.4156, 7.415, 7.4145, 7.414, 7.4153, 7.4149, 7.4159, 7.4208, 7.4201, 7.4195, 7.4211, 7.4205, 7.4199, 7.4194, 7.4205, 7.4198, 7.4195, 7.4193, 7.4188, 7.4187, 7.4181, 7.4175, 7.4188, 7.4182, 7.4176, 7.4189, 7.4182, 7.4193, 7.4187, 7.418, 7.4185, 7.418, 7.4173, 7.417, 7.4166, 7.416, 7.4155, 7.415, 7.4143, 7.4174, 7.4168, 7.4169, 7.4162, 7.4156, 7.4167, 7.4178, 7.4171, 7.4164, 7.4176, 7.417, 7.4165, 7.4143, 7.4157, 7.4152, 7.4145, 7.414, 7.4135, 7.4146, 7.4139, 7.4149, 7.4143, 7.4138, 7.4132, 7.4127, 7.4138, 7.4132, 7.4125, 7.4118, 7.4112, 7.4127, 7.4121, 7.4118, 7.4128, 7.4123, 7.4133, 7.4144, 7.415, 7.416, 7.4156, 7.4167, 7.4162, 7.4172, 7.4166, 7.4168, 7.4162, 7.4155, 7.4148, 7.4159, 7.4152, 7.4145, 7.4138, 7.4149, 7.4128, 7.4122, 7.4133, 7.4128, 7.4121, 7.4115, 7.4126, 7.4123, 7.4121, 7.4117, 7.4111, 7.4139, 7.4132, 7.4185, 7.4179, 7.4175, 7.4168, 7.4163, 7.4173, 7.4167, 7.4161, 7.4157, 7.415, 7.4144, 7.4138, 7.4133, 7.4127, 7.4122, 7.4117, 7.4114, 7.4112, 7.4107, 7.41, 7.4097, 7.4092, 7.4086, 7.408, 7.409, 7.41, 7.4096, 7.4091, 7.4086, 7.4084, 7.4078, 7.4135, 7.4132, 7.4125, 7.4119, 7.4114, 7.411, 7.4103, 7.4115, 7.4108, 7.4103, 7.4098, 7.4092, 7.4088, 7.4082, 7.4076, 7.407, 7.408, 7.409, 7.4084, 7.4078, 7.4072, 7.4083, 7.4077, 7.4071, 7.4065, 7.4059, 7.4053, 7.4047, 7.4044, 7.404, 7.4033, 7.4035, 7.4133, 7.4126, 7.4121, 7.4116, 7.4127, 7.4121, 7.4131, 7.4128, 7.4123, 7.4116, 7.4109, 7.4102, 7.4096, 7.4092, 7.4085, 7.408, 7.4078, 7.4088, 7.4098, 7.4077, 7.4104, 7.4097, 7.4107, 7.411, 7.412, 7.4113, 7.4124, 7.4118, 7.4112, 7.4105, 7.4115, 7.4126, 7.412, 7.413, 7.4123, 7.4117, 7.411, 7.4106, 7.4099, 7.41, 7.4094, 7.4106, 7.4101, 7.408, 7.409, 7.4084, 7.4077, 7.4073, 7.4068, 7.4063, 7.4073, 7.4084, 7.4078, 7.4072, 7.4082, 7.4093, 7.4086, 7.4083, 7.4093, 7.4088, 7.4082, 7.4091, 7.4086, 7.4081, 7.4077, 7.4073, 7.4066, 7.4077, 7.4077, 7.4072, 7.4092, 7.4088, 7.4084, 7.4078, 7.4089, 7.4083, 7.4077, 7.4074, 7.4085, 7.4096, 7.4106, 7.4085, 7.4096, 7.409, 7.41, 7.4111, 7.4106, 7.4101, 7.4095, 7.4105, 7.4101, 7.4095, 7.4088, 7.4083, 7.4095, 7.4089, 7.4083, 7.4093, 7.4088, 7.4081, 7.4076, 7.4071, 7.4068, 7.4062, 7.4056, 7.4052, 7.4047, 7.404, 7.4035, 7.403, 7.4041, 7.4036, 7.403, 7.4025, 7.402, 7.4015, 7.4015, 7.401, 7.4021, 7.4034, 7.4041, 7.4042, 7.4169, 7.418, 7.4174, 7.4158, 7.4153, 7.4147, 7.4142, 7.4138, 7.4131, 7.4159, 7.4156, 7.4149, 7.4146, 7.4142, 7.4136, 7.4131, 7.4125, 7.4135, 7.413, 7.4124, 7.4154, 7.4166, 7.416, 7.4154, 7.4149, 7.416, 7.4155, 7.4153, 7.4148, 7.4157, 7.4152, 7.4146, 7.414, 7.42, 7.4197, 7.4223, 7.4219, 7.4216, 7.4213, 7.4207, 7.4202, 7.4197, 7.4208, 7.4203, 7.423, 7.4226, 7.4207, 7.4205, 7.4215, 7.4209, 7.4204, 7.4232, 7.4227, 7.424, 7.4236, 7.4231, 7.4225, 7.4237, 7.4232, 7.4211, 7.4206, 7.4186, 7.4181, 7.4176, 7.417, 7.4165, 7.4159, 7.4157, 7.4154, 7.4164, 7.4159, 7.4206, 7.4186, 7.418, 7.4196, 7.4191, 7.4174, 7.4186, 7.4181, 7.4209, 7.4205, 7.4201, 7.4222, 7.4221, 7.4278, 7.4274, 7.427, 7.4264, 7.4259, 7.427, 7.4264, 7.4259, 7.4253, 7.4263, 7.4258, 7.4265, 7.4323, 7.4304, 7.4313, 7.4346, 7.434, 7.435, 7.4344, 7.4338, 7.4334, 7.4344, 7.4338, 7.4332, 7.4326, 7.4321, 7.4334, 7.4357, 7.4351, 7.4361, 7.4359, 7.4354, 7.4349, 7.4344, 7.4353, 7.4349, 7.4358, 7.4369, 7.4363, 7.4344, 7.4337, 7.4347, 7.4341, 7.4351, 7.4345, 7.434, 7.4338, 7.4332, 7.4339, 7.4349, 7.4343, 7.4337, 7.4333, 7.4328, 7.4323, 7.4319, 7.4315, 7.4326, 7.432, 7.4314, 7.4309, 7.4303, 7.4297, 7.4293, 7.4302, 7.4296, 7.429, 7.4284, 7.4294, 7.4288, 7.4269, 7.4269, 7.4263, 7.4257, 7.4268, 7.4278, 7.4262, 7.4258, 7.4253, 7.4248, 7.4243, 7.4237, 7.4232, 7.4227, 7.4236, 7.4248, 7.4242, 7.4259, 7.4279, 7.4274, 7.4271, 7.4266, 7.4262, 7.4257, 7.4253, 7.4248, 7.4243, 7.4237, 7.4231, 7.4225, 7.422, 7.4214, 7.421, 7.4205, 7.4215, 7.4211, 7.4206, 7.4201, 7.4195, 7.419, 7.4186, 7.4181, 7.4176, 7.4172, 7.4166, 7.4176, 7.4171, 7.4182, 7.4177, 7.4171, 7.4165, 7.4174, 7.417, 7.4166, 7.416, 7.4155, 7.4171, 7.4197, 7.4223, 7.4217, 7.4227, 7.4221, 7.4205, 7.4199, 7.4195, 7.4189, 7.4198, 7.4192, 7.4192, 7.4202, 7.4203, 7.4197, 7.4193, 7.4191, 7.4187, 7.4228, 7.4222, 7.4216, 7.421, 7.4204, 7.4198, 7.4194, 7.4204, 7.4201, 7.4211, 7.4205, 7.4201, 7.4196, 7.4191, 7.4202, 7.4196, 7.4193, 7.4187, 7.4182, 7.4177, 7.4178, 7.4172, 7.4168, 7.4162, 7.4156, 7.4153, 7.4164, 7.4158, 7.4152, 7.4146, 7.4156, 7.4151, 7.4146, 7.4142, 7.4162, 7.4172, 7.4168, 7.4165, 7.4159, 7.4154, 7.415, 7.4144, 7.4142, 7.4137, 7.4147, 7.4144, 7.4139, 7.4148, 7.4144, 7.4139, 7.4133, 7.4115, 7.411, 7.4105, 7.4099, 7.4093, 7.4103, 7.4112, 7.4106, 7.4101, 7.4125, 7.4122, 7.4123, 7.4163, 7.4158, 7.4159, 7.4169, 7.4164, 7.4174, 7.4169, 7.4179, 7.4174, 7.4183, 7.4179, 7.4177, 7.4172, 7.4168, 7.4182, 7.4179, 7.4191, 7.4203, 7.4199, 7.4194, 7.4189, 7.4185, 7.4179, 7.4173, 7.4182, 7.4177, 7.4172, 7.4168, 7.4163, 7.4157, 7.4152, 7.4148, 7.4142, 7.4136, 7.4133, 7.4129, 7.4123, 7.4119, 7.4115, 7.4111, 7.4121, 7.4116, 7.4097, 7.4106, 7.4101, 7.4097, 7.4092, 7.4087, 7.4084, 7.408, 7.4075, 7.4056, 7.4072, 7.4082, 7.4092, 7.4087, 7.4081, 7.4076, 7.4085, 7.408, 7.4094, 7.4089, 7.4085, 7.408, 7.4075, 7.4069, 7.4063, 7.4058, 7.4053, 7.4077, 7.4072, 7.4067, 7.4068, 7.4062, 7.4072, 7.4068, 7.4063, 7.4059, 7.4053, 7.4076, 7.4071, 7.4067, 7.4061, 7.406, 7.4054, 7.4064, 7.4073, 7.4067, 7.4076, 7.4073, 7.4067, 7.4108, 7.4104, 7.41, 7.4096, 7.4091, 7.4099, 7.4097, 7.4091, 7.41, 7.4096, 7.409, 7.4086, 7.4094, 7.4088, 7.4069, 7.4064, 7.406, 7.4054, 7.4063, 7.4057, 7.4067, 7.4063, 7.4058, 7.4053, 7.4064, 7.4059, 7.4054, 7.4062, 7.4056, 7.4053, 7.4049, 7.4043, 7.4038, 7.4048, 7.4043, 7.4038, 7.4033, 7.4028, 7.4023, 7.4018, 7.4012, 7.4009, 7.4006, 7.4001, 7.3996, 7.3993, 7.4002, 7.4011, 7.4007, 7.4016, 7.4012, 7.4007, 7.4003, 7.3997, 7.4007, 7.4016, 7.4011, 7.4007, 7.4002, 7.4011, 7.402, 7.4017, 7.4026, 7.4021, 7.4016, 7.401, 7.4019, 7.4028, 7.4023, 7.4018, 7.4032, 7.403, 7.4026, 7.4021, 7.4021, 7.4016, 7.4012, 7.4007, 7.4006, 7.4001, 7.4013, 7.4008, 7.402, 7.4017, 7.4028, 7.4023, 7.4018, 7.4014, 7.401, 7.4005, 7.4, 7.3997, 7.3992, 7.3986, 7.3981, 7.4004, 7.4043, 7.4038, 7.402, 7.4016, 7.4032, 7.4027, 7.4065, 7.406, 7.4057, 7.4052, 7.4047, 7.4042, 7.4052, 7.4047, 7.408, 7.4076, 7.407, 7.4066, 7.4061, 7.4056, 7.4051, 7.4046, 7.4041, 7.4036, 7.4057, 7.404, 7.4034, 7.4042, 7.4024, 7.402, 7.4016, 7.4026, 7.4021, 7.4016, 7.401, 7.402, 7.4031, 7.4027, 7.4036, 7.4032, 7.4046, 7.4028, 7.4037, 7.4031, 7.4027, 7.4022, 7.402, 7.4034, 7.4028, 7.4022, 7.4017, 7.4013, 7.4009, 7.4003, 7.3998, 7.4008, 7.4004, 7.4004, 7.4001, 7.3997, 7.4007, 7.4001, 7.3997, 7.3995, 7.3992, 7.4001, 7.3997, 7.3994, 7.3988, 7.3983, 7.3966, 7.3961, 7.3957, 7.3954, 7.3949, 7.3965, 7.3975, 7.3987, 7.3982, 7.3977, 7.3987, 7.3983, 7.3983, 7.3978, 7.3976, 7.3971, 7.3967, 7.3963, 7.3958, 7.3968, 7.3963, 7.3957, 7.3939, 7.3934, 7.3929, 7.3924, 7.3923, 7.3931, 7.3926, 7.3952, 7.3951, 7.3946, 7.3942, 7.395, 7.3945, 7.3954, 7.3963, 7.3958, 7.3968, 7.3965, 7.3973, 7.3983, 7.3978, 7.3973, 7.3971, 7.3967, 7.3977, 7.3994, 7.4003, 7.4018, 7.4013, 7.3995, 7.3994, 7.399, 7.3991, 7.3987, 7.397, 7.3953, 7.3949, 7.3945, 7.3955, 7.3951, 7.3953, 7.3953, 7.3961, 7.3956, 7.3951, 7.3946, 7.3941, 7.395, 7.3946, 7.3942, 7.3937, 7.3933, 7.3929, 7.3924, 7.3919, 7.3929, 7.3925, 7.392, 7.3915, 7.391, 7.3919, 7.3915, 7.3911, 7.3906, 7.3903, 7.3898, 7.3896, 7.3928, 7.3927, 7.391, 7.3921, 7.3917, 7.3913, 7.3908, 7.3903, 7.39, 7.3895, 7.3891, 7.3888, 7.3883, 7.3881, 7.3864, 7.3859, 7.3857, 7.3852, 7.3847, 7.383, 7.3825, 7.3833, 7.383, 7.3825, 7.3821, 7.3829, 7.3824, 7.3832, 7.3827, 7.3824, 7.382, 7.3815, 7.381, 7.3818, 7.3814, 7.3821, 7.3816, 7.3811, 7.3794, 7.3802, 7.3799, 7.3794, 7.379, 7.3785, 7.3781, 7.3776, 7.3829, 7.3825, 7.3824, 7.3819, 7.3848, 7.3844, 7.3841, 7.3837, 7.3846, 7.3857, 7.384, 7.3836, 7.3832, 7.3828, 7.3824, 7.3821, 7.3831, 7.3828, 7.3824, 7.3819, 7.3816, 7.3811, 7.3807, 7.3806, 7.3802, 7.3812, 7.3807, 7.3802, 7.3799, 7.3794, 7.3803, 7.38, 7.3796, 7.3806, 7.3801, 7.381, 7.3807, 7.3817, 7.3812, 7.382, 7.3828, 7.3823, 7.3821, 7.3816, 7.3811, 7.3827, 7.3822, 7.383, 7.3825, 7.382, 7.383, 7.3825, 7.382, 7.3816, 7.3811, 7.3819, 7.3828, 7.3825, 7.3834, 7.383, 7.3839, 7.3834, 7.3843, 7.3839, 7.3834, 7.383, 7.3825, 7.3834, 7.3842, 7.3837, 7.3832, 7.3829, 7.3825, 7.382, 7.3815, 7.381, 7.382, 7.383, 7.3826, 7.3833, 7.383, 7.3852, 7.386, 7.3868, 7.3888, 7.3884, 7.388, 7.3876, 7.3884, 7.3879, 7.3886, 7.3894, 7.3917, 7.3925, 7.3921, 7.3917, 7.3917, 7.3952, 7.3966, 7.3962, 7.4009, 7.4005, 7.4001, 7.3998, 7.3994, 7.399, 7.3985, 7.3981, 7.3996, 7.4005, 7.4031, 7.4047, 7.4043, 7.4026, 7.404, 7.4035, 7.4036, 7.4046, 7.4042, 7.4037, 7.4034, 7.4032, 7.4027, 7.4022, 7.4031, 7.404, 7.4049, 7.4046, 7.4041, 7.4037, 7.4032, 7.4054, 7.4049, 7.4045, 7.404, 7.4036, 7.4084, 7.4079, 7.4074, 7.4057, 7.4053, 7.4065, 7.4062, 7.4057, 7.4054, 7.405, 7.4058, 7.4053, 7.4062, 7.4046, 7.4041, 7.4048, 7.4043, 7.4039, 7.4048, 7.4044, 7.4052, 7.4047, 7.4043, 7.4039, 7.4047, 7.4042, 7.4039, 7.4034, 7.4043, 7.4039, 7.4035, 7.4043, 7.4078, 7.4075, 7.4072, 7.4068, 7.4065, 7.4088, 7.41, 7.4097, 7.4093, 7.409, 7.4086, 7.4096, 7.4107, 7.4115, 7.4111, 7.4134, 7.4144, 7.414, 7.4155, 7.415, 7.4146, 7.4143, 7.4139, 7.4135, 7.4132, 7.4128, 7.4123, 7.4119, 7.4115, 7.4111, 7.4107, 7.4123, 7.412, 7.4116, 7.4125, 7.4121, 7.4118, 7.4127, 7.4123, 7.4121, 7.4127, 7.4136, 7.4132, 7.4129, 7.4136, 7.412, 7.4117, 7.4116, 7.4102, 7.4097, 7.4094, 7.409, 7.4086, 7.4082, 7.409, 7.4085, 7.408, 7.4103, 7.41, 7.4108, 7.4129, 7.4125, 7.4121, 7.4117, 7.4105, 7.4126, 7.4123, 7.4146, 7.4141, 7.4137, 7.4158, 7.4154, 7.4163, 7.4172, 7.42, 7.4199, 7.4207, 7.4204, 7.4188, 7.4183, 7.4179, 7.4177, 7.4175, 7.4185, 7.4181, 7.4176, 7.4185, 7.4181, 7.4177, 7.4187, 7.4196, 7.4192, 7.4201, 7.4198, 7.4194, 7.4178, 7.4187, 7.4183, 7.4178, 7.4173, 7.4168, 7.4164, 7.4159, 7.4167, 7.4175, 7.4195, 7.4179, 7.4164, 7.4159, 7.4166, 7.4162, 7.4157, 7.4154, 7.4149, 7.4146, 7.4142, 7.415, 7.4146, 7.4141, 7.4136, 7.4143, 7.415, 7.4145, 7.4155, 7.4151, 7.4147, 7.4131, 7.4128, 7.4155, 7.4167, 7.4162, 7.4158, 7.4183, 7.4178, 7.4175, 7.4171, 7.4166, 7.4173, 7.417, 7.4165, 7.416, 7.4155, 7.4152, 7.4148, 7.4143, 7.4138, 7.4133, 7.4129, 7.4137, 7.4133, 7.4129, 7.4127, 7.4124, 7.4132, 7.4138, 7.4136, 7.4136, 7.4131, 7.4127, 7.4124, 7.412, 7.4117, 7.4153, 7.4149, 7.4176, 7.4172, 7.4168, 7.4164, 7.4181, 7.4189, 7.4185, 7.4181, 7.419, 7.4186, 7.4182, 7.4204, 7.4201, 7.4198, 7.4194, 7.4209, 7.4225, 7.421, 7.4218, 7.4202, 7.4199, 7.4195, 7.419, 7.4185, 7.418, 7.4183, 7.4179, 7.4174, 7.4169, 7.4177, 7.4172, 7.4167, 7.4162, 7.4157, 7.4152, 7.4147, 7.4142, 7.4138, 7.4133, 7.4128, 7.4148, 7.4156, 7.4155, 7.414, 7.4137, 7.4144, 7.4153, 7.4138, 7.4144, 7.4139, 7.4147, 7.4144, 7.4141, 7.4136, 7.4133, 7.4132, 7.4128, 7.4123, 7.412, 7.4117, 7.4115, 7.411, 7.4106, 7.4102, 7.4098, 7.4095, 7.409, 7.4098, 7.4093, 7.4078, 7.4073, 7.408, 7.4075, 7.407, 7.4066, 7.4062, 7.4058, 7.4055, 7.4053, 7.4049, 7.4044, 7.4052, 7.406, 7.4058, 7.4078, 7.4075, 7.4071, 7.4068, 7.4063, 7.4071, 7.4066, 7.4075, 7.4083, 7.4091, 7.4087, 7.4083, 7.4103, 7.41, 7.4096, 7.4108, 7.4105, 7.4113, 7.411, 7.4105, 7.4101, 7.4097, 7.4095, 7.4102, 7.4098, 7.4108, 7.4113, 7.411, 7.4118, 7.4116, 7.4101, 7.4098, 7.4093, 7.4089, 7.4096, 7.4132, 7.4133, 7.414, 7.4137, 7.4151, 7.4151, 7.4176, 7.4171, 7.4166, 7.4163, 7.4161, 7.4156, 7.4152, 7.4147, 7.4133, 7.4142, 7.4151, 7.4147, 7.4159, 7.4158, 7.4153, 7.415, 7.4147, 7.4142, 7.415, 7.4154, 7.415, 7.4146, 7.4179, 7.4202, 7.4223, 7.4218, 7.4232, 7.4227, 7.4236, 7.4233, 7.4241, 7.4237, 7.4234, 7.423, 7.424, 7.4247, 7.4254, 7.4269, 7.4264, 7.426, 7.4267, 7.4274, 7.427, 7.4266, 7.4274, 7.4272, 7.4279, 7.4288, 7.4284, 7.428, 7.4276, 7.4272, 7.4269, 7.4274, 7.4283, 7.4279, 7.4277, 7.4273, 7.4271, 7.4268, 7.4264, 7.426, 7.4256, 7.4273, 7.4269, 7.4266, 7.4261, 7.4257, 7.4264, 7.4271, 7.4267, 7.4262, 7.4257, 7.4253, 7.4238, 7.4234, 7.4232, 7.424, 7.4236, 7.4231, 7.4238, 7.4233, 7.423, 7.4227, 7.4222, 7.4207, 7.4204, 7.4199, 7.4198, 7.4195, 7.4191, 7.4199, 7.4199, 7.4195, 7.4204, 7.42, 7.4196, 7.4192, 7.4188, 7.4185, 7.4182, 7.4178, 7.4176, 7.4173, 7.418, 7.4188, 7.4185, 7.4193, 7.4202, 7.4197, 7.4193, 7.4188, 7.4195, 7.4191, 7.4186, 7.4187, 7.4182, 7.4177, 7.4172, 7.4172, 7.4168, 7.4163, 7.416, 7.4155, 7.4151, 7.4146, 7.4154, 7.4158, 7.4153, 7.4164, 7.4161, 7.4157, 7.4154, 7.415, 7.4159, 7.4155, 7.4151, 7.4194, 7.4201, 7.4196, 7.4203, 7.4199, 7.4209, 7.4216, 7.4223, 7.422, 7.4217, 7.4215, 7.4211, 7.4215, 7.4222, 7.4221, 7.4217, 7.4213, 7.422, 7.4218, 7.4216, 7.4223, 7.4219, 7.4214, 7.4211, 7.4207, 7.4203, 7.4199, 7.4196, 7.4193, 7.419, 7.4186, 7.4193, 7.4189, 7.4197, 7.4193, 7.4193, 7.419, 7.4186, 7.4182, 7.4191, 7.4199, 7.4207, 7.4215, 7.4211, 7.4207, 7.4202, 7.4209, 7.4205, 7.4213, 7.421, 7.4206, 7.4201, 7.4198, 7.4206, 7.4202, 7.421, 7.4207, 7.4205, 7.4202, 7.4198, 7.4195, 7.4192, 7.4189, 7.4186, 7.4183, 7.418, 7.4177, 7.4173, 7.4181, 7.4183, 7.4179, 7.4176, 7.4183, 7.4181, 7.4177, 7.4173, 7.418, 7.4179, 7.4198, 7.4194, 7.419, 7.4186, 7.4171, 7.4167, 7.4163, 7.417, 7.4187, 7.4184, 7.4181, 7.4177, 7.4193, 7.419, 7.4186, 7.4182, 7.4189, 7.4185, 7.4182, 7.4189, 7.4201, 7.4197, 7.4192, 7.4188, 7.4183, 7.419, 7.4186, 7.4183, 7.4179, 7.4174, 7.4171, 7.417, 7.4165, 7.4161, 7.4158, 7.4154, 7.4151, 7.4174, 7.416, 7.4156, 7.4152, 7.4149, 7.4144, 7.414, 7.4144, 7.4153, 7.4149, 7.4156, 7.4153, 7.4149, 7.4145, 7.4142, 7.4138, 7.4134, 7.413, 7.4126, 7.4112, 7.4098, 7.4086, 7.4082, 7.4079, 7.4075, 7.4082, 7.407, 7.4066, 7.4062, 7.4062, 7.4058, 7.4065, 7.4072, 7.4068, 7.4063, 7.4059, 7.4055, 7.4051, 7.4048, 7.4055, 7.4054, 7.4051, 7.4049, 7.4062, 7.4058, 7.4053, 7.4049, 7.4055, 7.4062, 7.4058, 7.4055, 7.4052, 7.4049, 7.4046, 7.4044, 7.404, 7.4037, 7.4035, 7.4031, 7.4027, 7.4036, 7.4033, 7.4031, 7.4028, 7.4025, 7.4021, 7.4018, 7.4015, 7.4011, 7.4007, 7.4003, 7.4002, 7.3988, 7.3984, 7.397, 7.3978, 7.3986, 7.3982, 7.3979, 7.3976, 7.3972, 7.398, 7.3976, 7.3975, 7.3982, 7.3978, 7.3975, 7.3971, 7.3957, 7.3954, 7.3955, 7.3951, 7.3947, 7.3943, 7.394, 7.3936, 7.3922, 7.3918, 7.3914, 7.3911, 7.3919, 7.394, 7.3936, 7.3932, 7.3928, 7.3925, 7.3932, 7.3929, 7.3926, 7.3944, 7.3951, 7.3947, 7.3944, 7.394, 7.3947, 7.3954, 7.395, 7.3947, 7.3944, 7.394, 7.3938, 7.3945, 7.3941, 7.3937, 7.3933, 7.3929, 7.3925, 7.3923, 7.392, 7.3917, 7.3926, 7.3923, 7.3953, 7.3949, 7.399, 7.3987, 7.3986, 7.3983, 7.4003, 7.3999, 7.3995, 7.3992, 7.3988, 7.4, 7.4011, 7.4, 7.3996, 7.4003, 7.4004, 7.4, 7.3996, 7.3994, 7.3991, 7.402, 7.4027, 7.4034, 7.4031, 7.405, 7.4047, 7.4043, 7.4039, 7.4047, 7.4043, 7.404, 7.4039, 7.4035, 7.4031, 7.4027, 7.4035, 7.4031, 7.4027, 7.4024, 7.402, 7.4016, 7.4013, 7.401, 7.4017, 7.4014, 7.4022, 7.4029, 7.4025, 7.4021, 7.402, 7.4024, 7.4032, 7.4039, 7.4036, 7.4034, 7.4032, 7.4029, 7.4026, 7.4022, 7.4018, 7.4025, 7.4033, 7.4029, 7.4016, 7.4012, 7.4008, 7.4004, 7.4, 7.3996, 7.3993, 7.4011, 7.4007, 7.4004, 7.4, 7.3996, 7.3992, 7.3999, 7.4011, 7.4018, 7.4015, 7.4013, 7.401, 7.4008, 7.4006, 7.4014, 7.4022, 7.4031, 7.4029, 7.4026, 7.4023, 7.402, 7.4017, 7.4037, 7.4044, 7.404, 7.4036, 7.4033, 7.4039, 7.4047, 7.4055, 7.4051, 7.4047, 7.4054, 7.4061, 7.4068, 7.4067, 7.4064, 7.4071, 7.4077, 7.4073, 7.4069, 7.4076, 7.4072, 7.4068, 7.4064, 7.4097, 7.4104, 7.41, 7.4096, 7.4095, 7.4091, 7.4087, 7.4083, 7.4079, 7.4085, 7.4091, 7.4098, 7.4095, 7.4091, 7.4088, 7.4084, 7.408, 7.4076, 7.4073, 7.4069, 7.4076, 7.4072, 7.4068, 7.4065, 7.4062, 7.4048, 7.4045, 7.4041, 7.4039, 7.4035, 7.4032, 7.4028, 7.4024, 7.403, 7.403, 7.4026, 7.4024, 7.4022, 7.4019, 7.4015, 7.4011, 7.4007, 7.4003, 7.3999, 7.3995, 7.3991, 7.3988, 7.3998, 7.3995, 7.3991, 7.3998, 7.3994, 7.4004, 7.4003, 7.4, 7.3997, 7.3995, 7.3991, 7.3998, 7.3994, 7.399, 7.3998, 7.3995, 7.3991, 7.3987, 7.3985, 7.3981, 7.3977, 7.3974, 7.3973, 7.3969, 7.3967, 7.3964, 7.3961, 7.397, 7.3977, 7.3987, 7.3985, 7.3982, 7.3992, 7.3988, 7.3998, 7.3999, 7.3996, 7.4026, 7.4023, 7.402, 7.4027, 7.4024, 7.4023, 7.402, 7.4017, 7.4058, 7.4054, 7.4051, 7.4047, 7.4044, 7.4045, 7.4041, 7.4037, 7.4035, 7.4031, 7.4027, 7.4024, 7.402, 7.4017, 7.4013, 7.4009, 7.4015, 7.4012, 7.4008, 7.4004, 7.4001, 7.3997, 7.3993, 7.398, 7.3981, 7.3977, 7.3973, 7.3969, 7.3965, 7.3962, 7.3958, 7.3955, 7.3951, 7.394, 7.3948, 7.3944, 7.394, 7.3949, 7.3957, 7.3964, 7.396, 7.3966, 7.3962, 7.3958, 7.3956, 7.3952, 7.3951, 7.3951, 7.3948, 7.3946, 7.3943, 7.395, 7.3946, 7.3994, 7.399, 7.3987, 7.3983, 7.398, 7.3977, 7.3974, 7.3971, 7.398, 7.3978, 7.3986, 7.3993, 7.3989, 7.3986, 7.3998, 7.3995, 7.3991, 7.3993, 7.4027, 7.4023, 7.4019, 7.4027, 7.4023, 7.4019, 7.4022, 7.4019, 7.404, 7.4036, 7.4032, 7.403, 7.4036, 7.4034, 7.4031, 7.4038, 7.4035, 7.4042, 7.4038, 7.4034, 7.404, 7.4037, 7.4033, 7.4029, 7.4038, 7.4034, 7.403, 7.4026, 7.4032, 7.4028, 7.4025, 7.4012, 7.401, 7.4007, 7.4003, 7.3999, 7.3996, 7.3994, 7.399, 7.3987, 7.3996, 7.3992, 7.4, 7.3997, 7.3994, 7.3994, 7.3991, 7.3998, 7.4041, 7.4038, 7.4035, 7.4035, 7.4032, 7.4046, 7.4043, 7.4052, 7.4048, 7.4045, 7.4052, 7.4049, 7.4045, 7.4042, 7.4049, 7.4053, 7.4049, 7.4046, 7.4042, 7.4039, 7.4035, 7.4032, 7.4028, 7.4024, 7.4023, 7.403, 7.4026, 7.4023, 7.403, 7.4027, 7.4024, 7.4022, 7.4018, 7.4014, 7.4003, 7.4021, 7.4017, 7.4013, 7.4022, 7.4018, 7.4024, 7.4021, 7.4018, 7.4014, 7.4012, 7.4009, 7.4005, 7.4002, 7.3998, 7.4004, 7.3993, 7.399, 7.3987, 7.3984, 7.398, 7.3986, 7.3982, 7.3978, 7.3984, 7.398, 7.3977, 7.3975, 7.3982, 7.3978, 7.3974, 7.3972, 7.3971, 7.3968, 7.3965, 7.3962, 7.3958, 7.3955, 7.3951, 7.3958, 7.3954, 7.395, 7.3946, 7.3944, 7.3941, 7.3938, 7.3945, 7.3941, 7.3937, 7.3934, 7.3972, 7.3979, 7.3996, 7.3993, 7.3999, 7.4005, 7.4011, 7.4018, 7.4025, 7.4022, 7.401, 7.4017, 7.4023, 7.4029, 7.4036, 7.4032, 7.403, 7.4036, 7.4034, 7.403, 7.4027, 7.4025, 7.4023, 7.4019, 7.4015, 7.4011, 7.4017, 7.4013, 7.4009, 7.4006, 7.4012, 7.4008, 7.4015, 7.4011, 7.4009, 7.4016, 7.4012, 7.4, 7.3997, 7.3984, 7.398, 7.3977, 7.3974, 7.3971, 7.3967, 7.3963, 7.3959, 7.3956, 7.3962, 7.3964, 7.396, 7.3967, 7.3964, 7.3971, 7.3978, 7.3975, 7.3971, 7.3978, 7.3975, 7.3974, 7.3984, 7.3981, 7.3982, 7.3979, 7.3975, 7.3982, 7.3989, 7.3985, 7.3981, 7.3989, 7.3985, 7.3983, 7.3981, 7.3977, 7.3975, 7.3972, 7.3972, 7.3972, 7.3978, 7.3975, 7.3972, 7.3969, 7.3975, 7.3971, 7.3969, 7.3966, 7.3962, 7.3969, 7.3965, 7.3961, 7.3957, 7.3964, 7.397, 7.3967, 7.3964, 7.396, 7.3967, 7.3964, 7.396, 7.3957, 7.3953, 7.3949, 7.395, 7.3946, 7.3942, 7.394, 7.3939, 7.3986, 7.4003, 7.4019, 7.4016, 7.4022, 7.4029, 7.4046, 7.4044, 7.4041, 7.4039, 7.4046, 7.4042, 7.406, 7.4056, 7.4053, 7.4049, 7.4046, 7.4043, 7.4083, 7.408, 7.4076, 7.4082, 7.4089, 7.4097, 7.4094, 7.4091, 7.4089, 7.4085, 7.4081, 7.4088, 7.4094, 7.4091, 7.4087, 7.4084, 7.4071, 7.4068, 7.4065, 7.4072, 7.4059, 7.4055, 7.4051, 7.4047, 7.4053, 7.4049, 7.4046, 7.4065, 7.4062, 7.4058, 7.4054, 7.4042, 7.4038, 7.4034, 7.4036, 7.4033, 7.4039, 7.4036, 7.4033, 7.4031, 7.4028, 7.4024, 7.4021, 7.4018, 7.4015, 7.4011, 7.4008, 7.4015, 7.4012, 7.4, 7.3997, 7.3993, 7.3999, 7.4005, 7.4001, 7.4007, 7.4003, 7.4001, 7.3999, 7.3995, 7.3992, 7.3998, 7.4004, 7.4001, 7.4008, 7.4006, 7.4003, 7.4009, 7.4009, 7.4015, 7.4012, 7.4018, 7.4016, 7.4013, 7.4053, 7.4049, 7.4057, 7.4063, 7.406, 7.4066, 7.4063, 7.406, 7.4056, 7.4044, 7.407, 7.4066, 7.4064, 7.4061, 7.4059, 7.4056, 7.4063, 7.4051, 7.4048, 7.4044, 7.4042, 7.4039, 7.4046, 7.4042, 7.406, 7.4057, 7.4061, 7.4058, 7.4046, 7.4077, 7.4074, 7.4072, 7.4062, 7.4059, 7.4057, 7.4054, 7.4052, 7.405, 7.4047, 7.4044, 7.4041, 7.4038, 7.4035, 7.4024, 7.4031, 7.4028, 7.4025, 7.4022, 7.4018, 7.4024, 7.4021, 7.4022, 7.4028, 7.4035, 7.4032, 7.4039, 7.4035, 7.4027, 7.4025, 7.4022, 7.4018, 7.4014, 7.4011, 7.4008, 7.4014, 7.4011, 7.4008, 7.4005, 7.4002, 7.4007, 7.4004, 7.4, 7.401, 7.4007, 7.3995, 7.3992, 7.3988, 7.3986, 7.3994, 7.399, 7.4005, 7.4012, 7.4009, 7.4015, 7.4021, 7.4028, 7.4026, 7.4032, 7.4038, 7.4036, 7.404, 7.4038, 7.4035, 7.4039, 7.4046, 7.4043, 7.4041, 7.4037, 7.4034, 7.4031, 7.4028, 7.4025, 7.4031, 7.4028, 7.4025, 7.4022, 7.4029, 7.4026, 7.4036, 7.4026, 7.4023, 7.4024, 7.403, 7.4028, 7.4034, 7.403, 7.404, 7.4037, 7.4038, 7.4063, 7.4059, 7.4057, 7.4053, 7.4049, 7.4045, 7.4051, 7.4049, 7.4047, 7.4045, 7.4041, 7.4037, 7.4035, 7.4041, 7.4047, 7.4044, 7.4041, 7.4037, 7.4034, 7.4022, 7.4033, 7.403, 7.4027, 7.4024, 7.4023, 7.402, 7.4016, 7.4012, 7.4008, 7.4005, 7.4001, 7.3997, 7.3994, 7.4, 7.3998, 7.3994, 7.4, 7.3997, 7.4004, 7.4, 7.3997, 7.3994, 7.4001, 7.3998, 7.3995, 7.3983, 7.399, 7.3986, 7.3982, 7.3979, 7.3986, 7.3983, 7.3981, 7.3979, 7.3977, 7.3974, 7.3991, 7.3988, 7.3996, 7.3993, 7.4011, 7.4019, 7.4016, 7.4013, 7.401, 7.4017, 7.4014, 7.4022, 7.4019, 7.4016, 7.4012, 7.4009, 7.4015, 7.4027, 7.4024, 7.4021, 7.4009, 7.4016, 7.4024, 7.4035, 7.4036, 7.4042, 7.4041, 7.4038, 7.4036, 7.4044, 7.405, 7.4051, 7.4048, 7.4046, 7.4062, 7.4059, 7.4057, 7.4045, 7.4033, 7.403, 7.4027, 7.4024, 7.402, 7.4026, 7.4024, 7.4021, 7.4018, 7.4024, 7.4035, 7.4032, 7.4029, 7.4035, 7.4031, 7.4027, 7.4023, 7.4021, 7.4019, 7.4016, 7.4022, 7.4018, 7.4015, 7.4013, 7.401, 7.4007, 7.4005, 7.4002, 7.4008, 7.4005, 7.4009, 7.4007, 7.4016, 7.4014, 7.4014, 7.4012, 7.4021, 7.4017, 7.4013, 7.4011, 7.402, 7.4017, 7.4014, 7.4011, 7.4008, 7.4005, 7.402, 7.4038, 7.4035, 7.4036, 7.4034, 7.4031, 7.4028, 7.4025, 7.4021, 7.4018, 7.4015, 7.4022, 7.4018, 7.4025, 7.4021, 7.4018, 7.4015, 7.4012, 7.4018, 7.4015, 7.4013, 7.401, 7.4016, 7.4013, 7.4002, 7.3999, 7.4007, 7.4004, 7.4003, 7.4001, 7.3997, 7.4003, 7.4, 7.4006, 7.4003, 7.4001, 7.3998, 7.3996, 7.3993, 7.399, 7.3986, 7.3983, 7.3971, 7.3968, 7.3987, 7.4002, 7.399, 7.3996, 7.4002, 7.4009, 7.4015, 7.4013, 7.4009, 7.4006, 7.4023, 7.4012, 7.4019, 7.4017, 7.4014, 7.4012, 7.4018, 7.4058, 7.4064, 7.4061, 7.4066, 7.4062, 7.4059, 7.4056, 7.4054, 7.4051, 7.406, 7.4058, 7.4055, 7.4054, 7.405, 7.4047, 7.4043, 7.404, 7.4036, 7.4032, 7.4038, 7.4035, 7.4031, 7.4028, 7.4024, 7.403, 7.4036, 7.4042, 7.4039, 7.4036, 7.4033, 7.403, 7.4036, 7.4034, 7.4032, 7.403, 7.4027, 7.4024, 7.4014, 7.4029, 7.4026, 7.4025, 7.4024, 7.4021, 7.4018, 7.4044, 7.4034, 7.4031, 7.4029, 7.4026, 7.4023, 7.402, 7.4017, 7.4023, 7.402, 7.4025, 7.4022, 7.4018, 7.4024, 7.402, 7.4028, 7.4025, 7.4022, 7.402, 7.4026, 7.4023, 7.403, 7.4036, 7.4042, 7.4038, 7.4035, 7.4032, 7.4038, 7.4043, 7.404, 7.4037, 7.4034, 7.4039, 7.4028, 7.4027, 7.4023, 7.4019, 7.4015, 7.4012, 7.4018, 7.4015, 7.4012, 7.4017, 7.4016, 7.4012, 7.401, 7.4008, 7.401, 7.4008, 7.4005, 7.4002, 7.3999, 7.4004, 7.401, 7.4007, 7.4012, 7.4009, 7.4006, 7.4003, 7.401, 7.4019, 7.4016, 7.4013, 7.4011, 7.4018, 7.4015, 7.4012, 7.4009, 7.4052, 7.4049, 7.4045, 7.4042, 7.4039, 7.4035, 7.4036, 7.4033, 7.4029, 7.4038, 7.4035, 7.404, 7.4046, 7.4042, 7.404, 7.4036, 7.4032, 7.4029, 7.4026, 7.4023, 7.4029, 7.4034, 7.4049, 7.4046, 7.4043, 7.4041, 7.4046, 7.4043, 7.4052, 7.4058, 7.4056, 7.4055, 7.4054, 7.4051, 7.4048, 7.4055, 7.4052, 7.4058, 7.4064, 7.4062, 7.4061, 7.4067, 7.4064, 7.406, 7.4058, 7.4055, 7.4052, 7.4059, 7.4067, 7.4064, 7.407, 7.4076, 7.4081, 7.4078, 7.4075, 7.4072, 7.407, 7.4068, 7.4065, 7.4062, 7.4058, 7.4057, 7.4055, 7.4062, 7.4068, 7.4075, 7.4081, 7.4079, 7.4096, 7.4093, 7.41, 7.4097, 7.4097, 7.4094, 7.41, 7.4106, 7.4103, 7.411, 7.4107, 7.4104, 7.4102, 7.4099, 7.4096, 7.4092, 7.4088, 7.4086, 7.4083, 7.4079, 7.4076, 7.4073, 7.407, 7.4066, 7.4063, 7.4069, 7.4067, 7.4064, 7.4063, 7.4069, 7.4067, 7.4073, 7.4072, 7.4078, 7.4084, 7.4081, 7.4078, 7.4076, 7.4073, 7.4062, 7.4059, 7.4057, 7.4054, 7.4052, 7.4051, 7.4048, 7.4045, 7.4043, 7.4039, 7.4036, 7.4035, 7.4031, 7.4028, 7.4026, 7.4022, 7.4019, 7.4016, 7.4014, 7.4011, 7.4008, 7.4004, 7.4002, 7.4, 7.3996, 7.3993, 7.399, 7.3995, 7.3992, 7.3998, 7.3995, 7.3992, 7.3999, 7.3996, 7.3995, 7.3992, 7.3989, 7.3986, 7.3983, 7.398, 7.3977, 7.3975, 7.3972, 7.3969, 7.3968, 7.3964, 7.398, 7.3978, 7.3977, 7.3974, 7.3971, 7.3968, 7.3969, 7.3967, 7.3964, 7.3962, 7.3967, 7.3964, 7.3969, 7.3966, 7.3966, 7.3963, 7.396, 7.3966, 7.3963, 7.396, 7.3966, 7.3962, 7.3959, 7.3956, 7.3953, 7.3959, 7.3964, 7.3962, 7.3959, 7.3956, 7.3956, 7.3953, 7.3961, 7.3958, 7.3956, 7.3953, 7.395, 7.3947, 7.3943, 7.3949, 7.3949, 7.3946, 7.3944, 7.395, 7.3955, 7.3952, 7.395, 7.3947, 7.3953, 7.3952, 7.3949, 7.3955, 7.3952, 7.3949, 7.3946, 7.3944, 7.3941, 7.3938, 7.3935, 7.3932, 7.393, 7.3927, 7.3924, 7.3931, 7.3928, 7.3917, 7.3914, 7.3921, 7.3918, 7.3917, 7.3914, 7.3911, 7.3913, 7.3902, 7.3891, 7.3897, 7.3894, 7.3892, 7.3888, 7.3885, 7.3883, 7.3888, 7.3885, 7.3892, 7.3893, 7.3891, 7.3898, 7.3905, 7.3903, 7.39, 7.3897, 7.3896, 7.3902, 7.39, 7.3897, 7.3894, 7.3891, 7.3888, 7.3885, 7.3882, 7.3879, 7.3869, 7.3867, 7.3873, 7.3873, 7.3871, 7.3869, 7.3876, 7.3874, 7.3872, 7.3878, 7.3868, 7.3866, 7.3863, 7.3868, 7.3865, 7.3865, 7.3862, 7.3859, 7.3858, 7.3855, 7.3863, 7.386, 7.3857, 7.3854, 7.386, 7.3858, 7.3855, 7.3862, 7.3871, 7.3869, 7.3868, 7.3874, 7.3872, 7.387, 7.3867, 7.3873, 7.3871, 7.3877, 7.3875, 7.3873, 7.3879, 7.3878, 7.3884, 7.3881, 7.388, 7.3886, 7.3884, 7.3882, 7.3881, 7.3878, 7.3883, 7.3882, 7.3888, 7.3894, 7.3893, 7.389, 7.3887, 7.3884, 7.3881, 7.3878, 7.3897, 7.3896, 7.3893, 7.389, 7.3896, 7.3893, 7.3891, 7.3888, 7.3894, 7.3892, 7.389, 7.3888, 7.3894, 7.3892, 7.3889, 7.3886, 7.3883, 7.388, 7.3879, 7.3876, 7.3873, 7.387, 7.3876, 7.3872, 7.3871, 7.3868, 7.3866, 7.3871, 7.3869, 7.3866, 7.3866, 7.3872, 7.3869, 7.3867, 7.3866, 7.3873, 7.3878, 7.3875, 7.3872, 7.3879, 7.3876, 7.3873, 7.387, 7.3867, 7.3865, 7.3862, 7.3867, 7.3867, 7.3865, 7.3854, 7.3852, 7.3861, 7.3858, 7.3859, 7.3856, 7.3853, 7.3858, 7.3856, 7.3854, 7.3851, 7.3849, 7.3846, 7.3851, 7.3848, 7.3846, 7.3844, 7.3842, 7.3839, 7.3842, 7.3839, 7.3836, 7.3833, 7.3839, 7.3844, 7.3841, 7.3838, 7.3835, 7.3833, 7.3831, 7.3828, 7.3825, 7.3822, 7.3811, 7.3801, 7.3798, 7.3796, 7.3793, 7.3809, 7.382, 7.3819, 7.3825, 7.3822, 7.3821, 7.3841, 7.3838, 7.3835, 7.3858, 7.3865, 7.3864, 7.3862, 7.3861, 7.3859, 7.3857, 7.3863, 7.3861, 7.3858, 7.3856, 7.3862, 7.3859, 7.3848, 7.3853, 7.385, 7.385, 7.3847, 7.3845, 7.3843, 7.384, 7.3838, 7.3843, 7.384, 7.3837, 7.3834, 7.3832, 7.3836, 7.3838, 7.3843, 7.384, 7.3838, 7.3836, 7.3833, 7.383, 7.3827, 7.3828, 7.3834, 7.3834, 7.3831, 7.3829, 7.3826, 7.3832, 7.3829, 7.3826, 7.3823, 7.382, 7.3817, 7.3816, 7.3814, 7.3813, 7.3811, 7.3817, 7.3815, 7.3812, 7.381, 7.3809, 7.3807, 7.3804, 7.3801, 7.3807, 7.3804, 7.3828, 7.3826, 7.3815, 7.3812, 7.381, 7.3807, 7.3804, 7.3809, 7.3799, 7.3796, 7.3802, 7.3808, 7.3814, 7.3819, 7.3808, 7.3816, 7.3813, 7.381, 7.3816, 7.3813, 7.3819, 7.3817, 7.3814, 7.382, 7.3827, 7.3824, 7.383, 7.3835, 7.3841, 7.3838, 7.3835, 7.3832, 7.3829, 7.3826, 7.3823, 7.382, 7.3817, 7.3834, 7.3831, 7.3839, 7.3836, 7.3833, 7.383, 7.3835, 7.3832, 7.3829, 7.3835, 7.3832, 7.3837, 7.3834, 7.3831, 7.3828, 7.3826, 7.3831, 7.3837, 7.3842, 7.3839, 7.3836, 7.3841, 7.3847, 7.3852, 7.3858, 7.3855, 7.3852, 7.3857, 7.3854, 7.3851, 7.3849, 7.3848, 7.3845, 7.3843, 7.3849, 7.3847, 7.3844, 7.385, 7.3855, 7.3853, 7.3858, 7.3847, 7.3852, 7.3849, 7.3846, 7.3843, 7.3848, 7.3845, 7.3843, 7.3848, 7.3853, 7.385, 7.3848, 7.3845, 7.3865, 7.3863, 7.3861, 7.3866, 7.3863, 7.386, 7.3857, 7.3856, 7.3861, 7.3858, 7.3855, 7.3852, 7.3857, 7.3854, 7.3851, 7.3848, 7.3846, 7.3844, 7.3849, 7.3846, 7.3843, 7.3841, 7.383, 7.3835, 7.3832, 7.383, 7.3835, 7.384, 7.3837, 7.3834, 7.3831, 7.3836, 7.3833, 7.3838, 7.3843, 7.3856, 7.3853, 7.3858, 7.3856, 7.3861, 7.3859, 7.3856, 7.3854, 7.386, 7.3857, 7.3855, 7.3861, 7.3858, 7.3855, 7.3859, 7.3857, 7.3864, 7.3869, 7.3874, 7.3864, 7.3877, 7.3874, 7.3882, 7.3879, 7.3884, 7.3881, 7.3878, 7.3875, 7.3872, 7.3878, 7.3883, 7.3888, 7.3893, 7.389, 7.3887, 7.3892, 7.3889, 7.3887, 7.3884, 7.389, 7.3879, 7.3876, 7.3873, 7.3878, 7.3884, 7.3889, 7.3894, 7.3899, 7.3889, 7.3894, 7.39, 7.3905, 7.3902, 7.3892, 7.3882, 7.388, 7.3878, 7.3875, 7.3872, 7.3869, 7.3867, 7.388, 7.3893, 7.389, 7.3895, 7.3908, 7.3905, 7.391, 7.3915, 7.3905, 7.3911, 7.3908, 7.3906, 7.3903, 7.3908, 7.3913, 7.3918, 7.3915, 7.392, 7.3912, 7.3909, 7.3906, 7.3903, 7.39, 7.3898, 7.3895, 7.3893, 7.389, 7.3887, 7.3902, 7.3916, 7.3915, 7.3912, 7.3912, 7.3929, 7.3934, 7.3934, 7.3932, 7.3958, 7.3959, 7.3957, 7.3981, 7.4003, 7.4001, 7.3999, 7.3996, 7.3994, 7.3991, 7.3988, 7.3986, 7.4008, 7.4014, 7.4011, 7.4008, 7.4013, 7.4011, 7.4008, 7.4009, 7.4006, 7.4003, 7.4008, 7.4006, 7.4016, 7.4024, 7.4021, 7.4026, 7.4026, 7.4025, 7.4046, 7.4051, 7.4059, 7.4076, 7.4073, 7.407, 7.4076, 7.4073, 7.4071, 7.4061, 7.4058, 7.4055, 7.4052, 7.4049, 7.4055, 7.4061, 7.4067, 7.4064, 7.4054, 7.4059, 7.4056, 7.4076, 7.4073, 7.4079, 7.4076, 7.4073, 7.407, 7.4067, 7.4081, 7.4079, 7.4077, 7.4082, 7.408, 7.4086, 7.4083, 7.408, 7.4078, 7.4068, 7.4065, 7.4062, 7.4059, 7.4056, 7.4062, 7.4059, 7.4056, 7.4054, 7.4051, 7.4048, 7.4045, 7.4042, 7.4047, 7.4053, 7.4052, 7.4049, 7.4057, 7.4065, 7.4087, 7.4084, 7.4089, 7.4086, 7.4091, 7.4091, 7.41, 7.4098, 7.4103, 7.4108, 7.4106, 7.4111, 7.4109, 7.4114, 7.4119, 7.4117, 7.4122, 7.4127, 7.4134, 7.4132, 7.414, 7.4145, 7.4143, 7.414, 7.4145, 7.415, 7.4147, 7.4144, 7.4141, 7.4138, 7.4136, 7.4142, 7.4147, 7.4144, 7.4149, 7.4146, 7.4136, 7.4133, 7.4131, 7.4136, 7.4133, 7.413, 7.4136, 7.4142, 7.414, 7.4138, 7.4143, 7.4148, 7.4145, 7.4142, 7.4146, 7.4152, 7.4167, 7.4165, 7.4171, 7.4176, 7.4181, 7.4178, 7.4183, 7.4181, 7.4179, 7.4185, 7.4182, 7.4179, 7.4176, 7.4181, 7.4186, 7.4191, 7.4188, 7.4185, 7.4183, 7.4188, 7.4193, 7.419, 7.4195, 7.42, 7.4205, 7.421, 7.4215, 7.4212, 7.4217, 7.4214, 7.4211, 7.4208, 7.4205, 7.421, 7.42, 7.4198, 7.4195, 7.4193, 7.4199, 7.4197, 7.4194, 7.4192, 7.4198, 7.4196, 7.4193, 7.4191, 7.4188, 7.4193, 7.4191, 7.4188, 7.4185, 7.4182, 7.4187, 7.4185, 7.419, 7.4188, 7.4193, 7.419, 7.4188, 7.4186, 7.4183, 7.4188, 7.4185, 7.4182, 7.418, 7.4177, 7.4182, 7.418, 7.4177, 7.4175, 7.4173, 7.4171, 7.4176, 7.4183, 7.418, 7.4177, 7.4175, 7.4175, 7.418, 7.4177, 7.4174, 7.4173, 7.4179, 7.4184, 7.4189, 7.4187, 7.4184, 7.4181, 7.4178, 7.4176, 7.4182, 7.4187, 7.4185, 7.4183, 7.418, 7.4178, 7.4176, 7.4174, 7.4172, 7.4169, 7.4167, 7.4165, 7.4171, 7.4178, 7.4184, 7.4182, 7.418, 7.4178, 7.4176, 7.4181, 7.4179, 7.4184, 7.4183, 7.4188, 7.4193, 7.4192, 7.4189, 7.4194, 7.4199, 7.4196, 7.4194, 7.4191, 7.419, 7.4187, 7.4185, 7.4182, 7.4179, 7.4176, 7.4173, 7.4165, 7.4163, 7.4161, 7.4158, 7.4156, 7.4154, 7.4146, 7.4167, 7.4164, 7.4194, 7.4191, 7.4189, 7.4187, 7.4184, 7.4182, 7.4181, 7.4179, 7.4177, 7.4175, 7.4172, 7.417, 7.4169, 7.4167], '192.168.122.116': [10.7665, 18.4503, 14.1081, 10.77, 10.2365, 10.311, 9.6211, 9.1089, 8.7164, 8.4489, 8.1902, 8.4737, 8.669, 8.5698, 8.3771, 8.2565, 8.0859, 7.9812, 7.8426, 7.4983, 7.4118, 7.3184, 7.2351, 7.1615, 7.0909, 7.5962, 7.7197, 7.6359, 7.5553, 7.4809, 7.4375, 7.376, 7.3292, 7.2956, 7.2405, 7.204, 7.1799, 7.1388, 7.0963, 7.2004, 7.1599, 7.1428, 7.1109, 7.0731, 7.0326, 7.0017, 6.8683, 6.8794, 7.0232, 6.9925, 6.9726, 6.9481, 6.9185, 6.8269, 6.9013, 6.8836, 7.0113, 7.4543, 7.4174, 7.4772, 7.3647, 7.3356, 7.3057, 7.2769, 7.2528, 7.3153, 7.2916, 7.2644, 7.2551, 7.2357, 7.2225, 7.1965, 7.2598, 7.6099, 7.6587, 7.7046, 7.6729, 7.6512, 7.6209, 7.5957, 7.5691, 7.4827, 7.4591, 7.4332, 7.4209, 7.3991, 7.385, 7.632, 7.6086, 7.6982, 7.733, 7.7126, 7.6883, 7.7833, 7.7677, 7.8018, 7.8899, 7.8803, 7.8773, 7.9025, 7.9356, 7.9645, 7.947, 7.9219, 7.8982, 7.834, 7.8594, 7.8403, 7.8171, 7.7938, 7.7724, 7.7498, 7.7278, 7.7146, 7.6962, 7.7214, 7.7026, 7.6822, 7.6786, 7.7011, 7.7241, 7.7092, 7.7615, 7.7562, 7.9785, 8.0682, 8.0883, 8.1198, 8.1139, 8.1916, 8.1903, 8.1695, 8.1522, 8.1334, 8.1459, 8.1827, 8.1745, 8.1582, 8.1417, 8.1222, 8.1048, 8.1222, 8.1428, 8.1402, 8.1465, 8.13, 8.1129, 8.096, 8.0818, 8.0319, 8.0505, 8.0327, 8.0234, 8.0116, 8.0323, 8.0234, 8.0094, 8.0094, 7.9921, 8.0094, 7.9993, 8.0148, 8.0001, 7.9899, 7.9773, 7.9801, 7.9694, 7.9859, 7.9717, 7.9622, 7.947, 7.9368, 7.924, 7.9117, 7.9371, 7.9546, 7.9449, 7.9303, 7.952, 7.9406, 7.9561, 7.9719, 7.9578, 7.9737, 7.9616, 7.9473, 7.9619, 7.9775, 7.9909, 8.0044, 7.9909, 7.9771, 7.9636, 7.9787, 7.9927, 8.0089, 7.9968, 7.9963, 7.9858, 7.9768, 7.9637, 7.9523, 7.9419, 7.9302, 7.9177, 7.9616, 7.9497, 7.9616, 7.9503, 7.9377, 7.9464, 7.9583, 7.9478, 7.9615, 7.9751, 7.9634, 7.9514, 7.9885, 7.9899, 7.9793, 7.9926, 8.0302, 8.0185, 8.0093, 8.0295, 8.0181, 8.0069, 7.997, 8.0093, 7.9995, 7.9946, 7.9867, 7.9748, 7.9634, 7.9751, 7.9648, 7.9539, 7.9429, 7.9331, 7.9226, 7.9123, 7.9233, 7.9581, 7.9708, 7.9617, 7.9954, 7.989, 7.9956, 7.9924, 7.9948, 8.0061, 7.9953, 7.9856, 7.9987, 8.0096, 8.002, 8.1387, 8.2318, 8.2638, 8.2577, 8.2475, 8.271, 8.265, 8.2663, 8.2566, 8.2512, 8.2476, 8.2383, 8.2318, 8.2219, 8.232, 8.204, 8.1944, 8.1837, 8.1765, 8.1693, 8.1605, 8.1517, 8.1449, 8.1369, 8.128, 8.1189, 8.129, 8.1233, 8.2286, 8.2184, 8.2292, 8.2379, 8.2297, 8.2377, 8.2484, 8.2387, 8.2476, 8.2456, 8.2391, 8.2301, 8.2206, 8.2124, 8.242, 8.3278, 8.3195, 8.3343, 8.3256, 8.3202, 8.3296, 8.3904, 8.382, 8.3739, 8.3647, 8.3743, 8.4044, 8.3952, 8.3879, 8.3803, 8.4315, 8.4244, 8.4152, 8.4412, 8.4705, 8.4622, 8.4526, 8.4509, 8.4426, 8.4497, 8.4402, 8.4319, 8.4391, 8.4474, 8.4406, 8.4336, 8.4248, 8.4322, 8.423, 8.4143, 8.4557, 8.4465, 8.4373, 8.4286, 8.4199, 8.4106, 8.3873, 8.3956, 8.3871, 8.3795, 8.3723, 8.3643, 8.3571, 8.3629, 8.3541, 8.3458, 8.3531, 8.3448, 8.3227, 8.3147, 8.3215, 8.3163, 8.3085, 8.3051, 8.2972, 8.2903, 8.2824, 8.2777, 8.2848, 8.2769, 8.2688, 8.2624, 8.2695, 8.262, 8.2691, 8.2483, 8.241, 8.2353, 8.2285, 8.2218, 8.2157, 8.2083, 8.2025, 8.1969, 8.1907, 8.1842, 8.1939, 8.1882, 8.2077, 8.2017, 8.196, 8.1897, 8.1833, 8.1772, 8.1695, 8.1638, 8.1706, 8.1645, 8.157, 8.1653, 8.1588, 8.1538, 8.147, 8.1399, 8.121, 8.1464, 8.1417, 8.135, 8.1288, 8.1221, 8.1283, 8.1216, 8.1147, 8.1209, 8.1155, 8.122, 8.1235, 8.1169, 8.1103, 8.1169, 8.1235, 8.1168, 8.1221, 8.1369, 8.1308, 8.1241, 8.1454, 8.152, 8.1584, 8.1897, 8.1831, 8.1767, 8.17, 8.1635, 8.1743, 8.1678, 8.1613, 8.1764, 8.1706, 8.1649, 8.1713, 8.1659, 8.1719, 8.1652, 8.1599, 8.1657, 8.1593, 8.1531, 8.1506, 8.1447, 8.1399, 8.1226, 8.1192, 8.1139, 8.12, 8.1161, 8.1101, 8.1089, 8.1028, 8.0968, 8.0917, 8.0978, 8.0925, 8.0983, 8.1102, 8.1044, 8.1093, 8.1147, 8.1087, 8.1028, 8.1009, 8.0951, 8.0893, 8.0841, 8.08, 8.0787, 8.0733, 8.0791, 8.1119, 8.1069, 8.1044, 8.1001, 8.0947, 8.0903, 8.0848, 8.0812, 8.0754, 8.071, 8.0653, 8.0601, 8.0549, 8.0498, 8.0442, 8.0407, 8.0373, 8.0319, 8.0264, 8.0208, 8.0182, 8.0137, 8.0084, 8.003, 7.998, 8.0061, 8.0138, 8.0226, 8.0308, 8.0267, 8.0228, 8.0193, 8.0246, 8.0298, 8.026, 8.0214, 8.0277, 8.023, 8.0178, 8.0298, 8.025, 8.0198, 8.0158, 8.0113, 8.0164, 8.0114, 8.0066, 8.0021, 7.9972, 7.9921, 7.9873, 7.983, 7.9778, 7.9662, 7.9621, 7.9571, 7.9523, 7.9583, 7.9536, 7.9488, 7.944, 7.9393, 7.9347, 7.9399, 7.9499, 7.9364, 7.9614, 7.9565, 7.9519, 7.9609, 7.9566, 7.9542, 7.9513, 7.9584, 7.9558, 7.9513, 7.9465, 7.9426, 7.9491, 7.9554, 7.9515, 7.9474, 7.9526, 7.9483, 7.9448, 7.9412, 7.9465, 7.9525, 7.9572, 7.9542, 7.9412, 7.9371, 7.9331, 7.9201, 7.916, 7.9223, 7.9175, 7.9224, 7.9187, 7.9145, 7.9104, 7.9069, 7.912, 7.909, 7.9046, 7.9101, 7.9061, 7.9107, 7.9094, 7.9065, 7.9028, 7.899, 7.8949, 7.9, 7.8957, 7.8913, 7.8871, 7.8836, 7.8794, 7.8752, 7.8721, 7.8955, 7.8913, 7.8891, 7.8959, 7.8917, 7.8881, 7.8938, 7.8898, 7.8945, 7.8932, 7.8981, 7.9028, 7.8989, 7.9057, 7.9017, 7.8983, 7.8942, 7.8913, 7.8877, 7.8935, 7.8894, 7.8948, 7.8973, 7.8948, 7.9009, 7.8988, 7.8955, 7.8933, 7.8977, 7.8939, 7.8898, 7.8783, 7.8827, 7.8787, 7.8837, 7.8805, 7.8773, 7.874, 7.871, 7.867, 7.8636, 7.8607, 7.8573, 7.8542, 7.8503, 7.8556, 7.8569, 7.8545, 7.8512, 7.8512, 7.8472, 7.844, 7.8405, 7.8374, 7.8424, 7.8393, 7.8359, 7.8414, 7.8379, 7.8349, 7.8315, 7.8278, 7.8244, 7.8211, 7.8174, 7.822, 7.8113, 7.8104, 7.8077, 7.8045, 7.801, 7.8067, 7.8114, 7.8089, 7.8131, 7.8184, 7.8231, 7.8193, 7.8176, 7.8148, 7.811, 7.8153, 7.8207, 7.8184, 7.815, 7.8113, 7.8075, 7.8049, 7.8014, 7.8025, 7.8009, 7.7973, 7.8015, 7.8059, 7.8103, 7.8066, 7.8035, 7.8001, 7.7984, 7.812, 7.8162, 7.8133, 7.8175, 7.8143, 7.8136, 7.8112, 7.8088, 7.8056, 7.8052, 7.8019, 7.7988, 7.8036, 7.8022, 7.8103, 7.8149, 7.8119, 7.8131, 7.8123, 7.8093, 7.8139, 7.8136, 7.8106, 7.8073, 7.8042, 7.8025, 7.7948, 7.7913, 7.7829, 7.7875, 7.7914, 7.7892, 7.793, 7.7931, 7.7903, 7.7954, 7.7925, 7.7962, 7.7938, 7.791, 7.7888, 7.7854, 7.7827, 7.7804, 7.7796, 7.7773, 7.7746, 7.7714, 7.768, 7.7657, 7.7698, 7.7673, 7.7641, 7.7609, 7.7593, 7.7648, 7.7617, 7.7656, 7.7625, 7.7597, 7.7638, 7.7607, 7.7596, 7.7573, 7.7615, 7.7585, 7.7626, 7.7667, 7.7664, 7.7632, 7.763, 7.7602, 7.7572, 7.7614, 7.7595, 7.7629, 7.7605, 7.7576, 7.7546, 7.752, 7.7501, 7.7469, 7.7509, 7.7477, 7.7446, 7.7414, 7.7455, 7.7512, 7.7487, 7.746, 7.7502, 7.7544, 7.7518, 7.7488, 7.7458, 7.743, 7.7401, 7.7375, 7.7348, 7.7319, 7.7387, 7.7438, 7.7417, 7.7468, 7.7441, 7.7413, 7.7385, 7.742, 7.7465, 7.7442, 7.7492, 7.7487, 7.7457, 7.7425, 7.7396, 7.7377, 7.7347, 7.7323, 7.7308, 7.7287, 7.7266, 7.7301, 7.7274, 7.7244, 7.7286, 7.7256, 7.723, 7.7246, 7.7274, 7.7253, 7.7247, 7.7226, 7.7209, 7.7191, 7.7186, 7.7156, 7.7127, 7.7098, 7.7136, 7.7173, 7.7213, 7.7186, 7.7164, 7.7137, 7.7109, 7.7103, 7.7075, 7.7048, 7.7083, 7.7063, 7.7097, 7.7069, 7.7042, 7.7018, 7.6997, 7.6969, 7.6941, 7.6919, 7.6894, 7.6872, 7.6844, 7.6827, 7.6861, 7.6835, 7.681, 7.6849, 7.6826, 7.686, 7.6833, 7.6868, 7.6845, 7.6821, 7.6855, 7.6892, 7.687, 7.6907, 7.6905, 7.6883, 7.6917, 7.6951, 7.6992, 7.6967, 7.694, 7.6916, 7.6952, 7.6924, 7.6901, 7.6932, 7.6906, 7.7001, 7.6977, 7.6955, 7.6929, 7.6906, 7.6888, 7.6868, 7.684, 7.6818, 7.6796, 7.6773, 7.6752, 7.6727, 7.6706, 7.6683, 7.6659, 7.6637, 7.6672, 7.6705, 7.674, 7.6715, 7.6688, 7.6663, 7.6639, 7.6619, 7.6654, 7.6629, 7.6665, 7.664, 7.6616, 7.6602, 7.6577, 7.6619, 7.6599, 7.659, 7.6568, 7.6607, 7.6584, 7.6559, 7.6546, 7.6583, 7.6585, 7.6587, 7.657, 7.6493, 7.6479, 7.6453, 7.6434, 7.6422, 7.6404, 7.638, 7.6362, 7.6338, 7.6315, 7.6292, 7.631, 7.6287, 7.6281, 7.6331, 7.6354, 7.6336, 7.6263, 7.6237, 7.6212, 7.6251, 7.6232, 7.6213, 7.6189, 7.6119, 7.6149, 7.6183, 7.616, 7.6145, 7.6122, 7.6155, 7.6131, 7.6108, 7.6088, 7.6098, 7.608, 7.6057, 7.6091, 7.6071, 7.6105, 7.6088, 7.6073, 7.6056, 7.5996, 7.6045, 7.6089, 7.6068, 7.6053, 7.6107, 7.6096, 7.6148, 7.6126, 7.6114, 7.61, 7.6144, 7.613, 7.6112, 7.6053, 7.6032, 7.6017, 7.6061, 7.6067, 7.6119, 7.6101, 7.6077, 7.6054, 7.6241, 7.622, 7.6202, 7.6234, 7.621, 7.6197, 7.6175, 7.6161, 7.6192, 7.617, 7.6147, 7.6126, 7.6158, 7.6139, 7.6118, 7.6101, 7.6078, 7.608, 7.6067, 7.6045, 7.6029, 7.6061, 7.6044, 7.6034, 7.6019, 7.6017, 7.6001, 7.5985, 7.5962, 7.5943, 7.6036, 7.6099, 7.6081, 7.6108, 7.6158, 7.614, 7.6179, 7.6201, 7.6185, 7.6165, 7.6146, 7.6146, 7.6091, 7.61, 7.608, 7.6088, 7.6069, 7.6054, 7.6049, 7.6037, 7.6033, 7.6037, 7.6064, 7.6095, 7.6087, 7.6197, 7.6183, 7.6214, 7.6206, 7.6243, 7.6225, 7.6206, 7.6186, 7.6169, 7.6227, 7.6213, 7.62, 7.6187, 7.6196, 7.6234, 7.6218, 7.6196, 7.6181, 7.62, 7.6233, 7.622, 7.6197, 7.6181, 7.627, 7.6251, 7.6278, 7.6306, 7.629, 7.6272, 7.6258, 7.6237, 7.6268, 7.6251, 7.6278, 7.6257, 7.6197, 7.6177, 7.6215, 7.6243, 7.6224, 7.626, 7.6241, 7.6227, 7.6257, 7.6237, 7.6277, 7.6257, 7.6236, 7.6219, 7.6205, 7.6233, 7.6264, 7.6245, 7.6226, 7.6207, 7.6237, 7.6218, 7.6199, 7.6186, 7.6216, 7.6202, 7.6184, 7.6214, 7.6194, 7.6174, 7.6302, 7.6333, 7.6475, 7.6507, 7.6492, 7.6475, 7.6481, 7.6514, 7.6503, 7.6482, 7.6461, 7.6443, 7.6471, 7.6453, 7.6433, 7.6463, 7.6443, 7.655, 7.6533, 7.6516, 7.6499, 7.6538, 7.652, 7.6513, 7.6496, 7.6482, 7.651, 7.6603, 7.6584, 7.6662, 7.6693, 7.6677, 7.6656, 7.6685, 7.6669, 7.6649, 7.6633, 7.6664, 7.6647, 7.6686, 7.6712, 7.6737, 7.6718, 7.6698, 7.6677, 7.6798, 7.6854, 7.6834, 7.6823, 7.6808, 7.6796, 7.6781, 7.6764, 7.6715, 7.67, 7.664, 7.6629, 7.662, 7.6649, 7.6632, 7.6611, 7.6592, 7.6573, 7.6557, 7.6539, 7.6568, 7.6549, 7.6535, 7.6515, 7.6502, 7.6482, 7.6463, 7.6448, 7.6433, 7.646, 7.6441, 7.6428, 7.6408, 7.6435, 7.6417, 7.6398, 7.6424, 7.6405, 7.6432, 7.6418, 7.6407, 7.6398, 7.6397, 7.6383, 7.6365, 7.6349, 7.6335, 7.6359, 7.6339, 7.6342, 7.6323, 7.635, 7.6331, 7.6313, 7.6339, 7.6329, 7.6311, 7.6299, 7.6326, 7.6314, 7.6298, 7.6321, 7.6302, 7.6377, 7.6366, 7.6353, 7.6342, 7.6326, 7.6399, 7.6426, 7.6408, 7.6392, 7.6375, 7.6443, 7.6388, 7.6434, 7.642, 7.6445, 7.643, 7.6412, 7.6396, 7.6382, 7.6417, 7.6448, 7.6436, 7.6467, 7.6497, 7.648, 7.6465, 7.6453, 7.6444, 7.6432, 7.6424, 7.641, 7.6396, 7.6382, 7.6439, 7.6423, 7.6409, 7.6416, 7.6405, 7.6401, 7.6388, 7.6371, 7.6353, 7.6385, 7.638, 7.6363, 7.639, 7.6374, 7.6406, 7.6398, 7.642, 7.6442, 7.6426, 7.6419, 7.6402, 7.6383, 7.6367, 7.6351, 7.6332, 7.6316, 7.6299, 7.6293, 7.6282, 7.6306, 7.6289, 7.6314, 7.63, 7.6327, 7.6313, 7.6354, 7.6347, 7.633, 7.6316, 7.6298, 7.628, 7.6269, 7.6291, 7.6283, 7.6308, 7.6291, 7.6275, 7.626, 7.6207, 7.6238, 7.6264, 7.6247, 7.6269, 7.6251, 7.6237, 7.6219, 7.6201, 7.619, 7.6216, 7.6207, 7.6194, 7.6181, 7.6236, 7.6218, 7.6353, 7.6339, 7.6326, 7.6311, 7.6295, 7.6278, 7.6265, 7.6248, 7.6235, 7.6222, 7.622, 7.6246, 7.6266, 7.6292, 7.6319, 7.6304, 7.6291, 7.6312, 7.6295, 7.6283, 7.6269, 7.6294, 7.6318, 7.6301, 7.6291, 7.6282, 7.6264, 7.6249, 7.6231, 7.6255, 7.6278, 7.6261, 7.6243, 7.6264, 7.6246, 7.6194, 7.6223, 7.6206, 7.619, 7.6177, 7.6167, 7.6154, 7.6221, 7.6204, 7.6228, 7.625, 7.6234, 7.6217, 7.6202, 7.6225, 7.6213, 7.6197, 7.6192, 7.6178, 7.6161, 7.6153, 7.6136, 7.6119, 7.6141, 7.6126, 7.616, 7.6182, 7.6165, 7.6148, 7.6133, 7.6117, 7.6103, 7.6089, 7.6076, 7.606, 7.6049, 7.6071, 7.6133, 7.6256, 7.6239, 7.6222, 7.6206, 7.6192, 7.6213, 7.6198, 7.6181, 7.6164, 7.6152, 7.6199, 7.6182, 7.6167, 7.615, 7.6134, 7.6118, 7.6107, 7.6091, 7.608, 7.6066, 7.605, 7.6072, 7.6057, 7.6118, 7.6114, 7.61, 7.6052, 7.6037, 7.6024, 7.6015, 7.6001, 7.5988, 7.5975, 7.5962, 7.5912, 7.5934, 7.5957, 7.6026, 7.6051, 7.6036, 7.6021, 7.6025, 7.6012, 7.6, 7.5985, 7.5971, 7.5968, 7.5955, 7.5941, 7.5932, 7.5921, 7.5952, 7.6015, 7.608, 7.6065, 7.6054, 7.6076, 7.6068, 7.6064, 7.6051, 7.6073, 7.6062, 7.6054, 7.6046, 7.6033, 7.6022, 7.6006, 7.596, 7.5948, 7.5942, 7.5926, 7.591, 7.5929, 7.5949, 7.5934, 7.5954, 7.5975, 7.5964, 7.5953, 7.5938, 7.5923, 7.5917, 7.5961, 7.5986, 7.5971, 7.5961, 7.5946, 7.5934, 7.5944, 7.5967, 7.5954, 7.5938, 7.596, 7.5947, 7.5932, 7.5954, 7.5976, 7.5963, 7.5987, 7.5972, 7.5957, 7.5943, 7.593, 7.5951, 7.5973, 7.5996, 7.5982, 7.6005, 7.6026, 7.6013, 7.603, 7.6019, 7.6041, 7.6028, 7.5982, 7.597, 7.5955, 7.5941, 7.5926, 7.5914, 7.5907, 7.5897, 7.5919, 7.594, 7.5926, 7.5916, 7.5948, 7.5933, 7.592, 7.5906, 7.5928, 7.5915, 7.5938, 7.5925, 7.592, 7.5924, 7.591, 7.5949, 7.5936, 7.5932, 7.5921, 7.591, 7.5896, 7.5917, 7.5908, 7.5893, 7.5916, 7.5935, 7.5924, 7.591, 7.5898, 7.5885, 7.5881, 7.59, 7.5886, 7.5873, 7.5864, 7.5853, 7.5875, 7.5862, 7.5851, 7.6056, 7.6041, 7.6031, 7.6019, 7.6009, 7.5996, 7.6014, 7.5969, 7.5925, 7.5951, 7.5973, 7.5962, 7.595, 7.5938, 7.5923, 7.5911, 7.5933, 7.5936, 7.5973, 7.5962, 7.5953, 7.5943, 7.5966, 7.5954, 7.5973, 7.5967, 7.5952, 7.5971, 7.6067, 7.6062, 7.6084, 7.6073, 7.6058, 7.6046, 7.6032, 7.6021, 7.6007, 7.6027, 7.6012, 7.5968, 7.5954, 7.5939, 7.5969, 7.5955, 7.5944, 7.593, 7.5918, 7.5936, 7.5923, 7.5941, 7.5962, 7.595, 7.5941, 7.5926, 7.5912, 7.5898, 7.5885, 7.5873, 7.5896, 7.592, 7.591, 7.5895, 7.5883, 7.5872, 7.5881, 7.5868, 7.5826, 7.5847, 7.5871, 7.586, 7.5846, 7.5962, 7.5948, 7.5935, 7.5925, 7.5944, 7.5987, 7.5973, 7.596, 7.595, 7.5939, 7.5981, 7.597, 7.5956, 7.5976, 7.5962, 7.595, 7.5969, 7.6021, 7.6008, 7.5995, 7.5984, 7.6003, 7.6023, 7.6015, 7.6001, 7.5988, 7.5975, 7.5962, 7.5981, 7.6, 7.5987, 7.5979, 7.5968, 7.5956, 7.5974, 7.5961, 7.5951, 7.5939, 7.5925, 7.5945, 7.5934, 7.5921, 7.5911, 7.5898, 7.5885, 7.5879, 7.5866, 7.5853, 7.5843, 7.5865, 7.5853, 7.5875, 7.5867, 7.5856, 7.5843, 7.5835, 7.591, 7.59, 7.5922, 7.5912, 7.5905, 7.5895, 7.5882, 7.5872, 7.5865, 7.5854, 7.5841, 7.5829, 7.582, 7.5808, 7.5801, 7.5822, 7.5812, 7.5798, 7.5792, 7.578, 7.5768, 7.5756, 7.5748, 7.574, 7.5734, 7.5722, 7.571, 7.573, 7.5718, 7.5734, 7.5722, 7.574, 7.5759, 7.5757, 7.5746, 7.5765, 7.5754, 7.5773, 7.5791, 7.578, 7.5829, 7.5848, 7.5836, 7.5822, 7.5811, 7.5801, 7.5819, 7.5807, 7.5827, 7.5848, 7.5835, 7.5822, 7.5808, 7.5797, 7.5785, 7.5773, 7.576, 7.5747, 7.574, 7.5759, 7.5745, 7.5733, 7.5721, 7.5739, 7.5757, 7.5754, 7.5742, 7.576, 7.5747, 7.5735, 7.5722, 7.571, 7.573, 7.5749, 7.5736, 7.5724, 7.5712, 7.57, 7.5689, 7.5681, 7.5668, 7.5656, 7.5663, 7.5625, 7.5612, 7.56, 7.5587, 7.5636, 7.5624, 7.5615, 7.5603, 7.5595, 7.5589, 7.5579, 7.5567, 7.5556, 7.5545, 7.5537, 7.5564, 7.5582, 7.5602, 7.5618, 7.5618, 7.5637, 7.578, 7.577, 7.5759, 7.5777, 7.5765, 7.5783, 7.5743, 7.5791, 7.5779, 7.5797, 7.5784, 7.5777, 7.5794, 7.5815, 7.5832, 7.5822, 7.5809, 7.5796, 7.5815, 7.5805, 7.5793, 7.5786, 7.5776, 7.5794, 7.5785, 7.5776, 7.5764, 7.5757, 7.5744, 7.5733, 7.572, 7.5733, 7.5695, 7.5683, 7.5672, 7.5689, 7.5718, 7.571, 7.5676, 7.57, 7.569, 7.5678, 7.5671, 7.5662, 7.5656, 7.5648, 7.5641, 7.5628, 7.5616, 7.5604, 7.5595, 7.5589, 7.5578, 7.557, 7.5564, 7.5553, 7.5541, 7.5535, 7.5527, 7.5515, 7.5504, 7.5588, 7.5577, 7.5593, 7.5582, 7.5581, 7.5569, 7.5557, 7.5549, 7.554, 7.5528, 7.5519, 7.551, 7.5502, 7.5495, 7.5484, 7.5475, 7.5469, 7.5458, 7.5446, 7.5434, 7.5452, 7.5441, 7.5431, 7.5448, 7.5469, 7.5468, 7.546, 7.5425, 7.5414, 7.541, 7.5399, 7.5417, 7.5406, 7.5427, 7.5419, 7.5436, 7.5424, 7.5442, 7.5439, 7.5428, 7.5421, 7.5409, 7.5402, 7.539, 7.5442, 7.5434, 7.5422, 7.5414, 7.543, 7.5447, 7.5463, 7.5452, 7.5444, 7.5432, 7.542, 7.5409, 7.5538, 7.5555, 7.5548, 7.5537, 7.5528, 7.5494, 7.5483, 7.5543, 7.559, 7.5617, 7.5611, 7.5604, 7.5574, 7.5567, 7.5557, 7.555, 7.5542, 7.5544, 7.5538, 7.5556, 7.5547, 7.5545, 7.5541, 7.5532, 7.5549, 7.5541, 7.559, 7.5631, 7.5625, 7.5617, 7.5607, 7.5599, 7.5589, 7.5579, 7.5569, 7.5559, 7.5577, 7.5575, 7.5564, 7.5661, 7.565, 7.5667, 7.5656, 7.5673, 7.5664, 7.5652, 7.5641, 7.5629, 7.562, 7.561, 7.5625, 7.5616, 7.5604, 7.5597, 7.5586, 7.5604, 7.562, 7.5637, 7.5629, 7.5625, 7.5644, 7.5636, 7.563, 7.5647, 7.5635, 7.5651, 7.564, 7.5628, 7.5617, 7.5609, 7.5598, 7.5587, 7.5603, 7.5599, 7.5617, 7.5633, 7.565, 7.5639, 7.5633, 7.5626, 7.5617, 7.5611, 7.5601, 7.5593, 7.5587, 7.5584, 7.5602, 7.5593, 7.5611, 7.563, 7.5646, 7.5637, 7.5628, 7.5621, 7.5613, 7.5633, 7.5622, 7.5614, 7.5605, 7.5597, 7.5587, 7.558, 7.5597, 7.5588, 7.5631, 7.5655, 7.5647, 7.5639, 7.5654, 7.5669, 7.5661, 7.5679, 7.5671, 7.5659, 7.565, 7.564, 7.5631, 7.5649, 7.5641, 7.5636, 7.5627, 7.5657, 7.5646, 7.5635, 7.565, 7.5639, 7.563, 7.562, 7.5609, 7.5607, 7.5598, 7.5587, 7.5602, 7.5594, 7.5582, 7.5572, 7.5563, 7.5551, 7.5546, 7.5538, 7.5527, 7.5516, 7.5506, 7.552, 7.5511, 7.5503, 7.5495, 7.5509, 7.5498, 7.5495, 7.5484, 7.5473, 7.5463, 7.5454, 7.5472, 7.5488, 7.5479, 7.5471, 7.547, 7.5461, 7.5484, 7.5474, 7.5518, 7.5508, 7.5526, 7.5516, 7.5534, 7.5556, 7.5545, 7.5534, 7.5525, 7.5514, 7.5506, 7.55, 7.549, 7.548, 7.5504, 7.5518, 7.5509, 7.5498, 7.5488, 7.5455, 7.5445, 7.5435, 7.5428, 7.5423, 7.5442, 7.546, 7.5427, 7.5441, 7.5457, 7.5449, 7.5439, 7.5429, 7.5419, 7.5419, 7.5435, 7.5424, 7.542, 7.541, 7.54, 7.539, 7.538, 7.5369, 7.5359, 7.5349, 7.5339, 7.536, 7.5351, 7.5343, 7.5408, 7.5399, 7.5389, 7.5378, 7.5367, 7.5357, 7.5349, 7.5341, 7.533, 7.5319, 7.531, 7.5333, 7.5353, 7.5344, 7.5358, 7.5349, 7.5367, 7.5382, 7.5371, 7.5386, 7.5376, 7.5392, 7.5383, 7.5374, 7.5367, 7.5357, 7.5351, 7.5341, 7.533, 7.5344, 7.5336, 7.5331, 7.5321, 7.5316, 7.5316, 7.5306, 7.5296, 7.5312, 7.536, 7.5349, 7.5365, 7.5357, 7.5347, 7.5361, 7.5351, 7.537, 7.536, 7.5355, 7.5345, 7.5335, 7.5303, 7.5318, 7.5309, 7.53, 7.5291, 7.5307, 7.5296, 7.5286, 7.5278, 7.5268, 7.5284, 7.5276, 7.5268, 7.5261, 7.5254, 7.5245, 7.5236, 7.5252, 7.5243, 7.5238, 7.5233, 7.5226, 7.5217, 7.5211, 7.5202, 7.5196, 7.5187, 7.5177, 7.5193, 7.5185, 7.5176, 7.5167, 7.5158, 7.5148, 7.514, 7.5153, 7.5143, 7.5133, 7.5147, 7.5162, 7.5153, 7.5168, 7.5161, 7.5151, 7.5166, 7.5156, 7.5171, 7.5166, 7.5156, 7.5146, 7.5137, 7.5153, 7.5147, 7.5137, 7.5152, 7.5121, 7.5114, 7.5108, 7.5123, 7.5116, 7.5111, 7.5101, 7.5091, 7.5281, 7.5273, 7.5264, 7.5255, 7.5246, 7.5236, 7.5253, 7.5268, 7.5259, 7.5273, 7.5264, 7.528, 7.527, 7.526, 7.5275, 7.5266, 7.5258, 7.5249, 7.5264, 7.5267, 7.5257, 7.525, 7.5243, 7.5258, 7.5248, 7.5263, 7.5266, 7.5256, 7.5246, 7.5261, 7.5251, 7.5247, 7.5216, 7.5206, 7.5197, 7.5189, 7.5179, 7.5171, 7.5184, 7.5175, 7.5166, 7.5158, 7.5173, 7.5165, 7.5178, 7.5193, 7.5184, 7.5177, 7.5192, 7.5183, 7.5174, 7.5191, 7.5207, 7.5199, 7.5192, 7.5183, 7.5174, 7.5166, 7.5159, 7.5151, 7.5146, 7.5136, 7.5128, 7.5119, 7.509, 7.5082, 7.5075, 7.5097, 7.5118, 7.5111, 7.5085, 7.5078, 7.5069, 7.5059, 7.5075, 7.5138, 7.5129, 7.5119, 7.5109, 7.5103, 7.5098, 7.5112, 7.5105, 7.5096, 7.5088, 7.5079, 7.5123, 7.5116, 7.5111, 7.5128, 7.5119, 7.511, 7.5125, 7.5115, 7.5108, 7.5099, 7.5069, 7.5067, 7.506, 7.5051, 7.5042, 7.5034, 7.5029, 7.5022, 7.5037, 7.503, 7.5021, 7.5012, 7.5003, 7.5018, 7.501, 7.5001, 7.4992, 7.5006, 7.5024, 7.5015, 7.5009, 7.5001, 7.4991, 7.4985, 7.4978, 7.4994, 7.4989, 7.5004, 7.4996, 7.4991, 7.4986, 7.4978, 7.4972, 7.4963, 7.4954, 7.4945, 7.4959, 7.495, 7.4943, 7.4953, 7.4947, 7.4961, 7.4952, 7.4967, 7.4957, 7.495, 7.4943, 7.4959, 7.4972, 7.4947, 7.4938, 7.4931, 7.4924, 7.4938, 7.4953, 7.4944, 7.4936, 7.4929, 7.4941, 7.4933, 7.4986, 7.4978, 7.4991, 7.4982, 7.4994, 7.4985, 7.4998, 7.499, 7.5003, 7.5031, 7.5005, 7.502, 7.5012, 7.5004, 7.5006, 7.4998, 7.5038, 7.5051, 7.5048, 7.5043, 7.5038, 7.5052, 7.5047, 7.5039, 7.503, 7.5021, 7.5016, 7.5008, 7.5001, 7.5015, 7.4986, 7.5001, 7.4992, 7.5007, 7.5003, 7.4994, 7.4985, 7.498, 7.4972, 7.4964, 7.4943, 7.4937, 7.4931, 7.4924, 7.4919, 7.4958, 7.495, 7.4964, 7.4956, 7.4947, 7.4942, 7.4938, 7.493, 7.4923, 7.4914, 7.4911, 7.4936, 7.4955, 7.4949, 7.4942, 7.4937, 7.4928, 7.4919, 7.491, 7.4934, 7.4948, 7.492, 7.4934, 7.4927, 7.4942, 7.4937, 7.4931, 7.4923, 7.4938, 7.493, 7.4923, 7.4916, 7.4911, 7.4907, 7.4919, 7.4913, 7.489, 7.4903, 7.4904, 7.4896, 7.4911, 7.491, 7.4924, 7.496, 7.4954, 7.4945, 7.4936, 7.4928, 7.4922, 7.4935, 7.4948, 7.4976, 7.4968, 7.4959, 7.4951, 7.4942, 7.4957, 7.4949, 7.4944, 7.4936, 7.4927, 7.4941, 7.4933, 7.4926, 7.4919, 7.4911, 7.4904, 7.4896, 7.4888, 7.4883, 7.4876, 7.489, 7.4885, 7.488, 7.4873, 7.4886, 7.4881, 7.4874, 7.4869, 7.4876, 7.4869, 7.4863, 7.4855, 7.4848, 7.4841, 7.4834, 7.4847, 7.4838, 7.483, 7.4821, 7.4812, 7.4858, 7.483, 7.4821, 7.4833, 7.4845, 7.4837, 7.4838, 7.485, 7.4841, 7.4832, 7.4831, 7.4844, 7.4857, 7.4853, 7.4826, 7.4818, 7.481, 7.4802, 7.4794, 7.4806, 7.4819, 7.4813, 7.4825, 7.4818, 7.4809, 7.48, 7.4812, 7.4805, 7.4818, 7.4813, 7.4828, 7.4823, 7.4836, 7.4829, 7.4825, 7.4817, 7.4791, 7.4794, 7.4807, 7.4799, 7.4792, 7.4785, 7.4777, 7.4783, 7.4791, 7.4784, 7.4777, 7.477, 7.4764, 7.4756, 7.4748, 7.4723, 7.4718, 7.4731, 7.4743, 7.4737, 7.4751, 7.4746, 7.4739, 7.4731, 7.4723, 7.4756, 7.4768, 7.4781, 7.4794, 7.4767, 7.4777, 7.4773, 7.4765, 7.4758, 7.477, 7.4783, 7.4776, 7.4752, 7.4746, 7.4738, 7.475, 7.4762, 7.4754, 7.4746, 7.4725, 7.4728, 7.4741, 7.4753, 7.4746, 7.4739, 7.4751, 7.4749, 7.4742, 7.4736, 7.4727, 7.4719, 7.4711, 7.4706, 7.4697, 7.4689, 7.468, 7.4672, 7.4666, 7.466, 7.4684, 7.4676, 7.471, 7.4723, 7.4827, 7.4819, 7.4812, 7.4828, 7.4823, 7.4815, 7.481, 7.4803, 7.4816, 7.4829, 7.485, 7.4843, 7.4837, 7.4812, 7.4804, 7.4816, 7.4813, 7.4806, 7.4804, 7.4819, 7.4811, 7.4884, 7.4878, 7.4934, 7.4928, 7.4923, 7.4921, 7.4913, 7.4907, 7.49, 7.4892, 7.4887, 7.4867, 7.486, 7.4852, 7.4851, 7.4843, 7.4835, 7.485, 7.4842, 7.4834, 7.4827, 7.4822, 7.4816, 7.4808, 7.4806, 7.4798, 7.4791, 7.4785, 7.4777, 7.4789, 7.4783, 7.4794, 7.4806, 7.4798, 7.4811, 7.4803, 7.4816, 7.4812, 7.4806, 7.48, 7.4792, 7.4786, 7.4799, 7.4791, 7.4787, 7.4799, 7.4811, 7.4824, 7.4817, 7.4809, 7.4801, 7.4793, 7.4794, 7.4789, 7.4781, 7.4793, 7.4786, 7.478, 7.4774, 7.4788, 7.4782, 7.4775, 7.4777, 7.4769, 7.4763, 7.4755, 7.4788, 7.4799, 7.4791, 7.4803, 7.4797, 7.4809, 7.4811, 7.4812, 7.4808, 7.4803, 7.4796, 7.4789, 7.4783, 7.4776, 7.4793, 7.4786, 7.4779, 7.4771, 7.4764, 7.4756, 7.4782, 7.4775, 7.4787, 7.4779, 7.4801, 7.4794, 7.4806, 7.4799, 7.4797, 7.4789, 7.4781, 7.4773, 7.4793, 7.4785, 7.4777, 7.4769, 7.4762, 7.4759, 7.4756, 7.4768, 7.4761, 7.4753, 7.4746, 7.4742, 7.4735, 7.4728, 7.4721, 7.4714, 7.4725, 7.472, 7.4714, 7.4728, 7.4721, 7.4734, 7.4759, 7.4751, 7.4743, 7.4735, 7.4729, 7.4721, 7.4717, 7.4731, 7.4731, 7.4708, 7.4723, 7.4717, 7.4709, 7.4703, 7.4715, 7.4728, 7.4724, 7.474, 7.4738, 7.475, 7.4761, 7.4757, 7.4752, 7.4764, 7.4833, 7.481, 7.4802, 7.4794, 7.4787, 7.4779, 7.478, 7.4774, 7.4785, 7.4779, 7.479, 7.4783, 7.4777, 7.4771, 7.4763, 7.4762, 7.4755, 7.4748, 7.4741, 7.4737, 7.4748, 7.4741, 7.4733, 7.4725, 7.4718, 7.471, 7.4703, 7.4698, 7.469, 7.4702, 7.4696, 7.471, 7.4705, 7.4699, 7.4695, 7.4706, 7.4701, 7.4694, 7.4686, 7.4682, 7.4695, 7.4707, 7.4705, 7.4697, 7.4709, 7.4705, 7.4699, 7.4692, 7.4685, 7.4679, 7.4672, 7.4665, 7.4658, 7.4652, 7.4645, 7.4657, 7.4669, 7.4681, 7.4675, 7.4687, 7.473, 7.4723, 7.4718, 7.4711, 7.473, 7.4725, 7.4717, 7.4711, 7.4729, 7.4722, 7.4733, 7.4725, 7.4717, 7.473, 7.4723, 7.4717, 7.4711, 7.4704, 7.4697, 7.473, 7.4742, 7.4737, 7.4729, 7.4741, 7.4753, 7.4745, 7.4741, 7.4756, 7.4751, 7.4745, 7.474, 7.4734, 7.4728, 7.474, 7.4833, 7.4845, 7.4838, 7.4869, 7.4862, 7.4855, 7.4848, 7.4871, 7.4892, 7.4892, 7.4892, 7.4885, 7.4879, 7.4874, 7.4868, 7.4861, 7.4856, 7.4848, 7.4842, 7.4835, 7.4828, 7.4822, 7.4815, 7.4809, 7.4804, 7.4817, 7.481, 7.4804, 7.4799, 7.4792, 7.4803, 7.4798, 7.4791, 7.4803, 7.4798, 7.479, 7.4789, 7.4861, 7.4854, 7.4848, 7.4841, 7.4841, 7.4853, 7.4847, 7.4839, 7.4832, 7.4827, 7.4823, 7.4818, 7.4811, 7.4805, 7.4798, 7.4903, 7.4896, 7.4878, 7.4913, 7.4906, 7.4899, 7.4916, 7.4944, 7.4966, 7.4958, 7.4968, 7.497, 7.4964, 7.4978, 7.4991, 7.4986, 7.4981, 7.4977, 7.4988, 7.4984, 7.4977, 7.4969, 7.4965, 7.5032, 7.5025, 7.502, 7.5015, 7.5027, 7.506, 7.5052, 7.5062, 7.5054, 7.5049, 7.5042, 7.5057, 7.5052, 7.5044, 7.5042, 7.5055, 7.5048, 7.5043, 7.5037, 7.5032, 7.5014, 7.5009, 7.5004, 7.5001, 7.5, 7.4996, 7.4989, 7.5, 7.5005, 7.4999, 7.5022, 7.5, 7.4995, 7.4988, 7.4981, 7.5067, 7.508, 7.5094, 7.5088, 7.5081, 7.5074, 7.5088, 7.5126, 7.5119, 7.5116, 7.5111, 7.5104, 7.5098, 7.5109, 7.5103, 7.5097, 7.5092, 7.5088, 7.5101, 7.5112, 7.5108, 7.5085, 7.508, 7.5077, 7.507, 7.5064, 7.5061, 7.5054, 7.5047, 7.504, 7.5033, 7.5044, 7.5089, 7.5082, 7.5075, 7.5085, 7.508, 7.5073, 7.5071, 7.5064, 7.5075, 7.5087, 7.508, 7.5073, 7.5066, 7.5059, 7.5053, 7.5064, 7.5094, 7.5087, 7.5098, 7.5091, 7.5085, 7.5096, 7.5093, 7.5103, 7.5097, 7.5092, 7.509, 7.5103, 7.5085, 7.5096, 7.5089, 7.5085, 7.5081, 7.5062, 7.5057, 7.5091, 7.5084, 7.5078, 7.5071, 7.5083, 7.5077, 7.5075, 7.5087, 7.5101, 7.5112, 7.5105, 7.5116, 7.5126, 7.5124, 7.5136, 7.5129, 7.5122, 7.5116, 7.511, 7.5106, 7.5117, 7.5095, 7.509, 7.5084, 7.5095, 7.5088, 7.5081, 7.5076, 7.5087, 7.508, 7.509, 7.5102, 7.5096, 7.5108, 7.512, 7.5131, 7.5125, 7.512, 7.5113, 7.5106, 7.5099, 7.5109, 7.5102, 7.5115, 7.511, 7.5103, 7.5096, 7.509, 7.5084, 7.5093, 7.5086, 7.5081, 7.5077, 7.5087, 7.508, 7.5078, 7.5076, 7.5069, 7.5062, 7.5055, 7.5065, 7.5075, 7.5069, 7.5063, 7.5057, 7.5053, 7.5049, 7.506, 7.5055, 7.5034, 7.5029, 7.5024, 7.5032, 7.5043, 7.5037, 7.5047, 7.5041, 7.5051, 7.5044, 7.5054, 7.5047, 7.5043, 7.5037, 7.5033, 7.5029, 7.5039, 7.5032, 7.5042, 7.5038, 7.5031, 7.5044, 7.5046, 7.5043, 7.5054, 7.5048, 7.5043, 7.5044, 7.5039, 7.5052, 7.5049, 7.5044, 7.5038, 7.505, 7.5078, 7.5073, 7.5084, 7.5078, 7.5088, 7.5099, 7.5116, 7.5109, 7.5102, 7.5112, 7.5107, 7.5117, 7.5146, 7.514, 7.5137, 7.5139, 7.5175, 7.5172, 7.515, 7.5143, 7.5136, 7.5147, 7.514, 7.5147, 7.5141, 7.5134, 7.5127, 7.5121, 7.5136, 7.513, 7.5141, 7.5134, 7.5127, 7.5137, 7.513, 7.5154, 7.5165, 7.516, 7.5155, 7.5149, 7.5143, 7.5138, 7.5131, 7.5125, 7.5119, 7.5112, 7.5122, 7.5115, 7.511, 7.5122, 7.5116, 7.5127, 7.5123, 7.5118, 7.5121, 7.5114, 7.5126, 7.5136, 7.5147, 7.5141, 7.514, 7.515, 7.516, 7.518, 7.5179, 7.518, 7.5175, 7.5168, 7.5162, 7.5156, 7.515, 7.5144, 7.5137, 7.513, 7.514, 7.515, 7.5143, 7.5136, 7.5131, 7.5147, 7.5142, 7.5152, 7.5176, 7.517, 7.5164, 7.5159, 7.5153, 7.5146, 7.5155, 7.5165, 7.5176, 7.5169, 7.5163, 7.5158, 7.5153, 7.5163, 7.5157, 7.5152, 7.5147, 7.5157, 7.515, 7.5144, 7.5155, 7.5149, 7.5144, 7.514, 7.5134, 7.5145, 7.5155, 7.5154, 7.5165, 7.5163, 7.5157, 7.5153, 7.5147, 7.5156, 7.5165, 7.5159, 7.5152, 7.5148, 7.5159, 7.517, 7.5163, 7.5156, 7.5165, 7.516, 7.5171, 7.518, 7.5176, 7.517, 7.5164, 7.5158, 7.5167, 7.5161, 7.5172, 7.5166, 7.5145, 7.514, 7.5136, 7.513, 7.5124, 7.512, 7.5114, 7.5125, 7.5119, 7.5114, 7.5108, 7.5103, 7.5112, 7.5106, 7.5103, 7.5097, 7.5091, 7.5086, 7.5097, 7.509, 7.5084, 7.5082, 7.5094, 7.5089, 7.51, 7.5094, 7.5088, 7.5083, 7.508, 7.5073, 7.5067, 7.5062, 7.5055, 7.508, 7.5074, 7.5099, 7.5092, 7.5086, 7.5096, 7.5095, 7.5089, 7.5084, 7.5077, 7.507, 7.5067, 7.5062, 7.5058, 7.5052, 7.5063, 7.5057, 7.5051, 7.506, 7.507, 7.5068, 7.5072, 7.5069, 7.5066, 7.5062, 7.5056, 7.5049, 7.5043, 7.5054, 7.5047, 7.5041, 7.5035, 7.5029, 7.5023, 7.5017, 7.5027, 7.5024, 7.5034, 7.5028, 7.5024, 7.502, 7.5015, 7.5013, 7.5007, 7.5002, 7.4997, 7.501, 7.5019, 7.5015, 7.501, 7.5087, 7.5098, 7.5093, 7.5088, 7.5085, 7.5081, 7.5077, 7.5088, 7.5082, 7.5093, 7.5098, 7.5093, 7.5087, 7.5081, 7.5076, 7.507, 7.508, 7.5074, 7.5068, 7.5078, 7.5072, 7.5078, 7.5074, 7.5068, 7.5083, 7.5077, 7.5071, 7.5067, 7.5078, 7.5089, 7.5084, 7.5078, 7.5074, 7.5084, 7.5064, 7.5058, 7.5052, 7.5047, 7.5027, 7.5038, 7.5033, 7.5029, 7.5024, 7.5019, 7.5017, 7.5028, 7.5022, 7.5017, 7.5011, 7.5005, 7.4999, 7.5009, 7.5003, 7.4997, 7.4992, 7.4986, 7.4996, 7.5005, 7.5, 7.5009, 7.5019, 7.5013, 7.5022, 7.5016, 7.5063, 7.5044, 7.5025, 7.5019, 7.5029, 7.5024, 7.502, 7.5014, 7.5008, 7.5002, 7.5012, 7.5006, 7.5002, 7.5044, 7.5041, 7.5051, 7.5047, 7.5041, 7.5052, 7.5046, 7.504, 7.5036, 7.503, 7.504, 7.5051, 7.5045, 7.5026, 7.5021, 7.5014, 7.5008, 7.5002, 7.4998, 7.4994, 7.4988, 7.4982, 7.4976, 7.4974, 7.4969, 7.4964, 7.4958, 7.4952, 7.4946, 7.494, 7.4934, 7.4932, 7.4926, 7.4921, 7.4915, 7.4909, 7.4903, 7.4897, 7.4892, 7.4886, 7.488, 7.4874, 7.4868, 7.4862, 7.4872, 7.4881, 7.4875, 7.4885, 7.491, 7.492, 7.4914, 7.4909, 7.4919, 7.4914, 7.4923, 7.4917, 7.4913, 7.4907, 7.4918, 7.4913, 7.4907, 7.4903, 7.4897, 7.4892, 7.4901, 7.4897, 7.4893, 7.4887, 7.4882, 7.4878, 7.4872, 7.4867, 7.4862, 7.4856, 7.485, 7.4846, 7.4841, 7.4838, 7.4832, 7.4833, 7.4859, 7.487, 7.4864, 7.4863, 7.4872, 7.4868, 7.4862, 7.486, 7.4857, 7.4852, 7.4846, 7.484, 7.4834, 7.483, 7.4824, 7.4835, 7.483, 7.4812, 7.4808, 7.4804, 7.48, 7.4811, 7.4845, 7.4845, 7.4841, 7.4836, 7.4832, 7.4826, 7.482, 7.483, 7.4824, 7.482, 7.4815, 7.481, 7.4806, 7.4802, 7.4798, 7.4793, 7.4805, 7.4817, 7.4865, 7.4874, 7.4869, 7.4864, 7.4858, 7.4852, 7.4862, 7.4871, 7.4883, 7.4877, 7.489, 7.4885, 7.4879, 7.488, 7.4874, 7.4869, 7.4864, 7.486, 7.4854, 7.4868, 7.4877, 7.4886, 7.4896, 7.489, 7.4899, 7.4907, 7.4901, 7.4922, 7.4916, 7.4911, 7.4908, 7.4918, 7.4913, 7.4924, 7.4918, 7.4927, 7.4921, 7.4916, 7.491, 7.4907, 7.4901, 7.4909, 7.4905, 7.49, 7.4894, 7.4888, 7.4884, 7.488, 7.4862, 7.4871, 7.488, 7.4888, 7.4883, 7.4893, 7.4887, 7.4882, 7.4897, 7.4891, 7.4886, 7.488, 7.489, 7.4884, 7.4878, 7.4948, 7.4945, 7.494, 7.495, 7.4944, 7.4938, 7.4948, 7.4957, 7.4953, 7.4947, 7.4942, 7.4937, 7.4962, 7.4988, 7.4982, 7.4978, 7.4978, 7.4974, 7.4968, 7.4963, 7.4957, 7.4954, 7.4948, 7.4944, 7.4939, 7.4935, 7.4944, 7.4939, 7.4935, 7.493, 7.4939, 7.4948, 7.4956, 7.4965, 7.4947, 7.4943, 7.494, 7.4922, 7.4931, 7.4928, 7.4922, 7.4918, 7.4912, 7.4894, 7.4889, 7.4902, 7.4902, 7.4911, 7.4905, 7.4914, 7.4908, 7.4917, 7.4911, 7.4907, 7.4901, 7.4895, 7.489, 7.4899, 7.4908, 7.4902, 7.4909, 7.4921, 7.4929, 7.4924, 7.4905, 7.49, 7.4908, 7.4904, 7.49, 7.4896, 7.4907, 7.4915, 7.4911, 7.4905, 7.4901, 7.4896, 7.4891, 7.4885, 7.4881, 7.4876, 7.4885, 7.488, 7.4901, 7.4897, 7.4892, 7.4888, 7.4884, 7.4893, 7.4888, 7.4896, 7.4891, 7.4889, 7.4884, 7.488, 7.4878, 7.4872, 7.4882, 7.4879, 7.4884, 7.4869, 7.4865, 7.4861, 7.4856, 7.4851, 7.4847, 7.4856, 7.485, 7.4844, 7.4839, 7.4835, 7.4829, 7.4825, 7.482, 7.4814, 7.4809, 7.4805, 7.4801, 7.4802, 7.4797, 7.4792, 7.4788, 7.4782, 7.4777, 7.4783, 7.478, 7.4776, 7.4788, 7.4799, 7.4793, 7.4787, 7.4797, 7.4792, 7.4814, 7.4809, 7.4804, 7.4801, 7.4797, 7.4793, 7.4787, 7.4783, 7.4792, 7.48, 7.4796, 7.4805, 7.4801, 7.4796, 7.4791, 7.4787, 7.4796, 7.4804, 7.4827, 7.4822, 7.4817, 7.4815, 7.48, 7.4809, 7.4804, 7.48, 7.4797, 7.4805, 7.48, 7.4796, 7.4791, 7.4787, 7.4782, 7.4777, 7.4773, 7.4768, 7.4753, 7.4748, 7.4742, 7.4737, 7.4733, 7.4728, 7.4722, 7.4717, 7.4727, 7.4722, 7.4708, 7.4707, 7.4706, 7.4703, 7.4699, 7.4709, 7.4705, 7.4713, 7.4709, 7.4717, 7.4713, 7.4723, 7.4718, 7.4712, 7.4708, 7.4704, 7.4698, 7.4695, 7.4691, 7.4687, 7.4683, 7.4677, 7.4659, 7.4669, 7.4665, 7.466, 7.4669, 7.4666, 7.4675, 7.4671, 7.468, 7.4679, 7.4674, 7.469, 7.47, 7.4697, 7.4694, 7.4691, 7.4686, 7.4708, 7.4703, 7.4698, 7.4694, 7.4703, 7.4698, 7.4693, 7.4688, 7.4685, 7.4695, 7.4692, 7.4675, 7.4659, 7.4644, 7.4684, 7.4701, 7.4697, 7.4752, 7.4748, 7.4742, 7.4738, 7.4734, 7.4743, 7.4739, 7.4737, 7.4734, 7.4733, 7.4741, 7.4737, 7.4759, 7.4755, 7.4749, 7.4744, 7.4739, 7.4734, 7.4732, 7.474, 7.4735, 7.4717, 7.4711, 7.4693, 7.4689, 7.4684, 7.4694, 7.4704, 7.4712, 7.4707, 7.4704, 7.4698, 7.4693, 7.4688, 7.4696, 7.4707, 7.4716, 7.4725, 7.4736, 7.473, 7.4725, 7.4725, 7.472, 7.4715, 7.4711, 7.4707, 7.4703, 7.4699, 7.4694, 7.4689, 7.4683, 7.4691, 7.4699, 7.4681, 7.4677, 7.4672, 7.4667, 7.4664, 7.4659, 7.4669, 7.4664, 7.4672, 7.4654, 7.4649, 7.4643, 7.4625, 7.462, 7.4629, 7.4638, 7.4661, 7.4657, 7.4652, 7.4647, 7.4643, 7.4638, 7.4637, 7.4663, 7.4673, 7.4684, 7.4694, 7.469, 7.4686, 7.4695, 7.4691, 7.4673, 7.467, 7.4678, 7.4674, 7.4657, 7.4666, 7.4674, 7.4683, 7.4679, 7.4674, 7.4671, 7.4667, 7.4662, 7.4673, 7.4668, 7.4664, 7.466, 7.4658, 7.4653, 7.4648, 7.4646, 7.4656, 7.4653, 7.4662, 7.4645, 7.4629, 7.4624, 7.4619, 7.4617, 7.4612, 7.4621, 7.4629, 7.4625, 7.462, 7.4628, 7.4626, 7.4634, 7.4629, 7.4624, 7.4619, 7.4615, 7.4611, 7.4607, 7.4602, 7.4597, 7.4592, 7.4591, 7.4599, 7.4607, 7.4601, 7.4609, 7.4604, 7.4612, 7.4608, 7.4603, 7.4598, 7.46, 7.4596, 7.4591, 7.4599, 7.4608, 7.4603, 7.4598, 7.4606, 7.4602, 7.461, 7.4617, 7.4625, 7.4621, 7.4619, 7.4614, 7.4678, 7.4675, 7.467, 7.4666, 7.4661, 7.4669, 7.4677, 7.4673, 7.4669, 7.4664, 7.4662, 7.4657, 7.4652, 7.4648, 7.4645, 7.4641, 7.4636, 7.4633, 7.4641, 7.4636, 7.4631, 7.4639, 7.4634, 7.4631, 7.463, 7.4626, 7.4635, 7.4644, 7.4639, 7.4624, 7.462, 7.4616, 7.4611, 7.4606, 7.4602, 7.4599, 7.4582, 7.4578, 7.4573, 7.4569, 7.4564, 7.4573, 7.4582, 7.4577, 7.4573, 7.4582, 7.4577, 7.4572, 7.4568, 7.4576, 7.4573, 7.4568, 7.4563, 7.4559, 7.4572, 7.4606, 7.4602, 7.4623, 7.4639, 7.4637, 7.4646, 7.464, 7.4649, 7.4657, 7.4652, 7.4647, 7.4644, 7.464, 7.4624, 7.462, 7.4616, 7.4623, 7.463, 7.4626, 7.4636, 7.4631, 7.4628, 7.4624, 7.462, 7.4615, 7.4619, 7.4614, 7.461, 7.4605, 7.46, 7.4608, 7.4603, 7.4611, 7.4606, 7.4614, 7.461, 7.4605, 7.46, 7.4608, 7.4605, 7.4601, 7.4609, 7.4604, 7.46, 7.4596, 7.4591, 7.4598, 7.4594, 7.4589, 7.4598, 7.4593, 7.4589, 7.4585, 7.4593, 7.4589, 7.4584, 7.4579, 7.4575, 7.457, 7.4578, 7.4574, 7.4569, 7.4565, 7.456, 7.4556, 7.457, 7.4579, 7.4578, 7.4575, 7.4572, 7.457, 7.4566, 7.4561, 7.4556, 7.4552, 7.4547, 7.4543, 7.4543, 7.4576, 7.4572, 7.4595, 7.4605, 7.4601, 7.4597, 7.4592, 7.4578, 7.4586, 7.4582, 7.4578, 7.4587, 7.4591, 7.4603, 7.4624, 7.4619, 7.4614, 7.4611, 7.4595, 7.4591, 7.46, 7.4584, 7.4581, 7.4589, 7.4596, 7.4607, 7.4604, 7.4601, 7.4584, 7.4568, 7.4563, 7.4559, 7.4567, 7.4574, 7.4571, 7.4579, 7.4575, 7.4583, 7.458, 7.4576, 7.4571, 7.4566, 7.4575, 7.4574, 7.4584, 7.458, 7.459, 7.4587, 7.4597, 7.4593, 7.4588, 7.4595, 7.459, 7.4599, 7.4597, 7.4592, 7.4587, 7.4582, 7.4581, 7.4578, 7.4574, 7.4569, 7.4564, 7.4571, 7.4566, 7.4549, 7.4534, 7.453, 7.4526, 7.4523, 7.4518, 7.4526, 7.4521, 7.4517, 7.4512, 7.452, 7.4515, 7.4513, 7.4521, 7.4529, 7.4524, 7.4519, 7.4528, 7.4523, 7.4531, 7.4515, 7.451, 7.4517, 7.4513, 7.4509, 7.4504, 7.4503, 7.4499, 7.4494, 7.4489, 7.4497, 7.4506, 7.4501, 7.4496, 7.4491, 7.4487, 7.4482, 7.4489, 7.4486, 7.4482, 7.449, 7.4487, 7.4483, 7.4479, 7.4474, 7.4472, 7.4457, 7.4465, 7.4473, 7.4481, 7.4478, 7.4474, 7.447, 7.4467, 7.4474, 7.4482, 7.4489, 7.4474, 7.447, 7.4466, 7.4468, 7.4477, 7.4484, 7.4479, 7.4479, 7.4488, 7.4483, 7.4478, 7.4486, 7.4482, 7.4478, 7.4474, 7.4482, 7.4477, 7.4474, 7.4469, 7.4468, 7.4464, 7.445, 7.4447, 7.4444, 7.444, 7.4436, 7.4433, 7.4428, 7.4423, 7.4419, 7.4416, 7.4413, 7.4409, 7.4405, 7.44, 7.4395, 7.439, 7.4398, 7.4397, 7.4394, 7.4391, 7.4404, 7.4399, 7.4383, 7.438, 7.4379, 7.4374, 7.4358, 7.4355, 7.4351, 7.4347, 7.4342, 7.435, 7.4346, 7.4343, 7.4338, 7.4335, 7.4343, 7.4339, 7.4335, 7.4331, 7.4328, 7.4324, 7.4309, 7.4305, 7.4302, 7.4309, 7.4305, 7.4302, 7.4298, 7.4293, 7.4289, 7.4296, 7.4293, 7.4289, 7.4286, 7.4282, 7.4278, 7.4287, 7.4282, 7.4278, 7.4286, 7.4284, 7.4292, 7.4287, 7.4291, 7.4287, 7.4284, 7.4292, 7.4287, 7.4282, 7.4278, 7.4287, 7.4283, 7.4279, 7.4274, 7.428, 7.4277, 7.4273, 7.428, 7.4276, 7.4272, 7.4257, 7.4252, 7.4247, 7.4242, 7.4249, 7.4244, 7.4261, 7.4257, 7.4264, 7.4271, 7.4266, 7.4261, 7.4256, 7.4251, 7.4258, 7.4253, 7.4248, 7.4244, 7.4239, 7.4236, 7.4233, 7.4243, 7.424, 7.4236, 7.4231, 7.4242, 7.4239, 7.4238, 7.4289, 7.4286, 7.4296, 7.4294, 7.4291, 7.4287, 7.4296, 7.4293, 7.4289, 7.4286, 7.4284, 7.4292, 7.4292, 7.429, 7.4302, 7.4313, 7.4309, 7.4313, 7.4309, 7.4305, 7.43, 7.4321, 7.4329, 7.4337, 7.4333, 7.4329, 7.4325, 7.4333, 7.4333, 7.433, 7.4325, 7.4337, 7.4333, 7.4341, 7.4336, 7.4332, 7.4339, 7.4334, 7.4338, 7.4333, 7.4329, 7.4324, 7.4332, 7.4339, 7.4346, 7.4353, 7.4361, 7.4368, 7.4364, 7.4359, 7.4354, 7.4351, 7.4346, 7.4331, 7.4327, 7.4312, 7.4308, 7.4304, 7.43, 7.43, 7.43, 7.4308, 7.4317, 7.4313, 7.4309, 7.4304, 7.4311, 7.4319, 7.4319, 7.4315, 7.431, 7.4295, 7.4302, 7.4302, 7.4298, 7.4294, 7.4298, 7.4293, 7.434, 7.4349, 7.4361, 7.4369, 7.4376, 7.4371, 7.4366, 7.4361, 7.4357, 7.4362, 7.436, 7.4369, 7.4376, 7.4373, 7.4369, 7.4365, 7.4361, 7.4357, 7.4353, 7.4361, 7.4364, 7.4349, 7.4346, 7.4355, 7.4352, 7.436, 7.4355, 7.435, 7.4346, 7.4354, 7.4362, 7.4359, 7.4356, 7.4353, 7.4348, 7.4345, 7.434, 7.4336, 7.4344, 7.4341, 7.436, 7.4355, 7.4352, 7.4361, 7.4356, 7.4363, 7.4359, 7.4368, 7.4365, 7.4362, 7.4369, 7.4364, 7.436, 7.4356, 7.4351, 7.4346, 7.4341, 7.4348, 7.4343, 7.4351, 7.4347, 7.4342, 7.435, 7.4345, 7.4341, 7.4337, 7.4334, 7.4341, 7.4337, 7.4334, 7.433, 7.4338, 7.4345, 7.4343, 7.4339, 7.4335, 7.4331, 7.4327, 7.4323, 7.432, 7.4317, 7.4312, 7.4308, 7.4315, 7.4313, 7.4308, 7.4303, 7.43, 7.4296, 7.4293, 7.429, 7.4287, 7.4284, 7.428, 7.4275, 7.4271, 7.4257, 7.4281, 7.4277, 7.4274, 7.427, 7.4266, 7.4262, 7.4259, 7.4267, 7.4263, 7.4271, 7.4256, 7.4252, 7.4237, 7.4233, 7.4228, 7.4235, 7.4231, 7.423, 7.4227, 7.4236, 7.4245, 7.4241, 7.4237, 7.4234, 7.4269, 7.4265, 7.426, 7.4267, 7.4264, 7.4261, 7.4258, 7.4256, 7.4251, 7.4248, 7.4243, 7.4238, 7.4234, 7.423, 7.4227, 7.4223, 7.4231, 7.4227, 7.4234, 7.423, 7.4228, 7.4224, 7.4219, 7.4226, 7.4233, 7.4231, 7.4227, 7.4224, 7.4219, 7.4215, 7.4222, 7.4229, 7.425, 7.4247, 7.4244, 7.424, 7.4238, 7.4246, 7.4241, 7.4241, 7.4237, 7.4232, 7.4228, 7.4223, 7.4219, 7.4215, 7.4211, 7.4207, 7.4203, 7.421, 7.4215, 7.4211, 7.4218, 7.4226, 7.4234, 7.4242, 7.4237, 7.4232, 7.4228, 7.4225, 7.4221, 7.4218, 7.4215, 7.4212, 7.4197, 7.4182, 7.419, 7.4189, 7.4185, 7.4181, 7.4177, 7.4173, 7.4169, 7.4164, 7.416, 7.4156, 7.4152, 7.4159, 7.4167, 7.4163, 7.4159, 7.4154, 7.4143, 7.4128, 7.4114, 7.4121, 7.4119, 7.4126, 7.4123, 7.4119, 7.4119, 7.4115, 7.4101, 7.4101, 7.4087, 7.4083, 7.4079, 7.4077, 7.4073, 7.4068, 7.4075, 7.4082, 7.4078, 7.4073, 7.4069, 7.4076, 7.4071, 7.4067, 7.4063, 7.4059, 7.4055, 7.4062, 7.4059, 7.4055, 7.4051, 7.4049, 7.4046, 7.4042, 7.4037, 7.4044, 7.4041, 7.4037, 7.4035, 7.4036, 7.4043, 7.4038, 7.4034, 7.4031, 7.4027, 7.4023, 7.4019, 7.4026, 7.4052, 7.4048, 7.4045, 7.4041, 7.4038, 7.4035, 7.4032, 7.4028, 7.4035, 7.4031, 7.4032, 7.403, 7.4026, 7.4022, 7.4018, 7.4014, 7.401, 7.4018, 7.4014, 7.4009, 7.4005, 7.4001, 7.3998, 7.3995, 7.3991, 7.3986, 7.3983, 7.398, 7.3976, 7.3973, 7.3959, 7.3955, 7.3962, 7.396, 7.3967, 7.3974, 7.397, 7.3977, 7.3972, 7.3968, 7.3977, 7.3973, 7.3975, 7.3972, 7.3969, 7.3975, 7.3971, 7.3967, 7.3963, 7.3961, 7.3958, 7.3954, 7.395, 7.3937, 7.3936, 7.396, 7.3967, 7.3988, 7.3995, 7.4009, 7.4005, 7.4001, 7.3997, 7.3994, 7.3994, 7.3991, 7.3977, 7.3986, 7.3995, 7.3992, 7.399, 7.3988, 7.3985, 7.3981, 7.3978, 7.3976, 7.3984, 7.398, 7.3976, 7.3984, 7.3981, 7.3979, 7.3975, 7.3971, 7.3968, 7.397, 7.3965, 7.3972, 7.3968, 7.3964, 7.396, 7.3957, 7.3955, 7.3951, 7.3947, 7.3943, 7.394, 7.3961, 7.3958, 7.3955, 7.3953, 7.395, 7.3946, 7.3943, 7.394, 7.3936, 7.3943, 7.3953, 7.3949, 7.3957, 7.3953, 7.396, 7.3968, 7.3976, 7.3972, 7.3968, 7.3966, 7.3963, 7.3959, 7.3957, 7.3955, 7.3951, 7.3959, 7.3967, 7.3963, 7.3959, 7.3955, 7.3962, 7.3958, 7.3955, 7.3962, 7.3969, 7.3965, 7.3961, 7.3957, 7.3964, 7.3971, 7.3969, 7.3965, 7.3973, 7.3969, 7.3998, 7.4006, 7.4002, 7.4, 7.4006, 7.4013, 7.4011, 7.4008, 7.4004, 7.4, 7.4007, 7.4003, 7.3999, 7.3995, 7.4002, 7.4047, 7.4043, 7.404, 7.4036, 7.4043, 7.4039, 7.4046, 7.4044, 7.404, 7.4039, 7.4036, 7.4032, 7.4028, 7.4024, 7.4031, 7.4027, 7.4035, 7.4033, 7.4033, 7.404, 7.4036, 7.4058, 7.4054, 7.4053, 7.405, 7.4057, 7.4053, 7.4071, 7.4068, 7.4075, 7.4082, 7.408, 7.4076, 7.4072, 7.407, 7.4066, 7.4063, 7.407, 7.4068, 7.4069, 7.4065, 7.4061, 7.4057, 7.4053, 7.4051, 7.4048, 7.4056, 7.4052, 7.4049, 7.4049, 7.4045, 7.4041, 7.4049, 7.4045, 7.4041, 7.4038, 7.4034, 7.4031, 7.4028, 7.4034, 7.4031, 7.4028, 7.4035, 7.4032, 7.4028, 7.4034, 7.403, 7.4027, 7.4024, 7.402, 7.4017, 7.4013, 7.402, 7.4027, 7.4023, 7.403, 7.4027, 7.4025, 7.4021, 7.4017, 7.4014, 7.401, 7.4006, 7.4003, 7.3999, 7.3997, 7.4004, 7.4002, 7.3998, 7.3994, 7.3991, 7.3997, 7.4004, 7.4, 7.4008, 7.4005, 7.4001, 7.4007, 7.3994, 7.4001, 7.3997, 7.3993, 7.3989, 7.3997, 7.3994, 7.3991, 7.3987, 7.3984, 7.398, 7.3986, 7.3983, 7.4016, 7.4012, 7.4009, 7.4006, 7.4002, 7.3998, 7.4005, 7.4017, 7.4014, 7.401, 7.4018, 7.4014, 7.402, 7.4017, 7.4014, 7.4011, 7.401, 7.4016, 7.4014, 7.4021, 7.4028, 7.4036, 7.4043, 7.4039, 7.4035, 7.4031, 7.4038, 7.4035, 7.4031, 7.403, 7.4026, 7.4032, 7.4028, 7.4025, 7.4022, 7.4018, 7.4014, 7.401, 7.4006, 7.4002, 7.3999, 7.3996, 7.3992, 7.399, 7.3998, 7.3994, 7.3991, 7.3994, 7.399, 7.3987, 7.3974, 7.397, 7.3968, 7.3976, 7.3978, 7.3985, 7.3981, 7.3977, 7.3976, 7.3974, 7.3981, 7.3967, 7.3964, 7.3977, 7.3973, 7.397, 7.3966, 7.3973, 7.3981, 7.3977, 7.3973, 7.3985, 7.3981, 7.4, 7.3996, 7.3992, 7.3981, 7.3978, 7.3989, 7.3985, 7.4005, 7.4001, 7.4002, 7.3999, 7.4002, 7.401, 7.4019, 7.4015, 7.4061, 7.4058, 7.406, 7.4071, 7.4093, 7.41, 7.4096, 7.4102, 7.4099, 7.4095, 7.4092, 7.4089, 7.4086, 7.4082, 7.4078, 7.4074, 7.407, 7.4066, 7.4063, 7.4059, 7.4055, 7.4051, 7.4048, 7.4044, 7.405, 7.4046, 7.4054, 7.4051, 7.4047, 7.4053, 7.4049, 7.4046, 7.4033, 7.403, 7.4028, 7.4034, 7.4053, 7.405, 7.4046, 7.4042, 7.404, 7.4037, 7.4033, 7.4039, 7.4046, 7.4055, 7.4052, 7.4048, 7.4055, 7.4052, 7.4048, 7.4044, 7.4041, 7.4047, 7.4044, 7.4051, 7.4058, 7.4054, 7.4064, 7.4061, 7.4057, 7.4064, 7.406, 7.4066, 7.4062, 7.406, 7.4056, 7.4052, 7.4048, 7.4045, 7.4041, 7.4047, 7.4045, 7.4059, 7.4055, 7.4052, 7.4048, 7.4044, 7.404, 7.4036, 7.4034, 7.403, 7.4026, 7.4023, 7.4021, 7.4019, 7.4016, 7.4012, 7.4018, 7.4014, 7.401, 7.4006, 7.4002, 7.4009, 7.4016, 7.4023, 7.402, 7.4008, 7.4014, 7.4011, 7.4007, 7.4004, 7.4001, 7.401, 7.4017, 7.4016, 7.4012, 7.4019, 7.4019, 7.4025, 7.4022, 7.4018, 7.4024, 7.403, 7.4026, 7.4033, 7.4029, 7.4036, 7.4023, 7.402, 7.4016, 7.4012, 7.4018, 7.4024, 7.4031, 7.4027, 7.4023, 7.402, 7.4016, 7.4012, 7.4009, 7.4017, 7.4024, 7.4021, 7.403, 7.4049, 7.4047, 7.4046, 7.4054, 7.4061, 7.406, 7.4058, 7.4067, 7.4064, 7.4071, 7.4069, 7.4075, 7.4062, 7.4058, 7.4074, 7.407, 7.4067, 7.4073, 7.4069, 7.4066, 7.4064, 7.4061, 7.4069, 7.4056, 7.4064, 7.4061, 7.4057, 7.4065, 7.4062, 7.407, 7.4076, 7.4074, 7.407, 7.4091, 7.4087, 7.4084, 7.408, 7.4077, 7.4073, 7.4069, 7.4077, 7.4073, 7.4069, 7.4066, 7.4063, 7.406, 7.406, 7.4067, 7.4064, 7.406, 7.4057, 7.4054, 7.4051, 7.4047, 7.4045, 7.4043, 7.404, 7.4036, 7.4033, 7.4029, 7.4035, 7.404, 7.4046, 7.4042, 7.404, 7.4036, 7.4032, 7.4029, 7.4026, 7.4024, 7.403, 7.4028, 7.4035, 7.4031, 7.4027, 7.4023, 7.402, 7.4016, 7.4014, 7.4026, 7.4033, 7.403, 7.4028, 7.4025, 7.4021, 7.4008, 7.4015, 7.4012, 7.4019, 7.4026, 7.4025, 7.4021, 7.4019, 7.4015, 7.4023, 7.4023, 7.402, 7.4017, 7.4013, 7.4001, 7.3999, 7.4006, 7.4016, 7.4022, 7.4033, 7.4029, 7.4025, 7.4022, 7.4029, 7.4035, 7.4031, 7.4029, 7.4025, 7.4031, 7.4038, 7.4035, 7.4032, 7.4029, 7.4046, 7.4043, 7.404, 7.4037, 7.4033, 7.403, 7.4029, 7.4025, 7.4041, 7.4047, 7.4044, 7.4041, 7.4038, 7.4036, 7.4034, 7.403, 7.4026, 7.4023, 7.402, 7.4027, 7.4025, 7.4034, 7.4031, 7.4027, 7.4024, 7.4022, 7.4019, 7.4016, 7.4013, 7.4011, 7.4008, 7.4016, 7.4022, 7.4019, 7.4016, 7.4014, 7.401, 7.4006, 7.4003, 7.4009, 7.4005, 7.4001, 7.4006, 7.4012, 7.401, 7.4007, 7.4013, 7.401, 7.4016, 7.4013, 7.401, 7.4007, 7.4003, 7.4, 7.4006, 7.4002, 7.3999, 7.3995, 7.3992, 7.3988, 7.3985, 7.3981, 7.3988, 7.3985, 7.3984, 7.3981, 7.3978, 7.3985, 7.3983, 7.398, 7.3977, 7.3984, 7.3986, 7.3983, 7.398, 7.3977, 7.3983, 7.3979, 7.3975, 7.3981, 7.3979, 7.3975, 7.3973, 7.397, 7.3969, 7.3966, 7.3963, 7.3959, 7.3955, 7.3952, 7.395, 7.3946, 7.3943, 7.3939, 7.3937, 7.3934, 7.393, 7.3929, 7.3926, 7.3922, 7.3919, 7.3925, 7.3922, 7.3928, 7.3934, 7.393, 7.3927, 7.3923, 7.3919, 7.3916, 7.3912, 7.3918, 7.3915, 7.3921, 7.3917, 7.3914, 7.3912, 7.391, 7.3926, 7.3923, 7.3931, 7.394, 7.3938, 7.3936, 7.3942, 7.3948, 7.3945, 7.3942, 7.395, 7.3946, 7.3953, 7.3951, 7.3948, 7.395, 7.3946, 7.3952, 7.3949, 7.3946, 7.3965, 7.3963, 7.3962, 7.3959, 7.3956, 7.3962, 7.3959, 7.3956, 7.3944, 7.394, 7.3937, 7.3934, 7.394, 7.3939, 7.3945, 7.3943, 7.3939, 7.3935, 7.3932, 7.393, 7.3927, 7.3924, 7.3921, 7.3918, 7.3916, 7.3912, 7.3909, 7.3906, 7.3903, 7.3901, 7.3899, 7.3895, 7.3894, 7.389, 7.3887, 7.3883, 7.3879, 7.3876, 7.3872, 7.3869, 7.3867, 7.3863, 7.3861, 7.3859, 7.3856, 7.3854, 7.3842, 7.3839, 7.3835, 7.3832, 7.3829, 7.3836, 7.3844, 7.3887, 7.3884, 7.3881, 7.3879, 7.3886, 7.3882, 7.3882, 7.3878, 7.3875, 7.3871, 7.3867, 7.3865, 7.3862, 7.3859, 7.3857, 7.3845, 7.3841, 7.3837, 7.3843, 7.3849, 7.3847, 7.3844, 7.3884, 7.388, 7.3893, 7.3909, 7.3906, 7.3904, 7.3901, 7.3898, 7.3894, 7.3901, 7.3897, 7.3893, 7.3889, 7.3887, 7.3902, 7.3899, 7.3902, 7.3898, 7.3899, 7.3898, 7.3888, 7.3886, 7.3892, 7.3891, 7.3889, 7.3879, 7.3876, 7.3873, 7.3869, 7.3867, 7.3864, 7.386, 7.3858, 7.3846, 7.3853, 7.3849, 7.3846, 7.3843, 7.3841, 7.384, 7.3846, 7.3862, 7.3869, 7.3865, 7.3861, 7.3857, 7.3854, 7.3851, 7.3849, 7.3855, 7.3852, 7.385, 7.3847, 7.3843, 7.384, 7.3846, 7.3853, 7.387, 7.3868, 7.3864, 7.3861, 7.3859, 7.3856, 7.3862, 7.3868, 7.3864, 7.387, 7.3881, 7.3878, 7.3875, 7.3872, 7.3869, 7.3866, 7.3866, 7.3862, 7.3859, 7.3855, 7.3852, 7.3849, 7.3857, 7.3854, 7.385, 7.3855, 7.3862, 7.3858, 7.3854, 7.3851, 7.3848, 7.3846, 7.3843, 7.384, 7.3846, 7.3843, 7.384, 7.3838, 7.3836, 7.3832, 7.3831, 7.3837, 7.3839, 7.3846, 7.3843, 7.384, 7.3836, 7.3824, 7.3813, 7.3801, 7.3798, 7.3795, 7.3792, 7.3801, 7.3797, 7.3794, 7.3799, 7.3799, 7.3797, 7.3803, 7.3809, 7.3816, 7.3812, 7.3809, 7.3806, 7.3812, 7.3809, 7.3806, 7.3794, 7.3792, 7.3789, 7.3785, 7.3783, 7.378, 7.3776, 7.3782, 7.378, 7.3777, 7.3773, 7.3774, 7.3771, 7.377, 7.3767, 7.3776, 7.3774, 7.3772, 7.3769, 7.3767, 7.3773, 7.3769, 7.3775, 7.3781, 7.3778, 7.3784, 7.3792, 7.3789, 7.3786, 7.3782, 7.3779, 7.3775, 7.3783, 7.3781, 7.3777, 7.3773, 7.3771, 7.3768, 7.3767, 7.3765, 7.3771, 7.3768, 7.3766, 7.3762, 7.3758, 7.3755, 7.3751, 7.3756, 7.3753, 7.375, 7.3747, 7.3753, 7.375, 7.3746, 7.3735, 7.3732, 7.372, 7.3717, 7.3715, 7.3717, 7.3714, 7.3711, 7.3708, 7.3704, 7.371, 7.3709, 7.3705, 7.3703, 7.3709, 7.3715, 7.374, 7.3737, 7.3735, 7.3732, 7.3729, 7.3726, 7.3722, 7.372, 7.3726, 7.3732, 7.3738, 7.3744, 7.3742, 7.3739, 7.3736, 7.3742, 7.3739, 7.3736, 7.3733, 7.373, 7.3726, 7.3723, 7.3729, 7.3736, 7.3733, 7.373, 7.3727, 7.3724, 7.3721, 7.3717, 7.3724, 7.373, 7.3735, 7.3731, 7.3729, 7.3727, 7.3733, 7.373, 7.3735, 7.3732, 7.373, 7.3736, 7.3733, 7.3739, 7.3736, 7.3732, 7.3738, 7.3744, 7.3742, 7.3739, 7.3736, 7.3733, 7.3739, 7.3745, 7.3751, 7.3747, 7.3744, 7.3749, 7.3746, 7.3742, 7.3739, 7.3736, 7.3732, 7.3729, 7.3726, 7.3723, 7.3726, 7.3723, 7.373, 7.3735, 7.3741, 7.3738, 7.3735, 7.3732, 7.373, 7.3726, 7.3732, 7.3738, 7.3735, 7.3732, 7.3738, 7.3735, 7.3733, 7.3739, 7.3735, 7.3741, 7.3738, 7.3749, 7.3746, 7.3743, 7.374, 7.3745, 7.3743, 7.3739, 7.3738, 7.3737, 7.3743, 7.374, 7.3737, 7.3734, 7.3731, 7.3728, 7.3725, 7.3721, 7.3718, 7.3715, 7.3715, 7.372, 7.3717, 7.3723, 7.3719, 7.3717, 7.3713, 7.371, 7.3706, 7.3702, 7.37, 7.3697, 7.3696, 7.3693, 7.3689, 7.3695, 7.3693, 7.3699, 7.3705, 7.3701, 7.3697, 7.3693, 7.3689, 7.3686, 7.3683, 7.3681, 7.3687, 7.3684, 7.3681, 7.3678, 7.3677, 7.3674, 7.3673, 7.367, 7.3666, 7.3663, 7.366, 7.3657, 7.3655, 7.3655, 7.3652, 7.3649, 7.3647, 7.3653, 7.365, 7.3647, 7.3645, 7.3642, 7.3651, 7.3642, 7.3639, 7.3636, 7.3633, 7.3633, 7.363, 7.3627, 7.3633, 7.3624, 7.3651, 7.3648, 7.3646, 7.3643, 7.364, 7.3638, 7.3645, 7.3657, 7.3655, 7.366, 7.3657, 7.3654, 7.3651, 7.3648, 7.3646, 7.3643, 7.3641, 7.3665, 7.3665, 7.3662, 7.3659, 7.3656, 7.3654, 7.3651, 7.3648, 7.3654, 7.3653, 7.3651, 7.365, 7.3646, 7.3644, 7.3641, 7.3638, 7.3635, 7.3634, 7.3632, 7.3638, 7.3635, 7.3633, 7.3631, 7.3639, 7.3636, 7.3633, 7.363, 7.3635, 7.3642, 7.3639, 7.3636, 7.3633, 7.363, 7.3627, 7.3637, 7.3634, 7.364, 7.3645, 7.3651, 7.3647, 7.3653, 7.3655, 7.3652, 7.3649, 7.3646, 7.3643, 7.3641, 7.3638, 7.3627, 7.3625, 7.3622, 7.362, 7.3618, 7.3624, 7.363, 7.3644, 7.3641, 7.3638, 7.3644, 7.3641, 7.3638, 7.3636, 7.3634, 7.3631, 7.3628, 7.3634, 7.364, 7.3646, 7.3643, 7.3642, 7.364, 7.3639, 7.3637, 7.3634, 7.3639, 7.3645, 7.3651, 7.3649, 7.3655, 7.3652, 7.3649, 7.3646, 7.3643, 7.364, 7.3638, 7.3636, 7.3634, 7.364, 7.3637, 7.3634, 7.3631, 7.363, 7.3628, 7.3634, 7.3632, 7.3637, 7.3634, 7.3631, 7.3629, 7.3628, 7.3625, 7.3631, 7.3628, 7.3626, 7.3624, 7.3621, 7.3619, 7.3618, 7.3624, 7.3622, 7.362, 7.3617, 7.3614, 7.3603, 7.36, 7.3598, 7.3588, 7.3594, 7.3591, 7.3588, 7.3586, 7.3583, 7.358, 7.3589, 7.3597, 7.3594, 7.3591, 7.3588, 7.3604, 7.3593, 7.359, 7.3595, 7.3618, 7.3633, 7.363, 7.3627, 7.3624, 7.3613, 7.3604, 7.3614, 7.3612, 7.3612, 7.362, 7.3617, 7.363, 7.3636, 7.3634, 7.3653, 7.365, 7.3647, 7.3671, 7.3672, 7.3669, 7.3671, 7.3676, 7.3673, 7.3679, 7.3676, 7.3672, 7.3677, 7.3676, 7.3682, 7.3679, 7.3677, 7.3683, 7.368, 7.3686, 7.3683, 7.3688, 7.3677, 7.3674, 7.3671, 7.3668, 7.3676, 7.3674, 7.3671, 7.3668, 7.3665, 7.3668, 7.3667, 7.3695, 7.3692, 7.3698, 7.3695, 7.3692, 7.3689, 7.3689, 7.3707, 7.3704, 7.3701, 7.37, 7.3706, 7.3705, 7.3702, 7.37, 7.3707, 7.3704, 7.3703, 7.3701, 7.369, 7.3679, 7.3677, 7.3679, 7.3676, 7.3673, 7.367, 7.3668, 7.3665, 7.3671, 7.3668, 7.3668, 7.3665, 7.3682, 7.3688, 7.3685, 7.3692, 7.3698, 7.3695, 7.3693, 7.369, 7.3697, 7.3694, 7.3701, 7.3698, 7.3695, 7.3693, 7.369, 7.3689, 7.3686, 7.3684, 7.3682, 7.3679, 7.3676, 7.3682, 7.3686, 7.3695, 7.3701, 7.3699, 7.3696, 7.3693, 7.3691, 7.3695, 7.3692, 7.3691, 7.369, 7.3696, 7.3693, 7.369, 7.3679, 7.3684, 7.3681, 7.3678, 7.3676, 7.3673, 7.367, 7.3667, 7.3673, 7.367, 7.3686, 7.3722, 7.372, 7.3726, 7.3731, 7.3737, 7.3734, 7.3731, 7.3728, 7.3734, 7.3732, 7.3729, 7.3726, 7.3724, 7.3722, 7.3719, 7.3716, 7.3714, 7.3722, 7.372, 7.3718, 7.3725, 7.3731, 7.3728, 7.3727, 7.3724, 7.3721, 7.3718, 7.3724, 7.373, 7.3728, 7.3742, 7.374, 7.3738, 7.3736, 7.3733, 7.3735, 7.3732, 7.3729, 7.3726, 7.3732, 7.3729, 7.3734, 7.3734, 7.3732, 7.3747, 7.3753, 7.3777, 7.3775, 7.3781, 7.3779, 7.3794, 7.3792, 7.3792, 7.379, 7.3787, 7.381, 7.3808, 7.3823, 7.382, 7.3817, 7.3814, 7.3824, 7.3821, 7.3819, 7.3816, 7.3813, 7.3811, 7.3808, 7.3806, 7.3803, 7.3794, 7.38, 7.3798, 7.3795, 7.3802, 7.3799, 7.3796, 7.3793, 7.3791, 7.3788, 7.3779, 7.377, 7.3767, 7.3765, 7.3762, 7.3751, 7.3758, 7.3756, 7.3754, 7.376, 7.3757, 7.3755, 7.3752, 7.3749, 7.3754, 7.3751, 7.3749, 7.375, 7.3747, 7.3744, 7.3742, 7.3748, 7.3753, 7.375, 7.3756, 7.3762, 7.3765, 7.377, 7.3768, 7.3766, 7.3763, 7.376, 7.3765, 7.3772, 7.3761, 7.3759, 7.3758, 7.3756, 7.3762, 7.3776, 7.3782, 7.378, 7.3778, 7.3775, 7.3773, 7.377, 7.3767, 7.3757, 7.377, 7.3767, 7.3764, 7.3761, 7.3759, 7.3756, 7.3753, 7.375, 7.3748, 7.3754, 7.3752, 7.3749, 7.3747, 7.3744, 7.3733, 7.373, 7.3728, 7.3725, 7.3723, 7.3728, 7.3725, 7.3722, 7.3719, 7.3741, 7.3747, 7.3753, 7.375, 7.3747, 7.3752, 7.3749, 7.3738, 7.3735, 7.3732, 7.3721, 7.3718, 7.3715, 7.3712, 7.3709, 7.3706, 7.3703, 7.3708, 7.3705, 7.3702, 7.3699, 7.3696, 7.3693, 7.3691, 7.3689, 7.3687, 7.3684, 7.3681, 7.3678, 7.3675, 7.3672, 7.3669, 7.3674, 7.3671, 7.3685, 7.3683, 7.368, 7.3678, 7.3675, 7.3672, 7.367, 7.3668, 7.3665, 7.367, 7.3667, 7.3665, 7.3662, 7.3685, 7.3682, 7.3688, 7.3703, 7.3701, 7.3699, 7.3689, 7.3687, 7.3684, 7.369, 7.3687, 7.3692, 7.369, 7.3688, 7.3686, 7.3683, 7.3688, 7.3686, 7.3683, 7.3689, 7.3686, 7.3684, 7.3673, 7.367, 7.3694, 7.3708, 7.3706, 7.3704, 7.3718, 7.3715, 7.3712, 7.3718, 7.3715, 7.3771, 7.3785, 7.379, 7.379, 7.3804, 7.3809, 7.3806, 7.3804, 7.3802, 7.3799, 7.3796, 7.3794, 7.3791, 7.3788, 7.3785, 7.3783, 7.378, 7.3777, 7.3782, 7.3779, 7.3776, 7.3773, 7.377, 7.3801, 7.3848, 7.3854, 7.386, 7.3908, 7.3905, 7.3902, 7.3907, 7.3912, 7.3917, 7.3914, 7.3927, 7.3932, 7.3929, 7.3934, 7.3939, 7.3944, 7.3941, 7.3948, 7.3954, 7.3952, 7.3949, 7.3946, 7.3951, 7.3957, 7.3947, 7.3936, 7.3942, 7.3956, 7.3978, 7.3975, 7.3973, 7.3971, 7.3968, 7.3966, 7.3964, 7.3969, 7.3966, 7.3963, 7.3961, 7.3958, 7.3963, 7.3968, 7.3965, 7.3962, 7.3987, 7.3985, 7.399, 7.3996, 7.4027, 7.4024, 7.4021, 7.4026, 7.4041, 7.4039, 7.4029, 7.4034, 7.4023, 7.4028, 7.4025, 7.4024, 7.4021, 7.4018, 7.4023, 7.4028, 7.4025, 7.403, 7.4035, 7.404, 7.4038, 7.4051, 7.4048, 7.4045, 7.4042, 7.4031, 7.4028, 7.4033, 7.403, 7.4027, 7.4032, 7.403, 7.4035, 7.404, 7.4037, 7.4034, 7.4037, 7.4034, 7.4032, 7.4029, 7.4027, 7.4024, 7.4022, 7.4027, 7.4024, 7.4038, 7.4028, 7.4025, 7.4022, 7.4041, 7.4054, 7.4056, 7.4054, 7.4078, 7.4089, 7.4086, 7.4083, 7.408, 7.4092, 7.4097, 7.4094, 7.4091, 7.4089, 7.4086, 7.4083, 7.408, 7.4078, 7.4075, 7.4065, 7.4071, 7.4076, 7.4074, 7.4072, 7.4069, 7.4074, 7.4071, 7.4078, 7.4076, 7.4073, 7.4078, 7.4075, 7.4073, 7.4078, 7.4079, 7.4076, 7.4073, 7.407, 7.4067, 7.4064, 7.4078, 7.4087, 7.4084, 7.4089, 7.4086, 7.4084, 7.4089, 7.4081, 7.409, 7.4095, 7.4092, 7.4122, 7.4119, 7.4116, 7.4113, 7.4118, 7.4123, 7.412, 7.4126, 7.4139, 7.4136, 7.4133, 7.4123, 7.4136, 7.4134, 7.4132, 7.4129, 7.4134, 7.4139, 7.4144, 7.4141, 7.4146, 7.4151, 7.4148, 7.4153, 7.415, 7.4148, 7.4145, 7.4143, 7.4141, 7.4138, 7.4135, 7.414, 7.4137, 7.4142, 7.4147, 7.4152, 7.4149, 7.4162, 7.4168, 7.4165, 7.4178, 7.4176, 7.4181, 7.4187, 7.4192, 7.4189, 7.4194, 7.4191, 7.4188, 7.4185, 7.4182, 7.4187, 7.4192, 7.419, 7.4187, 7.4192, 7.4205, 7.4202, 7.42, 7.4198, 7.4195, 7.4201, 7.4199, 7.4197, 7.4203, 7.4201, 7.4191, 7.4195, 7.42, 7.4205, 7.4223, 7.4228, 7.4225, 7.423, 7.4237, 7.4282, 7.4279, 7.4276, 7.4288, 7.4285, 7.4299, 7.4296, 7.43, 7.4309, 7.4306, 7.4304, 7.4309, 7.4314, 7.4311, 7.4308, 7.4313, 7.4318, 7.4318, 7.4318, 7.4316, 7.4314, 7.4311, 7.4308, 7.4314, 7.4319, 7.4324, 7.4321, 7.4318, 7.4315, 7.4312, 7.431, 7.4315, 7.432, 7.4317, 7.4314, 7.4325, 7.4322, 7.4327, 7.4324, 7.4329, 7.4329, 7.4334, 7.4332, 7.4337, 7.4342, 7.4347, 7.4344, 7.4349, 7.4346, 7.4344, 7.4349, 7.4346, 7.4351, 7.4348, 7.4345, 7.4342, 7.434, 7.4345, 7.4343, 7.4348, 7.4345, 7.435, 7.4347, 7.4344, 7.4365, 7.4355, 7.4352, 7.4357, 7.4362, 7.4359, 7.4364, 7.4362, 7.436, 7.4365, 7.437, 7.436, 7.4357, 7.4354], '192.168.122.114': [5.3391, 5.7538, 5.5996, 5.6837, 5.8445, 6.6737, 7.281, 7.0472, 7.464, 7.3572, 7.1819, 7.0992, 7.0021, 6.9575, 6.913, 6.8256, 6.4589, 6.4168, 6.3648, 6.3172, 6.2977, 6.2596, 6.225, 6.2197, 6.1861, 6.1709, 6.1642, 6.1543, 6.1296, 6.6233, 6.5972, 6.5587, 6.6836, 6.5038, 6.4666, 6.297, 6.4174, 6.394, 6.5132, 6.4849, 6.4772, 6.4592, 6.4411, 6.4179, 6.3047, 6.2842, 6.2649, 6.2584, 6.2535, 6.2342, 6.219, 6.2069, 6.3019, 6.3935, 6.4785, 6.4794, 6.4679, 6.4579, 6.4445, 6.4404, 6.4345, 6.4219, 6.4096, 6.408, 6.4886, 6.4711, 6.5394, 6.6071, 6.6724, 6.5826, 6.5755, 6.5694, 6.5581, 6.6111, 6.5964, 6.5813, 6.5716, 6.5569, 6.7488, 6.747, 6.7336, 6.7261, 6.7096, 6.7077, 7.2932, 7.2701, 7.2514, 7.236, 7.2148, 7.1957, 7.176, 7.2219, 7.201, 7.1847, 7.1645, 7.1444, 7.1252, 7.2912, 7.2245, 7.2077, 7.264, 7.2515, 7.2397, 7.2725, 7.2613, 7.3629, 7.3442, 7.3752, 7.3607, 7.3468, 7.3766, 7.365, 7.3464, 7.337, 7.3201, 7.3518, 7.339, 7.3237, 7.3536, 7.3371, 7.3215, 7.3481, 7.3325, 7.3165, 7.3441, 7.2898, 7.2822, 7.2709, 7.295, 7.2805, 7.2704, 7.2565, 7.2423, 7.2416, 7.2279, 7.2135, 7.2011, 7.1913, 7.179, 7.2061, 7.2357, 7.2256, 7.2302, 7.2214, 7.1764, 7.1671, 7.1604, 7.148, 7.1374, 7.1277, 7.1181, 7.1112, 7.1055, 7.1341, 7.1611, 7.1554, 7.1473, 7.1669, 7.1597, 7.1514, 7.1424, 7.1352, 7.1572, 7.1799, 7.2117, 7.2037, 7.2233, 7.2796, 7.2982, 7.287, 7.3075, 7.2989, 7.2936, 7.2847, 7.3032, 7.2947, 7.3455, 7.3871, 7.3761, 7.395, 7.4106, 7.4979, 7.4945, 7.5138, 7.5054, 7.5212, 7.5401, 7.5284, 7.5205, 7.5244, 7.5135, 7.5571, 7.5494, 7.5381, 7.5272, 7.5428, 7.5367, 7.5616, 7.5549, 7.5443, 7.5866, 7.5752, 7.5654, 7.5902, 7.5807, 7.573, 7.57, 7.5605, 7.5763, 7.5664, 7.5563, 7.5719, 7.5876, 7.5799, 7.5701, 7.5622, 7.5773, 7.5683, 7.5834, 7.6003, 7.6011, 7.5904, 7.5803, 7.5958, 7.586, 7.6251, 7.6393, 7.6538, 7.6439, 7.6364, 7.627, 7.6177, 7.6087, 7.5986, 7.6126, 7.6254, 7.6161, 7.6081, 7.6202, 7.6144, 7.6066, 7.6009, 7.617, 7.6084, 7.6016, 7.5935, 7.5994, 7.5915, 7.6993, 7.6962, 7.7509, 7.7436, 7.7621, 7.7542, 7.7778, 7.7747, 7.7859, 7.7996, 7.7916, 7.7818, 7.7963, 7.7893, 7.7835, 7.7747, 7.7666, 7.7795, 7.7729, 7.7678, 7.7612, 7.7518, 7.774, 7.7676, 7.7591, 7.7512, 7.744, 7.7364, 7.7307, 7.7238, 7.7193, 7.7135, 7.7083, 7.7208, 7.7154, 7.7082, 7.7179, 7.7101, 7.7248, 7.7195, 7.7272, 7.7384, 7.7302, 7.7231, 7.7352, 7.7376, 7.7329, 7.7432, 7.7359, 7.7452, 7.7393, 7.7322, 7.7253, 7.7376, 7.7301, 7.7267, 7.7073, 7.704, 7.7152, 7.7114, 7.7051, 7.6991, 7.6944, 7.7097, 7.7028, 7.6962, 7.696, 7.6897, 7.6834, 7.6781, 7.672, 7.684, 7.677, 7.6859, 7.6791, 7.6717, 7.6655, 7.6587, 7.6519, 7.6452, 7.6556, 7.6497, 7.643, 7.6367, 7.6298, 7.6269, 7.6231, 7.6168, 7.6275, 7.6263, 7.643, 7.6365, 7.635, 7.6308, 7.6399, 7.6366, 7.657, 7.6518, 7.6455, 7.64, 7.65, 7.6451, 7.6407, 7.6356, 7.6288, 7.6224, 7.616, 7.6098, 7.6035, 7.5985, 7.5939, 7.5897, 7.5844, 7.5785, 7.5872, 7.581, 7.5901, 7.5854, 7.5794, 7.5956, 7.5897, 7.5869, 7.5835, 7.5776, 7.5718, 7.5686, 7.5629, 7.5585, 7.5529, 7.5611, 7.5551, 7.5649, 7.5605, 7.5549, 7.5492, 7.5451, 7.5391, 7.5466, 7.5291, 7.5506, 7.5478, 7.5427, 7.5512, 7.5598, 7.5558, 7.5382, 7.5337, 7.5279, 7.5233, 7.5181, 7.5138, 7.5213, 7.5295, 7.5249, 7.5214, 7.5157, 7.5155, 7.5226, 7.5178, 7.5257, 7.5212, 7.5187, 7.5135, 7.5091, 7.5067, 7.5027, 7.4995, 7.4954, 7.5296, 7.527, 7.5224, 7.519, 7.514, 7.5113, 7.51, 7.4939, 7.4774, 7.4727, 7.4687, 7.4662, 7.4732, 7.468, 7.4639, 7.4592, 7.4539, 7.4616, 7.4568, 7.4759, 7.4718, 7.4678, 7.4629, 7.4705, 7.4784, 7.4744, 7.4699, 7.4655, 7.4608, 7.4561, 7.4513, 7.4469, 7.4424, 7.4376, 7.4452, 7.4522, 7.4597, 7.4564, 7.4534, 7.4488, 7.444, 7.4413, 7.4388, 7.4657, 7.462, 7.4586, 7.4666, 7.4623, 7.4698, 7.4673, 7.4741, 7.471, 7.4665, 7.4637, 7.4613, 7.4806, 7.4762, 7.483, 7.479, 7.4763, 7.4879, 7.4834, 7.4835, 7.472, 7.4689, 7.4648, 7.4722, 7.468, 7.4748, 7.4712, 7.4669, 7.4743, 7.471, 7.4669, 7.4626, 7.4696, 7.4687, 7.4769, 7.4731, 7.4809, 7.4766, 7.4741, 7.4706, 7.4663, 7.4733, 7.4689, 7.4681, 7.4549, 7.4629, 7.4595, 7.4782, 7.4746, 7.5041, 7.5, 7.4979, 7.4947, 7.5194, 7.5168, 7.5532, 7.5487, 7.5464, 7.542, 7.5379, 7.535, 7.5519, 7.5586, 7.5645, 7.561, 7.5573, 7.5664, 7.5634, 7.5643, 7.5604, 7.576, 7.5926, 7.5793, 7.5753, 7.5814, 7.5774, 7.5827, 7.5784, 7.5744, 7.5806, 7.5871, 7.583, 7.5796, 7.5816, 7.5787, 7.5749, 7.573, 7.5688, 7.5648, 7.5717, 7.5683, 7.5647, 7.5712, 7.5699, 7.5659, 7.5628, 7.5593, 7.5556, 7.5517, 7.548, 7.5363, 7.5241, 7.5236, 7.5294, 7.5266, 7.5231, 7.5305, 7.5266, 7.5234, 7.5203, 7.5104, 7.5161, 7.5128, 7.5088, 7.5062, 7.5066, 7.5131, 7.5185, 7.5156, 7.5212, 7.5175, 7.5139, 7.51, 7.5067, 7.5035, 7.5008, 7.4979, 7.4945, 7.4911, 7.4876, 7.4933, 7.4985, 7.4949, 7.4834, 7.4815, 7.4785, 7.478, 7.4744, 7.4802, 7.486, 7.4826, 7.4793, 7.4759, 7.4724, 7.478, 7.4762, 7.4734, 7.4708, 7.4678, 7.4664, 7.472, 7.4771, 7.4827, 7.4799, 7.4773, 7.4828, 7.4794, 7.4759, 7.5017, 7.4983, 7.5035, 7.5, 7.5054, 7.5138, 7.5103, 7.5081, 7.5056, 7.5022, 7.4996, 7.496, 7.5019, 7.5155, 7.5119, 7.5093, 7.5093, 7.5174, 7.5146, 7.5124, 7.5098, 7.5069, 7.5246, 7.5338, 7.5385, 7.544, 7.5415, 7.5558, 7.5616, 7.5595, 7.5562, 7.5532, 7.5509, 7.5479, 7.5446, 7.5496, 7.5468, 7.5439, 7.541, 7.5379, 7.5353, 7.5412, 7.5467, 7.5436, 7.5439, 7.542, 7.5483, 7.5452, 7.5626, 7.5598, 7.5577, 7.5482, 7.5456, 7.5482, 7.5458, 7.5512, 7.5487, 7.5484, 7.5453, 7.5504, 7.5484, 7.5454, 7.5503, 7.5556, 7.5531, 7.5499, 7.5472, 7.5518, 7.5487, 7.5464, 7.5431, 7.5479, 7.5449, 7.5418, 7.5391, 7.552, 7.5492, 7.5464, 7.5436, 7.5484, 7.5607, 7.5587, 7.5555, 7.554, 7.551, 7.5478, 7.545, 7.5421, 7.5398, 7.5447, 7.5493, 7.5539, 7.5509, 7.5488, 7.5456, 7.5435, 7.5409, 7.5407, 7.5381, 7.5349, 7.5322, 7.5367, 7.5336, 7.5311, 7.529, 7.5265, 7.5315, 7.5367, 7.534, 7.532, 7.5366, 7.5339, 7.5384, 7.5359, 7.5479, 7.546, 7.5506, 7.5476, 7.5518, 7.5501, 7.5481, 7.5456, 7.5427, 7.5405, 7.5373, 7.5415, 7.5396, 7.5369, 7.5341, 7.5319, 7.5349, 7.54, 7.5376, 7.5345, 7.5324, 7.5295, 7.5268, 7.5313, 7.5284, 7.5265, 7.5236, 7.5207, 7.5181, 7.516, 7.5138, 7.5112, 7.5085, 7.507, 7.5049, 7.5091, 7.5064, 7.5035, 7.5083, 7.5054, 7.5098, 7.5071, 7.5047, 7.5024, 7.5052, 7.5114, 7.5104, 7.5083, 7.5057, 7.5101, 7.5137, 7.5113, 7.5155, 7.5207, 7.5242, 7.5231, 7.5143, 7.5267, 7.5247, 7.5219, 7.5263, 7.5307, 7.528, 7.5256, 7.523, 7.5276, 7.5261, 7.5307, 7.5349, 7.533, 7.5303, 7.5277, 7.5249, 7.5233, 7.5211, 7.5184, 7.5165, 7.5138, 7.5115, 7.5088, 7.5067, 7.5109, 7.5092, 7.5075, 7.505, 7.5026, 7.5012, 7.4993, 7.4974, 7.4951, 7.4928, 7.4965, 7.5005, 7.5051, 7.5091, 7.5073, 7.5046, 7.5083, 7.5124, 7.5167, 7.5148, 7.5133, 7.5109, 7.5092, 7.5135, 7.5114, 7.5114, 7.5092, 7.5133, 7.5114, 7.5089, 7.5065, 7.5039, 7.5021, 7.4997, 7.4971, 7.5007, 7.4983, 7.4958, 7.4998, 7.4918, 7.4899, 7.4876, 7.4854, 7.4829, 7.4809, 7.4947, 7.4988, 7.4998, 7.4976, 7.5048, 7.5101, 7.5176, 7.5161, 7.5145, 7.512, 7.5101, 7.5157, 7.5137, 7.5294, 7.5271, 7.5251, 7.5225, 7.5199, 7.5182, 7.5177, 7.5153, 7.5143, 7.5123, 7.5107, 7.5089, 7.5066, 7.505, 7.5076, 7.5059, 7.5039, 7.5077, 7.5069, 7.5043, 7.5022, 7.506, 7.5169, 7.515, 7.5136, 7.5171, 7.5165, 7.5141, 7.5178, 7.5188, 7.5165, 7.5202, 7.5186, 7.5163, 7.5167, 7.5143, 7.512, 7.5099, 7.5136, 7.5172, 7.5149, 7.5186, 7.5223, 7.526, 7.5237, 7.5213, 7.5191, 7.5175, 7.5154, 7.5141, 7.5124, 7.5162, 7.514, 7.5119, 7.5099, 7.5133, 7.5168, 7.5155, 7.5141, 7.5125, 7.5103, 7.5138, 7.5116, 7.5152, 7.5129, 7.5202, 7.5179, 7.5158, 7.5139, 7.5119, 7.5098, 7.5135, 7.5062, 7.505, 7.5026, 7.5004, 7.4981, 7.4962, 7.494, 7.4865, 7.4853, 7.4831, 7.481, 7.4806, 7.4783, 7.4786, 7.4769, 7.4751, 7.4751, 7.474, 7.4779, 7.4817, 7.4796, 7.4728, 7.4762, 7.4693, 7.4672, 7.4653, 7.4633, 7.4669, 7.4647, 7.4626, 7.461, 7.4706, 7.4688, 7.4667, 7.4667, 7.4646, 7.4579, 7.4559, 7.4544, 7.4532, 7.451, 7.4549, 7.4527, 7.451, 7.4542, 7.4521, 7.4557, 7.4535, 7.4521, 7.4508, 7.4488, 7.4483, 7.4466, 7.4447, 7.4481, 7.4553, 7.4532, 7.4518, 7.4607, 7.459, 7.457, 7.455, 7.4537, 7.4574, 7.456, 7.4594, 7.4578, 7.4612, 7.4593, 7.4573, 7.4569, 7.4549, 7.4533, 7.4517, 7.4502, 7.4482, 7.4471, 7.4477, 7.4466, 7.4449, 7.4551, 7.4584, 7.4616, 7.4599, 7.4582, 7.4571, 7.4552, 7.4535, 7.454, 7.4577, 7.4558, 7.4544, 7.4614, 7.4592, 7.4582, 7.4575, 7.4558, 7.4549, 7.4535, 7.4564, 7.4544, 7.4524, 7.4464, 7.4499, 7.4479, 7.4415, 7.4394, 7.4422, 7.4406, 7.4406, 7.4438, 7.4445, 7.4433, 7.4462, 7.4552, 7.4541, 7.4528, 7.4556, 7.4536, 7.4566, 7.4552, 7.4584, 7.4575, 7.4562, 7.4591, 7.4577, 7.4557, 7.4588, 7.4573, 7.4554, 7.4697, 7.4677, 7.471, 7.4738, 7.4721, 7.4757, 7.4747, 7.473, 7.4757, 7.4751, 7.4732, 7.4819, 7.4803, 7.4792, 7.4828, 7.4813, 7.4796, 7.4831, 7.4819, 7.4801, 7.4782, 7.4771, 7.4799, 7.479, 7.4779, 7.4768, 7.475, 7.4737, 7.474, 7.4772, 7.4767, 7.4754, 7.4785, 7.477, 7.4753, 7.4735, 7.4764, 7.4702, 7.4702, 7.4689, 7.4674, 7.4658, 7.464, 7.4622, 7.4603, 7.4584, 7.4521, 7.4549, 7.4578, 7.4562, 7.4595, 7.4583, 7.4567, 7.4549, 7.4533, 7.4516, 7.45, 7.4483, 7.4467, 7.4454, 7.4438, 7.4505, 7.4489, 7.4477, 7.4606, 7.4596, 7.4635, 7.4617, 7.465, 7.4635, 7.4622, 7.4623, 7.4607, 7.4653, 7.4758, 7.4739, 7.4772, 7.4758, 7.4744, 7.4725, 7.4706, 7.4687, 7.4668, 7.4649, 7.4641, 7.4667, 7.4672, 7.4658, 7.464, 7.4667, 7.4648, 7.4675, 7.4715, 7.47, 7.4725, 7.4706, 7.4689, 7.4671, 7.4654, 7.4639, 7.4627, 7.4611, 7.4644, 7.4633, 7.4618, 7.4647, 7.4676, 7.4704, 7.4687, 7.4674, 7.4662, 7.4605, 7.4638, 7.4626, 7.4702, 7.4688, 7.4669, 7.4651, 7.4679, 7.4661, 7.4758, 7.4818, 7.4804, 7.4791, 7.4819, 7.4802, 7.4783, 7.4772, 7.48, 7.4792, 7.4773, 7.4755, 7.4743, 7.4769, 7.4805, 7.4791, 7.478, 7.4812, 7.4795, 7.4777, 7.4765, 7.4794, 7.4781, 7.4808, 7.4792, 7.4781, 7.4769, 7.4796, 7.4781, 7.4767, 7.4758, 7.4743, 7.4724, 7.471, 7.4697, 7.4683, 7.4674, 7.4659, 7.4665, 7.465, 7.4679, 7.4666, 7.4694, 7.4681, 7.4668, 7.4665, 7.4652, 7.4636, 7.462, 7.4602, 7.4626, 7.4628, 7.4646, 7.4628, 7.4612, 7.4601, 7.4589, 7.4533, 7.456, 7.4585, 7.4614, 7.46, 7.4585, 7.4573, 7.4556, 7.4781, 7.4766, 7.4794, 7.4795, 7.4865, 7.4852, 7.4841, 7.4868, 7.4861, 7.486, 7.4844, 7.479, 7.4773, 7.4759, 7.4741, 7.4724, 7.4714, 7.477, 7.4754, 7.4738, 7.4727, 7.4717, 7.4701, 7.4741, 7.4768, 7.4756, 7.4739, 7.4767, 7.4753, 7.4744, 7.4797, 7.4785, 7.4769, 7.4752, 7.4779, 7.4762, 7.4745, 7.4729, 7.4717, 7.4703, 7.4687, 7.4712, 7.47, 7.4728, 7.4712, 7.4714, 7.4728, 7.4711, 7.4697, 7.4725, 7.4708, 7.4704, 7.469, 7.4713, 7.4701, 7.4661, 7.4814, 7.485, 7.4878, 7.4862, 7.4849, 7.4845, 7.4831, 7.4856, 7.4845, 7.4832, 7.483, 7.4817, 7.49, 7.4883, 7.487, 7.4858, 7.4884, 7.4872, 7.499, 7.4974, 7.4962, 7.4985, 7.501, 7.4996, 7.502, 7.5011, 7.5035, 7.5018, 7.5002, 7.4985, 7.4971, 7.4954, 7.4938, 7.4965, 7.4988, 7.5012, 7.4996, 7.4981, 7.5005, 7.5028, 7.5013, 7.4997, 7.4985, 7.4973, 7.4957, 7.4945, 7.4931, 7.4922, 7.4912, 7.4907, 7.4891, 7.4878, 7.4863, 7.4902, 7.492, 7.5027, 7.5017, 7.5009, 7.5001, 7.5012, 7.5, 7.4984, 7.501, 7.4994, 7.4979, 7.497, 7.4956, 7.4948, 7.497, 7.496, 7.4945, 7.494, 7.4924, 7.4913, 7.4906, 7.4893, 7.4915, 7.4899, 7.4886, 7.4873, 7.4898, 7.4883, 7.487, 7.4854, 7.484, 7.4863, 7.4849, 7.4838, 7.4825, 7.4812, 7.4799, 7.4822, 7.4775, 7.4761, 7.4747, 7.4733, 7.4722, 7.4729, 7.4715, 7.4666, 7.4692, 7.4679, 7.4669, 7.4656, 7.4761, 7.4785, 7.4981, 7.4932, 7.4919, 7.4907, 7.4927, 7.495, 7.4938, 7.4926, 7.4911, 7.4901, 7.4889, 7.4878, 7.4862, 7.485, 7.4871, 7.4858, 7.4843, 7.4838, 7.4831, 7.4854, 7.4842, 7.4829, 7.4819, 7.484, 7.4826, 7.4814, 7.4804, 7.479, 7.4813, 7.4799, 7.4784, 7.4774, 7.4777, 7.4776, 7.4774, 7.4869, 7.4855, 7.4915, 7.4904, 7.4892, 7.4921, 7.4908, 7.4896, 7.4928, 7.4916, 7.4905, 7.4893, 7.4954, 7.4979, 7.5071, 7.5064, 7.5148, 7.5136, 7.5138, 7.5127, 7.5114, 7.5103, 7.5088, 7.5079, 7.5071, 7.5057, 7.5042, 7.5028, 7.5017, 7.5003, 7.4989, 7.4978, 7.5004, 7.4989, 7.498, 7.4965, 7.5097, 7.5119, 7.5109, 7.5099, 7.5129, 7.5118, 7.5071, 7.5058, 7.508, 7.5117, 7.5079, 7.5067, 7.5102, 7.509, 7.5077, 7.5063, 7.5051, 7.5038, 7.5024, 7.501, 7.4996, 7.4981, 7.4967, 7.499, 7.5012, 7.4997, 7.4982, 7.4971, 7.4956, 7.4978, 7.4964, 7.4949, 7.4935, 7.4921, 7.4907, 7.4897, 7.4884, 7.487, 7.4865, 7.4855, 7.5007, 7.5105, 7.5096, 7.5083, 7.507, 7.5068, 7.5058, 7.5045, 7.5036, 7.5059, 7.5046, 7.5067, 7.5067, 7.5073, 7.5061, 7.5085, 7.5104, 7.5131, 7.5118, 7.5108, 7.5101, 7.5087, 7.5073, 7.5059, 7.5048, 7.5035, 7.5022, 7.5008, 7.5003, 7.4989, 7.4975, 7.4997, 7.5023, 7.5013, 7.5, 7.4989, 7.4977, 7.4963, 7.4954, 7.4944, 7.4934, 7.4923, 7.4913, 7.4903, 7.4889, 7.4877, 7.496, 7.4992, 7.5015, 7.5003, 7.503, 7.5021, 7.5022, 7.5045, 7.5036, 7.5023, 7.5064, 7.505, 7.5036, 7.5025, 7.5011, 7.5033, 7.5019, 7.5005, 7.4991, 7.4985, 7.4972, 7.4959, 7.4945, 7.4936, 7.4922, 7.4943, 7.493, 7.4953, 7.4974, 7.496, 7.4949, 7.4909, 7.4933, 7.4923, 7.4915, 7.4937, 7.4926, 7.4948, 7.4945, 7.4968, 7.4955, 7.4946, 7.4988, 7.4981, 7.4968, 7.4991, 7.4979, 7.4974, 7.4994, 7.5014, 7.5, 7.4989, 7.498, 7.4938, 7.4926, 7.4947, 7.4965, 7.4953, 7.4974, 7.5049, 7.507, 7.506, 7.5047, 7.5036, 7.5023, 7.5009, 7.4995, 7.4982, 7.4968, 7.4989, 7.5009, 7.503, 7.5016, 7.5003, 7.4991, 7.4983, 7.4973, 7.4965, 7.4955, 7.4942, 7.4962, 7.4949, 7.4937, 7.4925, 7.4912, 7.4903, 7.4891, 7.4879, 7.4867, 7.4888, 7.4875, 7.4896, 7.4917, 7.4905, 7.4893, 7.4913, 7.4932, 7.4951, 7.4938, 7.4958, 7.4946, 7.4938, 7.4927, 7.4948, 7.4934, 7.4957, 7.4948, 7.4936, 7.4954, 7.501, 7.5032, 7.5034, 7.4993, 7.4985, 7.4975, 7.4996, 7.5015, 7.5006, 7.5027, 7.5016, 7.5006, 7.5028, 7.5016, 7.5011, 7.5, 7.4994, 7.5011, 7.5007, 7.5031, 7.5019, 7.5009, 7.5, 7.4989, 7.4976, 7.4987, 7.5007, 7.4998, 7.4987, 7.4982, 7.4976, 7.4964, 7.4967, 7.4957, 7.4947, 7.4979, 7.494, 7.4929, 7.4947, 7.4943, 7.4933, 7.4952, 7.4975, 7.4963, 7.4955, 7.4981, 7.4968, 7.4989, 7.4981, 7.4969, 7.4956, 7.4973, 7.4966, 7.4985, 7.5004, 7.4992, 7.4984, 7.4972, 7.497, 7.499, 7.4977, 7.497, 7.4934, 7.4897, 7.4914, 7.4905, 7.4942, 7.4962, 7.4949, 7.4967, 7.4957, 7.495, 7.4937, 7.4925, 7.4914, 7.491, 7.4898, 7.4886, 7.4875, 7.4865, 7.4885, 7.4874, 7.4923, 7.4911, 7.493, 7.4955, 7.4943, 7.4933, 7.4923, 7.4942, 7.4961, 7.4953, 7.4942, 7.4934, 7.4925, 7.4956, 7.4921, 7.4942, 7.4903, 7.4895, 7.4914, 7.4936, 7.4926, 7.4946, 7.4934, 7.4925, 7.4913, 7.4901, 7.489, 7.4883, 7.4875, 7.4893, 7.4881, 7.4869, 7.4863, 7.4882, 7.4873, 7.4835, 7.4829, 7.485, 7.4839, 7.4829, 7.4818, 7.4807, 7.4826, 7.4814, 7.4803, 7.4799, 7.4787, 7.4776, 7.4765, 7.4755, 7.4748, 7.4736, 7.4725, 7.4717, 7.4725, 7.4717, 7.4706, 7.4714, 7.4703, 7.4691, 7.4679, 7.4696, 7.4684, 7.4672, 7.4662, 7.4656, 7.4675, 7.4666, 7.4708, 7.4697, 7.4687, 7.4678, 7.4668, 7.4657, 7.4678, 7.4641, 7.463, 7.465, 7.4658, 7.4683, 7.4671, 7.4689, 7.4678, 7.4666, 7.4666, 7.4655, 7.4644, 7.4637, 7.4632, 7.4621, 7.4611, 7.463, 7.4623, 7.4618, 7.4611, 7.4601, 7.4595, 7.4586, 7.4605, 7.4597, 7.4587, 7.4605, 7.4594, 7.4585, 7.4605, 7.4596, 7.4585, 7.4575, 7.4582, 7.46, 7.4589, 7.4578, 7.4597, 7.4614, 7.4603, 7.4593, 7.4582, 7.4573, 7.4563, 7.4554, 7.4544, 7.4546, 7.4537, 7.4529, 7.4519, 7.4508, 7.45, 7.4489, 7.4481, 7.447, 7.4459, 7.4449, 7.4466, 7.4455, 7.4472, 7.4489, 7.4506, 7.4551, 7.4543, 7.4588, 7.4579, 7.455, 7.4514, 7.4532, 7.4522, 7.4514, 7.455, 7.4568, 7.4559, 7.455, 7.4571, 7.456, 7.4555, 7.4602, 7.4621, 7.4613, 7.4624, 7.4615, 7.461, 7.4628, 7.4621, 7.462, 7.4667, 7.4656, 7.4646, 7.4691, 7.4693, 7.471, 7.4699, 7.469, 7.4679, 7.4667, 7.4656, 7.4647, 7.4636, 7.4629, 7.462, 7.4611, 7.4629, 7.4621, 7.4617, 7.4635, 7.465, 7.4667, 7.4656, 7.4644, 7.4662, 7.4652, 7.467, 7.466, 7.465, 7.4668, 7.4657, 7.4646, 7.4637, 7.4627, 7.4617, 7.4636, 7.4629, 7.462, 7.4639, 7.4662, 7.4654, 7.4646, 7.4637, 7.4627, 7.462, 7.4615, 7.464, 7.4659, 7.4648, 7.4667, 7.4657, 7.4647, 7.4664, 7.4655, 7.4655, 7.4644, 7.4664, 7.4683, 7.4674, 7.4665, 7.466, 7.468, 7.4672, 7.4664, 7.4656, 7.4648, 7.4637, 7.4658, 7.4679, 7.4674, 7.4666, 7.4655, 7.4645, 7.4634, 7.4626, 7.4677, 7.4695, 7.471, 7.4702, 7.4767, 7.4786, 7.4775, 7.4767, 7.4756, 7.4774, 7.4792, 7.4788, 7.4777, 7.4775, 7.4767, 7.4786, 7.4775, 7.4794, 7.4785, 7.4775, 7.477, 7.476, 7.4751, 7.4742, 7.4761, 7.478, 7.483, 7.4822, 7.4811, 7.4803, 7.4821, 7.4811, 7.4801, 7.4793, 7.4784, 7.4776, 7.4766, 7.4756, 7.4745, 7.4744, 7.476, 7.475, 7.4741, 7.4731, 7.4729, 7.472, 7.4735, 7.4724, 7.4717, 7.4712, 7.4702, 7.4695, 7.4739, 7.4729, 7.4747, 7.4739, 7.4728, 7.4718, 7.4708, 7.4698, 7.4688, 7.4681, 7.4673, 7.4665, 7.4655, 7.4646, 7.4653, 7.4644, 7.464, 7.4631, 7.4621, 7.4589, 7.458, 7.4569, 7.4537, 7.4554, 7.4551, 7.4544, 7.4569, 7.4584, 7.4578, 7.4568, 7.4558, 7.4552, 7.4544, 7.4534, 7.4553, 7.4545, 7.454, 7.4557, 7.4547, 7.4537, 7.4532, 7.4522, 7.4512, 7.4501, 7.4491, 7.4505, 7.4495, 7.4512, 7.4528, 7.4518, 7.4535, 7.4551, 7.4559, 7.4548, 7.4543, 7.4534, 7.4553, 7.4544, 7.4535, 7.4535, 7.453, 7.453, 7.4521, 7.4513, 7.4503, 7.4493, 7.4486, 7.4478, 7.4468, 7.446, 7.4451, 7.4443, 7.4435, 7.4426, 7.4416, 7.4406, 7.4398, 7.4389, 7.4383, 7.4399, 7.4417, 7.4408, 7.44, 7.4415, 7.4409, 7.4403, 7.4393, 7.4408, 7.4401, 7.4395, 7.4363, 7.4354, 7.4345, 7.4338, 7.4356, 7.4371, 7.4362, 7.4353, 7.4343, 7.4335, 7.4327, 7.4321, 7.4337, 7.4332, 7.4323, 7.4339, 7.4329, 7.4319, 7.4309, 7.43, 7.4315, 7.4285, 7.4303, 7.4294, 7.4285, 7.4279, 7.427, 7.4263, 7.4233, 7.4229, 7.4222, 7.4215, 7.4207, 7.42, 7.4192, 7.4184, 7.4176, 7.4168, 7.4163, 7.4154, 7.4172, 7.4163, 7.4204, 7.4196, 7.4187, 7.4182, 7.4199, 7.4191, 7.4208, 7.4199, 7.4193, 7.4188, 7.4178, 7.4172, 7.4163, 7.4154, 7.4148, 7.4142, 7.4135, 7.4128, 7.4119, 7.411, 7.4101, 7.4094, 7.4084, 7.4075, 7.4067, 7.4035, 7.4025, 7.4018, 7.4082, 7.411, 7.4128, 7.4119, 7.411, 7.41, 7.4116, 7.411, 7.41, 7.409, 7.4081, 7.4072, 7.4135, 7.4152, 7.4167, 7.4183, 7.4174, 7.4184, 7.4177, 7.4193, 7.4186, 7.4179, 7.417, 7.4161, 7.4158, 7.4152, 7.4146, 7.4138, 7.4154, 7.4146, 7.4137, 7.4128, 7.4142, 7.4135, 7.4127, 7.412, 7.4135, 7.4134, 7.4125, 7.4117, 7.4134, 7.4125, 7.414, 7.4155, 7.4148, 7.4139, 7.4154, 7.4164, 7.4158, 7.4174, 7.4168, 7.4183, 7.4174, 7.4167, 7.4158, 7.4153, 7.4146, 7.4137, 7.4128, 7.4119, 7.4133, 7.4126, 7.4141, 7.4159, 7.415, 7.414, 7.4111, 7.4102, 7.4126, 7.4122, 7.4115, 7.4109, 7.4079, 7.4071, 7.4084, 7.4098, 7.4088, 7.4079, 7.407, 7.4124, 7.412, 7.4194, 7.4186, 7.4177, 7.4172, 7.4166, 7.4156, 7.4148, 7.4163, 7.4155, 7.4147, 7.4171, 7.4164, 7.4156, 7.4169, 7.4161, 7.4154, 7.4169, 7.4161, 7.4153, 7.4145, 7.4139, 7.4136, 7.4127, 7.4119, 7.4114, 7.4129, 7.412, 7.4113, 7.4128, 7.412, 7.4113, 7.4106, 7.4097, 7.4097, 7.4112, 7.4084, 7.408, 7.4095, 7.4109, 7.4102, 7.4096, 7.4088, 7.4082, 7.4075, 7.409, 7.4082, 7.4076, 7.4092, 7.4109, 7.4104, 7.4098, 7.4094, 7.4088, 7.4083, 7.4075, 7.4091, 7.4085, 7.4079, 7.4071, 7.4042, 7.4035, 7.4033, 7.4047, 7.404, 7.4053, 7.4067, 7.4058, 7.4052, 7.4043, 7.4035, 7.4051, 7.4043, 7.4036, 7.4052, 7.4044, 7.4036, 7.4027, 7.4063, 7.4054, 7.4047, 7.4042, 7.4035, 7.4028, 7.4019, 7.4015, 7.401, 7.4023, 7.4018, 7.4009, 7.4023, 7.4015, 7.4008, 7.4022, 7.3993, 7.3986, 7.3979, 7.3993, 7.3985, 7.3984, 7.3976, 7.3972, 7.3965, 7.3957, 7.397, 7.3942, 7.3937, 7.394, 7.3932, 7.3924, 7.3917, 7.3911, 7.3906, 7.3878, 7.387, 7.3863, 7.3857, 7.3832, 7.3824, 7.3815, 7.381, 7.3824, 7.3815, 7.3829, 7.3843, 7.3858, 7.3852, 7.3869, 7.3884, 7.3876, 7.3868, 7.386, 7.3852, 7.3846, 7.384, 7.3854, 7.3846, 7.386, 7.3857, 7.3849, 7.3841, 7.3833, 7.3847, 7.3862, 7.3876, 7.3888, 7.3884, 7.3878, 7.3869, 7.3861, 7.3853, 7.3868, 7.3861, 7.39, 7.3894, 7.3909, 7.3902, 7.3896, 7.4089, 7.4082, 7.4097, 7.409, 7.4084, 7.4076, 7.4068, 7.4062, 7.4055, 7.4048, 7.4047, 7.4039, 7.4032, 7.4045, 7.4037, 7.4073, 7.4064, 7.4079, 7.4073, 7.4065, 7.408, 7.4096, 7.4088, 7.408, 7.4087, 7.4079, 7.4051, 7.4046, 7.4061, 7.4053, 7.4052, 7.4089, 7.4083, 7.4075, 7.4067, 7.4062, 7.4057, 7.4067, 7.4061, 7.4074, 7.4066, 7.4078, 7.4069, 7.4125, 7.4133, 7.4126, 7.4141, 7.4134, 7.4199, 7.4211, 7.4206, 7.4203, 7.4195, 7.4195, 7.4212, 7.4203, 7.4196, 7.4211, 7.4205, 7.4179, 7.4175, 7.4172, 7.4194, 7.417, 7.4164, 7.416, 7.4249, 7.4241, 7.4233, 7.4242, 7.4296, 7.4291, 7.4303, 7.4295, 7.429, 7.4282, 7.4275, 7.4277, 7.425, 7.4244, 7.4236, 7.4242, 7.4237, 7.4253, 7.4245, 7.4237, 7.4233, 7.4247, 7.424, 7.4213, 7.4226, 7.4217, 7.422, 7.4212, 7.4204, 7.4198, 7.4195, 7.4213, 7.4205, 7.4199, 7.4192, 7.4184, 7.418, 7.4174, 7.4167, 7.4161, 7.4135, 7.4131, 7.4131, 7.4124, 7.4118, 7.4118, 7.4119, 7.4111, 7.4104, 7.4138, 7.4151, 7.4162, 7.4154, 7.4146, 7.4138, 7.413, 7.4144, 7.4159, 7.4151, 7.4145, 7.4137, 7.4129, 7.4121, 7.4135, 7.4128, 7.4121, 7.4114, 7.4108, 7.4082, 7.4095, 7.4089, 7.4085, 7.4077, 7.4071, 7.4065, 7.4058, 7.4032, 7.4046, 7.4038, 7.403, 7.4035, 7.4027, 7.4046, 7.4042, 7.4038, 7.403, 7.4027, 7.4022, 7.4018, 7.4011, 7.4007, 7.3999, 7.3991, 7.4003, 7.3995, 7.3988, 7.3984, 7.3976, 7.395, 7.3924, 7.3898, 7.389, 7.3883, 7.3896, 7.3907, 7.3917, 7.3927000000000005, 7.394, 7.3935, 7.3928, 7.3921, 7.3913, 7.3906, 7.392, 7.3894, 7.389, 7.3903, 7.3897, 7.3893, 7.3887, 7.388, 7.3897, 7.390700000000001, 7.394, 7.3952, 7.3946, 7.3959, 7.3954, 7.3953, 7.3967, 7.3961, 7.3953, 7.3967, 7.3961, 7.3978, 7.397, 7.4007, 7.4019, 7.4035, 7.408, 7.4074, 7.407, 7.4063, 7.4058, 7.4093, 7.4088, 7.4081, 7.4101, 7.4094, 7.4116, 7.4109, 7.4101, 7.41, 7.4103, 7.4098, 7.4092, 7.4084, 7.4077, 7.4073, 7.4086, 7.4079, 7.4073, 7.4066, 7.4059, 7.4055, 7.4071, 7.4064, 7.4059, 7.4071, 7.4064, 7.4066, 7.4087, 7.408, 7.4073, 7.4086, 7.408, 7.4072, 7.4065, 7.4076, 7.4069, 7.4064, 7.4058, 7.4071, 7.4064, 7.4079, 7.4077, 7.407, 7.4065, 7.4063, 7.4058, 7.407, 7.4083, 7.4077, 7.4087000000000005, 7.4082, 7.4081, 7.4092, 7.4086, 7.408, 7.4072, 7.4066, 7.406, 7.4053, 7.4046, 7.4041, 7.4034, 7.4026, 7.4037, 7.4052, 7.4066, 7.408, 7.4093, 7.4087, 7.4104, 7.4097, 7.409, 7.4085, 7.4079, 7.4072, 7.4065, 7.4058, 7.4051, 7.4064, 7.4057, 7.4049, 7.4043, 7.4038, 7.405, 7.4063, 7.4056, 7.4068, 7.4081, 7.4093, 7.4086, 7.4079, 7.4054, 7.4067, 7.406, 7.4072, 7.4066, 7.4079, 7.4092, 7.4105, 7.4098, 7.409, 7.4066, 7.406, 7.4072, 7.4122, 7.4115, 7.4108, 7.4119, 7.4115, 7.4127, 7.412, 7.4114, 7.4106, 7.4118, 7.4111, 7.4103, 7.4117, 7.4131, 7.4123, 7.4136, 7.4136, 7.4147, 7.4158, 7.4169, 7.4164, 7.416, 7.4153, 7.4164, 7.4156, 7.415, 7.4143, 7.4136, 7.4132, 7.4126, 7.4102, 7.4094, 7.4088, 7.4082, 7.4093, 7.4104, 7.4097, 7.4091, 7.4102, 7.4095, 7.4089, 7.4083, 7.4082, 7.4074, 7.4066, 7.4061, 7.4054, 7.4048, 7.4041, 7.4034, 7.4049, 7.4062, 7.4054, 7.4048, 7.4044, 7.4037, 7.4033, 7.4045, 7.4059, 7.4106, 7.4118, 7.4131, 7.4125, 7.4118, 7.4204, 7.4217, 7.4198, 7.4192, 7.4186, 7.418, 7.4173, 7.4185, 7.4178, 7.4188, 7.42, 7.4205, 7.4199, 7.4175, 7.4198, 7.4191, 7.4186, 7.4198, 7.421, 7.4222, 7.4215, 7.4208, 7.4219, 7.4212, 7.4205, 7.4198, 7.4193, 7.4206, 7.4236, 7.4247, 7.424, 7.4236, 7.4247, 7.4239, 7.425, 7.4243, 7.4236, 7.423, 7.4222, 7.4215, 7.4209, 7.4202, 7.4199, 7.4203, 7.4179, 7.4191, 7.4187, 7.4201, 7.4215, 7.4208, 7.4222, 7.4216, 7.421, 7.4203, 7.4196, 7.4208, 7.4201, 7.4231, 7.4224, 7.4217, 7.423, 7.4223, 7.423, 7.4207, 7.42, 7.4211, 7.4204, 7.4215, 7.4208, 7.4203, 7.4215, 7.4208, 7.4203, 7.4196, 7.4189, 7.4265, 7.426, 7.4253, 7.4247, 7.424, 7.4235, 7.4228, 7.4221, 7.4216, 7.4211, 7.4223, 7.4216, 7.4211, 7.4205, 7.4198, 7.4191, 7.4184, 7.4177, 7.4172, 7.4152, 7.4145, 7.4138, 7.4133, 7.4126, 7.412, 7.4115, 7.4109, 7.4125, 7.4118, 7.4112, 7.4122, 7.4134, 7.4127, 7.412, 7.4131, 7.4124, 7.4118, 7.4111, 7.4105, 7.4099, 7.4097, 7.4092, 7.409, 7.4085, 7.4099, 7.4092, 7.4092, 7.4086, 7.408, 7.4094, 7.4089, 7.4082, 7.408, 7.4074, 7.4089, 7.4082, 7.4077, 7.4071, 7.4085, 7.4079, 7.4072, 7.4066, 7.4079, 7.4072, 7.4049, 7.4045, 7.4052, 7.4047, 7.4058, 7.4052, 7.4047, 7.4058, 7.4115, 7.4108, 7.4101, 7.4111, 7.4107, 7.4103, 7.4098, 7.4111, 7.4122, 7.4116, 7.4109, 7.412, 7.4131, 7.4125, 7.4119, 7.4131, 7.4128, 7.4123, 7.4126, 7.4121, 7.4136, 7.4131, 7.413, 7.4125, 7.4119, 7.4113, 7.4108, 7.4102, 7.4113, 7.4107, 7.4118, 7.4129, 7.414, 7.4134, 7.4144, 7.4155, 7.4148, 7.4144, 7.4137, 7.4132, 7.4125, 7.4118, 7.4129, 7.4126, 7.4121, 7.4133, 7.4126, 7.4119, 7.413, 7.4124, 7.4123, 7.4117, 7.411, 7.4103, 7.4114, 7.4109, 7.4103, 7.4098, 7.4092, 7.4085, 7.4114, 7.4107, 7.4101, 7.4097, 7.4092, 7.4126, 7.4137, 7.4131, 7.4141, 7.4137, 7.413, 7.4143, 7.4138, 7.4132, 7.4145, 7.4156, 7.4151, 7.4163, 7.4195, 7.419, 7.4184, 7.4183, 7.4182, 7.4177, 7.4176, 7.4169, 7.4162, 7.4173, 7.4166, 7.416, 7.4153, 7.4147, 7.4141, 7.4152, 7.4164, 7.4158, 7.4153, 7.4147, 7.414, 7.4134, 7.4129, 7.4122, 7.4117, 7.4111, 7.4105, 7.4116, 7.4127, 7.4104, 7.4098, 7.4198, 7.4193, 7.4203, 7.4181, 7.4177, 7.4172, 7.4166, 7.4177, 7.4192, 7.4185, 7.4179, 7.4173, 7.4167, 7.4162, 7.4184, 7.4196, 7.4191, 7.4185, 7.4196, 7.4191, 7.4202, 7.4195, 7.4189, 7.4201, 7.4197, 7.4191, 7.4185, 7.418, 7.4174, 7.4169, 7.4179, 7.4174, 7.4169, 7.4163, 7.4143, 7.4142, 7.4145, 7.4127, 7.412, 7.4115, 7.4125, 7.4119, 7.4112, 7.4116, 7.4111, 7.4105, 7.41, 7.411, 7.412, 7.4116, 7.4112, 7.4107, 7.4102, 7.4095, 7.409, 7.4085, 7.4078, 7.4102, 7.4112, 7.4107, 7.4154, 7.4208, 7.422, 7.4219, 7.4216, 7.4212, 7.4206, 7.4199, 7.4217, 7.4219, 7.4215, 7.4194, 7.4173, 7.4168, 7.4164, 7.4142, 7.4152, 7.4145, 7.4156, 7.415, 7.4144, 7.4139, 7.4117, 7.4111, 7.4106, 7.4119, 7.4112, 7.4107, 7.4102, 7.4096, 7.4108, 7.4103, 7.4148, 7.4142, 7.4137, 7.4132, 7.4128, 7.4122, 7.4115, 7.4109, 7.4105, 7.41, 7.4097, 7.4092, 7.4085, 7.408, 7.4092, 7.4102, 7.4097, 7.4091, 7.4115, 7.4144, 7.4155, 7.4165, 7.4159, 7.4156, 7.4167, 7.4167, 7.416, 7.4154, 7.4148, 7.4142, 7.4137, 7.4147, 7.4141, 7.4135, 7.413, 7.4127, 7.4121, 7.4115, 7.4109, 7.4119, 7.4114, 7.4108, 7.4103, 7.4099, 7.4094, 7.4089, 7.4083, 7.4077, 7.4071, 7.4082, 7.4091, 7.4102, 7.4113, 7.4107, 7.4103, 7.4113, 7.4108, 7.4104, 7.4098, 7.4113, 7.4107, 7.4101, 7.4098, 7.4093, 7.4104, 7.4115, 7.4126, 7.4136, 7.413, 7.4124, 7.4183, 7.418, 7.4175, 7.4186, 7.418, 7.4174, 7.4168, 7.4162, 7.4162, 7.4157, 7.4152, 7.4147, 7.4141, 7.4175, 7.4193, 7.4187, 7.4187, 7.4183, 7.4178, 7.4173, 7.4183, 7.4176, 7.4169, 7.4179, 7.4176, 7.417, 7.4164, 7.4159, 7.4171, 7.4174, 7.4185, 7.418, 7.4173, 7.4177, 7.4188, 7.4199, 7.4208, 7.4204, 7.4204, 7.42, 7.4193, 7.4202, 7.4195, 7.4193, 7.4191, 7.4185, 7.4197, 7.4191, 7.4185, 7.418, 7.4174, 7.4168, 7.4163, 7.4159, 7.4185, 7.418, 7.4175, 7.417, 7.4165, 7.4159, 7.4152, 7.4147, 7.416, 7.4155, 7.4166, 7.4162, 7.4156, 7.4152, 7.4147, 7.4141, 7.4135, 7.4129, 7.4123, 7.4118, 7.413, 7.411, 7.4106, 7.41, 7.4095, 7.4089, 7.4084, 7.4078, 7.4088, 7.4083, 7.408, 7.409, 7.41, 7.4096, 7.4106, 7.4102, 7.4098, 7.4092, 7.4103, 7.4097, 7.4137, 7.4147, 7.4156, 7.4153, 7.4147, 7.4141, 7.4139, 7.415, 7.416, 7.4169, 7.4163, 7.4156, 7.415, 7.4144, 7.4171, 7.4168, 7.4148, 7.4142, 7.4152, 7.4179, 7.4189, 7.4183, 7.4177, 7.4171, 7.4165, 7.4159, 7.4169, 7.4163, 7.4159, 7.417, 7.4165, 7.4145, 7.414, 7.4134, 7.413, 7.4126, 7.4121, 7.4115, 7.4109, 7.4103, 7.4097, 7.4108, 7.4128, 7.4122, 7.4116, 7.4119, 7.4114, 7.4123, 7.4117, 7.4128, 7.4124, 7.4104, 7.4098, 7.4078, 7.4072, 7.4067, 7.4062, 7.4056, 7.4052, 7.4047, 7.4042, 7.4038, 7.4018, 7.4059, 7.4071, 7.4081, 7.4076, 7.407, 7.4064, 7.4062, 7.4058, 7.4062, 7.4059, 7.4054, 7.4053, 7.4064, 7.4059, 7.4068, 7.4079, 7.4074, 7.4068, 7.4063, 7.4043, 7.4037, 7.4032, 7.4028, 7.4022, 7.4029, 7.4023, 7.4018, 7.4012, 7.4009, 7.4004, 7.4, 7.4015, 7.4042, 7.404, 7.405, 7.4044, 7.4039, 7.4033, 7.4028, 7.4008, 7.4004, 7.3999, 7.3993, 7.3989, 7.3983, 7.3977, 7.3971, 7.3981, 7.3991, 7.3989, 7.3984, 7.3979, 7.3973, 7.3957, 7.3951, 7.3946, 7.3957, 7.3968, 7.3964, 7.3959, 7.3961, 7.3966, 7.3976, 7.3973, 7.3968, 7.3979, 7.3977, 7.3972, 7.3968, 7.3966, 7.396, 7.3955, 7.395, 7.3944, 7.3939, 7.3933, 7.3927, 7.3921, 7.3915, 7.391, 7.3935, 7.3934, 7.3949, 7.3945, 7.3939, 7.3949, 7.3943, 7.3953, 7.3949, 7.3943, 7.3952, 7.3947, 7.3941, 7.3935, 7.3929, 7.3949, 7.3946, 7.3942, 7.3938, 7.3934, 7.3928, 7.3927, 7.3937, 7.3931, 7.3926, 7.3937, 7.3932, 7.3928, 7.3942, 7.3938, 7.3934, 7.3944, 7.394, 7.395, 7.3959, 7.3953, 7.3963, 7.3961, 7.397, 7.3983, 7.3978, 7.3974, 7.3968, 7.3963, 7.3973, 7.3985, 7.3979, 7.3976, 7.3986, 7.3981, 7.3976, 7.3986, 7.3982, 7.3978, 7.3972, 7.3968, 7.3962, 7.3956, 7.3966, 7.3974, 7.3969, 7.3979, 7.3975, 7.397, 7.3966, 7.396, 7.3955, 7.3967, 7.3963, 7.3959, 7.3955, 7.3967, 7.3962, 7.3973, 7.3969, 7.3965, 7.3961, 7.3956, 7.3951, 7.3945, 7.394, 7.3936, 7.3931, 7.3927, 7.3922, 7.3916, 7.3926, 7.3921, 7.3916, 7.3912, 7.3906, 7.3902, 7.3896, 7.389, 7.3899, 7.391, 7.3904, 7.3898, 7.3893, 7.3888, 7.3897, 7.3893, 7.3888, 7.3899, 7.3894, 7.3888, 7.3883, 7.3878, 7.3888, 7.3882, 7.3877, 7.3873, 7.3869, 7.3913, 7.3908, 7.3906, 7.3915, 7.391, 7.3904, 7.3899, 7.3908, 7.3903, 7.3897, 7.3906, 7.3903, 7.3898, 7.3892, 7.3889, 7.3884, 7.3924, 7.3918, 7.3959, 7.3969, 7.3963, 7.3959, 7.3953, 7.3949, 7.4043, 7.4052, 7.4048, 7.4042, 7.4052, 7.4047, 7.4043, 7.4038, 7.4047, 7.4042, 7.4037, 7.4035, 7.4029, 7.4025, 7.4021, 7.4018, 7.4012, 7.4009, 7.4004, 7.3999, 7.3995, 7.3991, 7.3988, 7.3992, 7.3986, 7.4003, 7.4006, 7.4008, 7.4024, 7.4034, 7.403, 7.4045, 7.4042, 7.4038, 7.4034, 7.4031, 7.4027, 7.4023, 7.4018, 7.4, 7.3997, 7.4006, 7.3988, 7.3983, 7.3978, 7.3988, 7.3982, 7.3978, 7.3975, 7.3969, 7.3951, 7.396, 7.3966, 7.3975, 7.3971, 7.398, 7.3977, 7.3972, 7.3967, 7.3963, 7.3958, 7.3953, 7.3961, 7.3946, 7.3962, 7.3962, 7.3958, 7.3968, 7.3964, 7.3959, 7.3955, 7.3952, 7.4007, 7.4002, 7.4001, 7.3996, 7.3991, 7.3985, 7.3981, 7.3976, 7.3972, 7.3967, 7.3963, 7.3958, 7.3953, 7.3948, 7.3944, 7.3939, 7.3936, 7.3931, 7.3927, 7.3922, 7.3931, 7.3928, 7.3937, 7.3932, 7.3927, 7.3923, 7.3918, 7.3914, 7.391, 7.3904, 7.39, 7.3897, 7.3893, 7.3888, 7.3886, 7.3881, 7.3912, 7.3908, 7.3904, 7.3917, 7.3912, 7.3921, 7.3915, 7.391, 7.3904, 7.39, 7.3894, 7.3903, 7.3913, 7.3908, 7.3902, 7.3897, 7.3892, 7.3874, 7.3869, 7.3864, 7.386, 7.3855, 7.3852, 7.3861, 7.3871, 7.3866, 7.3862, 7.3871, 7.3866, 7.3861, 7.3857, 7.3853, 7.3848, 7.3844, 7.3838, 7.3849, 7.3845, 7.384, 7.3834, 7.3828, 7.3828, 7.3825, 7.3848, 7.3844, 7.3839, 7.3834, 7.3858, 7.3853, 7.3848, 7.3844, 7.3859, 7.386, 7.3871, 7.3867, 7.3865, 7.386, 7.3856, 7.3851, 7.3846, 7.3828, 7.3837, 7.3851, 7.3846, 7.3842, 7.384, 7.3836, 7.3846, 7.3841, 7.3836, 7.3831, 7.3826, 7.3822, 7.3817, 7.3812, 7.3806, 7.3791, 7.3801, 7.3797, 7.3793, 7.3801, 7.3809, 7.3838, 7.3834, 7.3829, 7.3826, 7.3827, 7.3822, 7.3817, 7.3813, 7.3809, 7.3821, 7.3818, 7.3812, 7.3821, 7.3816, 7.3825, 7.3819, 7.3815, 7.381, 7.3805, 7.38, 7.381, 7.3805, 7.38, 7.3796, 7.3791, 7.3814, 7.3811, 7.3806, 7.3802, 7.3812, 7.3808, 7.3791, 7.3786, 7.3782, 7.3778, 7.3787, 7.3788, 7.377, 7.3766, 7.3776, 7.3771, 7.3781, 7.3776, 7.3773, 7.3768, 7.3764, 7.3761, 7.377, 7.3773, 7.3768, 7.3765, 7.376, 7.3808, 7.3803, 7.3798, 7.3793, 7.3787, 7.3782, 7.378, 7.3788, 7.3782, 7.3791, 7.38, 7.3795, 7.3805, 7.38, 7.3795, 7.3805, 7.3805, 7.3816, 7.3812, 7.3807, 7.3802, 7.3799, 7.3795, 7.3803, 7.3798, 7.3825, 7.3823, 7.382, 7.3815, 7.381, 7.3807, 7.3803, 7.3799, 7.3796, 7.3806, 7.3802, 7.3811, 7.3807, 7.3815, 7.3825, 7.382, 7.3818, 7.3815, 7.3811, 7.3797, 7.3793, 7.3789, 7.3786, 7.3781, 7.3776, 7.3771, 7.3807, 7.3803, 7.3801, 7.3797, 7.3807, 7.3805, 7.3801, 7.3797, 7.3806, 7.3801, 7.3796, 7.3806, 7.3816, 7.3811, 7.3807, 7.3816, 7.3811, 7.3821, 7.383, 7.3826, 7.3822, 7.3818, 7.3817, 7.3813, 7.3812, 7.3808, 7.3805, 7.3801, 7.3809, 7.3804, 7.38, 7.3797, 7.3806, 7.3803, 7.3798, 7.3806, 7.3801, 7.3797, 7.3807, 7.3817, 7.3812, 7.3808, 7.3803, 7.38, 7.3796, 7.3806, 7.3802, 7.3797, 7.3792, 7.3801, 7.3796, 7.3791, 7.3787, 7.3784, 7.3793, 7.3789, 7.3786, 7.3782, 7.3777, 7.3772, 7.3768, 7.3765, 7.3774, 7.3769, 7.3766, 7.3774, 7.377, 7.3765, 7.3761, 7.3756, 7.3739, 7.3734, 7.3731, 7.3726, 7.3722, 7.3717, 7.3712, 7.3708, 7.3704, 7.37, 7.3696, 7.3691, 7.3686, 7.3681, 7.3691, 7.3686, 7.3696, 7.3705, 7.3714, 7.371, 7.3707, 7.3703, 7.3713, 7.3697, 7.3692, 7.3698, 7.3694, 7.3703, 7.3699, 7.3696, 7.3692, 7.3728, 7.3736, 7.3759, 7.3793, 7.3788, 7.3783, 7.3779, 7.3776, 7.3771, 7.3766, 7.375, 7.3759, 7.3821, 7.3829, 7.3826, 7.3822, 7.3817, 7.3813, 7.3809, 7.3818, 7.3814, 7.3797, 7.3792, 7.3788, 7.3784, 7.3779, 7.3818, 7.3816, 7.3825, 7.3821, 7.3816, 7.3813, 7.3809, 7.3819, 7.3815, 7.381, 7.3819, 7.3816, 7.3811, 7.3808, 7.3816, 7.3812, 7.3809, 7.3806, 7.3801, 7.3797, 7.3806, 7.3804, 7.38, 7.3796, 7.3838, 7.3834, 7.3829, 7.3825, 7.3834, 7.383, 7.3827, 7.3822, 7.383, 7.3826, 7.3822, 7.3817, 7.3826, 7.3821, 7.383, 7.3839, 7.3834, 7.383, 7.3826, 7.3823, 7.3819, 7.3828, 7.3824, 7.3823, 7.3818, 7.3814, 7.3823, 7.3842, 7.3837, 7.3834, 7.3842, 7.3838, 7.3838, 7.3834, 7.3842, 7.384, 7.3836, 7.3834, 7.3822, 7.3817, 7.3813, 7.381, 7.3793, 7.3815, 7.381, 7.3818, 7.3854, 7.385, 7.3848, 7.3843, 7.3842, 7.3858, 7.3854, 7.3863, 7.3886, 7.3916, 7.3901, 7.3897, 7.3893, 7.3902, 7.3898, 7.3894, 7.389, 7.3886, 7.3883, 7.388, 7.3875, 7.387, 7.3868, 7.3864, 7.3865, 7.3848, 7.3844, 7.3853, 7.3862, 7.3858, 7.3854, 7.3852, 7.3847, 7.3844, 7.3852, 7.3847, 7.3844, 7.3839, 7.3836, 7.3849, 7.3844, 7.384, 7.3848, 7.3845, 7.3854, 7.3849, 7.3845, 7.3882, 7.3883, 7.3883, 7.3879, 7.3887, 7.3895, 7.3906, 7.389, 7.3886, 7.3881, 7.3876, 7.3872, 7.3881, 7.3877, 7.3873, 7.3883, 7.3879, 7.3875, 7.387, 7.3866, 7.3862, 7.3859, 7.3867, 7.3862, 7.3857, 7.3869, 7.3865, 7.3864, 7.3859, 7.3867, 7.3862, 7.3857, 7.3853, 7.3861, 7.3844, 7.384, 7.3835, 7.3858, 7.3854, 7.385, 7.3846, 7.3856, 7.3843, 7.3853, 7.385, 7.3846, 7.3842, 7.3838, 7.3834, 7.3829, 7.3825, 7.382, 7.3844, 7.3839, 7.3836, 7.3832, 7.3828, 7.3825, 7.3833, 7.3831, 7.3827, 7.3823, 7.3838, 7.3834, 7.3831, 7.3828, 7.3835, 7.383, 7.3827, 7.3835, 7.3832, 7.3827, 7.3824, 7.382, 7.3818, 7.3831, 7.3827, 7.3823, 7.3808, 7.3804, 7.3826, 7.3822, 7.383, 7.3825, 7.3822, 7.383, 7.3826, 7.3822, 7.3819, 7.3803, 7.3811, 7.3806, 7.3814, 7.3811, 7.3806, 7.3814, 7.3823, 7.3821, 7.3865, 7.3875, 7.3872, 7.388, 7.3888, 7.3884, 7.388, 7.3875, 7.3859, 7.3855, 7.3839, 7.3848, 7.3845, 7.3842, 7.3838, 7.3833, 7.3828, 7.3848, 7.3893, 7.3889, 7.3884, 7.3881, 7.3941, 7.3936, 7.3933, 7.3929, 7.3926, 7.3922, 7.3918, 7.3926, 7.3922, 7.392, 7.3916, 7.3919, 7.3947, 7.3943, 7.394, 7.3936, 7.392, 7.3916, 7.3911, 7.3908, 7.3905, 7.3901, 7.3898, 7.3893, 7.3889, 7.3884, 7.3894, 7.3891, 7.3899, 7.3895, 7.3891, 7.39, 7.3896, 7.3905, 7.3902, 7.3898, 7.3894, 7.3891, 7.3888, 7.3884, 7.388, 7.3879, 7.3876, 7.3884, 7.3892, 7.39, 7.3898, 7.3893, 7.3888, 7.3883, 7.3878, 7.3873, 7.387, 7.3877, 7.3873, 7.3881, 7.3879, 7.3887, 7.3883, 7.3881, 7.387, 7.386, 7.3871, 7.387, 7.3892, 7.3888, 7.3884, 7.3879, 7.3874, 7.3869, 7.3877, 7.3873, 7.3882, 7.3877, 7.3891, 7.3887, 7.3883, 7.3879, 7.3875, 7.3859, 7.3892, 7.3888, 7.3888, 7.3896, 7.3892, 7.3937, 7.3933, 7.3928, 7.3912, 7.3907, 7.3906, 7.3901, 7.3897, 7.3894, 7.3902, 7.3898, 7.3894, 7.3894, 7.391, 7.3906, 7.389, 7.3899, 7.3895, 7.389, 7.3886, 7.3893, 7.3926, 7.3934, 7.3929, 7.3949, 7.3958, 7.3955, 7.395, 7.3957, 7.3954, 7.3974, 7.397, 7.3978, 7.3973, 7.3968, 7.3976, 7.4052, 7.4059, 7.4054, 7.4049, 7.4044, 7.404, 7.4025, 7.402, 7.4016, 7.4012, 7.4008, 7.4004, 7.3999, 7.4006, 7.4014, 7.401, 7.4017, 7.4026, 7.4021, 7.4043, 7.4028, 7.4024, 7.4021, 7.4034, 7.4031, 7.4026, 7.4021, 7.4017, 7.4012, 7.4021, 7.4019, 7.4015, 7.4014, 7.4009, 7.4049, 7.4044, 7.4041, 7.4036, 7.4032, 7.4028, 7.4036, 7.4033, 7.4029, 7.4025, 7.4022, 7.4019, 7.4015, 7.4012, 7.4007, 7.4014, 7.4011, 7.4007, 7.4002, 7.401, 7.4008, 7.4004, 7.4012, 7.4008, 7.4005, 7.399, 7.3986, 7.3971, 7.3971, 7.3972, 7.398, 7.3977, 7.3974, 7.3971, 7.3979, 7.3987, 7.3983, 7.3979, 7.3974, 7.397, 7.3966, 7.3962, 7.3957, 7.3966, 7.3961, 7.3957, 7.3953, 7.3952, 7.3948, 7.3944, 7.3941, 7.3939, 7.3946, 7.3943, 7.3938, 7.3934, 7.3942, 7.3937, 7.3944, 7.3939, 7.3924, 7.3921, 7.3917, 7.3913, 7.3911, 7.3921, 7.3916, 7.3911, 7.3906, 7.3901, 7.3898, 7.3906, 7.3904, 7.39, 7.3895, 7.3892, 7.3887, 7.3895, 7.3903, 7.3911, 7.3907, 7.3904, 7.39, 7.3914, 7.391, 7.3907, 7.3914, 7.3911, 7.3909, 7.3905, 7.3912, 7.3909, 7.3916, 7.3911, 7.3907, 7.3903, 7.3899, 7.3894, 7.3893, 7.3889, 7.3896, 7.3904, 7.3925, 7.3922, 7.3918, 7.3913, 7.391, 7.3906, 7.3902, 7.3898, 7.3894, 7.3901, 7.3909, 7.3905, 7.3903, 7.3899, 7.3907, 7.3904, 7.3911, 7.3907, 7.3903, 7.3901, 7.3897, 7.3893, 7.3892, 7.3888, 7.3884, 7.388, 7.3913, 7.3919, 7.3939, 7.3937, 7.3933, 7.399, 7.3987, 7.3985, 7.3981, 7.3977, 7.3974, 7.3974, 7.3969, 7.3966, 7.3962, 7.3959, 7.3956, 7.3951, 7.3947, 7.3944, 7.394, 7.3935, 7.393, 7.3938, 7.3947, 7.3955, 7.395, 7.3968, 7.3966, 7.3973, 7.397, 7.3971, 7.3983, 7.398, 7.3978, 7.3985, 7.3997, 7.3994, 7.4012, 7.4008, 7.4008, 7.4005, 7.4026, 7.4023, 7.4018, 7.4026, 7.4022, 7.4019, 7.4015, 7.4023, 7.4019, 7.4004, 7.4012, 7.4007, 7.4003, 7.3999, 7.4007, 7.4003, 7.3998, 7.4007, 7.4004, 7.4, 7.3996, 7.3992, 7.3989, 7.3986, 7.3982, 7.3979, 7.3976, 7.3984, 7.3981, 7.3979, 7.3986, 7.3994, 7.3982, 7.3967, 7.3966, 7.3962, 7.3959, 7.3955, 7.3951, 7.3947, 7.3943, 7.3938, 7.3924, 7.3923, 7.392, 7.3916, 7.3912, 7.3908, 7.3904, 7.3902, 7.3898, 7.3887, 7.3888, 7.3884, 7.3891, 7.3887, 7.3883, 7.389, 7.3895, 7.389, 7.3886, 7.3894, 7.3892, 7.3891, 7.3889, 7.3903, 7.3899, 7.3894, 7.3889, 7.3885, 7.3881, 7.3879, 7.3886, 7.3882, 7.3879, 7.3875, 7.3883, 7.3879, 7.3886, 7.3886, 7.3893, 7.3891, 7.3891, 7.3887, 7.3887, 7.3883, 7.3879, 7.3875, 7.3871, 7.3857, 7.3864, 7.386, 7.3856, 7.3852, 7.3859, 7.3855, 7.385, 7.3846, 7.3842, 7.3839, 7.3904, 7.39, 7.3907, 7.3904, 7.393, 7.3931, 7.3927, 7.3923, 7.3965, 7.3961, 7.397, 7.3966, 7.3962, 7.3959, 7.3954, 7.395, 7.3946, 7.3953, 7.3951, 7.3947, 7.3943, 7.3939, 7.3935, 7.3942, 7.394, 7.3937, 7.3933, 7.3929, 7.3926, 7.3933, 7.394, 7.3936, 7.3943, 7.395, 7.3957, 7.3954, 7.3952, 7.3947, 7.3943, 7.395, 7.3958, 7.3954, 7.3951, 7.3967, 7.3998, 7.4006, 7.4013, 7.4009, 7.4016, 7.4013, 7.4011, 7.4007, 7.4014, 7.401, 7.4006, 7.4013, 7.4009, 7.4028, 7.4024, 7.402, 7.4027, 7.4023, 7.4019, 7.4016, 7.4013, 7.401, 7.4008, 7.4016, 7.4012, 7.4008, 7.4015, 7.4011, 7.4008, 7.4007, 7.4016, 7.4012, 7.4009, 7.4005, 7.4002, 7.3998, 7.3995, 7.3991, 7.3987, 7.3983, 7.3979, 7.3975, 7.3972, 7.3968, 7.3976, 7.3972, 7.3978, 7.3974, 7.3983, 7.3979, 7.3976, 7.3974, 7.3982, 7.4041, 7.4037, 7.4045, 7.4053, 7.4049, 7.4045, 7.4041, 7.4049, 7.4046, 7.4043, 7.4041, 7.4048, 7.4046, 7.4054, 7.405, 7.4046, 7.4043, 7.404, 7.4036, 7.4035, 7.4031, 7.4028, 7.4024, 7.4032, 7.4039, 7.4035, 7.4042, 7.4049, 7.4045, 7.4052, 7.4048, 7.4046, 7.4052, 7.4048, 7.4045, 7.4041, 7.4038, 7.4034, 7.403, 7.4027, 7.4023, 7.4031, 7.4038, 7.4034, 7.4031, 7.4028, 7.4014, 7.401, 7.4006, 7.4003, 7.3999, 7.3995, 7.3992, 7.3999, 7.3995, 7.3991, 7.3977, 7.3973, 7.398, 7.3977, 7.3984, 7.398, 7.3987, 7.3994, 7.4001, 7.3997, 7.3993, 7.399, 7.3986, 7.3984, 7.398, 7.3987, 7.3983, 7.3979, 7.3975, 7.3982, 7.3979, 7.3976, 7.3973, 7.3969, 7.3965, 7.3961, 7.3958, 7.3979, 7.3979, 7.3976, 7.3974, 7.398, 7.3979, 7.3975, 7.3971, 7.3957, 7.3964, 7.3971, 7.3988, 7.3986, 7.3973, 7.397, 7.3967, 7.3968, 7.3957, 7.3955, 7.3952, 7.3959, 7.3956, 7.3953, 7.395, 7.3946, 7.3943, 7.394, 7.3939, 7.3935, 7.3932, 7.3929, 7.3925, 7.3921, 7.3917, 7.3913, 7.391, 7.3907, 7.3914, 7.3911, 7.3908, 7.3894, 7.389, 7.3886, 7.3883, 7.3891, 7.3898, 7.3895, 7.3891, 7.3888, 7.3895, 7.3891, 7.3888, 7.3897, 7.3893, 7.389, 7.3898, 7.3908, 7.3904, 7.39, 7.3897, 7.3893, 7.3899, 7.3907, 7.3903, 7.391, 7.3907, 7.3894, 7.3935, 7.3954, 7.3951, 7.3957, 7.3953, 7.396, 7.3957, 7.3953, 7.3951, 7.3947, 7.3944, 7.3941, 7.3938, 7.3924, 7.3921, 7.3918, 7.3915, 7.3911, 7.3919, 7.3916, 7.3912, 7.392, 7.3918, 7.3915, 7.3912, 7.3908, 7.3905, 7.3902, 7.3909, 7.3916, 7.3916, 7.3924, 7.3921, 7.3917, 7.396, 7.3956, 7.3963, 7.397, 7.3977, 7.3973, 7.3969, 7.3976, 7.3972, 7.3968, 7.3975, 7.3971, 7.3967, 7.3973, 7.3969, 7.3966, 7.3973, 7.3969, 7.3965, 7.3972, 7.3979, 7.3976, 7.3982, 7.398, 7.3987, 7.3984, 7.3992, 7.3988, 7.3994, 7.4008, 7.4006, 7.4035, 7.4042, 7.4038, 7.4035, 7.4031, 7.4028, 7.4025, 7.4032, 7.4029, 7.4025, 7.4031, 7.4038, 7.4035, 7.4042, 7.405, 7.4048, 7.4054, 7.4051, 7.4047, 7.4043, 7.405, 7.4056, 7.4053, 7.4049, 7.4047, 7.4044, 7.404, 7.4037, 7.4034, 7.408, 7.4078, 7.4074, 7.4071, 7.4067, 7.4064, 7.4075, 7.4072, 7.409, 7.4087, 7.4084, 7.4123, 7.413, 7.4126, 7.4123, 7.413, 7.4127, 7.4124, 7.4131, 7.4127, 7.4134, 7.413, 7.4126, 7.4133, 7.4129, 7.4138, 7.4134, 7.4142, 7.4149, 7.4156, 7.4153, 7.416, 7.4157, 7.4153, 7.415, 7.4157, 7.4154, 7.415, 7.4147, 7.4144, 7.414, 7.4136, 7.4133, 7.4131, 7.4128, 7.4124, 7.412, 7.4129, 7.4125, 7.4121, 7.4108, 7.4137, 7.4133, 7.4129, 7.4139, 7.4136, 7.4142, 7.4139, 7.4148, 7.4145, 7.4141, 7.4148, 7.4144, 7.415, 7.4146, 7.4152, 7.4149, 7.4145, 7.4141, 7.4149, 7.4145, 7.4152, 7.417, 7.4166, 7.4185, 7.4191, 7.419, 7.4187, 7.4184, 7.4181, 7.4182, 7.4179, 7.4175, 7.4186, 7.4192, 7.4188, 7.4195, 7.4201, 7.42, 7.4198, 7.4194, 7.4195, 7.4192, 7.4188, 7.4185, 7.4181, 7.4187, 7.419, 7.4177, 7.4173, 7.4169, 7.4156, 7.4153, 7.4149, 7.4197, 7.4195, 7.4183, 7.4179, 7.4187, 7.4183, 7.418, 7.4176, 7.4172, 7.418, 7.4177, 7.4184, 7.4201, 7.4198, 7.4194, 7.419, 7.4187, 7.4185, 7.4182, 7.4178, 7.4185, 7.4182, 7.4179, 7.4177, 7.4174, 7.4171, 7.4168, 7.4165, 7.4162, 7.4161, 7.4166, 7.4165, 7.4161, 7.4158, 7.4155, 7.4161, 7.4167, 7.4165, 7.4164, 7.4181, 7.4178, 7.4176, 7.4184, 7.418, 7.4177, 7.4175, 7.4172, 7.4168, 7.4164, 7.4161, 7.4162, 7.4158, 7.4155, 7.4151, 7.4148, 7.4144, 7.414, 7.4127, 7.413, 7.4127, 7.4114, 7.4121, 7.4119, 7.4115, 7.4112, 7.4108, 7.4114, 7.4111, 7.4101, 7.4097, 7.4098, 7.4094, 7.409, 7.4086, 7.4082, 7.4079, 7.4085, 7.4082, 7.4079, 7.4076, 7.4082, 7.4079, 7.4076, 7.4074, 7.408, 7.4077, 7.4074, 7.4081, 7.4077, 7.4074, 7.407, 7.4068, 7.4064, 7.4061, 7.4057, 7.4053, 7.4051, 7.4047, 7.4043, 7.403, 7.4026, 7.4024, 7.4022, 7.4028, 7.4025, 7.4028, 7.4034, 7.4045, 7.4041, 7.4041, 7.4028, 7.4024, 7.4021, 7.4019, 7.4015, 7.4003, 7.3999, 7.3996, 7.3993, 7.3994, 7.399, 7.3987, 7.3983, 7.398, 7.3987, 7.3983, 7.398, 7.3986, 7.3982, 7.3978, 7.3984, 7.398, 7.3986, 7.3985, 7.3983, 7.3981, 7.3987, 7.3993, 7.4003, 7.4038, 7.4034, 7.4033, 7.4034, 7.4032, 7.4028, 7.4024, 7.402, 7.4016, 7.4013, 7.404, 7.4036, 7.4032, 7.4038, 7.4034, 7.4032, 7.4038, 7.4034, 7.403, 7.4026, 7.4043, 7.404, 7.4037, 7.4044, 7.404, 7.4095, 7.4091, 7.4088, 7.4086, 7.4083, 7.408, 7.4079, 7.4075, 7.4071, 7.4067, 7.4064, 7.406, 7.406, 7.4066, 7.4074, 7.4071, 7.4068, 7.4066, 7.4073, 7.4079, 7.4077, 7.4073, 7.407, 7.4066, 7.4063, 7.4062, 7.4059, 7.4056, 7.4082, 7.4078, 7.4065, 7.4061, 7.4058, 7.4064, 7.4061, 7.406, 7.4057, 7.4054, 7.405, 7.4046, 7.4043, 7.4039, 7.4037, 7.4035, 7.4032, 7.403, 7.4027, 7.4034, 7.4032, 7.404, 7.4038, 7.4035, 7.4042, 7.4039, 7.4035, 7.4041, 7.4039, 7.4036, 7.4034, 7.4032, 7.4039, 7.4036, 7.4033, 7.403, 7.4027, 7.4023, 7.4019, 7.4017, 7.4014, 7.4002, 7.3998, 7.3994, 7.399, 7.3986, 7.3995, 7.4003, 7.3999, 7.3996, 7.3994, 7.399, 7.3986, 7.3983, 7.399, 7.3986, 7.3992, 7.3988, 7.3975, 7.3981, 7.3978, 7.3984, 7.3991, 7.3998, 7.4004, 7.4, 7.3996, 7.4002, 7.3998, 7.3994, 7.3991, 7.3989, 7.3986, 7.3974, 7.397, 7.3969, 7.3975, 7.3981, 7.3977, 7.3974, 7.397, 7.3979, 7.3977, 7.3974, 7.3971, 7.3971, 7.3968, 7.3955, 7.3953, 7.3941, 7.3939, 7.3935, 7.3932, 7.3928, 7.3926, 7.3935, 7.3933, 7.3931, 7.3928, 7.3925, 7.3924, 7.3941, 7.3938, 7.3946, 7.3943, 7.394, 7.3937, 7.3933, 7.393, 7.3926, 7.3923, 7.392, 7.3916, 7.3913, 7.3909, 7.3906, 7.3912, 7.3909, 7.3905, 7.3912, 7.3918, 7.3915, 7.3903, 7.3901, 7.3898, 7.3895, 7.3891, 7.3897, 7.3894, 7.3892, 7.3889, 7.3888, 7.3934, 7.3931, 7.3927, 7.3923, 7.392, 7.3917, 7.3914, 7.391, 7.3907, 7.3904, 7.3902, 7.39, 7.3897, 7.3903, 7.3909, 7.3916, 7.3913, 7.392, 7.3919, 7.3926, 7.3933, 7.3949, 7.3956, 7.3954, 7.3951, 7.3948, 7.3946, 7.3981, 7.3977, 7.3983, 7.398, 7.3986, 7.3982, 7.3978, 7.3985, 7.3973, 7.3969, 7.3977, 7.3983, 7.398, 7.3976, 7.3983, 7.3979, 7.3976, 7.3972, 7.3978, 7.3976, 7.3973, 7.3979, 7.3977, 7.3983, 7.399, 7.3988, 7.3995, 7.3991, 7.3991, 7.3987, 7.3984, 7.3982, 7.3981, 7.3979, 7.3985, 7.3987, 7.3983, 7.3983, 7.3981, 7.3979, 7.3977, 7.3965, 7.3961, 7.3973, 7.397, 7.3967, 7.3954, 7.395, 7.3957, 7.3953, 7.3949, 7.3946, 7.3942, 7.3948, 7.3965, 7.3971, 7.3977, 7.3974, 7.3974, 7.397, 7.3968, 7.3966, 7.3962, 7.3968, 7.3978, 7.3975, 7.3976, 7.3964, 7.3961, 7.3957, 7.3945, 7.3942, 7.3938, 7.3952, 7.3963, 7.3959, 7.3955, 7.3952, 7.3949, 7.3947, 7.3954, 7.396, 7.3958, 7.3946, 7.3943, 7.3951, 7.3948, 7.3955, 7.3947, 7.3944, 7.394, 7.3937, 7.3934, 7.3932, 7.3929, 7.3926, 7.3923, 7.3919, 7.3916, 7.3914, 7.3911, 7.3908, 7.3904, 7.3901, 7.3897, 7.3894, 7.3891, 7.3893, 7.39, 7.3906, 7.3913, 7.3901, 7.3905, 7.3904, 7.3911, 7.3908, 7.3904, 7.3922, 7.3919, 7.3918, 7.3906, 7.3894, 7.3882, 7.3878, 7.3885, 7.3882, 7.387, 7.3866, 7.3862, 7.3874, 7.3871, 7.3867, 7.3865, 7.3861, 7.3858, 7.3855, 7.3852, 7.3848, 7.3845, 7.3841, 7.3837, 7.3843, 7.3849, 7.3846, 7.3843, 7.3848, 7.3854, 7.3851, 7.3848, 7.3863, 7.386, 7.3867, 7.3873, 7.3881, 7.3888, 7.3885, 7.3903, 7.3902, 7.3898, 7.3904, 7.391, 7.3908, 7.3914, 7.3912, 7.3908, 7.3905, 7.3902, 7.39, 7.3907, 7.3904, 7.3912, 7.3909, 7.3908, 7.3905, 7.3901, 7.3898, 7.3905, 7.3901, 7.39, 7.3898, 7.3896, 7.3901, 7.3898, 7.3896, 7.3884, 7.3881, 7.3884, 7.388, 7.3876, 7.3872, 7.3869, 7.3866, 7.3863, 7.3859, 7.3856, 7.3844, 7.3841, 7.3838, 7.3846, 7.3843, 7.3842, 7.3839, 7.3844, 7.3859, 7.3855, 7.3851, 7.3847, 7.3844, 7.3841, 7.3837, 7.3834, 7.3831, 7.3828, 7.3824, 7.3866, 7.3862, 7.3858, 7.3855, 7.3861, 7.3859, 7.3847, 7.3844, 7.3841, 7.3838, 7.3835, 7.3832, 7.3833, 7.383, 7.383, 7.3826, 7.3822, 7.3819, 7.3816, 7.3813, 7.3809, 7.3805, 7.3802, 7.38, 7.3803, 7.38, 7.3788, 7.3785, 7.3782, 7.3779, 7.3785, 7.3783, 7.378, 7.3776, 7.3774, 7.3771, 7.3768, 7.3767, 7.3763, 7.3764, 7.3753, 7.3759, 7.3756, 7.3766, 7.3763, 7.376, 7.3759, 7.3768, 7.3765, 7.3762, 7.3768, 7.3764, 7.3761, 7.3758, 7.3754, 7.375, 7.3746, 7.3752, 7.3749, 7.3747, 7.3743, 7.3748, 7.3755, 7.3761, 7.3758, 7.3756, 7.3753, 7.3759, 7.3757, 7.3754, 7.375, 7.3747, 7.3744, 7.375, 7.3747, 7.3744, 7.3741, 7.3738, 7.3728, 7.3735, 7.3733, 7.3732, 7.3739, 7.3744, 7.3751, 7.3748, 7.3745, 7.3743, 7.3742, 7.3741, 7.3737, 7.3734, 7.3731, 7.3729, 7.3727, 7.3733, 7.373, 7.3733, 7.373, 7.3726, 7.3723, 7.3721, 7.3719, 7.3715, 7.3711, 7.3709, 7.3715, 7.3733, 7.373, 7.3735, 7.3732, 7.373, 7.3729, 7.3735, 7.3733, 7.373, 7.3735, 7.3732, 7.3739, 7.3736, 7.3744, 7.3745, 7.3743, 7.374, 7.3738, 7.3727, 7.3733, 7.373, 7.3736, 7.3737, 7.3734, 7.374, 7.3746, 7.3745, 7.3744, 7.374, 7.3738, 7.3726, 7.3723, 7.3719, 7.3716, 7.3713, 7.3718, 7.3714, 7.3711, 7.3708, 7.3726, 7.3723, 7.372, 7.3709, 7.3705, 7.3701, 7.3698, 7.3704, 7.371, 7.3707, 7.3715, 7.372, 7.3717, 7.3715, 7.3713, 7.371, 7.3707, 7.3696, 7.3701, 7.3708, 7.3705, 7.3703, 7.37, 7.3698, 7.3705, 7.3712, 7.3708, 7.3715, 7.3712, 7.3709, 7.3706, 7.3712, 7.3709, 7.3708, 7.3714, 7.3711, 7.3708, 7.3706, 7.3703, 7.3709, 7.3709, 7.3707, 7.3704, 7.3702, 7.3708, 7.3706, 7.3703, 7.3709, 7.3716, 7.3713, 7.371, 7.3707, 7.3712, 7.3709, 7.3706, 7.3704, 7.3703, 7.37, 7.3699, 7.3695, 7.3701, 7.3728, 7.3759, 7.3756, 7.3753, 7.375, 7.3793, 7.379, 7.3787, 7.3784, 7.3786, 7.3783, 7.3781, 7.3779, 7.3776, 7.3773, 7.377, 7.3767, 7.3764, 7.3761, 7.3767, 7.3763, 7.376, 7.3757, 7.3763, 7.376, 7.3757, 7.3762, 7.3766, 7.3763, 7.3766, 7.3764, 7.3763, 7.376, 7.3758, 7.3756, 7.3753, 7.377, 7.3767, 7.3767, 7.3764, 7.3768, 7.3803, 7.3801, 7.3798, 7.3804, 7.3801, 7.3798, 7.38, 7.3798, 7.3795, 7.3802, 7.3799, 7.3796, 7.3801, 7.3807, 7.3804, 7.3801, 7.3807, 7.3804, 7.3801, 7.3798, 7.3816, 7.3814, 7.3813, 7.382, 7.3817, 7.3814, 7.3812, 7.3804, 7.3803, 7.3799, 7.3796, 7.3802, 7.3808, 7.3805, 7.3802, 7.3799, 7.3796, 7.3793, 7.379, 7.3788, 7.3785, 7.3782, 7.3779, 7.3776, 7.3773, 7.377, 7.3768, 7.3765, 7.379, 7.3797, 7.3795, 7.3792, 7.3789, 7.3787, 7.3792, 7.3798, 7.3795, 7.3783, 7.3781, 7.378, 7.3798, 7.3795, 7.3792, 7.3789, 7.3786, 7.3783, 7.3782, 7.3783, 7.378, 7.379, 7.3787, 7.3784, 7.3774, 7.378, 7.3777, 7.3783, 7.3781, 7.3781, 7.3787, 7.3793, 7.379, 7.3786, 7.3782, 7.3787, 7.3785, 7.3782, 7.3779, 7.3784, 7.3781, 7.3778, 7.3775, 7.3772, 7.3769, 7.3775, 7.3781, 7.3778, 7.3775, 7.3773, 7.3762, 7.3759, 7.3755, 7.3752, 7.3758, 7.3756, 7.3753, 7.3752, 7.3749, 7.3755, 7.3753, 7.3759, 7.3765, 7.3762, 7.3759, 7.3755, 7.3761, 7.3767, 7.3764, 7.3771, 7.3778, 7.3776, 7.3783, 7.378, 7.3787, 7.3796, 7.3787, 7.3784, 7.379, 7.3781, 7.3771, 7.3761, 7.3766, 7.3763, 7.376, 7.3776, 7.3775, 7.3773, 7.377, 7.3776, 7.3778, 7.3776, 7.3783, 7.3788, 7.3798, 7.3795, 7.3792, 7.3789, 7.3798, 7.3795, 7.3814, 7.3811, 7.3808, 7.3815, 7.3812, 7.3809, 7.3807, 7.3807, 7.3805, 7.3802, 7.3809, 7.3807, 7.3805, 7.3804, 7.381, 7.3807, 7.3796, 7.3803, 7.3792, 7.3789, 7.3786, 7.3784, 7.3781, 7.3786, 7.3783, 7.379, 7.3796, 7.3794, 7.3791, 7.3797, 7.3794, 7.3791, 7.3789, 7.3786, 7.3792, 7.379, 7.3788, 7.3786, 7.3783, 7.378, 7.3777, 7.3775, 7.3782, 7.3781, 7.3778, 7.3775, 7.3782, 7.3779, 7.3777, 7.3775, 7.3772, 7.3769, 7.3766, 7.3763, 7.3769, 7.3774, 7.3771, 7.3769, 7.3766, 7.3764, 7.3761, 7.3758, 7.3755, 7.3752, 7.3749, 7.3747, 7.3753, 7.375, 7.3747, 7.3753, 7.3752, 7.3758, 7.3756, 7.3761, 7.3758, 7.3756, 7.3753, 7.3759, 7.3756, 7.3764, 7.3762, 7.3759, 7.3758, 7.3763, 7.3769, 7.3768, 7.377, 7.3777, 7.3775, 7.3772, 7.3768, 7.3765, 7.3763, 7.3753, 7.375, 7.3747, 7.3744, 7.3751, 7.3749, 7.3746, 7.3751, 7.3748, 7.3746, 7.3744, 7.375, 7.3747, 7.3736, 7.3742, 7.3739, 7.3745, 7.3742, 7.3739, 7.3736, 7.3733, 7.3738, 7.3736, 7.3733, 7.3731, 7.3728, 7.3726, 7.3732, 7.3738, 7.3735, 7.3749, 7.3746, 7.3751, 7.3748, 7.3753, 7.3758, 7.3755, 7.3752, 7.3749, 7.3755, 7.376, 7.3758, 7.3755, 7.3753, 7.375, 7.3747, 7.3744, 7.3749, 7.3746, 7.3743, 7.374, 7.3737, 7.3734, 7.3739, 7.3738, 7.3735, 7.3732, 7.3729, 7.3726, 7.3724, 7.3713, 7.3702, 7.3699, 7.3696, 7.3693, 7.369, 7.3701, 7.3706, 7.3703, 7.3701, 7.3698, 7.3708, 7.3705, 7.3703, 7.3704, 7.3702, 7.3708, 7.3705, 7.3702, 7.3699, 7.3696, 7.3693, 7.369, 7.3696, 7.3694, 7.3691, 7.3688, 7.3693, 7.3691, 7.3688, 7.3685, 7.3683, 7.368, 7.3678, 7.3675, 7.3673, 7.3671, 7.3661, 7.3667, 7.3672, 7.3685, 7.3683, 7.368, 7.3677, 7.3674, 7.3672, 7.3678, 7.3675, 7.3673, 7.3678, 7.3675, 7.3673, 7.367, 7.3668, 7.3659, 7.3661, 7.3658, 7.3656, 7.3654, 7.366, 7.3659, 7.3657, 7.3675, 7.3673, 7.3674, 7.3674, 7.3672, 7.367, 7.3667, 7.3664, 7.3662, 7.3659, 7.3656, 7.3653, 7.3658, 7.3655, 7.3652, 7.3649, 7.365, 7.3656, 7.3654, 7.3659, 7.3656, 7.3654, 7.3651, 7.3666, 7.3679, 7.3676, 7.3681, 7.3687, 7.3677, 7.3683, 7.368, 7.3686, 7.3683, 7.368, 7.3698, 7.3695, 7.3693, 7.3691, 7.3689, 7.3695, 7.3692, 7.3698, 7.3695, 7.3692, 7.3698, 7.3696, 7.3702, 7.3699, 7.3704, 7.3709, 7.3715, 7.3713, 7.371, 7.3715, 7.372, 7.3717, 7.3714, 7.3719, 7.3717, 7.3714, 7.3712, 7.3718, 7.3724, 7.3722, 7.3727, 7.3725, 7.373, 7.3727, 7.3731, 7.3742, 7.374, 7.3746, 7.3743, 7.3746, 7.3752, 7.3749, 7.3746, 7.3743, 7.3749, 7.3746, 7.3743, 7.374, 7.3738, 7.3735, 7.3732, 7.3729, 7.3726, 7.3732, 7.3729, 7.3735, 7.3741, 7.3738, 7.3735, 7.3748, 7.3745, 7.3742, 7.3756, 7.3769, 7.3774, 7.3772, 7.3777, 7.3783, 7.3789, 7.3786, 7.3784, 7.379, 7.3811, 7.3808, 7.3806, 7.3803, 7.3807, 7.3805, 7.3811, 7.3808, 7.3822, 7.3819, 7.3816, 7.3822, 7.3819, 7.3816, 7.3813, 7.3819, 7.3817, 7.3823, 7.382, 7.3817, 7.3831, 7.3828, 7.3825, 7.3824, 7.3821, 7.3821, 7.3812, 7.3826, 7.3835, 7.3832, 7.3837, 7.3834, 7.3839, 7.3839, 7.3837, 7.3835, 7.3838, 7.3838, 7.3835, 7.384, 7.3837, 7.3851, 7.3848, 7.3854, 7.3859, 7.3857, 7.3846, 7.3843, 7.3841, 7.3855, 7.386, 7.3857, 7.3855, 7.3853, 7.3851, 7.3848, 7.3857, 7.3855, 7.3853, 7.385, 7.3864, 7.387, 7.388, 7.3885, 7.389, 7.3895, 7.3892, 7.3897, 7.3902, 7.3899, 7.3913, 7.3918, 7.3915, 7.3912, 7.3911, 7.3925, 7.3922, 7.3919, 7.3916, 7.3923, 7.3921, 7.3918, 7.3941, 7.3947, 7.3944, 7.3941, 7.3946, 7.3943, 7.3948, 7.3937, 7.3934, 7.3931, 7.3936, 7.3941, 7.393, 7.3919, 7.3916, 7.3913, 7.3911, 7.3908, 7.3906, 7.3911, 7.3916, 7.3914, 7.3919, 7.3924, 7.3921, 7.3919, 7.3917, 7.3922, 7.3919, 7.3916, 7.3914, 7.3911, 7.3916, 7.3913, 7.3918, 7.3939, 7.3944, 7.3949, 7.3955, 7.3953, 7.3962, 7.3959, 7.3956, 7.3953, 7.395, 7.3947, 7.3944, 7.3949, 7.3946, 7.3943, 7.3933, 7.3938, 7.3935, 7.3933, 7.3938, 7.3935, 7.3932, 7.3922, 7.3919, 7.3924, 7.3931, 7.3928, 7.3933, 7.393, 7.3935, 7.3932, 7.3929, 7.3927, 7.3932, 7.3937, 7.3959, 7.3956, 7.3961, 7.3958, 7.3955, 7.396, 7.3958, 7.3964, 7.3978, 7.3983, 7.398, 7.3977, 7.4001, 7.4001, 7.3999, 7.3996, 7.3993, 7.3998, 7.4003, 7.4, 7.3997, 7.4002, 7.4016, 7.4013, 7.4026, 7.4023, 7.4013, 7.4025, 7.4022, 7.402, 7.4035, 7.4033, 7.4031, 7.4036, 7.4042, 7.4047, 7.406, 7.4057, 7.4064, 7.4063, 7.4062, 7.4059, 7.4064, 7.4088, 7.4094, 7.4084, 7.4074, 7.4079, 7.4077, 7.4074, 7.4072, 7.407, 7.4067, 7.4065, 7.4054, 7.4057, 7.4062, 7.4067, 7.4068, 7.4058, 7.4055, 7.4068, 7.4065, 7.4062, 7.4063, 7.406, 7.4065, 7.4062, 7.4075, 7.408, 7.4077, 7.4082, 7.4072, 7.408, 7.4077, 7.4082, 7.408, 7.4077, 7.4082, 7.408, 7.4089, 7.4122, 7.4122, 7.412, 7.4126, 7.4123, 7.4126, 7.4124, 7.4122, 7.4127, 7.4125, 7.4122, 7.4159, 7.4156, 7.4154, 7.4151, 7.4164, 7.4167, 7.4172, 7.4169, 7.4174, 7.418, 7.4182, 7.4182, 7.4179, 7.4177, 7.4182, 7.4195, 7.4193, 7.419, 7.4187, 7.4192, 7.4204, 7.4209, 7.4207, 7.4204, 7.4209, 7.4206, 7.4204, 7.4209, 7.4206, 7.4203, 7.4224, 7.4229, 7.4233, 7.4238, 7.4251, 7.4248, 7.4253, 7.425, 7.4247, 7.4244, 7.4244, 7.4241, 7.4255, 7.426, 7.4257, 7.4254, 7.4252, 7.4257, 7.4255, 7.4252, 7.4249, 7.4246, 7.4245, 7.4258, 7.4255, 7.4253, 7.4258, 7.4255, 7.4253, 7.4251, 7.4249, 7.4247, 7.4237, 7.4258, 7.4271, 7.4276, 7.4273, 7.427, 7.4267, 7.4272, 7.4269, 7.4267, 7.4265, 7.4262, 7.4267, 7.4281, 7.4278, 7.4282, 7.4279, 7.4276, 7.4273, 7.427, 7.4267, 7.4264, 7.4261, 7.4258, 7.4255, 7.426, 7.4257, 7.4255, 7.426, 7.4265, 7.4262, 7.4266, 7.4288, 7.4298, 7.4295, 7.43, 7.4298, 7.4296, 7.4295, 7.4292, 7.4282, 7.4279, 7.4284, 7.4281, 7.4271, 7.4276, 7.4281, 7.4278, 7.4275, 7.4272, 7.427, 7.4267, 7.4264, 7.4261, 7.4282, 7.4279, 7.4276, 7.4282, 7.4281, 7.428, 7.4277, 7.4275, 7.4272, 7.427, 7.4267, 7.4265, 7.4263, 7.4276, 7.4273, 7.4272, 7.427, 7.4277, 7.4275, 7.4273, 7.4278, 7.4283, 7.428, 7.4285, 7.429, 7.4287, 7.4292, 7.4297, 7.4295, 7.4292, 7.4289, 7.4286, 7.43, 7.4301, 7.4314, 7.4312, 7.431, 7.4302, 7.4309, 7.4306, 7.4303, 7.4304, 7.4302, 7.43, 7.4307, 7.4305, 7.4317, 7.4314, 7.4312, 7.4316, 7.4321, 7.4318, 7.4315, 7.4313, 7.4311, 7.4309, 7.4307, 7.4304, 7.4301, 7.43, 7.43, 7.4297, 7.4295, 7.4292, 7.4289, 7.4287, 7.4284, 7.4282, 7.4288, 7.4286], '192.168.122.112': [5.4202, 6.2515, 6.1023, 5.8725, 5.8261, 10.7058, 10.0803, 10.1693, 9.6466, 9.2161, 8.8563, 9.5172, 9.207, 8.9316, 8.7104, 8.5289, 8.3957, 8.2358, 8.0847, 8.2776, 8.1721, 8.0545, 7.9396, 7.6274, 7.5317, 7.5248, 7.448, 7.3754, 7.31, 7.4324, 7.4697, 7.4219, 7.3881, 7.3282, 7.4518, 7.5423, 7.4863, 7.7203, 7.675, 7.6369, 7.5901, 7.5441, 7.3829, 7.2276, 7.316, 7.2793, 7.2512, 7.2142, 7.4183, 7.376, 7.3878, 7.4389, 7.5141, 7.4855, 7.5549, 7.5252, 7.6843, 7.647, 7.6155, 7.5832, 7.5569, 7.6124, 7.5822, 7.5473, 7.675, 7.7249, 7.6942, 7.6614, 7.7218, 7.8317, 7.7964, 7.764, 7.7766, 7.7445, 7.7317, 7.8189, 7.7427, 7.7413, 7.7812, 7.7615, 7.731, 7.701, 7.7385, 7.7181, 7.7545, 7.7446, 7.7781, 7.7514, 7.8014, 7.7753, 7.7598, 7.7352, 7.8038, 7.7836, 7.8159, 7.8456, 7.8577, 7.8891, 7.8654, 7.8938, 7.8692, 7.8437, 7.8204, 7.7966, 7.7757, 7.7527, 7.7365, 7.7145, 7.7064, 7.6888, 7.6693, 7.6559, 7.6376, 7.6747, 7.6634, 7.6432, 7.6253, 7.6094, 7.7492, 7.7455, 7.8577, 7.8419, 7.829, 7.8083, 7.7937, 7.7762, 7.7624, 7.7458, 7.7333, 7.7883, 7.7711, 7.7904, 7.816, 7.8016, 7.7834, 7.8032, 7.789, 7.7719, 7.7936, 7.7814, 7.771, 7.7555, 7.7639, 7.7541, 7.7397, 7.7276, 7.7113, 7.6948, 7.679, 7.6655, 7.6866, 7.6702, 7.691, 7.6777, 7.6622, 7.6831, 7.6797, 7.6705, 7.6575, 7.7125, 7.7984, 7.7827, 7.7719, 7.7592, 7.7777, 7.8141, 7.8027, 7.7899, 7.7748, 7.7834, 7.8015, 7.7884, 7.7737, 7.7599, 7.7203, 7.7092, 7.7267, 7.7159, 7.7094, 7.6689, 7.6571, 7.6451, 7.6322, 7.6218, 7.6091, 7.5989, 7.5887, 7.5768, 7.565, 7.5857, 7.6308, 7.6216, 7.6903, 7.7834, 7.7738, 7.7644, 7.7843, 7.7979, 7.789, 7.7775, 7.7659, 7.7932, 7.8081, 7.8106, 7.799, 7.7877, 7.7765, 7.7422, 7.7325, 7.7235, 7.737, 7.944, 7.9858, 7.973, 8.0313, 8.021, 7.9916, 8.0552, 8.0441, 8.0354, 8.0249, 8.013, 8.0256, 8.0377, 8.0252, 8.0158, 8.0079, 8.0034, 7.9925, 7.9822, 7.9723, 7.9626, 7.9521, 7.9411, 7.9301, 7.9445, 7.9551, 7.9515, 7.945, 7.9361, 7.9252, 7.9401, 7.9317, 7.9449, 7.9374, 7.9315, 7.9222, 7.9118, 7.9024, 7.8933, 7.9046, 7.8965, 7.8898, 7.9011, 7.9133, 7.9062, 7.9222, 7.9364, 7.9289, 7.9397, 7.9316, 7.9237, 7.9173, 7.9122, 7.9046, 7.8996, 7.8913, 7.8837, 7.8752, 7.8688, 7.8632, 7.8558, 7.8474, 7.8388, 7.8323, 7.8244, 7.8406, 7.8528, 7.8463, 7.8442, 7.835, 7.8459, 7.8413, 7.8337, 7.8457, 7.8581, 7.8705, 7.8635, 7.8559, 7.8667, 7.8591, 7.8546, 7.8471, 7.8397, 7.8511, 7.8426, 7.8529, 7.8493, 7.8436, 7.8386, 7.8468, 7.8382, 7.831, 7.8416, 7.8341, 7.827, 7.8359, 7.8457, 7.8374, 7.8469, 7.8388, 7.8308, 7.8237, 7.8184, 7.8107, 7.803, 7.7955, 7.7906, 7.8001, 7.7928, 7.785, 7.7778, 7.7873, 7.7797, 7.7738, 7.7524, 7.7452, 7.7387, 7.7329, 7.7258, 7.7184, 7.7257, 7.752, 7.7464, 7.7731, 7.7851, 7.7796, 7.7644, 7.7471, 7.7412, 7.7344, 7.7278, 7.7222, 7.7167, 7.7102, 7.7039, 7.7357, 7.7303, 7.7476, 7.7419, 7.7448, 7.7403, 7.7496, 7.7431, 7.7382, 7.7316, 7.7282, 7.7216, 7.7182, 7.7115, 7.7453, 7.7391, 7.7327, 7.7418, 7.7354, 7.7295, 7.7229, 7.7315, 7.7268, 7.7352, 7.7311, 7.7411, 7.7344, 7.7282, 7.7219, 7.717, 7.716, 7.7109, 7.7049, 7.7199, 7.7161, 7.7098, 7.7198, 7.7422, 7.7374, 7.7192, 7.7142, 7.708, 7.7221, 7.7171, 7.7113, 7.713, 7.7205, 7.7144, 7.7085, 7.7152, 7.7232, 7.7174, 7.7114, 7.7062, 7.7005, 7.6963, 7.6902, 7.6723, 7.6664, 7.6606, 7.6558, 7.6635, 7.6706, 7.6653, 7.6605, 7.655, 7.6507, 7.6474, 7.6418, 7.6485, 7.6439, 7.6396, 7.6369, 7.6311, 7.6257, 7.6201, 7.6149, 7.6106, 7.6075, 7.6022, 7.5978, 7.5928, 7.5888, 7.5832, 7.5808, 7.5772, 7.5722, 7.5799, 7.5746, 7.5695, 7.566, 7.561, 7.5792, 7.5787, 7.5741, 7.5688, 7.5637, 7.5713, 7.5676, 7.5628, 7.5697, 7.5768, 7.5951, 7.5904, 7.5756, 7.5704, 7.5664, 7.5793, 7.5865, 7.5836, 7.594, 7.5901, 7.5862, 7.5824, 7.5789, 7.5853, 7.5926, 7.5882, 7.5834, 7.5796, 7.5751, 7.5816, 7.5817, 7.5886, 7.5852, 7.5816, 7.5886, 7.5848, 7.5917, 7.5872, 7.5823, 7.5778, 7.5847, 7.5918, 7.5874, 7.5839, 7.5906, 7.586, 7.6047, 7.6, 7.5953, 7.5916, 7.598, 7.6156, 7.6107, 7.6071, 7.6132, 7.6192, 7.6255, 7.6752, 7.6828, 7.6788, 7.6856, 7.6883, 7.6838, 7.6798, 7.6752, 7.6608, 7.6673, 7.6759, 7.6719, 7.6694, 7.675, 7.6711, 7.6668, 7.6622, 7.651, 7.6568, 7.6525, 7.6487, 7.6466, 7.6434, 7.6391, 7.6453, 7.6506, 7.6472, 7.6531, 7.6503, 7.6476, 7.6452, 7.6319, 7.6189, 7.6159, 7.6124, 7.6084, 7.6139, 7.6098, 7.6055, 7.6023, 7.5988, 7.5952, 7.5923, 7.5948, 7.5904, 7.5861, 7.5827, 7.5801, 7.5979, 7.5953, 7.5928, 7.6029, 7.592, 7.5901, 7.5867, 7.6036, 7.6102, 7.5974, 7.5933, 7.6, 7.5964, 7.5958, 7.5942, 7.5903, 7.6062, 7.6319, 7.6369, 7.6333, 7.6394, 7.6351, 7.631, 7.6277, 7.6329, 7.6288, 7.6251, 7.6227, 7.6285, 7.6245, 7.6295, 7.6254, 7.6215, 7.6269, 7.6325, 7.6284, 7.6334, 7.6299, 7.6354, 7.6324, 7.6308, 7.6364, 7.6418, 7.638, 7.634, 7.6395, 7.6635, 7.6594, 7.6558, 7.6519, 7.6402, 7.6464, 7.6433, 7.6394, 7.6358, 7.6497, 7.6467, 7.6722, 7.6685, 7.6666, 7.6725, 7.6685, 7.6654, 7.6894, 7.6857, 7.6831, 7.6794, 7.6763, 7.6725, 7.6685, 7.6653, 7.6615, 7.6651, 7.6698, 7.666, 7.6622, 7.6588, 7.6561, 7.6523, 7.6485, 7.6453, 7.6414, 7.6461, 7.6424, 7.6477, 7.644, 7.6403, 7.6291, 7.6255, 7.6302, 7.6273, 7.6237, 7.6204, 7.6211, 7.6181, 7.6234, 7.6395, 7.6372, 7.6446, 7.6416, 7.6381, 7.6347, 7.631, 7.6357, 7.6322, 7.6292, 7.6342, 7.631, 7.6279, 7.6251, 7.6217, 7.6196, 7.6167, 7.6215, 7.6184, 7.6232, 7.6287, 7.6254, 7.6226, 7.6285, 7.6262, 7.6247, 7.6217, 7.6183, 7.6158, 7.6126, 7.6094, 7.607, 7.6034, 7.618, 7.6239, 7.6213, 7.6189, 7.6163, 7.6134, 7.61, 7.6069, 7.6039, 7.6005, 7.5973, 7.5944, 7.5918, 7.5964, 7.5933, 7.5938, 7.591, 7.5877, 7.5937, 7.5906, 7.5877, 7.5848, 7.5818, 7.5791, 7.5768, 7.5742, 7.5717, 7.5686, 7.5657, 7.5639, 7.5691, 7.5663, 7.563, 7.568, 7.5722, 7.5704, 7.575, 7.5651, 7.5619, 7.5592, 7.556, 7.5537, 7.5506, 7.5548, 7.5516, 7.5484, 7.5455, 7.5431, 7.5418, 7.5407, 7.5382, 7.5422, 7.5413, 7.5455, 7.5423, 7.5395, 7.5299, 7.5272, 7.5389, 7.5657, 7.5629, 7.5603, 7.5571, 7.554, 7.5511, 7.5592, 7.5562, 7.5536, 7.5508, 7.5484, 7.5459, 7.5512, 7.5486, 7.5507, 7.5484, 7.5459, 7.5441, 7.5425, 7.547, 7.5442, 7.5425, 7.5476, 7.546, 7.5432, 7.5428, 7.5398, 7.5377, 7.5349, 7.5391, 7.5435, 7.5481, 7.5525, 7.5498, 7.5469, 7.5464, 7.5443, 7.5488, 7.5468, 7.5533, 7.5578, 7.5551, 7.5595, 7.5571, 7.555, 7.5639, 7.5684, 7.5593, 7.5572, 7.5549, 7.5463, 7.551, 7.5486, 7.5531, 7.5515, 7.5489, 7.5536, 7.5585, 7.5577, 7.555, 7.5526, 7.5568, 7.5608, 7.5581, 7.5556, 7.5529, 7.5503, 7.5475, 7.5514, 7.5487, 7.5527, 7.5564, 7.5607, 7.558, 7.5553, 7.5527, 7.5507, 7.5482, 7.5527, 7.5508, 7.5488, 7.5463, 7.5437, 7.5473, 7.5457, 7.5436, 7.5409, 7.5393, 7.5373, 7.5346, 7.5325, 7.5297, 7.5325, 7.5305, 7.5287, 7.5262, 7.5237, 7.5213, 7.5187, 7.5237, 7.5217, 7.5195, 7.5177, 7.5214, 7.5193, 7.5199, 7.5174, 7.5168, 7.5144, 7.5118, 7.5094, 7.5126, 7.5115, 7.5154, 7.5131, 7.5175, 7.5149, 7.5184, 7.517, 7.5206, 7.5182, 7.5156, 7.5191, 7.5176, 7.5155, 7.5191, 7.5165, 7.5139, 7.5175, 7.5149, 7.5129, 7.5103, 7.5085, 7.5063, 7.5037, 7.5012, 7.4988, 7.4973, 7.4973, 7.4953, 7.4926, 7.4964, 7.4952, 7.4932, 7.4924, 7.4901, 7.4878, 7.4857, 7.4836, 7.4882, 7.4992, 7.498, 7.496, 7.4959, 7.4944, 7.5043, 7.5047, 7.5022, 7.5059, 7.5035, 7.501, 7.4987, 7.5023, 7.506, 7.5039, 7.507, 7.5106, 7.5141, 7.5118, 7.5098, 7.5075, 7.5051, 7.5027, 7.5062, 7.5043, 7.5023, 7.5, 7.4977, 7.496, 7.4937, 7.4913, 7.4899, 7.4875, 7.4853, 7.4831, 7.4813, 7.4803, 7.4793, 7.4844, 7.482, 7.4796, 7.4778, 7.4762, 7.4739, 7.4792, 7.4777, 7.4894, 7.4873, 7.4858, 7.4959, 7.4963, 7.494, 7.4931, 7.491, 7.4892, 7.4878, 7.4856, 7.4859, 7.4849, 7.4833, 7.4869, 7.4906, 7.4942, 7.4979, 7.4961, 7.494, 7.4925, 7.4965, 7.4943, 7.4922, 7.485, 7.4829, 7.4865, 7.4957, 7.505, 7.5083, 7.5065, 7.5042, 7.5025, 7.4952, 7.4929, 7.4872, 7.4856, 7.4836, 7.4819, 7.4797, 7.4728, 7.4763, 7.4742, 7.4727, 7.474, 7.4726, 7.4729, 7.4707, 7.4688, 7.472, 7.4703, 7.4681, 7.4665, 7.4651, 7.4632, 7.464, 7.4618, 7.4611, 7.4589, 7.4568, 7.4551, 7.4533, 7.4565, 7.4551, 7.4531, 7.4562, 7.4563, 7.4542, 7.4523, 7.4538, 7.452, 7.4516, 7.4495, 7.4474, 7.4454, 7.451, 7.4445, 7.439, 7.442, 7.4455, 7.4435, 7.4467, 7.4445, 7.4429, 7.4473, 7.4452, 7.4436, 7.4475, 7.4509, 7.4489, 7.4477, 7.446, 7.4444, 7.443, 7.4409, 7.4343, 7.4396, 7.4377, 7.4363, 7.4402, 7.4441, 7.442, 7.44, 7.4386, 7.4371, 7.436, 7.4294, 7.4282, 7.4314, 7.4298, 7.4327, 7.4356, 7.434, 7.4321, 7.4309, 7.4289, 7.4323, 7.4415, 7.4445, 7.4475, 7.4458, 7.4499, 7.4492, 7.4521, 7.4509, 7.452, 7.4533, 7.4512, 7.4493, 7.4473, 7.4453, 7.444, 7.4428, 7.4417, 7.4403, 7.4392, 7.4377, 7.4368, 7.435, 7.4332, 7.4362, 7.4392, 7.4412, 7.4399, 7.4379, 7.4362, 7.4342, 7.428, 7.4314, 7.4364, 7.4349, 7.4353, 7.4386, 7.4382, 7.4379, 7.4361, 7.4343, 7.4324, 7.4262, 7.4249, 7.4239, 7.427, 7.4301, 7.4289, 7.4329, 7.431, 7.4298, 7.4286, 7.4267, 7.425, 7.4236, 7.4219, 7.42, 7.4183, 7.4164, 7.4149, 7.4138, 7.4124, 7.4152, 7.4134, 7.4121, 7.4104, 7.4086, 7.4122, 7.4107, 7.409, 7.4079, 7.4062, 7.4042, 7.4031, 7.4066, 7.4056, 7.4041, 7.4025, 7.4059, 7.4094, 7.4083, 7.4069, 7.4056, 7.404, 7.4076, 7.4061, 7.4094, 7.4079, 7.4071, 7.4056, 7.4089, 7.4079, 7.4107, 7.4089, 7.412, 7.4111, 7.4097, 7.4079, 7.4065, 7.4051, 7.4038, 7.4048, 7.4031, 7.4015, 7.407, 7.4056, 7.4047, 7.4034, 7.4072, 7.4059, 7.4046, 7.4073, 7.4063, 7.4047, 7.4075, 7.407, 7.4104, 7.4087, 7.4071, 7.4102, 7.4087, 7.4073, 7.406, 7.4043, 7.4073, 7.4055, 7.4043, 7.4026, 7.4009, 7.4035, 7.4023, 7.4102, 7.4087, 7.4072, 7.4056, 7.4039, 7.4021, 7.4003, 7.404, 7.4039, 7.403, 7.4017, 7.3999, 7.3983, 7.3973, 7.398300000000001, 7.3975, 7.396, 7.3991, 7.3978, 7.3972, 7.3959, 7.3991, 7.4022, 7.4006, 7.4034, 7.406, 7.4052, 7.4039, 7.4071, 7.4081, 7.4064, 7.4047, 7.4031, 7.4013, 7.3997, 7.3984, 7.3975, 7.3957, 7.4029, 7.4011, 7.404, 7.4022, 7.4181, 7.4167, 7.4163, 7.4188, 7.417, 7.4199, 7.4182, 7.4206, 7.4234, 7.4264, 7.4288, 7.427, 7.4333, 7.4363, 7.439, 7.438, 7.4363, 7.439, 7.4373, 7.44, 7.4386, 7.4415, 7.4399, 7.4458, 7.444, 7.4435, 7.4463, 7.449, 7.4476, 7.4462, 7.4452, 7.448, 7.4462, 7.4445, 7.443, 7.4418, 7.4446, 7.4391, 7.4457, 7.4458, 7.4466, 7.445, 7.4433, 7.4504, 7.4488, 7.4473, 7.4498, 7.4484, 7.4507, 7.449, 7.4474, 7.4459, 7.4486, 7.4469, 7.4496, 7.448, 7.4477, 7.4462, 7.4489, 7.4473, 7.4459, 7.4446, 7.4462, 7.4446, 7.4442, 7.439, 7.4417, 7.449, 7.4517, 7.4507, 7.4494, 7.45, 7.4528, 7.4555, 7.4551, 7.4539, 7.4565, 7.4512, 7.4498, 7.4497, 7.4541, 7.4563, 7.4549, 7.4575, 7.4562, 7.4554, 7.4582, 7.4636, 7.4624, 7.4611, 7.4598, 7.4585, 7.4571, 7.4598, 7.459, 7.4546, 7.4569, 7.4557, 7.4582, 7.4566, 7.4558, 7.4543, 7.4569, 7.4553, 7.4591, 7.4577, 7.4682, 7.4749, 7.4734, 7.4692, 7.4683, 7.4667, 7.465, 7.4634, 7.4618, 7.4605, 7.4595, 7.4622, 7.4611, 7.4757, 7.4781, 7.4768, 7.4753, 7.4741, 7.4765, 7.4752, 7.4776, 7.4761, 7.4798, 7.4829, 7.4821, 7.4808, 7.4757, 7.4741, 7.4727, 7.4715, 7.4699, 7.4685, 7.4675, 7.4662, 7.4646, 7.4635, 7.4623, 7.461, 7.4594, 7.4619, 7.4607, 7.4556, 7.454, 7.4525, 7.451, 7.4499, 7.4484, 7.4468, 7.4651, 7.4642, 7.4668, 7.4655, 7.4658, 7.4646, 7.4629, 7.4618, 7.4603, 7.459, 7.4578, 7.4578, 7.4562, 7.4551, 7.4539, 7.4527, 7.4553, 7.4544, 7.4565, 7.4589, 7.4642, 7.4664, 7.4705, 7.4689, 7.4715, 7.4699, 7.4685, 7.4673, 7.4662, 7.4649, 7.4634, 7.462, 7.4605, 7.4595, 7.4619, 7.4608, 7.4593, 7.4618, 7.4605, 7.4559, 7.4584, 7.4651, 7.4639, 7.4623, 7.4647, 7.4634, 7.4662, 7.4614, 7.4638, 7.4629, 7.4695, 7.4712, 7.4699, 7.4685, 7.4702, 7.4689, 7.468, 7.4631, 7.4616, 7.4649, 7.4635, 7.4658, 7.4644, 7.4632, 7.4617, 7.4642, 7.463, 7.4654, 7.4639, 7.4627, 7.4687, 7.4713, 7.4734, 7.4722, 7.4745, 7.4733, 7.4719, 7.4746, 7.4737, 7.4727, 7.4716, 7.4778, 7.4766, 7.4791, 7.4816, 7.4801, 7.4822, 7.4846, 7.4906, 7.4901, 7.4891, 7.4987, 7.4976, 7.4962, 7.4951, 7.4937, 7.4988, 7.4993, 7.5014, 7.5146, 7.5135, 7.5124, 7.5195, 7.5179, 7.5183, 7.517, 7.5193, 7.5185, 7.5173, 7.5256, 7.5246, 7.5268, 7.5257, 7.5243, 7.5264, 7.5253, 7.5238, 7.5192, 7.5178, 7.5167, 7.5153, 7.5139, 7.5124, 7.5114, 7.5136, 7.5125, 7.5111, 7.5132, 7.5118, 7.5103, 7.5092, 7.5078, 7.5101, 7.5122, 7.5076, 7.5064, 7.5049, 7.5037, 7.5026, 7.5011, 7.4998, 7.4991, 7.5014, 7.5004, 7.4993, 7.498, 7.497, 7.4957, 7.4947, 7.4934, 7.4957, 7.4911, 7.4902, 7.4925, 7.4912, 7.4937, 7.496, 7.4947, 7.4938, 7.4962, 7.499, 7.4982, 7.4968, 7.4956, 7.4944, 7.4967, 7.4956, 7.4956, 7.4942, 7.4964, 7.4986, 7.4972, 7.4962, 7.4985, 7.4941, 7.4952, 7.4942, 7.4928, 7.4916, 7.494, 7.493, 7.4919, 7.491, 7.4904, 7.4896, 7.4886, 7.4914, 7.4903, 7.4926, 7.4915, 7.4909, 7.4932, 7.4922, 7.4909, 7.4933, 7.4955, 7.5011, 7.5035, 7.5024, 7.5044, 7.5031, 7.5025, 7.5054, 7.5043, 7.5029, 7.5017, 7.5003, 7.4995, 7.5014, 7.4999, 7.4988, 7.4974, 7.4978, 7.4997, 7.4986, 7.4973, 7.4931, 7.4955, 7.4944, 7.4932, 7.4919, 7.491, 7.4902, 7.4923, 7.491, 7.4931, 7.492, 7.4924, 7.4915, 7.4904, 7.4964, 7.4957, 7.5075, 7.5094, 7.5082, 7.5074, 7.5095, 7.5114, 7.5103, 7.5091, 7.5084, 7.5074, 7.5068, 7.5055, 7.5042, 7.503, 7.5018, 7.5014, 7.5016, 7.5009, 7.4998, 7.4985, 7.4974, 7.4969, 7.4961, 7.4981, 7.5, 7.4986, 7.5008, 7.503, 7.505, 7.5037, 7.5062, 7.5049, 7.5038, 7.4997, 7.4989, 7.4982, 7.497, 7.4991, 7.4982, 7.4969, 7.4956, 7.4946, 7.4935, 7.4922, 7.4912, 7.4904, 7.4925, 7.4947, 7.4939, 7.4928, 7.4915, 7.4932, 7.4926, 7.4913, 7.4933, 7.4924, 7.4914, 7.4914, 7.4901, 7.4889, 7.4875, 7.4863, 7.4849, 7.4837, 7.4824, 7.4813, 7.4834, 7.4823, 7.4816, 7.4852, 7.4817, 7.4808, 7.4799, 7.4792, 7.4812, 7.4839, 7.4863, 7.4921, 7.4911, 7.4931, 7.4921, 7.4909, 7.4902, 7.489, 7.4879, 7.4869, 7.4916, 7.497, 7.4985, 7.5005, 7.5026, 7.5064, 7.5085, 7.5072, 7.5091, 7.5081, 7.5107, 7.5128, 7.5149, 7.5136, 7.5124, 7.5115, 7.5114, 7.5108, 7.5096, 7.5086, 7.5076, 7.5095, 7.5085, 7.5102, 7.5246, 7.5263, 7.5281, 7.5269, 7.5289, 7.5277, 7.5264, 7.5252, 7.5239, 7.5228, 7.5216, 7.5212, 7.5236, 7.5252, 7.5242, 7.5231, 7.5249, 7.5238, 7.5226, 7.5214, 7.5201, 7.5221, 7.5209, 7.5171, 7.519, 7.5251, 7.5269, 7.5257, 7.528, 7.5309, 7.5297, 7.5297, 7.529, 7.5309, 7.53, 7.5289, 7.5277, 7.5265, 7.5254, 7.5245, 7.5263, 7.525, 7.5238, 7.5225, 7.5244, 7.5232, 7.5221, 7.5208, 7.5227, 7.5218, 7.5225, 7.5213, 7.5201, 7.519, 7.5179, 7.5168, 7.5163, 7.5153, 7.5142, 7.5105, 7.5119, 7.5108, 7.5097, 7.5088, 7.5078, 7.5071, 7.506, 7.5048, 7.5036, 7.5055, 7.5073, 7.5107, 7.5095, 7.5085, 7.5075, 7.5063, 7.5054, 7.5045, 7.5039, 7.5028, 7.5022, 7.5009, 7.4998, 7.4988, 7.4979, 7.4997, 7.5026, 7.5015, 7.5003, 7.4992, 7.4987, 7.4976, 7.4966, 7.4955, 7.4945, 7.4965, 7.4972, 7.5, 7.5062, 7.5064, 7.5113, 7.5106, 7.5097, 7.5059, 7.5078, 7.5066, 7.5054, 7.5016, 7.4978, 7.4973, 7.4993, 7.4954, 7.4942, 7.493, 7.4919, 7.4907, 7.4896, 7.4887, 7.4876, 7.4896, 7.4916, 7.4935, 7.4925, 7.4948, 7.4937, 7.4936, 7.4924, 7.4916, 7.4904, 7.4893, 7.4912, 7.4902, 7.4919, 7.4908, 7.4947, 7.494, 7.4929, 7.4918, 7.4908, 7.4901, 7.4891, 7.491, 7.4898, 7.4916, 7.4906, 7.4895, 7.4886, 7.4881, 7.487, 7.4861, 7.4853, 7.4847, 7.4836, 7.48, 7.4795, 7.4789, 7.4807, 7.4825, 7.4846, 7.4835, 7.4853, 7.4817, 7.4807, 7.4797, 7.4813, 7.4802, 7.4792, 7.4783, 7.4773, 7.4765, 7.4754, 7.4742, 7.4763, 7.4753, 7.4755, 7.4772, 7.4818, 7.4844, 7.4845, 7.4868, 7.4871, 7.4878, 7.4867, 7.4858, 7.4876, 7.4894, 7.4885, 7.4959, 7.4943, 7.4989, 7.5007, 7.5022, 7.501, 7.5025, 7.5016, 7.5009, 7.5003, 7.4994, 7.5016, 7.5034, 7.5132, 7.5233, 7.5225, 7.5217, 7.5208, 7.5199, 7.5165, 7.5156, 7.5184, 7.5183, 7.52, 7.5193, 7.5182, 7.5284, 7.533, 7.532, 7.5309, 7.5351, 7.5344, 7.5337, 7.5325, 7.5318, 7.5335, 7.5352, 7.5342, 7.5359, 7.5324, 7.5339, 7.5357, 7.5345, 7.5362, 7.5353, 7.5343, 7.5358, 7.5348, 7.5337, 7.5354, 7.5345, 7.5362, 7.5382, 7.5371, 7.5489, 7.5481, 7.5471, 7.546, 7.5461, 7.5452, 7.5441, 7.543, 7.5447, 7.5437, 7.5426, 7.5443, 7.5432, 7.5398, 7.539, 7.538, 7.5396, 7.5411, 7.5428, 7.5417, 7.5406, 7.5398, 7.5389, 7.5378, 7.5369, 7.5386, 7.5402, 7.5393, 7.5385, 7.5374, 7.5367, 7.5362, 7.5384, 7.5402, 7.5393, 7.5385, 7.5376, 7.5364, 7.5355, 7.5346, 7.5335, 7.5327, 7.5317, 7.5309, 7.5328, 7.5345, 7.5333, 7.5323, 7.5312, 7.5301, 7.532, 7.531, 7.5327, 7.5348, 7.5366, 7.5358, 7.535, 7.534, 7.533, 7.532, 7.5314, 7.5308, 7.5298, 7.5292, 7.5311, 7.5303, 7.5274, 7.5265, 7.5258, 7.5249, 7.5268, 7.5263, 7.5254, 7.5243, 7.5259, 7.5274, 7.5263, 7.5252, 7.5241, 7.5231, 7.522, 7.521, 7.5226, 7.5218, 7.5209, 7.5199, 7.5166, 7.52, 7.5228, 7.5243, 7.5258, 7.5249, 7.5241, 7.524, 7.5231, 7.522, 7.5236, 7.5251, 7.5242, 7.5232, 7.5222, 7.5211, 7.5203, 7.5218, 7.5211, 7.5201, 7.5204, 7.5218, 7.5209, 7.5201, 7.5194, 7.5191, 7.5181, 7.5174, 7.5169, 7.5185, 7.5206, 7.5202, 7.5191, 7.518, 7.5172, 7.5162, 7.5152, 7.5167, 7.5159, 7.5149, 7.5144, 7.5135, 7.5124, 7.5139, 7.5135, 7.5153, 7.5147, 7.5162, 7.5155, 7.5148, 7.5155, 7.5144, 7.5134, 7.5126, 7.5117, 7.5106, 7.5074, 7.5064, 7.5084, 7.5073, 7.5089, 7.5079, 7.5095, 7.511, 7.5103, 7.5095, 7.5061, 7.5075, 7.5064, 7.5056, 7.5049, 7.5041, 7.5056, 7.5057, 7.505, 7.5069, 7.5085, 7.5101, 7.5095, 7.5114, 7.5104, 7.5094, 7.5085, 7.5076, 7.5076, 7.5093, 7.5095, 7.5068, 7.506, 7.5049, 7.5043, 7.5035, 7.5026, 7.5017, 7.5011, 7.5029, 7.5026, 7.5016, 7.5007, 7.4999, 7.5014, 7.5003, 7.5019, 7.5009, 7.5001, 7.5016, 7.5032, 7.5024, 7.5016, 7.503, 7.5052, 7.5059, 7.5049, 7.5042, 7.5046, 7.5036, 7.5028, 7.5022, 7.5037, 7.5027, 7.4995, 7.4995, 7.4987, 7.4977, 7.4952, 7.4943, 7.4935, 7.4926, 7.4925, 7.4916, 7.4907, 7.4899, 7.4901, 7.4892, 7.4884, 7.4875, 7.4866, 7.4884, 7.4875, 7.4892, 7.4888, 7.4904, 7.4896, 7.4887, 7.4902, 7.4918, 7.4908, 7.4901, 7.4891, 7.4883, 7.4876, 7.4891, 7.4881, 7.4872, 7.4862, 7.4911, 7.4902, 7.4893, 7.4884, 7.4877, 7.487, 7.4865, 7.4856, 7.4847, 7.4839, 7.4831, 7.4846, 7.4815, 7.481, 7.4828, 7.4843, 7.4858, 7.4849, 7.4866, 7.4837, 7.4858, 7.4873, 7.4865, 7.4859, 7.4855, 7.4846, 7.4836, 7.4828, 7.4798, 7.4789, 7.4782, 7.4795, 7.4785, 7.4781, 7.4771, 7.4816, 7.4816, 7.4845, 7.4848, 7.4839, 7.4831, 7.4845, 7.4839, 7.4855, 7.4848, 7.4841, 7.4881, 7.4905, 7.496, 7.4955, 7.4946, 7.4961, 7.4952, 7.4967, 7.4982, 7.4995, 7.4986, 7.4978, 7.4969, 7.4959, 7.495, 7.4943, 7.4958, 7.4971, 7.4963, 7.4958, 7.4951, 7.4968, 7.4965, 7.4979, 7.497, 7.496, 7.4956, 7.4946, 7.4938, 7.4908, 7.4899, 7.4914, 7.4907, 7.4909, 7.4927, 7.4918, 7.4909, 7.49, 7.4894, 7.4864, 7.4855, 7.4845, 7.4836, 7.4827, 7.4819, 7.4833, 7.4847, 7.4867, 7.4857, 7.4848, 7.4839, 7.4836, 7.4872, 7.4863, 7.4855, 7.4846, 7.4842, 7.4834, 7.4848, 7.484, 7.4857, 7.4848, 7.4839, 7.483, 7.482, 7.4833, 7.4825, 7.4816, 7.4807, 7.4798, 7.4789, 7.479, 7.478, 7.4795, 7.4786, 7.4781, 7.4776, 7.4814, 7.4829, 7.4821, 7.4835, 7.4827, 7.4821, 7.4837, 7.4828, 7.4821, 7.4837, 7.4833, 7.4847, 7.4838, 7.4832, 7.4846, 7.4837, 7.4851, 7.4842, 7.4834, 7.4829, 7.4821, 7.4812, 7.4803, 7.4794, 7.4808, 7.4799, 7.479, 7.4784, 7.4799, 7.4792, 7.4783, 7.4799, 7.4815, 7.4787, 7.4778, 7.477, 7.4785, 7.48, 7.4813, 7.4826, 7.4797, 7.481, 7.4803, 7.4794, 7.4787, 7.478, 7.4772, 7.4763, 7.4782, 7.4774, 7.4788, 7.4804, 7.4818, 7.481, 7.4804, 7.4819, 7.4833, 7.4825, 7.4818, 7.4855, 7.489, 7.4882, 7.4873, 7.4865, 7.4907, 7.4922, 7.4913, 7.4927, 7.4918, 7.491, 7.4923, 7.4915, 7.4906, 7.4897, 7.4868, 7.4859, 7.4873, 7.4865, 7.4864, 7.4855, 7.4834, 7.4825, 7.4839, 7.4832, 7.4826, 7.4818, 7.4809, 7.48, 7.4859, 7.485, 7.4863, 7.4854, 7.4851, 7.4842, 7.4834, 7.4825, 7.4817, 7.4831, 7.4823, 7.484, 7.4832, 7.4823, 7.4817, 7.4808, 7.48, 7.4814, 7.4806, 7.4798, 7.479, 7.4804, 7.4796, 7.4809, 7.4823, 7.4818, 7.4811, 7.483, 7.4822, 7.4813, 7.4805, 7.482, 7.4835, 7.4831, 7.4845, 7.4838, 7.4852, 7.4845, 7.4882, 7.4874, 7.4888, 7.4881, 7.4872, 7.4864, 7.4872, 7.4863, 7.4876, 7.4868, 7.4845, 7.4837, 7.4829, 7.487, 7.4883, 7.4874, 7.4867, 7.486, 7.4854, 7.4846, 7.486, 7.4856, 7.485, 7.4842, 7.4835, 7.4831, 7.4823, 7.4815, 7.4809, 7.48, 7.4792, 7.4808, 7.4821, 7.4817, 7.4847, 7.4838, 7.4829, 7.4844, 7.4836, 7.4828, 7.482, 7.4813, 7.4808, 7.48, 7.4791, 7.4782, 7.4776, 7.4788, 7.4783, 7.4777, 7.477, 7.4763, 7.4759, 7.4751, 7.4742, 7.4735, 7.4727, 7.4757, 7.4793, 7.479, 7.4784, 7.4757, 7.4749, 7.474, 7.4754, 7.4745, 7.4743, 7.4736, 7.4728, 7.4721, 7.4695, 7.4687, 7.4679, 7.4674, 7.4665, 7.4678, 7.4671, 7.4683, 7.4674, 7.4669, 7.4662, 7.4675, 7.4673, 7.4664, 7.4657, 7.463, 7.4643, 7.4635, 7.4627, 7.4619, 7.4611, 7.4602, 7.4595, 7.4588, 7.4606, 7.4598, 7.4612, 7.4585, 7.4579, 7.457, 7.4564, 7.4557, 7.4556, 7.4551, 7.4545, 7.4539, 7.4531, 7.4523, 7.4518, 7.4512, 7.4485, 7.448, 7.4474, 7.4466, 7.4461, 7.4436, 7.4427, 7.4465, 7.4457, 7.4469, 7.4463, 7.4474, 7.4467, 7.448, 7.4474, 7.4487, 7.4501, 7.4494, 7.4487, 7.4489, 7.4463, 7.4455, 7.4447, 7.4448, 7.446, 7.4473, 7.4467, 7.4479, 7.4471, 7.4462, 7.4475, 7.4488, 7.4482, 7.4497, 7.4497, 7.4489, 7.4481, 7.4494, 7.4487, 7.448, 7.4472, 7.4484, 7.4478, 7.4473, 7.4466, 7.4458, 7.4453, 7.4447, 7.4443, 7.4457, 7.4449, 7.4441, 7.4415, 7.443, 7.4404, 7.4398, 7.439, 7.4411, 7.4415, 7.4428, 7.4421, 7.4415, 7.4415, 7.4415, 7.441, 7.4403, 7.4415, 7.4427, 7.442, 7.4433, 7.4446, 7.444, 7.4432, 7.4425, 7.442, 7.4432, 7.4445, 7.4437, 7.4432, 7.4424, 7.4421, 7.4414, 7.4406, 7.4418, 7.4431, 7.4425, 7.4422, 7.4415, 7.4408, 7.4402, 7.4417, 7.4413, 7.4406, 7.442, 7.4413, 7.4406, 7.4399, 7.4414, 7.4406, 7.4399, 7.4391, 7.4384, 7.4398, 7.4393, 7.4385, 7.438, 7.4373, 7.4386, 7.438, 7.4392, 7.4384, 7.4376, 7.4369, 7.4361, 7.4355, 7.4347, 7.4341, 7.4334, 7.4331, 7.4323, 7.4336, 7.4331, 7.4326, 7.4339, 7.4332, 7.4328, 7.4324, 7.4319, 7.4311, 7.4323, 7.4336, 7.4328, 7.434, 7.4336, 7.4328, 7.432, 7.4312, 7.4307, 7.43, 7.4332, 7.4328, 7.432, 7.4314, 7.4309, 7.4302, 7.4295, 7.4289, 7.4301, 7.4293, 7.4285, 7.4277, 7.4289, 7.4284, 7.4279, 7.4292, 7.4285, 7.4277, 7.4289, 7.4301, 7.4296, 7.4288, 7.4281, 7.4275, 7.4269, 7.4277, 7.4271, 7.4267, 7.426, 7.4255, 7.4248, 7.4245, 7.4237, 7.425, 7.4243, 7.4235, 7.4232, 7.4245, 7.4237, 7.425, 7.4261, 7.4256, 7.4248, 7.426, 7.4253, 7.425, 7.4263, 7.4255, 7.4286, 7.4298, 7.4292, 7.4285, 7.4278, 7.427, 7.4264, 7.4276, 7.4268, 7.4266, 7.4271, 7.4265, 7.4266, 7.4337, 7.4333, 7.4329, 7.4326, 7.432, 7.4312, 7.4304, 7.4316, 7.4309, 7.4303, 7.4299, 7.4294, 7.4288, 7.428, 7.4273, 7.4267, 7.4263, 7.4255, 7.4249, 7.4242, 7.4237, 7.4231, 7.4223, 7.4215, 7.4207, 7.422, 7.4214, 7.4208, 7.42, 7.4196, 7.4211, 7.4224, 7.4217, 7.4229, 7.4223, 7.4215, 7.4207, 7.4204, 7.4198, 7.4191, 7.4214, 7.4206, 7.4218, 7.4211, 7.4206, 7.4199, 7.421, 7.4222, 7.4234, 7.4228, 7.4221, 7.4214, 7.4209, 7.4203, 7.4199, 7.4192, 7.4187, 7.418, 7.4172, 7.4165, 7.4158, 7.4151, 7.4143, 7.4137, 7.413, 7.4124, 7.4135, 7.4128, 7.4121, 7.4288, 7.4281, 7.4273, 7.4267, 7.426, 7.4256, 7.432, 7.4332, 7.4324, 7.4336, 7.4375, 7.4372, 7.4366, 7.4378, 7.4371, 7.4364, 7.4358, 7.4352, 7.4365, 7.436, 7.4358, 7.4351, 7.4365, 7.434, 7.4351, 7.4363, 7.4355, 7.4349, 7.4345, 7.4337, 7.4331, 7.4324, 7.4318, 7.4317, 7.431, 7.4323, 7.4335, 7.4329, 7.4324, 7.4319, 7.4312, 7.4309, 7.4284, 7.4278, 7.4293, 7.4292, 7.4285, 7.4278, 7.4274, 7.427, 7.4263, 7.4256, 7.4268, 7.4279, 7.4291, 7.4289, 7.4284, 7.433, 7.4342, 7.4336, 7.4349, 7.4342, 7.4341, 7.4334, 7.4329, 7.4325, 7.4337, 7.4329, 7.4322, 7.4314, 7.4307, 7.4376, 7.4369, 7.4395, 7.4388, 7.4381, 7.4376, 7.4382, 7.4376, 7.4371, 7.4364, 7.4357, 7.4352, 7.4345, 7.4338, 7.4333, 7.4327, 7.4322, 7.4335, 7.433, 7.4312, 7.4305, 7.4316, 7.4297, 7.4314, 7.4353, 7.4347, 7.4339, 7.4335, 7.4348, 7.4341, 7.4338, 7.4333, 7.4326, 7.4302, 7.4295, 7.4288, 7.4285, 7.4281, 7.4274, 7.4268, 7.4263, 7.4256, 7.4252, 7.4247, 7.4258, 7.4252, 7.4246, 7.4239, 7.425, 7.4304, 7.4298, 7.4328, 7.4321, 7.4315, 7.431, 7.4287, 7.4299, 7.4294, 7.4289, 7.4283, 7.4278, 7.4288, 7.4282, 7.4277, 7.4271, 7.4284, 7.4278, 7.4271, 7.4264, 7.4258, 7.4251, 7.4244, 7.4238, 7.4233, 7.4275, 7.4288, 7.4284, 7.4278, 7.4279, 7.4273, 7.4267, 7.4261, 7.4257, 7.4254, 7.4266, 7.426, 7.4254, 7.4253, 7.4246, 7.4239, 7.4258, 7.4252, 7.4267, 7.4283, 7.4278, 7.4273, 7.4267, 7.426, 7.4267, 7.426, 7.4255, 7.4249, 7.4244, 7.4237, 7.4249, 7.4244, 7.4238, 7.4249, 7.4242, 7.4235, 7.4228, 7.4239, 7.425, 7.4244, 7.4238, 7.4231, 7.4225, 7.4218, 7.4212, 7.4224, 7.4235, 7.423, 7.4207, 7.4201, 7.42, 7.4194, 7.4187, 7.418, 7.4174, 7.4167, 7.4178, 7.4174, 7.4169, 7.4181, 7.4192, 7.4206, 7.4201, 7.4196, 7.4231, 7.4225, 7.422, 7.4214, 7.4258, 7.4261, 7.4256, 7.4267, 7.4278, 7.4271, 7.4284, 7.4277, 7.4282, 7.4276, 7.4272, 7.4265, 7.4259, 7.4254, 7.425, 7.4243, 7.4237, 7.4231, 7.4225, 7.4206, 7.4199, 7.4193, 7.4186, 7.4198, 7.4194, 7.4188, 7.4185, 7.4181, 7.4177, 7.4174, 7.419, 7.4202, 7.4214, 7.4227, 7.4281, 7.4259, 7.4253, 7.4267, 7.4323, 7.4319, 7.4312, 7.4327, 7.4338, 7.4317, 7.4311, 7.4304, 7.4298, 7.4292, 7.4287, 7.4281, 7.4276, 7.4271, 7.4264, 7.4258, 7.4251, 7.4245, 7.4238, 7.4231, 7.4236, 7.4247, 7.4276, 7.4288, 7.4283, 7.4277, 7.4273, 7.4266, 7.4278, 7.4273, 7.4266, 7.4278, 7.4277, 7.4287, 7.428, 7.4273, 7.4267, 7.4277, 7.427, 7.4266, 7.4272, 7.4267, 7.4261, 7.4257, 7.4267, 7.4266, 7.4259, 7.427, 7.4263, 7.4256, 7.425, 7.4243, 7.4241, 7.4252, 7.4248, 7.4258, 7.4251, 7.4246, 7.424, 7.4237, 7.4231, 7.4224, 7.4219, 7.4213, 7.421, 7.4189, 7.4216, 7.4209, 7.4236, 7.4247, 7.4241, 7.4251, 7.4245, 7.4238, 7.4232, 7.421, 7.422, 7.4248, 7.4259, 7.4253, 7.4246, 7.4258, 7.4252, 7.4279, 7.4306, 7.4301, 7.4296, 7.4291, 7.4302, 7.428, 7.4296, 7.4289, 7.4284, 7.4278, 7.4271, 7.4292, 7.4312, 7.4308, 7.4302, 7.4296, 7.4308, 7.4302, 7.4296, 7.4289, 7.4285, 7.4281, 7.4275, 7.4269, 7.4266, 7.4261, 7.427, 7.4264, 7.4258, 7.4253, 7.4247, 7.4243, 7.4255, 7.4249, 7.4251, 7.426, 7.4271, 7.4266, 7.4261, 7.4254, 7.4248, 7.4243, 7.4236, 7.423, 7.4226, 7.422, 7.4213, 7.4223, 7.4218, 7.4211, 7.4209, 7.4202, 7.4197, 7.4191, 7.4186, 7.4179, 7.4173, 7.4173, 7.4167, 7.4178, 7.4172, 7.4166, 7.4164, 7.4176, 7.4176, 7.4195, 7.4206, 7.4233, 7.4244, 7.4255, 7.4249, 7.4244, 7.4238, 7.4234, 7.4229, 7.4224, 7.4218, 7.4215, 7.4212, 7.4205, 7.4199, 7.4194, 7.4188, 7.4182, 7.4196, 7.419, 7.42, 7.4211, 7.4207, 7.4202, 7.4196, 7.4176, 7.417, 7.4166, 7.4159, 7.4153, 7.4147, 7.4141, 7.4135, 7.4129, 7.4124, 7.4119, 7.4113, 7.4111, 7.4104, 7.4084, 7.4081, 7.4077, 7.4073, 7.4069, 7.4064, 7.4057, 7.4052, 7.4062, 7.4056, 7.4053, 7.4062, 7.4057, 7.4051, 7.4047, 7.4041, 7.4035, 7.4029, 7.4023, 7.4018, 7.4012, 7.4006, 7.4, 7.401, 7.4007, 7.4018, 7.4029, 7.4024, 7.4035, 7.4029, 7.4026, 7.4028, 7.4039, 7.4033, 7.4032, 7.4026, 7.4056, 7.405, 7.4044, 7.4039, 7.4034, 7.4029, 7.4025, 7.402, 7.4014, 7.401, 7.4006, 7.4, 7.3994, 7.3988, 7.3981, 7.3975, 7.3973, 7.3953, 7.3949, 7.3943, 7.3939, 7.3948, 7.3943, 7.3939, 7.3934, 7.3928, 7.3921, 7.3916, 7.3911, 7.3905, 7.3899, 7.3894, 7.3888, 7.3882, 7.3876, 7.387, 7.3865, 7.3876, 7.3878, 7.3875, 7.3869, 7.3863, 7.3857, 7.3867, 7.3877, 7.3892, 7.3902, 7.3912, 7.3923, 7.3933, 7.396, 7.4002, 7.3996, 7.3994, 7.4037, 7.4033, 7.4043, 7.4037, 7.4031, 7.4026, 7.4021, 7.4015, 7.4009, 7.402, 7.4014, 7.4008, 7.4002, 7.3997, 7.3992, 7.3987, 7.3981, 7.3976, 7.3972, 7.3966, 7.3962, 7.3957, 7.395, 7.3945, 7.3939, 7.3933, 7.3927, 7.3939, 7.3934, 7.393, 7.3928, 7.3908, 7.3904, 7.3899, 7.3895, 7.3889, 7.3882, 7.3893, 7.3887, 7.3881, 7.3875, 7.3869, 7.3882, 7.3877, 7.3887, 7.3881, 7.3875, 7.3869, 7.3867, 7.3877, 7.3888, 7.3898, 7.3894, 7.3901, 7.3912, 7.3907, 7.3903, 7.3884, 7.3894, 7.389, 7.3887, 7.3897, 7.3892, 7.3887, 7.3888, 7.3882, 7.3877, 7.3872, 7.3883, 7.3878, 7.3872, 7.3868, 7.3879, 7.3894, 7.3889, 7.3902, 7.3912, 7.3906, 7.3916, 7.3936, 7.3946, 7.3942, 7.3942, 7.3939, 7.3923, 7.3924, 7.3918, 7.3912, 7.3909, 7.3903, 7.3897, 7.3892, 7.3903, 7.3906, 7.39, 7.3896, 7.389, 7.39, 7.391, 7.3929, 7.3923, 7.3919, 7.3913, 7.391, 7.3921, 7.3918, 7.3912, 7.3906, 7.3917, 7.3912, 7.3906, 7.3901, 7.3895, 7.389, 7.3901, 7.3897, 7.3908, 7.3918, 7.3928, 7.3923, 7.3918, 7.3917, 7.3914, 7.3914, 7.3928, 7.3926, 7.3921, 7.3915, 7.394, 7.3937, 7.3931, 7.3925, 7.3921, 7.3915, 7.3909, 7.3919, 7.3913, 7.3911, 7.3927, 7.3928, 7.3927, 7.3923, 7.3919, 7.3919, 7.3913, 7.3908, 7.3904, 7.39, 7.3897, 7.3892, 7.3889, 7.39, 7.3895, 7.3906, 7.3901, 7.3896, 7.3891, 7.3887, 7.3883, 7.3894, 7.3889, 7.3884, 7.3881, 7.389, 7.3902, 7.3896, 7.3906, 7.39, 7.3909, 7.3905, 7.39, 7.3896, 7.3896, 7.39, 7.3894, 7.3889, 7.3885, 7.388, 7.389, 7.3885, 7.388, 7.3874, 7.3871, 7.3865, 7.3874, 7.3869, 7.3863, 7.3859, 7.387, 7.3865, 7.3859, 7.3869, 7.3864, 7.3858, 7.3857, 7.3884, 7.3895, 7.3892, 7.3894, 7.3891, 7.391, 7.3906, 7.3916, 7.3911, 7.3906, 7.3916, 7.3958, 7.3954, 7.395, 7.3946, 7.3941, 7.3945, 7.3941, 7.3922, 7.3931, 7.3925, 7.3934, 7.393, 7.3946, 7.3964, 7.3958, 7.3952, 7.3947, 7.3942, 7.3951, 7.3946, 7.394, 7.3935, 7.3931, 7.3926, 7.392, 7.3915, 7.391, 7.3919, 7.3915, 7.3925, 7.392, 7.3916, 7.3913, 7.3908, 7.3909, 7.3904, 7.39, 7.3895, 7.3921, 7.3962, 7.3975, 7.3971, 7.3967, 7.3965, 7.3964, 7.3959, 7.3953, 7.3962, 7.3962, 7.3959, 7.3955, 7.3984, 7.3979, 7.3995, 7.3991, 7.3985, 7.398, 7.3974, 7.3971, 7.398, 7.3989, 7.3983, 7.3978, 7.3987, 7.3981, 7.3976, 7.3985, 7.398, 7.3975, 7.397, 7.3965, 7.396, 7.3956, 7.3966, 7.3961, 7.3961, 7.397, 7.3964, 7.3974, 7.3984, 7.3979, 7.3974, 7.3968, 7.3963, 7.3974, 7.3972, 7.3966, 7.3961, 7.3972, 7.3967, 7.3963, 7.3958, 7.3971, 7.3967, 7.3961, 7.3957, 7.3951, 7.3945, 7.394, 7.3921, 7.3917, 7.3912, 7.3893, 7.3888, 7.3882, 7.3877, 7.3876, 7.3872, 7.3926, 7.392, 7.3915, 7.3924, 7.3919, 7.3913, 7.3908, 7.3918, 7.3916, 7.391, 7.3905, 7.39, 7.3896, 7.3892, 7.3886, 7.3883, 7.3878, 7.3873, 7.3869, 7.3878, 7.3872, 7.3868, 7.3868, 7.3863, 7.3861, 7.3886, 7.3888, 7.3885, 7.388, 7.389, 7.3886, 7.3881, 7.3875, 7.3871, 7.3866, 7.3861, 7.3856, 7.3852, 7.3847, 7.3842, 7.3837, 7.3834, 7.3829, 7.3838, 7.3847, 7.3857, 7.3866, 7.3861, 7.3859, 7.3854, 7.3849, 7.3845, 7.3841, 7.3836, 7.3831, 7.384, 7.3834, 7.3829, 7.3823, 7.3847, 7.3842, 7.3866, 7.386, 7.3855, 7.3837, 7.3859, 7.3855, 7.3852, 7.3862, 7.3871, 7.3867, 7.3862, 7.3857, 7.3852, 7.3847, 7.3856, 7.3852, 7.3834, 7.3833, 7.3873, 7.3873, 7.387, 7.3865, 7.386, 7.3869, 7.3878, 7.3873, 7.3868, 7.3864, 7.3859, 7.3875, 7.3869, 7.3851, 7.3848, 7.3848, 7.3856, 7.3851, 7.386, 7.3857, 7.3855, 7.3863, 7.3858, 7.3866, 7.3867, 7.3862, 7.3857, 7.3852, 7.3848, 7.3844, 7.384, 7.3836, 7.3834, 7.3828, 7.3825, 7.382, 7.3816, 7.3798, 7.3793, 7.3788, 7.3784, 7.3793, 7.3788, 7.3785, 7.378, 7.3777, 7.3786, 7.3783, 7.3791, 7.3801, 7.3798, 7.3793, 7.379, 7.3799, 7.3794, 7.3803, 7.3812, 7.3808, 7.3804, 7.3799, 7.3793, 7.3804, 7.3813, 7.3812, 7.3807, 7.3802, 7.3797, 7.3791, 7.3786, 7.3793, 7.3789, 7.3784, 7.3766, 7.3775, 7.3771, 7.3766, 7.3763, 7.3773, 7.3768, 7.379, 7.379, 7.3821, 7.3816, 7.3811, 7.3806, 7.3801, 7.3797, 7.3792, 7.3788, 7.3789, 7.3798, 7.3808, 7.3805, 7.38, 7.3797, 7.3794, 7.3792, 7.3788, 7.3798, 7.3793, 7.3788, 7.3791, 7.3787, 7.3784, 7.378, 7.3775, 7.3785, 7.3785, 7.3782, 7.3779, 7.3776, 7.3777, 7.3772, 7.3767, 7.3776, 7.3773, 7.3771, 7.3766, 7.376, 7.3757, 7.3752, 7.3747, 7.3742, 7.375, 7.3745, 7.3754, 7.3751, 7.3768, 7.3758, 7.3753, 7.3749, 7.3744, 7.3752, 7.376, 7.3768, 7.3763, 7.3758, 7.3754, 7.375, 7.3763, 7.3773, 7.3769, 7.3765, 7.3761, 7.3744, 7.374, 7.3736, 7.3745, 7.3753, 7.3748, 7.3789, 7.3784, 7.3779, 7.3775, 7.3778, 7.3787, 7.3784, 7.3779, 7.3775, 7.3771, 7.3779, 7.3774, 7.377, 7.3769, 7.3783, 7.3784, 7.3779, 7.3776, 7.3771, 7.3767, 7.3762, 7.3772, 7.378, 7.3778, 7.3775, 7.3787, 7.3782, 7.3793, 7.3801, 7.3798, 7.3808, 7.3805, 7.3802, 7.3798, 7.3794, 7.3789, 7.3784, 7.3793, 7.3801, 7.3797, 7.3797, 7.3794, 7.3789, 7.3797, 7.3792, 7.3802, 7.3798, 7.3793, 7.3803, 7.38, 7.3805, 7.3801, 7.3797, 7.3793, 7.3788, 7.3784, 7.3779, 7.3778, 7.3773, 7.3768, 7.3778, 7.3775, 7.3771, 7.3779, 7.3775, 7.3784, 7.3793, 7.3801, 7.3796, 7.3791, 7.379, 7.3798, 7.3793, 7.3802, 7.3811, 7.3806, 7.3801, 7.3796, 7.3779, 7.3798, 7.3794, 7.3805, 7.3813, 7.3808, 7.3817, 7.3826, 7.3823, 7.3818, 7.3815, 7.3812, 7.3821, 7.3816, 7.3812, 7.3807, 7.3804, 7.3799, 7.3798, 7.3793, 7.3788, 7.3784, 7.378, 7.3776, 7.3773, 7.377, 7.378, 7.3776, 7.3772, 7.3769, 7.3765, 7.3761, 7.3762, 7.3772, 7.3783, 7.3778, 7.3788, 7.3783, 7.3778, 7.3773, 7.3768, 7.3776, 7.3787, 7.3791, 7.3799, 7.3795, 7.379, 7.3799, 7.3794, 7.3802, 7.3839, 7.3836, 7.3844, 7.3839, 7.3834, 7.3829, 7.3824, 7.3823, 7.3806, 7.3813, 7.3821, 7.3843, 7.3852, 7.3862, 7.3857, 7.3879, 7.3875, 7.3889, 7.3913, 7.3922, 7.3917, 7.3926, 7.3922, 7.3918, 7.3901, 7.3897, 7.3893, 7.3888, 7.3897, 7.3893, 7.3902, 7.3904, 7.3899, 7.3895, 7.3891, 7.3886, 7.389, 7.3887, 7.3882, 7.3878, 7.3877, 7.3874, 7.3869, 7.3864, 7.3861, 7.386, 7.3856, 7.3852, 7.3848, 7.3843, 7.3839, 7.3836, 7.3832, 7.3827, 7.3849, 7.3845, 7.3842, 7.3829, 7.3831, 7.3827, 7.384, 7.3853, 7.3848, 7.3845, 7.384, 7.3847, 7.3846, 7.3854, 7.3849, 7.3846, 7.3842, 7.3825, 7.3822, 7.3818, 7.3813, 7.3808, 7.3804, 7.38, 7.3796, 7.3792, 7.3775, 7.378, 7.3775, 7.3784, 7.3786, 7.3782, 7.379, 7.3786, 7.3782, 7.3791, 7.3787, 7.3796, 7.3793, 7.3789, 7.3785, 7.3782, 7.3778, 7.3774, 7.3781, 7.3777, 7.3786, 7.3782, 7.3777, 7.3773, 7.3782, 7.3794, 7.3803, 7.3798, 7.3782, 7.3777, 7.3773, 7.377, 7.3767, 7.3764, 7.3759, 7.3755, 7.3762, 7.3771, 7.378, 7.3775, 7.3772, 7.3769, 7.3764, 7.3748, 7.3744, 7.3764, 7.3795, 7.3803, 7.3811, 7.3806, 7.3801, 7.3809, 7.3804, 7.3813, 7.3827, 7.3836, 7.3833, 7.383, 7.3826, 7.3822, 7.3818, 7.3814, 7.3809, 7.3804, 7.3813, 7.3809, 7.3806, 7.3815, 7.381, 7.3806, 7.3816, 7.3826, 7.3834, 7.383, 7.385, 7.3845, 7.3841, 7.3837, 7.3832, 7.3841, 7.3838, 7.3858, 7.3853, 7.3848, 7.3858, 7.3866, 7.3874, 7.3883, 7.3887, 7.3896, 7.3892, 7.39, 7.3895, 7.3903, 7.3899, 7.3895, 7.389, 7.3888, 7.3883, 7.3879, 7.3874, 7.387, 7.3866, 7.3862, 7.3858, 7.3854, 7.3838, 7.3835, 7.3843, 7.3839, 7.3835, 7.3843, 7.3851, 7.3859, 7.3859, 7.3893, 7.3897, 7.3892, 7.39, 7.3895, 7.389, 7.3885, 7.3893, 7.3891, 7.389, 7.3888, 7.3896, 7.3894, 7.389, 7.3887, 7.3882, 7.3868, 7.3864, 7.3874, 7.387, 7.3866, 7.3876, 7.3874, 7.3882, 7.3879, 7.3874, 7.387, 7.3854, 7.385, 7.3847, 7.3854, 7.3862, 7.3858, 7.3866, 7.3862, 7.3846, 7.3844, 7.384, 7.3836, 7.3833, 7.3817, 7.3812, 7.382, 7.3816, 7.3824, 7.3808, 7.3817, 7.3801, 7.3787, 7.3782, 7.3778, 7.3792, 7.3787, 7.3782, 7.3777, 7.3772, 7.3768, 7.3776, 7.3773, 7.3768, 7.3776, 7.376, 7.3757, 7.3752, 7.3748, 7.3744, 7.3741, 7.3737, 7.3732, 7.3728, 7.3743, 7.3738, 7.3734, 7.3729, 7.3724, 7.372, 7.3715, 7.371, 7.3705, 7.37, 7.3708, 7.3703, 7.3699, 7.3695, 7.369, 7.3698, 7.3708, 7.3704, 7.3712, 7.3721, 7.3717, 7.3727, 7.3722, 7.3718, 7.3713, 7.3698, 7.3694, 7.3691, 7.3687, 7.3695, 7.3691, 7.37, 7.3708, 7.3716, 7.3711, 7.3706, 7.3701, 7.3699, 7.3701, 7.3698, 7.3706, 7.3701, 7.3696, 7.3694, 7.3691, 7.3676, 7.3672, 7.3708, 7.3704, 7.3691, 7.3699, 7.3695, 7.3692, 7.369, 7.3686, 7.37, 7.3708, 7.3707, 7.3702, 7.3699, 7.3695, 7.3691, 7.3699, 7.3696, 7.3697, 7.3694, 7.3689, 7.3685, 7.3693, 7.3688, 7.3683, 7.3687, 7.3683, 7.3683, 7.3687, 7.3708, 7.3704, 7.3728, 7.3724, 7.372, 7.3742, 7.3738, 7.3785, 7.3781, 7.3777, 7.3773, 7.377, 7.3781, 7.3777, 7.3775, 7.3772, 7.3767, 7.3762, 7.3757, 7.3755, 7.3751, 7.3759, 7.3757, 7.3754, 7.3749, 7.3746, 7.3742, 7.3738, 7.3723, 7.3719, 7.3704, 7.3699, 7.3707, 7.3704, 7.3691, 7.3688, 7.3697, 7.3693, 7.369, 7.3688, 7.3686, 7.3694, 7.369, 7.3685, 7.368, 7.3748, 7.3744, 7.3743, 7.3739, 7.3734, 7.373, 7.3726, 7.3722, 7.3719, 7.3715, 7.3713, 7.3708, 7.3704, 7.37, 7.3696, 7.3681, 7.3676, 7.3672, 7.3669, 7.3666, 7.3662, 7.3657, 7.3652, 7.3647, 7.3643, 7.3652, 7.365, 7.3647, 7.3643, 7.3641, 7.3636, 7.3632, 7.3628, 7.3624, 7.362, 7.3615, 7.3613, 7.3608, 7.3593, 7.3589, 7.3586, 7.3581, 7.3577, 7.3573, 7.361, 7.3611, 7.3608, 7.3605, 7.3613, 7.361, 7.3618, 7.3618, 7.3614, 7.361, 7.3605, 7.3601, 7.3597, 7.3597, 7.3593, 7.3601, 7.3597, 7.3594, 7.3589, 7.3585, 7.3582, 7.3579, 7.3575, 7.3571, 7.3568, 7.3563, 7.3558, 7.3555, 7.3551, 7.3558, 7.3566, 7.3562, 7.3558, 7.3566, 7.3552, 7.3551, 7.3547, 7.3543, 7.3539, 7.3537, 7.3544, 7.3539, 7.3535, 7.353, 7.3527, 7.3523, 7.3519, 7.3515, 7.3534, 7.3531, 7.3527, 7.3537, 7.3547, 7.3561, 7.3557, 7.3566, 7.3589, 7.3597, 7.3595, 7.3592, 7.3589, 7.3584, 7.3592, 7.36, 7.3608, 7.3606, 7.3602, 7.3587, 7.3584, 7.3581, 7.3588, 7.3583, 7.359, 7.3598, 7.3595, 7.3592, 7.3588, 7.3584, 7.3588, 7.3584, 7.3592, 7.3625, 7.3633, 7.3641, 7.3637, 7.3644, 7.3641, 7.3659, 7.3667, 7.3663, 7.366, 7.3672, 7.3669, 7.3676, 7.3684, 7.368, 7.3678, 7.3674, 7.3682, 7.3679, 7.3675, 7.367, 7.3677, 7.3674, 7.3677, 7.3673, 7.3676, 7.3757, 7.3755, 7.3751, 7.3748, 7.3749, 7.3745, 7.3743, 7.3739, 7.3736, 7.3733, 7.373, 7.3726, 7.3722, 7.3719, 7.374, 7.3747, 7.3765, 7.3761, 7.3757, 7.3765, 7.3761, 7.3768, 7.3764, 7.3796, 7.3792, 7.3788, 7.3795, 7.3814, 7.3822, 7.3817, 7.3836, 7.3835, 7.3831, 7.3827, 7.3823, 7.382, 7.3829, 7.3836, 7.3832, 7.3835, 7.3843, 7.3828, 7.3837, 7.3834, 7.3853, 7.3849, 7.3845, 7.3843, 7.384, 7.3838, 7.3846, 7.3854, 7.385, 7.3847, 7.3843, 7.3838, 7.3836, 7.3833, 7.383, 7.3827, 7.3823, 7.3821, 7.3828, 7.3825, 7.3821, 7.3806, 7.3814, 7.3811, 7.382, 7.3817, 7.3813, 7.3811, 7.3807, 7.3803, 7.3826, 7.3833, 7.3841, 7.3848, 7.3854, 7.3854, 7.385, 7.3847, 7.3833, 7.3824, 7.382, 7.3823, 7.3831, 7.3827, 7.3823, 7.382, 7.3816, 7.3813, 7.3809, 7.3804, 7.3812, 7.3807, 7.3802, 7.3798, 7.3794, 7.379, 7.3797, 7.3804, 7.3811, 7.3807, 7.3804, 7.38, 7.3796, 7.3803, 7.3803, 7.38, 7.3796, 7.3793, 7.3789, 7.3785, 7.3781, 7.3777, 7.3774, 7.377, 7.3767, 7.3782, 7.3779, 7.3775, 7.3782, 7.3778, 7.3785, 7.3789, 7.3808, 7.3804, 7.38, 7.3806, 7.3813, 7.3809, 7.3805, 7.3801, 7.3808, 7.3803, 7.3798, 7.3794, 7.379, 7.3789, 7.3785, 7.3781, 7.3788, 7.3785, 7.3781, 7.3778, 7.3776, 7.3772, 7.3768, 7.3764, 7.3761, 7.3757, 7.3755, 7.3752, 7.3755, 7.3751, 7.3747, 7.3743, 7.3764, 7.376, 7.3767, 7.3753, 7.3749, 7.3747, 7.3744, 7.374, 7.3736, 7.3744, 7.374, 7.3736, 7.3732, 7.3729, 7.3736, 7.3732, 7.3729, 7.3725, 7.3732, 7.3729, 7.3725, 7.3744, 7.374, 7.3737, 7.3744, 7.374, 7.3738, 7.3736, 7.3739, 7.3735, 7.3743, 7.3739, 7.3737, 7.3734, 7.3731, 7.3727, 7.3724, 7.372, 7.3716, 7.3712, 7.3718, 7.3715, 7.3713, 7.3709, 7.3705, 7.3712, 7.3709, 7.3705, 7.3701, 7.3697, 7.3704, 7.37, 7.3718, 7.3716, 7.3717, 7.3713, 7.3709, 7.3723, 7.3719, 7.3716, 7.3725, 7.3722, 7.3718, 7.3715, 7.3712, 7.3709, 7.3705, 7.3701, 7.3716, 7.3712, 7.3708, 7.3704, 7.37, 7.3708, 7.3705, 7.3691, 7.3699, 7.3695, 7.3691, 7.3687, 7.3683, 7.368, 7.3676, 7.3673, 7.3671, 7.3667, 7.3664, 7.365, 7.3646, 7.3642, 7.3649, 7.3646, 7.3642, 7.3638, 7.3634, 7.3641, 7.3637, 7.3635, 7.3631, 7.3627, 7.3624, 7.362, 7.3618, 7.3616, 7.3612, 7.3608, 7.3604, 7.3601, 7.3598, 7.3599, 7.3595, 7.3583, 7.3579, 7.3598, 7.3594, 7.3591, 7.3598, 7.3629, 7.3625, 7.3622, 7.3618, 7.3616, 7.3624, 7.3631, 7.3628, 7.3626, 7.3623, 7.3624, 7.362, 7.3642, 7.364, 7.3641, 7.3648, 7.3673, 7.367, 7.3679, 7.3677, 7.3674, 7.3682, 7.37, 7.3696, 7.3693, 7.369, 7.3687, 7.3695, 7.373, 7.3726, 7.3734, 7.373, 7.3727, 7.3724, 7.3721, 7.3718, 7.3725, 7.3743, 7.375, 7.3758, 7.3754, 7.375, 7.3747, 7.3743, 7.375, 7.3746, 7.3747, 7.3746, 7.3743, 7.3739, 7.3737, 7.3735, 7.3735, 7.3732, 7.3729, 7.3737, 7.3733, 7.374, 7.3748, 7.3756, 7.3756, 7.3762, 7.3758, 7.3755, 7.3761, 7.3758, 7.3755, 7.3751, 7.3748, 7.3745, 7.3743, 7.375, 7.3747, 7.3744, 7.3752, 7.375, 7.3758, 7.3754, 7.3761, 7.3748, 7.3744, 7.374, 7.3736, 7.3733, 7.372, 7.3716, 7.3723, 7.3719, 7.3716, 7.3713, 7.3709, 7.3709, 7.3717, 7.3713, 7.372, 7.3716, 7.3715, 7.3712, 7.371, 7.3707, 7.3694, 7.3691, 7.3688, 7.3684, 7.368, 7.3677, 7.3674, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3667, 7.3664, 7.3664, 7.3662, 7.3658, 7.3654, 7.3661, 7.3667, 7.3665, 7.3672, 7.3669, 7.3678, 7.3674, 7.3672, 7.3679, 7.3676, 7.3683, 7.3679, 7.3675, 7.3683, 7.3679, 7.3675, 7.3672, 7.3679, 7.3675, 7.3672, 7.3668, 7.3675, 7.3671, 7.3667, 7.3663, 7.3662, 7.367, 7.3668, 7.3675, 7.3671, 7.3679, 7.3686, 7.3672, 7.3668, 7.3719, 7.3715, 7.3702, 7.3709, 7.3707, 7.3715, 7.3712, 7.3708, 7.3705, 7.3702, 7.3698, 7.3704, 7.3711, 7.3707, 7.3709, 7.3706, 7.3702, 7.3698, 7.3695, 7.3692, 7.3699, 7.3717, 7.3726, 7.3723, 7.3747, 7.3745, 7.3743, 7.3729, 7.3725, 7.3721, 7.3728, 7.3725, 7.3735, 7.3742, 7.3738, 7.3736, 7.3744, 7.3742, 7.3728, 7.3725, 7.3732, 7.3732, 7.3731, 7.3718, 7.3715, 7.3711, 7.3707, 7.371, 7.3707, 7.3716, 7.3712, 7.3719, 7.3716, 7.3712, 7.3708, 7.3715, 7.3722, 7.372, 7.3716, 7.3716, 7.3723, 7.373, 7.3726, 7.3722, 7.3718, 7.3714, 7.3721, 7.3728, 7.3738, 7.3734, 7.3731, 7.3727, 7.3723, 7.373, 7.3729, 7.3726, 7.3726, 7.3724, 7.3732, 7.3728, 7.3724, 7.3731, 7.3718, 7.3715, 7.3722, 7.372, 7.3717, 7.3714, 7.3722, 7.3721, 7.3717, 7.3713, 7.371, 7.3717, 7.3723, 7.3722, 7.372, 7.3716, 7.3712, 7.3719, 7.3716, 7.3723, 7.372, 7.3716, 7.3714, 7.371, 7.3706, 7.3714, 7.3711, 7.3707, 7.3747, 7.3743, 7.373, 7.3736, 7.3732, 7.3739, 7.3735, 7.3742, 7.3739, 7.3735, 7.3742, 7.3738, 7.3734, 7.373, 7.3726, 7.3722, 7.3719, 7.3715, 7.3711, 7.3718, 7.3725, 7.3721, 7.3717, 7.3725, 7.3732, 7.3732, 7.3728, 7.3735, 7.3742, 7.3739, 7.3747, 7.3754, 7.3761, 7.3758, 7.3754, 7.375, 7.3747, 7.3734, 7.374, 7.3736, 7.3739, 7.3736, 7.3732, 7.3729, 7.3726, 7.3723, 7.3711, 7.3708, 7.3704, 7.3691, 7.3698, 7.3694, 7.3692, 7.3689, 7.3695, 7.3702, 7.3699, 7.3695, 7.3692, 7.3693, 7.369, 7.3697, 7.3693, 7.3691, 7.3678, 7.3685, 7.3681, 7.3688, 7.3695, 7.3691, 7.3698, 7.3726, 7.3722, 7.3722, 7.3718, 7.3715, 7.3722, 7.373, 7.3727, 7.3724, 7.373, 7.3727, 7.3723, 7.373, 7.3728, 7.3734, 7.3732, 7.3729, 7.3737, 7.3745, 7.3752, 7.3748, 7.3746, 7.3753, 7.376, 7.3757, 7.3753, 7.3749, 7.3746, 7.3769, 7.3766, 7.3778, 7.3774, 7.3771, 7.3768, 7.3756, 7.3762, 7.376, 7.3758, 7.3754, 7.3751, 7.3757, 7.3758, 7.3771, 7.3768, 7.3768, 7.3767, 7.3763, 7.3759, 7.3756, 7.3752, 7.3749, 7.3745, 7.3743, 7.3739, 7.3735, 7.3731, 7.3727, 7.3734, 7.373, 7.3726, 7.3733, 7.3752, 7.3753, 7.3751, 7.3747, 7.3743, 7.3739, 7.3745, 7.3741, 7.3737, 7.3733, 7.3731, 7.3727, 7.3723, 7.3719, 7.3716, 7.3712, 7.3699, 7.3706, 7.3702, 7.3719, 7.3718, 7.3715, 7.3702, 7.3699, 7.3695, 7.3692, 7.3716, 7.3723, 7.372, 7.3716, 7.3713, 7.371, 7.3706, 7.3704, 7.3701, 7.3697, 7.3704, 7.37, 7.3698, 7.3704, 7.37, 7.3706, 7.3704, 7.3711, 7.3709, 7.3708, 7.3705, 7.3701, 7.3709, 7.3707, 7.3715, 7.3712, 7.3719, 7.3715, 7.3722, 7.3742, 7.3738, 7.3735, 7.3742, 7.3738, 7.3744, 7.3742, 7.3739, 7.3745, 7.3742, 7.3739, 7.3735, 7.3738, 7.3736, 7.3753, 7.3754, 7.3751, 7.3749, 7.3746, 7.3743, 7.3749, 7.375, 7.374, 7.3737, 7.3749, 7.3745, 7.3752, 7.3801, 7.3797, 7.3793, 7.3789, 7.3785, 7.3781, 7.3777, 7.3774, 7.378, 7.3777, 7.3784, 7.3816, 7.3819, 7.3819, 7.3816, 7.3812, 7.3809, 7.3816, 7.3833, 7.3831, 7.3839, 7.3837, 7.3834, 7.3843, 7.3841, 7.3848, 7.3875, 7.3871, 7.3868, 7.3874, 7.3871, 7.3868, 7.3864, 7.3853, 7.3849, 7.3856, 7.3862, 7.3858, 7.3854, 7.3851, 7.3848, 7.3845, 7.3841, 7.3839, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.3807, 7.3806, 7.3813, 7.382, 7.3827, 7.3823, 7.383, 7.3837, 7.3833, 7.3829, 7.3825, 7.3841, 7.3838, 7.3834, 7.3831, 7.3827, 7.3823, 7.382, 7.3829, 7.3827, 7.3834, 7.383, 7.3839, 7.3836, 7.3849, 7.3849, 7.3847, 7.3855, 7.3853, 7.3862, 7.386, 7.3859, 7.3855, 7.3856, 7.3852, 7.385, 7.3847, 7.3844, 7.384, 7.3837, 7.3834, 7.3831, 7.3828, 7.3825, 7.3823, 7.3822, 7.3819, 7.3806, 7.3802, 7.3799, 7.3817, 7.3824, 7.3821, 7.3817, 7.3808, 7.3806, 7.3802, 7.3799, 7.3796, 7.3793, 7.379, 7.3787, 7.3793, 7.379, 7.3786, 7.3774, 7.3771, 7.3777, 7.3783, 7.3789, 7.3795, 7.3791, 7.3788, 7.3794, 7.3791, 7.3787, 7.3783, 7.3793, 7.3799, 7.3796, 7.3792, 7.3801, 7.3799, 7.3797, 7.3794, 7.3792, 7.3799, 7.3795, 7.3802, 7.3809, 7.3807, 7.3814, 7.3821, 7.3828, 7.3824, 7.3831, 7.3829, 7.3825, 7.3821, 7.3817, 7.3823, 7.3819, 7.3816, 7.3813, 7.3809, 7.3805, 7.3804, 7.38, 7.381, 7.3834, 7.3833, 7.3841, 7.3838, 7.3834, 7.383, 7.3828, 7.3824, 7.3822, 7.3819, 7.3818, 7.3824, 7.3821, 7.3827, 7.3824, 7.382, 7.3817, 7.3824, 7.382, 7.3817, 7.3815, 7.3821, 7.3827, 7.3824, 7.382, 7.3826, 7.3823, 7.3821, 7.3818, 7.3835, 7.3832, 7.3838, 7.3835, 7.3833, 7.383, 7.3827, 7.3823, 7.3819, 7.3844, 7.3841, 7.3844, 7.385, 7.3848, 7.3854, 7.385, 7.3846, 7.3865, 7.3861, 7.3858, 7.3854, 7.385, 7.3847, 7.3845, 7.3842, 7.383, 7.3827, 7.3833, 7.383, 7.3828, 7.3826, 7.3824, 7.3831, 7.3828, 7.3837, 7.3833, 7.3829, 7.3828, 7.3825, 7.3823, 7.382, 7.3827, 7.3825, 7.3826, 7.3824, 7.3821, 7.3818, 7.3815, 7.3812, 7.3811, 7.3809, 7.3806, 7.3803, 7.381, 7.3808, 7.3815, 7.3812, 7.381, 7.3816, 7.3812, 7.3809, 7.3806, 7.3804, 7.38, 7.3796, 7.3794, 7.3791, 7.3802, 7.3807, 7.3813, 7.381, 7.3798, 7.3786, 7.3783, 7.379, 7.3786, 7.3783, 7.3789, 7.3787, 7.3783, 7.378, 7.3789, 7.3789, 7.3786, 7.3783, 7.3795, 7.3792, 7.3788, 7.3786, 7.3792, 7.3789, 7.3785, 7.3782, 7.3808, 7.3837, 7.3833, 7.3839, 7.3836, 7.3833, 7.383, 7.3837, 7.3827, 7.3817, 7.3814, 7.3821, 7.3818, 7.3816, 7.3814, 7.382, 7.3816, 7.3814, 7.381, 7.3808, 7.3805, 7.3803, 7.3801, 7.3798, 7.3795, 7.3794, 7.3791, 7.3798, 7.3795, 7.3791, 7.3788, 7.3786, 7.3782, 7.3779, 7.3775, 7.3781, 7.3783, 7.3779, 7.3787, 7.3783, 7.378, 7.3776, 7.3773, 7.377, 7.3767, 7.3773, 7.3772, 7.3802, 7.38, 7.3807, 7.3795, 7.3802, 7.3799, 7.3798, 7.3795, 7.3793, 7.379, 7.3787, 7.3784, 7.378, 7.3776, 7.3772, 7.3769, 7.3766, 7.3763, 7.376, 7.3756, 7.3762, 7.3759, 7.3763, 7.3759, 7.3756, 7.3753, 7.3759, 7.3756, 7.3752, 7.3759, 7.3758, 7.3755, 7.3754, 7.3752, 7.3749, 7.3746, 7.3743, 7.374, 7.3737, 7.3733, 7.3739, 7.3736, 7.3733, 7.374, 7.3746, 7.3742, 7.3739, 7.3736, 7.3742, 7.3739, 7.3745, 7.3741, 7.3738, 7.3744, 7.374, 7.3738, 7.3735, 7.3732, 7.3728, 7.3734, 7.3741, 7.3739, 7.3736, 7.3735, 7.3741, 7.3738, 7.3735, 7.3732, 7.3729, 7.3717, 7.3714, 7.372, 7.3717, 7.3715, 7.3712, 7.3718, 7.3715, 7.3712, 7.3718, 7.3715, 7.3712, 7.371, 7.3707, 7.3733, 7.373, 7.3727, 7.3724, 7.3721, 7.3718, 7.3716, 7.3721, 7.3717, 7.3714, 7.372, 7.3716, 7.3713, 7.371, 7.3708, 7.3705, 7.3702, 7.3718, 7.3717, 7.373, 7.3731, 7.3719, 7.3716, 7.3714, 7.3711, 7.3708, 7.3714, 7.3721, 7.3719, 7.3717, 7.3722, 7.3722, 7.3719, 7.3725, 7.3723, 7.3729, 7.3725, 7.3721, 7.3718, 7.3707, 7.3704, 7.3705, 7.3702, 7.3708, 7.3708, 7.3715, 7.3713, 7.3719, 7.3716, 7.3713, 7.371, 7.3707, 7.3713, 7.3709, 7.3715, 7.3713, 7.3711, 7.3707, 7.3704, 7.3701, 7.3707, 7.3713, 7.371, 7.3706, 7.3703, 7.37, 7.3696, 7.3693, 7.3689, 7.3686, 7.3683, 7.3688, 7.3685, 7.3682, 7.3679, 7.3676, 7.3673, 7.3669, 7.3666, 7.3681, 7.3687, 7.3684, 7.368, 7.3677, 7.3684, 7.369, 7.3696, 7.3686, 7.3684, 7.3689, 7.3695, 7.3693, 7.3689, 7.3686, 7.3692, 7.3689, 7.3686, 7.3683, 7.368, 7.3678, 7.3674, 7.3672, 7.368, 7.3678, 7.3676, 7.3673, 7.3676, 7.3682, 7.3679, 7.3676, 7.3673, 7.368, 7.3687, 7.3701, 7.3708, 7.3706, 7.3703, 7.37, 7.3697, 7.3703, 7.37, 7.3697, 7.3703, 7.3701, 7.3698, 7.3695, 7.3701, 7.3708, 7.3705, 7.3701, 7.3698, 7.3705, 7.3702, 7.3699, 7.3705, 7.3777, 7.3788, 7.3788, 7.3785, 7.38, 7.3797, 7.3794, 7.3791, 7.3813, 7.3811, 7.3812, 7.381, 7.3816, 7.3813, 7.3819, 7.3816, 7.3822, 7.3819, 7.3816, 7.3813, 7.381, 7.3808, 7.3806, 7.3803, 7.38, 7.3806, 7.3812, 7.3809, 7.3808, 7.3805, 7.3811, 7.3808, 7.3805, 7.3811, 7.3816, 7.3822, 7.3828, 7.3833, 7.383, 7.3829, 7.3826, 7.3839, 7.3844, 7.3841, 7.3847, 7.3843, 7.3843, 7.3855, 7.3853, 7.385, 7.3847, 7.3844, 7.3841, 7.3838, 7.3835, 7.3833, 7.383, 7.3827, 7.3825, 7.3823, 7.383, 7.3827, 7.3824, 7.3821, 7.3819, 7.3816, 7.3813, 7.381, 7.3815, 7.3821, 7.3828, 7.3825, 7.3823, 7.3831, 7.3837, 7.3834, 7.384, 7.3846, 7.3843, 7.384, 7.3837, 7.3843, 7.3841, 7.3847, 7.3853, 7.3851, 7.3848, 7.3854, 7.3851, 7.3847, 7.3853, 7.385, 7.3856, 7.3852, 7.3849, 7.3854, 7.385, 7.3839, 7.3836, 7.3834, 7.384, 7.3848, 7.3846, 7.3843, 7.3849, 7.3854, 7.3852, 7.3841, 7.3837, 7.3834, 7.384, 7.3837, 7.3846, 7.3853, 7.3851, 7.3849, 7.3855, 7.3853, 7.385, 7.3848, 7.3845, 7.3842, 7.3839, 7.3836, 7.3833, 7.3838, 7.3834, 7.3833, 7.3839, 7.3836, 7.3833, 7.383, 7.3836, 7.3832, 7.3838, 7.3845, 7.3841, 7.3837, 7.3826, 7.3832, 7.3829, 7.3835, 7.3832, 7.3831, 7.3828, 7.3827, 7.3824, 7.3829, 7.3826, 7.3823, 7.3821, 7.3834, 7.3882, 7.3879, 7.3876, 7.3873, 7.3871, 7.3868, 7.3874, 7.3871, 7.3892, 7.3889, 7.3886, 7.3884, 7.3881, 7.3878, 7.3867, 7.3856, 7.3862, 7.385, 7.3847, 7.3844, 7.3842, 7.3851, 7.3856, 7.3853, 7.385, 7.3847, 7.3854, 7.3852, 7.3849, 7.3846, 7.3843, 7.3857, 7.3846, 7.3843, 7.3841, 7.3838, 7.3836, 7.3833, 7.3831, 7.3828, 7.3838, 7.3835, 7.3833, 7.3829, 7.3827, 7.3824, 7.3822, 7.382, 7.3818, 7.3816, 7.3814, 7.3803, 7.3795, 7.3792, 7.379, 7.3787, 7.3794, 7.3791, 7.3789, 7.3786, 7.3783, 7.378, 7.3778, 7.3775, 7.3772, 7.3777, 7.3773, 7.377, 7.3767, 7.3764, 7.377, 7.3767, 7.3764, 7.3761, 7.3758, 7.3755, 7.376, 7.378, 7.3786, 7.3785, 7.3792, 7.3792, 7.3789, 7.3787, 7.3793, 7.379, 7.3788, 7.3786, 7.3783, 7.3789, 7.3787, 7.3784, 7.3792, 7.3798, 7.3796, 7.3807, 7.3796, 7.3793, 7.3784, 7.3784, 7.3789, 7.3786, 7.3783, 7.3772, 7.3776, 7.3775, 7.3773, 7.377, 7.3768, 7.3766, 7.3797, 7.3797, 7.3795, 7.3792, 7.3789, 7.3795, 7.3792, 7.3789, 7.3795, 7.3792, 7.3791, 7.379, 7.3787, 7.3784, 7.3789, 7.3786, 7.3783, 7.3781, 7.3779, 7.3776, 7.3774, 7.3763, 7.376, 7.3758, 7.3765, 7.3762, 7.376, 7.3757, 7.3754, 7.3752, 7.376, 7.3757, 7.3754, 7.3751, 7.3749, 7.3746, 7.3743, 7.3742, 7.3739, 7.3736, 7.3734, 7.3731, 7.3737, 7.3735, 7.374, 7.3738, 7.3735, 7.3732, 7.3729, 7.3726, 7.3723, 7.3727, 7.3725, 7.3722, 7.372, 7.3718, 7.3718, 7.3716, 7.3722, 7.3719, 7.3726, 7.3723, 7.372, 7.3717, 7.3714, 7.3712, 7.3701, 7.369, 7.3687, 7.3685, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3673, 7.3662, 7.3684, 7.3689, 7.3686, 7.3683, 7.368, 7.3677, 7.3674, 7.3672, 7.3677, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3677, 7.3682, 7.3679, 7.3676, 7.3673, 7.3678, 7.3684, 7.3681, 7.3687, 7.3693, 7.369, 7.3696, 7.3693, 7.3696, 7.3693, 7.3691, 7.3697, 7.3703, 7.3701, 7.3699, 7.3713, 7.371, 7.3699, 7.3721, 7.3744, 7.3741, 7.3738, 7.3735, 7.3724, 7.3721, 7.3718, 7.3715, 7.3712, 7.3709, 7.3707, 7.3712, 7.371, 7.3707, 7.3704, 7.371, 7.3716, 7.3715, 7.372, 7.3717, 7.3714, 7.3711, 7.3708, 7.3706, 7.3703, 7.37, 7.3697, 7.3694, 7.3691, 7.3696, 7.3702, 7.3699, 7.3705, 7.3702, 7.37, 7.3706, 7.3695, 7.3701, 7.3707, 7.3705, 7.3703, 7.37, 7.3697, 7.3695, 7.3692, 7.3697, 7.3694, 7.3691, 7.3697, 7.3702, 7.3699, 7.3696, 7.3693, 7.3691, 7.3696, 7.3694, 7.3691, 7.3689, 7.3687, 7.3684, 7.3681, 7.3678, 7.3675, 7.3673, 7.367, 7.3675, 7.3672, 7.3669, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3659, 7.3656, 7.3653, 7.365, 7.3647, 7.3645, 7.3653, 7.3651, 7.3648, 7.3654, 7.3651, 7.3648, 7.3645, 7.3645, 7.3651, 7.3649, 7.3646, 7.3643, 7.364, 7.3645, 7.3642, 7.3639, 7.3636, 7.3633, 7.3639, 7.3645, 7.3642, 7.3631, 7.3629, 7.3635, 7.3641, 7.3638, 7.3635, 7.3632, 7.3629, 7.3635, 7.3632, 7.3629, 7.3626, 7.3623, 7.3628, 7.3633, 7.3639, 7.3637, 7.3634, 7.364, 7.3646, 7.3643, 7.3649, 7.3655, 7.3661, 7.3666, 7.3672, 7.3677, 7.3691, 7.3697, 7.3694, 7.3691, 7.3697, 7.3703, 7.3701, 7.3707, 7.3704, 7.3703, 7.3701, 7.3703, 7.37, 7.3697, 7.3703, 7.37, 7.3697, 7.3694, 7.3683, 7.3682, 7.3679, 7.3693, 7.369, 7.3687, 7.3684, 7.3682, 7.3687, 7.3684, 7.3681, 7.3686, 7.3683, 7.3732, 7.3729, 7.3726, 7.3723, 7.3729, 7.3735, 7.3732, 7.3729, 7.3726, 7.3724, 7.3721, 7.3718, 7.3715, 7.3712, 7.3717, 7.3714, 7.3711, 7.3716, 7.3713, 7.3719, 7.3724, 7.3722, 7.3711, 7.3708, 7.3705, 7.3702, 7.3708, 7.3708, 7.3705, 7.3702, 7.3699, 7.3705, 7.371, 7.3707, 7.3713, 7.371, 7.3715, 7.3712, 7.371, 7.3707, 7.3712, 7.3716, 7.3713, 7.371, 7.3715, 7.3729, 7.3727, 7.3725, 7.3733, 7.3747, 7.3753, 7.3752, 7.3751, 7.3757, 7.3747, 7.3746, 7.3744, 7.3749, 7.3746, 7.3751, 7.3748, 7.3746, 7.3745, 7.3742, 7.3747, 7.3745, 7.3742, 7.3748, 7.3762, 7.3772, 7.377, 7.3767, 7.3773, 7.3778, 7.3768, 7.3766, 7.3764, 7.3762, 7.3759, 7.3773, 7.377, 7.3768, 7.3781, 7.3778, 7.3792, 7.3789, 7.3794, 7.3791, 7.3796, 7.3818, 7.3815, 7.3812, 7.3811, 7.3808, 7.3805, 7.3802, 7.3808, 7.3806, 7.3812, 7.3809, 7.3806, 7.3803, 7.38, 7.3814, 7.3819, 7.3824, 7.3821, 7.3818, 7.3815, 7.3826, 7.3823, 7.3828, 7.3833, 7.383, 7.3827, 7.3826, 7.3824, 7.3821, 7.3818, 7.3823, 7.3836, 7.3836, 7.3833, 7.3838, 7.3835, 7.3833, 7.3834, 7.3865, 7.387, 7.3875, 7.3881, 7.3886, 7.3883, 7.388, 7.3878, 7.3875, 7.3873, 7.3871, 7.3874, 7.388, 7.3877, 7.3874, 7.3871, 7.3878, 7.3875, 7.3872, 7.3878, 7.3867, 7.3864, 7.3862, 7.3867, 7.3872, 7.3877, 7.3882, 7.3879, 7.3884, 7.3881, 7.3878, 7.3883, 7.3889, 7.3886, 7.3891, 7.3881, 7.3894, 7.3891, 7.3891, 7.3889, 7.3898, 7.3896, 7.3901, 7.3899, 7.3896, 7.3893, 7.3899, 7.3904, 7.3902, 7.3891, 7.3889, 7.3886, 7.3892, 7.3897, 7.3895, 7.3892, 7.3897, 7.3903, 7.39, 7.3897, 7.3902, 7.3907, 7.3912, 7.3909, 7.3907, 7.3912, 7.3909, 7.3906, 7.3903, 7.3901, 7.3906, 7.3904, 7.3901, 7.3898, 7.3903, 7.39, 7.3897, 7.3903, 7.39, 7.3912, 7.391, 7.3908, 7.3925, 7.3935, 7.3933, 7.393, 7.3935, 7.3934, 7.3932, 7.393, 7.3928, 7.3925, 7.393, 7.3935, 7.3925, 7.3923, 7.3943, 7.3948, 7.3953, 7.395, 7.3947, 7.3944, 7.3941, 7.3946, 7.3943, 7.3948, 7.3954, 7.3944, 7.3941, 7.3946, 7.3943, 7.3948, 7.3945, 7.395, 7.3947, 7.3944, 7.3942, 7.3972, 7.3969, 7.3974, 7.3971, 7.3976, 7.3973, 7.3978, 7.3983, 7.4004, 7.4024, 7.4029, 7.4034, 7.4056, 7.407, 7.4068, 7.4073, 7.407, 7.4076, 7.4081, 7.4094, 7.4084, 7.4081, 7.4079, 7.4101, 7.4098, 7.4103, 7.41, 7.4098, 7.4095, 7.4093, 7.4098, 7.4096, 7.4102, 7.4107, 7.4105, 7.411, 7.4115, 7.4112, 7.4109, 7.4106, 7.4104, 7.4101, 7.4099, 7.4097, 7.4086, 7.4084, 7.4081, 7.4086, 7.4099, 7.4104, 7.4102, 7.4099, 7.4096, 7.4093, 7.4106, 7.4103, 7.41, 7.4098, 7.4103, 7.4101, 7.4099, 7.4104, 7.4109, 7.4115, 7.412, 7.4125, 7.4115, 7.412, 7.4125, 7.4122, 7.4127, 7.4124, 7.4121, 7.4118, 7.4116, 7.4113, 7.4118, 7.4115, 7.4112, 7.411, 7.4107, 7.4105, 7.4102, 7.4107, 7.4105, 7.4111, 7.4108, 7.41, 7.4097, 7.4095, 7.4095, 7.4093, 7.409, 7.4088, 7.4086, 7.4084, 7.4082, 7.4079, 7.4076, 7.4081, 7.4071, 7.4076, 7.4081, 7.4078, 7.4083, 7.4081, 7.4094, 7.4091, 7.4088, 7.4085, 7.4082, 7.4087, 7.41, 7.4098, 7.4095, 7.4094, 7.4091, 7.4089, 7.4086, 7.4091, 7.4096, 7.4101, 7.4106, 7.4103], '192.168.122.111': [5.3339, 5.4059, 5.393, 6.5203, 7.4765, 7.1212, 6.8821, 6.7422, 6.712, 6.5917, 6.5117, 6.8683, 6.7552, 6.7003, 6.6449, 6.5723, 6.4972, 6.4645, 6.4447, 6.4346, 6.1566, 6.1149, 5.8725, 5.8481, 6.1813, 6.1599, 6.1344, 6.1259, 6.2881, 6.2733, 6.2701, 6.2507, 6.3853, 6.3679, 6.3551, 6.3459, 6.4649, 6.4514, 6.6178, 6.8606, 6.8429, 6.8121, 7.0325, 7.0313, 7.004, 7.0881, 7.234, 7.1995, 7.16, 7.1307, 7.098, 7.0656, 7.034, 7.0075, 7.1754, 7.2371, 7.228, 7.2009, 7.1702, 7.1381, 7.1085, 7.097, 7.0713, 7.0466, 7.0408, 7.0332, 7.011, 6.9864, 7.0427, 7.0348, 7.0272, 7.0052, 7.0905, 7.0736, 7.1236, 7.2431, 7.2849, 7.202, 7.199, 7.3111, 7.2891, 7.3334, 7.3101, 7.2858, 7.3399, 7.3251, 7.3284, 7.372, 7.4177, 7.4336, 7.4102, 7.4151, 7.4012, 7.5045, 7.6467, 7.633, 7.6114, 7.6012, 7.6311, 7.6141, 7.594, 7.5726, 7.5627, 7.5483, 7.6255, 7.6176, 7.6461, 7.631, 7.6191, 7.7034, 7.6851, 7.6685, 7.7074, 7.688, 7.6679, 7.6101, 7.6006, 7.6079, 7.5897, 7.6217, 7.6497, 7.6309, 7.6205, 7.6016, 7.5895, 7.5773, 7.5278, 7.5146, 7.4997, 7.4826, 7.4759, 7.541, 7.5358, 7.5201, 7.5471, 7.5433, 7.5293, 7.5166, 7.5034, 7.4886, 7.4843, 7.5058, 7.5273, 7.5123, 7.4997, 7.4871, 7.5068, 7.5301, 7.5433, 7.5331, 7.5334, 7.5533, 7.5737, 7.5603, 7.546, 7.5325, 7.5206, 7.5416, 7.5313, 7.5186, 7.507, 7.4987, 7.4852, 7.5396, 7.6801, 7.6695, 7.6631, 7.6536, 7.6429, 7.6059, 7.6244, 7.612, 7.5988, 7.586, 7.5768, 7.5686, 7.5596, 7.5509, 7.5384, 7.5561, 7.5454, 7.5347, 7.5255, 7.5562, 7.5439, 7.5337, 7.5227, 7.5122, 7.5014, 7.4899, 7.4851, 7.4749, 7.4926, 7.4973, 7.4865, 7.476, 7.4931, 7.4857, 7.4755, 7.467, 7.4837, 7.4993, 7.4894, 7.4788, 7.468, 7.4586, 7.4511, 7.441, 7.4314, 7.4215, 7.4357, 7.4279, 7.3969, 7.3965, 7.3885, 7.3833, 7.4214, 7.4348, 7.4473, 7.4219, 7.449, 7.439, 7.4322, 7.4234, 7.393, 7.3857, 7.3784, 7.3737, 7.3965, 7.3927, 7.3834, 7.3781, 7.3965, 7.3884, 7.3812, 7.3745, 7.3895, 7.3823, 7.3965, 7.3892, 7.3846, 7.3768, 7.3702, 7.3619, 7.3537, 7.3469, 7.3393, 7.3322, 7.3272, 7.343, 7.3347, 7.328, 7.3429, 7.3345, 7.329, 7.3212, 7.3186, 7.3126, 7.3063, 7.3189, 7.3139, 7.3275, 7.3438, 7.3588, 7.3524, 7.3458, 7.3607, 7.3537, 7.3496, 7.346, 7.3397, 7.3328, 7.3263, 7.3209, 7.3147, 7.311, 7.3046, 7.3183, 7.3129, 7.3119, 7.3124, 7.3064, 7.3604, 7.3565, 7.333, 7.3266, 7.3192, 7.3126, 7.3268, 7.3212, 7.3526, 7.3821, 7.381, 7.394, 7.3887, 7.3829, 7.3778, 7.3715, 7.3657, 7.3861, 7.4159, 7.4089, 7.4018, 7.4116, 7.4043, 7.3976, 7.3926, 7.3862, 7.3683, 7.3628, 7.3562, 7.3532, 7.3469, 7.3414, 7.336, 7.3297, 7.323, 7.3172, 7.3282, 7.3077, 7.3033, 7.298, 7.2922, 7.2713, 7.2663, 7.2768, 7.2712, 7.2654, 7.2597, 7.2538, 7.2481, 7.2426, 7.237, 7.2487, 7.2295, 7.2238, 7.218, 7.2127, 7.2079, 7.2029, 7.1977, 7.2081, 7.203, 7.1976, 7.1926, 7.1884, 7.1875, 7.1982, 7.2094, 7.2203, 7.215, 7.2499, 7.2497, 7.2471, 7.2416, 7.2365, 7.2313, 7.2409, 7.2358, 7.2309, 7.2408, 7.2368, 7.2468, 7.2421, 7.2372, 7.232, 7.2279, 7.2236, 7.2194, 7.2151, 7.212, 7.2067, 7.2309, 7.2273, 7.2253, 7.2077, 7.2165, 7.199, 7.1941, 7.1893, 7.213, 7.2232, 7.218, 7.2274, 7.2366, 7.2319, 7.2272, 7.2225, 7.218, 7.2157, 7.2116, 7.207, 7.2031, 7.1985, 7.1948, 7.1898, 7.1731, 7.1684, 7.164, 7.1597, 7.169, 7.166, 7.1624, 7.1581, 7.1538, 7.1494, 7.1581, 7.1669, 7.1623, 7.1587, 7.1673, 7.163, 7.1587, 7.1562, 7.165, 7.1616, 7.1596, 7.1682, 7.1642, 7.1491, 7.1447, 7.1414, 7.1371, 7.1327, 7.1174, 7.1151, 7.1238, 7.1202, 7.1158, 7.1117, 7.1151, 7.1111, 7.1199, 7.1171, 7.1257, 7.1332, 7.1416, 7.1376, 7.1338, 7.1325, 7.1288, 7.1259, 7.1222, 7.1186, 7.1147, 7.1226, 7.1544, 7.1956, 7.1919, 7.1889, 7.1962, 7.2043, 7.2002, 7.1962, 7.198, 7.2268, 7.2352, 7.255, 7.2509, 7.2471, 7.2428, 7.2389, 7.2348, 7.2309, 7.227, 7.2226, 7.2187, 7.2149, 7.2114, 7.2077, 7.2037, 7.2, 7.1988, 7.1952, 7.2028, 7.2104, 7.2073, 7.2035, 7.2048, 7.2019, 7.2023, 7.1885, 7.2074, 7.2039, 7.2008, 7.1991, 7.1961, 7.2034, 7.1994, 7.1956, 7.2027, 7.2096, 7.2118, 7.2078, 7.2045, 7.2125, 7.2103, 7.2074, 7.2042, 7.211, 7.219, 7.2269, 7.2343, 7.2413, 7.2393, 7.2364, 7.233, 7.2295, 7.2265, 7.2342, 7.2307, 7.2273, 7.2246, 7.238, 7.2466, 7.2433, 7.2503, 7.2466, 7.243, 7.2501, 7.2466, 7.2528, 7.2508, 7.2577, 7.2639, 7.2703, 7.2682, 7.2751, 7.282, 7.2885, 7.2954, 7.2933, 7.3019, 7.3031, 7.2995, 7.296, 7.2943, 7.2923, 7.2898, 7.2862, 7.2925, 7.2901, 7.3079, 7.3142, 7.3211, 7.328, 7.3249, 7.3221, 7.3419, 7.3387, 7.3457, 7.3426, 7.3394, 7.3463, 7.3432, 7.3396, 7.3377, 7.3435, 7.3405, 7.3462, 7.3525, 7.3581, 7.3547, 7.3514, 7.3621, 7.3585, 7.3552, 7.3517, 7.3659, 7.3724, 7.3787, 7.3764, 7.3825, 7.3791, 7.376, 7.3727, 7.3693, 7.3657, 7.3627, 7.3602, 7.3569, 7.3543, 7.3597, 7.3655, 7.363, 7.37, 7.3768, 7.3735, 7.3703, 7.3676, 7.3734, 7.3878, 7.3783, 7.3788, 7.3873, 7.384, 7.3806, 7.3778, 7.3749, 7.3752, 7.4074, 7.4042, 7.3947, 7.4014, 7.3984, 7.3992, 7.3929, 7.3914, 7.388, 7.3847, 7.3815, 7.3781, 7.3756, 7.373, 7.3783, 7.3749, 7.3729, 7.3697, 7.3668, 7.3745, 7.3799, 7.3766, 7.3731, 7.3781, 7.3832, 7.3813, 7.3785, 7.3836, 7.3887, 7.3856, 7.3832, 7.3801, 7.3953, 7.408, 7.4096, 7.4156, 7.4128, 7.4096, 7.4068, 7.4121, 7.4182, 7.417, 7.416, 7.4129, 7.4102, 7.4067, 7.4052, 7.4111, 7.4085, 7.4066, 7.4039, 7.4019, 7.3992, 7.3968, 7.3938, 7.3911, 7.3884, 7.3893, 7.3878, 7.3854, 7.3822, 7.3875, 7.3845, 7.3813, 7.3789, 7.3767, 7.3754, 7.3729, 7.3789, 7.376, 7.3738, 7.38, 7.3853, 7.3839, 7.389, 7.3861, 7.383, 7.3842, 7.3813, 7.3783, 7.3755, 7.373, 7.3712, 7.3686, 7.3586, 7.349, 7.3462, 7.3431, 7.3406, 7.3377, 7.3368, 7.3346, 7.3321, 7.3296, 7.3271, 7.3326, 7.33, 7.328, 7.3191, 7.3163, 7.3147, 7.3118, 7.309, 7.3061, 7.3066, 7.307600000000001, 7.3063, 7.307300000000001, 7.3057, 7.3038, 7.2956, 7.2937, 7.2988, 7.296, 7.2953, 7.3305, 7.3388, 7.3432, 7.3483, 7.3833, 7.381, 7.3715, 7.3695, 7.3684, 7.3733, 7.3707, 7.3679, 7.3651, 7.3699, 7.368, 7.3725, 7.3705, 7.3677, 7.3652, 7.3624, 7.3614, 7.359, 7.3564, 7.3536, 7.3512, 7.3484, 7.3465, 7.3439, 7.3412, 7.3387, 7.339700000000001, 7.340700000000001, 7.3381, 7.3434, 7.3408, 7.3382, 7.3361, 7.3334, 7.3381, 7.3428, 7.3401, 7.3449, 7.3491, 7.3465, 7.3511, 7.3769, 7.3753, 7.3739, 7.3784, 7.3829, 7.3802, 7.3786, 7.377, 7.3784, 7.3771, 7.3813, 7.3795, 7.3767, 7.3741, 7.3837, 7.3822, 7.3802, 7.3777, 7.3844, 7.3824, 7.3802, 7.3715, 7.3688, 7.3744, 7.3721, 7.3698, 7.3746, 7.3724, 7.3699, 7.3675, 7.372, 7.3697, 7.3682, 7.373, 7.3846, 7.3841, 7.3882, 7.3862, 7.3835, 7.381, 7.3785, 7.3759, 7.374, 7.378, 7.3911, 7.3893, 7.3868, 7.3909, 7.3885, 7.3876, 7.3853, 7.383, 7.3806, 7.3791, 7.3771, 7.3747, 7.3891, 7.3936, 7.3855, 7.3829, 7.3816, 7.3802, 7.3778, 7.3753, 7.3736, 7.3714, 7.3689, 7.3665, 7.364, 7.3618, 7.3659, 7.3635, 7.3612, 7.3607, 7.3583, 7.3624, 7.3607, 7.3583, 7.3625, 7.3601, 7.3587, 7.3568, 7.3544, 7.3525, 7.3565, 7.3612, 7.3592, 7.3571, 7.3554, 7.3534, 7.3571, 7.3552, 7.3534, 7.3577, 7.3553, 7.3535, 7.3579, 7.3555, 7.3591, 7.3567, 7.3543, 7.3533, 7.3517, 7.3555, 7.3592, 7.3567, 7.3575, 7.3557, 7.3753, 7.373, 7.3721, 7.376, 7.3743, 7.3724, 7.3704, 7.369, 7.3732, 7.3771, 7.3747, 7.3725, 7.3707, 7.3699, 7.3676, 7.3664, 7.3649, 7.3687, 7.3725, 7.3706, 7.3683, 7.379, 7.3773, 7.375, 7.373, 7.3719, 7.3705, 7.3683, 7.3609, 7.3645, 7.3624, 7.3603, 7.3581, 7.3564, 7.3543, 7.3581, 7.3618, 7.3671, 7.3649, 7.3634, 7.3612, 7.365, 7.3628, 7.3623, 7.3611, 7.359, 7.3578, 7.3566, 7.3506, 7.3608, 7.3597, 7.3663, 7.3649, 7.3687, 7.3667, 7.365, 7.3628, 7.3682, 7.3661, 7.3644, 7.3624, 7.3606, 7.3592, 7.3575, 7.3563, 7.3543, 7.3522, 7.3504, 7.3483, 7.3517, 7.3497, 7.3647, 7.3743, 7.3727, 7.371, 7.3698, 7.3677, 7.3656, 7.3693, 7.3731, 7.371, 7.3689, 7.3667, 7.3706, 7.3685, 7.378, 7.376, 7.3793, 7.3778, 7.3763, 7.375, 7.373, 7.3740000000000006, 7.3778, 7.3777, 7.3763, 7.3709, 7.3873, 7.3854, 7.391, 7.4003, 7.4042, 7.4029, 7.401, 7.405, 7.3979, 7.3958, 7.3994, 7.398, 7.3967, 7.3953, 7.4006, 7.4044, 7.4023, 7.4012, 7.3998, 7.3978, 7.3964, 7.4062, 7.4049, 7.4082, 7.4062, 7.4057, 7.4044, 7.4022, 7.4007, 7.3987, 7.3974, 7.3963, 7.4001, 7.4096, 7.4127, 7.4198, 7.4138, 7.4118, 7.4152, 7.4149, 7.4136, 7.4117, 7.4313, 7.4312, 7.4293, 7.4275, 7.4309, 7.4344, 7.4437, 7.4427, 7.4476, 7.4466, 7.4501, 7.4484, 7.453, 7.4523, 7.4509, 7.4497, 7.4578, 7.461, 7.4589, 7.4583, 7.4569, 7.4564, 7.4602, 7.4639, 7.4631, 7.4661, 7.4694, 7.4717, 7.4697, 7.4676, 7.4708, 7.4691, 7.4757, 7.4738, 7.4717, 7.4703, 7.4684, 7.4713, 7.4694, 7.4727, 7.4757, 7.4736, 7.4714, 7.4693, 7.4673, 7.4653, 7.4633, 7.4613, 7.4604, 7.4586, 7.4571, 7.455, 7.4559, 7.4552, 7.4536, 7.4534, 7.4519, 7.4698, 7.4727, 7.4706, 7.4688, 7.4746, 7.4727, 7.4731, 7.4783, 7.4763, 7.4792, 7.4775, 7.4754, 7.4734, 7.4763, 7.4743, 7.478, 7.4764, 7.4747, 7.4781, 7.4763, 7.4742, 7.4772, 7.4806, 7.4755, 7.476, 7.4741, 7.473, 7.4716, 7.4707, 7.4689, 7.4722, 7.4704, 7.4654, 7.4642, 7.463, 7.462, 7.4666, 7.4731, 7.4726, 7.4708, 7.474, 7.4773, 7.4804, 7.4833, 7.4817, 7.4849, 7.4788, 7.4779, 7.481, 7.4795, 7.4779, 7.4774, 7.4808, 7.4791, 7.4737, 7.4765, 7.4749, 7.4733, 7.4713, 7.4743, 7.4723, 7.4706, 7.469, 7.4723, 7.4706, 7.4749, 7.4778, 7.49, 7.4982, 7.4964, 7.4992, 7.4975, 7.4956, 7.4938, 7.4968, 7.4957, 7.4988, 7.4975, 7.5006, 7.5084, 7.5065, 7.5049, 7.5034, 7.5061, 7.5046, 7.5035, 7.5062, 7.5089, 7.507, 7.5052, 7.5037, 7.5018, 7.4999, 7.4985, 7.5021, 7.5002, 7.5028, 7.5057, 7.5047, 7.5037, 7.5068, 7.5058, 7.5042, 7.5024, 7.5006, 7.4992, 7.5081, 7.5065, 7.5006, 7.4989, 7.502, 7.5001, 7.4986, 7.4969, 7.4952, 7.4933, 7.4934, 7.4959, 7.4949, 7.4931, 7.4915, 7.49, 7.4886, 7.4872, 7.4899, 7.4892, 7.4919, 7.4906, 7.4894, 7.4877, 7.4903, 7.4886, 7.4868, 7.4911, 7.4903, 7.4889, 7.4878, 7.4864, 7.4851, 7.4839, 7.4822, 7.4848, 7.4833, 7.4991, 7.4983, 7.5051, 7.5127, 7.5207, 7.5189, 7.5172, 7.5162, 7.5147, 7.5133, 7.5119, 7.5102, 7.5129, 7.5112, 7.514, 7.5129, 7.5115, 7.51, 7.5085, 7.5073, 7.5058, 7.5041, 7.507, 7.5059, 7.5044, 7.5032, 7.5058, 7.5044, 7.5087, 7.5072, 7.5117, 7.5186, 7.5255, 7.5241, 7.5224, 7.5215, 7.5317, 7.5271, 7.5348, 7.545, 7.5446, 7.5471, 7.5456, 7.5516, 7.5555, 7.5758, 7.5784, 7.5812, 7.5852, 7.588, 7.5862, 7.5848, 7.583, 7.5855, 7.584, 7.5825, 7.5807, 7.5789, 7.5777, 7.5801, 7.5787, 7.5776, 7.5761, 7.5748, 7.5731, 7.5713, 7.5743, 7.5768, 7.5752, 7.578, 7.5765, 7.579, 7.5784, 7.5768, 7.5715, 7.574, 7.5723, 7.5748, 7.5746, 7.5728, 7.5752, 7.5854, 7.5838, 7.5863, 7.5847, 7.583, 7.5818, 7.5809, 7.5794, 7.5777, 7.5766, 7.5793, 7.5775, 7.5757, 7.5741, 7.5724, 7.5711, 7.5699, 7.5686, 7.567, 7.5656, 7.5666, 7.5681, 7.5664, 7.5691, 7.5683, 7.5669, 7.5839, 7.5825, 7.5851, 7.5838, 7.5835, 7.5818, 7.5804, 7.579, 7.5804, 7.5791, 7.5816, 7.5805, 7.5792, 7.5776, 7.576, 7.5759, 7.5783, 7.5767, 7.575, 7.5737, 7.5725, 7.5746, 7.5769, 7.5794, 7.5817, 7.5801, 7.5825, 7.5809, 7.5802, 7.5829, 7.5813, 7.5798, 7.5826, 7.5847, 7.5877, 7.5861, 7.5845, 7.5861, 7.5845, 7.5868, 7.5854, 7.5878, 7.5862, 7.5845, 7.5845, 7.583, 7.5861, 7.5863, 7.5851, 7.584, 7.5945, 7.5976, 7.5965, 7.5948, 7.5935, 7.5966, 7.5953, 7.5938, 7.5965, 7.5952, 7.5944, 7.5934, 7.5957, 7.5945, 7.5932, 7.5918, 7.5906, 7.589, 7.5875, 7.586, 7.5847, 7.5839, 7.5825, 7.5814, 7.58, 7.5825, 7.5812, 7.5797, 7.5786, 7.5771, 7.576, 7.5785, 7.5788, 7.5812, 7.5799, 7.5752, 7.5738, 7.5722, 7.5743, 7.5768, 7.5775, 7.5726, 7.5713, 7.5699, 7.5687, 7.5672, 7.5659, 7.5647, 7.5634, 7.5619, 7.5646, 7.5631, 7.5654, 7.5678, 7.5702, 7.569, 7.5674, 7.5698, 7.5723, 7.5718, 7.5743, 7.5732, 7.5716, 7.5702, 7.5688, 7.5708, 7.5696, 7.5684, 7.567, 7.5659, 7.5645, 7.5634, 7.5622, 7.5614, 7.5566, 7.5567, 7.556, 7.5572, 7.5557, 7.5546, 7.5598, 7.5629, 7.5614, 7.5634, 7.5586, 7.557, 7.5688, 7.5642, 7.5633, 7.5625, 7.5663, 7.5648, 7.5632, 7.5655, 7.564, 7.5628, 7.5617, 7.5602, 7.5595, 7.558, 7.5566, 7.5551, 7.5538, 7.5528, 7.5482, 7.5469, 7.549, 7.5514, 7.5539, 7.556, 7.5619, 7.564, 7.5656, 7.5677, 7.5666, 7.5653, 7.5644, 7.563, 7.5618, 7.5603, 7.5589, 7.5611, 7.5596, 7.558, 7.5603, 7.5589, 7.5575, 7.5599, 7.5597, 7.5582, 7.5569, 7.5556, 7.5546, 7.5532, 7.552, 7.5514, 7.5503, 7.5496, 7.5484, 7.5473, 7.5462, 7.5484, 7.5471, 7.5496, 7.5521, 7.5508, 7.5493, 7.5479, 7.5465, 7.5456, 7.5462, 7.5448, 7.5433, 7.5419, 7.5407, 7.5363, 7.5386, 7.5377, 7.5363, 7.5351, 7.5339, 7.5364, 7.5351, 7.5345, 7.5368, 7.5353, 7.5376, 7.5365, 7.5358, 7.5346, 7.5304, 7.5291, 7.5316, 7.5303, 7.5297, 7.5324, 7.5351, 7.5343, 7.5331, 7.5317, 7.5309, 7.5329, 7.5349, 7.5369, 7.5391, 7.538, 7.537, 7.5362, 7.5388, 7.5379, 7.54, 7.5389, 7.5376, 7.54, 7.5389, 7.5381, 7.5403, 7.5391, 7.5378, 7.5364, 7.5385, 7.5372, 7.5363, 7.5352, 7.5378, 7.54, 7.5385, 7.5371, 7.5361, 7.535, 7.5336, 7.5321, 7.5339, 7.5325, 7.5315, 7.5309, 7.5295, 7.5314, 7.5303, 7.5289, 7.5308, 7.53, 7.5286, 7.5274, 7.5261, 7.5249, 7.5206, 7.5227, 7.5214, 7.5206, 7.5198, 7.522, 7.5216, 7.5203, 7.5191, 7.5214, 7.5228, 7.5216, 7.5204, 7.5196, 7.5186, 7.5174, 7.5161, 7.5147, 7.5148, 7.5105, 7.5092, 7.5163, 7.5153, 7.514, 7.5139, 7.5125, 7.5152, 7.5139, 7.5126, 7.5113, 7.5137, 7.5158, 7.5148, 7.519, 7.5211, 7.517, 7.5164, 7.5151, 7.5171, 7.5158, 7.5145, 7.5133, 7.512, 7.5137, 7.516, 7.5149, 7.5172, 7.5164, 7.5249, 7.5235, 7.5222, 7.521, 7.52, 7.5189, 7.5176, 7.5174, 7.516, 7.5151, 7.5142, 7.5129, 7.5282, 7.5272, 7.5266, 7.5259, 7.5246, 7.5265, 7.5256, 7.5244, 7.5264, 7.5224, 7.5243, 7.5233, 7.5253, 7.5245, 7.5233, 7.5219, 7.5206, 7.5196, 7.5187, 7.5178, 7.5205, 7.5193, 7.518, 7.5139, 7.5161, 7.515, 7.514, 7.5126, 7.5115, 7.5102, 7.509, 7.5081, 7.5102, 7.5092, 7.5058, 7.5047, 7.5047, 7.5039, 7.5027, 7.5016, 7.5035, 7.5023, 7.5077, 7.5064, 7.5059, 7.5051, 7.505, 7.5071, 7.5091, 7.5082, 7.5071, 7.5067, 7.5056, 7.5047, 7.5035, 7.5027, 7.5017, 7.5037, 7.4996, 7.5061, 7.5049, 7.5069, 7.5119, 7.5139, 7.5133, 7.5121, 7.514, 7.5128, 7.5148, 7.5165, 7.5153, 7.514, 7.516, 7.5148, 7.5136, 7.5126, 7.5117, 7.5105, 7.5092, 7.5109, 7.5128, 7.5115, 7.5102, 7.5092, 7.508, 7.5069, 7.5057, 7.5049, 7.5042, 7.5061, 7.5051, 7.5039, 7.5058, 7.5048, 7.5036, 7.5054, 7.5045, 7.5041, 7.503, 7.5018, 7.5006, 7.4994, 7.4981, 7.4974, 7.5077, 7.5072, 7.5061, 7.5078, 7.5066, 7.5075, 7.5063, 7.5051, 7.5042, 7.503, 7.5051, 7.5072, 7.5062, 7.5054, 7.5044, 7.5031, 7.5053, 7.5041, 7.5028, 7.5016, 7.5006, 7.4999, 7.499, 7.4978, 7.4995, 7.5014, 7.5002, 7.4993, 7.4981, 7.4972, 7.4938, 7.4927, 7.4924, 7.4946, 7.4936, 7.4925, 7.4916, 7.4936, 7.4925, 7.4916, 7.4904, 7.492, 7.4912, 7.4955, 7.4918, 7.4907, 7.4934, 7.4925, 7.4913, 7.4903, 7.4892, 7.4882, 7.4871, 7.489, 7.4878, 7.4916, 7.4936, 7.4931, 7.4919, 7.491, 7.4928, 7.4917, 7.4914, 7.4904, 7.4898, 7.4892, 7.4884, 7.4884, 7.4874, 7.4864, 7.4882, 7.4881, 7.4945, 7.4937, 7.4928, 7.4927, 7.4947, 7.4937, 7.4928, 7.4958, 7.4979, 7.4968, 7.4957, 7.4948, 7.494, 7.4909, 7.4901, 7.487, 7.486, 7.4878, 7.4867, 7.4836, 7.4825, 7.4876, 7.4955, 7.4946, 7.4965, 7.4956, 7.4945, 7.4939, 7.4929, 7.4925, 7.4938, 7.4928, 7.4924, 7.4952, 7.4944, 7.4933, 7.4954, 7.4959, 7.5028, 7.5112, 7.5101, 7.5093, 7.5095, 7.509, 7.508, 7.5139, 7.5128, 7.5145, 7.5144, 7.5169, 7.5157, 7.5177, 7.5193, 7.5185, 7.5233, 7.531, 7.5301, 7.5291, 7.5293, 7.5338, 7.5326, 7.5316, 7.5332, 7.5368, 7.5384, 7.54, 7.5391, 7.5435, 7.5461, 7.5462, 7.5489, 7.548, 7.5458, 7.5446, 7.5435, 7.5431, 7.5422, 7.5437, 7.5427, 7.5418, 7.5407, 7.549, 7.5481, 7.5474, 7.5496, 7.5487, 7.5503, 7.5522, 7.5513, 7.5533, 7.5551, 7.5544, 7.5559, 7.5548, 7.5564, 7.5564, 7.5554, 7.557, 7.5616, 7.5604, 7.562, 7.5664, 7.5679, 7.5671, 7.5715, 7.5736, 7.5724, 7.5718, 7.5708, 7.5738, 7.5817, 7.5808, 7.5797, 7.5786, 7.5774, 7.5738, 7.5726, 7.5736, 7.5752, 7.5716, 7.5705, 7.5722, 7.5711, 7.57, 7.5689, 7.5681, 7.5679, 7.5696, 7.5697, 7.5726, 7.5719, 7.5708, 7.5698, 7.5713, 7.5702, 7.5693, 7.571, 7.5727, 7.5745, 7.5739, 7.5728, 7.5717, 7.5735, 7.5753, 7.5743, 7.5749, 7.5738, 7.5728, 7.5719, 7.571, 7.5701, 7.569, 7.5716, 7.5706, 7.5696, 7.5687, 7.5745, 7.5794, 7.5783, 7.5755, 7.5868, 7.5981, 7.5972, 7.5965, 7.5964, 7.5955, 7.5947, 7.6023, 7.6087, 7.6115, 7.6107, 7.6127, 7.6122, 7.6143, 7.616, 7.6148, 7.614, 7.6115, 7.6116, 7.6146, 7.6205, 7.6199, 7.6191, 7.6181, 7.617, 7.616, 7.615, 7.614, 7.613, 7.6121, 7.6112, 7.6104, 7.6095, 7.6114, 7.6104, 7.6121, 7.611, 7.6129, 7.6118, 7.6107, 7.6101, 7.6089, 7.6079, 7.6068, 7.6063, 7.6078, 7.6066, 7.6055, 7.6043, 7.6034, 7.606, 7.6026, 7.6042, 7.6032, 7.605, 7.6039, 7.6029, 7.6029, 7.602, 7.6014, 7.6029, 7.6019, 7.6008, 7.5998, 7.597, 7.597, 7.5999, 7.6014, 7.6003, 7.6019, 7.6008, 7.5997, 7.6032, 7.6049, 7.6039, 7.6055, 7.6069, 7.6061, 7.6052, 7.6067, 7.6056, 7.6071, 7.606, 7.6051, 7.6045, 7.6035, 7.6051, 7.6043, 7.6034, 7.6049, 7.6038, 7.608, 7.6069, 7.606, 7.6074, 7.6067, 7.6056, 7.6045, 7.6038, 7.6027, 7.6019, 7.6011, 7.6001, 7.5994, 7.601, 7.6001, 7.5991, 7.5986, 7.5977, 7.5972, 7.5962, 7.5954, 7.5946, 7.5936, 7.5926, 7.5916, 7.5906, 7.5896, 7.5886, 7.5875, 7.5866, 7.5857, 7.5846, 7.5835, 7.5824, 7.5813, 7.5805, 7.5794, 7.5811, 7.5825, 7.584, 7.5831, 7.5847, 7.5839, 7.5828, 7.5843, 7.5832, 7.5846, 7.5864, 7.5853, 7.5845, 7.5859, 7.5872, 7.5863, 7.5881, 7.5896, 7.589, 7.5907, 7.5877, 7.587, 7.586, 7.5853, 7.5844, 7.5835, 7.5825, 7.5817, 7.5857, 7.5846, 7.5862, 7.5852, 7.5847, 7.5845, 7.5869, 7.5863, 7.5853, 7.5843, 7.5834, 7.5825, 7.5815, 7.5829, 7.5824, 7.5814, 7.5804, 7.5771, 7.5761, 7.5753, 7.5743, 7.5711, 7.5702, 7.5692, 7.5685, 7.5674, 7.5689, 7.5681, 7.5675, 7.5712, 7.5704, 7.5696, 7.5686, 7.5704, 7.5696, 7.5689, 7.568, 7.5697, 7.5688, 7.5705, 7.5696, 7.5686, 7.5677, 7.5671, 7.5661, 7.5651, 7.5642, 7.5634, 7.5625, 7.5617, 7.5632, 7.5628, 7.5618, 7.5633, 7.5646, 7.5636, 7.5651, 7.5644, 7.5634, 7.5623, 7.5613, 7.5604, 7.5596, 7.5586, 7.5602, 7.5595, 7.5586, 7.5555, 7.5545, 7.556, 7.5577, 7.5574, 7.5564, 7.5556, 7.557, 7.5576, 7.5566, 7.5557, 7.555, 7.5541, 7.5532, 7.555, 7.5541, 7.5533, 7.5526, 7.5518, 7.5511, 7.5528, 7.5519, 7.5513, 7.5526, 7.5516, 7.5506, 7.5498, 7.55, 7.5491, 7.546, 7.5452, 7.5422, 7.5413, 7.5408, 7.5409, 7.5423, 7.5417, 7.541, 7.54, 7.5394, 7.5385, 7.5377, 7.5393, 7.5387, 7.5378, 7.5368, 7.5383, 7.5374, 7.5367, 7.5358, 7.5349, 7.5364, 7.5355, 7.5346, 7.5337, 7.5334, 7.5324, 7.5317, 7.531, 7.53, 7.5294, 7.5308, 7.5323, 7.5318, 7.5308, 7.53, 7.5291, 7.5285, 7.5276, 7.5268, 7.5282, 7.5277, 7.5267, 7.5281, 7.5275, 7.5302, 7.5362, 7.5352, 7.5347, 7.5339, 7.5335, 7.5349, 7.5394, 7.5387, 7.538, 7.5371, 7.54, 7.5392, 7.5416, 7.543, 7.5445, 7.5485, 7.5499, 7.5491, 7.5483, 7.5477, 7.547, 7.5462, 7.5456, 7.5449, 7.544, 7.5432, 7.5423, 7.5417, 7.541, 7.5403, 7.5417, 7.5407, 7.5398, 7.539, 7.5381, 7.5373, 7.5364, 7.5358, 7.5372, 7.5386, 7.54, 7.5413, 7.5427, 7.5418, 7.5409, 7.54, 7.5391, 7.5381, 7.5374, 7.5365, 7.5355, 7.5351, 7.5346, 7.5358, 7.5349, 7.5342, 7.5356, 7.5347, 7.5338, 7.5329, 7.5322, 7.5313, 7.5327, 7.5323, 7.5314, 7.5305, 7.5296, 7.5288, 7.5302, 7.5296, 7.5287, 7.5281, 7.5275, 7.527, 7.5264, 7.5256, 7.525, 7.5265, 7.5263, 7.5301, 7.5291, 7.5281, 7.5274, 7.5266, 7.5281, 7.5253, 7.5243, 7.5234, 7.5248, 7.5238, 7.5252, 7.5266, 7.5258, 7.5271, 7.5285, 7.5256, 7.5248, 7.524, 7.5232, 7.5222, 7.5214, 7.5206, 7.5199, 7.5192, 7.5163, 7.5177, 7.5171, 7.5164, 7.5155, 7.5145, 7.5139, 7.513, 7.5121, 7.5114, 7.5119, 7.5137, 7.5152, 7.5145, 7.5158, 7.5149, 7.5146, 7.514, 7.5134, 7.5147, 7.5139, 7.513, 7.5121, 7.5112, 7.5109, 7.5139, 7.513, 7.5121, 7.5112, 7.5103, 7.5094, 7.5088, 7.5085, 7.5078, 7.5069, 7.5061, 7.5052, 7.5043, 7.5035, 7.5049, 7.5043, 7.5037, 7.505, 7.5042, 7.5033, 7.5025, 7.5038, 7.5063, 7.5056, 7.5049, 7.5045, 7.5037, 7.5029, 7.5049, 7.5042, 7.5057, 7.505, 7.5041, 7.5077, 7.5069, 7.5061, 7.5052, 7.5065, 7.5056, 7.5048, 7.5039, 7.5035, 7.5074, 7.5074, 7.5066, 7.5057, 7.5048, 7.5045, 7.5039, 7.5081, 7.5073, 7.5067, 7.5061, 7.5052, 7.5043, 7.5039, 7.5049, 7.504, 7.5121, 7.5144, 7.5141, 7.5133, 7.5128, 7.512, 7.5133, 7.5125, 7.5119, 7.5113, 7.5105, 7.5099, 7.5093, 7.5085, 7.508, 7.5092, 7.5105, 7.5143, 7.5135, 7.5127, 7.512, 7.5112, 7.5105, 7.5122, 7.5113, 7.5087, 7.5099, 7.509, 7.5104, 7.5095, 7.5109, 7.5182, 7.5174, 7.5169, 7.5144, 7.5147, 7.5139, 7.5152, 7.5156, 7.5151, 7.5143, 7.5136, 7.5141, 7.5132, 7.5124, 7.5118, 7.5109, 7.5122, 7.5121, 7.5115, 7.5107, 7.51, 7.5095, 7.5068, 7.5063, 7.506, 7.5053, 7.5052, 7.5043, 7.5034, 7.5026, 7.504, 7.5053, 7.5027, 7.5021, 7.5014, 7.5006, 7.5021, 7.5016, 7.5008, 7.5002, 7.4997, 7.499, 7.4983, 7.4978, 7.4971, 7.4985, 7.4977, 7.4971, 7.4962, 7.4955, 7.4947, 7.4939, 7.4951, 7.4944, 7.4956, 7.4948, 7.4941, 7.4933, 7.4947, 7.4939, 7.4955, 7.501, 7.5003, 7.4997, 7.499, 7.4982, 7.4973, 7.4986, 7.4982, 7.4995, 7.4991, 7.5003, 7.4995, 7.5008, 7.5039, 7.5054, 7.5093, 7.5131, 7.5123, 7.5118, 7.511, 7.5101, 7.5093, 7.5088, 7.508, 7.5088, 7.5066, 7.5061, 7.5056, 7.5068, 7.5062, 7.5054, 7.5053, 7.5044, 7.5036, 7.5029, 7.5041, 7.5036, 7.5028, 7.5019, 7.5031, 7.5023, 7.5035, 7.5047, 7.506, 7.5053, 7.5047, 7.5022, 7.5016, 7.5008, 7.502, 7.5012, 7.5024, 7.5016, 7.501, 7.5002, 7.4993, 7.4989, 7.5003, 7.4995, 7.4991, 7.4985, 7.4979, 7.4972, 7.4984, 7.498, 7.4977, 7.4969, 7.4966, 7.4958, 7.4953, 7.4945, 7.4957, 7.4975, 7.497, 7.4964, 7.4958, 7.4952, 7.4946, 7.4959, 7.4973, 7.4967, 7.4987, 7.5004, 7.4978, 7.4993, 7.4989, 7.4981, 7.4956, 7.4949, 7.4944, 7.4958, 7.495, 7.4944, 7.4957, 7.495, 7.5043, 7.5054, 7.5046, 7.5041, 7.5035, 7.5028, 7.5021, 7.5014, 7.5049, 7.5043, 7.506, 7.5056, 7.5069, 7.5063, 7.5057, 7.5052, 7.5047, 7.5066, 7.508, 7.5098, 7.5131, 7.5124, 7.5117, 7.5114, 7.515, 7.5142, 7.5134, 7.5188, 7.5182, 7.5215, 7.5209, 7.526, 7.5252, 7.5263, 7.5258, 7.5309, 7.5301, 7.5354, 7.5346, 7.5339, 7.5333, 7.5325, 7.5319, 7.5331, 7.5325, 7.5321, 7.5298, 7.529, 7.5264, 7.5296, 7.529, 7.5322, 7.5315, 7.5327, 7.5326, 7.53, 7.5293, 7.5285, 7.5299, 7.5292, 7.5285, 7.5278, 7.5292, 7.5284, 7.5276, 7.5268, 7.526, 7.5253, 7.5264, 7.5257, 7.5269, 7.5263, 7.5255, 7.5247, 7.524, 7.5251, 7.5243, 7.5235, 7.5227, 7.5219, 7.5211, 7.5208, 7.5201, 7.5198, 7.519, 7.5202, 7.5214, 7.5191, 7.5186, 7.5178, 7.517, 7.5165, 7.5159, 7.5172, 7.5166, 7.518, 7.5179, 7.5174, 7.519, 7.5165, 7.5157, 7.5149, 7.5146, 7.5159, 7.517, 7.5201, 7.5232, 7.5284, 7.528, 7.5273, 7.5265, 7.5259, 7.5271, 7.5284, 7.5279, 7.5272, 7.5267, 7.5261, 7.5236, 7.5247, 7.5257, 7.5268, 7.526, 7.5271, 7.5265, 7.5275, 7.5267, 7.5259, 7.5251, 7.5248, 7.5241, 7.5235, 7.5247, 7.5239, 7.5234, 7.5226, 7.5239, 7.5257, 7.5255, 7.5249, 7.5241, 7.5253, 7.5247, 7.5266, 7.5279, 7.5271, 7.5263, 7.5255, 7.5249, 7.5241, 7.5233, 7.5225, 7.522, 7.5231, 7.525, 7.5242, 7.5234, 7.5226, 7.5312, 7.5304, 7.5296, 7.529, 7.5285, 7.5296, 7.5289, 7.5282, 7.5275, 7.5251, 7.5245, 7.5242, 7.5235, 7.5265, 7.5257, 7.5281, 7.5295, 7.5287, 7.5279, 7.5285, 7.534, 7.5352, 7.5364, 7.5358, 7.5351, 7.5344, 7.5336, 7.5333, 7.5326, 7.5338, 7.535, 7.5345, 7.5337, 7.5349, 7.5343, 7.5335, 7.5329, 7.5321, 7.5314, 7.5308, 7.53, 7.5294, 7.5288, 7.5282, 7.5295, 7.5323, 7.5316, 7.5329, 7.5397, 7.5408, 7.54, 7.5394, 7.5387, 7.5379, 7.5455, 7.5449, 7.546, 7.5454, 7.5447, 7.5441, 7.5436, 7.5468, 7.5479, 7.5471, 7.5474, 7.5505, 7.5499, 7.5476, 7.5468, 7.5444, 7.5456, 7.5449, 7.5443, 7.544, 7.5433, 7.5443, 7.5437, 7.5431, 7.5443, 7.5454, 7.5447, 7.544, 7.5433, 7.5426, 7.5419, 7.5431, 7.5442, 7.5435, 7.5427, 7.5428, 7.542, 7.5416, 7.5412, 7.5407, 7.5402, 7.5414, 7.5427, 7.5421, 7.5414, 7.5407, 7.54, 7.5393, 7.5388, 7.5381, 7.5376, 7.537, 7.5363, 7.5358, 7.5354, 7.5347, 7.5339, 7.5333, 7.5344, 7.5341, 7.5354, 7.5352, 7.5344, 7.5322, 7.5323, 7.5334, 7.5327, 7.5338, 7.5334, 7.5328, 7.534, 7.5332, 7.5326, 7.532, 7.5314, 7.5306, 7.5299, 7.5312, 7.5326, 7.5338, 7.5349, 7.5362, 7.5372, 7.5367, 7.5363, 7.5357, 7.5355, 7.5366, 7.536, 7.5354, 7.5349, 7.5362, 7.5356, 7.5351, 7.5343, 7.5339, 7.5331, 7.5323, 7.5335, 7.5328, 7.5325, 7.5337, 7.5332, 7.5325, 7.5319, 7.5312, 7.5308, 7.5304, 7.5299, 7.5293, 7.5287, 7.5299, 7.5311, 7.5305, 7.5299, 7.5293, 7.5305, 7.5299, 7.5294, 7.5286, 7.5281, 7.5293, 7.5287, 7.5282, 7.5294, 7.5304, 7.5297, 7.5294, 7.5288, 7.5284, 7.5277, 7.5255, 7.5248, 7.5242, 7.5237, 7.523, 7.5241, 7.5234, 7.5227, 7.522, 7.5213, 7.5206, 7.5199, 7.5192, 7.5186, 7.5179, 7.5192, 7.5185, 7.5162, 7.5173, 7.5184, 7.5177, 7.5172, 7.519, 7.5201, 7.5212, 7.5206, 7.5201, 7.5194, 7.519, 7.52, 7.5194, 7.5187, 7.518, 7.5175, 7.5168, 7.5161, 7.5156, 7.5151, 7.5145, 7.5192, 7.5221, 7.5215, 7.5192, 7.5248, 7.5247, 7.5279, 7.5297, 7.529, 7.5286, 7.528, 7.5273, 7.5266, 7.5276, 7.535, 7.5343, 7.5355, 7.5348, 7.5341, 7.5352, 7.5345, 7.5356, 7.5348, 7.5343, 7.5337, 7.5334, 7.5345, 7.5338, 7.5331, 7.5325, 7.5321, 7.5332, 7.5325, 7.5369, 7.5362, 7.5356, 7.5349, 7.5343, 7.5338, 7.5332, 7.5327, 7.5323, 7.5377, 7.537, 7.5365, 7.5359, 7.5352, 7.5348, 7.5357, 7.5368, 7.5362, 7.5355, 7.5348, 7.534, 7.5334, 7.5327, 7.5323, 7.5333, 7.5328, 7.5322, 7.5333, 7.5326, 7.5321, 7.5316, 7.531, 7.5303, 7.5296, 7.5307, 7.5301, 7.5294, 7.5287, 7.5281, 7.5276, 7.527, 7.5282, 7.5278, 7.5271, 7.5264, 7.526, 7.5259, 7.5271, 7.5267, 7.5277, 7.5275, 7.5288, 7.532, 7.5314, 7.5324, 7.5319, 7.5329, 7.5325, 7.5318, 7.5313, 7.5324, 7.5329, 7.5344, 7.5355, 7.5349, 7.5346, 7.5341, 7.5334, 7.5329, 7.5324, 7.5317, 7.5333, 7.5328, 7.5338, 7.5333, 7.5329, 7.5322, 7.5332, 7.5359, 7.5369, 7.5426, 7.5404, 7.5399, 7.5409, 7.5419, 7.543, 7.544, 7.5433, 7.5426, 7.542, 7.5415, 7.541, 7.543, 7.5424, 7.5436, 7.5446, 7.5439, 7.5434, 7.543, 7.5423, 7.5416, 7.5409, 7.5469, 7.5462, 7.5456, 7.5469, 7.5485, 7.5481, 7.5474, 7.5467, 7.5464, 7.5457, 7.545, 7.5472, 7.5465, 7.5461, 7.5456, 7.5449, 7.5442, 7.5453, 7.5446, 7.5441, 7.5436, 7.5429, 7.5423, 7.5417, 7.5412, 7.5405, 7.5398, 7.5391, 7.5402, 7.5395, 7.5389, 7.5384, 7.5382, 7.5375, 7.5387, 7.5398, 7.5394, 7.5387, 7.5381, 7.5375, 7.537, 7.5381, 7.5374, 7.5369, 7.5362, 7.5355, 7.5366, 7.536, 7.5353, 7.5356, 7.535, 7.5353, 7.5347, 7.5345, 7.5338, 7.5332, 7.5327, 7.5323, 7.5352, 7.5347, 7.5344, 7.5337, 7.533, 7.5325, 7.5336, 7.5331, 7.5324, 7.5327, 7.5321, 7.5331, 7.5325, 7.5305, 7.5306, 7.5316, 7.5326, 7.5336, 7.5329, 7.5324, 7.5319, 7.5313, 7.5292, 7.5286, 7.5303, 7.5297, 7.5293, 7.5289, 7.5286, 7.528, 7.529, 7.5299, 7.5309, 7.5303, 7.5297, 7.5293, 7.5291, 7.5294, 7.5289, 7.5282, 7.5277, 7.527, 7.5263, 7.5256, 7.5249, 7.5259, 7.5253, 7.5246, 7.5255, 7.525, 7.5243, 7.5241, 7.5237, 7.5246, 7.524, 7.5235, 7.5231, 7.5224, 7.5234, 7.5244, 7.5237, 7.5247, 7.5243, 7.5237, 7.5231, 7.5241, 7.5236, 7.5232, 7.5226, 7.5244, 7.5239, 7.5233, 7.5227, 7.5221, 7.5215, 7.5211, 7.5205, 7.5215, 7.521, 7.5204, 7.5198, 7.5192, 7.5188, 7.5198, 7.5229, 7.5222, 7.5218, 7.5227, 7.5229, 7.5225, 7.5218, 7.5211, 7.5205, 7.5199, 7.5209, 7.5203, 7.5214, 7.5223, 7.5217, 7.521, 7.522, 7.5214, 7.5207, 7.5205, 7.5188, 7.52, 7.5195, 7.5215, 7.5215, 7.5231, 7.5261, 7.5255, 7.525, 7.5281, 7.5341, 7.5335, 7.5376, 7.5386, 7.5414, 7.5407, 7.5401, 7.5396, 7.5405, 7.5401, 7.5395, 7.5405, 7.5415, 7.5409, 7.5423, 7.5416, 7.5417, 7.541, 7.5405, 7.5398, 7.5392, 7.5385, 7.5389, 7.539, 7.5387, 7.5396, 7.5405, 7.5401, 7.5396, 7.5407, 7.5404, 7.5398, 7.5393, 7.5404, 7.5398, 7.5392, 7.5388, 7.5399, 7.5393, 7.5402, 7.5396, 7.539, 7.54, 7.5395, 7.5404, 7.54, 7.5395, 7.5388, 7.5397, 7.5391, 7.5385, 7.5379, 7.5374, 7.5368, 7.5378, 7.5388, 7.5385, 7.5394, 7.5374, 7.5372, 7.5369, 7.5366, 7.5376, 7.5369, 7.5365, 7.5361, 7.5356, 7.5351, 7.5346, 7.5341, 7.5336, 7.534, 7.5337, 7.5331, 7.5342, 7.5336, 7.5317, 7.5313, 7.5309, 7.532, 7.5315, 7.5319, 7.5314, 7.5313, 7.5308, 7.5318, 7.5318, 7.5329, 7.5324, 7.5321, 7.5316, 7.5341, 7.535, 7.536, 7.5369, 7.5394, 7.5388, 7.5388, 7.5384, 7.5385, 7.538, 7.5376, 7.537, 7.5382, 7.5377, 7.5373, 7.5366, 7.5375, 7.54, 7.5409, 7.5463, 7.5459, 7.5457, 7.5456, 7.5468, 7.5463, 7.5457, 7.5466, 7.5461, 7.5454, 7.5449, 7.5442, 7.5436, 7.5431, 7.5427, 7.5422, 7.5416, 7.54, 7.5395, 7.5391, 7.5385, 7.5379, 7.5388, 7.5398, 7.5392, 7.5387, 7.5367, 7.5362, 7.5387, 7.5383, 7.5379, 7.5374, 7.5368, 7.5363, 7.5357, 7.5352, 7.5345, 7.5339, 7.5334, 7.5328, 7.5337, 7.5331, 7.5327, 7.5337, 7.5345, 7.5339, 7.5334, 7.5328, 7.5335, 7.5331, 7.5362, 7.5372, 7.5367, 7.5362, 7.5372, 7.5381, 7.5392, 7.5403, 7.5402, 7.5412, 7.5408, 7.5403, 7.5398, 7.5393, 7.5416, 7.5426, 7.5434, 7.5444, 7.5453, 7.5448, 7.5456, 7.5451, 7.5446, 7.5456, 7.5468, 7.5461, 7.5455, 7.5463, 7.5457, 7.5452, 7.5446, 7.5456, 7.5451, 7.5461, 7.5456, 7.5452, 7.5447, 7.5445, 7.544, 7.545, 7.5459, 7.5468, 7.5477, 7.5471, 7.5467, 7.5462, 7.5456, 7.5452, 7.5461, 7.5455, 7.545, 7.5447, 7.5442, 7.5437, 7.5447, 7.5443, 7.5437, 7.5432, 7.5427, 7.5424, 7.5419, 7.5413, 7.5408, 7.5402, 7.5397, 7.5391, 7.5385, 7.5382, 7.5392, 7.5387, 7.5381, 7.5375, 7.5384, 7.538, 7.5374, 7.5369, 7.5363, 7.5358, 7.5353, 7.5362, 7.5356, 7.5351, 7.5346, 7.5355, 7.5365, 7.5359, 7.5405, 7.5401, 7.5395, 7.5405, 7.54, 7.5394, 7.5404, 7.5399, 7.5395, 7.5391, 7.5386, 7.5385, 7.5379, 7.5389, 7.5384, 7.5378, 7.5373, 7.5367, 7.5361, 7.5371, 7.5365, 7.536, 7.5354, 7.5335, 7.5344, 7.5353, 7.5362, 7.5356, 7.535, 7.5344, 7.5339, 7.5334, 7.5333, 7.5328, 7.5323, 7.5324, 7.5321, 7.5315, 7.5329, 7.5338, 7.5357, 7.5358, 7.5358, 7.5352, 7.5347, 7.5355, 7.5378, 7.5372, 7.5369, 7.5377, 7.5373, 7.5368, 7.5363, 7.5358, 7.5352, 7.5346, 7.5341, 7.5337, 7.5331, 7.5325, 7.5319, 7.5301, 7.5296, 7.5319, 7.5313, 7.5308, 7.5303, 7.5297, 7.5308, 7.5302, 7.5312, 7.5293, 7.5275, 7.5269, 7.5263, 7.526, 7.5269, 7.5265, 7.5247, 7.5228, 7.5223, 7.5218, 7.5212, 7.5241, 7.525, 7.5244, 7.524, 7.5249, 7.5244, 7.524, 7.5234, 7.5231, 7.524, 7.5234, 7.5232, 7.5226, 7.5221, 7.5229, 7.5237, 7.5218, 7.5212, 7.5195, 7.519, 7.5184, 7.5179, 7.5176, 7.5174, 7.5169, 7.5195, 7.5189, 7.5185, 7.5181, 7.5177, 7.5171, 7.5165, 7.516, 7.5169, 7.5164, 7.516, 7.5155, 7.5149, 7.5157, 7.5151, 7.5145, 7.5139, 7.5134, 7.5128, 7.5122, 7.5116, 7.5112, 7.5106, 7.5115, 7.5123, 7.5132, 7.5126, 7.512, 7.5128, 7.5122, 7.5132, 7.5128, 7.5137, 7.5132, 7.5126, 7.5148, 7.5157, 7.5165, 7.5232, 7.5226, 7.5231, 7.5227, 7.5221, 7.5215, 7.5253, 7.5249, 7.5244, 7.524, 7.5236, 7.525, 7.5244, 7.5274, 7.5283, 7.5278, 7.5272, 7.5267, 7.5263, 7.5272, 7.5275, 7.5269, 7.5278, 7.5273, 7.5268, 7.5264, 7.5249, 7.5257, 7.5252, 7.5261, 7.5304, 7.5298, 7.5347, 7.5349, 7.5344, 7.5339, 7.5347, 7.5342, 7.5349, 7.5345, 7.5351, 7.5359, 7.5355, 7.5351, 7.5348, 7.5342, 7.5336, 7.5333, 7.5328, 7.5337, 7.5332, 7.5326, 7.532, 7.5315, 7.531, 7.5316, 7.5344, 7.5339, 7.5334, 7.5328, 7.5325, 7.5333, 7.5386, 7.5384, 7.5393, 7.5437, 7.5432, 7.5454, 7.5452, 7.5447, 7.5442, 7.5451, 7.5461, 7.547, 7.5464, 7.546, 7.5455, 7.5449, 7.5444, 7.5438, 7.5446, 7.544, 7.5434, 7.5428, 7.5422, 7.5431, 7.5428, 7.5436, 7.5431, 7.5425, 7.542, 7.5416, 7.5411, 7.5408, 7.5403, 7.5397, 7.5392, 7.5387, 7.5384, 7.5394, 7.5389, 7.5384, 7.5379, 7.5412, 7.5407, 7.5406, 7.54, 7.5408, 7.5403, 7.5413, 7.5407, 7.5417, 7.5456, 7.5466, 7.5456, 7.5451, 7.5451, 7.5445, 7.5441, 7.5439, 7.5436, 7.5434, 7.5428, 7.5422, 7.5418, 7.5413, 7.5409, 7.5405, 7.5387, 7.5387, 7.5381, 7.5376, 7.5371, 7.5366, 7.5375, 7.537, 7.5365, 7.536, 7.5354, 7.5349, 7.5343, 7.5341, 7.5325, 7.5322, 7.5317, 7.5312, 7.532, 7.5316, 7.5324, 7.5318, 7.5312, 7.5308, 7.5302, 7.5298, 7.5294, 7.5288, 7.5283, 7.5278, 7.5273, 7.5269, 7.5265, 7.5259, 7.5254, 7.5267, 7.5263, 7.5258, 7.5253, 7.5247, 7.5255, 7.5265, 7.5259, 7.5255, 7.5263, 7.5273, 7.5267, 7.5275, 7.5271, 7.5267, 7.5261, 7.5269, 7.5326, 7.5321, 7.5315, 7.5309, 7.5305, 7.5306, 7.5314, 7.5311, 7.5307, 7.5305, 7.53, 7.5296, 7.5304, 7.5299, 7.5294, 7.5289, 7.5285, 7.5293, 7.5289, 7.5297, 7.5291, 7.5287, 7.5283, 7.5278, 7.5273, 7.5267, 7.5251, 7.5259, 7.5254, 7.5249, 7.5231, 7.5238, 7.5246, 7.5255, 7.5251, 7.5246, 7.5241, 7.5236, 7.5231, 7.524, 7.5236, 7.5232, 7.5227, 7.5241, 7.5236, 7.5245, 7.5228, 7.5226, 7.5221, 7.5217, 7.5213, 7.5222, 7.5219, 7.5234, 7.5256, 7.5257, 7.5292, 7.5286, 7.5309, 7.5317, 7.5325, 7.5333, 7.5329, 7.5338, 7.5347, 7.5341, 7.5336, 7.5333, 7.5328, 7.5323, 7.5329, 7.5337, 7.5331, 7.5325, 7.5321, 7.5316, 7.531, 7.5318, 7.5326, 7.5322, 7.5316, 7.5323, 7.533, 7.5339, 7.5333, 7.5341, 7.5349, 7.5344, 7.5339, 7.5334, 7.5329, 7.5324, 7.532, 7.5328, 7.5351, 7.5347, 7.5354, 7.5349, 7.5344, 7.5341, 7.5337, 7.5345, 7.5339, 7.5335, 7.5346, 7.5355, 7.535, 7.5346, 7.5342, 7.5343, 7.5353, 7.5349, 7.5345, 7.534, 7.5371, 7.5358, 7.5366, 7.5362, 7.5352, 7.5361, 7.5356, 7.5368, 7.5364, 7.536, 7.5346, 7.5341, 7.5336, 7.5332, 7.5327, 7.5324, 7.5319, 7.5315, 7.531, 7.5306, 7.5302, 7.5297, 7.5306, 7.5303, 7.5298, 7.5294, 7.5289, 7.5284, 7.5279, 7.5275, 7.5273, 7.527, 7.5279, 7.5275, 7.5271, 7.5265, 7.5261, 7.5257, 7.5254, 7.525, 7.5245, 7.5241, 7.5236, 7.523, 7.5238, 7.5247, 7.5243, 7.5253, 7.5247, 7.5242, 7.5239, 7.5235, 7.523, 7.5239, 7.5234, 7.5231, 7.5225, 7.5221, 7.5229, 7.5228, 7.5223, 7.5218, 7.5222, 7.522, 7.5217, 7.5213, 7.521, 7.5206, 7.5236, 7.5246, 7.5242, 7.5238, 7.5236, 7.525, 7.5245, 7.5241, 7.525, 7.5245, 7.5253, 7.5251, 7.5246, 7.5243, 7.524, 7.5223, 7.5219, 7.5217, 7.5201, 7.5209, 7.5218, 7.5225, 7.5232, 7.5241, 7.5238, 7.5234, 7.5229, 7.5223, 7.5219, 7.523, 7.5226, 7.5224, 7.5219, 7.5215, 7.5211, 7.5219, 7.5215, 7.5209, 7.5205, 7.5216, 7.5224, 7.5219, 7.5214, 7.5209, 7.5211, 7.5206, 7.5206, 7.5202, 7.5211, 7.5207, 7.5218, 7.5214, 7.5216, 7.5212, 7.5208, 7.5203, 7.52, 7.5195, 7.519, 7.5212, 7.5196, 7.5194, 7.5202, 7.5186, 7.5184, 7.5193, 7.5191, 7.5185, 7.52, 7.5197, 7.5192, 7.5188, 7.5196, 7.5193, 7.5189, 7.5198, 7.5195, 7.5191, 7.5199, 7.5194, 7.5191, 7.5186, 7.5194, 7.519, 7.5185, 7.5232, 7.5227, 7.5248, 7.5256, 7.5251, 7.5247, 7.5255, 7.525, 7.526, 7.5257, 7.5265, 7.5273, 7.527, 7.5266, 7.5261, 7.5256, 7.524, 7.5235, 7.5231, 7.5226, 7.5221, 7.5217, 7.5213, 7.5208, 7.5216, 7.5215, 7.5222, 7.5218, 7.5214, 7.5214, 7.5222, 7.5217, 7.5212, 7.5222, 7.5229, 7.5224, 7.522, 7.5215, 7.5211, 7.5207, 7.5215, 7.5211, 7.5206, 7.5201, 7.5211, 7.5206, 7.5201, 7.5209, 7.5204, 7.5202, 7.5199, 7.5194, 7.5189, 7.5185, 7.5181, 7.5176, 7.5184, 7.5179, 7.5209, 7.5218, 7.5214, 7.5211, 7.5208, 7.5203, 7.52, 7.5197, 7.5213, 7.5211, 7.5212, 7.5207, 7.5202, 7.5197, 7.5192, 7.5187, 7.5194, 7.5201, 7.5185, 7.5193, 7.5177, 7.5187, 7.5196, 7.5192, 7.5188, 7.5186, 7.5181, 7.5177, 7.5174, 7.517, 7.5178, 7.5174, 7.5173, 7.5176, 7.5184, 7.5179, 7.5166, 7.5163, 7.5195, 7.5263, 7.5261, 7.5258, 7.5256, 7.5251, 7.5235, 7.523, 7.5226, 7.5221, 7.5216, 7.5224, 7.5219, 7.5214, 7.5209, 7.5204, 7.52, 7.5208, 7.5203, 7.5211, 7.5207, 7.5229, 7.5225, 7.522, 7.5229, 7.5225, 7.5233, 7.5241, 7.5246, 7.5241, 7.5248, 7.5257, 7.5265, 7.526, 7.5255, 7.525, 7.5247, 7.5242, 7.5238, 7.5233, 7.5229, 7.5224, 7.5231, 7.5229, 7.5237, 7.5233, 7.5241, 7.5236, 7.5231, 7.5231, 7.5226, 7.5232, 7.5227, 7.5235, 7.523, 7.525, 7.5257, 7.5253, 7.526, 7.5268, 7.5264, 7.526, 7.5257, 7.5252, 7.5248, 7.5255, 7.5263, 7.5271, 7.5294, 7.5314, 7.5309, 7.5293, 7.5289, 7.5359, 7.538, 7.5389, 7.5389, 7.5373, 7.5368, 7.5389, 7.5386, 7.5419, 7.5415, 7.5423, 7.5431, 7.5428, 7.5435, 7.5431, 7.544, 7.5436, 7.5431, 7.5427, 7.5411, 7.5407, 7.5402, 7.5399, 7.5406, 7.5403, 7.54, 7.5396, 7.5393, 7.539, 7.5397, 7.5394, 7.5392, 7.5407, 7.5403, 7.5423, 7.5418, 7.5413, 7.5409, 7.5426, 7.5435, 7.543, 7.5437, 7.5433, 7.5429, 7.5425, 7.5422, 7.5418, 7.5414, 7.5421, 7.5434, 7.543, 7.5426, 7.5422, 7.5417, 7.5414, 7.5401, 7.5397, 7.5382, 7.5378, 7.5374, 7.5371, 7.5378, 7.5386, 7.5403, 7.5412, 7.5419, 7.5414, 7.541, 7.5406, 7.5401, 7.5397, 7.5393, 7.5389, 7.5403, 7.5388, 7.5394, 7.539, 7.5385, 7.538, 7.5376, 7.5383, 7.538, 7.5387, 7.5383, 7.5378, 7.5374, 7.5372, 7.5367, 7.5363, 7.5371, 7.5378, 7.5406, 7.5401, 7.542, 7.5415, 7.541, 7.5405, 7.5401, 7.5385, 7.538, 7.5376, 7.5373, 7.537, 7.5367, 7.5376, 7.5375, 7.5371, 7.538, 7.5388, 7.5383, 7.538, 7.5387, 7.5382, 7.5377, 7.5374, 7.5393, 7.5388, 7.5395, 7.539, 7.5386, 7.5393, 7.539, 7.5386, 7.5393, 7.54, 7.5396, 7.5391, 7.5389, 7.5384, 7.538, 7.5381, 7.5378, 7.5397, 7.5398, 7.5393, 7.5393, 7.5425, 7.5432, 7.5428, 7.5423, 7.543, 7.5436, 7.5432, 7.5427, 7.5434, 7.5429, 7.5436, 7.5432, 7.5431, 7.5428, 7.5425, 7.5421, 7.5418, 7.5425, 7.542, 7.5428, 7.5423, 7.5418, 7.5413, 7.5409, 7.5404, 7.5428, 7.5423, 7.542, 7.5417, 7.5413, 7.542, 7.5415, 7.5411, 7.5418, 7.5425, 7.5432, 7.5427, 7.5425, 7.542, 7.5419, 7.5414, 7.5425, 7.5433, 7.543, 7.5426, 7.5414, 7.5411, 7.5396, 7.5392, 7.5389, 7.5384, 7.5381, 7.5376, 7.5371, 7.538, 7.5376, 7.5372, 7.5368, 7.5375, 7.5383, 7.5379, 7.5374, 7.5382, 7.5377, 7.5372, 7.5367, 7.5363, 7.5359, 7.5355, 7.535, 7.5346, 7.5343, 7.5338, 7.5333, 7.533, 7.5327, 7.5323, 7.532, 7.5316, 7.5314, 7.531, 7.5306, 7.5313, 7.531, 7.5317, 7.5313, 7.5299, 7.5294, 7.529, 7.5296, 7.5281, 7.5279, 7.5275, 7.5272, 7.5268, 7.5264, 7.5259, 7.5254, 7.525, 7.5235, 7.523, 7.5226, 7.5245, 7.5253, 7.5249, 7.5245, 7.5253, 7.5248, 7.5244, 7.5241, 7.5226, 7.5221, 7.5216, 7.5213, 7.522, 7.5221, 7.5217, 7.5213, 7.521, 7.5205, 7.5201, 7.5187, 7.5184, 7.5181, 7.5178, 7.5175, 7.517, 7.5165, 7.5162, 7.5157, 7.5152, 7.5149, 7.5157, 7.5142, 7.5137, 7.5133, 7.5129, 7.5125, 7.5133, 7.514, 7.5135, 7.513, 7.5125, 7.5123, 7.5133, 7.5141, 7.5137, 7.5125, 7.5121, 7.5128, 7.5113, 7.512, 7.5115, 7.5122, 7.5118, 7.5114, 7.5127, 7.5124, 7.512, 7.5133, 7.5129, 7.5135, 7.5131, 7.5126, 7.5122, 7.5117, 7.5113, 7.512, 7.5115, 7.511, 7.5117, 7.5146, 7.5142, 7.5137, 7.5133, 7.5128, 7.5124, 7.5131, 7.5127, 7.5139, 7.5135, 7.513, 7.5126, 7.5123, 7.5119, 7.5116, 7.5111, 7.5107, 7.5114, 7.511, 7.5107, 7.5104, 7.5111, 7.5124, 7.5121, 7.5116, 7.5111, 7.5106, 7.5113, 7.5109, 7.5107, 7.5106, 7.5113, 7.512, 7.5117, 7.5129, 7.5137, 7.514, 7.5147, 7.5154, 7.515, 7.5156, 7.5165, 7.516, 7.5155, 7.5152, 7.5148, 7.5164, 7.517, 7.5166, 7.5163, 7.5159, 7.5155, 7.5162, 7.5158, 7.5154, 7.515, 7.5146, 7.5141, 7.5148, 7.5156, 7.5153, 7.5149, 7.5145, 7.5143, 7.5151, 7.5149, 7.5145, 7.5153, 7.516, 7.5157, 7.5165, 7.5183, 7.5228, 7.5235, 7.5231, 7.5243, 7.525, 7.5245, 7.524, 7.5236, 7.5231, 7.5238, 7.5233, 7.524, 7.5236, 7.5231, 7.5227, 7.5234, 7.5241, 7.5236, 7.5234, 7.5231, 7.524, 7.5237, 7.5234, 7.5219, 7.5215, 7.5211, 7.5208, 7.5215, 7.5211, 7.5218, 7.5214, 7.5212, 7.5208, 7.5204, 7.5211, 7.5207, 7.5216, 7.5212, 7.5234, 7.523, 7.5248, 7.5252, 7.5249, 7.5244, 7.5239, 7.5235, 7.5231, 7.5238, 7.5234, 7.5244, 7.524, 7.5236, 7.5244, 7.5267, 7.5264, 7.5272, 7.528, 7.5276, 7.5274, 7.5272, 7.527, 7.5288, 7.5283, 7.529, 7.5297, 7.5326, 7.5348, 7.5344, 7.5341, 7.5337, 7.5333, 7.5329, 7.5324, 7.5331, 7.5327, 7.5322, 7.5328, 7.5324, 7.5331, 7.5338, 7.5334, 7.5329, 7.5325, 7.5332, 7.5339, 7.5335, 7.5331, 7.5328, 7.5336, 7.5343, 7.5339, 7.5346, 7.5353, 7.5348, 7.5334, 7.5341, 7.5348, 7.5345, 7.5355, 7.5352, 7.5349, 7.5344, 7.5344, 7.5351, 7.5348, 7.5343, 7.534, 7.5348, 7.5345, 7.5352, 7.5348, 7.5345, 7.5331, 7.5337, 7.5342, 7.5337, 7.5333, 7.5342, 7.535, 7.5347, 7.5344, 7.534, 7.5335, 7.5332, 7.5328, 7.5324, 7.5353, 7.5348, 7.5354, 7.5372, 7.5367, 7.5363, 7.538, 7.5377, 7.5374, 7.537, 7.5366, 7.5362, 7.5358, 7.5419, 7.5415, 7.5422, 7.5419, 7.5415, 7.5421, 7.5439, 7.5436, 7.5432, 7.544, 7.5447, 7.5443, 7.5451, 7.5459, 7.5458, 7.5455, 7.5451, 7.5448, 7.5456, 7.5453, 7.5449, 7.5446, 7.5454, 7.546, 7.5456, 7.5452, 7.5448, 7.5444, 7.5442, 7.5438, 7.5434, 7.5445, 7.5431, 7.5428, 7.5436, 7.5426, 7.5422, 7.5419, 7.5415, 7.5411, 7.5407, 7.5403, 7.54, 7.5406, 7.5403, 7.541, 7.5413, 7.5409, 7.5406, 7.5402, 7.5399, 7.5395, 7.5391, 7.5387, 7.5384, 7.538, 7.5376, 7.5372, 7.5368, 7.5363, 7.5371, 7.5367, 7.5374, 7.5372, 7.5368, 7.5365, 7.5374, 7.5382, 7.5391, 7.54, 7.5408, 7.5405, 7.5402, 7.5398, 7.5395, 7.5392, 7.5387, 7.5387, 7.5383, 7.5379, 7.5365, 7.5362, 7.537, 7.5366, 7.5373, 7.538, 7.5376, 7.5373, 7.5381, 7.5377, 7.5377, 7.5373, 7.5369, 7.5364, 7.536, 7.5357, 7.5353, 7.5359, 7.5356, 7.5352, 7.5348, 7.5344, 7.534, 7.5338, 7.5345, 7.5357, 7.5353, 7.5349, 7.5345, 7.5343, 7.5339, 7.5345, 7.534, 7.5336, 7.5334, 7.534, 7.5336, 7.5332, 7.5328, 7.5324, 7.5328, 7.5324, 7.532, 7.5316, 7.5344, 7.5342, 7.5359, 7.5355, 7.5351, 7.5346, 7.5343, 7.5339, 7.5362, 7.5359, 7.5376, 7.5372, 7.54, 7.5449, 7.5444, 7.545, 7.5446, 7.5463, 7.547, 7.5466, 7.5484, 7.548, 7.5477, 7.5483, 7.548, 7.5479, 7.5507, 7.5504, 7.5499, 7.5496, 7.5513, 7.551, 7.5516, 7.5512, 7.5508, 7.5512, 7.5498, 7.5493, 7.5499, 7.5495, 7.5492, 7.5488, 7.5495, 7.5491, 7.5487, 7.5483, 7.5523, 7.553, 7.5536, 7.5542, 7.5539, 7.5546, 7.5542, 7.5538, 7.5534, 7.554, 7.5537, 7.5533, 7.5539, 7.5537, 7.5527, 7.5533, 7.553, 7.5526, 7.5585, 7.558, 7.5576, 7.5572, 7.5569, 7.5565, 7.5562, 7.5559, 7.5546, 7.5553, 7.5549, 7.5546, 7.5541, 7.5537, 7.5544, 7.5551, 7.5557, 7.5564, 7.5581, 7.5577, 7.5578, 7.5573, 7.557, 7.5566, 7.5572, 7.5568, 7.5574, 7.557, 7.5566, 7.5564, 7.5561, 7.5568, 7.5564, 7.556, 7.5569, 7.5566, 7.5561, 7.5558, 7.5554, 7.555, 7.5556, 7.5552, 7.5548, 7.5544, 7.554, 7.5536, 7.5532, 7.5528, 7.5546, 7.5544, 7.5541, 7.5543, 7.555, 7.5546, 7.5542, 7.5548, 7.5554, 7.555, 7.5546, 7.5552, 7.5548, 7.5544, 7.555, 7.5546, 7.5551, 7.5548, 7.5543, 7.5542, 7.5538, 7.5544, 7.554, 7.5536, 7.5534, 7.5529, 7.5535, 7.5531, 7.5527, 7.5523, 7.5518, 7.5515, 7.5511, 7.5517, 7.5513, 7.5519, 7.5515, 7.551, 7.5507, 7.5503, 7.55, 7.5496, 7.5503, 7.55, 7.5496, 7.5483, 7.549, 7.5488, 7.5484, 7.549, 7.5486, 7.5482, 7.5479, 7.5476, 7.5472, 7.5479, 7.5485, 7.5481, 7.5477, 7.5473, 7.547, 7.5476, 7.5473, 7.547, 7.5466, 7.5464, 7.5472, 7.5478, 7.5476, 7.5472, 7.5467, 7.5464, 7.547, 7.5466, 7.5462, 7.5458, 7.5455, 7.5451, 7.5449, 7.5445, 7.5452, 7.546, 7.5456, 7.5453, 7.5452, 7.5448, 7.5444, 7.5452, 7.5458, 7.5455, 7.5451, 7.5458, 7.5455, 7.5451, 7.5457, 7.5464, 7.5461, 7.5457, 7.5453, 7.5449, 7.5446, 7.5445, 7.5451, 7.5449, 7.5446, 7.5442, 7.5438, 7.5434, 7.543, 7.5427, 7.5423, 7.5419, 7.5415, 7.5412, 7.5418, 7.5414, 7.541, 7.5455, 7.5454, 7.545, 7.5437, 7.5433, 7.5439, 7.5438, 7.5446, 7.5453, 7.5449, 7.5445, 7.5451, 7.5447, 7.5443, 7.5439, 7.5435, 7.5441, 7.5438, 7.5434, 7.5432, 7.5428, 7.5426, 7.5422, 7.5418, 7.5414, 7.5416, 7.5404, 7.54, 7.5396, 7.5393, 7.5389, 7.5395, 7.5391, 7.5387, 7.5383, 7.538, 7.5376, 7.5372, 7.5379, 7.5376, 7.5372, 7.5378, 7.5375, 7.5381, 7.5393, 7.5389, 7.5385, 7.5381, 7.5377, 7.5373, 7.5371, 7.5367, 7.5375, 7.5371, 7.5367, 7.5417, 7.5413, 7.5409, 7.5416, 7.5412, 7.5419, 7.5415, 7.5414, 7.541, 7.5406, 7.5402, 7.5408, 7.5414, 7.541, 7.5407, 7.5404, 7.5401, 7.5397, 7.5394, 7.539, 7.5386, 7.5384, 7.538, 7.5376, 7.5372, 7.5369, 7.5375, 7.538, 7.5376, 7.5372, 7.5368, 7.5374, 7.5417, 7.5423, 7.5419, 7.5425, 7.5421, 7.5419, 7.5418, 7.5414, 7.542, 7.5416, 7.5422, 7.5418, 7.5414, 7.541, 7.5406, 7.5403, 7.5401, 7.5397, 7.5395, 7.5391, 7.5387, 7.5383, 7.538, 7.5387, 7.5383, 7.5379, 7.5375, 7.5371, 7.5368, 7.5374, 7.537, 7.5366, 7.5362, 7.536, 7.5347, 7.5343, 7.534, 7.5347, 7.5343, 7.5339, 7.5337, 7.5334, 7.533, 7.5327, 7.5323, 7.531, 7.5307, 7.5303, 7.5299, 7.5296, 7.5302, 7.5309, 7.5305, 7.5312, 7.5317, 7.5323, 7.532, 7.5337, 7.5343, 7.5339, 7.5335, 7.5341, 7.5337, 7.5333, 7.533, 7.533, 7.5336, 7.5333, 7.5331, 7.5327, 7.5326, 7.5323, 7.5321, 7.5318, 7.5315, 7.5328, 7.5326, 7.5333, 7.533, 7.5327, 7.5324, 7.5321, 7.5319, 7.5316, 7.5313, 7.5321, 7.5317, 7.5314, 7.5311, 7.5319, 7.5316, 7.5313, 7.5311, 7.531, 7.5308, 7.5305, 7.5302, 7.5309, 7.5315, 7.5312, 7.5309, 7.5306, 7.5312, 7.5309, 7.5315, 7.5312, 7.5308, 7.5305, 7.5312, 7.5308, 7.5305, 7.5301, 7.5307, 7.5303, 7.5299, 7.5296, 7.5292, 7.5298, 7.5294, 7.5301, 7.5307, 7.5304, 7.531, 7.5307, 7.5315, 7.5323, 7.5329, 7.5335, 7.5341, 7.5356, 7.5352, 7.5349, 7.5356, 7.5362, 7.5361, 7.5358, 7.5363, 7.5369, 7.5366, 7.5363, 7.536, 7.5356, 7.5352, 7.5348, 7.5345, 7.5352, 7.5349, 7.5346, 7.5343, 7.535, 7.5346, 7.5343, 7.5351, 7.5348, 7.5355, 7.5343, 7.5339, 7.5346, 7.5346, 7.5344, 7.5341, 7.5347, 7.5346, 7.5342, 7.534, 7.5336, 7.5342, 7.5358, 7.5355, 7.5342, 7.5349, 7.5345, 7.5341, 7.5338, 7.5363, 7.5361, 7.5367, 7.5363, 7.536, 7.5356, 7.5353, 7.5349, 7.5345, 7.5341, 7.5347, 7.5343, 7.5339, 7.5335, 7.5331, 7.5327, 7.5323, 7.5319, 7.5324, 7.533, 7.5326, 7.5322, 7.5319, 7.5315, 7.5311, 7.5307, 7.5303, 7.53, 7.5297, 7.5293, 7.529, 7.5288, 7.5294, 7.5301, 7.5308, 7.5305, 7.5302, 7.5308, 7.5305, 7.5301, 7.5297, 7.5293, 7.5289, 7.5286, 7.5282, 7.5278, 7.5275, 7.5272, 7.5269, 7.5265, 7.5262, 7.5259, 7.5262, 7.5259, 7.5256, 7.5263, 7.526, 7.5267, 7.5264, 7.526, 7.5256, 7.5262, 7.5267, 7.5263, 7.5259, 7.5256, 7.5262, 7.5272, 7.5268, 7.5274, 7.527, 7.5266, 7.5273, 7.5279, 7.5286, 7.5287, 7.5284, 7.5281, 7.5269, 7.5284, 7.5281, 7.5278, 7.5266, 7.5255, 7.5251, 7.5258, 7.5264, 7.5252, 7.5257, 7.5253, 7.5259, 7.5256, 7.5252, 7.5248, 7.5244, 7.525, 7.5246, 7.5243, 7.5239, 7.5227, 7.5223, 7.5219, 7.5215, 7.5215, 7.5212, 7.5209, 7.5205, 7.5201, 7.5197, 7.5193, 7.5191, 7.5188, 7.5184, 7.518, 7.5176, 7.5172, 7.517, 7.5169, 7.5165, 7.517, 7.5176, 7.5182, 7.5188, 7.5184, 7.519, 7.519, 7.5196, 7.5193, 7.519, 7.5195, 7.5201, 7.52, 7.5206, 7.5206, 7.5203, 7.52, 7.5197, 7.5198, 7.5197, 7.5194, 7.5191, 7.5182, 7.5188, 7.5196, 7.5204, 7.5202, 7.5208, 7.5214, 7.522, 7.5216, 7.5212, 7.521, 7.5216, 7.5204, 7.52, 7.5206, 7.5202, 7.5201, 7.5198, 7.5207, 7.5203, 7.5209, 7.5205, 7.5211, 7.5207, 7.5203, 7.52, 7.5197, 7.5194, 7.52, 7.5197, 7.5198, 7.5195, 7.5192, 7.518, 7.5205, 7.5193, 7.5199, 7.5206, 7.5208, 7.5206, 7.5197, 7.5194, 7.519, 7.5186, 7.5183, 7.5182, 7.5188, 7.5185, 7.5183, 7.518, 7.5178, 7.5175, 7.5171, 7.5168, 7.5164, 7.5171, 7.5167, 7.5165, 7.517, 7.5166, 7.5163, 7.5159, 7.5155, 7.5153, 7.5158, 7.5163, 7.516, 7.5161, 7.5157, 7.5146, 7.5143, 7.5139, 7.5135, 7.5131, 7.5127, 7.5115, 7.5112, 7.5109, 7.5105, 7.5101, 7.5098, 7.5095, 7.5092, 7.5088, 7.5085, 7.5091, 7.5087, 7.5084, 7.5081, 7.5079, 7.5067, 7.5064, 7.5079, 7.5086, 7.5092, 7.5088, 7.5085, 7.5101, 7.5107, 7.5103, 7.511, 7.5107, 7.5095, 7.5092, 7.5089, 7.5085, 7.5082, 7.5087, 7.5092, 7.51, 7.5102, 7.5117, 7.5123, 7.512, 7.5117, 7.5113, 7.511, 7.5108, 7.5105, 7.5101, 7.5107, 7.5105, 7.5102, 7.5099, 7.5105, 7.5102, 7.5099, 7.5105, 7.5102, 7.5099, 7.5096, 7.5093, 7.5091, 7.508, 7.5088, 7.5084, 7.5081, 7.5077, 7.5073, 7.507, 7.5075, 7.5072, 7.5094, 7.509, 7.5087, 7.5101, 7.51, 7.5107, 7.5103, 7.511, 7.5109, 7.5107, 7.5104, 7.5109, 7.5106, 7.5103, 7.5099, 7.5096, 7.5092, 7.5089, 7.5086, 7.5082, 7.509, 7.509, 7.5105, 7.5103, 7.5101, 7.5097, 7.5103, 7.5106, 7.5111, 7.5107, 7.5103, 7.5109, 7.5105, 7.5101, 7.5106, 7.5102, 7.5099, 7.5097, 7.5085, 7.5081, 7.5078, 7.5074, 7.508, 7.5086, 7.5092, 7.5097, 7.5102, 7.5098, 7.5095, 7.5091, 7.5087, 7.5086, 7.5084, 7.5081, 7.5088, 7.5084, 7.5081, 7.5088, 7.5085, 7.5083, 7.508, 7.5087, 7.5093, 7.5099, 7.5087, 7.5092, 7.5098, 7.5096, 7.5092, 7.5089, 7.5087, 7.5084, 7.5081, 7.5078, 7.5075, 7.5072, 7.507, 7.5067, 7.5064, 7.5066, 7.5062, 7.5068, 7.5065, 7.5063, 7.5067, 7.5055, 7.5061, 7.5058, 7.5056, 7.5054, 7.5051, 7.5056, 7.5052, 7.5048, 7.5045, 7.5042, 7.5058, 7.5054, 7.5051, 7.5047, 7.5053, 7.505, 7.5047, 7.5043, 7.5039, 7.5036, 7.5041, 7.5037, 7.5034, 7.5031, 7.5028, 7.5025, 7.5022, 7.5018, 7.5009, 7.5007, 7.5003, 7.5012, 7.5008, 7.5014, 7.5005, 7.5003, 7.5, 7.4997, 7.5003, 7.5, 7.5006, 7.5003, 7.5, 7.4997, 7.4994, 7.4991, 7.4988, 7.4985, 7.4982, 7.4987, 7.4993, 7.499, 7.4989, 7.4987, 7.4994, 7.4991, 7.4988, 7.4985, 7.4982, 7.4987, 7.4985, 7.4982, 7.4988, 7.4994, 7.4991, 7.4989, 7.4987, 7.4992, 7.4998, 7.4995, 7.4992, 7.4988, 7.4985, 7.4982, 7.498, 7.4978, 7.4975, 7.4981, 7.4977, 7.4975, 7.4975, 7.4976, 7.4974, 7.4971, 7.497, 7.4976, 7.4973, 7.4969, 7.4958, 7.4955, 7.4951, 7.4951, 7.4947, 7.4943, 7.4939, 7.4936, 7.4942, 7.4939, 7.4937, 7.4943, 7.494, 7.4955, 7.4952, 7.4948, 7.4953, 7.495, 7.4947, 7.4944, 7.495, 7.4942, 7.4939, 7.4936, 7.4933, 7.4929, 7.4934, 7.4933, 7.4929, 7.4936, 7.4933, 7.493, 7.4927, 7.4932, 7.4937, 7.4933, 7.4929, 7.4925, 7.493, 7.4926, 7.4923, 7.492, 7.4917, 7.4914, 7.4919, 7.4915, 7.4912, 7.4908, 7.4905, 7.4902, 7.49, 7.4889, 7.4885, 7.4883, 7.488, 7.4878, 7.4874, 7.4879, 7.4884, 7.4889, 7.4886, 7.4883, 7.491, 7.4916, 7.4913, 7.491, 7.4907, 7.4904, 7.491, 7.4937, 7.4934, 7.4932, 7.4929, 7.4927, 7.4934, 7.4931, 7.4928, 7.493, 7.4927, 7.4923, 7.4911, 7.49, 7.4905, 7.4902, 7.4898, 7.4894, 7.4899, 7.4896, 7.4893, 7.4891, 7.4897, 7.4894, 7.489, 7.4897, 7.4893, 7.4899, 7.4896, 7.4903, 7.491, 7.4925, 7.4923, 7.492, 7.492, 7.4918, 7.4914, 7.4912, 7.4909, 7.4908, 7.4906, 7.4911, 7.4908, 7.4905, 7.4901, 7.4899, 7.4897, 7.4896, 7.4893, 7.4881, 7.4914, 7.491, 7.4916, 7.4934, 7.4932, 7.4928, 7.4924, 7.4921, 7.4918, 7.4907, 7.4903, 7.49, 7.4906, 7.4911, 7.4908, 7.4897, 7.4894, 7.4891, 7.4897, 7.4903, 7.49, 7.4896, 7.4902, 7.4899, 7.4896, 7.4893, 7.489, 7.4888, 7.4886, 7.4892, 7.489, 7.4888, 7.4886, 7.4884, 7.4882, 7.488, 7.4888, 7.4886, 7.4884, 7.4891, 7.4888, 7.4885, 7.4882, 7.4879, 7.4878, 7.4876, 7.4875, 7.4881, 7.4878, 7.4875, 7.4873, 7.4869, 7.4875, 7.4882, 7.4879, 7.4876, 7.4884, 7.4881, 7.4877, 7.4874, 7.487, 7.4867, 7.4865, 7.4862, 7.4885, 7.4881, 7.4878, 7.4876, 7.4873, 7.487, 7.4875, 7.4872, 7.4869, 7.4867, 7.4878, 7.4885, 7.4882, 7.4879, 7.4876, 7.4874, 7.4871, 7.4872, 7.4869, 7.4858, 7.4855, 7.4852, 7.4857, 7.4854, 7.485, 7.4848, 7.4845, 7.4842, 7.4848, 7.4845, 7.4851, 7.4848, 7.4853, 7.485, 7.4856, 7.4852, 7.4849, 7.4854, 7.4851, 7.4848, 7.4845, 7.4841, 7.4838, 7.4844, 7.4842, 7.4839, 7.4844, 7.484, 7.4838, 7.4836, 7.4842, 7.4839, 7.4836, 7.4833, 7.483, 7.4828, 7.4825, 7.4824, 7.482, 7.4817, 7.4815, 7.4812, 7.4809, 7.4806, 7.4803, 7.48, 7.4789, 7.4778, 7.4783, 7.479, 7.4786, 7.4784, 7.4781, 7.4778, 7.4778, 7.4775, 7.4773, 7.477, 7.4767, 7.4764, 7.4753, 7.475, 7.4748, 7.4746, 7.4751, 7.4749, 7.4746, 7.4751, 7.4748, 7.4745, 7.4742, 7.4739, 7.4736, 7.4734, 7.4731, 7.4728, 7.4725, 7.4723, 7.472, 7.4725, 7.4731, 7.4736, 7.4734, 7.4732, 7.4729, 7.4727, 7.4724, 7.4722, 7.472, 7.4718, 7.4725, 7.473, 7.4727, 7.4732, 7.4729, 7.4735, 7.474, 7.4737, 7.4734, 7.4731, 7.4728, 7.4725, 7.4721, 7.4718, 7.4715, 7.4713, 7.4718, 7.4715, 7.4712, 7.4709, 7.4708, 7.4707, 7.4712, 7.4709, 7.4707, 7.4704, 7.4701, 7.4698, 7.4705, 7.4702, 7.4699, 7.4704, 7.4702, 7.4707, 7.4721, 7.4723, 7.472, 7.4726, 7.4723, 7.4723, 7.472, 7.4721, 7.4727, 7.4724, 7.4729, 7.4719, 7.4716, 7.4713, 7.4703, 7.4701, 7.4698, 7.4695, 7.4692, 7.4698, 7.4705, 7.4702, 7.4708, 7.4705, 7.4713, 7.4719, 7.472, 7.4718, 7.4735, 7.4733, 7.4736, 7.4734, 7.4731, 7.4745, 7.4742, 7.4739, 7.473, 7.4731, 7.4732, 7.473, 7.4727, 7.4724, 7.4727, 7.4733, 7.4756, 7.4753, 7.475, 7.4756, 7.477, 7.4767, 7.4757, 7.4763, 7.4755, 7.4746, 7.4751, 7.4748, 7.4744, 7.475, 7.4749, 7.4746, 7.4769, 7.4783, 7.4783, 7.4774, 7.4779, 7.4776, 7.4781, 7.4778, 7.4783, 7.4788, 7.4793, 7.4798, 7.4795, 7.4809, 7.4806, 7.4812, 7.4809, 7.4807, 7.4804, 7.4801, 7.4798, 7.4795, 7.48, 7.4805, 7.481, 7.4815, 7.4812, 7.4801, 7.4806, 7.4803, 7.4808, 7.4805, 7.4802, 7.4799, 7.4796, 7.4801, 7.4806, 7.4812, 7.4809, 7.4814, 7.4811, 7.4816, 7.4813, 7.4819, 7.4833, 7.483, 7.4835, 7.4843, 7.4839, 7.4844, 7.4833, 7.4838, 7.4843, 7.4848, 7.4853, 7.485, 7.4863, 7.4872, 7.4868, 7.4881, 7.4878, 7.4876, 7.4901, 7.4892, 7.489, 7.4912, 7.4909, 7.4898, 7.4899, 7.4912, 7.4909, 7.4906, 7.4912, 7.492, 7.4917, 7.4906, 7.4912, 7.4901, 7.4898, 7.4895, 7.49, 7.4898, 7.4903, 7.4909, 7.4905, 7.4902, 7.4899, 7.4914, 7.4903, 7.49, 7.4905, 7.4902, 7.4907, 7.4912, 7.4909, 7.4906, 7.4903, 7.4908, 7.4906, 7.4906, 7.4911, 7.4908, 7.4905, 7.4902, 7.4899, 7.4893, 7.49, 7.4905, 7.4902, 7.49, 7.4905, 7.4902, 7.4902, 7.4902, 7.4907, 7.4904, 7.4909, 7.4922, 7.4919, 7.4917, 7.4914, 7.4911, 7.4908, 7.4905, 7.4902, 7.4907, 7.4912, 7.4909, 7.4908, 7.4913, 7.491, 7.4934, 7.4931, 7.4936, 7.4941, 7.4939, 7.4936, 7.4936, 7.4933, 7.4938, 7.4944, 7.4941, 7.4954, 7.4959, 7.4957, 7.4954, 7.4951, 7.4956, 7.4953, 7.495, 7.4955, 7.4952, 7.4957, 7.4947, 7.4944, 7.4941, 7.4946, 7.4951, 7.4956, 7.4961, 7.4958, 7.4955, 7.4977, 7.4974, 7.4979, 7.4976, 7.4981, 7.4978, 7.4975, 7.4972, 7.4977, 7.4982, 7.4979, 7.4976, 7.4974, 7.4971, 7.4976, 7.4973, 7.497, 7.4987, 7.4992, 7.4989, 7.4986, 7.4983, 7.4981, 7.4978, 7.4975, 7.4972, 7.4969, 7.4978, 7.4975, 7.4988, 7.4985, 7.4982, 7.4987, 7.4984, 7.4989, 7.4986, 7.4983, 7.498, 7.4976, 7.4981, 7.4979, 7.4994, 7.4992, 7.499, 7.4987, 7.4993, 7.4998, 7.4996, 7.4993, 7.4997, 7.4994, 7.4991, 7.4988, 7.4985, 7.4982, 7.4979, 7.4976, 7.4974, 7.4971, 7.4968, 7.4966, 7.4973, 7.4978, 7.4975, 7.4972, 7.4969, 7.4974, 7.4971, 7.4969, 7.4966, 7.4955, 7.4952, 7.4949, 7.4963, 7.4961, 7.4959, 7.4967, 7.4964, 7.497, 7.497, 7.4969, 7.4974, 7.4973, 7.4978, 7.4976, 7.4974, 7.4979, 7.4976, 7.4974, 7.4972, 7.4969, 7.4975, 7.4973, 7.497, 7.4975, 7.4973, 7.497, 7.4975, 7.498, 7.4977, 7.4982, 7.4987, 7.4992, 7.4989, 7.4994, 7.4999, 7.5003, 7.5, 7.4997, 7.4994, 7.4991, 7.4988, 7.4985, 7.499, 7.498, 7.4977, 7.4974, 7.4971, 7.4968, 7.4967, 7.4956, 7.4953, 7.4958, 7.4956, 7.4953, 7.4951, 7.4948, 7.4962, 7.4968, 7.4965, 7.4963, 7.496, 7.4957, 7.4954, 7.4951, 7.4956, 7.4954, 7.4952, 7.4973, 7.497, 7.4969, 7.4966, 7.4971, 7.4993, 7.4999, 7.5004, 7.5009, 7.5007, 7.5004, 7.5001, 7.5006, 7.5011, 7.502, 7.5033, 7.503, 7.5035, 7.504, 7.5037, 7.5041, 7.5051, 7.5057, 7.5054, 7.5051, 7.5049, 7.5059, 7.5056, 7.5053, 7.5051, 7.5048, 7.5053, 7.505, 7.5055, 7.5052, 7.5049, 7.5046, 7.5043, 7.5041, 7.5049, 7.5046, 7.5043, 7.5043, 7.5042, 7.5047, 7.5044, 7.5049, 7.5047, 7.5044, 7.5042, 7.5039, 7.5038, 7.5036, 7.5042, 7.5042, 7.5044, 7.5042, 7.5039, 7.5044, 7.5057, 7.5055, 7.5069, 7.5075, 7.5085, 7.5085, 7.5082, 7.5083, 7.508, 7.5077, 7.5082, 7.5074, 7.5064, 7.5069, 7.5066, 7.5063, 7.5061, 7.5058, 7.5066, 7.5063, 7.506, 7.5057, 7.5054, 7.5059, 7.5056, 7.5079, 7.5069, 7.5066, 7.5078, 7.5076, 7.5089, 7.5086, 7.509, 7.5088, 7.5085, 7.509, 7.5088, 7.5086, 7.5083, 7.5088, 7.5086, 7.5091, 7.5096, 7.5093, 7.5091, 7.5088, 7.5085, 7.5105, 7.5114, 7.5111, 7.5109, 7.5106, 7.5112, 7.5122, 7.5119, 7.5116, 7.5121, 7.5119, 7.5116, 7.5113, 7.511, 7.5108, 7.5114, 7.5112, 7.5117, 7.5122, 7.5119, 7.5116, 7.5113, 7.511, 7.5115, 7.5112, 7.5109, 7.5107, 7.5106, 7.5103, 7.5108, 7.5106, 7.5103, 7.5102, 7.5099, 7.5105, 7.5111, 7.5109, 7.5115, 7.5114, 7.5112, 7.5109, 7.5107, 7.5106, 7.5111, 7.5109, 7.5106], '192.168.122.115': [5.8181, 5.7882, 7.3882, 6.8684, 6.5512, 7.2699, 7.0023, 6.7761, 6.6212, 7.0648, 7.4594, 7.2981, 6.7804, 6.6817, 6.6433, 6.5587, 6.5343, 6.4713, 6.4249, 6.6336, 6.5792, 6.5611, 6.5309, 6.7922, 6.7563, 6.7131, 6.6628, 6.6265, 6.8163, 6.7764, 6.9178, 7.0457, 6.9962, 6.9706, 7.0856, 7.1745, 7.1377, 7.0974, 7.0512, 7.0092, 7.5081, 7.4683, 7.434, 7.2861, 7.3392, 7.4144, 7.3829, 7.372, 7.3458, 7.4478, 7.4165, 7.3879, 7.3661, 7.4307, 7.4084, 7.4695, 7.5301, 7.409, 7.3852, 7.3597, 7.3342, 7.4812, 7.4859, 7.4737, 7.5086, 7.5019, 7.5672, 7.4737, 7.5232, 7.5008, 7.4728, 7.4454, 7.4165, 7.4044, 7.4303, 7.4075, 7.6704, 7.6547, 7.6308, 7.6054, 7.5306, 7.5089, 7.548, 7.5219, 7.4966, 7.4836, 7.4653, 7.4816, 7.4804, 7.4568, 7.4335, 7.4109, 7.388, 7.3666, 7.3498, 7.3312, 7.3148, 7.4637, 7.4966, 7.533, 7.5112, 7.5486, 7.5325, 7.4659, 7.4576, 7.4612, 7.4415, 7.424, 7.5053, 7.4916, 7.4791, 7.5148, 7.5005, 7.4827, 7.4652, 7.4948, 7.4795, 7.4681, 7.4524, 7.4836, 7.494, 7.4776, 7.5081, 7.4931, 7.4834, 7.5089, 7.4917, 7.516, 7.5006, 7.4869, 7.4715, 7.4583, 7.4466, 7.4308, 7.4198, 7.4071, 7.4315, 7.417, 7.4115, 7.439, 7.4663, 7.4534, 7.4751, 7.4988, 7.4842, 7.5074, 7.4918, 7.5143, 7.4999, 7.486, 7.5073, 7.5293, 7.5186, 7.4739, 7.4965, 7.486, 7.4416, 7.4511, 7.4382, 7.4261, 7.4243, 7.4457, 7.433, 7.4219, 7.3803, 7.3704, 7.3585, 7.3512, 7.3391, 7.342, 7.3329, 7.3507, 7.3384, 7.359, 7.3497, 7.3394, 7.3572, 7.3456, 7.3831, 7.4042, 7.4454, 7.4347, 7.3986, 7.4175, 7.4117, 7.428, 7.449, 7.4401, 7.4303, 7.4891, 7.4786, 7.4967, 7.4885, 7.4779, 7.4726, 7.4616, 7.4516, 7.4686, 7.4605, 7.4805, 7.4751, 7.4659, 7.4576, 7.4514, 7.4443, 7.4366, 7.4379, 7.4305, 7.4394, 7.4308, 7.4225, 7.4195, 7.4378, 7.4534, 7.4438, 7.4862, 7.5028, 7.4948, 7.5434, 7.5342, 7.5274, 7.5445, 7.5355, 7.5279, 7.5195, 7.536, 7.5524, 7.5687, 7.5607, 7.5517, 7.5689, 7.5875, 7.5808, 7.5744, 7.5647, 7.5551, 7.5465, 7.5405, 7.534, 7.5284, 7.5447, 7.5594, 7.5761, 7.5806, 7.5716, 7.5852, 7.5764, 7.5683, 7.5823, 7.5954, 7.5923, 7.5849, 7.6013, 7.5958, 7.5901, 7.5822, 7.5766, 7.568, 7.5602, 7.5747, 7.5719, 7.5701, 7.5838, 7.5946, 7.6078, 7.6003, 7.5917, 7.6266, 7.6407, 7.6543, 7.6507, 7.6453, 7.6797, 7.6535, 7.6853, 7.7189, 7.7115, 7.7036, 7.696, 7.6877, 7.7184, 7.7295, 7.7216, 7.713, 7.7044, 7.6976, 7.6905, 7.7031, 7.7155, 7.7071, 7.699, 7.6918, 7.7365, 7.7286, 7.7231, 7.7149, 7.7258, 7.7549, 7.8339, 7.8658, 7.8578, 7.8335, 7.8437, 7.8359, 7.8307, 7.8252, 7.8173, 7.8272, 7.8188, 7.8131, 7.823, 7.8325, 7.8459, 7.8549, 7.8477, 7.8576, 7.8671, 7.8615, 7.8544, 7.8667, 7.8604, 7.856, 7.8517, 7.8604, 7.8693, 7.8626, 7.8547, 7.8326, 7.8299, 7.8254, 7.8204, 7.8155, 7.8103, 7.8212, 7.8245, 7.8232, 7.8157, 7.8258, 7.8237, 7.8021, 7.8108, 7.8039, 7.7982, 7.7981, 7.7917, 7.7893, 7.7824, 7.7954, 7.7883, 7.7997, 7.8081, 7.8164, 7.8114, 7.8055, 7.7986, 7.7939, 7.7889, 7.7821, 7.7618, 7.7698, 7.7557, 7.7489, 7.7421, 7.7802, 7.7882, 7.8165, 7.8243, 7.8174, 7.8257, 7.8187, 7.8133, 7.8095, 7.8027, 7.8306, 7.8389, 7.8327, 7.8272, 7.8247, 7.8197, 7.814, 7.8209, 7.8286, 7.8251, 7.8329, 7.8267, 7.8203, 7.814, 7.8077, 7.8016, 7.7832, 7.7656, 7.7622, 7.7776, 7.7719, 7.7658, 7.7595, 7.7534, 7.7478, 7.7438, 7.7398, 7.7337, 7.7276, 7.7221, 7.7168, 7.7117, 7.7057, 7.7008, 7.6975, 7.7046, 7.6989, 7.6949, 7.6912, 7.6997, 7.6942, 7.7021, 7.6976, 7.6943, 7.6889, 7.6838, 7.678, 7.6727, 7.6673, 7.6631, 7.6577, 7.653, 7.6486, 7.6437, 7.6409, 7.636, 7.6315, 7.6271, 7.622, 7.6165, 7.6244, 7.6192, 7.6157, 7.628, 7.6229, 7.6191, 7.6267, 7.6341, 7.6302, 7.6316, 7.6277, 7.6228, 7.6176, 7.6137, 7.6089, 7.6043, 7.5997, 7.5964, 7.5832, 7.5783, 7.5793, 7.5896, 7.5849, 7.5853, 7.5803, 7.579, 7.5864, 7.5822, 7.5777, 7.5741, 7.572, 7.5683, 7.5646, 7.5726, 7.5718, 7.5685, 7.5769, 7.5736, 7.6181, 7.6134, 7.6096, 7.595, 7.592, 7.5878, 7.5832, 7.591, 7.6194, 7.6149, 7.6139, 7.6093, 7.6068, 7.6036, 7.5995, 7.5866, 7.5822, 7.5777, 7.574, 7.5708, 7.5669, 7.5957, 7.6033, 7.6109, 7.6077, 7.6038, 7.6107, 7.6354, 7.6215, 7.6284, 7.6246, 7.6202, 7.6162, 7.6127, 7.609, 7.6145, 7.6102, 7.6083, 7.6038, 7.5997, 7.5962, 7.5935, 7.5893, 7.5875, 7.5853, 7.5824, 7.5784, 7.5743, 7.5763, 7.5725, 7.5686, 7.5674, 7.5632, 7.5499, 7.5475, 7.5536, 7.5599, 7.5617, 7.5793, 7.5753, 7.5722, 7.5702, 7.5695, 7.5752, 7.5715, 7.5688, 7.575, 7.5725, 7.5692, 7.5652, 7.5621, 7.5591, 7.5655, 7.5637, 7.5607, 7.567, 7.5639, 7.5698, 7.5656, 7.5715, 7.5674, 7.5637, 7.5622, 7.5681, 7.5739, 7.5701, 7.5663, 7.5541, 7.5605, 7.5615, 7.5577, 7.554, 7.5509, 7.5403, 7.5366, 7.5326, 7.5289, 7.5348, 7.5312, 7.5284, 7.5346, 7.5383, 7.535, 7.5318, 7.53, 7.5361, 7.5335, 7.5306, 7.5277, 7.5476, 7.5438, 7.5419, 7.5418, 7.539, 7.5373, 7.5335, 7.5306, 7.527, 7.5234, 7.5197, 7.5167, 7.5182, 7.5144, 7.5128, 7.5097, 7.5164, 7.5233, 7.5308, 7.5277, 7.5243, 7.5206, 7.5177, 7.5144, 7.5108, 7.5083, 7.5142, 7.5156, 7.5124, 7.5029, 7.4997, 7.4975, 7.4943, 7.4911, 7.5037, 7.5016, 7.5075, 7.5138, 7.511, 7.5077, 7.5137, 7.5108, 7.5078, 7.5041, 7.5101, 7.516, 7.5132, 7.5101, 7.5074, 7.512, 7.5166, 7.5218, 7.5214, 7.5189, 7.5156, 7.5127, 7.5179, 7.5232, 7.52, 7.5181, 7.5318, 7.5347, 7.5315, 7.5289, 7.5269, 7.5252, 7.5218, 7.5192, 7.5165, 7.5211, 7.5185, 7.5234, 7.5205, 7.5183, 7.5158, 7.5204, 7.5257, 7.5312, 7.5291, 7.5261, 7.5253, 7.5226, 7.5214, 7.5269, 7.5326, 7.5295, 7.5269, 7.5236, 7.5216, 7.5207, 7.5251, 7.5217, 7.5189, 7.5155, 7.5136, 7.5111, 7.5156, 7.5203, 7.5172, 7.5145, 7.5053, 7.5104, 7.5081, 7.5127, 7.5176, 7.5158, 7.5214, 7.5258, 7.5238, 7.5212, 7.5181, 7.5229, 7.5204, 7.5268, 7.524, 7.5207, 7.5174, 7.5148, 7.5129, 7.5109, 7.5079, 7.5054, 7.5024, 7.5068, 7.497, 7.4947, 7.4922, 7.4893, 7.4873, 7.4844, 7.4815, 7.4864, 7.4839, 7.5034, 7.5006, 7.4981, 7.4963, 7.5007, 7.5054, 7.5025, 7.5003, 7.5009, 7.498, 7.4951, 7.4997, 7.5047, 7.5022, 7.4993, 7.4965, 7.4944, 7.4915, 7.4884, 7.4869, 7.4841, 7.4813, 7.4784, 7.476, 7.4746, 7.4799, 7.4789, 7.4766, 7.4745, 7.4732, 7.4713, 7.4699, 7.4745, 7.4722, 7.4764, 7.4815, 7.4817, 7.4791, 7.4767, 7.4742, 7.4721, 7.4851, 7.4833, 7.4806, 7.4778, 7.4823, 7.4803, 7.4775, 7.4687, 7.4666, 7.4638, 7.4609, 7.4582, 7.4556, 7.453, 7.4648, 7.4628, 7.468, 7.4653, 7.4692, 7.4665, 7.4645, 7.469, 7.4667, 7.4645, 7.4622, 7.4599, 7.4575, 7.4623, 7.4602, 7.4648, 7.463, 7.4606, 7.4586, 7.4571, 7.4566, 7.4609, 7.4581, 7.457, 7.4567, 7.4609, 7.4587, 7.4632, 7.4562, 7.4538, 7.4592, 7.457, 7.4543, 7.4529, 7.4502, 7.4478, 7.4453, 7.4495, 7.4474, 7.4461, 7.4503, 7.4576, 7.4621, 7.4662, 7.4708, 7.4687, 7.4723, 7.4702, 7.4737, 7.4769, 7.4748, 7.4729, 7.4645, 7.4684, 7.4734, 7.4779, 7.4769, 7.4765, 7.4742, 7.4715, 7.4697, 7.4671, 7.4651, 7.4631, 7.4671, 7.4647, 7.4623, 7.466, 7.4639, 7.468, 7.4667, 7.4708, 7.4683, 7.4666, 7.4707, 7.4685, 7.4679, 7.4657, 7.4697, 7.4734, 7.4774, 7.4753, 7.473, 7.477, 7.4872, 7.4792, 7.4771, 7.4749, 7.4793, 7.4776, 7.4752, 7.4795, 7.4834, 7.4779, 7.4755, 7.4733, 7.4715, 7.469, 7.4665, 7.4642, 7.4617, 7.4595, 7.4573, 7.455, 7.4655, 7.4632, 7.4612, 7.459, 7.4588, 7.4573, 7.456, 7.4547, 7.453, 7.4565, 7.4546, 7.4528, 7.4565, 7.4541, 7.4518, 7.4496, 7.4488, 7.4466, 7.4445, 7.4483, 7.446, 7.4436, 7.4475, 7.4527, 7.4504, 7.4479, 7.4456, 7.4433, 7.441, 7.4386, 7.4363, 7.434, 7.4379, 7.4457, 7.4437, 7.4418, 7.4463, 7.4448, 7.4427, 7.4461, 7.4495, 7.4535, 7.4514, 7.4497, 7.4474, 7.4511, 7.4546, 7.4525, 7.4501, 7.454, 7.4637, 7.4627, 7.462, 7.4644, 7.4622, 7.4659, 7.4715, 7.4693, 7.4672, 7.4648, 7.4635, 7.4613, 7.4597, 7.4577, 7.4563, 7.4539, 7.4524, 7.4512, 7.4548, 7.4581, 7.4616, 7.4596, 7.4576, 7.4557, 7.4587, 7.4622, 7.4602, 7.4581, 7.4558, 7.4536, 7.4569, 7.4553, 7.4588, 7.4576, 7.4555, 7.4543, 7.4521, 7.453, 7.4509, 7.4544, 7.4521, 7.4503, 7.4481, 7.4551, 7.4528, 7.4553, 7.4538, 7.4519, 7.4504, 7.4493, 7.4481, 7.4516, 7.4498, 7.4477, 7.4457, 7.4439, 7.4418, 7.4403, 7.4388, 7.4369, 7.435, 7.4396, 7.4392, 7.4431, 7.4416, 7.4417, 7.4404, 7.4573, 7.456, 7.454, 7.4523, 7.4507, 7.4539, 7.4683, 7.4719, 7.4702, 7.4843, 7.4875, 7.4909, 7.4892, 7.4927, 7.4911, 7.4942, 7.4922, 7.4958, 7.4956, 7.4992, 7.5065, 7.5053, 7.5041, 7.5018, 7.4997, 7.4975, 7.4955, 7.4932, 7.4916, 7.4897, 7.4901, 7.4879, 7.4862, 7.4853, 7.4839, 7.4872, 7.4853, 7.4842, 7.4822, 7.4804, 7.4787, 7.4765, 7.4748, 7.4925, 7.491, 7.4888, 7.4867, 7.4848, 7.4837, 7.4817, 7.48, 7.4814, 7.4842, 7.4826, 7.4805, 7.4789, 7.4771, 7.4705, 7.4758, 7.4791, 7.4724, 7.4704, 7.4703, 7.4691, 7.4677, 7.4711, 7.4691, 7.4672, 7.4705, 7.4695, 7.4682, 7.4696, 7.4678, 7.4661, 7.4596, 7.4629, 7.4872, 7.5062, 7.5144, 7.5131, 7.5112, 7.5094, 7.5075, 7.5134, 7.5118, 7.5103, 7.5099, 7.5088, 7.507, 7.5101, 7.5137, 7.5171, 7.516, 7.515, 7.5131, 7.5166, 7.5151, 7.5134, 7.5113, 7.51, 7.5095, 7.5132, 7.5116, 7.5157, 7.5095, 7.5128, 7.5111, 7.5095, 7.5088, 7.5071, 7.5099, 7.5089, 7.5072, 7.5058, 7.5098, 7.5127, 7.5126, 7.5207, 7.5187, 7.5172, 7.5163, 7.5191, 7.5176, 7.5161, 7.5284, 7.5264, 7.5246, 7.5274, 7.5302, 7.5333, 7.5319, 7.5304, 7.5288, 7.5276, 7.5256, 7.5239, 7.5222, 7.5211, 7.5427, 7.5412, 7.5394, 7.5374, 7.5454, 7.5436, 7.5422, 7.5412, 7.5392, 7.5423, 7.5406, 7.5387, 7.5439, 7.5431, 7.5457, 7.5485, 7.5517, 7.5545, 7.5533, 7.5513, 7.5497, 7.548, 7.5461, 7.5447, 7.5427, 7.5426, 7.5407, 7.5392, 7.5376, 7.5405, 7.5436, 7.5418, 7.5406, 7.5394, 7.5375, 7.5406, 7.5386, 7.5383, 7.5368, 7.5351, 7.5332, 7.5313, 7.5297, 7.5325, 7.5309, 7.5302, 7.5302, 7.5286, 7.5315, 7.5299, 7.5287, 7.5273, 7.5254, 7.5236, 7.5225, 7.5255, 7.5275, 7.5258, 7.5264, 7.5288, 7.5269, 7.5212, 7.5375, 7.54, 7.5426, 7.5407, 7.5436, 7.5417, 7.5445, 7.5428, 7.5411, 7.5396, 7.5381, 7.5438, 7.5495, 7.5477, 7.5497, 7.548, 7.5543, 7.5573, 7.5687, 7.5677, 7.5662, 7.569, 7.5672, 7.5703, 7.5731, 7.5717, 7.5698, 7.57, 7.5684, 7.5821, 7.5871, 7.586, 7.5842, 7.5881, 7.5923, 7.5904, 7.5946, 7.5933, 7.592, 7.5948, 7.5933, 7.5915, 7.5903, 7.5928, 7.5913, 7.5895, 7.5878, 7.5867, 7.5848, 7.5829, 7.5819, 7.5771, 7.5753, 7.5736, 7.5728, 7.5754, 7.5738, 7.5721, 7.5703, 7.5686, 7.5674, 7.5707, 7.5732, 7.5759, 7.5749, 7.5733, 7.572, 7.571, 7.5695, 7.5678, 7.5667, 7.5656, 7.5684, 7.567, 7.5656, 7.5648, 7.563, 7.5611, 7.5599, 7.5626, 7.5612, 7.5593, 7.5619, 7.5604, 7.5668, 7.5654, 7.5613, 7.5676, 7.5662, 7.565, 7.5636, 7.5618, 7.5601, 7.5585, 7.5572, 7.5555, 7.5539, 7.5523, 7.551, 7.5535, 7.5561, 7.5544, 7.5568, 7.555, 7.5533, 7.552, 7.5506, 7.553, 7.5514, 7.5498, 7.5482, 7.5473, 7.5456, 7.5443, 7.5426, 7.5453, 7.5436, 7.5419, 7.5402, 7.5427, 7.5411, 7.5435, 7.5421, 7.5411, 7.5394, 7.5379, 7.5364, 7.5362, 7.5355, 7.5345, 7.5331, 7.5346, 7.533, 7.5317, 7.5306, 7.529, 7.5277, 7.5229, 7.5217, 7.5243, 7.527, 7.5253, 7.5238, 7.5227, 7.5211, 7.5195, 7.5178, 7.5201, 7.5188, 7.5171, 7.5155, 7.5139, 7.5148, 7.5132, 7.512, 7.5104, 7.5089, 7.5077, 7.506, 7.5044, 7.5068, 7.5139, 7.5162, 7.5199, 7.5232, 7.5234, 7.5228, 7.5226, 7.5255, 7.5281, 7.5285, 7.527, 7.5254, 7.5241, 7.5229, 7.5214, 7.5236, 7.5222, 7.5206, 7.519, 7.5176, 7.5163, 7.515, 7.5137, 7.5124, 7.5111, 7.5098, 7.5121, 7.5113, 7.5099, 7.509, 7.5078, 7.5064, 7.5088, 7.5073, 7.5097, 7.5119, 7.5105, 7.5131, 7.5152, 7.5181, 7.5166, 7.5152, 7.5177, 7.5173, 7.5198, 7.5184, 7.5209, 7.5234, 7.5222, 7.5208, 7.5201, 7.5187, 7.5177, 7.5203, 7.5189, 7.521, 7.523, 7.5214, 7.5208, 7.5193, 7.5181, 7.5174, 7.516, 7.515, 7.5134, 7.5162, 7.5183, 7.5177, 7.5201, 7.5222, 7.5211, 7.5195, 7.5179, 7.5189, 7.5175, 7.5198, 7.5183, 7.5206, 7.5194, 7.5219, 7.5208, 7.5195, 7.5182, 7.5191, 7.5182, 7.5173, 7.5158, 7.5148, 7.517, 7.5192, 7.5217, 7.5277, 7.5298, 7.5293, 7.528, 7.5306, 7.5328, 7.5349, 7.5337, 7.5335, 7.5321, 7.5306, 7.5292, 7.5313, 7.5305, 7.5257, 7.5245, 7.5237, 7.5264, 7.5249, 7.5235, 7.523, 7.5228, 7.525, 7.5234, 7.5258, 7.5244, 7.5231, 7.5215, 7.5212, 7.5218, 7.524, 7.5225, 7.521, 7.5232, 7.5222, 7.5207, 7.5196, 7.5183, 7.5206, 7.5191, 7.5146, 7.5134, 7.5142, 7.5129, 7.5149, 7.5103, 7.5127, 7.5114, 7.5104, 7.5128, 7.5114, 7.5134, 7.5121, 7.5108, 7.5096, 7.5082, 7.5039, 7.5028, 7.509, 7.5083, 7.5071, 7.5064, 7.5087, 7.5073, 7.5102, 7.5057, 7.5078, 7.5099, 7.5084, 7.507, 7.5059, 7.5045, 7.5035, 7.5022, 7.5011, 7.4999, 7.4991, 7.4979, 7.5002, 7.5029, 7.502, 7.5006, 7.5031, 7.502, 7.5044, 7.5069, 7.5058, 7.5088, 7.5108, 7.5093, 7.5085, 7.5071, 7.5061, 7.5081, 7.5074, 7.5064, 7.5053, 7.5044, 7.5033, 7.5021, 7.5014, 7.5033, 7.5022, 7.5011, 7.5002, 7.499, 7.5017, 7.5002, 7.499, 7.5015, 7.5002, 7.4988, 7.4977, 7.4964, 7.495, 7.4975, 7.5004, 7.4991, 7.498, 7.4968, 7.4964, 7.495, 7.4938, 7.4958, 7.4946, 7.4959, 7.4949, 7.4936, 7.4924, 7.4915, 7.4903, 7.4923, 7.4915, 7.4902, 7.493, 7.4916, 7.4906, 7.4901, 7.4895, 7.4883, 7.4877, 7.4864, 7.485, 7.4836, 7.4836, 7.4823, 7.4812, 7.4799, 7.482, 7.4807, 7.4793, 7.478, 7.4875, 7.49, 7.4957, 7.4943, 7.4939, 7.4928, 7.4949, 7.4941, 7.4929, 7.4916, 7.4937, 7.4923, 7.4911, 7.4901, 7.4889, 7.4875, 7.4864, 7.4864, 7.4851, 7.4841, 7.4828, 7.4819, 7.4839, 7.483, 7.4851, 7.4869, 7.489, 7.4909, 7.4897, 7.4884, 7.4872, 7.486, 7.4847, 7.4836, 7.4823, 7.4813, 7.48, 7.4796, 7.4848, 7.4839, 7.4828, 7.4815, 7.4802, 7.4789, 7.4779, 7.4804, 7.4794, 7.4819, 7.484, 7.4862, 7.4885, 7.4872, 7.4894, 7.4885, 7.4874, 7.4862, 7.4883, 7.4871, 7.4858, 7.488, 7.4868, 7.4889, 7.4876, 7.4869, 7.4936, 7.4923, 7.4943, 7.4966, 7.4957, 7.4951, 7.4951, 7.4939, 7.4959, 7.4917, 7.4906, 7.4894, 7.4857, 7.4847, 7.4833, 7.482, 7.4807, 7.4794, 7.4781, 7.4775, 7.4795, 7.4783, 7.477, 7.476, 7.4766, 7.4755, 7.4775, 7.4796, 7.4816, 7.4804, 7.4824, 7.4815, 7.4803, 7.4791, 7.4782, 7.4835, 7.4826, 7.4824, 7.4785, 7.4806, 7.4798, 7.4788, 7.4775, 7.4795, 7.4856, 7.4878, 7.4865, 7.4862, 7.4851, 7.4871, 7.4858, 7.4877, 7.4896, 7.4885, 7.4904, 7.4893, 7.491, 7.493, 7.4947, 7.4907, 7.4925, 7.4945, 7.4934, 7.4955, 7.4946, 7.4967, 7.4989, 7.5009, 7.4999, 7.5022, 7.5015, 7.5041, 7.5028, 7.5048, 7.5035, 7.5027, 7.5019, 7.5009, 7.4996, 7.4984, 7.5018, 7.5008, 7.5002, 7.5021, 7.5049, 7.5037, 7.5028, 7.5019, 7.5037, 7.5028, 7.4995, 7.4984, 7.5004, 7.4992, 7.498, 7.4968, 7.496, 7.4948, 7.5035, 7.5055, 7.5043, 7.506, 7.5051, 7.507, 7.5069, 7.5127, 7.5132, 7.512, 7.514, 7.5159, 7.5178, 7.5165, 7.5187, 7.5178, 7.5168, 7.5156, 7.5175, 7.5194, 7.5213, 7.5201, 7.519, 7.5184, 7.5175, 7.5193, 7.5182, 7.5169, 7.5157, 7.516, 7.5155, 7.5152, 7.5172, 7.5161, 7.5154, 7.518, 7.5168, 7.5155, 7.5176, 7.5195, 7.5184, 7.5177, 7.5197, 7.5186, 7.5175, 7.5162, 7.5151, 7.514, 7.5161, 7.5181, 7.5143, 7.5132, 7.515, 7.514, 7.5129, 7.5119, 7.5112, 7.5102, 7.5095, 7.5084, 7.5073, 7.5069, 7.5061, 7.5079, 7.5067, 7.5031, 7.511, 7.511, 7.51, 7.5069, 7.5057, 7.5058, 7.508, 7.5068, 7.5057, 7.5047, 7.5036, 7.5026, 7.5018, 7.5034, 7.5022, 7.5011, 7.5003, 7.4994, 7.4982, 7.4944, 7.4934, 7.4951, 7.4944, 7.4933, 7.495, 7.5056, 7.5048, 7.5055, 7.5045, 7.5062, 7.5053, 7.5131, 7.5124, 7.5112, 7.51, 7.5088, 7.5079, 7.5072, 7.5063, 7.5055, 7.5045, 7.5041, 7.5029, 7.5022, 7.5039, 7.5058, 7.5046, 7.5036, 7.5053, 7.5042, 7.5031, 7.505, 7.504, 7.5059, 7.5049, 7.5042, 7.5061, 7.5065, 7.5058, 7.5052, 7.504, 7.5029, 7.5022, 7.5011, 7.5032, 7.5023, 7.5011, 7.5001, 7.5019, 7.5015, 7.5033, 7.5022, 7.5012, 7.5064, 7.5085, 7.5073, 7.5061, 7.5079, 7.5073, 7.5065, 7.5056, 7.5049, 7.5067, 7.5085, 7.5074, 7.5066, 7.5057, 7.5049, 7.508, 7.507, 7.5058, 7.5054, 7.5043, 7.506, 7.5052, 7.5041, 7.5029, 7.5018, 7.5009, 7.5001, 7.4996, 7.5013, 7.503, 7.5021, 7.5013, 7.5003, 7.4991, 7.4985, 7.4982, 7.4972, 7.4992, 7.4986, 7.4975, 7.4964, 7.4954, 7.4944, 7.4933, 7.4921, 7.4912, 7.4903, 7.4897, 7.4896, 7.4891, 7.4889, 7.491, 7.49, 7.4895, 7.4887, 7.4878, 7.4897, 7.4891, 7.4906, 7.4898, 7.4887, 7.4862, 7.4852, 7.4842, 7.4831, 7.485, 7.4843, 7.4833, 7.4853, 7.4863, 7.4852, 7.4842, 7.4831, 7.4851, 7.487, 7.4858, 7.485, 7.4841, 7.4832, 7.4824, 7.4815, 7.4806, 7.4796, 7.4797, 7.4786, 7.4801, 7.479, 7.4779, 7.4781, 7.4775, 7.4793, 7.4783, 7.4798, 7.4814, 7.4832, 7.4848, 7.4838, 7.4832, 7.4825, 7.4816, 7.4807, 7.4796, 7.4791, 7.481, 7.48, 7.4817, 7.4806, 7.4797, 7.4786, 7.4814, 7.4923, 7.4914, 7.4932, 7.4973, 7.4988, 7.4979, 7.4969, 7.4958, 7.4948, 7.4963, 7.4952, 7.4941, 7.4958, 7.4948, 7.4965, 7.4956, 7.4946, 7.4962, 7.4953, 7.4945, 7.4964, 7.4955, 7.4945, 7.4936, 7.4926, 7.4915, 7.4905, 7.4897, 7.489, 7.4882, 7.4873, 7.4862, 7.4856, 7.4847, 7.4837, 7.4827, 7.4818, 7.4857, 7.4847, 7.4864, 7.4859, 7.4849, 7.4842, 7.4832, 7.4825, 7.4842, 7.4857, 7.4847, 7.4862, 7.4852, 7.4843, 7.4839, 7.483, 7.4821, 7.4837, 7.4831, 7.4827, 7.4841, 7.4856, 7.4845, 7.4842, 7.486, 7.4852, 7.4842, 7.4835, 7.4825, 7.4841, 7.483, 7.4822, 7.4812, 7.4806, 7.4797, 7.4813, 7.4805, 7.4799, 7.4789, 7.4804, 7.4823, 7.4815, 7.4833, 7.4823, 7.4813, 7.4804, 7.4804, 7.4821, 7.4837, 7.4831, 7.4823, 7.4815, 7.4806, 7.4801, 7.4791, 7.4781, 7.4797, 7.4787, 7.4777, 7.4766, 7.4756, 7.4748, 7.4781, 7.477, 7.476, 7.475, 7.4772, 7.4762, 7.4756, 7.4748, 7.4738, 7.4733, 7.4728, 7.472, 7.4757, 7.4798, 7.479, 7.4785, 7.4778, 7.4768, 7.4759, 7.475, 7.4741, 7.4732, 7.4723, 7.4715, 7.4706, 7.4701, 7.4692, 7.4697, 7.4687, 7.4677, 7.4715, 7.4755, 7.477, 7.4811, 7.4803, 7.4796, 7.4789, 7.4805, 7.4795, 7.4791, 7.4781, 7.4774, 7.4768, 7.4759, 7.4749, 7.4739, 7.473, 7.472, 7.4713, 7.4705, 7.4724, 7.4717, 7.4709, 7.47, 7.467, 7.4698, 7.4691, 7.4681, 7.4672, 7.4688, 7.4687, 7.4683, 7.4676, 7.4644, 7.4661, 7.4676, 7.4667, 7.4661, 7.4653, 7.4647, 7.4663, 7.4653, 7.4647, 7.4663, 7.4657, 7.4648, 7.4638, 7.4632, 7.4648, 7.4639, 7.4629, 7.4621, 7.4639, 7.4655, 7.4645, 7.4636, 7.4627, 7.4642, 7.4659, 7.465, 7.4665, 7.4681, 7.4706, 7.4697, 7.4688, 7.4726, 7.4717, 7.473, 7.4721, 7.4737, 7.4779, 7.477, 7.4786, 7.4824, 7.4865, 7.4856, 7.4851, 7.4843, 7.4834, 7.4808, 7.4804, 7.482, 7.4813, 7.4803, 7.4794, 7.48, 7.479, 7.4781, 7.4772, 7.4786, 7.4777, 7.4792, 7.4787, 7.4777, 7.4792, 7.4808, 7.4801, 7.4792, 7.4826, 7.4819, 7.4788, 7.4781, 7.4771, 7.4786, 7.4782, 7.4775, 7.4788, 7.478, 7.4772, 7.4832, 7.4824, 7.4816, 7.4807, 7.4798, 7.4812, 7.4804, 7.4795, 7.4797, 7.4791, 7.4792, 7.4784, 7.4799, 7.4792, 7.4783, 7.4776, 7.4771, 7.4786, 7.4777, 7.4793, 7.4784, 7.4779, 7.4794, 7.4785, 7.4778, 7.4769, 7.476, 7.475, 7.4742, 7.4734, 7.4728, 7.4719, 7.4735, 7.4728, 7.4721, 7.4736, 7.4749, 7.474, 7.477, 7.4761, 7.4757, 7.4754, 7.4769, 7.4759, 7.4773, 7.4787, 7.4803, 7.4794, 7.4785, 7.4801, 7.4792, 7.4786, 7.4778, 7.4771, 7.4761, 7.4759, 7.475, 7.4744, 7.4735, 7.4726, 7.4721, 7.4736, 7.4728, 7.4745, 7.4735, 7.4726, 7.472, 7.4711, 7.4726, 7.4717, 7.4712, 7.4702, 7.4696, 7.469, 7.4682, 7.4673, 7.4667, 7.4642, 7.4635, 7.4626, 7.4618, 7.4612, 7.4606, 7.4576, 7.4615, 7.4631, 7.4623, 7.4624, 7.464, 7.4632, 7.4623, 7.4639, 7.4631, 7.4622, 7.4594, 7.4589, 7.4584, 7.4579, 7.4594, 7.4592, 7.4586, 7.4577, 7.4592, 7.4584, 7.4598, 7.4589, 7.456, 7.4551, 7.4543, 7.4557, 7.4528, 7.452, 7.4535, 7.4526, 7.4517, 7.4508, 7.4522, 7.4537, 7.4553, 7.4568, 7.4561, 7.4553, 7.4622, 7.4637, 7.4632, 7.4632, 7.4624, 7.4615, 7.4625, 7.4618, 7.461, 7.4624, 7.4616, 7.4629, 7.4643, 7.4634, 7.4626, 7.464, 7.4632, 7.4626, 7.4618, 7.461, 7.4605, 7.4598, 7.4589, 7.4581, 7.4574, 7.4566, 7.4558, 7.4549, 7.4563, 7.4555, 7.4546, 7.4542, 7.4534, 7.4529, 7.4521, 7.4512, 7.4526, 7.4544, 7.4558, 7.4551, 7.4543, 7.4535, 7.4526, 7.454, 7.4532, 7.4526, 7.4519, 7.4541, 7.4533, 7.4525, 7.452, 7.4513, 7.4511, 7.4505, 7.4526, 7.452, 7.4513, 7.4505, 7.4476, 7.447, 7.4462, 7.4496, 7.4514, 7.4506, 7.4497, 7.4488, 7.448, 7.4494, 7.4486, 7.4478, 7.447, 7.4463, 7.4457, 7.4455, 7.4449, 7.444, 7.4454, 7.4447, 7.4439, 7.4435, 7.443, 7.4422, 7.4413, 7.4406, 7.442, 7.4411, 7.4402, 7.4399, 7.4413, 7.4387, 7.4378, 7.4372, 7.4366, 7.4367, 7.4359, 7.4351, 7.4347, 7.4339, 7.4331, 7.4324, 7.4316, 7.4309, 7.4301, 7.4292, 7.4284, 7.4364, 7.4357, 7.4393, 7.4386, 7.4377, 7.4372, 7.4385, 7.4379, 7.4373, 7.4365, 7.4357, 7.435, 7.4342, 7.4355, 7.4347, 7.436, 7.4354, 7.4346, 7.4338, 7.4351, 7.4343, 7.4336, 7.4328, 7.4322, 7.4319, 7.4311, 7.4325, 7.4317, 7.4332, 7.4325, 7.4317, 7.4311, 7.4325, 7.4319, 7.431, 7.4302, 7.4294, 7.433, 7.4321, 7.4313, 7.4326, 7.4298, 7.4293, 7.4286, 7.4299, 7.4292, 7.4285, 7.4282, 7.4274, 7.4267, 7.4259, 7.4254, 7.4248, 7.4242, 7.4234, 7.4248, 7.424, 7.4218, 7.4213, 7.4206, 7.4202, 7.4177, 7.4169, 7.4182, 7.4195, 7.4207, 7.4201, 7.4197, 7.419, 7.4205, 7.4218, 7.421, 7.4202, 7.4197, 7.4189, 7.4187, 7.4201, 7.4193, 7.4172, 7.4164, 7.4177, 7.4174, 7.4166, 7.4158, 7.4153, 7.4144, 7.4136, 7.4129, 7.4122, 7.4117, 7.4109, 7.4082, 7.4074, 7.4095, 7.4087, 7.4079, 7.4148, 7.4161, 7.4134, 7.4147, 7.414, 7.4113, 7.4125, 7.412, 7.4133, 7.4128, 7.4121, 7.4131, 7.4124, 7.4158, 7.4159, 7.4172, 7.4166, 7.4162, 7.4156, 7.4169, 7.4161, 7.4175, 7.4168, 7.4166, 7.416, 7.4154, 7.4155, 7.4148, 7.414, 7.4132, 7.4125, 7.4117, 7.411, 7.4103, 7.4096, 7.4089, 7.4086, 7.4098, 7.4093, 7.4086, 7.4101, 7.4096, 7.4107, 7.4102, 7.4096, 7.4089, 7.4081, 7.4074, 7.4068, 7.4078, 7.4091, 7.4065, 7.4058, 7.4052, 7.4044, 7.4037, 7.4029, 7.4025, 7.4018, 7.4012, 7.4022, 7.4014, 7.4006, 7.4002, 7.4014, 7.4024, 7.4031, 7.4039, 7.4031, 7.4026, 7.4019, 7.4011, 7.4024, 7.4016, 7.4051, 7.4045, 7.4049, 7.4041, 7.4035, 7.4048, 7.4045, 7.4039, 7.4049000000000005, 7.405900000000001, 7.4055, 7.4088, 7.408, 7.4093, 7.4086, 7.4096, 7.4089, 7.4084, 7.4078, 7.407, 7.4068, 7.4062, 7.406, 7.4054, 7.4048, 7.404, 7.4034, 7.4027, 7.4021, 7.4017, 7.4031, 7.4025, 7.4039, 7.4032, 7.4025, 7.4038, 7.4031, 7.4025, 7.4038, 7.4052, 7.4044, 7.4059, 7.4072, 7.4066, 7.4058, 7.405, 7.4025, 7.4019, 7.4011, 7.4003, 7.3995, 7.4008, 7.4, 7.3995, 7.4005, 7.4025, 7.4018, 7.4013, 7.4008, 7.4, 7.3995, 7.3988, 7.4001, 7.4012, 7.4031, 7.4023, 7.4015, 7.4027, 7.4019, 7.4031, 7.4043, 7.4055, 7.4047, 7.4045, 7.4038, 7.4033, 7.4026, 7.402, 7.4013, 7.3989, 7.3982, 7.3979, 7.3982, 7.3992, 7.399, 7.3984, 7.3977, 7.397, 7.3981, 7.3993, 7.3986, 7.3998, 7.401, 7.4023, 7.4015, 7.4008, 7.4003, 7.3995, 7.3988, 7.398, 7.3991, 7.3991, 7.3989, 7.3983, 7.3996, 7.3988, 7.398, 7.3975, 7.3968, 7.396, 7.3972, 7.3965, 7.3959, 7.3953, 7.3947, 7.3959, 7.3951, 7.3927, 7.3938, 7.3931, 7.3923, 7.3916, 7.3911, 7.3923, 7.3917, 7.391, 7.3905, 7.3917, 7.3924, 7.3936, 7.3932, 7.3926, 7.3919, 7.3912, 7.3905, 7.39, 7.3913, 7.3907, 7.392, 7.3946, 7.3959, 7.3952, 7.3948, 7.3961, 7.3974, 7.3968, 7.3961, 7.3954, 7.3947, 7.3941, 7.3936, 7.3929, 7.393, 7.391, 7.3913, 7.3909, 7.3903, 7.3879, 7.3913, 7.3908, 7.3901, 7.3902, 7.3878, 7.3893, 7.3908, 7.3926, 7.3918, 7.393, 7.3924, 7.3916, 7.3911, 7.3906, 7.39, 7.3914, 7.3907, 7.3902, 7.3895, 7.3888, 7.3893, 7.3906, 7.3908, 7.3918, 7.3928, 7.3938, 7.3966, 7.3981, 7.3975, 7.3968, 7.3961, 7.3954, 7.3948, 7.3944, 7.394, 7.3932, 7.3945, 7.3942, 7.3936, 7.3932, 7.3926, 7.392, 7.3988, 7.3999, 7.3992, 7.3986, 7.3996, 7.3989, 7.3965, 7.3961, 7.3955, 7.3948, 7.3941, 7.3934, 7.3928, 7.3927, 7.3939, 7.3933, 7.3947, 7.394, 7.3952, 7.3963, 7.3957, 7.3949, 7.3943, 7.3955, 7.3968, 7.398, 7.3991, 7.3984, 7.3978, 7.399, 7.3984, 7.3977, 7.397, 7.3963, 7.3956, 7.3949, 7.3961, 7.3971, 7.3964, 7.3957, 7.395, 7.3944, 7.3937, 7.3931, 7.3943, 7.3954, 7.3947, 7.3959, 7.3954, 7.3949, 7.3961, 7.3954, 7.395, 7.3944, 7.3937, 7.3932, 7.3946, 7.3945, 7.3957, 7.3953, 7.3955, 7.395, 7.3949, 7.3943, 7.396, 7.3954, 7.3956, 7.3949, 7.3977, 7.3972, 7.3967, 7.3961, 7.3976, 7.3989, 7.3983, 7.3976, 7.3991, 7.4004, 7.3999, 7.4012, 7.4008, 7.4019, 7.4013, 7.4026, 7.402, 7.4015, 7.4008, 7.4003, 7.3998, 7.3991, 7.3986, 7.3979, 7.3992, 7.399, 7.3985, 7.3981, 7.3977, 7.3973, 7.3967, 7.3977, 7.3989, 7.3967, 7.3961, 7.3982, 7.3979, 7.3989, 7.3984, 7.3978, 7.3975, 7.3969, 7.3962, 7.3956, 7.3968, 7.3979, 7.3974, 7.3974, 7.3967, 7.3961, 7.3955, 7.3948, 7.3942, 7.3936, 7.3947, 7.394, 7.3934, 7.3946, 7.3944, 7.3937, 7.3933, 7.3944, 7.3937, 7.3948, 7.3941, 7.3934, 7.3911, 7.3906, 7.3899, 7.3894, 7.389, 7.3884, 7.3882, 7.3876, 7.3871, 7.3883, 7.3878, 7.3871, 7.3869, 7.3881, 7.3879, 7.3873, 7.3884, 7.3877, 7.3888, 7.3866, 7.386, 7.3854, 7.3847, 7.3842, 7.3835, 7.3828, 7.3823, 7.3823, 7.3844, 7.3837, 7.383, 7.3842, 7.3854, 7.3866, 7.3862, 7.3855, 7.3873, 7.3868, 7.3862, 7.3856, 7.3849, 7.386, 7.3856, 7.385, 7.3844, 7.3838, 7.3832, 7.3829, 7.3822, 7.3816, 7.3814, 7.381, 7.3822, 7.3816, 7.381, 7.3805, 7.3816, 7.3809, 7.3803, 7.3815, 7.3809, 7.3821, 7.3816, 7.3811, 7.3805, 7.3818, 7.3812, 7.3805, 7.3816, 7.3811, 7.3805, 7.3818, 7.3811, 7.3805, 7.3815, 7.381, 7.3805, 7.3816, 7.3816, 7.3809, 7.3821, 7.3816, 7.3811, 7.3806, 7.38, 7.3801, 7.3798, 7.381, 7.3823, 7.3817, 7.3828, 7.3821, 7.3814, 7.3819, 7.3812, 7.3832, 7.3843, 7.3836, 7.3832, 7.3826, 7.3821, 7.3835, 7.3831, 7.3843, 7.3838, 7.3848, 7.3842, 7.3853, 7.3849, 7.3844, 7.3839, 7.3835, 7.3828, 7.3824, 7.3819, 7.3815, 7.381, 7.3804, 7.3814, 7.3824, 7.3817, 7.3812, 7.3834, 7.383, 7.3841, 7.3852, 7.3846, 7.3839, 7.385, 7.3843, 7.3838, 7.3832, 7.3827, 7.3838, 7.3849, 7.3843, 7.3844, 7.385400000000001, 7.386400000000001, 7.387400000000001, 7.3869, 7.3866, 7.3876, 7.3886, 7.388, 7.3874, 7.3867, 7.3862, 7.3879, 7.3882, 7.3882, 7.3861, 7.3861, 7.386, 7.3862, 7.3857, 7.3839, 7.3836, 7.3863, 7.3857, 7.3852, 7.3862, 7.3859, 7.3869, 7.3847, 7.3858, 7.3852, 7.3864, 7.3875, 7.3872, 7.3883, 7.3876, 7.3869, 7.3864, 7.386, 7.3857, 7.3867, 7.3862, 7.3855, 7.3865, 7.3876, 7.3871, 7.3865, 7.3875, 7.3871, 7.3864, 7.3858, 7.3852, 7.3846, 7.3824, 7.3821, 7.3816, 7.3809, 7.3805, 7.3799, 7.3794, 7.3789, 7.3784, 7.3778, 7.3789, 7.3783, 7.3778, 7.3771, 7.3766, 7.376, 7.3754, 7.375, 7.3744, 7.3738, 7.3749, 7.3743, 7.3737, 7.3732, 7.3738, 7.3756, 7.3767, 7.3761, 7.3771, 7.3766, 7.3777, 7.3772, 7.3767, 7.3761, 7.3755, 7.3749, 7.3744, 7.3755, 7.3839, 7.3835, 7.3829, 7.3823, 7.3869, 7.3864, 7.3878, 7.3888, 7.3882, 7.3877, 7.3924, 7.3917, 7.3912, 7.3905, 7.3899, 7.391, 7.3904, 7.3897, 7.3892, 7.3886, 7.388, 7.3875, 7.3868, 7.3853, 7.388, 7.3874, 7.387, 7.3866, 7.3877, 7.3873, 7.3911, 7.3891, 7.3902, 7.3898, 7.3894, 7.3887, 7.3897, 7.3923, 7.3935, 7.3928, 7.3922, 7.3916, 7.3929, 7.3924, 7.3934, 7.393, 7.394, 7.3935, 7.3929, 7.3923, 7.3935, 7.3946, 7.3942, 7.3936, 7.3916, 7.3911, 7.3908, 7.392, 7.3914, 7.3933, 7.3931, 7.3911, 7.3905, 7.3899, 7.3893, 7.3909, 7.3903, 7.3914, 7.3911, 7.3906, 7.39, 7.391, 7.3967, 7.3978, 7.3988, 7.3982, 7.3976, 7.3971, 7.3966, 7.3976, 7.397, 7.3981, 7.399, 7.3985, 7.398, 7.3974, 7.3968, 7.3963, 7.3959, 7.3953, 7.395, 7.3945, 7.3955, 7.3949, 7.3943, 7.3952, 7.3946, 7.394, 7.3953, 7.3948, 7.3943, 7.3938, 7.3949, 7.3959, 7.3953, 7.395, 7.3944, 7.394, 7.3935, 7.3929, 7.3939, 7.3948, 7.3945, 7.3955, 7.3965, 7.396, 7.3971, 7.3982, 7.3977, 7.3989, 7.3983, 7.3979, 7.3988, 7.3984, 7.3978, 7.3988, 7.3982, 7.3976, 7.3969, 7.3962, 7.3971, 7.3968, 7.3961, 7.3955, 7.3968, 7.3969, 7.3963, 7.3974, 7.3968, 7.3963, 7.3974, 7.3968, 7.3965, 7.3959, 7.3955, 7.3949, 7.3943, 7.3954, 7.3949, 7.3943, 7.3936, 7.3947, 7.3943, 7.3954, 7.3948, 7.3958, 7.3957, 7.3952, 7.3964, 7.3982, 7.3976, 7.397, 7.3966, 7.3969, 7.3966, 7.396, 7.3956, 7.3952, 7.3945, 7.3925, 7.3925, 7.3921, 7.3916, 7.3928, 7.3925, 7.3962, 7.3957, 7.3955, 7.395, 7.3945, 7.3955, 7.3967, 7.3961, 7.3971, 7.3981, 7.3975, 7.3969, 7.3979, 7.3994, 7.3991, 7.4017, 7.4011, 7.4005, 7.403, 7.4026, 7.402, 7.4016, 7.4017, 7.4011, 7.4005, 7.3999, 7.3993, 7.3989, 7.3983, 7.3981, 7.3975, 7.3955, 7.395, 7.3944, 7.394, 7.392, 7.3914, 7.3908, 7.3904, 7.3898, 7.3892, 7.3888, 7.3882, 7.3892, 7.3887, 7.3894, 7.3875, 7.3885, 7.3896, 7.3893, 7.3888, 7.3921, 7.3931000000000004, 7.3925, 7.3921, 7.3902, 7.3897, 7.3892, 7.3888, 7.3882, 7.3876, 7.3871, 7.3865, 7.3859, 7.3886, 7.3882, 7.3876, 7.3886, 7.3881, 7.3862, 7.3859, 7.3869, 7.388, 7.3874, 7.3871, 7.3866, 7.3861, 7.3856, 7.3866, 7.386, 7.3854, 7.3864, 7.3871, 7.3881, 7.3877, 7.3871, 7.3882, 7.3881, 7.3876, 7.3873, 7.387, 7.3883, 7.3878, 7.3873, 7.3868, 7.3865, 7.3875, 7.387, 7.3865, 7.3865, 7.3859, 7.3853, 7.3848, 7.3843, 7.3839, 7.3836, 7.3832, 7.3841, 7.3835, 7.3829, 7.3838, 7.3833, 7.3848, 7.3858, 7.3853, 7.3847, 7.3841, 7.385, 7.3847, 7.3842, 7.3851, 7.3846, 7.3841, 7.3838, 7.3857, 7.3851, 7.386100000000001, 7.3855, 7.3849, 7.3843, 7.3837, 7.3833, 7.3827, 7.3822, 7.3817, 7.3829, 7.3826, 7.3836, 7.3833, 7.3827, 7.3821, 7.3817, 7.3813, 7.3809, 7.3818, 7.3828, 7.3841, 7.3837, 7.3833, 7.3828, 7.3838, 7.3834, 7.3829, 7.3825, 7.3819, 7.3831, 7.3833, 7.3829, 7.3823, 7.384, 7.3834, 7.3828, 7.3837, 7.3837, 7.3832, 7.3827, 7.3822, 7.3817, 7.3812, 7.3807, 7.3806, 7.3815, 7.3809, 7.3804, 7.3799, 7.3794, 7.3804, 7.3798, 7.3794, 7.379, 7.3786, 7.3781, 7.3777, 7.3805, 7.38, 7.3809, 7.3803, 7.3829, 7.3825, 7.3819, 7.3814, 7.3815, 7.3814, 7.3811, 7.3806, 7.3801, 7.3798, 7.3794, 7.3802, 7.3796, 7.3803, 7.3797, 7.3792, 7.3786, 7.3781, 7.3777, 7.3786, 7.3781, 7.3775, 7.3771, 7.3766, 7.3776, 7.3773, 7.3767, 7.3762, 7.3757, 7.3752, 7.3747, 7.3743, 7.3738, 7.3748, 7.3742, 7.3736, 7.373, 7.3724, 7.372, 7.3715, 7.3711, 7.3709, 7.3704, 7.3714, 7.3708, 7.3705, 7.37, 7.3694, 7.369, 7.3686, 7.3697, 7.3691, 7.3686, 7.3681, 7.3676, 7.3678, 7.3673, 7.3669, 7.3663, 7.3682, 7.3691, 7.3688, 7.3683, 7.3678, 7.3674, 7.367, 7.368, 7.3674, 7.367, 7.3665, 7.3663, 7.3658, 7.3653, 7.3648, 7.3673, 7.3683, 7.368, 7.3675, 7.3684, 7.3681, 7.3677, 7.3672, 7.3682, 7.3677, 7.3687, 7.3681, 7.3678, 7.3675, 7.3685, 7.368, 7.3705, 7.37, 7.3695, 7.3705, 7.37, 7.3695, 7.370500000000001, 7.3702, 7.3712, 7.3722, 7.3749, 7.3745, 7.3741, 7.3751, 7.376, 7.377, 7.3765, 7.3761, 7.3756, 7.375, 7.3745, 7.3741, 7.3737, 7.3733, 7.3727, 7.3737, 7.3719, 7.3728, 7.3737, 7.3733, 7.3729, 7.3724, 7.3718, 7.3715, 7.3712, 7.3724, 7.3719, 7.3714, 7.371, 7.3713, 7.371, 7.3705, 7.3714, 7.3723, 7.3719, 7.3713, 7.3713, 7.3722, 7.3732, 7.3727, 7.3724, 7.3719, 7.3715, 7.3712, 7.3706, 7.3701, 7.3699, 7.3695, 7.3689, 7.3698, 7.3695, 7.3704, 7.3713, 7.3709, 7.3706, 7.3701, 7.3697, 7.3692, 7.369, 7.3698, 7.3707, 7.3702, 7.3713, 7.3709, 7.3704, 7.3714, 7.3709, 7.3704, 7.3708, 7.3704, 7.3699, 7.3696, 7.3691, 7.3691, 7.3691, 7.3686, 7.3681, 7.3676, 7.3672, 7.368, 7.3674, 7.3672, 7.3669, 7.3678, 7.3673, 7.3669, 7.3664, 7.3659, 7.3656, 7.3653, 7.3648, 7.3648, 7.3643, 7.3652, 7.3648, 7.3656, 7.3651, 7.366, 7.3669, 7.3664, 7.3674, 7.367, 7.3681, 7.3679, 7.3676, 7.367, 7.3665, 7.3659, 7.3654, 7.3664, 7.3662, 7.3715, 7.3725, 7.3719, 7.3727, 7.3725, 7.3721, 7.3717, 7.3711, 7.3707, 7.3702, 7.3696, 7.3691, 7.3687, 7.3682, 7.3678, 7.3673, 7.3682, 7.3678, 7.3687, 7.3696, 7.3691, 7.3687, 7.373, 7.3727, 7.3723, 7.3721, 7.3716, 7.3711, 7.3707, 7.3702, 7.3697, 7.3695, 7.369, 7.3686, 7.3682, 7.3679, 7.3688, 7.3712, 7.3707, 7.3715, 7.3697, 7.3692, 7.3701, 7.3696, 7.3691, 7.3688, 7.3683, 7.3693, 7.3691, 7.37, 7.3698, 7.3693, 7.3689, 7.3688, 7.3684, 7.3679, 7.3674, 7.3683, 7.3693, 7.3702, 7.3711, 7.3708, 7.372, 7.3715, 7.3709, 7.3718, 7.3727, 7.3722, 7.3718, 7.3713, 7.3709, 7.3704, 7.3712, 7.3721, 7.3729, 7.3724, 7.372, 7.3715, 7.3711, 7.3736, 7.3736, 7.3745, 7.3742, 7.3739, 7.3749, 7.3744, 7.3752, 7.3748, 7.3745, 7.3755, 7.375, 7.375, 7.3745, 7.3743, 7.3738, 7.3733, 7.3742, 7.3737, 7.3733, 7.3728, 7.3722, 7.3726, 7.3724, 7.3724, 7.3719, 7.3717, 7.3712, 7.372, 7.3715, 7.371, 7.3705, 7.3729, 7.3725, 7.3721, 7.3731, 7.3727, 7.3722, 7.3718, 7.3713, 7.3722, 7.3732, 7.3741, 7.3751, 7.3747, 7.3756, 7.3752, 7.3761, 7.3759, 7.3755, 7.3763, 7.3759, 7.3755, 7.375, 7.3745, 7.3741, 7.3738, 7.3735, 7.373, 7.3725, 7.3722, 7.3717, 7.3712, 7.3708, 7.3705, 7.37, 7.3696, 7.3706, 7.3689, 7.3685, 7.3667, 7.3663, 7.3659, 7.3668, 7.365, 7.3645, 7.364, 7.3635, 7.3632, 7.3643, 7.3639, 7.3635, 7.363, 7.3626, 7.3621, 7.3618, 7.3613, 7.3608, 7.362, 7.3615, 7.3611, 7.3607, 7.3602, 7.3597, 7.3593, 7.3589, 7.3612, 7.3608, 7.3605, 7.3616, 7.3611, 7.3606, 7.3616, 7.3611, 7.3606, 7.3615, 7.3612, 7.3621, 7.363, 7.3627, 7.3626, 7.3621, 7.3616, 7.3611, 7.3606, 7.3603, 7.3602, 7.3611, 7.3607, 7.3602, 7.3598, 7.3595, 7.359, 7.3586, 7.3582, 7.3581, 7.3589, 7.3586, 7.3584, 7.358, 7.3575, 7.3558, 7.3553, 7.3562, 7.3557, 7.3565, 7.3549, 7.3545, 7.354, 7.3535, 7.353, 7.3527, 7.3513, 7.3511, 7.3508, 7.3503, 7.3511, 7.3519, 7.353, 7.3513, 7.3521, 7.3518, 7.3514, 7.3509, 7.3506, 7.3502, 7.3512, 7.352, 7.353, 7.3538, 7.3557, 7.3553, 7.3563, 7.3558, 7.3553, 7.3549, 7.3546, 7.3541, 7.3537, 7.3535, 7.3544, 7.3554, 7.356400000000001, 7.3572, 7.3568, 7.3577, 7.3573, 7.3568, 7.3577, 7.3572, 7.3568, 7.3572, 7.3568, 7.3564, 7.3559, 7.3554, 7.3549, 7.3558, 7.3555, 7.3539, 7.3547, 7.3556, 7.3552, 7.358, 7.3589, 7.3587, 7.3583, 7.3579, 7.3578, 7.3587, 7.3583, 7.3581, 7.3576, 7.3571, 7.3566, 7.3561, 7.3569, 7.3565, 7.356, 7.3557, 7.3554, 7.355, 7.3563, 7.356, 7.3564, 7.3547, 7.3545, 7.3541, 7.3536, 7.3532, 7.3547, 7.3547, 7.3556, 7.354, 7.3535, 7.3545, 7.3541, 7.3549, 7.3545, 7.3549, 7.3546, 7.3553, 7.3562, 7.356, 7.3557, 7.3553, 7.3562, 7.3557, 7.3552, 7.3548, 7.3544, 7.3542, 7.354, 7.3549, 7.3548, 7.3556, 7.3552, 7.3547, 7.3542, 7.3549, 7.3544, 7.3528, 7.3536, 7.3532, 7.3528, 7.3524, 7.3519, 7.3528, 7.3538, 7.3533, 7.3555, 7.3551, 7.3546, 7.3541, 7.3537, 7.3532, 7.3527, 7.3573, 7.3568, 7.3565, 7.3562, 7.3558, 7.3553, 7.3548, 7.3545, 7.3541, 7.3538, 7.3533, 7.3541, 7.3536, 7.3531, 7.3515, 7.3512, 7.3508, 7.3493, 7.348, 7.3476, 7.3472, 7.3468, 7.3507, 7.3505, 7.3501, 7.3503, 7.3513, 7.3523, 7.3519, 7.3533, 7.3528, 7.3526, 7.3547, 7.3543, 7.3552, 7.3549, 7.3544, 7.3539, 7.3536, 7.3531, 7.3515, 7.3546, 7.3542, 7.3552, 7.356, 7.3544, 7.3542, 7.3551, 7.3567, 7.3582, 7.3578, 7.3573, 7.3581, 7.3576, 7.3585, 7.358, 7.3575, 7.3583, 7.3567, 7.3578, 7.3561, 7.3556, 7.3552, 7.357, 7.3565, 7.356, 7.3556, 7.3551, 7.3547, 7.3555, 7.3563, 7.3558, 7.3553, 7.3548, 7.3555, 7.355, 7.3558, 7.3553, 7.3548, 7.3556, 7.3565, 7.3574, 7.3569, 7.3591, 7.3586, 7.357, 7.3579, 7.3586, 7.3594, 7.3603, 7.361, 7.3606, 7.3614, 7.3621, 7.3617, 7.3613, 7.3597, 7.3592, 7.3598, 7.3606, 7.3603, 7.3599, 7.3595, 7.3603, 7.3599, 7.3607, 7.3603, 7.3599, 7.3594, 7.359, 7.3595, 7.3604, 7.3601, 7.3609, 7.3607, 7.3605, 7.359, 7.3599, 7.3596, 7.3591, 7.3588, 7.3572, 7.3568, 7.3576, 7.3574, 7.3569, 7.3577, 7.3585, 7.358, 7.3576, 7.3571, 7.3578, 7.3585, 7.358, 7.3588, 7.3583, 7.358, 7.3576, 7.3572, 7.3567, 7.3564, 7.3559, 7.3556, 7.3552, 7.3547, 7.3544, 7.3552, 7.3547, 7.3543, 7.354, 7.3535, 7.353, 7.3527, 7.3535, 7.3543, 7.3553, 7.355, 7.3546, 7.353, 7.3526, 7.3522, 7.3519, 7.3515, 7.3524, 7.3521, 7.3518, 7.3514, 7.351, 7.3508, 7.3517, 7.3513, 7.3509, 7.3518, 7.3513, 7.3521, 7.3516, 7.3512, 7.352, 7.3527, 7.3524, 7.3521, 7.3517, 7.3513, 7.3511, 7.3532, 7.3539, 7.3534, 7.3542, 7.3562, 7.3559, 7.3555, 7.3551, 7.3547, 7.3544, 7.3546, 7.3541, 7.3536, 7.3531, 7.3528, 7.3524, 7.3532, 7.3542000000000005, 7.3539, 7.3534, 7.3544, 7.3539, 7.3536, 7.3533, 7.353, 7.3539, 7.3558, 7.3554, 7.3549, 7.3574, 7.357, 7.3566, 7.355, 7.3546, 7.3542, 7.3538, 7.3547, 7.3556, 7.3564, 7.3573, 7.3569, 7.3565, 7.3562, 7.3557, 7.3554, 7.3562, 7.3558, 7.3566, 7.3562, 7.3549, 7.3547, 7.3544, 7.3545, 7.354, 7.3536, 7.3536, 7.3533, 7.3529, 7.3537, 7.3535, 7.3544, 7.3552, 7.356, 7.3555, 7.3554, 7.3562, 7.3571, 7.3579, 7.3576, 7.3584, 7.358, 7.3576, 7.3583, 7.3591, 7.3586, 7.3583, 7.3592, 7.36, 7.3608, 7.3605, 7.36, 7.3643, 7.365, 7.3659, 7.3654, 7.365, 7.3658, 7.3665, 7.3673, 7.3681, 7.3678, 7.3674, 7.3671, 7.367, 7.3666, 7.3662, 7.3658, 7.3666, 7.3674, 7.367, 7.3666, 7.3662, 7.3658, 7.3665, 7.3663, 7.3671, 7.3668, 7.3663, 7.3658, 7.3654, 7.3662, 7.3657, 7.3653, 7.3661, 7.367, 7.3666, 7.3662, 7.3672, 7.368, 7.3676, 7.3672, 7.3659, 7.3656, 7.3653, 7.3648, 7.3645, 7.3654, 7.365, 7.3646, 7.3643, 7.3638, 7.3634, 7.3642, 7.364, 7.3636, 7.3631, 7.3627, 7.3623, 7.362, 7.3615, 7.3611, 7.3634, 7.3631, 7.3656, 7.3651, 7.3647, 7.3642, 7.3637, 7.3635, 7.3643, 7.3638, 7.3636, 7.3643, 7.3641, 7.3637, 7.3633, 7.3628, 7.3626, 7.3634, 7.3629, 7.3626, 7.3634, 7.3631, 7.3626, 7.3621, 7.3606, 7.3604, 7.3608, 7.3605, 7.3601, 7.3597, 7.3596, 7.3593, 7.359, 7.3587, 7.3584, 7.3592, 7.36, 7.3596, 7.3594, 7.3591, 7.3586, 7.3583, 7.3568, 7.3565, 7.3562, 7.3601, 7.3596, 7.3592, 7.3589, 7.3596, 7.3604, 7.3602, 7.3597, 7.3582, 7.3578, 7.3574, 7.3569, 7.3555, 7.3562, 7.3558, 7.3554, 7.3562, 7.3558, 7.3554, 7.355, 7.3546, 7.3554, 7.3551, 7.355, 7.3557, 7.3554, 7.355, 7.3545, 7.3541, 7.3538, 7.3535, 7.3532, 7.3556, 7.3552, 7.3548, 7.3533, 7.3542, 7.355, 7.3547, 7.3545, 7.3541, 7.3549, 7.3545, 7.3542, 7.3538, 7.3547, 7.3544, 7.3541, 7.3538, 7.3546, 7.3541, 7.3537, 7.3533, 7.353, 7.3526, 7.3511, 7.3507, 7.3503, 7.3511, 7.3508, 7.3504, 7.35, 7.3497, 7.3492, 7.3499, 7.3508, 7.3504, 7.35, 7.3497, 7.3495, 7.3491, 7.3501, 7.3497, 7.3493, 7.35, 7.3496, 7.3494, 7.3502, 7.3498, 7.3518, 7.3523, 7.3519, 7.3529, 7.3541, 7.3548, 7.3544, 7.3541, 7.3537, 7.3533, 7.3529, 7.3525, 7.3525, 7.352, 7.3527, 7.3523, 7.3519, 7.3515, 7.3511, 7.3517, 7.3526, 7.3522, 7.353, 7.3526, 7.3523, 7.3518, 7.3514, 7.351, 7.3506, 7.3502, 7.3509, 7.3507, 7.3525, 7.3511, 7.3507, 7.3505, 7.3502, 7.351, 7.3517, 7.3515, 7.3511, 7.3508, 7.3504, 7.35, 7.3496, 7.3503, 7.3511, 7.3519, 7.3515, 7.3529, 7.3539, 7.3524, 7.3531, 7.3538, 7.3535, 7.3532, 7.3533, 7.3529, 7.3525, 7.3556, 7.3553, 7.3549, 7.3545, 7.3542, 7.3554, 7.355, 7.3547, 7.3554, 7.355, 7.3546, 7.3543, 7.355, 7.3546, 7.3546, 7.3569, 7.3566, 7.3562, 7.356, 7.3556, 7.3552, 7.3549, 7.3545, 7.3552, 7.356, 7.3568, 7.3564, 7.356, 7.3567, 7.3564, 7.356, 7.3557, 7.3553, 7.3549, 7.3545, 7.3552, 7.3561, 7.3557, 7.3565, 7.3562, 7.3559, 7.3577, 7.3586, 7.3593, 7.3603, 7.3599, 7.3595, 7.3581, 7.3577, 7.3574, 7.357, 7.358, 7.3578, 7.3587, 7.3584, 7.358, 7.3576, 7.3572, 7.358, 7.3576, 7.3572, 7.3578, 7.3574, 7.3559, 7.3557, 7.3564, 7.356, 7.3556, 7.3563, 7.3571, 7.3578, 7.3574, 7.3581, 7.3576, 7.3572, 7.3568, 7.3564, 7.3561, 7.3557, 7.3553, 7.3549, 7.3556, 7.3563, 7.357, 7.3577, 7.3573, 7.357, 7.3577, 7.3573, 7.3583, 7.3589, 7.3596, 7.3592, 7.3589, 7.3585, 7.3581, 7.3577, 7.3584, 7.3591, 7.359, 7.3599, 7.3606, 7.3602, 7.3599, 7.3596, 7.3614, 7.3609, 7.3606, 7.3602, 7.3603, 7.36, 7.3607, 7.3604, 7.36, 7.3608, 7.3604, 7.36, 7.3597, 7.3594, 7.3596, 7.3592, 7.3589, 7.3585, 7.3594, 7.3601, 7.3607, 7.3603, 7.3599, 7.3606, 7.3603, 7.3611, 7.3608, 7.3613, 7.361, 7.3607, 7.3603, 7.361, 7.3631, 7.3627, 7.3635, 7.3631, 7.3627, 7.3624, 7.362, 7.3616, 7.3624, 7.3621, 7.3618, 7.3617, 7.3613, 7.3621, 7.364, 7.366, 7.3646, 7.3643, 7.364, 7.3637, 7.3633, 7.363, 7.3627, 7.3628, 7.3624, 7.3621, 7.3628, 7.3653, 7.3649, 7.3645, 7.3652, 7.3648, 7.3644, 7.363, 7.3626, 7.3623, 7.362, 7.3616, 7.3612, 7.3608, 7.3604, 7.36, 7.3596, 7.3603, 7.3605, 7.3601, 7.3597, 7.3604, 7.3612, 7.3619, 7.3617, 7.3613, 7.3611, 7.3618, 7.3644, 7.363, 7.3626, 7.3633, 7.3629, 7.3625, 7.3623, 7.362, 7.3616, 7.3623, 7.362, 7.3627, 7.3623, 7.3619, 7.3618, 7.3614, 7.361, 7.3606, 7.3613, 7.362, 7.3628, 7.3626, 7.3622, 7.3629, 7.3626, 7.3622, 7.3621, 7.3617, 7.3613, 7.361, 7.3618, 7.3625, 7.3631, 7.3638, 7.3652, 7.3648, 7.3646, 7.3653, 7.365, 7.3646, 7.3653, 7.3649, 7.3645, 7.3642, 7.3638, 7.3635, 7.3635, 7.3632, 7.3629, 7.3625, 7.365, 7.3648, 7.3663, 7.3649, 7.3651, 7.3661, 7.3667, 7.3675, 7.3671, 7.3667, 7.3663, 7.3671, 7.3667, 7.3663, 7.3669, 7.3667, 7.3663, 7.3659, 7.3655, 7.3652, 7.3649, 7.3646, 7.3644, 7.3642, 7.3638, 7.3645, 7.3644, 7.3645, 7.3642, 7.3638, 7.3635, 7.3632, 7.3628, 7.3625, 7.363, 7.3626, 7.3622, 7.3619, 7.3615, 7.3613, 7.362, 7.3638, 7.3668, 7.3685, 7.3672, 7.368, 7.3677, 7.3674, 7.3671, 7.3667, 7.3663, 7.3661, 7.3658, 7.3654, 7.3651, 7.3648, 7.3646, 7.3644, 7.3641, 7.3638, 7.3645, 7.3644, 7.364, 7.3639, 7.3635, 7.3633, 7.3629, 7.3628, 7.3626, 7.3624, 7.3622, 7.3618, 7.3615, 7.3622, 7.3608, 7.3604, 7.3601, 7.3608, 7.3605, 7.3601, 7.3598, 7.3606, 7.3603, 7.36, 7.3597, 7.3605, 7.3602, 7.361, 7.3606, 7.3603, 7.3601, 7.3598, 7.3594, 7.359, 7.3587, 7.3594, 7.359, 7.3586, 7.3593, 7.3589, 7.3585, 7.3581, 7.3578, 7.3574, 7.3571, 7.3569, 7.3565, 7.3572, 7.3568, 7.3576, 7.3573, 7.357, 7.3577, 7.3573, 7.3569, 7.3569, 7.3576, 7.3572, 7.3559, 7.3555, 7.3562, 7.3569, 7.3577, 7.3584, 7.358, 7.3576, 7.3583, 7.358, 7.3576, 7.3572, 7.3568, 7.3565, 7.3572, 7.3568, 7.3564, 7.3571, 7.3568, 7.3613, 7.3609, 7.3605, 7.3649, 7.3645, 7.3652, 7.3649, 7.3684, 7.368, 7.3676, 7.3673, 7.368, 7.3701, 7.3698, 7.3694, 7.369, 7.3697, 7.3704, 7.3701, 7.3712, 7.3719, 7.3715, 7.3711, 7.3707, 7.3714, 7.371, 7.3707, 7.3703, 7.3699, 7.3716, 7.3712, 7.3711, 7.3707, 7.3704, 7.37, 7.3697, 7.3694, 7.369, 7.3697, 7.3705, 7.3702, 7.3709, 7.3705, 7.3701, 7.3708, 7.3704, 7.3701, 7.3698, 7.3694, 7.369, 7.3687, 7.3684, 7.369, 7.3687, 7.3685, 7.3671, 7.3668, 7.3683, 7.368, 7.3676, 7.3673, 7.3683, 7.368, 7.3678, 7.3674, 7.3681, 7.3677, 7.3679, 7.3675, 7.3671, 7.3667, 7.3663, 7.3693, 7.3701, 7.3698, 7.3706, 7.3702, 7.3698, 7.3695, 7.3692, 7.3688, 7.3684, 7.368, 7.3677, 7.3673, 7.367, 7.3668, 7.3687, 7.369, 7.3691, 7.3688, 7.3692, 7.3689, 7.3716, 7.3712, 7.3709, 7.3706, 7.3703, 7.3707, 7.371, 7.3707, 7.3707, 7.372, 7.3726, 7.3723, 7.3729, 7.3725, 7.3712, 7.373, 7.3742, 7.3748, 7.3744, 7.374, 7.3736, 7.3732, 7.3728, 7.3724, 7.3721, 7.3717, 7.3713, 7.3721, 7.3717, 7.3714, 7.3711, 7.3707, 7.3703, 7.37, 7.3699, 7.3696, 7.3692, 7.3689, 7.3688, 7.3696, 7.3693, 7.3689, 7.3685, 7.3681, 7.3687, 7.3684, 7.368, 7.3677, 7.3675, 7.3672, 7.3668, 7.3665, 7.3673, 7.3672, 7.3668, 7.3664, 7.3661, 7.3658, 7.3665, 7.3663, 7.3659, 7.3657, 7.3664, 7.3671, 7.3668, 7.3676, 7.3683, 7.3691, 7.3689, 7.3685, 7.3682, 7.3678, 7.3685, 7.3692, 7.3689, 7.3685, 7.3682, 7.3679, 7.3675, 7.3671, 7.3668, 7.3665, 7.3662, 7.3662, 7.3659, 7.3656, 7.3653, 7.3661, 7.3658, 7.3654, 7.365, 7.3647, 7.3653, 7.365, 7.3646, 7.3642, 7.3639, 7.3635, 7.3631, 7.3628, 7.3624, 7.3621, 7.3618, 7.3626, 7.3632, 7.3621, 7.3618, 7.3615, 7.3613, 7.361, 7.3608, 7.3605, 7.3621, 7.3617, 7.3613, 7.3609, 7.3627, 7.3625, 7.3621, 7.3627, 7.3624, 7.3622, 7.364, 7.3637, 7.3634, 7.3641, 7.3637, 7.3652, 7.365, 7.3647, 7.3643, 7.3639, 7.3645, 7.3642, 7.3638, 7.3635, 7.3644, 7.3641, 7.3637, 7.3643, 7.3639, 7.3635, 7.3631, 7.3627, 7.3624, 7.3624, 7.3621, 7.3618, 7.3635, 7.3631, 7.366, 7.3657, 7.3653, 7.3669, 7.3665, 7.3672, 7.3669, 7.368, 7.3677, 7.3694, 7.3691, 7.3687, 7.3707, 7.3713, 7.3709, 7.3709, 7.3707, 7.3714, 7.371, 7.371, 7.371, 7.3706, 7.3702, 7.3698, 7.3696, 7.3684, 7.3682, 7.3678, 7.3674, 7.367, 7.3666, 7.3662, 7.365, 7.3647, 7.3654, 7.3651, 7.3668, 7.3665, 7.3661, 7.3674, 7.3671, 7.3698, 7.3685, 7.3691, 7.3698, 7.3694, 7.3701, 7.3707, 7.3694, 7.3692, 7.3692, 7.37, 7.3707, 7.3704, 7.3711, 7.3707, 7.3713, 7.3709, 7.3716, 7.3732, 7.3739, 7.3737, 7.3734, 7.3732, 7.3729, 7.3727, 7.3744, 7.3741, 7.3739, 7.3735, 7.3732, 7.3729, 7.3735, 7.3742, 7.374, 7.3736, 7.3733, 7.3729, 7.3726, 7.3732, 7.3729, 7.3727, 7.3723, 7.3711, 7.3722, 7.3718, 7.3714, 7.3712, 7.3711, 7.3709, 7.3705, 7.3701, 7.3699, 7.3686, 7.3682, 7.3678, 7.3676, 7.3703, 7.37, 7.3697, 7.3695, 7.3702, 7.3709, 7.3706, 7.3703, 7.3699, 7.3696, 7.3696, 7.3697, 7.3697, 7.3707, 7.3703, 7.3699, 7.3695, 7.3692, 7.3689, 7.3696, 7.3694, 7.3691, 7.3689, 7.3685, 7.3682, 7.3679, 7.3675, 7.3688, 7.3684, 7.368, 7.3678, 7.3674, 7.3671, 7.3668, 7.3658, 7.3668, 7.3665, 7.3692, 7.3709, 7.3705, 7.3701, 7.3697, 7.3695, 7.3701, 7.3689, 7.3698, 7.3705, 7.3694, 7.3692, 7.3777, 7.3794, 7.38, 7.3798, 7.3796, 7.3813, 7.381, 7.3818, 7.3816, 7.3815, 7.3812, 7.3819, 7.3817, 7.3813, 7.3809, 7.3807, 7.3804, 7.3801, 7.3797, 7.3794, 7.3791, 7.3788, 7.3786, 7.3793, 7.3799, 7.3795, 7.3795, 7.3791, 7.3797, 7.3823, 7.3819, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3798, 7.3794, 7.38, 7.3796, 7.3793, 7.3791, 7.3788, 7.3785, 7.3792, 7.3788, 7.3786, 7.3782, 7.379, 7.3787, 7.3783, 7.378, 7.3786, 7.3783, 7.379, 7.3797, 7.3794, 7.3801, 7.3798, 7.3795, 7.3792, 7.3815, 7.3813, 7.3813, 7.381, 7.3807, 7.3803, 7.38, 7.3797, 7.3793, 7.379, 7.3787, 7.3793, 7.379, 7.3788, 7.3794, 7.379, 7.3787, 7.3784, 7.379, 7.3786, 7.3787, 7.3775, 7.3772, 7.3768, 7.3764, 7.3788, 7.3784, 7.379, 7.3786, 7.3783, 7.3779, 7.3775, 7.3771, 7.3768, 7.3765, 7.3761, 7.3759, 7.3756, 7.3752, 7.3748, 7.3736, 7.3732, 7.3729, 7.3735, 7.3731, 7.3729, 7.3725, 7.3722, 7.3718, 7.3725, 7.3731, 7.3728, 7.3725, 7.3722, 7.3728, 7.3725, 7.3722, 7.371, 7.3716, 7.3712, 7.3718, 7.3714, 7.3721, 7.3718, 7.3724, 7.373, 7.3726, 7.3732, 7.3729, 7.3726, 7.3724, 7.3721, 7.3729, 7.3754, 7.3751, 7.3748, 7.3747, 7.3755, 7.3751, 7.3758, 7.3757, 7.3754, 7.3751, 7.3759, 7.3757, 7.3763, 7.3759, 7.3757, 7.3755, 7.3761, 7.3767, 7.3763, 7.3759, 7.3755, 7.3751, 7.3759, 7.3756, 7.3752, 7.3748, 7.3745, 7.3743, 7.3749, 7.3746, 7.3743, 7.3749, 7.3746, 7.3746, 7.3743, 7.3739, 7.3736, 7.3743, 7.374, 7.3736, 7.3732, 7.3729, 7.3727, 7.3724, 7.3731, 7.3738, 7.3744, 7.3741, 7.3738, 7.3744, 7.3741, 7.3738, 7.3734, 7.3731, 7.3737, 7.3733, 7.373, 7.3736, 7.3736, 7.3724, 7.3712, 7.371, 7.3711, 7.3707, 7.3704, 7.3704, 7.3713, 7.371, 7.3716, 7.3713, 7.371, 7.3706, 7.3703, 7.37, 7.3696, 7.3694, 7.3692, 7.3688, 7.3684, 7.368, 7.3677, 7.3674, 7.3671, 7.3677, 7.3674, 7.367, 7.3667, 7.3664, 7.3662, 7.3668, 7.3664, 7.367, 7.3667, 7.3665, 7.3662, 7.3658, 7.3655, 7.3652, 7.3649, 7.3655, 7.3659, 7.3665, 7.3662, 7.3668, 7.3665, 7.3672, 7.3669, 7.3665, 7.3671, 7.3677, 7.3674, 7.368, 7.3677, 7.3674, 7.3671, 7.3677, 7.3683, 7.3689, 7.3686, 7.3691, 7.3687, 7.371, 7.3698, 7.3695, 7.3701, 7.3707, 7.3704, 7.3701, 7.3698, 7.3719, 7.3725, 7.3731, 7.3737, 7.3725, 7.3721, 7.3718, 7.3726, 7.3724, 7.3729, 7.3726, 7.3732, 7.3729, 7.3725, 7.3722, 7.3719, 7.3707, 7.3703, 7.3699, 7.3695, 7.3693, 7.3689, 7.3686, 7.3683, 7.3681, 7.3679, 7.3667, 7.3665, 7.3661, 7.3659, 7.3656, 7.3662, 7.3659, 7.3666, 7.3685, 7.3682, 7.368, 7.3677, 7.3674, 7.3672, 7.3678, 7.3684, 7.369, 7.3686, 7.3682, 7.3682, 7.3679, 7.3675, 7.368, 7.3686, 7.3692, 7.3698, 7.3694, 7.369, 7.3686, 7.3682, 7.3679, 7.3677, 7.3674, 7.368, 7.3679, 7.3676, 7.3674, 7.3671, 7.3668, 7.3665, 7.3673, 7.367, 7.3667, 7.3665, 7.3662, 7.3678, 7.3674, 7.3671, 7.3667, 7.3665, 7.3662, 7.3668, 7.3674, 7.368, 7.3677, 7.3674, 7.3671, 7.3668, 7.3702, 7.3698, 7.3704, 7.3701, 7.3699, 7.3696, 7.3702, 7.37, 7.3706, 7.3712, 7.371, 7.3708, 7.3707, 7.3734, 7.3731, 7.3728, 7.3725, 7.3734, 7.3731, 7.3738, 7.3744, 7.375, 7.3746, 7.3753, 7.375, 7.3747, 7.3738, 7.3745, 7.3752, 7.3749, 7.3751, 7.3779, 7.3776, 7.3773, 7.377, 7.3782, 7.3779, 7.3776, 7.3773, 7.377, 7.3768, 7.3765, 7.3762, 7.376, 7.3757, 7.3765, 7.3771, 7.3769, 7.3774, 7.3774, 7.378, 7.3787, 7.3784, 7.3781, 7.3779, 7.3776, 7.3781, 7.3787, 7.3783, 7.378, 7.3786, 7.3782, 7.3779, 7.3775, 7.3781, 7.3779, 7.3768, 7.3765, 7.3762, 7.3759, 7.3756, 7.3752, 7.3749, 7.3746, 7.3742, 7.3739, 7.3735, 7.3732, 7.3729, 7.3725, 7.3722, 7.3721, 7.3727, 7.3724, 7.373, 7.3726, 7.3723, 7.372, 7.3717, 7.3706, 7.3703, 7.3701, 7.3699, 7.3695, 7.3691, 7.3697, 7.3704, 7.3701, 7.3699, 7.3709, 7.3708, 7.3706, 7.3703, 7.3701, 7.3699, 7.3695, 7.3703, 7.3711, 7.3709, 7.3706, 7.3712, 7.3708, 7.3712, 7.3713, 7.371, 7.3701, 7.3699, 7.3688, 7.3685, 7.3682, 7.3679, 7.3676, 7.3675, 7.3673, 7.3671, 7.3676, 7.3673, 7.3674, 7.3671, 7.3669, 7.3666, 7.3664, 7.3661, 7.3659, 7.3656, 7.3653, 7.3649, 7.3646, 7.3643, 7.3641, 7.3638, 7.3637, 7.3635, 7.3642, 7.3639, 7.3636, 7.3632, 7.363, 7.3664, 7.3661, 7.3659, 7.3664, 7.368, 7.3677, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3668, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3668, 7.3675, 7.3672, 7.3669, 7.3665, 7.3654, 7.3659, 7.3665, 7.3661, 7.3658, 7.3657, 7.3654, 7.3651, 7.3648, 7.3644, 7.3641, 7.3647, 7.3644, 7.3643, 7.364, 7.3637, 7.3634, 7.3679, 7.3676, 7.3665, 7.3671, 7.3669, 7.3666, 7.3665, 7.3671, 7.3677, 7.3665, 7.3671, 7.3668, 7.3674, 7.3672, 7.367, 7.3667, 7.3673, 7.3679, 7.3676, 7.3674, 7.3672, 7.367, 7.3676, 7.3673, 7.367, 7.3676, 7.3674, 7.3671, 7.3669, 7.3667, 7.3664, 7.367, 7.3667, 7.3673, 7.3679, 7.3685, 7.3682, 7.3671, 7.3677, 7.3683, 7.368, 7.3676, 7.3673, 7.367, 7.3676, 7.3674, 7.367, 7.3676, 7.3673, 7.368, 7.3679, 7.3676, 7.3674, 7.3671, 7.3668, 7.3674, 7.3672, 7.3678, 7.3674, 7.367, 7.3675, 7.3673, 7.3678, 7.3683, 7.3682, 7.367, 7.3677, 7.3674, 7.3671, 7.3668, 7.3674, 7.3699, 7.3696, 7.3694, 7.3694, 7.3691, 7.3688, 7.3686, 7.3684, 7.369, 7.3687, 7.3685, 7.3682, 7.3679, 7.3685, 7.3702, 7.37, 7.3697, 7.3693, 7.3714, 7.3714, 7.3711, 7.3717, 7.3715, 7.3712, 7.3709, 7.3706, 7.3713, 7.3718, 7.3707, 7.3704, 7.3701, 7.3698, 7.3696, 7.3693, 7.3691, 7.3697, 7.3703, 7.37, 7.3698, 7.3695, 7.37, 7.3697, 7.3703, 7.37, 7.3697, 7.3696, 7.3703, 7.3701, 7.3692, 7.3689, 7.3687, 7.3687, 7.3684, 7.3681, 7.3687, 7.3736, 7.3744, 7.3733, 7.3722, 7.3719, 7.3716, 7.3713, 7.371, 7.3715, 7.3712, 7.3709, 7.372, 7.372, 7.3717, 7.3715, 7.3718, 7.3723, 7.372, 7.3718, 7.3731, 7.372, 7.3744, 7.3744, 7.3742, 7.3742, 7.3739, 7.3737, 7.3736, 7.3734, 7.3731, 7.3728, 7.3725, 7.3722, 7.3719, 7.3716, 7.3714, 7.372, 7.3741, 7.3765, 7.3771, 7.3768, 7.3766, 7.3763, 7.3762, 7.3751, 7.3748, 7.3754, 7.3769, 7.3775, 7.3781, 7.377, 7.3767, 7.3765, 7.3762, 7.3768, 7.3765, 7.3766, 7.3772, 7.3769, 7.3766, 7.3763, 7.376, 7.3766, 7.3764, 7.377, 7.3775, 7.3773, 7.377, 7.3767, 7.3774, 7.3772, 7.3769, 7.3766, 7.3763, 7.376, 7.3757, 7.3765, 7.3773, 7.3771, 7.3768, 7.3766, 7.3763, 7.376, 7.3757, 7.3768, 7.3784, 7.3773, 7.3771, 7.3768, 7.3775, 7.3781, 7.3787, 7.3785, 7.3783, 7.378, 7.378, 7.3778, 7.3784, 7.3782, 7.378, 7.3786, 7.382, 7.3817, 7.3814, 7.382, 7.3818, 7.3816, 7.3813, 7.3811, 7.3809, 7.3806, 7.3804, 7.381, 7.3818, 7.3815, 7.3812, 7.3809, 7.3808, 7.3806, 7.3803, 7.3811, 7.381, 7.3816, 7.3813, 7.3813, 7.3819, 7.3816, 7.3813, 7.3804, 7.3801, 7.3798, 7.3795, 7.3801, 7.3797, 7.3803, 7.38, 7.3807, 7.3813, 7.381, 7.3815, 7.382, 7.3817, 7.3814, 7.3819, 7.3816, 7.3813, 7.3819, 7.3824, 7.383, 7.3827, 7.3833, 7.3831, 7.3828, 7.3825, 7.3815, 7.3821, 7.3819, 7.3816, 7.3813, 7.3811, 7.3808, 7.3805, 7.3802, 7.38, 7.3797, 7.3802, 7.3799, 7.3796, 7.3793, 7.379, 7.3787, 7.3784, 7.3789, 7.3786, 7.3783, 7.3772, 7.3762, 7.376, 7.3758, 7.3756, 7.3753, 7.375, 7.3748, 7.3753, 7.375, 7.374, 7.3737, 7.3735, 7.3732, 7.3729, 7.3734, 7.3731, 7.3736, 7.3741, 7.3738, 7.3735, 7.375, 7.3747, 7.3744, 7.375, 7.3757, 7.3755, 7.3752, 7.3749, 7.3746, 7.3735, 7.3733, 7.3735, 7.3742, 7.3765, 7.3763, 7.3761, 7.3766, 7.3771, 7.3769, 7.3774, 7.3771, 7.3769, 7.3766, 7.3764, 7.3762, 7.376, 7.3757, 7.3755, 7.3752, 7.3758, 7.3756, 7.3753, 7.3759, 7.3756, 7.3753, 7.375, 7.3747, 7.375, 7.3752, 7.3749, 7.3746, 7.3744, 7.3742, 7.3748, 7.3753, 7.375, 7.3747, 7.3745, 7.3742, 7.3739, 7.3736, 7.3733, 7.3731, 7.3737, 7.3734, 7.3731, 7.3728, 7.3726, 7.3723, 7.372, 7.3717, 7.3714, 7.3711, 7.3717, 7.3706, 7.3703, 7.3701, 7.3715, 7.3713, 7.372, 7.3717, 7.3714, 7.3711, 7.3734, 7.3758, 7.3756, 7.3753, 7.375, 7.3747, 7.3745, 7.3742, 7.3739, 7.3729, 7.3731, 7.3729, 7.3726, 7.3732, 7.3729, 7.3726, 7.3723, 7.3728, 7.3733, 7.373, 7.3727, 7.3724, 7.3729, 7.3726, 7.3732, 7.3737, 7.3735, 7.3732, 7.3738, 7.3735, 7.3733, 7.373, 7.3727, 7.3724, 7.3725, 7.3724, 7.3729, 7.3726, 7.3723, 7.372, 7.3717, 7.3723, 7.3756, 7.3761, 7.3758, 7.3756, 7.3761, 7.3767, 7.3764, 7.3769, 7.3766, 7.3771, 7.3777, 7.3774, 7.3771, 7.3776, 7.3782, 7.378, 7.3785, 7.379, 7.3796, 7.3802, 7.3799, 7.3805, 7.3802, 7.3808, 7.3813, 7.3818, 7.3823, 7.3828, 7.3833, 7.383, 7.3827, 7.3816, 7.3813, 7.3818, 7.3824, 7.3821, 7.3826, 7.3831, 7.3829, 7.3827, 7.3833, 7.3843, 7.384, 7.3859, 7.3856, 7.3853, 7.385, 7.3858, 7.3864, 7.3878, 7.3875, 7.3872, 7.3877, 7.3874, 7.3872, 7.3877, 7.3874, 7.3879, 7.3869, 7.3866, 7.3863, 7.3861, 7.3877, 7.3874, 7.3888, 7.3886, 7.3883, 7.388, 7.3877, 7.3882, 7.3887, 7.3892, 7.3897, 7.3903, 7.3902, 7.3891, 7.3904, 7.3901, 7.39, 7.3913, 7.3912, 7.3909, 7.3906, 7.3903, 7.3925, 7.393, 7.3927, 7.3924, 7.3921, 7.3918, 7.3915, 7.392, 7.3917, 7.3914, 7.3912, 7.391, 7.3907, 7.3912, 7.3911, 7.3916, 7.3913, 7.391, 7.3915, 7.3936, 7.3941, 7.3939, 7.3936, 7.3933, 7.393, 7.3935, 7.3932, 7.3937, 7.3934, 7.3931, 7.3937, 7.3934, 7.3944, 7.3949, 7.3955, 7.3952, 7.3957, 7.3963, 7.3961, 7.3958, 7.3956, 7.3961, 7.3966, 7.3963, 7.3968, 7.3973, 7.3978, 7.3983, 7.398, 7.3977, 7.3974, 7.3979, 7.3984, 7.3989, 7.3994, 7.3999, 7.4003, 7.4, 7.3997, 7.3986, 7.3983, 7.398, 7.3977, 7.3975, 7.3973, 7.397, 7.3968, 7.3965, 7.397, 7.3967, 7.3964, 7.3969, 7.3974, 7.3979, 7.3976, 7.3973, 7.3978, 7.3983, 7.398, 7.3978, 7.3983, 7.3981, 7.3986, 7.3991, 7.3996, 7.4002, 7.4, 7.4005, 7.4002, 7.4012, 7.4009, 7.4006, 7.4014, 7.4011, 7.402, 7.4028, 7.4026, 7.4023, 7.4033, 7.4046, 7.4043, 7.404, 7.4046, 7.4044, 7.4041, 7.4039, 7.4036, 7.4033, 7.4039, 7.4064, 7.4072, 7.4072, 7.4069, 7.4066, 7.4071, 7.4068, 7.4065, 7.4062, 7.4059, 7.4056, 7.4054, 7.4051, 7.4048, 7.4045, 7.4035, 7.4033, 7.4031, 7.4036, 7.4034, 7.404, 7.4038, 7.4053, 7.4045, 7.4042, 7.404, 7.4037, 7.4034, 7.4031, 7.4028, 7.4025, 7.4031, 7.4037, 7.4042, 7.4063, 7.406, 7.4058, 7.4055, 7.4052, 7.4049, 7.4047, 7.4053, 7.4052, 7.4049, 7.4046, 7.4051, 7.4049, 7.4047, 7.4055, 7.406, 7.4066, 7.4063, 7.4061, 7.4079, 7.4076, 7.4073, 7.4063, 7.406, 7.4057, 7.4054, 7.4068, 7.4065, 7.407, 7.4067, 7.4064, 7.4086, 7.4091, 7.4088, 7.4093, 7.4095, 7.4085, 7.4082, 7.4079, 7.41, 7.4097, 7.4094, 7.4091, 7.4089, 7.4094, 7.4091, 7.4096, 7.4101, 7.4115, 7.4112, 7.4109, 7.411, 7.4107, 7.4112, 7.4109, 7.4114, 7.4111, 7.4108, 7.4105, 7.411, 7.4107, 7.4105, 7.4102, 7.4107, 7.4104, 7.4101, 7.4099, 7.4089, 7.4102, 7.4116, 7.4124, 7.4129, 7.4127, 7.4125, 7.4122, 7.412, 7.4117, 7.4114, 7.4111, 7.4117, 7.4114, 7.4112, 7.4109, 7.4114, 7.4111, 7.4131, 7.4128, 7.4127, 7.4125, 7.4122, 7.4119, 7.4117, 7.4115, 7.4112, 7.411, 7.4119, 7.4124, 7.4129, 7.4134, 7.4144, 7.4142, 7.4139, 7.4145, 7.4146, 7.4144, 7.4136, 7.4133, 7.4142, 7.414, 7.4137, 7.4136, 7.4134, 7.4131, 7.4129, 7.4126, 7.4124, 7.4123, 7.412, 7.4125, 7.4123, 7.412, 7.412, 7.4117, 7.4114, 7.4111, 7.4109, 7.4107, 7.4104, 7.4109, 7.4114, 7.4111, 7.4109, 7.4106, 7.4103, 7.4108, 7.4106, 7.4104, 7.4103, 7.4109, 7.4154, 7.4167, 7.4164, 7.4176, 7.4173, 7.4171, 7.4168, 7.4184, 7.4181, 7.4178, 7.4177, 7.4182, 7.4179, 7.4176, 7.4173, 7.4178, 7.4175, 7.4165, 7.4162, 7.4159, 7.4164, 7.4161, 7.4158, 7.4155, 7.416, 7.4165, 7.417, 7.4175, 7.4172, 7.4169, 7.4166, 7.4164, 7.4162, 7.4159, 7.4187, 7.4184, 7.4182, 7.4179, 7.4176, 7.4181, 7.4186, 7.4184, 7.4182, 7.418, 7.4178, 7.4175, 7.4172, 7.4169, 7.4174, 7.4171, 7.4168, 7.4158, 7.4164, 7.4161, 7.4158, 7.4155, 7.4152, 7.4149, 7.4146, 7.4143, 7.4141, 7.4139, 7.4136, 7.4141, 7.4138, 7.4135, 7.4145, 7.4149, 7.4146, 7.4151, 7.4148, 7.4146, 7.4143, 7.414]} rtt3_3_10 = {'192.168.122.110': [5.4209, 0.6483, 5.4584, 6.8605, 5.487, 1.4672, 6.7289, 5.5358, 5.4204, 6.197, 5.3525, 6.0554, 11.3194, 5.827, 5.3926, 5.2476, 5.5397, 10.8151, 6.2149, 6.7329, 5.7604, 5.5587, 5.4002, 5.4662, 5.4772, 5.249, 11.1785, 5.6431, 6.0661, 5.487, 6.0704, 5.2707, 6.4809, 11.1578, 6.223, 11.2424, 6.5205, 21.1508, 5.9917, 5.712, 5.2714, 5.2955, 15.805, 11.4889, 5.5273, 5.3041, 10.8483, 5.3902, 5.4584, 16.0306, 5.2979, 5.4855, 11.0605, 6.5677, 6.3615, 6.3057, 11.2162, 5.7981, 10.5994, 5.8057, 5.2762, 1.018, 28.46, 11.1165, 5.3163, 10.8268, 5.7175, 10.8769, 16.5319, 11.7371, 5.995, 6.7837, 5.2221, 5.4605, 5.7676, 5.8422, 21.5385, 5.9834, 6.3131, 5.2838, 11.3025, 5.5737, 22.8491, 6.2258, 16.7606, 10.6623, 1.2755, 5.6996, 10.9065, 6.3133, 10.9427, 5.5487, 5.7101, 12.3661, 11.6236, 5.4708, 6.187, 5.5921, 5.5757, 5.6713, 10.968, 7.1368, 5.3554, 5.4176, 5.5909, 6.1677, 5.5287, 5.3437, 5.4708, 6.6888, 10.8523, 5.3897, 5.3151, 6.0697, 6.4812, 11.1153, 6.393, 5.338, 5.8832, 7.1959, 29.7863, 5.9021, 7.3686, 5.3952, 5.8768, 10.9551, 11.1344, 10.8917, 5.6448, 0.6795, 11.1439, 5.3358, 5.676, 10.7408, 5.4283, 5.861, 6.1371, 6.6288, 5.914, 5.4796, 11.2913, 5.7428, 0.9673, 5.2662, 6.706, 6.1364, 6.1371, 11.5788, 5.2252, 5.5268, 5.6965, 5.7003, 5.3642, 5.4934, 10.8364, 5.2211, 11.656, 7.0124, 10.8278, 11.8396, 6.3396, 17.1583, 10.8893, 5.4207, 5.8477, 6.1486, 5.5058, 11.2877, 5.6095, 6.0236, 5.5647, 5.652, 5.6355, 21.9958, 11.1732, 5.5404, 6.4571, 10.6082, 11.5058, 22.3439, 6.1858, 38.0476, 5.2958, 6.1636, 5.2822, 6.604, 5.5747, 2.1122, 0.7503, 21.8365, 5.8279, 5.6264, 10.855, 11.0667, 5.6679, 5.9552, 5.4395, 5.8124, 6.8867, 10.8984, 5.4255, 5.2369, 5.61, 5.2569, 5.343, 6.0148, 5.641, 5.9409, 5.4064, 11.498, 5.4734, 5.6324, 5.4033, 5.4035, 5.4176, 6.0112, 5.3492, 5.9609, 10.771, 16.6683, 5.774, 11.2448, 12.0754, 5.4767, 10.3719, 5.5747, 6.1517, 6.355, 5.4913, 1.3025, 5.7769, 5.7049, 5.2729, 10.9222, 5.5692, 5.543, 10.7257, 5.3709, 5.6968, 5.2192, 5.7313, 16.9024, 5.5633, 14.5841, 5.9147, 5.3749, 5.7437, 10.9899, 5.5168, 16.7778, 0.9093, 6.1884, 6.099, 0.8559, 10.4828, 5.7387, 5.4071, 5.275, 5.7638, 5.4805], '192.168.122.111': [5.41, 6.5017, 10.3495, 5.4452, 5.4908, 0.9472, 5.2984, 12.0294, 5.4457, 11.1046, 11.2844, 17.555, 10.7646, 21.9753, 5.4164, 5.3606, 11.7824, 11.5306, 5.8606, 5.4686, 5.8405, 11.0862, 6.0954, 5.4166, 11.997, 7.5648, 11.2295, 11.2364, 5.4545, 11.1229, 5.4462, 16.1028, 10.8778, 6.2435, 12.3627, 5.5945, 11.3511, 5.476, 5.4748, 6.218, 10.6471, 10.6554, 5.6551, 5.739, 6.0799, 5.2302, 11.0624, 5.4924, 5.2412, 5.6038, 6.3353, 11.1876, 5.4412, 5.3017, 6.6373, 16.9191, 5.5635, 5.4343, 32.9022, 5.4936, 5.7325, 7.3974, 5.8637, 5.4152, 11.8611, 5.9068, 5.2567, 6.038, 5.5845, 6.1567, 6.2335, 7.1223, 10.5026, 6.5784, 5.8014, 6.3665, 10.6547, 5.8217, 6.1591, 5.3186, 5.6548, 10.6006, 10.7136, 0.5879, 10.6895, 5.8661, 7.6663, 6.3419, 5.4276, 5.2371, 10.8654, 10.9472, 5.7681, 10.8712, 5.3346, 5.2698, 5.8236, 5.8277, 11.1856, 10.3621, 10.8066, 11.1556, 23.7005, 5.5788, 6.3069, 5.4934, 10.6912, 10.8402, 6.2094, 10.7098, 5.3713, 5.523, 11.6141, 5.3236, 10.987, 5.6071, 10.767, 5.3425, 10.8984, 11.1709, 25.2409, 5.3256, 5.3797, 10.8633, 6.0618, 5.795, 5.3613, 10.721, 6.346, 1.0831, 16.2027, 5.25, 6.1855, 5.6193, 5.4634, 5.5017, 10.7174, 18.652, 11.3337, 5.5094, 5.5048, 5.8224, 0.8326, 5.2137, 5.9524, 5.399, 5.2967, 11.2059, 5.4338, 10.9327, 5.7755, 5.3086, 11.9212, 5.5611, 10.8984, 16.8626, 5.6748, 6.17, 5.9438, 5.2464, 5.4224, 5.9578, 6.1722, 5.8761, 5.9264, 10.8328, 6.4228, 6.3956, 5.8074, 5.3899, 10.6318, 5.2657, 5.8968, 5.2316, 10.978, 6.6106, 5.3263, 5.3167, 5.9288, 5.6524, 16.1216, 15.7354, 5.4884, 5.7898, 5.9817, 5.5513, 5.5211, 5.9643, 2.1868, 10.8917, 5.7957, 5.5075, 5.6515, 5.4166, 5.9268, 21.9257, 10.8762, 5.3852, 12.0654, 5.8553, 10.7832, 5.2853, 5.7452, 10.6068, 11.1001, 5.4173, 11.3027, 9.9926, 10.8421, 5.8115, 5.8739, 7.0026, 5.3699, 10.9906, 5.4107, 16.7994, 6.4375, 6.5756, 1.4598, 5.5339, 12.6481, 6.0914, 10.849, 5.4834, 5.5749, 5.5747, 17.0801, 11.6727, 5.4696, 6.4185, 5.856, 15.3871, 5.4283, 6.7427, 5.7595, 6.1815, 10.9074, 5.5933, 6.0053, 5.863, 5.8365, 10.8829, 37.0011, 5.6765, 12.1815, 5.3754, 10.7553, 5.697, 5.7724, 6.1131, 5.7833, 6.3353, 11.409, 0.9739, 5.6777, 5.7578, 11.2045, 10.931, 5.3294, 11.8942], '192.168.122.112': [5.3964, 5.97, 6.3298, 10.8397, 21.3864, 1.0958, 10.546, 0.5479, 10.833, 17.2949, 11.4193, 5.7728, 6.5637, 5.5017, 10.8204, 5.4817, 11.5473, 7.8194, 5.4319, 5.3616, 10.6854, 5.9099, 5.5916, 5.5375, 18.4391, 5.7826, 5.4007, 5.5337, 5.475, 5.2731, 5.3592, 5.8646, 5.6021, 5.3885, 5.4603, 11.1508, 5.8792, 16.6235, 10.6118, 5.3573, 5.2385, 10.6626, 5.7487, 5.3256, 5.2521, 5.2402, 0.4368, 11.1501, 5.3494, 5.2488, 5.831, 5.9371, 5.6057, 16.6185, 5.3909, 11.0278, 10.797, 5.466, 5.6195, 5.6999, 5.7311, 10.9665, 5.2667, 27.2431, 5.5583, 5.8637, 5.338, 13.9024, 11.137, 5.4321, 11.0471, 10.8662, 5.795, 11.0726, 10.9007, 5.3346, 5.3563, 5.475, 11.0838, 7.0498, 10.6099, 5.4872, 5.7566, 0.6256, 5.4295, 5.1436, 5.4746, 7.2901, 16.4225, 10.5243, 10.4129, 5.5988, 15.7094, 5.6691, 5.7967, 5.8665, 5.7878, 5.873, 11.3642, 10.8776, 10.9668, 5.6088, 11.4655, 5.5246, 11.3039, 5.5702, 10.8263, 5.9602, 10.8666, 10.7505, 5.5149, 5.4073, 5.1961, 5.8427, 6.9854, 5.5993, 10.7479, 5.5463, 5.5139, 11.7197, 0.638, 5.7187, 5.229, 5.4674, 11.3692, 5.8441, 6.1798, 5.2383, 5.6243, 0.6828, 11.0648, 10.6552, 17.2637, 5.7406, 5.8639, 10.8497, 5.4376, 5.8284, 5.336, 11.225, 5.7847, 17.3349, 0.6161, 5.2989, 5.9087, 5.6736, 5.9206, 11.1129, 5.837, 5.2648, 6.6612, 5.5301, 10.8616, 5.651, 16.6109, 10.7017, 0.5853, 11.0095, 11.1346, 5.296, 5.343, 5.4686, 5.8646, 5.5311, 10.359, 5.3456, 10.8538, 5.4755, 5.4533, 16.4697, 5.5618, 32.6569, 16.2575, 6.0413, 10.8445, 5.7535, 5.4665, 5.2772, 10.9963, 16.814, 5.7154, 13.8104, 10.855, 5.6965, 16.7618, 5.4624, 10.8902, 5.6326, 0.6258, 5.8188, 5.2745, 5.9955, 6.9501, 17.0665, 5.3184, 5.3813, 5.6748, 5.5165, 11.9312, 10.6084, 5.4729, 5.8055, 5.5349, 10.4797, 5.7724, 10.5333, 5.425, 16.8493, 28.6319, 10.813, 5.8761, 11.6341, 10.7875, 5.8508, 11.5218, 6.3117, 5.6684, 7.7603, 0.7777, 16.3848, 11.1623, 22.4452, 11.3492, 10.864, 11.095, 5.2502, 10.7219, 10.7207, 5.4452, 22.2161, 5.4214, 11.2789, 5.877, 5.6479, 5.7051, 0.6576, 5.6846, 5.8398, 5.7878, 5.4736, 11.863, 10.9429, 10.8168, 11.7767, 6.1307, 6.1102, 5.4777, 6.3033, 5.4712, 6.278, 5.5118, 11.4021, 6.5863, 0.6824, 5.5141, 5.5439, 5.4522, 5.3818, 7.7715, 5.9049], '192.168.122.114': [5.7702, 5.5988, 10.716, 10.8476, 5.2245, 0.8307, 6.7375, 0.5207, 16.3388, 5.6, 6.2211, 5.8293, 11.3444, 10.9034, 5.4815, 10.9754, 10.9417, 5.7921, 5.3859, 5.3, 10.829, 6.6509, 11.4183, 5.5418, 6.9494, 5.5289, 5.245, 5.81, 6.4893, 5.7058, 10.8783, 5.7545, 11.3814, 10.8359, 10.8218, 11.126, 5.8076, 10.8161, 11.095, 10.6199, 5.3394, 6.3972, 5.548, 10.9508, 10.9596, 5.4576, 5.9416, 11.308, 5.2378, 10.6924, 5.7454, 11.0321, 5.7511, 5.8706, 15.9378, 10.9887, 10.709, 5.6067, 5.2502, 5.5406, 10.3781, 5.6589, 5.8811, 5.7635, 5.2061, 6.4597, 5.5635, 5.5835, 24.5821, 5.7776, 16.1264, 6.5622, 5.358, 11.2185, 11.6296, 0.6621, 5.4309, 17.483, 5.8498, 5.3289, 10.5102, 5.9803, 5.4452, 0.4945, 5.379, 10.787, 6.4158, 5.7464, 10.7019, 10.9184, 10.9081, 5.4877, 11.0002, 5.4991, 5.475, 5.794, 17.6737, 11.2984, 5.3008, 5.3966, 10.4077, 5.934, 5.9071, 5.513, 5.5645, 5.6305, 5.5771, 5.4579, 5.4443, 5.4383, 10.8047, 5.8429, 5.5623, 10.8776, 5.4352, 5.2605, 5.4004, 5.4471, 10.7219, 5.4214, 0.7136, 5.244, 5.9819, 11.1094, 5.9652, 10.7214, 5.6922, 5.8744, 11.8341, 0.7999, 5.2667, 10.8318, 5.2183, 5.2681, 5.9347, 11.6608, 10.859, 5.507, 5.8265, 11.1728, 5.5923, 5.4395, 1.2226, 10.6173, 10.72, 11.7071, 10.7636, 5.806, 10.4921, 10.5815, 5.8715, 5.4004, 0.5975, 10.8416, 5.2691, 5.2938, 0.8969, 10.7739, 11.1659, 11.0888, 5.3251, 16.3369, 5.3008, 5.5726, 33.4108, 11.4353, 5.7375, 10.812, 16.3527, 10.9847, 5.6901, 10.7186, 32.666, 10.7169, 10.9696, 0.5701, 5.8246, 10.6051, 5.8329, 5.8949, 5.6448, 66.86, 10.7496, 10.4671, 5.2686, 5.507, 5.5895, 5.7404, 0.5927, 5.7867, 6.067, 11.1117, 7.4348, 5.9519, 5.5957, 5.4913, 5.6798, 32.2373, 5.7769, 6.5193, 10.9847, 8.0462, 5.4801, 6.0356, 10.7098, 6.0987, 5.384, 6.1736, 11.8759, 5.5065, 5.7147, 5.8267, 5.3828, 15.6975, 5.7313, 5.7433, 10.8731, 5.9819, 0.7634, 16.2833, 5.621, 11.2433, 10.8876, 10.9148, 11.1535, 10.8161, 10.4511, 5.5416, 5.6834, 5.9383, 10.8147, 6.3615, 5.7216, 5.8892, 6.2919, 0.4587, 6.1007, 6.0036, 6.4259, 5.2688, 5.4634, 10.8328, 5.5709, 5.9943, 6.3679, 5.4028, 11.5609, 5.5671, 10.4105, 6.011, 5.7268, 5.61, 5.6922, 0.6032, 0.8659, 11.0099, 5.3048, 10.8185, 5.8715, 6.2459], '192.168.122.115': [6.5975, 16.2785, 5.347, 5.4405, 10.9038, 11.6479, 6.382, 0.5505, 5.2836, 6.2804, 5.6372, 6.6195, 5.6465, 5.4526, 10.6864, 6.6533, 10.9811, 5.4741, 5.3585, 5.4038, 10.7729, 6.3491, 11.369, 0.484, 16.727, 5.6498, 11.169, 11.1561, 9.1143, 5.316, 6.1896, 5.8513, 0.5362, 10.7727, 6.2263, 5.6839, 5.5909, 6.1975, 5.8494, 5.4135, 5.3215, 5.3277, 5.9264, 5.3799, 5.8255, 5.3203, 5.3849, 10.9251, 10.8504, 10.5722, 10.8259, 10.8218, 5.7507, 5.9054, 11.1904, 5.4049, 10.9925, 6.9931, 6.1033, 22.7666, 5.2443, 11.0292, 5.7445, 6.2697, 6.2249, 10.9432, 5.3821, 5.4362, 11.1969, 11.2915, 5.3806, 5.3937, 5.3499, 5.6572, 5.9719, 0.8709, 5.3744, 5.8572, 11.1761, 5.9462, 5.5408, 5.2567, 11.0881, 0.5794, 16.2091, 6.3193, 10.8697, 11.0655, 10.7913, 5.8022, 11.3962, 11.0078, 5.6918, 5.8055, 6.3972, 11.7366, 6.3148, 6.3396, 6.0129, 11.1637, 6.0112, 10.5398, 5.3151, 5.6605, 5.6734, 6.0825, 5.4007, 6.0425, 10.7276, 5.4462, 5.4157, 5.6279, 5.548, 10.2992, 5.4364, 33.1485, 5.9493, 5.6877, 11.0791, 11.03, 6.6741, 5.4278, 16.1169, 21.8933, 6.2373, 5.4522, 11.5247, 5.3918, 5.6109, 0.8006, 5.5106, 10.7119, 10.5588, 11.0226, 12.6588, 5.3437, 6.0859, 5.7099, 5.2691, 5.5997, 5.5242, 5.5683, 6.1986, 5.619, 16.9392, 16.0837, 10.8287, 10.556, 5.4767, 5.4529, 5.291, 6.1617, 0.4849, 5.9121, 6.1982, 5.5003, 0.7188, 5.5118, 5.8446, 10.8423, 10.9425, 5.5959, 11.6601, 5.3141, 17.7822, 10.8349, 1.4026, 5.4743, 5.8239, 11.1222, 9.0897, 6.2475, 5.4991, 5.4617, 15.9476, 5.3642, 11.065, 5.8396, 12.0602, 5.7392, 5.6362, 16.0594, 10.7718, 10.4635, 5.8284, 10.699, 5.6098, 11.3573, 0.607, 5.1572, 6.0248, 5.5046, 5.7733, 5.3051, 6.2275, 11.4479, 11.1938, 10.8716, 5.3489, 10.9453, 5.327, 9.4099, 5.7795, 5.2717, 5.3701, 5.3971, 5.3861, 23.4523, 10.8893, 5.7786, 5.7614, 10.9963, 10.8385, 5.4784, 5.9204, 5.8455, 5.4741, 5.935, 0.6826, 10.6425, 5.8217, 6.0444, 8.7385, 10.9174, 5.4624, 11.1723, 5.8157, 5.4157, 5.4827, 5.3408, 5.2617, 5.6701, 5.8141, 5.3766, 5.9533, 0.56, 6.2327, 5.4584, 6.4611, 5.4171, 11.7111, 10.9301, 5.908, 5.9221, 23.4549, 5.9447, 5.3518, 13.84, 5.7044, 27.2663, 10.8261, 0.5403, 5.8718, 0.7873, 1.8301, 10.8128, 5.7797, 5.1785, 5.7487, 5.8131], '192.168.122.116': [10.4678, 5.8827, 5.4166, 5.4412, 10.8604, 11.03, 6.5517, 6.057, 0.5777, 5.6679, 5.5549, 11.5809, 5.363, 5.4581, 10.5331, 10.9468, 5.5649, 5.4266, 5.3022, 10.8993, 10.855, 5.9114, 5.4705, 0.7026, 5.6798, 16.644, 11.2879, 5.7588, 5.6684, 5.2431, 5.388, 5.708, 0.6387, 10.8294, 5.8584, 11.4021, 6.1958, 5.9822, 10.5932, 5.2648, 5.8682, 5.1925, 10.8969, 5.5737, 6.237, 5.3904, 5.486, 5.4522, 12.228, 10.5734, 5.8527, 16.5508, 5.8227, 11.1511, 10.4623, 11.1115, 5.3036, 5.8339, 5.6818, 11.5287, 5.7847, 6.1319, 6.5212, 6.0492, 10.818, 5.619, 10.8018, 5.2521, 18.1267, 6.6936, 5.76, 5.7554, 5.3566, 5.6887, 5.7609, 0.4938, 5.8482, 6.0196, 5.8684, 10.7479, 5.3964, 32.3703, 29.793, 0.7293, 5.5051, 5.7266, 5.9667, 11.3225, 5.971, 5.964, 6.1536, 11.0545, 22.2218, 6.3808, 5.4617, 11.214, 24.3092, 5.5602, 5.6005, 5.332, 0.5031, 10.457, 10.5777, 5.4672, 6.1631, 5.5554, 11.4236, 5.4362, 7.3924, 10.5913, 5.506, 5.47, 10.8042, 11.1074, 5.3048, 5.7268, 10.6561, 10.9456, 10.6466, 5.4781, 5.4989, 5.2683, 10.8924, 5.4986, 5.2986, 5.8923, 5.61, 5.511, 5.3165, 2.5442, 5.4708, 10.8993, 10.9837, 10.6785, 11.0202, 6.537, 6.0558, 5.7874, 5.2807, 10.612, 5.5256, 5.5549, 0.5617, 21.863, 5.6083, 5.6608, 5.8906, 5.3008, 5.4102, 5.4164, 5.2736, 16.2663, 0.55, 5.4605, 10.5617, 32.8119, 0.4897, 10.68, 5.8796, 5.8839, 5.3313, 7.4489, 17.2105, 11.5414, 5.8911, 5.4414, 1.2319, 5.3492, 5.4088, 5.2891, 5.6231, 5.3988, 10.8814, 5.393, 5.7592, 5.6946, 5.9299, 27.262, 5.7974, 10.8166, 5.5966, 7.9088, 5.9338, 19.6555, 0.596, 5.8975, 5.4612, 10.9723, 0.6168, 5.8103, 5.218, 11.1787, 6.7778, 25.7425, 6.4685, 10.9406, 9.8057, 5.2991, 5.2021, 6.4988, 10.8032, 10.4721, 5.2862, 5.8713, 10.9076, 10.7124, 5.7173, 11.1196, 5.6188, 10.8874, 16.8009, 6.2568, 11.2588, 5.388, 5.3337, 10.7112, 5.5175, 11.0705, 0.818, 5.3713, 5.594, 5.6758, 5.3198, 6.0077, 5.4381, 5.6674, 10.6206, 5.7769, 5.2378, 10.8578, 10.4601, 11.4231, 5.4445, 11.2753, 5.2719, 0.6082, 11.4269, 5.4641, 5.919, 5.3151, 5.7769, 5.4202, 5.4574, 11.5516, 6.2339, 5.4798, 6.5641, 5.532, 5.6987, 5.6009, 10.8564, 5.6567, 11.5268, 0.8478, 0.6626, 11.4219, 5.2834, 5.3751, 18.5983, 5.502], '192.168.122.120': [16.2494, 5.3508, 5.408, 5.4295, 5.6312, 5.5263, 6.3365, 10.793, 0.5949, 5.6274, 5.7166, 5.4798, 22.3501, 10.8397, 6.0353, 6.1646, 27.0329, 5.3189, 6.3307, 5.7611, 10.7062, 5.548, 16.8288, 6.1741, 11.3933, 5.7867, 11.1964, 5.5096, 5.4762, 5.4219, 5.3825, 0.7761, 0.6459, 6.3288, 5.3732, 0.5429, 5.6105, 32.625, 21.6846, 5.2621, 5.635, 16.5937, 5.7812, 16.3317, 5.444, 5.3968, 0.6099, 6.0716, 5.3463, 5.5077, 5.672, 5.7383, 5.2283, 10.6421, 5.3372, 10.8652, 16.3085, 5.477, 22.4354, 5.2507, 5.2433, 10.9835, 11.0781, 5.4758, 10.8783, 5.2402, 5.8119, 5.4417, 5.5811, 0.7052, 10.3955, 5.2667, 6.8271, 11.1601, 6.5355, 2.789, 5.9721, 11.095, 6.0084, 6.0859, 11.024, 17.8311, 6.1791, 0.5617, 5.3697, 5.6365, 6.32, 5.7306, 11.0257, 11.5767, 5.7013, 5.5549, 5.3334, 5.8925, 17.282, 0.7193, 5.317, 5.7375, 6.1116, 6.3567, 5.863, 5.7037, 5.5003, 5.4154, 6.11, 10.8602, 10.8979, 5.4572, 10.7286, 5.4114, 11.025, 6.4983, 5.6167, 5.6863, 5.3856, 5.5511, 5.4767, 5.5473, 10.886, 5.4762, 16.0022, 5.3196, 5.4743, 11.0352, 5.4219, 5.2626, 22.0625, 5.8286, 15.7831, 0.8736, 10.8449, 11.23, 10.9639, 10.7155, 6.3465, 5.3213, 5.7366, 5.8672, 5.2791, 16.6104, 18.8999, 5.9047, 0.5639, 10.6795, 5.5802, 1.9774, 10.9026, 5.3737, 5.3914, 11.0657, 5.3582, 16.6953, 0.4039, 6.1719, 5.388, 10.5293, 0.4296, 5.4319, 0.4461, 5.5544, 6.0182, 5.4755, 10.4094, 5.2304, 21.5211, 10.6013, 1.5132, 6.3076, 10.7586, 5.6221, 6.1679, 5.2705, 10.7853, 5.9409, 10.4461, 5.2977, 5.3408, 16.7446, 16.839, 21.174, 5.6236, 5.8703, 5.4598, 10.6483, 5.4224, 10.6275, 10.5352, 5.6825, 0.5465, 5.7757, 10.6754, 11.1108, 5.343, 10.8614, 10.8111, 5.4986, 15.6271, 16.4771, 5.7187, 10.7989, 5.4095, 18.508, 6.1455, 15.2459, 16.7036, 6.2299, 5.8384, 5.5385, 11.1091, 5.3358, 21.6935, 16.9313, 5.8715, 5.275, 10.7222, 11.2967, 5.9397, 10.7567, 6.1188, 5.5616, 12.336, 5.6636, 10.7393, 5.3868, 5.5687, 5.4502, 11.1916, 5.5091, 11.4007, 5.8112, 5.7373, 6.3055, 5.4715, 5.2485, 10.9069, 0.4821, 11.3246, 5.379, 6.434, 5.4209, 5.734, 5.9395, 10.9165, 11.8587, 6.0866, 11.2846, 5.7938, 5.3248, 10.7481, 5.7266, 11.2703, 6.1994, 11.5421, 1.3087, 0.4952, 10.8328, 5.6546, 5.4269, 5.5983, 10.9415], '192.168.122.118': [0.8883, 5.8637, 24.5066, 11.1694, 5.7349, 5.5466, 10.6618, 5.3918, 0.6821, 5.8963, 6.2127, 18.223, 5.7852, 6.0012, 5.4049, 6.2156, 10.9868, 5.646, 5.8234, 6.3772, 5.4727, 5.4364, 6.1936, 5.5382, 5.1866, 5.7118, 5.5509, 5.5199, 10.9012, 5.4936, 5.811, 0.9651, 0.4549, 12.3658, 6.3546, 5.7468, 5.3554, 5.5559, 5.1928, 5.9462, 5.2216, 5.614, 10.675, 10.4253, 10.7994, 5.8062, 16.8419, 5.9092, 5.734, 10.7973, 5.3151, 5.9068, 5.9452, 6.3691, 5.7814, 11.2236, 10.792, 5.5709, 5.7325, 5.6031, 5.3315, 16.176, 5.7504, 5.7995, 6.3627, 5.8472, 5.4021, 5.4462, 5.5695, 1.2081, 5.7414, 5.3885, 12.5132, 6.2635, 5.604, 0.7749, 10.6611, 11.7521, 10.5872, 5.9061, 5.3716, 6.4311, 10.8769, 0.5221, 21.3845, 5.4822, 10.8609, 5.794, 5.4243, 6.4862, 11.1811, 5.7807, 16.274, 5.9104, 5.5947, 6.2282, 5.2671, 6.3627, 5.6422, 16.0065, 10.9568, 16.6459, 31.7361, 5.9659, 6.1896, 22.0335, 5.7516, 5.5242, 16.299, 10.958, 11.4124, 5.2607, 16.1412, 11.2367, 10.9236, 11.559, 11.2035, 6.1879, 10.9022, 5.4281, 10.8976, 5.3799, 5.6195, 17.2145, 5.4827, 26.2201, 5.3735, 5.8353, 5.6534, 0.5436, 5.4262, 5.3661, 5.4703, 5.2812, 10.8018, 5.4836, 10.9849, 5.7101, 11.0841, 11.183, 11.08, 10.7088, 0.4983, 10.7017, 10.967, 1.4462, 5.4438, 6.4316, 5.4119, 5.9114, 5.7802, 5.4951, 0.5102, 5.399, 5.2314, 20.236, 0.6454, 6.2122, 0.6404, 0.4857, 5.2516, 11.3964, 5.2445, 5.7151, 11.1024, 11.08, 14.1938, 5.27, 5.4438, 5.594, 5.3096, 5.3935, 10.8273, 5.713, 5.2345, 5.2958, 10.7074, 6.5575, 10.9129, 10.8695, 6.1512, 12.264, 5.5947, 5.4543, 6.1946, 10.6008, 6.4647, 5.6672, 0.4983, 5.6393, 10.5727, 5.5909, 5.5263, 6.0904, 5.4247, 6.0184, 10.814, 5.5246, 5.6214, 21.6556, 17.1442, 6.1769, 10.4604, 5.729, 16.2852, 16.5322, 5.9717, 16.1498, 11.2298, 5.4018, 5.6686, 5.8565, 10.4041, 5.3124, 5.4216, 10.6642, 5.8055, 5.3833, 6.3865, 0.5176, 5.6927, 5.8146, 5.6186, 6.1996, 11.075, 5.5199, 21.4276, 10.6275, 10.669, 9.9385, 10.7737, 6.0024, 5.4314, 5.3639, 5.7409, 0.5398, 11.4653, 6.0744, 16.5238, 5.5118, 5.8351, 5.4617, 10.6211, 29.6493, 24.9352, 10.5817, 5.3499, 5.4932, 5.583, 5.2426, 6.027, 10.4673, 11.5609, 0.8812, 0.6518, 11.0235, 10.6611, 10.8037, 5.7569, 5.3644], '192.168.122.119': [5.5571, 5.5985, 5.512, 11.1458, 0.5698, 10.8128, 5.3864, 10.9293, 0.6924, 11.4341, 6.2234, 10.848, 5.3456, 6.6283, 5.3265, 5.9285, 5.4801, 5.4376, 5.8937, 5.2478, 10.8666, 10.7682, 13.1862, 5.558, 5.3473, 5.4305, 10.9749, 5.6288, 5.4305, 5.2989, 11.385, 0.5591, 0.4299, 5.3623, 5.4657, 11.2405, 5.4078, 6.3965, 11.1489, 10.5629, 10.5593, 6.0194, 10.9124, 10.5324, 10.8047, 11.0412, 1.0657, 5.7776, 11.9076, 14.3328, 5.3937, 5.3289, 5.8064, 6.5067, 27.2694, 8.1546, 5.2438, 5.8761, 5.7693, 12.3644, 5.6515, 10.4749, 5.7411, 5.2025, 5.9109, 5.5447, 5.7492, 5.4216, 5.5509, 0.7064, 5.8687, 5.4431, 5.3144, 5.969, 6.3016, 0.4721, 10.6013, 5.9893, 10.9947, 25.1739, 5.2457, 5.5254, 10.5298, 0.4349, 5.2507, 5.7626, 10.9158, 6.0222, 5.4939, 5.7251, 6.2776, 16.6883, 5.9221, 5.4777, 6.7089, 5.6374, 5.712, 5.6906, 5.5654, 5.4972, 16.1796, 10.7956, 5.9938, 5.3551, 6.0287, 5.4541, 6.119, 0.5524, 11.0805, 5.9514, 11.3883, 5.7828, 5.6932, 5.5408, 10.7453, 5.7294, 10.9935, 11.2896, 10.6478, 5.5273, 5.3761, 6.0871, 10.8435, 6.2799, 8.204, 0.7761, 5.2905, 6.0601, 11.0433, 5.8413, 5.4603, 5.3122, 26.7744, 5.3926, 16.2799, 5.8012, 5.4007, 5.8341, 11.9057, 5.9197, 11.224, 5.3034, 0.546, 5.2817, 5.2993, 9.1453, 5.3089, 5.3802, 5.8854, 5.3396, 5.6252, 11.2987, 0.5291, 10.865, 5.7926, 13.8865, 0.9954, 5.7802, 0.6025, 6.1846, 27.8242, 5.7008, 5.2502, 5.2152, 11.127, 10.8359, 13.344, 6.578, 5.5504, 16.0613, 5.7969, 5.3313, 5.3222, 6.2413, 11.652, 10.6869, 27.1969, 10.9925, 5.8527, 5.7921, 6.4421, 5.2354, 16.8083, 5.3005, 27.2963, 10.7284, 5.6508, 11.2846, 0.4208, 11.0707, 5.4133, 10.6449, 5.6112, 5.9111, 5.4319, 10.9127, 6.2737, 10.4196, 6.166, 10.8905, 10.9367, 6.2099, 5.2259, 11.2038, 16.4409, 21.5218, 10.5217, 5.487, 5.3773, 5.3751, 10.798, 5.4018, 5.7948, 5.9154, 8.2767, 5.676, 5.5313, 5.3275, 5.8627, 5.4574, 5.579, 5.3041, 22.2816, 10.8008, 6.1584, 6.6826, 11.2276, 10.998, 5.7905, 5.3689, 11.5619, 10.7996, 5.4133, 5.3852, 5.5308, 0.464, 5.8055, 10.85, 11.1518, 11.2636, 0.5381, 5.4698, 0.803, 11.9047, 6.1586, 5.271, 5.3847, 28.4936, 11.3554, 5.6939, 5.5892, 5.3251, 11.4403, 0.9768, 4.1966, 11.1651, 10.4938, 5.441, 10.7675, 10.8833]} cpu3_3_10 = [43.7, 28.8, 2.6, 3.2, 0.1, 0.1, 1.1, 1.5, 0.6, 3.1, 0.6, 3.1, 0.7, 0.0, 0.2, 1.8, 3.7, 0.8, 1.2, 0.1, 0.5, 0.5, 0.4, 0.7, 0.1, 0.2, 0.2, 0.6, 0.4, 1.9, 0.7, 1.1, 0.5, 0.7, 0.7, 0.1, 0.1, 0.0, 0.2, 2.9, 1.8, 2.1, 2.6, 1.0, 0.9, 0.4, 0.3, 0.4, 0.9, 0.2, 2.0, 0.3, 1.0, 0.8, 0.9, 1.9, 1.6, 0.0, 0.4, 1.4, 1.6, 1.4, 0.1, 0.8, 0.8, 0.4, 0.3, 0.9, 1.4, 0.3, 3.6, 2.8, 0.3, 0.3, 1.2, 2.1, 2.7, 1.7, 0.7, 0.8, 0.6, 1.8, 1.8, 2.9, 1.8, 1.3, 0.3, 0.7, 0.9, 0.4, 0.1, 0.1, 0.3, 0.1, 0.2, 0.8, 1.3, 2.3, 1.5, 0.2, 0.5, 0.3, 0.8, 0.6, 1.3, 0.1, 0.7, 1.2, 0.9, 0.8, 1.3, 1.5, 0.0, 0.3, 0.1, 0.4, 0.5, 1.6, 1.8, 2.5, 5.2, 5.5, 1.5, 0.8, 0.3, 0.3, 0.6, 0.6, 1.2, 2.5, 1.6, 0.2, 0.6, 0.9, 0.8, 0.6, 0.3, 0.0, 0.5, 0.6, 0.8, 0.9, 0.5, 0.2, 0.6, 0.1, 1.5, 2.2, 0.4, 0.7, 0.3, 0.4, 0.4, 1.1, 0.7, 0.4, 0.6, 1.0, 0.3, 0.2, 0.5, 0.6, 0.1, 0.7, 0.1, 0.5, 1.0, 0.6, 0.5, 0.1, 1.3, 1.7, 0.1, 0.4, 0.0, 0.1, 0.6, 1.3, 1.3, 2.1, 0.3, 1.0, 9.4, 10.8, 0.1, 0.4, 0.6, 8.8, 7.7, 1.0, 0.8, 1.0, 0.7, 0.1, 0.3, 0.9, 0.7, 3.1, 3.0, 0.4, 0.3, 0.6, 1.0, 0.2, 1.1, 0.8, 0.7, 0.9, 0.8, 0.1, 0.6, 0.6, 0.5, 0.3, 0.4, 1.2, 0.9, 1.4, 3.3, 2.3, 0.3, 0.9, 0.1, 0.3, 0.6, 0.9, 1.6, 1.2, 0.5, 1.0, 1.9, 0.7, 0.2, 0.0, 0.4, 0.3, 1.2, 2.1, 0.6, 0.6, 0.4, 1.7, 1.6, 0.4, 0.2, 0.4, 0.2, 1.1, 0.9, 0.4, 1.1, 0.8, 0.3, 0.6, 0.5, 0.5, 0.1, 0.6, 0.9, 0.2] off_mec3_3_10 = 139 off_cloud3_3_10 = 196 inward_mec3_3_10 = 75 loc3_3_10 = 547 deadlock3_3_10 = [6] memory3_3_10 = [0.219, 0.2194, 0.2194, 0.2198, 0.2198, 0.2198, 0.2199, 0.2199, 0.2199, 0.22, 0.2201, 0.2201, 0.2201, 0.2202, 0.2202, 0.2203, 0.2203, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2206, 0.2207, 0.2207, 0.2208, 0.2208, 0.2208, 0.2208, 0.2209, 0.221, 0.221, 0.221, 0.2211, 0.2211, 0.2211, 0.2211, 0.2212, 0.2213, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2215, 0.2215, 0.2216, 0.2218, 0.2218, 0.222, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2227, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2229, 0.2232, 0.2232, 0.2232, 0.2234, 0.2236, 0.2237, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2239, 0.2241, 0.2242, 0.2242, 0.2242, 0.2243, 0.2243, 0.2244, 0.2244, 0.2245, 0.2245, 0.2246, 0.2246, 0.2246, 0.2247, 0.2248, 0.2248, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.225, 0.225, 0.2251, 0.2251, 0.2251, 0.2252, 0.2252, 0.2253, 0.2253, 0.2254, 0.2255, 0.2256, 0.2256, 0.2258, 0.2258, 0.226, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2263, 0.2264, 0.2264, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2269, 0.2269, 0.227, 0.227, 0.2271, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2277, 0.2277, 0.2279, 0.2279, 0.2279, 0.2282, 0.2282, 0.2283, 0.2285, 0.2285, 0.2285, 0.2285, 0.2286, 0.2287, 0.2288, 0.2288, 0.2288, 0.2288, 0.2291, 0.2291, 0.2291, 0.2292, 0.2293, 0.2293, 0.2293, 0.2293, 0.2294, 0.2294, 0.2295, 0.2295, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2297, 0.2298, 0.2298, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2301, 0.2302, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2305, 0.2305, 0.2305, 0.2306, 0.2306, 0.2306, 0.2306, 0.2306, 0.2306, 0.2307, 0.2308, 0.2309, 0.2319, 0.232, 0.232, 0.232, 0.2321, 0.2321, 0.2321, 0.2321, 0.2321, 0.2323, 0.2323, 0.2323, 0.2323, 0.2324, 0.2324, 0.2325, 0.2334] task_received3_3_10 = 882 sent_t3_3_10 = {'125': 333, '124': 305, '126': 243} cooperate3_3_10 = {'mec': 138, 'cloud': 196} task_record3_3_10 = {'t5.113.124.651.274': 'mec'} outward_mec3_3_10 = 8 offload_check3_3_10 = [] timed_out_tasks3_3_10 = 0
names = ['David','Herry','Army'] message1 = "hello " + names[0] print(message1) message1 = "hello " + names[1] print(message1) message1 = "hello " + names[2] print(message1)
names = ['David', 'Herry', 'Army'] message1 = 'hello ' + names[0] print(message1) message1 = 'hello ' + names[1] print(message1) message1 = 'hello ' + names[2] print(message1)
hu = "haha" age = 22 name = "Cat"
hu = 'haha' age = 22 name = 'Cat'
def calculateStats(numbers): val = len(numbers) result = {"max": float('NaN'), "min": float('NaN'), "avg": float('NaN')} if val == 0: return result else: result["max"] = max(numbers) result["min"] = min(numbers) result["avg"] = sum(numbers) / val return result class EmailAlert(object): pass class LEDAlert(object): pass class StatsAlerter(object): def __init__(self, maxThreshold, alert): self.maxThreshold = maxThreshold self.alert = alert self.alert[0].emailSent = True self.alert[1].ledGlows = False def checkAndAlert(self, numbers): result = calculateStats(numbers) if result["max"] > self.maxThreshold: self.alert[0].emailSent = True self.alert[1].ledGlows = True # print(calculateStats([]))
def calculate_stats(numbers): val = len(numbers) result = {'max': float('NaN'), 'min': float('NaN'), 'avg': float('NaN')} if val == 0: return result else: result['max'] = max(numbers) result['min'] = min(numbers) result['avg'] = sum(numbers) / val return result class Emailalert(object): pass class Ledalert(object): pass class Statsalerter(object): def __init__(self, maxThreshold, alert): self.maxThreshold = maxThreshold self.alert = alert self.alert[0].emailSent = True self.alert[1].ledGlows = False def check_and_alert(self, numbers): result = calculate_stats(numbers) if result['max'] > self.maxThreshold: self.alert[0].emailSent = True self.alert[1].ledGlows = True
lst = [ ["https://bit.ly/DataStructC", "9:00", "9:58"], ["https://bit.ly/AeroStructures", "11:10", "12:08"], ["https://zoom.us/j/8143311495?pwd=e-space", "12:10", "13:00"] ["https://bit.ly/engMaterials", "13:50", "14:50"] ]
lst = [['https://bit.ly/DataStructC', '9:00', '9:58'], ['https://bit.ly/AeroStructures', '11:10', '12:08'], ['https://zoom.us/j/8143311495?pwd=e-space', '12:10', '13:00']['https://bit.ly/engMaterials', '13:50', '14:50']]
host='localhost' user='root' password='wowilosttwosis$' db='fin_man_db' charset='utf8mb4'
host = 'localhost' user = 'root' password = 'wowilosttwosis$' db = 'fin_man_db' charset = 'utf8mb4'
cx, cy, cd = input().split() cx = float(cx); cy = float(cy); cd = float(cd); r = cd; n = int(input()); coef = input().split(); z = float(input()); for i in range(n+1): coef[i] = float(coef[i]) def f_eval(x): ans = 0 for i in range(0, n+1): ans += coef[i]*(x**(n-i)) return ans lo = cx - r - 10 hi = cx + r + 10 me = (lo+hi)/2 M = 1e6 for i in range(10, 14): D = hi - lo step = D/(1<<i) j = lo while j < hi: X = j; Y = f_eval(X); error = r*r - (X-cx)*(X-cx) - (Y-cy)*(Y-cy) if abs(error) < M: M = abs(error) me = X j += step lo = me - step/2 hi = me + step/2 print(me)
(cx, cy, cd) = input().split() cx = float(cx) cy = float(cy) cd = float(cd) r = cd n = int(input()) coef = input().split() z = float(input()) for i in range(n + 1): coef[i] = float(coef[i]) def f_eval(x): ans = 0 for i in range(0, n + 1): ans += coef[i] * x ** (n - i) return ans lo = cx - r - 10 hi = cx + r + 10 me = (lo + hi) / 2 m = 1000000.0 for i in range(10, 14): d = hi - lo step = D / (1 << i) j = lo while j < hi: x = j y = f_eval(X) error = r * r - (X - cx) * (X - cx) - (Y - cy) * (Y - cy) if abs(error) < M: m = abs(error) me = X j += step lo = me - step / 2 hi = me + step / 2 print(me)
class Process: def __init__(self, id, arrvl_time, exec_time): self.id = id self.arrvl_time = arrvl_time self.exec_time = exec_time self.compl_time = 0 self.timeLeft = exec_time def execute(self, quantum): #self.timeLeft = self.timeLeft - quantum if self.timeLeft > quantum else 0 if self.timeLeft > quantum: self.timeLeft = self.timeLeft - quantum return False else: self.timeLeft = 0 return True
class Process: def __init__(self, id, arrvl_time, exec_time): self.id = id self.arrvl_time = arrvl_time self.exec_time = exec_time self.compl_time = 0 self.timeLeft = exec_time def execute(self, quantum): if self.timeLeft > quantum: self.timeLeft = self.timeLeft - quantum return False else: self.timeLeft = 0 return True
words = "Life is short" upper_word_list = ["LIFE", "IS", "SHORT", "USE", "PYTHON"] word_generator = ( lower_w for w in upper_word_list if (lower_w := w.lower()) in words.lower() ) for w in word_generator: print(w, end=" ") # word_generator is StopIteration now
words = 'Life is short' upper_word_list = ['LIFE', 'IS', 'SHORT', 'USE', 'PYTHON'] word_generator = (lower_w for w in upper_word_list if (lower_w := w.lower()) in words.lower()) for w in word_generator: print(w, end=' ')
# overall function that recursively splits an input array in half, and # uses the helper function "merge" to compare items in each half against each # other to sort them def mergeSort(list): # Determine whether the list is broken into # individual pieces. if len(list) < 2: return list # Find the middle of the list. middle = len(list) // 2 # Break the list into two pieces. left = mergeSort(list[:middle]) right = mergeSort(list[middle:]) # Merge the two sorted pieces into a larger piece. print("Left side: ", left) print("Right side: ", right) merged = merge(left, right) print("Merged ", merged) return merged # helper function that checks split pieces of "parent" array against one another def merge(left, right): # When the left side or the right side is empty, # it means that this is an individual item and is # already sorted. if not len(left): return left if not len(right): return right # Define variables used to merge the two pieces. result = [] leftIndex = 0 rightIndex = 0 totalLen = len(left) + len(right) # Keep working until all of the items are merged. while len(result) < totalLen: # Perform the required comparisons and merge # the pieces according to value. if left[leftIndex] < right[rightIndex]: result.append(left[leftIndex]) leftIndex += 1 else: result.append(right[rightIndex]) rightIndex += 1 # When the left side or the right side is longer, # add the remaining elements to the result. if leftIndex == len(left) or rightIndex == len(right): result.extend(left[leftIndex:] or right[rightIndex:]) break return result
def merge_sort(list): if len(list) < 2: return list middle = len(list) // 2 left = merge_sort(list[:middle]) right = merge_sort(list[middle:]) print('Left side: ', left) print('Right side: ', right) merged = merge(left, right) print('Merged ', merged) return merged def merge(left, right): if not len(left): return left if not len(right): return right result = [] left_index = 0 right_index = 0 total_len = len(left) + len(right) while len(result) < totalLen: if left[leftIndex] < right[rightIndex]: result.append(left[leftIndex]) left_index += 1 else: result.append(right[rightIndex]) right_index += 1 if leftIndex == len(left) or rightIndex == len(right): result.extend(left[leftIndex:] or right[rightIndex:]) break return result
class DockerComposeEntity: def __init__(self): self.sinks = list() def build_state(self): result = dict() services = dict() sink_count = 0 for sink in self.sinks: services[f"sink_{sink_count}"] = sink.__dict__ sink_count += 1 result["version"] = "3" result["services"] = services result["networks"] = { "owlvey-net": { "external": False } } return result
class Dockercomposeentity: def __init__(self): self.sinks = list() def build_state(self): result = dict() services = dict() sink_count = 0 for sink in self.sinks: services[f'sink_{sink_count}'] = sink.__dict__ sink_count += 1 result['version'] = '3' result['services'] = services result['networks'] = {'owlvey-net': {'external': False}} return result
a = input() if len(a) == 1 and 'a' in a: ans = -1 else: ans = 'a' print(ans)
a = input() if len(a) == 1 and 'a' in a: ans = -1 else: ans = 'a' print(ans)
LocalValueDim = 18446744073709551613 dataTypes = { -1: 'unknown', 0: 'byte', 1: 'short', 2: 'integer', 4: 'long', 50: 'unsigned_byte', 51: 'unsigned_short', 52: 'unsigned_integer', 54: 'unsigned_long', 5: 'real', 6: 'double', 7: 'long_double', 9: 'string', 10: 'complex', 11: 'double_complex', 12: 'string_array', 55: 'char' } dataTypeSize = { -1: 0, 0: 1, 1: 2, 2: 4, 4: 8, 50: 1, 51: 2, 52: 4, 54: 8, 5: 4, 6: 8, 7: 16, 9: 0, 10: 8, 11: 16, 12: 0, 55: 1 } def GetTypeName(typeID): name = dataTypes.get(typeID) if name is None: name = "unknown type" return name def GetTypeSize(typeID): size = dataTypeSize.get(typeID) if size is None: size = 0 return size CharacteristicNames = { 0: 'value', 1: 'min', 2: 'max', 3: 'offset', 4: 'dimensions', 5: 'var_id', 6: 'payload_offset', 7: 'file_index', 8: 'time_index', 9: 'bitmap', 10: 'stat', 11: 'transform_type', 12: 'minmax' } def GetCharacteristicName(cID): name = CharacteristicNames.get(cID) if name is None: name = "unknown characteristic" return name def GetCharacteristicDataLength(cID, typeID): name = CharacteristicNames.get(cID) if (name == 'value' or name == 'min' or name == 'max' or name == 'minmax'): return dataTypeSize[typeID] elif (name == 'offset' or name == 'payload_offset'): return 8 elif (name == 'file_index' or name == 'time_index'): return 4 else: return 0 # Read Header info 64 bytes # fileType: Data, Metadata, Index Table def ReadHeader(f, fileSize, fileType): status = True if fileSize < 64: print("ERROR: Invalid " + fileType + ". File is smaller " "than the header (64 bytes)") return False header = f.read(64) hStr = header.decode('ascii') versionStr = hStr[0:32].replace('\0', ' ') major = hStr[32] minor = hStr[33] micro = hStr[34] # unused = hStr[35] endianValue = header[36] if endianValue == 0: endian = 'yes' elif endianValue == 1: endian = ' no' else: print("ERROR: byte 28 must be 0 or 1 to indicate endianness of " "the data. It is however {0} in this file".format( endianValue)) status = False bpversion = int(header[37]) active = int(header[38]) if active == 0: activeStr = ' no' else: activeStr = 'yes' # unused = hStr[39] WriterCount = int(header[40]) aggregatorcount = int(header[44]) iscolumnmajor = header[49] # 45..63 unused print("-----------------------------------------------------------" "-----------------------------------------------------------") print("| Version string | Major | Minor | Patch " "| unused | Endian | BP version | Active | WriterCount | AggCount" + " | ColumnMajor | unused |") print("| 32 bytes | 1B | 1B | 1B " "| 1B | 1B | 1B | 1B | 4b | 4b " + "| 1b | 16B |") print("+----------------------------------------------------------" "----------------------------------------------------------+") print("| {0} | {1} | {2} | {3} | | {4} " "| {5} | {6} | {7:d} | {8:d} | " + "{9} | |".format( versionStr, major, minor, micro, endian, bpversion, activeStr, WriterCount, aggregatorcount, iscolumnmajor)) print("-----------------------------------------------------------" "-----------------------------------------------------------") return [status, WriterCount] if __name__ == "__main__": print("ERROR: Utility main program is bp5dbg.py")
local_value_dim = 18446744073709551613 data_types = {-1: 'unknown', 0: 'byte', 1: 'short', 2: 'integer', 4: 'long', 50: 'unsigned_byte', 51: 'unsigned_short', 52: 'unsigned_integer', 54: 'unsigned_long', 5: 'real', 6: 'double', 7: 'long_double', 9: 'string', 10: 'complex', 11: 'double_complex', 12: 'string_array', 55: 'char'} data_type_size = {-1: 0, 0: 1, 1: 2, 2: 4, 4: 8, 50: 1, 51: 2, 52: 4, 54: 8, 5: 4, 6: 8, 7: 16, 9: 0, 10: 8, 11: 16, 12: 0, 55: 1} def get_type_name(typeID): name = dataTypes.get(typeID) if name is None: name = 'unknown type' return name def get_type_size(typeID): size = dataTypeSize.get(typeID) if size is None: size = 0 return size characteristic_names = {0: 'value', 1: 'min', 2: 'max', 3: 'offset', 4: 'dimensions', 5: 'var_id', 6: 'payload_offset', 7: 'file_index', 8: 'time_index', 9: 'bitmap', 10: 'stat', 11: 'transform_type', 12: 'minmax'} def get_characteristic_name(cID): name = CharacteristicNames.get(cID) if name is None: name = 'unknown characteristic' return name def get_characteristic_data_length(cID, typeID): name = CharacteristicNames.get(cID) if name == 'value' or name == 'min' or name == 'max' or (name == 'minmax'): return dataTypeSize[typeID] elif name == 'offset' or name == 'payload_offset': return 8 elif name == 'file_index' or name == 'time_index': return 4 else: return 0 def read_header(f, fileSize, fileType): status = True if fileSize < 64: print('ERROR: Invalid ' + fileType + '. File is smaller than the header (64 bytes)') return False header = f.read(64) h_str = header.decode('ascii') version_str = hStr[0:32].replace('\x00', ' ') major = hStr[32] minor = hStr[33] micro = hStr[34] endian_value = header[36] if endianValue == 0: endian = 'yes' elif endianValue == 1: endian = ' no' else: print('ERROR: byte 28 must be 0 or 1 to indicate endianness of the data. It is however {0} in this file'.format(endianValue)) status = False bpversion = int(header[37]) active = int(header[38]) if active == 0: active_str = ' no' else: active_str = 'yes' writer_count = int(header[40]) aggregatorcount = int(header[44]) iscolumnmajor = header[49] print('----------------------------------------------------------------------------------------------------------------------') print('| Version string | Major | Minor | Patch | unused | Endian | BP version | Active | WriterCount | AggCount' + ' | ColumnMajor | unused |') print('| 32 bytes | 1B | 1B | 1B | 1B | 1B | 1B | 1B | 4b | 4b ' + '| 1b | 16B |') print('+--------------------------------------------------------------------------------------------------------------------+') print('| {0} | {1} | {2} | {3} | | {4} | {5} | {6} | {7:d} | {8:d} | ' + '{9} | |'.format(versionStr, major, minor, micro, endian, bpversion, activeStr, WriterCount, aggregatorcount, iscolumnmajor)) print('----------------------------------------------------------------------------------------------------------------------') return [status, WriterCount] if __name__ == '__main__': print('ERROR: Utility main program is bp5dbg.py')
list1 = [3, 4, 51, 90.1, False, 'Amresh', 7] # index = 0 # for i in list1: # print (f'index: {index}, Value: {i}') # index += 1 for index, item in enumerate(list1): print (f'index: {index}, Value: {item}')
list1 = [3, 4, 51, 90.1, False, 'Amresh', 7] for (index, item) in enumerate(list1): print(f'index: {index}, Value: {item}')
class Params(object): def __init__(self , data_path='faces/dataset/' , artifacts_path='faces/artifacts/' , models_path='/User/mlrun/demos/faces/notebooks/functions/models.py' , frames_url='framesd:8081' , token='set_token' , encodings_path='faces/encodings/' , container='users' ): self.data_path = data_path self.artifacts_path = artifacts_path self.models_path = models_path self.frames_url = frames_url self.token = token self.encodings_path = encodings_path self.container = container def set_params_from_context(self, context): context.logger.info("setting context params") attrs = vars(self) for attr in attrs: if attr in context.parameters: setattr(self, attr, context.parameters[attr]) attrs = vars(self) context.logger.info(attrs)
class Params(object): def __init__(self, data_path='faces/dataset/', artifacts_path='faces/artifacts/', models_path='/User/mlrun/demos/faces/notebooks/functions/models.py', frames_url='framesd:8081', token='set_token', encodings_path='faces/encodings/', container='users'): self.data_path = data_path self.artifacts_path = artifacts_path self.models_path = models_path self.frames_url = frames_url self.token = token self.encodings_path = encodings_path self.container = container def set_params_from_context(self, context): context.logger.info('setting context params') attrs = vars(self) for attr in attrs: if attr in context.parameters: setattr(self, attr, context.parameters[attr]) attrs = vars(self) context.logger.info(attrs)
''' Created on 15.02.2017 @author: emillokal ''' measure0=0 measure1=0
""" Created on 15.02.2017 @author: emillokal """ measure0 = 0 measure1 = 0
# Link to the problem: https://www.codechef.com/MARCH18B/problems/MIXCOLOR def main(): T = int(input()) while T: T -= 1 _ = int(input()) occr = {} colors = list(map(int, input().split())) for i in colors: occr[i] = 0 for val in colors: occr[val] += 1 ans = 0 for _, v in occr.items(): ans += (v - 1) print(ans) if __name__ == "__main__": main()
def main(): t = int(input()) while T: t -= 1 _ = int(input()) occr = {} colors = list(map(int, input().split())) for i in colors: occr[i] = 0 for val in colors: occr[val] += 1 ans = 0 for (_, v) in occr.items(): ans += v - 1 print(ans) if __name__ == '__main__': main()
# File where I wrote functions that helped parse and make changes to multiple lines of code def read_source_file(name: str)->str: f = open(name) s = f.read() f.close() return s def save_as_new(text: str): f = open('./new.py', mode='w') f.write(text) f.close() def find_brace_close_position(text: str, brace_start: int)->int: scope_level = 1 position = brace_start + 1 while scope_level > 0: char = text[position] if char == ')': scope_level -= 1 if scope_level == 0: return position elif char == '(': scope_level += 1 position += 1 return position test_fstring_convert = 'self.API_url + \'/webhooks/\' + str(webhook_id) + \'/\' + str(webhook_token)' def replace_string_cat_to_fstring(source_code: str): code_fragments = [] current_pos = 0 for i, j in find_url_calls(source_code): code_fragments.append(source_code[current_pos:i+1]) code_fragments.append(string_cat_to_fstring(source_code[i+1:j])) current_pos = j code_fragments.append(source_code[current_pos:]) new_source = '' for s in code_fragments: new_source += s return new_source def find_url_calls(original_text: str): start_pos = 0 end_pos = 0 while True: start_pos = original_text.find('return self.', end_pos) if start_pos < 0: break if original_text[start_pos+12] == '_': end_pos = start_pos + 1 continue start_pos = original_text.find('(', start_pos) closing_brace = find_brace_close_position(original_text, start_pos) next_comma = original_text.find(',', start_pos) if next_comma < 0 or closing_brace < next_comma: end_pos = closing_brace else: end_pos = next_comma yield start_pos, end_pos def string_cat_to_fstring(original_str: str)->str: tokens = original_str.split('+') new_string = 'f\'' for t in tokens: if '\'' in t: # string new_string += t.strip().strip('\'') else: # value new_t = str(t).strip() if 'str(' in t: new_string += '{' + f'{new_t[4:-1]}' + '}' else: new_string += '{' + f'{new_t}' + '}' return new_string + '\'' def discordrest_to_discordbot_translate(discordrest_source_code: str): function_declarations = (x for x in fetch_function_declaration_and_args(discordrest_source_code)) new_functions = [] for f in function_declarations: new_string = f + '->dict:\n' new_string += 'response = self.discord_session(' + function_get_arguments_string(f) + ')\n' new_string += 'response.raise_for_status()\n' new_string += 'return response.json()' new_functions.append(new_string) new_source = '' for i in new_functions: new_source += i + '\n' return new_source def function_get_arguments_string(function_declaration: str)->str: comma_split = function_declaration.split(',')[1:] new_string = '' for s in comma_split: double_dot_pos = s.find(':') new_string += s[:double_dot_pos].strip() + ', ' return new_string def fetch_function_declaration_and_args(original_str: str): start_pos = 0 end_pos = 0 while True: start_pos = original_str.find(' def ', end_pos) if start_pos <= 0: break openning_brace = original_str.find('(', start_pos) closing_brace = find_brace_close_position(original_str, openning_brace) end_pos = closing_brace yield original_str[start_pos:closing_brace+1]
def read_source_file(name: str) -> str: f = open(name) s = f.read() f.close() return s def save_as_new(text: str): f = open('./new.py', mode='w') f.write(text) f.close() def find_brace_close_position(text: str, brace_start: int) -> int: scope_level = 1 position = brace_start + 1 while scope_level > 0: char = text[position] if char == ')': scope_level -= 1 if scope_level == 0: return position elif char == '(': scope_level += 1 position += 1 return position test_fstring_convert = "self.API_url + '/webhooks/' + str(webhook_id) + '/' + str(webhook_token)" def replace_string_cat_to_fstring(source_code: str): code_fragments = [] current_pos = 0 for (i, j) in find_url_calls(source_code): code_fragments.append(source_code[current_pos:i + 1]) code_fragments.append(string_cat_to_fstring(source_code[i + 1:j])) current_pos = j code_fragments.append(source_code[current_pos:]) new_source = '' for s in code_fragments: new_source += s return new_source def find_url_calls(original_text: str): start_pos = 0 end_pos = 0 while True: start_pos = original_text.find('return self.', end_pos) if start_pos < 0: break if original_text[start_pos + 12] == '_': end_pos = start_pos + 1 continue start_pos = original_text.find('(', start_pos) closing_brace = find_brace_close_position(original_text, start_pos) next_comma = original_text.find(',', start_pos) if next_comma < 0 or closing_brace < next_comma: end_pos = closing_brace else: end_pos = next_comma yield (start_pos, end_pos) def string_cat_to_fstring(original_str: str) -> str: tokens = original_str.split('+') new_string = "f'" for t in tokens: if "'" in t: new_string += t.strip().strip("'") else: new_t = str(t).strip() if 'str(' in t: new_string += '{' + f'{new_t[4:-1]}' + '}' else: new_string += '{' + f'{new_t}' + '}' return new_string + "'" def discordrest_to_discordbot_translate(discordrest_source_code: str): function_declarations = (x for x in fetch_function_declaration_and_args(discordrest_source_code)) new_functions = [] for f in function_declarations: new_string = f + '->dict:\n' new_string += 'response = self.discord_session(' + function_get_arguments_string(f) + ')\n' new_string += 'response.raise_for_status()\n' new_string += 'return response.json()' new_functions.append(new_string) new_source = '' for i in new_functions: new_source += i + '\n' return new_source def function_get_arguments_string(function_declaration: str) -> str: comma_split = function_declaration.split(',')[1:] new_string = '' for s in comma_split: double_dot_pos = s.find(':') new_string += s[:double_dot_pos].strip() + ', ' return new_string def fetch_function_declaration_and_args(original_str: str): start_pos = 0 end_pos = 0 while True: start_pos = original_str.find(' def ', end_pos) if start_pos <= 0: break openning_brace = original_str.find('(', start_pos) closing_brace = find_brace_close_position(original_str, openning_brace) end_pos = closing_brace yield original_str[start_pos:closing_brace + 1]
# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. def check_c_count(expected_count): test.assertEqual(expected_count, len(reality.resources_by_logical_name('C'))) example_template = Template({ 'A': RsrcDef({'a': 'initial'}, []), 'B': RsrcDef({}, []), 'C': RsrcDef({'!a': GetAtt('A', 'a')}, ['B']), 'D': RsrcDef({'c': GetRes('C')}, []), 'E': RsrcDef({'ca': GetAtt('C', '!a')}, []), }) engine.create_stack('foo', example_template) engine.noop(5) engine.call(verify, example_template) example_template_shrunk = Template({ 'A': RsrcDef({'a': 'updated'}, []), 'B': RsrcDef({}, []), 'C': RsrcDef({'!a': GetAtt('A', 'a')}, ['B']), 'D': RsrcDef({'c': GetRes('C')}, []), 'E': RsrcDef({'ca': GetAtt('C', '!a')}, []), }) engine.update_stack('foo', example_template_shrunk) engine.noop(7) example_template_long = Template({ 'A': RsrcDef({'a': 'updated'}, []), 'B': RsrcDef({}, []), 'C': RsrcDef({'!a': GetAtt('A', 'a')}, ['B']), 'D': RsrcDef({'c': GetRes('C')}, []), 'E': RsrcDef({'ca': GetAtt('C', '!a')}, []), 'F': RsrcDef({}, ['D', 'E']), }) engine.update_stack('foo', example_template_long) engine.call(check_c_count, 2) engine.noop(11) engine.call(verify, example_template_long) engine.delete_stack('foo') engine.noop(12) engine.call(verify, Template({}))
def check_c_count(expected_count): test.assertEqual(expected_count, len(reality.resources_by_logical_name('C'))) example_template = template({'A': rsrc_def({'a': 'initial'}, []), 'B': rsrc_def({}, []), 'C': rsrc_def({'!a': get_att('A', 'a')}, ['B']), 'D': rsrc_def({'c': get_res('C')}, []), 'E': rsrc_def({'ca': get_att('C', '!a')}, [])}) engine.create_stack('foo', example_template) engine.noop(5) engine.call(verify, example_template) example_template_shrunk = template({'A': rsrc_def({'a': 'updated'}, []), 'B': rsrc_def({}, []), 'C': rsrc_def({'!a': get_att('A', 'a')}, ['B']), 'D': rsrc_def({'c': get_res('C')}, []), 'E': rsrc_def({'ca': get_att('C', '!a')}, [])}) engine.update_stack('foo', example_template_shrunk) engine.noop(7) example_template_long = template({'A': rsrc_def({'a': 'updated'}, []), 'B': rsrc_def({}, []), 'C': rsrc_def({'!a': get_att('A', 'a')}, ['B']), 'D': rsrc_def({'c': get_res('C')}, []), 'E': rsrc_def({'ca': get_att('C', '!a')}, []), 'F': rsrc_def({}, ['D', 'E'])}) engine.update_stack('foo', example_template_long) engine.call(check_c_count, 2) engine.noop(11) engine.call(verify, example_template_long) engine.delete_stack('foo') engine.noop(12) engine.call(verify, template({}))
class Immutable(type): def __new__(msc, name, bases, nmspc): new_class = type(name, bases, nmspc) original_initialization = new_class.__init__ def set_attribute(self, key, value): raise AttributeError("Attributes are immutable") def wrapper(self, *args, **kwargs): new_class.__setattr__ = object.__setattr__ original_initialization(self, *args, **kwargs) new_class.__setattr__ = set_attribute new_class.__init__ = wrapper return new_class def create_cached_factory(factory, id_builder): cache = {} def create(point): _id = id_builder(point) try: return cache[_id] except KeyError: return cache.setdefault(_id, factory(point)) return create
class Immutable(type): def __new__(msc, name, bases, nmspc): new_class = type(name, bases, nmspc) original_initialization = new_class.__init__ def set_attribute(self, key, value): raise attribute_error('Attributes are immutable') def wrapper(self, *args, **kwargs): new_class.__setattr__ = object.__setattr__ original_initialization(self, *args, **kwargs) new_class.__setattr__ = set_attribute new_class.__init__ = wrapper return new_class def create_cached_factory(factory, id_builder): cache = {} def create(point): _id = id_builder(point) try: return cache[_id] except KeyError: return cache.setdefault(_id, factory(point)) return create
class CleanPhoneNumber(object): def __init__(self, phone_number): self.phone_number = phone_number def sanitize_phone_number(self): phone_number = self.phone_number phone = list(phone_number) prefix = phone[0] length = len(phone_number) if prefix == '+' and length == 13: phone[0] = '' return "".join(phone) if prefix == '0' and length == 10: phone[0] = '254' return "".join(phone) elif prefix == '2' and length == 12: return str(phone_number) elif length < 10: return '' else: return ''
class Cleanphonenumber(object): def __init__(self, phone_number): self.phone_number = phone_number def sanitize_phone_number(self): phone_number = self.phone_number phone = list(phone_number) prefix = phone[0] length = len(phone_number) if prefix == '+' and length == 13: phone[0] = '' return ''.join(phone) if prefix == '0' and length == 10: phone[0] = '254' return ''.join(phone) elif prefix == '2' and length == 12: return str(phone_number) elif length < 10: return '' else: return ''
# List of guide files to search guides = ['analytics_guide.md','angular_guide.md','api_guide.md','authentication_guide.md','cache_guide.md','hub_guide.md','i18n_guide.md','interactions_guide.md','logger_guide.md','pub_sub_guide.md','push_notifications_setup.md','service_workers_guide.md','storage_guide.md'] # Start of file path - CHANGE FOR GITHUB filestart = '../docs/media/' # Opens snippet file snippets = open('snippets/auto.code-snippets','w') # Opens documentation file docs = open('auto_snippet_documentation.md','w') # Starts writing files docs.write('# Automatically Generated Snippet Documentation\n') snippets.write('{\n') # Loops through all guide pages for guide in guides: snippet_index = 1 # counts number of snippets in each section for snippet naming _guide_index = guide.find('_guide') title = guide[:_guide_index] # gets doc title for snippet naming # Read doc file and separate into lines f = open(filestart + guide,'r') lines = f.readlines() f.close() line_index = 0 # index for which line is being used while line_index < len(lines): # Finds most recent header heading = title.title() if lines[line_index][0] == '#': snippet_index = 1 line = lines[line_index] for char_index in range(len(line)): if line[char_index].isalpha(): header = line[char_index:len(line)-1].title() break # Finds start of javascript codeblock languages = ['js', 'typescript', 'json'] for language in languages: if lines[line_index].strip() == '```' + language: # Adds beginning snippet formatting to doc file and snippet file snippet_number = '' if snippet_index == 1 else (' ' + str(snippet_index)) docs.write('##### prefix: ```Amplify ' + header + snippet_number + '```\n```' + language + '\n') snippets.write(' "Amplify ' + title.title() + ' ' + header + snippet_number + '": {\n') snippets.write(' "prefix": "Amplify ' + header + snippet_number + '",\n') if language == 'js': snippets.write(' "scope": "javascript,javascriptreact",\n') else: snippets.write(' "scope": "' + language + '",\n') snippets.write(' "body": [\n') line_index += 1 # increment line index # Adds lines to snippet while lines[line_index].strip() != '```': # executes until end of code block docs.write(lines[line_index]) # writes line directly to doc line_str = ' "' # Adds \t's to snippet space_count = 0 for char in lines[line_index]: if char == ' ': space_count += 1 else: line_str += '\\t'*int(space_count/4) lines[line_index] = lines[line_index][space_count:] break # Checks for special characters and adds line to snippet for char in lines[line_index]: if char == '"': line_str += '\\"' elif char == "$": line_str += '\\\$' elif char == '\n': pass else: line_str += char line_str += '",' snippets.write(line_str + '\n') line_index += 1 # increment line index # Close snippet and doc line docs.write('```\n') snippets.write(' ]\n') snippets.write(' },\n') snippet_index += 1 line_index += 1 # increment line index # Close snippet file and doc file snippets.write('}') snippets.close() docs.close()
guides = ['analytics_guide.md', 'angular_guide.md', 'api_guide.md', 'authentication_guide.md', 'cache_guide.md', 'hub_guide.md', 'i18n_guide.md', 'interactions_guide.md', 'logger_guide.md', 'pub_sub_guide.md', 'push_notifications_setup.md', 'service_workers_guide.md', 'storage_guide.md'] filestart = '../docs/media/' snippets = open('snippets/auto.code-snippets', 'w') docs = open('auto_snippet_documentation.md', 'w') docs.write('# Automatically Generated Snippet Documentation\n') snippets.write('{\n') for guide in guides: snippet_index = 1 _guide_index = guide.find('_guide') title = guide[:_guide_index] f = open(filestart + guide, 'r') lines = f.readlines() f.close() line_index = 0 while line_index < len(lines): heading = title.title() if lines[line_index][0] == '#': snippet_index = 1 line = lines[line_index] for char_index in range(len(line)): if line[char_index].isalpha(): header = line[char_index:len(line) - 1].title() break languages = ['js', 'typescript', 'json'] for language in languages: if lines[line_index].strip() == '```' + language: snippet_number = '' if snippet_index == 1 else ' ' + str(snippet_index) docs.write('##### prefix: ```Amplify ' + header + snippet_number + '```\n```' + language + '\n') snippets.write(' "Amplify ' + title.title() + ' ' + header + snippet_number + '": {\n') snippets.write(' "prefix": "Amplify ' + header + snippet_number + '",\n') if language == 'js': snippets.write(' "scope": "javascript,javascriptreact",\n') else: snippets.write(' "scope": "' + language + '",\n') snippets.write(' "body": [\n') line_index += 1 while lines[line_index].strip() != '```': docs.write(lines[line_index]) line_str = ' "' space_count = 0 for char in lines[line_index]: if char == ' ': space_count += 1 else: line_str += '\\t' * int(space_count / 4) lines[line_index] = lines[line_index][space_count:] break for char in lines[line_index]: if char == '"': line_str += '\\"' elif char == '$': line_str += '\\\\$' elif char == '\n': pass else: line_str += char line_str += '",' snippets.write(line_str + '\n') line_index += 1 docs.write('```\n') snippets.write(' ]\n') snippets.write(' },\n') snippet_index += 1 line_index += 1 snippets.write('}') snippets.close() docs.close()
x = 9 y = 3 # Arithmetic Operators print(x+y) #Addition print(x-y) #Subtraction print(x*y) #Multiplication print(x/y) #Division print(x%y) #Modulus print(x**y) #Exponantiation x = 9.191823 print(x//y) #Floor Division #Assignment Operators x = 9 # set x = 9 x += 3 # x = x + 3 print(x) x = 9 x -= 3 # x = x - 3 print(x) x *= 3 # x = x * 3 print(x) x /= 3 # x = x / 3 print(x) x **=3 # x = x ** 3 print(x) # Comparison Operators x = 9 y = 3 print(x==y) # True if x equals y, False otherwise print(x!=y) # True if x does not equal y, False otherwise print(x>y) # True if x is greater than y, False otherwise print(x<y) # True if x is less than y, False otherwise print(x>=y) # True if x greater than/equal to y, False othewrise print(x<=y) # True if x is less than/equal to y, False otherwise
x = 9 y = 3 print(x + y) print(x - y) print(x * y) print(x / y) print(x % y) print(x ** y) x = 9.191823 print(x // y) x = 9 x += 3 print(x) x = 9 x -= 3 print(x) x *= 3 print(x) x /= 3 print(x) x **= 3 print(x) x = 9 y = 3 print(x == y) print(x != y) print(x > y) print(x < y) print(x >= y) print(x <= y)
#!/usr/bin/env python # -*- coding: utf-8 -*- # # File Name: Problem_3.py # Project Name: WebLearn # Author: Benjamin Zhang # Created Time: 2019-01-12 21:45 # Version: 0.0.1.20190112 # # Copyright (c) Benjamin Zhang 2019 # All rights reserved. # name = ["Adam", "Seth", "Enosh", "Kenan", "Mahalalel", "Jared", "Enoch", "Methuselah", "Lamech", "Noah", "Shem", "Ham", "Japheth" ] age = [930, 912, 905, 910, 895, 962, 365, 969, 777, 0, 0, 0, 0] def find_seniority(string): for i in range(0, len(age)): if name[i] == string: return 10 if i > 9 else i return -1 def is_ancestor(str1, str2): if find_seniority(str1) != -1 and find_seniority(str2) != -1: return 1 if find_seniority(str1) < find_seniority(str2) else 2 else: return 0 def compare_age(str1, str2): index1 = find_seniority(str1) index2 = find_seniority(str2) if age[index1] != 0 and age[index2] != 0: return 1 if age[index1] > age[index2] else 2 else: return 0 if __name__ == '__main__': while True: try: input_str = input() name1 = input_str.split(' ')[0] name2 = input_str.split(' ')[1] x = is_ancestor(name1, name2) if x == 0: print("No enough information") elif x == 1: print("Yes") elif x == 2: print("No") else: print("ERROR") x = compare_age(name1, name2) if x == 0: print("No enough information") elif x == 1: print("Yes") elif x == 2: print("No") else: print("ERROR") except: break
name = ['Adam', 'Seth', 'Enosh', 'Kenan', 'Mahalalel', 'Jared', 'Enoch', 'Methuselah', 'Lamech', 'Noah', 'Shem', 'Ham', 'Japheth'] age = [930, 912, 905, 910, 895, 962, 365, 969, 777, 0, 0, 0, 0] def find_seniority(string): for i in range(0, len(age)): if name[i] == string: return 10 if i > 9 else i return -1 def is_ancestor(str1, str2): if find_seniority(str1) != -1 and find_seniority(str2) != -1: return 1 if find_seniority(str1) < find_seniority(str2) else 2 else: return 0 def compare_age(str1, str2): index1 = find_seniority(str1) index2 = find_seniority(str2) if age[index1] != 0 and age[index2] != 0: return 1 if age[index1] > age[index2] else 2 else: return 0 if __name__ == '__main__': while True: try: input_str = input() name1 = input_str.split(' ')[0] name2 = input_str.split(' ')[1] x = is_ancestor(name1, name2) if x == 0: print('No enough information') elif x == 1: print('Yes') elif x == 2: print('No') else: print('ERROR') x = compare_age(name1, name2) if x == 0: print('No enough information') elif x == 1: print('Yes') elif x == 2: print('No') else: print('ERROR') except: break
infile = open("./local_models/time-all.normalized","r") outfile = open("./clustering/initial.dat","w") listoflists = [] for line in infile: listoflists.append(line.strip().split()) numtopics = len(listoflists[0])-1 numwords = len(listoflists) for topic in range(1,numtopics+1): #fancy indexing because words are still there outfile.write(str(topic)+' ') for word in range(numwords): outfile.write(listoflists[word][topic]+' ') outfile.write('\n') infile.close() outfile.close()
infile = open('./local_models/time-all.normalized', 'r') outfile = open('./clustering/initial.dat', 'w') listoflists = [] for line in infile: listoflists.append(line.strip().split()) numtopics = len(listoflists[0]) - 1 numwords = len(listoflists) for topic in range(1, numtopics + 1): outfile.write(str(topic) + ' ') for word in range(numwords): outfile.write(listoflists[word][topic] + ' ') outfile.write('\n') infile.close() outfile.close()
def check_ip_byte(string, i, chars_left, ip, dot='exist'): index, result = i + 1, 'fail' if len(string) - i >= chars_left: n = string[i] if n.isdigit(): i += 1 while n.isdigit(): if i < len(string): if string[i].isdigit(): n += string[i] i += 1 else: i -= 1 break else: i -= 1 break index = i + 1 if int(n) > 255: return result, index, ip elif len(n) > 3: return result, index, ip elif dot == 'skip': ip += n return 'ok', index, ip elif index < len(string): if string[index] == '.': ip += n + '.' index += 1 return 'ok', index, ip return result, index, ip def ip_lookup(string): if len(string) > 6: i = 0 while i < len(string): ip = '' for c in [7, 5, 3]: result, i, ip = check_ip_byte(string, i, c, ip) if result != 'ok': break if result == 'ok': result, i, ip = check_ip_byte(string, i, 1, ip, dot='skip') if result == 'ok': ip = ip.split('.') for i in range(len(ip)): while len(ip[i]) > 1: if ip[i].startswith('0'): ip[i] = ip[i][1:] else: break return 'ip found: {}.{}.{}.{}'.format(ip[0], ip[1], ip[2], ip[3]) return 'ip not found' else: return 'ip not found' if '__main__' == __name__: # test the function print(ip_lookup('ffff 00.30.1.4441 and stay home')) print(ip_lookup('ffff 0000.30.1.41 and stay home')) print(ip_lookup('ffff 300.30.1.44 and stay home')) print(ip_lookup('0000.300.0001.4441 and stay home')) print(ip_lookup('080.30.1.4441')) print(ip_lookup('00.3y0.1.1')) print(ip_lookup('00.30.1.44d41')) print(ip_lookup('00.30.1.4441')) print(ip_lookup('00.30.1.')) print(ip_lookup('00630616441')) print(ip_lookup('0.0.0.0')) print(ip_lookup('67.78.11.24/30')) print(ip_lookup('192.168.0.1'))
def check_ip_byte(string, i, chars_left, ip, dot='exist'): (index, result) = (i + 1, 'fail') if len(string) - i >= chars_left: n = string[i] if n.isdigit(): i += 1 while n.isdigit(): if i < len(string): if string[i].isdigit(): n += string[i] i += 1 else: i -= 1 break else: i -= 1 break index = i + 1 if int(n) > 255: return (result, index, ip) elif len(n) > 3: return (result, index, ip) elif dot == 'skip': ip += n return ('ok', index, ip) elif index < len(string): if string[index] == '.': ip += n + '.' index += 1 return ('ok', index, ip) return (result, index, ip) def ip_lookup(string): if len(string) > 6: i = 0 while i < len(string): ip = '' for c in [7, 5, 3]: (result, i, ip) = check_ip_byte(string, i, c, ip) if result != 'ok': break if result == 'ok': (result, i, ip) = check_ip_byte(string, i, 1, ip, dot='skip') if result == 'ok': ip = ip.split('.') for i in range(len(ip)): while len(ip[i]) > 1: if ip[i].startswith('0'): ip[i] = ip[i][1:] else: break return 'ip found: {}.{}.{}.{}'.format(ip[0], ip[1], ip[2], ip[3]) return 'ip not found' else: return 'ip not found' if '__main__' == __name__: print(ip_lookup('ffff 00.30.1.4441 and stay home')) print(ip_lookup('ffff 0000.30.1.41 and stay home')) print(ip_lookup('ffff 300.30.1.44 and stay home')) print(ip_lookup('0000.300.0001.4441 and stay home')) print(ip_lookup('080.30.1.4441')) print(ip_lookup('00.3y0.1.1')) print(ip_lookup('00.30.1.44d41')) print(ip_lookup('00.30.1.4441')) print(ip_lookup('00.30.1.')) print(ip_lookup('00630616441')) print(ip_lookup('0.0.0.0')) print(ip_lookup('67.78.11.24/30')) print(ip_lookup('192.168.0.1'))
class Solution: def findJudge(self, N: int, trust) -> int: helper = [set() for i in range(N)] for i, n in enumerate(trust): helper[n[0] - 1].add(n[1]) for i in range(N): if len(helper[i]) != 0: continue is_major = True for j, n in enumerate(helper): if j == i: continue else: if i + 1 not in n: is_major = False if is_major: return i + 1 return -1 slu = Solution() print(slu.findJudge(1, []))
class Solution: def find_judge(self, N: int, trust) -> int: helper = [set() for i in range(N)] for (i, n) in enumerate(trust): helper[n[0] - 1].add(n[1]) for i in range(N): if len(helper[i]) != 0: continue is_major = True for (j, n) in enumerate(helper): if j == i: continue elif i + 1 not in n: is_major = False if is_major: return i + 1 return -1 slu = solution() print(slu.findJudge(1, []))
i = 0 for i in range(0, 100): if i % 2 == 0: print(i) i+= i
i = 0 for i in range(0, 100): if i % 2 == 0: print(i) i += i
class componente: def equip(self): pass class CharacterConcreteComponent(componente): def __init__(self, name: str): self.name = name self.p1 = '' def e2(x): def a2(self): return f"{self.name} equipment:"+ x(self) return a2 @e2 def equip(self): return " Empty" e2 = staticmethod(e2) class ArmorConcreteDecorator(): def __init__(self, character): self.character = character self.name = character.name self.a="\nArmor: Yes" @CharacterConcreteComponent.e2 def equip(self): return self.character.a class SwordConcreteDecorator(): def __init__(self, character): self.character = character self.name = character.name self.a="\nSword: Yes" @CharacterConcreteComponent.e2 def equip(self): return self.character.a if __name__ == "__main__": main()
class Componente: def equip(self): pass class Characterconcretecomponent(componente): def __init__(self, name: str): self.name = name self.p1 = '' def e2(x): def a2(self): return f'{self.name} equipment:' + x(self) return a2 @e2 def equip(self): return ' Empty' e2 = staticmethod(e2) class Armorconcretedecorator: def __init__(self, character): self.character = character self.name = character.name self.a = '\nArmor: Yes' @CharacterConcreteComponent.e2 def equip(self): return self.character.a class Swordconcretedecorator: def __init__(self, character): self.character = character self.name = character.name self.a = '\nSword: Yes' @CharacterConcreteComponent.e2 def equip(self): return self.character.a if __name__ == '__main__': main()
class Meta(dict): def __getattr__(self, name): try: return self[name] except KeyError: raise AttributeError(name) def __setattr__(self, name, value): self[name] = value def bind(self, name, func): setattr(self.__class__, name, func)
class Meta(dict): def __getattr__(self, name): try: return self[name] except KeyError: raise attribute_error(name) def __setattr__(self, name, value): self[name] = value def bind(self, name, func): setattr(self.__class__, name, func)
# Rain_Water_Trapping def trappedWater(a, size) : # left[i] stores height of tallest bar to the to left of it including itself left = [0] * size # Right [i] stores height of tallest bar to the to right of it including itself right = [0] * size # Initialize result waterVolume = 0 # filling left (list/array) left[0] = a[0] for i in range( 1, size): left[i] = max(left[i-1], a[i]) # filling right (list/array) right[size - 1] = a[size - 1] for i in range(size - 2, - 1, - 1): right[i] = max(right[i + 1], a[i]); # Calculating volume of the accumulated water element by element for i in range(0, size): waterVolume += min(left[i],right[i]) - a[i] return waterVolume # main program arr =[] n = int(input()) #input the number of towers for i in range(n): arr.append(int(input())) #storing length of each tower in array print("Maximum water that can be accumulated is ", trappedWater(arr, len(arr))) #Input: #12 #0 #1 #0 #2 #1 #0 #1 #3 #2 #1 #2 #1 #Output: #The maximum water trapped is 6
def trapped_water(a, size): left = [0] * size right = [0] * size water_volume = 0 left[0] = a[0] for i in range(1, size): left[i] = max(left[i - 1], a[i]) right[size - 1] = a[size - 1] for i in range(size - 2, -1, -1): right[i] = max(right[i + 1], a[i]) for i in range(0, size): water_volume += min(left[i], right[i]) - a[i] return waterVolume arr = [] n = int(input()) for i in range(n): arr.append(int(input())) print('Maximum water that can be accumulated is ', trapped_water(arr, len(arr)))
# -*- coding: utf-8 -*- BOT_NAME = 'spider' SPIDER_MODULES = ['spiders'] NEWSPIDER_MODULE = 'spiders' ROBOTSTXT_OBEY = False # change cookie to yours #DEFAULT_REQUEST_HEADERS = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36', # 'Cookie': '_T_WM=da71ffa6f7f128ab6e63ff072db80606; SUB=_2A25MgTTBDeRhGeNM6VcX-SrJzjuIHXVvilyJrDV6PUJbkdCOLVTYkW1NTiDEuIdSD9l1__cJQlNUYbZ4BsuX91QV; SCF=ArQVOs0FURqY19hrE2SGFtDk0PfOPJD71jGtPZEhGoMerq3Jyz0ms7PhXAicNQP5JhFT0hT_ob82BdBsVsFhPqQ.'} #DEFAULT_REQUEST_HEADERS = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36', # 'Cookie': '_T_WM=da71ffa6f7f128ab6e63ff072db80606; WEIBOCN_WM=3349; H5_wentry=H5; backURL=https://passport.sina.cn/; SCF=AttQRDsHb-v6zLir9qtBBIcTXn7d8govOhlAKcT5G1UlfGLJhNrUUBoiFaKjAC6uuVuYVfXwsVdGZ_VtZvnix3U.; SUB=_2A25MgY_MDeRhGeFJ6lsU-S3Fyz6IHXVvjRGErDV6PUJbktB-LW-hkW1NfG6bOCX7HXjOi2Gx6DFCp9WcM_KeXwm5; SUBP=0033WrSXqPxfM725Ws9jqgMF55529P9D9W5oMQfn.VKjspLb_QEWee-55NHD95QNS024SK.01K5EWs4Dqcjbi--NiK.Xi-2Ri--ciKnRi-zNSo2NeKq01hnfe8Yp1Kn41Btt; SSOLoginState=1636171676'} DEFAULT_REQUEST_HEADERS = { 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:61.0) Gecko/20100101 Firefox/61.0', 'Cookie': 'SUB=_2A25MjPT-DeRhGeNM6VcX-SrJzjuIHXVvjpy2rDV6PUJbkdCOLXXzkW1NTiDEuD0Z5qOTeRYpEH6ri8UgbU8C2_bx; SCF=AgEgIi410kgB0i8ZKO3fV-JkJImn736dfQ2fqzzPo5Yk01kdssguluICunFk4fn-C17je7gI48nOuzj4fqGDOmw.; _T_WM=83c8645da16d0fd33b61ddaaecbf1be1' } CONCURRENT_REQUESTS = 16 DOWNLOAD_DELAY = 0.5 DOWNLOADER_MIDDLEWARES = { 'scrapy.downloadermiddlewares.cookies.CookiesMiddleware': None, 'scrapy.downloadermiddlewares.redirect.RedirectMiddleware': None, 'middlewares.IPProxyMiddleware': 100, 'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware': 101, } ITEM_PIPELINES = { 'pipelines.MongoDBPipeline': 300, } MONGO_HOST = '127.0.0.1' MONGO_PORT = 27017
bot_name = 'spider' spider_modules = ['spiders'] newspider_module = 'spiders' robotstxt_obey = False default_request_headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:61.0) Gecko/20100101 Firefox/61.0', 'Cookie': 'SUB=_2A25MjPT-DeRhGeNM6VcX-SrJzjuIHXVvjpy2rDV6PUJbkdCOLXXzkW1NTiDEuD0Z5qOTeRYpEH6ri8UgbU8C2_bx; SCF=AgEgIi410kgB0i8ZKO3fV-JkJImn736dfQ2fqzzPo5Yk01kdssguluICunFk4fn-C17je7gI48nOuzj4fqGDOmw.; _T_WM=83c8645da16d0fd33b61ddaaecbf1be1'} concurrent_requests = 16 download_delay = 0.5 downloader_middlewares = {'scrapy.downloadermiddlewares.cookies.CookiesMiddleware': None, 'scrapy.downloadermiddlewares.redirect.RedirectMiddleware': None, 'middlewares.IPProxyMiddleware': 100, 'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware': 101} item_pipelines = {'pipelines.MongoDBPipeline': 300} mongo_host = '127.0.0.1' mongo_port = 27017
#Function to remove a given word from a list and strip it at the same time. def remove_and_split(string, word): newStr = string.replace(word, "") return newStr.strip() this = " Root is a Computer " n = remove_and_split(this, "Root") print(n)
def remove_and_split(string, word): new_str = string.replace(word, '') return newStr.strip() this = ' Root is a Computer ' n = remove_and_split(this, 'Root') print(n)
tableData = [['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose']] def printTable(table): colWidth = [0] * len(table) #List of rjust values to be used for i in range(len(table)): #iterates through the 3 lists rjustlength = 0 for j in table[i]: #loops each index of list and keeps larger number if len(j) > rjustlength: rjustlength = len(j) colWidth[i] = rjustlength #formats the columns of print for y in range(len(table[0])): #iterates through number of strings in sublist for x in range(len(table)): #for each x word = table[x][y] print(word.rjust(colWidth[x]),end = ' ') print("") printTable(tableData)
table_data = [['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose']] def print_table(table): col_width = [0] * len(table) for i in range(len(table)): rjustlength = 0 for j in table[i]: if len(j) > rjustlength: rjustlength = len(j) colWidth[i] = rjustlength for y in range(len(table[0])): for x in range(len(table)): word = table[x][y] print(word.rjust(colWidth[x]), end=' ') print('') print_table(tableData)
N = int(input()) M = int(input()) S = int(input()) for num in range(M, N - 1, - 1): if num % 2 == 0 and num % 3 == 0: if num == S: break print(num, end=" ")
n = int(input()) m = int(input()) s = int(input()) for num in range(M, N - 1, -1): if num % 2 == 0 and num % 3 == 0: if num == S: break print(num, end=' ')
f=open('demo1.txt','a') a=int(input('enter number ')) f.write('hello hi\n') f.write('world') f.write(str(a)) f.close()
f = open('demo1.txt', 'a') a = int(input('enter number ')) f.write('hello hi\n') f.write('world') f.write(str(a)) f.close()
ALIEN = {'.----': '1', '..---': '2', '...--': '3', '....-': '4', '.....': '5', '-....': '6', '--...': '7', '---..': '8', '----.': '9', '-----': '0'} def morse_converter(s): return int(''.join(ALIEN[s[a:a + 5]] for a in xrange(0, len(s), 5)))
alien = {'.----': '1', '..---': '2', '...--': '3', '....-': '4', '.....': '5', '-....': '6', '--...': '7', '---..': '8', '----.': '9', '-----': '0'} def morse_converter(s): return int(''.join((ALIEN[s[a:a + 5]] for a in xrange(0, len(s), 5))))
def calculateAverageAge(students): add_age = 0 for thing in students.values(): age = thing['age'] add_age = add_age + age return(add_age / len(students.keys())) students = { "Peter": {"age": 10, "address": "Lisbon"}, "Isabel": {"age": 11, "address": "Sesimbra"}, "Anna": {"age": 9, "address": "Lisbon"}, "Gibrael": {"age": 10, "address": "Sesimbra"}, "Susan": {"age": 11, "address": "Lisbon"}, "Charles": {"age": 9, "address": "Sesimbra"}, } print(calculateAverageAge(students))
def calculate_average_age(students): add_age = 0 for thing in students.values(): age = thing['age'] add_age = add_age + age return add_age / len(students.keys()) students = {'Peter': {'age': 10, 'address': 'Lisbon'}, 'Isabel': {'age': 11, 'address': 'Sesimbra'}, 'Anna': {'age': 9, 'address': 'Lisbon'}, 'Gibrael': {'age': 10, 'address': 'Sesimbra'}, 'Susan': {'age': 11, 'address': 'Lisbon'}, 'Charles': {'age': 9, 'address': 'Sesimbra'}} print(calculate_average_age(students))
# very old file that isn't very useful but it works with things so I'm keeping it for now class Rectangle: current_id = 0 tolerable_distance_to_combine_rectangles = 0.00005 # buildings need to be this (lat/long degrees) away to merge def __init__(self, init_points, to_id=True): self.points = init_points # a point is a list, in (lat, long) form self.deleted_rect_ids = [] if to_id: Rectangle.current_id += 1 self.id = Rectangle.current_id def merge_with(self, other_rectangle): for point in other_rectangle.points: # if the rectangles overlap if self.has_point_inside_approx(point): # get cords for the merged rectangle top = min(self.get_up_bound(), other_rectangle.get_up_bound()) bot = max(self.get_down_bound(), other_rectangle.get_down_bound()) right = max(self.get_right_bound(), other_rectangle.get_right_bound()) left = min(self.get_left_bound(), other_rectangle.get_left_bound()) # returns the coordinates of the merged rectangles return [(left, top), (right, top), (right, bot), (left, bot)] return None # Checks if a point is inside/on the borders def has_point_inside(self, point_to_check): has_up_bound, has_down_bound, has_left_bound, has_right_bound = False, False, False, False # check all lines in this rectangle -> does the point lay in between 4 lines? for i in range(0, len(self.points)): point1 = self.points[i] point2 = self.points[(i + 1) % len(self.points)] # if vertical line if point1[0] == point2[0]: if point1[1] < point_to_check[1] < point2[1] or point1[1] > point_to_check[1] > point2[1]: # point_to_check is within the y-range of the line if point_to_check[0] >= point1[0]: has_left_bound = True if point_to_check[0] <= point1[0]: has_right_bound = True # if horizontal line if point1[1] == point2[1]: if point1[0] < point_to_check[0] < point2[0] or point1[0] > point_to_check[0] > point2[0]: # point_to_check is within the x-domain of the line if point_to_check[1] >= point1[1]: has_down_bound = True if point_to_check[1] <= point1[1]: has_up_bound = True return has_up_bound and has_down_bound and has_left_bound and has_right_bound # check if point is close enough to be inside by shifting the point up, down, left, right def has_point_inside_approx(self, point_to_check, tolerable_distance=tolerable_distance_to_combine_rectangles): if tolerable_distance == 0: return self.has_point_inside(point_to_check) slide_right = self.has_point_inside((point_to_check[0] + tolerable_distance, point_to_check[1])) slide_left = self.has_point_inside((point_to_check[0] - tolerable_distance, point_to_check[1])) slide_up = self.has_point_inside((point_to_check[0], point_to_check[1] - tolerable_distance)) slide_down = self.has_point_inside((point_to_check[0], point_to_check[1] + tolerable_distance)) stay_put = self.has_point_inside(point_to_check) return slide_right or slide_left or slide_up or slide_down or stay_put # returns leftmost x cord def get_left_bound(self): left_bound = self.points[0][0] for point in self.points: if point[0] < left_bound: left_bound = point[0] return left_bound # returns rightmost x cord def get_right_bound(self): right_bound = self.points[0][0] for point in self.points: if point[0] > right_bound: right_bound = point[0] return right_bound # returns smallest y cord def get_up_bound(self): up_bound = self.points[0][1] for point in self.points: if point[1] < up_bound: up_bound = point[1] return up_bound # returns largest y cord def get_down_bound(self): down_bound = self.points[0][1] for point in self.points: if point[1] > down_bound: down_bound = point[1] return down_bound def get_id(self): return self.id def get_points(self): return self.points
class Rectangle: current_id = 0 tolerable_distance_to_combine_rectangles = 5e-05 def __init__(self, init_points, to_id=True): self.points = init_points self.deleted_rect_ids = [] if to_id: Rectangle.current_id += 1 self.id = Rectangle.current_id def merge_with(self, other_rectangle): for point in other_rectangle.points: if self.has_point_inside_approx(point): top = min(self.get_up_bound(), other_rectangle.get_up_bound()) bot = max(self.get_down_bound(), other_rectangle.get_down_bound()) right = max(self.get_right_bound(), other_rectangle.get_right_bound()) left = min(self.get_left_bound(), other_rectangle.get_left_bound()) return [(left, top), (right, top), (right, bot), (left, bot)] return None def has_point_inside(self, point_to_check): (has_up_bound, has_down_bound, has_left_bound, has_right_bound) = (False, False, False, False) for i in range(0, len(self.points)): point1 = self.points[i] point2 = self.points[(i + 1) % len(self.points)] if point1[0] == point2[0]: if point1[1] < point_to_check[1] < point2[1] or point1[1] > point_to_check[1] > point2[1]: if point_to_check[0] >= point1[0]: has_left_bound = True if point_to_check[0] <= point1[0]: has_right_bound = True if point1[1] == point2[1]: if point1[0] < point_to_check[0] < point2[0] or point1[0] > point_to_check[0] > point2[0]: if point_to_check[1] >= point1[1]: has_down_bound = True if point_to_check[1] <= point1[1]: has_up_bound = True return has_up_bound and has_down_bound and has_left_bound and has_right_bound def has_point_inside_approx(self, point_to_check, tolerable_distance=tolerable_distance_to_combine_rectangles): if tolerable_distance == 0: return self.has_point_inside(point_to_check) slide_right = self.has_point_inside((point_to_check[0] + tolerable_distance, point_to_check[1])) slide_left = self.has_point_inside((point_to_check[0] - tolerable_distance, point_to_check[1])) slide_up = self.has_point_inside((point_to_check[0], point_to_check[1] - tolerable_distance)) slide_down = self.has_point_inside((point_to_check[0], point_to_check[1] + tolerable_distance)) stay_put = self.has_point_inside(point_to_check) return slide_right or slide_left or slide_up or slide_down or stay_put def get_left_bound(self): left_bound = self.points[0][0] for point in self.points: if point[0] < left_bound: left_bound = point[0] return left_bound def get_right_bound(self): right_bound = self.points[0][0] for point in self.points: if point[0] > right_bound: right_bound = point[0] return right_bound def get_up_bound(self): up_bound = self.points[0][1] for point in self.points: if point[1] < up_bound: up_bound = point[1] return up_bound def get_down_bound(self): down_bound = self.points[0][1] for point in self.points: if point[1] > down_bound: down_bound = point[1] return down_bound def get_id(self): return self.id def get_points(self): return self.points
class Solution: def restoreString(self, s: str, indices: List[int]) -> str: res = [0] * len(indices) for i, j in zip(s, indices) : res[j] = i return "".join(res)
class Solution: def restore_string(self, s: str, indices: List[int]) -> str: res = [0] * len(indices) for (i, j) in zip(s, indices): res[j] = i return ''.join(res)
class Move: def __init__(self, dest_rank_id, from_rank_id): self.dest_rank_id = dest_rank_id self.from_rank_id = from_rank_id def output(self): out_str = '' out_str += str(self.from_rank_id) out_str += ' -> ' out_str += str(self.dest_rank_id) print(out_str)
class Move: def __init__(self, dest_rank_id, from_rank_id): self.dest_rank_id = dest_rank_id self.from_rank_id = from_rank_id def output(self): out_str = '' out_str += str(self.from_rank_id) out_str += ' -> ' out_str += str(self.dest_rank_id) print(out_str)
# MatchJoin takes a list of matchers and joins them, to essentially # make a conjunctive matcher class MatchJoin: # @matchers A list of matchers to join into a single match for example # [ # LiteralMatch("hello ") # LiteralMatch("world") # ] def __init__(self, matchers : list): self.to_string_call_count = None self.matchers = matchers # @body The body to parse and tokenise # @hard_fail a boolean flag indicating whether or not to throw an error when a match # doesn't work def parser(self, body : str, hard_fail = True): result = [] head = 0 for matcher in self.matchers: sub_body = body[head:] out = matcher.parser(sub_body, hard_fail = False) if not out: if hard_fail: raise ValueError(f"MatchJoin: Could not match at {head}") else: return False result.append(out[0]) head += out[1] return (result, head) def to_string(self, call_count = 0): if self.to_string_call_count == call_count: return "..." else: self.to_string_call_count = call_count return "(" + " ".join([m.to_string(call_count) for m in self.matchers]) + ")" def __str__(self): return self.to_string()
class Matchjoin: def __init__(self, matchers: list): self.to_string_call_count = None self.matchers = matchers def parser(self, body: str, hard_fail=True): result = [] head = 0 for matcher in self.matchers: sub_body = body[head:] out = matcher.parser(sub_body, hard_fail=False) if not out: if hard_fail: raise value_error(f'MatchJoin: Could not match at {head}') else: return False result.append(out[0]) head += out[1] return (result, head) def to_string(self, call_count=0): if self.to_string_call_count == call_count: return '...' else: self.to_string_call_count = call_count return '(' + ' '.join([m.to_string(call_count) for m in self.matchers]) + ')' def __str__(self): return self.to_string()
# Finds the optmial cost def find_opt_cost(data): min_cost = data[data.A == -1]['cost'].values[0] return min_cost # Finds the energy corresponding to optimal route def find_opt_energy(data): opt_energy = data[data.A == -1]['energy'].values[0] return opt_energy # Returns true if optimal route is observed def opt_found(data): min_cost = find_opt_cost(data) data_d = data[(data.cost == min_cost) & (data.valid == True) & (data.windows == True) & (data.A != -1)] return len(data_d) > 0 # Calculates the probability of samples encoding optimal route def probability(data): min_cost = find_opt_cost(data) data_d = data[(data.cost == min_cost) & (data.valid == True) & (data.windows == True) & (data.A != -1)] return len(data_d) / (len(data) - 1) # Calculates the probability of samples encoding optimal route, returns 0 if the lowest energy sample is not optimal def min_prob(data): min_cost = find_opt_cost(data) if data.valid.iloc[0] == True & data.windows.iloc[0] == True and data.cost.iloc[0] == min_cost: return probability(data) else: return 0
def find_opt_cost(data): min_cost = data[data.A == -1]['cost'].values[0] return min_cost def find_opt_energy(data): opt_energy = data[data.A == -1]['energy'].values[0] return opt_energy def opt_found(data): min_cost = find_opt_cost(data) data_d = data[(data.cost == min_cost) & (data.valid == True) & (data.windows == True) & (data.A != -1)] return len(data_d) > 0 def probability(data): min_cost = find_opt_cost(data) data_d = data[(data.cost == min_cost) & (data.valid == True) & (data.windows == True) & (data.A != -1)] return len(data_d) / (len(data) - 1) def min_prob(data): min_cost = find_opt_cost(data) if data.valid.iloc[0] == True & data.windows.iloc[0] == True and data.cost.iloc[0] == min_cost: return probability(data) else: return 0
class LayeredStreamReaderBase: __slots__ = {'upstream'} def __init__(self, upstream): self.upstream = upstream async def read(self, n): return await self.upstream.read(n) async def readexactly(self, n): return await self.upstream.readexactly(n)
class Layeredstreamreaderbase: __slots__ = {'upstream'} def __init__(self, upstream): self.upstream = upstream async def read(self, n): return await self.upstream.read(n) async def readexactly(self, n): return await self.upstream.readexactly(n)
# class class_name: # def __init__(self): # # def function_name(self): # return class Athlete: def __init__(self, value='Jane'): self.inner_value = value print(self.inner_value) def getInnerValue(self): return self.inner_value class InheritanceClass(Athlete): def __init__(self): super().__init__() def setValue(self, first_value): self.inherit_value = first_value def getValue(self): return self.inherit_value # inherit = InheritanceClass() # # print(inherit.getInnerValue()) # # inherit.setValue(first_value='Sanghun') # # print(inherit.getValue()) # athlete = Athlete(value='SangHun') # == Athlete.__init__() # # print(athlete.getInnerValue())
class Athlete: def __init__(self, value='Jane'): self.inner_value = value print(self.inner_value) def get_inner_value(self): return self.inner_value class Inheritanceclass(Athlete): def __init__(self): super().__init__() def set_value(self, first_value): self.inherit_value = first_value def get_value(self): return self.inherit_value
Import("env") # # Add -m32 to the linker (since PlatformIo is not capable directly!) # (and since we are at it, make everyting statically linked ;-) # env.Append( LINKFLAGS=[ "-m32", "-static-libgcc", "-static-libstdc++" ] )
import('env') env.Append(LINKFLAGS=['-m32', '-static-libgcc', '-static-libstdc++'])
class Programa: def __init__(self, nome, ano): self._nome = nome.title() self.ano = ano self._likes = 0 @property def likes(self): return self._likes def dar_like(self): self._likes += 1 @property def nome(self): return self._nome @nome.setter def nome(self, novo_nome): self._nome = novo_nome.title() def __str__(self): return f'nome: {self._nome} - ano: {self.ano} - likes: {self._likes}' class Filme(Programa): def __init__(self, nome, ano, duracao): super().__init__(nome, ano) self.duracao = duracao def __str__(self): return f'nome: {self._nome} - ano: {self.ano} - duracao: {self.duracao} - likes: {self._likes}' class Serie(Programa): def __init__(self, nome, ano, temporadas): super().__init__(nome, ano) self.temporada = temporadas def __str__(self): return f'nome: {self._nome} - ano: {self.ano} - temporada: {self.temporada} - likes: {self._likes}' vingadores = Filme('vigadores - a guerra', 2020, 160) vingadores.dar_like() vingadores.dar_like() vingadores.dar_like() senhorDosAneis = Filme('senhor dos aneis', 2010, 320) [senhorDosAneis.dar_like() for _ in range(10)] print(f'nome: {vingadores.nome} - ano: {vingadores.ano} - duracao: {vingadores.duracao}') print(f'likes: {vingadores.likes}') gameOf = Serie('game of thrones', 2010, 9) print(f'Nome: {gameOf.nome} - ano: {gameOf.ano} - temporadas: {gameOf.temporada}') gameOf.dar_like() print(vingadores.nome) atlanta = Serie('atlanta', 2018, 2) atlanta.dar_like() atlanta.dar_like() atlanta.dar_like() print(f'Nome: {atlanta.nome} - Ano: {atlanta.ano}') print('\n=======================================================================') filmesESeries = [senhorDosAneis, vingadores, gameOf, atlanta] for programa in filmesESeries: # colocando __str__ pode retornar colocando o nome dada da classe: programa print(programa)
class Programa: def __init__(self, nome, ano): self._nome = nome.title() self.ano = ano self._likes = 0 @property def likes(self): return self._likes def dar_like(self): self._likes += 1 @property def nome(self): return self._nome @nome.setter def nome(self, novo_nome): self._nome = novo_nome.title() def __str__(self): return f'nome: {self._nome} - ano: {self.ano} - likes: {self._likes}' class Filme(Programa): def __init__(self, nome, ano, duracao): super().__init__(nome, ano) self.duracao = duracao def __str__(self): return f'nome: {self._nome} - ano: {self.ano} - duracao: {self.duracao} - likes: {self._likes}' class Serie(Programa): def __init__(self, nome, ano, temporadas): super().__init__(nome, ano) self.temporada = temporadas def __str__(self): return f'nome: {self._nome} - ano: {self.ano} - temporada: {self.temporada} - likes: {self._likes}' vingadores = filme('vigadores - a guerra', 2020, 160) vingadores.dar_like() vingadores.dar_like() vingadores.dar_like() senhor_dos_aneis = filme('senhor dos aneis', 2010, 320) [senhorDosAneis.dar_like() for _ in range(10)] print(f'nome: {vingadores.nome} - ano: {vingadores.ano} - duracao: {vingadores.duracao}') print(f'likes: {vingadores.likes}') game_of = serie('game of thrones', 2010, 9) print(f'Nome: {gameOf.nome} - ano: {gameOf.ano} - temporadas: {gameOf.temporada}') gameOf.dar_like() print(vingadores.nome) atlanta = serie('atlanta', 2018, 2) atlanta.dar_like() atlanta.dar_like() atlanta.dar_like() print(f'Nome: {atlanta.nome} - Ano: {atlanta.ano}') print('\n=======================================================================') filmes_e_series = [senhorDosAneis, vingadores, gameOf, atlanta] for programa in filmesESeries: print(programa)
class Solution: def merge(self, intervals: List[List[int]]) -> List[List[int]]: # Check edge case if not intervals: return [] # Sort the list to make it ascending with respect to the sub-list's first element and then in second element intervals = sorted(intervals, key = lambda x: (x[0], x[1])) # Initialize the result list with the first sub-list res = [intervals[0]] # Traverse the entire sorted list from the 2nd sub-list for i in range(1, len(intervals)): # There is intersection, then update the last sub-list of result if intervals[i][0] <= res[-1][1]: res[-1][1] = max(res[-1][1], intervals[i][1]) # There is no intersection, then append the current sub-list to result else: res.append(intervals[i]) return res
class Solution: def merge(self, intervals: List[List[int]]) -> List[List[int]]: if not intervals: return [] intervals = sorted(intervals, key=lambda x: (x[0], x[1])) res = [intervals[0]] for i in range(1, len(intervals)): if intervals[i][0] <= res[-1][1]: res[-1][1] = max(res[-1][1], intervals[i][1]) else: res.append(intervals[i]) return res
__source__ = 'https://leetcode.com/problems/next-greater-element-iii/description/' # Time: O(n) # Space: O(n) # # Description: same as 556. Next Greater Element III # //[email protected] # // Next closest bigger number with the same digits # // You have to create a function that takes a positive integer number and returns # the next bigger number formed by the same digits: # # // next_bigger(12)==21 //string for permutation # // next_bigger(513)==531 # // next_bigger(2017)==2071 # # // If no bigger number can be composed using those digits, return -1: # # // next_bigger(9)==-1 # // next_bigger(111)==-1 # // next_bigger(531)==-1 # Result = ''' IFang Lee ran 238 lines of Java (finished in 11.59s): getRealNextBiggerInteger(): 12-> 21 true 513 -> 531 true 1342-> 1423 true 534976-> 536479 true 9999-> -1 true 11-> -1 true 0-> -1 true 2147483647-> -1 true getRealNextBiggerIntegerByPermutation(): 12-> 21 true 513 -> 531 true 1342-> 1423 true 534976-> 536479 true 9999-> -1 true 11-> -1 true 0-> -1 true 2147483647-> -1 true ''' my_ans = ''' import java.io.*; import java.util.*; // 1. permutation -> worse big O (n!) // 2. scan from the last digit, swap with the first smaller digit O(n) public class Solution { public static void main(String[] args) { testNextBiggerInteger(); } public static void testNextBiggerInteger() { int res1, res2; System.out.println("getRealNextBiggerInteger(): "); System.out.println("12-> " + (res2 = getRealNextBiggerInteger(12)) + " " + (res2 == 21) + ""); System.out.println("513 -> " + (res2 = getRealNextBiggerInteger(513)) + " " + (res2 == 531) + ""); System.out.println("1342-> " + (res2 = getRealNextBiggerInteger(1342)) + " " + (res2 == 1423) + ""); System.out.println("534976-> " + (res2 = getRealNextBiggerInteger(534976)) + " " + (res2 == 536479) + ""); //negative tests System.out.println("9999-> " + (res2 = getRealNextBiggerInteger(9999)) + " " + (res2 == -1) + ""); System.out.println("11-> " + (res2 = getRealNextBiggerInteger(11)) + " " + (res2 == -1) + ""); System.out.println("0-> " + (res2 = getRealNextBiggerInteger(0)) + " " + (res2 == -1) + ""); System.out.println("2147483647-> " + (res2 = getRealNextBiggerInteger(Integer.MAX_VALUE))+ " " + (res2 == -1) + ""); System.out.println("987654321-> " + (res1 = getRealNextBiggerInteger(987654321)) + " " + (res1 == -1) + ""); System.out.println(); System.out.println("getRealNextBiggerIntegerByPermutation(): "); System.out.println("12-> " + (res1 = getRealNextBiggerIntegerByPermutation(12)) + " " + (res1 == 21) + ""); System.out.println("513 -> " + (res1 = getRealNextBiggerIntegerByPermutation(513))+ " " + (res1 == 531) + ""); System.out.println("1342-> " + (res1 = getRealNextBiggerIntegerByPermutation(1342)) + " " + (res1 == 1423) + ""); System.out.println("534976-> " + (res1 = getRealNextBiggerIntegerByPermutation(534976)) + " " + (res1 == 536479) + ""); //negative tests System.out.println("9999-> " + (res1 = getRealNextBiggerIntegerByPermutation(9999)) + " " + (res1 == -1) + ""); System.out.println("11-> " + (res1 = getRealNextBiggerIntegerByPermutation(11)) + " " + (res1 == -1) + ""); System.out.println("0-> " + (res1 = getRealNextBiggerIntegerByPermutation(0)) + " " + (res1 == -1) + ""); // significant long runtime (10982 milliseconds) for below test cases: System.out.println("2147483647-> " + (res1 = getRealNextBiggerIntegerByPermutation(Integer.MAX_VALUE)) + " " + (res1 == -1) + ""); // cannot run below: Stopped: CPU usage beyond threshold! // System.out.println("9876543210-> " + (res1 = getRealNextBiggerIntegerByPermutation(987654321)) + " " // + (res1 == -1) + ""); } ///////////////////////////////////////////////////////////////////////////////////////////// /* Time O(n) * 1. scan from the right, find the first digit larger than its right neighbor * 2. Within the range of (1) to right of the number, find a digit larger than(1) * 3. swap digit at (1) and (2) * 4. reverse the digit from index at (i) to the end of the digits * 5. return the result */ public static int getRealNextBiggerInteger(int number){ if (number < 0) throw new IllegalArgumentException("input must be positive integer"); char[] num = String.valueOf(number).toCharArray(); int i = num.length - 1, j = num.length - 1; // find the first digit from right that is smaller the its right digit while (i > 0 && num[i] <= num[i-1]) i--; //pivot = num[i-1] // descending order //ex: 54321 if (i == 0) return -1; // find the smallest digit >= pivot within the range (i, num.length) while (j > i - 1 && num[j] <= num[i - 1]) j--; swap(num, i - 1, j); reverse(num, i, num.length - 1); try { //check for overflow return Integer.parseInt(new String(num)); } catch(NumberFormatException noe) { System.out.println(noe.toString()); return -1; } } private static void swap(char[] num, int i, int j) { char tmp = num[i]; num[i] = num[j]; num[j] = tmp; } private static void reverse(char[] num, int start, int end) { while(start < end) { swap(num, start, end); start++; end--; } } ///////////////////////////////////////////////////////////////////////////////////////////// /* Time O(n!) * 1. Below algo use permutation way to get the next_bigger * getAllPermutation(): for any given number, it computes all permutation using given number * getRealNextBiggerIntegerByPermutation(): sort the result return by getAllPermutation() and * find the next big integer */ // return the next big integer of number // the algo first get all the permutations of that number to a list of integers // then sort the list and traverse the list to find the next big integer of given number // return -1 if not found public static int getRealNextBiggerIntegerByPermutation(int number){ if (number < 0) throw new IllegalArgumentException("input must be positive integer"); List<Integer> permutations; try{ permutations = getAllPermutation(number); } catch(NumberFormatException noe) { //overflow case //System.out.println(noe.toString()); return -1; } Collections.sort(permutations); for (int i = 0; i < permutations.size(); i++) { if ( i + 1 < permutations.size() && permutations.get(i + 1) > number) { //System.out.println("ans" + permutations.get(i + 1)); return permutations.get(i+1); } } return -1; } // given any number, get a list of all permutations in String type of the given number // return a list of interger type of the all permutations of that given number private static List<Integer> getAllPermutation(int number) { List<String> res = new LinkedList<>(); String num = String.valueOf(number); getPerm(num.toCharArray(), new boolean[num.length()], new StringBuilder(), res); List<Integer> numbers = new LinkedList<>(); for (String n : res) { try{ numbers.add(Integer.parseInt(n)); } catch(NumberFormatException noe) { throw noe; } } return numbers; } // backtrack to get all the permutation of "number" char array // save the result to a list of string private static void getPerm(char[] number, boolean[] used, StringBuilder sb, List<String> res) { if (sb.length() == number.length) { res.add(sb.toString()); return; } for (int i = 0; i < number.length; i++) { if(!used[i]) { sb.append(number[i]); used[i] = true; getPerm(number, used, sb, res); sb.setLength(sb.length() - 1); used[i] = false; } } } ///////////////////////////////////////////////////////////////////////////////////////////// // below not working version //starts with #2 scan from the last digit, swap with the first smaller digit O(n) // lets use int think of overflow later (with long) // the func does not work with 1342 -> returns 2341, but the correct ans = 1423 public static int nextBiggerInteger(int number){ //12 int num = number; int lastDigit = num % 10; //2 num /= 10; //1 StringBuilder sb = new StringBuilder(); while (num > 0) { //loop throw numbers from last digits int next = num % 10; //1 if ( next < lastDigit) { //swap next and lastDigit num = (num / 10) * 10 + lastDigit; sb.reverse().append(next); break; } sb.append(next); num /= 10; } // add num with sb String rest = sb.toString(); //System.out.println(rest); int restInt = 0; if (rest != null && rest.length() > 0) { try{ restInt = Integer.parseInt(rest); // none }catch(NumberFormatException noe) { System.out.println(noe.toString()); restInt = 0; } for (int i = 0; i < rest.length(); i++) { num *= 10; } } num += restInt; return num > number ? num : -1; } ///////////////////////////////////////////////////////////////////////////////////////////// } '''
__source__ = 'https://leetcode.com/problems/next-greater-element-iii/description/' result = '\nIFang Lee ran 238 lines of Java (finished in 11.59s):\n\ngetRealNextBiggerInteger():\n12-> 21 true\n513 -> 531 true\n1342-> 1423 true\n534976-> 536479 true\n9999-> -1 true\n11-> -1 true\n0-> -1 true\n2147483647-> -1 true\n\ngetRealNextBiggerIntegerByPermutation():\n12-> 21 true\n513 -> 531 true\n1342-> 1423 true\n534976-> 536479 true\n9999-> -1 true\n11-> -1 true\n0-> -1 true\n2147483647-> -1 true\n' my_ans = '\nimport java.io.*;\nimport java.util.*;\n\n// 1. permutation -> worse big O (n!)\n// 2. scan from the last digit, swap with the first smaller digit O(n)\n\npublic class Solution {\n public static void main(String[] args) {\n testNextBiggerInteger();\n }\n\n public static void testNextBiggerInteger() {\n int res1, res2;\n System.out.println("getRealNextBiggerInteger(): ");\n System.out.println("12-> " + (res2 = getRealNextBiggerInteger(12)) + " "\n + (res2 == 21) + "");\n System.out.println("513 -> " + (res2 = getRealNextBiggerInteger(513)) + " "\n + (res2 == 531) + "");\n System.out.println("1342-> " + (res2 = getRealNextBiggerInteger(1342)) + " "\n + (res2 == 1423) + "");\n System.out.println("534976-> " + (res2 = getRealNextBiggerInteger(534976)) + " "\n + (res2 == 536479) + "");\n\n //negative tests\n System.out.println("9999-> " + (res2 = getRealNextBiggerInteger(9999)) + " "\n + (res2 == -1) + "");\n System.out.println("11-> " + (res2 = getRealNextBiggerInteger(11)) + " "\n + (res2 == -1) + "");\n System.out.println("0-> " + (res2 = getRealNextBiggerInteger(0)) + " "\n + (res2 == -1) + "");\n System.out.println("2147483647-> " + (res2 = getRealNextBiggerInteger(Integer.MAX_VALUE))+ " "\n + (res2 == -1) + "");\n System.out.println("987654321-> " + (res1 = getRealNextBiggerInteger(987654321)) + " "\n + (res1 == -1) + "");\n\n System.out.println();\n System.out.println("getRealNextBiggerIntegerByPermutation(): ");\n System.out.println("12-> " + (res1 = getRealNextBiggerIntegerByPermutation(12)) + " "\n + (res1 == 21) + "");\n System.out.println("513 -> " + (res1 = getRealNextBiggerIntegerByPermutation(513))+ " "\n + (res1 == 531) + "");\n System.out.println("1342-> " + (res1 = getRealNextBiggerIntegerByPermutation(1342)) + " "\n + (res1 == 1423) + "");\n System.out.println("534976-> " + (res1 = getRealNextBiggerIntegerByPermutation(534976)) + " "\n + (res1 == 536479) + "");\n\n //negative tests\n System.out.println("9999-> " + (res1 = getRealNextBiggerIntegerByPermutation(9999)) + " "\n + (res1 == -1) + "");\n System.out.println("11-> " + (res1 = getRealNextBiggerIntegerByPermutation(11)) + " "\n + (res1 == -1) + "");\n System.out.println("0-> " + (res1 = getRealNextBiggerIntegerByPermutation(0)) + " "\n + (res1 == -1) + "");\n // significant long runtime (10982 milliseconds) for below test cases:\n System.out.println("2147483647-> " + (res1 = getRealNextBiggerIntegerByPermutation(Integer.MAX_VALUE))\n + " " + (res1 == -1) + "");\n // cannot run below: Stopped: CPU usage beyond threshold!\n // System.out.println("9876543210-> " + (res1 = getRealNextBiggerIntegerByPermutation(987654321)) + " "\n // + (res1 == -1) + "");\n\n }\n\n /////////////////////////////////////////////////////////////////////////////////////////////\n /* Time O(n)\n * 1. scan from the right, find the first digit larger than its right neighbor\n * 2. Within the range of (1) to right of the number, find a digit larger than(1)\n * 3. swap digit at (1) and (2)\n * 4. reverse the digit from index at (i) to the end of the digits\n * 5. return the result\n */\n\n public static int getRealNextBiggerInteger(int number){\n if (number < 0) throw new IllegalArgumentException("input must be positive integer");\n char[] num = String.valueOf(number).toCharArray();\n int i = num.length - 1, j = num.length - 1;\n\n // find the first digit from right that is smaller the its right digit\n while (i > 0 && num[i] <= num[i-1]) i--; //pivot = num[i-1]\n\n // descending order //ex: 54321\n if (i == 0) return -1;\n\n // find the smallest digit >= pivot within the range (i, num.length)\n while (j > i - 1 && num[j] <= num[i - 1]) j--;\n swap(num, i - 1, j);\n reverse(num, i, num.length - 1);\n\n try { //check for overflow\n return Integer.parseInt(new String(num));\n } catch(NumberFormatException noe) {\n System.out.println(noe.toString());\n return -1;\n }\n\n }\n\n private static void swap(char[] num, int i, int j) {\n char tmp = num[i];\n num[i] = num[j];\n num[j] = tmp;\n }\n\n private static void reverse(char[] num, int start, int end) {\n while(start < end) {\n swap(num, start, end);\n start++;\n end--;\n }\n }\n\n /////////////////////////////////////////////////////////////////////////////////////////////\n /* Time O(n!)\n * 1. Below algo use permutation way to get the next_bigger\n * getAllPermutation(): for any given number, it computes all permutation using given number\n * getRealNextBiggerIntegerByPermutation(): sort the result return by getAllPermutation() and\n * find the next big integer\n */\n\n // return the next big integer of number\n // the algo first get all the permutations of that number to a list of integers\n // then sort the list and traverse the list to find the next big integer of given number\n // return -1 if not found\n public static int getRealNextBiggerIntegerByPermutation(int number){\n if (number < 0) throw new IllegalArgumentException("input must be positive integer");\n List<Integer> permutations;\n try{\n permutations = getAllPermutation(number);\n } catch(NumberFormatException noe) { //overflow case\n //System.out.println(noe.toString());\n return -1;\n }\n Collections.sort(permutations);\n for (int i = 0; i < permutations.size(); i++) {\n if ( i + 1 < permutations.size() && permutations.get(i + 1) > number) {\n //System.out.println("ans" + permutations.get(i + 1));\n return permutations.get(i+1);\n }\n }\n return -1;\n }\n\n // given any number, get a list of all permutations in String type of the given number\n // return a list of interger type of the all permutations of that given number\n private static List<Integer> getAllPermutation(int number) {\n List<String> res = new LinkedList<>();\n String num = String.valueOf(number);\n getPerm(num.toCharArray(), new boolean[num.length()], new StringBuilder(), res);\n List<Integer> numbers = new LinkedList<>();\n for (String n : res) {\n try{\n numbers.add(Integer.parseInt(n));\n } catch(NumberFormatException noe) {\n throw noe;\n }\n }\n return numbers;\n }\n\n // backtrack to get all the permutation of "number" char array\n // save the result to a list of string\n private static void getPerm(char[] number, boolean[] used, StringBuilder sb, List<String> res) {\n if (sb.length() == number.length) {\n res.add(sb.toString());\n return;\n }\n\n for (int i = 0; i < number.length; i++) {\n if(!used[i]) {\n sb.append(number[i]);\n used[i] = true;\n getPerm(number, used, sb, res);\n sb.setLength(sb.length() - 1);\n used[i] = false;\n }\n }\n }\n\n\n /////////////////////////////////////////////////////////////////////////////////////////////\n // below not working version\n //starts with #2 scan from the last digit, swap with the first smaller digit O(n)\n // lets use int think of overflow later (with long)\n // the func does not work with 1342 -> returns 2341, but the correct ans = 1423\n public static int nextBiggerInteger(int number){ //12\n int num = number;\n int lastDigit = num % 10; //2\n num /= 10; //1\n StringBuilder sb = new StringBuilder();\n while (num > 0) { //loop throw numbers from last digits\n int next = num % 10; //1\n\n if ( next < lastDigit) { //swap next and lastDigit\n num = (num / 10) * 10 + lastDigit;\n sb.reverse().append(next);\n break;\n }\n sb.append(next);\n num /= 10;\n }\n // add num with sb\n String rest = sb.toString();\n //System.out.println(rest);\n int restInt = 0;\n if (rest != null && rest.length() > 0) {\n try{\n restInt = Integer.parseInt(rest); // none\n }catch(NumberFormatException noe) {\n System.out.println(noe.toString());\n restInt = 0;\n }\n\n for (int i = 0; i < rest.length(); i++) {\n num *= 10;\n }\n }\n\n\n num += restInt;\n return num > number ? num : -1;\n }\n /////////////////////////////////////////////////////////////////////////////////////////////\n}\n'
# Portal & Effect for Evan Intro | Dream World: Dream Forest Entrance (900010000) # Author: Tiger # "You who are seeking a Pact..." sm.showEffect("Map/Effect.img/evan/dragonTalk01", 3000)
sm.showEffect('Map/Effect.img/evan/dragonTalk01', 3000)
#implement STACK/LIFO using LIST stack=[] while True: choice=int(input("1 push, 2 pop, 3 peek, 4 display, 5 exit ")) if choice == 1: ele=int(input("enter element to push ")) stack.append(ele) elif choice == 2: if len(stack)>0: pele=stack.pop() print("poped elemnt ",pele) else: print("stack is empty") elif choice == 3: if len(stack)>0: tele=stack[len(stack)-1] print("topmost elemnt ",tele) else: print("stack is empty") elif choice == 4: for i in stack: print(i,end='') print() elif choice == 5: break else: print("invalid choice")
stack = [] while True: choice = int(input('1 push, 2 pop, 3 peek, 4 display, 5 exit ')) if choice == 1: ele = int(input('enter element to push ')) stack.append(ele) elif choice == 2: if len(stack) > 0: pele = stack.pop() print('poped elemnt ', pele) else: print('stack is empty') elif choice == 3: if len(stack) > 0: tele = stack[len(stack) - 1] print('topmost elemnt ', tele) else: print('stack is empty') elif choice == 4: for i in stack: print(i, end='') print() elif choice == 5: break else: print('invalid choice')
#!/bin/python3 nombre = 3 nombres_premiers = [1, 2] print(2) try: while True: diviseurs = [] for diviseur in nombres_premiers: division = nombre / diviseur if division == int(division): diviseurs.append(diviseur) if len(diviseurs) == 1: print(nombre) nombres_premiers.append(nombre) del diviseurs nombre += 2 except KeyboardInterrupt: pass # print(nombre)
nombre = 3 nombres_premiers = [1, 2] print(2) try: while True: diviseurs = [] for diviseur in nombres_premiers: division = nombre / diviseur if division == int(division): diviseurs.append(diviseur) if len(diviseurs) == 1: print(nombre) nombres_premiers.append(nombre) del diviseurs nombre += 2 except KeyboardInterrupt: pass
DIGS = {1: 'F1D', 2: 'F2D', 3: 'F3D', 22: 'SD', -2: 'L2D'} SEC_ORDER_DIGS = {key: f'{val}_sec' for key, val in DIGS.items()} REV_DIGS = {'F1D': 1, 'F2D': 2, 'F3D': 3, 'SD': 22, 'L2D': -2} LEN_TEST = {1: 9, 2: 90, 3: 900, 22: 10, -2: 100} TEST_NAMES = {'F1D': 'First Digit Test', 'F2D': 'First Two Digits Test', 'F3D': 'First Three Digits Test', 'SD': 'Second Digit Test', 'L2D': 'Last Two Digits Test', 'F1D_sec': 'First Digit Second Order Test', 'F2D_sec': 'First Two Digits Second Order Test', 'F3D_sec': 'First Three Digits Second Order Test', 'SD_sec': 'Second Digit Second Order Test', 'L2D_sec': 'Last Two Digits Second Order Test', 'F1D_Summ': 'First Digit Summation Test', 'F2D_Summ': 'First Two Digits Summation Test', 'F3D_Summ': 'First Three Digits Summation Test', 'Mantissas': 'Mantissas Test' } # Critical values for Mean Absolute Deviation MAD_CONFORM = {1: [0.006, 0.012, 0.015], 2: [0.0012, 0.0018, 0.0022], 3: [0.00036, 0.00044, 0.00050], 22: [0.008, 0.01, 0.012], -2: None, 'F1D': 'First Digit', 'F2D': 'First Two Digits', 'F3D': 'First Three Digits', 'SD': 'Second Digits'} # Color for the plotting COLORS = {'m': '#00798c', 'b': '#E2DCD8', 's': '#9c3848', 'af': '#edae49', 'ab': '#33658a', 'h': '#d1495b', 'h2': '#f64740', 't': '#16DB93'} # Critical Z-scores according to the confindence levels CONFS = {None: None, 80: 1.285, 85: 1.435, 90: 1.645, 95: 1.96, 99: 2.576, 99.9: 3.29, 99.99: 3.89, 99.999: 4.417, 99.9999: 4.892, 99.99999: 5.327} P_VALUES = {None: 'None', 80: '0.2', 85: '0.15', 90: '0.1', 95: '0.05', 99: '0.01', 99.9: '0.001', 99.99: '0.0001', 99.999: '0.00001', 99.9999: '0.000001', 99.99999: '0.0000001'} # Critical Chi-Square values according to the tests degrees of freedom # and confidence levels CRIT_CHI2 = {8: {80: 11.03, 85: 12.027, 90: 13.362, 95: 15.507, 99: 20.090, 99.9: 26.124, 99.99: 31.827, None: None, 99.999: 37.332, 99.9999: 42.701, 99.99999: 47.972}, 9: {80: 12.242, 85: 13.288, 90: 14.684, 95: 16.919, 99: 21.666, 99.9: 27.877, 99.99: 33.72, None: None, 99.999: 39.341, 99.9999: 44.811, 99.99999: 50.172}, 89: {80: 99.991, 85: 102.826, 90: 106.469, 95: 112.022, 99: 122.942, 99.9: 135.978, 99.99: 147.350, 99.999: 157.702, 99.9999: 167.348, 99.99999: 176.471, None: None}, 99: {80: 110.607, 85: 113.585, 90: 117.407, 95: 123.225, 99: 134.642, 99.9: 148.230, 99.99: 160.056, 99.999: 170.798, 99.9999: 180.792, 99.99999: 190.23, None: None}, 899: {80: 934.479, 85: 942.981, 90: 953.752, 95: 969.865, 99: 1000.575, 99.9: 1035.753, 99.99: 1065.314, 99.999: 1091.422, 99.9999: 1115.141, 99.99999: 1137.082, None: None} } # Critical Kolmogorov-Smirnov values according to the confidence levels # These values are yet to be divided by the square root of the sample size CRIT_KS = {80: 1.075, 85: 1.139, 90: 1.225, 95: 1.36, 99: 1.63, 99.9: 1.95, 99.99: 2.23, 99.999: 2.47, 99.9999: 2.7, 99.99999: 2.9, None: None}
digs = {1: 'F1D', 2: 'F2D', 3: 'F3D', 22: 'SD', -2: 'L2D'} sec_order_digs = {key: f'{val}_sec' for (key, val) in DIGS.items()} rev_digs = {'F1D': 1, 'F2D': 2, 'F3D': 3, 'SD': 22, 'L2D': -2} len_test = {1: 9, 2: 90, 3: 900, 22: 10, -2: 100} test_names = {'F1D': 'First Digit Test', 'F2D': 'First Two Digits Test', 'F3D': 'First Three Digits Test', 'SD': 'Second Digit Test', 'L2D': 'Last Two Digits Test', 'F1D_sec': 'First Digit Second Order Test', 'F2D_sec': 'First Two Digits Second Order Test', 'F3D_sec': 'First Three Digits Second Order Test', 'SD_sec': 'Second Digit Second Order Test', 'L2D_sec': 'Last Two Digits Second Order Test', 'F1D_Summ': 'First Digit Summation Test', 'F2D_Summ': 'First Two Digits Summation Test', 'F3D_Summ': 'First Three Digits Summation Test', 'Mantissas': 'Mantissas Test'} mad_conform = {1: [0.006, 0.012, 0.015], 2: [0.0012, 0.0018, 0.0022], 3: [0.00036, 0.00044, 0.0005], 22: [0.008, 0.01, 0.012], -2: None, 'F1D': 'First Digit', 'F2D': 'First Two Digits', 'F3D': 'First Three Digits', 'SD': 'Second Digits'} colors = {'m': '#00798c', 'b': '#E2DCD8', 's': '#9c3848', 'af': '#edae49', 'ab': '#33658a', 'h': '#d1495b', 'h2': '#f64740', 't': '#16DB93'} confs = {None: None, 80: 1.285, 85: 1.435, 90: 1.645, 95: 1.96, 99: 2.576, 99.9: 3.29, 99.99: 3.89, 99.999: 4.417, 99.9999: 4.892, 99.99999: 5.327} p_values = {None: 'None', 80: '0.2', 85: '0.15', 90: '0.1', 95: '0.05', 99: '0.01', 99.9: '0.001', 99.99: '0.0001', 99.999: '0.00001', 99.9999: '0.000001', 99.99999: '0.0000001'} crit_chi2 = {8: {80: 11.03, 85: 12.027, 90: 13.362, 95: 15.507, 99: 20.09, 99.9: 26.124, 99.99: 31.827, None: None, 99.999: 37.332, 99.9999: 42.701, 99.99999: 47.972}, 9: {80: 12.242, 85: 13.288, 90: 14.684, 95: 16.919, 99: 21.666, 99.9: 27.877, 99.99: 33.72, None: None, 99.999: 39.341, 99.9999: 44.811, 99.99999: 50.172}, 89: {80: 99.991, 85: 102.826, 90: 106.469, 95: 112.022, 99: 122.942, 99.9: 135.978, 99.99: 147.35, 99.999: 157.702, 99.9999: 167.348, 99.99999: 176.471, None: None}, 99: {80: 110.607, 85: 113.585, 90: 117.407, 95: 123.225, 99: 134.642, 99.9: 148.23, 99.99: 160.056, 99.999: 170.798, 99.9999: 180.792, 99.99999: 190.23, None: None}, 899: {80: 934.479, 85: 942.981, 90: 953.752, 95: 969.865, 99: 1000.575, 99.9: 1035.753, 99.99: 1065.314, 99.999: 1091.422, 99.9999: 1115.141, 99.99999: 1137.082, None: None}} crit_ks = {80: 1.075, 85: 1.139, 90: 1.225, 95: 1.36, 99: 1.63, 99.9: 1.95, 99.99: 2.23, 99.999: 2.47, 99.9999: 2.7, 99.99999: 2.9, None: None}
# model settings model = dict( type='NPID', neg_num=65536, backbone=dict( type='ResNet', depth=50, num_stages=4, out_indices=(3,), # no conv-1, x-1: stage-x norm_cfg=dict(type='SyncBN'), style='pytorch'), neck=dict( type='LinearNeck', in_channels=2048, out_channels=128, with_avg_pool=True), head=dict(type='ContrastiveHead', temperature=0.07), memory_bank=dict( type='SimpleMemory', length=1281167, feat_dim=128, momentum=0.5) )
model = dict(type='NPID', neg_num=65536, backbone=dict(type='ResNet', depth=50, num_stages=4, out_indices=(3,), norm_cfg=dict(type='SyncBN'), style='pytorch'), neck=dict(type='LinearNeck', in_channels=2048, out_channels=128, with_avg_pool=True), head=dict(type='ContrastiveHead', temperature=0.07), memory_bank=dict(type='SimpleMemory', length=1281167, feat_dim=128, momentum=0.5))
#!/usr/bin/env python3 # coding:utf-8 def estimate_area_from_stock(stock) : return 10000000000;
def estimate_area_from_stock(stock): return 10000000000
# CFG-RATE (0x06,0x08) packet (without header 0xB5,0x62) # payload length - 6 (little endian format), update rate 200ms, cycles - 1, reference - UTC (0) packet = [] packet = input('What is the payload? ') CK_A,CK_B = 0, 0 for i in range(len(packet)): CK_A = CK_A + packet[i] CK_B = CK_B + CK_A # ensure unsigned byte range CK_A = CK_A & 0xFF CK_B = CK_B & 0xFF print ("UBX packet checksum:", ("0x%02X,0x%02X" % (CK_A,CK_B)))
packet = [] packet = input('What is the payload? ') (ck_a, ck_b) = (0, 0) for i in range(len(packet)): ck_a = CK_A + packet[i] ck_b = CK_B + CK_A ck_a = CK_A & 255 ck_b = CK_B & 255 print('UBX packet checksum:', '0x%02X,0x%02X' % (CK_A, CK_B))
class Course: def __init__(self, **kw): self.name = kw.pop('name') #def full_name(self): # return self.first_name + " " + self.last_name
class Course: def __init__(self, **kw): self.name = kw.pop('name')
'''Extracts the data from the json content. Outputs results in a dataframe''' def get_play_df(content): events = {} event_num = 0 home = content['gameData']['teams']['home']['id'] away = content['gameData']['teams']['away']['id'] for i in range(len(content['liveData']['plays']['allPlays'])): temp = {} if content['liveData']['plays']['allPlays'][i]['result']['event'] == 'Penalty': temp['event_type'] = 'Penalty' temp['penalty_minutes'] = content['liveData']['plays']['allPlays'][i]['result']['penaltyMinutes'] temp['time_of_event'] = content['liveData']['plays']['allPlays'][i]['about']['periodTime'] temp['period'] = content['liveData']['plays']['allPlays'][i]['about']['ordinalNum'] temp['current_score'] = content['liveData']['plays']['allPlays'][i]['about']['goals'] if content['liveData']['plays']['allPlays'][i]['team']['id'] == home: temp['team'] = 'home' elif content['liveData']['plays']['allPlays'][i]['team']['id'] == away: temp['team'] = 'away' else: temp['team'] = 'error' events[event_num] = temp event_num += 1 if content['liveData']['plays']['allPlays'][i]['result']['event'] in ['Blocked Shot', 'Goal', 'Missed Shot', 'Shot']: temp['event_type'] = content['liveData']['plays']['allPlays'][i]['result']['event'] temp['penalty_minutes'] = 0 temp['time_of_event'] = content['liveData']['plays']['allPlays'][i]['about']['periodTime'] temp['period'] = content['liveData']['plays']['allPlays'][i]['about']['ordinalNum'] temp['current_score'] = content['liveData']['plays']['allPlays'][i]['about']['goals'] if content['liveData']['plays']['allPlays'][i]['team']['id'] == home: temp['team'] = 'home' elif content['liveData']['plays']['allPlays'][i]['team']['id'] == away: temp['team'] = 'away' else: temp['team'] = 'error' events[event_num] = temp event_num += 1 events_df = pd.DataFrame(events) events_df_t = events_df.transpose() return events_df_t ''' Helper function to get time of game events in seconds''' def get_seconds(time, period): if period == 'OT': period = '4th' elif period == 'SO': return 3605 seconds = int(time[3:]) minutes = int(time[0:2]) game_period = int(period[0]) -1 timestamp = (20 * 60 * game_period) + (60 * minutes) + seconds return timestamp ''' Main function that determines shots, and if there are any active penalties (which would negate the shot being counted towards the advanced stats). The function returns the shot counts for each team''' def count_all_shots(events_df_t): home_shots = 0 away_shots = 0 home_blocked_shots = 0 away_blocked_shots = 0 active_penalty = False home_penalty = False away_penalty = False two_man_advtg = False four_v_four = False major_penalty = False shot_types = ['Blocked Shot', 'Goal', 'Missed Shot', 'Shot'] for i in range(len(events_df_t)): event = events_df_t['event_type'][i] event_time = events_df_t['timestamp'][i] if events_df_t['period'][i] == 'SO': return home_shots, away_shots, home_blocked_shots, away_blocked_shots if major_penalty == True: if end_penalty_time <= event_time: major_penalty = False if active_penalty == True: if (event in shot_types) & (end_penalty_time <= event_time): active_penalty = False four_v_four = False elif event == 'Penalty': if ((events_df_t['team'][i] == 'home') & (home_penalty == True) or ((events_df_t['team'][i] == 'away') & (away_penalty == True))): added_time = 60 * events_df_t['penalty_minutes'][i] end_penalty_time = event_time + added_time two_man_advtg = True else: # Currently does not take into account 4v4 as even strength, will fix later added_time = 60 * events_df_t['penalty_minutes'][i] end_penalty_time = event_time + added_time four_v_four = True if (event in shot_types) & (active_penalty == False): if events_df_t['team'][i] == 'home': if event == 'Blocked Shot': home_blocked_shots += 1 else: home_shots += 1 else: if event == 'Blocked Shot': away_blocked_shots += 1 else: away_shots += 1 elif (event == 'Penalty') & (active_penalty == False): active_penalty = True if events_df_t['penalty_minutes'][i] >= 5: major_penalty = True if events_df_t['team'][i] == 'home': home_penalty = True else: away_penalty = True added_time = 60 * events_df_t['penalty_minutes'][i] end_penalty_time = event_time + added_time elif (event == 'Goal') & (active_penalty == True) & (major_penalty == False): if two_man_advtg == True: two_man_advtg = False elif four_v_four == True: if events_df_t['team'][i] == 'home': away_penalty = False elif events_df_t['team'][i] == 'away': home_penalty = False four_v_four = False else: active_penalty = False home_penalty = False away_penalty = False return home_shots, away_shots, home_blocked_shots, away_blocked_shots '''Based on the output of the above function, this calculates that actual advanced Corsi and Fenwick stats''' def calc_advanced_stats(home_shots, away_shots, home_blocked_shots, away_blocked_shots): corsi_for = home_shots + home_blocked_shots corsi_against = away_shots + away_blocked_shots cf_pct = corsi_for/(corsi_for + corsi_against) ca_pct = corsi_against/(corsi_for + corsi_against) fenwick_for = home_shots fenwick_against = away_shots ff_pct = home_shots/(home_shots + away_shots) fa_pct = away_shots/(home_shots + away_shots) return corsi_for, corsi_against, cf_pct, ca_pct, fenwick_for, fenwick_against, ff_pct, fa_pct '''Performs the API call to the NHL API''' def get_api_data(game_id): # Call API URL = f"https://statsapi.web.nhl.com/api/v1/game/{game_id}/feed/live" # sending get request and saving the response as response object r = re.get(url=URL) content = r.json() return content '''Main function to call API. Uses game IDs in the Kaggle dataset to perform the call''' def get_game_data(game_list): game_data_dict = {} i = 0 for game_id in tqdm(game_list): try: game_data_dict[game_id] = get_api_data(game_id) except Exception as e: print('\n======EXCEPTION=====') print(e) game_data_dict[game_id] = 0 continue # Saving checkpoint if i % 100 == 0: print(f"Completed {i} iterations") #filename = f'game_data_checkpoint_{i}.sav' #pickle.dump(game_data_dict, open(filename, 'wb')) i+=1 return game_data_dict
"""Extracts the data from the json content. Outputs results in a dataframe""" def get_play_df(content): events = {} event_num = 0 home = content['gameData']['teams']['home']['id'] away = content['gameData']['teams']['away']['id'] for i in range(len(content['liveData']['plays']['allPlays'])): temp = {} if content['liveData']['plays']['allPlays'][i]['result']['event'] == 'Penalty': temp['event_type'] = 'Penalty' temp['penalty_minutes'] = content['liveData']['plays']['allPlays'][i]['result']['penaltyMinutes'] temp['time_of_event'] = content['liveData']['plays']['allPlays'][i]['about']['periodTime'] temp['period'] = content['liveData']['plays']['allPlays'][i]['about']['ordinalNum'] temp['current_score'] = content['liveData']['plays']['allPlays'][i]['about']['goals'] if content['liveData']['plays']['allPlays'][i]['team']['id'] == home: temp['team'] = 'home' elif content['liveData']['plays']['allPlays'][i]['team']['id'] == away: temp['team'] = 'away' else: temp['team'] = 'error' events[event_num] = temp event_num += 1 if content['liveData']['plays']['allPlays'][i]['result']['event'] in ['Blocked Shot', 'Goal', 'Missed Shot', 'Shot']: temp['event_type'] = content['liveData']['plays']['allPlays'][i]['result']['event'] temp['penalty_minutes'] = 0 temp['time_of_event'] = content['liveData']['plays']['allPlays'][i]['about']['periodTime'] temp['period'] = content['liveData']['plays']['allPlays'][i]['about']['ordinalNum'] temp['current_score'] = content['liveData']['plays']['allPlays'][i]['about']['goals'] if content['liveData']['plays']['allPlays'][i]['team']['id'] == home: temp['team'] = 'home' elif content['liveData']['plays']['allPlays'][i]['team']['id'] == away: temp['team'] = 'away' else: temp['team'] = 'error' events[event_num] = temp event_num += 1 events_df = pd.DataFrame(events) events_df_t = events_df.transpose() return events_df_t ' Helper function to get time of game events in seconds' def get_seconds(time, period): if period == 'OT': period = '4th' elif period == 'SO': return 3605 seconds = int(time[3:]) minutes = int(time[0:2]) game_period = int(period[0]) - 1 timestamp = 20 * 60 * game_period + 60 * minutes + seconds return timestamp ' Main function that determines shots, and if there are any active penalties (which would negate\nthe shot being counted towards the advanced stats). The function returns the shot counts for each team' def count_all_shots(events_df_t): home_shots = 0 away_shots = 0 home_blocked_shots = 0 away_blocked_shots = 0 active_penalty = False home_penalty = False away_penalty = False two_man_advtg = False four_v_four = False major_penalty = False shot_types = ['Blocked Shot', 'Goal', 'Missed Shot', 'Shot'] for i in range(len(events_df_t)): event = events_df_t['event_type'][i] event_time = events_df_t['timestamp'][i] if events_df_t['period'][i] == 'SO': return (home_shots, away_shots, home_blocked_shots, away_blocked_shots) if major_penalty == True: if end_penalty_time <= event_time: major_penalty = False if active_penalty == True: if (event in shot_types) & (end_penalty_time <= event_time): active_penalty = False four_v_four = False elif event == 'Penalty': if (events_df_t['team'][i] == 'home') & (home_penalty == True) or (events_df_t['team'][i] == 'away') & (away_penalty == True): added_time = 60 * events_df_t['penalty_minutes'][i] end_penalty_time = event_time + added_time two_man_advtg = True else: added_time = 60 * events_df_t['penalty_minutes'][i] end_penalty_time = event_time + added_time four_v_four = True if (event in shot_types) & (active_penalty == False): if events_df_t['team'][i] == 'home': if event == 'Blocked Shot': home_blocked_shots += 1 else: home_shots += 1 elif event == 'Blocked Shot': away_blocked_shots += 1 else: away_shots += 1 elif (event == 'Penalty') & (active_penalty == False): active_penalty = True if events_df_t['penalty_minutes'][i] >= 5: major_penalty = True if events_df_t['team'][i] == 'home': home_penalty = True else: away_penalty = True added_time = 60 * events_df_t['penalty_minutes'][i] end_penalty_time = event_time + added_time elif (event == 'Goal') & (active_penalty == True) & (major_penalty == False): if two_man_advtg == True: two_man_advtg = False elif four_v_four == True: if events_df_t['team'][i] == 'home': away_penalty = False elif events_df_t['team'][i] == 'away': home_penalty = False four_v_four = False else: active_penalty = False home_penalty = False away_penalty = False return (home_shots, away_shots, home_blocked_shots, away_blocked_shots) 'Based on the output of the above function, this calculates that actual advanced Corsi and Fenwick stats' def calc_advanced_stats(home_shots, away_shots, home_blocked_shots, away_blocked_shots): corsi_for = home_shots + home_blocked_shots corsi_against = away_shots + away_blocked_shots cf_pct = corsi_for / (corsi_for + corsi_against) ca_pct = corsi_against / (corsi_for + corsi_against) fenwick_for = home_shots fenwick_against = away_shots ff_pct = home_shots / (home_shots + away_shots) fa_pct = away_shots / (home_shots + away_shots) return (corsi_for, corsi_against, cf_pct, ca_pct, fenwick_for, fenwick_against, ff_pct, fa_pct) 'Performs the API call to the NHL API' def get_api_data(game_id): url = f'https://statsapi.web.nhl.com/api/v1/game/{game_id}/feed/live' r = re.get(url=URL) content = r.json() return content 'Main function to call API. Uses game IDs in the Kaggle dataset to perform the call' def get_game_data(game_list): game_data_dict = {} i = 0 for game_id in tqdm(game_list): try: game_data_dict[game_id] = get_api_data(game_id) except Exception as e: print('\n======EXCEPTION=====') print(e) game_data_dict[game_id] = 0 continue if i % 100 == 0: print(f'Completed {i} iterations') i += 1 return game_data_dict
def raio_simplificado(lista_composta): for elemento in lista_composta: yield from elemento lista_composta = [ [1, 2, 3], [4, 5, 6], [7, 8, 9] ]
def raio_simplificado(lista_composta): for elemento in lista_composta: yield from elemento lista_composta = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
#trying something new uridine_mods_paths = {'U_to_DDusA' : {'upstream_rxns' : ['U'], 'enzymes' : {20:['DusA_mono'], '20A':['DusA_mono'], 17:['DusA_mono'], 16:['DusA_mono']}}, 'U_to_DDusgen' : {'upstream_rxns' : ['U'], 'enzymes' : {20:['generic_Dus'], '20A':['generic_Dus'], 17:['generic_Dus'], 16:['generic_Dus']}}, 'U_to_Um' : {'upstream_rxns' : ['U'], 'enzymes' : {2552:['RrmJ_mono'], 32 : ['TrmJ_dim'], 34 :['trmL_dim' ]}}, 'U_to_Y' : {'upstream_rxns' : ['U'], 'enzymes' : {32:['RluA_mono'], 746 : ['RluA_mono'], 2605:['RluB_mono'], 2504 :['RluC_mono'], 2580:['RluC_mono'], 995 :[ 'RluC_mono'], 1915:['RluD_mono_mod_1:mg2'], 1911:['RluD_mono_mod_1:mg2'], 1917:['RluD_mono_mod_1:mg2'], 2457 :['YmfC_mono'], 2604 :[ 'YjbC_mono'], 13 :[ 'TruD_mono'], 65 :[ 'YqcB_mono'], 55 : ['TruB_mono'], 38 : ['TruA_dim'], 39 :[ 'TruA_dim'], 40 : ['TruA_dim'], 516 :['RsuA_mono']} }, 'U_to_acp3U' : {'upstream_rxns' : ['U'], 'enzymes' : {47:['enzyme_unknown']}}, 'U_to_cmnm5U' : {'upstream_rxns' : ['U'], 'enzymes' : {34:['MnmEG_cplx_mod_fad_mod_2:k']}}, 'U_to_ho5U' : {'upstream_rxns' : ['U'], 'enzymes' : {34:['enzyme_unknown2']}}, 'U_to_m3U' : {'upstream_rxns' : ['U'], 'enzymes' : {1498:['YggJ_dim']}}, 'U_to_m5U' : {'upstream_rxns' : ['U'], 'enzymes' : {747:['RumB_mono_mod_1:4fe4s'], 1939:['RumA_mono_mod_1:4fe4s'], 54 :['TrmA_mono'] }}, 'U_to_nm5U' : {'upstream_rxns' : ['U'], 'enzymes' : {34:['MnmEG_cplx_mod_fad_mod_2:k']}}, 'U_to_s2U' : {'upstream_rxns' : ['U'], 'enzymes' : {34:['TrmU_mono']}}, 'U_to_s4U' : {'upstream_rxns' : ['U'], 'enzymes' : {8:['ThiI_mono']}}, 'ho5U_to_mo5U' : {'upstream_rxns' : ['U_to_ho5U'], 'enzymes' : {34:['YecP_mono']}}, 's2U_to_nm5s2U' : {'upstream_rxns' : ['U_to_s2U'], 'enzymes' : {34:['MnmEG_cplx_mod_fad_mod_2:k']}}, 'cmnm5U_to_cmnm5s2U' : {'upstream_rxns' : ['U_to_cmnm5U'], 'enzymes' : {34:['TrmU_mono']}}, 's2U_to_ges2U' : {'upstream_rxns' : ['U_to_s2U'], 'enzymes' : {34:['YbbB_dim']}}, 's2U_to_se2U' : {'upstream_rxns' : ['U_to_s2U'], 'enzymes' : {34:['YbbB_dim']}}, # this is a guess! 's2U_to_cmnm5s2U' : {'upstream_rxns' : ['U_to_s2U'], 'enzymes' : {34:['MnmEG_cplx_mod_fad_mod_2:k']}}, 'cmnm5s2U_to_cmnm5se2U' : {'upstream_rxns' : ['s2U_to_cmnm5s2U','cmnm5U_to_cmnm5s2U'], 'enzymes' : {34:['YbbB_dim']}}, 'mnm5s2U_to_mnm5ges2U' : {'upstream_rxns' : ['nm5s2U_to_mnm5s2U','mnm5U_to_mnm5s2U'], 'enzymes' : {34:['YbbB_dim']}}, 'cmnm5se2U_to_nm5se2U' : {'upstream_rxns' : ['se2U_to_cmnm5se2U','cmnm5s2U_to_cmnm5se2U'], 'enzymes' : {34:['MnmC_mono_mod_fad']}}, 'Y_to_m3Y' : {'upstream_rxns' : ['U_to_Y'], 'enzymes' : {1915:['RlmH_dim']}}, 'se2U_to_cmnm5se2U' : {'upstream_rxns' : ['s2U_to_se2U'], 'enzymes' : {34:['MnmEG_cplx_mod_fad_mod_2:k']}}, 'cmnm5s2U_to_nm5s2U' : {'upstream_rxns' : ['s2U_to_cmnm5s2U','cmnm5U_to_cmnm5s2U'], 'enzymes' : {34:['MnmC_mono_mod_fad']}}, 'nm5se2U_to_mnm5se2U' : {'upstream_rxns' : ['cmnm5se2U_to_nm5se2U', 'se2U_to_nm5se2U' ,'nm5s2U_to_nm5se2U'], 'enzymes' : {34:['MnmC_mono_mod_fad']}}, 'mnm5s2U_to_mnm5se2U' : {'upstream_rxns' : ['nm5s2U_to_mnm5s2U','mnm5U_to_mnm5s2U'], 'enzymes' : {34:['YbbB_dim']}}, 'mnm5U_to_mnm5s2U' : {'upstream_rxns' : ['nm5U_to_mnm5U'], 'enzymes' : {34:['TrmU_mono']}}, 'nm5s2U_to_nm5se2U' : {'upstream_rxns' : ['s2U_to_nm5s2U','cmnm5s2U_to_nm5s2U'], 'enzymes' : {34:['YbbB_dim']}}, 'nm5s2U_to_mnm5s2U' : {'upstream_rxns' : ['s2U_to_nm5s2U','cmnm5s2U_to_nm5s2U'], 'enzymes' : {34:['MnmC_mono_mod_fad']}}, 'se2U_to_nm5se2U' : {'upstream_rxns' : ['s2U_to_se2U'], 'enzymes' : {34:['MnmEG_cplx_mod_fad_mod_2:k']}}, 'cmnm5U_to_nm5U' : {'upstream_rxns' : ['U_to_cmnm5U'], 'enzymes' : {34:['MnmC_mono_mod_fad']}}, 'cmnm5U_to_cmnm5Um' : {'upstream_rxns' : ['U_to_cmnm5U'], 'enzymes' : {34:['trmL_dim']}}, 'Um_to_cmnm5Um' : {'upstream_rxns' : ['U_to_Um'], 'enzymes' : {34:['MnmEG_cplx_mod_fad_mod_2:k']}}, 'nm5U_to_mnm5U' : {'upstream_rxns' : ['U_to_nm5U', 'cmnm5U_to_nm5U'], 'enzymes' : {34:['MnmC_mono_mod_fad']}}, 'ho5U_to_cmo5U' : {'upstream_rxns' : ['U_to_ho5U'], 'enzymes' : {34:['YecP_mono']} }} cytidine_mods_paths = {'C_to_s2C' : {'upstream_rxns' : ['C'], 'enzymes' : {32:['YdaO_mono']}}, 'C_to_m5C' : {'upstream_rxns' : ['C'], 'enzymes' : {1962:['RlmI_dim'], 967 : ['RsmB_mono'], 1407 : ['RsmF_mono']}}, 'C_to_Cm' : {'upstream_rxns' : ['C'], 'enzymes' : {2498:['RlmM_mono'], 1402:['RsmI_mono'], 32:['TrmJ_dim'], 34 : ['trmL_dim']}}, 'C_to_ac4C' : {'upstream_rxns' : ['C'], 'enzymes' : {34:['TmcA_mono']}}, 'Cm_to_m4Cm' : {'upstream_rxns' : ['C_to_Cm'], 'enzymes' : {1402:['RsmH_mono']}}, 'm4Cm_to_m44Cm' : {'upstream_rxns' : ['Cm_to_m4Cm','m4C_to_m4Cm'], 'enzymes' : {1402:['RsmH_mono']}}, 'C_to_m4C' : {'upstream_rxns' : ['C'], 'enzymes' : {1402:['RsmH_mono']}}, 'm4C_to_m44C' : {'upstream_rxns' : ['C_to_m4C'], 'enzymes' : {1402:['RsmI_mono']}}, 'm4C_to_m4Cm' : {'upstream_rxns' : ['C_to_m4C'], 'enzymes' : {1402:['RsmH_mono']}}, 'C_to_k2C' : {'upstream_rxns' : ['C'], 'enzymes' : {34:['TilS_mono']}} } adenine_mods_paths ={'A_to_m2A' : {'upstream_rxns' : ['A'], 'enzymes' : {37:['RlmN_mono_mod_1:4fe4s'], 2503:['RlmN_mono_mod_1:4fe4s']}}, 'A_to_m6A' : {'upstream_rxns' : ['A'], 'enzymes' : {2058:['enzyme_new_ErmBC'], 1618:['RlmF_mono'], 2030:['enzyme_new_RlmJ'], 1518:['KsgA_mono'], 1519:['KsgA_mono'], 37:['YfiC_mono']}}, 'm6A_to_m66A' : {'upstream_rxns' : ['A_to_m6A'], 'enzymes' : { 1518:['KsgA_mono'], 1519:['KsgA_mono']}}, 'A_to_I' : {'upstream_rxns' : ['A'], 'enzymes' : {34:['TadA_dim_mod_2:zn2']}}, 'A_to_m1A' : {'upstream_rxns' : ['A'], 'enzymes' : {1408:['enzyme_new_NpmA']}}, 'A_to_i6A' : {'upstream_rxns' : ['A'], 'enzymes' : {37:['MiaA_dim_mod_2:mg2']}}, 'i6A_to_ms2i6A' : {'upstream_rxns' : ['A_to_i6A'], 'enzymes' : {37:['MiaB_mono_mod_1:4fe4s']}}, 'A_to_t6A' : {'upstream_rxns' : ['A'], 'enzymes' : {37:['TsaBCDE']}}, 't6A_to_m6t6A' : {'upstream_rxns' : ['A_to_t6A'], 'enzymes' : {37:['EG11503_MONOMER']}}, 't6A_to_ct6A' : {'upstream_rxns' : ['A_to_t6A'], 'enzymes' : {37:['TcdA_dim']}} } guanine_mods_paths={'G_to_m7G' : {'upstream_rxns' : ['G'], 'enzymes' : {2069:['RlmL_dim'], 1405:['enzyme_new_RmtB'], 527:['RsmG_mono'], 46:['YggH_mono']}}, 'G_to_m2G' : {'upstream_rxns' : ['G'], 'enzymes' : {1835:['RlmG_mono'], 2445:['RlmL_dim'], 1207:['RsmC_mono'], 966:['RsmD_mono'], 1516:['enzyme_new_RsmJ'] }}, 'G_to_Gm' : {'upstream_rxns' : ['G'], 'enzymes' : {2251:['RlmB_dim'], 18:['TrmH_dim']}}, 'G_to_m1G' : {'upstream_rxns' : ['G'], 'enzymes' : {745:['RrmA_dim_mod_2:zn2'], 37:['TrmD_dim']}}, 'G_to_preq1tRNA' : {'upstream_rxns' : ['G'], 'enzymes' : {34:['Tgt_hexa_mod_6:zn2']}}, 'preq1tRNA_to_oQtRNA' : {'upstream_rxns' : ['G_to_preq1tRNA'], 'enzymes' : {34:['QueA_mono']}}, 'oQtRNA_to_QtRNA' : {'upstream_rxns' : ['preq1tRNA_to_oQtRNA'], 'enzymes' : {34:['QueG_mono_mod_adocbl']}}, 'QtRNA_to_gluQtRNA' : {'upstream_rxns' : ['oQtRNA_to_QtRNA'], 'enzymes' : {34:['YadB_mono']}} }
uridine_mods_paths = {'U_to_DDusA': {'upstream_rxns': ['U'], 'enzymes': {20: ['DusA_mono'], '20A': ['DusA_mono'], 17: ['DusA_mono'], 16: ['DusA_mono']}}, 'U_to_DDusgen': {'upstream_rxns': ['U'], 'enzymes': {20: ['generic_Dus'], '20A': ['generic_Dus'], 17: ['generic_Dus'], 16: ['generic_Dus']}}, 'U_to_Um': {'upstream_rxns': ['U'], 'enzymes': {2552: ['RrmJ_mono'], 32: ['TrmJ_dim'], 34: ['trmL_dim']}}, 'U_to_Y': {'upstream_rxns': ['U'], 'enzymes': {32: ['RluA_mono'], 746: ['RluA_mono'], 2605: ['RluB_mono'], 2504: ['RluC_mono'], 2580: ['RluC_mono'], 995: ['RluC_mono'], 1915: ['RluD_mono_mod_1:mg2'], 1911: ['RluD_mono_mod_1:mg2'], 1917: ['RluD_mono_mod_1:mg2'], 2457: ['YmfC_mono'], 2604: ['YjbC_mono'], 13: ['TruD_mono'], 65: ['YqcB_mono'], 55: ['TruB_mono'], 38: ['TruA_dim'], 39: ['TruA_dim'], 40: ['TruA_dim'], 516: ['RsuA_mono']}}, 'U_to_acp3U': {'upstream_rxns': ['U'], 'enzymes': {47: ['enzyme_unknown']}}, 'U_to_cmnm5U': {'upstream_rxns': ['U'], 'enzymes': {34: ['MnmEG_cplx_mod_fad_mod_2:k']}}, 'U_to_ho5U': {'upstream_rxns': ['U'], 'enzymes': {34: ['enzyme_unknown2']}}, 'U_to_m3U': {'upstream_rxns': ['U'], 'enzymes': {1498: ['YggJ_dim']}}, 'U_to_m5U': {'upstream_rxns': ['U'], 'enzymes': {747: ['RumB_mono_mod_1:4fe4s'], 1939: ['RumA_mono_mod_1:4fe4s'], 54: ['TrmA_mono']}}, 'U_to_nm5U': {'upstream_rxns': ['U'], 'enzymes': {34: ['MnmEG_cplx_mod_fad_mod_2:k']}}, 'U_to_s2U': {'upstream_rxns': ['U'], 'enzymes': {34: ['TrmU_mono']}}, 'U_to_s4U': {'upstream_rxns': ['U'], 'enzymes': {8: ['ThiI_mono']}}, 'ho5U_to_mo5U': {'upstream_rxns': ['U_to_ho5U'], 'enzymes': {34: ['YecP_mono']}}, 's2U_to_nm5s2U': {'upstream_rxns': ['U_to_s2U'], 'enzymes': {34: ['MnmEG_cplx_mod_fad_mod_2:k']}}, 'cmnm5U_to_cmnm5s2U': {'upstream_rxns': ['U_to_cmnm5U'], 'enzymes': {34: ['TrmU_mono']}}, 's2U_to_ges2U': {'upstream_rxns': ['U_to_s2U'], 'enzymes': {34: ['YbbB_dim']}}, 's2U_to_se2U': {'upstream_rxns': ['U_to_s2U'], 'enzymes': {34: ['YbbB_dim']}}, 's2U_to_cmnm5s2U': {'upstream_rxns': ['U_to_s2U'], 'enzymes': {34: ['MnmEG_cplx_mod_fad_mod_2:k']}}, 'cmnm5s2U_to_cmnm5se2U': {'upstream_rxns': ['s2U_to_cmnm5s2U', 'cmnm5U_to_cmnm5s2U'], 'enzymes': {34: ['YbbB_dim']}}, 'mnm5s2U_to_mnm5ges2U': {'upstream_rxns': ['nm5s2U_to_mnm5s2U', 'mnm5U_to_mnm5s2U'], 'enzymes': {34: ['YbbB_dim']}}, 'cmnm5se2U_to_nm5se2U': {'upstream_rxns': ['se2U_to_cmnm5se2U', 'cmnm5s2U_to_cmnm5se2U'], 'enzymes': {34: ['MnmC_mono_mod_fad']}}, 'Y_to_m3Y': {'upstream_rxns': ['U_to_Y'], 'enzymes': {1915: ['RlmH_dim']}}, 'se2U_to_cmnm5se2U': {'upstream_rxns': ['s2U_to_se2U'], 'enzymes': {34: ['MnmEG_cplx_mod_fad_mod_2:k']}}, 'cmnm5s2U_to_nm5s2U': {'upstream_rxns': ['s2U_to_cmnm5s2U', 'cmnm5U_to_cmnm5s2U'], 'enzymes': {34: ['MnmC_mono_mod_fad']}}, 'nm5se2U_to_mnm5se2U': {'upstream_rxns': ['cmnm5se2U_to_nm5se2U', 'se2U_to_nm5se2U', 'nm5s2U_to_nm5se2U'], 'enzymes': {34: ['MnmC_mono_mod_fad']}}, 'mnm5s2U_to_mnm5se2U': {'upstream_rxns': ['nm5s2U_to_mnm5s2U', 'mnm5U_to_mnm5s2U'], 'enzymes': {34: ['YbbB_dim']}}, 'mnm5U_to_mnm5s2U': {'upstream_rxns': ['nm5U_to_mnm5U'], 'enzymes': {34: ['TrmU_mono']}}, 'nm5s2U_to_nm5se2U': {'upstream_rxns': ['s2U_to_nm5s2U', 'cmnm5s2U_to_nm5s2U'], 'enzymes': {34: ['YbbB_dim']}}, 'nm5s2U_to_mnm5s2U': {'upstream_rxns': ['s2U_to_nm5s2U', 'cmnm5s2U_to_nm5s2U'], 'enzymes': {34: ['MnmC_mono_mod_fad']}}, 'se2U_to_nm5se2U': {'upstream_rxns': ['s2U_to_se2U'], 'enzymes': {34: ['MnmEG_cplx_mod_fad_mod_2:k']}}, 'cmnm5U_to_nm5U': {'upstream_rxns': ['U_to_cmnm5U'], 'enzymes': {34: ['MnmC_mono_mod_fad']}}, 'cmnm5U_to_cmnm5Um': {'upstream_rxns': ['U_to_cmnm5U'], 'enzymes': {34: ['trmL_dim']}}, 'Um_to_cmnm5Um': {'upstream_rxns': ['U_to_Um'], 'enzymes': {34: ['MnmEG_cplx_mod_fad_mod_2:k']}}, 'nm5U_to_mnm5U': {'upstream_rxns': ['U_to_nm5U', 'cmnm5U_to_nm5U'], 'enzymes': {34: ['MnmC_mono_mod_fad']}}, 'ho5U_to_cmo5U': {'upstream_rxns': ['U_to_ho5U'], 'enzymes': {34: ['YecP_mono']}}} cytidine_mods_paths = {'C_to_s2C': {'upstream_rxns': ['C'], 'enzymes': {32: ['YdaO_mono']}}, 'C_to_m5C': {'upstream_rxns': ['C'], 'enzymes': {1962: ['RlmI_dim'], 967: ['RsmB_mono'], 1407: ['RsmF_mono']}}, 'C_to_Cm': {'upstream_rxns': ['C'], 'enzymes': {2498: ['RlmM_mono'], 1402: ['RsmI_mono'], 32: ['TrmJ_dim'], 34: ['trmL_dim']}}, 'C_to_ac4C': {'upstream_rxns': ['C'], 'enzymes': {34: ['TmcA_mono']}}, 'Cm_to_m4Cm': {'upstream_rxns': ['C_to_Cm'], 'enzymes': {1402: ['RsmH_mono']}}, 'm4Cm_to_m44Cm': {'upstream_rxns': ['Cm_to_m4Cm', 'm4C_to_m4Cm'], 'enzymes': {1402: ['RsmH_mono']}}, 'C_to_m4C': {'upstream_rxns': ['C'], 'enzymes': {1402: ['RsmH_mono']}}, 'm4C_to_m44C': {'upstream_rxns': ['C_to_m4C'], 'enzymes': {1402: ['RsmI_mono']}}, 'm4C_to_m4Cm': {'upstream_rxns': ['C_to_m4C'], 'enzymes': {1402: ['RsmH_mono']}}, 'C_to_k2C': {'upstream_rxns': ['C'], 'enzymes': {34: ['TilS_mono']}}} adenine_mods_paths = {'A_to_m2A': {'upstream_rxns': ['A'], 'enzymes': {37: ['RlmN_mono_mod_1:4fe4s'], 2503: ['RlmN_mono_mod_1:4fe4s']}}, 'A_to_m6A': {'upstream_rxns': ['A'], 'enzymes': {2058: ['enzyme_new_ErmBC'], 1618: ['RlmF_mono'], 2030: ['enzyme_new_RlmJ'], 1518: ['KsgA_mono'], 1519: ['KsgA_mono'], 37: ['YfiC_mono']}}, 'm6A_to_m66A': {'upstream_rxns': ['A_to_m6A'], 'enzymes': {1518: ['KsgA_mono'], 1519: ['KsgA_mono']}}, 'A_to_I': {'upstream_rxns': ['A'], 'enzymes': {34: ['TadA_dim_mod_2:zn2']}}, 'A_to_m1A': {'upstream_rxns': ['A'], 'enzymes': {1408: ['enzyme_new_NpmA']}}, 'A_to_i6A': {'upstream_rxns': ['A'], 'enzymes': {37: ['MiaA_dim_mod_2:mg2']}}, 'i6A_to_ms2i6A': {'upstream_rxns': ['A_to_i6A'], 'enzymes': {37: ['MiaB_mono_mod_1:4fe4s']}}, 'A_to_t6A': {'upstream_rxns': ['A'], 'enzymes': {37: ['TsaBCDE']}}, 't6A_to_m6t6A': {'upstream_rxns': ['A_to_t6A'], 'enzymes': {37: ['EG11503_MONOMER']}}, 't6A_to_ct6A': {'upstream_rxns': ['A_to_t6A'], 'enzymes': {37: ['TcdA_dim']}}} guanine_mods_paths = {'G_to_m7G': {'upstream_rxns': ['G'], 'enzymes': {2069: ['RlmL_dim'], 1405: ['enzyme_new_RmtB'], 527: ['RsmG_mono'], 46: ['YggH_mono']}}, 'G_to_m2G': {'upstream_rxns': ['G'], 'enzymes': {1835: ['RlmG_mono'], 2445: ['RlmL_dim'], 1207: ['RsmC_mono'], 966: ['RsmD_mono'], 1516: ['enzyme_new_RsmJ']}}, 'G_to_Gm': {'upstream_rxns': ['G'], 'enzymes': {2251: ['RlmB_dim'], 18: ['TrmH_dim']}}, 'G_to_m1G': {'upstream_rxns': ['G'], 'enzymes': {745: ['RrmA_dim_mod_2:zn2'], 37: ['TrmD_dim']}}, 'G_to_preq1tRNA': {'upstream_rxns': ['G'], 'enzymes': {34: ['Tgt_hexa_mod_6:zn2']}}, 'preq1tRNA_to_oQtRNA': {'upstream_rxns': ['G_to_preq1tRNA'], 'enzymes': {34: ['QueA_mono']}}, 'oQtRNA_to_QtRNA': {'upstream_rxns': ['preq1tRNA_to_oQtRNA'], 'enzymes': {34: ['QueG_mono_mod_adocbl']}}, 'QtRNA_to_gluQtRNA': {'upstream_rxns': ['oQtRNA_to_QtRNA'], 'enzymes': {34: ['YadB_mono']}}}
def run(): # Range can receive a first value that defines start value of range: range(1, 1000) for i in range(1000): print('Value ' + str(i)) if __name__ == '__main__': run()
def run(): for i in range(1000): print('Value ' + str(i)) if __name__ == '__main__': run()
def biggerIsGreater(w): w = list(w) x = len(w)-1 while x > 0 and w[x-1] >= w[x]: x -= 1 if x <= 0: return 'no answer' j = len(w) - 1 while w[j] <= w[x - 1]: j -= 1 w[x-1], w[j] = w[j], w[x-1] w[x:] = w[len(w)-1:x-1:-1] return ''.join(w)
def bigger_is_greater(w): w = list(w) x = len(w) - 1 while x > 0 and w[x - 1] >= w[x]: x -= 1 if x <= 0: return 'no answer' j = len(w) - 1 while w[j] <= w[x - 1]: j -= 1 (w[x - 1], w[j]) = (w[j], w[x - 1]) w[x:] = w[len(w) - 1:x - 1:-1] return ''.join(w)
# Add support for multiple event queues def upgrader(cpt): cpt.set('Globals', 'numMainEventQueues', '1') legacy_version = 12
def upgrader(cpt): cpt.set('Globals', 'numMainEventQueues', '1') legacy_version = 12
class Solution(object): def moveZeroes(self, nums): totalZeros = 0 for i in range(len(nums)): if nums[i] == 0 : totalZeros += 1 continue nums[i - totalZeros] = nums[i] if(totalZeros) : nums[i] = 0
class Solution(object): def move_zeroes(self, nums): total_zeros = 0 for i in range(len(nums)): if nums[i] == 0: total_zeros += 1 continue nums[i - totalZeros] = nums[i] if totalZeros: nums[i] = 0
# This file is created by generate_build_files.py. Do not edit manually. ssl_headers = [ "src/include/openssl/dtls1.h", "src/include/openssl/srtp.h", "src/include/openssl/ssl.h", "src/include/openssl/ssl3.h", "src/include/openssl/tls1.h", ] fips_fragments = [ "src/crypto/fipsmodule/aes/aes.c", "src/crypto/fipsmodule/aes/aes_nohw.c", "src/crypto/fipsmodule/aes/key_wrap.c", "src/crypto/fipsmodule/aes/mode_wrappers.c", "src/crypto/fipsmodule/bn/add.c", "src/crypto/fipsmodule/bn/asm/x86_64-gcc.c", "src/crypto/fipsmodule/bn/bn.c", "src/crypto/fipsmodule/bn/bytes.c", "src/crypto/fipsmodule/bn/cmp.c", "src/crypto/fipsmodule/bn/ctx.c", "src/crypto/fipsmodule/bn/div.c", "src/crypto/fipsmodule/bn/div_extra.c", "src/crypto/fipsmodule/bn/exponentiation.c", "src/crypto/fipsmodule/bn/gcd.c", "src/crypto/fipsmodule/bn/gcd_extra.c", "src/crypto/fipsmodule/bn/generic.c", "src/crypto/fipsmodule/bn/jacobi.c", "src/crypto/fipsmodule/bn/montgomery.c", "src/crypto/fipsmodule/bn/montgomery_inv.c", "src/crypto/fipsmodule/bn/mul.c", "src/crypto/fipsmodule/bn/prime.c", "src/crypto/fipsmodule/bn/random.c", "src/crypto/fipsmodule/bn/rsaz_exp.c", "src/crypto/fipsmodule/bn/shift.c", "src/crypto/fipsmodule/bn/sqrt.c", "src/crypto/fipsmodule/cipher/aead.c", "src/crypto/fipsmodule/cipher/cipher.c", "src/crypto/fipsmodule/cipher/e_aes.c", "src/crypto/fipsmodule/cipher/e_des.c", "src/crypto/fipsmodule/des/des.c", "src/crypto/fipsmodule/digest/digest.c", "src/crypto/fipsmodule/digest/digests.c", "src/crypto/fipsmodule/ec/ec.c", "src/crypto/fipsmodule/ec/ec_key.c", "src/crypto/fipsmodule/ec/ec_montgomery.c", "src/crypto/fipsmodule/ec/felem.c", "src/crypto/fipsmodule/ec/oct.c", "src/crypto/fipsmodule/ec/p224-64.c", "src/crypto/fipsmodule/ec/p256-x86_64.c", "src/crypto/fipsmodule/ec/scalar.c", "src/crypto/fipsmodule/ec/simple.c", "src/crypto/fipsmodule/ec/simple_mul.c", "src/crypto/fipsmodule/ec/util.c", "src/crypto/fipsmodule/ec/wnaf.c", "src/crypto/fipsmodule/ecdh/ecdh.c", "src/crypto/fipsmodule/ecdsa/ecdsa.c", "src/crypto/fipsmodule/hmac/hmac.c", "src/crypto/fipsmodule/md4/md4.c", "src/crypto/fipsmodule/md5/md5.c", "src/crypto/fipsmodule/modes/cbc.c", "src/crypto/fipsmodule/modes/cfb.c", "src/crypto/fipsmodule/modes/ctr.c", "src/crypto/fipsmodule/modes/gcm.c", "src/crypto/fipsmodule/modes/gcm_nohw.c", "src/crypto/fipsmodule/modes/ofb.c", "src/crypto/fipsmodule/modes/polyval.c", "src/crypto/fipsmodule/rand/ctrdrbg.c", "src/crypto/fipsmodule/rand/rand.c", "src/crypto/fipsmodule/rand/urandom.c", "src/crypto/fipsmodule/rsa/blinding.c", "src/crypto/fipsmodule/rsa/padding.c", "src/crypto/fipsmodule/rsa/rsa.c", "src/crypto/fipsmodule/rsa/rsa_impl.c", "src/crypto/fipsmodule/self_check/self_check.c", "src/crypto/fipsmodule/sha/sha1-altivec.c", "src/crypto/fipsmodule/sha/sha1.c", "src/crypto/fipsmodule/sha/sha256.c", "src/crypto/fipsmodule/sha/sha512.c", "src/crypto/fipsmodule/tls/kdf.c", "src/third_party/fiat/p256.c", ] ssl_internal_headers = [ "src/ssl/internal.h", ] ssl_sources = [ "src/ssl/bio_ssl.cc", "src/ssl/d1_both.cc", "src/ssl/d1_lib.cc", "src/ssl/d1_pkt.cc", "src/ssl/d1_srtp.cc", "src/ssl/dtls_method.cc", "src/ssl/dtls_record.cc", "src/ssl/handoff.cc", "src/ssl/handshake.cc", "src/ssl/handshake_client.cc", "src/ssl/handshake_server.cc", "src/ssl/s3_both.cc", "src/ssl/s3_lib.cc", "src/ssl/s3_pkt.cc", "src/ssl/ssl_aead_ctx.cc", "src/ssl/ssl_asn1.cc", "src/ssl/ssl_buffer.cc", "src/ssl/ssl_cert.cc", "src/ssl/ssl_cipher.cc", "src/ssl/ssl_file.cc", "src/ssl/ssl_key_share.cc", "src/ssl/ssl_lib.cc", "src/ssl/ssl_privkey.cc", "src/ssl/ssl_session.cc", "src/ssl/ssl_stat.cc", "src/ssl/ssl_transcript.cc", "src/ssl/ssl_versions.cc", "src/ssl/ssl_x509.cc", "src/ssl/t1_enc.cc", "src/ssl/t1_lib.cc", "src/ssl/tls13_both.cc", "src/ssl/tls13_client.cc", "src/ssl/tls13_enc.cc", "src/ssl/tls13_server.cc", "src/ssl/tls_method.cc", "src/ssl/tls_record.cc", ] crypto_headers = [ "src/include/openssl/aead.h", "src/include/openssl/aes.h", "src/include/openssl/arm_arch.h", "src/include/openssl/asn1.h", "src/include/openssl/asn1_mac.h", "src/include/openssl/asn1t.h", "src/include/openssl/base.h", "src/include/openssl/base64.h", "src/include/openssl/bio.h", "src/include/openssl/blowfish.h", "src/include/openssl/bn.h", "src/include/openssl/buf.h", "src/include/openssl/buffer.h", "src/include/openssl/bytestring.h", "src/include/openssl/cast.h", "src/include/openssl/chacha.h", "src/include/openssl/cipher.h", "src/include/openssl/cmac.h", "src/include/openssl/conf.h", "src/include/openssl/cpu.h", "src/include/openssl/crypto.h", "src/include/openssl/curve25519.h", "src/include/openssl/des.h", "src/include/openssl/dh.h", "src/include/openssl/digest.h", "src/include/openssl/dsa.h", "src/include/openssl/e_os2.h", "src/include/openssl/ec.h", "src/include/openssl/ec_key.h", "src/include/openssl/ecdh.h", "src/include/openssl/ecdsa.h", "src/include/openssl/engine.h", "src/include/openssl/err.h", "src/include/openssl/evp.h", "src/include/openssl/ex_data.h", "src/include/openssl/hkdf.h", "src/include/openssl/hmac.h", "src/include/openssl/hrss.h", "src/include/openssl/is_boringssl.h", "src/include/openssl/lhash.h", "src/include/openssl/md4.h", "src/include/openssl/md5.h", "src/include/openssl/mem.h", "src/include/openssl/nid.h", "src/include/openssl/obj.h", "src/include/openssl/obj_mac.h", "src/include/openssl/objects.h", "src/include/openssl/opensslconf.h", "src/include/openssl/opensslv.h", "src/include/openssl/ossl_typ.h", "src/include/openssl/pem.h", "src/include/openssl/pkcs12.h", "src/include/openssl/pkcs7.h", "src/include/openssl/pkcs8.h", "src/include/openssl/poly1305.h", "src/include/openssl/pool.h", "src/include/openssl/rand.h", "src/include/openssl/rc4.h", "src/include/openssl/ripemd.h", "src/include/openssl/rsa.h", "src/include/openssl/safestack.h", "src/include/openssl/sha.h", "src/include/openssl/siphash.h", "src/include/openssl/span.h", "src/include/openssl/stack.h", "src/include/openssl/thread.h", "src/include/openssl/type_check.h", "src/include/openssl/x509.h", "src/include/openssl/x509_vfy.h", "src/include/openssl/x509v3.h", ] crypto_internal_headers = [ "src/crypto/asn1/asn1_locl.h", "src/crypto/bio/internal.h", "src/crypto/bytestring/internal.h", "src/crypto/chacha/internal.h", "src/crypto/cipher_extra/internal.h", "src/crypto/conf/conf_def.h", "src/crypto/conf/internal.h", "src/crypto/cpu-arm-linux.h", "src/crypto/err/internal.h", "src/crypto/evp/internal.h", "src/crypto/fipsmodule/aes/internal.h", "src/crypto/fipsmodule/bn/internal.h", "src/crypto/fipsmodule/bn/rsaz_exp.h", "src/crypto/fipsmodule/cipher/internal.h", "src/crypto/fipsmodule/delocate.h", "src/crypto/fipsmodule/des/internal.h", "src/crypto/fipsmodule/digest/internal.h", "src/crypto/fipsmodule/digest/md32_common.h", "src/crypto/fipsmodule/ec/internal.h", "src/crypto/fipsmodule/ec/p256-x86_64-table.h", "src/crypto/fipsmodule/ec/p256-x86_64.h", "src/crypto/fipsmodule/md5/internal.h", "src/crypto/fipsmodule/modes/internal.h", "src/crypto/fipsmodule/rand/internal.h", "src/crypto/fipsmodule/rsa/internal.h", "src/crypto/fipsmodule/sha/internal.h", "src/crypto/fipsmodule/tls/internal.h", "src/crypto/hrss/internal.h", "src/crypto/internal.h", "src/crypto/obj/obj_dat.h", "src/crypto/pkcs7/internal.h", "src/crypto/pkcs8/internal.h", "src/crypto/poly1305/internal.h", "src/crypto/pool/internal.h", "src/crypto/x509/charmap.h", "src/crypto/x509/internal.h", "src/crypto/x509/vpm_int.h", "src/crypto/x509v3/ext_dat.h", "src/crypto/x509v3/internal.h", "src/crypto/x509v3/pcy_int.h", "src/third_party/fiat/curve25519_32.h", "src/third_party/fiat/curve25519_64.h", "src/third_party/fiat/curve25519_tables.h", "src/third_party/fiat/internal.h", "src/third_party/fiat/p256_32.h", "src/third_party/fiat/p256_64.h", ] crypto_sources = [ "err_data.c", "src/crypto/asn1/a_bitstr.c", "src/crypto/asn1/a_bool.c", "src/crypto/asn1/a_d2i_fp.c", "src/crypto/asn1/a_dup.c", "src/crypto/asn1/a_enum.c", "src/crypto/asn1/a_gentm.c", "src/crypto/asn1/a_i2d_fp.c", "src/crypto/asn1/a_int.c", "src/crypto/asn1/a_mbstr.c", "src/crypto/asn1/a_object.c", "src/crypto/asn1/a_octet.c", "src/crypto/asn1/a_print.c", "src/crypto/asn1/a_strnid.c", "src/crypto/asn1/a_time.c", "src/crypto/asn1/a_type.c", "src/crypto/asn1/a_utctm.c", "src/crypto/asn1/a_utf8.c", "src/crypto/asn1/asn1_lib.c", "src/crypto/asn1/asn1_par.c", "src/crypto/asn1/asn_pack.c", "src/crypto/asn1/f_enum.c", "src/crypto/asn1/f_int.c", "src/crypto/asn1/f_string.c", "src/crypto/asn1/tasn_dec.c", "src/crypto/asn1/tasn_enc.c", "src/crypto/asn1/tasn_fre.c", "src/crypto/asn1/tasn_new.c", "src/crypto/asn1/tasn_typ.c", "src/crypto/asn1/tasn_utl.c", "src/crypto/asn1/time_support.c", "src/crypto/base64/base64.c", "src/crypto/bio/bio.c", "src/crypto/bio/bio_mem.c", "src/crypto/bio/connect.c", "src/crypto/bio/fd.c", "src/crypto/bio/file.c", "src/crypto/bio/hexdump.c", "src/crypto/bio/pair.c", "src/crypto/bio/printf.c", "src/crypto/bio/socket.c", "src/crypto/bio/socket_helper.c", "src/crypto/bn_extra/bn_asn1.c", "src/crypto/bn_extra/convert.c", "src/crypto/buf/buf.c", "src/crypto/bytestring/asn1_compat.c", "src/crypto/bytestring/ber.c", "src/crypto/bytestring/cbb.c", "src/crypto/bytestring/cbs.c", "src/crypto/bytestring/unicode.c", "src/crypto/chacha/chacha.c", "src/crypto/cipher_extra/cipher_extra.c", "src/crypto/cipher_extra/derive_key.c", "src/crypto/cipher_extra/e_aesccm.c", "src/crypto/cipher_extra/e_aesctrhmac.c", "src/crypto/cipher_extra/e_aesgcmsiv.c", "src/crypto/cipher_extra/e_chacha20poly1305.c", "src/crypto/cipher_extra/e_null.c", "src/crypto/cipher_extra/e_rc2.c", "src/crypto/cipher_extra/e_rc4.c", "src/crypto/cipher_extra/e_tls.c", "src/crypto/cipher_extra/tls_cbc.c", "src/crypto/cmac/cmac.c", "src/crypto/conf/conf.c", "src/crypto/cpu-aarch64-fuchsia.c", "src/crypto/cpu-aarch64-linux.c", "src/crypto/cpu-arm-linux.c", "src/crypto/cpu-arm.c", "src/crypto/cpu-intel.c", "src/crypto/cpu-ppc64le.c", "src/crypto/crypto.c", "src/crypto/curve25519/spake25519.c", "src/crypto/dh/check.c", "src/crypto/dh/dh.c", "src/crypto/dh/dh_asn1.c", "src/crypto/dh/params.c", "src/crypto/digest_extra/digest_extra.c", "src/crypto/dsa/dsa.c", "src/crypto/dsa/dsa_asn1.c", "src/crypto/ec_extra/ec_asn1.c", "src/crypto/ec_extra/ec_derive.c", "src/crypto/ecdh_extra/ecdh_extra.c", "src/crypto/ecdsa_extra/ecdsa_asn1.c", "src/crypto/engine/engine.c", "src/crypto/err/err.c", "src/crypto/evp/digestsign.c", "src/crypto/evp/evp.c", "src/crypto/evp/evp_asn1.c", "src/crypto/evp/evp_ctx.c", "src/crypto/evp/p_dsa_asn1.c", "src/crypto/evp/p_ec.c", "src/crypto/evp/p_ec_asn1.c", "src/crypto/evp/p_ed25519.c", "src/crypto/evp/p_ed25519_asn1.c", "src/crypto/evp/p_rsa.c", "src/crypto/evp/p_rsa_asn1.c", "src/crypto/evp/p_x25519.c", "src/crypto/evp/p_x25519_asn1.c", "src/crypto/evp/pbkdf.c", "src/crypto/evp/print.c", "src/crypto/evp/scrypt.c", "src/crypto/evp/sign.c", "src/crypto/ex_data.c", "src/crypto/fipsmodule/bcm.c", "src/crypto/fipsmodule/fips_shared_support.c", "src/crypto/fipsmodule/is_fips.c", "src/crypto/hkdf/hkdf.c", "src/crypto/hrss/hrss.c", "src/crypto/lhash/lhash.c", "src/crypto/mem.c", "src/crypto/obj/obj.c", "src/crypto/obj/obj_xref.c", "src/crypto/pem/pem_all.c", "src/crypto/pem/pem_info.c", "src/crypto/pem/pem_lib.c", "src/crypto/pem/pem_oth.c", "src/crypto/pem/pem_pk8.c", "src/crypto/pem/pem_pkey.c", "src/crypto/pem/pem_x509.c", "src/crypto/pem/pem_xaux.c", "src/crypto/pkcs7/pkcs7.c", "src/crypto/pkcs7/pkcs7_x509.c", "src/crypto/pkcs8/p5_pbev2.c", "src/crypto/pkcs8/pkcs8.c", "src/crypto/pkcs8/pkcs8_x509.c", "src/crypto/poly1305/poly1305.c", "src/crypto/poly1305/poly1305_arm.c", "src/crypto/poly1305/poly1305_vec.c", "src/crypto/pool/pool.c", "src/crypto/rand_extra/deterministic.c", "src/crypto/rand_extra/forkunsafe.c", "src/crypto/rand_extra/fuchsia.c", "src/crypto/rand_extra/rand_extra.c", "src/crypto/rand_extra/windows.c", "src/crypto/rc4/rc4.c", "src/crypto/refcount_c11.c", "src/crypto/refcount_lock.c", "src/crypto/rsa_extra/rsa_asn1.c", "src/crypto/rsa_extra/rsa_print.c", "src/crypto/siphash/siphash.c", "src/crypto/stack/stack.c", "src/crypto/thread.c", "src/crypto/thread_none.c", "src/crypto/thread_pthread.c", "src/crypto/thread_win.c", "src/crypto/x509/a_digest.c", "src/crypto/x509/a_sign.c", "src/crypto/x509/a_strex.c", "src/crypto/x509/a_verify.c", "src/crypto/x509/algorithm.c", "src/crypto/x509/asn1_gen.c", "src/crypto/x509/by_dir.c", "src/crypto/x509/by_file.c", "src/crypto/x509/i2d_pr.c", "src/crypto/x509/rsa_pss.c", "src/crypto/x509/t_crl.c", "src/crypto/x509/t_req.c", "src/crypto/x509/t_x509.c", "src/crypto/x509/t_x509a.c", "src/crypto/x509/x509.c", "src/crypto/x509/x509_att.c", "src/crypto/x509/x509_cmp.c", "src/crypto/x509/x509_d2.c", "src/crypto/x509/x509_def.c", "src/crypto/x509/x509_ext.c", "src/crypto/x509/x509_lu.c", "src/crypto/x509/x509_obj.c", "src/crypto/x509/x509_r2x.c", "src/crypto/x509/x509_req.c", "src/crypto/x509/x509_set.c", "src/crypto/x509/x509_trs.c", "src/crypto/x509/x509_txt.c", "src/crypto/x509/x509_v3.c", "src/crypto/x509/x509_vfy.c", "src/crypto/x509/x509_vpm.c", "src/crypto/x509/x509cset.c", "src/crypto/x509/x509name.c", "src/crypto/x509/x509rset.c", "src/crypto/x509/x509spki.c", "src/crypto/x509/x_algor.c", "src/crypto/x509/x_all.c", "src/crypto/x509/x_attrib.c", "src/crypto/x509/x_crl.c", "src/crypto/x509/x_exten.c", "src/crypto/x509/x_info.c", "src/crypto/x509/x_name.c", "src/crypto/x509/x_pkey.c", "src/crypto/x509/x_pubkey.c", "src/crypto/x509/x_req.c", "src/crypto/x509/x_sig.c", "src/crypto/x509/x_spki.c", "src/crypto/x509/x_val.c", "src/crypto/x509/x_x509.c", "src/crypto/x509/x_x509a.c", "src/crypto/x509v3/pcy_cache.c", "src/crypto/x509v3/pcy_data.c", "src/crypto/x509v3/pcy_lib.c", "src/crypto/x509v3/pcy_map.c", "src/crypto/x509v3/pcy_node.c", "src/crypto/x509v3/pcy_tree.c", "src/crypto/x509v3/v3_akey.c", "src/crypto/x509v3/v3_akeya.c", "src/crypto/x509v3/v3_alt.c", "src/crypto/x509v3/v3_bcons.c", "src/crypto/x509v3/v3_bitst.c", "src/crypto/x509v3/v3_conf.c", "src/crypto/x509v3/v3_cpols.c", "src/crypto/x509v3/v3_crld.c", "src/crypto/x509v3/v3_enum.c", "src/crypto/x509v3/v3_extku.c", "src/crypto/x509v3/v3_genn.c", "src/crypto/x509v3/v3_ia5.c", "src/crypto/x509v3/v3_info.c", "src/crypto/x509v3/v3_int.c", "src/crypto/x509v3/v3_lib.c", "src/crypto/x509v3/v3_ncons.c", "src/crypto/x509v3/v3_ocsp.c", "src/crypto/x509v3/v3_pci.c", "src/crypto/x509v3/v3_pcia.c", "src/crypto/x509v3/v3_pcons.c", "src/crypto/x509v3/v3_pku.c", "src/crypto/x509v3/v3_pmaps.c", "src/crypto/x509v3/v3_prn.c", "src/crypto/x509v3/v3_purp.c", "src/crypto/x509v3/v3_skey.c", "src/crypto/x509v3/v3_sxnet.c", "src/crypto/x509v3/v3_utl.c", "src/third_party/fiat/curve25519.c", ] tool_sources = [ "src/tool/args.cc", "src/tool/ciphers.cc", "src/tool/client.cc", "src/tool/const.cc", "src/tool/digest.cc", "src/tool/file.cc", "src/tool/generate_ed25519.cc", "src/tool/genrsa.cc", "src/tool/pkcs12.cc", "src/tool/rand.cc", "src/tool/server.cc", "src/tool/sign.cc", "src/tool/speed.cc", "src/tool/tool.cc", "src/tool/transport_common.cc", ] tool_headers = [ "src/tool/internal.h", "src/tool/transport_common.h", ] crypto_sources_ios_aarch64 = [ "ios-aarch64/crypto/chacha/chacha-armv8.S", "ios-aarch64/crypto/fipsmodule/aesv8-armx64.S", "ios-aarch64/crypto/fipsmodule/armv8-mont.S", "ios-aarch64/crypto/fipsmodule/ghash-neon-armv8.S", "ios-aarch64/crypto/fipsmodule/ghashv8-armx64.S", "ios-aarch64/crypto/fipsmodule/sha1-armv8.S", "ios-aarch64/crypto/fipsmodule/sha256-armv8.S", "ios-aarch64/crypto/fipsmodule/sha512-armv8.S", "ios-aarch64/crypto/fipsmodule/vpaes-armv8.S", "ios-aarch64/crypto/test/trampoline-armv8.S", ] crypto_sources_ios_arm = [ "ios-arm/crypto/chacha/chacha-armv4.S", "ios-arm/crypto/fipsmodule/aesv8-armx32.S", "ios-arm/crypto/fipsmodule/armv4-mont.S", "ios-arm/crypto/fipsmodule/bsaes-armv7.S", "ios-arm/crypto/fipsmodule/ghash-armv4.S", "ios-arm/crypto/fipsmodule/ghashv8-armx32.S", "ios-arm/crypto/fipsmodule/sha1-armv4-large.S", "ios-arm/crypto/fipsmodule/sha256-armv4.S", "ios-arm/crypto/fipsmodule/sha512-armv4.S", "ios-arm/crypto/fipsmodule/vpaes-armv7.S", "ios-arm/crypto/test/trampoline-armv4.S", ] crypto_sources_linux_aarch64 = [ "linux-aarch64/crypto/chacha/chacha-armv8.S", "linux-aarch64/crypto/fipsmodule/aesv8-armx64.S", "linux-aarch64/crypto/fipsmodule/armv8-mont.S", "linux-aarch64/crypto/fipsmodule/ghash-neon-armv8.S", "linux-aarch64/crypto/fipsmodule/ghashv8-armx64.S", "linux-aarch64/crypto/fipsmodule/sha1-armv8.S", "linux-aarch64/crypto/fipsmodule/sha256-armv8.S", "linux-aarch64/crypto/fipsmodule/sha512-armv8.S", "linux-aarch64/crypto/fipsmodule/vpaes-armv8.S", "linux-aarch64/crypto/test/trampoline-armv8.S", ] crypto_sources_linux_arm = [ "linux-arm/crypto/chacha/chacha-armv4.S", "linux-arm/crypto/fipsmodule/aesv8-armx32.S", "linux-arm/crypto/fipsmodule/armv4-mont.S", "linux-arm/crypto/fipsmodule/bsaes-armv7.S", "linux-arm/crypto/fipsmodule/ghash-armv4.S", "linux-arm/crypto/fipsmodule/ghashv8-armx32.S", "linux-arm/crypto/fipsmodule/sha1-armv4-large.S", "linux-arm/crypto/fipsmodule/sha256-armv4.S", "linux-arm/crypto/fipsmodule/sha512-armv4.S", "linux-arm/crypto/fipsmodule/vpaes-armv7.S", "linux-arm/crypto/test/trampoline-armv4.S", "src/crypto/curve25519/asm/x25519-asm-arm.S", "src/crypto/poly1305/poly1305_arm_asm.S", ] crypto_sources_linux_ppc64le = [ "linux-ppc64le/crypto/fipsmodule/aesp8-ppc.S", "linux-ppc64le/crypto/fipsmodule/ghashp8-ppc.S", "linux-ppc64le/crypto/test/trampoline-ppc.S", ] crypto_sources_linux_x86 = [ "linux-x86/crypto/chacha/chacha-x86.S", "linux-x86/crypto/fipsmodule/aesni-x86.S", "linux-x86/crypto/fipsmodule/bn-586.S", "linux-x86/crypto/fipsmodule/co-586.S", "linux-x86/crypto/fipsmodule/ghash-ssse3-x86.S", "linux-x86/crypto/fipsmodule/ghash-x86.S", "linux-x86/crypto/fipsmodule/md5-586.S", "linux-x86/crypto/fipsmodule/sha1-586.S", "linux-x86/crypto/fipsmodule/sha256-586.S", "linux-x86/crypto/fipsmodule/sha512-586.S", "linux-x86/crypto/fipsmodule/vpaes-x86.S", "linux-x86/crypto/fipsmodule/x86-mont.S", "linux-x86/crypto/test/trampoline-x86.S", ] crypto_sources_linux_x86_64 = [ "linux-x86_64/crypto/chacha/chacha-x86_64.S", "linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S", "linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S", "linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S", "linux-x86_64/crypto/fipsmodule/aesni-x86_64.S", "linux-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S", "linux-x86_64/crypto/fipsmodule/ghash-x86_64.S", "linux-x86_64/crypto/fipsmodule/md5-x86_64.S", "linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S", "linux-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S", "linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S", "linux-x86_64/crypto/fipsmodule/rsaz-avx2.S", "linux-x86_64/crypto/fipsmodule/sha1-x86_64.S", "linux-x86_64/crypto/fipsmodule/sha256-x86_64.S", "linux-x86_64/crypto/fipsmodule/sha512-x86_64.S", "linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S", "linux-x86_64/crypto/fipsmodule/x86_64-mont.S", "linux-x86_64/crypto/fipsmodule/x86_64-mont5.S", "linux-x86_64/crypto/test/trampoline-x86_64.S", "src/crypto/hrss/asm/poly_rq_mul.S", ] crypto_sources_mac_x86 = [ "mac-x86/crypto/chacha/chacha-x86.S", "mac-x86/crypto/fipsmodule/aesni-x86.S", "mac-x86/crypto/fipsmodule/bn-586.S", "mac-x86/crypto/fipsmodule/co-586.S", "mac-x86/crypto/fipsmodule/ghash-ssse3-x86.S", "mac-x86/crypto/fipsmodule/ghash-x86.S", "mac-x86/crypto/fipsmodule/md5-586.S", "mac-x86/crypto/fipsmodule/sha1-586.S", "mac-x86/crypto/fipsmodule/sha256-586.S", "mac-x86/crypto/fipsmodule/sha512-586.S", "mac-x86/crypto/fipsmodule/vpaes-x86.S", "mac-x86/crypto/fipsmodule/x86-mont.S", "mac-x86/crypto/test/trampoline-x86.S", ] crypto_sources_mac_x86_64 = [ "mac-x86_64/crypto/chacha/chacha-x86_64.S", "mac-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S", "mac-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S", "mac-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S", "mac-x86_64/crypto/fipsmodule/aesni-x86_64.S", "mac-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S", "mac-x86_64/crypto/fipsmodule/ghash-x86_64.S", "mac-x86_64/crypto/fipsmodule/md5-x86_64.S", "mac-x86_64/crypto/fipsmodule/p256-x86_64-asm.S", "mac-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S", "mac-x86_64/crypto/fipsmodule/rdrand-x86_64.S", "mac-x86_64/crypto/fipsmodule/rsaz-avx2.S", "mac-x86_64/crypto/fipsmodule/sha1-x86_64.S", "mac-x86_64/crypto/fipsmodule/sha256-x86_64.S", "mac-x86_64/crypto/fipsmodule/sha512-x86_64.S", "mac-x86_64/crypto/fipsmodule/vpaes-x86_64.S", "mac-x86_64/crypto/fipsmodule/x86_64-mont.S", "mac-x86_64/crypto/fipsmodule/x86_64-mont5.S", "mac-x86_64/crypto/test/trampoline-x86_64.S", ] crypto_sources_win_x86 = [ "win-x86/crypto/chacha/chacha-x86.asm", "win-x86/crypto/fipsmodule/aesni-x86.asm", "win-x86/crypto/fipsmodule/bn-586.asm", "win-x86/crypto/fipsmodule/co-586.asm", "win-x86/crypto/fipsmodule/ghash-ssse3-x86.asm", "win-x86/crypto/fipsmodule/ghash-x86.asm", "win-x86/crypto/fipsmodule/md5-586.asm", "win-x86/crypto/fipsmodule/sha1-586.asm", "win-x86/crypto/fipsmodule/sha256-586.asm", "win-x86/crypto/fipsmodule/sha512-586.asm", "win-x86/crypto/fipsmodule/vpaes-x86.asm", "win-x86/crypto/fipsmodule/x86-mont.asm", "win-x86/crypto/test/trampoline-x86.asm", ] crypto_sources_win_x86_64 = [ "win-x86_64/crypto/chacha/chacha-x86_64.asm", "win-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.asm", "win-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.asm", "win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm", "win-x86_64/crypto/fipsmodule/aesni-x86_64.asm", "win-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.asm", "win-x86_64/crypto/fipsmodule/ghash-x86_64.asm", "win-x86_64/crypto/fipsmodule/md5-x86_64.asm", "win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm", "win-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.asm", "win-x86_64/crypto/fipsmodule/rdrand-x86_64.asm", "win-x86_64/crypto/fipsmodule/rsaz-avx2.asm", "win-x86_64/crypto/fipsmodule/sha1-x86_64.asm", "win-x86_64/crypto/fipsmodule/sha256-x86_64.asm", "win-x86_64/crypto/fipsmodule/sha512-x86_64.asm", "win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm", "win-x86_64/crypto/fipsmodule/x86_64-mont.asm", "win-x86_64/crypto/fipsmodule/x86_64-mont5.asm", "win-x86_64/crypto/test/trampoline-x86_64.asm", ]
ssl_headers = ['src/include/openssl/dtls1.h', 'src/include/openssl/srtp.h', 'src/include/openssl/ssl.h', 'src/include/openssl/ssl3.h', 'src/include/openssl/tls1.h'] fips_fragments = ['src/crypto/fipsmodule/aes/aes.c', 'src/crypto/fipsmodule/aes/aes_nohw.c', 'src/crypto/fipsmodule/aes/key_wrap.c', 'src/crypto/fipsmodule/aes/mode_wrappers.c', 'src/crypto/fipsmodule/bn/add.c', 'src/crypto/fipsmodule/bn/asm/x86_64-gcc.c', 'src/crypto/fipsmodule/bn/bn.c', 'src/crypto/fipsmodule/bn/bytes.c', 'src/crypto/fipsmodule/bn/cmp.c', 'src/crypto/fipsmodule/bn/ctx.c', 'src/crypto/fipsmodule/bn/div.c', 'src/crypto/fipsmodule/bn/div_extra.c', 'src/crypto/fipsmodule/bn/exponentiation.c', 'src/crypto/fipsmodule/bn/gcd.c', 'src/crypto/fipsmodule/bn/gcd_extra.c', 'src/crypto/fipsmodule/bn/generic.c', 'src/crypto/fipsmodule/bn/jacobi.c', 'src/crypto/fipsmodule/bn/montgomery.c', 'src/crypto/fipsmodule/bn/montgomery_inv.c', 'src/crypto/fipsmodule/bn/mul.c', 'src/crypto/fipsmodule/bn/prime.c', 'src/crypto/fipsmodule/bn/random.c', 'src/crypto/fipsmodule/bn/rsaz_exp.c', 'src/crypto/fipsmodule/bn/shift.c', 'src/crypto/fipsmodule/bn/sqrt.c', 'src/crypto/fipsmodule/cipher/aead.c', 'src/crypto/fipsmodule/cipher/cipher.c', 'src/crypto/fipsmodule/cipher/e_aes.c', 'src/crypto/fipsmodule/cipher/e_des.c', 'src/crypto/fipsmodule/des/des.c', 'src/crypto/fipsmodule/digest/digest.c', 'src/crypto/fipsmodule/digest/digests.c', 'src/crypto/fipsmodule/ec/ec.c', 'src/crypto/fipsmodule/ec/ec_key.c', 'src/crypto/fipsmodule/ec/ec_montgomery.c', 'src/crypto/fipsmodule/ec/felem.c', 'src/crypto/fipsmodule/ec/oct.c', 'src/crypto/fipsmodule/ec/p224-64.c', 'src/crypto/fipsmodule/ec/p256-x86_64.c', 'src/crypto/fipsmodule/ec/scalar.c', 'src/crypto/fipsmodule/ec/simple.c', 'src/crypto/fipsmodule/ec/simple_mul.c', 'src/crypto/fipsmodule/ec/util.c', 'src/crypto/fipsmodule/ec/wnaf.c', 'src/crypto/fipsmodule/ecdh/ecdh.c', 'src/crypto/fipsmodule/ecdsa/ecdsa.c', 'src/crypto/fipsmodule/hmac/hmac.c', 'src/crypto/fipsmodule/md4/md4.c', 'src/crypto/fipsmodule/md5/md5.c', 'src/crypto/fipsmodule/modes/cbc.c', 'src/crypto/fipsmodule/modes/cfb.c', 'src/crypto/fipsmodule/modes/ctr.c', 'src/crypto/fipsmodule/modes/gcm.c', 'src/crypto/fipsmodule/modes/gcm_nohw.c', 'src/crypto/fipsmodule/modes/ofb.c', 'src/crypto/fipsmodule/modes/polyval.c', 'src/crypto/fipsmodule/rand/ctrdrbg.c', 'src/crypto/fipsmodule/rand/rand.c', 'src/crypto/fipsmodule/rand/urandom.c', 'src/crypto/fipsmodule/rsa/blinding.c', 'src/crypto/fipsmodule/rsa/padding.c', 'src/crypto/fipsmodule/rsa/rsa.c', 'src/crypto/fipsmodule/rsa/rsa_impl.c', 'src/crypto/fipsmodule/self_check/self_check.c', 'src/crypto/fipsmodule/sha/sha1-altivec.c', 'src/crypto/fipsmodule/sha/sha1.c', 'src/crypto/fipsmodule/sha/sha256.c', 'src/crypto/fipsmodule/sha/sha512.c', 'src/crypto/fipsmodule/tls/kdf.c', 'src/third_party/fiat/p256.c'] ssl_internal_headers = ['src/ssl/internal.h'] ssl_sources = ['src/ssl/bio_ssl.cc', 'src/ssl/d1_both.cc', 'src/ssl/d1_lib.cc', 'src/ssl/d1_pkt.cc', 'src/ssl/d1_srtp.cc', 'src/ssl/dtls_method.cc', 'src/ssl/dtls_record.cc', 'src/ssl/handoff.cc', 'src/ssl/handshake.cc', 'src/ssl/handshake_client.cc', 'src/ssl/handshake_server.cc', 'src/ssl/s3_both.cc', 'src/ssl/s3_lib.cc', 'src/ssl/s3_pkt.cc', 'src/ssl/ssl_aead_ctx.cc', 'src/ssl/ssl_asn1.cc', 'src/ssl/ssl_buffer.cc', 'src/ssl/ssl_cert.cc', 'src/ssl/ssl_cipher.cc', 'src/ssl/ssl_file.cc', 'src/ssl/ssl_key_share.cc', 'src/ssl/ssl_lib.cc', 'src/ssl/ssl_privkey.cc', 'src/ssl/ssl_session.cc', 'src/ssl/ssl_stat.cc', 'src/ssl/ssl_transcript.cc', 'src/ssl/ssl_versions.cc', 'src/ssl/ssl_x509.cc', 'src/ssl/t1_enc.cc', 'src/ssl/t1_lib.cc', 'src/ssl/tls13_both.cc', 'src/ssl/tls13_client.cc', 'src/ssl/tls13_enc.cc', 'src/ssl/tls13_server.cc', 'src/ssl/tls_method.cc', 'src/ssl/tls_record.cc'] crypto_headers = ['src/include/openssl/aead.h', 'src/include/openssl/aes.h', 'src/include/openssl/arm_arch.h', 'src/include/openssl/asn1.h', 'src/include/openssl/asn1_mac.h', 'src/include/openssl/asn1t.h', 'src/include/openssl/base.h', 'src/include/openssl/base64.h', 'src/include/openssl/bio.h', 'src/include/openssl/blowfish.h', 'src/include/openssl/bn.h', 'src/include/openssl/buf.h', 'src/include/openssl/buffer.h', 'src/include/openssl/bytestring.h', 'src/include/openssl/cast.h', 'src/include/openssl/chacha.h', 'src/include/openssl/cipher.h', 'src/include/openssl/cmac.h', 'src/include/openssl/conf.h', 'src/include/openssl/cpu.h', 'src/include/openssl/crypto.h', 'src/include/openssl/curve25519.h', 'src/include/openssl/des.h', 'src/include/openssl/dh.h', 'src/include/openssl/digest.h', 'src/include/openssl/dsa.h', 'src/include/openssl/e_os2.h', 'src/include/openssl/ec.h', 'src/include/openssl/ec_key.h', 'src/include/openssl/ecdh.h', 'src/include/openssl/ecdsa.h', 'src/include/openssl/engine.h', 'src/include/openssl/err.h', 'src/include/openssl/evp.h', 'src/include/openssl/ex_data.h', 'src/include/openssl/hkdf.h', 'src/include/openssl/hmac.h', 'src/include/openssl/hrss.h', 'src/include/openssl/is_boringssl.h', 'src/include/openssl/lhash.h', 'src/include/openssl/md4.h', 'src/include/openssl/md5.h', 'src/include/openssl/mem.h', 'src/include/openssl/nid.h', 'src/include/openssl/obj.h', 'src/include/openssl/obj_mac.h', 'src/include/openssl/objects.h', 'src/include/openssl/opensslconf.h', 'src/include/openssl/opensslv.h', 'src/include/openssl/ossl_typ.h', 'src/include/openssl/pem.h', 'src/include/openssl/pkcs12.h', 'src/include/openssl/pkcs7.h', 'src/include/openssl/pkcs8.h', 'src/include/openssl/poly1305.h', 'src/include/openssl/pool.h', 'src/include/openssl/rand.h', 'src/include/openssl/rc4.h', 'src/include/openssl/ripemd.h', 'src/include/openssl/rsa.h', 'src/include/openssl/safestack.h', 'src/include/openssl/sha.h', 'src/include/openssl/siphash.h', 'src/include/openssl/span.h', 'src/include/openssl/stack.h', 'src/include/openssl/thread.h', 'src/include/openssl/type_check.h', 'src/include/openssl/x509.h', 'src/include/openssl/x509_vfy.h', 'src/include/openssl/x509v3.h'] crypto_internal_headers = ['src/crypto/asn1/asn1_locl.h', 'src/crypto/bio/internal.h', 'src/crypto/bytestring/internal.h', 'src/crypto/chacha/internal.h', 'src/crypto/cipher_extra/internal.h', 'src/crypto/conf/conf_def.h', 'src/crypto/conf/internal.h', 'src/crypto/cpu-arm-linux.h', 'src/crypto/err/internal.h', 'src/crypto/evp/internal.h', 'src/crypto/fipsmodule/aes/internal.h', 'src/crypto/fipsmodule/bn/internal.h', 'src/crypto/fipsmodule/bn/rsaz_exp.h', 'src/crypto/fipsmodule/cipher/internal.h', 'src/crypto/fipsmodule/delocate.h', 'src/crypto/fipsmodule/des/internal.h', 'src/crypto/fipsmodule/digest/internal.h', 'src/crypto/fipsmodule/digest/md32_common.h', 'src/crypto/fipsmodule/ec/internal.h', 'src/crypto/fipsmodule/ec/p256-x86_64-table.h', 'src/crypto/fipsmodule/ec/p256-x86_64.h', 'src/crypto/fipsmodule/md5/internal.h', 'src/crypto/fipsmodule/modes/internal.h', 'src/crypto/fipsmodule/rand/internal.h', 'src/crypto/fipsmodule/rsa/internal.h', 'src/crypto/fipsmodule/sha/internal.h', 'src/crypto/fipsmodule/tls/internal.h', 'src/crypto/hrss/internal.h', 'src/crypto/internal.h', 'src/crypto/obj/obj_dat.h', 'src/crypto/pkcs7/internal.h', 'src/crypto/pkcs8/internal.h', 'src/crypto/poly1305/internal.h', 'src/crypto/pool/internal.h', 'src/crypto/x509/charmap.h', 'src/crypto/x509/internal.h', 'src/crypto/x509/vpm_int.h', 'src/crypto/x509v3/ext_dat.h', 'src/crypto/x509v3/internal.h', 'src/crypto/x509v3/pcy_int.h', 'src/third_party/fiat/curve25519_32.h', 'src/third_party/fiat/curve25519_64.h', 'src/third_party/fiat/curve25519_tables.h', 'src/third_party/fiat/internal.h', 'src/third_party/fiat/p256_32.h', 'src/third_party/fiat/p256_64.h'] crypto_sources = ['err_data.c', 'src/crypto/asn1/a_bitstr.c', 'src/crypto/asn1/a_bool.c', 'src/crypto/asn1/a_d2i_fp.c', 'src/crypto/asn1/a_dup.c', 'src/crypto/asn1/a_enum.c', 'src/crypto/asn1/a_gentm.c', 'src/crypto/asn1/a_i2d_fp.c', 'src/crypto/asn1/a_int.c', 'src/crypto/asn1/a_mbstr.c', 'src/crypto/asn1/a_object.c', 'src/crypto/asn1/a_octet.c', 'src/crypto/asn1/a_print.c', 'src/crypto/asn1/a_strnid.c', 'src/crypto/asn1/a_time.c', 'src/crypto/asn1/a_type.c', 'src/crypto/asn1/a_utctm.c', 'src/crypto/asn1/a_utf8.c', 'src/crypto/asn1/asn1_lib.c', 'src/crypto/asn1/asn1_par.c', 'src/crypto/asn1/asn_pack.c', 'src/crypto/asn1/f_enum.c', 'src/crypto/asn1/f_int.c', 'src/crypto/asn1/f_string.c', 'src/crypto/asn1/tasn_dec.c', 'src/crypto/asn1/tasn_enc.c', 'src/crypto/asn1/tasn_fre.c', 'src/crypto/asn1/tasn_new.c', 'src/crypto/asn1/tasn_typ.c', 'src/crypto/asn1/tasn_utl.c', 'src/crypto/asn1/time_support.c', 'src/crypto/base64/base64.c', 'src/crypto/bio/bio.c', 'src/crypto/bio/bio_mem.c', 'src/crypto/bio/connect.c', 'src/crypto/bio/fd.c', 'src/crypto/bio/file.c', 'src/crypto/bio/hexdump.c', 'src/crypto/bio/pair.c', 'src/crypto/bio/printf.c', 'src/crypto/bio/socket.c', 'src/crypto/bio/socket_helper.c', 'src/crypto/bn_extra/bn_asn1.c', 'src/crypto/bn_extra/convert.c', 'src/crypto/buf/buf.c', 'src/crypto/bytestring/asn1_compat.c', 'src/crypto/bytestring/ber.c', 'src/crypto/bytestring/cbb.c', 'src/crypto/bytestring/cbs.c', 'src/crypto/bytestring/unicode.c', 'src/crypto/chacha/chacha.c', 'src/crypto/cipher_extra/cipher_extra.c', 'src/crypto/cipher_extra/derive_key.c', 'src/crypto/cipher_extra/e_aesccm.c', 'src/crypto/cipher_extra/e_aesctrhmac.c', 'src/crypto/cipher_extra/e_aesgcmsiv.c', 'src/crypto/cipher_extra/e_chacha20poly1305.c', 'src/crypto/cipher_extra/e_null.c', 'src/crypto/cipher_extra/e_rc2.c', 'src/crypto/cipher_extra/e_rc4.c', 'src/crypto/cipher_extra/e_tls.c', 'src/crypto/cipher_extra/tls_cbc.c', 'src/crypto/cmac/cmac.c', 'src/crypto/conf/conf.c', 'src/crypto/cpu-aarch64-fuchsia.c', 'src/crypto/cpu-aarch64-linux.c', 'src/crypto/cpu-arm-linux.c', 'src/crypto/cpu-arm.c', 'src/crypto/cpu-intel.c', 'src/crypto/cpu-ppc64le.c', 'src/crypto/crypto.c', 'src/crypto/curve25519/spake25519.c', 'src/crypto/dh/check.c', 'src/crypto/dh/dh.c', 'src/crypto/dh/dh_asn1.c', 'src/crypto/dh/params.c', 'src/crypto/digest_extra/digest_extra.c', 'src/crypto/dsa/dsa.c', 'src/crypto/dsa/dsa_asn1.c', 'src/crypto/ec_extra/ec_asn1.c', 'src/crypto/ec_extra/ec_derive.c', 'src/crypto/ecdh_extra/ecdh_extra.c', 'src/crypto/ecdsa_extra/ecdsa_asn1.c', 'src/crypto/engine/engine.c', 'src/crypto/err/err.c', 'src/crypto/evp/digestsign.c', 'src/crypto/evp/evp.c', 'src/crypto/evp/evp_asn1.c', 'src/crypto/evp/evp_ctx.c', 'src/crypto/evp/p_dsa_asn1.c', 'src/crypto/evp/p_ec.c', 'src/crypto/evp/p_ec_asn1.c', 'src/crypto/evp/p_ed25519.c', 'src/crypto/evp/p_ed25519_asn1.c', 'src/crypto/evp/p_rsa.c', 'src/crypto/evp/p_rsa_asn1.c', 'src/crypto/evp/p_x25519.c', 'src/crypto/evp/p_x25519_asn1.c', 'src/crypto/evp/pbkdf.c', 'src/crypto/evp/print.c', 'src/crypto/evp/scrypt.c', 'src/crypto/evp/sign.c', 'src/crypto/ex_data.c', 'src/crypto/fipsmodule/bcm.c', 'src/crypto/fipsmodule/fips_shared_support.c', 'src/crypto/fipsmodule/is_fips.c', 'src/crypto/hkdf/hkdf.c', 'src/crypto/hrss/hrss.c', 'src/crypto/lhash/lhash.c', 'src/crypto/mem.c', 'src/crypto/obj/obj.c', 'src/crypto/obj/obj_xref.c', 'src/crypto/pem/pem_all.c', 'src/crypto/pem/pem_info.c', 'src/crypto/pem/pem_lib.c', 'src/crypto/pem/pem_oth.c', 'src/crypto/pem/pem_pk8.c', 'src/crypto/pem/pem_pkey.c', 'src/crypto/pem/pem_x509.c', 'src/crypto/pem/pem_xaux.c', 'src/crypto/pkcs7/pkcs7.c', 'src/crypto/pkcs7/pkcs7_x509.c', 'src/crypto/pkcs8/p5_pbev2.c', 'src/crypto/pkcs8/pkcs8.c', 'src/crypto/pkcs8/pkcs8_x509.c', 'src/crypto/poly1305/poly1305.c', 'src/crypto/poly1305/poly1305_arm.c', 'src/crypto/poly1305/poly1305_vec.c', 'src/crypto/pool/pool.c', 'src/crypto/rand_extra/deterministic.c', 'src/crypto/rand_extra/forkunsafe.c', 'src/crypto/rand_extra/fuchsia.c', 'src/crypto/rand_extra/rand_extra.c', 'src/crypto/rand_extra/windows.c', 'src/crypto/rc4/rc4.c', 'src/crypto/refcount_c11.c', 'src/crypto/refcount_lock.c', 'src/crypto/rsa_extra/rsa_asn1.c', 'src/crypto/rsa_extra/rsa_print.c', 'src/crypto/siphash/siphash.c', 'src/crypto/stack/stack.c', 'src/crypto/thread.c', 'src/crypto/thread_none.c', 'src/crypto/thread_pthread.c', 'src/crypto/thread_win.c', 'src/crypto/x509/a_digest.c', 'src/crypto/x509/a_sign.c', 'src/crypto/x509/a_strex.c', 'src/crypto/x509/a_verify.c', 'src/crypto/x509/algorithm.c', 'src/crypto/x509/asn1_gen.c', 'src/crypto/x509/by_dir.c', 'src/crypto/x509/by_file.c', 'src/crypto/x509/i2d_pr.c', 'src/crypto/x509/rsa_pss.c', 'src/crypto/x509/t_crl.c', 'src/crypto/x509/t_req.c', 'src/crypto/x509/t_x509.c', 'src/crypto/x509/t_x509a.c', 'src/crypto/x509/x509.c', 'src/crypto/x509/x509_att.c', 'src/crypto/x509/x509_cmp.c', 'src/crypto/x509/x509_d2.c', 'src/crypto/x509/x509_def.c', 'src/crypto/x509/x509_ext.c', 'src/crypto/x509/x509_lu.c', 'src/crypto/x509/x509_obj.c', 'src/crypto/x509/x509_r2x.c', 'src/crypto/x509/x509_req.c', 'src/crypto/x509/x509_set.c', 'src/crypto/x509/x509_trs.c', 'src/crypto/x509/x509_txt.c', 'src/crypto/x509/x509_v3.c', 'src/crypto/x509/x509_vfy.c', 'src/crypto/x509/x509_vpm.c', 'src/crypto/x509/x509cset.c', 'src/crypto/x509/x509name.c', 'src/crypto/x509/x509rset.c', 'src/crypto/x509/x509spki.c', 'src/crypto/x509/x_algor.c', 'src/crypto/x509/x_all.c', 'src/crypto/x509/x_attrib.c', 'src/crypto/x509/x_crl.c', 'src/crypto/x509/x_exten.c', 'src/crypto/x509/x_info.c', 'src/crypto/x509/x_name.c', 'src/crypto/x509/x_pkey.c', 'src/crypto/x509/x_pubkey.c', 'src/crypto/x509/x_req.c', 'src/crypto/x509/x_sig.c', 'src/crypto/x509/x_spki.c', 'src/crypto/x509/x_val.c', 'src/crypto/x509/x_x509.c', 'src/crypto/x509/x_x509a.c', 'src/crypto/x509v3/pcy_cache.c', 'src/crypto/x509v3/pcy_data.c', 'src/crypto/x509v3/pcy_lib.c', 'src/crypto/x509v3/pcy_map.c', 'src/crypto/x509v3/pcy_node.c', 'src/crypto/x509v3/pcy_tree.c', 'src/crypto/x509v3/v3_akey.c', 'src/crypto/x509v3/v3_akeya.c', 'src/crypto/x509v3/v3_alt.c', 'src/crypto/x509v3/v3_bcons.c', 'src/crypto/x509v3/v3_bitst.c', 'src/crypto/x509v3/v3_conf.c', 'src/crypto/x509v3/v3_cpols.c', 'src/crypto/x509v3/v3_crld.c', 'src/crypto/x509v3/v3_enum.c', 'src/crypto/x509v3/v3_extku.c', 'src/crypto/x509v3/v3_genn.c', 'src/crypto/x509v3/v3_ia5.c', 'src/crypto/x509v3/v3_info.c', 'src/crypto/x509v3/v3_int.c', 'src/crypto/x509v3/v3_lib.c', 'src/crypto/x509v3/v3_ncons.c', 'src/crypto/x509v3/v3_ocsp.c', 'src/crypto/x509v3/v3_pci.c', 'src/crypto/x509v3/v3_pcia.c', 'src/crypto/x509v3/v3_pcons.c', 'src/crypto/x509v3/v3_pku.c', 'src/crypto/x509v3/v3_pmaps.c', 'src/crypto/x509v3/v3_prn.c', 'src/crypto/x509v3/v3_purp.c', 'src/crypto/x509v3/v3_skey.c', 'src/crypto/x509v3/v3_sxnet.c', 'src/crypto/x509v3/v3_utl.c', 'src/third_party/fiat/curve25519.c'] tool_sources = ['src/tool/args.cc', 'src/tool/ciphers.cc', 'src/tool/client.cc', 'src/tool/const.cc', 'src/tool/digest.cc', 'src/tool/file.cc', 'src/tool/generate_ed25519.cc', 'src/tool/genrsa.cc', 'src/tool/pkcs12.cc', 'src/tool/rand.cc', 'src/tool/server.cc', 'src/tool/sign.cc', 'src/tool/speed.cc', 'src/tool/tool.cc', 'src/tool/transport_common.cc'] tool_headers = ['src/tool/internal.h', 'src/tool/transport_common.h'] crypto_sources_ios_aarch64 = ['ios-aarch64/crypto/chacha/chacha-armv8.S', 'ios-aarch64/crypto/fipsmodule/aesv8-armx64.S', 'ios-aarch64/crypto/fipsmodule/armv8-mont.S', 'ios-aarch64/crypto/fipsmodule/ghash-neon-armv8.S', 'ios-aarch64/crypto/fipsmodule/ghashv8-armx64.S', 'ios-aarch64/crypto/fipsmodule/sha1-armv8.S', 'ios-aarch64/crypto/fipsmodule/sha256-armv8.S', 'ios-aarch64/crypto/fipsmodule/sha512-armv8.S', 'ios-aarch64/crypto/fipsmodule/vpaes-armv8.S', 'ios-aarch64/crypto/test/trampoline-armv8.S'] crypto_sources_ios_arm = ['ios-arm/crypto/chacha/chacha-armv4.S', 'ios-arm/crypto/fipsmodule/aesv8-armx32.S', 'ios-arm/crypto/fipsmodule/armv4-mont.S', 'ios-arm/crypto/fipsmodule/bsaes-armv7.S', 'ios-arm/crypto/fipsmodule/ghash-armv4.S', 'ios-arm/crypto/fipsmodule/ghashv8-armx32.S', 'ios-arm/crypto/fipsmodule/sha1-armv4-large.S', 'ios-arm/crypto/fipsmodule/sha256-armv4.S', 'ios-arm/crypto/fipsmodule/sha512-armv4.S', 'ios-arm/crypto/fipsmodule/vpaes-armv7.S', 'ios-arm/crypto/test/trampoline-armv4.S'] crypto_sources_linux_aarch64 = ['linux-aarch64/crypto/chacha/chacha-armv8.S', 'linux-aarch64/crypto/fipsmodule/aesv8-armx64.S', 'linux-aarch64/crypto/fipsmodule/armv8-mont.S', 'linux-aarch64/crypto/fipsmodule/ghash-neon-armv8.S', 'linux-aarch64/crypto/fipsmodule/ghashv8-armx64.S', 'linux-aarch64/crypto/fipsmodule/sha1-armv8.S', 'linux-aarch64/crypto/fipsmodule/sha256-armv8.S', 'linux-aarch64/crypto/fipsmodule/sha512-armv8.S', 'linux-aarch64/crypto/fipsmodule/vpaes-armv8.S', 'linux-aarch64/crypto/test/trampoline-armv8.S'] crypto_sources_linux_arm = ['linux-arm/crypto/chacha/chacha-armv4.S', 'linux-arm/crypto/fipsmodule/aesv8-armx32.S', 'linux-arm/crypto/fipsmodule/armv4-mont.S', 'linux-arm/crypto/fipsmodule/bsaes-armv7.S', 'linux-arm/crypto/fipsmodule/ghash-armv4.S', 'linux-arm/crypto/fipsmodule/ghashv8-armx32.S', 'linux-arm/crypto/fipsmodule/sha1-armv4-large.S', 'linux-arm/crypto/fipsmodule/sha256-armv4.S', 'linux-arm/crypto/fipsmodule/sha512-armv4.S', 'linux-arm/crypto/fipsmodule/vpaes-armv7.S', 'linux-arm/crypto/test/trampoline-armv4.S', 'src/crypto/curve25519/asm/x25519-asm-arm.S', 'src/crypto/poly1305/poly1305_arm_asm.S'] crypto_sources_linux_ppc64le = ['linux-ppc64le/crypto/fipsmodule/aesp8-ppc.S', 'linux-ppc64le/crypto/fipsmodule/ghashp8-ppc.S', 'linux-ppc64le/crypto/test/trampoline-ppc.S'] crypto_sources_linux_x86 = ['linux-x86/crypto/chacha/chacha-x86.S', 'linux-x86/crypto/fipsmodule/aesni-x86.S', 'linux-x86/crypto/fipsmodule/bn-586.S', 'linux-x86/crypto/fipsmodule/co-586.S', 'linux-x86/crypto/fipsmodule/ghash-ssse3-x86.S', 'linux-x86/crypto/fipsmodule/ghash-x86.S', 'linux-x86/crypto/fipsmodule/md5-586.S', 'linux-x86/crypto/fipsmodule/sha1-586.S', 'linux-x86/crypto/fipsmodule/sha256-586.S', 'linux-x86/crypto/fipsmodule/sha512-586.S', 'linux-x86/crypto/fipsmodule/vpaes-x86.S', 'linux-x86/crypto/fipsmodule/x86-mont.S', 'linux-x86/crypto/test/trampoline-x86.S'] crypto_sources_linux_x86_64 = ['linux-x86_64/crypto/chacha/chacha-x86_64.S', 'linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S', 'linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S', 'linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S', 'linux-x86_64/crypto/fipsmodule/aesni-x86_64.S', 'linux-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S', 'linux-x86_64/crypto/fipsmodule/ghash-x86_64.S', 'linux-x86_64/crypto/fipsmodule/md5-x86_64.S', 'linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S', 'linux-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S', 'linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S', 'linux-x86_64/crypto/fipsmodule/rsaz-avx2.S', 'linux-x86_64/crypto/fipsmodule/sha1-x86_64.S', 'linux-x86_64/crypto/fipsmodule/sha256-x86_64.S', 'linux-x86_64/crypto/fipsmodule/sha512-x86_64.S', 'linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S', 'linux-x86_64/crypto/fipsmodule/x86_64-mont.S', 'linux-x86_64/crypto/fipsmodule/x86_64-mont5.S', 'linux-x86_64/crypto/test/trampoline-x86_64.S', 'src/crypto/hrss/asm/poly_rq_mul.S'] crypto_sources_mac_x86 = ['mac-x86/crypto/chacha/chacha-x86.S', 'mac-x86/crypto/fipsmodule/aesni-x86.S', 'mac-x86/crypto/fipsmodule/bn-586.S', 'mac-x86/crypto/fipsmodule/co-586.S', 'mac-x86/crypto/fipsmodule/ghash-ssse3-x86.S', 'mac-x86/crypto/fipsmodule/ghash-x86.S', 'mac-x86/crypto/fipsmodule/md5-586.S', 'mac-x86/crypto/fipsmodule/sha1-586.S', 'mac-x86/crypto/fipsmodule/sha256-586.S', 'mac-x86/crypto/fipsmodule/sha512-586.S', 'mac-x86/crypto/fipsmodule/vpaes-x86.S', 'mac-x86/crypto/fipsmodule/x86-mont.S', 'mac-x86/crypto/test/trampoline-x86.S'] crypto_sources_mac_x86_64 = ['mac-x86_64/crypto/chacha/chacha-x86_64.S', 'mac-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S', 'mac-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S', 'mac-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S', 'mac-x86_64/crypto/fipsmodule/aesni-x86_64.S', 'mac-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S', 'mac-x86_64/crypto/fipsmodule/ghash-x86_64.S', 'mac-x86_64/crypto/fipsmodule/md5-x86_64.S', 'mac-x86_64/crypto/fipsmodule/p256-x86_64-asm.S', 'mac-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S', 'mac-x86_64/crypto/fipsmodule/rdrand-x86_64.S', 'mac-x86_64/crypto/fipsmodule/rsaz-avx2.S', 'mac-x86_64/crypto/fipsmodule/sha1-x86_64.S', 'mac-x86_64/crypto/fipsmodule/sha256-x86_64.S', 'mac-x86_64/crypto/fipsmodule/sha512-x86_64.S', 'mac-x86_64/crypto/fipsmodule/vpaes-x86_64.S', 'mac-x86_64/crypto/fipsmodule/x86_64-mont.S', 'mac-x86_64/crypto/fipsmodule/x86_64-mont5.S', 'mac-x86_64/crypto/test/trampoline-x86_64.S'] crypto_sources_win_x86 = ['win-x86/crypto/chacha/chacha-x86.asm', 'win-x86/crypto/fipsmodule/aesni-x86.asm', 'win-x86/crypto/fipsmodule/bn-586.asm', 'win-x86/crypto/fipsmodule/co-586.asm', 'win-x86/crypto/fipsmodule/ghash-ssse3-x86.asm', 'win-x86/crypto/fipsmodule/ghash-x86.asm', 'win-x86/crypto/fipsmodule/md5-586.asm', 'win-x86/crypto/fipsmodule/sha1-586.asm', 'win-x86/crypto/fipsmodule/sha256-586.asm', 'win-x86/crypto/fipsmodule/sha512-586.asm', 'win-x86/crypto/fipsmodule/vpaes-x86.asm', 'win-x86/crypto/fipsmodule/x86-mont.asm', 'win-x86/crypto/test/trampoline-x86.asm'] crypto_sources_win_x86_64 = ['win-x86_64/crypto/chacha/chacha-x86_64.asm', 'win-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.asm', 'win-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.asm', 'win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm', 'win-x86_64/crypto/fipsmodule/aesni-x86_64.asm', 'win-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.asm', 'win-x86_64/crypto/fipsmodule/ghash-x86_64.asm', 'win-x86_64/crypto/fipsmodule/md5-x86_64.asm', 'win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm', 'win-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.asm', 'win-x86_64/crypto/fipsmodule/rdrand-x86_64.asm', 'win-x86_64/crypto/fipsmodule/rsaz-avx2.asm', 'win-x86_64/crypto/fipsmodule/sha1-x86_64.asm', 'win-x86_64/crypto/fipsmodule/sha256-x86_64.asm', 'win-x86_64/crypto/fipsmodule/sha512-x86_64.asm', 'win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm', 'win-x86_64/crypto/fipsmodule/x86_64-mont.asm', 'win-x86_64/crypto/fipsmodule/x86_64-mont5.asm', 'win-x86_64/crypto/test/trampoline-x86_64.asm']
def possible_combination(string): n = len(string) count = [0] * (n + 1); count[0] = 1; count[1] = 1; for i in range(2, n + 1): count[i] = 0; if (string[i - 1] > '0'): count[i] = count[i - 1]; if (string[i - 2] == '1' or (string[i - 2] == '2' and string[i - 1] < '7')): count[i] += count[i - 2]; return count[n]; print(possible_combination(input()))
def possible_combination(string): n = len(string) count = [0] * (n + 1) count[0] = 1 count[1] = 1 for i in range(2, n + 1): count[i] = 0 if string[i - 1] > '0': count[i] = count[i - 1] if string[i - 2] == '1' or (string[i - 2] == '2' and string[i - 1] < '7'): count[i] += count[i - 2] return count[n] print(possible_combination(input()))
############################################################################### # Copyright (c) 2019, Lawrence Livermore National Security, LLC. # Produced at the Lawrence Livermore National Laboratory # Written by the Merlin dev team, listed in the CONTRIBUTORS file. # <[email protected]> # # LLNL-CODE-797170 # All rights reserved. # This file is part of Merlin, Version: 1.5.1. # # For details, see https://github.com/LLNL/merlin. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. ############################################################################### DESCRIPTION = {"description": {}} BATCH = {"batch": {"type": "local", "dry_run": False, "shell": "/bin/bash"}} ENV = {"env": {"variables": {}}} STUDY_STEP_RUN = {"task_queue": "merlin", "shell": "/bin/bash", "max_retries": 30} PARAMETER = {"global.parameters": {}} MERLIN = { "merlin": { "resources": {"task_server": "celery", "overlap": False, "workers": None}, "samples": None, } } WORKER = {"steps": ["all"], "nodes": None, "batch": None} SAMPLES = { "generate": {"cmd": "echo 'Insert sample-generating command here'"}, "level_max_dirs": 25, }
description = {'description': {}} batch = {'batch': {'type': 'local', 'dry_run': False, 'shell': '/bin/bash'}} env = {'env': {'variables': {}}} study_step_run = {'task_queue': 'merlin', 'shell': '/bin/bash', 'max_retries': 30} parameter = {'global.parameters': {}} merlin = {'merlin': {'resources': {'task_server': 'celery', 'overlap': False, 'workers': None}, 'samples': None}} worker = {'steps': ['all'], 'nodes': None, 'batch': None} samples = {'generate': {'cmd': "echo 'Insert sample-generating command here'"}, 'level_max_dirs': 25}
# Metadata Create Tests def test0_metadata_create(): return # Metadata Getters Tests def test0_metadata_name(): return def test0_metadata_ename(): return def test0_metadata_season(): return def test0_metadata_episode(): return def test0_metadata_quality(): return def test0_metadata_extension(): return def test0_metadata_year(): return def tets0_metadata_fflag(): return # ExtendendMetadata Create Tests def test0_extendedmetadata_create(): return # ExtendendMetadata Getters Tests def test0_extendedmetadata_genre(): return
def test0_metadata_create(): return def test0_metadata_name(): return def test0_metadata_ename(): return def test0_metadata_season(): return def test0_metadata_episode(): return def test0_metadata_quality(): return def test0_metadata_extension(): return def test0_metadata_year(): return def tets0_metadata_fflag(): return def test0_extendedmetadata_create(): return def test0_extendedmetadata_genre(): return
# coding: utf-8 # Author: zhao-zh10 # The function localize takes the following arguments: # # colors: # 2D list, each entry either 'R' (for red cell) or 'G' (for green cell). The environment is cyclic. # # measurements: # list of measurements taken by the robot, each entry either 'R' or 'G' # # motions: # list of actions taken by the robot, each entry of the form [dy,dx], # where dx refers to the change in the x-direction (positive meaning # movement to the right) and dy refers to the change in the y-direction # (positive meaning movement downward) # NOTE: the *first* coordinate is change in y; the *second* coordinate is # change in x # # sensor_right: # float between 0 and 1, giving the probability that any given # measurement is correct; the probability that the measurement is # incorrect is 1-sensor_right # # p_move: # float between 0 and 1, giving the probability that any given movement # command takes place; the probability that the movement command fails # (and the robot remains still) is 1-p_move; the robot will NOT overshoot # its destination in this exercise # # The function should RETURN (not just show or print) a 2D list (of the same # dimensions as colors) that gives the probabilities that the robot occupies # each cell in the world. # # Compute the probabilities by assuming the robot initially has a uniform # probability of being in any cell. # # Also assume that at each step, the robot: # 1) first makes a movement, # 2) then takes a measurement. # # Motion: # [0,0] - stay # [0,1] - right # [0,-1] - left # [1,0] - down # [-1,0] - up # For the purpose of this homework assume that the robot can move only left, right, up, or down. It cannot move diagonally. # Also, for this assignment, the robot will never overshoot its destination square; it will either make the movement or it will remain stationary. def localize(colors,measurements,motions,sensor_right,p_move): # initializes p to a uniform distribution over a grid of the same dimensions as colors pinit = 1.0 / float(len(colors)) / float(len(colors[0])) p = [[pinit for col in range(len(colors[0]))] for row in range(len(colors))] assert(len(motions) == len(measurements)) for i in range(len(motions)): p = move(p, motions[i], p_move) p = sense(p, colors, measurements[i], sensor_right) return p def show(p): rows = ['[' + ','.join(map(lambda x: '{0:.5f}'.format(x),r)) + ']' for r in p] print('[' + ',\n '.join(rows) + ']') def sense(probability, colors, measurement, sensor_right): prob = [[0.0 for col in range(len(colors[0]))] for row in range(len(colors))] sum_prob = 0.0 sensor_wrong = 1.0 - sensor_right for i in range(len(colors)): for j in range(len(colors[0])): hit = (measurement == colors[i][j]) prob[i][j] = probability[i][j] * (hit * sensor_right + (1 - hit) * sensor_wrong) sum_prob += prob[i][j] for i in range(len(colors)): for j in range(len(colors[0])): prob[i][j] /= sum_prob return prob def move(probability, motion, p_move): dy, dx = motion[0], motion[1] prob = [[0.0 for col in range(len(colors[0]))] for row in range(len(colors))] p_stay = 1.0 - p_move for i in range(len(colors)): for j in range(len(colors[0])): prob[i][j] = probability[i][j] * p_stay + probability[(i-dy)%len(colors)][(j-dx)%len(colors[0])] * p_move return prob if __name__ == '__main__': ################################################################################# #Test Case # # test 1 # colors = [['G', 'G', 'G'], # ['G', 'R', 'G'], # ['G', 'G', 'G']] # measurements = ['R'] # motions = [[0,0]] # sensor_right = 1.0 # p_move = 1.0 # p = localize(colors,measurements,motions,sensor_right,p_move) # correct_answer = ( # [[0.0, 0.0, 0.0], # [0.0, 1.0, 0.0], # [0.0, 0.0, 0.0]]) # show(p) # # test 2 # colors = [['G', 'G', 'G'], # ['G', 'R', 'R'], # ['G', 'G', 'G']] # measurements = ['R'] # motions = [[0,0]] # sensor_right = 1.0 # p_move = 1.0 # p = localize(colors,measurements,motions,sensor_right,p_move) # correct_answer = ( # [[0.0, 0.0, 0.0], # [0.0, 0.5, 0.5], # [0.0, 0.0, 0.0]]) # show(p) # # test 3 # colors = [['G', 'G', 'G'], # ['G', 'R', 'R'], # ['G', 'G', 'G']] # measurements = ['R'] # motions = [[0,0]] # sensor_right = 0.8 # p_move = 1.0 # p = localize(colors,measurements,motions,sensor_right,p_move) # correct_answer = ( # [[0.06666666666, 0.06666666666, 0.06666666666], # [0.06666666666, 0.26666666666, 0.26666666666], # [0.06666666666, 0.06666666666, 0.06666666666]]) # show(p) # # test 4 # colors = [['G', 'G', 'G'], # ['G', 'R', 'R'], # ['G', 'G', 'G']] # measurements = ['R', 'R'] # motions = [[0,0], [0,1]] # sensor_right = 0.8 # p_move = 1.0 # p = localize(colors,measurements,motions,sensor_right,p_move) # correct_answer = ( # [[0.03333333333, 0.03333333333, 0.03333333333], # [0.13333333333, 0.13333333333, 0.53333333333], # [0.03333333333, 0.03333333333, 0.03333333333]]) # show(p) # # test 5 # colors = [['G', 'G', 'G'], # ['G', 'R', 'R'], # ['G', 'G', 'G']] # measurements = ['R', 'R'] # motions = [[0,0], [0,1]] # sensor_right = 1.0 # p_move = 1.0 # p = localize(colors,measurements,motions,sensor_right,p_move) # correct_answer = ( # [[0.0, 0.0, 0.0], # [0.0, 0.0, 1.0], # [0.0, 0.0, 0.0]]) # show(p) # # test 6 # colors = [['G', 'G', 'G'], # ['G', 'R', 'R'], # ['G', 'G', 'G']] # measurements = ['R', 'R'] # motions = [[0,0], [0,1]] # sensor_right = 0.8 # p_move = 0.5 # p = localize(colors,measurements,motions,sensor_right,p_move) # correct_answer = ( # [[0.0289855072, 0.0289855072, 0.0289855072], # [0.0724637681, 0.2898550724, 0.4637681159], # [0.0289855072, 0.0289855072, 0.0289855072]]) # show(p) # # test 7 # colors = [['G', 'G', 'G'], # ['G', 'R', 'R'], # ['G', 'G', 'G']] # measurements = ['R', 'R'] # motions = [[0,0], [0,1]] # sensor_right = 1.0 # p_move = 0.5 # p = localize(colors,measurements,motions,sensor_right,p_move) # correct_answer = ( # [[0.0, 0.0, 0.0], # [0.0, 0.33333333, 0.66666666], # [0.0, 0.0, 0.0]]) # show(p) ############################################################# # For the following test case, your output should be # [[0.01105, 0.02464, 0.06799, 0.04472, 0.02465], # [0.00715, 0.01017, 0.08696, 0.07988, 0.00935], # [0.00739, 0.00894, 0.11272, 0.35350, 0.04065], # [0.00910, 0.00715, 0.01434, 0.04313, 0.03642]] # (within a tolerance of +/- 0.001 for each entry) colors = [['R','G','G','R','R'],['R','R','G','R','R'],['R','R','G','G','R'],['R','R','R','R','R']] measurements = ['G','G','G','G','G'] motions = [[0,0],[0,1],[1,0],[1,0],[0,1]] p = localize(colors,measurements,motions,sensor_right = 0.7, p_move = 0.8) show(p) # displays your answer
def localize(colors, measurements, motions, sensor_right, p_move): pinit = 1.0 / float(len(colors)) / float(len(colors[0])) p = [[pinit for col in range(len(colors[0]))] for row in range(len(colors))] assert len(motions) == len(measurements) for i in range(len(motions)): p = move(p, motions[i], p_move) p = sense(p, colors, measurements[i], sensor_right) return p def show(p): rows = ['[' + ','.join(map(lambda x: '{0:.5f}'.format(x), r)) + ']' for r in p] print('[' + ',\n '.join(rows) + ']') def sense(probability, colors, measurement, sensor_right): prob = [[0.0 for col in range(len(colors[0]))] for row in range(len(colors))] sum_prob = 0.0 sensor_wrong = 1.0 - sensor_right for i in range(len(colors)): for j in range(len(colors[0])): hit = measurement == colors[i][j] prob[i][j] = probability[i][j] * (hit * sensor_right + (1 - hit) * sensor_wrong) sum_prob += prob[i][j] for i in range(len(colors)): for j in range(len(colors[0])): prob[i][j] /= sum_prob return prob def move(probability, motion, p_move): (dy, dx) = (motion[0], motion[1]) prob = [[0.0 for col in range(len(colors[0]))] for row in range(len(colors))] p_stay = 1.0 - p_move for i in range(len(colors)): for j in range(len(colors[0])): prob[i][j] = probability[i][j] * p_stay + probability[(i - dy) % len(colors)][(j - dx) % len(colors[0])] * p_move return prob if __name__ == '__main__': colors = [['R', 'G', 'G', 'R', 'R'], ['R', 'R', 'G', 'R', 'R'], ['R', 'R', 'G', 'G', 'R'], ['R', 'R', 'R', 'R', 'R']] measurements = ['G', 'G', 'G', 'G', 'G'] motions = [[0, 0], [0, 1], [1, 0], [1, 0], [0, 1]] p = localize(colors, measurements, motions, sensor_right=0.7, p_move=0.8) show(p)
def foo(): print("In utility.py ==> foo()") if __name__=='__main__': foo()
def foo(): print('In utility.py ==> foo()') if __name__ == '__main__': foo()
count=0 def permute(s,l,pos,n): if pos>=n: global count count+=1 print(l) for k in l: print(s[k],end="") print() return for i in range(n): if i not in l[:pos]: l[pos] = i permute(s,l,pos+1,n) s="shivank" n=len(s) l=[] for i in range(n): l.append(0) permute(s,l,0,n) print(count)
count = 0 def permute(s, l, pos, n): if pos >= n: global count count += 1 print(l) for k in l: print(s[k], end='') print() return for i in range(n): if i not in l[:pos]: l[pos] = i permute(s, l, pos + 1, n) s = 'shivank' n = len(s) l = [] for i in range(n): l.append(0) permute(s, l, 0, n) print(count)
# https://leetcode.com/problems/divide-two-integers/ # class Solution: def divide(self, dividend: int, divisor: int) -> int: if dividend == divisor: return 1 isPositive = (dividend > 0 and divisor > 0) or (dividend < 0 and divisor < 0) dividend = dividend if dividend > 0 else -dividend divisor = divisor if divisor > 0 else -divisor ans = 0 divisors = {0: 0, 1: divisor} divIdx = 1 while divisors[divIdx] < dividend: i = divIdx divIdx += divIdx divisors[divIdx] = divisors[i] + divisors[i] divisorsKeys = sorted(list(divisors.keys())) divisorsIdx = len(divisorsKeys)-1 while divisorsIdx > 0 and dividend > 0: while divisors[divisorsKeys[divisorsIdx]] > dividend: divisorsIdx -= 1 dividend -= divisors[divisorsKeys[divisorsIdx]] ans += divisorsKeys[divisorsIdx] return ans if isPositive else -ans s = Solution() # print(s.divide(10,3)) print(s.divide(10,-2)) print(s.divide(100000000000,-2))
class Solution: def divide(self, dividend: int, divisor: int) -> int: if dividend == divisor: return 1 is_positive = dividend > 0 and divisor > 0 or (dividend < 0 and divisor < 0) dividend = dividend if dividend > 0 else -dividend divisor = divisor if divisor > 0 else -divisor ans = 0 divisors = {0: 0, 1: divisor} div_idx = 1 while divisors[divIdx] < dividend: i = divIdx div_idx += divIdx divisors[divIdx] = divisors[i] + divisors[i] divisors_keys = sorted(list(divisors.keys())) divisors_idx = len(divisorsKeys) - 1 while divisorsIdx > 0 and dividend > 0: while divisors[divisorsKeys[divisorsIdx]] > dividend: divisors_idx -= 1 dividend -= divisors[divisorsKeys[divisorsIdx]] ans += divisorsKeys[divisorsIdx] return ans if isPositive else -ans s = solution() print(s.divide(10, -2)) print(s.divide(100000000000, -2))
#!/usr/bin/env python3 def linearSearch(lst,item): isFound = False for x in range(0,len(lst)): if item == lst[x]: isFound = True return "Item found at index " + str(x) elif (x == len(lst)-1) and (isFound == False): return "Item not found" if __name__ == '__main__': numLst = [11,45,6,8,1,2,9,45,32] print(linearSearch(numLst,22))
def linear_search(lst, item): is_found = False for x in range(0, len(lst)): if item == lst[x]: is_found = True return 'Item found at index ' + str(x) elif x == len(lst) - 1 and isFound == False: return 'Item not found' if __name__ == '__main__': num_lst = [11, 45, 6, 8, 1, 2, 9, 45, 32] print(linear_search(numLst, 22))
line = input() if line == 's3cr3t!P@ssw0rd': print("Welcome") else: print("Wrong password!")
line = input() if line == 's3cr3t!P@ssw0rd': print('Welcome') else: print('Wrong password!')
#%% def generate_range(min: int, max: int, step: int) -> None: for i in range(min, max + 1, step): print(i) generate_range(2, 10, 2) # %% # %% def generate_range(min: int, max: int, step: int) -> None: i = min while i <= max: print(i) i = i + step generate_range(2, 10, 2)
def generate_range(min: int, max: int, step: int) -> None: for i in range(min, max + 1, step): print(i) generate_range(2, 10, 2) def generate_range(min: int, max: int, step: int) -> None: i = min while i <= max: print(i) i = i + step generate_range(2, 10, 2)
begin_unit comment|'# Copyright 2015 Red Hat Inc' nl|'\n' comment|'# Licensed under the Apache License, Version 2.0 (the "License"); you may' nl|'\n' comment|'# not use this file except in compliance with the License. You may obtain' nl|'\n' comment|'# a copy of the License at' nl|'\n' comment|'#' nl|'\n' comment|'# http://www.apache.org/licenses/LICENSE-2.0' nl|'\n' comment|'#' nl|'\n' comment|'# Unless required by applicable law or agreed to in writing, software' nl|'\n' comment|'# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT' nl|'\n' comment|'# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the' nl|'\n' comment|'# License for the specific language governing permissions and limitations' nl|'\n' comment|'# under the License.' nl|'\n' nl|'\n' comment|'#' nl|'\n' comment|'# See blueprint backportable-db-migrations-icehouse' nl|'\n' comment|'# http://lists.openstack.org/pipermail/openstack-dev/2013-March/006827.html' nl|'\n' nl|'\n' name|'from' name|'sqlalchemy' name|'import' name|'MetaData' op|',' name|'Table' op|',' name|'Column' op|',' name|'String' op|',' name|'Index' newline|'\n' nl|'\n' nl|'\n' DECL|function|upgrade name|'def' name|'upgrade' op|'(' name|'migrate_engine' op|')' op|':' newline|'\n' indent|' ' name|'meta' op|'=' name|'MetaData' op|'(' name|'bind' op|'=' name|'migrate_engine' op|')' newline|'\n' nl|'\n' comment|'# Add a new column to store PCI device parent address' nl|'\n' name|'pci_devices' op|'=' name|'Table' op|'(' string|"'pci_devices'" op|',' name|'meta' op|',' name|'autoload' op|'=' name|'True' op|')' newline|'\n' name|'shadow_pci_devices' op|'=' name|'Table' op|'(' string|"'shadow_pci_devices'" op|',' name|'meta' op|',' name|'autoload' op|'=' name|'True' op|')' newline|'\n' nl|'\n' name|'parent_addr' op|'=' name|'Column' op|'(' string|"'parent_addr'" op|',' name|'String' op|'(' number|'12' op|')' op|',' name|'nullable' op|'=' name|'True' op|')' newline|'\n' nl|'\n' name|'if' name|'not' name|'hasattr' op|'(' name|'pci_devices' op|'.' name|'c' op|',' string|"'parent_addr'" op|')' op|':' newline|'\n' indent|' ' name|'pci_devices' op|'.' name|'create_column' op|'(' name|'parent_addr' op|')' newline|'\n' dedent|'' name|'if' name|'not' name|'hasattr' op|'(' name|'shadow_pci_devices' op|'.' name|'c' op|',' string|"'parent_addr'" op|')' op|':' newline|'\n' indent|' ' name|'shadow_pci_devices' op|'.' name|'create_column' op|'(' name|'parent_addr' op|'.' name|'copy' op|'(' op|')' op|')' newline|'\n' nl|'\n' comment|'# Create index' nl|'\n' dedent|'' name|'parent_index' op|'=' name|'Index' op|'(' string|"'ix_pci_devices_compute_node_id_parent_addr_deleted'" op|',' nl|'\n' name|'pci_devices' op|'.' name|'c' op|'.' name|'compute_node_id' op|',' nl|'\n' name|'pci_devices' op|'.' name|'c' op|'.' name|'parent_addr' op|',' nl|'\n' name|'pci_devices' op|'.' name|'c' op|'.' name|'deleted' op|')' newline|'\n' name|'parent_index' op|'.' name|'create' op|'(' name|'migrate_engine' op|')' newline|'\n' dedent|'' endmarker|'' end_unit
begin_unit comment | '# Copyright 2015 Red Hat Inc' nl | '\n' comment | '# Licensed under the Apache License, Version 2.0 (the "License"); you may' nl | '\n' comment | '# not use this file except in compliance with the License. You may obtain' nl | '\n' comment | '# a copy of the License at' nl | '\n' comment | '#' nl | '\n' comment | '# http://www.apache.org/licenses/LICENSE-2.0' nl | '\n' comment | '#' nl | '\n' comment | '# Unless required by applicable law or agreed to in writing, software' nl | '\n' comment | '# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT' nl | '\n' comment | '# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the' nl | '\n' comment | '# License for the specific language governing permissions and limitations' nl | '\n' comment | '# under the License.' nl | '\n' nl | '\n' comment | '#' nl | '\n' comment | '# See blueprint backportable-db-migrations-icehouse' nl | '\n' comment | '# http://lists.openstack.org/pipermail/openstack-dev/2013-March/006827.html' nl | '\n' nl | '\n' name | 'from' name | 'sqlalchemy' name | 'import' name | 'MetaData' op | ',' name | 'Table' op | ',' name | 'Column' op | ',' name | 'String' op | ',' name | 'Index' newline | '\n' nl | '\n' nl | '\n' DECL | function | upgrade name | 'def' name | 'upgrade' op | '(' name | 'migrate_engine' op | ')' op | ':' newline | '\n' indent | ' ' name | 'meta' op | '=' name | 'MetaData' op | '(' name | 'bind' op | '=' name | 'migrate_engine' op | ')' newline | '\n' nl | '\n' comment | '# Add a new column to store PCI device parent address' nl | '\n' name | 'pci_devices' op | '=' name | 'Table' op | '(' string | "'pci_devices'" op | ',' name | 'meta' op | ',' name | 'autoload' op | '=' name | 'True' op | ')' newline | '\n' name | 'shadow_pci_devices' op | '=' name | 'Table' op | '(' string | "'shadow_pci_devices'" op | ',' name | 'meta' op | ',' name | 'autoload' op | '=' name | 'True' op | ')' newline | '\n' nl | '\n' name | 'parent_addr' op | '=' name | 'Column' op | '(' string | "'parent_addr'" op | ',' name | 'String' op | '(' number | '12' op | ')' op | ',' name | 'nullable' op | '=' name | 'True' op | ')' newline | '\n' nl | '\n' name | 'if' name | 'not' name | 'hasattr' op | '(' name | 'pci_devices' op | '.' name | 'c' op | ',' string | "'parent_addr'" op | ')' op | ':' newline | '\n' indent | ' ' name | 'pci_devices' op | '.' name | 'create_column' op | '(' name | 'parent_addr' op | ')' newline | '\n' dedent | '' name | 'if' name | 'not' name | 'hasattr' op | '(' name | 'shadow_pci_devices' op | '.' name | 'c' op | ',' string | "'parent_addr'" op | ')' op | ':' newline | '\n' indent | ' ' name | 'shadow_pci_devices' op | '.' name | 'create_column' op | '(' name | 'parent_addr' op | '.' name | 'copy' op | '(' op | ')' op | ')' newline | '\n' nl | '\n' comment | '# Create index' nl | '\n' dedent | '' name | 'parent_index' op | '=' name | 'Index' op | '(' string | "'ix_pci_devices_compute_node_id_parent_addr_deleted'" op | ',' nl | '\n' name | 'pci_devices' op | '.' name | 'c' op | '.' name | 'compute_node_id' op | ',' nl | '\n' name | 'pci_devices' op | '.' name | 'c' op | '.' name | 'parent_addr' op | ',' nl | '\n' name | 'pci_devices' op | '.' name | 'c' op | '.' name | 'deleted' op | ')' newline | '\n' name | 'parent_index' op | '.' name | 'create' op | '(' name | 'migrate_engine' op | ')' newline | '\n' dedent | '' endmarker | '' end_unit
while True: entrada = input() if entrada == '0': break entrada = input() joao = entrada.count('1') maria = entrada.count('0') print(f'Mary won {maria} times and John won {joao} times')
while True: entrada = input() if entrada == '0': break entrada = input() joao = entrada.count('1') maria = entrada.count('0') print(f'Mary won {maria} times and John won {joao} times')
# Age avergage with floating points # Var declarations # Code age1 = 10.0 age2 = 11.0 age3 = 13.0 age4 = 9.0 age5 = 12.0 result = (age1+age2+age3+age4+age5)/5.0 # Result print(result)
age1 = 10.0 age2 = 11.0 age3 = 13.0 age4 = 9.0 age5 = 12.0 result = (age1 + age2 + age3 + age4 + age5) / 5.0 print(result)
class Word: def __init__(self, cells): if not cells: raise ValueError("word cannot contain 0 cells") self.cell = cells[0] self.rest = Word(cells[1:]) if cells[1:] else None def _clear(self): self.cell |= 0 if self.rest: self.rest.clear() def _succ(self): self.cell += 1 if self.rest: for if_ in (~self.cell).not_(): self.rest._succ() def _pred(self): if self.rest: for if_ in (~self.cell).not_(): self.rest._pred() self.cell -= 1 def _if(self): if self.rest: for if_ in self.cell | self.rest: self.rest.clear() yield else: for if_ in self.cell: yield def _while(self): ...
class Word: def __init__(self, cells): if not cells: raise value_error('word cannot contain 0 cells') self.cell = cells[0] self.rest = word(cells[1:]) if cells[1:] else None def _clear(self): self.cell |= 0 if self.rest: self.rest.clear() def _succ(self): self.cell += 1 if self.rest: for if_ in (~self.cell).not_(): self.rest._succ() def _pred(self): if self.rest: for if_ in (~self.cell).not_(): self.rest._pred() self.cell -= 1 def _if(self): if self.rest: for if_ in self.cell | self.rest: self.rest.clear() yield else: for if_ in self.cell: yield def _while(self): ...
'''6. Write a Python program to add 'ing' at the end of a given string (length should be at least 3). If the given string already ends with 'ing' then add 'ly' instead. If the string length of the given string is less than 3, leave it unchanged. Sample String : 'abc' Expected Result : 'abcing' Sample String : 'string' Expected Result : 'stringly' ''' def add_string(str1): length = len(str1) if length > 2: if str1[-3:] == 'ing': str1 += 'ly' else: str1 += 'ing' return str1 print(add_string('ab')) print(add_string('abc')) print(add_string('string')) #Reference: w3resource
"""6. Write a Python program to add 'ing' at the end of a given string (length should be at least 3). If the given string already ends with 'ing' then add 'ly' instead. If the string length of the given string is less than 3, leave it unchanged. Sample String : 'abc' Expected Result : 'abcing' Sample String : 'string' Expected Result : 'stringly' """ def add_string(str1): length = len(str1) if length > 2: if str1[-3:] == 'ing': str1 += 'ly' else: str1 += 'ing' return str1 print(add_string('ab')) print(add_string('abc')) print(add_string('string'))
# basic tuple functionality x = (1, 2, 3 * 4) print(x) try: x[0] = 4 except TypeError: print("TypeError") print(x) try: x.append(5) except AttributeError: print("AttributeError") print(x[1:]) print(x[:-1]) print(x[2:3]) print(x + (10, 100, 10000))
x = (1, 2, 3 * 4) print(x) try: x[0] = 4 except TypeError: print('TypeError') print(x) try: x.append(5) except AttributeError: print('AttributeError') print(x[1:]) print(x[:-1]) print(x[2:3]) print(x + (10, 100, 10000))
N = int(input()) list = [] for _ in range(N): command = input().rstrip().split() if "insert" in command: i = int(command[1]) e = int(command[2]) list.insert(i, e) elif "print" in command: print(list) elif "remove" in command: i = int(command[1]) list.remove(i) elif "append" in command: i = int(command[1]) list.append(i) elif "sort" in command: list = sorted(list) elif "pop" in command: list.pop() elif "reverse" in command: reversed = [] for _ in range(len(list)): reversed.append(list.pop()) list = reversed else: None
n = int(input()) list = [] for _ in range(N): command = input().rstrip().split() if 'insert' in command: i = int(command[1]) e = int(command[2]) list.insert(i, e) elif 'print' in command: print(list) elif 'remove' in command: i = int(command[1]) list.remove(i) elif 'append' in command: i = int(command[1]) list.append(i) elif 'sort' in command: list = sorted(list) elif 'pop' in command: list.pop() elif 'reverse' in command: reversed = [] for _ in range(len(list)): reversed.append(list.pop()) list = reversed else: None
# Store all kinds of lookup table. # # generate rsPoly lookup table. # from qrcode import base # def create_bytes(rs_blocks): # for r in range(len(rs_blocks)): # dcCount = rs_blocks[r].data_count # ecCount = rs_blocks[r].total_count - dcCount # rsPoly = base.Polynomial([1], 0) # for i in range(ecCount): # rsPoly = rsPoly * base.Polynomial([1, base.gexp(i)], 0) # return ecCount, rsPoly # rsPoly_LUT = {} # for version in range(1,41): # for error_correction in range(4): # rs_blocks_list = base.rs_blocks(version, error_correction) # ecCount, rsPoly = create_bytes(rs_blocks_list) # rsPoly_LUT[ecCount]=rsPoly.num # print(rsPoly_LUT) # Result. Usage: input: ecCount, output: Polynomial.num # e.g. rsPoly = base.Polynomial(LUT.rsPoly_LUT[ecCount], 0) rsPoly_LUT = { 7: [1, 127, 122, 154, 164, 11, 68, 117], 10: [1, 216, 194, 159, 111, 199, 94, 95, 113, 157, 193], 13: [1, 137, 73, 227, 17, 177, 17, 52, 13, 46, 43, 83, 132, 120], 15: [1, 29, 196, 111, 163, 112, 74, 10, 105, 105, 139, 132, 151, 32, 134, 26], 16: [1, 59, 13, 104, 189, 68, 209, 30, 8, 163, 65, 41, 229, 98, 50, 36, 59], 17: [1, 119, 66, 83, 120, 119, 22, 197, 83, 249, 41, 143, 134, 85, 53, 125, 99, 79], 18: [1, 239, 251, 183, 113, 149, 175, 199, 215, 240, 220, 73, 82, 173, 75, 32, 67, 217, 146], 20: [1, 152, 185, 240, 5, 111, 99, 6, 220, 112, 150, 69, 36, 187, 22, 228, 198, 121, 121, 165, 174], 22: [1, 89, 179, 131, 176, 182, 244, 19, 189, 69, 40, 28, 137, 29, 123, 67, 253, 86, 218, 230, 26, 145, 245], 24: [1, 122, 118, 169, 70, 178, 237, 216, 102, 115, 150, 229, 73, 130, 72, 61, 43, 206, 1, 237, 247, 127, 217, 144, 117], 26: [1, 246, 51, 183, 4, 136, 98, 199, 152, 77, 56, 206, 24, 145, 40, 209, 117, 233, 42, 135, 68, 70, 144, 146, 77, 43, 94], 28: [1, 252, 9, 28, 13, 18, 251, 208, 150, 103, 174, 100, 41, 167, 12, 247, 56, 117, 119, 233, 127, 181, 100, 121, 147, 176, 74, 58, 197], 30: [1, 212, 246, 77, 73, 195, 192, 75, 98, 5, 70, 103, 177, 22, 217, 138, 51, 181, 246, 72, 25, 18, 46, 228, 74, 216, 195, 11, 106, 130, 150] }
rs_poly_lut = {7: [1, 127, 122, 154, 164, 11, 68, 117], 10: [1, 216, 194, 159, 111, 199, 94, 95, 113, 157, 193], 13: [1, 137, 73, 227, 17, 177, 17, 52, 13, 46, 43, 83, 132, 120], 15: [1, 29, 196, 111, 163, 112, 74, 10, 105, 105, 139, 132, 151, 32, 134, 26], 16: [1, 59, 13, 104, 189, 68, 209, 30, 8, 163, 65, 41, 229, 98, 50, 36, 59], 17: [1, 119, 66, 83, 120, 119, 22, 197, 83, 249, 41, 143, 134, 85, 53, 125, 99, 79], 18: [1, 239, 251, 183, 113, 149, 175, 199, 215, 240, 220, 73, 82, 173, 75, 32, 67, 217, 146], 20: [1, 152, 185, 240, 5, 111, 99, 6, 220, 112, 150, 69, 36, 187, 22, 228, 198, 121, 121, 165, 174], 22: [1, 89, 179, 131, 176, 182, 244, 19, 189, 69, 40, 28, 137, 29, 123, 67, 253, 86, 218, 230, 26, 145, 245], 24: [1, 122, 118, 169, 70, 178, 237, 216, 102, 115, 150, 229, 73, 130, 72, 61, 43, 206, 1, 237, 247, 127, 217, 144, 117], 26: [1, 246, 51, 183, 4, 136, 98, 199, 152, 77, 56, 206, 24, 145, 40, 209, 117, 233, 42, 135, 68, 70, 144, 146, 77, 43, 94], 28: [1, 252, 9, 28, 13, 18, 251, 208, 150, 103, 174, 100, 41, 167, 12, 247, 56, 117, 119, 233, 127, 181, 100, 121, 147, 176, 74, 58, 197], 30: [1, 212, 246, 77, 73, 195, 192, 75, 98, 5, 70, 103, 177, 22, 217, 138, 51, 181, 246, 72, 25, 18, 46, 228, 74, 216, 195, 11, 106, 130, 150]}
#!/bin/python3 # coding: utf-8 print ('input name: ') name = input() print ('input passwd: ') passwd = input() if name == 'A': print('A') if passwd == 'BB': print('BB') else: print('Other!')
print('input name: ') name = input() print('input passwd: ') passwd = input() if name == 'A': print('A') if passwd == 'BB': print('BB') else: print('Other!')
# Created by MechAviv # Map ID :: 940001050 # Hidden Street : East Pantheon sm.curNodeEventEnd(True) sm.setTemporarySkillSet(0) sm.setInGameDirectionMode(True, True, False, False) OBJECT_1 = sm.sendNpcController(3000107, -2000, 20) sm.showNpcSpecialActionByObjectId(OBJECT_1, "summon", 0) sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.flipDialoguePlayerAsSpeaker() sm.setSpeakerType(3) sm.sendNext("There are Specters here as well?") sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setSpeakerType(3) sm.sendSay("The situation might be more serious than I expected.") sm.forcedInput(1) sm.sendDelay(30) sm.forcedInput(0) sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setPlayerAsSpeaker() sm.setSpeakerType(3) sm.sendNext("This isn't good. Go back and activate the shield as soon as possible.") sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setSpeakerType(3) sm.sendSay("This is precisely when you need the most help. Even if you are Kaiser, you can't make it by yourself...") sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setPlayerAsSpeaker() sm.setSpeakerType(3) sm.sendSay("Cartalion, you are a knight of Nova. Your first duty is always to the people of Nova. You must protect them, not me. As Kaiser, I fight for others, not the other way around.") sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setSpeakerType(3) sm.sendSay("As you wish. Good luck out there.") sm.sendDelay(1000) sm.setTemporarySkillSet(0) sm.setInGameDirectionMode(False, True, False, False) sm.warp(940001100, 0)
sm.curNodeEventEnd(True) sm.setTemporarySkillSet(0) sm.setInGameDirectionMode(True, True, False, False) object_1 = sm.sendNpcController(3000107, -2000, 20) sm.showNpcSpecialActionByObjectId(OBJECT_1, 'summon', 0) sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.flipDialoguePlayerAsSpeaker() sm.setSpeakerType(3) sm.sendNext('There are Specters here as well?') sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setSpeakerType(3) sm.sendSay('The situation might be more serious than I expected.') sm.forcedInput(1) sm.sendDelay(30) sm.forcedInput(0) sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setPlayerAsSpeaker() sm.setSpeakerType(3) sm.sendNext("This isn't good. Go back and activate the shield as soon as possible.") sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setSpeakerType(3) sm.sendSay("This is precisely when you need the most help. Even if you are Kaiser, you can't make it by yourself...") sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setPlayerAsSpeaker() sm.setSpeakerType(3) sm.sendSay('Cartalion, you are a knight of Nova. Your first duty is always to the people of Nova. You must protect them, not me. As Kaiser, I fight for others, not the other way around.') sm.setSpeakerID(3000107) sm.removeEscapeButton() sm.setSpeakerType(3) sm.sendSay('As you wish. Good luck out there.') sm.sendDelay(1000) sm.setTemporarySkillSet(0) sm.setInGameDirectionMode(False, True, False, False) sm.warp(940001100, 0)
subreddit = "quackers987" #CHANGE THIS #Multiple subreddits can be specified by joining them with pluses, for example AskReddit+NoStupidQuestions. fileLog = "imageRemoveLog.txt" neededModPermissions = ['posts', 'flair'] removeSubmission = False logFullInfo = False checkResolution = True minHeight = 800 minWidth = 800 lowResReply = f"Your submission has been removed as it was deemed to be low resolution (less than {minWidth} x {minHeight})." lowResPostFlairID = "90320684-d8c4-11eb-8b59-0e83c0f77ef7" #CHANGE THIS checkImgDomain = False acceptedDomain = ["i.redd.it", "i.imgur.com"] wrongDomainReply = f"Your submission has been removed as it was deemed to be posted to a disallowed domain. Allowed domains are {acceptedDomain}" wrongDomainPostFlairID = "4f78c98a-d8d2-11eb-bf32-0e0b42d5cc2b" #CHANGE THIS
subreddit = 'quackers987' file_log = 'imageRemoveLog.txt' needed_mod_permissions = ['posts', 'flair'] remove_submission = False log_full_info = False check_resolution = True min_height = 800 min_width = 800 low_res_reply = f'Your submission has been removed as it was deemed to be low resolution (less than {minWidth} x {minHeight}).' low_res_post_flair_id = '90320684-d8c4-11eb-8b59-0e83c0f77ef7' check_img_domain = False accepted_domain = ['i.redd.it', 'i.imgur.com'] wrong_domain_reply = f'Your submission has been removed as it was deemed to be posted to a disallowed domain. Allowed domains are {acceptedDomain}' wrong_domain_post_flair_id = '4f78c98a-d8d2-11eb-bf32-0e0b42d5cc2b'
# In Islandora 8 maps to Repository Item Content Type -> field_resource_type field # The field_resource_type field is a pointer to the Resource Types taxonomy # class Genre: def __init__(self): self.drupal_fieldname = 'field_genre' self.islandora_taxonomy = ['tags','genre'] self.mods_xpath = 'mods/genre' self.dc_designator = 'type' self.genre = '' def set_genre(self, genre): if isinstance(genre, str) and genre != '': self.genre = genre def get_genre(self): return self.genre def get_genre_fieldname(self): return self.drupal_fieldname
class Genre: def __init__(self): self.drupal_fieldname = 'field_genre' self.islandora_taxonomy = ['tags', 'genre'] self.mods_xpath = 'mods/genre' self.dc_designator = 'type' self.genre = '' def set_genre(self, genre): if isinstance(genre, str) and genre != '': self.genre = genre def get_genre(self): return self.genre def get_genre_fieldname(self): return self.drupal_fieldname
# Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html # -- Path setup ------------------------------------------------------------------------------------------------------ # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # # import os # import sys # sys.path.insert(0, os.path.abspath('.')) # -- Project information --------------------------------------------------------------------------------------------- project = 'nRF Asset Tracker' copyright = '2019-2021, Nordic Semiconductor ASA | nordicsemi.no' author = 'Nordic Semiconductor ASA | nordicsemi.no' # -- General configuration ------------------------------------------------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ 'sphinx_rtd_theme', ] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # These folders are copied to the documentation's HTML output html_static_path = ['_static'] # These paths are either relative to html_static_path # or fully qualified paths (eg. https://...) html_css_files = [ 'common.css', ] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # -- Options for HTML output ----------------------------------------------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # html_theme = 'sphinx_rtd_theme' html_theme_options = { 'logo_only': True } # Enable the "Edit in GitHub link within the header of each page. html_context = { 'display_github': True, 'github_user': 'NordicSemiconductor', 'github_repo': 'asset-tracker-cloud-docs', 'github_version': 'saga' } master_doc = 'index' suppress_warnings = ['ref.ref']
project = 'nRF Asset Tracker' copyright = '2019-2021, Nordic Semiconductor ASA | nordicsemi.no' author = 'Nordic Semiconductor ASA | nordicsemi.no' extensions = ['sphinx_rtd_theme'] templates_path = ['_templates'] html_static_path = ['_static'] html_css_files = ['common.css'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] html_theme = 'sphinx_rtd_theme' html_theme_options = {'logo_only': True} html_context = {'display_github': True, 'github_user': 'NordicSemiconductor', 'github_repo': 'asset-tracker-cloud-docs', 'github_version': 'saga'} master_doc = 'index' suppress_warnings = ['ref.ref']
while True: num = int(input("Enter an even number: ")) if num % 2 == 0: break print("Thanks for following directions.")
while True: num = int(input('Enter an even number: ')) if num % 2 == 0: break print('Thanks for following directions.')
#Tuple is a collection of ordered items. A tuple is immutable in nature. #Refer https://docs.python.org/3/library/stdtypes.html?#tuples for more information person= ("Susan","Christopher","Bill","Susan") print(person) print(person[1]) x= person.count("Susan") print("Occurrence of 'Susan' in tuple is:" + str(x)) l=['apple','oranges'] print(tuple(l))
person = ('Susan', 'Christopher', 'Bill', 'Susan') print(person) print(person[1]) x = person.count('Susan') print("Occurrence of 'Susan' in tuple is:" + str(x)) l = ['apple', 'oranges'] print(tuple(l))
def get_sdm_query(query,lambda_t=0.8,lambda_o=0.1,lambda_u=0.1): words = query.split() if len(words)==1: return f"#combine( {query} )" terms = " ".join(words) ordered = "".join([" #1({}) ".format(" ".join(bigram)) for bigram in zip(words,words[1:])]) unordered = "".join([" #uw8({}) ".format(" ".join(bigram)) for bigram in zip(words,words[1:])]) indri_query = f"#weight({lambda_t} #combine( {terms} ) {lambda_o} #combine({ordered}) {lambda_u} #combine({unordered}))" return indri_query if __name__ == "__main__": query = "greta thunberg cross atlantic" print(get_sdm_query(query))
def get_sdm_query(query, lambda_t=0.8, lambda_o=0.1, lambda_u=0.1): words = query.split() if len(words) == 1: return f'#combine( {query} )' terms = ' '.join(words) ordered = ''.join([' #1({}) '.format(' '.join(bigram)) for bigram in zip(words, words[1:])]) unordered = ''.join([' #uw8({}) '.format(' '.join(bigram)) for bigram in zip(words, words[1:])]) indri_query = f'#weight({lambda_t} #combine( {terms} ) {lambda_o} #combine({ordered}) {lambda_u} #combine({unordered}))' return indri_query if __name__ == '__main__': query = 'greta thunberg cross atlantic' print(get_sdm_query(query))